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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3d395ab6175c7a12273d60e9b4937a570940be1f | 1573c4954e822b3538692bce853eb35e55f1bb3b | /DSP Functions/zpkshiftc/test_9.sce | f91a538347cb9afa0f5078e4ff6e98efd6c4496c | [] | no_license | shreniknambiar/FOSSEE-DSP-Toolbox | 1f498499c1bb18b626b77ff037905e51eee9b601 | aec8e1cea8d49e75686743bb5b7d814d3ca38801 | refs/heads/master | 2020-12-10T03:28:37.484363 | 2017-06-27T17:47:15 | 2017-06-27T17:47:15 | 95,582,974 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 802 | sce | test_9.sce | // Test #9 : For vector inputs
exec('./zpkshift.sci',-1);
[z,p,k,n,d]=zpkshift([3,8.5],[4,9.2],1,0.7,0.8);
disp(d);
disp(n);
disp(k);
disp(p);
disp(z);
//
//Scilab Output
//d=1. - 0.3445765 0.
//n=0. 0.3445765 - 1.
//k=0.6929348
//p=0.2153603 + 0.4512427i
// 0.2153603 - 0.4512427i
// 0.1910152 + 0.2687170i
// 0.1910152 - 0.2687170i
//z =0.2297177 + 0.5296821i
// 0.2297177 - 0.5296821i
// 0.1925575 + 0.2838462i
// 0.1925575 - 0.2838462i
//
//Matlab Output
//z = 0.2297 + 0.5297i
// 0.2297 - 0.5297i
// 0.1926 + 0.2838i
// 0.1926 - 0.2838i
//p = 0.2154 + 0.4512i
// 0.2154 - 0.4512i
// 0.1910 + 0.2687i
// 0.1910 - 0.2687i
//k= 0.6929
//n= 0 0.3446 -1.0000
//d= 1.0000 -0.3446 0
|
190d5e508cf773cb86f94b551c4c8b80f91962e5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1394/CH15/EX15.3.3/Ex15_3_3.sce | 4e5ca69a460b74725f2dd6df3665fee168b7072d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 568 | sce | Ex15_3_3.sce |
clc
//initialization of variables
tB = 10 // min
tE = 14 // min
l = 0.12 //m
l2 = 10 // m
c = 10000
A = 1/10000 // m^2
//Calculations
theta = 2*tB/(tB+tE)
l1 = l*(1-theta)// m , length of bed unused in first case
V1 = c*A*l // m^3
l3 = l2-l1 // length of bed unused in second case
d = sqrt(V1*4/(l3*%pi))// m
V2 = c*(l-l1)*A*l2/l3 // volume needed for second case
//Results
printf("The volume of adsorbent needed if the bed is kept 12 cm deep is %.2f m^3",V1)
printf("\nThe volume of adsorbent needed if the bed length is 10 m long is %.4f m^3",V2)
|
937f94a89963cc8f022ca5e49c8a1516b9b0be31 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2837/CH23/EX23.2/Ex23_2.sce | efb7be4f349d35cb773bd8b8c09399d946dda4fa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 189 | sce | Ex23_2.sce | clc
clear
//Initalization of variables
rel=0.9
p1=0.0396 //psia
p2=0.3631 //psia
//calculations
act=rel*p1
RH=act/p2 *100
//results
printf("Relative humidity = %.1f percent",RH)
|
094091ba802a23ca01b0141f53b90e23864f339f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2411/CH5/EX5.9/Ex5_9.sce | 0229c57f851ee4a7f63a208add2c3fcb5f1045d5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 983 | sce | Ex5_9.sce | // Scilab Code Ex5.9: Page-287 (2008)
clc; clear;
h = 6.62e-034; // Planck's constant, Js
c = 3e+008; // Speed of light, m/s
e = 1.6e-019; // Energy quivalent of 1 eV, J
phi = 2.1*e; // Work function for material, J
lambda = 3500e-010; // Wavelength of incident UV radiation, m
E = 1e-004; // Energy incident per sec on 1 Sq. cm of potassium surface, J
eta = 0.5/100; // Efficiency of potassium surface
KE = (h*c/lambda-phi)/e; // Maximum kinetic energy of the ejected photoelectrons, eV
N = eta*E/(KE*e); // Number of photoelectrons emitted per second per Sq. cm of potassium surface
printf("\nThe maximum kinetic energy of the incidnt radiation = %4.2f eV", KE);
printf("\nThe number of photoelectrons emitted per second per Sq. cm of potassium surface = %4.2e", N);
// Result
// The maximum kinetic energy of the incidnt radiation = 1.45 eV
// The number of photoelectrons emitted per second per Sq. cm of potassium surface = 2.16e+012 |
8020f8a26a1c2850f5a77019b65816965416dd26 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2498/CH5/EX5.2/ex5_2.sce | 9fcb6bd9e2d88d066fbc5fdbc2b8ab6851ae15cd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 288 | sce | ex5_2.sce | // Exa 5.2
clc;
clear;
close;
format('v',6)
// Given data
f = 10;// in kHz
f = f * 10^3;// in Hz
R = 100;// in k ohm
R = R * 10^3;// in ohm
//Formula used, f = 1/(2*%pi*R*C);
C = 1/(2*%pi*R*f);// in F
C = round(C * 10^12);// in pF
disp(C,"The value of capacitor in pF is");
|
1e5de76f53c77ac747839ce4159e88e57f80f41c | 7b040f1a7bbc570e36aab9b2ccf77a9e59d3e5c2 | /Scilab/local/2dof_controller/dc/ss/scilab/kalrun.sce | b94c41d98f890c595b9a2ba359afb8c8ee1d10e7 | [] | no_license | advait23/sbhs-manual | e2c380051117e3a36398bb5ad046781f7b379cb9 | d65043acd98334c44a0f0dbf480473c4c4451834 | refs/heads/master | 2021-01-16T19:50:40.218314 | 2012-11-16T04:11:12 | 2012-11-16T04:11:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 393 | sce | kalrun.sce | // Updated(19-7-07)
// 14.3
getf kal_ex.sci;
x = 5; xhat = 2; P = 1; xvec = x;
xhat_vec = xhat; Pvec = P; yvec = x;
for i = 1:200,
xline = xhat; M = P;
[xhat,P,y] = kal_ex(x,xline,M);
xvec = [xvec;x];
xhat_vec = [xhat_vec;xhat];
Pvec = [Pvec;P]; yvec = [yvec;y];
end
n = 1:201;
plot(Pvec);
xtitle('','n');
halt();
clf();
plot(n,xhat_vec,n,yvec,n,xvec);
xtitle('','n');
|
74045ff7c0852a7feb96c004cc51aae942a79c18 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1938/CH5/EX5.18/5_18.sce | b2b79913e5061e462a26b9d02ccd37638bd342c2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 685 | sce | 5_18.sce | clc,clear
printf('Example 5.18\n\n')
VA=10*10^3
V_L=11*10^3,V_ph=V_L/sqrt(3)
I_ph_X_Lph = 2.4*500 //leakage reactance drop in volts = 2.4 cm * 500 V/cm
I_ph_R_aph =VA/(sqrt(3)*V_L)
phi=acos(0.8)
E_ph = sqrt((V_ph*cos(phi)+I_ph_R_aph)^2 +(V_ph*sin(phi)+ I_ph_X_Lph)^2)
F_f1=109 //obtained from open circuit characteristics corresponding to calculated E_ph
F_AR= 2.8*10 //2.8cm * 10 A/cm
F_R = sqrt(F_f1^2 + F_AR^2 -2*F_AR*F_f1*cos(phi+ (%pi/2)) ) //cosine rule to Triangle OAB
E_ph=7700 //corresponding to F_R from open circiut characteristics
regulation=100*(E_ph-V_ph)/V_ph
printf('Voltage regulation at full-load 0.8 pf lagging is %.2f percent\n',regulation)
|
4570a0e8357927c56de999e142f71d9bc520d4fd | 750baafb72c1d930c9b57d18963fc323754d1e84 | /projects/04/sort/Sort11.tst | 5bc763c23144e35b4e5edc1aab3b41be70c39b32 | [] | no_license | johny1122/Nand2Tetris | e765108e6613ea9efa19b66b01139f4139f6ad77 | eda016bbc06f0a7c651395c7f24d94e168cd0739 | refs/heads/main | 2023-05-08T01:38:04.471987 | 2021-05-24T20:31:13 | 2021-05-24T20:31:13 | 370,477,048 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 675 | tst | Sort11.tst | //dosen't use R0..R4
load Sort.asm,
output-file Sort11.out,
compare-to Sort11.cmp,
output-list RAM[5]%D1.6.1 RAM[6]%D1.6.1 RAM[7]%D1.6.1 RAM[8]%D1.6.1 RAM[9]%D1.6.1 RAM[10]%D1.6.1 RAM[11]%D1.6.1 RAM[12]%D1.6.1 RAM[13]%D1.6.1;
set RAM[11] 0,
set RAM[14] 11,
set RAM[15] 1;
repeat 30000 {
ticktock;
}
output;
set PC 0,
set RAM[10] -89,
set RAM[11] 5,
set RAM[12] 16,
set RAM[13] 15,
set RAM[14] 10,
set RAM[15] 4;
repeat 30000 {
ticktock;
}
output;
set PC 0,
set RAM[5] -100,
set RAM[6] 70,
set RAM[7] 0,
set RAM[8] 71,
set RAM[9] 4,
set RAM[10] 10,
set RAM[11] 4,
set RAM[12] 72,
set RAM[13] 0,
set RAM[14] 5,
set RAM[15] 9;
repeat 30000 {
ticktock;
}
output;
|
4874ca0418db8119f7cbf27df93ea35b6030dbaf | 449d555969bfd7befe906877abab098c6e63a0e8 | /2615/CH7/EX37.8/37.sce | 29972da3ea9f5d656d3063fe89f0197c1f6eddea | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 171 | sce | 37.sce | clc
//initialisation of variables
v=9.81//m
h=10//m
//CALCULATIONS
H=v*(h)^2/2//m
Vt=v*h//m/sec
//RESULTS
printf('the velocity at the final moment=% f m/sec',Vt)
|
e0d612aca3634b0bcb409a9580878458394e005c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3850/CH27/EX27.3/Ex27_3.sce | 0317915f05fb2fd30f478e398a4c23d5bb7e7c66 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 289 | sce | Ex27_3.sce |
//To Find the ratio of Cp/Cv
//Example 27.3
clc;
clear;
Cv=5;//Molar Heat Capacity of Gas at constant volume
R=2;//Universal Gas constant in cal/mol-K
Cp=Cv+R;//Molar Heat Capacity of Gas at constant pressure
gama=Cp/Cv;//The ratio Cp/Cv
printf("Cp/Cv=%f",gama);
|
316bf5659418a56045a28e58c27eea790c8d2547 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1938/CH1/EX1.16/1_16.sce | d448b2b5e013cf931552eaadec9dbb2578fb2ac9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 501 | sce | 1_16.sce | clc,clear
printf('Example 1.16\n\n')
V_t=550 //Terminal voltage
R_lamp=500 //Each lamp
I_lamp=V_t/R_lamp //each lamp ; V_t because all lamps are in parallel
I_L=20*I_lamp //there exist 20 lamps
R_sh=25,R_a=0.06,R_se=0.04 //resistance of shunt winding,armature,series field
I_sh=V_t/R_sh //current throough shunt winding
I_a=I_L+I_sh//armature current
E=V_t + I_a*(R_a+R_se) //generated emf
printf('Armature current and generated e.m.f is %.0f A and %.1f V respectively ',I_a,E )
|
a85c6f4f189252e2754e07a9cab93f8970776e79 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3556/CH13/EX13.15/Ex13_15.sce | cf44622d6905f8d4cc07c4dd59311837947f77fe | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 477 | sce | Ex13_15.sce | clc
// Fundamental of Electric Circuit
// Charles K. Alexander and Matthew N.O Sadiku
// Mc Graw Hill of New York
// 5th Edition
// Part 1 : AC Circuits
// Chapter 13 : Magnetically Couple Circuits
// Example 13 - 15
clear; clc; close;
//
// Given data
V1 = 120.0000;
n = 3.0000;
//
// Calculatioons V2
V2 = V1/n;
// Display the result
disp("Example 13-15 Solution : ");
printf(" \n V2 = Voltage Accros Thr Load = %.3f Volt",V2)
|
719dfdd74022fd3ebb2dc244a5e1fa2cfff410a0 | ff375d9d37f5b412a0d9f81d11c76d6a43bfd868 | /packages/generator-radic/generators/build-tools/templates/gulpfile.tst | 839beb69856211b46568f934d29aa48fb2a7901c | [] | no_license | RobinRadic/react-packages | 5378e6465ed421eeb96a153d66ea3ad6c7171754 | 414f28fe2ee12df4543c2e6ce1aebaeec1982684 | refs/heads/master | 2020-04-01T22:35:46.997480 | 2018-12-24T18:30:52 | 2018-12-24T18:30:52 | 153,716,374 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 740 | tst | gulpfile.tst | import { mixin } from '@radic/build-tools'
import { gulp, Gulpclass, GulpEnvMixin, GulpInteractiveMixin, Task } from '@radic/build-tools-gulp'
export interface Gulpfile extends GulpEnvMixin, GulpInteractiveMixin {}
@Gulpclass(gulp)
@mixin(GulpEnvMixin)
@mixin(GulpInteractiveMixin)
export class Gulpfile {
@Task('dev:build') devBuild() {
this.dev()
}
@Task('prod:build') prodBuild() {
this.prod()
}
@Task('default')
async default() {
let choice = await this.list('Select task', [ 'dev:buid', 'prod:build' ]);
if ( choice === 'dev:build' ) {
return this.devBuild();
} else if ( choice === 'prod:build' ) {
return this.prodBuild();
}
}
}
|
bf261b72ddde480572837edc913322e7cd2fe35c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2252/CH7/EX7.7/Ex7_7.sce | 7fa398ef9869d80eb776ba1fd444c842f051000a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 837 | sce | Ex7_7.sce |
//r1 be the variable resistance
X=10//total inductive reactance of circuit
V=200//rms value of applied voltage
//RMS value of current I=200/sqrt((2+r1)^2+10^2)
//power consumed is P=I^2*r1
//For max power, dP/dr=0
//on solving
r1=sqrt(104)
mprintf("Value of variable resistor at the instant of max power consumed in it is %f ohm\n",r1)
//solving part(ii), let r2 be the variable resistance-I=200/sqrt((200+r2)^2+10^2),P=I^2*(2+r2)
//for max power, dP/dr=0
//on solving
r2=10-2
mprintf("Value of variable resistor=%d ohm for the condition of max power consumed by the circuit\n",round(r2))
I1=200/sqrt((2+r1)^2+10^2)
I2=200/sqrt((2+r2)^2+10^2)
pf1=(2+r1)/sqrt((2+r1)^2+10^2)
pf2=(2+r2)/sqrt((2+r2)^2+10^2)
mprintf("Current in case(i)=%f A at %f pf lagging\nCurrent in case(ii)=%f A at %f pf lagging\n",I1,pf1,I2,pf2)
|
d79556f9bb9f7c16bfe33c1c8c70f1f5c25d1007 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH7/EX7.9/Example7_9.sce | 532b326293f8184abe615cc0bbf81d09a189e975 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,931 | sce | Example7_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 I : GENERATION
// CHAPTER 7: TARIFFS AND ECONOMIC ASPECTS IN POWER GENERATION
// EXAMPLE : 7.9 :
// Page number 75-76
clear ; clc ; close ; // Clear the work space and console
// Given data
MD = 10000.0 // Maximum demand(kW)
load_1 = 2000.0 // Load from 11 PM-6 AM(kW)
t_1 = 7.0 // Time from 11 PM-6 AM(hour)
load_2 = 3500.0 // Load from 6 AM-8 AM(kW)
t_2 = 2.0 // Time from 6 AM-8 AM(hour)
load_3 = 8000.0 // Load from 8 AM-12 Noon(kW)
t_3 = 4.0 // Time from 8 AM-12 Noon(hour)
load_4 = 3000.0 // Load from 12 Noon-1 PM(kW)
t_4 = 1.0 // Time from 12 Noon-1 PM(hour)
load_5 = 7500.0 // Load from 1 PM-5 PM(kW)
t_5 = 4.0 // Time from 1 PM-5 PM(hour)
load_6 = 8500.0 // Load from 5 PM-7 PM(kW)
t_6 = 2.0 // Time from 5 PM-7 PM(hour)
load_7 = 10000.0 // Load from 7 PM-9 PM(kW)
t_7 = 2.0 // Time from 7 PM-9 PM(hour)
load_8 = 4500.0 // Load from 9 PM-11 PM(kW)
t_8 = 2.0 // Time from 9 PM-11 PM(hour)
// Calculations
energy_gen = (load_1*t_1)+(load_2*t_2)+(load_3*t_3)+(load_4*t_4)+(load_5*t_5)+(load_6*t_6)+(load_7*t_7)+(load_8*t_8) // Energy generated during 24 hours(kWh)
LF = energy_gen/(MD*24.0) // Load factor
no_units = 3.0 // Number of generating set
cap_1 = 5000.0 // Capacity of first generating unit(kW)
cap_2 = 3000.0 // Capacity of second generating unit(kW)
cap_3 = 2000.0 // Capacity of third generating unit(kW)
cap_reserve = cap_1 // Reserve capacity(kW) i.e largest size of generating unit
cap_installed = cap_1+cap_2+cap_3+cap_reserve // Installed capacity(kW)
cap_factor = energy_gen/(cap_installed*24.0) // Plant capacity factor
cap_plant = cap_3*t_1+(cap_3+cap_2)*t_2+(cap_2+cap_1)*t_3+cap_2*t_4+(cap_2+cap_1)*t_5+(cap_3+cap_2+cap_1)*t_6+(cap_3+cap_2+cap_1)*t_7+cap_1*t_8 // Capacity of plant running actually(kWh)
use_factor = energy_gen/cap_plant // Plant use factor
// Results
disp("PART I - EXAMPLE : 7.9 : SOLUTION :-")
printf("\nNumber of generator units = %.f", no_units)
printf("\nSize of generator units required are %.f kW, %.f kW and %.f kW", cap_1,cap_2,cap_3)
printf("\nReserve plant capacity = %.f kW", cap_reserve)
printf("\nLoad factor = %.2f = %.f percent", LF,LF*100)
printf("\nPlant capacity factor = %.4f = %.2f percent", cap_factor,cap_factor*100)
printf("\nPlant use factor = %.3f = %.1f percent", use_factor,use_factor*100)
printf("\n\nNOTE: Capacity of plant is directly taken & operating schedule is not displayed here")
|
0fa36d99de2b7a7d3c3fbe9abe5a0578094b32d3 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /xcos_blocks/pmos.sci | d9c081a7f0dd0bc476aa11b9f178207ca8b54539 | [] | no_license | jhasler/rasp30 | 9a7c2431d56c879a18b50c2d43e487d413ceccb0 | 3612de44eaa10babd7298d2e0a7cddf4a4b761f6 | refs/heads/master | 2023-05-25T08:21:31.003675 | 2023-05-11T16:19:59 | 2023-05-11T16:19:59 | 62,917,238 | 3 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 2,264 | sci | pmos.sci | // Scicos
//
// Copyright (C) INRIA - METALAU Project <scicos@inria.fr>
//
// 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 2 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, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
// See the file ../license.txt
//
function [x,y,typ]=pmos(job,arg1,arg2)
x=[];y=[];typ=[];
select job
case 'plot' then
standard_draw(arg1,%f)
case 'getinputs' then
[x,y,typ]=standard_inputs(arg1)
case 'getoutputs' then
[x,y,typ]=standard_outputs(arg1)
case 'getorigin' then
[x,y]=standard_origin(arg1)
case 'set' then
x=arg1;
graphics=arg1.graphics;exprs=graphics.exprs
model=arg1.model;
while %t do
[ok,K,Ith,sig,VT0,exprs]=scicos_getvalue('Set NMOS Transistor parameters',..
['Kappa ';..
'Ith [A]';..
'sigma';..
'VT0 [V] ';], list('vec',-1,'vec',-1,'vec',-1,'vec',-1),exprs)
if ~ok then break,end
model.equations.parameters(2)=list(K,Ith,sig,VT0)
graphics.exprs=exprs
x.graphics=graphics;x.model=model
break
end
case 'define' then
model=scicos_model()
K=0.7;
Ith=1e-12;
sig=1e-4;
VT0=0.45;
model.sim='pmos';
model.blocktype='c';
model.dep_ut=[%t %f];
mo=modelica()
mo.model='pmos';
mo.outputs=['S';'B';'D']
mo.inputs='G';
mo.parameters=list(['K';'Ith';'sig';'VT0'],[K;Ith;sig;VT0]);
model.equations=mo
model.in=ones(size(mo.inputs,'*'),1)
model.out=ones(size(mo.outputs,'*'),1)
exprs=[string(K);string(Ith);string(sig);string(VT0)]
gr_i=['text=[''pmos''];';'xstringb(orig(1),orig(2),text,sz(1),sz(2),''fill'');']
x=standard_define([2 2],model,exprs,gr_i)
x.graphics.in_implicit=['I']
x.graphics.out_implicit=['I';'I';'I']
end
endfunction
|
6bd3457087a8005228a21e1c25e5af4d53dbdd0e | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/tfestimate.sci | e52faf56239d5e777d946eb0ade21cf240f20aa0 | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,942 | sci | tfestimate.sci | function [Pxx, freq] = tfestimate(x, y, window, overlap, Nfft, Fs, range)
//Estimate transfer function of system with input x and output y. Use the Welch (1967) periodogram/FFT method.
//Calling Sequence
//tfestimate (x, y, window, overlap, Nfft, Fs, range)
//[Pxx, freq] = tfestimate (…)
//Parameters
//x: Input.
//y: Output.
//window: [real vector] of window-function values between 0 and 1; the data segment has the same length as the window. Default window shape is Hamming. [integer scalar] length of each data segment. The default value is window=sqrt(length(x)) rounded up to the nearest integer power of 2; see 'sloppy' argument.
// overlap: [real scalar] segment overlap expressed as a multiple of window or segment length. 0 <= overlap < 1, The default is overlap=0.5 .
// Nfft: [integer scalar] Length of FFT. The default is the length of the "window" vector or has the same value as the scalar "window" argument. If Nfft is larger than the segment length, "seg_len", the data segment is padded with "Nfft-seg_len" zeros. The default is no padding. Nfft values smaller than the length of the data segment (or window) are ignored silently.
// Fs: [real scalar] sampling frequency (Hertz); default=1.0
// range: 'half', 'onesided' : frequency range of the spectrum is zero up to but not including Fs/2. Power from negative frequencies is added to the positive side of the spectrum, but not at zero or Nyquist (Fs/2) frequencies. This keeps power equal in time and spectral domains. See reference [2]. 'whole', 'twosided' : frequency range of the spectrum is -Fs/2 to Fs/2, with negative frequencies stored in "wrap around" order after the positive frequencies; e.g. frequencies for a 10-point 'twosided' spectrum are 0 0.1 0.2 0.3 0.4 0.5 -0.4 -0.3 -0.2 -0.1 'shift', 'centerdc' : same as 'whole' but with the first half of the spectrum swapped with second half to put the zero-frequency value in the middle. (See "help fftshift". If data (x and y) are real, the default range is 'half', otherwise default range is 'whole'.
//Description
//This function is being called from Octave.
//Estimate transfer function of system with input x and output y. Use the Welch (1967) periodogram/FFT method.
//Examples
//[Pxx, freq]=tfestimate ([1 2 3], [4 5 6])
//Pxx =
//
// 1.7500 + 0.0000i
// 1.5947 + 0.3826i
// 1.2824 + 0.0000i
//
//freq =
//
// 0.00000
// 0.25000
// 0.50000
funcprot(0);
lhs = argn(1)
rhs = argn(2)
if (rhs < 2 | rhs > 7)
error("Wrong number of input arguments.")
end
select(rhs)
case 2 then
if(lhs==1)
Pxx = callOctave("tfestimate",x,y)
elseif(lhs==2)
[Pxx, freq] = callOctave("tfestimate",x,y)
else
error("Wrong number of output argments.")
end
case 3 then
if(lhs==1)
Pxx = callOctave("tfestimate",x, y, window)
elseif(lhs==2)
[Pxx, freq] = callOctave("tfestimate",x, y, window)
else
error("Wrong number of output argments.")
end
case 4 then
if(lhs==1)
Pxx = callOctave("tfestimate",x, y, window, overlap)
elseif(lhs==2)
[Pxx, freq] = callOctave("tfestimate",x, y, window, overlap)
else
error("Wrong number of output argments.")
end
case 5 then
if(lhs==1)
Pxx = callOctave("tfestimate",x, y, window, overlap, Nfft)
elseif(lhs==2)
[Pxx, freq] = callOctave("tfestimate",x, y, window, overlap, Nfft)
else
error("Wrong number of output argments.")
end
case 6 then
if(lhs==1)
Pxx = callOctave("tfestimate",x, y, window, overlap, Nfft, Fs)
elseif(lhs==2)
[Pxx, freq] = callOctave("tfestimate",x, y, window, overlap, Nfft, Fs)
else
error("Wrong number of output argments.")
end
case 7 then
if(lhs==1)
Pxx = callOctave("tfestimate",x, y, window, overlap, Nfft, Fs, range)
elseif(lhs==2)
[Pxx, freq] = callOctave("tfestimate",x, y, window, overlap, Nfft, Fs, range)
else
error("Wrong number of output argments.")
end
end
endfunction
|
d5265fd70f7dcf5f641d27f939804e9d50c54d5d | d52d3664d9650ed9473dfaa3c4b379f05ef9fa78 | /test/create_2ndfl_corr.tst | 15760aff3a730ffcd7a3a4537114e53531b01f18 | [] | no_license | ZVlad1980/excel_api | 7b517bf68b677f8e947cba8794ae557e48c9ce06 | b514dbea9cb619e0e73c67b2e8fec4a59301101a | refs/heads/master | 2020-04-04T01:51:22.004466 | 2018-10-02T05:52:04 | 2018-10-02T05:52:04 | 155,679,735 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 997 | tst | create_2ndfl_corr.tst | PL/SQL Developer Test script 3.0
33
-- Created on 04.11.2017 by V.ZHURAVOV
declare
-- Local variables here
l_ref_row f2ndfl_arh_spravki%rowtype;
begin
fxndfl_util.raspredSpravki_poXml(
pKodNA => 1,
pGod => 2017,
pForma => 2
);
/*
--dbms_session.reset_package; return;
--
-- dbms_output.put_line(utl_error_api.get_exception_full); return;
-- Test statements here
--
f2ndfl_arh_spravki_api.create_reference_corr(
p_code_na => 1,
p_year => 2017,
p_contragent_id => 100000012,
p_actual_date => to_date(20171231, 'yyyymmdd')
); --*/
-- f2ndfl_arh_spravki_api.delete_reference(p_ref_id => 358577);
--FXNDFL_UTIL.calc_benefit_usage(p_spr_id => 358537);
exception
when others then
utl_error_api.fix_exception('Test script');
--dbms_output.put_line(utl_error_api.get_error_msg);
dbms_output.put_line(utl_error_api.get_exception_full);
raise;
end;
--358536*/
0
4
gl_SPRID
gl_CAID
l_result.nom_spr
p_src_ref_id
|
dcadf896b7d24f0005638bd435788755b728d959 | c89c3eb73e1c7b9f26076ad36749b4fd9ee2a69d | /My Implementations/DMUX8Way.tst | a5ab2734064feca9c0dd72469da3d6fb0b36b5b2 | [] | 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 | 461 | tst | DMUX8Way.tst | load DMUX8Way.hdl,
output-file DMUX8Way.out,
output-list in0 select%B1.3.1 out0 out1 out2 out3 out4 out5 out6 out7;
set in0 1, set select %B000, eval, output;
set in0 1, set select %B001, eval, output;
set in0 1, set select %B010, eval, output;
set in0 1, set select %B011, eval, output;
set in0 1, set select %B100, eval, output;
set in0 1, set select %B101, eval, output;
set in0 1, set select %B110, eval, output;
set in0 1, set select %B111, eval, output;
|
29d779a2924822e6f2c9dfa22cf97784c58a983e | 592b1b7dfaefd62d755737ac7b6e81f44f7786ba | /9a Program to generate random variables..sce | b5ab89d432891f6ae44a38b41d80c0690e96c6fe | [] | no_license | muitnet/Numerical-and-Statistical-Methods-sem2-fybscit-mumbai-university | 841143b72d52229c68bcd0666ed10c844c02f507 | 2d1c638b881f3e418a982baa02632effd03ae5fe | refs/heads/master | 2021-01-19T07:23:05.463429 | 2017-04-07T11:54:24 | 2017-04-07T11:54:24 | 87,540,712 | 6 | 5 | null | null | null | null | UTF-8 | Scilab | false | false | 92 | sce | 9a Program to generate random variables..sce | a=3;
x=27;
c=2;
m=10;
for i=0:m
xi=modulo((a*x+c),m)
printf("%f,",xi/m)
x=xi
end
|
f575daf1c44a81ee68dae00f5d87f19ca16b5fd2 | 417f69e36190edf7e19a030d2bb6aa4f15bb390c | /SMTTests/tests/err_assertBadSort.tst | 64d05c2c4ee1cf82521426dda01eb590b8869df4 | [] | no_license | IETS3/jSMTLIB | aeaa7ad19be88117c7454d807a944e8581184a66 | c724ac63056101bfeeb39cc3f366c8719aa23f7b | refs/heads/master | 2020-12-24T12:41:17.664907 | 2019-01-04T10:47:43 | 2019-01-04T10:47:43 | 76,446,229 | 1 | 0 | null | 2016-12-14T09:46:41 | 2016-12-14T09:46:41 | null | UTF-8 | Scilab | false | false | 64 | tst | err_assertBadSort.tst | ; assert with undefined expression
(set-logic QF_UF)
(assert x)
|
d43c469ce7fa776e276ebf15c2925859163f1579 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2438/CH5/EX5.37/Ex5_37.sce | bd76b86d3f8c3a562b0c96c65e20c3c2f5619977 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 632 | sce | Ex5_37.sce | //============================================================================
// chapter 5 example 37
clc;
clear;
//input data
lamda1 = 16; //penetration depth in nm
lamda2 = 96; // penetration depth in nm
T1 = 2.18; //temperature in K
T2 = 8.1; // temperature in K
//formula
//lamdaT =lamda0*((1-((T/Tc)^4))^(-1/4))
//calculation
Tc = ((((lamda2*(T2^4))-(lamda1*(T1^4)))/(lamda2-lamda1))^(1/4));
//result
mprintf('critical temperature =%3.2f K\n',Tc);
//============================================================================
|
5fba4cc4a7033564be06677943d543f62df192f2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1634/CH1/EX1.16/example1_16.sce | ebc5995f1d1ce126ae029b716ceaa4244eb3d528 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 291 | sce | example1_16.sce |
//exapple 1.16
clc; funcprot(0);
// Initialization of Variable
change=-11.82/60;//change in time in a day
time=-3-28.41/60;//greenwich time at july1 1951
c12=change/24*12//change of time in 12 hours
tch=time-c12;
disp(tch,"greenwich mean time error in 12th hour in (minutes):")
|
8284a15cfa3d90f7226df79810271e61140e036a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3648/CH14/EX14.6/Ex14_6.sce | 6fe4f315958c773651d8abdf34705ba5a312eacf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 440 | sce | Ex14_6.sce | //Example 14_6
clc();
clear;
//To find the difference between the frequency of wave reaching the officer and the car
fo=10^10 //Units in Hz
vw=3*10^8 //Units in meters/sec
vc=25 //Units in meters/sec
f1=fo*((vw+vc)/(vw-vc)) //Units in Hz
f1=f1-10^10 //Units in Hertz
printf("The difference between the both frequencies is=%d Hz",f1)
//In text book answer printed wrong as 1670 Hz correct answer is 1666 Hz
|
e6282408568dbd260bc22983d74b8462ee149e25 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH14/EX14.11/14_11.sce | 953246216e8bcd5aaeb2bca7df859b0737e925ac | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 631 | sce | 14_11.sce | clear;
clc;
fc=1*(10^6);Rk=75;m=0.6;
L0=Rk/(4*%pi*fc);
C0=1/(4*%pi*fc*Rk);
printf("The elements of the prototype T-section H.P. are:\n");
printf(" L = %f mH\n",round(L0*(10^3)*1000)/1000);
printf(" C = %f picofarads\n\n",round(C0*(10^12)));
C1=2*C0/m;
L1=L0/m;
C2=4*m*C0/(1-(m*m));
printf(" The elements of the terminating half section m-derived H.P.T. filter are:\n");
printf(" 2C/m = %f picofarads\n",fix(C1*(10^12)));
printf(" L/m = %f mH\n",round(L1*(10^6))/1000);
printf(" Cshunt = %f picofarads\n\n",round(C2*(10^12)));
fi=fc*sqrt(1-(m*m));
printf(" Frequency of peak attenuation = %d kHz",fi*(10^-3));
|
62698e7b1868584a92361c6542ba5dc55eeaf470 | 9ad712cefe61d85b01d2448a5b74c34296ee7e5f | /Lab_PD_Controller.sce | 2a39cb14e9f3b788a855da3e5a558d7c32115528 | [] | no_license | CoE-Warintorn/Control | a50f7cf26d0e80e3b90ea9dc3cac097b67f94d49 | 9572040e0e41d8d355f51032cd2ac98b1d04db64 | refs/heads/master | 2020-03-16T06:56:11.148006 | 2018-05-08T07:02:35 | 2018-05-08T07:02:35 | 132,565,771 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 289 | sce | Lab_PD_Controller.sce | s = poly(0, 's');
t = 0:0.01:15;
//a=4;
R = 2;
L = 1;
C = 1;
R1 = 2;
C1 = 10e-3;
//Gs1 = (1/L) / (s + (R/L));
Gs2 = 1 / (R * C * s + 1);
Gs3 = 1 / (R1 * C1 * s + 1);
//plot(t,csim('step',t,Gs1),t,csim('step',t,Gs2));
plot(t,csim('step',t,Gs2),t,csim('step',t,Gs3));
xgrid();
|
df2683301427ff813f8ff2d977c22b4c50df427a | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH9/EX9.16/9_16.sce | d6937679f1e95fda543669b84009e0f618b771c0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 617 | sce | 9_16.sce | //Problem 9.16: Two coils have a mutual inductance of 0.2 H. If the current in one coil is changed from 10 A to 4 A in 10 ms, calculate (a) the average induced e.m.f. in the second coil, (b) the change of flux linked with the second coil if it is wound with 500 turns.
//initializing the variables:
M = 0.2; // in Henry
I1 = 10; // in Amperes
I2 = 4; // in Amperes
dt = 0.010; // in secs
N = 500; // turns
//calculation:
dI1dt = (I1 -I2)/dt
E2 = -1*dI1dt*M
dPhi = abs(E2)*dt/N
printf("\n\n Result \n\n")
printf("\n (a)Induced e.m.f. E2 = %.0f V", E2)
printf("\n (b)change of flux = %.4f Wb", dPhi) |
c704d5cd794150d04eb7b493807988bb20d8c8cc | 3c9ed378363a111d20ce027e85cbc5ac9629bbb9 | /simpson1_3.sce | ef90e8cb083e37fccbf9782b3146e94c764ddef9 | [] | 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 | 2,727 | sce | simpson1_3.sce | clear
///////////////////////////////////////////////////////
// simpson1_3.sce
//
// Este programa apróxima la integral de una función
// (F(x) = 1 - (%e ^ (-x))) usando el método de
// Simpson 1 / 3
//
// José Elías Garza Vázquez
// Andrés Alam Sánchez Torres
// 04 / Feb / 20 version 1.0
//////////////////////////////////////////////////////
//////////////////////////////////////////////////////
// F
//
// Función que evalua un valor de x en 1 - (%e ^ (-x))
//
// Parametros:
// dX valor de x en el que se evalúa la función
//
// Regresa:
// dY valor calculado de la función
/////////////////////////////////////////////////////
function dY = F(dX)
dY = 1 - (%e ^ (-dX))
end
//////////////////////////////////////////////////////
// Simpson
//
// Funcion que aproxima el área debajo de una curva
// generada por una función F(x) (integral) a través
// del método de Simpson 1 / 3
//
// Parametros:
// dMin mínimo del rango a integrar
// dMax máximo del rango a integrar
// iN es el número de intervalos o segmentos
// a usar para calcular el área
// Regresa:
// dArea es el área aproximada
/////////////////////////////////////////////////////
function dArea = Simpson(dMin, dMax, iN)
// Suma para acumular el valor del numerador en la
// fórmula de Simpson
dSum = F(dMin) + F(dMax)
// Calcula tamaño de cada segmento para iterar por
// cada Xi
dH = (dMax - dMin) / iN
// Ciclo para calcular las sumas del numerador
for i = 1 : iN - 1
if modulo(i, 2) == 0 then
dSum = dSum + 2 * F(dH * i + dMin)
else
dSum = dSum + 4 * F(dH * i + dMin)
end
end
// Se calcula por completo el área
dArea = dSum * (dMax - dMin) / (3 * iN)
endfunction
///////// Programa Principal
// Se pide el rango de integración
dMin = input('Introduce el minimo del rango a integrar : ')
dMax = input('Introduce el maximo del rango a integrar : ')
// Validación del rango (mínimo es menor o igual al máximo)
while dMin > dMax
disp('Error: el minimimo del rango es mayor al maximo.')
dMin = input('Introduce el minimo del rango a integrar : ')
dMax = input('Introduce el maximo del rango a integrar : ')
end
// Se pide el número de intervalos
iN = input('Introduce el numero de intervalos')
// Validación del número de intervalos (par y positivo)
while iN < 0 && modulo(iN, 2) ~= 0
disp('Error: el numero de intervalos debe ser par y positivo.')
iN = input('Introduce el numero de intervalos')
end
// Se despliegan resultados
disp('La integral aproximada es : ')
disp(Simpson(dMin,dMax,iN))
|
3f98ae4f9e7c0492ed21c8d9cc8575eabdb1ac8a | 449d555969bfd7befe906877abab098c6e63a0e8 | /710/CH4/EX4.10/4_10.sci | 9ed828176f7b5a94f1cfcb28eff87cc324113bde | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 315 | sci | 4_10.sci | clc();
clear;
//To calculate the wedge angle
lambda=500*10^-9; //wavelength
x=0.07; //observed band width
mew=1; //refractive index
teta=(asind(lambda/(2*mew*x)))*10^4 //wedge angle
printf("The wedge angle is %f",teta); |
871ee24a3b371d686b66dbdcea6a46773f31f080 | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH4/EX4.22.b/solution4_22.sce | 208c1f522aed90cb02a49f4c2f25d7915ec6aae6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 620 | sce | solution4_22.sce |
//Obtain path of solution file
path = get_absolute_file_path('solution4_22.sce')
//Obtain path of data file
datapath = path + filesep() + 'data4_22.sci'
//Clear all
clc
//Execute the data file
exec(datapath)
//Temperature change Dt (degree)
Dt = Tf - Ti
//Calculate the expansion of tube delta (mm)
delta = alpha * l * Dt
//Net compression of tube c (mm)
c = delta - j
//Calculation of force P (N)
P = (A * E * c)/l
//Calculate the resultant stress sigma (N/mm2)
sigma = P/A
//Print results
printf('\nForce acting on the tube(P) = %f N\n',P)
printf('\nResultant stress(sigma) = %f N/mm2\n',sigma)
|
29ac110105fcb2f95604559ebb4dac02eee1b47e | 623a9dd972dc78dbde5d5b8dc187acd6a1eb5910 | /TP0/Baskara.sci | 8cf6df10efb625bdae2e2e87b5283a459ec46231 | [] | no_license | gtessi/CN2012-FICH | 0daad054ceb6c36636ee5e8b174a676b9e0acb9b | 4024384653b61b5af9e1c11ffb575e154025ee47 | refs/heads/master | 2020-03-27T05:53:04.684505 | 2018-08-25T03:03:15 | 2018-08-25T03:03:15 | 146,059,800 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 744 | sci | Baskara.sci | function [r] = Baskara(v)
// Controla que a sea distinto de 0
if (v(1)<>0) then
// Calcula el discriminante
disc=v(2).^2-4*v(1)*v(3)
// Calcula las raíces
x1=(-v(2)+sqrt(disc))/2*v(1);
x2=(-v(2)-sqrt(disc))/2*v(1);
// Informa el tipo de raíz según el discriminante
if (disc>0) then
mprintf('Las raíces son reales, distintas.\n\n')
elseif (disc==0) then
mprintf('Las raíces son reales, iguales.\n\n')
else
mprintf('Las raíces son complejas conjugadas.\n\n')
end
r=[x1 x2];
else
mprintf('No se puede aplicar la fórmula.\n\n')
end
endfunction |
563588b213aa1747e3ba1dfb5481b004976095ab | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH1/EX1.11/Ex1_11.sce | 3d5aed98467defe04961b9e8a7c72e514bcfec6e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 312 | sce | Ex1_11.sce | //Initilization of variables
x=2
y=-4
z=1
F=100 //N
//Calculation
thetax=x/sqrt(x^2+y^2+z^2) //radians
thetay=y/sqrt(x^2+y^2+z^2) //radians
thetaz=z/sqrt(x^2+y^2+z^2) //radians
P_x=F*thetax //N
P_y=F*thetay //N
P_z=F*thetaz //N
//Result
clc
printf('The vector P is:%fi%fj+%fk N',P_x,P_y,P_z) //N
|
b1512d559c2b8d8e8687e9a08f17038f0bba1720 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1670/CH2/EX2.26/2_26.sce | 06e5ef59bbf90029af41076207f545acc45f318d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,979 | sce | 2_26.sce | //Example 2.26
//Mullers Method
//Page no. 44
clc;clear;close;
deff('y=f(x)','y=x^3-x^2-x-1')
zi=[0;1;2];
s=["i","z2","z0","z1","f2","f0","f1","a0","a1","a2","zr+","zr-"]
li(1)=(zi(3,1)-zi(2,1))/(zi(2,1)-zi(1,1))
hi(1)=zi(3,1)-zi(2,1);
for i=2:7
for j=1:3
fz(j,i-1)=f(zi(j,i-1))
end
di(i-1)=1+li(i-1)
gi(i-1)=fz(1,i-1)*li(i-1)^2-fz(2,i-1)*di(i-1)^2+fz(3,i-1)*(li(i-1)+di(i-1))
D1(i-1)=gi(i-1)+sqrt(gi(i-1)^2-4*fz(3,i-1)*di(i-1)*li(i-1)*(fz(1,i-1)*li(i-1)-fz(2,i-1)*di(i-1)+fz(3,i-1)))
D2(i-1)=gi(i-1)-sqrt(gi(i-1)^2-4*fz(3,i-1)*di(i-1)*li(i-1)*(fz(1,i-1)*li(i-1)-fz(2,i-1)*di(i-1)+fz(3,i-1)))
if abs(D1(i-1))>abs(D2(i-1)) then
li(i)=-2*fz(3,i-1)*di(i-1)/D1(i-1)
else
li(i)=-2*fz(3,i-1)*di(i-1)/D2(i-1)
end
hi(i)=li(i)*hi(i-1);
z(i-1)=zi(3,i-1)+hi(i)
for j=1:2
zi(j,i)=zi(j+1,i-1)
end
zi(3,i)=z(i-1)
end
for i=1:12
if i==1 then
printf(s(i))
for j=1:6
printf('\t\t\t%i',j-1)
end
elseif i<=4
printf('\n %s',s(i))
for j=1:6
printf('\t\t%.10f',zi(i-1,j))
end
elseif i<=7
printf('\n %s',s(i))
for j=1:6
printf('\t\t%.10f',fz(i-4,j))
end
elseif i<=8
printf('\n %s',s(i))
for j=1:6
printf('\t\t%.10f',li(j))
end
elseif i<=9
printf('\n %s',s(i))
for j=1:6
printf('\t\t%.10f',di(j))
end
elseif i<=10
printf('\n %s',s(i))
for j=1:6
printf('\t\t%.10f',gi(j))
end
elseif i<=11
printf('\n %s',s(i))
for j=1:6
printf('\t\t%.10f',z(j))
end
elseif i<=12
printf('\n %s',s(i))
for j=1:6
printf('\t\t%.10f',zi(j))
end
end
end
printf('\n\nAt the end of the %i iteration, the root of the equation is %.10f',j-2,z(j)) |
4cd4e1b63cb4267ae2f35e4e8feba3502ab122f4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3740/CH4/EX4.2/Ex4_2.sce | 2f3b7d66608ad31b029f612585407da9ed9ed9b8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 540 | sce | Ex4_2.sce | //Optoelectronics - An Introduction, 2nd Edition by J. Wilson and J.F.B. Hawkes
//Example 4.2
//OS=Windows XP sp3
//Scilab version 5.5.2
clc;
clear;
//given
n1=3.6;//Refractive index of 1st medium (GaAs)
n2=1;//Refractive index of 2nd medium (air)
F=(1/4)*(n2/n1)^2*(1-((n1-n2)/(n1+n2))^2);//Dimensionless Fractional transmission for isotropic radiation
mprintf("\n F = %.3f",F);
Thetac=asind(n2/n1);//critical angle in degrees
mprintf("\n Critical angle = %.1f degrees",Thetac);//The answers vary due to round off error
|
bf2adc55dc29fde17532dccfafe648268e9b87f5 | 940067908a620ecf3af07168e750cd30769047e4 | /RootN.sci | 84890eb5667864258849c4ce0d9e6944a96d36d0 | [
"MIT"
] | permissive | davidfotsa/Numerical_Methods_With_Scilab | 9bada60e6feba012fa7a52ce0e0ea85a40afd0d4 | a3c731888b8a7a77f0d851210bc62e00e348ace9 | refs/heads/main | 2023-08-01T13:11:14.528993 | 2021-09-28T04:19:38 | 2021-09-28T04:19:38 | 407,939,339 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 815 | sci | RootN.sci | //Résolution de l'équation f(x)=0 par la méthode de Newton
funcprot(0);
function f=f(x)
//f=x.^2;
//f=log(x)+3*x-1;
//f=x^4-5*x^2+6;
f=x^4-x^2-6;
endfunction
function df=df(x)
//df=2*x;
//df=1/.x+3;
df=4*x^3-2*x;
endfunction
function r=RacineN(a,e)
//c=a;
n=0;
if (f(a)==0) then
c=a;
elseif (df(a)==0)
disp('Mauvaise entrées !')
else
c=a-f(a)/df(a);
n=1;
while (df(c)~=0)&((abs(c-a)>e))//((abs(f(c))>e))//&(c>0)
//c=c-f(c)/df(c);
a=c;
c=c-f(c)/df(c);
n=n+1;
end;
end;
r=[c,n];
endfunction;
//x=0.01:0.01:10;
//x=-10:0.01:10;
x=1.5:0.01:2;
y=f(x);
plot(x,y);
plot(x,zeros(1,length(x)),'k')
//r=RacineN(0.01,0.001);
//r=RacineN(1,0.001);
r=RacineN(1.65,10^(-6));
disp(r)
disp(f(r(1)))
|
bd72cd7ac6d0dd6a34127c0fbdb70723cc4e77b8 | 2a39d29b2cb27e98632f6810ed3c2a22a56fa8eb | /Materias/LabCalcNum/Rafael/criteriosassenfeld.sci | 069ff3e9da3060152957410c689bfd655b9a0764 | [] | no_license | rafael747/my-stuff | 74358384bc1a5b381d1951dfaef87efdf4cb53c2 | 8614aefdc3ca9afdc1534557f73719af8494f7fa | refs/heads/master | 2021-01-17T12:47:48.206860 | 2020-06-04T15:10:20 | 2020-06-04T15:10:20 | 57,989,835 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 518 | sci | criteriosassenfeld.sci | function x = criteriosassenfeld(A)
// Verifica se o Criterio das Linhas é satisfeito
[m,n] = size(A);
if m~=n, error('Matriz A deve ser quadrada'); end
betaK=zeros(n,1);
for i = 1:n
for j = 1:n
if j <= (i-1) then
betaK(i) = betaK(i) + abs(A(i,j)/A(i,i))*betaK(j);
elseif j >= (i+1) then
betaK(i) = betaK(i)+abs(A(i,j)/A(i,i))
end
end
if betaK(i) >= 1 then
x=%f;
return
end
end
x=%t;
return
endfunction
|
cacc0ddb1714d9d66bb986507ffb3787177deaa1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /491/CH7/EX7.6/7_6.sce | fa24c6b5e8f870753734d5323bce1bae3279e7e7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,716 | sce | 7_6.sce | sx = -50e06; // Direct stress in x-direction in psi
sy = 10e06; // Direct stress in y-direction ""
txy = -40e06 ; // Shear stress in y-direction ""
savg = (sx+sy)/2 ; // Average in-plane direct stress
sx1 = -50e06; tx1y1 = -40e06; // Stress acting on face at theta = 0 degree
sx1_ = 10e06; tx1y1_ = 40e06; // Stress acting on face at theta = 0 degree
R = sqrt(((sx-sy)/2)^2+(txy)^2); // Radius of mohr circle
// Part (a)
t = 45 ; // Inclination of the plane in degree
f1 = atand(40e06/30e06) // Angle between line CD and x1-axis
f2 = 90 - f1 ; // Angle between line CA and x1-axis
// Point D ;
sx1 = savg - R*cosd(f2); // Direct stress at point D
tx1y1 = R*sind(f2); // shear stress at point D
disp("Pa",sx1,"The direct stres at point D")
disp("Pa",tx1y1,"The shear stress at point D")
// Point D' ;
sx2 = savg + R*cosd(f2); // Direct stress at point D'
tx2y2 = -R*sind(f2); // shear stress at point D'
disp("Pa",sx2,"The direct stres at point D_desh")
disp("Pa",tx2y2,"The shear stress at point D_desh")
//Part (b)
sp1 = savg + R ; // Maximum direct stress in mohe circle (at point P1)
tp1 =(f1+180)/2 ; // Inclination of plane of maximum direct stress
disp("degree",tp1,"with angle","Pa",sp1,"The maximum direct stress at P1 is ")
sp2 = savg - R ; // Minimum direct stress in mohe circle (at point P2)
tp2 = f1/2 ; // Inclination of plane of minimum direct stress
disp("degree",tp2,"with angle","Pa",sp2,"The maximum direct stress at P2 is ")
// Part (c)
tmax = R ; // Maximum shear stress in mohe circle
ts1 = (90 + f1)/2 ;// Inclination of plane of maximum shear stress
disp("degree",ts1,"with plane incilation of","Pa",tmax,"The Maximum shear stress is ")
|
d7263d784bf80c7021173f56ef3cfb3d0b38e444 | 09704e4709928b49763cc3cc4a418bb22298bdaa | /splines_1D.sce | 424021a282f1fd23086799978ebe8ec1fb12300b | [] | no_license | beta-robots/splines-playground | 99514aedc291400733d5246cdd35aa8e20473ecb | 3546b5369eec12c0dfb933312f2f95801d70b138 | refs/heads/master | 2020-06-30T16:53:18.116391 | 2019-08-07T15:06:58 | 2019-08-07T15:06:58 | 200,889,865 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 666 | sce | splines_1D.sce | // Computes the 3rd degree polynomial:
// x(t) = at^3+bt^2+ct+d
// that satisfy the 4 constraints:
// x(0), x(1), x_dot(0), x_dot(1)
// clear all
xdel(winsid());
clear;
//User entries (constraints)
x_0 = 1;
x_1 = 0;
x_dot_0 = 0;
x_dot_1 = 3;
cc = [x_0; x_1; x_dot_0; x_dot_1];
// matrix setting
AA = [0 0 0 1; 1 1 1 1; 0 0 1 0; 3 2 1 0];
// solving
pp = AA\cc;
//plot
fig1 = figure(0);
fig1.background = 8;
ah = gca();
ah.isoview = "on";
ah.x_label.text = "$t$";
ah.x_label.font_size = 4;
ah.y_label.text = "$x$";
ah.y_label.font_size = 4;
plot_colors = ["r";"g";"b";"k";"y"];
tt =[0:0.01:1];
xx = pp(1)*tt^3+pp(2)*tt^2+pp(3)*tt+pp(4);
plot2d(tt,xx);
|
fcb4174d0abe8b0490924fb94c9181432b2a26b7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2465/CH9/EX9.9/Example_9.sce | b0181a82283f2b6cfa1b0625864acc3a0b9515c8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 431 | sce | Example_9.sce | //Chapter-9,Example 9,Page 221
clc();
close();
strength =0.05 //strength of CH3COOH
Ka=1.8*10^-5
// CH3COOH <---> CH3COO- + H+
//intially = 0.05 0 0
//dissolution a
//at equilibrium= 0.05(1-a) 0.05*a 0.05*a
//Ka =(0.05*a*0.05*a)/(0.05(1-a))
//Ka=0.05*a^2 a=negligible 1-a=1
a=sqrt(Ka/strength)
printf('the degree of dissolution is %.4f ',a)
|
0b2a2b80696041032d5e4a90af6039b9f43498e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1460/CH5/EX5.3/5_3.sce | 65ba679ff2ed9aeb92df8380a4c8d83a467f19a8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 548 | sce | 5_3.sce | clc
//Initialization of variables
Q=100 //B/lbm
Cp=0.24 //B/lbm F
T1=70+460 //R
T2=550+460 //R
Ts=50+460 //R
//calculations
function [cp]=fun(T)
cp=Cp/T
endfunction
ds1=intg(T1,T2,fun)
Tf=Q/Cp +T1
ds2=intg(T1,Tf,fun)
Qr=Ts*(ds2)
Qa=Q-Qr
Qun=Ts*(ds1)
Qa2=Q-Qun
//results
printf("Case 1")
printf("\n Change in entropy = %.4f B/lbm R",ds1)
printf("\n case 2")
printf("\n Entropy change = %.4f B/lbm R",ds2)
printf("\n Available energy = %.1f B/lbm",Qa)
printf("\n case 3")
printf("\n Available energy = %.1f B//lbm",Qa2)
|
8a85138427dfd2142c559f01d0a18a1faf6eb4c5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2855/CH3/EX3.7/Ex3_7.sce | de43ad6f2827f210f5d8dc1616b8205de1191839 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 664 | sce | Ex3_7.sce | //Chapter 3
//page no 74
//given
clc;
clear all;
//calculate Tf
If=120; //in mAmps
Vf=1.8; //in Volts
Ta=80; //in deg C
//calculate Tj
W=150; //in C/W for hermetric led
Pd=0.5*If*Vf;
Tj=75+W*Pd/1000;
printf("\n Value of Tj is %0.1f degree cel \n",Tj);
TF=8.01*10^12 *%e^-(8111/(Tj+273));
printf("\n Value of TF is %0.0f \n",TF);
//calculate RF
BF=6.5*10^-4; //from table
QF=0.2; //from table
EF=0.75; //from table
RF=BF*TF*EF*QF*1/10^6;
printf("\n Value of RF is %0.3f*10^6 \n",RF*10^6);
printf("\n Value of MTBF is %0.0f*10^6 hours \n",1/RF/10^6);
|
8d870ea7093df83a09e7da2d190df51a2cb1a32a | 449d555969bfd7befe906877abab098c6e63a0e8 | /650/CH8/EX8.16/16.sce | f5a54c02343127dd5fcd1a50580b0a3bdf9e70ba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 193 | sce | 16.sce | clc
g=9.81; // m/s^2
H=4; // m
f=0.006;
L=50; // m
d=0.1; // m
v1=sqrt(2*g*H/(4*f*L/d + 1.3));
t=integrate('4/(v1^2-v^2)', 'v', 0, 0.99*v1);
disp("Time taken =")
disp(t)
disp("s") |
c87d83626858469e2c5c719cc292673f67bc504c | 449d555969bfd7befe906877abab098c6e63a0e8 | /858/CH4/EX4.18/example_18.sce | 5f7d40a9f63573eff4cc7a4082f38739c108c3a0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 402 | sce | example_18.sce | clc
clear
printf("example 4.18 page number 154\n\n")
//to find pressure drop per unit length
b=0.050 //in m
a=0.025 //in m
d_eq=b-a //in m
density=1000 //in kg/m3
u=3 //in m/s
viscosity = 0.001
Re=d_eq*u*density/viscosity;
e=40*10^6 //in m
f=0.0062;
P_perunit_length=2*f*density*u^2/d_eq; //in Pa/m
printf("pressure per unit length = %f Pa/m",P_perunit_length)
|
a02248c6a7229a5d018010ec5000b8be0b2d9d95 | 449d555969bfd7befe906877abab098c6e63a0e8 | /534/CH3/EX3.3/3_3_Carbon_Nanotube.sce | 5777c56d40545557c9486da5c4c29059631972fa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,520 | sce | 3_3_Carbon_Nanotube.sce | clear;
clc;
printf('FUNDAMENTALS OF HEAT AND MASS TRANSFER \n Incropera / Dewitt / Bergman / Lavine \n EXAMPLE 3.3 Page 109 \n'); //Example 3.3
// Find Thermal conductivity of Carbon Nanotube
D = 14 * 10^-9; // [m]Dia of Nanotube
s = 5*10^-6; // [m]Distance between the islands
Ts = 308.4; //[K] Temp of sensing island
Tsurr = 300; //[K] Temp of surrounding
q = 11.3*10^-6; //[W] Total Rate of Heat flow
//Dimension of platinum line
wpt = 10^-6; //[m]
tpt = 0.2*10^-6; //[m]
Lpt = 250*10^-6; //[m]
//Dimension of Silicon nitride line
wsn = 3*10^-6; //[m]
tsn = 0.5*10^-6; //[m]
Lsn = 250*10^-6; //[m]
//From Table A.1 Platinum Temp Assumed = 325K
kpt = 71.6; //[W/m.K]
//From Table A.2, Silicon Nitride Temp Assumed = 325K
ksn = 15.5; //[W/m.K]
Apt = wpt*tpt; //Cross sectional area of platinum support beam
Asn = wsn*tsn-Apt; //Cross sectional area of Silicon Nitride support beam
Acn = %pi*D^2/4; //Cross sectional Area of Carbon nanotube
Rtsupp = [kpt*Apt/Lpt + ksn*Asn/Lsn]^-1; //[K/W] Thermal Resistance of each support
qs = 2*(Ts-Tsurr)/Rtsupp; //[W] Heat loss through sensing island support
qh = q - qs; //[W] Heat loss through heating island support
Th = Tsurr + qh*Rtsupp/2; //[K] Temp of Heating island
//For portion Through Carbon Nanotube
//qs = (Th-Ts)/(s/(kcn*Acn));
kcn = qs*s/(Acn*(Th-Ts));
printf("\n\n Thermal Conductivity of Carbon nanotube = %.2f W/m.K",kcn);
//END |
22e3d2e1d0c48cefce9c4ea15f45f854d76a25e9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /991/CH4/EX4.2/Example4_2.sce | 161605c37b0b6040d7648b058c3c29d9ff761121 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 554 | sce | Example4_2.sce | //Example. 4.2.
clc
disp("The Fermi level in an N-type material is given by")
disp("Ef = Ec - k*T*ln(Nc/Nd)")
disp("(Ec - Ef) = k*T*ln(Nc/Nd)")
disp("At T = 300 K,")
disp("0.3 = 300*k*ln(Nc/Nd) Eq.1")
disp("Similarly,")
disp("(Ec - Ef1) = 360*k*ln(Nc/Nd) Eq.2")
disp("Eq.2 divided by Eq.1 gives,")
disp("(Ec - Ef1)/0.3 = 360/300")
disp("Therefore, (Ec - Ef1) = (360/300) x 0.3")
q=(360/300)*0.3
disp(q,"Ec - Ef1= ")
disp("Hence, the new position of the Fermi level lies 0.36 eV below the conduction level") |
7d842e15591c57f236277af681d9a5fa542898af | 449d555969bfd7befe906877abab098c6e63a0e8 | /1955/CH6/EX6.5/example5.sce | 55995823f78c22b8672c3a66e75614b1f3abcfaa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,722 | sce | example5.sce | clc
clear
//input data
P00=3.5//Total-to-static pressure ratio
P2=1//Exit pressure in bar
T00=923//Inlet total temperature in K
U1Cs=0.66//Blade to isentropic speed ratio
D=0.45//Rotor diameter ratio
N=16000//Speed from nozzle in rpm
a11=20//Nozzle exit angle in degree
nn=0.95//Nozzle efficiency
b1=0.05//Rotor width at inlet in m
R=287//The universal gas constant in J/kg.K
Cp=1005//The specific heat of air at constant pressure in J/kg.K
r=1.4//The ratio of specific heats of air
//Calculations
T2s=T00*(1/P00)^((r-1)/r)//Isentropic temperature at the exit in K
Cs=(2*Cp*(T00-T2s))^(1/2)//The isentropic velocity in m/s
U1=U1Cs*Cs//The impeller tip speed in m/s
D1=(U1*60)/(3.14*N)//Rotor inlet diameter in m
D2=D*D1//Rotor outlet diameter in m
Cr2=U1*tand(a11)//The relative velocity at the exit in m/s
U2=(3.1415*D2*N)/60//Peripheral velocity of impeller at exit in m/s
b22=atand(Cr2/U2)//The air angle at rotor exit in degree
T02=T00-((U1^2)/(Cp))//The absolute temperature at the exit in K
T2=T02-((Cr2^2)/(2*Cp))//The temperature at the exit of turbine in K
T1=T2+((U1^2)/(2*Cp))//The temperature at the entry of turbine in K
T1s=T00-((T00-T1)/nn)//Isentropic temperature at the entry in K
P1=P00*(T1s/T00)^(r/(r-1))//The pressure at the entry stage in bar
d1=(P1*10^5)/(R*T1)//The density of the air at the inlet in kg/m^3
A1=3.1415*D1*b1//The area at the inlet in m^2
Cr1=Cr2//The relative velocity at the entry in m/s
m=d1*A1*Cr1//The mass flow rate for a 90degree IFR turbine Degree of Reaction is 0.5 in kg/s
W=(m*U1^2)*10^-6//Power developed in MW
d2=(P2*10^5)/(R*T2)//The density of the air at the exit in kg/m^3
b2=m/(d2*3.141*D2*Cr2)//Rotor width at the exit in m
D2h=D2-b2//Hub diameter at the exit in m
D2t=D2+b2//Tip diameter at the exit in m
nts=(W*10^6)/(m*Cp*(T00-T2s))//Total-to-static efficiency
C1=U1/cosd(a11)//Absolute velocity at the entry in m/s
Ln=(Cp*(T1-T1s))/((C1^2)/2)//Nozzle enthalpy loss coefficient
W2=((U2^2)+(Cr2^2))^(1/2)//Resultant relative velocity at the exit in m/s
T2s=T1*(P2/P1)^((r-1)/r)//Isentropic temperature at the exit in K
Lr=(Cp*(T2-T2s))/((W2^2)/2)//Rotor enthalpy loss coefficient
//output
printf('(a)\n (1)Rotor inlet diameter is %3.2f m\n (2)Rotor outlet diameter is %3.3f m\n(b)The air angle at rotor exit is %3.2f degree\n(c)The mass flow rate for a 90degree IFR turbine Degree of Reaction is 0.5 is %3.2f kg/s\n(d)Power developed is %3.3f MW\n(e)\n (1)Hub diameter at the exit is %3.4f m\n (2)Tip diameter at the exit is %3.4f m\n(f)Total-to-static efficiency is %3.4f\n(g)Nozzle enthalpy loss coefficient is %3.4f\n(h)Rotor enthalpy loss coefficient is %3.4f',D1,D2,b22,m,W,D2h,D2t,nts,Ln,Lr)
|
d58ce1835153717dff21fee55d17dbb2f2c413ed | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.3.1/macros/scicos_blocks/CLKSPLIT_f.sci | 082f2968d6fdf2bdec435136eb0c9437ad757f17 | [
"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 | 777 | sci | CLKSPLIT_f.sci | function [x,y,typ]=CLKSPLIT_f(job,arg1,arg2)
x=[];y=[],typ=[];
select job
case 'plot' then
graphics=arg1(2); [orig,sz,orient]=graphics(1:3)
sz=10*sz;
p=1 //pixel sizes ratio
rx=sz(1)*p/2
ry=sz(2)/2
pat=xget('pattern');xset('pattern',default_color(-1))
xfarc(orig(1)-rx,orig(2)+ry,sz(1)*p,sz(2),0,360*64)
xset('pattern',pat)
case 'getinputs' then
graphics=arg1(2); orig=graphics(1)
x=orig(1)
y=orig(2)
typ=-ones(x)
case 'getoutputs' then
graphics=arg1(2); orig=graphics(1)
x=[1,1]*orig(1)
y=[1,1]*orig(2)
typ=-ones(x)
case 'getorigin' then
[x,y]=standard_origin(arg1)
case 'set' then
x=arg1;
case 'define' then
model=list('split',[],[],1,[1;1],[],[],[],[],'d',[%f,%f,%f],[%f %f],' ',list())
x=standard_define([1 1]/3,model,[],[])
end
|
992a6bdeb4723c7c7fc696ace24efc22449ad389 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3487/CH4/EX4.5/Ex4_5.sce | 8750d41226c6fb41b3f595593cb55cfa0bc5c20d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex4_5.sce | //Chapter 4,Example 4.5 Page 146
clc
clear
V1 = 150*10^3 // V
PD = 1200 // potential divider ratio
I = 10^-6 // A
t = 8 // sec
V = V1/PD
R = V/I
C = t*10^6/R
printf (" V = %f V \n ",V)
printf (" R = %f M Ω \n ",R*10^-6)
printf (" C = %f μF \n ",C)
// Answers provided in the textbook are wrong
|
71057434d9eb922ea734faf276fb710d9038947e | 449d555969bfd7befe906877abab098c6e63a0e8 | /331/CH8/EX8.34/Example_8_34.sce | 9c81c2fc627fa31a9c617204622206453a45018d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,055 | sce | Example_8_34.sce | //Caption:Two-tailed F-test Concerning Equality of Two Population Variances
//Example8.34
//Page291
//Test2: Ho: Var1 = Var2 ; Var1 # Var2
clc;
n1 = 16; //size of the sample in old industrial estate
n2 = 13; //size of the sample in new industrial estate
Var1 = 225; //Variance in lakhs of old industrial estate
Var2 = 83; //Variance in lakhs of new industrial estate
Alpha = 0.1//significance level
Alpha = Alpha/2;
F = Var1/Var2; // F value
F_stand = F_test(Alpha,[])
disp(F,'The calculated Value F=')
disp(F_stand,'The value of F from F table =')
if ((F < F_stand) &(F< F_stand)) then
disp('It falls in the Acceptance Region')
disp('Then Null Hypothesis Ho should be Accepted')
else
disp('It falls in the Rejection Region')
disp('Then Null Hypothesis Ho should be Rejected')
end
//Result
//The calculated Value F=
//
// 2.7108434
//
// The value of F from F table =
//
// 0.403 2.62
//It falls in the Rejection Region
//
//Then Null Hypothesis Ho should be Rejected |
746969ba2b930679bd40a4a63428bd831887df32 | 449d555969bfd7befe906877abab098c6e63a0e8 | /135/CH7/EX7.3/EX3.sce | 81775c5e628e7a7e352ce6c3fefc28a5a6677495 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 352 | sce | EX3.sce | // Example 7.3: IDQ, VDSQ
clc, clear
IDSS=12; // in mili-amperes
VP=-4; // in volts
// From Fig. 7.28
VDD=12; // in volts
RD=1.2; // in kilo-ohms
// Since IG=0
VGS=-1.5; // in volts
// Using Shockley's equation
ID=IDSS*(1-VGS/VP)^2; // Drain current in mili-amperes
VDS=VDD-ID*RD; // in volts
disp(ID,"IDQ (mA) =");
disp(VDS,"VDSQ (V) ="); |
da2af103780449fea29dfdd098a03abd217119b5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1322/CH14/EX14.19/108ex2.sce | 428879163d596a58bc3a0aad8daf5f98439c1495 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 633 | sce | 108ex2.sce |
//36*a^2*b^2-25
clear;
clc;
close;
//the numbers squared are 6ab and 5")
disp("36*a^2*b^2-25=(6ab+5)(6ab-5)")
|
704605887fa8b52681c006337ded5ba1a7f69e11 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3756/CH1/EX1.13/Ex1_13.sce | 7e1bf52ca6120694959c67ea997274900193dea8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 261 | sce | Ex1_13.sce | clc
//
//
//
//Variable declaration
n1=62 //fringes
lambdaa1=5893*10**-10 //Wavelength 1
lambdaa2=5461*10**-10 //Wavelength 2
//Calculations
n2=(n1*lambdaa1)/lambdaa2
//Result
printf("\n The number of fringes would be %i ",round(n2))
|
9982e5de94ffb62f8375ee5a0cd81270f0c72537 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2741/CH10/EX10.23/ExampleA23.sce | da3a5310b6c22ad6f25911472df420b739064a8f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ExampleA23.sce | clc
clear
//Page number 480
//input data
m=0.0273;//The given amount of ice in kg
L=80;//The latent heat of fusion of ice in cal/gram
T=273;//The temperature of ice in K
//Calculations
L1=L*1000;//The latent heat of fusion of ice in cal/kg
S=(m*L1*4.2)/T;//The change in entropy in J/K
//Output
printf('The change in entropy is %3.1f J/K',S)
|
f0b4830a516cb798459225e2fc3b6377c720ff34 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3535/CH7/EX7.3/Ex7_3.sce | 0c5a178f772203cf0a29728318e4da62ea568b2d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 273 | sce | Ex7_3.sce | //Chapter 7, Example 7.3, Page 180
clc
clear
// Absorption coefficient
AbsC = 0.03343*((2*0.99985*0.333)+(2*0.00015*0.000506)+(0.99756*0.000190)+(0.00039*0.239)+(0.000160*0.00205))
printf(" Absorption coefficient = %f cm^-1",AbsC)
//Answers may vary due to round off error
|
05172168c9559d40b411be3ed2b894b741219645 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH2/EX2.14/2_14.sce | 7fd0e066a3de5828a1059d4fd18435d06c88a53a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 405 | sce | 2_14.sce | //Chapter 2, Problem 14
clc;
V=12; //voltage
R=40; //resistance
t=2*60; //time period
I=V/R; //calculating current using Ohms law
P=V*I; //calculating power
E=P*t; //calculating energy
printf("Current flowing in load = %f A\n\n\n",I);
printf("Power consumed = %f W\n\n\n",P);
printf("Energy dissipated = %f J",E);
|
91eab2f4f75b0056a8c22b29489181c480f2378c | 50054f36f9eb566eacc48b40f5d0e459dbf5553c | /src/Controllers/scripts/models/models.template.tst | c4edf5a0f454d6bb57d3e0cfea8f9700ffe7af18 | [
"MIT"
] | permissive | TheHatSky/typewriter-controller-template | d733f5b8e38e66797289de8467ebc631c167f55a | d4f6997b429e2b4d185618b7a9706bea7a45f2df | refs/heads/master | 2020-07-26T00:21:53.124374 | 2016-11-13T22:03:39 | 2016-11-13T22:03:39 | 73,643,142 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 137 | tst | models.template.tst | $Classes([TypeScriptViewModel])[// TypeWriter generated
export interface $Name { $Properties(p => p.HasSetter)[
$name: $Type;]
}]
|
04f0b2cc6e475c0b79912bfa3421a28a99a45624 | 449d555969bfd7befe906877abab098c6e63a0e8 | /24/CH19/EX19.3/Example19_3.sce | 73417d8b42f22db0d4f7736a56094af672930648 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 770 | sce | Example19_3.sce | //Given that
m = 720*10^-3 //in kg
Ti = -10 //in degree C
Tw = 15 //in degree C
Si = 2220 //in J/kg.K
L = 333*10^3 //in J/Kg
Sw = 4190 //in J/kg.K
//Sample Problem 19-3a
printf("**Sample Problem 19-3a**\n");
//When ice comes to temprature 0 degree celcius
deltaTi = 0 - Ti
Q1 = m*Si*deltaTi
//When ice melts to water
Q2 = m*L
//when water comes to temprature 15 degree celcius
deltaTw = Tw - 0
Q3 = m*Sw*deltaTw
Q = Q1 + Q2 + Q3
printf("The heat absorbed by the ice is %fKJ\n", Q*10^-3)
//Sample Problem 19-3b
printf("\n**Sample Problem 19-3b**\n")
Qg = 210*10^3 //in J
//Energy left after the ice comes to 0 degree C
Qleft = Qg - Q1
//the mass of ice left aftr all the heat is consumed
Mleft = Qleft/L
printf("The mass of ice left is equal to %fg", Mleft*10^3)
|
d41a1975ae5ba4d16d0461eb6efb063318bd82c0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2873/CH7/EX7.11/Ex7_11.sce | 3e01885b72688bc5e6e08084c6675b5268892a69 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 637 | sce | Ex7_11.sce | // Display modeK
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Engineering Thermodynamics by Onkar Singh Chapter 7 Example 11")
To=280;//surrounding temperature in K
Q=500;//heat removed in KJ
T1=835;//temperature of reservoir in K
T2=720;//temperature of system in K
disp("availability for heat reservoir(A_HR)=To*deltaS_reservoir in KJ/kg K")
A_HR=To*Q/T1
disp("now availability for system(A_system)=To*deltaS_syatem in KJ/kg K")
A_system=To*Q/T2
disp("net loss of available energy(A)=A_HR-A_system in KJ/kg K")
A=A_HR-A_system
disp("so loss of available energy=26.77 KJ/kg K")
|
21cf4082f38190701ecb747cb2fd40908f887e03 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/blackman/blackman10.sce | f00c48a8c31d9a520ad2dd49f5d47ee695af2cb6 | [] | 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 | 168 | sce | blackman10.sce | //no i/p
w=blackman();
disp(w);
//output
//!--error 10000
//Incorrect number of input arguments.
//at line 33 of function blackman called by :
//w=blackman();
|
19ad9e587854e95768aeb4b92eb753d650eeb635 | 66106821c3fd692db68c20ab2934f0ce400c0890 | /test/disassembler/adiw.instr.tst | 0d939620e57cb1a68acb059e711c9333f2e2f766 | [] | 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,294 | tst | adiw.instr.tst | ; @Harness: disassembler
; @Result: PASS
section .text size=0x0000002c vma=0x00000000 lma=0x00000000 offset=0x00000034 ;2**0
section .data size=0x00000000 vma=0x00000000 lma=0x00000000 offset=0x00000060 ;2**0
start .text:
label 0x00000000 ".text":
0x0: 0x4f 0x96 adiw r24, 0x1f ; 0x31
0x2: 0x5f 0x96 adiw r26, 0x1f ; 0x31
0x4: 0x6f 0x96 adiw r28, 0x1f ; 0x31
0x6: 0x7f 0x96 adiw r30, 0x1f ; 0x31
0x8: 0xcf 0x96 adiw r24, 0x3f ; 0x63
0xa: 0x00 0x96 adiw r24, 0x00 ; 0
0xc: 0x4f 0x96 adiw r24, 0x1f ; 0x31
0xe: 0x0f 0x96 adiw r24, 0x0f ; 0x15
0x10: 0x07 0x96 adiw r24, 0x07 ; 7
0x12: 0x03 0x96 adiw r24, 0x03 ; 3
0x14: 0x01 0x96 adiw r24, 0x01 ; 1
0x16: 0xcc 0x96 adiw r24, 0x3c ; 0x60
0x18: 0x4e 0x96 adiw r24, 0x1e ; 0x30
0x1a: 0xc3 0x96 adiw r24, 0x33 ; 0x51
0x1c: 0x49 0x96 adiw r24, 0x19 ; 0x25
0x1e: 0x0c 0x96 adiw r24, 0x0c ; 0x12
0x20: 0x06 0x96 adiw r24, 0x06 ; 6
0x22: 0x8a 0x96 adiw r24, 0x2a ; 0x42
0x24: 0x45 0x96 adiw r24, 0x15 ; 0x21
0x26: 0x0a 0x96 adiw r24, 0x0a ; 0x10
0x28: 0x05 0x96 adiw r24, 0x05 ; 5
0x2a: 0x02 0x96 adiw r24, 0x02 ; 2
start .data:
|
b7d2a4b0045bd034dca29fbf54f0c051ce462e75 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3705/CH2/EX2.1/Ex2_1.sce | 0a3263ff050c5b6e74057420691fd0dac2cddc3c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 705 | sce | Ex2_1.sce |
clear//
//Variable Declaration
//Axial Forces in lb in member AB, BC and CD
P_AB=2000
P_BC=2000
P_CD=4000
//Other Variables
E=29*10**6 //Modulus of Elasticity in psi
//Length of each member in inches
L_AB=5*12
L_BC=4*12
L_CD=4*12
//Diameter of each member in inches
D_AB=0.5
D_BC=0.75
D_CD=0.75
//Calculation
//Area Calculation of each member in square inches
A_AB=(%pi*D_AB**2)/4
A_BC=(%pi*D_BC**2)/4
A_CD=(%pi*D_CD**2)/4
//Using relation delta=(PL/AE) to compute strain
//As stress in Member CD is compression
delta=(E**-1)*((P_AB*L_AB*A_AB**-1)+(P_BC*L_BC*A_BC**-1)-(P_CD*L_CD*A_CD**-1))
//Result
printf("\n The elongation in the total structure is %0.5f in",delta)
|
bf1fb68eee3492757411fce67e768986f9ad69ef | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH3/EX3.27/3_27.sce | c31e42c82b2d5809214caebe4946b5d37e5ace03 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 277 | sce | 3_27.sce | clear//
//Variables
P = 150 *12/1000.0 //Power consumed by 12 bulbs (in kilowatt)
t = 10.0 //Time (in hours)
//Calculation
W = P * t //Energy used (in kWh)
//Result
printf("\n The energy used is %0.3f kWh.",W)
|
b55a314c8dc52686a98cabed55a11b6c7de23bcb | e8dbcf469ba8a31d6926ba791ebc5dcccd50282b | /css/Scripts/Funciones/get_categoria_ocupacion.tst | 87d774d62f5b54df55b5a0603277adaea2459310 | [] | no_license | bryanjimenezchacon/bryanjimenezchacon.github.io | 5f2a0f1dbfbc584a65dece48f98b1c13d755512f | 7062d1860934808265c05491007c83f69da1112a | refs/heads/master | 2021-01-23T17:20:11.542585 | 2015-10-10T05:52:52 | 2015-10-10T05:52:52 | 41,244,377 | 2 | 0 | null | 2015-08-26T15:46:04 | 2015-08-23T09:52:06 | JavaScript | UTF-8 | Scilab | false | false | 211 | tst | get_categoria_ocupacion.tst | PL/SQL Developer Test script 3.0
4
begin
-- Call the function
:result := get_categoria_ocupacion(pcategoria_ocupacion_id => :pcategoria_ocupacion_id);
end;
2
result
1
Salud
5
pcategoria_ocupacion_id
1
1
4
0
|
ce6e57f0b35e3b12bcc62a6369ebb42073b46eef | 0812f3bb6f3cc038b570df68ccee4275da04b11f | /models/complexity_1000/Applied_Thermodynamics_and_Engineering/CH3/EX3.6/3_6.sce | d3e039f311ee1c4276b625cea3e9ddbb96ff8850 | [] | no_license | apelttom/20-semester_PhD_thesis | edc0b55580bae9d364599932cd73cf32509f4b7a | ff28b115fcf5e121525e08021fa0c02b54a8e143 | refs/heads/master | 2018-12-26T22:03:38.510422 | 2018-12-14T20:04:11 | 2018-12-14T20:04:11 | 106,552,276 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 381 | sce | 3_6.sce | clc;
p1=1;//bar
p2=10;//bar
n=1.1;
v1=0.16;//m^3
v2=v1*(p1/p2)^(1/n);
W=(p2*v2-p1*v1)*10^5/[10^3*(n-1)];
disp("work done by the refrigerant is:");
disp("kJ",W);
hg1=174.2;
u1=hg1-(p1*10^5*v1/10^3);
hg2=203.8;//kJ/kg
vg2=0.018;//m^3
v=0.02;//m^3
h=224;//kJ/kg
h2=hg2+(v2-vg2)*(h-hg2)/(v-vg2);
u2=h2-(p2*10^5*v2/10^3)
Q=-W+(u2-u1);
disp("heat transferred is:");
disp("kJ/kg",Q)
|
aeffca761b6aa3930c4f7194fcef090a02addfe2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1682/CH8/EX8.9/Exa8_9.sce | 841aaef92e47fa2d4d2abd548cd3f2f2d3448be3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,460 | sce | Exa8_9.sce | //Exa 8.9
clc;
clear;
close;
//Given data :
p1=0.07;//unitless
p2=0.11;//unitless
p3=0.12;//unitless
p4=0.18;//unitless
p5=0.21;//unitless
p6=0.20;//unitless
p7=0.11;//unitless
N0=100;//no. of transistors
N1=N0*p1;//no. of transistors
N2=N0*p2;//no. of transistors
N3=N0*p3;//no. of transistors
N4=N0*p4;//no. of transistors
N5=N0*p5;//no. of transistors
N6=N0*p6;//no. of transistors
N7=N0*p7;//no. of transistors
//Calculation of individual replacement cost
Life=0;//in weeks
p=[p1 p2 p3 p4 p5 p6 p7];//Unitless
for i=1:7
Life=Life+i*p(i);
end
disp(Life,"Expected life of each transistor in weeks : ")
disp(round(100/Life),"Average No. of failures/week : ");
//Calculation of group replacement cost
disp("Cost of transistor when replaced simultaneously = Rs. 3");
disp("Cost of transistor when replaced individually = Rs. 9");
disp("The cost of group replacement policy for seeral replacement periods are summarized in Table 8.6. This table can be seen from the book.");
disp("From table it is clear that the avg cost/week is minimum for the 4th week. Hence, the group replacement period is 4 weeks.");
disp("Individual replacement cost/week = Rs. 207");
disp("Minimum group replacement ost/week = Rs. 196.50");
disp("Since the min group replacement cost/week is less than the individual replacement cost/week, the group replacement policy is the best, and hence all the transistors should be replaced in 4 weeks.") |
7f6036b5b92397a68ce1c1e033d03bb9c944068f | 449d555969bfd7befe906877abab098c6e63a0e8 | /995/CH4/EX4.14/Ex4_14.sce | 6e6771155d6adcbcbd7ad77102adfdb3a165a2ec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 242 | sce | Ex4_14.sce | //Ex:4.14
clc;
clear;
close;
L=20*10^-3;
f=2000;
V=1.5;
r=100;
C=10*10^-9;
X_L=(2*%pi*f*L);
X_C=1/(2*%pi*f*C);
z=sqrt(r^2+(X_L-X_C)^2);
i=V/z;
v=i*r;
printf("Current supplied = %f mA",i);
printf("\nVoltage developed = %f V",v); |
d1dbb0aab64381070100a2f0a51f84f47ecd787e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1673/CH2/EX2.29/2_29.sce | df758fdd543e43230bde1083ec56dc3c4e732020 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 767 | sce | 2_29.sce | //quadratic factor by lin's--bairsttow method
//example 2.29
//page 57
clc;clear;close;
deff('y=f(x)','y=x^3-x-1');
a=[-1 -1 0 1];
r1=1;s1=1;
b4=a(4);
deff('b3=f3(r)','b3=a(3)-r*a(4)');
deff('b2=f2(r,s)','b2=a(2)-r*a(3)+r^2*a(4)-s*a(4)');
deff('b1=f1(r,s)','b1=a(1)-s*a(3)+s*r*a(4)');
A=[1,1;2,-1];
C=[0;1];
X=A^-1*C;
dr=X(1,1);ds=X(2,1);
r2=r1+dr;s2=s1+ds;
//second pproximation
r1=r2;s1=s2;
b11=f1(r2,s2);
b22=f2(r2,s2);
h=0.001;
dr_b1=(f1(r1+h,s1)-f1(r1,s1))/h;
ds_b1=(f1(r1,s1+h)-f1(r1,s1))/h;
dr_b2=(f2(r1+h,s1)-f2(r1,s1))/h;
ds_b2=(f2(r1,s1+h)-f2(r1,s1))/h;
A=[dr_b1,ds_b1;dr_b2,ds_b2];
C=[-f1(r1,s1);-f2(r1,s2)];
X=A^-1*C;
r2=r1+X(1,1);
s2=s1+X(2,1);
printf(' roots correct to 3 decimal places are : %0.3f %0.3f',r2,s2);
|
b3de511a724d88c1a67b2fc91157ea14c9ee6401 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1793/CH11/EX11.11/11Q11.sce | 33f8302a528904b3f60e2e0a17a0d40757a8bcf7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 74 | sce | 11Q11.sce | clc
t50=19
Hd=2.24/2
Cv=0.197*Hd^2/t50
printf('Cv = %f cm^2/min',Cv)
|
a27c17e67a29a712ed924971f528232f3c19d0bc | 449d555969bfd7befe906877abab098c6e63a0e8 | /405/CH11/EX11.3/11_3.sce | 714a7764a1a62ea815a8fa4a7c6cb9a8dda1dde9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,030 | sce | 11_3.sce | clear;
clc;
printf("\t\t\tExample Number 11.3\n\n\n");
// Wet-bulb temperature
// Example 11.3(page no.-590-591)
// solution
Pg = 2107;// [Pa] from steam table at 18.3 degree celcius
Pw = Pg*18;// [Pa]
Rw = 8315;// [J/mol K] gas constant
Tw = 273.15+18.3;// [K]
RHOw = Pw/(Rw*Tw);// [kg/cubic meter]
Cw = RHOw;// [kg/cubic meter]
RHOinf = 0;// since the free stream is dry air
Cinf = 0;
P = 1.01325*10^(5);// [Pa]
R = 287;// [J /kg K]
T = Tw;// [K]
RHO = P/(R*T);// [kg/cubic meter]
Cp = 1004;// [J/kg degree celsius]
Le = 0.845;
Hfg = 2.456*10^(6);// [J/kg]
// now using equation(11-31)
Tinf = (((Cw-Cinf)*Hfg)/(RHO*Cp*(Le^(2/3))))+Tw;// [K]
Tin = Tinf-273.15;// [degree celsius]
printf("temperature of dry air is %f degree celsius",Tin);
printf("\n\n these calculations are now recalculated the density at the arithmetic-average temperature between wall and free-stream conditions");
printf("\n\n with this adjustments these results are RHO = 1.143 kg/m^(3) and Tinf = 55.8 degree celcius");
|
deafa7d03469652b93f6d4f7b49a41bed335528c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH3/EX3.5/3_5.sce | 893c62872f58f4f6fa1bd1d4bfb84d8bbb9da61c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 262 | sce | 3_5.sce | clear//
//Variables
I = 0.3 //Current (in Ampere)
W = 9.45 //Heat (in Joules)
t = 5 //Time (in seconds)
//Calculation
Q = I * t
V = W/Q //Voltage (in Volts)
//Result
printf("\n The voltage across filament is %0.3f volts.",V)
|
2304d8630328e1b820d4d912aaa9c20aa12db419 | 449d555969bfd7befe906877abab098c6e63a0e8 | /149/CH4/EX4.46/ques46.sce | aa123fa144241cdeb2eaaf2b00b827b5f3ff48b5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 211 | sce | ques46.sce | //ques46
disp('radius of curvature');
syms a t
r=a*(1-cos(t));
r1=diff(r,t,1);
l=(r^2+r1^2)^(3/2)/(r^2+2*r1^2-r*r1);
syms r;
t=acos(1-r/a);
l=eval(l);
disp(l);
disp('Which is proportional to r^0.5');
|
32f2f39859136182c9716afc6497a017d832e516 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3831/CH16/EX16.10/Ex16_10.sce | 2d64a15c23a167a218842aa683ff9f7e6fa9c27a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex16_10.sce | // Example 16_10
clc;funcprot(0);
// Given data
m=5.00*10^-3;// kg
T=20.0+273.15;// K
p=101.3*10^3;// kg/(m.s^2)
R=286;// m^2/(s^2.K)
D=3.00*10^-3;// m
g=9.81;// m/s^2
g_c=1;// The gravitational constant
// Calculation
W=(m*g)/g_c;// N
rho=p/(R*T);// kg/m^3
V_in=((4*g_c*W)/(rho*%pi*D^2))^(1/2);// m/s
printf("\nThe velocity of the jet,V_in=%2.1f m/s",V_in);
|
3e23459646414b082d31a81472695685d66987c5 | 97135f725c599527ba0fd95a5289373c755daf3b | /Examples/test-suite/scilab/typedef_struct_cpp_runme.sci | 14dc0f46e66378a08a56e077e6bbc3e27bbcb527 | [] | 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 | 523 | sci | typedef_struct_cpp_runme.sci | exec("alaqiltest.start", -1);
try
x = new_LineObj();
LineObj_numpoints_set(x, 100);
catch
alaqiltesterror();
end
if LineObj_numpoints_get(x) <> 100 then alaqiltesterror(); end
if MS_NOOVERRIDE_get() <> -1111 then alaqiltesterror(); end
try
y = make_a();
A_t_a_set(y, 200);
catch
alaqiltesterror();
end
if A_t_a_get(y) <> 200 then alaqiltesterror(); end
try
A_t_b_set(y, 300);
catch
alaqiltesterror();
end
if A_t_b_get(y) <> 300 then alaqiltesterror(); end
exec("alaqiltest.quit", -1);
|
383f4e850bfd2397cafe2e3c7966890b882ef9f8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1775/CH3/EX3.1/Chapter3_Example1.sce | e8b7372af41b0ca754e83ab8ee24890604292441 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,080 | sce | Chapter3_Example1.sce | //Chapter-3, Illustration 1, Page 139
//Title: Internal Combustion Engines
//=============================================================================
clc
clear
//INPUT DATA
d=200;//diameter of cylinder in mm
L=300;//stroke of cylinder in mm
Vc=1.73;//Clearance volume in litres
imep=650;//indicated mean effective pressure in kN/(m^2)
g=6.2;//gas consumption in (m^3)/h
CV=38.5;//Calorific value in MJ/(m^3)
y=1.4;//Ratio of specific heats
N=150;//No. of firing cycles per minute
//CALCULATIONS
Vs=((3.1415/4)*(d^2)*L)*(10^-6);//Stroke volume in litres
Vt=Vs+Vc;//Total volume in litres
rv=(Vt/Vc);//Compression ratio
n=(1-(1/rv^(y-1)))*100;//Air standard efficiency
IP=imep*(Vs*10^-3)*(N/60);//Indicated power in kW
F=(g*CV*1000)/3600;//Fuel energy input in kW
nT=(IP/F)*100;//Indicated thermal efficiency
//OUTPUT
mprintf('Air Standard Efficiency is %3.1f percent \n Indicated Power is %3.1f kW \n Indicated thermal efficiency is %3.0f percent',n,IP,nT)
//==============================END OF PROGRAM=================================
|
0fce9c880a3c16f84b9e1a6cc890913ee7c5c4b4 | 52cbfb547384bc9612dc59f5280971ed5a701a9d | /Discrete Step Signal.sce | bb5bc0311b24b2c49ab94f5ae96835331a89cebd | [] | no_license | allenbenny419/Scilab-Codes | efa5402bea6d03088f77dafcf9ed87bd1f93e915 | 48109cd70c8a66a56e87f88152e866565dd52362 | refs/heads/main | 2023-06-23T21:10:24.227426 | 2021-07-21T11:09:15 | 2021-07-21T11:09:15 | 388,086,261 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 127 | sce | Discrete Step Signal.sce | clear;
clc;
t =0:1:6;
u = ones ( t ) .*( t >=0) ;
plot2d3(t,u);
xtitle('Discrete Step Signal')
xlabel('x')
ylabel('y')
|
84cef141a1021ae3eb41f7e978afd82e2a7dd364 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3411/CH10/EX2.8.u2/Ex2_8_u2.sce | 233443e73e75c2ff8885bffe5ac9d71c840ed02e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 913 | sce | Ex2_8_u2.sce | //Example 2_8_u2
clc();
clear;
//TO Find the energy at which probability of occupancy is 0.9 and density of states and the population density
fe=0.9
k=(1/fe)-1
logk=log(k)
kb=8.62*10^-5 //units in eV/K
t=1000 //units in K
E=logk*kb*t //units in eV
ef=7.06 //units in eV
energy=E+ef //units in eV
printf("The energy of this state is E=%.2f eV",energy)
n=9.1*10^-31 //units in Kgs
EE=energy //units in eV
h=4.14*10^-15 //units in eV sec
ZE=(8*sqrt(2)*%pi*n^1.5*sqrt(EE))/h^3 //units in meter^-3 (eV)^-1
ZE=ZE*1.56*10^28 //units meter^-3 (eV)^-1
printf("\nThe density of the states for this energy is Z(E)=")
disp(ZE)
printf("meter^-3 (eV)^-1")
ne=ZE*fe //units in meter^-3 (eV)^-1
printf("\nThe population density for this energy is N(E)=")
disp(ne)
printf("meter^-3 (eV)^-1")
|
9b9bd20048b25c11dd2b07b25482848a302666b4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2840/CH9/EX9.10/ex9_10.sce | 79a01acc1d2a2bad13c4dd127d7eaf7575337db4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 522 | sce | ex9_10.sce | clc;
clear all;
lemda=0.022*1e-10;//wavelength in meters
th=45;//angle in degree
m=9.1*1e-31;
c=3*1e8;//velocity of light in free space
h=6.62*1e-34;//plank's constant
x=cos(th);
disp(x);
dlemda=h*(1-cos(th))/(m*c);//delta lemda
disp('m',dlemda,'delta lemda is=');
//lemda-lemda1=dlemda s0.. lemda1=lemda-dlemda
lemda1=lemda-dlemda;//wavelength of incident X-rays
disp('m',lemda1,'wavelength of incident X-rays');
//there is variation in the answer than book.. checked in calculator too..(mistake of book)
|
916bf4850f885ec75b39efbc5c3a8a84304c708e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1892/CH1/EX1.17/Example1_17.sce | 0220be3d7bdb73d0047a9ac22656650197a2ffb1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 524 | sce | Example1_17.sce | // Example 1.17
clear; clc; close;
format('v',6);
// Given data
Z1=0.07+%i*0.4;//in ohm
Z2dash=0.08+%i*0.2;//in ohm
V1_line=200;//in volt
//Calculations
R1=real(Z1);//in ohm
X1=imag(Z1);//in ohm
R2dash=real(Z2dash);//in ohm
X2dash=imag(Z2dash);//in ohm
R1e=R1+R2dash;//in ohm
X1e=X1+X2dash;//in ohm
Z1e=R1e+%i*X1e;//in ohm
Z1e_mag=abs(Z1e);//magnitude of Z1e in ohm
V1PerPhase=V1_line/sqrt(3);//in volt
Pout_max=3*V1PerPhase^2/2/(R1e+Z1e);//
S=R2dash/(R2dash+Z1e_mag);//
disp(S*100,"Slip in % : ")
|
c2040768bce2e665307f1ba1f61db00a7784e3b3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1586/CH3/EX3.8/EXP3_8.sce | 50e4c88a71677bb755931fa5b210dd06d2db4361 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 471 | sce | EXP3_8.sce | clc;funcprot(0);//EXAMPLE 3.8
// Initialisation of Variables
r=1;.......//Radius of each atom in units
l=0.334;.......//Lattice parameter of (010) in nm
//CALCULATIONS
a1=2*r;........//Area of face for (010)
a2=l^2;...........//Area of face of (010) in cm^2
pd=1/a2;........//Planar density of (010) in atoms/nm^2
pf=%pi*r^2/(a1)^2;......//Packing fraction of (010)
disp(pd*10^14,"Planar density of (010) in atoms/cm^2:")
disp(pf,"Packing fraction of (010):")
|
942cb1efb63d5c8b4f2cead62c72ecaabe0f47f7 | b6b875fb04ec6df2c0fb0d28f36962fa9aebb2bf | /TD5/Scripts/hypergeo.sce | 48e81bf2f5e7207d6f2ba60c3e4a3de84ef8ccdf | [] | no_license | MFrizzy/Modelisation | 51794b2edf421f9d2206cb73972d8d8d7b1e9759 | 0ca819afbcbe00f58f3bbaa8fc97164ae2c1d3cb | refs/heads/master | 2021-08-29T12:02:20.042037 | 2017-12-13T22:39:21 | 2017-12-13T22:39:21 | 106,943,303 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 435 | sce | hypergeo.sce | clear
clc
function s=hypergeo(N,n,P)
M=P*N;
s=0;
for i=0:n-1
if rand()<P
M=M-1;
N=N-1;
s=s+1;
P=M/N;
else
N=N-1;
P=M/N;
end
end
endfunction
N=20; n=3; P=2/20;t=[];
for j=1:100
t(j)=hypergeo(N,n,P); //100 tirages de loi hypergeo
end
frequences=tabul(t) // on calcule les frequences obtenues
disp(frequences)
|
258d8734c0112f03f9b6c06bb8b6620db88a598c | c565d26060d56f516d954d4b378b8699c31a71ef | /Scilab/virtual_old/Step_Analysis/Kp-tau-order2/secondorder_virtual.sce | 6493d32c6f9ca40a59bd31afd9234dd0aac818c0 | [] | no_license | rupakrokade/sbhs-manual | 26d6e458c5d6aaba858c3cb2d07ff646d90645ce | 5aad4829d5ba1cdf9cc62d72f794fab2b56dd786 | refs/heads/master | 2021-01-23T06:25:53.904684 | 2015-10-24T11:57:04 | 2015-10-24T11:57:04 | 5,258,478 | 0 | 0 | null | 2012-11-16T11:45:07 | 2012-08-01T11:36:17 | Scilab | UTF-8 | Scilab | false | false | 762 | sce | secondorder_virtual.sce | mode(0)
filename = "2014Jun17_19_18_40.txt";
clf
exec('costf_2.sci');
exec('label.sci');
exec ('order_2_heater.sci');
data = fscanfMat(filename);
time = data(:,5);
heater = int(data(:, 2));
fan = int(data(:, 3));
temp = data(:, 4);
//times=[time(1); time(1:$-1)];
time1 = time - time(1);
time2 = time1/1000;
// find where the step change happens
len = length(heater);
heaters1 = [heater(1); heater(1:len-1)];
del_heat = heater - heaters1;
ind = find(del_heat>1);
step_instant = ind($)-1;
t = time2(step_instant:len);
t = t - t(1);
H = heater(step_instant:len);
F = fan(step_instant:len);
T = temp(step_instant:len);
T = T - T(1);
//limits = [0,0,500,10]; no=10000; // first step
// limits = [400,0,900,26]; no=5000;//second step
lsterr = order_2(t,H,T,)
|
c167f789c8d63c10fc2b90613ed857cbc406c04e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1418/CH26/EX26.22/EX26_22.sce | c7b634c7d23d1d645dc460c8b11fd8941fb0fc35 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,056 | sce | EX26_22.sce | //EXAMPLE 26.22
//LONG SHUNT DYNAMO
clc;
funcprot(0);
//Variable Initialisation
N=1000;...........................//Speed of the dynamo in rpm
Po=20;.............................//Output power in Kilo Watts
V=220;..............................//Terminal voltage in Volts
Ra=0.04;...........................//Armature resistance in Ohms
Rsh=110;.............................//Shunt field resistance in Ohms
Rse=0.05;...........................//Series field resistance in Ohms
eff=85;..............................//Over all efficiency in Percentage
I=(Po*1000)/(V);......................//Load current in Amperes
y=round(I*100)/100;...................//Rounding of decimal places
Ish=V/Rsh;...........................//Shunt field current in Amperes
Ia=y+Ish;..........................//Armature current in Amperes
Pin=(Po*1000)/(eff/100);...........//Input power in Watts
y1=round(Pin);.....................//rounding of decimal places
l=y1-(Po*1000);.........................//Total losses in the machine in Watts
//Copper losses
lsea=((Ra+Rse)*Ia^2);....................//Losses in series field winding + armature winding in Watts
y2=round(lsea);..........................//Rounding of decimal places
lsh=(Rsh*Ish^2);........................//Losses in shunt field circuit in Watts
Lc=y2+lsh;..............................//Total copper losses in watts
disp(Lc,"(i).Total copper losses in watts:");
//Iron and friction losses
Lrf=l-Lc;..............................//Total iron and friction losses in Watts
disp(Lrf,"(ii).Total iron and friction losses in Watts:");
//Torque developed by the prime mover
w=(2*3.14*N)/60;...................................//Angular speed in rad/sec
y3=round(w*100)/100;..................................//Rounding of decimal places
T=y1/y3;.......................................//Torque developed by the prime mover in Nw-m
y4=round(T*10)/10;.............................//Rounding of decimal places
disp(y4,"(iii).Torque developed by the prime mover in Nw-m:");
|
bd4a7a770ebbed39b87b943726dcb0d2eaec560e | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.17_20.tst | a044dee12a73a4d8b0306cbdcb3aa0e5158363df | [] | 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 | 564,442 | tst | 5.17_20.tst | 17 926:1 942:1 966:1 1536:1 1567:1 2680:1 3020:1 3080:1 3544:1 4575:1 4601:1 4882:1 5021:1 5440:1 5495:1 5625:1 5929:1 6055:1 6169:1 6301:1 6998:1 8519:1 8629:1 8684:1 8771:1 8900:1 10204:1 10430:1 10498:1 10650:1 10967:1 11536:1 11567:1 11927:1 12395:1 12831:1 13095:1 13150:1 13318:1 13723:1 13763:1 14127:1 15253:1 15258:1 15367:1 16099:1 16204:1 16224:1 16225:1 16249:1 17561:1 17743:1 18052:1 18244:1 18864:1 19242:1 19262:60 19479:1 19776:1 20131:1 20704:1 21020:1 21354:1 21849:1 21986:1 22928:1 23007:1 23133:1 23161:1 23399:1 23477:1 23814:1 24305:1 24405:1 25054:1 26129:1 26918:1 27033:1 27471:1 27564:1 28130:1 28186:1 28662:1 28719:1 29102:1 29711:1
17 926:1 942:1 966:1 972:1 1301:1 1335:1 1536:1 1567:1 1682:1 1746:1 1788:1 2680:1 2728:1 2911:1 3020:1 3070:1 3080:1 3544:1 3653:1 3751:1 4137:1 4284:1 4374:1 4575:1 4601:2 4744:1 4882:2 4999:1 5021:1 5145:1 5375:1 5440:1 5495:1 5625:1 5731:1 5929:1 6036:1 6055:1 6065:1 6169:2 6301:1 6367:1 6584:1 6589:1 6600:1 6970:1 6998:1 7290:1 7327:1 8082:1 8233:1 8519:1 8629:1 8684:1 8771:1 8790:1 8872:1 8900:1 8972:1 9628:1 10204:1 10223:1 10425:1 10430:1 10498:1 10557:1 10650:1 10857:1 10967:1 11050:1 11472:1 11536:1 11567:1 11927:1 12215:1 12298:1 12395:1 12450:1 12591:1 12614:1 12831:1 13009:1 13095:1 13150:1 13318:1 13723:1 13763:1 14067:1 14127:1 14674:1 14944:1 15022:1 15068:1 15253:1 15258:2 15367:1 15567:1 16099:1 16204:1 16224:1 16225:1 16249:1 16793:1 17027:1 17086:1 17561:1 17743:1 18052:1 18244:1 18864:1 19242:1 19262:99 19479:1 19776:2 20131:1 20507:1 20550:1 20704:1 21020:1 21101:1 21354:1 21410:1 21845:1 21849:1 21986:1 22084:1 22190:1 22395:1 22577:1 22723:1 22927:1 22928:1 23007:1 23071:1 23133:1 23161:1 23399:1 23477:1 23556:1 23814:1 23940:1 23977:1 24305:1 24405:1 24553:1 24662:1 24898:1 24926:1 25054:1 25231:1 25503:1 25512:1 26093:1 26129:1 26160:1 26268:1 26893:1 26918:1 27033:1 27369:1 27471:1 27564:1 27818:1 28097:1 28130:1 28186:1 28330:1 28462:1 28617:1 28662:1 28719:1 28872:1 28903:1 29102:1 29165:1 29169:1 29324:1 29711:1 29743:1
17 214:1 869:1 926:1 942:1 945:1 966:1 972:1 1126:1 1260:1 1301:1 1335:1 1365:1 1536:1 1567:1 1682:1 1746:1 1788:1 1828:1 1863:1 2041:1 2170:1 2680:1 2728:1 2911:2 3020:1 3070:1 3080:1 3190:1 3544:1 3653:1 3751:2 3774:1 4137:1 4284:1 4374:2 4575:1 4601:2 4708:1 4744:1 4882:2 4999:1 5021:1 5031:1 5117:1 5145:1 5318:1 5321:1 5375:1 5440:1 5450:1 5495:1 5625:1 5731:1 5856:1 5929:1 6036:1 6055:1 6065:1 6169:2 6190:1 6301:1 6367:1 6580:1 6584:1 6589:1 6600:1 6970:1 6998:1 7022:1 7290:1 7327:1 7463:1 7621:1 7696:1 7928:1 8082:1 8233:1 8519:1 8629:1 8684:1 8771:1 8790:1 8804:1 8872:1 8900:1 8972:1 9628:2 9914:1 10188:1 10204:1 10223:1 10425:1 10430:1 10498:1 10506:1 10557:1 10650:1 10761:1 10806:1 10857:1 10916:1 10967:1 10996:1 11027:1 11050:1 11472:1 11536:1 11567:1 11888:1 11913:1 11927:1 12215:1 12298:1 12395:1 12450:1 12538:1 12591:1 12614:1 12831:1 12896:1 13009:1 13033:1 13095:1 13125:1 13150:1 13318:1 13452:1 13723:1 13763:1 13949:1 14067:1 14127:1 14224:1 14529:1 14674:1 14781:1 14903:1 14944:1 15022:1 15068:1 15253:1 15258:2 15367:1 15401:1 15567:1 15576:1 15588:1 15719:1 15896:1 16099:1 16204:1 16224:1 16225:1 16249:1 16460:1 16553:1 16567:1 16793:1 16840:1 16983:1 17027:1 17086:1 17185:1 17548:1 17561:1 17743:1 18052:1 18216:1 18244:1 18338:1 18864:1 18895:1 19242:1 19262:154 19479:1 19776:2 19829:1 20131:1 20146:1 20205:1 20437:1 20507:1 20550:1 20704:1 20737:1 20832:1 21008:1 21020:1 21101:1 21338:1 21354:1 21410:1 21581:1 21624:1 21669:1 21712:1 21747:1 21845:2 21849:1 21851:1 21986:1 22084:1 22104:1 22190:1 22266:1 22395:1 22577:1 22723:1 22800:1 22853:1 22867:1 22919:1 22927:1 22928:1 23007:1 23071:1 23133:1 23161:1 23165:1 23172:1 23372:1 23399:1 23430:1 23477:1 23533:1 23556:1 23722:1 23774:1 23814:1 23940:1 23977:1 24021:1 24305:1 24405:1 24507:1 24553:1 24661:1 24662:2 24810:1 24898:1 24926:2 25054:1 25114:1 25231:1 25249:1 25503:1 25512:1 25539:1 25922:1 26093:1 26129:1 26160:1 26268:1 26324:1 26328:1 26371:1 26374:1 26893:1 26918:1 27033:1 27261:1 27369:1 27471:1 27536:1 27564:1 27818:2 27877:1 28032:1 28097:1 28130:1 28186:1 28219:1 28330:1 28462:2 28532:1 28617:1 28662:1 28671:1 28719:1 28872:2 28903:1 29102:1 29165:1 29169:1 29177:1 29324:1 29343:1 29711:1 29743:1 29760:1 29818:1 29905:1
17 157:1 214:1 282:1 869:1 912:1 926:1 942:1 945:1 966:1 972:1 1126:1 1260:1 1301:1 1335:1 1365:1 1536:1 1567:1 1682:1 1746:1 1788:1 1826:1 1828:1 1856:1 1863:1 2041:1 2170:1 2680:1 2718:1 2728:1 2911:2 2978:1 3020:1 3070:1 3080:1 3190:1 3269:1 3544:1 3653:1 3724:1 3751:2 3774:1 4127:1 4137:1 4284:1 4374:2 4575:1 4601:2 4656:1 4708:1 4744:1 4882:2 4953:1 4999:1 5021:1 5031:1 5117:1 5145:1 5149:1 5155:1 5220:1 5318:1 5321:1 5375:1 5440:1 5450:1 5495:1 5529:1 5625:1 5731:1 5856:1 5929:1 5959:1 6027:1 6036:1 6055:1 6065:1 6169:2 6190:1 6301:1 6367:1 6580:1 6584:1 6589:1 6600:1 6826:1 6970:1 6998:1 7022:1 7290:1 7327:1 7341:1 7463:1 7621:1 7696:1 7721:1 7801:1 7928:1 7949:1 8082:1 8091:1 8134:1 8233:1 8519:1 8629:1 8684:1 8702:1 8754:1 8756:1 8771:1 8790:1 8804:1 8872:1 8900:1 8972:1 9527:1 9628:2 9883:1 9914:1 10064:1 10074:1 10089:1 10126:1 10188:1 10204:1 10223:1 10425:1 10430:1 10482:1 10498:1 10506:1 10557:1 10650:1 10761:2 10806:1 10857:1 10916:1 10920:1 10967:1 10996:1 11027:1 11050:1 11472:1 11536:1 11567:1 11576:1 11888:1 11913:1 11927:1 12215:1 12298:1 12395:1 12450:1 12538:1 12591:1 12594:1 12614:1 12629:1 12831:1 12893:1 12896:1 13009:1 13033:1 13095:1 13125:1 13150:1 13318:1 13452:1 13723:1 13763:1 13949:1 14067:1 14127:1 14224:1 14267:1 14529:1 14674:1 14781:1 14903:1 14911:1 14944:1 15022:1 15038:1 15068:1 15253:1 15258:2 15348:1 15366:1 15367:1 15371:1 15401:1 15567:1 15576:1 15588:1 15719:1 15896:1 16099:1 16204:1 16224:1 16225:1 16249:1 16460:1 16500:1 16553:1 16567:1 16793:1 16840:1 16983:1 17027:1 17086:1 17185:1 17547:1 17548:1 17561:1 17743:1 18052:1 18216:1 18244:1 18245:1 18332:1 18338:1 18443:1 18450:1 18864:1 18895:1 19112:1 19242:1 19262:217 19479:1 19776:2 19829:1 20131:1 20146:1 20205:1 20208:1 20252:1 20437:1 20507:1 20550:1 20704:1 20737:1 20832:1 20868:1 20962:1 21008:1 21020:1 21101:1 21338:1 21354:1 21410:1 21426:1 21581:1 21624:1 21669:1 21712:1 21747:1 21767:1 21809:1 21845:2 21849:2 21851:1 21986:1 22053:1 22084:1 22104:1 22190:1 22266:1 22305:1 22395:1 22577:1 22606:1 22609:1 22723:1 22800:1 22853:1 22867:1 22919:1 22927:1 22928:1 23007:1 23027:1 23071:1 23133:1 23161:1 23165:1 23172:1 23372:1 23399:1 23430:1 23477:1 23533:1 23556:1 23722:1 23747:1 23774:1 23814:1 23940:1 23977:1 24021:1 24305:1 24360:1 24370:1 24405:1 24507:1 24553:1 24661:1 24662:2 24719:1 24810:1 24898:1 24926:2 25054:1 25114:1 25185:1 25231:1 25249:1 25503:1 25512:1 25539:1 25922:1 26093:1 26129:1 26160:1 26268:1 26324:1 26328:1 26371:1 26374:1 26482:1 26893:1 26918:1 27033:1 27233:1 27261:2 27369:1 27400:1 27471:1 27536:1 27564:1 27818:2 27877:1 28032:1 28097:1 28130:1 28186:1 28219:1 28330:1 28462:2 28532:1 28547:1 28617:1 28662:1 28671:1 28719:1 28872:2 28889:1 28903:1 29102:1 29139:1 29165:1 29169:1 29177:1 29324:1 29343:1 29711:1 29743:1 29760:1 29818:1 29905:1 29970:1
17 14:1 110:1 157:1 214:1 241:1 282:1 464:1 671:1 811:1 869:1 904:1 912:1 926:1 942:1 945:1 966:1 972:1 1126:1 1260:1 1301:1 1335:1 1365:1 1536:1 1567:1 1571:1 1682:1 1746:1 1788:1 1826:1 1828:1 1856:1 1863:1 2041:1 2170:1 2497:1 2631:1 2680:1 2686:1 2718:1 2728:1 2911:2 2978:1 3020:1 3062:1 3070:1 3080:1 3190:1 3269:1 3292:1 3544:1 3653:1 3724:1 3751:2 3774:1 4127:1 4137:1 4284:1 4374:2 4575:1 4601:3 4656:1 4708:1 4744:1 4801:1 4882:3 4953:1 4999:1 5021:1 5031:1 5117:1 5145:1 5149:1 5155:1 5220:1 5313:1 5318:1 5321:1 5375:1 5440:1 5450:1 5495:1 5529:1 5625:1 5731:1 5772:1 5856:1 5927:1 5929:1 5935:1 5959:1 5970:1 6027:1 6036:1 6055:1 6065:1 6134:1 6169:3 6190:1 6301:1 6367:1 6580:1 6584:1 6589:1 6600:1 6601:1 6826:1 6868:1 6970:1 6998:1 7022:1 7084:1 7290:1 7327:1 7331:1 7341:1 7463:1 7621:1 7696:1 7721:1 7801:1 7928:1 7949:1 7980:1 8014:1 8082:1 8091:1 8134:1 8233:1 8374:1 8482:1 8519:1 8629:1 8684:1 8702:1 8754:1 8756:1 8771:1 8790:1 8804:1 8872:1 8900:1 8908:1 8972:1 9092:1 9395:1 9527:1 9571:1 9628:2 9687:1 9883:1 9914:1 10005:1 10061:1 10064:1 10074:1 10089:1 10126:1 10188:1 10204:1 10223:1 10425:1 10430:1 10482:1 10492:1 10498:1 10506:1 10557:1 10597:1 10650:1 10761:2 10806:1 10857:1 10916:1 10920:1 10967:1 10996:1 11027:1 11050:1 11379:1 11472:1 11505:1 11536:1 11567:1 11576:1 11632:1 11888:1 11913:1 11927:1 12215:1 12298:1 12395:1 12450:1 12538:1 12591:1 12594:1 12614:1 12629:1 12831:1 12850:1 12893:1 12896:1 13009:1 13033:1 13095:1 13125:1 13150:2 13233:1 13318:1 13383:1 13452:1 13723:1 13763:1 13949:1 14067:1 14127:1 14224:1 14267:1 14529:1 14533:1 14621:1 14674:1 14781:1 14903:1 14911:1 14944:1 15022:1 15038:1 15068:1 15253:1 15258:3 15348:1 15366:1 15367:1 15371:1 15401:1 15432:1 15567:1 15576:2 15588:1 15676:1 15719:2 15828:1 15896:1 16099:1 16102:1 16204:1 16224:1 16225:1 16249:1 16250:1 16460:1 16500:1 16553:1 16567:1 16793:1 16840:1 16983:1 17027:1 17086:1 17185:1 17547:1 17548:1 17561:1 17743:1 17765:1 18052:1 18065:1 18159:1 18181:1 18216:1 18244:1 18245:1 18289:1 18332:1 18338:1 18422:1 18443:1 18450:1 18864:1 18895:1 19067:1 19112:1 19242:1 19262:317 19479:1 19697:1 19776:3 19829:1 19869:1 19914:1 20004:1 20131:1 20146:1 20205:1 20208:1 20219:1 20252:1 20333:1 20397:1 20437:1 20507:1 20550:1 20704:1 20737:1 20832:1 20868:1 20962:1 21008:1 21020:1 21101:1 21338:1 21354:1 21410:1 21426:1 21581:1 21624:1 21669:1 21712:1 21747:1 21767:1 21809:1 21845:2 21849:2 21851:1 21986:1 22022:1 22053:1 22084:1 22104:1 22179:1 22190:1 22266:1 22305:1 22353:1 22395:1 22486:1 22512:1 22530:1 22577:1 22600:1 22606:1 22609:1 22723:1 22800:1 22853:1 22867:1 22919:1 22927:1 22928:1 23007:1 23027:1 23071:1 23133:1 23161:1 23165:1 23172:1 23372:1 23399:1 23430:1 23467:1 23477:1 23533:1 23556:1 23722:1 23747:1 23774:1 23814:1 23940:1 23977:1 24021:1 24223:1 24305:1 24360:1 24370:1 24405:1 24474:1 24507:1 24553:1 24576:1 24623:1 24636:1 24661:1 24662:2 24719:1 24810:1 24898:1 24915:1 24926:2 25054:1 25114:1 25176:1 25185:1 25231:1 25249:1 25503:1 25512:1 25539:1 25681:1 25922:2 25964:1 26092:1 26093:1 26129:1 26160:1 26172:1 26268:1 26281:1 26324:1 26328:1 26371:1 26374:1 26482:1 26871:1 26893:1 26918:1 27033:1 27233:1 27261:2 27319:1 27369:1 27400:1 27471:1 27536:1 27564:2 27818:2 27877:1 28032:1 28097:1 28130:2 28186:1 28219:1 28234:1 28248:1 28330:1 28393:1 28435:1 28462:2 28532:1 28547:1 28617:1 28662:1 28671:1 28719:1 28872:2 28889:1 28903:1 29102:1 29139:1 29165:1 29169:1 29177:1 29324:1 29343:1 29628:1 29703:1 29711:1 29743:1 29760:1 29807:1 29818:1 29905:1 29970:1 29980:1
17 14:1 110:1 157:1 214:1 241:1 282:1 324:1 464:1 542:1 671:1 811:2 869:1 904:1 912:1 926:1 942:1 945:1 966:1 972:1 1039:1 1040:1 1126:1 1260:1 1301:1 1335:1 1365:1 1536:1 1567:1 1571:1 1682:1 1746:1 1788:1 1803:1 1826:1 1828:1 1856:1 1863:2 1935:1 1981:1 2041:1 2170:1 2293:1 2436:1 2497:1 2631:2 2655:1 2680:1 2686:1 2718:1 2728:1 2911:2 2978:1 3020:1 3062:1 3070:2 3080:1 3190:1 3269:1 3292:1 3544:1 3653:1 3724:1 3751:2 3774:1 4057:1 4080:1 4127:1 4137:1 4284:1 4374:2 4575:1 4601:3 4656:1 4708:1 4744:1 4801:1 4867:1 4882:3 4953:1 4999:1 5021:1 5031:1 5117:1 5138:1 5145:1 5149:1 5155:1 5220:1 5313:1 5318:1 5321:1 5375:1 5440:1 5450:1 5495:1 5529:1 5625:1 5731:1 5740:1 5772:1 5856:1 5927:1 5929:1 5935:1 5959:1 5970:1 6026:1 6027:1 6036:1 6055:1 6065:1 6134:1 6169:3 6188:1 6190:1 6221:1 6301:1 6318:1 6367:1 6580:1 6584:1 6589:1 6600:1 6601:1 6826:1 6868:1 6970:1 6998:2 7022:1 7084:1 7103:1 7290:1 7327:1 7331:1 7341:1 7397:1 7446:1 7463:1 7509:1 7602:1 7621:1 7696:1 7721:1 7801:1 7928:1 7943:1 7949:1 7980:1 8014:1 8058:1 8082:2 8091:1 8134:1 8233:1 8320:1 8374:1 8482:1 8519:1 8629:1 8684:1 8702:1 8718:1 8749:1 8754:1 8756:1 8765:1 8771:1 8790:1 8804:1 8872:1 8900:1 8908:1 8955:1 8972:1 9008:1 9092:1 9311:1 9395:1 9396:1 9457:1 9527:1 9571:1 9628:2 9687:1 9865:1 9883:2 9914:1 10005:1 10061:1 10064:1 10074:1 10089:1 10126:1 10137:1 10188:1 10204:1 10223:1 10425:1 10430:1 10482:1 10492:1 10498:1 10506:1 10557:1 10572:1 10580:1 10597:1 10650:1 10761:2 10806:1 10857:1 10899:1 10916:1 10920:1 10967:1 10973:2 10979:1 10996:1 11027:1 11050:1 11379:1 11472:1 11505:1 11536:1 11567:1 11576:1 11632:1 11888:1 11913:1 11926:1 11927:1 11971:1 12066:1 12215:1 12277:1 12298:1 12395:1 12450:1 12538:1 12591:1 12594:1 12614:1 12629:1 12831:1 12850:1 12893:1 12896:1 13009:1 13033:1 13095:1 13125:1 13150:2 13233:1 13256:1 13318:1 13383:1 13452:1 13723:1 13763:1 13949:1 14067:1 14127:1 14224:1 14267:1 14529:1 14533:1 14621:1 14674:1 14779:1 14781:1 14831:1 14903:1 14911:1 14944:1 15022:1 15038:1 15068:1 15253:1 15258:3 15348:1 15366:1 15367:1 15371:2 15401:1 15432:1 15567:1 15576:2 15588:1 15676:1 15719:2 15780:1 15798:1 15828:1 15866:1 15896:1 16099:1 16102:1 16195:1 16204:1 16224:1 16225:1 16249:1 16250:1 16284:1 16460:1 16500:2 16553:1 16567:1 16793:1 16840:1 16983:1 17027:1 17083:1 17086:1 17114:1 17185:1 17276:1 17547:1 17548:1 17561:1 17676:1 17743:1 17765:1 17906:1 18052:1 18065:1 18159:1 18171:1 18181:1 18216:1 18244:1 18245:1 18289:1 18332:1 18338:1 18382:1 18422:1 18443:1 18450:1 18864:1 18895:1 19067:1 19085:1 19112:1 19146:1 19242:1 19260:1 19262:411 19479:1 19697:1 19776:3 19829:1 19869:1 19914:1 20004:1 20131:1 20146:1 20205:1 20208:1 20219:1 20252:1 20302:1 20333:1 20397:1 20437:1 20507:1 20550:2 20704:1 20737:1 20832:1 20868:1 20962:1 21008:1 21020:1 21052:1 21084:1 21101:2 21328:1 21338:1 21354:1 21397:1 21410:1 21426:1 21572:1 21581:1 21624:1 21669:1 21712:1 21747:1 21767:1 21809:1 21845:2 21849:2 21851:1 21986:1 22022:1 22053:1 22084:1 22104:1 22179:1 22190:1 22266:1 22305:1 22353:1 22395:2 22415:1 22468:1 22486:1 22512:1 22530:1 22577:1 22600:1 22606:1 22609:1 22662:1 22723:1 22800:1 22808:1 22853:1 22867:1 22919:1 22927:1 22928:1 23007:1 23027:1 23071:1 23133:1 23161:1 23165:1 23172:1 23372:1 23399:1 23430:1 23467:1 23477:1 23533:1 23556:1 23613:1 23722:1 23747:1 23774:1 23814:1 23940:1 23977:1 24021:1 24047:1 24051:1 24223:1 24264:1 24305:1 24360:1 24370:1 24405:1 24474:1 24507:1 24553:1 24576:1 24623:1 24636:1 24652:1 24661:1 24662:2 24719:1 24810:1 24898:1 24915:1 24926:2 25054:1 25114:1 25176:1 25185:1 25231:1 25249:1 25263:1 25447:2 25503:1 25512:1 25539:1 25681:1 25729:1 25922:2 25964:1 25982:2 26092:1 26093:1 26129:1 26160:1 26172:1 26268:1 26281:1 26324:1 26328:1 26371:1 26374:1 26482:1 26845:1 26871:1 26893:1 26918:1 26955:1 27033:1 27164:1 27233:1 27261:2 27319:1 27369:1 27400:1 27471:1 27536:1 27564:2 27618:1 27818:2 27877:1 27880:1 27985:1 28032:1 28097:1 28130:2 28186:1 28219:1 28234:1 28240:1 28248:1 28330:1 28393:1 28435:1 28462:2 28532:1 28536:1 28547:1 28617:2 28662:1 28671:1 28719:1 28872:2 28889:1 28903:1 28938:1 29102:1 29139:1 29165:1 29166:1 29169:1 29177:1 29251:1 29286:1 29324:1 29343:1 29628:1 29703:1 29711:1 29738:1 29743:1 29760:1 29807:1 29818:1 29851:1 29905:1 29958:1 29970:1 29980:1
17 14:1 110:1 157:1 167:1 214:1 241:1 282:1 324:1 464:1 542:1 599:1 648:1 671:1 811:2 869:1 904:1 912:3 913:1 926:1 942:2 945:1 966:1 972:1 1039:1 1040:1 1126:1 1260:1 1301:1 1335:1 1365:1 1536:1 1543:1 1567:1 1571:1 1611:1 1682:1 1746:1 1788:1 1803:1 1826:1 1828:1 1839:1 1856:1 1863:2 1864:1 1935:1 1981:1 2041:1 2170:1 2293:1 2436:1 2473:1 2497:1 2631:2 2655:1 2680:1 2686:1 2706:1 2718:1 2728:1 2760:1 2911:2 2978:1 3020:1 3062:1 3070:2 3080:1 3190:1 3197:1 3269:1 3292:1 3331:1 3544:1 3653:1 3724:1 3751:2 3774:1 3894:1 3984:1 4057:1 4062:1 4080:1 4118:1 4127:1 4137:1 4284:1 4289:1 4374:2 4575:1 4601:3 4656:1 4708:1 4744:1 4799:1 4801:1 4867:1 4882:3 4953:1 4999:1 5021:1 5031:1 5117:1 5130:1 5138:1 5145:1 5149:1 5155:1 5220:1 5313:1 5318:1 5321:1 5354:1 5375:1 5416:1 5440:1 5450:1 5495:1 5529:1 5601:1 5625:1 5731:1 5740:1 5772:1 5814:1 5856:1 5927:1 5929:1 5935:1 5959:1 5970:1 6022:1 6026:1 6027:2 6036:1 6055:1 6065:1 6134:1 6169:3 6188:1 6190:1 6221:1 6245:1 6301:1 6318:1 6367:1 6580:1 6584:1 6589:1 6600:1 6601:1 6826:1 6868:1 6964:1 6970:1 6998:2 7022:1 7084:1 7103:1 7108:1 7290:1 7327:1 7331:1 7341:1 7397:1 7446:1 7463:1 7509:1 7602:1 7621:1 7664:1 7696:1 7721:1 7730:1 7792:1 7801:1 7928:1 7943:1 7949:1 7980:1 8014:1 8058:1 8082:2 8091:1 8134:1 8157:1 8233:1 8320:1 8374:1 8482:1 8519:1 8590:1 8629:1 8684:1 8702:1 8704:1 8718:1 8749:1 8754:1 8756:1 8765:1 8771:1 8790:1 8804:1 8830:1 8872:1 8900:2 8908:1 8955:1 8972:1 9008:1 9092:1 9311:1 9395:1 9396:1 9457:1 9527:1 9571:1 9628:2 9687:1 9780:1 9865:1 9883:2 9914:1 10005:1 10061:1 10062:1 10064:1 10074:1 10089:1 10126:1 10137:1 10177:1 10188:1 10204:1 10223:1 10425:1 10430:1 10482:1 10492:1 10498:1 10506:1 10544:1 10547:1 10557:1 10572:1 10580:1 10597:1 10650:1 10696:1 10761:2 10806:1 10857:1 10899:1 10916:1 10920:1 10967:1 10973:2 10979:1 10996:1 11027:1 11050:1 11379:1 11472:1 11485:1 11505:1 11536:1 11567:1 11576:1 11632:1 11770:1 11884:1 11888:1 11913:1 11926:1 11927:1 11947:1 11971:1 12066:1 12215:1 12277:1 12298:1 12395:1 12450:1 12479:1 12486:1 12491:2 12501:1 12538:1 12591:1 12594:1 12614:1 12629:1 12831:2 12850:1 12893:1 12896:1 12927:1 13009:1 13033:1 13095:1 13125:1 13150:2 13162:1 13212:1 13233:1 13256:1 13318:1 13383:1 13452:1 13686:1 13723:1 13729:1 13763:1 13806:1 13949:1 14067:1 14106:1 14127:1 14178:1 14224:1 14267:1 14349:1 14529:1 14533:1 14621:1 14674:1 14727:1 14779:1 14781:1 14792:1 14831:1 14903:1 14911:1 14934:1 14944:1 14945:1 15022:1 15038:1 15058:1 15068:1 15253:1 15258:3 15319:1 15348:3 15366:1 15367:1 15371:3 15388:1 15401:1 15432:1 15567:1 15576:2 15588:1 15676:1 15719:2 15746:1 15780:1 15798:1 15828:1 15866:1 15896:1 15904:1 16099:1 16102:1 16195:1 16204:1 16224:1 16225:1 16249:1 16250:1 16284:1 16460:1 16500:3 16553:1 16567:1 16572:1 16682:1 16718:1 16793:1 16840:1 16983:1 17027:1 17083:1 17086:1 17114:1 17185:1 17276:1 17516:1 17547:1 17548:1 17561:1 17676:1 17715:1 17743:1 17765:1 17906:1 18052:1 18065:1 18159:1 18171:1 18181:1 18216:1 18244:1 18245:1 18289:1 18332:1 18338:1 18382:1 18422:1 18443:1 18450:1 18756:1 18864:1 18895:1 19067:1 19085:1 19112:1 19146:1 19242:1 19260:1 19262:509 19479:1 19620:1 19663:1 19697:1 19776:3 19812:1 19829:1 19861:1 19869:1 19914:1 20004:1 20131:1 20146:1 20153:1 20205:1 20208:1 20218:1 20219:1 20252:1 20302:1 20333:1 20397:1 20437:1 20507:1 20518:1 20550:2 20659:1 20704:1 20737:1 20832:1 20868:1 20962:1 21004:1 21008:1 21020:1 21052:1 21084:1 21101:2 21124:1 21328:1 21338:1 21354:1 21397:1 21404:1 21410:1 21426:1 21493:1 21572:1 21581:1 21598:1 21624:1 21669:1 21712:1 21747:1 21767:1 21809:1 21845:2 21849:2 21851:1 21986:1 22022:1 22053:1 22084:1 22104:1 22179:1 22190:1 22266:1 22305:1 22353:1 22395:2 22415:1 22468:1 22486:1 22508:1 22512:1 22530:1 22577:1 22600:1 22606:1 22609:1 22662:1 22723:1 22800:1 22808:1 22853:1 22867:1 22919:1 22927:1 22928:1 23007:1 23027:1 23071:1 23133:1 23161:2 23165:1 23171:1 23172:1 23372:1 23399:1 23430:1 23467:1 23477:1 23515:1 23533:1 23556:1 23613:1 23722:1 23747:1 23774:1 23814:1 23834:2 23927:1 23940:1 23977:1 24021:1 24047:1 24051:1 24212:1 24223:1 24264:1 24305:1 24360:1 24370:1 24375:1 24392:1 24405:1 24421:1 24474:1 24507:1 24553:1 24576:1 24623:1 24636:1 24652:1 24661:1 24662:2 24719:1 24810:1 24898:1 24915:1 24918:1 24926:2 24965:1 25054:1 25114:1 25176:1 25185:1 25187:1 25231:1 25249:1 25263:1 25447:2 25462:1 25503:1 25512:1 25539:1 25681:1 25729:1 25922:2 25943:1 25945:1 25964:1 25982:2 26013:1 26092:1 26093:1 26129:1 26160:1 26172:1 26268:1 26281:1 26324:1 26328:1 26371:1 26374:1 26482:1 26845:1 26871:1 26893:1 26918:1 26955:1 26965:1 27033:1 27115:2 27164:1 27201:1 27233:1 27261:3 27319:1 27369:1 27400:1 27448:1 27471:1 27536:1 27564:2 27618:1 27818:2 27877:1 27880:1 27881:1 27968:1 27985:1 28032:1 28097:1 28130:2 28186:1 28219:1 28234:1 28240:1 28248:1 28330:1 28393:1 28435:1 28462:2 28532:1 28536:1 28547:1 28617:2 28662:1 28671:1 28719:1 28872:2 28889:1 28903:1 28938:1 29046:1 29102:1 29139:1 29165:1 29166:1 29169:1 29177:1 29189:1 29251:1 29286:1 29324:1 29343:1 29401:1 29519:1 29628:1 29703:1 29711:1 29738:1 29743:1 29760:1 29807:1 29818:1 29851:1 29905:1 29958:1 29970:1 29980:1
17 14:1 110:1 157:1 167:1 214:1 241:1 282:1 324:1 399:1 464:1 542:1 599:1 648:1 671:1 677:1 771:1 811:2 869:1 904:1 912:3 913:1 926:1 931:1 935:1 942:2 945:1 966:1 972:1 1039:1 1040:1 1098:1 1126:1 1176:1 1197:1 1260:1 1301:1 1335:1 1365:1 1513:1 1536:1 1543:1 1567:1 1571:1 1611:1 1682:1 1741:1 1746:1 1788:1 1797:1 1803:1 1826:1 1828:1 1839:1 1856:1 1863:2 1864:1 1935:1 1981:1 2000:1 2041:1 2170:1 2293:1 2436:1 2473:1 2497:1 2631:2 2636:1 2655:1 2680:1 2685:1 2686:1 2701:1 2706:1 2718:1 2728:1 2760:1 2911:2 2978:1 3007:1 3020:1 3062:1 3070:2 3080:1 3183:1 3190:1 3197:1 3219:1 3269:1 3285:1 3292:1 3331:1 3544:1 3653:1 3654:1 3724:1 3751:2 3774:1 3858:1 3894:1 3984:1 4057:1 4062:1 4080:1 4118:1 4127:1 4137:1 4284:1 4289:1 4306:1 4374:2 4575:1 4589:1 4601:3 4656:1 4708:1 4744:1 4799:1 4801:1 4827:1 4867:1 4882:3 4953:1 4987:1 4999:1 5021:1 5031:1 5058:1 5117:1 5130:1 5138:1 5145:1 5149:1 5155:1 5220:1 5313:1 5318:1 5321:1 5344:1 5354:1 5375:1 5416:1 5440:1 5450:1 5495:1 5529:1 5601:1 5619:1 5625:1 5682:1 5731:1 5740:1 5772:1 5814:1 5856:1 5900:1 5927:1 5929:1 5935:1 5959:1 5970:1 5989:1 6022:1 6026:1 6027:2 6036:1 6055:1 6065:1 6134:1 6169:3 6188:1 6190:1 6221:1 6245:1 6301:1 6318:1 6367:1 6580:1 6584:2 6589:1 6600:1 6601:1 6655:1 6821:1 6826:2 6868:1 6964:1 6970:1 6998:2 7022:1 7084:1 7103:1 7108:1 7270:1 7290:1 7327:1 7331:1 7341:1 7397:1 7415:1 7446:1 7463:1 7509:1 7602:1 7621:1 7664:1 7696:1 7721:1 7730:1 7792:1 7794:1 7801:1 7810:1 7928:1 7943:1 7944:1 7949:1 7980:1 8014:1 8058:1 8082:2 8091:1 8134:1 8157:1 8233:1 8320:1 8374:1 8468:1 8482:1 8519:1 8539:1 8590:1 8629:1 8684:1 8702:1 8704:1 8718:1 8749:1 8754:1 8756:1 8765:1 8771:1 8790:1 8804:1 8830:1 8872:1 8900:2 8908:1 8955:1 8964:1 8972:1 9008:1 9092:1 9164:1 9181:1 9311:1 9395:1 9396:1 9457:1 9527:1 9571:1 9628:2 9687:1 9780:1 9830:1 9865:1 9883:2 9914:1 9956:1 9981:1 10005:1 10061:1 10062:1 10064:1 10074:1 10089:1 10126:1 10137:1 10177:1 10182:1 10188:1 10204:1 10223:1 10425:1 10430:1 10482:1 10492:1 10498:1 10506:1 10544:1 10547:1 10554:1 10557:1 10572:1 10580:1 10597:1 10650:1 10696:1 10761:2 10775:2 10806:1 10857:1 10899:1 10916:1 10920:1 10964:2 10967:1 10973:2 10979:1 10996:1 11027:1 11050:1 11131:1 11233:1 11379:1 11472:1 11485:1 11505:1 11514:1 11522:1 11536:2 11567:2 11576:1 11632:1 11642:1 11755:1 11770:1 11856:1 11884:1 11888:1 11913:1 11926:1 11927:1 11947:1 11971:1 12066:1 12215:1 12277:1 12298:1 12395:1 12449:1 12450:1 12479:1 12486:2 12491:2 12501:1 12538:1 12591:1 12594:1 12614:1 12629:1 12831:2 12850:1 12893:1 12896:1 12901:1 12927:1 12967:1 13009:1 13022:1 13033:1 13095:1 13125:1 13150:2 13162:1 13212:1 13233:1 13256:1 13318:1 13383:1 13452:1 13686:1 13723:1 13729:1 13763:1 13806:1 13949:1 14067:1 14106:1 14127:1 14178:1 14224:1 14267:1 14293:1 14349:1 14529:1 14533:1 14621:1 14674:1 14727:1 14750:1 14779:1 14781:1 14792:1 14831:1 14903:1 14909:1 14911:1 14934:1 14944:1 14945:1 14993:1 15022:1 15038:1 15058:1 15068:1 15253:1 15258:3 15319:1 15348:3 15366:1 15367:1 15371:5 15388:1 15401:1 15425:1 15432:1 15540:1 15567:1 15576:2 15588:1 15620:1 15676:1 15719:2 15746:1 15780:1 15798:1 15828:1 15866:2 15896:1 15904:1 16099:1 16102:1 16195:1 16204:1 16224:1 16225:1 16249:1 16250:1 16284:1 16460:1 16500:3 16553:1 16567:1 16569:1 16572:1 16682:1 16718:1 16793:1 16840:1 16983:2 17027:1 17083:1 17086:1 17114:1 17185:1 17276:1 17365:1 17516:1 17547:1 17548:1 17561:1 17676:1 17715:1 17743:1 17765:1 17798:1 17906:1 18052:1 18065:1 18082:1 18159:1 18171:1 18181:1 18216:1 18236:1 18242:1 18244:1 18245:1 18289:1 18332:1 18338:1 18368:1 18382:1 18422:1 18443:1 18450:1 18535:1 18756:1 18864:1 18895:1 18965:1 18976:1 18996:1 19067:1 19085:1 19112:1 19146:1 19242:1 19260:1 19262:624 19392:1 19479:1 19620:1 19627:1 19663:1 19697:1 19776:3 19812:1 19829:1 19861:1 19869:1 19914:1 20004:1 20131:1 20146:1 20153:1 20205:1 20208:1 20218:1 20219:1 20223:1 20252:1 20273:1 20302:1 20333:1 20397:1 20437:1 20507:1 20518:1 20550:2 20601:1 20659:1 20681:1 20684:1 20704:1 20737:1 20832:1 20868:1 20962:1 21004:1 21008:1 21020:1 21052:1 21075:1 21084:1 21101:2 21124:1 21294:1 21328:1 21338:1 21354:1 21397:1 21404:1 21410:1 21426:1 21493:1 21572:1 21581:1 21598:1 21624:1 21669:1 21712:1 21741:1 21747:1 21767:1 21803:1 21809:1 21845:2 21849:3 21851:1 21986:1 22022:1 22053:1 22084:1 22104:1 22179:1 22190:1 22214:1 22266:1 22305:1 22312:1 22345:1 22353:1 22395:2 22415:1 22468:1 22486:1 22508:1 22512:1 22530:1 22577:1 22600:1 22606:1 22609:1 22662:1 22667:1 22697:1 22705:1 22723:1 22800:1 22808:1 22811:1 22853:1 22867:1 22919:1 22927:1 22928:1 23007:1 23027:1 23071:1 23133:1 23161:2 23165:1 23171:1 23172:1 23311:1 23372:1 23399:1 23430:1 23448:1 23458:1 23467:1 23477:1 23515:1 23533:1 23556:1 23613:1 23722:1 23747:1 23774:1 23814:1 23834:3 23926:1 23927:1 23940:1 23977:1 24021:1 24047:1 24051:1 24197:1 24212:1 24223:1 24264:1 24292:1 24305:1 24360:1 24370:1 24375:1 24392:1 24405:1 24421:1 24474:1 24507:1 24553:1 24576:1 24623:1 24636:1 24652:1 24661:1 24662:2 24719:1 24810:1 24898:1 24904:1 24915:1 24918:1 24926:2 24965:1 25054:1 25114:1 25176:1 25185:1 25187:1 25206:1 25211:1 25231:1 25237:1 25249:1 25263:1 25447:2 25462:1 25482:1 25483:1 25503:1 25512:1 25539:1 25568:1 25681:1 25729:1 25757:1 25777:1 25922:2 25943:1 25945:1 25964:1 25982:3 26013:1 26052:1 26092:1 26093:1 26129:1 26139:1 26160:1 26172:1 26268:1 26281:1 26324:1 26328:1 26371:1 26374:1 26478:1 26482:1 26797:1 26845:1 26871:1 26893:1 26918:1 26955:1 26965:1 27033:1 27115:2 27164:1 27201:1 27233:1 27261:3 27267:1 27319:1 27369:1 27400:1 27448:1 27471:1 27536:1 27564:2 27618:1 27818:2 27877:1 27880:1 27881:1 27968:1 27985:1 28032:1 28097:1 28130:2 28176:1 28186:1 28219:1 28234:1 28240:1 28248:1 28254:1 28330:1 28393:1 28435:1 28462:2 28532:1 28536:1 28547:1 28562:1 28617:3 28662:1 28671:1 28719:1 28872:2 28889:1 28903:1 28938:1 29046:1 29102:1 29139:1 29153:1 29165:1 29166:1 29169:1 29177:1 29189:1 29251:1 29286:1 29324:1 29343:1 29401:1 29453:1 29519:1 29628:1 29703:1 29711:1 29738:1 29741:1 29743:1 29760:1 29807:1 29818:1 29851:1 29905:1 29955:1 29958:2 29967:1 29970:1 29980:1
17 14:1 24:1 110:1 157:1 167:1 214:1 241:1 282:1 324:1 380:1 399:1 464:1 542:1 599:1 648:1 671:1 677:1 771:1 811:2 869:1 904:1 912:3 913:1 921:1 926:1 931:1 935:1 942:2 945:1 966:1 972:1 1039:1 1040:1 1098:1 1126:1 1176:1 1197:1 1260:1 1301:1 1335:1 1365:1 1513:1 1536:1 1543:1 1567:1 1571:1 1611:1 1663:1 1682:1 1741:1 1746:1 1788:1 1797:1 1803:1 1812:1 1826:1 1828:1 1839:1 1856:1 1863:2 1864:1 1874:1 1935:1 1981:1 2000:1 2041:1 2170:1 2293:1 2339:1 2436:1 2457:1 2473:1 2497:1 2552:1 2614:1 2631:2 2636:1 2655:1 2680:1 2685:1 2686:1 2701:1 2706:1 2718:1 2728:1 2760:1 2858:1 2911:2 2978:1 2989:1 3007:1 3020:1 3062:1 3070:2 3080:1 3183:1 3190:1 3197:1 3219:1 3269:1 3285:1 3292:1 3331:1 3433:1 3544:2 3627:1 3653:1 3654:1 3724:1 3729:1 3751:2 3774:1 3858:1 3894:1 3927:1 3984:1 4057:1 4062:2 4080:1 4118:1 4127:1 4137:1 4141:1 4284:1 4289:1 4306:1 4374:2 4575:1 4589:1 4601:3 4656:1 4708:1 4744:1 4799:1 4801:1 4827:1 4867:1 4882:3 4953:1 4987:1 4992:1 4999:1 5021:1 5031:1 5058:1 5101:1 5117:1 5130:1 5138:1 5145:1 5149:1 5155:1 5220:1 5313:1 5318:1 5321:1 5344:1 5354:1 5375:1 5416:1 5440:1 5450:1 5495:1 5529:1 5601:1 5619:1 5625:1 5682:1 5731:1 5740:1 5772:1 5814:1 5856:1 5900:1 5927:1 5929:1 5935:1 5959:1 5970:1 5989:1 5999:1 6022:1 6026:1 6027:3 6036:1 6055:1 6065:1 6134:1 6169:3 6184:1 6188:1 6190:1 6221:1 6245:1 6301:1 6318:1 6367:1 6424:1 6482:1 6580:1 6584:2 6589:1 6590:1 6600:2 6601:1 6655:1 6821:1 6826:2 6868:1 6964:1 6970:1 6998:2 7022:1 7084:1 7103:1 7104:1 7108:1 7270:1 7290:1 7327:1 7331:1 7341:1 7397:1 7401:1 7415:1 7444:1 7446:1 7463:1 7504:1 7509:1 7602:1 7621:1 7664:1 7696:1 7721:1 7730:1 7763:1 7792:1 7794:1 7801:1 7810:1 7857:1 7888:1 7928:1 7943:1 7944:1 7949:1 7980:1 8014:1 8058:2 8082:2 8091:1 8134:1 8157:1 8233:1 8320:1 8329:1 8374:1 8468:1 8482:1 8519:1 8539:1 8590:1 8629:1 8684:1 8702:1 8704:1 8718:1 8749:1 8754:1 8756:1 8765:1 8771:1 8790:1 8799:1 8804:1 8830:1 8872:1 8900:2 8908:1 8955:1 8964:1 8972:1 9008:1 9092:1 9158:1 9164:1 9181:1 9311:1 9395:1 9396:1 9457:1 9467:1 9527:1 9571:1 9628:2 9687:1 9780:1 9830:1 9865:1 9883:2 9914:1 9928:1 9956:1 9981:1 10005:1 10061:1 10062:1 10064:1 10074:1 10089:1 10126:1 10137:1 10177:1 10182:1 10188:1 10204:2 10223:1 10319:1 10422:1 10425:1 10430:1 10482:1 10492:1 10498:1 10506:1 10544:1 10547:1 10554:1 10557:1 10572:1 10580:1 10597:1 10650:1 10681:1 10696:1 10761:2 10775:2 10806:1 10857:1 10899:1 10916:1 10920:1 10964:2 10967:1 10973:2 10979:1 10982:1 10996:1 11027:1 11050:1 11131:1 11233:1 11313:1 11379:1 11472:1 11485:1 11505:1 11514:1 11522:1 11536:3 11567:2 11576:1 11583:1 11632:1 11642:1 11721:1 11732:1 11755:1 11770:1 11856:1 11884:1 11888:1 11913:1 11926:1 11927:1 11932:1 11947:1 11971:1 11996:1 12066:1 12080:1 12215:1 12277:1 12283:2 12298:1 12342:1 12395:1 12449:1 12450:1 12479:1 12486:2 12490:1 12491:2 12501:1 12503:1 12538:1 12591:1 12594:1 12596:1 12614:1 12629:1 12831:2 12850:1 12893:1 12896:1 12901:1 12927:1 12967:1 13009:1 13022:1 13033:1 13095:1 13125:1 13150:2 13162:1 13212:1 13233:1 13256:1 13318:1 13366:1 13383:1 13413:1 13452:1 13686:1 13723:1 13729:1 13763:1 13806:1 13949:1 14067:1 14106:1 14127:1 14178:3 14224:1 14267:1 14293:1 14349:1 14529:1 14533:1 14577:1 14621:1 14674:1 14727:1 14750:1 14779:1 14781:1 14792:1 14831:1 14903:1 14909:1 14911:1 14934:1 14944:1 14945:1 14993:1 15022:1 15038:1 15058:1 15068:1 15253:1 15258:3 15319:1 15348:4 15366:1 15367:1 15371:5 15388:1 15401:1 15425:1 15432:1 15540:1 15567:1 15576:2 15588:1 15620:1 15676:1 15719:2 15746:1 15780:1 15798:1 15828:1 15866:2 15896:1 15904:1 16099:1 16102:1 16195:1 16204:1 16224:1 16225:1 16249:1 16250:1 16284:1 16302:1 16458:1 16460:1 16500:3 16553:1 16567:1 16569:1 16572:1 16623:2 16682:1 16718:2 16793:1 16840:1 16983:2 17027:1 17083:1 17086:1 17114:1 17179:1 17185:1 17276:1 17360:1 17365:1 17516:1 17547:1 17548:1 17561:1 17634:1 17676:1 17715:1 17743:1 17765:1 17798:1 17906:1 17946:1 18052:1 18065:1 18082:1 18133:1 18137:1 18159:1 18171:1 18181:1 18182:1 18216:1 18236:1 18242:1 18244:1 18245:1 18289:1 18332:1 18338:1 18368:1 18382:1 18422:1 18427:1 18443:1 18450:1 18535:1 18550:1 18563:1 18756:1 18864:1 18895:1 18965:1 18976:1 18996:1 19025:1 19067:1 19085:1 19112:1 19146:1 19242:1 19260:1 19262:765 19392:1 19479:1 19620:1 19627:1 19663:1 19697:1 19776:3 19812:1 19829:1 19861:1 19869:1 19908:1 19914:1 20004:1 20131:1 20146:1 20153:1 20205:1 20208:1 20218:1 20219:1 20223:1 20252:1 20273:1 20302:1 20333:1 20374:1 20397:1 20437:1 20507:1 20518:1 20550:2 20601:1 20659:1 20681:1 20684:1 20704:1 20737:1 20832:1 20868:1 20920:1 20962:1 20989:1 21004:1 21008:1 21020:1 21052:1 21075:1 21084:1 21101:2 21124:1 21160:1 21242:1 21294:1 21328:1 21338:1 21354:1 21397:1 21404:1 21410:1 21426:1 21493:1 21572:1 21581:1 21598:1 21624:1 21669:1 21712:1 21741:1 21747:1 21767:1 21803:1 21809:1 21845:2 21849:3 21851:1 21986:1 22022:1 22053:1 22084:1 22104:1 22179:1 22190:2 22214:1 22266:1 22305:1 22312:1 22345:1 22349:1 22353:1 22395:2 22415:1 22468:1 22486:1 22508:1 22512:1 22530:1 22560:1 22577:1 22600:1 22606:1 22609:1 22662:1 22667:1 22697:1 22705:1 22723:1 22800:1 22808:1 22811:1 22853:1 22867:1 22914:1 22919:1 22927:1 22928:1 23007:1 23027:1 23071:1 23133:1 23161:2 23165:1 23171:1 23172:1 23311:1 23372:1 23399:1 23430:1 23436:1 23448:1 23458:1 23467:1 23477:1 23515:1 23522:1 23533:1 23556:1 23613:1 23722:1 23747:1 23774:1 23814:1 23834:3 23926:1 23927:1 23940:1 23977:1 24021:1 24047:1 24051:1 24197:1 24212:1 24223:2 24264:1 24292:1 24305:1 24360:1 24370:1 24375:1 24392:1 24405:1 24421:1 24441:1 24474:1 24507:1 24553:1 24576:1 24623:1 24636:1 24652:1 24661:1 24662:2 24719:1 24803:1 24810:1 24898:1 24904:1 24915:1 24918:1 24926:2 24937:1 24965:1 25054:1 25081:2 25114:1 25176:1 25185:1 25187:1 25206:1 25211:1 25231:1 25237:1 25249:1 25263:1 25447:2 25462:1 25482:1 25483:1 25503:1 25512:1 25539:1 25568:1 25681:1 25705:1 25729:1 25757:1 25777:1 25922:2 25943:2 25945:1 25964:1 25982:3 26013:1 26024:1 26052:1 26092:1 26093:1 26129:1 26139:1 26160:1 26172:1 26268:1 26281:1 26324:1 26328:1 26345:1 26371:1 26374:1 26399:1 26478:1 26482:1 26594:1 26797:1 26845:1 26857:1 26858:1 26871:1 26893:1 26915:1 26918:1 26955:1 26965:1 26981:1 27024:1 27033:1 27115:2 27164:1 27201:1 27233:1 27261:3 27267:1 27319:1 27369:1 27400:1 27430:1 27448:1 27471:1 27536:1 27564:2 27618:1 27818:2 27877:2 27880:1 27881:1 27914:1 27968:1 27985:1 28032:1 28097:1 28101:1 28130:2 28176:1 28186:1 28219:1 28234:1 28240:1 28248:1 28254:1 28330:1 28393:1 28435:1 28462:2 28532:1 28536:1 28547:1 28562:1 28596:1 28617:3 28662:2 28671:1 28719:1 28806:1 28872:2 28889:1 28903:1 28938:1 29023:1 29046:1 29090:1 29102:2 29139:1 29153:1 29165:1 29166:1 29169:1 29177:1 29189:1 29251:1 29286:1 29324:1 29343:1 29401:1 29453:1 29519:1 29628:1 29695:1 29703:1 29711:1 29738:1 29741:1 29743:1 29760:1 29807:1 29818:1 29851:1 29903:1 29905:1 29915:1 29955:1 29958:2 29967:1 29970:1 29980:1
17 14:1 24:1 110:1 157:1 167:1 214:1 241:1 282:1 324:1 380:1 399:1 464:1 542:1 599:1 648:1 671:1 677:1 771:1 811:2 867:1 869:1 904:1 912:3 913:1 921:1 926:1 931:1 935:1 942:2 945:1 966:1 972:1 1039:1 1040:1 1098:1 1126:1 1132:1 1176:1 1197:1 1260:1 1301:1 1318:1 1335:1 1365:1 1513:1 1536:1 1543:1 1567:1 1571:1 1611:1 1663:1 1682:1 1741:1 1746:1 1788:1 1797:1 1803:1 1812:1 1826:1 1828:1 1839:1 1856:1 1863:2 1864:1 1874:1 1935:1 1981:1 2000:1 2011:1 2041:1 2170:1 2293:1 2339:1 2366:1 2436:1 2457:1 2473:1 2497:1 2552:1 2614:1 2631:2 2636:1 2655:1 2680:1 2685:1 2686:1 2701:1 2706:1 2718:1 2728:1 2760:1 2858:1 2911:2 2978:1 2989:1 3007:1 3020:1 3062:2 3070:2 3080:1 3131:1 3183:1 3190:1 3197:1 3219:1 3269:1 3285:1 3292:1 3331:1 3433:1 3544:2 3627:1 3653:1 3654:1 3724:1 3729:1 3751:2 3774:1 3858:1 3894:1 3927:1 3984:1 3986:1 4057:1 4062:2 4080:1 4118:1 4127:1 4137:1 4141:1 4191:1 4284:1 4289:1 4306:1 4334:1 4374:2 4575:1 4589:1 4601:3 4656:1 4708:1 4744:1 4799:1 4801:2 4827:1 4867:1 4882:3 4953:1 4978:1 4987:1 4992:1 4999:2 5021:1 5031:1 5058:1 5098:1 5101:1 5105:1 5117:1 5130:1 5138:1 5145:1 5149:1 5155:1 5201:1 5220:1 5313:1 5318:1 5321:1 5344:1 5354:1 5375:1 5416:1 5440:1 5450:1 5495:1 5529:1 5601:1 5618:1 5619:1 5625:1 5682:1 5723:1 5731:1 5740:1 5741:1 5772:1 5814:1 5856:1 5900:1 5927:1 5929:1 5935:1 5959:1 5970:1 5989:1 5999:1 6005:1 6022:1 6026:1 6027:3 6036:1 6055:1 6065:1 6134:1 6162:1 6169:3 6184:1 6188:1 6190:1 6221:1 6245:1 6264:1 6301:1 6318:1 6367:1 6382:1 6391:1 6424:1 6482:1 6541:1 6555:1 6580:1 6584:2 6589:1 6590:1 6600:2 6601:1 6655:1 6821:1 6826:2 6868:2 6964:1 6970:1 6998:2 7022:1 7073:1 7084:1 7103:1 7104:1 7108:2 7270:2 7290:1 7327:1 7331:1 7341:1 7397:1 7401:1 7415:1 7444:1 7446:1 7463:1 7504:1 7509:1 7602:1 7607:1 7621:1 7664:1 7696:1 7721:1 7730:1 7763:1 7792:2 7794:1 7801:1 7810:1 7828:1 7857:1 7888:1 7928:1 7943:1 7944:1 7949:1 7980:1 8014:1 8058:2 8082:2 8083:1 8091:1 8134:1 8157:1 8199:1 8233:1 8320:1 8329:1 8354:1 8374:1 8468:1 8480:1 8482:1 8519:1 8539:1 8585:1 8590:1 8629:1 8658:1 8684:1 8702:1 8704:1 8718:1 8749:1 8754:1 8756:1 8765:1 8771:1 8790:1 8799:1 8804:1 8830:1 8872:1 8900:2 8908:1 8955:1 8964:2 8972:1 9008:1 9092:1 9158:1 9164:2 9181:1 9276:1 9311:1 9395:2 9396:1 9457:1 9467:1 9527:1 9571:1 9628:2 9687:1 9780:1 9790:1 9830:1 9865:1 9883:2 9914:1 9928:1 9956:1 9979:1 9981:1 10005:1 10061:2 10062:1 10064:1 10074:1 10089:1 10126:1 10137:1 10177:1 10182:1 10188:1 10204:3 10223:1 10319:1 10422:1 10425:1 10430:1 10482:1 10492:1 10498:1 10506:1 10544:1 10547:1 10554:1 10557:1 10572:1 10580:1 10597:2 10650:1 10681:1 10696:1 10761:2 10775:2 10806:1 10857:1 10899:1 10916:1 10920:1 10964:2 10967:1 10973:2 10979:1 10982:1 10996:1 11027:1 11050:1 11131:1 11233:1 11258:1 11313:1 11379:1 11472:1 11485:1 11495:1 11505:1 11514:1 11522:1 11536:3 11567:2 11576:1 11583:1 11632:1 11642:1 11721:1 11732:1 11747:1 11755:1 11770:1 11856:1 11884:1 11888:1 11913:1 11926:1 11927:1 11932:1 11947:1 11971:1 11996:1 12066:1 12080:1 12193:1 12215:1 12225:1 12277:1 12283:2 12290:1 12298:1 12342:1 12395:1 12436:1 12449:1 12450:1 12479:1 12486:2 12490:1 12491:2 12501:1 12503:1 12538:1 12591:1 12594:1 12596:1 12614:1 12629:1 12715:1 12823:1 12831:2 12850:1 12893:1 12896:1 12901:1 12927:1 12967:1 13009:1 13013:1 13022:1 13033:1 13095:1 13125:1 13150:2 13162:1 13212:1 13233:2 13256:1 13318:1 13358:1 13366:2 13383:1 13413:1 13452:1 13665:1 13686:1 13723:1 13729:1 13763:1 13806:1 13949:1 14067:1 14078:1 14106:1 14127:1 14178:3 14224:1 14267:1 14293:1 14306:1 14349:1 14529:1 14533:1 14577:1 14621:1 14674:1 14727:1 14750:1 14779:1 14781:1 14792:1 14810:1 14831:1 14903:1 14909:1 14911:1 14934:1 14944:1 14945:1 14993:1 15022:1 15038:1 15058:1 15068:1 15164:1 15253:1 15258:3 15311:1 15319:1 15348:4 15366:1 15367:1 15371:6 15388:1 15401:1 15425:1 15432:2 15540:1 15567:1 15576:2 15588:1 15620:1 15676:1 15719:2 15746:1 15780:1 15798:1 15828:1 15866:2 15896:1 15904:1 16099:1 16102:1 16195:1 16204:1 16224:1 16225:1 16249:1 16250:1 16284:1 16302:1 16458:1 16460:1 16500:3 16553:1 16567:1 16569:1 16572:1 16623:2 16682:1 16718:2 16729:1 16793:1 16836:1 16840:1 16983:2 17027:1 17083:1 17086:1 17114:1 17179:1 17185:1 17276:1 17278:2 17346:1 17360:1 17365:1 17516:1 17547:1 17548:1 17561:1 17634:1 17676:1 17715:1 17743:1 17765:1 17798:1 17906:1 17918:1 17946:1 18052:1 18065:1 18082:1 18133:1 18137:1 18159:1 18171:1 18181:1 18182:1 18216:1 18236:1 18242:1 18244:1 18245:1 18289:1 18332:1 18338:1 18368:1 18382:1 18422:1 18427:1 18443:1 18450:1 18523:1 18535:1 18550:1 18563:1 18756:1 18811:1 18864:1 18895:1 18965:1 18976:1 18996:1 19025:1 19067:1 19085:1 19112:1 19146:1 19242:1 19260:1 19262:854 19392:1 19479:1 19620:1 19627:1 19663:1 19697:1 19776:3 19812:1 19829:1 19861:1 19869:1 19908:1 19914:1 19924:1 20004:1 20006:1 20131:1 20146:1 20153:1 20205:1 20208:1 20218:1 20219:1 20223:1 20252:1 20273:1 20302:1 20333:1 20370:1 20374:1 20397:1 20437:1 20507:1 20518:1 20550:2 20601:1 20606:1 20659:2 20681:1 20684:1 20696:1 20701:1 20704:1 20737:1 20832:1 20837:1 20868:1 20920:1 20962:1 20989:1 21004:1 21008:1 21020:1 21052:1 21075:1 21084:1 21101:2 21124:1 21160:1 21204:1 21242:1 21294:1 21321:1 21328:1 21338:1 21354:1 21368:1 21397:1 21404:1 21408:1 21410:1 21426:1 21493:1 21572:1 21581:1 21598:1 21624:1 21669:1 21712:1 21741:1 21747:1 21767:1 21803:1 21809:1 21845:2 21849:3 21851:1 21983:1 21986:1 22022:1 22053:1 22084:1 22104:1 22179:1 22190:2 22214:1 22266:1 22305:1 22312:1 22345:1 22349:1 22353:2 22395:2 22415:1 22468:1 22486:1 22508:1 22512:1 22530:1 22560:1 22577:1 22600:1 22606:1 22609:1 22662:1 22667:1 22697:1 22705:1 22723:1 22770:1 22800:1 22808:1 22811:1 22853:1 22867:1 22914:1 22919:1 22927:1 22928:1 23007:1 23027:1 23071:1 23133:1 23161:2 23165:1 23171:1 23172:1 23247:1 23268:1 23311:1 23372:1 23399:1 23430:1 23436:1 23448:1 23458:1 23467:1 23477:1 23515:1 23522:1 23533:1 23556:1 23613:1 23722:1 23747:1 23774:2 23814:1 23834:3 23926:1 23927:1 23940:1 23941:1 23977:1 24021:1 24047:1 24051:1 24197:1 24212:1 24223:2 24264:1 24292:1 24305:1 24360:1 24370:1 24375:1 24392:2 24405:1 24421:1 24441:1 24453:2 24474:1 24507:1 24553:1 24576:1 24623:1 24626:1 24636:2 24652:1 24655:1 24661:1 24662:2 24719:1 24740:1 24803:1 24810:1 24898:1 24904:2 24915:1 24918:1 24926:2 24937:1 24965:1 25054:1 25081:2 25114:1 25176:1 25185:1 25187:1 25206:1 25211:1 25231:1 25237:1 25249:1 25263:1 25447:2 25462:1 25482:1 25483:1 25503:1 25512:1 25539:1 25568:1 25681:1 25705:1 25729:1 25757:1 25777:1 25835:1 25922:2 25943:3 25945:1 25964:1 25982:3 26013:1 26024:1 26052:1 26092:1 26093:1 26129:1 26139:1 26160:1 26172:1 26268:1 26281:1 26324:1 26328:1 26345:1 26371:1 26374:1 26399:1 26478:1 26482:1 26594:1 26797:1 26845:1 26857:1 26858:1 26871:1 26893:1 26911:1 26915:1 26918:2 26955:1 26965:2 26981:1 27024:1 27033:1 27115:2 27164:1 27201:1 27233:1 27261:3 27267:1 27319:1 27369:1 27400:1 27430:1 27448:1 27471:1 27536:1 27564:2 27618:1 27776:1 27818:2 27877:2 27880:1 27881:1 27897:1 27914:1 27968:1 27985:2 28032:1 28097:1 28101:1 28130:2 28176:1 28186:1 28219:1 28234:1 28240:1 28248:1 28254:1 28330:1 28393:1 28435:1 28462:2 28504:1 28532:1 28536:1 28547:1 28562:1 28596:1 28617:4 28662:3 28671:1 28719:1 28806:1 28872:2 28889:1 28903:1 28938:1 29023:1 29046:1 29090:1 29102:2 29139:1 29153:1 29165:1 29166:1 29169:1 29177:1 29189:1 29251:1 29286:1 29324:1 29343:1 29401:1 29453:1 29519:1 29628:1 29695:1 29703:1 29706:1 29711:1 29738:1 29741:1 29743:1 29760:1 29773:1 29795:1 29807:1 29818:1 29846:1 29848:1 29851:1 29854:1 29903:1 29905:1 29915:1 29955:1 29958:2 29967:1 29970:1 29980:1
17 14:1 24:1 110:1 157:1 167:1 214:1 241:1 282:1 324:1 380:1 399:1 464:1 542:1 599:1 648:1 671:1 677:1 771:1 811:2 867:1 869:1 904:1 912:3 913:1 921:2 926:1 931:1 935:1 942:2 945:1 966:1 972:1 1039:1 1040:2 1071:1 1098:1 1126:1 1132:1 1146:1 1176:1 1197:1 1260:1 1301:1 1318:1 1335:1 1365:1 1513:1 1536:1 1543:1 1567:1 1571:1 1611:1 1663:1 1682:1 1741:1 1746:1 1788:1 1797:1 1803:1 1812:1 1826:1 1828:1 1839:1 1856:1 1863:2 1864:1 1874:1 1935:1 1981:1 2000:1 2011:1 2036:1 2041:1 2170:1 2293:1 2339:1 2366:1 2435:1 2436:1 2448:2 2452:1 2457:1 2473:1 2483:1 2497:1 2552:1 2614:1 2631:2 2636:1 2655:1 2680:1 2685:1 2686:1 2701:1 2706:1 2718:1 2728:1 2760:1 2858:1 2911:2 2978:1 2989:1 3007:1 3020:1 3062:2 3070:3 3080:1 3131:1 3183:1 3190:2 3197:1 3219:1 3269:1 3285:1 3292:1 3331:1 3433:1 3544:2 3627:1 3653:1 3654:1 3724:1 3729:1 3751:2 3774:1 3858:1 3894:1 3927:1 3984:1 3986:1 4057:1 4062:2 4080:1 4118:1 4127:1 4137:1 4141:1 4191:1 4284:1 4289:1 4306:1 4307:1 4334:1 4374:2 4575:1 4589:1 4601:3 4656:1 4708:1 4744:1 4799:1 4801:2 4827:1 4867:1 4882:3 4953:1 4978:1 4987:1 4992:1 4999:2 5021:1 5031:1 5058:1 5098:1 5101:1 5105:1 5117:1 5130:1 5138:1 5145:1 5149:1 5155:1 5201:1 5220:1 5313:1 5318:1 5321:1 5344:1 5354:2 5375:1 5416:1 5440:1 5450:1 5495:1 5529:1 5601:1 5618:1 5619:1 5625:1 5682:1 5723:1 5731:1 5740:1 5741:1 5772:1 5814:1 5856:1 5900:1 5927:1 5929:1 5935:1 5959:1 5970:1 5989:1 5999:1 6005:1 6022:1 6026:1 6027:3 6036:1 6055:1 6065:1 6134:1 6162:1 6168:1 6169:3 6184:1 6188:1 6190:1 6221:1 6245:1 6264:1 6301:1 6318:1 6367:1 6382:1 6391:1 6424:1 6450:1 6482:1 6497:1 6541:1 6555:1 6580:1 6584:2 6589:1 6590:1 6600:2 6601:1 6655:1 6821:1 6826:2 6868:2 6923:1 6964:1 6970:1 6998:2 7022:1 7073:1 7084:1 7103:1 7104:1 7108:2 7270:2 7290:1 7327:1 7331:1 7341:1 7397:1 7401:1 7415:1 7444:1 7446:1 7463:1 7504:1 7509:1 7602:1 7607:1 7621:1 7650:1 7664:1 7696:1 7721:1 7730:1 7763:1 7792:2 7794:1 7801:1 7810:1 7828:1 7857:1 7888:1 7928:1 7943:1 7944:1 7949:1 7980:1 8013:1 8014:1 8058:4 8082:3 8083:1 8091:1 8134:1 8157:1 8199:1 8233:1 8320:1 8329:1 8354:1 8374:1 8468:1 8480:1 8482:1 8519:1 8539:1 8585:1 8590:1 8629:1 8658:1 8684:1 8702:1 8704:1 8718:1 8749:1 8754:1 8756:1 8765:1 8771:1 8790:1 8799:1 8804:1 8830:1 8872:1 8900:2 8908:1 8955:1 8964:2 8972:1 8980:1 9008:1 9092:1 9158:1 9164:2 9181:1 9276:1 9311:1 9395:2 9396:1 9450:1 9457:1 9467:1 9527:1 9571:1 9628:2 9667:1 9687:1 9780:2 9790:1 9830:1 9865:1 9883:2 9914:1 9928:1 9956:1 9979:1 9981:1 10005:1 10061:2 10062:1 10064:1 10074:1 10089:1 10126:1 10137:1 10177:1 10182:1 10188:1 10204:3 10223:1 10319:1 10422:1 10425:1 10430:1 10482:1 10492:1 10498:1 10506:1 10544:1 10547:1 10554:1 10557:1 10572:1 10580:1 10597:2 10650:1 10681:1 10696:1 10761:2 10775:2 10801:1 10806:1 10857:1 10899:1 10916:1 10920:1 10964:2 10967:1 10973:2 10979:1 10982:1 10996:1 11027:1 11050:1 11089:1 11131:1 11233:1 11258:1 11313:1 11379:1 11472:1 11485:1 11495:1 11505:1 11514:1 11522:1 11536:3 11567:2 11576:1 11583:1 11632:1 11642:1 11721:1 11732:1 11747:1 11755:1 11770:1 11856:1 11884:1 11888:1 11913:1 11926:1 11927:1 11932:1 11947:1 11971:1 11996:1 12066:1 12080:1 12193:1 12215:1 12225:1 12277:1 12283:2 12290:1 12298:1 12342:1 12395:1 12436:1 12449:1 12450:1 12479:1 12486:2 12490:1 12491:2 12501:1 12503:1 12538:1 12591:1 12594:1 12596:1 12614:1 12620:1 12629:1 12715:1 12823:1 12831:2 12850:1 12893:1 12896:1 12901:1 12927:1 12967:1 13009:1 13013:1 13022:1 13033:1 13095:1 13116:1 13125:1 13150:2 13162:1 13212:1 13233:2 13256:1 13318:1 13358:1 13366:2 13383:1 13413:1 13452:1 13665:1 13686:1 13723:1 13729:1 13763:1 13806:1 13949:1 14067:1 14078:1 14106:2 14127:1 14177:1 14178:3 14211:1 14224:1 14246:1 14267:1 14293:1 14299:1 14306:1 14349:1 14383:1 14529:1 14533:1 14577:1 14621:1 14674:1 14727:1 14750:1 14779:1 14781:1 14792:1 14810:1 14831:1 14903:1 14909:1 14911:1 14931:1 14934:1 14944:1 14945:1 14993:1 15022:1 15038:1 15058:1 15068:1 15104:1 15164:1 15253:1 15258:3 15311:1 15319:1 15348:4 15366:1 15367:1 15371:6 15388:1 15401:1 15425:1 15432:2 15540:1 15567:1 15576:2 15588:1 15620:1 15676:1 15719:2 15746:1 15780:1 15798:1 15828:1 15866:2 15896:1 15900:1 15904:1 16014:1 16099:1 16102:1 16195:1 16204:1 16224:1 16225:1 16247:1 16249:1 16250:1 16284:1 16302:1 16458:1 16460:1 16488:1 16500:3 16553:1 16567:1 16569:1 16572:1 16623:2 16682:1 16718:2 16729:1 16793:1 16836:1 16840:1 16983:2 17027:1 17083:1 17086:1 17114:1 17179:1 17185:1 17203:1 17276:1 17278:2 17346:1 17360:1 17365:1 17516:1 17547:1 17548:1 17561:1 17634:1 17676:1 17715:1 17743:1 17763:1 17765:1 17798:1 17906:1 17918:1 17946:1 17952:1 18052:1 18065:1 18082:1 18133:1 18137:1 18159:1 18171:1 18181:1 18182:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:1 18332:1 18338:1 18368:1 18382:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:1 18523:1 18535:1 18550:1 18563:1 18756:1 18811:1 18864:1 18895:1 18965:1 18976:1 18996:1 19025:1 19067:1 19085:1 19112:1 19146:1 19242:1 19260:1 19262:898 19316:1 19392:1 19479:1 19620:1 19627:1 19663:1 19697:1 19776:3 19812:1 19829:1 19861:1 19869:1 19874:1 19908:1 19914:1 19924:1 20004:1 20006:1 20131:1 20146:1 20153:1 20205:1 20208:1 20218:1 20219:1 20223:1 20252:1 20273:1 20302:1 20333:1 20370:1 20374:1 20397:1 20437:1 20507:1 20518:1 20550:2 20601:1 20606:1 20659:2 20664:1 20681:1 20684:1 20696:1 20701:1 20704:1 20706:1 20737:1 20832:1 20837:1 20868:1 20920:1 20962:1 20989:1 21004:1 21008:1 21020:1 21052:1 21055:1 21075:1 21084:1 21101:2 21124:1 21160:1 21204:1 21242:1 21294:1 21321:1 21328:1 21338:1 21354:1 21368:1 21397:1 21404:1 21408:1 21410:1 21426:1 21482:1 21493:1 21572:1 21581:1 21598:1 21624:1 21669:1 21712:1 21741:1 21747:1 21767:1 21803:1 21809:1 21845:2 21849:4 21851:1 21983:1 21986:1 22022:1 22053:1 22084:1 22104:1 22179:1 22190:2 22214:1 22266:1 22305:1 22312:1 22345:1 22349:1 22353:2 22395:2 22415:1 22468:1 22486:1 22508:1 22512:1 22530:1 22560:1 22577:1 22600:1 22606:1 22609:1 22662:1 22667:1 22697:1 22705:1 22723:1 22770:1 22800:1 22808:1 22811:1 22853:1 22867:1 22914:1 22919:1 22927:1 22928:1 23007:1 23027:2 23071:1 23133:1 23161:2 23165:1 23171:1 23172:1 23247:1 23264:1 23268:1 23311:1 23372:1 23399:1 23430:1 23436:1 23448:1 23458:1 23467:1 23477:1 23515:1 23522:1 23533:1 23556:1 23613:1 23627:1 23722:1 23747:1 23774:2 23814:1 23834:3 23912:1 23926:1 23927:2 23940:1 23941:1 23977:1 24021:1 24047:1 24051:1 24089:1 24197:1 24212:2 24223:2 24264:1 24292:1 24305:1 24360:1 24370:1 24375:1 24392:2 24405:1 24421:1 24441:1 24453:2 24474:1 24507:1 24553:1 24576:1 24623:1 24626:1 24636:2 24652:1 24655:1 24661:1 24662:2 24719:1 24740:1 24803:1 24810:1 24898:1 24904:2 24915:1 24918:1 24926:2 24937:1 24965:1 25054:1 25081:2 25114:1 25176:1 25185:1 25187:1 25206:1 25211:1 25231:1 25237:1 25249:1 25263:1 25447:2 25462:1 25482:1 25483:1 25503:1 25512:1 25539:1 25568:1 25680:1 25681:1 25705:1 25729:1 25757:1 25777:1 25835:1 25922:2 25943:3 25945:1 25964:1 25982:3 26013:1 26024:1 26052:1 26092:1 26093:1 26129:1 26139:1 26160:1 26172:1 26268:1 26281:1 26324:1 26328:1 26345:1 26371:1 26374:1 26399:1 26478:1 26482:1 26594:1 26696:1 26797:1 26845:1 26857:1 26858:1 26871:1 26893:1 26911:1 26915:1 26918:2 26955:1 26965:2 26969:1 26981:1 27024:1 27033:1 27115:2 27164:1 27201:1 27233:1 27261:3 27267:1 27319:1 27369:1 27400:1 27430:1 27448:1 27471:1 27536:1 27564:2 27618:1 27731:1 27739:1 27776:1 27818:2 27877:2 27880:1 27881:1 27897:1 27914:1 27952:1 27968:1 27985:2 28032:1 28097:1 28101:1 28130:2 28176:1 28186:1 28200:1 28219:1 28234:1 28240:1 28248:1 28254:1 28315:1 28330:1 28393:1 28435:1 28462:2 28504:1 28532:1 28536:1 28547:1 28562:1 28596:1 28617:4 28662:3 28671:1 28684:1 28719:1 28806:1 28817:1 28835:1 28872:2 28889:1 28903:1 28938:1 29023:1 29046:1 29090:1 29102:2 29139:2 29153:1 29165:1 29166:1 29169:1 29177:1 29189:1 29251:1 29265:1 29286:1 29324:1 29343:1 29401:1 29453:1 29519:1 29628:1 29695:1 29703:1 29706:1 29711:1 29738:1 29741:1 29743:1 29760:1 29773:1 29795:1 29807:1 29818:1 29846:1 29848:1 29851:1 29854:1 29903:1 29905:1 29915:1 29955:1 29958:2 29967:1 29970:1 29980:1
17 14:1 24:1 110:1 157:1 167:1 214:1 241:1 282:1 324:1 380:2 399:1 464:1 542:1 555:1 599:1 648:1 671:1 677:1 765:1 771:1 811:2 867:2 869:1 904:1 912:3 913:1 921:2 926:1 931:1 935:1 942:2 945:2 960:1 966:1 967:1 972:1 1039:1 1040:2 1071:1 1098:1 1126:1 1132:1 1146:1 1176:1 1197:1 1260:1 1301:1 1318:1 1335:1 1365:1 1513:1 1536:1 1543:1 1567:1 1571:1 1588:1 1611:1 1614:1 1663:1 1682:1 1741:1 1746:1 1788:1 1797:1 1803:1 1812:2 1824:1 1826:1 1828:1 1839:1 1856:1 1863:2 1864:1 1874:1 1927:1 1935:1 1981:1 2000:1 2011:1 2024:1 2036:1 2041:1 2128:1 2170:1 2293:1 2339:1 2366:1 2428:1 2435:2 2436:1 2448:2 2452:1 2457:1 2459:1 2473:1 2483:1 2497:1 2552:1 2589:1 2614:1 2631:2 2636:1 2655:1 2680:1 2685:1 2686:1 2701:1 2706:1 2709:1 2718:1 2728:1 2760:1 2858:1 2911:2 2978:1 2989:1 3007:1 3020:1 3062:2 3070:3 3080:1 3131:2 3183:1 3190:2 3197:1 3219:1 3269:1 3285:1 3292:1 3331:1 3433:1 3544:2 3627:2 3653:1 3654:1 3676:1 3724:1 3729:1 3751:2 3774:1 3858:1 3894:1 3927:1 3984:1 3986:1 4057:1 4062:2 4080:1 4118:1 4122:1 4127:1 4137:1 4141:1 4189:1 4191:1 4284:1 4288:1 4289:1 4306:1 4307:1 4334:1 4374:2 4522:1 4575:2 4589:1 4601:3 4655:1 4656:1 4708:1 4744:1 4769:1 4799:1 4801:2 4810:1 4827:1 4842:1 4867:1 4882:3 4953:1 4978:1 4987:1 4992:2 4999:3 5021:1 5031:1 5058:1 5086:1 5098:1 5101:1 5105:1 5115:1 5117:1 5130:1 5138:1 5145:1 5149:1 5155:1 5156:1 5201:1 5220:1 5313:1 5318:1 5321:1 5344:1 5354:2 5375:1 5416:1 5440:1 5450:1 5495:1 5529:1 5601:1 5618:1 5619:1 5625:1 5682:1 5723:1 5731:1 5740:1 5741:1 5772:1 5814:1 5856:1 5900:1 5927:1 5929:1 5935:1 5959:1 5970:1 5989:1 5999:1 6005:1 6011:1 6022:1 6026:1 6027:3 6036:1 6055:1 6065:1 6134:1 6162:2 6168:1 6169:3 6184:1 6188:1 6190:1 6202:1 6221:1 6245:1 6264:2 6301:1 6318:1 6367:1 6382:1 6391:1 6424:2 6450:1 6482:1 6497:1 6541:1 6555:1 6580:2 6584:2 6589:1 6590:1 6600:2 6601:1 6655:1 6790:1 6821:1 6826:2 6868:2 6923:1 6964:1 6970:1 6998:2 7022:1 7073:1 7084:1 7103:1 7104:1 7108:2 7270:3 7290:1 7327:1 7331:1 7341:1 7397:1 7401:1 7415:1 7444:1 7446:1 7463:1 7504:2 7509:1 7602:1 7607:1 7621:1 7650:1 7664:1 7696:1 7721:1 7730:1 7763:2 7792:2 7794:1 7801:1 7810:1 7828:1 7857:2 7888:1 7928:1 7943:1 7944:1 7949:1 7980:1 7992:1 8013:1 8014:1 8058:7 8082:3 8083:2 8091:1 8134:1 8157:1 8199:1 8233:1 8292:1 8320:1 8329:1 8354:1 8374:1 8468:1 8480:1 8482:1 8519:1 8539:1 8571:1 8585:1 8590:1 8591:1 8629:1 8658:1 8684:1 8702:1 8704:1 8718:1 8749:1 8754:1 8756:1 8765:1 8771:1 8790:1 8799:1 8804:1 8806:1 8830:1 8835:1 8872:1 8900:2 8908:1 8955:1 8964:3 8972:1 8980:1 9008:1 9092:1 9158:1 9164:2 9181:1 9276:1 9311:1 9395:2 9396:1 9450:1 9457:1 9467:1 9527:1 9571:1 9628:2 9667:1 9687:1 9754:1 9780:2 9790:1 9830:1 9865:1 9883:2 9914:1 9928:1 9956:1 9979:1 9981:1 10005:1 10061:2 10062:1 10064:1 10074:1 10089:1 10126:1 10137:1 10177:1 10182:1 10188:1 10204:3 10223:1 10319:1 10422:1 10425:1 10430:1 10482:1 10492:1 10498:1 10506:1 10544:1 10547:1 10554:1 10557:1 10572:1 10580:1 10597:2 10647:1 10650:1 10681:1 10696:1 10761:2 10775:2 10801:1 10806:1 10857:1 10897:1 10899:1 10916:1 10920:1 10964:3 10967:1 10973:2 10979:1 10982:1 10996:1 11011:1 11027:1 11050:1 11089:1 11131:1 11190:1 11233:1 11258:1 11313:1 11379:1 11472:1 11485:1 11495:1 11505:1 11514:1 11521:1 11522:1 11534:1 11536:3 11567:2 11576:1 11583:1 11632:1 11642:1 11721:2 11732:1 11747:1 11755:1 11770:1 11854:1 11856:1 11884:1 11888:1 11913:1 11926:1 11927:1 11932:1 11947:1 11971:1 11996:1 12066:1 12080:1 12157:1 12193:1 12215:1 12221:1 12225:1 12231:1 12277:1 12283:2 12290:1 12298:1 12342:1 12395:1 12436:1 12449:1 12450:1 12479:1 12486:2 12490:1 12491:2 12501:1 12503:1 12538:1 12591:1 12594:1 12596:1 12614:1 12620:1 12626:1 12629:1 12705:1 12715:1 12823:1 12831:2 12850:1 12873:1 12893:1 12896:1 12901:1 12927:1 12967:1 13009:1 13013:1 13022:1 13033:1 13095:1 13116:1 13125:1 13150:2 13162:1 13212:1 13233:2 13256:1 13318:1 13358:1 13366:2 13383:1 13413:2 13452:1 13562:1 13665:1 13686:1 13723:1 13729:1 13763:1 13806:1 13891:1 13949:1 14067:1 14078:1 14106:2 14127:1 14177:1 14178:3 14211:1 14224:1 14246:1 14250:1 14267:1 14285:1 14293:1 14299:1 14306:1 14349:1 14383:1 14529:1 14533:1 14577:1 14598:1 14621:1 14651:1 14674:1 14715:1 14727:1 14739:1 14750:1 14776:1 14779:1 14781:1 14792:1 14810:1 14831:1 14903:1 14909:1 14911:1 14931:1 14934:1 14944:1 14945:1 14993:1 15015:1 15022:1 15038:1 15058:1 15068:1 15104:1 15164:1 15253:1 15258:3 15311:1 15319:1 15322:1 15348:4 15366:1 15367:1 15371:6 15388:1 15401:1 15425:1 15432:2 15540:1 15567:1 15576:2 15588:1 15620:1 15676:1 15709:1 15719:2 15746:1 15780:1 15798:1 15828:1 15866:2 15896:1 15900:1 15904:1 15938:1 16014:1 16099:1 16102:1 16177:1 16195:1 16204:1 16218:1 16224:1 16225:1 16247:1 16249:1 16250:1 16268:1 16273:1 16284:1 16302:1 16458:1 16460:1 16488:1 16500:3 16553:1 16567:1 16569:1 16572:1 16623:2 16682:1 16718:2 16729:1 16793:1 16823:1 16836:1 16840:1 16983:2 17027:1 17083:1 17086:1 17114:1 17179:1 17185:1 17203:1 17253:1 17276:1 17278:2 17346:2 17360:1 17365:1 17516:1 17547:1 17548:1 17561:1 17583:1 17634:1 17676:1 17715:1 17743:1 17763:1 17765:1 17789:1 17798:1 17906:1 17918:1 17946:2 17952:1 18052:1 18065:1 18082:1 18133:1 18137:1 18159:1 18171:1 18181:1 18182:2 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:1 18332:1 18338:1 18368:1 18382:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:1 18475:1 18523:1 18535:1 18550:1 18563:1 18756:1 18811:1 18858:1 18864:1 18874:1 18895:1 18965:1 18976:1 18996:1 19025:1 19067:1 19085:1 19112:1 19146:1 19242:1 19260:1 19262:963 19265:1 19316:1 19392:1 19479:1 19620:1 19627:1 19663:1 19697:1 19707:1 19776:3 19812:1 19829:1 19861:1 19869:1 19874:1 19908:1 19914:1 19924:1 20004:1 20006:1 20131:1 20146:1 20153:1 20205:1 20208:1 20218:1 20219:1 20223:1 20252:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20397:1 20405:1 20437:1 20507:1 20518:1 20550:2 20601:1 20606:1 20659:2 20664:1 20671:1 20681:1 20684:1 20696:1 20701:1 20704:1 20706:1 20737:2 20742:1 20832:1 20837:2 20868:1 20920:1 20962:1 20989:1 21004:1 21008:1 21020:1 21052:1 21055:1 21075:1 21084:1 21101:2 21115:1 21124:1 21160:1 21204:1 21242:1 21294:1 21321:2 21328:1 21338:1 21346:1 21354:1 21368:1 21397:1 21404:1 21408:2 21410:1 21426:1 21427:1 21482:1 21493:1 21572:1 21581:1 21598:1 21624:1 21669:1 21712:1 21741:1 21747:1 21767:1 21803:1 21809:1 21845:2 21848:1 21849:4 21851:1 21960:1 21983:1 21986:1 22022:1 22053:1 22084:1 22104:1 22109:1 22179:1 22190:2 22214:1 22266:1 22305:1 22312:1 22345:2 22349:1 22353:2 22363:1 22384:1 22395:2 22415:1 22468:1 22486:1 22508:1 22512:1 22530:1 22560:1 22577:1 22600:1 22606:1 22609:1 22662:1 22667:2 22697:1 22705:1 22723:1 22732:1 22770:1 22800:1 22807:1 22808:1 22811:1 22853:1 22867:1 22914:2 22919:1 22927:1 22928:2 23007:1 23027:2 23071:1 23133:1 23161:2 23165:1 23171:1 23172:1 23247:1 23264:1 23268:2 23311:1 23365:1 23372:1 23376:1 23399:1 23409:1 23430:1 23436:1 23448:1 23458:1 23467:1 23477:1 23515:1 23522:2 23533:1 23556:1 23613:1 23627:1 23722:1 23747:1 23774:2 23814:2 23834:3 23868:1 23912:1 23926:1 23927:2 23935:1 23940:1 23941:1 23977:1 24021:1 24047:1 24051:1 24058:1 24080:1 24089:1 24197:1 24212:2 24223:2 24264:1 24292:1 24305:1 24360:1 24370:1 24375:1 24392:2 24405:1 24421:1 24441:2 24453:2 24474:1 24507:1 24553:1 24576:1 24623:1 24626:1 24636:2 24652:1 24655:1 24661:1 24662:2 24719:1 24740:1 24778:1 24803:1 24810:1 24898:1 24904:2 24915:1 24918:2 24926:2 24937:1 24965:1 25054:1 25081:2 25114:1 25176:1 25185:1 25187:1 25206:1 25211:1 25231:1 25237:1 25249:1 25263:1 25447:2 25462:1 25482:1 25483:1 25503:1 25512:1 25539:1 25568:1 25627:1 25631:1 25680:1 25681:1 25705:1 25729:1 25757:1 25777:1 25828:1 25835:1 25904:1 25922:2 25943:3 25945:1 25964:1 25982:3 26013:1 26024:1 26052:1 26072:1 26092:1 26093:1 26129:1 26138:1 26139:1 26160:1 26172:1 26268:1 26281:1 26284:1 26324:1 26328:1 26345:2 26371:1 26374:1 26399:1 26478:1 26482:1 26594:2 26597:1 26689:1 26696:1 26714:1 26797:1 26845:1 26857:1 26858:2 26871:1 26893:1 26911:1 26915:1 26918:2 26955:1 26965:2 26969:1 26981:1 27024:1 27033:1 27115:2 27164:1 27201:1 27233:1 27261:3 27267:1 27319:1 27369:1 27400:1 27410:1 27430:1 27448:1 27471:1 27480:1 27536:1 27564:2 27613:1 27618:1 27731:1 27739:1 27776:1 27818:2 27825:1 27877:2 27880:1 27881:1 27897:1 27914:1 27944:1 27952:1 27968:1 27985:2 28001:1 28032:1 28097:1 28101:1 28130:2 28176:2 28186:1 28200:1 28219:1 28234:1 28240:1 28248:1 28254:1 28315:1 28330:1 28393:1 28435:1 28462:2 28495:1 28504:1 28532:1 28536:1 28547:1 28562:1 28596:1 28617:5 28662:3 28671:1 28684:1 28719:1 28806:1 28817:1 28827:1 28835:1 28872:2 28889:1 28903:1 28907:1 28938:1 29023:2 29046:1 29090:1 29102:2 29139:2 29153:1 29165:1 29166:1 29169:1 29177:1 29189:1 29205:1 29251:1 29265:1 29286:1 29324:1 29343:1 29401:1 29453:1 29519:1 29628:1 29695:2 29703:1 29706:1 29711:1 29738:1 29741:1 29743:1 29754:1 29760:1 29773:1 29795:1 29807:1 29818:1 29832:1 29846:1 29848:1 29851:1 29854:2 29889:1 29903:2 29905:1 29915:1 29955:1 29958:2 29967:1 29970:1 29980:1
17 14:2 24:1 57:1 110:1 157:1 167:1 214:1 241:2 282:1 324:1 380:2 399:1 464:1 542:1 555:1 599:1 648:1 671:1 677:1 765:1 771:1 811:3 867:2 869:1 904:1 912:3 913:1 921:2 926:1 931:1 935:1 942:2 945:2 960:1 966:1 967:1 972:1 1039:1 1040:2 1071:1 1098:1 1115:1 1126:1 1132:1 1146:1 1176:1 1197:1 1260:1 1301:1 1318:1 1335:1 1365:1 1513:1 1536:1 1543:1 1567:1 1571:1 1588:1 1611:1 1614:1 1663:1 1682:1 1727:1 1741:1 1746:1 1788:1 1797:1 1803:1 1812:2 1824:1 1826:1 1828:1 1839:1 1856:1 1863:2 1864:2 1874:1 1927:1 1935:1 1981:1 2000:1 2011:1 2024:1 2036:1 2041:1 2128:1 2170:1 2293:1 2339:1 2366:1 2428:1 2435:2 2436:1 2448:2 2452:1 2457:1 2459:1 2473:1 2483:1 2497:2 2552:1 2589:1 2614:1 2631:3 2636:1 2655:1 2680:1 2685:1 2686:1 2701:1 2706:1 2709:1 2718:1 2728:1 2760:1 2858:1 2911:2 2978:1 2989:1 3007:1 3020:1 3062:3 3070:3 3080:1 3131:2 3183:1 3190:2 3197:1 3219:1 3269:1 3285:1 3292:1 3331:1 3433:1 3544:2 3627:2 3653:1 3654:1 3676:1 3724:1 3729:1 3751:2 3774:1 3858:1 3894:1 3927:1 3984:1 3986:1 4057:1 4062:2 4080:1 4118:1 4122:1 4127:1 4137:1 4141:1 4189:1 4191:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4334:1 4358:1 4374:2 4437:1 4522:1 4575:2 4589:1 4601:3 4655:1 4656:1 4708:1 4744:1 4769:1 4794:1 4799:1 4801:3 4810:1 4827:1 4842:1 4867:1 4882:3 4953:1 4978:1 4987:1 4992:2 4999:3 5021:1 5031:1 5058:1 5086:1 5098:1 5101:1 5105:1 5115:1 5117:1 5130:1 5138:1 5145:1 5149:1 5155:1 5156:1 5201:1 5220:1 5313:2 5318:1 5321:1 5344:1 5354:2 5375:1 5416:1 5420:1 5440:1 5450:1 5495:1 5513:1 5529:1 5601:1 5618:1 5619:1 5625:1 5682:1 5723:1 5731:1 5740:1 5741:1 5772:2 5814:1 5856:1 5900:1 5927:2 5929:1 5935:1 5959:1 5970:1 5989:1 5999:1 6005:1 6011:1 6022:1 6026:1 6027:3 6036:1 6055:1 6065:1 6134:2 6162:2 6168:1 6169:3 6184:1 6188:1 6190:1 6202:1 6221:1 6245:1 6264:2 6301:1 6306:1 6318:1 6367:1 6382:1 6383:1 6391:1 6393:1 6424:2 6450:1 6482:1 6497:1 6541:1 6555:1 6580:2 6584:2 6589:1 6590:1 6600:2 6601:1 6655:1 6790:1 6821:1 6826:2 6868:3 6923:1 6964:1 6970:1 6998:2 7022:1 7073:1 7084:1 7103:1 7104:1 7108:2 7270:3 7290:1 7327:1 7331:1 7341:1 7397:1 7401:1 7415:1 7444:1 7446:1 7463:1 7504:2 7509:1 7602:1 7607:1 7621:1 7650:1 7664:1 7696:1 7721:1 7730:1 7763:2 7792:2 7794:1 7801:1 7810:1 7828:1 7857:2 7888:1 7928:1 7943:1 7944:1 7949:1 7980:2 7992:1 8013:1 8014:2 8058:7 8082:3 8083:2 8091:1 8134:1 8157:1 8199:1 8233:1 8292:1 8320:1 8329:1 8354:1 8374:1 8468:2 8480:1 8482:2 8519:1 8539:1 8571:1 8585:1 8590:1 8591:1 8629:1 8658:1 8684:1 8702:1 8704:1 8718:1 8749:1 8754:1 8756:1 8765:1 8771:1 8790:1 8799:1 8804:1 8806:1 8830:1 8835:1 8872:1 8900:2 8908:1 8955:1 8964:3 8972:1 8980:1 9008:1 9092:1 9158:1 9164:2 9181:1 9276:1 9311:1 9395:3 9396:1 9450:1 9452:1 9457:1 9467:1 9527:1 9571:1 9628:2 9667:1 9687:1 9754:1 9780:2 9790:1 9830:1 9865:1 9883:2 9914:1 9928:1 9956:1 9979:1 9981:1 10005:1 10061:3 10062:1 10064:2 10074:1 10089:1 10110:1 10126:1 10137:1 10177:1 10182:1 10188:1 10204:3 10221:1 10223:1 10319:1 10422:1 10425:1 10430:1 10482:1 10492:1 10498:2 10506:1 10544:1 10547:1 10554:1 10557:1 10572:1 10580:1 10597:3 10647:1 10650:1 10681:1 10696:1 10761:2 10775:2 10801:1 10806:1 10857:1 10897:1 10899:1 10916:1 10920:1 10964:3 10967:1 10973:2 10979:1 10982:1 10996:1 11011:1 11027:1 11050:1 11089:1 11131:1 11190:1 11233:1 11258:1 11313:1 11379:2 11472:1 11485:1 11495:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:4 11567:2 11576:1 11583:1 11632:1 11642:1 11721:2 11732:1 11747:1 11755:1 11770:1 11854:1 11856:1 11884:1 11888:1 11913:1 11926:1 11927:1 11932:1 11947:1 11971:1 11996:1 12066:1 12080:1 12157:1 12193:1 12215:1 12221:1 12225:1 12231:1 12277:1 12283:2 12290:1 12298:1 12342:1 12395:1 12436:1 12449:1 12450:1 12479:1 12486:2 12490:1 12491:2 12501:1 12503:1 12538:1 12591:1 12594:1 12596:1 12614:1 12620:1 12626:1 12629:1 12631:1 12678:1 12705:1 12715:1 12823:1 12831:2 12841:1 12850:1 12873:1 12893:1 12896:1 12901:1 12927:1 12967:1 13009:1 13013:1 13022:1 13033:1 13095:1 13116:1 13125:1 13150:2 13162:1 13212:1 13233:3 13256:1 13318:1 13358:1 13366:2 13383:1 13413:2 13452:1 13562:1 13665:1 13686:1 13723:1 13729:1 13763:1 13806:1 13891:1 13949:1 14067:1 14078:1 14106:2 14127:1 14177:1 14178:3 14211:1 14224:1 14246:1 14250:1 14259:1 14267:1 14285:1 14293:1 14299:1 14306:1 14349:1 14383:1 14529:1 14533:1 14577:1 14598:1 14621:1 14651:1 14674:1 14715:1 14727:1 14739:1 14750:1 14776:1 14779:1 14781:1 14792:1 14810:1 14831:1 14903:1 14909:1 14911:2 14931:1 14934:1 14944:1 14945:1 14993:1 15015:1 15022:1 15037:1 15038:1 15058:1 15068:1 15104:1 15164:1 15253:1 15258:3 15311:1 15319:1 15322:1 15348:4 15366:1 15367:1 15371:6 15388:1 15401:1 15425:1 15432:3 15540:1 15567:1 15576:2 15588:1 15620:1 15676:2 15709:1 15719:2 15746:1 15780:1 15793:1 15798:1 15828:1 15863:1 15866:3 15896:1 15900:1 15901:1 15904:1 15938:1 16014:1 16099:1 16102:2 16177:1 16195:1 16204:1 16218:1 16224:1 16225:1 16247:1 16249:1 16250:1 16268:1 16273:1 16284:1 16302:1 16458:1 16460:1 16488:1 16500:3 16553:1 16567:1 16569:1 16572:1 16623:2 16682:1 16718:2 16729:1 16793:1 16795:1 16823:1 16836:1 16840:1 16983:2 17022:1 17027:1 17083:1 17086:1 17114:1 17179:1 17185:1 17203:1 17253:1 17276:1 17278:2 17346:2 17360:1 17365:1 17516:1 17547:1 17548:1 17561:1 17583:1 17634:1 17676:1 17715:1 17743:1 17763:1 17765:1 17789:1 17798:1 17906:1 17918:1 17946:2 17952:1 18052:1 18065:1 18082:1 18133:1 18137:1 18159:1 18171:1 18181:1 18182:2 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:2 18332:1 18338:1 18368:1 18382:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:1 18475:1 18523:1 18535:1 18550:1 18563:1 18756:1 18811:1 18817:1 18830:1 18858:1 18864:1 18874:1 18895:1 18965:1 18976:1 18996:1 19025:1 19067:1 19085:1 19112:1 19146:1 19242:1 19260:1 19262:1027 19265:1 19316:1 19392:1 19479:1 19620:1 19627:1 19663:1 19697:1 19707:1 19776:3 19812:1 19829:1 19861:1 19869:1 19874:1 19908:1 19914:1 19924:1 20004:1 20006:1 20131:1 20146:1 20153:1 20205:1 20208:1 20218:1 20219:2 20223:1 20244:1 20252:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20397:1 20405:1 20437:1 20507:1 20518:1 20550:2 20601:1 20606:1 20659:2 20664:1 20671:1 20681:1 20684:1 20696:1 20701:1 20704:1 20706:1 20737:2 20742:1 20832:1 20837:2 20868:1 20920:1 20962:1 20989:1 21004:1 21008:1 21020:1 21052:1 21055:1 21075:1 21084:1 21101:2 21115:1 21124:1 21160:1 21204:1 21242:1 21251:1 21294:1 21321:2 21328:1 21338:1 21346:1 21354:1 21368:1 21397:1 21404:1 21408:2 21410:1 21426:1 21427:1 21482:1 21493:1 21572:1 21581:1 21598:1 21624:1 21669:1 21712:1 21741:1 21747:1 21767:1 21803:1 21809:1 21845:2 21848:1 21849:4 21851:1 21960:1 21983:1 21986:1 22022:1 22053:1 22084:1 22104:1 22109:1 22179:1 22190:2 22214:1 22266:1 22279:1 22305:1 22312:1 22345:2 22349:1 22353:3 22363:1 22384:1 22395:2 22415:1 22468:1 22486:2 22508:1 22512:1 22530:2 22560:1 22577:1 22600:2 22606:1 22609:1 22662:1 22667:2 22697:1 22705:1 22723:1 22732:1 22770:1 22800:1 22807:1 22808:1 22811:1 22853:1 22867:1 22914:2 22919:1 22927:1 22928:2 23007:1 23027:3 23071:1 23113:1 23133:1 23161:2 23165:1 23171:1 23172:1 23247:1 23264:1 23268:2 23311:2 23365:1 23372:1 23376:1 23399:1 23409:1 23430:1 23436:1 23448:1 23458:1 23467:1 23477:1 23515:1 23522:2 23533:1 23556:1 23613:1 23627:1 23722:1 23747:1 23774:2 23814:2 23834:3 23868:1 23912:1 23926:1 23927:2 23935:1 23940:1 23941:1 23977:1 24021:1 24047:1 24051:1 24058:1 24080:1 24089:1 24197:1 24212:2 24223:2 24264:1 24292:1 24305:1 24360:1 24370:1 24375:1 24379:1 24392:2 24405:1 24421:1 24441:2 24453:2 24474:1 24507:1 24553:1 24576:2 24623:2 24626:1 24636:3 24652:1 24655:1 24661:1 24662:2 24719:1 24740:1 24778:1 24803:1 24810:1 24898:1 24904:2 24915:1 24918:2 24926:2 24937:1 24965:1 25054:1 25081:2 25114:1 25176:2 25185:1 25187:1 25206:1 25211:1 25231:1 25237:1 25249:1 25263:1 25447:2 25462:1 25482:1 25483:1 25503:1 25512:1 25539:1 25568:1 25627:1 25631:1 25680:1 25681:1 25705:1 25729:1 25757:1 25777:1 25828:1 25835:1 25904:1 25922:2 25943:3 25945:1 25964:1 25982:3 26013:1 26024:1 26052:1 26072:1 26092:2 26093:1 26129:1 26138:1 26139:1 26160:1 26172:1 26268:1 26281:2 26284:1 26324:1 26328:1 26345:2 26371:1 26374:1 26399:1 26478:1 26482:1 26594:2 26597:1 26617:1 26689:1 26696:1 26714:1 26797:1 26845:1 26857:1 26858:2 26871:1 26893:1 26911:1 26915:1 26918:2 26955:1 26965:2 26969:1 26981:1 27024:1 27033:1 27115:2 27164:1 27201:1 27225:1 27233:1 27261:3 27267:1 27302:1 27319:1 27369:1 27400:1 27410:1 27430:1 27448:1 27471:1 27480:1 27496:1 27536:1 27554:1 27564:2 27613:1 27618:1 27731:1 27739:1 27776:1 27818:2 27825:1 27877:2 27880:1 27881:1 27897:1 27914:1 27944:1 27952:1 27968:1 27985:2 28001:1 28032:1 28097:1 28101:1 28130:2 28139:1 28176:2 28186:1 28200:1 28219:1 28233:1 28234:2 28240:1 28248:1 28254:1 28283:1 28315:1 28330:1 28358:1 28393:1 28435:2 28462:2 28495:1 28504:1 28532:1 28536:1 28547:1 28562:1 28596:1 28617:5 28662:3 28671:1 28684:1 28719:1 28806:1 28817:1 28827:1 28835:1 28872:2 28889:1 28903:1 28907:1 28938:1 29023:2 29046:1 29090:1 29102:3 29139:2 29153:1 29165:1 29166:1 29169:1 29177:1 29189:1 29205:1 29251:1 29265:1 29286:1 29324:1 29343:1 29366:1 29401:1 29453:1 29519:1 29628:2 29695:2 29703:1 29706:1 29711:1 29738:1 29741:1 29743:1 29754:1 29760:1 29773:1 29795:1 29807:2 29818:1 29832:1 29846:1 29848:1 29851:1 29854:2 29889:1 29903:2 29905:1 29915:1 29955:1 29958:2 29959:1 29967:1 29970:1 29980:1
17 14:2 24:1 57:1 110:1 157:1 167:1 214:1 241:2 282:1 324:1 380:2 381:1 399:1 464:2 542:1 555:1 599:1 648:1 671:1 677:1 765:1 771:1 811:3 867:2 869:1 904:1 912:3 913:1 921:3 926:1 931:1 935:1 942:2 945:2 960:1 966:2 967:1 972:1 1039:1 1040:2 1069:1 1071:1 1084:1 1098:1 1115:1 1126:1 1132:1 1140:1 1146:1 1176:1 1197:1 1260:1 1301:1 1318:1 1335:1 1365:1 1385:1 1513:1 1536:2 1543:1 1567:1 1571:1 1588:1 1611:1 1614:1 1663:1 1682:1 1691:1 1716:1 1727:1 1741:1 1746:1 1788:1 1797:1 1803:1 1812:3 1824:1 1826:1 1828:1 1839:1 1856:1 1863:2 1864:2 1874:1 1927:1 1935:1 1981:1 2000:1 2011:1 2024:1 2036:1 2041:1 2128:1 2170:1 2293:1 2339:1 2366:1 2428:1 2435:2 2436:1 2448:2 2452:1 2457:1 2459:1 2473:1 2483:1 2497:2 2552:1 2589:1 2614:1 2631:3 2636:1 2655:1 2680:1 2685:1 2686:1 2701:1 2706:1 2709:1 2718:1 2728:1 2760:1 2858:1 2911:2 2978:1 2989:2 3007:1 3020:1 3062:3 3070:3 3080:2 3131:2 3183:1 3190:2 3197:1 3219:1 3243:1 3268:1 3269:1 3285:1 3292:1 3331:1 3369:1 3433:1 3544:2 3627:2 3653:1 3654:2 3676:1 3724:1 3729:1 3751:2 3774:1 3858:1 3894:1 3927:1 3955:1 3984:1 3986:1 3991:1 4057:1 4062:3 4080:1 4118:1 4122:1 4127:1 4137:1 4141:1 4189:1 4191:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4334:1 4358:1 4374:2 4437:1 4471:1 4522:1 4564:1 4575:2 4589:1 4601:3 4655:1 4656:1 4708:1 4744:1 4769:1 4794:1 4799:1 4801:3 4810:1 4827:1 4842:1 4867:1 4882:3 4953:1 4978:1 4987:1 4992:3 4997:1 4999:3 5021:1 5031:1 5058:1 5086:1 5098:1 5101:1 5105:1 5115:1 5117:1 5130:1 5138:1 5145:1 5149:1 5155:1 5156:1 5201:1 5220:1 5313:2 5318:1 5321:1 5344:1 5354:2 5375:1 5377:1 5416:1 5420:1 5440:1 5450:1 5495:1 5497:1 5513:1 5529:1 5601:1 5618:1 5619:1 5625:1 5682:1 5723:1 5731:1 5740:1 5741:1 5772:2 5814:1 5856:1 5900:1 5927:2 5929:1 5935:1 5959:1 5970:1 5989:1 5999:1 6005:1 6011:1 6022:1 6026:1 6027:4 6036:1 6055:2 6065:1 6134:2 6162:2 6168:1 6169:3 6184:1 6188:1 6190:1 6202:1 6221:1 6245:1 6264:2 6288:1 6293:1 6301:1 6306:1 6318:1 6367:1 6382:1 6383:1 6391:1 6393:1 6424:2 6450:1 6482:1 6497:1 6541:1 6555:1 6580:2 6584:2 6589:1 6590:1 6600:2 6601:1 6655:1 6682:1 6790:1 6809:1 6821:1 6826:2 6868:3 6923:1 6964:1 6970:1 6998:3 7022:1 7073:1 7084:1 7103:1 7104:1 7108:2 7270:3 7290:1 7327:1 7331:1 7341:1 7397:1 7401:1 7415:1 7444:1 7446:1 7463:1 7504:3 7509:1 7602:1 7607:1 7621:1 7650:1 7664:1 7696:1 7721:1 7730:1 7763:3 7791:1 7792:2 7794:1 7801:1 7810:1 7828:1 7857:2 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7980:2 7992:1 8013:1 8014:2 8058:7 8082:3 8083:2 8091:1 8134:1 8157:1 8199:1 8233:1 8292:1 8320:1 8329:1 8354:1 8374:1 8468:2 8480:1 8482:2 8519:1 8539:1 8571:1 8585:1 8590:1 8591:1 8629:2 8658:1 8684:1 8702:1 8704:1 8718:1 8749:1 8754:1 8756:1 8765:1 8771:1 8790:1 8799:1 8804:1 8806:1 8830:1 8835:1 8872:1 8877:1 8900:2 8908:1 8955:1 8964:3 8972:1 8980:1 9008:1 9092:1 9158:2 9164:2 9181:1 9276:1 9311:1 9395:3 9396:1 9450:1 9452:1 9457:1 9467:1 9527:1 9571:1 9628:2 9667:1 9687:1 9754:1 9780:2 9790:1 9830:1 9865:1 9883:2 9914:1 9928:1 9956:1 9979:1 9981:1 10005:1 10061:3 10062:1 10064:2 10074:1 10089:1 10110:1 10126:1 10137:1 10177:1 10182:1 10188:1 10204:4 10221:1 10223:1 10319:1 10422:1 10425:1 10430:1 10482:1 10492:1 10498:3 10506:1 10544:1 10547:1 10554:1 10557:1 10572:1 10580:1 10597:3 10647:1 10650:1 10681:1 10696:1 10761:2 10775:2 10801:1 10806:1 10857:1 10876:1 10897:1 10899:1 10916:1 10920:1 10964:3 10967:1 10969:1 10973:2 10979:1 10982:1 10996:1 11011:1 11027:1 11050:1 11089:1 11131:1 11190:1 11233:1 11258:1 11313:1 11379:2 11472:1 11485:1 11495:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:4 11567:2 11576:1 11583:1 11632:1 11642:1 11721:3 11732:1 11747:1 11755:1 11770:1 11854:1 11856:1 11884:1 11888:1 11913:1 11926:1 11927:1 11932:1 11947:1 11971:1 11996:1 12066:1 12080:1 12157:1 12193:1 12215:1 12221:1 12225:1 12231:1 12277:1 12283:2 12290:1 12298:1 12342:1 12395:1 12436:1 12449:1 12450:1 12479:1 12486:2 12490:1 12491:2 12501:2 12503:1 12538:1 12591:1 12594:1 12596:1 12614:1 12620:1 12626:1 12629:1 12631:1 12678:1 12705:1 12715:1 12823:1 12831:2 12841:1 12850:1 12873:1 12893:1 12896:1 12897:1 12901:1 12927:1 12967:1 13009:1 13013:1 13022:1 13033:1 13095:2 13116:1 13125:1 13150:2 13162:1 13212:1 13233:3 13256:1 13318:2 13358:1 13366:2 13383:1 13413:3 13452:1 13562:1 13665:1 13686:1 13723:2 13729:1 13763:2 13806:1 13853:1 13891:1 13949:1 14067:1 14078:1 14106:2 14127:2 14177:1 14178:5 14211:1 14224:1 14246:1 14250:1 14259:1 14267:1 14285:1 14293:1 14299:1 14306:1 14349:1 14383:1 14405:1 14529:1 14533:1 14577:1 14598:1 14621:1 14651:1 14674:1 14695:1 14715:1 14727:1 14739:1 14750:1 14776:1 14779:1 14781:1 14792:1 14810:1 14831:1 14903:1 14909:1 14911:2 14931:1 14934:1 14944:1 14945:1 14993:1 15007:1 15015:1 15022:1 15037:1 15038:1 15058:1 15068:1 15104:1 15164:1 15253:1 15258:3 15311:1 15319:1 15322:1 15348:5 15366:1 15367:1 15371:7 15388:1 15401:1 15425:1 15432:3 15540:1 15567:1 15576:2 15588:1 15620:2 15676:2 15709:1 15719:2 15746:1 15780:1 15785:1 15793:1 15798:1 15828:1 15863:1 15866:3 15896:1 15900:1 15901:1 15904:1 15938:1 16014:1 16099:1 16102:2 16177:1 16195:1 16204:2 16218:1 16224:1 16225:1 16247:1 16249:2 16250:1 16268:1 16273:1 16284:1 16302:1 16318:1 16458:1 16460:1 16488:1 16500:4 16553:1 16567:1 16569:1 16572:1 16623:2 16682:1 16718:3 16725:1 16729:1 16793:1 16795:1 16823:1 16836:1 16840:1 16983:2 17022:1 17027:1 17083:1 17086:1 17114:1 17179:2 17185:1 17203:1 17225:1 17253:1 17276:1 17278:2 17346:2 17360:1 17365:1 17516:1 17547:1 17548:1 17561:2 17583:1 17634:1 17676:1 17715:1 17743:2 17763:1 17765:1 17789:1 17798:1 17820:1 17906:1 17918:1 17940:1 17946:3 17952:1 18052:1 18065:1 18082:1 18133:1 18137:1 18159:1 18171:1 18181:1 18182:2 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:2 18301:1 18332:1 18338:1 18368:1 18382:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:2 18475:1 18523:1 18535:1 18550:1 18563:1 18756:1 18811:1 18817:1 18830:1 18858:1 18863:1 18864:2 18874:1 18895:1 18933:1 18965:1 18976:1 18996:1 19025:1 19067:1 19085:1 19112:1 19146:1 19242:2 19260:1 19262:1105 19265:1 19316:1 19392:1 19479:2 19594:1 19620:1 19627:1 19663:1 19697:1 19707:1 19776:3 19812:1 19829:1 19861:1 19869:1 19874:1 19908:1 19914:1 19924:1 20004:1 20006:1 20131:2 20146:1 20153:1 20205:1 20208:1 20218:1 20219:2 20223:1 20224:1 20244:1 20252:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20397:1 20405:1 20437:1 20507:1 20518:1 20550:2 20601:1 20606:1 20659:2 20664:1 20671:1 20672:1 20681:1 20684:1 20696:1 20701:1 20704:2 20706:1 20737:2 20742:1 20755:1 20832:1 20837:2 20868:1 20920:1 20962:1 20989:1 21004:1 21008:1 21020:1 21052:1 21055:1 21075:1 21084:1 21101:2 21115:1 21124:1 21160:1 21204:1 21205:1 21242:2 21251:1 21294:1 21321:2 21328:1 21338:1 21346:1 21354:1 21368:1 21397:1 21404:1 21408:2 21410:1 21426:1 21427:1 21482:1 21493:1 21572:1 21581:1 21598:1 21624:1 21669:1 21712:1 21741:1 21747:1 21767:1 21803:1 21809:1 21845:2 21848:1 21849:4 21851:1 21960:1 21983:1 21986:1 21990:1 22022:1 22053:1 22084:1 22099:1 22104:1 22109:1 22179:1 22190:2 22214:1 22266:1 22279:1 22305:1 22312:1 22345:2 22349:1 22353:3 22363:1 22384:1 22395:2 22415:1 22468:1 22486:2 22508:1 22512:1 22530:2 22560:2 22577:1 22600:2 22606:1 22609:1 22662:1 22667:2 22697:1 22705:1 22723:1 22732:1 22770:1 22800:1 22807:1 22808:1 22811:1 22853:2 22867:1 22914:3 22919:1 22927:1 22928:2 23006:1 23007:2 23027:3 23049:1 23071:1 23113:1 23133:1 23161:2 23165:1 23171:1 23172:1 23236:1 23247:1 23264:1 23268:2 23311:2 23365:1 23372:1 23376:1 23399:1 23409:1 23430:1 23436:1 23448:1 23458:1 23467:1 23477:1 23515:1 23522:3 23533:1 23556:1 23613:1 23627:1 23722:1 23747:1 23774:2 23814:2 23834:3 23868:1 23912:1 23926:1 23927:2 23935:1 23940:1 23941:1 23977:1 23988:1 24021:1 24047:1 24051:1 24058:1 24080:1 24089:1 24192:1 24197:1 24212:2 24223:3 24264:1 24292:1 24305:2 24360:1 24370:1 24375:1 24379:1 24392:2 24405:1 24421:1 24441:3 24453:2 24474:1 24507:1 24553:1 24576:2 24623:2 24626:1 24636:3 24652:1 24655:1 24661:1 24662:2 24719:1 24740:1 24778:1 24803:1 24810:1 24898:1 24904:2 24915:1 24918:2 24926:2 24937:1 24965:1 25054:1 25081:2 25114:1 25157:1 25159:1 25176:2 25185:1 25187:1 25206:1 25211:1 25231:1 25237:1 25249:1 25263:1 25447:2 25462:1 25482:1 25483:1 25503:1 25512:1 25539:1 25568:1 25627:1 25631:1 25680:1 25681:1 25705:2 25729:1 25757:1 25777:1 25828:1 25835:1 25904:1 25922:2 25943:3 25945:1 25964:1 25982:3 26013:1 26024:1 26052:1 26072:1 26092:2 26093:1 26129:1 26138:1 26139:1 26160:1 26172:1 26214:1 26268:1 26281:2 26284:1 26324:1 26328:1 26345:2 26371:1 26374:1 26399:1 26478:1 26482:1 26594:2 26597:1 26617:1 26689:1 26696:1 26714:1 26797:1 26845:1 26857:1 26858:2 26871:1 26893:1 26911:1 26915:1 26918:3 26955:1 26965:2 26969:1 26981:1 27015:1 27024:1 27033:2 27115:2 27164:1 27201:1 27225:1 27233:1 27261:3 27267:1 27302:1 27319:1 27369:1 27400:1 27410:1 27425:1 27430:1 27448:1 27471:1 27480:1 27496:1 27536:1 27554:2 27564:2 27613:1 27618:1 27731:1 27739:1 27776:1 27818:2 27825:1 27877:2 27880:1 27881:1 27897:1 27914:1 27944:1 27952:1 27968:1 27985:2 28001:1 28032:1 28097:1 28101:1 28130:2 28138:1 28139:1 28176:2 28186:1 28200:1 28202:1 28219:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28315:1 28330:1 28358:1 28393:1 28435:2 28462:2 28468:1 28495:1 28504:1 28532:1 28536:1 28547:1 28562:1 28596:2 28617:5 28662:4 28671:1 28684:1 28719:1 28806:2 28817:1 28827:1 28835:1 28872:2 28889:1 28903:1 28907:1 28938:1 29023:3 29046:1 29090:1 29102:3 29139:2 29153:1 29165:1 29166:1 29169:1 29177:1 29189:1 29205:1 29251:1 29265:1 29286:1 29324:1 29343:1 29366:1 29401:1 29453:1 29519:1 29628:2 29695:3 29703:1 29706:1 29711:1 29738:1 29741:1 29743:1 29754:1 29760:1 29773:1 29795:1 29807:2 29818:1 29832:1 29846:1 29848:1 29851:1 29854:2 29889:1 29903:2 29905:1 29915:1 29955:1 29958:2 29959:1 29967:1 29970:1 29980:1
17 14:2 24:1 41:1 57:1 110:1 157:2 167:1 214:1 241:2 282:1 324:1 380:2 381:1 399:1 464:2 542:1 555:1 599:1 648:1 671:1 677:1 765:1 771:1 796:1 811:3 867:2 869:1 904:1 912:3 913:1 921:4 925:1 926:1 931:1 935:1 942:2 945:2 960:1 966:2 967:1 972:1 1039:1 1040:2 1069:1 1071:1 1084:1 1098:1 1115:1 1126:1 1132:1 1140:1 1146:1 1155:1 1176:1 1197:1 1260:1 1301:1 1318:1 1335:1 1365:1 1385:1 1486:1 1513:1 1536:2 1543:1 1567:1 1571:1 1588:1 1611:1 1614:1 1663:1 1682:1 1691:1 1716:1 1727:1 1741:1 1746:1 1788:1 1797:1 1803:1 1812:3 1824:1 1826:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1874:1 1927:2 1935:1 1981:1 2000:1 2011:1 2024:1 2036:1 2041:1 2128:1 2170:1 2293:1 2339:1 2366:1 2428:1 2435:2 2436:1 2448:2 2452:1 2457:1 2459:1 2473:1 2483:1 2497:2 2552:1 2589:1 2591:1 2614:1 2631:3 2636:1 2655:1 2680:2 2685:1 2686:1 2692:1 2701:1 2706:2 2709:1 2718:1 2728:1 2760:1 2833:1 2858:1 2911:2 2978:1 2989:2 3007:1 3017:1 3020:1 3062:3 3070:3 3080:2 3119:1 3131:2 3183:1 3190:2 3197:1 3219:1 3243:1 3268:1 3269:1 3285:1 3292:1 3331:1 3369:1 3433:1 3502:1 3544:2 3627:2 3653:1 3654:3 3676:1 3724:1 3729:1 3751:2 3762:1 3774:1 3858:1 3894:1 3914:1 3927:1 3955:1 3984:2 3986:1 3991:1 4057:1 4062:3 4080:1 4118:1 4122:1 4127:1 4137:1 4141:1 4189:1 4191:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4334:1 4338:1 4358:2 4374:2 4437:1 4471:1 4522:1 4564:1 4575:2 4578:1 4589:1 4601:3 4655:1 4656:1 4669:1 4708:1 4744:1 4769:1 4794:1 4799:1 4801:3 4810:1 4827:1 4842:1 4867:1 4882:3 4953:1 4978:1 4987:1 4992:3 4997:1 4999:3 5021:1 5031:1 5058:1 5086:1 5098:1 5101:1 5105:1 5115:1 5117:1 5130:1 5138:1 5145:1 5149:1 5155:1 5156:1 5201:1 5220:1 5280:1 5313:2 5318:1 5321:1 5344:1 5354:2 5375:1 5377:1 5416:1 5420:1 5440:1 5450:1 5495:1 5497:1 5513:1 5529:1 5601:1 5618:1 5619:1 5625:1 5682:1 5723:1 5731:1 5740:1 5741:1 5772:2 5798:1 5814:1 5856:1 5885:1 5900:1 5927:2 5929:1 5935:1 5951:1 5959:1 5970:1 5989:1 5999:1 6005:1 6011:1 6018:1 6022:1 6026:1 6027:7 6036:1 6055:2 6065:1 6134:2 6162:2 6168:1 6169:3 6184:1 6188:1 6190:1 6202:1 6221:1 6245:1 6264:2 6288:2 6293:1 6301:1 6306:1 6318:1 6367:1 6382:1 6383:1 6391:1 6393:1 6424:2 6450:1 6482:1 6497:1 6541:2 6555:1 6580:2 6584:2 6589:1 6590:1 6600:2 6601:1 6636:1 6655:1 6682:1 6790:1 6809:1 6821:1 6826:2 6868:3 6881:1 6913:1 6923:1 6964:1 6970:1 6998:3 7022:1 7073:1 7084:1 7103:1 7104:1 7108:2 7270:3 7290:1 7327:1 7331:1 7341:1 7397:1 7401:1 7415:1 7444:1 7446:1 7463:1 7504:3 7509:1 7602:1 7607:1 7613:1 7621:1 7650:1 7664:1 7696:1 7721:1 7730:1 7763:3 7791:1 7792:2 7794:1 7801:1 7802:1 7810:1 7811:1 7814:1 7828:1 7857:3 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:1 8013:1 8014:2 8058:7 8082:3 8083:2 8091:1 8134:1 8157:1 8199:1 8233:1 8266:1 8292:1 8320:1 8329:1 8354:1 8374:1 8468:2 8480:1 8482:2 8496:1 8519:1 8539:1 8571:1 8585:1 8590:1 8591:1 8629:2 8658:1 8684:1 8702:1 8704:1 8718:1 8749:1 8754:1 8756:1 8765:1 8771:1 8790:1 8799:1 8804:1 8806:1 8830:1 8835:1 8872:1 8877:1 8900:2 8908:1 8955:1 8964:3 8972:1 8980:1 9008:1 9092:1 9158:2 9164:2 9181:1 9268:1 9276:1 9288:1 9311:1 9395:3 9396:1 9450:1 9452:1 9457:1 9467:1 9527:1 9571:1 9628:2 9667:1 9687:1 9754:1 9780:2 9790:1 9830:1 9865:1 9883:2 9914:1 9928:1 9942:1 9954:1 9956:1 9979:1 9981:1 10005:1 10042:1 10061:3 10062:1 10064:2 10074:1 10089:1 10110:1 10117:1 10126:1 10137:1 10156:1 10177:1 10182:1 10188:1 10204:4 10221:1 10223:1 10319:1 10422:1 10425:1 10430:1 10482:1 10492:1 10498:3 10505:1 10506:1 10544:1 10547:1 10550:1 10554:1 10557:1 10572:1 10580:1 10597:3 10647:1 10650:1 10681:1 10696:1 10757:1 10761:2 10775:2 10801:1 10806:1 10857:1 10863:1 10876:1 10897:1 10899:1 10916:1 10920:1 10964:3 10967:1 10969:1 10973:2 10979:1 10982:1 10996:1 11011:1 11027:1 11050:1 11089:1 11131:1 11190:2 11233:1 11258:1 11313:1 11326:1 11379:2 11472:1 11485:2 11495:1 11499:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:4 11567:2 11576:1 11583:1 11632:1 11642:1 11721:3 11732:1 11747:1 11755:1 11770:1 11805:1 11854:1 11856:1 11884:1 11888:1 11899:1 11913:1 11926:1 11927:1 11932:1 11943:1 11947:1 11971:1 11996:1 12066:1 12080:1 12157:1 12193:1 12215:1 12221:1 12225:1 12231:1 12277:1 12283:2 12290:1 12298:1 12342:1 12395:1 12428:1 12436:1 12449:1 12450:1 12479:1 12486:2 12490:1 12491:2 12501:2 12503:1 12538:1 12591:1 12594:1 12596:1 12614:1 12620:1 12626:1 12629:1 12631:2 12678:1 12683:1 12700:1 12705:1 12715:1 12823:1 12831:2 12841:1 12850:1 12873:1 12893:1 12896:1 12897:1 12901:1 12927:1 12967:1 13009:1 13013:1 13022:1 13033:1 13095:2 13116:1 13125:1 13150:2 13162:1 13212:1 13233:3 13254:1 13256:1 13318:2 13358:1 13366:2 13383:1 13413:3 13452:1 13562:1 13665:1 13686:1 13723:2 13729:2 13763:2 13806:1 13853:1 13891:1 13949:1 14067:1 14078:1 14106:2 14127:2 14177:1 14178:5 14211:1 14224:1 14246:1 14250:1 14259:1 14267:1 14285:1 14293:1 14299:1 14306:1 14349:1 14383:1 14405:2 14523:1 14529:1 14533:1 14577:1 14598:1 14621:1 14651:1 14674:1 14695:1 14715:1 14727:2 14739:1 14750:1 14776:1 14779:1 14781:1 14792:1 14796:1 14810:1 14831:1 14903:1 14909:1 14911:3 14931:1 14934:1 14944:1 14945:1 14993:1 14998:1 15007:1 15015:1 15022:1 15037:1 15038:1 15058:1 15068:1 15104:1 15164:1 15253:1 15258:3 15305:1 15311:1 15319:1 15322:1 15348:7 15366:1 15367:1 15371:10 15388:1 15401:1 15425:1 15432:3 15540:1 15567:1 15576:2 15581:1 15588:1 15620:3 15676:2 15709:1 15719:2 15746:1 15780:1 15785:1 15793:1 15798:1 15828:1 15863:1 15866:3 15896:1 15900:1 15901:1 15904:1 15938:1 16014:1 16099:1 16102:2 16177:1 16195:1 16204:2 16218:1 16224:1 16225:1 16247:1 16249:2 16250:1 16268:1 16273:1 16284:1 16302:1 16318:1 16417:1 16449:1 16458:1 16460:1 16488:1 16500:4 16553:1 16567:1 16569:1 16572:2 16623:2 16682:1 16718:3 16725:1 16729:1 16793:1 16795:1 16823:1 16836:1 16840:1 16895:1 16983:2 17018:1 17022:1 17027:1 17083:1 17086:1 17114:1 17116:1 17166:1 17179:2 17185:1 17191:1 17203:1 17208:1 17225:1 17253:1 17276:1 17278:2 17346:2 17360:1 17365:1 17516:1 17547:1 17548:1 17561:2 17583:1 17634:1 17676:1 17715:1 17743:2 17763:1 17765:1 17789:1 17797:1 17798:1 17820:1 17874:1 17906:1 17918:1 17940:1 17946:3 17952:1 18043:1 18052:1 18065:1 18082:1 18133:1 18137:1 18159:1 18171:1 18176:1 18181:1 18182:2 18194:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:2 18301:1 18332:1 18338:1 18368:1 18382:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:4 18475:1 18492:1 18523:1 18535:1 18550:1 18563:1 18756:1 18811:1 18817:1 18830:1 18858:1 18863:1 18864:2 18874:1 18895:1 18933:1 18965:1 18976:1 18996:1 19001:1 19025:1 19039:1 19067:1 19085:1 19112:1 19146:1 19242:2 19260:1 19262:1183 19265:1 19316:1 19320:1 19392:1 19403:1 19479:2 19594:2 19620:1 19627:1 19663:1 19670:1 19697:1 19707:1 19776:3 19812:1 19829:1 19861:1 19869:1 19874:1 19908:1 19914:1 19924:1 20004:1 20006:1 20131:2 20146:1 20153:1 20205:1 20208:2 20218:1 20219:2 20223:1 20224:1 20244:1 20252:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20397:1 20405:1 20437:1 20507:1 20518:1 20550:2 20601:1 20606:1 20659:2 20664:1 20671:1 20672:1 20681:1 20684:1 20696:1 20701:1 20704:2 20706:1 20709:1 20737:2 20742:1 20755:1 20832:1 20837:2 20868:1 20920:1 20962:1 20989:1 21004:1 21008:1 21020:1 21052:1 21055:1 21075:1 21084:1 21101:2 21115:1 21124:2 21160:1 21204:1 21205:1 21242:2 21251:1 21294:1 21321:2 21328:1 21338:1 21346:1 21354:1 21368:1 21397:1 21404:1 21408:2 21410:1 21426:1 21427:1 21482:1 21493:1 21572:1 21581:1 21598:2 21624:1 21669:1 21712:1 21741:1 21747:1 21767:1 21803:2 21809:1 21845:2 21848:1 21849:4 21851:1 21910:1 21960:1 21983:1 21986:1 21990:1 22022:1 22050:1 22053:2 22055:1 22084:1 22099:1 22104:1 22109:1 22179:1 22190:2 22214:1 22266:1 22279:1 22305:1 22312:1 22345:2 22349:1 22353:3 22363:1 22384:1 22395:2 22415:1 22468:1 22486:2 22508:1 22512:1 22530:2 22560:2 22577:1 22600:2 22606:1 22609:1 22662:1 22667:2 22697:1 22705:1 22723:1 22732:1 22770:1 22800:1 22807:1 22808:1 22811:1 22814:1 22853:2 22867:1 22914:3 22919:1 22927:1 22928:2 23006:1 23007:2 23027:4 23049:1 23071:1 23113:1 23125:1 23133:1 23161:2 23165:1 23171:1 23172:1 23236:1 23247:1 23255:1 23264:1 23268:2 23297:1 23311:3 23365:1 23372:1 23376:1 23399:1 23409:1 23430:1 23433:1 23436:1 23448:1 23458:2 23467:1 23477:1 23515:1 23522:3 23533:1 23556:1 23613:1 23627:1 23722:1 23747:1 23774:2 23814:2 23834:3 23868:1 23912:1 23926:1 23927:2 23935:1 23940:1 23941:1 23977:1 23988:1 24021:1 24047:1 24051:2 24058:1 24080:1 24089:1 24192:2 24197:1 24212:2 24223:3 24264:1 24292:1 24305:2 24360:1 24370:1 24375:1 24379:1 24388:1 24392:2 24404:1 24405:1 24421:1 24441:3 24453:2 24474:1 24507:1 24553:1 24576:2 24623:2 24626:1 24636:3 24652:1 24655:1 24661:1 24662:2 24719:1 24740:1 24778:1 24803:1 24810:1 24898:1 24904:2 24915:1 24918:2 24926:2 24937:1 24965:1 25026:1 25054:1 25081:2 25114:1 25157:1 25159:1 25176:2 25185:1 25187:1 25206:1 25211:1 25231:1 25237:1 25238:1 25249:1 25263:1 25447:2 25462:1 25482:1 25483:1 25503:1 25512:1 25539:1 25568:1 25627:1 25631:1 25680:1 25681:1 25705:2 25729:1 25757:1 25777:1 25828:1 25835:1 25904:1 25922:2 25943:3 25945:1 25964:1 25982:3 26013:2 26024:1 26052:1 26072:1 26092:2 26093:1 26129:1 26138:1 26139:1 26160:1 26172:1 26214:1 26268:1 26281:2 26284:1 26324:1 26328:1 26345:3 26371:1 26374:1 26399:1 26422:1 26478:1 26482:1 26594:2 26597:1 26617:1 26618:1 26640:1 26667:1 26689:1 26696:1 26702:1 26714:1 26797:1 26845:1 26857:1 26858:2 26871:1 26893:1 26911:1 26915:1 26918:3 26955:1 26965:2 26969:1 26981:1 27007:1 27015:2 27024:1 27033:2 27115:2 27116:1 27164:1 27201:1 27225:1 27233:1 27261:3 27267:1 27302:1 27319:1 27369:1 27400:1 27410:1 27425:1 27430:1 27448:1 27471:1 27480:1 27496:1 27536:1 27554:2 27564:2 27613:1 27618:1 27731:1 27739:1 27776:1 27818:2 27825:1 27877:2 27880:1 27881:1 27897:1 27914:1 27944:1 27952:1 27968:1 27985:2 28001:1 28032:1 28097:1 28101:1 28130:2 28138:1 28139:1 28176:2 28186:1 28200:1 28202:1 28219:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28315:1 28330:1 28358:1 28393:1 28435:2 28462:2 28468:2 28495:1 28504:1 28532:1 28536:1 28547:1 28562:1 28596:2 28617:5 28662:4 28671:1 28684:1 28719:1 28806:3 28817:1 28827:1 28835:1 28864:1 28872:2 28889:1 28903:1 28907:1 28938:1 28977:1 29023:3 29046:1 29074:1 29090:1 29102:3 29139:2 29153:1 29165:1 29166:1 29169:1 29177:1 29189:1 29205:1 29251:1 29265:1 29286:1 29324:1 29343:1 29366:1 29401:1 29453:1 29519:1 29628:2 29695:4 29703:1 29706:1 29711:1 29738:1 29741:1 29743:1 29754:1 29760:1 29773:1 29795:1 29807:2 29818:1 29832:1 29846:1 29848:1 29851:1 29854:2 29889:1 29903:2 29905:1 29915:1 29955:1 29958:2 29959:1 29967:1 29970:1 29980:1
17 14:2 24:1 41:1 57:1 110:1 157:2 167:1 214:1 241:2 282:1 318:1 324:1 380:2 381:1 399:1 464:2 542:1 555:1 599:1 648:1 660:1 671:1 677:1 765:1 771:1 796:1 811:3 867:2 869:1 904:1 912:3 913:1 921:4 925:1 926:1 931:1 935:1 942:2 945:2 960:1 966:2 967:1 972:1 1039:1 1040:2 1069:1 1071:1 1084:1 1098:1 1115:1 1126:1 1132:1 1140:1 1146:1 1155:1 1176:1 1197:1 1260:1 1301:1 1318:1 1335:1 1365:1 1385:1 1486:1 1513:1 1536:2 1543:1 1567:1 1571:1 1588:1 1611:1 1614:1 1663:1 1682:1 1691:1 1716:1 1727:1 1741:1 1746:1 1788:1 1797:1 1803:1 1812:3 1824:1 1826:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1874:1 1927:2 1935:1 1981:1 2000:1 2011:1 2024:1 2036:1 2041:1 2128:1 2170:1 2293:1 2339:1 2366:1 2428:1 2435:2 2436:1 2448:2 2452:1 2457:1 2459:1 2473:1 2483:1 2497:2 2552:1 2589:1 2591:1 2614:1 2631:3 2636:1 2655:1 2680:2 2685:1 2686:1 2692:1 2701:1 2706:2 2709:1 2718:1 2728:1 2760:1 2833:1 2858:1 2911:2 2978:1 2989:2 3007:1 3017:1 3020:1 3062:3 3070:3 3080:2 3119:1 3131:2 3183:1 3190:2 3197:1 3219:1 3243:1 3268:1 3269:1 3285:1 3292:1 3331:1 3369:1 3433:1 3502:1 3544:2 3627:2 3653:1 3654:3 3676:1 3724:1 3729:1 3751:3 3762:1 3774:1 3781:1 3858:1 3863:1 3894:1 3914:1 3927:1 3955:1 3984:2 3986:1 3991:1 4057:1 4062:3 4080:1 4118:1 4122:1 4127:1 4137:1 4141:1 4189:1 4191:1 4238:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4334:1 4338:1 4358:2 4374:2 4437:1 4440:1 4471:1 4522:1 4564:1 4575:2 4578:1 4579:1 4589:1 4601:3 4655:1 4656:1 4669:1 4708:1 4744:1 4769:1 4794:1 4799:1 4801:3 4810:1 4827:1 4842:1 4867:1 4882:3 4952:1 4953:1 4959:1 4978:1 4987:1 4992:3 4997:1 4999:3 5021:1 5031:1 5058:1 5086:1 5098:1 5101:1 5105:1 5115:1 5117:1 5130:1 5138:1 5145:1 5149:1 5155:1 5156:1 5201:1 5220:1 5280:1 5313:2 5318:1 5321:1 5344:1 5354:2 5375:1 5377:1 5416:1 5420:1 5440:1 5450:1 5495:1 5497:1 5513:1 5529:1 5601:1 5618:1 5619:1 5625:1 5682:1 5723:1 5731:1 5740:1 5741:1 5772:2 5798:1 5814:1 5856:1 5885:1 5900:1 5927:2 5929:1 5935:1 5951:1 5959:1 5970:1 5989:1 5999:1 6005:1 6011:1 6018:1 6022:1 6026:1 6027:7 6036:1 6055:2 6065:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:1 6188:1 6190:1 6202:2 6221:1 6245:1 6264:2 6288:2 6293:1 6301:1 6306:1 6318:1 6367:1 6382:1 6383:1 6391:1 6393:1 6424:2 6450:1 6482:1 6497:1 6541:2 6555:1 6580:2 6584:2 6589:1 6590:1 6600:2 6601:1 6636:1 6655:1 6682:1 6790:1 6809:1 6821:1 6826:2 6868:3 6881:1 6913:1 6923:1 6964:1 6970:1 6998:3 7022:1 7049:1 7073:1 7084:1 7103:1 7104:1 7108:2 7270:3 7290:1 7327:1 7331:1 7341:1 7397:1 7401:1 7415:1 7444:1 7446:1 7463:1 7504:3 7509:1 7602:1 7607:1 7613:1 7621:1 7650:1 7664:1 7696:1 7721:1 7730:1 7763:3 7791:1 7792:2 7794:1 7801:1 7802:1 7810:1 7811:1 7814:1 7828:1 7857:3 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:1 8013:1 8014:2 8058:7 8082:3 8083:2 8091:1 8134:1 8157:1 8199:1 8233:1 8266:1 8292:1 8320:1 8329:1 8354:1 8374:1 8468:2 8480:1 8482:2 8496:1 8501:1 8519:1 8539:1 8571:1 8585:1 8590:1 8591:2 8629:2 8658:1 8684:1 8702:1 8704:1 8718:1 8749:1 8754:1 8756:1 8765:1 8771:1 8790:1 8799:1 8804:1 8806:1 8830:1 8835:1 8872:1 8877:1 8900:2 8908:1 8955:1 8964:3 8972:1 8980:1 9008:1 9092:1 9158:2 9164:2 9181:1 9268:1 9276:1 9288:1 9311:1 9395:3 9396:1 9450:1 9452:1 9457:1 9467:1 9527:1 9571:1 9628:2 9667:1 9687:1 9754:1 9780:2 9790:1 9830:1 9865:1 9883:2 9914:1 9928:1 9942:1 9954:1 9956:1 9979:1 9981:1 10005:1 10042:1 10061:3 10062:1 10064:2 10074:1 10089:1 10110:1 10117:1 10126:1 10137:1 10156:1 10177:1 10182:1 10188:1 10204:4 10221:1 10223:1 10319:1 10399:1 10422:1 10425:1 10430:1 10482:1 10492:1 10498:3 10505:1 10506:1 10544:1 10547:1 10550:1 10554:1 10557:1 10572:1 10580:1 10597:3 10647:1 10650:1 10681:1 10696:1 10757:1 10761:2 10775:2 10801:1 10806:1 10857:1 10863:1 10876:1 10897:1 10899:1 10916:1 10920:1 10964:3 10967:1 10969:1 10973:2 10979:1 10982:1 10996:1 11011:1 11027:1 11035:1 11050:1 11089:1 11131:1 11173:1 11190:2 11233:1 11258:1 11313:1 11326:1 11379:2 11442:1 11472:1 11485:2 11495:1 11499:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:4 11567:2 11576:1 11583:1 11632:1 11642:1 11660:1 11721:3 11732:1 11747:1 11755:1 11770:1 11805:1 11854:1 11856:1 11884:1 11888:1 11899:1 11913:1 11926:1 11927:1 11932:1 11943:1 11947:1 11959:1 11971:1 11996:1 12066:1 12080:1 12157:1 12193:1 12215:1 12221:1 12225:1 12231:1 12277:1 12283:2 12290:1 12298:1 12342:1 12395:1 12428:1 12436:1 12449:1 12450:1 12479:1 12486:2 12490:1 12491:2 12501:2 12503:1 12538:1 12591:1 12594:1 12596:1 12614:1 12620:1 12626:1 12629:1 12631:2 12678:1 12683:1 12700:1 12705:1 12715:1 12729:1 12730:1 12823:1 12831:2 12841:1 12850:1 12873:1 12893:1 12896:1 12897:1 12901:1 12927:1 12967:1 13009:1 13013:1 13022:1 13033:1 13095:2 13116:1 13125:1 13133:1 13150:2 13162:1 13212:1 13233:3 13254:1 13256:1 13260:1 13318:2 13358:1 13366:2 13383:1 13413:3 13452:1 13562:1 13665:1 13686:1 13723:2 13729:2 13763:2 13806:1 13853:1 13891:1 13949:1 14067:1 14078:1 14106:2 14127:2 14131:1 14177:1 14178:5 14211:1 14224:1 14246:1 14250:1 14259:1 14267:1 14285:1 14293:1 14299:1 14306:1 14349:1 14383:1 14405:2 14523:1 14529:1 14533:1 14577:1 14598:1 14621:1 14651:1 14674:1 14695:1 14715:1 14727:2 14739:1 14750:1 14776:1 14779:1 14781:1 14792:1 14796:1 14810:1 14831:1 14903:1 14909:1 14911:3 14931:1 14934:1 14944:1 14945:1 14993:1 14998:1 15007:1 15015:1 15022:1 15037:1 15038:1 15058:1 15068:1 15104:1 15125:1 15164:1 15253:1 15258:3 15305:1 15311:1 15319:1 15322:1 15348:7 15366:1 15367:1 15371:10 15388:1 15401:1 15425:1 15432:3 15476:1 15540:1 15567:1 15576:2 15581:1 15588:1 15620:3 15676:2 15709:1 15719:2 15746:1 15780:1 15785:1 15793:1 15798:1 15828:1 15863:1 15866:3 15896:1 15900:1 15901:1 15904:1 15938:1 16014:1 16056:1 16099:1 16102:2 16177:1 16195:1 16204:2 16218:1 16224:1 16225:1 16247:1 16249:2 16250:1 16268:1 16273:1 16284:1 16302:1 16318:1 16347:1 16417:1 16449:1 16458:1 16460:1 16481:1 16488:1 16500:4 16553:1 16567:1 16569:1 16572:2 16623:2 16682:1 16718:3 16725:1 16729:1 16793:1 16795:1 16823:1 16836:1 16840:1 16895:1 16983:2 17018:1 17022:1 17027:1 17083:1 17086:1 17114:1 17116:1 17166:1 17179:2 17185:1 17191:1 17203:1 17208:1 17225:1 17253:1 17276:1 17278:2 17346:2 17360:1 17365:1 17467:1 17516:1 17547:1 17548:1 17561:2 17583:1 17585:1 17634:1 17676:1 17715:1 17743:2 17763:1 17765:1 17789:1 17797:1 17798:1 17820:1 17874:1 17906:1 17918:1 17940:1 17946:3 17952:1 18043:1 18052:1 18065:1 18082:1 18133:1 18137:1 18159:1 18171:1 18176:1 18181:1 18182:2 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:2 18301:1 18332:1 18338:1 18368:1 18382:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:4 18475:1 18492:1 18523:1 18535:1 18550:1 18563:1 18756:1 18811:1 18817:1 18830:1 18858:1 18863:1 18864:2 18874:1 18895:1 18903:1 18933:1 18965:1 18976:1 18996:1 19001:1 19025:1 19039:1 19067:1 19085:1 19112:1 19146:1 19242:2 19260:1 19262:1241 19265:1 19316:1 19320:1 19392:1 19403:1 19479:2 19594:2 19620:1 19627:1 19663:1 19670:2 19697:1 19707:1 19776:3 19781:1 19812:1 19829:1 19861:1 19869:1 19874:1 19908:1 19914:1 19924:1 20004:1 20006:1 20131:2 20146:1 20150:1 20153:1 20205:1 20208:2 20218:1 20219:2 20223:1 20224:1 20244:1 20252:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20397:1 20405:1 20437:1 20452:1 20507:1 20518:1 20550:2 20601:1 20606:1 20620:1 20659:2 20664:1 20671:1 20672:1 20681:1 20684:1 20696:1 20701:1 20704:2 20706:1 20709:1 20737:2 20742:1 20755:1 20832:1 20837:2 20868:1 20920:1 20962:1 20989:1 21004:1 21008:1 21020:1 21022:1 21052:1 21055:1 21075:1 21084:1 21101:2 21115:1 21124:2 21160:1 21204:1 21205:1 21242:2 21251:1 21294:1 21321:2 21328:1 21338:1 21346:1 21354:1 21368:1 21397:1 21404:1 21408:2 21410:1 21426:1 21427:1 21482:1 21493:1 21572:1 21581:1 21598:2 21624:1 21669:1 21712:1 21741:1 21747:1 21767:1 21803:2 21809:1 21845:2 21848:1 21849:4 21851:1 21910:1 21960:1 21983:1 21986:1 21990:1 22022:1 22050:1 22053:2 22055:1 22084:1 22099:1 22104:1 22109:1 22179:1 22190:2 22214:1 22266:1 22279:1 22305:1 22312:1 22345:2 22349:1 22353:3 22363:1 22384:1 22395:2 22415:1 22468:1 22486:2 22508:1 22512:1 22530:2 22560:2 22577:1 22600:2 22606:1 22609:1 22662:1 22667:2 22697:1 22705:1 22723:1 22732:1 22770:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22853:2 22867:1 22914:3 22919:1 22927:1 22928:2 23006:1 23007:2 23027:4 23049:1 23071:1 23113:1 23125:1 23133:1 23161:2 23165:1 23171:1 23172:1 23236:1 23247:1 23255:1 23264:1 23268:2 23297:1 23311:3 23358:1 23365:1 23372:1 23376:1 23399:1 23409:1 23430:1 23433:1 23436:1 23448:1 23458:2 23467:1 23477:1 23515:1 23522:3 23533:1 23556:1 23613:1 23627:1 23722:1 23747:1 23774:2 23814:2 23834:3 23868:1 23897:1 23912:1 23926:1 23927:2 23935:1 23940:1 23941:1 23977:1 23988:1 24021:1 24047:1 24051:2 24058:1 24080:1 24089:1 24192:2 24197:1 24212:2 24223:3 24264:1 24292:1 24305:2 24360:1 24370:1 24375:1 24379:1 24388:1 24392:2 24404:1 24405:1 24421:1 24441:3 24453:2 24474:1 24507:1 24553:1 24576:2 24623:2 24626:1 24636:3 24652:1 24655:1 24661:1 24662:2 24719:1 24740:1 24778:1 24783:1 24803:1 24810:1 24898:1 24904:2 24915:1 24918:2 24926:2 24937:1 24965:1 24992:1 25026:1 25054:1 25081:2 25114:1 25157:1 25159:1 25176:2 25185:1 25187:1 25206:1 25211:1 25231:1 25237:1 25238:1 25249:1 25263:1 25447:2 25462:1 25482:1 25483:1 25503:1 25512:1 25539:1 25568:1 25627:1 25631:1 25680:1 25681:1 25705:2 25729:1 25757:1 25777:1 25828:1 25835:1 25871:1 25904:1 25922:2 25943:3 25945:1 25964:1 25982:3 26013:2 26024:1 26052:1 26072:1 26092:2 26093:1 26095:1 26129:1 26138:1 26139:1 26160:1 26172:1 26214:1 26233:1 26268:1 26281:2 26284:1 26324:1 26328:1 26345:3 26371:1 26374:1 26399:1 26422:1 26478:1 26482:1 26594:2 26597:1 26617:1 26618:1 26640:1 26667:1 26689:1 26696:1 26702:1 26714:1 26797:1 26845:1 26857:1 26858:2 26871:1 26893:1 26911:1 26915:1 26918:3 26955:1 26965:2 26969:1 26981:1 27007:2 27015:2 27024:1 27033:2 27115:2 27116:1 27164:1 27201:1 27225:1 27233:1 27261:3 27267:1 27302:1 27319:1 27369:1 27400:1 27410:1 27425:1 27430:1 27448:1 27471:1 27480:1 27496:1 27536:1 27554:2 27564:2 27613:1 27618:1 27731:1 27739:1 27776:1 27818:2 27820:1 27825:1 27877:2 27880:1 27881:1 27897:1 27914:1 27944:1 27952:1 27968:1 27985:2 28001:1 28014:1 28032:1 28097:1 28101:1 28130:2 28138:1 28139:1 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28315:1 28330:1 28358:1 28393:1 28435:2 28462:2 28468:2 28495:1 28504:1 28532:1 28536:1 28547:1 28562:1 28596:2 28617:5 28662:4 28671:1 28684:1 28719:1 28755:1 28806:3 28817:1 28827:1 28835:1 28864:1 28872:2 28889:1 28903:1 28907:1 28938:1 28977:1 29023:3 29046:1 29074:1 29090:1 29102:3 29139:2 29153:1 29165:1 29166:1 29169:1 29177:1 29189:1 29205:1 29251:1 29265:1 29286:1 29324:1 29343:1 29366:1 29401:1 29453:1 29519:1 29628:2 29695:4 29703:1 29706:1 29711:1 29738:1 29741:1 29743:1 29754:1 29760:1 29773:1 29795:1 29807:2 29818:1 29832:1 29846:1 29848:1 29851:1 29854:2 29889:1 29903:2 29905:1 29915:1 29955:1 29958:2 29959:1 29967:1 29970:1 29980:1
17 14:2 24:1 41:1 57:1 100:1 110:1 157:2 167:1 214:1 241:2 282:1 318:1 324:1 330:1 380:2 381:1 399:1 464:2 542:1 555:1 599:1 648:1 660:1 671:1 677:1 765:1 771:1 796:2 811:4 867:2 869:1 904:1 908:1 912:4 913:2 917:1 921:4 925:1 926:1 931:1 935:1 942:2 945:2 960:1 966:2 967:1 972:1 1039:1 1040:2 1069:1 1071:1 1084:1 1098:1 1115:1 1126:1 1132:1 1140:1 1146:1 1155:1 1176:1 1197:1 1260:1 1301:1 1318:1 1335:1 1365:1 1385:1 1486:1 1513:1 1536:2 1543:1 1567:1 1571:1 1588:1 1611:1 1614:1 1634:1 1663:1 1682:2 1691:1 1716:1 1727:1 1741:1 1746:1 1788:2 1797:1 1803:1 1812:3 1824:1 1826:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1865:1 1874:1 1927:2 1935:1 1981:1 2000:1 2011:1 2024:1 2036:1 2041:1 2128:1 2170:1 2293:1 2339:1 2366:1 2406:1 2428:1 2435:2 2436:1 2448:2 2452:1 2457:1 2459:1 2470:1 2473:1 2483:1 2497:2 2552:1 2589:1 2591:1 2614:1 2631:4 2636:1 2655:1 2680:2 2685:1 2686:1 2692:1 2701:1 2706:2 2709:1 2718:1 2728:2 2744:1 2760:1 2819:1 2833:1 2858:1 2911:2 2978:1 2989:2 3007:1 3017:1 3020:1 3062:3 3070:3 3080:2 3119:1 3131:2 3183:1 3190:2 3197:1 3219:1 3243:1 3268:1 3269:1 3285:1 3292:1 3331:1 3369:1 3433:1 3502:1 3544:2 3627:2 3653:1 3654:3 3676:1 3724:1 3729:1 3751:3 3762:1 3774:1 3781:1 3790:1 3820:1 3858:1 3863:1 3869:1 3894:2 3914:1 3927:1 3955:1 3984:2 3986:1 3991:1 4057:1 4062:3 4080:1 4118:1 4122:1 4127:1 4137:1 4141:1 4189:1 4191:1 4238:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4334:1 4338:1 4358:2 4374:2 4437:1 4440:1 4471:1 4522:1 4564:1 4575:2 4578:1 4579:1 4589:1 4601:3 4655:1 4656:1 4669:1 4701:1 4708:1 4718:1 4744:1 4769:1 4794:1 4799:1 4801:4 4810:1 4827:1 4842:1 4867:1 4882:3 4901:1 4952:1 4953:1 4959:1 4978:1 4987:1 4992:3 4997:1 4999:4 5021:1 5031:1 5058:1 5086:1 5098:1 5101:1 5105:1 5115:1 5117:1 5130:1 5138:1 5145:1 5149:1 5155:1 5156:1 5201:1 5202:1 5220:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:1 5354:2 5375:2 5377:1 5416:1 5420:1 5440:1 5450:1 5495:1 5497:1 5511:1 5513:1 5529:1 5601:1 5618:1 5619:1 5625:1 5682:1 5723:1 5731:1 5740:1 5741:1 5772:2 5798:2 5814:1 5856:1 5885:1 5900:1 5927:2 5929:1 5935:1 5951:1 5959:1 5970:1 5989:1 5999:1 6005:1 6011:1 6018:1 6022:1 6026:1 6027:7 6036:2 6055:2 6065:1 6107:1 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:1 6188:1 6190:1 6202:2 6221:1 6245:1 6264:2 6288:2 6293:1 6301:1 6306:1 6318:1 6367:2 6382:2 6383:1 6391:1 6393:1 6424:2 6450:1 6482:1 6497:1 6541:3 6555:1 6580:2 6584:2 6589:1 6590:1 6600:2 6601:1 6632:1 6636:1 6655:1 6682:1 6750:1 6790:1 6809:1 6821:1 6826:2 6868:3 6881:1 6913:1 6923:1 6964:1 6970:1 6998:3 7022:1 7049:1 7073:1 7084:1 7103:1 7104:1 7108:2 7248:1 7270:3 7290:2 7327:1 7331:1 7341:1 7372:1 7397:1 7401:1 7415:1 7444:1 7446:1 7463:1 7504:3 7509:1 7554:1 7602:1 7607:1 7613:1 7621:1 7650:1 7664:1 7696:1 7721:1 7730:1 7763:3 7791:1 7792:2 7794:1 7801:1 7802:1 7810:1 7811:1 7814:2 7828:1 7857:3 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:1 8013:1 8014:2 8058:7 8082:3 8083:2 8091:1 8134:1 8157:1 8199:1 8233:2 8266:1 8292:1 8320:1 8329:1 8354:1 8374:1 8468:3 8480:1 8482:2 8496:1 8501:1 8519:1 8539:1 8571:1 8585:1 8590:1 8591:2 8629:2 8658:1 8684:1 8702:1 8704:1 8718:1 8744:1 8749:1 8754:1 8756:1 8765:1 8771:1 8790:2 8799:1 8804:1 8806:1 8830:1 8835:1 8872:2 8877:1 8900:3 8908:1 8955:1 8964:3 8972:1 8980:1 9008:1 9078:1 9092:1 9158:2 9164:2 9181:1 9268:1 9276:1 9288:1 9311:1 9395:4 9396:1 9423:1 9450:1 9452:1 9457:1 9467:1 9527:1 9571:1 9586:1 9628:2 9667:1 9687:1 9754:1 9780:2 9790:1 9830:1 9865:1 9883:2 9914:1 9928:1 9942:1 9954:1 9956:1 9963:1 9979:1 9981:1 10005:1 10042:1 10061:3 10062:1 10064:2 10074:1 10089:1 10110:1 10117:1 10126:1 10137:1 10156:1 10177:1 10182:1 10188:1 10204:4 10221:1 10223:2 10319:1 10399:1 10422:1 10425:1 10430:1 10482:1 10492:1 10498:3 10502:1 10505:1 10506:1 10544:1 10547:1 10550:1 10554:1 10556:1 10557:1 10572:1 10580:1 10597:3 10647:1 10650:1 10681:1 10696:1 10757:1 10761:2 10775:2 10798:1 10801:1 10806:1 10857:1 10863:1 10876:1 10897:1 10899:1 10916:1 10920:1 10964:3 10967:1 10969:1 10973:2 10979:1 10982:1 10996:1 11011:1 11027:1 11035:1 11050:2 11089:1 11131:1 11173:1 11190:2 11233:1 11258:2 11313:1 11326:1 11379:2 11442:1 11472:1 11485:3 11486:1 11495:1 11499:1 11504:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:4 11567:3 11576:1 11583:1 11632:1 11642:1 11660:1 11721:3 11732:1 11747:1 11755:1 11770:1 11805:1 11811:1 11854:1 11856:1 11884:1 11888:1 11895:1 11899:1 11913:1 11926:1 11927:1 11932:1 11943:1 11947:1 11959:1 11971:1 11996:1 12066:1 12080:1 12127:1 12157:1 12193:1 12215:2 12221:1 12225:1 12231:1 12250:1 12277:1 12283:2 12290:1 12298:2 12342:1 12395:1 12428:1 12436:1 12449:1 12450:1 12476:1 12479:1 12486:2 12490:1 12491:3 12501:2 12503:1 12538:1 12587:1 12591:1 12594:1 12596:1 12614:2 12620:1 12626:1 12629:1 12631:2 12670:1 12678:1 12681:1 12683:1 12700:1 12705:1 12715:1 12729:1 12730:1 12823:1 12831:2 12841:1 12850:1 12873:1 12893:1 12896:1 12897:1 12901:1 12927:1 12967:1 13009:1 13013:1 13022:1 13033:1 13095:2 13116:1 13125:1 13133:1 13150:2 13162:1 13212:1 13233:4 13254:1 13256:1 13260:1 13263:1 13318:2 13355:1 13358:1 13366:2 13383:1 13413:3 13452:1 13562:1 13665:1 13686:1 13723:2 13729:2 13763:2 13806:1 13853:1 13891:1 13949:1 13957:1 14067:2 14078:1 14102:1 14106:2 14127:2 14131:1 14177:1 14178:6 14211:1 14224:1 14246:1 14250:1 14259:1 14267:1 14285:1 14293:1 14299:1 14306:1 14349:1 14383:1 14405:2 14523:1 14529:1 14533:1 14577:1 14598:1 14621:1 14651:1 14674:1 14695:1 14715:1 14727:2 14739:1 14750:1 14776:1 14779:1 14781:1 14792:1 14796:1 14810:1 14831:1 14885:1 14903:1 14909:1 14911:3 14931:1 14934:1 14944:1 14945:1 14975:1 14993:1 14998:1 15007:1 15015:1 15022:1 15037:1 15038:1 15058:1 15068:2 15104:1 15125:1 15164:1 15253:1 15258:3 15305:1 15311:1 15319:1 15322:1 15348:7 15366:1 15367:1 15371:11 15388:2 15401:1 15425:1 15432:3 15476:1 15540:1 15551:1 15567:1 15576:2 15581:1 15588:1 15620:3 15676:2 15700:1 15709:1 15719:2 15746:1 15780:1 15785:1 15793:1 15798:1 15828:1 15863:1 15866:4 15896:1 15900:1 15901:1 15904:1 15938:1 15958:1 16014:1 16056:1 16099:1 16102:2 16177:1 16195:1 16204:2 16218:1 16224:1 16225:1 16247:1 16249:2 16250:1 16268:1 16273:1 16284:1 16302:1 16318:1 16347:1 16417:1 16449:1 16458:1 16460:1 16481:1 16485:1 16488:1 16500:4 16553:1 16567:1 16569:1 16572:2 16623:2 16682:1 16718:3 16725:1 16729:2 16793:2 16795:1 16823:1 16836:1 16840:1 16895:1 16983:2 17018:1 17022:1 17027:1 17078:1 17083:1 17086:1 17114:1 17116:1 17166:1 17179:2 17185:1 17191:2 17203:2 17208:1 17225:1 17253:1 17276:1 17278:2 17334:1 17346:2 17360:1 17365:1 17388:1 17467:1 17516:1 17547:1 17548:1 17561:2 17583:1 17585:1 17634:1 17676:1 17715:1 17743:2 17756:1 17763:1 17765:1 17789:1 17797:1 17798:1 17820:1 17874:1 17906:1 17918:1 17940:1 17946:3 17952:1 18043:1 18052:1 18065:1 18082:1 18133:1 18137:1 18159:1 18171:1 18176:1 18181:1 18182:2 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:2 18301:1 18332:1 18338:1 18368:1 18382:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:4 18475:1 18492:1 18523:1 18535:1 18550:1 18563:1 18756:2 18811:1 18817:1 18830:1 18858:1 18863:1 18864:2 18874:1 18895:1 18903:1 18933:1 18965:1 18976:1 18996:1 19001:1 19025:1 19039:1 19067:1 19085:1 19112:1 19146:1 19242:2 19260:1 19262:1318 19265:1 19316:1 19320:1 19392:1 19403:1 19479:2 19594:2 19620:1 19627:1 19663:1 19670:2 19697:1 19707:1 19758:1 19776:3 19781:1 19812:1 19829:1 19861:1 19869:1 19874:1 19908:2 19914:1 19924:1 20004:1 20006:1 20131:2 20146:1 20150:1 20153:1 20205:1 20208:2 20218:1 20219:2 20223:1 20224:1 20244:1 20252:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20397:1 20405:1 20437:1 20452:1 20507:1 20518:1 20550:2 20601:1 20606:1 20620:1 20659:2 20664:1 20671:1 20672:1 20681:1 20684:1 20696:1 20701:2 20704:2 20706:1 20709:1 20721:1 20737:2 20742:1 20755:1 20832:1 20837:2 20868:1 20920:1 20962:1 20989:1 21004:1 21008:1 21020:1 21022:1 21052:1 21055:1 21075:1 21084:1 21101:2 21115:1 21124:2 21160:1 21204:1 21205:1 21234:1 21242:2 21251:1 21269:1 21294:1 21321:2 21328:1 21338:1 21346:1 21354:1 21368:1 21397:1 21404:1 21408:2 21410:1 21426:1 21427:1 21482:1 21493:1 21536:1 21572:1 21581:1 21598:2 21624:1 21669:1 21712:1 21741:1 21747:1 21767:1 21803:2 21809:1 21845:2 21848:1 21849:5 21851:1 21901:1 21910:1 21960:1 21983:1 21986:1 21990:1 22022:1 22050:1 22053:2 22055:1 22084:1 22099:1 22104:1 22109:1 22179:1 22190:2 22214:1 22266:1 22279:1 22305:1 22312:1 22345:2 22349:1 22353:4 22363:1 22384:1 22395:2 22415:1 22468:1 22477:1 22486:2 22508:1 22512:1 22530:2 22548:1 22560:2 22577:1 22600:2 22606:1 22609:1 22662:1 22667:3 22697:1 22705:1 22723:1 22732:1 22770:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22853:2 22867:1 22914:3 22919:1 22924:1 22927:1 22928:2 23006:1 23007:2 23027:4 23049:1 23071:1 23113:1 23125:1 23133:1 23161:3 23165:1 23171:1 23172:1 23236:1 23247:1 23255:1 23264:1 23268:2 23297:1 23311:3 23358:1 23365:1 23372:1 23376:1 23399:1 23409:1 23430:1 23433:1 23436:1 23448:1 23458:2 23467:1 23477:1 23515:1 23522:3 23533:1 23552:1 23556:1 23561:1 23613:1 23627:1 23722:1 23747:1 23774:2 23814:2 23834:3 23868:1 23897:1 23912:1 23926:1 23927:2 23928:1 23935:1 23940:2 23941:2 23977:1 23988:1 24021:1 24047:1 24051:2 24058:1 24078:1 24080:1 24089:1 24192:2 24197:1 24199:1 24212:2 24223:4 24264:1 24292:1 24305:2 24360:1 24370:1 24375:1 24379:1 24388:1 24392:2 24404:1 24405:1 24421:1 24441:3 24453:2 24474:1 24507:1 24553:1 24576:2 24623:2 24626:1 24636:4 24652:1 24655:1 24661:1 24662:2 24719:1 24740:1 24778:1 24783:1 24803:1 24810:1 24898:1 24904:2 24915:1 24918:2 24926:2 24937:1 24965:1 24992:1 25026:1 25048:1 25051:1 25054:1 25081:2 25114:1 25157:1 25159:1 25176:2 25185:1 25187:1 25206:1 25211:1 25231:2 25237:1 25238:1 25249:1 25263:1 25447:2 25451:1 25462:1 25482:1 25483:1 25503:1 25512:1 25539:1 25568:1 25627:1 25631:1 25644:1 25680:1 25681:1 25705:2 25729:1 25757:1 25777:1 25828:1 25835:1 25871:1 25904:1 25922:2 25933:1 25943:3 25945:1 25957:1 25964:1 25974:1 25982:3 26013:2 26024:1 26052:1 26072:1 26092:2 26093:2 26095:1 26129:1 26138:1 26139:1 26160:1 26172:1 26214:1 26233:1 26268:1 26281:2 26284:1 26324:1 26328:1 26345:3 26371:1 26374:1 26399:1 26422:1 26478:1 26482:1 26594:2 26597:1 26617:1 26618:1 26640:1 26667:1 26670:2 26689:1 26696:1 26702:1 26714:1 26726:1 26797:1 26845:1 26857:1 26858:2 26871:1 26893:2 26911:1 26915:1 26918:3 26955:2 26965:2 26969:1 26981:1 27007:2 27015:2 27024:1 27033:2 27115:3 27116:1 27164:1 27201:1 27225:1 27233:1 27261:3 27267:1 27302:1 27319:1 27369:1 27400:1 27410:1 27425:1 27430:2 27448:1 27471:1 27480:1 27496:1 27536:1 27554:2 27555:1 27564:2 27613:1 27618:1 27731:1 27739:1 27776:1 27808:1 27818:2 27820:1 27825:1 27877:2 27880:1 27881:1 27897:1 27914:1 27944:1 27952:1 27968:1 27985:2 28001:1 28002:1 28014:1 28032:1 28097:2 28101:1 28130:2 28138:1 28139:1 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28302:1 28315:1 28330:1 28358:1 28393:1 28435:2 28462:2 28468:2 28495:1 28504:1 28532:1 28536:1 28547:1 28562:1 28596:2 28617:5 28662:4 28671:1 28684:1 28719:1 28755:1 28806:3 28817:1 28827:1 28835:1 28864:1 28872:2 28889:1 28903:1 28907:1 28938:1 28977:1 29023:3 29046:1 29074:1 29090:1 29102:3 29139:2 29153:1 29165:2 29166:1 29169:2 29177:1 29189:1 29205:1 29251:1 29265:1 29286:1 29324:2 29343:1 29366:1 29401:1 29453:1 29519:1 29628:2 29695:4 29703:1 29706:1 29711:1 29738:1 29741:1 29743:1 29754:1 29760:1 29773:1 29795:1 29807:2 29818:1 29832:1 29846:1 29848:1 29851:1 29854:2 29889:1 29903:2 29905:1 29915:1 29955:1 29958:3 29959:1 29967:1 29970:1 29980:1
17 14:2 24:1 25:1 41:1 57:1 100:1 110:1 157:2 167:1 174:1 180:1 214:1 241:2 282:1 318:1 324:1 330:1 380:2 381:1 399:1 464:2 542:1 555:1 599:1 648:1 660:2 671:1 677:1 765:1 771:1 796:2 811:4 867:2 869:1 904:1 908:1 912:4 913:2 917:1 921:4 925:1 926:1 931:1 935:1 942:2 945:2 960:1 966:2 967:1 972:1 1036:1 1039:1 1040:2 1069:1 1071:1 1084:1 1098:1 1115:1 1126:1 1132:1 1140:1 1146:1 1155:1 1176:1 1197:1 1260:2 1262:1 1301:1 1317:1 1318:1 1332:1 1335:1 1365:1 1385:1 1387:1 1481:1 1486:1 1513:1 1536:2 1543:1 1567:1 1571:1 1588:1 1603:1 1611:1 1614:1 1634:1 1663:1 1682:2 1691:1 1708:1 1716:1 1727:1 1741:1 1746:1 1761:1 1788:2 1797:1 1803:1 1812:3 1824:1 1826:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1865:1 1874:1 1892:1 1921:1 1927:2 1935:1 1963:1 1981:1 2000:1 2011:1 2024:1 2036:1 2041:1 2128:1 2170:1 2293:2 2339:1 2366:1 2406:1 2428:1 2435:2 2436:1 2448:3 2452:1 2457:1 2459:1 2461:1 2470:1 2473:1 2483:1 2497:2 2536:1 2552:1 2589:1 2591:1 2614:1 2631:4 2636:1 2655:1 2680:2 2685:1 2686:1 2692:1 2701:1 2706:2 2709:1 2718:1 2728:2 2744:1 2760:1 2819:1 2833:1 2858:1 2871:1 2911:2 2978:1 2989:2 2990:1 3007:1 3017:1 3020:1 3062:3 3070:3 3080:3 3100:1 3119:1 3131:2 3183:1 3190:2 3197:1 3219:1 3243:1 3268:1 3269:1 3285:1 3292:1 3331:1 3369:1 3433:1 3502:1 3544:2 3627:2 3635:1 3653:1 3654:3 3676:1 3696:1 3724:1 3725:1 3729:1 3751:3 3762:1 3774:1 3781:1 3790:1 3820:1 3833:1 3858:1 3863:1 3869:1 3894:2 3914:1 3927:1 3955:1 3984:2 3986:1 3991:1 4057:1 4062:3 4080:1 4118:1 4122:1 4127:1 4137:1 4141:1 4189:1 4191:1 4238:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4334:1 4338:1 4358:2 4374:2 4437:1 4440:1 4471:1 4522:1 4564:1 4575:2 4578:1 4579:1 4589:1 4601:3 4631:1 4655:1 4656:1 4669:1 4701:1 4708:1 4718:1 4744:1 4769:1 4794:1 4799:1 4801:4 4810:1 4827:1 4842:1 4867:1 4882:3 4901:1 4952:1 4953:1 4959:1 4967:1 4978:1 4987:1 4992:3 4997:1 4999:4 5021:1 5031:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5117:1 5130:1 5132:1 5138:1 5145:2 5149:2 5155:1 5156:1 5201:1 5202:1 5220:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:1 5354:2 5375:2 5377:1 5416:1 5420:1 5440:1 5450:1 5495:1 5497:1 5511:1 5513:1 5529:1 5601:1 5618:1 5619:1 5625:1 5682:1 5723:1 5731:1 5740:1 5741:1 5772:2 5798:2 5814:1 5856:1 5885:1 5893:2 5900:1 5927:2 5929:1 5935:1 5951:1 5959:1 5970:1 5989:1 5999:1 6005:1 6011:1 6018:1 6022:1 6026:1 6027:7 6036:2 6055:2 6065:1 6107:1 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:1 6188:1 6190:1 6202:2 6221:1 6245:1 6264:2 6265:1 6288:2 6293:1 6301:1 6306:1 6318:2 6367:2 6382:2 6383:1 6391:1 6393:1 6424:2 6450:1 6467:1 6482:1 6497:1 6541:3 6555:1 6580:2 6584:2 6589:1 6590:1 6596:1 6600:2 6601:1 6616:1 6632:1 6636:1 6655:1 6682:1 6750:1 6790:1 6809:1 6821:1 6826:2 6868:3 6870:1 6881:1 6912:1 6913:1 6923:1 6964:1 6970:1 6998:3 7022:1 7049:1 7073:1 7084:1 7103:1 7104:1 7108:2 7248:1 7270:3 7290:2 7295:1 7318:1 7327:1 7331:1 7341:1 7372:1 7397:1 7401:1 7415:1 7444:1 7446:1 7463:1 7493:1 7504:3 7509:1 7554:1 7602:1 7607:1 7613:1 7621:1 7650:2 7664:1 7696:1 7721:1 7730:1 7763:3 7781:1 7791:1 7792:2 7794:1 7801:1 7802:1 7810:1 7811:1 7814:2 7828:1 7857:3 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:1 8013:1 8014:2 8042:1 8058:8 8082:3 8083:2 8091:1 8134:1 8157:1 8199:1 8233:2 8266:1 8288:1 8292:1 8320:1 8329:1 8354:1 8374:1 8468:3 8480:1 8482:2 8496:1 8501:1 8519:1 8525:1 8539:1 8571:1 8585:1 8590:1 8591:2 8629:2 8658:1 8684:1 8702:1 8704:1 8718:1 8744:2 8749:1 8754:1 8756:1 8765:1 8771:1 8790:2 8799:1 8804:1 8806:1 8830:1 8835:1 8872:2 8877:1 8900:3 8908:1 8955:1 8964:3 8972:1 8980:1 9008:1 9078:1 9092:1 9158:2 9164:2 9181:1 9268:1 9276:1 9288:1 9311:1 9395:4 9396:1 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9527:1 9571:1 9586:1 9628:2 9667:1 9687:1 9754:1 9780:2 9790:1 9830:1 9865:1 9883:2 9914:1 9928:1 9942:1 9954:1 9956:1 9963:1 9979:1 9981:1 10005:1 10042:1 10061:3 10062:1 10064:2 10074:1 10089:1 10110:1 10117:1 10126:1 10137:1 10156:1 10177:1 10182:1 10188:1 10204:4 10221:1 10223:2 10319:1 10399:1 10422:1 10425:1 10430:1 10482:1 10492:1 10498:3 10502:1 10505:1 10506:1 10519:1 10544:1 10547:1 10550:1 10554:1 10556:1 10557:1 10572:2 10580:1 10597:3 10647:1 10650:1 10681:1 10696:1 10757:1 10761:2 10775:2 10798:1 10801:1 10806:1 10857:1 10863:1 10876:1 10897:1 10899:1 10916:1 10920:1 10964:3 10967:1 10969:1 10973:2 10979:1 10982:1 10996:1 11011:1 11027:2 11035:1 11050:2 11089:1 11114:1 11131:1 11173:1 11190:2 11233:1 11258:2 11313:1 11326:1 11379:2 11442:1 11457:1 11472:1 11485:3 11486:1 11495:1 11499:1 11504:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:4 11567:3 11576:1 11583:1 11585:1 11632:1 11642:1 11660:1 11721:3 11732:1 11738:1 11747:1 11755:1 11770:1 11805:1 11811:1 11854:1 11856:1 11884:1 11888:1 11895:1 11899:1 11913:1 11922:1 11926:1 11927:1 11932:1 11943:1 11947:1 11959:1 11971:1 11996:1 12066:1 12080:1 12127:1 12157:1 12193:1 12215:2 12221:1 12225:1 12231:1 12250:1 12277:1 12283:2 12290:1 12298:2 12342:1 12376:1 12395:1 12428:1 12436:1 12449:1 12450:1 12476:1 12479:1 12486:2 12490:1 12491:3 12501:2 12503:1 12538:1 12587:1 12591:1 12594:1 12596:1 12614:2 12620:1 12626:1 12629:1 12631:2 12670:1 12678:1 12681:1 12683:1 12700:1 12705:2 12715:1 12729:1 12730:1 12806:1 12823:1 12831:2 12841:1 12850:1 12873:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 13009:1 13013:1 13022:1 13033:1 13034:1 13095:2 13116:1 13125:1 13133:1 13150:2 13162:1 13212:1 13233:4 13254:1 13256:1 13260:1 13263:1 13318:3 13355:1 13358:1 13366:2 13383:1 13386:1 13413:3 13452:1 13562:1 13665:1 13686:1 13723:2 13729:2 13748:1 13763:2 13806:1 13808:1 13853:1 13867:1 13891:1 13949:1 13957:1 14067:2 14078:1 14102:1 14106:2 14121:1 14127:2 14131:1 14177:1 14178:6 14211:1 14224:1 14227:1 14246:1 14250:1 14259:1 14267:1 14285:1 14293:1 14299:1 14306:1 14329:1 14349:1 14353:1 14383:1 14405:2 14503:1 14523:1 14529:1 14533:1 14577:1 14598:1 14621:1 14651:1 14668:1 14674:1 14694:1 14695:1 14715:1 14727:2 14739:1 14750:1 14776:1 14779:1 14781:1 14792:1 14796:1 14810:1 14831:1 14885:1 14903:1 14909:1 14911:3 14931:1 14934:1 14944:1 14945:1 14975:1 14993:1 14998:1 15007:1 15015:1 15022:1 15037:1 15038:1 15058:1 15068:2 15104:1 15125:1 15164:1 15253:1 15258:3 15305:1 15311:1 15319:1 15322:1 15348:7 15366:1 15367:1 15371:11 15388:2 15401:1 15425:1 15432:3 15441:1 15476:1 15540:1 15551:1 15561:1 15567:2 15576:2 15581:1 15588:1 15620:3 15674:1 15676:2 15700:1 15709:1 15719:2 15746:1 15780:1 15785:1 15793:1 15798:1 15828:1 15857:1 15863:1 15866:4 15896:1 15900:1 15901:1 15904:1 15921:1 15938:1 15958:1 16014:1 16056:1 16063:1 16099:1 16102:2 16103:1 16177:1 16195:2 16204:2 16218:1 16224:1 16225:1 16247:1 16249:2 16250:1 16268:1 16273:1 16280:1 16284:1 16302:1 16318:1 16347:1 16417:1 16449:1 16458:1 16460:1 16481:1 16485:1 16488:1 16500:4 16553:1 16567:2 16569:1 16572:2 16623:2 16682:1 16718:3 16725:1 16729:2 16793:2 16795:1 16823:1 16836:1 16840:1 16895:1 16983:2 17018:1 17022:1 17027:1 17078:1 17083:1 17086:1 17114:1 17116:1 17166:1 17179:2 17185:1 17191:2 17203:2 17208:1 17225:1 17253:1 17276:1 17278:2 17334:1 17346:2 17360:1 17365:1 17388:1 17411:1 17447:1 17467:1 17474:1 17516:1 17547:1 17548:1 17561:2 17583:1 17585:1 17634:1 17676:1 17715:1 17728:1 17743:2 17756:1 17763:1 17765:1 17789:1 17797:1 17798:1 17820:1 17874:1 17906:1 17918:1 17940:1 17946:3 17952:1 17990:1 18043:1 18052:1 18065:1 18082:1 18133:1 18137:1 18159:1 18171:1 18176:1 18181:1 18182:2 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:2 18301:1 18332:1 18338:1 18368:1 18382:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:4 18475:1 18492:1 18523:1 18535:1 18550:1 18563:1 18681:1 18756:2 18811:1 18817:1 18830:1 18858:1 18863:1 18864:2 18874:1 18895:1 18903:1 18933:1 18965:1 18976:1 18996:1 19001:1 19025:1 19039:1 19067:1 19081:1 19085:1 19112:1 19146:1 19203:1 19221:1 19242:2 19260:1 19262:1401 19265:1 19316:1 19320:1 19392:1 19403:1 19474:1 19479:2 19594:2 19620:1 19627:1 19663:1 19670:2 19697:1 19707:1 19758:1 19776:3 19781:1 19812:1 19829:1 19861:1 19869:1 19874:1 19908:2 19914:1 19924:1 20004:1 20006:1 20125:1 20131:2 20146:1 20150:1 20153:1 20205:1 20208:2 20218:1 20219:2 20223:1 20224:1 20244:1 20252:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20397:1 20405:1 20437:1 20452:1 20507:1 20518:1 20550:2 20601:1 20606:1 20620:1 20659:2 20664:1 20671:1 20672:1 20681:1 20684:1 20696:1 20701:2 20704:2 20706:1 20709:1 20721:1 20737:2 20742:1 20743:1 20755:1 20832:1 20837:2 20868:1 20920:1 20962:1 20977:1 20989:1 20993:1 21004:1 21008:1 21020:1 21022:1 21052:2 21055:1 21075:1 21084:1 21101:2 21115:1 21124:2 21160:1 21204:1 21205:1 21234:1 21236:1 21242:2 21243:1 21251:1 21269:1 21294:1 21321:2 21328:1 21338:1 21346:1 21354:1 21368:1 21397:1 21404:1 21408:2 21410:1 21426:1 21427:1 21482:1 21493:1 21536:1 21568:1 21572:1 21581:1 21598:2 21624:1 21669:1 21712:1 21741:1 21747:1 21767:1 21803:2 21809:1 21825:1 21845:2 21848:1 21849:5 21851:1 21901:1 21910:1 21921:1 21960:1 21983:1 21986:1 21990:1 22022:1 22026:1 22043:1 22050:1 22053:2 22055:1 22084:1 22099:1 22104:1 22109:1 22179:1 22185:1 22190:2 22214:1 22266:1 22279:1 22305:1 22312:1 22345:2 22349:1 22353:4 22363:1 22384:1 22395:2 22415:1 22468:1 22477:1 22486:2 22508:1 22512:1 22530:2 22533:1 22548:1 22560:2 22577:1 22600:2 22606:2 22609:1 22662:1 22667:3 22697:1 22705:1 22723:1 22732:1 22733:1 22770:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22853:2 22867:1 22914:3 22919:1 22924:1 22927:1 22928:2 23006:1 23007:2 23027:4 23049:1 23071:1 23113:1 23125:1 23133:1 23161:3 23165:1 23171:1 23172:1 23236:1 23247:1 23255:1 23264:1 23268:2 23297:1 23311:3 23358:1 23365:1 23372:1 23376:1 23399:1 23409:1 23430:1 23433:1 23436:1 23448:1 23458:2 23467:1 23477:1 23515:1 23522:3 23533:1 23552:1 23556:1 23561:1 23613:1 23627:1 23722:1 23747:1 23774:2 23790:1 23814:2 23831:1 23834:3 23868:1 23897:1 23912:2 23926:1 23927:3 23928:1 23935:1 23940:3 23941:2 23977:1 23988:1 24021:1 24047:1 24051:2 24058:1 24078:1 24080:1 24089:1 24192:2 24197:1 24199:1 24212:2 24223:4 24235:1 24264:1 24292:1 24305:2 24360:1 24370:1 24375:1 24379:1 24388:1 24392:2 24404:1 24405:1 24421:1 24431:1 24441:3 24453:2 24474:1 24494:1 24507:1 24553:1 24576:2 24623:2 24626:1 24636:4 24652:1 24655:1 24661:1 24662:2 24719:1 24740:1 24778:1 24783:1 24803:1 24810:1 24835:1 24898:1 24904:2 24914:1 24915:1 24918:2 24926:2 24937:1 24965:1 24992:1 25026:1 25048:1 25051:1 25054:1 25074:1 25081:2 25099:1 25114:1 25157:1 25159:1 25176:2 25185:1 25187:1 25206:1 25211:1 25231:2 25237:1 25238:1 25249:1 25263:1 25447:2 25451:1 25462:1 25482:1 25483:1 25503:1 25512:1 25532:1 25539:1 25568:1 25627:1 25631:1 25644:1 25680:1 25681:1 25705:2 25729:1 25757:1 25777:1 25828:1 25835:1 25871:1 25904:1 25922:2 25933:1 25943:3 25945:1 25957:1 25964:1 25974:1 25982:3 26013:2 26024:1 26041:1 26052:1 26072:1 26092:2 26093:2 26095:1 26129:1 26130:1 26138:1 26139:1 26160:1 26172:1 26214:1 26233:1 26244:1 26268:1 26281:2 26284:1 26324:1 26328:1 26345:3 26371:1 26374:1 26399:1 26422:1 26478:1 26482:1 26493:1 26570:1 26594:2 26597:1 26617:1 26618:1 26640:1 26644:1 26649:1 26667:1 26670:2 26689:1 26696:1 26702:1 26714:1 26726:1 26797:1 26845:1 26857:1 26858:2 26871:1 26893:2 26911:1 26915:1 26918:3 26924:1 26955:2 26965:2 26969:1 26981:1 27007:2 27015:2 27024:1 27033:2 27089:1 27115:3 27116:1 27164:1 27201:1 27225:1 27233:1 27261:3 27267:1 27302:1 27319:1 27369:1 27400:1 27410:1 27425:1 27430:2 27448:1 27471:1 27480:1 27496:1 27536:1 27551:2 27554:2 27555:1 27564:2 27613:1 27618:1 27704:1 27731:1 27739:1 27776:1 27808:1 27818:2 27820:1 27825:1 27877:2 27880:1 27881:1 27891:1 27897:1 27914:1 27944:1 27952:1 27968:1 27985:2 28001:1 28002:1 28014:1 28032:1 28097:2 28101:1 28130:2 28138:1 28139:1 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28302:1 28315:1 28322:1 28330:1 28358:1 28393:1 28435:2 28462:2 28468:2 28495:1 28504:1 28522:1 28532:1 28536:1 28547:1 28562:1 28596:2 28617:5 28662:4 28671:1 28684:1 28719:1 28755:1 28806:3 28817:1 28827:1 28835:1 28864:1 28872:2 28889:1 28903:1 28907:1 28938:1 28977:1 29023:3 29025:1 29046:1 29074:1 29090:1 29102:3 29139:2 29153:1 29165:2 29166:1 29169:2 29177:1 29189:1 29204:1 29205:1 29251:1 29265:1 29286:1 29297:1 29324:2 29343:1 29366:1 29370:1 29401:1 29453:1 29483:1 29519:1 29628:2 29695:4 29703:1 29706:1 29711:1 29738:2 29741:1 29743:1 29754:1 29760:1 29773:1 29795:1 29807:2 29818:1 29832:1 29846:1 29848:1 29851:1 29854:2 29889:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29980:1
17 14:2 24:1 25:1 41:1 57:1 100:1 110:1 157:2 167:1 174:1 180:1 212:1 214:1 241:2 282:1 318:1 324:1 330:1 380:2 381:1 399:1 464:2 542:1 555:1 591:1 599:1 602:1 648:1 660:2 671:1 677:1 765:1 771:1 796:2 811:4 867:2 869:1 904:1 908:1 912:4 913:2 917:1 921:4 925:1 926:1 931:1 935:1 942:2 945:2 960:1 966:2 967:1 972:1 1036:1 1039:1 1040:2 1069:1 1071:1 1084:1 1098:1 1105:1 1115:1 1126:1 1132:1 1140:1 1146:1 1155:1 1176:1 1197:1 1260:2 1262:1 1301:1 1317:1 1318:1 1332:1 1335:1 1365:1 1385:1 1387:1 1481:1 1486:1 1513:1 1536:2 1543:1 1567:1 1571:1 1588:1 1603:1 1611:1 1614:1 1634:1 1663:1 1682:2 1691:1 1708:1 1716:1 1727:1 1741:1 1746:1 1761:1 1788:2 1797:1 1803:1 1812:3 1824:1 1826:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1865:1 1874:1 1892:1 1921:1 1927:2 1935:1 1963:1 1981:1 2000:1 2011:1 2024:1 2036:1 2041:1 2128:1 2170:1 2293:2 2339:1 2366:1 2406:1 2428:1 2435:2 2436:1 2448:3 2452:1 2457:1 2459:1 2461:1 2470:1 2473:3 2483:1 2497:2 2536:1 2552:1 2589:1 2591:1 2614:1 2631:4 2636:1 2655:1 2680:2 2685:1 2686:1 2692:1 2701:1 2706:2 2709:1 2718:1 2728:2 2744:1 2760:1 2819:1 2833:1 2858:1 2871:1 2911:2 2978:1 2989:2 2990:1 3007:1 3017:1 3020:1 3062:3 3070:3 3080:3 3100:1 3119:1 3131:2 3183:1 3190:2 3197:1 3219:1 3243:1 3268:1 3269:1 3285:1 3292:1 3331:1 3337:1 3369:1 3433:1 3502:1 3544:2 3627:2 3635:1 3653:1 3654:3 3676:1 3696:1 3724:1 3725:1 3729:1 3751:3 3762:1 3774:1 3781:1 3790:1 3820:1 3833:1 3858:1 3863:1 3869:1 3894:2 3914:1 3927:1 3955:1 3984:2 3986:1 3991:1 4057:1 4062:3 4080:1 4118:1 4122:1 4127:1 4137:1 4141:1 4189:1 4191:1 4238:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4334:1 4338:1 4358:2 4374:2 4437:1 4440:1 4467:1 4471:1 4522:1 4564:1 4575:3 4578:1 4579:1 4589:1 4601:3 4627:1 4631:1 4655:1 4656:1 4669:1 4701:1 4708:1 4718:1 4744:1 4769:1 4794:1 4799:1 4801:4 4810:1 4827:1 4842:1 4867:1 4882:3 4901:1 4952:1 4953:1 4959:1 4967:1 4978:1 4987:1 4992:3 4997:1 4999:4 5021:1 5031:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5117:1 5130:1 5132:1 5138:1 5145:2 5149:2 5155:1 5156:1 5185:1 5201:1 5202:1 5220:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:1 5354:2 5361:1 5366:1 5375:2 5377:1 5416:1 5420:1 5440:1 5450:1 5458:1 5495:1 5497:1 5511:1 5513:1 5529:1 5601:1 5618:1 5619:1 5625:1 5682:1 5723:1 5731:1 5740:1 5741:1 5772:2 5798:2 5814:1 5856:1 5874:1 5885:1 5893:2 5900:1 5927:2 5929:1 5935:1 5951:1 5959:1 5970:1 5989:1 5999:1 6005:1 6011:1 6018:1 6022:1 6026:1 6027:7 6036:2 6055:2 6065:1 6107:2 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:1 6188:1 6190:1 6202:2 6221:1 6245:1 6264:2 6265:3 6288:2 6293:1 6301:1 6306:1 6318:2 6367:2 6382:2 6383:1 6391:1 6393:1 6424:2 6450:1 6467:1 6482:1 6497:1 6541:3 6555:1 6580:2 6584:2 6589:1 6590:1 6596:1 6600:2 6601:1 6616:1 6632:1 6636:1 6644:1 6655:1 6682:1 6750:1 6790:1 6809:1 6821:1 6826:2 6866:1 6868:3 6870:1 6881:1 6912:1 6913:1 6923:1 6964:1 6970:1 6998:3 7022:1 7049:1 7073:1 7084:1 7103:1 7104:1 7108:2 7248:1 7270:3 7290:2 7295:1 7316:1 7318:1 7327:1 7331:1 7341:1 7372:1 7397:1 7401:1 7415:1 7444:1 7446:1 7463:1 7493:1 7504:3 7509:1 7554:1 7602:1 7607:1 7613:1 7621:1 7650:2 7664:1 7696:1 7721:1 7730:1 7763:3 7781:1 7791:1 7792:2 7794:1 7801:2 7802:1 7810:1 7811:1 7814:2 7828:1 7857:3 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:1 8013:1 8014:2 8042:1 8058:8 8082:3 8083:2 8091:1 8115:1 8134:1 8157:1 8199:1 8233:2 8266:1 8288:1 8292:1 8320:1 8329:1 8354:1 8374:1 8468:3 8480:1 8482:2 8496:1 8501:1 8519:1 8525:1 8539:1 8571:1 8585:1 8590:1 8591:2 8629:2 8658:1 8684:1 8702:1 8704:1 8718:1 8744:2 8749:1 8754:1 8756:1 8765:1 8771:1 8790:2 8799:1 8804:1 8806:1 8830:1 8835:1 8872:2 8877:1 8900:3 8908:1 8955:1 8957:1 8964:3 8972:1 8980:1 9008:1 9078:1 9092:1 9098:1 9158:2 9164:2 9181:1 9268:1 9276:1 9288:1 9311:1 9395:4 9396:1 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9488:1 9507:1 9527:1 9571:1 9586:1 9605:1 9628:2 9667:1 9687:1 9754:1 9780:2 9790:1 9830:1 9865:1 9883:2 9914:1 9928:1 9935:1 9942:1 9954:1 9956:1 9963:1 9979:1 9981:1 10005:1 10042:1 10061:3 10062:1 10064:2 10074:1 10089:1 10110:1 10117:1 10126:1 10137:1 10156:1 10177:1 10182:1 10188:1 10204:4 10221:1 10223:2 10319:1 10399:1 10422:1 10425:1 10430:1 10482:1 10492:1 10498:3 10502:1 10505:1 10506:1 10519:1 10544:1 10547:1 10550:1 10554:1 10556:1 10557:1 10560:1 10572:2 10580:1 10594:1 10597:3 10647:1 10650:1 10681:1 10689:1 10696:1 10757:1 10761:2 10775:2 10798:1 10801:1 10806:1 10844:1 10857:1 10863:1 10876:1 10897:1 10899:1 10916:1 10920:1 10964:4 10967:1 10969:1 10973:2 10979:1 10982:1 10996:1 11011:1 11027:2 11035:1 11050:2 11089:1 11114:1 11131:1 11172:1 11173:1 11190:2 11216:1 11233:1 11258:3 11313:1 11326:1 11379:2 11442:1 11457:1 11472:1 11485:3 11486:1 11495:1 11499:1 11504:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:4 11567:3 11576:1 11583:1 11585:3 11632:1 11642:1 11660:1 11721:3 11732:1 11738:1 11747:1 11755:1 11770:1 11805:1 11811:1 11854:1 11856:1 11884:1 11888:1 11895:1 11899:1 11913:1 11922:1 11926:1 11927:1 11932:1 11943:1 11947:1 11959:1 11971:1 11996:1 12066:1 12080:1 12127:1 12157:1 12193:1 12215:2 12221:1 12225:1 12231:1 12250:1 12277:1 12283:2 12290:1 12298:2 12342:1 12376:1 12395:1 12428:1 12436:1 12449:1 12450:1 12476:1 12479:1 12486:2 12490:1 12491:3 12501:2 12503:1 12538:1 12587:1 12591:1 12594:1 12596:1 12614:2 12620:1 12626:1 12629:1 12631:2 12670:1 12678:1 12681:1 12683:1 12698:1 12700:1 12705:2 12715:1 12729:1 12730:1 12806:1 12823:1 12831:2 12841:1 12850:1 12873:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 13009:1 13013:1 13022:1 13033:1 13034:1 13095:2 13116:1 13125:1 13133:1 13150:2 13162:1 13212:1 13233:4 13254:1 13256:1 13260:1 13263:1 13318:3 13355:1 13358:1 13366:2 13383:1 13386:1 13413:3 13452:1 13562:1 13665:1 13686:1 13723:2 13729:2 13732:1 13733:1 13748:1 13763:2 13806:1 13808:1 13853:1 13867:1 13891:1 13949:1 13957:1 14067:2 14078:1 14102:1 14106:2 14121:1 14127:2 14131:1 14177:1 14178:6 14211:1 14224:1 14227:1 14246:1 14250:1 14259:1 14267:1 14285:1 14293:1 14299:1 14306:1 14329:1 14349:1 14353:1 14383:1 14405:2 14503:1 14523:1 14529:1 14533:1 14577:1 14598:2 14621:1 14651:1 14668:1 14674:1 14694:1 14695:1 14715:1 14727:2 14739:1 14750:1 14776:1 14779:1 14781:1 14792:1 14796:1 14810:1 14831:1 14885:1 14888:1 14903:1 14909:1 14911:3 14931:1 14934:1 14944:1 14945:1 14975:1 14993:1 14998:1 15007:1 15015:1 15022:1 15037:1 15038:1 15058:1 15068:2 15104:1 15116:1 15125:1 15164:1 15253:1 15258:3 15305:1 15311:1 15319:2 15322:1 15348:7 15365:1 15366:1 15367:1 15371:12 15388:2 15401:1 15425:1 15432:3 15438:1 15441:1 15476:1 15540:1 15551:2 15561:1 15567:2 15576:2 15581:1 15588:1 15620:3 15674:1 15676:2 15700:1 15709:1 15719:2 15746:1 15780:1 15785:1 15793:1 15798:1 15828:1 15853:1 15857:1 15863:1 15866:4 15885:1 15896:1 15900:1 15901:1 15904:1 15921:1 15938:1 15958:2 16014:1 16056:1 16063:1 16099:1 16102:2 16103:1 16177:1 16195:2 16204:2 16218:1 16224:1 16225:1 16247:1 16249:2 16250:1 16268:1 16273:1 16280:1 16284:1 16302:1 16318:1 16347:1 16417:1 16449:1 16458:1 16460:1 16481:1 16485:1 16488:1 16500:4 16553:1 16567:2 16569:1 16572:2 16623:2 16682:1 16718:3 16725:1 16729:2 16793:2 16795:1 16823:1 16836:1 16840:1 16895:1 16983:2 17018:1 17022:1 17027:1 17078:1 17083:1 17086:1 17103:1 17114:1 17116:1 17166:1 17179:2 17185:1 17191:2 17203:2 17208:1 17225:1 17253:1 17276:1 17278:2 17334:1 17346:2 17360:1 17365:1 17388:1 17411:1 17447:1 17467:1 17474:1 17516:1 17535:1 17547:1 17548:1 17561:2 17583:1 17585:1 17634:1 17676:1 17715:1 17728:1 17743:2 17756:1 17758:1 17763:1 17765:1 17789:1 17797:1 17798:1 17820:1 17874:1 17906:1 17918:1 17940:1 17946:3 17952:1 17990:1 18043:1 18052:1 18065:1 18082:1 18133:1 18137:1 18159:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:2 18299:1 18301:1 18332:1 18338:1 18368:1 18382:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:4 18475:2 18492:1 18523:1 18535:1 18550:1 18563:1 18681:1 18756:2 18793:1 18811:1 18817:1 18830:1 18858:1 18863:1 18864:2 18874:1 18895:1 18903:1 18933:1 18965:1 18976:1 18996:1 19001:1 19025:1 19039:1 19067:1 19081:1 19085:1 19112:1 19146:1 19203:1 19221:1 19242:2 19260:1 19262:1465 19265:1 19316:1 19320:1 19392:1 19403:1 19474:1 19479:2 19594:2 19620:1 19627:1 19663:1 19670:2 19697:1 19707:1 19758:1 19776:3 19781:1 19812:1 19829:1 19861:1 19869:1 19874:1 19908:2 19914:1 19924:1 20004:1 20006:1 20035:1 20125:1 20131:2 20146:1 20150:1 20153:1 20205:1 20208:2 20218:1 20219:2 20223:1 20224:1 20244:1 20252:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20397:1 20405:1 20410:1 20437:1 20452:1 20507:1 20518:1 20550:2 20601:1 20606:1 20620:1 20630:1 20659:2 20664:1 20671:1 20672:1 20681:1 20684:1 20696:1 20701:2 20704:2 20706:1 20709:1 20721:1 20737:2 20742:1 20743:1 20755:1 20832:1 20837:2 20868:1 20920:1 20962:1 20977:1 20989:1 20993:1 21004:1 21008:1 21020:1 21022:1 21036:1 21052:2 21055:1 21075:1 21084:1 21101:2 21115:2 21124:2 21160:1 21204:1 21205:1 21234:1 21236:1 21242:2 21243:1 21251:1 21269:1 21294:1 21321:2 21328:1 21338:1 21346:2 21354:1 21368:1 21397:1 21404:1 21408:2 21410:1 21426:1 21427:1 21482:1 21493:1 21536:1 21568:1 21572:1 21581:1 21598:2 21624:1 21669:1 21712:1 21741:1 21747:1 21767:1 21803:2 21809:1 21825:1 21845:2 21848:1 21849:5 21851:1 21901:2 21910:1 21921:1 21960:1 21983:1 21986:1 21990:1 22022:1 22026:1 22043:1 22050:1 22053:2 22055:1 22084:1 22099:1 22104:1 22109:1 22179:1 22185:1 22190:2 22214:1 22266:1 22279:1 22305:1 22312:1 22345:2 22349:1 22353:4 22363:1 22384:1 22395:2 22415:1 22468:1 22477:1 22486:2 22508:1 22512:1 22530:2 22533:1 22548:1 22560:2 22577:1 22600:2 22606:2 22609:1 22662:1 22667:3 22697:1 22705:1 22723:1 22732:1 22733:1 22770:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22853:2 22867:1 22914:3 22919:1 22924:1 22927:1 22928:3 23006:1 23007:2 23027:4 23049:1 23071:1 23113:1 23125:1 23133:1 23161:3 23165:1 23171:1 23172:1 23236:1 23247:1 23255:1 23264:1 23268:2 23297:1 23311:3 23358:1 23365:1 23372:1 23376:1 23399:1 23409:1 23430:1 23433:1 23436:1 23448:1 23458:2 23467:1 23477:1 23515:1 23522:3 23533:1 23552:1 23556:1 23561:2 23613:1 23627:1 23722:1 23747:2 23774:2 23790:1 23814:3 23831:1 23834:3 23868:1 23897:1 23912:2 23926:1 23927:3 23928:2 23935:1 23940:3 23941:3 23977:1 23988:1 24021:1 24033:1 24047:1 24051:2 24058:1 24078:1 24080:1 24089:1 24192:2 24197:1 24199:1 24212:2 24223:4 24235:1 24264:1 24292:1 24305:2 24360:1 24370:1 24375:1 24379:2 24388:1 24392:2 24404:1 24405:1 24421:1 24431:1 24441:3 24453:2 24474:1 24494:1 24507:1 24553:1 24576:2 24623:2 24626:1 24636:4 24652:1 24655:1 24661:1 24662:2 24719:1 24740:1 24778:1 24783:1 24788:1 24803:1 24810:1 24835:1 24898:1 24904:2 24914:1 24915:1 24918:2 24926:2 24937:1 24965:1 24992:1 25026:1 25048:1 25051:2 25054:1 25074:1 25081:2 25099:1 25114:1 25157:1 25159:1 25176:2 25185:1 25187:1 25206:1 25211:1 25231:2 25237:1 25238:1 25249:1 25263:1 25447:2 25451:1 25462:1 25482:1 25483:1 25503:1 25512:1 25532:1 25539:1 25568:1 25627:1 25631:1 25644:1 25680:1 25681:1 25705:2 25729:1 25757:1 25777:1 25828:1 25835:1 25871:1 25904:1 25920:1 25922:2 25933:1 25943:3 25945:1 25957:1 25964:1 25974:1 25982:3 26013:2 26024:1 26041:1 26052:1 26072:1 26092:2 26093:2 26095:1 26129:1 26130:1 26138:1 26139:1 26160:1 26172:1 26214:1 26233:1 26244:1 26268:1 26281:2 26284:1 26324:1 26328:1 26345:3 26371:1 26374:1 26399:1 26422:1 26478:1 26482:1 26493:1 26570:1 26594:2 26597:1 26617:1 26618:1 26640:1 26644:1 26649:1 26667:1 26670:2 26689:1 26696:1 26702:1 26714:1 26726:1 26797:1 26845:1 26857:1 26858:2 26871:1 26893:2 26911:1 26915:1 26918:3 26924:1 26955:2 26965:2 26969:1 26981:1 27007:2 27015:2 27023:1 27024:1 27033:2 27089:1 27115:3 27116:1 27164:1 27201:1 27225:1 27233:1 27261:3 27267:1 27302:1 27319:1 27350:1 27369:1 27384:1 27390:1 27400:1 27410:1 27425:1 27430:2 27448:1 27471:1 27480:1 27496:1 27536:1 27551:2 27554:2 27555:1 27564:2 27571:1 27613:2 27618:1 27704:1 27731:1 27739:1 27776:1 27808:1 27818:2 27820:1 27825:1 27877:2 27880:1 27881:1 27891:1 27897:1 27914:1 27944:1 27952:1 27968:1 27985:2 28001:1 28002:1 28014:1 28032:1 28097:2 28101:1 28130:2 28138:1 28139:1 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28302:1 28315:1 28322:1 28330:1 28358:1 28393:1 28435:2 28462:2 28468:2 28495:1 28504:1 28522:1 28532:1 28536:1 28547:1 28562:1 28596:2 28617:6 28629:1 28662:4 28671:1 28684:1 28699:1 28719:1 28755:1 28806:3 28817:1 28827:1 28835:1 28864:1 28872:2 28889:1 28903:1 28907:1 28938:1 28977:1 29023:3 29025:1 29046:1 29074:1 29090:1 29102:3 29139:2 29153:1 29165:2 29166:1 29169:2 29177:1 29189:1 29204:1 29205:1 29251:1 29265:1 29286:1 29297:1 29324:2 29343:1 29366:1 29370:1 29401:1 29453:1 29483:1 29519:1 29628:2 29695:4 29703:1 29706:1 29711:1 29738:2 29741:1 29743:1 29754:1 29760:1 29773:1 29795:1 29807:2 29818:1 29832:1 29846:1 29848:1 29851:1 29854:2 29868:1 29889:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29980:1
17 14:2 24:1 25:1 41:1 57:1 78:1 100:1 110:1 157:2 167:1 174:1 180:1 212:1 214:1 226:1 241:2 282:2 318:1 324:1 330:1 380:2 381:1 393:1 399:1 464:2 470:1 542:1 555:1 591:1 599:1 602:1 648:1 660:2 671:1 677:1 765:1 771:1 796:2 811:4 867:2 869:1 904:1 908:1 912:4 913:2 917:1 921:4 924:1 925:1 926:1 931:1 935:1 942:2 945:2 960:1 966:2 967:1 972:1 1010:2 1036:1 1039:1 1040:2 1069:1 1071:1 1084:1 1098:1 1104:1 1105:1 1115:1 1126:1 1132:1 1140:1 1146:1 1155:1 1176:1 1197:1 1260:2 1262:1 1301:1 1317:1 1318:1 1332:1 1335:1 1365:1 1385:1 1387:1 1481:1 1486:2 1513:1 1528:1 1536:2 1543:1 1567:1 1571:1 1588:1 1603:1 1611:1 1614:1 1634:1 1663:1 1682:2 1691:1 1708:1 1716:1 1727:1 1741:1 1746:1 1761:1 1788:2 1797:1 1803:1 1812:3 1824:1 1826:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1865:1 1874:1 1892:1 1921:1 1927:2 1935:1 1963:1 1981:1 2000:1 2011:1 2024:1 2036:1 2041:1 2086:1 2128:1 2154:1 2170:1 2204:1 2293:2 2339:1 2360:1 2366:1 2386:1 2406:1 2421:1 2428:1 2435:2 2436:1 2448:3 2452:1 2455:1 2457:1 2459:1 2461:1 2470:1 2473:3 2483:1 2497:2 2536:1 2552:1 2589:1 2591:1 2614:1 2631:4 2636:1 2655:1 2680:2 2685:1 2686:1 2692:1 2701:1 2706:2 2709:1 2713:1 2718:1 2728:2 2744:1 2758:1 2760:1 2819:1 2833:1 2858:1 2871:1 2892:1 2911:2 2978:1 2989:2 2990:1 3007:1 3017:1 3020:1 3062:3 3070:4 3080:3 3100:1 3119:1 3131:2 3183:1 3190:2 3197:1 3219:1 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:1 3293:1 3331:1 3337:1 3338:1 3369:1 3433:1 3502:1 3544:2 3627:2 3635:1 3653:1 3654:3 3676:1 3696:1 3724:1 3725:1 3729:1 3751:3 3762:1 3774:1 3781:1 3790:1 3820:1 3833:1 3858:1 3863:1 3869:1 3894:2 3914:1 3927:1 3955:1 3984:2 3986:1 3991:1 4057:1 4062:3 4080:1 4118:1 4122:1 4127:1 4137:1 4141:1 4171:1 4189:1 4191:1 4233:1 4238:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4334:1 4338:2 4348:1 4358:2 4374:2 4437:1 4440:1 4467:1 4471:1 4522:1 4564:1 4575:3 4578:1 4579:1 4589:1 4601:3 4627:1 4631:1 4655:1 4656:1 4669:1 4701:1 4708:1 4718:1 4744:1 4769:1 4794:1 4799:1 4801:4 4810:1 4827:1 4842:1 4867:1 4882:3 4901:1 4952:1 4953:1 4959:2 4967:1 4968:1 4978:1 4987:1 4992:3 4997:1 4999:4 5021:1 5031:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5117:1 5118:1 5130:1 5132:1 5138:1 5145:2 5149:2 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:1 5354:2 5361:1 5366:1 5375:2 5377:1 5416:1 5420:1 5440:1 5450:1 5458:1 5495:1 5497:1 5511:1 5513:1 5529:1 5601:1 5618:1 5619:1 5625:1 5682:1 5723:1 5726:1 5728:1 5731:1 5740:1 5741:1 5772:2 5798:3 5814:1 5856:1 5874:1 5877:1 5885:1 5893:2 5900:1 5927:2 5929:1 5935:1 5951:1 5959:2 5970:1 5989:1 5999:1 6005:1 6011:1 6018:2 6022:1 6026:1 6027:7 6036:2 6055:2 6065:1 6107:2 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:1 6188:1 6190:1 6202:3 6221:1 6245:1 6264:2 6265:3 6288:2 6293:1 6301:1 6306:1 6318:2 6367:2 6382:2 6383:1 6391:1 6393:1 6424:2 6450:1 6467:1 6482:1 6497:1 6541:5 6555:1 6580:2 6584:2 6589:1 6590:1 6596:1 6600:2 6601:1 6616:1 6632:1 6636:1 6644:1 6647:1 6655:1 6682:1 6688:1 6750:1 6790:1 6809:1 6821:1 6826:2 6866:1 6868:3 6870:1 6881:1 6912:1 6913:1 6923:1 6964:1 6970:1 6998:3 7022:1 7049:1 7072:1 7073:1 7084:1 7103:1 7104:1 7108:2 7196:1 7248:1 7270:4 7290:2 7295:1 7316:1 7318:1 7327:1 7331:1 7341:1 7372:1 7397:1 7401:1 7415:1 7444:1 7446:1 7463:1 7493:1 7504:3 7509:1 7532:1 7548:1 7551:1 7554:1 7602:1 7607:1 7613:1 7621:1 7650:2 7664:1 7696:1 7721:1 7730:1 7763:3 7781:1 7791:1 7792:2 7794:1 7801:3 7802:1 7810:1 7811:1 7814:3 7828:1 7857:3 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:1 7996:1 8013:1 8014:2 8042:1 8058:10 8082:4 8083:2 8091:1 8115:1 8134:1 8157:1 8199:1 8233:2 8266:1 8288:1 8292:2 8320:1 8329:1 8354:1 8374:1 8468:3 8480:1 8482:2 8496:1 8501:2 8519:1 8525:1 8539:1 8571:1 8585:1 8590:1 8591:2 8629:2 8658:1 8684:1 8702:1 8704:1 8716:1 8718:1 8744:2 8749:1 8754:1 8756:1 8765:1 8771:1 8790:2 8799:1 8804:1 8806:1 8830:1 8835:1 8872:2 8877:1 8900:4 8908:1 8955:1 8957:1 8958:1 8964:4 8972:1 8980:1 9008:1 9078:1 9092:1 9098:1 9158:2 9164:2 9177:1 9181:1 9268:1 9276:1 9288:1 9311:1 9324:1 9395:4 9396:1 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9488:1 9507:1 9527:1 9571:1 9586:1 9605:1 9615:1 9628:2 9667:2 9687:1 9754:1 9780:2 9790:1 9830:1 9834:1 9865:1 9883:2 9914:1 9928:1 9935:1 9942:1 9954:2 9956:1 9963:1 9979:1 9981:1 10005:1 10042:1 10061:3 10062:1 10064:2 10074:1 10089:1 10110:1 10117:1 10126:1 10137:1 10156:1 10177:1 10182:1 10188:1 10204:4 10221:1 10223:2 10319:1 10346:1 10399:1 10422:1 10425:1 10430:1 10482:1 10492:1 10498:3 10502:1 10505:1 10506:1 10519:1 10544:1 10547:1 10550:1 10554:1 10556:1 10557:1 10560:1 10572:2 10580:1 10594:1 10597:3 10647:1 10650:1 10681:1 10689:1 10696:1 10757:1 10761:3 10775:2 10787:1 10798:1 10801:1 10806:1 10844:1 10857:1 10863:1 10876:1 10897:1 10899:1 10916:1 10920:1 10964:4 10967:1 10969:1 10973:2 10979:1 10982:1 10996:1 11011:1 11027:3 11035:1 11041:1 11050:2 11089:1 11096:1 11114:1 11131:1 11172:1 11173:1 11187:1 11190:2 11216:1 11227:1 11233:1 11249:1 11258:3 11263:1 11313:1 11326:1 11379:2 11442:1 11457:1 11472:1 11485:3 11486:1 11495:1 11499:1 11504:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:4 11563:1 11567:3 11576:1 11583:1 11585:3 11632:1 11642:1 11660:1 11721:3 11728:1 11732:1 11738:1 11747:1 11755:1 11770:1 11805:2 11811:1 11854:1 11856:1 11884:1 11888:1 11895:1 11899:1 11913:1 11922:1 11926:1 11927:1 11932:1 11943:1 11947:1 11959:1 11971:1 11996:1 12066:1 12080:1 12127:1 12157:1 12169:1 12193:1 12215:2 12221:1 12225:1 12231:1 12250:1 12277:1 12283:2 12290:1 12298:2 12342:1 12364:1 12376:1 12395:1 12428:1 12436:1 12449:1 12450:1 12476:1 12479:1 12486:2 12490:1 12491:3 12501:2 12503:1 12538:1 12587:1 12591:1 12594:1 12596:1 12614:2 12620:1 12626:1 12629:1 12631:2 12670:1 12678:1 12681:1 12683:1 12698:2 12700:1 12705:2 12715:1 12729:1 12730:1 12743:1 12803:1 12806:1 12823:1 12831:2 12841:1 12850:1 12873:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 13009:1 13013:1 13022:1 13033:1 13034:1 13095:2 13116:1 13125:1 13133:1 13150:2 13162:1 13182:1 13212:1 13233:4 13254:1 13256:1 13260:1 13263:1 13318:3 13355:1 13358:1 13366:2 13383:1 13386:1 13413:3 13452:1 13562:1 13665:1 13686:1 13723:3 13729:2 13732:1 13733:1 13748:1 13763:2 13806:1 13808:1 13811:1 13853:1 13867:1 13891:1 13949:1 13957:1 14067:2 14078:1 14102:1 14106:2 14121:1 14127:2 14131:1 14177:1 14178:6 14211:1 14224:1 14227:1 14246:1 14250:1 14259:1 14267:1 14285:1 14286:1 14293:1 14299:1 14306:1 14329:1 14349:1 14353:1 14383:1 14405:2 14503:1 14523:1 14529:1 14533:1 14577:1 14598:2 14621:1 14651:1 14668:1 14674:1 14694:1 14695:1 14715:1 14724:1 14727:2 14739:1 14750:1 14776:1 14779:1 14781:1 14792:1 14796:1 14799:1 14810:1 14831:1 14885:1 14888:1 14903:1 14906:1 14909:1 14911:3 14931:1 14934:1 14944:1 14945:1 14975:1 14993:1 14998:1 15007:1 15015:1 15022:1 15037:1 15038:1 15058:1 15068:2 15076:1 15104:1 15116:1 15125:1 15164:1 15253:1 15258:3 15305:1 15311:1 15319:2 15322:1 15348:7 15365:1 15366:1 15367:1 15370:1 15371:14 15388:2 15401:1 15425:1 15432:3 15438:1 15441:1 15476:1 15492:1 15540:1 15551:2 15561:1 15567:2 15576:2 15581:1 15588:1 15620:3 15674:1 15676:2 15700:1 15709:1 15719:2 15746:1 15780:1 15785:1 15793:1 15798:1 15828:1 15853:1 15857:1 15863:1 15866:4 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15921:1 15938:1 15958:2 15993:1 16014:1 16021:1 16056:1 16063:1 16099:1 16102:2 16103:1 16177:1 16195:2 16204:2 16218:1 16224:1 16225:1 16247:1 16249:2 16250:1 16268:1 16273:1 16280:1 16284:1 16302:1 16318:1 16347:1 16348:1 16350:1 16417:1 16449:1 16458:1 16460:1 16481:1 16485:1 16488:1 16500:4 16553:1 16567:2 16569:1 16572:2 16623:2 16681:1 16682:1 16718:3 16725:1 16729:2 16735:1 16793:2 16795:1 16823:1 16836:1 16840:1 16895:1 16904:1 16944:1 16983:2 17018:1 17022:1 17027:1 17043:1 17050:1 17078:1 17083:1 17086:1 17103:1 17114:1 17116:1 17166:1 17179:2 17185:1 17191:2 17203:2 17208:1 17225:1 17253:1 17276:1 17278:2 17334:1 17346:2 17360:1 17365:1 17388:1 17411:1 17447:1 17467:1 17474:1 17516:1 17535:1 17547:1 17548:1 17561:2 17583:1 17585:1 17634:1 17676:1 17711:1 17715:1 17728:2 17743:2 17756:1 17758:1 17763:1 17765:1 17789:1 17797:1 17798:1 17820:1 17874:1 17892:1 17906:1 17918:1 17932:1 17940:1 17946:3 17952:1 17990:1 18043:2 18052:1 18065:1 18082:1 18116:1 18133:1 18137:1 18159:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:2 18299:1 18301:1 18332:1 18335:1 18338:1 18368:1 18382:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:5 18475:2 18492:1 18523:1 18535:1 18550:1 18563:1 18621:1 18681:1 18756:2 18793:1 18811:1 18817:1 18830:1 18841:1 18858:1 18863:1 18864:2 18874:1 18895:1 18903:1 18933:1 18951:1 18965:1 18976:1 18986:1 18996:1 19001:1 19025:1 19039:1 19067:1 19081:1 19085:2 19112:1 19146:1 19203:1 19221:1 19242:2 19260:1 19262:1579 19265:1 19316:1 19320:1 19392:1 19403:1 19474:1 19479:2 19578:1 19594:2 19620:1 19627:1 19663:1 19670:2 19697:1 19707:1 19758:1 19776:3 19781:1 19812:1 19829:1 19861:1 19869:1 19874:1 19908:2 19914:1 19920:1 19924:1 19975:1 20004:1 20006:2 20035:1 20125:1 20131:2 20146:1 20150:1 20153:1 20205:1 20208:3 20218:1 20219:2 20223:1 20224:1 20244:1 20252:1 20259:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20397:1 20405:1 20410:1 20437:1 20452:1 20507:1 20518:1 20550:2 20601:1 20606:1 20620:1 20630:1 20659:2 20664:1 20666:2 20671:1 20672:1 20675:1 20681:1 20684:1 20696:1 20701:2 20704:2 20706:1 20709:1 20721:1 20737:2 20742:1 20743:1 20755:1 20779:1 20792:1 20797:1 20832:1 20837:2 20868:1 20920:1 20959:1 20962:1 20977:1 20989:1 20993:1 21004:1 21008:1 21020:1 21022:1 21036:1 21052:2 21055:1 21075:1 21084:1 21101:2 21115:2 21124:2 21160:1 21204:1 21205:1 21234:1 21236:1 21242:2 21243:1 21251:1 21269:1 21294:1 21321:3 21328:1 21338:1 21346:2 21354:1 21368:1 21397:1 21404:1 21408:2 21410:1 21426:1 21427:1 21452:1 21481:1 21482:1 21493:1 21536:1 21568:1 21572:1 21581:1 21598:2 21624:1 21669:1 21712:1 21741:1 21747:1 21767:1 21800:1 21803:2 21809:1 21825:1 21845:2 21848:1 21849:5 21851:1 21901:2 21910:1 21921:1 21960:1 21983:1 21986:1 21990:1 22022:1 22026:1 22043:1 22050:1 22053:2 22055:1 22084:1 22099:1 22104:1 22109:1 22179:1 22185:1 22190:2 22214:1 22266:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22353:4 22363:1 22375:1 22384:1 22395:2 22415:1 22468:1 22477:1 22486:2 22508:1 22512:1 22530:2 22533:1 22548:1 22560:2 22577:1 22600:2 22606:2 22609:1 22662:1 22667:3 22697:1 22705:1 22723:1 22732:1 22733:1 22770:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:1 22853:2 22867:1 22914:3 22919:1 22924:1 22927:1 22928:3 23004:1 23006:1 23007:3 23027:4 23049:1 23071:1 23113:1 23125:1 23133:1 23161:4 23165:1 23171:1 23172:1 23236:1 23247:1 23255:1 23264:1 23268:2 23297:2 23311:3 23358:1 23365:1 23372:1 23376:1 23399:1 23409:1 23430:1 23433:1 23436:1 23448:1 23458:2 23467:1 23477:1 23515:1 23522:3 23533:1 23552:1 23556:1 23561:2 23613:1 23627:1 23722:1 23747:2 23774:2 23790:1 23814:3 23831:1 23834:3 23868:1 23897:1 23912:2 23926:1 23927:3 23928:2 23935:1 23940:3 23941:3 23977:1 23988:1 24021:1 24033:1 24047:1 24051:2 24058:1 24078:1 24080:1 24089:1 24128:1 24192:2 24197:1 24199:1 24212:2 24223:4 24235:1 24264:1 24292:1 24305:2 24360:1 24370:1 24373:1 24375:1 24379:2 24388:1 24392:2 24404:1 24405:1 24421:1 24431:1 24441:3 24453:2 24474:1 24494:1 24507:1 24553:1 24576:2 24623:2 24626:1 24636:4 24652:1 24655:1 24661:1 24662:2 24719:1 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24803:1 24810:1 24835:1 24898:1 24904:2 24914:1 24915:1 24918:2 24926:2 24937:1 24965:1 24992:1 24999:1 25026:1 25048:1 25051:2 25054:1 25074:1 25081:2 25099:1 25114:1 25157:1 25159:1 25176:2 25185:1 25186:1 25187:1 25206:1 25211:1 25231:2 25237:1 25238:1 25249:1 25263:1 25276:1 25277:1 25447:2 25451:1 25462:1 25482:1 25483:1 25503:1 25512:1 25532:1 25539:1 25568:1 25627:1 25631:1 25644:1 25680:1 25681:1 25705:2 25729:1 25757:1 25777:1 25828:1 25835:1 25871:1 25879:1 25904:1 25920:1 25922:2 25933:1 25943:3 25945:1 25957:1 25964:1 25974:1 25982:3 26013:2 26024:1 26041:1 26052:1 26068:1 26072:1 26092:2 26093:2 26095:1 26129:1 26130:1 26138:1 26139:1 26160:1 26172:1 26214:1 26233:1 26244:1 26268:1 26281:2 26284:1 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26399:1 26422:1 26478:1 26482:1 26493:1 26502:1 26514:1 26570:1 26594:2 26597:1 26617:1 26618:1 26634:1 26640:1 26644:1 26649:1 26667:1 26670:2 26689:1 26696:1 26702:1 26714:1 26726:1 26797:1 26845:1 26857:1 26858:2 26871:1 26893:2 26911:1 26915:2 26918:3 26924:1 26955:2 26965:2 26969:1 26981:1 27007:2 27015:2 27023:1 27024:1 27025:1 27033:2 27089:1 27115:3 27116:2 27164:1 27201:1 27225:1 27233:1 27261:4 27267:1 27302:1 27319:1 27350:1 27369:1 27384:1 27390:1 27400:1 27410:1 27425:1 27430:2 27448:1 27471:1 27480:1 27496:1 27536:1 27551:2 27554:2 27555:1 27564:2 27571:1 27613:2 27618:1 27668:1 27704:1 27731:1 27739:1 27776:1 27808:1 27818:2 27820:1 27825:1 27857:1 27877:2 27880:1 27881:1 27891:1 27897:1 27905:1 27914:1 27944:1 27952:1 27968:1 27985:2 28001:1 28002:1 28014:2 28032:1 28097:2 28101:1 28130:2 28138:1 28139:1 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28302:1 28315:1 28322:1 28330:1 28337:1 28358:1 28393:1 28435:2 28462:2 28468:2 28495:1 28504:1 28522:1 28532:1 28536:1 28547:1 28562:1 28588:1 28596:2 28617:8 28629:1 28662:4 28671:1 28684:1 28699:1 28719:1 28755:1 28806:3 28817:1 28827:1 28835:1 28864:1 28872:2 28889:1 28903:1 28907:1 28938:1 28977:1 28997:1 29023:3 29025:1 29046:1 29049:1 29074:1 29090:1 29102:3 29139:2 29153:1 29165:2 29166:1 29169:2 29177:1 29189:1 29204:1 29205:1 29251:1 29265:1 29286:1 29297:1 29324:2 29343:1 29366:1 29370:1 29401:1 29453:1 29483:1 29519:2 29628:2 29695:4 29703:1 29706:1 29711:1 29738:2 29741:1 29743:1 29754:1 29760:1 29773:1 29795:1 29807:2 29818:1 29832:1 29846:1 29848:1 29851:1 29854:2 29868:1 29889:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29980:1
17 14:2 24:1 25:1 41:1 57:2 78:1 100:1 110:1 157:2 167:1 174:1 180:1 212:1 214:1 226:1 241:2 282:2 318:1 324:1 330:1 377:1 380:2 381:1 393:1 399:1 464:2 470:1 542:1 555:1 591:1 599:1 602:1 648:1 660:2 671:1 677:1 765:1 771:1 796:2 811:4 867:2 869:1 904:1 908:1 912:4 913:2 917:1 921:4 924:1 925:1 926:1 931:1 935:1 942:2 945:2 960:1 966:2 967:1 968:1 972:1 1010:2 1036:1 1039:1 1040:2 1069:1 1071:1 1084:1 1098:1 1104:1 1105:1 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:1 1176:1 1197:1 1260:2 1262:1 1283:1 1297:1 1301:1 1317:1 1318:1 1332:1 1335:1 1365:1 1385:1 1387:1 1413:1 1481:1 1486:2 1513:1 1528:1 1536:2 1543:1 1567:1 1571:1 1588:1 1603:1 1611:1 1614:1 1634:1 1663:1 1682:2 1691:1 1708:1 1716:1 1727:2 1741:1 1746:1 1761:1 1788:2 1797:1 1803:1 1812:3 1824:1 1826:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1865:1 1874:1 1892:1 1921:1 1927:2 1935:1 1963:1 1981:1 2000:1 2011:1 2024:1 2036:1 2041:1 2086:1 2128:1 2131:1 2154:1 2170:1 2204:1 2293:2 2339:1 2360:1 2366:1 2386:1 2406:1 2421:1 2428:2 2435:2 2436:1 2448:3 2452:1 2455:1 2457:1 2459:1 2461:1 2470:1 2473:4 2483:1 2497:2 2518:1 2536:1 2552:1 2589:1 2591:1 2614:1 2631:4 2636:1 2655:1 2680:2 2685:1 2686:1 2692:1 2701:1 2706:2 2709:1 2713:1 2718:1 2728:2 2744:1 2758:1 2760:1 2784:1 2819:1 2833:1 2858:1 2871:1 2892:1 2911:2 2978:1 2986:1 2989:2 2990:1 3007:1 3017:1 3020:1 3062:3 3070:4 3080:3 3100:1 3119:1 3131:2 3166:1 3183:1 3190:2 3197:1 3219:1 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:1 3293:1 3331:1 3337:1 3338:1 3369:1 3370:1 3422:1 3433:1 3502:1 3544:2 3624:1 3627:2 3635:1 3653:1 3654:3 3676:1 3696:1 3724:1 3725:1 3729:1 3740:1 3751:3 3762:1 3774:1 3781:1 3790:1 3820:1 3833:1 3858:1 3863:1 3869:1 3872:1 3894:2 3914:1 3927:1 3955:1 3984:2 3986:1 3991:1 4057:1 4062:3 4080:1 4118:1 4122:1 4127:1 4137:1 4141:1 4171:1 4189:1 4191:1 4233:1 4238:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4334:1 4338:2 4348:1 4358:2 4374:2 4437:1 4440:1 4467:1 4471:1 4522:1 4526:1 4564:1 4575:3 4578:1 4579:1 4589:1 4601:3 4627:1 4631:1 4655:1 4656:1 4669:1 4701:1 4708:1 4718:1 4744:1 4769:1 4789:1 4794:1 4799:1 4801:4 4810:1 4827:1 4842:1 4867:1 4882:3 4901:2 4933:1 4952:1 4953:1 4959:4 4967:1 4968:1 4978:1 4987:1 4992:3 4997:1 4999:4 5021:1 5031:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5117:1 5118:1 5130:1 5132:1 5138:1 5145:2 5149:2 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:1 5354:2 5361:1 5366:1 5375:2 5377:1 5416:1 5420:1 5440:1 5450:1 5458:1 5495:1 5497:1 5511:1 5513:1 5529:1 5601:1 5618:1 5619:1 5625:1 5682:1 5723:1 5726:1 5728:1 5731:1 5740:1 5741:1 5772:2 5798:3 5814:1 5856:1 5874:1 5877:1 5885:1 5893:2 5900:1 5911:1 5927:2 5929:1 5935:1 5951:1 5959:2 5970:1 5989:1 5999:1 6005:1 6011:1 6018:2 6022:1 6026:2 6027:7 6036:2 6055:2 6065:1 6107:2 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:1 6188:1 6190:1 6202:3 6221:1 6245:1 6264:2 6265:3 6288:2 6293:1 6301:1 6306:1 6318:2 6367:2 6382:2 6383:1 6391:1 6393:1 6424:2 6450:1 6467:1 6482:1 6497:1 6541:5 6555:1 6570:1 6580:2 6584:2 6589:1 6590:1 6596:1 6600:2 6601:1 6616:1 6632:1 6636:1 6644:1 6647:1 6655:1 6664:1 6682:1 6688:1 6750:1 6790:1 6809:1 6821:1 6826:2 6866:1 6868:3 6870:1 6881:1 6912:1 6913:1 6923:1 6964:1 6970:1 6998:3 7022:1 7049:1 7072:1 7073:1 7084:1 7103:1 7104:1 7108:2 7196:1 7248:1 7270:4 7290:2 7295:1 7316:1 7318:1 7327:1 7331:1 7341:1 7372:1 7397:1 7401:1 7415:1 7434:1 7444:1 7446:1 7463:1 7493:1 7504:3 7509:1 7532:1 7548:1 7551:1 7554:1 7575:1 7602:2 7607:1 7613:1 7621:1 7650:2 7664:1 7696:1 7700:1 7721:1 7730:1 7755:1 7762:1 7763:3 7781:1 7791:1 7792:2 7794:1 7801:3 7802:1 7810:1 7811:1 7813:1 7814:3 7828:1 7857:3 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8058:11 8082:4 8083:2 8091:1 8115:1 8127:1 8134:1 8157:1 8199:1 8233:2 8266:1 8288:1 8292:2 8320:1 8329:1 8354:1 8374:1 8468:3 8480:1 8482:2 8496:1 8501:4 8519:1 8525:1 8539:1 8571:1 8585:1 8590:1 8591:3 8629:2 8658:1 8684:1 8702:1 8704:1 8716:1 8718:1 8744:2 8749:1 8754:1 8756:1 8765:1 8771:1 8790:2 8799:1 8804:1 8806:1 8830:1 8835:1 8872:2 8877:1 8900:4 8908:1 8955:1 8957:1 8958:1 8964:4 8972:1 8980:1 9008:1 9078:1 9092:1 9098:2 9158:2 9164:3 9177:1 9181:1 9268:1 9276:1 9288:1 9311:1 9324:1 9395:4 9396:1 9411:1 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9477:1 9488:1 9507:1 9527:1 9571:1 9586:1 9605:1 9615:1 9628:2 9667:2 9687:1 9699:1 9754:1 9780:2 9790:1 9830:1 9834:1 9865:1 9883:2 9914:1 9928:1 9935:1 9942:1 9954:2 9956:1 9963:1 9979:1 9981:1 10005:1 10037:1 10042:1 10061:3 10062:1 10064:2 10074:1 10089:1 10110:1 10117:1 10123:1 10126:1 10137:1 10156:1 10177:1 10182:1 10188:1 10204:4 10221:1 10223:2 10319:1 10346:1 10399:1 10422:1 10425:1 10430:1 10482:1 10492:1 10498:3 10502:1 10505:1 10506:1 10519:1 10544:1 10547:1 10550:1 10554:1 10556:1 10557:1 10560:1 10572:2 10580:1 10594:1 10597:3 10647:1 10650:1 10681:1 10689:1 10696:1 10757:1 10761:3 10775:2 10787:1 10798:1 10801:1 10806:1 10820:1 10844:2 10857:1 10863:1 10876:1 10897:1 10899:1 10916:1 10920:1 10950:1 10964:4 10967:1 10969:1 10973:3 10979:1 10982:1 10996:1 11011:1 11027:3 11035:1 11041:1 11050:2 11089:1 11096:1 11097:1 11114:1 11131:1 11172:1 11173:1 11187:1 11190:2 11216:1 11227:1 11233:1 11249:1 11258:3 11263:1 11267:1 11286:1 11313:1 11326:2 11359:1 11379:2 11407:1 11442:1 11457:1 11472:1 11485:3 11486:1 11495:1 11499:1 11504:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:4 11560:1 11563:1 11567:3 11576:1 11583:1 11585:3 11632:1 11642:1 11660:1 11721:3 11728:1 11732:1 11738:1 11747:1 11755:1 11765:1 11770:1 11805:2 11811:1 11854:1 11856:1 11884:1 11888:1 11895:1 11899:1 11913:1 11922:1 11926:1 11927:1 11932:1 11943:1 11947:1 11959:1 11971:1 11996:1 12010:1 12066:1 12073:1 12080:1 12127:1 12157:1 12169:1 12193:1 12215:2 12221:1 12225:1 12231:1 12247:1 12250:1 12265:1 12277:1 12283:2 12290:1 12298:2 12342:1 12364:1 12376:1 12395:1 12428:1 12436:1 12446:1 12449:1 12450:1 12476:1 12479:1 12486:2 12490:1 12491:3 12501:2 12503:1 12538:1 12587:1 12591:1 12594:1 12596:1 12614:2 12620:1 12626:1 12629:1 12631:2 12670:1 12678:1 12681:1 12683:1 12698:2 12700:1 12705:2 12715:1 12729:1 12730:1 12743:1 12803:1 12806:1 12823:1 12831:2 12841:1 12850:1 12873:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 13009:1 13013:1 13022:1 13033:1 13034:1 13095:2 13116:1 13125:1 13133:1 13150:2 13162:1 13182:1 13212:1 13233:4 13254:1 13256:1 13260:1 13263:1 13318:3 13355:1 13358:1 13366:2 13383:1 13386:1 13413:3 13452:1 13562:1 13665:1 13686:1 13723:3 13729:2 13732:1 13733:1 13748:1 13763:2 13806:1 13808:1 13811:1 13853:1 13867:1 13891:1 13949:1 13957:1 14067:2 14078:1 14102:1 14106:2 14121:1 14127:2 14131:1 14177:1 14178:6 14211:1 14224:1 14227:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14293:1 14299:1 14306:1 14329:1 14349:1 14353:1 14383:2 14405:2 14503:1 14523:1 14529:1 14533:1 14577:1 14598:2 14621:1 14651:1 14668:1 14670:1 14674:1 14694:1 14695:1 14715:1 14724:1 14727:2 14736:1 14739:1 14750:1 14776:1 14779:1 14781:1 14792:1 14796:1 14799:1 14810:1 14831:1 14885:1 14888:1 14903:1 14906:1 14909:1 14911:3 14928:1 14931:1 14934:1 14944:1 14945:1 14975:1 14993:1 14998:1 15007:1 15015:1 15022:1 15037:1 15038:1 15058:1 15068:2 15076:1 15104:1 15116:1 15125:1 15149:1 15164:1 15253:1 15258:3 15264:1 15305:1 15311:1 15319:3 15322:1 15348:7 15365:1 15366:1 15367:1 15370:2 15371:15 15388:2 15401:1 15425:1 15432:3 15438:1 15441:1 15476:1 15492:1 15540:1 15551:2 15561:1 15567:2 15572:1 15576:2 15581:1 15588:1 15620:3 15674:1 15676:2 15690:1 15700:1 15709:1 15719:2 15746:1 15759:1 15778:1 15780:1 15785:1 15793:1 15798:1 15828:1 15853:1 15857:1 15863:1 15866:4 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15921:1 15938:1 15958:2 15993:1 16014:1 16021:1 16056:1 16063:1 16099:1 16102:2 16103:1 16177:1 16195:2 16204:2 16218:1 16224:1 16225:1 16247:1 16249:2 16250:1 16268:1 16273:1 16280:1 16284:1 16302:1 16318:1 16347:1 16348:1 16350:1 16417:1 16449:1 16458:1 16460:1 16481:1 16485:1 16488:1 16490:1 16500:4 16553:1 16567:2 16569:1 16572:2 16620:1 16623:2 16681:1 16682:1 16718:3 16725:1 16729:2 16735:1 16793:2 16795:1 16823:1 16836:1 16840:1 16895:1 16904:1 16923:1 16944:1 16983:2 16998:1 17018:1 17022:1 17027:1 17043:1 17050:1 17078:1 17083:1 17086:1 17103:1 17114:2 17116:1 17128:1 17166:1 17179:2 17185:1 17191:2 17203:2 17208:1 17225:1 17253:1 17276:1 17278:2 17280:1 17334:1 17346:2 17360:1 17365:1 17388:1 17411:1 17447:1 17467:1 17474:1 17516:1 17535:1 17547:1 17548:1 17561:2 17583:1 17585:1 17634:1 17676:1 17711:1 17715:1 17726:1 17728:2 17743:2 17756:1 17758:1 17763:1 17765:1 17789:1 17796:1 17797:1 17798:1 17820:1 17874:1 17892:1 17906:1 17918:1 17932:1 17940:1 17946:3 17952:2 17990:1 18043:2 18052:1 18065:1 18082:1 18085:1 18116:1 18133:1 18137:1 18159:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:2 18299:1 18301:1 18332:1 18335:1 18338:1 18368:1 18374:1 18382:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:5 18475:2 18492:1 18523:1 18535:1 18550:1 18563:1 18621:1 18681:1 18731:1 18756:2 18759:1 18793:1 18811:1 18817:1 18830:1 18841:1 18858:1 18863:1 18864:2 18874:1 18895:1 18903:1 18933:1 18951:1 18965:1 18976:1 18986:1 18996:1 19001:1 19025:1 19039:1 19067:1 19081:1 19085:2 19112:1 19146:1 19197:1 19203:1 19221:1 19239:1 19242:2 19260:1 19262:1669 19265:1 19316:1 19320:1 19392:1 19401:1 19403:1 19474:1 19479:2 19578:1 19594:2 19620:1 19627:1 19663:1 19670:2 19697:1 19707:1 19739:1 19754:1 19758:1 19776:3 19781:1 19812:1 19829:1 19861:1 19869:1 19874:1 19908:2 19914:1 19920:1 19924:1 19975:1 20004:1 20006:3 20035:1 20125:1 20131:2 20146:1 20150:1 20153:1 20187:1 20205:1 20208:3 20218:1 20219:2 20223:1 20224:1 20244:1 20252:1 20259:1 20269:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20397:1 20405:1 20410:1 20437:1 20438:1 20452:1 20507:1 20518:1 20550:2 20601:1 20606:1 20609:1 20620:1 20630:1 20659:2 20664:1 20666:2 20671:1 20672:1 20675:1 20681:1 20684:1 20696:1 20701:2 20704:2 20706:1 20709:1 20721:1 20737:2 20742:1 20743:1 20755:1 20779:1 20792:1 20797:1 20832:1 20837:2 20868:1 20920:1 20959:1 20962:1 20977:1 20989:1 20993:1 21004:1 21008:1 21020:1 21022:2 21036:1 21052:2 21055:1 21075:1 21084:1 21101:2 21115:2 21124:2 21160:1 21204:1 21205:1 21221:1 21234:1 21236:1 21242:2 21243:1 21251:1 21269:1 21294:1 21321:3 21328:1 21338:1 21346:2 21354:1 21368:1 21397:1 21404:1 21405:1 21408:2 21410:1 21426:1 21427:1 21452:1 21481:1 21482:1 21493:1 21536:1 21568:1 21572:1 21581:1 21598:2 21624:1 21669:1 21712:1 21741:1 21747:1 21767:1 21800:1 21803:2 21809:1 21825:1 21845:2 21848:1 21849:5 21851:1 21883:1 21901:2 21910:1 21921:1 21931:1 21960:1 21983:1 21986:1 21990:1 22022:1 22026:1 22038:1 22043:1 22050:1 22053:2 22055:1 22084:1 22099:1 22104:1 22109:1 22179:1 22185:1 22190:2 22214:1 22266:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22353:4 22363:1 22375:1 22384:1 22395:2 22415:1 22468:1 22477:1 22486:2 22508:1 22512:1 22530:2 22533:1 22548:1 22560:2 22577:1 22600:2 22606:2 22609:1 22662:1 22667:3 22679:1 22697:1 22705:1 22723:1 22732:1 22733:1 22770:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:1 22853:2 22867:1 22914:3 22919:1 22924:1 22927:1 22928:3 23004:1 23006:1 23007:3 23027:5 23049:1 23071:1 23089:1 23113:1 23125:1 23133:1 23161:4 23165:1 23171:1 23172:1 23236:1 23247:1 23255:1 23264:1 23268:2 23297:2 23311:3 23358:1 23365:1 23372:1 23376:1 23399:1 23409:1 23430:1 23433:1 23436:1 23448:1 23458:2 23467:1 23477:1 23515:1 23522:3 23533:1 23552:1 23556:1 23561:2 23613:1 23627:1 23722:1 23747:2 23774:2 23790:1 23814:3 23831:1 23834:3 23868:1 23897:1 23912:2 23926:1 23927:3 23928:2 23935:1 23940:3 23941:3 23958:1 23977:1 23988:1 24003:1 24008:1 24021:1 24033:1 24047:1 24051:2 24058:1 24078:1 24080:1 24089:1 24128:1 24192:2 24197:1 24199:1 24209:1 24212:2 24223:4 24235:1 24264:1 24292:1 24305:2 24360:1 24370:1 24373:1 24375:1 24379:2 24388:1 24392:2 24404:1 24405:1 24421:1 24427:1 24431:1 24441:3 24453:2 24474:1 24494:1 24507:1 24553:1 24576:2 24623:2 24626:1 24636:4 24652:1 24655:1 24658:1 24661:1 24662:2 24715:1 24719:1 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24803:1 24810:1 24835:1 24898:1 24904:3 24914:1 24915:1 24918:2 24926:2 24937:1 24965:1 24992:1 24999:1 25026:1 25048:1 25051:2 25054:1 25074:1 25081:2 25099:1 25114:1 25142:1 25157:1 25159:1 25176:2 25185:1 25186:1 25187:1 25206:1 25211:1 25231:2 25237:1 25238:1 25249:1 25263:1 25276:1 25277:1 25447:2 25451:1 25456:1 25462:1 25482:1 25483:1 25503:1 25512:1 25532:1 25539:1 25568:1 25617:1 25627:1 25631:1 25644:1 25680:1 25681:1 25704:1 25705:2 25729:1 25757:1 25777:1 25828:1 25835:1 25859:1 25871:1 25879:1 25893:1 25904:1 25920:1 25922:2 25933:1 25943:3 25945:1 25957:1 25964:1 25974:1 25982:3 26013:2 26024:1 26041:1 26052:1 26068:1 26072:1 26092:2 26093:2 26095:2 26129:1 26130:1 26138:1 26139:1 26160:1 26172:1 26188:1 26214:1 26233:1 26244:1 26268:1 26281:2 26284:1 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26399:1 26422:1 26478:1 26482:1 26493:1 26502:1 26514:1 26570:1 26594:2 26597:1 26617:1 26618:1 26634:1 26640:1 26644:1 26649:1 26667:1 26670:2 26689:1 26696:1 26702:1 26714:1 26726:1 26729:1 26797:1 26845:1 26857:1 26858:2 26871:1 26893:2 26906:1 26911:1 26915:2 26918:3 26924:1 26955:2 26965:2 26969:1 26981:1 27007:2 27015:2 27017:1 27023:1 27024:1 27025:1 27033:2 27089:1 27115:3 27116:2 27164:1 27201:1 27225:1 27233:1 27261:4 27267:1 27293:1 27302:1 27318:1 27319:1 27350:1 27369:1 27384:1 27390:1 27400:1 27410:1 27425:1 27430:2 27448:1 27471:1 27480:1 27496:1 27536:1 27551:2 27554:2 27555:1 27564:2 27571:1 27584:1 27613:2 27618:1 27635:1 27668:1 27704:1 27731:1 27739:1 27776:1 27808:1 27818:2 27820:1 27825:1 27857:1 27874:1 27877:2 27880:1 27881:1 27891:1 27897:1 27905:1 27914:1 27944:1 27952:1 27968:1 27985:2 28001:1 28002:1 28014:3 28032:1 28097:2 28101:1 28130:2 28138:1 28139:2 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28302:1 28315:1 28322:1 28330:1 28337:1 28358:1 28393:1 28435:2 28462:2 28468:2 28495:1 28504:1 28522:1 28532:1 28536:1 28547:1 28562:1 28588:1 28589:1 28596:2 28617:8 28629:1 28662:4 28671:1 28684:2 28699:1 28719:1 28755:1 28806:3 28817:1 28827:2 28835:1 28864:1 28868:1 28872:2 28889:1 28903:1 28907:1 28938:1 28977:1 28997:1 29023:3 29025:1 29046:1 29049:1 29074:1 29090:1 29102:3 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29177:1 29189:1 29204:1 29205:1 29251:1 29265:1 29286:1 29297:1 29324:2 29343:1 29366:1 29370:1 29401:1 29453:1 29483:1 29519:2 29628:2 29695:4 29703:1 29706:1 29711:1 29738:3 29741:1 29743:1 29754:1 29760:1 29764:1 29773:1 29790:1 29795:1 29807:2 29818:1 29832:1 29846:1 29848:1 29851:1 29854:2 29864:1 29868:1 29889:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29980:1
17 14:2 24:1 25:1 41:1 57:2 78:1 100:1 110:1 157:2 167:1 174:1 180:1 212:1 214:1 226:1 241:2 253:1 282:2 318:1 324:1 330:1 377:1 380:2 381:1 393:1 399:1 464:2 470:1 542:1 555:1 591:1 599:1 602:1 648:1 660:2 671:1 677:1 765:1 771:1 796:2 811:4 867:2 869:1 904:1 908:1 912:4 913:2 917:1 921:4 924:1 925:1 926:1 931:1 935:1 942:2 945:2 960:1 966:2 967:1 968:1 972:1 1010:2 1036:1 1039:1 1040:2 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:1 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:1 1176:1 1197:1 1260:2 1262:1 1283:1 1297:1 1301:1 1317:1 1318:1 1332:1 1335:1 1365:1 1385:1 1387:1 1413:1 1481:1 1486:2 1513:1 1528:1 1536:2 1543:1 1567:1 1571:1 1588:1 1603:1 1611:1 1614:1 1615:1 1634:1 1663:1 1682:2 1691:1 1708:1 1716:1 1727:2 1741:1 1746:1 1761:1 1788:2 1797:1 1803:1 1812:3 1824:1 1826:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1865:1 1874:1 1892:1 1921:1 1927:2 1935:1 1963:1 1981:1 2000:1 2011:1 2024:1 2036:1 2041:1 2086:1 2128:1 2131:1 2154:1 2170:1 2204:1 2293:2 2339:1 2360:1 2366:1 2386:1 2406:1 2421:1 2428:2 2435:2 2436:1 2448:3 2452:1 2455:1 2457:1 2459:1 2461:1 2470:1 2473:4 2483:1 2497:2 2518:1 2536:1 2552:1 2589:1 2591:1 2614:1 2631:4 2636:1 2655:1 2680:2 2685:1 2686:1 2692:1 2701:1 2702:1 2706:2 2709:1 2713:1 2718:1 2728:2 2744:1 2758:1 2760:1 2784:1 2819:1 2833:1 2858:1 2871:1 2892:1 2911:2 2978:1 2986:1 2989:2 2990:1 3007:1 3017:1 3020:1 3062:3 3070:4 3080:3 3100:1 3119:1 3131:2 3134:1 3166:1 3183:1 3190:2 3197:1 3219:1 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:1 3293:1 3331:1 3337:1 3338:1 3369:1 3370:1 3422:1 3433:1 3502:1 3544:2 3624:1 3627:2 3635:1 3653:1 3654:3 3676:1 3696:1 3724:1 3725:1 3729:1 3740:1 3746:1 3751:3 3762:1 3774:1 3781:1 3790:1 3820:1 3833:1 3858:1 3863:1 3869:1 3872:1 3894:2 3914:1 3927:1 3955:1 3984:2 3986:1 3991:1 4057:1 4062:3 4080:1 4114:1 4118:1 4122:1 4127:1 4137:1 4141:1 4171:1 4189:1 4191:1 4233:1 4238:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4334:1 4338:2 4348:1 4358:2 4374:2 4437:1 4440:1 4467:1 4471:1 4522:1 4526:1 4564:1 4575:3 4578:1 4579:1 4589:1 4601:3 4627:1 4631:1 4655:1 4656:1 4669:1 4701:1 4708:1 4718:1 4744:1 4769:1 4789:1 4794:1 4799:1 4801:4 4810:1 4827:1 4842:1 4867:1 4882:3 4901:2 4933:1 4952:1 4953:1 4959:4 4967:1 4968:1 4978:1 4987:1 4992:3 4997:1 4999:4 5021:1 5031:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5117:1 5118:1 5130:1 5132:1 5138:1 5145:2 5149:2 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:1 5354:2 5361:1 5366:1 5375:2 5377:1 5416:1 5420:1 5440:1 5450:1 5458:1 5495:1 5497:1 5511:1 5513:1 5529:1 5541:1 5601:1 5618:1 5619:1 5625:1 5682:1 5723:1 5726:1 5728:1 5731:1 5740:1 5741:1 5772:2 5798:3 5814:1 5856:1 5874:1 5877:1 5885:1 5893:2 5900:1 5911:1 5927:2 5929:1 5935:1 5951:1 5959:2 5970:1 5989:1 5999:1 6005:1 6011:1 6018:2 6022:1 6026:2 6027:7 6036:2 6055:2 6065:1 6107:2 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:1 6188:1 6190:1 6202:3 6221:1 6245:1 6264:2 6265:3 6288:2 6293:1 6301:1 6306:1 6318:2 6367:2 6382:2 6383:1 6391:1 6393:1 6424:2 6450:1 6467:1 6482:1 6497:1 6541:6 6555:1 6570:1 6580:2 6584:2 6589:1 6590:1 6596:1 6600:2 6601:1 6616:1 6632:1 6636:1 6644:1 6647:1 6655:1 6664:1 6682:1 6688:1 6750:1 6790:1 6809:1 6821:1 6826:2 6866:1 6868:3 6870:1 6881:1 6912:1 6913:1 6923:1 6964:1 6970:1 6998:3 7022:1 7049:1 7072:1 7073:1 7084:1 7096:1 7103:1 7104:1 7108:2 7196:1 7237:1 7248:1 7270:4 7290:2 7295:1 7316:1 7318:1 7327:1 7331:1 7341:1 7372:1 7397:1 7401:1 7415:1 7434:1 7444:1 7446:1 7463:1 7493:1 7504:3 7509:1 7532:1 7548:1 7551:1 7554:1 7575:1 7602:2 7607:1 7613:1 7621:1 7650:2 7664:2 7696:1 7700:1 7721:1 7730:1 7755:1 7762:1 7763:3 7764:1 7781:1 7791:1 7792:2 7794:1 7801:4 7802:1 7810:1 7811:1 7813:1 7814:3 7828:1 7857:3 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8058:11 8082:4 8083:2 8091:1 8115:1 8127:1 8134:1 8157:1 8199:1 8233:2 8266:1 8288:1 8292:2 8320:1 8329:1 8354:1 8374:1 8468:3 8480:1 8482:2 8496:1 8501:4 8519:1 8525:1 8539:1 8560:1 8571:1 8585:1 8590:1 8591:3 8629:2 8658:1 8684:1 8702:1 8704:1 8716:1 8718:1 8744:2 8749:1 8754:1 8756:1 8765:1 8771:1 8790:2 8799:1 8804:1 8806:1 8830:1 8835:1 8872:2 8877:1 8900:4 8908:1 8955:1 8957:1 8958:1 8962:1 8964:4 8972:1 8980:1 9008:1 9078:1 9092:1 9098:2 9158:2 9164:3 9177:1 9181:1 9268:1 9276:1 9288:1 9311:1 9324:1 9395:4 9396:1 9411:1 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9477:1 9488:1 9507:1 9527:1 9571:1 9586:1 9605:1 9615:1 9628:2 9667:2 9687:1 9699:1 9754:1 9780:2 9790:1 9830:1 9834:1 9865:1 9883:2 9914:1 9928:1 9935:1 9942:1 9954:2 9956:1 9963:1 9979:1 9981:1 10005:1 10037:1 10042:1 10061:3 10062:1 10064:2 10074:1 10089:1 10110:1 10117:1 10123:1 10126:1 10137:1 10156:1 10177:1 10182:1 10188:1 10204:4 10221:1 10223:2 10319:1 10346:1 10399:1 10422:1 10425:1 10430:1 10482:1 10492:1 10498:4 10502:1 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10550:1 10554:1 10556:1 10557:1 10560:1 10572:2 10580:1 10594:1 10597:3 10647:1 10650:1 10681:1 10689:1 10696:1 10757:1 10761:3 10775:2 10787:1 10798:1 10801:1 10806:1 10820:1 10844:2 10857:1 10863:1 10876:1 10897:1 10899:1 10916:1 10920:1 10950:1 10964:4 10967:1 10969:1 10973:3 10979:1 10982:1 10996:1 11011:1 11027:3 11035:1 11041:1 11050:2 11089:1 11096:1 11097:1 11114:1 11131:1 11172:1 11173:1 11187:1 11190:2 11216:1 11227:1 11233:1 11249:1 11258:4 11263:1 11267:1 11286:1 11313:1 11326:2 11359:1 11379:2 11407:1 11442:1 11457:1 11472:1 11485:3 11486:1 11495:1 11499:1 11504:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:4 11560:1 11563:1 11567:3 11576:1 11583:1 11585:3 11618:1 11632:1 11642:1 11660:1 11721:3 11728:1 11732:1 11738:1 11747:1 11755:1 11765:1 11770:1 11805:2 11808:1 11811:1 11836:1 11854:1 11856:1 11884:1 11888:1 11895:1 11899:1 11913:1 11922:1 11926:1 11927:1 11932:1 11943:1 11947:1 11959:1 11971:1 11996:1 12010:1 12066:1 12073:1 12080:1 12127:1 12157:1 12169:1 12193:1 12215:2 12221:1 12225:1 12231:1 12247:1 12250:1 12265:1 12277:1 12283:2 12290:1 12298:2 12342:1 12364:1 12376:1 12395:1 12428:1 12436:1 12446:1 12449:1 12450:1 12476:1 12479:1 12486:2 12490:1 12491:3 12501:2 12503:1 12538:1 12587:1 12591:1 12594:2 12596:1 12614:2 12620:1 12626:1 12629:1 12631:2 12670:1 12678:1 12681:1 12683:1 12698:2 12700:1 12705:2 12715:1 12729:1 12730:1 12743:1 12803:1 12806:1 12823:1 12831:2 12841:1 12850:1 12873:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 13009:1 13013:2 13022:1 13033:1 13034:1 13095:2 13116:1 13125:1 13133:1 13150:2 13162:1 13182:1 13212:1 13233:4 13254:1 13256:1 13260:1 13263:1 13318:3 13355:1 13358:1 13366:2 13383:1 13386:1 13413:3 13452:1 13562:1 13665:1 13686:1 13723:3 13729:2 13732:1 13733:1 13748:1 13763:3 13806:1 13808:1 13811:1 13853:1 13867:1 13891:1 13949:2 13957:1 14067:2 14078:1 14102:1 14106:2 14121:1 14127:2 14131:1 14177:1 14178:6 14211:1 14224:1 14227:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14293:1 14299:1 14306:1 14329:1 14349:1 14353:1 14383:2 14405:2 14503:1 14523:1 14529:1 14533:1 14577:1 14598:2 14621:1 14651:1 14668:1 14670:1 14674:1 14694:1 14695:1 14715:1 14724:1 14727:2 14736:1 14739:1 14750:1 14776:1 14779:1 14781:1 14792:1 14796:1 14799:1 14810:1 14831:1 14885:1 14888:1 14903:1 14906:1 14909:1 14911:3 14928:1 14931:1 14934:1 14944:1 14945:1 14975:1 14993:1 14998:1 15007:1 15015:1 15022:1 15037:1 15038:1 15058:1 15068:2 15076:1 15104:1 15116:1 15125:1 15129:1 15149:1 15164:1 15253:1 15258:3 15264:1 15305:1 15311:1 15319:3 15322:1 15348:7 15355:1 15365:1 15366:1 15367:1 15370:2 15371:16 15388:2 15401:1 15425:1 15432:3 15438:1 15441:1 15476:1 15492:1 15540:1 15551:2 15561:1 15567:2 15572:1 15576:2 15581:1 15588:1 15620:3 15674:1 15676:2 15690:1 15700:1 15709:1 15719:2 15746:1 15759:1 15778:1 15780:1 15785:1 15793:1 15798:1 15828:1 15853:1 15857:1 15863:1 15866:4 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15921:1 15938:1 15958:2 15993:1 16014:1 16021:1 16056:1 16063:1 16099:1 16102:2 16103:1 16177:1 16195:2 16204:2 16218:1 16224:1 16225:1 16247:1 16249:2 16250:1 16268:1 16273:1 16280:1 16284:1 16302:1 16318:1 16347:1 16348:1 16350:1 16417:1 16449:1 16458:1 16460:1 16481:1 16485:1 16488:1 16490:1 16500:4 16553:2 16567:2 16569:1 16572:2 16620:1 16623:2 16677:1 16681:1 16682:1 16718:3 16725:1 16729:2 16735:1 16793:2 16795:1 16823:1 16836:1 16840:1 16895:1 16904:1 16923:1 16944:1 16983:2 16998:1 17018:1 17022:1 17027:1 17043:1 17050:1 17078:1 17083:1 17086:1 17103:1 17110:1 17114:2 17116:1 17128:1 17166:1 17179:2 17185:1 17191:2 17203:2 17208:1 17225:1 17253:1 17276:1 17278:2 17280:1 17334:1 17346:2 17360:1 17365:1 17388:1 17411:1 17447:1 17467:1 17474:1 17516:1 17535:1 17547:1 17548:1 17561:2 17583:1 17585:1 17634:1 17676:1 17711:1 17715:1 17726:1 17728:2 17743:2 17756:1 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:1 17820:1 17874:1 17892:1 17906:1 17918:1 17932:1 17940:1 17946:3 17952:2 17990:1 18043:2 18052:1 18065:1 18082:1 18085:1 18116:1 18133:1 18137:1 18159:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:2 18299:1 18301:1 18332:1 18335:1 18338:1 18368:1 18374:1 18382:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:5 18475:2 18492:1 18523:1 18535:1 18550:1 18563:1 18621:1 18681:1 18731:1 18756:2 18759:1 18793:1 18811:1 18817:1 18830:1 18841:1 18858:1 18863:1 18864:3 18874:1 18895:1 18903:1 18933:1 18951:1 18965:1 18976:1 18986:1 18996:1 19001:1 19025:1 19039:1 19067:1 19081:1 19085:2 19112:1 19145:1 19146:1 19197:1 19203:1 19221:1 19239:1 19242:2 19260:1 19262:1731 19265:1 19316:1 19320:1 19392:1 19401:1 19403:1 19474:1 19479:2 19578:1 19594:2 19620:1 19627:1 19663:1 19670:2 19697:1 19707:1 19739:1 19754:1 19758:1 19776:3 19781:1 19812:1 19829:1 19861:1 19869:1 19874:1 19908:2 19914:1 19920:1 19924:1 19975:1 20004:1 20006:3 20035:1 20101:1 20125:1 20131:2 20146:1 20150:1 20153:1 20167:1 20187:1 20202:1 20205:1 20208:3 20218:1 20219:2 20223:1 20224:1 20244:1 20252:1 20259:1 20269:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20397:1 20405:1 20410:1 20437:1 20438:1 20452:1 20507:1 20518:1 20524:1 20550:2 20601:1 20606:1 20609:1 20620:1 20630:1 20659:2 20664:1 20666:2 20671:1 20672:1 20675:1 20681:1 20684:1 20696:1 20701:2 20704:2 20706:1 20709:1 20721:1 20730:1 20737:2 20742:1 20743:1 20755:1 20779:1 20792:1 20797:1 20832:1 20837:2 20868:1 20920:1 20959:1 20962:1 20977:1 20989:1 20993:1 21004:1 21008:1 21020:1 21022:2 21036:1 21052:2 21055:1 21075:1 21084:1 21101:2 21115:2 21124:2 21160:1 21204:1 21205:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21251:1 21269:1 21294:1 21321:3 21328:1 21338:1 21346:2 21354:1 21368:1 21397:1 21404:1 21405:1 21408:2 21410:1 21426:1 21427:1 21452:1 21481:1 21482:1 21493:1 21536:1 21568:1 21572:1 21581:1 21598:2 21624:1 21669:1 21712:1 21741:1 21747:1 21767:1 21784:1 21800:1 21803:2 21809:1 21825:1 21845:2 21848:1 21849:5 21851:1 21883:1 21901:2 21910:1 21921:1 21931:1 21960:1 21983:1 21986:1 21990:1 22022:1 22026:1 22038:1 22043:1 22050:1 22053:2 22055:1 22084:1 22099:1 22104:1 22109:1 22179:1 22185:1 22190:2 22214:1 22266:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22353:4 22363:1 22375:1 22384:1 22395:2 22415:1 22468:1 22477:1 22486:2 22508:1 22512:1 22530:2 22533:1 22548:1 22560:2 22577:1 22579:1 22600:2 22606:2 22609:1 22628:1 22662:1 22667:3 22679:1 22697:1 22705:1 22723:1 22732:1 22733:1 22770:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:1 22853:2 22867:1 22914:3 22919:1 22924:1 22927:1 22928:3 23004:1 23006:1 23007:3 23027:5 23049:1 23071:1 23089:1 23113:1 23125:1 23133:1 23161:4 23165:1 23171:1 23172:1 23236:1 23247:1 23255:1 23264:1 23268:2 23297:2 23311:3 23358:1 23365:1 23372:1 23376:1 23399:1 23409:1 23430:1 23433:1 23436:1 23448:1 23458:2 23467:1 23477:1 23515:1 23522:3 23533:1 23552:1 23556:1 23561:2 23613:1 23627:1 23722:1 23747:2 23774:2 23790:1 23814:3 23831:1 23834:3 23868:1 23897:1 23912:2 23926:1 23927:3 23928:2 23935:1 23940:3 23941:4 23958:1 23977:1 23988:1 24003:1 24008:1 24021:1 24033:2 24047:1 24051:2 24058:1 24078:1 24080:1 24089:1 24128:1 24192:2 24197:1 24199:1 24209:1 24212:2 24223:4 24235:1 24264:1 24292:1 24305:2 24360:1 24370:1 24373:1 24375:1 24379:2 24388:1 24392:2 24404:1 24405:1 24421:1 24427:1 24431:1 24441:3 24453:2 24474:1 24494:1 24507:1 24553:1 24576:2 24623:2 24626:1 24636:4 24652:1 24655:1 24658:1 24661:1 24662:2 24715:1 24719:1 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24803:1 24810:1 24835:1 24898:1 24904:3 24914:1 24915:1 24918:2 24926:2 24937:1 24965:2 24992:1 24999:1 25026:1 25048:1 25051:2 25054:1 25074:1 25081:2 25099:1 25114:1 25142:1 25157:1 25159:1 25176:2 25185:1 25186:1 25187:1 25206:1 25211:1 25231:2 25237:1 25238:1 25249:1 25263:1 25276:1 25277:1 25447:2 25451:1 25456:1 25462:2 25482:1 25483:1 25503:1 25512:1 25532:1 25539:1 25568:1 25617:1 25627:1 25631:1 25644:1 25659:1 25680:1 25681:1 25704:1 25705:2 25729:1 25757:1 25762:1 25777:1 25828:1 25835:1 25859:1 25871:1 25879:1 25893:1 25904:1 25920:1 25922:2 25933:1 25943:3 25945:1 25957:1 25964:1 25974:1 25982:3 26013:2 26024:1 26041:1 26052:1 26068:1 26072:1 26092:2 26093:2 26095:2 26129:1 26130:1 26138:1 26139:1 26160:1 26172:1 26188:1 26214:1 26233:1 26244:1 26268:1 26281:2 26284:1 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26399:1 26415:1 26422:1 26478:1 26482:1 26493:1 26502:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:1 26648:1 26649:1 26667:1 26670:2 26689:1 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26797:1 26845:1 26857:2 26858:2 26871:1 26893:2 26906:1 26911:1 26915:2 26918:3 26924:1 26955:2 26965:2 26969:1 26981:1 27007:2 27015:2 27017:1 27023:1 27024:1 27025:1 27033:2 27089:1 27115:3 27116:2 27164:1 27165:1 27201:1 27225:1 27233:1 27261:4 27267:1 27293:1 27302:1 27318:1 27319:1 27350:1 27369:1 27384:1 27390:1 27400:1 27410:1 27425:1 27430:2 27448:1 27471:1 27480:1 27496:1 27536:1 27551:2 27554:2 27555:1 27564:3 27571:1 27584:1 27613:2 27618:1 27635:1 27668:1 27704:1 27731:1 27739:1 27776:1 27808:1 27818:2 27820:1 27825:1 27857:1 27874:1 27877:2 27880:1 27881:1 27891:1 27897:1 27905:1 27914:1 27944:1 27952:1 27968:1 27985:2 28001:1 28002:1 28014:3 28032:1 28097:2 28101:1 28130:2 28138:1 28139:2 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28302:1 28315:1 28322:1 28330:1 28337:1 28358:1 28393:1 28435:2 28462:2 28468:2 28495:1 28504:1 28522:1 28532:1 28536:1 28547:1 28562:1 28588:1 28589:1 28596:2 28617:9 28622:1 28629:1 28643:1 28662:4 28671:1 28684:2 28699:1 28719:1 28755:1 28806:3 28817:1 28827:2 28835:1 28838:1 28864:1 28868:1 28872:2 28889:1 28903:1 28907:1 28938:1 28977:1 28997:1 29023:3 29025:1 29034:1 29046:2 29049:1 29074:1 29090:1 29102:3 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29177:1 29189:1 29204:1 29205:1 29251:1 29265:1 29286:1 29297:1 29324:2 29343:1 29366:1 29370:1 29401:1 29453:1 29483:1 29519:2 29628:2 29695:4 29703:1 29706:1 29711:1 29738:3 29741:1 29743:1 29754:1 29760:1 29764:1 29773:1 29790:1 29795:1 29807:2 29818:1 29832:1 29846:1 29848:1 29851:1 29854:2 29864:1 29868:1 29889:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29980:1
17 14:2 24:1 25:1 41:1 57:2 78:1 100:1 110:1 157:2 167:1 174:1 180:1 212:1 214:1 226:1 241:2 253:1 258:2 282:2 318:1 324:1 330:1 377:1 380:2 381:1 393:1 399:1 464:2 470:1 542:1 555:1 591:1 599:1 602:1 648:1 657:1 660:2 671:1 677:2 726:1 765:1 771:1 796:2 811:4 867:2 869:1 904:1 908:2 912:4 913:2 915:1 917:2 921:4 924:1 925:1 926:1 931:1 935:1 936:1 940:1 942:2 945:2 960:1 966:2 967:1 968:1 972:1 1010:2 1036:1 1039:1 1040:2 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:1 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:1 1176:1 1186:1 1197:1 1260:2 1262:1 1283:1 1297:1 1301:1 1317:1 1318:1 1332:1 1334:1 1335:1 1365:1 1385:1 1387:1 1413:1 1481:1 1486:2 1513:1 1528:1 1536:2 1543:1 1567:1 1571:1 1588:1 1603:1 1611:1 1614:1 1615:1 1634:1 1663:1 1682:2 1691:1 1708:1 1716:1 1727:2 1741:1 1746:1 1761:1 1788:2 1797:1 1803:1 1812:3 1824:1 1826:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1865:1 1874:1 1892:1 1921:1 1927:2 1935:1 1963:1 1981:1 2000:1 2011:1 2024:1 2036:1 2041:1 2086:1 2128:1 2131:1 2154:1 2170:1 2204:1 2293:2 2339:1 2360:1 2366:1 2386:1 2406:2 2421:1 2428:2 2435:2 2436:1 2448:3 2452:1 2455:1 2457:1 2459:1 2461:1 2470:1 2473:5 2483:1 2497:2 2518:1 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:1 2631:4 2636:1 2655:1 2680:2 2685:1 2686:1 2692:1 2701:1 2702:1 2706:2 2709:1 2713:1 2718:1 2728:2 2744:1 2758:1 2760:1 2784:1 2819:1 2833:1 2858:1 2871:1 2892:1 2908:1 2911:2 2978:1 2986:1 2989:2 2990:1 3007:1 3017:1 3020:1 3022:1 3062:3 3070:4 3080:3 3100:1 3119:1 3120:1 3131:2 3134:1 3166:1 3183:1 3190:2 3197:1 3219:1 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3331:1 3337:1 3338:1 3369:1 3370:1 3422:1 3433:1 3502:1 3544:2 3624:1 3627:2 3632:1 3635:1 3653:1 3654:3 3674:1 3676:1 3696:1 3724:1 3725:1 3729:1 3740:2 3746:1 3751:3 3762:1 3774:1 3781:1 3790:1 3802:1 3820:1 3833:1 3858:1 3863:1 3869:1 3872:1 3894:2 3914:1 3927:1 3953:1 3955:1 3984:2 3986:1 3991:1 4057:1 4062:3 4080:1 4114:1 4118:2 4122:1 4127:1 4137:1 4141:1 4171:1 4189:1 4191:1 4233:1 4238:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4334:1 4338:2 4348:1 4358:2 4374:2 4435:1 4437:1 4440:1 4467:1 4471:1 4522:1 4526:1 4564:1 4575:3 4578:1 4579:1 4589:1 4597:1 4601:3 4627:1 4631:1 4655:1 4656:1 4667:2 4669:1 4701:1 4708:1 4718:1 4744:1 4769:1 4789:1 4794:1 4799:1 4801:4 4810:1 4827:1 4842:1 4867:1 4882:3 4901:2 4914:1 4933:1 4952:1 4953:1 4959:4 4967:1 4968:1 4978:1 4987:1 4992:3 4997:1 4999:4 5021:1 5031:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5117:1 5118:1 5130:1 5132:1 5138:1 5145:2 5149:2 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:1 5354:2 5361:1 5366:1 5375:2 5377:1 5416:1 5420:1 5440:1 5450:1 5458:1 5495:1 5497:1 5511:1 5513:1 5529:1 5533:1 5541:1 5601:1 5618:1 5619:1 5625:1 5682:1 5723:1 5726:1 5728:1 5731:1 5740:1 5741:1 5772:2 5798:3 5814:1 5856:1 5874:1 5877:1 5885:1 5893:2 5900:1 5911:1 5927:2 5929:1 5935:1 5951:1 5959:2 5970:1 5989:1 5999:1 6005:1 6011:1 6018:2 6022:1 6026:2 6027:8 6036:2 6055:2 6065:1 6082:1 6107:2 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:1 6188:1 6190:1 6202:3 6221:1 6239:1 6245:1 6264:2 6265:3 6268:1 6288:2 6293:1 6301:1 6306:1 6318:2 6367:2 6377:1 6382:2 6383:1 6391:1 6393:1 6424:2 6450:1 6467:1 6482:1 6497:1 6541:6 6555:1 6570:1 6580:2 6584:2 6586:1 6589:1 6590:1 6596:1 6600:2 6601:1 6616:1 6625:1 6632:1 6636:1 6644:1 6647:1 6655:1 6664:1 6670:1 6682:1 6688:1 6750:1 6790:1 6809:1 6821:1 6826:2 6866:1 6868:3 6870:1 6881:1 6898:1 6912:1 6913:1 6923:1 6964:1 6970:1 6998:3 7022:1 7049:1 7072:1 7073:1 7084:1 7096:1 7103:1 7104:1 7108:2 7196:1 7237:1 7248:1 7270:4 7290:2 7295:1 7316:1 7318:1 7327:1 7331:1 7337:1 7341:1 7372:1 7375:2 7397:1 7401:1 7415:1 7434:1 7444:1 7446:1 7463:1 7486:1 7493:1 7504:3 7509:1 7532:1 7548:1 7551:1 7554:1 7575:1 7602:2 7607:1 7613:1 7621:1 7650:2 7664:2 7696:1 7700:1 7721:1 7730:2 7755:1 7762:1 7763:3 7764:1 7781:1 7791:2 7792:4 7794:1 7797:1 7801:4 7802:1 7803:1 7810:2 7811:1 7813:1 7814:3 7816:1 7828:1 7857:3 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8058:11 8082:4 8083:2 8091:1 8115:1 8127:1 8134:1 8157:1 8199:1 8233:2 8266:1 8288:1 8292:2 8320:1 8329:1 8346:1 8354:1 8374:1 8428:1 8468:4 8480:1 8482:2 8496:1 8501:4 8519:1 8525:1 8539:1 8560:1 8571:1 8585:1 8590:1 8591:3 8629:2 8658:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8744:2 8749:2 8754:1 8756:1 8765:1 8771:1 8790:2 8799:1 8804:1 8806:1 8830:1 8835:1 8872:2 8877:1 8900:4 8908:1 8955:1 8957:1 8958:1 8962:1 8964:4 8972:1 8980:1 9008:1 9078:1 9092:1 9098:2 9119:1 9158:2 9164:3 9177:1 9181:1 9268:1 9276:1 9288:1 9311:1 9324:1 9395:4 9396:1 9411:1 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9477:1 9488:1 9507:1 9527:1 9571:1 9586:1 9605:1 9615:1 9628:2 9667:2 9687:1 9699:1 9711:1 9754:1 9780:2 9790:1 9830:1 9834:1 9865:1 9883:2 9914:1 9928:1 9935:1 9942:1 9954:2 9956:1 9963:1 9979:1 9981:1 10005:1 10037:1 10042:1 10061:3 10062:1 10064:2 10071:1 10073:1 10074:1 10089:1 10099:1 10110:1 10117:1 10123:1 10126:1 10135:2 10137:1 10156:1 10177:1 10182:1 10188:1 10204:4 10221:1 10223:2 10319:1 10346:1 10399:1 10422:1 10425:1 10430:1 10482:1 10492:1 10498:4 10502:1 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10550:1 10554:1 10556:1 10557:1 10560:1 10572:2 10580:1 10594:1 10597:3 10617:1 10647:1 10650:1 10681:1 10689:1 10696:1 10757:1 10761:3 10775:2 10787:1 10798:1 10801:1 10806:1 10820:1 10844:2 10857:1 10863:1 10876:1 10897:1 10899:1 10916:1 10920:1 10950:1 10964:4 10967:1 10969:1 10973:3 10979:1 10982:1 10996:1 11010:1 11011:1 11027:3 11035:1 11041:1 11050:2 11089:1 11096:1 11097:1 11114:1 11131:1 11172:1 11173:1 11187:1 11190:2 11216:1 11227:1 11233:1 11249:1 11258:4 11263:1 11267:1 11269:1 11286:1 11313:1 11326:2 11354:1 11359:1 11379:2 11407:1 11413:1 11442:1 11457:1 11472:1 11485:3 11486:1 11495:1 11499:1 11504:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:4 11560:1 11563:1 11567:4 11576:1 11583:1 11585:3 11618:1 11632:1 11642:1 11660:1 11721:3 11728:1 11732:1 11738:1 11747:1 11755:1 11765:1 11770:2 11771:1 11805:2 11808:1 11811:1 11836:1 11854:1 11856:1 11884:2 11888:1 11895:1 11899:1 11913:1 11922:1 11926:1 11927:1 11932:1 11943:1 11947:1 11959:1 11971:1 11996:1 12001:1 12010:1 12066:1 12073:1 12080:1 12127:2 12157:1 12169:1 12193:1 12215:2 12221:1 12225:1 12231:1 12247:1 12250:1 12265:1 12277:1 12283:2 12290:1 12298:2 12342:1 12364:1 12376:1 12395:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12476:1 12479:1 12480:1 12486:3 12490:1 12491:3 12492:1 12501:2 12503:1 12538:1 12556:1 12583:1 12587:1 12591:1 12594:2 12596:1 12614:2 12620:1 12626:1 12629:1 12631:2 12666:1 12670:1 12678:1 12681:1 12683:1 12698:2 12700:1 12705:2 12712:2 12715:1 12729:1 12730:1 12743:1 12803:1 12806:1 12823:1 12831:2 12841:1 12844:1 12850:1 12873:1 12883:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 13009:1 13013:2 13022:1 13033:1 13034:1 13095:2 13116:1 13117:1 13125:1 13129:1 13133:1 13150:2 13162:1 13182:1 13212:1 13233:4 13254:1 13256:1 13260:1 13263:1 13318:3 13355:2 13358:1 13366:3 13383:1 13386:1 13413:3 13452:1 13562:1 13665:1 13686:1 13723:3 13729:2 13732:1 13733:1 13748:1 13763:3 13806:1 13808:1 13811:1 13849:1 13853:1 13867:1 13891:1 13949:2 13957:1 14067:2 14078:1 14102:1 14106:2 14121:1 14127:2 14131:1 14177:1 14178:6 14211:1 14224:1 14227:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14293:1 14299:1 14306:1 14329:1 14349:2 14353:1 14383:2 14405:2 14503:1 14523:1 14529:1 14533:1 14577:1 14598:2 14621:1 14651:1 14668:1 14670:1 14674:1 14694:1 14695:1 14700:1 14715:1 14724:1 14727:2 14736:1 14739:1 14750:1 14776:1 14779:1 14781:1 14792:1 14796:1 14799:1 14810:1 14831:1 14885:1 14888:1 14903:1 14906:1 14909:1 14911:3 14928:1 14931:1 14934:1 14944:1 14945:1 14975:1 14993:1 14998:1 15007:1 15015:1 15022:1 15037:1 15038:1 15058:1 15068:2 15076:1 15104:1 15116:1 15125:1 15129:1 15149:1 15164:1 15176:1 15253:1 15257:1 15258:3 15264:1 15297:1 15305:1 15311:1 15317:1 15319:3 15322:1 15348:8 15355:1 15365:1 15366:1 15367:1 15370:2 15371:22 15385:1 15388:2 15401:1 15425:1 15432:3 15438:1 15441:1 15476:1 15492:1 15540:1 15551:2 15561:1 15567:2 15572:1 15576:2 15581:1 15588:1 15617:1 15620:3 15674:1 15676:2 15690:1 15700:1 15709:1 15719:2 15746:1 15759:1 15778:1 15780:1 15785:1 15793:1 15798:1 15828:1 15843:2 15853:1 15857:1 15863:1 15866:5 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15921:1 15938:1 15958:2 15993:1 16014:1 16021:1 16056:1 16063:1 16098:1 16099:1 16102:2 16103:1 16177:1 16195:2 16204:2 16218:1 16224:1 16225:1 16247:1 16249:2 16250:1 16268:1 16273:1 16280:1 16284:1 16302:1 16318:1 16345:2 16347:1 16348:1 16350:1 16417:1 16449:1 16458:1 16460:1 16481:1 16485:1 16488:1 16490:1 16500:7 16553:2 16567:2 16569:1 16572:2 16620:1 16623:2 16677:1 16681:1 16682:1 16718:3 16725:1 16729:2 16735:1 16793:2 16795:1 16823:1 16836:1 16840:1 16895:1 16904:1 16923:1 16944:1 16945:1 16983:2 16998:1 17018:1 17022:1 17027:1 17032:1 17043:1 17050:1 17078:1 17083:1 17086:1 17103:1 17110:1 17114:2 17116:1 17128:1 17144:1 17166:1 17179:2 17185:1 17191:2 17203:2 17208:1 17225:1 17253:1 17272:1 17273:1 17276:1 17278:2 17280:1 17297:1 17334:1 17346:2 17360:1 17365:1 17388:2 17411:1 17447:1 17459:1 17467:1 17474:1 17516:1 17535:1 17547:1 17548:1 17561:2 17576:1 17583:1 17585:1 17634:1 17676:1 17711:1 17715:1 17726:1 17728:2 17743:2 17756:1 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:1 17820:1 17874:1 17892:1 17906:1 17918:1 17932:1 17940:1 17946:3 17952:2 17990:1 18043:2 18044:1 18052:1 18065:1 18082:1 18085:1 18116:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:2 18299:1 18301:1 18332:1 18335:1 18338:1 18368:1 18374:1 18382:1 18388:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:5 18475:2 18492:1 18523:1 18535:1 18550:1 18563:1 18621:1 18659:1 18681:1 18731:1 18756:2 18759:1 18793:1 18811:1 18817:1 18830:1 18841:1 18858:1 18863:1 18864:3 18874:1 18895:1 18903:1 18933:1 18951:1 18965:1 18976:1 18986:1 18996:1 19001:1 19025:1 19039:1 19067:1 19081:1 19085:2 19112:1 19145:1 19146:1 19197:1 19203:1 19221:1 19239:1 19242:2 19260:1 19262:1833 19265:1 19316:1 19320:1 19392:1 19401:1 19403:1 19474:1 19479:2 19578:1 19594:2 19620:1 19627:1 19663:1 19670:2 19697:1 19707:1 19739:1 19754:1 19758:1 19776:3 19781:1 19812:1 19829:1 19861:1 19869:2 19874:1 19908:2 19914:1 19920:1 19924:1 19975:1 20004:1 20006:3 20035:1 20086:1 20101:1 20125:1 20131:2 20144:1 20146:1 20150:1 20153:1 20167:1 20187:1 20202:1 20205:1 20208:3 20218:2 20219:2 20223:1 20224:1 20225:1 20244:1 20252:1 20259:1 20269:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20397:1 20405:1 20410:1 20437:1 20438:1 20452:1 20507:1 20518:1 20524:1 20547:1 20548:1 20550:2 20601:1 20606:1 20609:1 20620:1 20630:1 20659:2 20664:1 20666:2 20671:1 20672:1 20675:1 20681:1 20684:1 20696:1 20701:2 20704:2 20706:1 20709:1 20721:1 20730:1 20737:2 20742:1 20743:1 20755:1 20779:1 20792:1 20797:1 20832:1 20837:2 20860:2 20868:1 20920:3 20959:1 20962:1 20977:1 20989:1 20993:1 21004:1 21008:1 21020:2 21022:2 21036:1 21052:2 21055:1 21075:1 21084:1 21101:2 21115:2 21124:2 21160:1 21204:1 21205:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21250:1 21251:1 21269:1 21294:1 21321:3 21328:1 21338:1 21346:2 21354:1 21368:1 21397:1 21404:1 21405:1 21408:2 21410:1 21426:1 21427:1 21429:2 21452:1 21481:1 21482:1 21493:1 21536:1 21568:1 21572:1 21581:1 21598:2 21624:1 21669:1 21712:1 21741:1 21747:1 21767:1 21784:1 21800:1 21803:2 21809:1 21825:1 21845:2 21848:1 21849:6 21851:1 21883:1 21901:2 21910:1 21921:1 21931:1 21960:1 21983:1 21986:1 21990:1 22022:1 22026:1 22038:1 22043:1 22050:1 22053:2 22055:1 22084:1 22099:1 22104:1 22109:1 22179:1 22185:1 22190:2 22214:1 22219:1 22266:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22353:4 22363:1 22375:1 22384:1 22395:2 22415:1 22468:1 22477:1 22486:2 22508:1 22512:1 22530:2 22533:1 22548:1 22560:2 22577:1 22579:1 22600:2 22606:2 22609:1 22627:2 22628:1 22662:1 22667:3 22679:1 22697:1 22705:1 22723:1 22732:1 22733:1 22770:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:1 22853:2 22867:1 22914:3 22919:1 22924:1 22927:1 22928:3 23004:1 23006:1 23007:3 23027:5 23049:1 23071:1 23089:1 23113:1 23125:1 23133:1 23161:4 23165:1 23171:1 23172:1 23236:1 23241:1 23247:1 23255:1 23264:1 23268:2 23297:2 23311:3 23358:1 23365:1 23372:1 23376:1 23384:1 23399:1 23409:1 23430:1 23433:1 23436:1 23448:1 23458:2 23467:1 23477:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:1 23561:2 23562:1 23581:1 23613:1 23627:1 23704:1 23722:1 23747:2 23774:2 23790:1 23814:3 23831:1 23834:4 23868:1 23897:1 23912:2 23926:1 23927:3 23928:2 23935:1 23940:3 23941:4 23958:1 23977:1 23988:1 24003:1 24008:1 24021:1 24033:2 24047:1 24051:2 24058:1 24068:2 24078:1 24080:1 24089:1 24128:1 24192:2 24197:1 24199:2 24209:1 24212:2 24223:4 24235:1 24264:2 24284:1 24292:1 24305:2 24360:1 24370:1 24373:1 24375:2 24379:3 24388:1 24392:2 24404:1 24405:1 24421:1 24424:1 24427:1 24431:1 24441:3 24453:2 24471:1 24474:1 24494:1 24507:1 24553:1 24576:2 24623:2 24626:1 24636:4 24652:1 24655:1 24658:1 24661:1 24662:2 24715:1 24719:1 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24803:1 24810:1 24835:1 24898:1 24904:3 24914:1 24915:1 24918:2 24926:2 24937:1 24965:2 24992:1 24999:1 25026:1 25048:1 25051:2 25054:1 25074:1 25081:2 25099:1 25114:1 25142:1 25153:2 25157:1 25159:1 25176:2 25185:1 25186:1 25187:1 25206:1 25211:1 25231:2 25237:1 25238:1 25249:1 25263:1 25276:1 25277:1 25365:1 25395:1 25447:2 25451:1 25456:1 25462:2 25482:1 25483:1 25503:1 25512:1 25532:1 25539:1 25568:1 25617:1 25627:1 25631:1 25644:1 25659:1 25680:1 25681:1 25704:1 25705:2 25729:1 25757:1 25762:1 25777:1 25828:1 25835:1 25859:1 25871:1 25879:1 25893:1 25904:1 25920:1 25922:2 25933:1 25943:3 25945:1 25953:1 25957:2 25964:1 25974:1 25982:3 26013:2 26024:1 26041:1 26052:1 26068:1 26072:1 26092:2 26093:2 26095:2 26129:1 26130:1 26138:1 26139:1 26160:1 26172:1 26188:1 26214:1 26233:1 26244:1 26268:1 26276:1 26281:2 26284:1 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:1 26648:1 26649:1 26667:1 26670:2 26689:1 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26797:1 26845:1 26846:1 26857:2 26858:2 26871:1 26893:2 26906:1 26911:1 26915:2 26918:3 26924:1 26955:2 26965:2 26969:1 26981:1 27007:2 27015:2 27017:1 27023:1 27024:1 27025:1 27033:2 27089:1 27115:3 27116:2 27164:1 27165:1 27201:1 27203:1 27225:1 27233:1 27261:4 27267:1 27269:1 27293:1 27302:1 27318:1 27319:1 27350:1 27369:1 27384:1 27390:1 27400:1 27410:1 27424:1 27425:1 27430:2 27448:1 27471:1 27480:1 27496:1 27536:1 27551:2 27554:2 27555:1 27564:3 27571:1 27584:1 27613:2 27618:1 27635:1 27668:1 27704:1 27731:1 27739:1 27776:1 27808:1 27818:2 27820:1 27825:1 27857:1 27874:1 27877:2 27880:1 27881:1 27891:1 27897:1 27905:1 27914:1 27944:1 27952:1 27966:1 27968:1 27985:2 28001:1 28002:1 28014:3 28032:1 28097:2 28101:1 28109:1 28130:2 28138:1 28139:2 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28302:1 28303:1 28315:1 28322:1 28330:1 28337:1 28358:1 28393:1 28435:2 28462:2 28468:2 28495:1 28504:1 28522:1 28532:1 28536:1 28547:1 28562:1 28588:1 28589:1 28591:1 28596:2 28617:9 28622:1 28629:1 28643:1 28662:4 28663:2 28671:1 28684:2 28699:1 28719:1 28755:1 28806:3 28817:1 28827:2 28835:1 28838:1 28864:1 28868:1 28872:2 28889:1 28903:1 28907:1 28938:1 28964:1 28977:1 28997:1 29023:3 29025:1 29034:1 29046:2 29049:1 29055:1 29074:1 29090:1 29102:3 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29177:1 29189:1 29204:1 29205:1 29251:1 29265:1 29286:1 29297:1 29324:2 29333:1 29343:1 29366:1 29370:1 29376:2 29401:1 29453:1 29483:1 29519:2 29628:2 29695:4 29703:1 29706:1 29711:1 29738:3 29741:1 29743:1 29754:1 29760:1 29764:1 29773:1 29790:1 29795:1 29807:2 29818:1 29832:1 29846:1 29848:1 29851:1 29854:2 29864:1 29868:1 29889:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29980:1
17 14:2 24:1 25:1 41:1 57:2 78:1 100:1 110:1 148:1 157:3 167:1 174:1 180:1 212:1 214:1 226:1 241:2 253:1 258:2 282:2 318:1 324:1 330:1 377:1 380:2 381:1 393:1 399:1 452:1 464:2 470:1 542:1 555:1 591:1 599:1 602:1 648:1 657:1 660:2 671:1 677:2 726:1 765:1 771:1 796:2 811:4 867:2 869:1 904:1 908:2 912:4 913:2 915:1 917:2 921:4 924:1 925:1 926:1 931:1 935:1 936:2 940:1 942:2 945:2 960:1 966:2 967:1 968:1 972:1 1010:3 1036:1 1039:1 1040:2 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:1 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:1 1176:1 1186:1 1197:1 1260:2 1262:1 1283:1 1297:1 1301:1 1317:1 1318:1 1332:1 1334:1 1335:1 1365:1 1385:1 1387:1 1413:1 1481:1 1486:2 1513:1 1521:1 1528:1 1536:2 1543:1 1567:1 1571:1 1588:1 1603:1 1611:1 1614:1 1615:1 1634:1 1645:1 1663:1 1682:2 1691:1 1708:1 1716:1 1727:2 1741:1 1746:1 1761:1 1788:2 1797:1 1803:1 1812:3 1813:1 1824:1 1826:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1865:1 1874:1 1892:1 1921:1 1927:2 1935:1 1963:1 1979:1 1981:1 2000:1 2011:1 2024:1 2036:1 2041:1 2086:2 2128:1 2131:1 2154:1 2170:1 2204:1 2293:2 2339:1 2360:1 2366:1 2386:1 2406:2 2412:1 2421:1 2428:3 2435:2 2436:1 2448:4 2452:1 2455:2 2457:1 2459:1 2461:1 2470:1 2473:5 2483:1 2497:2 2518:1 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:1 2631:4 2636:1 2655:1 2680:2 2685:1 2686:1 2692:1 2701:1 2702:1 2706:2 2709:1 2713:1 2718:1 2728:2 2744:1 2758:1 2760:2 2784:1 2819:1 2833:1 2858:1 2871:1 2892:1 2908:1 2911:2 2978:1 2986:1 2989:2 2990:1 3007:1 3017:1 3020:1 3022:1 3062:3 3070:4 3080:3 3100:1 3119:1 3120:1 3131:2 3134:1 3150:1 3166:1 3183:1 3190:2 3197:2 3203:1 3219:1 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3331:1 3337:1 3338:2 3362:1 3369:1 3370:1 3422:1 3433:1 3502:1 3544:2 3586:1 3624:1 3627:2 3632:1 3635:1 3653:1 3654:3 3674:1 3676:1 3696:1 3724:1 3725:1 3729:1 3740:2 3746:1 3751:3 3762:1 3774:1 3781:1 3790:1 3802:1 3820:1 3833:1 3858:1 3863:1 3869:1 3872:1 3894:2 3914:1 3927:1 3953:1 3955:1 3984:2 3986:1 3991:1 4057:1 4062:3 4080:1 4114:1 4118:2 4122:1 4127:1 4137:1 4141:1 4171:1 4189:1 4191:1 4233:1 4238:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4334:1 4338:2 4348:1 4358:2 4374:2 4435:1 4437:1 4440:1 4467:1 4471:1 4484:1 4522:1 4526:1 4564:1 4575:3 4578:1 4579:1 4589:1 4597:1 4601:3 4627:1 4631:1 4655:1 4656:1 4667:2 4669:1 4701:1 4708:1 4718:1 4744:1 4769:1 4789:2 4794:1 4799:1 4801:4 4810:2 4827:1 4842:1 4867:1 4882:3 4901:2 4914:1 4933:1 4952:1 4953:1 4959:4 4967:1 4968:1 4978:1 4987:1 4992:3 4997:1 4999:4 5021:1 5031:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5117:1 5118:1 5130:2 5132:1 5138:1 5145:2 5149:2 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:1 5354:2 5361:1 5366:1 5375:2 5377:1 5416:2 5420:1 5440:1 5450:1 5458:1 5483:1 5495:1 5497:1 5511:1 5513:1 5529:1 5533:1 5541:1 5601:1 5618:1 5619:1 5625:1 5682:1 5723:1 5726:1 5728:1 5731:1 5740:1 5741:1 5749:1 5772:2 5798:3 5814:1 5856:1 5874:1 5877:1 5885:1 5893:2 5900:1 5911:1 5927:2 5929:1 5935:1 5951:1 5959:2 5970:1 5989:1 5999:1 6005:1 6011:1 6018:2 6022:1 6026:2 6027:8 6036:2 6055:2 6065:1 6082:1 6107:2 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:1 6188:1 6190:1 6202:3 6221:1 6239:1 6245:1 6264:2 6265:3 6268:1 6288:2 6293:1 6301:1 6306:1 6318:2 6367:2 6377:1 6382:2 6383:1 6391:1 6393:1 6424:2 6450:1 6467:1 6482:1 6497:1 6541:6 6555:1 6570:1 6580:2 6584:2 6586:1 6589:1 6590:1 6596:1 6600:2 6601:1 6616:1 6625:1 6632:1 6636:1 6644:1 6646:1 6647:1 6655:1 6664:1 6670:1 6682:1 6688:1 6750:1 6790:1 6809:1 6821:1 6826:2 6866:1 6868:3 6870:1 6881:1 6898:1 6912:1 6913:1 6923:1 6964:1 6970:1 6998:3 7022:1 7032:1 7049:1 7072:1 7073:1 7084:1 7096:1 7103:1 7104:1 7108:2 7196:1 7237:1 7248:1 7270:4 7290:2 7295:1 7316:1 7318:1 7327:1 7331:1 7337:1 7341:1 7372:1 7375:2 7397:1 7401:1 7415:1 7434:1 7444:1 7446:1 7463:1 7486:1 7493:1 7504:3 7509:1 7532:1 7548:1 7551:1 7554:1 7575:1 7585:1 7602:2 7607:1 7613:1 7621:1 7650:2 7664:2 7670:1 7696:1 7700:1 7721:1 7730:2 7755:1 7762:1 7763:3 7764:1 7781:1 7791:2 7792:4 7794:1 7797:1 7801:4 7802:1 7803:1 7810:2 7811:1 7813:1 7814:3 7816:1 7828:1 7849:1 7857:3 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8058:13 8082:4 8083:2 8091:1 8115:1 8127:1 8134:1 8157:1 8199:1 8233:2 8266:1 8288:1 8292:2 8320:1 8329:1 8346:1 8354:1 8374:1 8428:1 8468:4 8480:1 8482:2 8496:1 8501:4 8519:1 8525:1 8539:1 8560:1 8565:1 8571:1 8585:1 8590:1 8591:4 8629:2 8658:1 8664:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8744:2 8749:2 8754:1 8756:1 8765:1 8771:1 8790:2 8799:1 8804:1 8806:1 8830:1 8835:1 8872:2 8877:1 8900:4 8908:1 8955:1 8957:1 8958:1 8962:1 8964:4 8972:1 8980:1 9008:1 9009:1 9035:1 9078:1 9092:1 9098:2 9119:1 9158:2 9164:4 9177:1 9181:1 9209:1 9213:1 9268:1 9276:1 9288:1 9311:1 9324:1 9395:4 9396:1 9411:1 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9477:1 9488:1 9507:1 9527:1 9571:1 9586:1 9605:1 9615:1 9628:2 9667:2 9687:2 9699:1 9711:1 9737:1 9754:1 9780:2 9790:1 9830:1 9834:1 9865:1 9883:2 9914:1 9928:1 9935:1 9942:1 9954:2 9956:1 9963:1 9979:1 9981:1 10005:2 10037:1 10042:1 10061:3 10062:1 10064:2 10071:1 10073:1 10074:1 10089:1 10099:1 10110:1 10117:1 10123:1 10126:2 10135:2 10137:1 10156:1 10176:1 10177:1 10182:1 10188:1 10204:4 10221:1 10223:2 10319:1 10346:1 10399:1 10422:1 10425:1 10430:1 10468:1 10482:1 10492:1 10498:4 10502:1 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10550:1 10554:1 10556:1 10557:1 10560:2 10572:2 10580:1 10594:1 10597:3 10617:1 10647:1 10650:1 10681:1 10689:1 10696:1 10757:1 10761:3 10775:2 10787:1 10798:1 10801:1 10806:1 10820:1 10844:2 10857:1 10863:1 10876:1 10897:1 10899:1 10916:1 10920:1 10950:1 10964:4 10967:1 10969:1 10973:3 10979:1 10982:1 10996:1 11010:1 11011:1 11027:3 11035:1 11041:1 11050:2 11089:1 11096:1 11097:1 11114:1 11131:1 11172:1 11173:1 11187:1 11190:2 11216:1 11227:1 11233:1 11249:1 11258:4 11263:1 11267:1 11269:1 11282:1 11286:1 11313:1 11326:2 11354:1 11359:1 11371:1 11379:2 11407:1 11413:1 11442:1 11457:1 11472:1 11485:3 11486:1 11495:1 11499:1 11504:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:4 11560:1 11563:1 11567:4 11576:1 11583:1 11585:3 11618:1 11632:1 11642:1 11660:1 11721:3 11728:1 11732:1 11738:1 11747:1 11755:1 11765:1 11770:2 11771:1 11805:2 11808:1 11811:1 11836:1 11854:1 11856:1 11884:2 11888:1 11895:1 11899:1 11913:1 11922:1 11926:1 11927:1 11932:1 11943:1 11947:1 11959:2 11971:1 11996:1 12001:1 12010:1 12024:1 12066:1 12073:1 12078:1 12080:1 12124:1 12127:2 12157:1 12169:1 12193:1 12215:2 12221:1 12225:1 12231:1 12247:1 12250:1 12265:1 12277:1 12283:2 12290:1 12298:2 12342:1 12351:1 12364:1 12376:1 12395:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12476:1 12479:1 12480:1 12486:3 12490:1 12491:3 12492:1 12501:2 12503:1 12538:1 12556:1 12564:1 12583:1 12587:1 12591:1 12594:2 12596:1 12614:2 12620:1 12626:1 12629:1 12631:2 12666:1 12670:1 12678:1 12681:1 12683:1 12698:2 12700:1 12705:2 12712:2 12715:1 12729:1 12730:1 12743:1 12803:1 12806:1 12823:1 12831:2 12841:1 12842:1 12844:1 12850:1 12873:1 12883:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 13009:1 13013:2 13022:1 13033:1 13034:1 13095:2 13116:1 13117:1 13125:1 13129:1 13133:1 13150:2 13162:1 13182:1 13212:1 13233:4 13254:1 13256:1 13260:1 13263:1 13318:3 13355:2 13358:1 13366:3 13383:1 13386:1 13413:3 13452:1 13562:1 13665:1 13686:2 13723:4 13729:2 13732:1 13733:1 13735:1 13748:1 13763:3 13806:1 13808:1 13811:1 13849:1 13853:1 13867:1 13891:1 13949:3 13957:1 14067:2 14078:1 14102:1 14106:2 14121:1 14127:2 14131:1 14177:1 14178:6 14211:1 14223:1 14224:1 14227:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14293:1 14299:1 14306:1 14329:1 14349:2 14353:1 14383:3 14405:2 14503:1 14523:1 14529:1 14533:1 14577:1 14598:2 14621:1 14651:1 14668:1 14670:1 14674:1 14694:1 14695:1 14700:1 14708:1 14715:1 14724:1 14727:3 14736:1 14737:1 14739:1 14750:1 14776:1 14779:1 14781:1 14785:1 14792:1 14796:1 14799:1 14810:1 14831:1 14832:1 14871:1 14885:1 14888:1 14903:1 14906:1 14909:1 14911:3 14928:1 14931:1 14934:1 14944:2 14945:1 14975:1 14993:1 14998:1 15007:1 15015:1 15022:1 15037:1 15038:1 15058:1 15068:2 15076:1 15079:1 15104:1 15116:1 15125:1 15129:1 15149:1 15164:1 15176:1 15253:1 15257:1 15258:3 15264:1 15297:1 15305:1 15311:1 15317:1 15319:3 15322:1 15348:8 15355:1 15365:1 15366:1 15367:1 15370:2 15371:22 15385:1 15388:2 15401:1 15425:1 15432:3 15438:1 15441:1 15476:1 15492:1 15540:1 15551:2 15561:1 15567:2 15572:1 15576:2 15581:1 15588:1 15617:1 15620:3 15674:1 15676:2 15690:1 15700:1 15709:1 15719:2 15746:2 15759:1 15778:1 15780:1 15785:1 15793:1 15798:1 15828:1 15843:2 15853:1 15857:1 15863:1 15866:5 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15921:1 15938:1 15958:2 15993:1 16014:1 16021:1 16056:1 16063:1 16098:1 16099:1 16102:2 16103:1 16177:1 16195:2 16204:2 16218:1 16224:1 16225:1 16247:1 16249:2 16250:1 16268:1 16273:1 16280:1 16284:1 16302:1 16318:1 16345:2 16347:1 16348:1 16350:1 16417:1 16449:1 16458:1 16460:1 16481:1 16485:1 16488:1 16490:1 16500:7 16553:3 16567:2 16569:1 16572:2 16620:1 16623:2 16677:1 16681:1 16682:1 16718:3 16725:1 16729:2 16735:1 16793:2 16795:1 16823:1 16827:1 16836:1 16840:1 16879:1 16895:1 16904:1 16923:1 16944:1 16945:1 16983:2 16998:1 17018:1 17022:1 17027:1 17032:1 17043:1 17050:1 17078:1 17083:1 17086:1 17103:1 17110:1 17114:2 17116:1 17128:1 17144:1 17166:1 17179:2 17185:1 17191:2 17200:1 17203:2 17208:1 17225:1 17253:1 17272:1 17273:1 17276:1 17278:2 17280:1 17297:1 17334:1 17346:2 17360:1 17365:1 17388:2 17411:1 17447:1 17459:1 17467:1 17474:1 17516:1 17535:1 17547:1 17548:1 17561:2 17576:1 17583:1 17585:1 17634:1 17676:1 17711:1 17715:1 17724:1 17726:1 17728:2 17743:2 17756:1 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:1 17820:1 17874:1 17892:1 17906:1 17918:1 17932:1 17940:1 17946:3 17952:2 17990:1 18043:2 18044:1 18052:1 18065:1 18082:1 18085:1 18116:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:2 18299:1 18301:1 18332:1 18335:1 18338:1 18368:1 18374:1 18382:1 18388:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:5 18475:2 18492:1 18523:1 18535:1 18550:1 18563:1 18598:1 18621:1 18659:1 18681:1 18731:1 18756:2 18759:1 18793:1 18811:1 18817:1 18830:1 18841:1 18858:1 18863:1 18864:3 18874:1 18895:1 18903:1 18933:1 18951:1 18965:1 18976:1 18986:1 18996:1 19001:1 19025:1 19039:1 19067:1 19081:1 19085:3 19112:1 19118:1 19145:1 19146:1 19197:1 19203:1 19221:1 19239:1 19242:2 19260:1 19262:1931 19265:1 19316:1 19320:1 19392:1 19398:1 19401:1 19403:1 19474:1 19479:2 19486:1 19578:1 19594:2 19620:1 19627:1 19650:1 19663:2 19670:2 19697:1 19707:1 19739:1 19754:1 19758:1 19776:3 19781:1 19812:1 19829:1 19861:1 19869:2 19874:1 19908:2 19914:1 19920:2 19924:1 19957:1 19975:1 20004:1 20006:4 20035:1 20086:1 20101:1 20125:1 20131:2 20144:1 20146:1 20150:1 20153:1 20167:1 20187:1 20202:1 20205:1 20208:3 20218:2 20219:2 20223:1 20224:1 20225:1 20244:1 20252:1 20259:1 20269:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20397:1 20405:1 20410:1 20437:1 20438:1 20452:1 20507:1 20518:1 20524:1 20547:1 20548:1 20550:2 20601:1 20606:1 20609:1 20618:1 20620:1 20630:1 20659:2 20664:1 20666:3 20671:1 20672:1 20675:1 20681:1 20684:1 20696:1 20701:2 20704:2 20706:1 20709:1 20721:1 20730:1 20737:2 20742:1 20743:1 20755:1 20779:1 20792:1 20797:1 20832:1 20837:2 20860:2 20868:1 20920:3 20959:1 20962:1 20977:1 20987:1 20989:1 20993:1 21004:1 21008:1 21020:2 21022:2 21036:1 21052:2 21055:1 21075:1 21084:1 21101:2 21115:2 21124:2 21160:1 21179:1 21204:1 21205:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21250:1 21251:1 21263:1 21269:1 21294:1 21321:3 21328:1 21338:1 21346:2 21354:1 21368:1 21397:1 21404:1 21405:1 21408:2 21410:1 21426:1 21427:1 21429:2 21452:1 21481:1 21482:1 21493:1 21536:1 21568:1 21572:1 21581:1 21598:2 21624:1 21669:1 21701:1 21712:1 21741:1 21747:1 21767:1 21784:1 21800:1 21803:2 21809:1 21825:1 21845:2 21848:1 21849:7 21851:1 21870:1 21883:1 21901:2 21910:1 21921:1 21931:1 21942:1 21960:1 21983:1 21986:1 21990:1 22022:1 22026:1 22038:1 22043:1 22050:1 22053:2 22055:1 22084:1 22099:1 22104:1 22109:1 22179:2 22185:1 22190:2 22214:1 22219:1 22266:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22353:4 22363:1 22375:1 22384:1 22395:2 22415:1 22468:1 22477:1 22486:2 22508:1 22512:1 22530:2 22533:1 22548:1 22554:1 22560:2 22577:1 22579:1 22600:2 22606:2 22609:1 22627:2 22628:1 22662:1 22667:3 22679:1 22697:1 22705:1 22723:1 22732:1 22733:1 22763:1 22770:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:1 22853:2 22867:1 22914:3 22919:1 22924:1 22927:1 22928:3 23003:1 23004:1 23006:1 23007:4 23027:5 23049:1 23071:1 23089:1 23113:1 23125:1 23133:1 23161:4 23165:1 23171:1 23172:1 23236:1 23241:1 23247:1 23255:1 23264:1 23268:2 23297:2 23311:3 23358:2 23365:1 23372:1 23376:1 23384:1 23399:1 23409:1 23410:1 23413:1 23430:1 23433:1 23436:1 23448:1 23458:2 23467:1 23477:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:1 23561:2 23562:1 23581:1 23613:1 23623:1 23627:1 23704:1 23722:1 23747:2 23774:2 23790:1 23814:3 23831:1 23834:4 23868:1 23897:1 23912:3 23926:1 23927:3 23928:2 23935:1 23938:1 23940:3 23941:4 23958:1 23977:1 23988:1 24003:1 24008:1 24021:1 24033:2 24047:1 24051:2 24058:1 24068:2 24078:1 24080:1 24089:1 24128:1 24157:1 24160:1 24192:2 24197:1 24199:2 24209:1 24212:2 24223:4 24235:1 24249:1 24264:2 24284:1 24292:1 24305:2 24360:1 24370:1 24373:1 24375:2 24379:3 24388:1 24392:2 24404:1 24405:1 24421:1 24424:1 24427:1 24431:1 24441:3 24453:2 24471:1 24474:1 24494:1 24507:1 24553:1 24560:1 24576:2 24623:2 24626:1 24636:4 24652:1 24655:1 24658:1 24661:1 24662:2 24715:1 24719:1 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24803:1 24810:1 24835:1 24898:1 24904:4 24914:1 24915:1 24918:2 24926:2 24937:1 24965:2 24992:1 24999:1 25026:1 25044:1 25048:1 25051:2 25054:1 25074:1 25081:2 25099:1 25114:1 25142:1 25153:2 25157:1 25159:1 25176:2 25185:1 25186:1 25187:1 25206:1 25211:1 25231:2 25237:1 25238:1 25249:1 25263:1 25276:1 25277:1 25365:1 25395:1 25447:2 25451:1 25456:1 25462:2 25482:1 25483:1 25503:1 25512:1 25532:1 25539:1 25568:1 25617:1 25627:1 25631:1 25644:1 25652:1 25659:1 25680:1 25681:1 25704:1 25705:2 25729:1 25757:1 25762:1 25777:1 25828:1 25835:1 25859:1 25871:1 25879:1 25893:1 25904:1 25920:1 25922:2 25933:1 25943:3 25945:1 25953:1 25957:2 25964:1 25974:1 25982:3 25986:1 26013:2 26024:1 26041:1 26052:1 26068:1 26072:1 26092:2 26093:2 26095:2 26129:1 26130:1 26138:1 26139:1 26156:1 26160:1 26172:1 26188:1 26214:1 26233:2 26244:1 26268:1 26276:1 26281:2 26284:1 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26387:1 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:1 26648:1 26649:1 26667:1 26670:2 26689:1 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26797:1 26845:1 26846:1 26857:2 26858:2 26871:1 26893:2 26906:1 26911:1 26915:2 26916:1 26918:3 26924:1 26955:2 26965:2 26969:1 26981:1 27006:1 27007:2 27015:2 27017:1 27023:1 27024:1 27025:1 27033:2 27089:1 27115:3 27116:2 27164:1 27165:1 27200:1 27201:1 27203:1 27225:1 27233:1 27261:4 27267:1 27269:1 27293:1 27302:1 27318:1 27319:1 27350:1 27369:1 27384:1 27386:1 27390:1 27400:1 27410:1 27424:1 27425:1 27430:2 27448:1 27471:1 27480:1 27496:1 27536:1 27551:2 27554:2 27555:1 27564:3 27571:1 27584:1 27613:2 27618:1 27635:1 27668:1 27669:1 27704:1 27731:1 27739:1 27776:1 27808:1 27818:2 27820:1 27825:1 27857:1 27874:1 27877:2 27880:1 27881:1 27891:1 27897:1 27905:1 27914:1 27944:1 27952:1 27966:1 27968:1 27985:2 28001:1 28002:1 28014:3 28032:1 28097:2 28101:1 28109:1 28130:2 28138:1 28139:2 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28302:1 28303:1 28315:1 28322:1 28330:1 28337:1 28358:1 28393:1 28435:2 28462:2 28468:2 28495:1 28504:1 28522:1 28532:1 28536:1 28547:1 28555:1 28562:1 28588:1 28589:1 28591:1 28596:2 28617:9 28622:1 28629:1 28633:1 28643:1 28662:4 28663:2 28671:1 28684:2 28699:1 28719:1 28725:1 28755:1 28806:3 28817:1 28827:2 28835:1 28838:1 28864:1 28868:1 28872:2 28889:1 28903:1 28907:1 28938:1 28964:1 28977:1 28997:1 29023:3 29025:1 29034:1 29046:2 29049:1 29055:1 29074:1 29090:1 29102:3 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29177:1 29189:1 29204:1 29205:1 29251:1 29265:1 29286:1 29297:1 29324:2 29333:1 29343:1 29366:1 29370:1 29376:2 29401:1 29453:1 29483:1 29519:2 29556:1 29628:2 29695:4 29703:1 29706:1 29711:1 29734:1 29738:3 29741:1 29743:1 29754:1 29760:1 29764:1 29773:1 29790:1 29795:1 29807:2 29818:1 29832:1 29846:1 29848:2 29851:1 29854:3 29864:1 29868:1 29889:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29980:1
17 14:2 24:1 25:1 41:1 57:2 78:1 100:1 110:1 148:1 157:3 167:1 174:1 180:1 212:1 213:1 214:1 226:1 241:2 253:1 258:2 282:2 307:1 318:1 324:1 330:1 377:1 380:2 381:1 393:1 399:1 452:1 462:1 464:2 470:1 542:1 555:1 591:1 599:1 602:1 648:1 657:1 660:2 671:1 677:2 726:1 765:1 771:1 788:1 796:2 811:4 867:2 869:1 904:1 908:2 912:4 913:2 915:1 917:2 921:4 924:1 925:1 926:1 931:1 935:1 936:2 940:1 942:2 945:2 960:1 966:2 967:1 968:1 972:1 1010:3 1036:1 1039:1 1040:2 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:1 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:1 1176:1 1186:1 1193:1 1197:1 1260:2 1262:1 1283:1 1297:1 1301:1 1317:1 1318:1 1332:1 1334:1 1335:1 1365:1 1385:1 1387:1 1413:1 1460:1 1481:1 1486:2 1513:1 1521:1 1528:1 1536:2 1543:1 1567:1 1571:1 1588:3 1600:1 1603:1 1611:1 1614:1 1615:1 1634:1 1645:1 1663:1 1677:1 1682:2 1691:2 1708:1 1716:1 1727:2 1741:1 1746:1 1761:1 1788:2 1797:1 1803:1 1812:3 1813:1 1824:1 1826:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1865:1 1874:1 1892:1 1921:1 1927:2 1935:1 1963:1 1979:1 1981:1 2000:1 2011:1 2024:1 2036:1 2041:1 2086:2 2128:1 2131:2 2154:1 2170:1 2204:1 2293:2 2330:1 2339:1 2360:1 2366:1 2386:1 2406:2 2412:1 2421:1 2428:4 2435:2 2436:1 2448:4 2452:1 2455:2 2457:1 2459:1 2461:1 2465:1 2470:1 2473:5 2483:1 2497:2 2518:2 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:1 2631:4 2636:1 2655:1 2680:2 2685:1 2686:1 2692:1 2701:1 2702:1 2706:2 2709:1 2713:1 2718:1 2728:2 2744:1 2758:1 2760:2 2784:1 2819:1 2833:1 2858:1 2871:1 2892:1 2908:1 2911:2 2978:1 2986:1 2989:2 2990:2 3007:1 3017:1 3020:1 3022:1 3043:1 3062:3 3070:4 3080:3 3100:1 3119:1 3120:1 3131:2 3134:1 3150:1 3166:1 3183:1 3190:2 3197:2 3203:1 3219:1 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3331:1 3337:1 3338:2 3362:1 3369:1 3370:1 3422:1 3433:1 3502:1 3544:2 3586:1 3624:1 3627:2 3632:1 3635:1 3653:1 3654:3 3674:1 3676:1 3677:1 3696:1 3724:1 3725:1 3729:1 3740:2 3746:1 3751:3 3762:1 3774:1 3781:1 3790:2 3802:1 3820:1 3833:1 3858:1 3863:1 3869:1 3872:1 3894:2 3914:1 3927:1 3953:1 3955:1 3984:2 3986:1 3991:1 4057:1 4062:3 4080:1 4114:1 4118:2 4122:1 4127:1 4137:1 4141:1 4170:1 4171:1 4189:1 4191:1 4233:1 4238:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4334:1 4338:2 4348:1 4358:2 4374:2 4435:1 4437:1 4440:1 4458:1 4467:1 4471:1 4484:1 4522:1 4526:2 4564:1 4575:3 4578:1 4579:1 4589:1 4597:1 4601:3 4627:1 4631:1 4655:1 4656:1 4667:2 4669:1 4701:1 4708:1 4718:1 4744:1 4769:1 4789:2 4790:1 4794:1 4799:1 4801:4 4810:2 4822:1 4827:1 4842:1 4867:1 4882:3 4901:2 4914:1 4926:1 4933:1 4952:1 4953:1 4959:5 4967:1 4968:1 4978:1 4987:1 4992:3 4997:1 4999:4 5021:1 5029:1 5031:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5117:1 5118:1 5130:2 5132:1 5138:1 5145:2 5149:2 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:1 5354:2 5361:1 5366:1 5375:2 5377:1 5416:2 5420:1 5440:1 5450:1 5458:1 5483:1 5495:1 5497:1 5511:1 5513:1 5529:1 5533:1 5541:1 5601:1 5618:1 5619:1 5625:1 5651:1 5682:1 5723:1 5726:1 5728:1 5731:1 5740:1 5741:1 5749:1 5772:2 5798:3 5814:1 5856:1 5874:1 5877:1 5885:1 5893:2 5900:1 5911:1 5927:2 5929:1 5935:1 5951:1 5959:2 5970:1 5989:1 5999:1 6005:1 6011:1 6018:2 6022:1 6026:2 6027:8 6036:2 6055:2 6065:1 6082:1 6107:2 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:1 6188:1 6190:1 6202:3 6221:1 6239:1 6245:1 6264:2 6265:3 6268:1 6288:2 6293:1 6301:1 6306:1 6318:2 6343:1 6367:2 6377:1 6382:2 6383:1 6391:1 6393:1 6424:2 6450:1 6467:1 6482:1 6497:1 6499:1 6541:6 6555:1 6570:1 6580:2 6584:2 6586:1 6589:1 6590:1 6596:1 6600:2 6601:2 6602:1 6616:1 6625:1 6632:1 6636:1 6644:1 6646:1 6647:1 6655:1 6664:2 6670:1 6682:1 6688:1 6750:1 6790:1 6809:1 6821:1 6826:2 6866:1 6868:3 6870:1 6881:1 6898:1 6912:1 6913:1 6923:1 6964:1 6970:1 6998:3 7022:1 7032:1 7049:1 7072:1 7073:1 7084:1 7096:1 7103:1 7104:1 7108:2 7196:1 7237:1 7248:1 7270:4 7290:2 7295:1 7316:1 7318:1 7327:1 7331:1 7337:1 7341:1 7372:2 7375:2 7397:1 7401:1 7415:1 7434:1 7444:1 7446:1 7463:1 7486:1 7493:1 7504:3 7509:1 7532:1 7548:1 7551:1 7554:1 7575:1 7585:1 7602:2 7607:1 7613:1 7621:1 7650:2 7664:2 7670:1 7696:1 7700:2 7721:1 7730:2 7755:2 7762:1 7763:3 7764:1 7781:1 7791:2 7792:4 7794:1 7797:1 7801:4 7802:1 7803:1 7810:2 7811:1 7813:1 7814:3 7816:1 7828:1 7849:1 7857:3 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8058:14 8082:4 8083:2 8091:1 8115:1 8127:1 8134:1 8157:1 8199:1 8233:2 8266:1 8288:1 8292:2 8320:1 8329:1 8346:1 8354:1 8374:1 8428:1 8468:4 8480:1 8482:2 8496:1 8501:5 8519:1 8525:1 8539:1 8560:1 8565:1 8571:1 8585:1 8590:1 8591:5 8629:2 8658:1 8664:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8744:2 8749:2 8754:1 8756:1 8765:1 8771:1 8790:2 8799:1 8804:1 8806:1 8830:1 8835:1 8872:2 8877:1 8900:4 8908:1 8955:1 8957:1 8958:1 8962:1 8964:4 8972:1 8980:1 9008:1 9009:1 9035:1 9078:1 9092:1 9098:2 9119:1 9158:2 9164:4 9177:1 9181:1 9209:1 9213:1 9268:1 9276:1 9288:1 9311:1 9324:1 9395:4 9396:1 9411:2 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9477:1 9488:1 9507:1 9527:1 9571:1 9586:1 9605:1 9615:1 9628:2 9666:1 9667:2 9687:3 9699:1 9711:1 9737:1 9754:1 9780:2 9790:1 9813:1 9830:1 9834:1 9865:1 9883:2 9914:1 9928:1 9935:1 9942:1 9954:2 9956:1 9963:1 9979:1 9981:1 10005:3 10037:2 10042:1 10061:3 10062:1 10064:2 10071:1 10073:1 10074:1 10089:1 10099:1 10110:1 10117:1 10123:1 10126:2 10135:2 10137:1 10156:1 10176:1 10177:1 10182:1 10188:1 10204:4 10221:1 10223:2 10319:1 10346:1 10399:1 10422:1 10425:1 10430:1 10468:1 10482:1 10492:2 10498:4 10502:1 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10550:1 10554:1 10556:1 10557:1 10560:2 10572:2 10580:1 10594:1 10597:3 10617:1 10620:1 10647:1 10650:1 10681:1 10689:1 10696:1 10738:1 10746:1 10757:1 10761:3 10772:1 10775:2 10787:1 10798:1 10801:1 10806:1 10820:1 10844:2 10857:1 10863:1 10876:1 10897:1 10899:1 10916:1 10920:1 10950:1 10964:4 10967:1 10969:1 10973:3 10979:1 10982:1 10996:1 11010:1 11011:1 11027:3 11035:1 11041:1 11050:2 11089:1 11096:1 11097:1 11114:2 11131:1 11172:1 11173:1 11187:1 11190:2 11216:1 11227:1 11233:1 11249:1 11258:4 11263:1 11267:2 11269:1 11282:1 11286:2 11313:1 11326:2 11354:1 11359:1 11371:1 11379:2 11407:1 11413:1 11442:1 11457:1 11470:1 11472:1 11485:3 11486:1 11495:1 11499:1 11504:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:4 11560:1 11563:1 11567:4 11576:1 11583:1 11585:3 11618:1 11632:1 11642:1 11660:1 11721:3 11728:1 11732:1 11738:1 11740:1 11747:1 11755:1 11765:1 11770:2 11771:1 11802:1 11805:2 11808:1 11811:1 11836:1 11854:1 11856:1 11884:2 11888:1 11895:1 11899:1 11913:1 11922:1 11926:1 11927:1 11932:1 11943:1 11947:1 11959:2 11971:1 11996:1 12001:1 12010:1 12024:1 12066:1 12073:1 12078:1 12080:1 12124:1 12127:2 12157:2 12169:1 12193:1 12215:2 12221:1 12225:1 12231:1 12247:1 12250:2 12265:1 12277:1 12282:1 12283:3 12290:1 12298:2 12342:1 12351:1 12364:1 12376:1 12395:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12476:1 12479:1 12480:1 12486:3 12490:1 12491:3 12492:1 12501:2 12503:1 12538:1 12556:1 12564:1 12583:1 12584:1 12587:1 12591:1 12594:2 12596:1 12614:2 12620:1 12626:1 12629:1 12631:2 12666:1 12670:1 12678:1 12681:1 12683:1 12698:2 12700:1 12705:2 12712:2 12715:1 12729:1 12730:1 12743:1 12803:1 12806:1 12823:1 12831:2 12838:1 12841:1 12842:1 12844:1 12850:1 12861:1 12873:1 12883:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 13009:1 13013:2 13022:1 13033:1 13034:1 13095:2 13116:2 13117:1 13125:1 13129:1 13133:1 13150:2 13162:1 13182:1 13212:1 13233:4 13254:1 13256:1 13260:1 13263:1 13318:3 13355:2 13358:1 13366:3 13383:1 13386:2 13413:3 13452:1 13562:1 13665:1 13686:2 13723:4 13729:2 13732:1 13733:1 13735:1 13748:1 13763:3 13806:1 13808:1 13811:1 13849:1 13853:1 13867:1 13891:1 13949:3 13957:1 14067:2 14078:1 14085:1 14102:1 14106:2 14115:1 14121:1 14127:2 14131:1 14165:1 14177:1 14178:6 14211:1 14223:1 14224:1 14227:1 14244:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14293:1 14299:1 14306:1 14329:1 14349:2 14353:1 14383:4 14405:2 14503:1 14523:1 14529:1 14533:1 14577:1 14593:1 14598:2 14621:1 14651:1 14668:1 14670:1 14674:1 14694:1 14695:1 14700:1 14708:1 14715:1 14724:1 14727:3 14736:1 14737:1 14739:1 14750:1 14776:1 14779:1 14781:1 14785:1 14790:1 14792:1 14796:1 14799:1 14810:1 14831:1 14832:1 14871:1 14885:1 14888:1 14903:1 14906:1 14909:1 14911:3 14928:1 14931:1 14934:1 14944:2 14945:1 14975:1 14993:1 14998:1 15007:1 15015:1 15022:1 15037:1 15038:1 15058:1 15068:2 15076:1 15079:1 15104:1 15110:1 15116:1 15125:1 15129:1 15149:1 15164:1 15176:1 15253:1 15257:1 15258:3 15264:1 15297:1 15305:1 15311:1 15317:1 15319:3 15322:1 15348:8 15355:1 15365:1 15366:1 15367:1 15370:3 15371:22 15385:1 15388:2 15401:1 15425:1 15432:3 15438:1 15441:1 15476:1 15492:1 15540:1 15551:2 15561:1 15567:2 15572:1 15576:2 15581:1 15588:1 15617:1 15620:3 15674:1 15676:2 15690:1 15700:1 15709:1 15719:2 15746:2 15759:2 15778:2 15780:1 15785:1 15793:1 15798:1 15828:1 15843:2 15844:1 15853:1 15857:1 15863:1 15866:5 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15921:1 15938:1 15958:2 15993:1 16014:1 16021:1 16056:1 16063:1 16098:1 16099:1 16102:2 16103:1 16177:1 16195:2 16204:2 16218:1 16224:1 16225:1 16247:1 16249:2 16250:1 16268:1 16273:1 16280:1 16284:1 16302:1 16318:1 16345:2 16347:1 16348:1 16350:1 16400:1 16417:1 16426:1 16449:1 16458:1 16460:1 16481:1 16485:1 16488:1 16490:1 16500:7 16553:3 16567:2 16569:1 16572:2 16620:1 16623:3 16677:1 16681:1 16682:1 16718:3 16725:1 16729:2 16735:1 16763:1 16793:2 16795:1 16814:1 16823:1 16827:1 16836:1 16840:1 16879:1 16895:1 16904:1 16923:1 16944:1 16945:1 16983:2 16998:1 17018:1 17022:1 17024:1 17027:1 17032:1 17043:1 17050:1 17078:1 17083:1 17086:1 17103:1 17110:1 17114:2 17116:1 17128:1 17144:1 17166:1 17179:2 17185:1 17191:2 17200:1 17203:2 17208:1 17225:1 17253:1 17272:1 17273:1 17276:1 17278:2 17280:1 17297:1 17334:1 17346:2 17360:1 17365:1 17388:2 17411:1 17447:1 17459:1 17467:1 17474:1 17516:1 17535:1 17547:1 17548:1 17561:2 17576:1 17583:1 17585:1 17634:1 17676:1 17711:1 17715:1 17724:1 17726:1 17728:2 17743:2 17756:1 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:1 17820:1 17874:1 17892:1 17906:1 17918:1 17932:1 17940:1 17946:3 17952:3 17990:1 18043:2 18044:1 18052:1 18065:1 18082:1 18085:1 18116:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:2 18299:1 18301:1 18332:1 18335:1 18338:1 18368:1 18370:1 18374:1 18382:1 18388:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:5 18475:2 18492:1 18523:1 18535:1 18550:1 18563:1 18598:1 18611:1 18621:1 18659:1 18681:1 18731:1 18756:2 18759:1 18793:1 18811:1 18817:1 18830:1 18841:1 18858:1 18863:1 18864:3 18874:1 18895:1 18903:1 18933:1 18951:1 18965:1 18976:1 18986:1 18996:1 19001:1 19025:1 19039:1 19067:1 19081:1 19085:3 19093:1 19112:1 19118:1 19145:1 19146:1 19197:1 19203:1 19221:1 19239:1 19242:2 19260:1 19262:1997 19265:1 19316:1 19320:1 19392:1 19398:1 19401:1 19403:1 19474:1 19479:2 19486:1 19541:1 19578:1 19594:2 19620:1 19627:1 19650:1 19663:3 19670:2 19697:1 19707:1 19739:1 19754:1 19758:1 19776:3 19781:1 19812:1 19829:1 19861:1 19869:3 19874:1 19908:2 19914:1 19920:2 19924:1 19957:1 19975:1 20004:1 20006:4 20035:1 20086:1 20101:1 20125:1 20131:2 20144:1 20146:1 20150:1 20153:1 20167:1 20187:1 20202:1 20205:1 20208:3 20218:2 20219:2 20223:1 20224:1 20225:1 20226:1 20244:1 20252:1 20259:1 20269:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20397:1 20405:1 20410:1 20437:1 20438:1 20452:1 20507:1 20518:1 20524:1 20547:1 20548:1 20550:2 20601:1 20606:1 20609:1 20618:1 20620:1 20630:1 20659:2 20664:1 20666:3 20671:1 20672:1 20675:1 20681:1 20684:1 20696:1 20701:2 20704:2 20706:2 20709:1 20721:1 20730:1 20737:2 20742:2 20743:1 20752:1 20755:1 20779:1 20792:1 20797:1 20832:1 20837:2 20860:2 20868:1 20920:3 20959:1 20962:1 20977:1 20987:1 20989:1 20993:1 21004:1 21008:1 21020:2 21022:2 21036:1 21052:2 21055:1 21075:1 21084:1 21101:2 21115:2 21124:2 21160:1 21179:1 21204:1 21205:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21250:1 21251:1 21263:1 21269:1 21294:1 21321:3 21328:1 21332:1 21338:1 21346:2 21354:1 21368:1 21397:1 21404:1 21405:1 21408:2 21410:1 21426:1 21427:1 21429:2 21452:1 21481:2 21482:1 21493:1 21536:1 21568:1 21572:1 21581:1 21598:2 21624:1 21665:1 21669:1 21701:1 21712:1 21741:1 21747:1 21767:1 21784:1 21800:1 21803:2 21809:1 21825:1 21845:2 21848:1 21849:7 21851:1 21870:1 21883:1 21901:2 21910:1 21921:1 21931:1 21942:1 21960:1 21983:1 21986:1 21990:1 22022:1 22026:1 22038:1 22043:1 22050:1 22053:2 22055:1 22084:1 22099:1 22104:1 22109:1 22141:1 22179:3 22185:1 22190:2 22214:1 22219:1 22266:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22353:4 22363:1 22375:1 22384:1 22395:2 22396:1 22415:1 22468:1 22477:1 22486:2 22508:1 22512:1 22530:2 22533:1 22548:1 22554:1 22560:2 22577:1 22579:1 22600:2 22606:2 22609:1 22627:2 22628:2 22662:1 22667:3 22679:1 22697:1 22705:1 22723:1 22732:1 22733:1 22763:1 22770:1 22779:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:1 22853:2 22867:1 22914:3 22919:1 22924:1 22927:1 22928:3 22974:1 22985:1 23003:1 23004:1 23006:1 23007:4 23013:1 23027:5 23049:1 23071:1 23089:1 23113:1 23125:1 23133:1 23161:4 23165:1 23171:1 23172:1 23236:1 23241:1 23247:1 23255:1 23264:1 23268:2 23297:2 23311:3 23358:2 23365:1 23372:1 23376:1 23382:1 23384:1 23399:1 23409:1 23410:1 23413:1 23430:1 23433:1 23436:1 23448:1 23458:2 23467:1 23477:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:1 23561:2 23562:1 23581:1 23613:1 23623:1 23627:1 23704:1 23722:1 23747:2 23774:2 23790:1 23814:3 23831:1 23834:4 23868:1 23897:1 23912:3 23926:1 23927:3 23928:2 23935:1 23938:1 23940:3 23941:4 23958:1 23977:1 23988:1 24003:1 24008:1 24021:1 24033:2 24047:1 24051:2 24058:1 24068:2 24078:1 24080:1 24089:1 24128:1 24157:1 24160:1 24192:2 24197:1 24199:2 24209:1 24212:2 24223:4 24235:1 24249:1 24264:2 24284:1 24292:1 24305:2 24360:1 24370:1 24373:1 24375:2 24379:3 24383:1 24388:1 24392:2 24404:1 24405:1 24421:1 24424:1 24427:1 24431:1 24441:3 24453:2 24471:1 24474:1 24494:1 24507:1 24544:1 24553:1 24560:1 24576:2 24623:2 24626:1 24636:4 24652:1 24655:1 24658:1 24661:1 24662:2 24715:1 24719:1 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24803:1 24810:1 24835:1 24898:1 24904:4 24914:1 24915:1 24918:2 24926:2 24937:1 24965:2 24992:1 24999:1 25026:1 25044:1 25048:1 25051:2 25054:1 25074:1 25081:3 25099:1 25114:1 25142:1 25153:2 25157:1 25159:1 25176:2 25185:1 25186:1 25187:1 25206:1 25211:1 25231:2 25237:1 25238:1 25249:1 25263:1 25276:1 25277:1 25365:1 25395:1 25447:2 25451:2 25456:1 25462:2 25482:1 25483:1 25503:1 25512:1 25532:1 25539:1 25568:1 25617:1 25627:1 25631:2 25644:1 25652:1 25659:1 25680:1 25681:1 25704:1 25705:2 25729:1 25731:1 25757:1 25762:1 25777:1 25828:1 25835:1 25859:1 25871:1 25879:1 25893:2 25904:1 25920:1 25922:2 25933:2 25943:3 25945:1 25953:1 25957:2 25964:1 25974:1 25982:3 25986:1 26013:2 26024:1 26041:1 26052:1 26068:1 26072:1 26092:2 26093:2 26095:2 26129:1 26130:2 26138:1 26139:1 26156:1 26160:1 26172:1 26188:1 26214:1 26233:2 26244:1 26268:1 26276:1 26281:2 26284:1 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26387:1 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:2 26648:1 26649:1 26667:1 26670:2 26689:1 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26797:1 26799:1 26845:1 26846:1 26857:2 26858:2 26871:1 26893:2 26906:1 26911:1 26915:2 26916:1 26918:3 26924:1 26955:2 26965:2 26969:1 26981:1 27006:2 27007:2 27015:2 27017:1 27023:1 27024:1 27025:2 27033:2 27089:1 27115:3 27116:2 27164:1 27165:1 27200:1 27201:1 27203:1 27225:1 27233:1 27261:4 27267:1 27269:1 27293:1 27302:1 27318:1 27319:1 27350:1 27369:1 27384:1 27386:2 27390:1 27400:1 27410:1 27424:1 27425:1 27430:2 27448:1 27451:1 27471:1 27480:1 27496:1 27536:1 27551:2 27554:2 27555:1 27564:3 27571:1 27584:1 27613:2 27618:1 27635:1 27668:1 27669:2 27704:1 27713:1 27731:1 27739:1 27776:1 27808:1 27818:2 27820:1 27825:1 27831:1 27857:1 27874:2 27877:2 27880:1 27881:1 27891:1 27897:2 27905:1 27914:1 27944:1 27952:1 27966:1 27968:1 27985:2 28001:1 28002:1 28003:1 28014:3 28032:1 28097:2 28101:1 28109:1 28130:2 28138:1 28139:2 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28302:1 28303:1 28315:1 28322:1 28330:1 28337:1 28358:1 28393:1 28435:2 28462:2 28468:2 28495:1 28496:1 28504:1 28522:1 28532:1 28536:1 28547:1 28555:1 28562:1 28588:1 28589:2 28591:1 28596:2 28617:9 28622:1 28629:1 28633:1 28640:1 28643:1 28662:4 28663:2 28668:1 28671:1 28684:3 28699:1 28719:1 28725:1 28755:1 28806:3 28817:1 28827:2 28835:1 28838:1 28864:1 28868:1 28872:2 28889:1 28903:1 28907:1 28938:1 28964:1 28969:1 28977:1 28997:1 29023:3 29025:1 29034:1 29046:2 29049:1 29055:1 29074:1 29090:1 29102:3 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29177:1 29189:1 29204:1 29205:1 29233:1 29251:1 29265:1 29286:1 29297:1 29324:2 29333:1 29343:1 29366:1 29370:1 29376:2 29401:1 29453:1 29483:1 29519:2 29556:1 29628:2 29650:1 29695:4 29703:1 29706:1 29711:1 29734:1 29738:4 29741:1 29743:1 29754:1 29760:1 29764:2 29773:1 29790:2 29795:1 29807:2 29818:1 29832:1 29846:1 29848:2 29851:1 29854:3 29864:1 29868:1 29889:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29980:1
17 14:2 24:1 25:1 41:1 57:2 78:1 100:1 110:1 148:1 157:3 167:1 174:1 180:1 212:1 213:1 214:1 226:1 241:2 253:1 258:2 282:2 284:1 307:1 318:1 324:1 330:1 377:1 380:2 381:1 393:1 399:1 452:1 462:1 464:2 470:1 542:1 555:1 591:1 597:1 599:1 602:1 648:1 657:1 660:2 671:1 677:2 726:1 765:1 771:1 788:1 796:2 811:4 867:2 869:1 904:1 908:2 912:4 913:2 915:1 917:2 921:4 924:1 925:2 926:1 931:1 935:1 936:2 940:1 942:2 945:2 960:1 966:2 967:1 968:1 972:1 1010:3 1036:1 1039:1 1040:2 1054:1 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:1 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:1 1176:1 1186:1 1193:1 1197:1 1260:2 1262:1 1270:1 1283:1 1297:1 1301:1 1317:1 1318:1 1332:1 1334:1 1335:1 1365:1 1385:1 1387:1 1413:1 1460:1 1481:1 1486:2 1513:1 1521:1 1528:1 1536:2 1543:1 1567:1 1571:1 1588:3 1600:1 1603:1 1611:1 1614:1 1615:1 1619:1 1634:1 1645:1 1663:1 1677:1 1682:2 1691:2 1708:1 1716:1 1727:2 1741:1 1746:1 1761:1 1788:2 1797:1 1803:1 1812:3 1813:1 1824:1 1826:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1865:1 1874:1 1892:1 1921:1 1927:2 1935:1 1963:1 1979:1 1981:1 2000:1 2011:1 2024:1 2025:1 2036:1 2041:1 2086:2 2128:1 2131:2 2154:1 2161:1 2170:1 2204:1 2293:2 2330:1 2339:1 2360:1 2366:1 2386:1 2406:2 2412:1 2421:1 2428:4 2435:2 2436:1 2448:4 2452:1 2455:2 2457:1 2459:1 2461:1 2465:1 2470:1 2473:5 2483:1 2497:2 2518:2 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:1 2631:4 2636:1 2655:1 2680:2 2685:1 2686:1 2692:1 2701:1 2702:1 2706:2 2709:1 2713:1 2718:1 2728:2 2744:1 2758:1 2760:2 2784:1 2819:1 2833:1 2858:1 2871:1 2892:1 2908:1 2911:2 2978:1 2986:1 2989:2 2990:2 2997:1 3007:1 3017:1 3020:1 3022:1 3043:1 3045:1 3062:3 3070:4 3080:3 3100:1 3119:1 3120:1 3131:2 3134:1 3150:1 3166:1 3183:1 3190:2 3194:1 3197:2 3203:1 3219:1 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3331:1 3337:1 3338:2 3362:1 3369:1 3370:1 3422:1 3433:1 3502:1 3544:2 3586:1 3624:1 3627:2 3632:1 3635:1 3653:1 3654:3 3674:1 3676:1 3677:1 3696:1 3724:1 3725:1 3729:1 3740:2 3746:1 3748:1 3751:4 3762:1 3774:1 3781:1 3790:2 3802:1 3820:1 3833:1 3858:1 3863:1 3869:1 3872:1 3894:2 3914:1 3927:1 3953:1 3955:1 3984:2 3986:1 3990:1 3991:1 4057:1 4062:3 4080:1 4100:1 4114:1 4118:2 4122:1 4127:1 4137:1 4141:1 4170:1 4171:1 4189:1 4191:1 4233:1 4238:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4324:1 4334:1 4338:2 4348:1 4358:2 4374:2 4435:1 4437:1 4440:1 4458:1 4467:1 4468:1 4471:1 4473:1 4484:1 4522:1 4526:2 4564:1 4575:3 4578:1 4579:1 4589:1 4597:1 4601:3 4627:1 4631:1 4655:1 4656:1 4667:2 4669:1 4701:1 4708:1 4718:1 4744:1 4769:1 4789:2 4790:1 4794:1 4799:1 4801:4 4810:2 4822:1 4827:1 4842:1 4867:2 4882:3 4901:2 4914:1 4926:1 4933:1 4952:1 4953:1 4959:5 4967:1 4968:1 4978:1 4987:1 4992:3 4997:1 4999:4 5017:1 5021:1 5029:1 5031:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5117:1 5118:1 5130:2 5132:1 5138:1 5145:2 5149:2 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:1 5354:2 5361:1 5366:1 5375:2 5377:1 5416:2 5420:1 5440:1 5450:1 5458:2 5483:1 5495:1 5497:1 5511:1 5513:1 5529:1 5533:1 5541:1 5601:1 5618:1 5619:1 5625:1 5651:1 5674:1 5682:1 5723:1 5726:1 5728:1 5731:1 5740:1 5741:1 5749:1 5772:2 5798:3 5814:1 5856:1 5874:1 5877:1 5885:1 5893:2 5900:1 5911:1 5927:2 5929:1 5935:1 5951:1 5959:2 5970:1 5989:1 5999:1 6005:1 6011:1 6018:2 6022:1 6026:2 6027:8 6036:2 6055:2 6065:1 6082:1 6107:2 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:1 6188:1 6190:1 6202:3 6221:1 6239:1 6245:1 6264:2 6265:3 6268:1 6288:2 6293:1 6301:1 6306:1 6318:3 6343:1 6367:2 6377:1 6382:2 6383:2 6391:1 6393:1 6424:2 6450:1 6467:1 6482:1 6497:1 6499:1 6541:6 6555:1 6570:1 6580:2 6584:2 6586:1 6589:1 6590:1 6596:1 6600:2 6601:2 6602:1 6616:1 6625:1 6632:1 6636:1 6644:1 6646:1 6647:1 6655:1 6664:2 6670:1 6682:1 6688:1 6750:1 6790:1 6809:1 6821:1 6826:2 6866:1 6868:3 6870:1 6881:1 6898:1 6912:1 6913:1 6923:1 6964:1 6970:1 6998:3 7022:1 7032:1 7049:1 7072:1 7073:1 7084:1 7096:1 7103:1 7104:1 7108:2 7196:1 7237:1 7248:1 7270:4 7290:2 7295:1 7316:1 7318:1 7327:1 7331:1 7337:1 7341:1 7372:2 7375:2 7397:1 7401:1 7415:1 7433:1 7434:1 7444:1 7446:1 7463:1 7486:1 7493:1 7504:3 7509:1 7532:1 7548:1 7551:1 7554:1 7575:1 7585:1 7602:2 7607:1 7613:1 7621:1 7623:1 7650:2 7664:2 7670:1 7696:1 7700:2 7721:1 7730:2 7755:2 7762:1 7763:3 7764:1 7781:1 7791:2 7792:5 7794:1 7797:1 7801:4 7802:1 7803:1 7810:2 7811:1 7813:1 7814:3 7816:1 7828:1 7849:1 7857:3 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8058:14 8082:4 8083:2 8091:1 8110:1 8115:1 8127:1 8134:1 8151:1 8157:1 8199:1 8215:1 8233:2 8266:1 8288:1 8292:2 8320:1 8329:1 8346:1 8354:1 8374:1 8428:1 8468:4 8480:1 8482:2 8496:1 8501:5 8519:1 8525:1 8539:1 8544:1 8554:1 8560:1 8565:1 8571:1 8585:1 8590:1 8591:5 8629:2 8658:1 8662:1 8664:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8744:2 8749:2 8754:1 8756:1 8765:1 8771:1 8790:2 8799:1 8804:1 8806:1 8830:1 8835:1 8872:2 8877:1 8900:4 8908:1 8955:1 8957:1 8958:1 8962:1 8964:4 8972:1 8980:1 9008:1 9009:1 9035:1 9045:1 9078:1 9092:1 9098:2 9119:1 9158:2 9164:4 9177:1 9181:1 9209:1 9213:1 9268:1 9276:1 9288:1 9311:1 9324:1 9395:4 9396:1 9411:2 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9477:1 9488:1 9507:1 9527:1 9571:1 9586:1 9605:1 9615:1 9628:2 9666:1 9667:2 9687:3 9699:1 9711:1 9737:1 9754:1 9780:2 9790:1 9809:1 9813:1 9830:1 9834:1 9865:1 9876:1 9883:2 9914:1 9928:1 9935:1 9942:1 9954:2 9956:1 9963:1 9979:1 9981:1 10005:3 10037:2 10042:1 10061:3 10062:1 10064:2 10071:1 10073:1 10074:1 10089:1 10099:1 10110:1 10117:1 10123:1 10126:2 10135:2 10137:1 10156:1 10176:1 10177:1 10182:1 10188:1 10204:4 10221:1 10223:2 10319:1 10346:1 10399:1 10422:1 10425:1 10430:1 10468:1 10482:1 10492:2 10498:4 10502:1 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10549:1 10550:1 10554:1 10556:1 10557:1 10560:2 10572:3 10580:1 10594:1 10597:3 10617:1 10620:1 10647:1 10650:1 10681:1 10689:2 10696:1 10738:1 10746:1 10757:1 10761:3 10772:1 10775:2 10787:1 10795:1 10798:1 10801:1 10806:1 10820:1 10844:2 10857:1 10863:1 10864:1 10876:1 10897:1 10899:1 10916:1 10920:1 10926:1 10950:1 10964:4 10967:1 10969:1 10973:3 10979:1 10982:1 10996:1 11010:1 11011:1 11027:3 11035:1 11041:1 11050:2 11089:1 11096:1 11097:1 11114:2 11131:1 11172:1 11173:1 11187:1 11190:2 11216:1 11227:1 11233:1 11249:1 11258:4 11263:1 11267:2 11269:1 11282:1 11286:2 11313:1 11326:2 11354:1 11359:1 11371:1 11373:1 11379:2 11407:1 11413:1 11442:1 11457:1 11470:1 11472:1 11485:3 11486:1 11495:1 11499:1 11504:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:4 11560:1 11563:1 11567:4 11576:1 11583:1 11585:3 11618:1 11632:1 11642:1 11660:1 11721:3 11728:1 11732:1 11738:1 11740:1 11747:1 11755:1 11765:1 11770:2 11771:1 11802:1 11805:2 11808:1 11811:1 11836:1 11854:1 11856:1 11884:2 11888:1 11895:1 11899:1 11913:1 11922:1 11926:2 11927:1 11932:1 11943:1 11947:1 11959:2 11971:1 11996:1 12001:1 12010:1 12024:1 12066:1 12073:1 12078:1 12080:1 12124:1 12127:2 12145:1 12157:2 12169:1 12193:1 12215:2 12221:1 12225:1 12231:1 12247:1 12250:2 12265:1 12277:1 12282:1 12283:3 12290:1 12298:2 12342:1 12347:1 12351:1 12364:1 12376:1 12395:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12476:1 12479:1 12480:1 12486:3 12490:1 12491:3 12492:1 12501:2 12503:1 12538:1 12556:1 12564:1 12583:1 12584:1 12587:1 12591:1 12594:2 12596:1 12614:2 12620:1 12626:1 12629:1 12631:2 12666:1 12670:1 12678:1 12681:1 12683:1 12698:2 12700:2 12705:2 12712:2 12715:1 12729:1 12730:1 12743:1 12803:1 12806:1 12823:1 12829:1 12831:2 12838:1 12841:1 12842:1 12844:1 12850:1 12861:1 12871:1 12873:1 12883:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 13009:1 13013:2 13022:1 13033:1 13034:1 13095:2 13116:2 13117:1 13125:1 13129:1 13133:1 13150:2 13160:1 13162:1 13182:2 13212:1 13233:4 13254:1 13256:1 13260:1 13263:1 13318:3 13355:2 13358:1 13366:3 13383:1 13386:2 13413:3 13452:1 13513:1 13554:1 13562:1 13665:1 13686:2 13723:4 13729:2 13732:1 13733:1 13735:1 13748:1 13763:3 13806:1 13808:1 13811:1 13849:1 13853:1 13867:1 13891:1 13949:3 13957:1 14067:2 14078:1 14085:1 14102:1 14106:2 14115:1 14121:1 14127:2 14131:1 14165:1 14177:1 14178:6 14211:1 14223:1 14224:1 14227:1 14244:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14293:1 14299:1 14306:1 14329:1 14349:2 14353:1 14383:4 14405:2 14503:1 14523:1 14529:1 14533:1 14577:1 14593:1 14598:2 14621:1 14651:1 14668:1 14670:1 14674:1 14694:1 14695:1 14700:1 14708:1 14715:1 14724:1 14727:3 14736:1 14737:1 14739:1 14750:1 14776:1 14779:1 14781:1 14785:1 14790:1 14792:1 14796:1 14799:1 14810:1 14831:1 14832:1 14871:1 14885:1 14888:1 14903:1 14906:1 14909:1 14911:3 14928:1 14931:1 14934:1 14944:3 14945:1 14975:1 14993:1 14998:1 15007:1 15015:1 15022:1 15037:1 15038:1 15058:2 15068:2 15076:1 15079:1 15104:1 15110:1 15116:1 15125:1 15129:1 15149:1 15164:1 15176:1 15253:1 15257:1 15258:3 15264:1 15297:1 15305:1 15311:1 15317:1 15319:3 15322:1 15348:8 15355:1 15364:1 15365:1 15366:1 15367:1 15370:3 15371:23 15381:1 15385:1 15388:2 15401:1 15425:1 15432:3 15438:1 15441:2 15476:1 15492:1 15540:1 15551:2 15561:1 15567:2 15572:1 15576:2 15581:1 15588:1 15617:1 15620:3 15674:1 15676:2 15690:1 15700:1 15709:1 15719:2 15746:2 15759:2 15778:2 15780:1 15785:1 15793:1 15798:1 15828:1 15843:2 15844:1 15853:1 15857:1 15863:1 15866:5 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15920:1 15921:1 15938:1 15958:2 15993:1 16014:1 16021:1 16056:1 16063:1 16098:1 16099:1 16102:2 16103:1 16177:1 16195:2 16204:2 16218:1 16224:1 16225:1 16247:1 16249:2 16250:1 16268:1 16273:1 16280:1 16284:1 16302:1 16318:1 16345:2 16347:1 16348:1 16350:1 16400:1 16417:1 16426:1 16449:1 16458:1 16460:1 16481:1 16485:1 16488:1 16490:1 16500:7 16553:3 16567:2 16569:1 16572:2 16620:1 16623:3 16677:1 16681:1 16682:1 16718:3 16725:1 16729:2 16735:1 16763:1 16793:2 16795:1 16814:1 16823:1 16827:1 16836:1 16840:1 16879:1 16895:1 16904:1 16923:1 16944:1 16945:1 16983:2 16998:1 17018:1 17022:1 17024:1 17027:1 17032:1 17043:1 17050:1 17078:1 17083:1 17086:1 17103:1 17110:1 17114:2 17116:1 17128:1 17144:1 17166:1 17179:2 17180:1 17185:1 17191:2 17200:1 17203:2 17208:1 17225:1 17253:1 17272:1 17273:1 17276:1 17278:3 17280:1 17297:1 17334:1 17346:2 17360:1 17365:1 17388:2 17411:1 17447:1 17459:1 17467:1 17474:1 17516:1 17535:1 17547:1 17548:1 17551:1 17561:2 17576:1 17579:1 17583:1 17585:1 17634:1 17676:1 17699:1 17711:1 17715:1 17724:1 17726:1 17727:1 17728:2 17743:2 17756:1 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:1 17820:1 17854:1 17874:1 17892:1 17906:1 17918:1 17931:1 17932:1 17940:1 17946:3 17952:3 17990:1 18043:2 18044:1 18052:1 18065:1 18082:1 18085:1 18116:1 18121:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:2 18299:1 18301:1 18332:1 18335:1 18338:1 18368:1 18370:1 18374:1 18382:1 18388:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:6 18475:2 18492:1 18523:1 18535:1 18550:1 18563:1 18598:1 18611:1 18621:1 18659:1 18681:2 18731:1 18756:2 18759:1 18793:1 18811:1 18817:1 18830:1 18841:1 18858:1 18863:1 18864:3 18874:1 18895:1 18903:1 18933:1 18951:1 18965:1 18976:1 18986:1 18996:1 19001:1 19025:1 19039:1 19067:1 19081:1 19085:3 19093:1 19107:1 19112:1 19118:1 19145:1 19146:1 19197:1 19203:1 19221:1 19239:1 19242:2 19260:1 19262:2103 19265:1 19316:1 19320:1 19325:1 19362:1 19392:1 19398:1 19401:1 19403:1 19474:1 19479:2 19486:1 19541:1 19547:1 19578:1 19594:2 19620:1 19627:1 19650:2 19663:3 19670:2 19697:1 19707:1 19739:1 19754:1 19758:1 19776:3 19781:1 19812:1 19829:1 19861:1 19869:3 19874:1 19908:2 19914:1 19920:2 19924:1 19957:1 19975:1 20004:1 20006:4 20035:1 20086:1 20101:1 20125:1 20131:2 20144:1 20146:1 20150:1 20153:1 20167:1 20187:1 20202:1 20205:1 20208:3 20218:2 20219:2 20223:1 20224:1 20225:1 20226:1 20244:1 20252:1 20259:2 20269:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20397:1 20405:1 20410:1 20437:1 20438:1 20452:1 20507:1 20518:1 20524:1 20547:1 20548:1 20550:2 20601:1 20606:1 20609:1 20618:1 20620:1 20630:1 20659:2 20664:1 20666:3 20671:1 20672:1 20675:1 20681:1 20684:1 20696:1 20701:2 20704:2 20706:2 20709:1 20721:1 20730:1 20737:2 20742:2 20743:1 20752:1 20755:1 20779:1 20792:1 20797:1 20832:1 20837:2 20860:2 20868:1 20920:3 20959:1 20962:1 20977:1 20987:1 20989:1 20993:1 21004:1 21008:1 21020:2 21022:2 21036:1 21052:2 21055:1 21075:1 21084:1 21101:2 21115:2 21124:2 21160:1 21179:1 21204:1 21205:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21250:1 21251:1 21263:1 21269:1 21294:1 21321:3 21328:1 21332:1 21338:1 21346:2 21354:1 21368:1 21397:1 21404:1 21405:1 21408:2 21410:1 21426:1 21427:1 21429:2 21452:1 21481:2 21482:1 21493:1 21536:2 21568:1 21572:1 21581:1 21598:2 21624:1 21665:1 21669:1 21701:1 21712:1 21741:1 21747:1 21767:1 21784:1 21800:1 21803:2 21809:1 21814:1 21822:1 21825:2 21845:2 21848:1 21849:7 21851:1 21870:1 21883:1 21901:2 21910:1 21921:1 21931:1 21942:1 21960:1 21983:1 21986:1 21990:1 22022:1 22026:1 22038:1 22043:1 22050:1 22053:2 22055:1 22068:1 22084:1 22099:1 22104:1 22109:1 22141:1 22179:3 22185:1 22190:2 22214:1 22219:1 22266:1 22277:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22353:4 22363:1 22375:1 22384:1 22395:2 22396:1 22415:1 22468:1 22477:1 22486:2 22495:1 22508:1 22512:1 22530:2 22533:1 22548:1 22554:1 22560:2 22577:1 22579:1 22600:2 22606:2 22609:1 22627:2 22628:2 22662:1 22667:3 22679:1 22697:1 22705:1 22723:1 22732:1 22733:1 22763:1 22770:1 22779:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:1 22853:2 22867:1 22914:3 22919:1 22924:1 22927:1 22928:3 22974:1 22985:1 23003:1 23004:1 23006:1 23007:4 23013:1 23027:5 23049:1 23071:1 23089:1 23113:1 23125:1 23133:1 23161:5 23165:1 23171:1 23172:1 23236:1 23241:1 23247:1 23255:1 23264:1 23268:2 23297:2 23311:3 23358:2 23365:1 23372:1 23376:1 23382:1 23384:1 23399:1 23409:1 23410:1 23413:1 23430:1 23433:1 23436:1 23448:1 23458:2 23467:1 23477:1 23503:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:1 23561:2 23562:1 23581:1 23613:1 23623:1 23627:1 23704:1 23722:1 23747:2 23774:2 23790:1 23814:3 23831:1 23834:4 23856:1 23868:1 23897:1 23912:3 23926:1 23927:3 23928:2 23935:1 23938:1 23940:3 23941:4 23958:1 23977:1 23988:1 24003:1 24008:1 24021:1 24033:2 24047:1 24051:2 24058:1 24068:2 24078:1 24080:1 24089:1 24128:1 24157:1 24160:1 24192:2 24197:1 24199:2 24205:1 24209:1 24212:2 24223:4 24235:1 24249:1 24264:2 24284:1 24292:1 24305:2 24360:1 24370:1 24373:1 24375:2 24379:3 24383:1 24388:1 24392:2 24404:1 24405:1 24421:1 24424:1 24427:1 24431:1 24441:3 24453:2 24471:1 24474:1 24489:1 24494:1 24507:1 24544:1 24553:1 24560:1 24576:2 24623:2 24626:1 24636:4 24652:1 24655:1 24658:1 24661:1 24662:2 24715:1 24719:1 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24803:1 24810:1 24835:1 24898:1 24904:4 24906:1 24914:1 24915:2 24918:2 24926:2 24937:1 24965:2 24992:1 24999:1 25026:1 25044:1 25048:1 25051:2 25054:1 25074:1 25081:3 25099:1 25114:1 25142:1 25153:2 25157:1 25159:1 25176:2 25185:1 25186:1 25187:1 25206:1 25211:1 25231:2 25237:1 25238:1 25249:1 25254:1 25263:1 25276:1 25277:1 25365:1 25393:1 25395:1 25447:2 25451:2 25456:1 25462:2 25482:1 25483:1 25503:1 25512:1 25532:1 25539:1 25568:1 25617:1 25627:1 25631:2 25644:1 25652:1 25659:1 25680:1 25681:1 25704:1 25705:2 25729:1 25731:1 25757:1 25762:1 25777:1 25828:1 25835:1 25859:1 25871:1 25879:1 25893:2 25904:1 25920:1 25922:2 25933:2 25943:3 25945:1 25953:1 25957:2 25964:1 25974:1 25982:3 25986:1 26013:2 26024:1 26041:1 26052:1 26068:1 26072:1 26092:2 26093:2 26095:2 26129:1 26130:2 26138:1 26139:1 26156:1 26160:1 26172:1 26188:1 26214:1 26233:2 26244:1 26268:1 26276:1 26281:2 26284:2 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26387:1 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:2 26511:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:2 26648:1 26649:1 26667:1 26670:2 26689:1 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26797:1 26799:1 26845:1 26846:1 26857:2 26858:2 26871:1 26893:2 26906:1 26911:1 26915:2 26916:1 26918:3 26924:1 26955:2 26965:2 26969:1 26981:1 26991:1 27006:2 27007:2 27015:2 27017:1 27023:1 27024:1 27025:2 27033:2 27089:1 27095:1 27115:3 27116:2 27164:1 27165:1 27200:1 27201:1 27203:1 27225:1 27233:1 27261:4 27267:1 27269:1 27293:1 27302:1 27318:1 27319:1 27350:1 27369:1 27384:1 27386:2 27390:2 27400:1 27410:1 27424:1 27425:1 27430:2 27448:1 27451:1 27471:1 27480:1 27496:1 27536:1 27551:2 27554:2 27555:1 27564:3 27571:1 27584:1 27613:2 27618:1 27635:1 27658:1 27668:1 27669:2 27704:1 27713:1 27731:1 27739:1 27776:1 27808:1 27818:2 27820:1 27825:1 27831:1 27857:1 27874:2 27877:2 27880:1 27881:1 27891:1 27897:2 27905:1 27914:1 27944:1 27952:1 27966:1 27968:1 27985:2 28001:1 28002:1 28003:1 28014:3 28032:1 28097:2 28101:1 28109:1 28130:2 28138:1 28139:2 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28302:1 28303:1 28315:1 28322:1 28330:1 28337:1 28358:1 28393:1 28435:2 28462:2 28468:2 28481:1 28495:1 28496:1 28504:1 28522:1 28532:1 28536:2 28547:1 28555:1 28562:1 28588:1 28589:2 28591:1 28596:2 28617:9 28622:1 28629:1 28633:1 28640:1 28643:1 28662:4 28663:2 28668:1 28671:1 28672:1 28684:3 28699:1 28714:1 28719:1 28725:1 28755:1 28806:3 28817:1 28827:2 28835:1 28838:1 28864:1 28868:1 28872:2 28889:1 28903:1 28907:1 28938:1 28952:1 28964:1 28969:1 28977:1 28997:1 29023:3 29025:1 29034:1 29046:2 29049:1 29055:1 29074:1 29090:1 29098:1 29102:3 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29177:1 29189:1 29204:1 29205:1 29233:1 29251:1 29265:1 29286:1 29297:1 29324:2 29333:1 29343:1 29366:1 29370:1 29376:2 29401:1 29453:1 29483:1 29519:2 29556:1 29628:2 29650:1 29695:4 29703:1 29706:1 29711:1 29734:1 29738:4 29741:1 29743:1 29754:1 29760:1 29764:2 29773:1 29790:2 29795:1 29807:2 29818:1 29832:1 29846:1 29848:2 29851:1 29854:3 29864:1 29868:1 29889:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29980:1 29996:1
17 12:1 14:2 24:1 25:1 41:1 57:2 78:1 100:1 110:1 148:1 157:3 167:1 174:1 180:1 212:1 213:1 214:1 226:1 241:2 253:1 258:2 282:2 284:1 307:1 318:1 324:1 330:1 377:1 380:2 381:1 393:1 399:1 452:1 462:1 464:2 470:1 542:1 555:1 591:1 597:1 599:1 602:1 648:1 657:1 660:2 671:1 677:2 726:1 765:1 771:1 788:1 796:2 811:4 867:2 869:1 904:1 908:2 912:4 913:2 915:1 917:2 921:4 924:1 925:2 926:1 931:1 935:1 936:2 940:1 942:2 945:2 960:1 966:2 967:1 968:1 972:1 1010:3 1034:1 1036:1 1039:1 1040:2 1052:1 1054:1 1059:1 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:1 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:1 1176:1 1186:1 1193:1 1197:1 1260:2 1262:1 1266:1 1270:1 1283:1 1296:1 1297:1 1301:1 1317:1 1318:1 1332:1 1334:1 1335:1 1365:1 1382:1 1385:1 1387:1 1413:1 1460:1 1481:1 1486:2 1513:1 1521:1 1528:1 1536:2 1540:1 1543:1 1567:1 1571:1 1588:3 1600:1 1603:1 1611:1 1614:1 1615:1 1619:1 1634:1 1645:1 1663:1 1677:1 1682:2 1691:2 1708:1 1716:1 1727:2 1741:1 1746:1 1761:1 1788:2 1797:1 1803:1 1812:3 1813:1 1824:1 1826:1 1827:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1865:1 1874:1 1892:1 1921:1 1927:2 1933:1 1935:1 1939:1 1963:1 1979:1 1981:1 2000:1 2011:1 2024:1 2025:1 2036:1 2041:1 2086:2 2128:1 2131:2 2154:1 2161:1 2170:1 2204:1 2293:2 2330:1 2339:1 2360:1 2366:1 2386:1 2406:2 2412:1 2421:1 2428:4 2435:2 2436:1 2448:5 2452:1 2455:2 2457:1 2459:2 2461:1 2465:1 2470:1 2473:5 2483:1 2497:2 2518:2 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:1 2631:4 2636:1 2655:2 2680:2 2685:1 2686:1 2692:1 2701:1 2702:1 2706:2 2709:1 2713:1 2718:1 2728:2 2744:1 2758:1 2760:2 2784:1 2819:1 2833:1 2858:1 2871:1 2881:1 2892:1 2908:1 2911:3 2978:1 2986:1 2989:2 2990:2 2997:1 3007:1 3017:1 3020:1 3022:1 3043:1 3045:1 3062:4 3070:4 3080:3 3100:1 3119:1 3120:1 3131:2 3134:1 3150:1 3166:1 3183:1 3190:2 3194:1 3197:2 3203:1 3219:1 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3328:1 3331:1 3337:1 3338:2 3362:1 3369:1 3370:1 3422:1 3433:1 3502:1 3544:2 3586:1 3624:1 3627:2 3632:1 3635:1 3653:1 3654:3 3674:1 3676:1 3677:1 3696:1 3724:1 3725:1 3729:1 3740:2 3746:1 3748:1 3751:5 3762:1 3774:1 3781:1 3790:2 3802:1 3820:1 3833:1 3858:1 3863:1 3869:1 3872:1 3894:2 3914:1 3924:1 3927:1 3953:1 3955:1 3984:2 3986:1 3990:1 3991:1 4057:2 4062:3 4080:1 4100:1 4114:1 4118:2 4122:1 4127:1 4137:1 4141:1 4170:1 4171:1 4189:1 4191:1 4233:1 4238:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4324:1 4334:1 4338:2 4348:1 4358:2 4359:1 4374:2 4413:1 4435:1 4437:1 4440:1 4458:1 4467:1 4468:1 4471:1 4473:1 4484:1 4522:2 4526:2 4564:1 4575:4 4578:1 4579:1 4589:1 4597:1 4601:3 4627:1 4628:1 4631:1 4646:1 4655:1 4656:1 4667:2 4669:1 4701:1 4707:1 4708:1 4718:1 4744:1 4769:1 4789:2 4790:1 4794:1 4799:1 4801:4 4810:2 4822:1 4827:1 4842:1 4867:2 4882:3 4901:2 4914:1 4926:1 4933:1 4952:1 4953:1 4959:5 4967:1 4968:1 4978:1 4987:1 4992:3 4997:1 4999:4 5017:1 5021:1 5029:1 5031:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5117:1 5118:1 5119:1 5130:2 5132:1 5136:1 5138:1 5145:2 5149:2 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:1 5354:2 5361:1 5366:1 5375:2 5377:1 5404:1 5416:2 5420:1 5440:1 5450:1 5458:2 5483:1 5495:1 5497:1 5511:1 5513:1 5529:1 5533:1 5541:1 5601:1 5618:1 5619:2 5625:1 5651:1 5674:1 5682:1 5723:1 5726:1 5728:1 5731:1 5740:1 5741:1 5749:1 5772:2 5798:3 5809:1 5814:1 5844:1 5856:1 5874:1 5877:1 5885:1 5893:2 5900:1 5911:1 5927:2 5929:1 5935:1 5951:1 5959:2 5970:1 5989:1 5999:1 6005:1 6011:1 6018:2 6022:1 6026:2 6027:8 6036:2 6055:2 6065:1 6082:1 6107:2 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:1 6188:1 6190:1 6202:3 6221:2 6239:1 6245:1 6264:2 6265:3 6268:1 6288:2 6293:1 6301:1 6303:1 6306:1 6318:4 6343:1 6367:2 6377:1 6382:2 6383:2 6391:1 6393:1 6424:2 6450:1 6462:1 6467:1 6482:1 6497:1 6499:1 6541:6 6555:1 6570:1 6580:2 6584:2 6586:1 6589:1 6590:1 6596:1 6600:2 6601:2 6602:1 6616:1 6625:1 6632:1 6636:1 6644:1 6646:1 6647:1 6655:1 6664:2 6670:1 6682:1 6688:1 6750:1 6761:1 6790:1 6809:1 6818:1 6821:1 6826:2 6837:1 6866:1 6868:4 6870:1 6881:1 6898:1 6912:1 6913:1 6923:1 6964:1 6970:1 6998:3 7022:1 7032:1 7049:1 7072:2 7073:1 7084:1 7096:1 7098:1 7103:1 7104:1 7108:2 7135:1 7196:2 7237:1 7248:1 7270:4 7290:2 7295:1 7316:1 7318:1 7327:1 7331:1 7337:1 7341:1 7372:2 7375:2 7397:1 7401:1 7410:1 7415:2 7433:1 7434:1 7444:1 7446:1 7463:1 7486:1 7493:1 7504:3 7509:1 7529:2 7532:1 7548:1 7551:1 7554:1 7575:1 7585:1 7602:2 7607:1 7613:1 7621:1 7623:1 7650:2 7664:2 7670:1 7696:1 7700:2 7721:1 7730:2 7755:2 7762:1 7763:3 7764:1 7781:1 7791:2 7792:5 7794:1 7797:1 7801:4 7802:1 7803:1 7810:2 7811:1 7813:1 7814:3 7816:1 7828:1 7849:1 7857:3 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8043:1 8058:15 8082:4 8083:2 8091:1 8110:1 8115:1 8127:1 8134:1 8151:1 8157:1 8199:1 8215:1 8233:2 8266:1 8288:1 8292:2 8320:1 8329:1 8346:1 8354:1 8374:1 8428:1 8441:1 8468:4 8480:1 8482:2 8496:1 8501:5 8519:1 8525:1 8539:1 8544:1 8554:1 8560:1 8565:1 8571:1 8585:1 8590:1 8591:6 8629:2 8658:1 8662:1 8664:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8744:2 8749:2 8754:1 8756:1 8765:1 8771:1 8790:2 8799:1 8804:1 8806:1 8830:1 8835:1 8872:2 8877:1 8900:4 8908:1 8955:1 8957:1 8958:2 8962:1 8964:4 8969:1 8972:1 8980:1 9008:1 9009:1 9035:1 9045:1 9078:1 9092:1 9098:2 9119:1 9158:2 9164:4 9177:1 9181:1 9209:1 9213:1 9268:1 9276:1 9288:1 9303:1 9311:1 9324:1 9395:4 9396:2 9411:2 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9477:1 9488:1 9507:1 9527:1 9571:1 9586:1 9605:1 9615:1 9628:3 9651:1 9666:1 9667:2 9687:3 9699:1 9711:1 9737:1 9754:1 9780:2 9790:1 9805:1 9809:1 9813:1 9830:1 9834:1 9865:1 9876:1 9883:2 9914:1 9928:1 9935:1 9942:1 9954:2 9956:1 9963:1 9979:1 9981:1 10005:3 10011:1 10037:2 10042:1 10061:4 10062:1 10064:2 10071:1 10073:1 10074:1 10089:1 10099:1 10110:1 10117:1 10123:1 10126:2 10135:2 10137:1 10156:1 10176:1 10177:1 10182:1 10188:1 10204:5 10221:1 10223:2 10256:1 10319:1 10339:1 10346:1 10399:1 10422:1 10425:1 10430:1 10468:1 10482:1 10492:2 10498:4 10502:1 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10549:1 10550:1 10554:1 10556:1 10557:1 10560:2 10572:4 10580:1 10594:1 10597:4 10617:1 10620:1 10647:1 10650:1 10681:1 10689:2 10696:1 10738:1 10746:1 10757:1 10761:3 10772:1 10775:2 10787:1 10795:1 10798:1 10801:1 10806:1 10820:1 10828:1 10844:2 10857:1 10863:1 10864:1 10876:1 10897:1 10899:1 10916:2 10920:1 10926:1 10950:1 10964:4 10967:1 10969:1 10973:3 10979:1 10982:1 10988:1 10996:1 11010:1 11011:1 11021:1 11027:3 11035:1 11041:1 11050:2 11089:1 11096:1 11097:1 11114:2 11131:1 11172:1 11173:1 11187:1 11190:2 11216:1 11227:1 11233:1 11249:1 11258:4 11263:1 11267:2 11269:1 11282:1 11286:2 11313:1 11326:2 11354:1 11359:1 11371:1 11373:1 11379:2 11407:1 11413:1 11427:1 11442:1 11449:1 11457:1 11470:1 11472:1 11485:3 11486:1 11495:1 11499:1 11504:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:4 11560:1 11563:1 11567:4 11576:1 11583:1 11585:3 11618:1 11632:1 11642:1 11660:1 11721:3 11728:1 11732:1 11738:1 11740:1 11747:1 11755:1 11765:1 11770:2 11771:1 11802:1 11805:2 11808:1 11811:1 11836:1 11854:1 11856:1 11884:2 11888:1 11895:1 11899:1 11913:1 11922:1 11926:3 11927:1 11932:1 11943:1 11947:1 11959:2 11971:1 11996:1 12001:1 12010:1 12024:1 12066:1 12073:1 12078:1 12080:1 12124:1 12127:2 12145:1 12157:2 12169:1 12193:1 12215:2 12221:1 12225:1 12231:1 12247:1 12250:2 12253:1 12265:1 12277:1 12282:1 12283:3 12290:1 12292:1 12298:2 12342:1 12347:1 12351:1 12364:1 12376:1 12395:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12476:1 12479:1 12480:1 12486:3 12490:1 12491:3 12492:1 12501:2 12503:1 12538:1 12541:1 12556:1 12564:1 12583:1 12584:1 12587:1 12591:1 12594:2 12596:1 12614:2 12620:1 12626:1 12629:1 12631:2 12666:1 12670:1 12678:1 12681:1 12683:1 12698:2 12700:2 12705:2 12712:2 12715:1 12729:1 12730:1 12743:1 12803:1 12806:1 12823:1 12829:1 12831:2 12838:1 12841:1 12842:1 12844:1 12850:1 12861:1 12871:1 12873:1 12883:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 13009:1 13013:2 13022:1 13033:1 13034:1 13075:1 13095:2 13116:2 13117:1 13125:1 13129:1 13133:1 13150:2 13160:1 13162:1 13182:2 13212:1 13233:4 13254:1 13256:1 13260:1 13263:1 13318:3 13355:2 13358:1 13366:3 13383:1 13386:2 13413:3 13452:1 13513:1 13554:1 13562:1 13665:1 13686:2 13723:4 13729:2 13732:1 13733:1 13735:1 13748:1 13763:3 13773:1 13806:1 13808:1 13811:1 13849:1 13853:1 13867:1 13891:1 13949:3 13957:1 13983:1 14067:2 14078:1 14085:1 14102:1 14106:2 14115:1 14121:1 14127:2 14131:1 14165:1 14177:1 14178:6 14211:1 14223:1 14224:1 14227:1 14232:1 14244:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14293:1 14299:1 14306:1 14329:1 14349:2 14353:1 14383:4 14405:2 14470:1 14503:1 14523:1 14529:1 14533:1 14577:1 14593:1 14598:2 14621:1 14651:1 14668:1 14670:1 14674:1 14694:1 14695:1 14700:1 14708:1 14715:1 14724:1 14727:3 14736:1 14737:1 14739:1 14750:1 14776:1 14779:1 14781:1 14785:1 14790:1 14792:1 14796:1 14799:1 14810:1 14831:1 14832:1 14871:1 14885:1 14888:1 14903:1 14906:1 14909:1 14911:3 14928:1 14931:1 14934:1 14944:3 14945:1 14975:1 14993:1 14998:1 15007:1 15015:1 15022:1 15037:1 15038:1 15058:2 15068:2 15076:1 15079:1 15104:1 15110:1 15116:1 15125:1 15129:1 15149:1 15164:1 15176:1 15253:1 15257:1 15258:3 15264:1 15297:1 15305:1 15311:1 15317:1 15319:3 15322:1 15348:8 15355:1 15364:1 15365:1 15366:1 15367:1 15370:3 15371:23 15381:1 15385:1 15388:2 15401:1 15425:1 15432:3 15438:1 15441:2 15476:1 15492:1 15540:1 15551:2 15561:1 15567:2 15572:1 15576:2 15581:1 15588:1 15617:1 15620:3 15674:1 15676:2 15690:1 15700:1 15709:1 15719:2 15746:2 15759:2 15778:2 15780:1 15785:1 15793:1 15798:1 15828:1 15843:2 15844:1 15853:1 15857:1 15863:1 15866:5 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15920:1 15921:1 15938:1 15958:2 15993:1 16014:1 16021:1 16056:1 16063:1 16098:1 16099:1 16102:2 16103:1 16177:1 16195:2 16204:2 16218:1 16224:1 16225:1 16247:1 16249:2 16250:1 16268:1 16273:1 16280:1 16284:1 16302:1 16318:1 16345:2 16347:1 16348:1 16350:1 16400:1 16417:1 16426:1 16449:1 16458:1 16460:1 16481:1 16485:1 16488:1 16490:1 16500:7 16503:1 16553:3 16567:2 16569:1 16572:2 16620:1 16623:3 16677:1 16681:1 16682:1 16718:3 16725:1 16729:2 16735:1 16763:1 16793:2 16795:1 16814:1 16823:1 16827:2 16836:1 16840:1 16879:1 16895:1 16904:1 16923:1 16944:1 16945:1 16983:2 16998:1 17018:1 17022:1 17024:1 17027:1 17032:1 17043:1 17050:1 17078:1 17083:1 17086:1 17103:1 17110:1 17114:2 17116:1 17128:1 17139:1 17144:1 17166:1 17179:2 17180:1 17185:1 17191:2 17200:1 17203:2 17208:1 17225:1 17253:1 17272:1 17273:1 17276:1 17278:3 17280:1 17297:1 17334:1 17346:2 17360:1 17365:1 17388:2 17411:1 17447:1 17459:1 17467:1 17474:1 17516:1 17535:1 17547:1 17548:1 17551:1 17561:2 17576:1 17579:1 17583:1 17585:1 17634:1 17676:1 17699:1 17711:1 17715:1 17724:1 17726:1 17727:1 17728:2 17743:2 17756:1 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:1 17820:1 17854:1 17874:1 17892:1 17906:2 17918:1 17931:1 17932:1 17940:1 17946:3 17952:3 17990:1 18043:2 18044:1 18052:1 18065:1 18082:1 18085:1 18115:1 18116:1 18121:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:2 18299:1 18301:1 18332:1 18335:1 18338:1 18368:1 18370:1 18374:1 18382:1 18388:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:6 18475:2 18492:1 18523:1 18535:1 18550:1 18563:1 18598:1 18611:1 18621:1 18659:1 18681:2 18731:1 18756:2 18759:1 18793:1 18802:1 18811:1 18817:1 18830:1 18841:1 18858:1 18863:1 18864:3 18874:1 18895:1 18903:1 18933:1 18951:1 18965:1 18974:1 18976:1 18986:1 18996:1 19001:1 19025:1 19039:1 19067:1 19081:1 19085:4 19093:1 19107:1 19112:1 19118:1 19145:1 19146:1 19197:1 19203:1 19221:1 19239:1 19242:2 19260:1 19262:2166 19265:1 19316:1 19320:1 19325:1 19362:1 19392:1 19398:1 19401:1 19403:1 19474:1 19479:2 19486:1 19541:1 19547:1 19578:1 19594:2 19620:1 19627:1 19650:2 19663:3 19670:2 19697:1 19707:1 19739:1 19754:1 19758:1 19776:3 19781:1 19812:1 19829:1 19861:1 19869:3 19874:1 19908:2 19914:1 19920:3 19924:1 19957:1 19975:2 20004:1 20006:4 20035:1 20086:1 20093:1 20101:1 20125:1 20131:2 20144:1 20146:1 20150:1 20153:1 20167:1 20187:1 20202:1 20205:1 20208:3 20218:2 20219:2 20223:1 20224:1 20225:1 20226:1 20244:1 20252:1 20259:2 20269:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20397:1 20405:1 20410:1 20437:1 20438:1 20452:1 20507:1 20518:1 20524:1 20547:1 20548:1 20550:2 20601:1 20606:1 20609:1 20618:1 20620:1 20630:1 20659:2 20664:1 20666:3 20671:1 20672:1 20675:1 20681:1 20684:1 20696:1 20701:2 20704:2 20706:2 20709:1 20721:1 20730:1 20737:2 20742:2 20743:1 20752:1 20755:1 20760:1 20779:1 20792:1 20797:1 20832:1 20837:2 20860:2 20868:1 20920:3 20959:1 20962:1 20977:1 20987:1 20989:1 20993:1 21004:1 21008:1 21020:2 21022:2 21036:1 21052:2 21055:1 21075:1 21084:1 21101:2 21115:2 21124:2 21160:1 21179:1 21204:1 21205:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21250:1 21251:1 21263:1 21269:1 21294:1 21321:3 21328:1 21332:1 21338:1 21346:2 21354:2 21368:1 21397:1 21404:1 21405:1 21408:2 21410:1 21426:1 21427:1 21429:2 21452:1 21481:2 21482:1 21493:1 21536:2 21568:1 21572:1 21581:1 21598:2 21624:1 21665:1 21669:1 21701:1 21712:1 21741:1 21747:1 21767:1 21784:1 21800:1 21803:2 21809:1 21814:1 21822:1 21825:2 21845:2 21848:1 21849:7 21851:1 21870:1 21883:1 21901:2 21910:1 21921:1 21931:1 21942:1 21960:1 21983:1 21986:1 21990:1 22022:1 22026:1 22038:1 22043:1 22050:1 22053:2 22055:1 22057:1 22068:1 22084:1 22099:1 22104:1 22109:1 22141:1 22179:3 22185:1 22190:2 22214:1 22219:1 22266:1 22277:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22353:4 22363:1 22375:1 22384:1 22395:2 22396:1 22415:1 22445:1 22451:1 22468:1 22477:1 22486:2 22495:1 22508:1 22512:1 22530:2 22533:1 22548:1 22554:1 22560:2 22577:1 22579:1 22600:2 22606:2 22609:1 22627:2 22628:2 22662:2 22667:3 22679:1 22697:1 22705:1 22723:1 22732:2 22733:1 22763:1 22770:1 22779:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:1 22853:2 22867:1 22914:3 22919:1 22924:1 22927:1 22928:4 22974:1 22985:1 23003:1 23004:1 23006:1 23007:4 23013:1 23027:5 23049:1 23071:1 23089:1 23113:1 23125:1 23133:1 23161:5 23165:1 23171:1 23172:1 23236:1 23237:1 23241:1 23247:1 23255:1 23264:1 23268:2 23297:2 23311:3 23358:2 23365:1 23372:1 23376:1 23382:1 23384:1 23399:1 23409:1 23410:1 23413:1 23430:1 23433:1 23436:2 23448:1 23458:2 23467:1 23477:1 23503:1 23505:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:1 23561:2 23562:1 23581:1 23613:1 23623:1 23627:1 23704:1 23717:1 23722:1 23747:2 23774:2 23790:1 23814:4 23831:1 23834:4 23856:1 23868:1 23897:1 23912:4 23926:1 23927:3 23928:2 23935:1 23938:1 23940:3 23941:4 23958:1 23977:1 23988:1 24003:1 24008:1 24021:1 24033:2 24047:1 24051:2 24058:1 24068:2 24078:1 24080:1 24089:1 24128:1 24157:1 24160:1 24192:2 24197:1 24199:2 24205:1 24209:1 24212:2 24223:4 24235:1 24249:1 24264:2 24284:1 24292:1 24305:2 24360:1 24370:1 24373:1 24375:2 24379:3 24383:1 24388:1 24392:3 24404:1 24405:1 24421:1 24424:1 24427:1 24431:1 24441:3 24453:2 24471:1 24474:1 24489:1 24494:1 24507:1 24544:1 24553:1 24560:1 24576:2 24623:2 24626:1 24636:4 24652:1 24655:1 24658:1 24661:1 24662:3 24715:1 24719:1 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24803:1 24810:1 24835:1 24898:1 24904:4 24906:1 24914:1 24915:2 24918:2 24926:2 24937:1 24965:2 24992:1 24999:1 25026:1 25044:1 25048:1 25051:2 25054:1 25074:1 25081:3 25099:1 25114:1 25142:1 25153:2 25157:1 25159:1 25176:2 25185:1 25186:1 25187:1 25201:1 25206:1 25211:1 25231:2 25237:1 25238:1 25249:1 25254:1 25263:1 25276:1 25277:1 25301:1 25365:1 25393:1 25395:1 25415:1 25439:1 25447:2 25451:2 25456:1 25462:2 25482:1 25483:1 25503:1 25512:1 25532:1 25539:1 25568:1 25617:1 25627:1 25631:2 25644:1 25652:1 25659:1 25680:1 25681:1 25704:1 25705:2 25729:1 25731:1 25757:1 25762:1 25777:1 25828:1 25835:1 25859:1 25871:1 25879:1 25893:2 25904:1 25920:1 25922:2 25933:2 25943:3 25945:1 25953:1 25957:2 25964:1 25974:1 25982:3 25986:1 26013:2 26024:1 26041:1 26052:1 26068:1 26072:1 26092:2 26093:2 26095:2 26129:1 26130:2 26138:1 26139:1 26156:1 26160:1 26172:1 26188:1 26214:1 26233:2 26244:1 26268:1 26276:1 26281:2 26284:2 26299:1 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26387:1 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:2 26511:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:2 26648:1 26649:1 26667:1 26670:2 26689:1 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26797:1 26799:1 26845:1 26846:1 26857:2 26858:2 26871:1 26893:2 26903:1 26906:1 26911:1 26915:2 26916:1 26918:3 26924:1 26955:2 26965:2 26969:1 26981:1 26991:1 27006:2 27007:2 27015:2 27017:1 27023:1 27024:1 27025:2 27033:2 27089:1 27095:1 27115:3 27116:2 27164:1 27165:1 27200:1 27201:1 27203:1 27225:1 27233:1 27261:4 27267:1 27269:1 27293:1 27302:1 27318:1 27319:1 27350:1 27369:1 27384:1 27386:2 27390:2 27400:1 27410:1 27424:1 27425:1 27430:2 27448:1 27451:1 27471:1 27473:1 27480:1 27496:1 27536:1 27551:2 27554:2 27555:1 27564:3 27571:1 27584:1 27613:2 27618:1 27635:1 27658:1 27668:1 27669:2 27704:1 27713:1 27731:1 27739:1 27754:1 27776:1 27808:1 27818:2 27820:1 27825:1 27831:1 27857:1 27874:2 27877:2 27880:2 27881:1 27891:1 27897:2 27905:1 27914:1 27944:1 27952:1 27966:1 27968:1 27985:2 28001:1 28002:1 28003:1 28014:3 28032:1 28097:2 28098:1 28101:1 28109:1 28130:2 28138:1 28139:2 28146:1 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28302:1 28303:1 28315:1 28322:1 28330:1 28337:1 28358:1 28393:1 28427:1 28435:2 28462:2 28468:2 28481:1 28495:1 28496:1 28504:1 28522:2 28532:1 28536:2 28547:1 28555:1 28562:1 28588:1 28589:2 28591:1 28596:2 28617:11 28622:1 28629:1 28633:1 28640:1 28643:1 28662:6 28663:2 28668:1 28671:1 28672:1 28684:3 28699:1 28714:1 28719:1 28725:1 28755:1 28806:3 28817:1 28827:2 28835:1 28838:1 28864:1 28868:1 28872:2 28889:1 28903:1 28907:1 28938:1 28952:1 28964:1 28969:1 28977:1 28997:1 29019:1 29023:3 29025:1 29034:1 29046:2 29049:1 29055:1 29074:1 29090:1 29098:1 29102:3 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29177:1 29189:1 29204:1 29205:1 29233:1 29251:1 29265:1 29286:1 29297:1 29324:2 29333:1 29343:1 29366:1 29370:1 29376:2 29401:1 29453:1 29483:1 29519:2 29525:1 29556:1 29628:2 29650:1 29695:4 29703:1 29706:1 29711:1 29734:1 29738:5 29741:1 29743:1 29754:1 29760:1 29764:2 29773:1 29790:2 29795:1 29807:2 29818:1 29832:1 29846:1 29848:2 29851:1 29854:3 29864:1 29868:1 29889:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29980:1 29996:1
17 12:1 14:2 24:1 25:1 41:1 50:1 57:2 78:1 100:1 110:1 148:1 157:5 167:1 171:2 174:1 180:1 212:1 213:1 214:1 226:1 241:2 253:1 258:2 282:2 284:2 307:1 318:1 324:1 330:1 377:1 380:2 381:1 393:1 399:1 452:1 462:1 464:2 470:1 476:1 542:1 555:1 591:1 597:1 599:1 602:1 648:1 657:1 660:2 671:1 677:2 726:1 765:1 771:1 788:1 796:2 811:4 817:1 867:2 869:1 904:1 906:1 908:2 912:4 913:2 915:1 917:2 921:4 924:1 925:2 926:1 931:1 935:1 936:2 940:1 942:2 945:2 960:1 966:3 967:1 968:1 972:1 1010:3 1034:1 1036:1 1039:1 1040:2 1052:1 1054:1 1059:1 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:1 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:1 1176:1 1186:1 1193:1 1197:2 1260:2 1262:1 1266:1 1270:1 1283:1 1296:1 1297:1 1301:1 1317:1 1318:1 1332:1 1334:1 1335:1 1365:1 1382:1 1385:1 1387:1 1413:1 1460:1 1481:1 1486:2 1513:1 1521:1 1528:1 1536:2 1540:1 1543:1 1567:1 1571:1 1588:3 1600:1 1603:1 1611:1 1614:1 1615:1 1619:1 1634:1 1645:1 1663:1 1677:1 1682:2 1691:2 1708:1 1716:1 1727:2 1741:1 1746:1 1761:1 1788:2 1797:1 1803:1 1812:3 1813:1 1824:1 1826:1 1827:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1865:1 1874:1 1892:1 1921:1 1927:2 1933:1 1935:1 1939:1 1963:1 1979:1 1981:1 2000:1 2011:1 2024:1 2025:1 2036:1 2041:1 2057:1 2058:1 2086:2 2128:1 2131:2 2154:1 2161:1 2170:1 2204:1 2293:2 2330:1 2339:1 2360:1 2365:1 2366:1 2386:1 2406:2 2412:1 2421:1 2428:4 2435:2 2436:1 2448:5 2452:1 2455:2 2457:1 2459:2 2461:1 2465:1 2470:1 2473:5 2483:1 2497:2 2518:2 2532:1 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:1 2631:4 2636:1 2655:2 2680:2 2685:1 2686:1 2692:1 2701:1 2702:1 2706:2 2709:1 2713:1 2718:1 2728:2 2744:1 2758:1 2760:2 2784:1 2819:1 2833:1 2858:1 2871:1 2881:1 2892:1 2908:1 2911:3 2978:1 2986:1 2989:2 2990:2 2997:1 3007:1 3017:1 3020:1 3022:1 3043:1 3045:1 3062:4 3070:4 3080:4 3100:1 3119:1 3120:1 3131:2 3134:1 3150:1 3166:1 3183:1 3190:2 3194:1 3197:2 3203:1 3219:1 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3328:1 3331:1 3337:1 3338:2 3362:1 3369:1 3370:1 3422:1 3433:1 3502:1 3544:2 3586:1 3624:1 3627:2 3632:1 3635:1 3653:1 3654:3 3674:1 3676:1 3677:1 3696:1 3724:1 3725:1 3729:1 3740:3 3746:1 3748:1 3751:5 3762:1 3774:1 3781:1 3790:2 3802:1 3820:1 3833:1 3858:1 3863:1 3869:1 3872:1 3894:2 3914:1 3924:1 3927:1 3953:1 3955:1 3984:2 3986:1 3990:1 3991:1 4057:2 4058:1 4062:3 4080:1 4100:1 4114:1 4118:2 4122:1 4127:1 4137:1 4141:1 4170:1 4171:1 4180:1 4189:1 4191:1 4233:1 4238:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4318:1 4324:1 4334:1 4338:2 4348:1 4358:2 4359:1 4374:2 4413:1 4435:1 4437:1 4440:1 4458:1 4465:1 4467:1 4468:1 4471:1 4473:1 4484:1 4522:2 4526:2 4564:1 4575:4 4578:1 4579:1 4589:2 4597:1 4601:3 4627:1 4628:1 4631:1 4646:1 4655:1 4656:1 4667:2 4669:1 4701:1 4707:1 4708:1 4718:1 4744:1 4769:1 4789:2 4790:1 4794:1 4799:1 4801:4 4810:2 4822:1 4827:1 4831:1 4842:1 4867:2 4882:3 4901:2 4914:1 4926:1 4933:1 4952:1 4953:1 4959:5 4967:1 4968:1 4978:1 4987:1 4992:3 4997:1 4999:4 5017:1 5021:1 5029:1 5031:1 5055:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5117:1 5118:1 5119:1 5130:2 5132:1 5136:2 5138:1 5145:2 5149:2 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5224:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:1 5354:2 5361:1 5366:1 5375:2 5377:1 5401:1 5404:1 5416:2 5420:1 5440:1 5450:1 5458:2 5483:1 5495:1 5497:1 5511:1 5513:1 5529:1 5533:1 5541:1 5601:1 5618:1 5619:2 5625:1 5630:1 5651:1 5674:1 5682:1 5723:1 5726:1 5728:1 5731:1 5740:1 5741:1 5749:1 5772:2 5798:3 5809:1 5814:1 5844:1 5856:1 5874:1 5877:1 5885:1 5893:2 5900:1 5911:1 5927:2 5929:1 5935:1 5951:1 5959:2 5970:1 5971:1 5989:1 5999:1 6005:1 6011:1 6018:2 6022:1 6026:2 6027:8 6036:2 6055:2 6065:1 6082:1 6107:2 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:1 6188:1 6190:1 6202:3 6221:2 6239:1 6245:1 6264:2 6265:3 6268:1 6288:2 6293:1 6298:1 6301:1 6303:1 6306:1 6318:4 6343:1 6367:2 6377:1 6382:2 6383:2 6389:1 6391:1 6393:1 6424:2 6450:1 6462:1 6467:1 6482:1 6497:1 6499:1 6541:6 6555:1 6570:1 6580:2 6584:2 6586:1 6589:1 6590:1 6596:1 6600:2 6601:2 6602:1 6616:1 6625:1 6632:1 6636:1 6644:1 6646:1 6647:1 6655:1 6664:2 6670:1 6682:1 6688:1 6750:1 6761:1 6790:1 6809:1 6818:1 6821:1 6826:2 6837:1 6866:2 6868:4 6870:1 6881:1 6898:1 6912:1 6913:1 6923:1 6964:1 6970:1 6998:3 7022:1 7032:1 7049:1 7072:2 7073:1 7084:1 7096:1 7098:1 7103:1 7104:1 7108:2 7135:1 7159:1 7196:2 7237:1 7248:1 7270:4 7290:2 7295:1 7316:1 7318:1 7327:1 7331:1 7337:1 7341:1 7372:2 7375:2 7397:1 7401:1 7410:1 7415:2 7433:1 7434:1 7444:1 7446:1 7463:1 7486:1 7493:1 7504:3 7509:1 7529:2 7532:1 7548:1 7551:1 7554:1 7575:1 7585:1 7602:2 7607:1 7613:1 7621:1 7623:1 7650:2 7664:4 7670:1 7696:1 7700:2 7706:1 7721:1 7730:2 7755:2 7762:1 7763:3 7764:1 7781:1 7788:1 7791:2 7792:5 7794:1 7797:1 7801:4 7802:1 7803:1 7810:2 7811:1 7813:1 7814:3 7816:1 7828:1 7849:1 7857:3 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8043:1 8058:15 8082:4 8083:2 8091:1 8110:1 8115:1 8127:1 8134:1 8151:2 8157:1 8199:1 8215:1 8233:3 8252:1 8266:1 8288:1 8292:2 8320:1 8329:3 8336:1 8346:1 8354:1 8374:1 8428:1 8441:1 8468:4 8480:1 8482:2 8496:1 8501:5 8508:1 8519:1 8525:1 8539:1 8544:1 8554:1 8560:1 8565:1 8571:1 8585:1 8590:1 8591:6 8629:2 8658:1 8662:1 8664:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8744:2 8749:2 8754:1 8756:1 8765:1 8771:1 8776:1 8790:2 8799:1 8804:1 8806:1 8824:1 8830:1 8835:1 8872:2 8877:1 8900:4 8908:1 8955:1 8957:1 8958:2 8962:1 8964:4 8969:1 8972:1 8980:1 9008:1 9009:1 9035:1 9045:1 9078:1 9092:1 9098:2 9119:1 9158:2 9164:4 9177:1 9181:1 9209:1 9213:1 9256:1 9268:1 9276:1 9288:1 9303:1 9311:1 9324:1 9395:4 9396:2 9411:2 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9477:1 9488:1 9502:1 9507:1 9527:1 9571:1 9586:1 9605:1 9615:1 9628:3 9651:1 9666:1 9667:2 9687:3 9699:1 9703:1 9706:1 9711:1 9737:1 9754:1 9780:2 9790:1 9805:1 9809:1 9813:1 9830:1 9834:1 9865:1 9876:1 9883:2 9914:1 9928:1 9935:1 9939:1 9942:1 9954:2 9956:1 9963:1 9979:1 9981:1 10005:3 10011:1 10037:2 10042:1 10061:4 10062:1 10064:2 10071:1 10073:1 10074:1 10089:1 10099:1 10110:1 10117:1 10123:1 10126:2 10135:2 10137:1 10156:1 10176:1 10177:1 10182:1 10188:1 10204:5 10221:1 10223:2 10256:1 10301:1 10319:1 10328:1 10339:1 10346:1 10399:1 10422:1 10425:1 10430:1 10468:1 10482:1 10492:2 10498:4 10500:1 10502:1 10503:1 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10549:1 10550:1 10554:1 10556:1 10557:1 10560:2 10572:4 10580:1 10594:1 10597:4 10617:1 10620:1 10647:1 10650:1 10681:1 10689:2 10696:1 10738:1 10746:1 10757:1 10761:3 10772:1 10775:2 10787:1 10795:2 10798:1 10801:1 10806:1 10820:1 10828:1 10844:2 10857:1 10863:1 10864:1 10876:1 10897:1 10899:1 10906:1 10916:2 10918:1 10920:1 10926:1 10950:1 10964:4 10967:1 10969:1 10973:3 10979:1 10982:1 10988:1 10996:1 11010:1 11011:1 11021:1 11027:3 11035:1 11041:1 11050:2 11089:1 11096:1 11097:1 11114:2 11131:1 11172:1 11173:1 11187:1 11190:2 11216:1 11227:1 11228:1 11233:1 11249:1 11258:4 11263:1 11267:2 11269:1 11282:1 11286:2 11313:1 11326:2 11354:1 11359:1 11371:1 11373:1 11379:2 11407:1 11413:1 11427:1 11442:1 11449:1 11457:1 11470:1 11472:1 11485:3 11486:1 11495:1 11499:1 11504:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:5 11560:1 11563:1 11567:4 11576:1 11583:1 11585:3 11618:1 11632:1 11642:1 11660:1 11721:3 11728:1 11732:1 11738:1 11740:1 11747:1 11755:1 11765:1 11770:2 11771:1 11802:1 11805:2 11808:1 11811:1 11836:1 11854:1 11856:1 11884:2 11888:1 11895:1 11899:1 11913:1 11922:1 11926:3 11927:1 11932:1 11943:1 11947:1 11959:2 11971:1 11996:1 12001:1 12010:1 12024:1 12066:1 12073:1 12078:1 12080:1 12124:1 12127:2 12145:1 12157:2 12169:1 12193:1 12215:2 12221:1 12225:1 12231:1 12247:1 12250:2 12253:1 12265:1 12277:1 12282:1 12283:3 12290:1 12292:1 12298:2 12342:1 12347:1 12351:1 12364:1 12376:1 12395:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12476:1 12479:1 12480:1 12482:1 12486:3 12490:1 12491:3 12492:1 12501:2 12503:1 12538:1 12541:2 12556:1 12564:1 12583:1 12584:1 12587:1 12591:1 12594:2 12596:1 12614:2 12620:1 12626:1 12629:1 12631:2 12666:1 12670:1 12678:1 12681:1 12683:1 12698:2 12700:2 12705:2 12712:2 12715:1 12729:1 12730:1 12743:1 12803:1 12806:1 12823:1 12829:1 12831:2 12838:1 12841:1 12842:1 12844:1 12850:1 12861:1 12871:1 12873:1 12883:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 13009:1 13013:2 13022:1 13033:1 13034:1 13068:1 13075:1 13095:2 13116:2 13117:1 13125:1 13129:1 13133:1 13150:2 13160:1 13162:1 13182:2 13212:1 13233:4 13254:1 13256:1 13260:1 13263:1 13318:4 13355:2 13358:1 13366:3 13383:1 13386:2 13413:3 13452:1 13513:1 13554:1 13562:1 13665:1 13686:2 13723:4 13729:2 13732:1 13733:2 13735:1 13748:1 13763:3 13773:1 13806:1 13808:1 13811:1 13849:1 13853:1 13867:1 13891:1 13903:1 13949:3 13957:1 13983:1 14067:2 14078:1 14085:1 14102:1 14106:2 14115:1 14121:1 14127:2 14131:1 14165:1 14177:1 14178:6 14211:1 14223:1 14224:1 14227:1 14232:1 14244:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14293:1 14299:1 14306:1 14329:1 14349:2 14353:1 14383:4 14405:2 14470:1 14503:1 14523:1 14529:1 14533:1 14577:1 14593:1 14598:2 14621:1 14651:1 14668:1 14670:1 14674:1 14686:1 14694:1 14695:1 14700:1 14708:1 14715:1 14724:1 14727:3 14736:1 14737:1 14739:1 14750:1 14776:1 14779:1 14781:1 14785:1 14790:1 14792:1 14796:1 14799:1 14810:1 14831:1 14832:1 14871:1 14885:1 14888:1 14903:1 14906:1 14909:1 14911:3 14921:1 14926:1 14928:1 14931:1 14934:1 14944:3 14945:1 14975:1 14993:1 14998:1 15007:1 15015:1 15022:1 15037:1 15038:1 15049:1 15058:3 15068:2 15076:1 15079:1 15104:1 15110:1 15116:1 15123:1 15125:1 15129:1 15149:1 15164:1 15176:1 15253:1 15257:1 15258:3 15264:1 15297:1 15305:1 15311:1 15317:1 15319:3 15322:1 15348:8 15355:1 15364:1 15365:1 15366:1 15367:1 15370:3 15371:24 15381:1 15385:1 15388:2 15401:1 15425:1 15432:3 15438:1 15441:2 15476:1 15492:1 15537:1 15540:1 15551:2 15561:1 15567:2 15572:1 15576:2 15581:1 15588:1 15617:1 15620:3 15674:1 15676:2 15690:1 15700:1 15709:1 15719:2 15746:2 15759:2 15778:2 15780:1 15785:1 15793:1 15798:1 15828:1 15843:2 15844:1 15853:1 15857:1 15863:1 15866:5 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15920:1 15921:1 15938:1 15958:2 15993:1 16014:1 16021:1 16056:1 16063:1 16098:1 16099:1 16102:2 16103:1 16177:1 16195:2 16202:1 16204:2 16218:1 16224:1 16225:1 16247:1 16249:2 16250:1 16268:1 16273:1 16280:1 16284:1 16302:1 16318:1 16342:1 16345:2 16347:1 16348:1 16350:1 16400:1 16417:1 16426:1 16449:1 16458:1 16460:1 16481:1 16485:1 16488:1 16490:1 16500:7 16503:1 16553:3 16567:2 16569:1 16572:2 16586:1 16620:1 16623:3 16677:1 16681:1 16682:1 16718:3 16725:1 16729:2 16735:1 16763:1 16793:2 16795:1 16814:1 16823:1 16827:2 16836:1 16840:1 16879:1 16895:1 16904:1 16923:1 16944:1 16945:1 16983:2 16998:1 17018:1 17022:1 17024:2 17027:1 17032:1 17043:1 17050:1 17078:1 17083:1 17086:1 17095:1 17103:1 17110:1 17114:2 17116:1 17128:1 17139:1 17144:1 17166:1 17179:2 17180:1 17185:1 17191:2 17200:1 17203:2 17208:1 17225:1 17253:1 17272:1 17273:1 17276:1 17278:3 17280:1 17297:1 17326:1 17334:1 17346:2 17360:1 17365:1 17388:2 17411:1 17447:1 17459:1 17467:1 17474:1 17516:1 17535:1 17547:1 17548:1 17551:1 17559:1 17561:2 17576:1 17579:1 17583:1 17585:1 17634:1 17662:2 17676:1 17699:1 17711:1 17715:1 17724:1 17726:1 17727:1 17728:2 17743:2 17756:1 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:1 17820:1 17854:1 17859:1 17874:2 17892:1 17906:2 17918:1 17923:1 17931:1 17932:1 17940:1 17946:3 17952:3 17990:1 18043:2 18044:1 18052:1 18065:1 18082:1 18085:1 18115:1 18116:1 18121:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:2 18299:1 18301:1 18332:1 18335:1 18338:1 18368:1 18370:1 18374:1 18382:1 18388:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:7 18475:2 18492:1 18523:1 18535:1 18550:1 18563:1 18598:1 18610:1 18611:2 18621:1 18659:1 18681:2 18731:1 18756:2 18757:1 18759:1 18793:1 18802:1 18811:1 18817:1 18830:1 18841:1 18858:1 18860:1 18863:1 18864:3 18874:1 18895:1 18903:1 18933:1 18951:1 18965:1 18974:1 18976:1 18986:1 18996:1 19001:1 19025:1 19039:1 19067:1 19081:1 19085:4 19093:2 19107:2 19112:1 19118:1 19145:1 19146:1 19197:1 19203:1 19221:1 19239:1 19242:2 19260:1 19262:2264 19265:1 19316:1 19320:1 19325:1 19362:1 19392:1 19398:1 19401:1 19403:1 19474:1 19476:1 19479:2 19486:1 19541:1 19547:1 19578:1 19594:2 19620:1 19627:1 19650:2 19663:3 19670:2 19697:1 19707:1 19739:1 19754:1 19758:1 19771:1 19775:1 19776:3 19781:1 19812:1 19829:1 19861:1 19869:3 19874:1 19908:2 19914:1 19920:3 19924:1 19957:1 19975:2 20004:1 20006:4 20035:1 20086:1 20093:1 20101:1 20125:1 20131:3 20144:1 20146:1 20150:1 20153:1 20167:1 20187:1 20202:1 20205:1 20208:3 20218:2 20219:2 20223:1 20224:1 20225:1 20226:1 20244:1 20252:1 20259:2 20269:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20376:1 20397:1 20405:1 20410:1 20437:1 20438:1 20452:1 20507:1 20518:1 20524:1 20547:1 20548:1 20550:2 20601:1 20606:1 20609:1 20618:1 20620:1 20630:1 20659:2 20664:1 20666:3 20671:1 20672:1 20675:1 20681:1 20684:1 20696:1 20701:2 20704:2 20706:2 20709:1 20721:1 20730:1 20737:2 20742:2 20743:1 20752:1 20755:1 20760:1 20779:1 20792:1 20797:1 20832:1 20837:2 20860:2 20868:1 20920:3 20959:1 20962:1 20977:1 20987:1 20989:1 20993:1 21004:1 21008:1 21020:2 21022:2 21036:1 21052:2 21055:1 21075:1 21084:1 21101:2 21115:2 21124:2 21160:1 21179:1 21204:1 21205:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21250:1 21251:1 21263:1 21269:1 21294:1 21321:3 21328:1 21332:1 21338:1 21346:2 21354:2 21360:1 21368:1 21397:1 21404:1 21405:1 21408:2 21410:1 21426:1 21427:1 21429:2 21452:1 21481:2 21482:1 21493:1 21536:2 21568:1 21572:1 21581:1 21598:2 21624:1 21665:1 21669:1 21670:1 21701:1 21712:1 21741:1 21747:1 21767:1 21784:1 21800:1 21803:2 21809:1 21814:1 21822:2 21825:2 21845:2 21848:1 21849:7 21851:1 21870:1 21883:1 21901:2 21907:1 21910:1 21921:1 21931:1 21942:1 21960:1 21967:1 21983:1 21986:1 21990:1 22008:1 22022:1 22026:1 22038:1 22043:1 22050:2 22053:2 22055:1 22057:1 22068:1 22084:1 22099:1 22104:1 22109:1 22141:1 22179:3 22185:1 22190:2 22214:1 22219:1 22266:1 22277:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22353:4 22363:1 22375:1 22384:1 22395:2 22396:1 22415:1 22445:1 22451:2 22468:1 22477:1 22486:2 22495:1 22508:1 22512:1 22530:2 22533:1 22548:1 22554:1 22560:2 22577:1 22579:1 22600:2 22606:2 22609:1 22627:2 22628:2 22662:2 22667:3 22679:1 22697:1 22705:1 22723:1 22732:2 22733:1 22763:1 22770:1 22779:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:1 22853:2 22867:1 22914:3 22919:1 22924:1 22927:1 22928:4 22974:1 22985:1 23003:1 23004:1 23006:1 23007:4 23013:1 23027:5 23049:1 23071:1 23089:1 23113:1 23125:1 23133:1 23161:5 23165:1 23171:1 23172:1 23236:1 23237:1 23241:1 23247:1 23255:1 23264:1 23268:2 23297:2 23311:3 23358:2 23365:1 23372:1 23376:1 23382:1 23384:1 23399:1 23409:1 23410:1 23413:1 23430:1 23433:1 23436:2 23448:1 23458:2 23467:1 23477:1 23478:1 23503:1 23505:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:1 23561:2 23562:1 23581:1 23613:1 23623:1 23627:1 23704:1 23717:1 23722:1 23747:2 23774:2 23790:1 23814:4 23831:1 23834:4 23856:1 23868:1 23897:1 23912:4 23926:1 23927:3 23928:2 23935:1 23938:1 23940:3 23941:4 23958:1 23977:1 23988:1 24003:1 24008:1 24021:1 24033:2 24047:1 24051:2 24058:1 24068:2 24078:1 24080:1 24089:1 24128:1 24157:1 24160:1 24192:2 24197:1 24199:2 24205:1 24209:1 24212:2 24223:4 24235:1 24249:1 24264:2 24284:1 24292:1 24305:2 24360:1 24370:1 24373:1 24375:2 24379:3 24383:1 24388:1 24392:3 24404:1 24405:1 24421:1 24424:1 24427:1 24431:1 24441:3 24453:2 24471:1 24474:1 24489:1 24494:1 24507:1 24544:1 24553:1 24560:1 24576:2 24623:2 24626:1 24636:4 24652:1 24655:1 24658:1 24661:1 24662:3 24715:1 24719:1 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24803:1 24810:1 24835:1 24898:1 24904:4 24906:1 24914:1 24915:2 24918:2 24926:2 24937:1 24965:2 24992:1 24999:1 25026:1 25044:1 25048:1 25051:2 25054:1 25074:1 25081:3 25099:1 25114:1 25142:1 25153:2 25157:1 25159:1 25176:2 25185:1 25186:1 25187:1 25201:1 25206:1 25211:1 25225:2 25231:2 25237:1 25238:1 25249:1 25254:1 25263:1 25276:1 25277:1 25301:1 25340:1 25365:1 25393:2 25395:1 25415:1 25439:1 25447:2 25451:2 25456:1 25462:2 25482:1 25483:2 25503:1 25508:1 25512:1 25532:1 25539:1 25568:1 25617:1 25627:1 25631:2 25644:1 25652:1 25655:1 25659:1 25680:1 25681:1 25704:1 25705:2 25729:1 25731:1 25757:1 25762:1 25773:1 25777:1 25828:1 25835:1 25859:1 25871:1 25879:1 25893:2 25904:1 25920:2 25922:2 25933:2 25943:3 25945:1 25953:1 25957:2 25964:1 25974:1 25982:3 25986:1 26013:2 26024:1 26035:1 26041:1 26052:1 26068:1 26072:1 26092:2 26093:2 26095:2 26129:1 26130:2 26138:1 26139:1 26156:1 26160:1 26172:1 26178:1 26188:1 26214:1 26233:2 26244:1 26268:1 26276:1 26281:2 26284:2 26299:1 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26387:1 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:2 26511:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:3 26648:1 26649:1 26667:1 26670:2 26689:1 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26797:1 26799:1 26845:1 26846:1 26857:2 26858:2 26871:1 26893:2 26903:1 26906:1 26911:1 26915:2 26916:1 26918:3 26924:1 26955:2 26965:2 26969:1 26981:1 26991:1 27006:2 27007:2 27015:2 27017:1 27023:2 27024:1 27025:2 27033:2 27089:1 27095:1 27115:3 27116:2 27164:1 27165:1 27200:1 27201:1 27203:1 27225:1 27233:1 27261:4 27267:1 27269:1 27293:1 27302:1 27318:1 27319:1 27350:1 27369:1 27384:1 27386:2 27390:2 27400:1 27404:1 27410:1 27424:1 27425:1 27430:2 27448:1 27451:1 27471:1 27473:1 27480:1 27496:1 27527:1 27536:1 27551:2 27554:2 27555:1 27564:4 27571:1 27584:1 27613:2 27618:1 27635:1 27658:1 27665:1 27668:1 27669:2 27704:1 27713:1 27731:1 27739:1 27754:1 27776:1 27808:1 27818:2 27820:1 27825:1 27831:1 27857:1 27874:2 27877:2 27880:2 27881:1 27891:1 27897:2 27905:1 27910:1 27914:1 27944:1 27952:1 27966:1 27968:1 27985:2 28001:1 28002:1 28003:2 28014:3 28032:1 28097:2 28098:1 28101:1 28109:1 28119:1 28130:2 28138:1 28139:2 28146:1 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28290:1 28302:1 28303:1 28315:1 28318:1 28322:1 28330:1 28337:1 28358:1 28393:1 28427:1 28435:2 28462:2 28468:2 28481:1 28495:1 28496:1 28504:1 28522:2 28532:1 28536:2 28547:1 28555:1 28562:1 28588:1 28589:2 28591:1 28596:2 28617:11 28622:1 28625:1 28629:1 28633:1 28640:1 28643:1 28662:6 28663:2 28668:1 28671:1 28672:1 28684:3 28699:1 28714:1 28719:1 28725:1 28755:1 28806:3 28817:1 28827:2 28829:1 28835:1 28838:1 28864:1 28868:1 28872:2 28889:1 28896:1 28903:1 28907:1 28938:1 28952:1 28964:1 28969:1 28977:1 28997:1 29019:1 29023:3 29025:1 29034:1 29046:2 29049:1 29055:1 29074:1 29090:1 29098:1 29102:3 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29177:1 29189:1 29190:1 29204:1 29205:1 29233:1 29251:1 29265:1 29286:1 29297:1 29324:2 29333:1 29336:1 29343:1 29348:1 29366:1 29370:1 29376:2 29401:1 29453:1 29483:1 29519:2 29525:1 29556:1 29628:2 29650:1 29695:4 29703:1 29706:1 29711:1 29717:1 29734:1 29738:5 29741:1 29743:1 29754:1 29760:1 29764:2 29773:1 29790:2 29795:1 29807:2 29818:1 29832:1 29846:1 29848:2 29851:1 29854:3 29864:1 29868:1 29889:1 29891:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29980:1 29996:1
17 12:1 14:2 24:1 25:1 41:1 50:1 57:2 78:1 100:1 110:1 148:1 157:6 167:1 171:2 174:1 180:1 190:1 212:1 213:1 214:1 226:1 241:2 253:1 258:2 282:2 284:2 307:1 318:1 324:1 330:2 377:1 380:2 381:1 393:1 399:1 452:1 462:1 464:2 470:1 476:1 542:1 555:1 591:2 597:1 599:1 602:1 618:1 648:1 657:1 660:2 671:1 677:2 726:1 765:1 771:1 788:1 796:3 811:5 817:1 867:2 869:1 904:1 906:1 908:2 912:6 913:3 915:1 917:2 921:4 924:1 925:3 926:1 931:1 935:1 936:2 940:1 942:2 945:2 960:1 966:3 967:1 968:1 972:1 1010:3 1034:1 1036:1 1039:1 1040:2 1052:1 1054:1 1059:1 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:2 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:1 1176:1 1186:1 1193:1 1197:2 1260:2 1262:1 1266:1 1270:1 1283:1 1296:1 1297:1 1301:1 1317:1 1318:1 1332:1 1334:1 1335:1 1365:1 1382:1 1385:1 1387:1 1413:1 1460:1 1463:1 1481:1 1486:2 1513:1 1518:1 1521:1 1528:1 1536:2 1540:1 1543:1 1567:1 1571:1 1588:3 1600:1 1603:1 1611:1 1614:1 1615:1 1619:1 1634:2 1645:1 1663:1 1677:1 1682:2 1691:3 1708:1 1716:1 1727:2 1741:1 1746:1 1754:1 1761:1 1764:1 1788:2 1797:1 1803:1 1812:3 1813:1 1824:1 1826:1 1827:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1865:1 1874:1 1877:1 1892:1 1921:1 1927:2 1933:1 1935:1 1939:1 1963:1 1979:1 1981:1 2000:1 2011:1 2024:1 2025:2 2036:1 2041:1 2057:1 2058:1 2086:2 2128:1 2131:2 2154:1 2161:1 2170:1 2204:1 2249:1 2293:2 2330:1 2339:1 2360:1 2365:1 2366:1 2386:1 2406:2 2412:1 2421:1 2428:4 2435:2 2436:1 2448:5 2452:1 2455:2 2457:1 2459:2 2461:1 2465:1 2470:1 2473:5 2483:1 2497:2 2518:2 2532:1 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:1 2631:5 2636:2 2655:2 2680:2 2685:1 2686:1 2692:1 2701:1 2702:1 2706:2 2709:1 2713:1 2718:1 2728:2 2744:1 2758:1 2760:2 2784:1 2819:2 2833:1 2858:1 2871:1 2881:1 2892:1 2908:1 2911:3 2978:1 2986:1 2989:2 2990:2 2997:1 3001:1 3007:1 3017:1 3020:1 3022:1 3043:1 3045:1 3062:4 3070:4 3080:4 3100:1 3119:1 3120:1 3131:2 3134:1 3150:1 3166:1 3183:1 3190:2 3194:1 3197:2 3203:1 3219:1 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3328:1 3331:1 3337:1 3338:2 3362:1 3369:1 3370:1 3422:1 3433:3 3502:1 3544:2 3586:1 3624:1 3627:2 3632:1 3635:1 3653:1 3654:3 3674:1 3676:1 3677:1 3696:1 3724:1 3725:1 3729:1 3740:3 3746:1 3748:1 3751:5 3762:1 3774:1 3781:1 3790:2 3802:1 3820:1 3833:1 3858:1 3863:1 3869:2 3872:1 3886:1 3894:2 3914:2 3924:1 3927:1 3953:1 3955:1 3984:2 3986:1 3990:1 3991:1 4039:1 4057:2 4058:1 4062:3 4080:1 4100:1 4114:1 4118:2 4122:1 4127:1 4137:1 4141:2 4170:1 4171:1 4180:1 4189:1 4191:1 4233:1 4238:1 4268:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4318:1 4324:1 4334:1 4338:2 4348:1 4358:2 4359:1 4374:2 4413:1 4435:1 4437:1 4440:1 4458:1 4465:1 4467:1 4468:1 4471:1 4473:1 4484:1 4522:2 4526:2 4564:1 4575:4 4578:1 4579:1 4589:2 4597:1 4601:3 4627:1 4628:1 4631:1 4646:1 4655:1 4656:1 4667:2 4669:1 4701:1 4707:1 4708:1 4718:1 4744:1 4769:1 4782:1 4783:1 4789:2 4790:1 4794:1 4799:1 4801:5 4810:2 4822:1 4827:1 4831:1 4842:1 4867:2 4882:3 4901:2 4914:1 4926:1 4933:1 4952:1 4953:1 4959:5 4967:1 4968:1 4978:1 4987:1 4992:3 4997:1 4999:4 5017:1 5021:1 5029:1 5031:1 5055:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5117:1 5118:1 5119:1 5130:2 5132:1 5136:2 5138:1 5145:2 5149:2 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5224:1 5264:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:2 5354:2 5361:1 5366:1 5375:2 5377:1 5401:1 5404:1 5416:2 5420:1 5440:1 5450:1 5458:2 5483:1 5495:1 5497:1 5511:2 5513:1 5529:1 5533:1 5541:1 5601:1 5618:1 5619:2 5625:1 5630:1 5651:1 5674:1 5682:1 5723:1 5726:1 5728:1 5731:1 5740:1 5741:1 5749:1 5772:2 5798:4 5809:1 5814:1 5844:1 5856:1 5874:1 5877:1 5885:1 5893:2 5900:1 5911:1 5927:2 5929:1 5935:1 5951:1 5959:2 5970:1 5971:1 5989:1 5999:1 6005:1 6011:1 6018:2 6022:1 6026:2 6027:9 6036:2 6055:2 6065:1 6082:1 6107:3 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:1 6188:1 6190:1 6202:3 6221:2 6239:1 6245:1 6264:2 6265:3 6268:1 6288:2 6293:1 6298:1 6301:1 6303:1 6306:1 6318:4 6343:1 6367:2 6377:1 6382:2 6383:2 6389:2 6391:1 6393:1 6400:1 6424:2 6450:1 6462:1 6467:1 6482:1 6497:1 6499:1 6541:7 6552:1 6555:1 6570:1 6580:2 6584:2 6586:1 6589:1 6590:1 6596:1 6600:2 6601:2 6602:1 6616:1 6625:1 6632:1 6636:1 6644:1 6646:1 6647:1 6655:1 6664:2 6670:1 6682:1 6688:1 6750:2 6761:1 6790:1 6795:1 6809:1 6818:1 6821:1 6826:2 6837:1 6866:2 6868:4 6870:1 6881:1 6898:1 6912:1 6913:1 6923:1 6964:1 6970:1 6998:3 7022:1 7032:1 7049:1 7072:2 7073:1 7084:1 7096:1 7098:1 7103:1 7104:1 7108:2 7135:1 7159:1 7196:2 7237:1 7248:1 7251:1 7270:4 7290:2 7295:1 7316:1 7318:1 7323:1 7327:1 7331:1 7337:1 7341:1 7372:2 7375:2 7397:1 7401:1 7410:1 7415:2 7433:1 7434:1 7444:1 7446:1 7463:1 7486:1 7493:1 7504:3 7509:1 7529:2 7532:1 7548:1 7551:1 7554:1 7575:1 7585:1 7602:2 7607:1 7613:1 7621:1 7623:1 7650:2 7664:4 7669:1 7670:1 7696:1 7700:2 7706:1 7721:1 7730:2 7755:2 7762:1 7763:3 7764:1 7781:1 7788:1 7791:2 7792:5 7794:1 7797:1 7801:5 7802:1 7803:1 7810:2 7811:1 7813:1 7814:4 7816:1 7828:1 7849:1 7857:3 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8043:1 8058:15 8082:4 8083:2 8091:1 8110:1 8115:2 8127:1 8134:1 8151:2 8157:1 8199:1 8215:1 8233:4 8252:1 8266:1 8288:1 8292:2 8320:1 8329:3 8336:1 8346:1 8354:1 8374:1 8407:1 8428:1 8441:1 8468:5 8480:1 8482:2 8496:1 8501:5 8508:1 8519:1 8525:1 8539:1 8544:1 8554:1 8560:1 8565:1 8571:1 8585:1 8590:1 8591:6 8629:2 8641:1 8658:1 8662:1 8664:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8744:2 8749:2 8754:1 8756:1 8765:1 8771:1 8776:2 8790:2 8799:1 8804:1 8806:1 8824:1 8830:1 8835:1 8845:1 8872:2 8877:1 8900:5 8908:1 8955:1 8957:1 8958:2 8962:1 8964:4 8969:1 8972:1 8980:1 9008:1 9009:1 9035:1 9045:1 9078:2 9092:1 9098:2 9119:1 9158:2 9164:4 9177:1 9181:1 9189:1 9209:1 9213:1 9256:2 9268:1 9276:1 9288:1 9303:1 9311:1 9322:1 9324:1 9395:5 9396:2 9411:2 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9477:1 9488:1 9502:1 9507:2 9508:1 9527:1 9571:1 9586:1 9605:1 9615:1 9626:1 9628:3 9651:1 9666:1 9667:2 9687:3 9699:1 9703:1 9706:1 9711:1 9737:1 9754:1 9780:2 9785:1 9790:1 9805:1 9809:1 9813:1 9830:1 9834:1 9865:1 9876:1 9883:2 9914:1 9928:1 9935:1 9939:1 9942:1 9954:2 9956:1 9963:1 9979:1 9981:1 10005:3 10011:1 10037:2 10042:1 10055:1 10061:4 10062:1 10064:2 10071:1 10073:1 10074:1 10089:1 10099:1 10110:1 10117:1 10123:1 10126:2 10135:2 10137:1 10156:1 10176:1 10177:1 10182:1 10188:1 10204:5 10221:1 10223:2 10255:1 10256:1 10301:1 10319:1 10328:1 10339:1 10346:1 10399:1 10422:1 10425:1 10430:1 10468:1 10482:1 10492:2 10498:4 10500:1 10502:1 10503:2 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10549:1 10550:1 10554:1 10556:2 10557:1 10560:2 10572:4 10580:1 10594:2 10597:4 10617:1 10620:1 10647:1 10650:1 10681:1 10689:2 10696:1 10738:1 10746:1 10757:1 10761:3 10772:1 10775:2 10787:1 10795:2 10798:1 10801:1 10806:1 10820:1 10828:1 10844:2 10857:1 10863:1 10864:1 10876:1 10897:1 10899:1 10906:1 10916:2 10918:1 10920:1 10926:1 10950:1 10964:4 10967:1 10969:1 10973:3 10979:1 10982:1 10988:1 10996:1 10997:1 11010:1 11011:1 11021:1 11027:3 11035:1 11041:1 11050:2 11089:1 11096:1 11097:1 11114:2 11131:1 11172:1 11173:1 11187:1 11190:2 11216:1 11227:1 11228:1 11233:1 11249:1 11258:5 11263:1 11267:2 11269:1 11282:1 11286:2 11313:1 11326:2 11354:1 11359:1 11371:1 11373:1 11379:2 11407:1 11413:1 11427:1 11442:1 11449:1 11457:1 11470:1 11472:1 11485:4 11486:2 11495:1 11499:2 11504:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:5 11560:1 11563:1 11567:4 11576:1 11583:1 11585:3 11600:1 11618:1 11632:1 11642:1 11660:1 11687:1 11721:3 11728:1 11732:1 11738:1 11740:1 11747:1 11755:1 11765:1 11770:2 11771:1 11802:1 11805:2 11808:1 11811:1 11836:1 11854:1 11856:1 11884:2 11888:1 11895:2 11899:1 11913:1 11922:1 11926:3 11927:1 11932:1 11943:1 11947:1 11959:2 11971:1 11996:1 12001:1 12010:1 12024:1 12066:1 12073:1 12078:1 12080:1 12124:1 12127:2 12145:1 12157:2 12169:1 12193:1 12215:2 12221:1 12225:1 12231:1 12247:1 12250:2 12253:1 12265:1 12277:1 12282:1 12283:3 12290:1 12292:1 12298:2 12305:1 12342:1 12347:1 12351:1 12362:1 12364:1 12376:1 12380:1 12395:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12476:2 12479:1 12480:1 12482:1 12486:3 12490:1 12491:5 12492:1 12494:1 12501:2 12503:1 12538:1 12541:2 12556:1 12564:1 12583:1 12584:1 12587:2 12591:1 12594:2 12596:1 12614:2 12620:1 12625:2 12626:1 12629:1 12631:2 12666:1 12670:1 12678:1 12681:1 12683:1 12698:2 12700:3 12705:2 12712:2 12715:1 12729:1 12730:1 12743:1 12776:1 12803:2 12806:1 12823:1 12829:1 12831:2 12838:1 12841:1 12842:1 12844:1 12850:1 12861:1 12871:1 12873:1 12883:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 13007:1 13009:1 13013:2 13022:1 13033:1 13034:1 13068:1 13075:1 13095:2 13116:2 13117:1 13125:1 13129:1 13133:1 13150:2 13160:1 13162:1 13182:2 13184:1 13212:1 13233:5 13254:2 13256:1 13260:1 13263:2 13318:4 13355:2 13358:1 13366:3 13383:1 13386:2 13413:3 13452:1 13513:1 13554:1 13562:1 13620:1 13665:1 13682:1 13686:2 13723:4 13729:2 13732:1 13733:3 13735:1 13748:1 13763:3 13773:1 13806:1 13808:1 13811:1 13849:1 13853:1 13867:1 13891:1 13903:1 13949:3 13957:1 13983:1 14067:2 14078:1 14085:1 14093:1 14102:2 14106:2 14115:1 14121:1 14127:2 14131:1 14165:1 14177:1 14178:7 14211:1 14223:1 14224:1 14227:1 14232:1 14244:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14293:1 14299:2 14306:1 14329:1 14349:2 14350:1 14353:1 14383:4 14405:2 14429:1 14470:1 14503:1 14523:1 14529:1 14533:1 14577:1 14593:1 14598:2 14621:1 14651:1 14668:1 14670:1 14674:1 14686:1 14694:1 14695:1 14700:1 14708:1 14715:1 14724:1 14727:3 14736:1 14737:1 14739:1 14750:1 14776:1 14779:1 14781:1 14785:1 14790:1 14792:1 14796:1 14799:1 14810:1 14831:1 14832:1 14871:1 14885:2 14888:1 14903:1 14906:1 14909:1 14911:3 14921:1 14926:1 14928:1 14931:1 14934:1 14944:3 14945:1 14975:1 14993:1 14998:1 15007:1 15015:1 15022:1 15037:1 15038:1 15049:1 15058:3 15068:2 15076:1 15079:1 15104:1 15110:1 15116:1 15123:1 15125:1 15129:1 15149:1 15164:1 15176:1 15253:1 15257:1 15258:3 15264:1 15297:1 15305:1 15311:1 15317:1 15319:3 15322:1 15348:9 15355:1 15357:1 15364:1 15365:1 15366:1 15367:1 15370:3 15371:25 15381:1 15385:1 15388:2 15401:1 15425:1 15432:3 15438:1 15441:2 15476:1 15492:1 15519:1 15537:1 15540:1 15551:3 15561:1 15567:2 15572:1 15576:2 15581:1 15588:1 15617:1 15620:3 15674:1 15676:2 15690:1 15700:1 15709:1 15719:2 15746:2 15759:2 15778:2 15780:1 15785:1 15793:1 15798:1 15828:1 15843:2 15844:1 15853:1 15857:1 15863:1 15866:5 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15920:1 15921:1 15938:1 15958:3 15993:1 16014:1 16021:1 16056:1 16063:1 16098:1 16099:1 16102:2 16103:1 16177:1 16195:2 16202:1 16204:2 16218:1 16224:1 16225:1 16247:1 16249:2 16250:1 16268:1 16273:1 16280:1 16284:1 16302:1 16318:1 16342:1 16345:2 16347:1 16348:1 16350:1 16400:1 16417:1 16426:1 16449:1 16458:1 16460:1 16481:1 16485:1 16488:1 16490:1 16500:7 16503:1 16553:3 16567:2 16569:1 16572:2 16586:1 16620:1 16623:3 16677:1 16681:1 16682:1 16718:3 16725:1 16729:2 16735:1 16763:1 16793:2 16795:1 16814:1 16823:1 16827:2 16836:1 16840:1 16879:1 16884:1 16895:1 16904:1 16923:1 16926:1 16944:1 16945:1 16983:2 16998:1 17018:1 17022:1 17024:2 17027:1 17032:1 17043:1 17050:1 17078:2 17083:1 17086:1 17095:1 17103:1 17110:2 17114:2 17116:1 17128:1 17139:1 17144:1 17166:1 17179:2 17180:1 17185:1 17191:3 17200:1 17203:2 17208:1 17209:1 17225:1 17253:1 17272:1 17273:1 17276:1 17278:3 17280:1 17297:1 17326:2 17334:1 17346:2 17360:1 17365:1 17388:2 17411:1 17439:1 17447:1 17459:1 17467:1 17474:1 17516:1 17535:1 17547:1 17548:1 17551:1 17559:1 17561:2 17576:1 17579:1 17583:1 17585:1 17634:1 17662:2 17676:1 17699:1 17711:1 17715:1 17724:1 17726:1 17727:1 17728:2 17743:2 17756:2 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:1 17820:1 17854:1 17859:1 17874:4 17892:1 17906:2 17918:1 17923:1 17931:1 17932:1 17940:1 17946:3 17952:3 17990:1 18043:2 18044:1 18052:1 18065:1 18082:1 18085:1 18115:1 18116:1 18121:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:1 18289:2 18299:1 18301:1 18332:1 18335:1 18338:1 18368:1 18370:1 18374:1 18382:1 18388:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:7 18475:2 18492:1 18523:1 18535:1 18550:1 18563:1 18598:1 18610:1 18611:2 18621:1 18659:1 18681:2 18731:1 18756:2 18757:1 18759:1 18793:1 18802:1 18811:1 18817:1 18830:1 18841:1 18858:1 18860:1 18863:1 18864:3 18874:1 18895:1 18903:1 18933:1 18951:1 18965:1 18974:1 18976:1 18986:1 18996:1 19001:1 19025:1 19039:2 19067:1 19081:1 19085:4 19093:2 19107:2 19112:1 19118:1 19145:1 19146:1 19197:1 19203:1 19221:1 19239:1 19242:2 19260:1 19262:2373 19265:1 19316:1 19320:1 19325:2 19362:1 19392:1 19398:1 19401:1 19403:1 19423:1 19434:1 19474:1 19476:1 19479:2 19486:1 19541:1 19547:1 19578:1 19594:2 19597:1 19620:1 19627:1 19650:2 19663:3 19670:2 19697:1 19707:1 19739:1 19754:1 19758:2 19771:1 19775:1 19776:3 19781:1 19812:1 19829:1 19861:1 19869:3 19874:1 19908:3 19914:1 19920:3 19924:1 19957:1 19975:2 20004:1 20006:4 20035:2 20086:1 20093:1 20101:1 20125:1 20131:3 20144:1 20146:1 20150:1 20153:1 20167:1 20187:1 20202:1 20205:1 20208:3 20218:2 20219:2 20223:1 20224:1 20225:1 20226:1 20244:1 20252:1 20259:2 20269:1 20273:1 20301:1 20302:1 20333:1 20370:2 20374:1 20376:1 20397:1 20405:1 20410:1 20437:1 20438:1 20452:1 20507:1 20518:1 20524:1 20547:1 20548:1 20550:2 20575:1 20601:1 20606:1 20609:1 20618:1 20620:1 20630:1 20659:2 20664:1 20666:3 20671:1 20672:1 20675:1 20681:1 20684:1 20696:1 20700:1 20701:2 20704:2 20706:2 20709:1 20721:1 20722:1 20730:1 20737:2 20742:2 20743:1 20752:1 20755:1 20760:1 20779:1 20792:1 20797:1 20832:1 20837:2 20860:2 20868:1 20920:3 20959:1 20962:1 20977:1 20987:1 20989:1 20993:1 21004:1 21008:1 21020:2 21022:2 21036:1 21052:2 21055:1 21075:1 21084:1 21085:1 21101:2 21115:2 21124:2 21160:1 21179:1 21204:1 21205:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21250:1 21251:1 21263:1 21269:2 21294:1 21321:3 21328:1 21332:1 21338:1 21346:2 21354:2 21360:1 21368:1 21397:1 21404:1 21405:2 21408:2 21410:1 21426:1 21427:1 21429:2 21437:1 21452:1 21481:2 21482:1 21493:1 21536:2 21568:1 21572:1 21581:1 21598:2 21624:1 21665:1 21669:1 21670:1 21690:1 21701:1 21712:1 21741:1 21747:1 21767:1 21784:1 21800:1 21803:2 21809:1 21814:1 21822:2 21825:2 21845:2 21848:1 21849:8 21851:1 21870:1 21883:1 21901:3 21907:1 21910:1 21921:1 21931:1 21942:1 21960:1 21967:1 21983:1 21986:1 21990:1 22008:1 22022:1 22026:1 22038:1 22043:1 22050:2 22053:2 22055:1 22057:1 22068:1 22084:1 22099:1 22104:1 22109:1 22141:1 22179:3 22185:1 22190:2 22214:1 22219:1 22266:1 22277:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22353:5 22363:1 22375:1 22384:1 22395:2 22396:1 22415:1 22445:1 22451:2 22468:1 22477:1 22486:2 22495:1 22508:1 22512:1 22530:2 22533:1 22548:2 22554:1 22560:2 22577:1 22579:1 22600:2 22606:2 22609:1 22627:2 22628:2 22638:1 22662:2 22667:3 22679:1 22685:1 22697:1 22705:1 22723:1 22732:2 22733:1 22763:1 22770:1 22779:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:1 22853:2 22867:1 22914:3 22919:1 22924:1 22927:1 22928:4 22974:1 22985:1 23003:1 23004:1 23006:1 23007:4 23013:1 23027:5 23049:1 23071:1 23089:1 23113:1 23125:1 23133:1 23161:6 23165:1 23171:1 23172:1 23236:1 23237:1 23241:1 23247:1 23255:1 23264:1 23268:2 23297:2 23311:3 23358:2 23365:1 23372:1 23376:1 23382:1 23383:1 23384:1 23399:1 23409:1 23410:1 23413:1 23430:1 23433:1 23436:2 23448:1 23458:2 23467:1 23477:1 23478:1 23503:1 23505:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:1 23561:3 23562:1 23581:1 23613:1 23623:1 23627:1 23704:1 23717:1 23722:1 23733:1 23747:2 23774:2 23790:1 23814:4 23831:1 23834:5 23841:1 23856:1 23868:1 23897:1 23912:4 23926:1 23927:3 23928:3 23935:1 23938:1 23940:3 23941:5 23958:1 23977:1 23988:1 24003:1 24008:1 24021:1 24033:3 24047:1 24051:2 24058:1 24068:2 24078:1 24080:1 24089:1 24128:1 24157:1 24160:1 24192:2 24197:2 24199:2 24205:2 24209:1 24212:2 24223:5 24235:1 24249:1 24264:2 24284:1 24292:1 24305:2 24360:1 24370:1 24373:1 24375:2 24379:3 24383:1 24388:1 24392:3 24404:1 24405:1 24421:1 24424:1 24427:1 24431:1 24441:3 24453:2 24471:1 24474:1 24489:1 24494:1 24507:1 24544:1 24553:1 24559:1 24560:1 24576:2 24623:2 24626:1 24636:5 24652:1 24655:1 24658:1 24661:1 24662:3 24715:1 24719:1 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24803:1 24810:1 24835:1 24898:1 24904:4 24906:1 24914:1 24915:2 24918:2 24926:2 24937:1 24965:2 24992:1 24999:1 25026:1 25044:1 25048:2 25051:3 25054:1 25074:1 25081:3 25099:1 25114:1 25142:1 25153:2 25157:1 25159:1 25175:1 25176:2 25185:1 25186:1 25187:1 25201:1 25206:1 25211:1 25225:2 25231:2 25237:1 25238:1 25249:1 25254:1 25263:1 25276:1 25277:1 25301:1 25339:1 25340:1 25365:1 25384:1 25393:2 25395:1 25415:1 25439:1 25447:2 25451:2 25456:1 25462:2 25482:1 25483:2 25503:1 25508:1 25512:1 25532:1 25539:1 25568:1 25617:1 25627:1 25631:2 25644:1 25652:1 25655:1 25659:1 25680:1 25681:1 25704:1 25705:2 25729:1 25731:1 25757:1 25762:1 25773:1 25777:1 25828:1 25835:1 25859:1 25871:1 25879:1 25893:2 25904:1 25920:2 25922:2 25933:2 25938:2 25943:3 25945:1 25953:1 25957:2 25964:1 25974:1 25982:3 25986:1 26013:2 26024:1 26035:2 26041:1 26052:1 26068:1 26072:1 26092:2 26093:2 26095:2 26129:1 26130:2 26138:1 26139:1 26156:1 26160:1 26172:1 26178:1 26188:1 26214:1 26233:2 26244:1 26268:1 26276:1 26281:2 26284:2 26299:1 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26387:1 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:2 26511:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:3 26648:1 26649:1 26667:1 26670:4 26689:1 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26797:1 26799:1 26845:1 26846:1 26857:2 26858:2 26871:1 26893:2 26903:1 26906:1 26911:1 26915:2 26916:1 26918:3 26924:1 26955:2 26965:2 26969:1 26981:1 26984:2 26991:1 27006:2 27007:2 27015:2 27017:1 27023:3 27024:1 27025:2 27033:2 27089:1 27095:1 27115:5 27116:2 27164:1 27165:1 27200:1 27201:1 27203:1 27225:1 27233:1 27261:4 27267:1 27269:1 27293:1 27294:1 27302:1 27318:1 27319:1 27350:1 27369:1 27384:1 27386:2 27390:2 27400:1 27404:1 27410:1 27424:1 27425:1 27430:2 27438:1 27448:1 27451:1 27471:1 27473:1 27480:1 27496:1 27527:1 27536:1 27551:2 27554:2 27555:1 27564:4 27571:1 27584:1 27613:2 27618:1 27635:1 27658:1 27665:1 27668:1 27669:2 27704:1 27713:1 27731:1 27739:1 27754:1 27776:1 27808:1 27818:2 27820:1 27825:1 27831:1 27857:1 27874:2 27877:2 27880:2 27881:1 27891:1 27897:2 27905:1 27910:1 27914:1 27944:1 27952:1 27966:1 27968:1 27985:2 28001:1 28002:1 28003:2 28014:3 28032:1 28097:2 28098:1 28101:1 28109:1 28119:1 28130:2 28138:1 28139:2 28146:1 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28290:1 28302:1 28303:1 28315:1 28318:1 28322:1 28330:1 28337:1 28358:1 28393:1 28427:1 28435:2 28456:1 28462:2 28468:2 28481:1 28495:1 28496:1 28504:1 28522:2 28532:1 28536:2 28547:1 28555:1 28562:1 28577:1 28588:1 28589:2 28591:1 28596:2 28617:11 28622:1 28625:1 28629:1 28633:1 28640:1 28643:1 28662:6 28663:2 28668:1 28671:1 28672:1 28684:3 28699:1 28714:1 28719:1 28725:1 28755:1 28806:3 28817:1 28827:2 28829:1 28835:1 28838:1 28864:1 28868:1 28872:2 28889:1 28896:1 28903:1 28907:1 28938:1 28952:1 28964:1 28969:1 28977:1 28987:1 28997:1 29019:1 29023:3 29025:1 29034:1 29046:2 29049:1 29055:1 29074:1 29090:1 29098:1 29102:3 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29177:1 29189:1 29190:1 29204:1 29205:1 29233:1 29251:1 29252:1 29265:1 29286:1 29297:1 29322:1 29324:2 29333:1 29336:1 29343:1 29348:1 29366:1 29370:1 29376:2 29401:1 29453:1 29481:1 29482:1 29483:1 29519:2 29525:1 29556:1 29628:2 29633:1 29650:1 29695:4 29703:1 29706:1 29711:1 29717:1 29734:1 29738:5 29741:1 29743:1 29753:1 29754:1 29760:1 29764:2 29773:1 29790:2 29795:1 29807:2 29818:1 29832:1 29846:1 29848:2 29851:1 29854:3 29864:1 29868:1 29889:1 29891:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29980:1 29996:1
17 12:1 14:2 24:1 25:1 32:1 41:1 50:1 57:2 65:1 78:1 100:1 110:1 148:1 157:7 167:1 171:2 174:1 180:1 190:1 212:1 213:1 214:1 226:1 241:2 253:1 258:2 282:2 284:2 307:1 318:1 319:1 324:1 330:2 377:1 380:2 381:1 393:1 399:1 452:1 462:1 464:2 470:1 476:1 542:1 555:1 591:2 597:1 599:1 602:1 618:1 648:1 657:1 660:2 671:1 677:2 726:1 762:1 765:1 771:1 788:1 796:3 811:5 817:1 867:2 869:1 904:1 906:1 908:2 912:6 913:3 915:1 917:2 919:1 921:4 924:1 925:3 926:1 931:1 935:1 936:2 940:1 942:2 945:2 960:1 966:3 967:1 968:1 972:1 1010:3 1034:1 1036:1 1039:1 1040:2 1052:1 1054:1 1055:1 1059:1 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:2 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:1 1176:1 1186:1 1193:1 1197:2 1247:1 1252:1 1260:2 1262:1 1266:1 1270:1 1283:1 1296:1 1297:1 1301:1 1317:1 1318:1 1332:1 1334:1 1335:1 1351:1 1365:1 1382:1 1385:1 1387:1 1413:1 1414:1 1460:1 1463:1 1481:1 1485:1 1486:2 1513:1 1518:1 1521:1 1528:1 1536:2 1540:1 1543:1 1567:1 1571:1 1588:3 1600:1 1603:1 1611:1 1614:1 1615:1 1619:1 1634:2 1645:1 1663:1 1677:1 1682:2 1691:3 1708:1 1716:1 1727:2 1741:1 1746:1 1750:1 1754:1 1760:1 1761:1 1764:1 1788:2 1795:1 1797:1 1803:1 1812:3 1813:1 1824:1 1826:1 1827:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1865:1 1874:1 1877:1 1892:1 1921:1 1927:2 1933:1 1935:1 1939:1 1963:1 1979:1 1981:1 2000:1 2011:1 2024:1 2025:2 2036:1 2041:1 2057:1 2058:1 2086:2 2128:1 2131:2 2154:2 2161:1 2170:1 2204:1 2249:1 2293:2 2330:1 2339:1 2360:1 2365:1 2366:1 2386:1 2406:2 2412:1 2421:1 2428:4 2435:2 2436:1 2448:5 2452:1 2455:2 2457:1 2459:2 2461:1 2465:1 2470:1 2473:5 2483:1 2497:2 2518:2 2532:1 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:1 2631:5 2636:2 2655:2 2666:1 2671:1 2680:2 2685:1 2686:1 2692:1 2701:1 2702:1 2706:3 2709:1 2713:1 2718:1 2728:2 2744:1 2758:1 2760:2 2784:1 2819:2 2833:1 2858:1 2871:1 2881:1 2892:1 2908:1 2911:3 2978:1 2983:1 2986:1 2989:2 2990:2 2997:1 3001:1 3007:1 3017:1 3020:1 3022:1 3043:1 3045:1 3062:4 3070:4 3080:4 3100:1 3119:1 3120:1 3131:2 3134:1 3150:1 3166:1 3183:1 3190:3 3194:1 3197:2 3203:1 3219:1 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3328:1 3331:1 3337:1 3338:2 3362:1 3369:1 3370:1 3422:1 3433:3 3502:1 3525:1 3544:2 3586:1 3624:1 3627:2 3632:1 3635:1 3653:1 3654:3 3674:1 3676:1 3677:1 3696:1 3724:2 3725:1 3729:1 3740:3 3746:1 3748:1 3751:5 3762:1 3767:1 3774:1 3781:1 3790:2 3802:1 3820:1 3833:1 3858:1 3863:1 3869:2 3872:1 3883:2 3886:1 3894:2 3914:2 3924:1 3927:1 3953:1 3955:1 3984:3 3986:1 3990:1 3991:1 4005:1 4039:1 4057:2 4058:1 4062:3 4080:1 4100:1 4114:1 4118:2 4122:1 4127:1 4137:1 4141:2 4150:1 4170:1 4171:1 4180:1 4189:1 4191:1 4233:1 4238:1 4268:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4318:1 4324:1 4334:1 4338:2 4348:1 4358:2 4359:1 4366:1 4374:2 4413:1 4435:1 4437:1 4440:1 4458:1 4465:1 4467:1 4468:1 4471:1 4473:1 4484:1 4522:2 4526:2 4564:1 4575:4 4578:1 4579:1 4588:1 4589:2 4597:1 4601:3 4627:1 4628:1 4631:1 4646:1 4655:1 4656:1 4667:2 4669:1 4701:1 4707:1 4708:1 4718:1 4729:1 4744:1 4769:1 4782:1 4783:1 4789:2 4790:1 4794:1 4799:1 4801:5 4810:2 4822:1 4827:1 4831:1 4842:1 4867:2 4882:3 4901:2 4914:1 4926:1 4933:1 4952:1 4953:2 4959:5 4967:1 4968:1 4978:1 4987:1 4992:3 4997:1 4999:4 5017:1 5021:1 5029:1 5031:2 5055:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5117:1 5118:1 5119:1 5130:2 5132:1 5136:2 5138:1 5145:2 5149:2 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5224:1 5264:1 5276:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:2 5354:3 5361:1 5366:1 5375:2 5377:1 5401:1 5404:1 5416:2 5420:1 5440:1 5450:1 5458:2 5483:1 5495:1 5497:1 5511:2 5513:1 5529:1 5533:1 5541:2 5556:1 5601:1 5606:1 5618:1 5619:2 5625:1 5630:1 5651:1 5674:1 5682:1 5723:1 5726:1 5728:1 5731:1 5740:1 5741:3 5749:1 5772:2 5798:4 5809:1 5814:1 5844:1 5856:1 5874:1 5877:1 5885:1 5893:2 5900:1 5911:1 5927:2 5929:1 5935:1 5951:1 5959:2 5970:1 5971:1 5989:1 5999:1 6005:1 6007:1 6011:1 6018:2 6022:2 6026:2 6027:9 6036:2 6055:2 6065:1 6082:1 6107:3 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:1 6188:1 6190:1 6202:3 6221:2 6239:1 6245:1 6247:1 6264:2 6265:3 6268:1 6288:2 6293:1 6298:1 6301:1 6303:1 6306:1 6318:4 6343:1 6367:2 6377:1 6382:2 6383:2 6389:2 6391:1 6393:1 6400:1 6424:2 6450:1 6462:1 6467:1 6482:2 6497:1 6499:1 6541:7 6552:1 6555:1 6570:1 6580:2 6584:2 6586:1 6589:1 6590:1 6596:1 6600:2 6601:2 6602:1 6616:1 6625:1 6632:1 6636:1 6644:1 6646:1 6647:1 6655:1 6657:1 6664:2 6670:1 6682:1 6688:1 6750:2 6761:1 6782:1 6790:1 6795:2 6809:1 6818:1 6821:1 6826:2 6837:1 6866:2 6868:4 6870:1 6881:1 6898:1 6912:1 6913:1 6923:1 6964:1 6970:1 6980:1 6998:3 7022:1 7032:1 7049:1 7072:2 7073:1 7084:1 7096:1 7098:1 7103:1 7104:1 7108:2 7113:1 7135:1 7159:1 7196:2 7237:1 7248:1 7251:1 7253:1 7270:4 7290:2 7295:1 7316:1 7318:1 7323:1 7327:1 7331:1 7337:1 7341:1 7369:1 7372:2 7375:2 7397:1 7401:1 7410:1 7415:2 7433:1 7434:1 7444:1 7446:1 7463:1 7486:1 7493:1 7504:3 7509:1 7529:2 7532:1 7548:1 7551:1 7554:1 7575:1 7585:1 7602:2 7607:2 7613:1 7621:1 7623:1 7650:2 7664:4 7669:1 7670:1 7696:1 7700:2 7705:1 7706:1 7721:1 7730:2 7755:2 7762:1 7763:3 7764:1 7781:1 7788:1 7791:2 7792:7 7794:1 7797:1 7801:5 7802:1 7803:1 7810:2 7811:1 7813:1 7814:4 7816:2 7828:1 7849:2 7857:3 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8043:1 8058:15 8082:4 8083:2 8091:2 8110:1 8115:2 8127:1 8134:2 8146:1 8151:3 8157:1 8168:1 8199:1 8215:1 8233:4 8252:1 8266:1 8288:1 8292:2 8320:1 8329:3 8336:1 8338:1 8346:1 8354:1 8374:1 8407:1 8428:1 8441:1 8468:5 8480:1 8482:2 8496:1 8501:5 8508:1 8513:1 8519:1 8525:1 8539:1 8544:1 8554:1 8560:1 8565:1 8571:1 8585:1 8590:1 8591:6 8629:2 8641:1 8658:1 8662:1 8664:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8744:2 8749:3 8754:1 8756:1 8760:1 8765:1 8771:1 8776:2 8790:2 8799:1 8804:1 8806:1 8824:1 8830:1 8835:1 8845:1 8849:1 8872:2 8877:1 8900:5 8908:1 8955:1 8957:1 8958:2 8962:1 8964:4 8969:1 8972:1 8980:1 9008:1 9009:1 9035:1 9045:1 9051:1 9078:2 9092:1 9098:2 9119:1 9122:1 9158:2 9164:6 9177:1 9181:1 9189:1 9209:1 9213:1 9256:2 9268:1 9276:1 9288:1 9303:1 9311:1 9322:1 9324:1 9342:1 9395:5 9396:2 9411:2 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9477:1 9482:1 9488:1 9502:1 9507:2 9508:1 9527:1 9571:1 9586:1 9605:1 9610:1 9615:1 9626:1 9628:3 9651:1 9666:1 9667:2 9687:4 9694:1 9699:1 9703:1 9706:1 9711:1 9737:1 9754:1 9780:3 9785:1 9790:1 9805:1 9809:1 9813:1 9830:1 9834:1 9865:1 9876:1 9883:2 9914:1 9928:1 9935:1 9939:1 9942:1 9951:1 9954:2 9956:1 9963:1 9979:1 9981:1 10005:3 10011:1 10037:2 10042:1 10055:1 10061:4 10062:1 10064:2 10071:1 10073:1 10074:1 10089:1 10099:1 10110:1 10117:1 10123:1 10126:3 10135:3 10137:1 10156:1 10176:1 10177:1 10182:1 10188:1 10204:5 10208:1 10221:1 10223:2 10255:2 10256:1 10301:1 10319:1 10328:1 10330:1 10339:1 10346:1 10399:1 10422:1 10425:1 10430:1 10468:1 10482:2 10492:2 10498:4 10500:1 10502:2 10503:2 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10549:1 10550:1 10554:1 10556:2 10557:1 10560:2 10561:1 10572:4 10580:1 10594:2 10597:5 10617:1 10620:1 10647:1 10650:1 10681:1 10689:2 10696:1 10738:1 10746:1 10757:1 10761:3 10772:1 10775:2 10787:1 10795:2 10798:1 10801:1 10806:1 10820:1 10828:1 10844:2 10857:1 10863:1 10864:1 10876:1 10897:1 10899:1 10906:1 10916:2 10918:1 10920:1 10926:1 10950:1 10964:5 10967:1 10969:1 10973:3 10979:1 10982:1 10988:1 10996:1 10997:1 11005:1 11010:1 11011:1 11021:1 11026:1 11027:3 11035:1 11041:1 11050:2 11089:1 11096:1 11097:1 11114:2 11131:1 11172:1 11173:1 11187:1 11190:2 11216:1 11227:1 11228:1 11233:1 11249:1 11258:5 11263:1 11267:2 11269:1 11282:1 11286:2 11313:1 11326:2 11354:1 11359:1 11371:1 11373:1 11379:2 11407:1 11413:1 11427:1 11442:1 11449:1 11457:1 11470:1 11472:1 11485:4 11486:2 11495:1 11499:2 11504:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:5 11560:1 11563:1 11566:1 11567:4 11576:1 11583:1 11585:3 11600:1 11618:1 11622:1 11632:1 11642:1 11660:1 11687:1 11721:3 11728:1 11732:1 11738:1 11740:1 11747:1 11755:1 11765:1 11770:2 11771:1 11802:1 11805:2 11808:1 11811:1 11836:1 11854:1 11856:1 11860:1 11884:2 11888:1 11895:2 11899:1 11913:1 11922:1 11926:3 11927:1 11932:1 11943:1 11947:2 11959:2 11971:1 11996:1 12001:1 12010:1 12024:1 12066:1 12073:1 12078:1 12080:1 12124:1 12127:2 12145:1 12157:2 12169:1 12193:1 12215:2 12221:1 12225:1 12231:1 12247:1 12250:2 12253:1 12265:1 12277:1 12282:1 12283:3 12290:1 12292:1 12298:2 12305:1 12342:1 12347:1 12351:1 12362:1 12364:1 12376:1 12380:1 12395:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12476:2 12479:1 12480:1 12482:1 12486:3 12490:1 12491:5 12492:1 12494:1 12501:2 12503:1 12538:1 12541:2 12550:1 12556:1 12564:1 12583:1 12584:1 12585:1 12587:2 12591:1 12594:2 12596:1 12614:2 12620:1 12625:2 12626:1 12629:1 12631:2 12666:1 12670:1 12678:1 12681:1 12683:1 12696:1 12698:2 12700:3 12705:2 12712:2 12715:1 12729:1 12730:1 12743:1 12776:1 12803:2 12806:1 12823:1 12829:1 12831:2 12838:1 12841:1 12842:1 12844:1 12850:1 12861:1 12871:1 12873:1 12883:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 13007:1 13009:1 13013:2 13022:1 13033:1 13034:1 13068:1 13075:1 13095:2 13116:2 13117:1 13125:1 13129:1 13133:1 13150:2 13160:1 13162:1 13182:2 13184:1 13212:1 13233:5 13254:2 13256:1 13260:1 13263:2 13318:4 13355:2 13358:1 13366:3 13383:1 13386:2 13413:3 13417:1 13452:1 13513:1 13554:1 13562:1 13620:1 13665:1 13682:1 13686:2 13723:4 13729:2 13732:1 13733:3 13735:1 13748:1 13763:3 13773:1 13806:1 13808:1 13811:1 13849:1 13853:1 13867:1 13891:1 13903:1 13949:3 13957:1 13983:1 14067:2 14078:1 14085:1 14093:1 14102:2 14106:3 14115:1 14121:2 14127:2 14131:1 14165:1 14177:1 14178:7 14211:1 14214:1 14223:1 14224:1 14227:1 14232:1 14244:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14293:1 14299:2 14306:1 14329:1 14349:2 14350:1 14353:1 14383:4 14405:2 14429:1 14470:1 14503:1 14523:1 14529:2 14533:1 14577:1 14593:1 14598:2 14621:1 14651:1 14668:1 14670:1 14674:1 14686:1 14694:1 14695:1 14700:1 14708:1 14715:1 14724:1 14727:3 14736:1 14737:1 14739:1 14750:1 14776:1 14779:1 14781:1 14785:1 14789:1 14790:1 14792:1 14796:1 14799:1 14810:1 14831:1 14832:1 14853:1 14871:1 14885:2 14888:1 14903:1 14904:1 14906:1 14909:1 14911:3 14921:1 14926:1 14928:1 14931:1 14934:1 14944:4 14945:2 14951:1 14975:1 14993:1 14998:1 15007:1 15015:1 15021:1 15022:1 15037:1 15038:1 15049:1 15056:1 15057:1 15058:4 15068:2 15076:1 15079:1 15104:1 15110:1 15116:2 15123:1 15125:1 15129:1 15149:1 15164:1 15176:1 15231:1 15253:1 15257:2 15258:3 15264:1 15297:1 15305:1 15311:1 15317:1 15319:3 15322:1 15348:9 15355:2 15357:1 15364:1 15365:1 15366:1 15367:1 15370:3 15371:28 15381:1 15385:1 15388:2 15401:1 15425:1 15432:3 15438:2 15441:2 15476:1 15492:1 15519:3 15537:1 15540:1 15551:3 15561:1 15567:2 15572:1 15576:2 15581:1 15588:1 15617:1 15620:3 15674:1 15676:2 15690:1 15700:1 15709:1 15719:2 15746:2 15759:2 15778:2 15780:1 15785:1 15793:1 15798:1 15828:1 15843:2 15844:1 15853:1 15857:1 15863:1 15866:8 15879:1 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15920:1 15921:1 15938:1 15958:3 15993:1 16011:1 16014:1 16021:1 16056:1 16063:1 16098:1 16099:1 16102:2 16103:1 16167:1 16168:1 16177:1 16195:2 16202:1 16204:2 16218:1 16224:1 16225:1 16247:1 16249:2 16250:1 16268:1 16273:1 16280:1 16284:1 16302:1 16318:1 16342:1 16345:2 16346:1 16347:1 16348:1 16350:1 16400:1 16417:1 16426:1 16446:1 16449:1 16458:1 16460:2 16481:1 16485:1 16488:1 16490:1 16500:8 16503:1 16553:3 16567:2 16569:1 16572:3 16586:1 16620:1 16623:3 16677:1 16681:1 16682:1 16704:1 16718:3 16725:1 16729:2 16735:1 16763:1 16793:2 16795:1 16814:1 16823:1 16827:2 16836:1 16840:1 16879:1 16884:1 16895:1 16904:1 16923:1 16926:1 16944:1 16945:1 16983:2 16998:1 17018:1 17022:1 17024:2 17027:1 17029:1 17032:1 17043:1 17050:1 17078:2 17083:1 17086:1 17095:1 17103:1 17110:2 17114:2 17116:1 17128:1 17139:1 17144:1 17166:1 17179:2 17180:1 17185:1 17191:3 17200:1 17203:2 17208:1 17209:1 17225:1 17230:1 17253:1 17272:1 17273:2 17276:1 17278:3 17280:1 17297:1 17319:1 17326:2 17334:1 17346:2 17360:1 17365:1 17388:2 17411:1 17439:1 17447:1 17459:1 17467:1 17474:1 17516:1 17535:1 17547:1 17548:1 17551:1 17559:1 17561:2 17576:1 17579:1 17583:1 17585:1 17634:1 17662:2 17676:1 17699:1 17711:1 17715:1 17724:1 17726:1 17727:1 17728:2 17743:2 17756:2 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:1 17820:1 17854:1 17859:1 17874:4 17892:1 17906:2 17918:1 17923:1 17931:1 17932:1 17940:1 17946:3 17952:3 17990:1 18043:2 18044:1 18052:1 18065:1 18082:1 18085:1 18115:1 18116:1 18121:1 18131:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:2 18289:2 18299:1 18301:1 18332:1 18335:1 18338:1 18368:1 18370:1 18374:1 18382:1 18388:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:7 18475:2 18492:1 18523:1 18535:1 18550:1 18563:1 18598:1 18610:1 18611:2 18621:1 18659:1 18681:2 18731:1 18748:1 18756:2 18757:1 18759:1 18769:1 18793:1 18802:1 18811:1 18817:1 18830:1 18841:1 18858:1 18860:1 18863:1 18864:3 18874:1 18895:1 18903:1 18933:1 18947:1 18951:1 18965:1 18974:1 18976:1 18986:1 18996:1 19001:1 19025:1 19039:2 19067:1 19081:1 19085:4 19093:2 19107:2 19112:1 19118:1 19145:1 19146:1 19197:1 19203:1 19221:1 19239:1 19242:2 19260:1 19262:2480 19265:1 19288:1 19316:1 19320:1 19325:2 19362:1 19392:2 19398:1 19401:1 19403:1 19423:2 19434:1 19474:1 19476:1 19479:2 19486:1 19541:1 19547:1 19578:1 19594:2 19597:1 19620:1 19622:1 19627:1 19650:2 19663:3 19670:2 19697:1 19707:1 19739:1 19754:1 19758:2 19771:1 19775:1 19776:3 19781:1 19812:1 19829:1 19861:1 19869:3 19874:1 19908:3 19914:1 19920:3 19924:1 19957:1 19975:2 20004:1 20006:4 20035:2 20086:1 20093:1 20101:1 20125:1 20131:3 20144:1 20146:1 20150:1 20153:1 20167:1 20187:1 20202:1 20205:1 20208:3 20218:2 20219:2 20223:1 20224:1 20225:1 20226:1 20244:1 20252:1 20259:2 20269:1 20273:1 20279:1 20301:1 20302:1 20333:1 20370:2 20374:1 20376:1 20382:1 20397:1 20405:1 20410:1 20437:1 20438:1 20452:1 20507:1 20518:1 20524:1 20547:1 20548:1 20550:2 20575:1 20601:1 20606:1 20609:1 20615:1 20618:1 20620:1 20630:1 20634:1 20659:2 20664:1 20666:3 20671:1 20672:1 20675:1 20681:1 20684:1 20692:1 20696:1 20700:1 20701:2 20704:2 20706:2 20709:1 20721:1 20722:1 20730:1 20737:2 20742:2 20743:1 20752:1 20755:1 20760:1 20779:1 20792:1 20797:1 20832:1 20837:2 20860:2 20868:1 20920:3 20922:1 20959:1 20962:1 20977:1 20987:1 20989:1 20993:1 21004:1 21008:1 21020:2 21022:2 21036:1 21052:2 21055:1 21075:1 21084:1 21085:1 21101:2 21115:2 21124:2 21160:1 21179:1 21204:1 21205:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21250:1 21251:1 21263:1 21269:2 21294:1 21321:3 21328:1 21332:1 21338:1 21346:2 21354:2 21360:1 21368:1 21397:1 21404:1 21405:2 21408:2 21410:1 21426:1 21427:1 21429:2 21437:1 21452:1 21461:1 21481:2 21482:1 21493:1 21503:1 21536:2 21568:1 21570:1 21572:1 21581:1 21598:2 21624:1 21665:1 21669:1 21670:1 21690:1 21701:1 21712:1 21741:1 21747:1 21767:1 21784:1 21800:1 21803:2 21809:1 21814:1 21822:2 21825:2 21845:2 21848:1 21849:8 21851:1 21870:1 21883:1 21901:3 21907:1 21910:1 21921:1 21931:1 21942:1 21960:1 21967:1 21970:1 21983:2 21986:1 21990:1 22008:1 22022:1 22026:1 22038:1 22043:1 22050:2 22053:2 22055:1 22057:1 22068:1 22084:1 22099:1 22104:1 22109:1 22141:1 22144:1 22179:3 22185:1 22190:2 22214:1 22219:1 22257:1 22266:1 22277:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22353:5 22363:1 22375:1 22384:1 22395:2 22396:1 22415:1 22445:1 22451:2 22468:1 22477:1 22486:2 22495:1 22508:1 22512:1 22530:2 22533:1 22548:2 22554:1 22560:2 22577:1 22579:1 22600:2 22606:2 22609:1 22627:2 22628:2 22638:1 22662:2 22667:3 22679:1 22685:1 22697:1 22705:1 22723:1 22732:2 22733:1 22763:1 22770:1 22779:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:1 22853:2 22867:1 22914:3 22919:1 22924:1 22927:1 22928:4 22974:1 22985:1 23003:2 23004:1 23006:1 23007:4 23013:1 23027:5 23042:1 23049:1 23071:1 23089:1 23113:1 23125:1 23133:1 23161:6 23165:1 23171:1 23172:1 23236:1 23237:1 23241:1 23247:1 23255:1 23264:1 23268:2 23297:2 23311:3 23358:2 23365:1 23372:1 23376:1 23382:1 23383:1 23384:1 23399:1 23409:1 23410:1 23413:1 23430:1 23433:1 23436:2 23448:1 23458:3 23467:1 23477:1 23478:1 23503:1 23505:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:1 23561:3 23562:1 23581:1 23613:1 23623:1 23627:1 23667:1 23688:1 23704:1 23717:1 23722:1 23733:3 23747:2 23774:2 23790:1 23814:4 23831:1 23834:5 23841:1 23856:1 23868:1 23897:1 23912:4 23913:1 23926:2 23927:3 23928:3 23935:1 23938:1 23940:3 23941:5 23958:1 23977:1 23988:1 24003:1 24008:1 24013:1 24021:1 24033:3 24047:1 24051:2 24058:1 24068:2 24078:1 24080:1 24089:1 24128:1 24157:1 24160:1 24192:2 24197:2 24199:2 24205:2 24209:1 24212:2 24223:5 24235:1 24249:1 24264:4 24284:1 24292:1 24305:2 24360:1 24370:2 24373:1 24375:2 24379:4 24383:1 24388:1 24392:3 24404:1 24405:1 24421:1 24424:1 24427:1 24431:1 24436:1 24441:3 24453:2 24471:1 24474:1 24489:1 24494:1 24507:1 24544:1 24551:1 24553:1 24559:1 24560:1 24576:2 24623:2 24626:1 24636:5 24652:1 24655:1 24658:1 24661:1 24662:3 24715:1 24719:1 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24803:1 24810:1 24835:1 24898:1 24904:7 24906:1 24914:1 24915:2 24918:2 24926:2 24937:1 24965:2 24992:1 24999:1 25024:1 25026:1 25044:1 25048:2 25051:3 25054:2 25074:1 25081:3 25099:1 25114:1 25142:1 25153:2 25157:1 25159:1 25175:1 25176:2 25185:1 25186:1 25187:1 25201:1 25206:1 25211:1 25225:2 25231:2 25237:1 25238:1 25249:1 25254:1 25263:1 25276:1 25277:1 25301:1 25339:1 25340:1 25365:1 25384:1 25393:2 25395:1 25415:1 25439:1 25447:2 25451:2 25456:1 25462:2 25482:1 25483:2 25503:1 25508:1 25512:1 25532:1 25539:1 25543:1 25568:1 25617:1 25627:1 25631:2 25644:1 25652:1 25655:1 25659:2 25680:1 25681:1 25704:1 25705:2 25729:1 25731:1 25757:1 25762:1 25773:1 25777:1 25828:1 25835:1 25859:1 25871:1 25879:1 25893:2 25904:1 25905:1 25920:2 25922:2 25933:2 25935:1 25938:2 25943:3 25945:1 25953:1 25957:2 25964:1 25974:1 25982:3 25986:1 26013:2 26024:2 26035:2 26041:1 26050:1 26052:1 26068:1 26072:1 26092:2 26093:2 26095:2 26129:1 26130:2 26138:1 26139:1 26156:1 26160:1 26172:1 26178:1 26188:1 26214:1 26233:2 26244:1 26268:1 26276:1 26281:2 26284:2 26299:1 26307:1 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26387:1 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:2 26511:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:3 26648:1 26649:1 26667:1 26670:4 26689:1 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26797:1 26799:1 26845:1 26846:1 26857:2 26858:2 26871:1 26893:2 26903:1 26906:1 26911:1 26915:2 26916:1 26918:3 26924:1 26955:2 26965:2 26969:1 26981:1 26984:2 26991:1 27002:1 27006:2 27007:2 27015:2 27017:1 27023:3 27024:1 27025:2 27033:2 27089:1 27095:1 27115:5 27116:2 27164:1 27165:1 27200:1 27201:1 27203:1 27225:1 27233:1 27260:1 27261:4 27267:1 27269:1 27293:1 27294:1 27302:1 27312:1 27318:1 27319:1 27350:1 27369:1 27384:1 27386:2 27390:2 27395:1 27400:1 27404:1 27410:1 27424:1 27425:1 27430:3 27438:1 27448:1 27451:1 27471:1 27473:1 27474:1 27480:1 27496:1 27527:1 27536:1 27540:1 27551:2 27554:2 27555:1 27564:4 27571:1 27584:1 27613:2 27618:1 27635:1 27657:1 27658:1 27665:1 27668:1 27669:2 27704:1 27713:1 27727:1 27731:1 27739:1 27754:1 27776:1 27808:1 27818:2 27820:1 27825:1 27831:1 27857:1 27874:2 27877:2 27880:2 27881:1 27891:1 27897:2 27905:1 27910:1 27914:1 27944:1 27948:1 27952:1 27966:1 27968:1 27985:2 28001:1 28002:1 28003:2 28014:3 28032:1 28097:2 28098:1 28101:1 28109:1 28119:1 28130:2 28138:1 28139:2 28146:1 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28290:1 28302:1 28303:1 28311:1 28315:1 28318:1 28322:1 28330:1 28337:1 28358:1 28393:1 28427:1 28432:1 28435:2 28456:1 28462:2 28468:2 28481:1 28495:1 28496:1 28504:1 28522:2 28532:1 28536:2 28542:1 28547:1 28555:1 28562:1 28577:1 28588:1 28589:2 28591:1 28596:2 28617:11 28622:1 28625:1 28629:1 28633:1 28640:1 28643:1 28662:6 28663:2 28668:1 28671:1 28672:1 28684:3 28699:1 28714:1 28719:1 28725:1 28755:1 28806:3 28817:1 28827:2 28829:1 28835:1 28838:1 28864:1 28868:1 28872:2 28889:1 28896:1 28903:1 28907:1 28938:1 28952:1 28964:1 28969:1 28977:1 28987:1 28997:1 29019:1 29023:3 29025:1 29034:1 29043:1 29046:2 29049:1 29055:1 29074:1 29090:1 29098:1 29102:3 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29177:1 29189:1 29190:1 29204:1 29205:1 29233:1 29251:1 29252:1 29265:1 29286:1 29297:1 29322:1 29324:2 29333:1 29336:1 29343:1 29348:1 29366:1 29370:1 29376:2 29401:1 29453:1 29481:1 29482:1 29483:1 29519:2 29525:1 29556:1 29628:2 29633:1 29650:1 29695:4 29703:1 29706:1 29711:1 29717:1 29734:1 29738:5 29741:1 29743:1 29746:1 29753:1 29754:1 29760:1 29764:2 29773:1 29790:2 29795:1 29807:2 29818:1 29832:1 29846:1 29848:2 29851:1 29854:3 29864:1 29868:1 29888:1 29889:1 29891:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29972:1 29974:1 29980:1 29996:1
17 12:1 14:2 24:1 25:1 32:1 41:1 50:1 57:2 65:1 78:1 100:1 110:1 148:1 157:7 167:1 171:2 174:1 180:1 190:1 212:1 213:1 214:1 226:1 241:2 253:1 258:2 282:2 284:2 307:1 318:1 319:1 324:1 330:2 377:1 380:2 381:1 393:1 399:1 452:1 462:1 464:2 470:1 476:1 542:1 555:1 591:2 597:1 599:1 602:1 618:1 648:1 657:1 660:3 671:1 677:2 726:1 762:1 765:1 771:1 788:1 796:3 811:5 817:1 867:2 869:1 873:1 904:1 906:1 908:2 912:6 913:3 915:1 917:2 919:1 921:4 924:2 925:3 926:1 931:1 935:1 936:2 940:1 942:2 945:2 960:1 966:4 967:1 968:1 972:1 1010:3 1034:1 1036:2 1039:1 1040:2 1052:1 1054:1 1055:1 1059:1 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:2 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:1 1163:1 1176:1 1186:1 1193:2 1197:2 1238:1 1247:1 1252:1 1260:2 1262:1 1266:1 1270:1 1283:1 1296:1 1297:1 1301:1 1317:1 1318:1 1321:1 1332:1 1334:1 1335:1 1351:1 1365:1 1382:1 1385:1 1387:1 1413:1 1414:1 1460:1 1463:1 1481:1 1485:1 1486:2 1513:1 1518:1 1521:1 1528:1 1536:2 1540:1 1543:1 1567:1 1571:1 1588:4 1600:1 1603:1 1611:1 1614:1 1615:1 1619:1 1634:2 1645:1 1663:1 1677:1 1682:2 1687:1 1691:3 1708:1 1716:1 1719:1 1727:2 1736:1 1741:1 1746:1 1750:1 1754:1 1759:1 1760:1 1761:1 1764:1 1788:2 1795:1 1797:1 1803:1 1804:1 1812:3 1813:1 1824:1 1826:1 1827:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1865:1 1874:1 1877:1 1892:1 1913:1 1921:2 1927:2 1933:1 1935:1 1939:1 1963:1 1979:1 1981:1 2000:1 2011:1 2013:1 2024:1 2025:2 2036:1 2041:1 2057:1 2058:1 2086:2 2128:1 2131:2 2154:2 2161:1 2170:1 2204:1 2249:1 2293:2 2330:1 2339:1 2360:1 2365:1 2366:1 2386:1 2406:2 2412:1 2421:1 2428:4 2435:2 2436:1 2438:1 2448:5 2452:1 2455:2 2457:2 2459:2 2461:1 2465:1 2470:1 2473:5 2483:1 2497:2 2518:2 2532:1 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:1 2631:5 2636:2 2655:2 2666:1 2671:1 2679:1 2680:2 2685:1 2686:1 2692:1 2700:1 2701:1 2702:1 2706:3 2709:1 2713:1 2718:1 2728:2 2744:1 2758:1 2760:2 2784:1 2819:2 2833:1 2858:1 2871:1 2881:1 2890:1 2892:1 2906:1 2908:1 2911:3 2921:1 2978:1 2983:1 2986:1 2989:2 2990:2 2997:1 3001:1 3007:1 3017:1 3020:1 3022:1 3043:1 3045:1 3062:4 3070:4 3080:4 3100:1 3119:1 3120:1 3131:2 3134:1 3150:1 3166:1 3183:1 3190:3 3194:2 3197:2 3203:1 3219:1 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3328:1 3331:1 3337:1 3338:2 3362:1 3369:1 3370:1 3422:1 3433:3 3502:1 3525:1 3544:2 3586:1 3624:1 3627:2 3632:1 3635:1 3653:1 3654:3 3674:1 3676:1 3677:1 3696:1 3724:2 3725:1 3729:1 3740:3 3746:1 3748:1 3751:5 3762:1 3767:1 3774:1 3781:1 3790:2 3802:1 3820:1 3833:1 3858:1 3863:1 3869:2 3872:1 3883:2 3886:1 3894:2 3914:2 3924:1 3927:1 3953:1 3955:1 3963:1 3984:3 3986:1 3990:1 3991:1 4005:1 4039:1 4057:2 4058:1 4062:3 4080:1 4100:1 4114:1 4118:3 4122:1 4127:1 4137:1 4141:2 4150:1 4170:1 4171:1 4179:1 4180:1 4189:1 4191:1 4233:1 4238:1 4268:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4318:1 4324:1 4334:1 4338:2 4348:1 4358:2 4359:1 4366:1 4374:2 4413:1 4435:1 4437:1 4440:1 4458:1 4465:1 4467:1 4468:1 4471:1 4473:1 4484:1 4522:2 4526:2 4564:1 4575:4 4578:1 4579:1 4588:1 4589:2 4597:1 4601:3 4627:1 4628:1 4631:1 4646:1 4655:1 4656:1 4667:2 4669:1 4701:1 4707:1 4708:1 4718:1 4729:1 4744:1 4769:1 4782:1 4783:1 4789:2 4790:1 4794:1 4799:1 4801:5 4810:2 4822:1 4827:1 4831:1 4842:1 4867:2 4882:3 4899:1 4901:2 4914:1 4926:1 4933:1 4952:1 4953:2 4959:5 4967:1 4968:1 4978:1 4984:1 4987:1 4992:3 4997:1 4999:4 5017:1 5021:1 5029:2 5031:2 5055:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5117:1 5118:1 5119:1 5130:2 5132:1 5136:2 5138:1 5145:2 5149:2 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5224:1 5264:1 5276:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:2 5354:3 5361:1 5366:1 5375:2 5377:1 5401:1 5404:1 5416:2 5420:1 5440:1 5450:1 5458:2 5483:1 5486:1 5495:1 5497:1 5511:2 5513:1 5529:1 5533:1 5541:2 5556:1 5601:1 5606:1 5618:1 5619:2 5625:1 5630:1 5651:1 5674:1 5682:1 5723:2 5726:1 5728:1 5731:1 5740:1 5741:3 5749:1 5772:2 5798:4 5809:1 5814:1 5844:1 5856:1 5874:1 5877:1 5885:1 5893:2 5900:1 5911:1 5927:2 5929:1 5935:1 5951:1 5959:2 5970:1 5971:1 5989:1 5999:1 6005:1 6007:1 6011:1 6018:2 6022:2 6026:2 6027:9 6036:2 6055:2 6065:1 6082:1 6107:3 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:1 6185:1 6188:1 6190:1 6202:3 6221:2 6239:1 6245:1 6247:1 6264:2 6265:3 6268:1 6288:2 6293:1 6298:1 6301:1 6303:1 6306:1 6309:1 6318:4 6320:1 6343:1 6367:2 6377:1 6382:2 6383:2 6389:2 6391:1 6393:1 6400:1 6424:2 6450:1 6462:1 6467:1 6482:2 6497:1 6499:1 6541:7 6552:1 6555:1 6568:1 6570:1 6580:2 6584:2 6586:1 6589:1 6590:1 6596:1 6600:2 6601:2 6602:1 6616:1 6625:1 6632:1 6636:1 6644:1 6646:1 6647:1 6655:1 6657:1 6664:2 6670:1 6682:1 6688:1 6750:2 6761:1 6782:1 6790:1 6795:2 6809:1 6818:1 6821:1 6826:2 6837:1 6866:2 6868:4 6870:1 6881:1 6898:1 6903:1 6912:1 6913:1 6923:1 6964:1 6970:1 6980:1 6998:3 7022:1 7032:1 7049:1 7072:2 7073:1 7084:1 7096:1 7098:1 7103:1 7104:1 7108:2 7113:1 7135:1 7159:1 7196:2 7237:1 7248:1 7251:1 7253:1 7270:4 7290:2 7295:1 7316:1 7318:1 7323:1 7327:1 7331:1 7337:1 7341:1 7369:1 7372:2 7375:2 7397:1 7401:1 7410:1 7415:2 7433:1 7434:1 7444:1 7446:1 7463:1 7486:1 7493:1 7504:3 7509:1 7529:2 7532:1 7548:1 7551:1 7554:1 7575:1 7585:1 7602:2 7607:2 7613:1 7621:1 7623:1 7650:2 7664:4 7669:1 7670:1 7696:1 7700:2 7705:1 7706:1 7721:1 7730:2 7747:1 7755:2 7762:1 7763:3 7764:1 7781:1 7788:1 7791:2 7792:7 7794:1 7797:1 7801:5 7802:1 7803:1 7810:2 7811:2 7813:1 7814:4 7816:2 7828:1 7849:2 7857:3 7864:1 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8043:1 8058:17 8065:1 8082:4 8083:2 8091:2 8110:1 8115:2 8127:1 8134:2 8146:1 8151:3 8157:1 8168:1 8199:1 8215:1 8233:4 8252:1 8266:1 8288:1 8292:2 8320:1 8329:3 8336:1 8338:1 8346:1 8354:1 8374:1 8407:1 8428:1 8441:1 8468:5 8480:1 8482:2 8496:1 8501:6 8508:1 8513:1 8519:1 8525:1 8539:1 8544:1 8554:1 8556:1 8560:1 8565:2 8571:1 8585:1 8590:1 8591:6 8629:2 8641:1 8658:1 8662:1 8664:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8744:2 8749:3 8754:1 8756:1 8760:1 8765:1 8771:1 8776:2 8783:1 8790:2 8799:1 8804:1 8806:1 8824:1 8830:1 8835:1 8845:1 8849:1 8864:1 8866:1 8870:1 8872:2 8877:1 8885:1 8900:5 8908:1 8955:1 8957:1 8958:2 8962:1 8964:4 8969:1 8972:1 8980:1 8993:1 8998:1 9008:1 9009:1 9035:1 9045:1 9051:1 9078:2 9092:1 9098:2 9119:1 9122:1 9158:2 9164:7 9177:1 9181:1 9189:1 9209:1 9213:1 9241:1 9256:2 9268:1 9269:1 9276:1 9288:1 9303:1 9311:1 9322:1 9324:1 9342:1 9395:5 9396:2 9411:2 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9477:1 9482:1 9488:1 9502:1 9507:2 9508:1 9527:1 9538:1 9539:1 9571:1 9586:1 9605:1 9610:1 9615:1 9626:1 9628:3 9651:1 9666:1 9667:2 9687:4 9689:1 9694:1 9699:1 9703:1 9706:1 9711:1 9725:1 9737:1 9742:1 9754:1 9780:3 9785:1 9790:1 9805:1 9809:1 9813:2 9830:1 9834:1 9865:1 9876:1 9883:2 9914:1 9928:1 9935:1 9939:1 9942:1 9951:1 9954:2 9956:1 9963:1 9979:1 9981:1 10005:3 10011:1 10037:2 10042:1 10055:1 10061:4 10062:1 10064:2 10071:1 10073:1 10074:1 10089:1 10099:1 10104:1 10110:1 10117:1 10123:1 10126:3 10135:3 10137:1 10156:1 10176:2 10177:1 10182:1 10188:1 10204:5 10208:1 10221:1 10223:2 10255:2 10256:1 10301:1 10319:1 10328:1 10330:1 10339:1 10346:1 10359:1 10394:1 10399:1 10422:1 10425:1 10430:1 10468:1 10482:2 10492:2 10498:4 10500:1 10502:2 10503:2 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10549:1 10550:1 10554:1 10556:2 10557:1 10560:2 10561:1 10572:4 10580:1 10594:2 10597:5 10617:1 10620:1 10629:2 10647:1 10650:1 10681:1 10689:2 10696:1 10738:1 10746:1 10757:1 10761:3 10772:3 10775:2 10787:1 10795:2 10798:1 10801:1 10806:1 10820:1 10828:1 10844:2 10857:1 10863:1 10864:1 10876:1 10897:1 10899:1 10906:1 10916:2 10918:1 10920:1 10926:1 10950:1 10964:5 10967:1 10969:1 10973:3 10979:1 10982:1 10984:1 10988:1 10996:1 10997:1 11005:1 11010:1 11011:1 11021:1 11026:1 11027:3 11035:1 11041:1 11050:2 11089:1 11096:1 11097:2 11114:2 11131:1 11172:1 11173:1 11183:1 11187:1 11190:2 11216:1 11227:1 11228:1 11233:1 11249:1 11258:5 11263:1 11267:2 11269:1 11282:1 11286:2 11304:1 11313:1 11326:2 11354:1 11359:1 11371:1 11373:1 11379:2 11407:1 11413:1 11427:1 11442:1 11449:1 11457:1 11470:1 11472:1 11485:4 11486:2 11495:1 11499:2 11504:1 11505:2 11514:1 11521:1 11522:1 11534:1 11536:5 11560:1 11563:1 11566:1 11567:4 11576:1 11583:1 11585:3 11600:1 11618:1 11622:1 11632:1 11642:1 11660:1 11687:1 11721:3 11728:1 11732:1 11738:1 11740:1 11747:1 11755:1 11765:2 11770:2 11771:1 11802:1 11805:2 11808:1 11811:1 11836:1 11854:1 11856:1 11860:1 11884:2 11888:1 11895:2 11899:1 11913:1 11922:1 11926:3 11927:1 11932:1 11936:1 11943:1 11947:2 11959:3 11971:1 11996:1 12001:1 12010:1 12024:1 12026:1 12066:1 12073:1 12078:1 12080:1 12124:1 12127:2 12145:1 12157:4 12169:1 12193:1 12215:2 12221:1 12225:1 12231:1 12247:1 12250:2 12253:1 12265:1 12277:1 12282:1 12283:3 12290:1 12292:1 12298:2 12305:1 12342:1 12347:1 12351:1 12362:1 12364:1 12376:1 12380:1 12395:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12476:2 12479:1 12480:1 12482:1 12486:3 12490:1 12491:5 12492:1 12494:1 12501:2 12503:1 12538:1 12541:2 12550:1 12556:1 12564:1 12583:1 12584:1 12585:1 12587:2 12591:1 12594:2 12596:1 12614:2 12620:1 12625:2 12626:1 12629:1 12631:2 12666:1 12670:1 12678:1 12681:1 12683:1 12696:1 12698:2 12699:1 12700:3 12705:2 12712:2 12715:1 12729:1 12730:1 12743:1 12776:1 12803:2 12806:1 12823:1 12829:1 12831:2 12838:1 12841:1 12842:1 12844:1 12850:1 12861:1 12871:1 12873:1 12883:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 13007:1 13009:1 13013:2 13022:1 13033:1 13034:1 13068:1 13075:1 13095:2 13116:2 13117:1 13125:1 13129:1 13133:1 13150:2 13160:1 13162:1 13182:2 13184:1 13212:1 13233:5 13254:2 13256:1 13260:1 13263:2 13318:4 13341:1 13355:2 13358:1 13366:4 13383:1 13386:2 13413:3 13417:1 13425:1 13452:1 13513:1 13554:1 13562:1 13620:1 13637:1 13665:1 13682:2 13686:2 13723:4 13729:2 13732:1 13733:3 13735:1 13748:1 13763:3 13772:1 13773:1 13806:1 13808:1 13811:1 13849:1 13853:1 13867:1 13891:1 13903:1 13949:4 13957:1 13983:1 14067:2 14078:1 14085:1 14093:1 14102:2 14106:3 14115:1 14121:3 14127:2 14131:1 14165:1 14177:1 14178:7 14211:1 14214:1 14223:2 14224:1 14227:1 14232:1 14244:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14293:1 14299:2 14306:1 14329:1 14349:2 14350:1 14353:1 14383:4 14405:2 14429:1 14470:1 14503:1 14523:1 14529:2 14533:1 14577:1 14584:1 14593:1 14598:2 14621:1 14651:1 14668:1 14670:1 14674:1 14686:1 14694:1 14695:1 14700:1 14708:1 14715:1 14724:1 14727:3 14736:1 14737:1 14739:1 14750:1 14776:1 14779:1 14781:1 14785:1 14789:1 14790:1 14792:1 14796:1 14799:1 14810:1 14831:1 14832:1 14853:1 14871:1 14885:2 14888:1 14903:1 14904:1 14906:1 14909:1 14911:3 14921:1 14926:1 14928:1 14931:1 14934:1 14944:4 14945:2 14951:1 14975:1 14993:1 14998:1 15007:1 15015:1 15021:1 15022:1 15037:1 15038:1 15049:1 15056:1 15057:1 15058:4 15068:2 15076:1 15079:1 15104:1 15110:2 15116:2 15123:1 15125:1 15129:1 15149:1 15164:1 15176:1 15231:1 15253:1 15257:2 15258:3 15264:1 15297:1 15305:1 15311:1 15317:1 15319:3 15322:1 15335:1 15348:9 15355:2 15357:1 15364:1 15365:1 15366:1 15367:1 15370:3 15371:29 15381:1 15385:1 15388:2 15401:1 15425:1 15432:3 15438:2 15441:2 15476:1 15492:1 15519:3 15537:1 15540:1 15551:3 15561:1 15567:2 15572:1 15576:2 15581:1 15588:1 15589:1 15617:1 15620:3 15662:1 15674:1 15676:2 15690:1 15700:1 15709:1 15719:2 15746:2 15759:2 15778:2 15780:1 15785:1 15793:1 15798:1 15828:1 15843:2 15844:1 15853:1 15857:1 15863:1 15866:8 15879:1 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15920:1 15921:1 15938:1 15958:3 15993:1 16011:1 16014:1 16021:1 16044:1 16056:1 16063:1 16098:1 16099:1 16102:2 16103:1 16167:1 16168:1 16177:1 16195:2 16202:1 16204:2 16218:1 16224:1 16225:1 16240:1 16247:1 16249:2 16250:1 16268:1 16273:1 16278:1 16280:1 16284:1 16302:1 16318:1 16342:1 16345:2 16346:1 16347:1 16348:1 16350:1 16385:1 16400:2 16417:1 16426:1 16446:1 16449:1 16458:1 16460:2 16462:1 16481:1 16485:1 16488:1 16490:1 16500:8 16503:1 16553:4 16567:2 16569:1 16572:3 16586:1 16620:1 16623:3 16677:1 16681:1 16682:1 16704:1 16718:3 16725:1 16729:2 16735:1 16763:1 16793:2 16795:1 16814:1 16823:1 16827:2 16836:1 16840:1 16879:1 16884:1 16895:1 16904:1 16923:1 16926:1 16944:1 16945:1 16983:2 16986:1 16998:1 17018:1 17022:1 17024:2 17027:1 17029:1 17032:1 17043:1 17050:1 17078:2 17083:1 17086:1 17095:1 17103:1 17110:2 17114:2 17116:1 17124:1 17128:1 17139:1 17144:1 17166:1 17179:2 17180:1 17185:1 17191:3 17200:1 17203:2 17206:1 17208:1 17209:1 17225:1 17230:1 17253:1 17272:1 17273:2 17276:1 17278:3 17280:1 17297:1 17319:1 17326:2 17334:1 17346:2 17360:1 17365:1 17388:2 17411:1 17439:1 17447:1 17459:1 17467:1 17474:1 17516:1 17535:1 17547:1 17548:1 17551:1 17559:1 17561:2 17576:1 17579:1 17583:1 17585:1 17634:1 17662:2 17676:1 17699:1 17711:1 17715:1 17724:1 17726:1 17727:1 17728:2 17743:2 17756:2 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:1 17820:1 17854:1 17859:1 17874:4 17892:1 17906:2 17918:1 17923:1 17931:1 17932:1 17940:1 17946:3 17952:3 17990:1 18043:2 18044:1 18052:1 18065:1 18082:1 18085:1 18115:1 18116:1 18121:1 18131:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:2 18289:2 18299:1 18301:1 18332:1 18335:1 18338:1 18368:1 18370:1 18374:1 18382:1 18388:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:7 18475:2 18492:1 18523:1 18535:1 18550:1 18563:1 18598:1 18610:1 18611:2 18621:1 18659:1 18681:2 18731:1 18748:1 18756:2 18757:1 18759:1 18769:1 18793:1 18802:1 18811:1 18817:1 18830:1 18841:1 18858:1 18860:1 18863:1 18864:3 18874:1 18895:1 18903:1 18933:1 18947:1 18951:1 18965:1 18974:1 18976:1 18986:1 18996:1 19001:1 19025:1 19039:2 19056:1 19067:1 19081:1 19085:4 19093:2 19107:2 19112:1 19118:1 19145:1 19146:1 19197:1 19203:1 19221:1 19239:1 19242:2 19260:1 19262:2570 19265:1 19288:1 19316:1 19320:1 19325:2 19362:1 19392:2 19398:1 19401:1 19403:1 19423:2 19429:1 19434:1 19474:1 19476:1 19479:2 19486:1 19519:1 19541:1 19547:1 19578:1 19586:1 19594:2 19597:1 19620:1 19622:1 19627:1 19650:2 19663:3 19670:2 19697:1 19707:1 19739:1 19754:1 19758:2 19771:1 19775:1 19776:3 19781:1 19810:1 19812:1 19829:1 19861:1 19869:3 19874:1 19908:3 19914:1 19920:3 19924:1 19957:1 19975:2 20004:1 20006:6 20035:2 20086:1 20093:1 20101:1 20125:1 20131:4 20144:1 20146:2 20150:1 20153:1 20167:1 20187:1 20202:1 20205:1 20208:3 20218:2 20219:2 20223:1 20224:1 20225:1 20226:1 20244:1 20252:1 20259:2 20269:1 20273:1 20279:1 20301:1 20302:1 20333:1 20370:2 20374:1 20376:1 20382:1 20397:1 20405:1 20410:1 20437:1 20438:1 20452:1 20507:1 20518:1 20524:1 20547:1 20548:1 20550:2 20575:1 20601:1 20606:1 20609:1 20615:2 20618:1 20620:1 20630:1 20634:1 20659:2 20664:1 20666:3 20671:1 20672:1 20675:1 20681:1 20684:1 20692:1 20696:1 20700:1 20701:2 20704:2 20706:2 20709:1 20719:1 20721:1 20722:1 20730:1 20737:2 20742:2 20743:1 20752:3 20755:1 20760:1 20779:1 20792:1 20793:1 20797:1 20832:1 20837:2 20860:2 20868:1 20920:3 20922:1 20959:1 20962:1 20977:1 20987:1 20989:1 20993:1 21004:1 21008:1 21020:2 21022:2 21036:1 21052:2 21055:1 21075:1 21084:1 21085:1 21101:2 21112:1 21115:2 21124:2 21160:1 21179:1 21204:1 21205:1 21209:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21250:1 21251:1 21263:1 21269:2 21294:1 21321:3 21328:1 21332:1 21338:1 21346:2 21354:2 21360:1 21368:1 21397:1 21404:1 21405:2 21408:2 21410:1 21426:1 21427:1 21429:2 21437:1 21452:1 21461:1 21481:2 21482:1 21493:1 21503:1 21536:2 21568:1 21570:1 21572:1 21581:1 21598:2 21624:1 21646:1 21665:1 21669:1 21670:1 21690:1 21701:1 21712:1 21741:1 21747:1 21767:1 21784:1 21800:1 21803:2 21809:1 21814:1 21822:2 21825:2 21845:2 21848:1 21849:8 21851:1 21870:1 21883:1 21901:3 21907:1 21910:1 21921:1 21931:1 21942:1 21960:1 21967:1 21970:1 21983:2 21986:1 21990:1 22008:1 22022:1 22026:1 22038:1 22043:1 22050:2 22053:2 22055:1 22057:1 22068:1 22084:1 22099:1 22104:1 22109:1 22141:1 22144:1 22179:3 22185:1 22190:2 22214:1 22219:1 22243:1 22257:1 22266:1 22277:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22353:5 22363:1 22375:1 22384:1 22395:2 22396:3 22415:1 22445:1 22451:2 22459:1 22468:1 22477:1 22486:2 22495:1 22508:1 22512:1 22530:2 22533:1 22548:2 22554:1 22560:2 22577:1 22579:1 22600:2 22606:2 22609:1 22627:2 22628:2 22638:1 22662:2 22667:3 22679:1 22685:1 22697:1 22705:1 22723:1 22732:2 22733:1 22763:1 22770:1 22779:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:1 22853:2 22867:1 22914:3 22919:1 22924:1 22927:1 22928:4 22974:1 22985:1 23003:2 23004:1 23006:1 23007:4 23013:1 23027:5 23029:1 23042:1 23049:1 23071:1 23089:1 23113:1 23125:1 23133:1 23161:6 23165:1 23171:1 23172:1 23176:1 23236:1 23237:1 23241:1 23247:1 23255:1 23264:1 23268:2 23297:2 23311:3 23358:2 23363:1 23365:1 23367:1 23372:1 23376:1 23382:1 23383:1 23384:1 23399:1 23409:1 23410:1 23413:1 23430:1 23433:1 23436:2 23448:1 23458:3 23467:1 23477:1 23478:1 23503:1 23505:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:1 23561:3 23562:1 23581:1 23613:1 23623:1 23627:1 23667:1 23671:1 23688:1 23704:1 23717:1 23722:1 23733:3 23747:2 23774:2 23790:1 23814:4 23831:1 23834:5 23841:1 23856:1 23868:1 23897:1 23912:4 23913:1 23926:2 23927:3 23928:3 23935:1 23938:1 23940:3 23941:5 23958:1 23977:1 23988:1 24003:2 24008:1 24013:1 24021:1 24033:3 24047:1 24051:2 24058:1 24068:2 24078:1 24080:1 24089:1 24128:1 24157:1 24160:1 24192:2 24194:1 24197:2 24199:2 24205:2 24209:1 24212:2 24223:5 24235:1 24249:1 24264:4 24284:1 24292:1 24305:2 24360:1 24370:2 24373:1 24375:2 24379:4 24383:1 24388:1 24392:3 24401:1 24404:1 24405:1 24415:1 24421:1 24424:1 24427:1 24431:1 24436:1 24441:3 24453:2 24471:1 24474:1 24489:1 24494:1 24507:1 24544:1 24551:1 24553:1 24559:1 24560:1 24576:2 24623:2 24626:1 24631:1 24636:5 24652:1 24655:1 24658:1 24661:1 24662:3 24715:1 24719:1 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24803:1 24810:1 24835:1 24898:1 24904:8 24906:1 24914:1 24915:2 24918:2 24926:2 24937:1 24965:3 24992:1 24999:1 25024:1 25026:1 25032:1 25036:1 25044:1 25048:2 25051:3 25054:2 25074:1 25081:3 25099:1 25114:1 25142:1 25153:2 25157:1 25159:1 25175:1 25176:2 25185:1 25186:1 25187:1 25201:1 25206:1 25211:1 25225:2 25231:2 25237:1 25238:1 25249:1 25254:1 25263:1 25276:1 25277:1 25301:1 25339:1 25340:1 25365:1 25384:1 25393:2 25395:1 25401:1 25415:1 25439:1 25447:2 25451:2 25456:1 25462:4 25482:1 25483:2 25484:1 25503:1 25508:1 25512:1 25532:1 25539:1 25543:1 25568:1 25617:1 25627:1 25631:4 25644:1 25652:1 25655:1 25659:2 25678:1 25680:1 25681:1 25704:1 25705:2 25729:1 25731:1 25757:1 25762:1 25773:1 25777:1 25828:1 25835:1 25859:1 25871:1 25879:1 25893:2 25904:1 25905:1 25920:2 25922:2 25933:2 25935:1 25938:2 25943:3 25945:1 25952:1 25953:1 25957:2 25964:1 25974:1 25982:3 25986:1 26013:2 26024:2 26035:2 26041:1 26050:1 26052:1 26068:1 26072:1 26092:2 26093:2 26095:2 26129:1 26130:2 26138:1 26139:1 26156:1 26160:1 26172:1 26178:1 26188:1 26214:1 26233:2 26244:1 26268:1 26276:1 26281:2 26284:2 26299:1 26307:1 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26387:1 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:2 26511:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:3 26648:1 26649:1 26667:1 26670:4 26689:1 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26757:1 26797:1 26799:1 26845:1 26846:1 26857:2 26858:2 26871:1 26888:2 26893:2 26903:1 26906:1 26911:1 26915:2 26916:1 26918:3 26924:1 26955:2 26965:2 26969:1 26981:1 26984:2 26991:1 27002:1 27006:2 27007:2 27008:1 27015:2 27017:1 27023:3 27024:1 27025:2 27033:2 27039:1 27067:1 27089:1 27095:1 27115:5 27116:2 27164:1 27165:1 27200:1 27201:1 27203:1 27225:1 27233:1 27260:1 27261:4 27267:1 27269:1 27293:1 27294:1 27302:1 27312:1 27318:1 27319:1 27350:1 27353:1 27355:1 27369:1 27384:1 27386:2 27390:2 27395:1 27400:1 27404:1 27410:1 27424:1 27425:1 27430:4 27438:1 27448:1 27451:1 27471:1 27473:1 27474:1 27480:1 27496:1 27527:1 27536:1 27540:1 27551:2 27554:2 27555:1 27564:4 27571:1 27584:1 27613:2 27618:1 27635:1 27657:1 27658:1 27665:1 27668:1 27669:2 27704:1 27713:1 27727:1 27731:1 27739:1 27754:1 27776:1 27808:1 27818:2 27820:1 27825:1 27831:1 27848:1 27857:1 27874:2 27877:2 27878:1 27880:2 27881:1 27891:1 27897:3 27905:1 27910:1 27914:1 27944:1 27948:1 27952:1 27966:1 27968:1 27985:2 28001:1 28002:1 28003:2 28014:4 28032:1 28097:2 28098:1 28101:1 28109:1 28119:1 28130:2 28138:1 28139:2 28146:1 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28290:1 28302:1 28303:1 28311:1 28315:1 28318:1 28322:1 28330:1 28337:1 28358:1 28393:1 28427:1 28432:1 28435:2 28456:1 28462:2 28468:2 28481:1 28495:1 28496:1 28504:1 28522:2 28532:1 28536:2 28542:1 28547:1 28555:1 28562:1 28577:1 28588:1 28589:2 28591:1 28596:2 28617:11 28622:1 28625:1 28629:1 28633:1 28640:1 28643:1 28662:6 28663:2 28668:1 28671:2 28672:1 28684:3 28699:1 28714:1 28719:1 28725:1 28755:1 28759:1 28806:3 28817:1 28827:2 28829:1 28835:1 28838:1 28864:1 28868:1 28872:2 28889:1 28896:1 28903:1 28907:1 28938:1 28952:1 28964:1 28969:1 28977:1 28987:1 28997:1 29019:1 29023:3 29025:1 29034:1 29043:1 29046:3 29049:1 29055:1 29074:1 29090:1 29091:1 29098:1 29102:3 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29177:1 29189:1 29190:1 29204:1 29205:1 29233:1 29251:1 29252:1 29265:1 29286:1 29297:1 29322:1 29324:2 29333:1 29336:1 29343:1 29348:1 29366:1 29370:1 29376:2 29401:1 29453:1 29481:1 29482:1 29483:1 29519:2 29525:1 29556:1 29581:1 29628:2 29633:1 29650:1 29695:4 29703:1 29706:1 29711:1 29717:1 29734:1 29738:5 29741:1 29743:1 29746:1 29753:1 29754:1 29760:1 29764:2 29773:1 29790:2 29795:1 29807:2 29818:1 29832:1 29846:1 29848:2 29851:1 29854:3 29864:1 29868:1 29888:1 29889:1 29891:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29972:1 29974:1 29980:1 29996:1
17 12:1 14:2 24:1 25:1 32:1 41:1 50:1 57:2 65:1 78:1 100:1 110:1 148:1 157:7 167:1 171:2 174:1 180:1 190:1 212:1 213:1 214:1 226:1 241:2 253:1 258:2 282:2 284:2 307:1 318:1 319:1 324:1 330:2 377:1 380:2 381:1 393:1 399:1 452:1 462:1 464:2 470:1 476:1 542:1 555:1 591:3 597:1 599:1 602:1 618:1 648:1 657:1 660:3 671:1 677:2 726:1 747:1 762:1 765:1 771:1 788:1 796:3 811:5 817:1 867:2 869:1 873:1 904:1 906:1 908:2 912:6 913:3 915:1 917:2 919:1 921:4 924:2 925:3 926:1 931:1 935:1 936:2 940:1 942:2 945:2 960:1 966:4 967:1 968:1 972:2 991:1 1010:3 1034:1 1036:2 1039:1 1040:2 1052:1 1054:1 1055:1 1059:1 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:3 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:1 1163:1 1176:1 1186:1 1193:2 1197:2 1238:1 1247:1 1252:1 1260:2 1262:1 1266:1 1270:1 1283:1 1296:1 1297:1 1301:1 1317:1 1318:1 1321:1 1332:1 1334:1 1335:1 1351:1 1362:1 1365:1 1382:1 1385:1 1387:1 1413:1 1414:1 1425:1 1460:1 1463:1 1481:1 1485:1 1486:2 1513:1 1516:1 1518:1 1521:1 1528:1 1536:2 1540:1 1543:1 1567:1 1571:1 1588:4 1600:1 1603:1 1611:1 1614:1 1615:1 1619:1 1634:2 1645:1 1663:1 1677:1 1682:2 1687:1 1691:3 1708:1 1715:1 1716:1 1719:1 1727:2 1736:1 1741:1 1746:1 1750:1 1754:1 1759:1 1760:1 1761:1 1764:1 1788:2 1795:1 1797:1 1803:1 1804:1 1812:3 1813:1 1824:1 1826:1 1827:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1865:1 1874:1 1877:1 1892:1 1913:1 1921:3 1927:2 1933:2 1935:1 1939:1 1963:1 1979:1 1981:1 2000:1 2011:2 2013:1 2024:1 2025:2 2036:1 2041:1 2057:1 2058:1 2086:2 2128:1 2131:2 2154:2 2161:1 2170:1 2204:1 2249:1 2293:2 2330:1 2339:1 2360:1 2365:1 2366:1 2386:1 2404:1 2406:2 2412:1 2421:1 2428:4 2435:2 2436:1 2438:1 2448:5 2452:1 2455:2 2457:2 2459:2 2461:1 2465:1 2470:1 2473:5 2483:1 2497:2 2518:2 2532:1 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:1 2631:5 2636:2 2655:2 2666:1 2671:1 2679:1 2680:2 2685:1 2686:1 2692:1 2700:1 2701:1 2702:1 2706:3 2709:1 2713:1 2718:1 2728:2 2744:1 2758:1 2760:2 2784:1 2819:2 2824:1 2833:1 2858:1 2871:1 2881:1 2890:1 2892:1 2906:1 2908:1 2911:3 2921:1 2978:1 2983:1 2986:1 2989:2 2990:2 2997:1 3001:1 3007:1 3017:1 3020:1 3022:1 3043:1 3045:1 3062:4 3070:4 3080:5 3100:1 3119:1 3120:1 3131:2 3134:1 3150:1 3165:1 3166:1 3183:2 3190:3 3194:2 3197:2 3203:1 3219:1 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3328:1 3331:1 3337:1 3338:2 3362:1 3369:1 3370:1 3422:1 3433:3 3502:1 3525:1 3544:2 3586:1 3624:1 3627:2 3632:1 3635:1 3653:1 3654:3 3674:1 3676:1 3677:1 3696:1 3724:2 3725:1 3729:1 3740:3 3746:1 3748:1 3749:1 3751:5 3762:1 3767:1 3774:1 3781:1 3790:2 3802:1 3820:1 3833:1 3858:1 3863:1 3869:3 3872:1 3883:2 3886:1 3894:2 3914:2 3924:1 3927:1 3953:1 3955:1 3963:1 3984:3 3986:1 3990:1 3991:1 4005:2 4039:1 4057:2 4058:1 4062:3 4080:1 4100:1 4114:1 4118:3 4122:1 4127:1 4137:1 4141:2 4150:1 4170:1 4171:1 4179:1 4180:1 4189:1 4191:1 4233:1 4238:1 4268:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4318:1 4324:1 4334:1 4338:2 4348:1 4358:2 4359:1 4366:1 4374:2 4413:1 4435:1 4437:1 4440:1 4458:1 4465:1 4467:2 4468:1 4471:1 4472:1 4473:1 4484:1 4522:2 4526:2 4564:1 4575:4 4578:1 4579:1 4588:1 4589:2 4597:1 4601:3 4627:1 4628:1 4631:1 4646:1 4655:1 4656:1 4667:2 4669:1 4701:1 4707:1 4708:1 4718:1 4729:1 4744:1 4769:1 4780:1 4782:1 4783:1 4789:2 4790:1 4794:1 4799:1 4801:5 4810:2 4822:1 4827:1 4831:1 4842:1 4867:2 4882:3 4899:1 4901:2 4914:1 4926:1 4933:1 4952:1 4953:2 4959:5 4967:1 4968:1 4978:1 4984:1 4987:1 4992:3 4997:1 4999:4 5012:1 5017:1 5021:1 5029:2 5031:2 5055:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5117:1 5118:1 5119:1 5124:1 5129:1 5130:2 5132:1 5136:2 5138:1 5145:2 5149:2 5154:1 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5224:1 5264:1 5276:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:2 5354:3 5361:1 5366:1 5375:2 5377:1 5401:1 5404:1 5416:2 5420:1 5440:1 5450:1 5458:2 5483:1 5486:1 5495:1 5497:1 5511:2 5513:1 5529:1 5533:1 5541:2 5556:1 5601:1 5606:1 5618:1 5619:2 5625:1 5630:1 5651:1 5674:1 5682:1 5723:2 5726:1 5728:1 5731:1 5740:1 5741:3 5749:1 5772:2 5798:4 5809:1 5814:1 5844:1 5856:1 5874:1 5877:1 5885:1 5893:2 5900:1 5911:1 5927:2 5929:1 5935:1 5951:1 5959:2 5970:1 5971:1 5989:1 5999:1 6005:1 6007:1 6011:1 6018:2 6022:2 6026:2 6027:9 6036:2 6055:2 6065:1 6082:1 6107:3 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:2 6185:1 6188:1 6190:1 6202:3 6221:2 6239:1 6245:1 6247:1 6264:2 6265:3 6268:1 6288:2 6293:1 6298:1 6301:1 6303:1 6306:1 6309:1 6318:4 6320:1 6343:1 6367:2 6377:1 6382:2 6383:2 6389:2 6391:1 6393:1 6400:1 6424:2 6450:1 6462:1 6465:1 6467:1 6482:4 6497:1 6499:1 6541:7 6552:1 6555:1 6568:1 6570:1 6580:2 6584:2 6586:1 6589:1 6590:1 6596:1 6600:2 6601:2 6602:1 6616:1 6625:1 6632:1 6636:1 6644:1 6646:1 6647:1 6655:1 6657:1 6664:2 6670:1 6682:1 6688:1 6750:2 6753:1 6761:1 6782:1 6790:1 6795:2 6809:1 6818:1 6821:1 6826:2 6837:1 6866:2 6868:4 6870:1 6881:1 6898:1 6903:1 6912:1 6913:1 6923:1 6964:1 6970:1 6980:1 6998:3 7022:1 7032:1 7049:1 7069:3 7072:2 7073:1 7084:1 7096:1 7098:1 7103:1 7104:1 7108:2 7113:2 7135:1 7159:1 7196:2 7237:1 7248:1 7251:1 7253:1 7270:4 7290:2 7295:1 7316:1 7318:1 7323:1 7327:1 7331:1 7337:1 7341:1 7369:1 7372:2 7375:2 7397:1 7401:1 7410:1 7415:2 7433:1 7434:1 7444:1 7446:1 7449:1 7463:1 7486:1 7493:1 7504:3 7509:1 7529:2 7532:1 7548:1 7551:1 7554:1 7575:1 7585:1 7602:2 7607:2 7613:1 7621:1 7623:1 7650:2 7664:4 7669:1 7670:1 7696:1 7700:2 7705:1 7706:1 7721:1 7730:2 7747:1 7755:2 7762:1 7763:3 7764:1 7781:1 7788:2 7791:2 7792:7 7794:1 7797:1 7801:6 7802:1 7803:1 7810:2 7811:2 7813:1 7814:4 7816:2 7828:1 7849:2 7857:3 7864:1 7871:1 7888:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8043:1 8058:17 8065:1 8082:4 8083:2 8091:2 8110:1 8115:2 8127:1 8134:2 8146:1 8151:3 8157:1 8168:1 8199:1 8215:1 8233:4 8252:1 8266:1 8288:1 8292:2 8320:1 8329:3 8336:1 8338:1 8340:1 8346:1 8354:1 8374:1 8407:2 8428:1 8441:1 8468:5 8480:1 8482:2 8496:1 8501:6 8508:1 8513:1 8519:1 8525:1 8539:1 8544:1 8554:1 8556:1 8560:1 8565:2 8571:1 8585:1 8590:1 8591:6 8629:2 8641:2 8658:1 8662:1 8664:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8744:2 8749:3 8754:1 8756:1 8760:1 8765:1 8771:1 8776:2 8783:1 8790:2 8799:1 8804:1 8806:1 8824:1 8830:1 8835:1 8845:2 8849:1 8864:1 8866:1 8870:1 8872:2 8877:1 8885:1 8900:5 8908:1 8955:1 8957:1 8958:2 8962:1 8964:4 8969:1 8972:1 8980:1 8986:1 8993:2 8998:1 9008:1 9009:1 9035:1 9045:1 9051:1 9078:2 9089:1 9092:1 9098:2 9119:1 9122:1 9158:2 9164:7 9177:1 9181:1 9189:1 9209:1 9213:1 9241:1 9256:2 9268:1 9269:1 9276:1 9288:1 9303:1 9311:1 9322:1 9324:1 9342:1 9374:1 9395:5 9396:2 9411:2 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9477:1 9482:1 9488:1 9502:1 9507:3 9508:1 9527:1 9538:1 9539:1 9571:1 9586:1 9605:1 9610:1 9615:1 9626:1 9628:3 9651:1 9666:1 9667:2 9687:4 9689:1 9694:1 9699:1 9703:1 9706:1 9711:1 9725:1 9726:1 9737:1 9742:1 9754:1 9766:1 9780:3 9785:1 9790:1 9805:1 9809:1 9813:2 9816:1 9830:1 9834:1 9865:1 9876:1 9883:2 9914:1 9928:1 9935:1 9939:1 9942:1 9951:1 9954:2 9956:1 9963:1 9979:1 9981:1 10005:3 10011:1 10037:2 10042:1 10047:1 10055:1 10061:4 10062:1 10064:2 10071:1 10073:1 10074:1 10089:1 10099:1 10104:1 10110:1 10117:1 10123:1 10124:1 10126:3 10135:3 10137:1 10156:1 10176:2 10177:1 10182:1 10188:1 10204:5 10208:1 10221:1 10223:2 10255:2 10256:1 10301:1 10319:1 10328:1 10330:1 10339:1 10346:1 10347:1 10359:1 10380:1 10394:1 10399:1 10422:1 10425:1 10430:1 10468:1 10472:1 10482:2 10492:2 10498:4 10500:1 10502:2 10503:2 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10549:1 10550:1 10554:1 10556:2 10557:1 10560:3 10561:1 10572:4 10580:1 10594:3 10597:5 10617:1 10620:1 10629:2 10647:1 10650:1 10681:1 10689:2 10696:1 10738:1 10746:1 10757:1 10761:3 10772:3 10775:2 10787:1 10795:2 10798:1 10801:1 10806:1 10820:1 10828:1 10844:2 10857:1 10863:1 10864:1 10876:1 10897:1 10899:1 10906:1 10914:1 10916:2 10918:1 10920:1 10926:1 10950:1 10964:5 10967:1 10969:1 10973:3 10979:1 10982:1 10984:1 10988:1 10996:1 10997:1 11005:1 11010:1 11011:1 11021:1 11026:1 11027:3 11035:1 11041:1 11050:2 11089:1 11096:1 11097:2 11114:2 11131:1 11172:1 11173:1 11183:1 11187:1 11190:2 11216:1 11227:1 11228:1 11233:1 11249:1 11258:6 11263:1 11267:2 11269:1 11282:1 11286:2 11304:1 11313:1 11326:2 11354:1 11359:1 11371:1 11373:1 11379:2 11407:1 11413:1 11427:1 11442:1 11449:1 11457:1 11470:1 11472:1 11485:4 11486:3 11495:1 11499:2 11504:1 11505:2 11514:1 11521:1 11522:2 11534:1 11536:5 11560:1 11563:1 11566:1 11567:4 11576:1 11583:1 11585:3 11600:1 11618:1 11622:1 11632:1 11642:1 11660:2 11687:1 11721:3 11728:1 11732:1 11738:1 11740:1 11747:1 11755:1 11765:2 11770:2 11771:1 11802:1 11805:2 11808:1 11811:1 11836:1 11846:1 11854:1 11856:1 11860:1 11882:1 11884:2 11888:1 11895:2 11899:1 11913:1 11922:1 11926:3 11927:1 11932:1 11936:2 11943:1 11947:2 11959:4 11971:1 11996:1 12001:1 12010:1 12024:1 12026:1 12066:1 12073:1 12078:1 12080:1 12124:1 12127:2 12145:1 12157:4 12169:1 12193:1 12215:2 12221:1 12225:1 12231:1 12247:1 12250:2 12253:1 12265:1 12277:1 12282:1 12283:3 12290:1 12292:1 12298:2 12299:1 12305:1 12342:1 12347:1 12351:1 12362:1 12364:1 12376:1 12380:1 12395:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12476:2 12479:1 12480:1 12482:1 12486:3 12490:1 12491:5 12492:1 12494:1 12501:2 12503:1 12538:1 12541:2 12550:1 12556:1 12564:1 12583:1 12584:2 12585:1 12587:2 12591:1 12594:2 12596:1 12614:2 12620:1 12625:2 12626:1 12629:1 12631:2 12666:1 12670:1 12678:1 12681:1 12683:1 12696:1 12698:2 12699:1 12700:3 12705:2 12712:2 12715:1 12729:1 12730:1 12743:1 12776:1 12803:2 12806:1 12823:1 12829:1 12831:2 12838:1 12841:1 12842:1 12844:1 12850:1 12861:1 12871:1 12873:1 12883:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 13007:1 13009:1 13012:1 13013:2 13022:2 13033:1 13034:1 13068:1 13075:1 13095:2 13116:2 13117:1 13125:1 13129:1 13133:1 13150:2 13160:1 13162:1 13182:2 13184:1 13212:1 13233:5 13254:2 13256:1 13260:1 13263:2 13318:5 13341:1 13355:2 13358:1 13366:4 13383:1 13386:2 13413:3 13417:1 13425:1 13452:1 13513:1 13518:1 13554:1 13562:1 13620:1 13637:1 13665:1 13682:2 13686:2 13721:1 13723:5 13729:2 13732:1 13733:3 13735:1 13748:1 13763:3 13772:1 13773:2 13806:1 13808:1 13811:1 13849:1 13853:1 13867:1 13887:1 13891:1 13903:1 13915:1 13949:4 13957:1 13960:1 13983:1 14011:1 14067:2 14078:1 14085:1 14093:1 14102:2 14106:3 14115:1 14121:3 14127:2 14131:1 14148:1 14165:1 14177:1 14178:7 14211:1 14214:1 14223:2 14224:1 14227:1 14232:1 14244:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14293:1 14299:2 14306:1 14329:1 14349:2 14350:1 14353:1 14383:4 14405:2 14429:1 14455:1 14470:1 14503:1 14523:1 14529:2 14533:1 14577:1 14584:1 14593:1 14598:2 14621:1 14651:1 14668:1 14670:1 14674:1 14686:1 14694:1 14695:1 14700:1 14708:1 14715:1 14724:1 14727:3 14736:1 14737:1 14739:1 14750:1 14776:1 14779:1 14781:1 14785:1 14789:1 14790:1 14792:1 14796:1 14799:1 14810:1 14831:1 14832:1 14853:1 14871:1 14885:2 14888:1 14899:1 14903:1 14904:1 14906:1 14909:1 14911:3 14921:1 14926:1 14928:1 14931:1 14934:1 14944:4 14945:2 14951:1 14975:1 14993:1 14998:1 15007:1 15015:1 15021:1 15022:1 15037:1 15038:1 15049:1 15056:1 15057:1 15058:4 15068:2 15076:1 15079:1 15104:1 15110:2 15116:2 15123:1 15125:1 15129:1 15149:1 15164:1 15176:1 15231:1 15253:1 15257:2 15258:3 15264:1 15297:1 15305:1 15311:1 15317:1 15319:3 15322:1 15335:1 15348:9 15355:2 15357:1 15364:1 15365:1 15366:1 15367:1 15370:3 15371:31 15381:1 15385:1 15388:2 15401:1 15425:1 15432:3 15438:2 15441:2 15476:1 15492:1 15519:3 15537:1 15540:1 15551:3 15561:1 15567:2 15572:1 15576:2 15580:1 15581:1 15588:1 15589:1 15617:1 15620:3 15622:1 15662:1 15674:1 15676:2 15690:1 15700:1 15709:1 15719:2 15746:2 15759:2 15778:2 15780:1 15785:1 15793:1 15798:1 15828:1 15843:2 15844:1 15853:1 15857:1 15863:1 15866:8 15879:1 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15920:1 15921:1 15938:1 15958:3 15993:1 16011:1 16014:1 16021:1 16044:1 16056:1 16063:1 16098:1 16099:1 16102:2 16103:1 16110:1 16167:1 16168:1 16177:1 16179:1 16195:2 16202:1 16204:2 16218:1 16224:1 16225:1 16240:1 16247:1 16249:2 16250:1 16268:1 16273:1 16278:1 16280:1 16284:1 16302:1 16318:1 16342:1 16345:2 16346:1 16347:1 16348:1 16350:1 16385:1 16400:2 16417:1 16426:1 16446:1 16449:1 16458:1 16460:2 16462:1 16481:1 16485:1 16488:1 16490:1 16500:9 16503:1 16553:4 16567:2 16569:1 16572:3 16586:2 16589:1 16614:1 16620:1 16623:3 16677:1 16681:1 16682:1 16704:1 16717:1 16718:3 16725:1 16729:2 16735:1 16763:1 16793:2 16795:1 16814:1 16823:1 16827:2 16836:1 16840:1 16879:1 16884:1 16895:1 16904:1 16923:1 16926:1 16944:1 16945:1 16983:2 16986:1 16998:1 17018:1 17022:1 17024:2 17027:1 17029:1 17032:1 17043:1 17050:1 17078:2 17083:1 17086:1 17095:1 17103:1 17110:3 17114:2 17116:1 17124:1 17126:2 17128:1 17135:1 17139:1 17144:1 17166:1 17179:2 17180:1 17185:1 17191:3 17200:1 17203:2 17206:1 17208:1 17209:1 17225:1 17230:1 17253:1 17272:1 17273:2 17276:1 17278:3 17280:1 17297:1 17319:1 17326:2 17334:1 17346:2 17360:1 17365:1 17388:2 17411:1 17439:2 17447:1 17459:1 17467:1 17474:1 17516:1 17535:1 17547:1 17548:1 17551:1 17559:1 17561:2 17576:1 17579:1 17583:1 17585:1 17634:1 17662:2 17676:1 17699:1 17711:1 17715:1 17724:1 17726:1 17727:1 17728:2 17743:2 17756:2 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:2 17820:1 17854:1 17859:1 17874:4 17892:1 17906:2 17918:1 17923:1 17931:1 17932:1 17940:1 17946:3 17952:3 17990:1 18043:2 18044:1 18052:1 18065:1 18082:1 18085:2 18115:1 18116:1 18121:1 18131:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:2 18254:1 18280:1 18288:1 18289:2 18299:1 18301:1 18332:1 18335:1 18338:1 18368:1 18370:1 18374:1 18382:1 18388:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:8 18475:2 18492:1 18523:1 18535:1 18550:1 18563:1 18598:1 18600:1 18610:1 18611:2 18621:1 18659:1 18681:2 18731:1 18748:1 18756:2 18757:1 18759:1 18769:1 18793:1 18802:1 18811:1 18817:1 18830:1 18841:1 18858:1 18860:1 18863:2 18864:3 18874:1 18891:1 18895:1 18903:1 18905:1 18933:1 18947:1 18951:1 18965:1 18974:1 18976:1 18986:1 18996:1 19001:1 19025:1 19039:2 19056:1 19067:1 19081:1 19085:4 19093:2 19107:2 19112:1 19118:1 19145:1 19146:1 19197:1 19203:2 19210:1 19221:1 19239:1 19242:3 19260:1 19262:2633 19265:1 19288:1 19316:1 19320:1 19325:2 19362:1 19392:2 19398:1 19401:1 19403:1 19423:2 19429:2 19434:1 19474:1 19476:1 19479:2 19486:1 19515:2 19519:1 19541:2 19547:1 19578:1 19586:1 19594:2 19597:1 19620:1 19622:1 19627:1 19650:2 19663:3 19670:2 19697:1 19707:1 19739:1 19754:1 19758:2 19771:1 19775:1 19776:3 19781:1 19810:1 19812:1 19829:1 19861:1 19869:3 19874:1 19903:1 19908:3 19914:1 19920:3 19924:1 19948:1 19957:1 19975:2 20004:1 20006:6 20035:2 20086:1 20093:1 20101:1 20125:1 20131:4 20144:1 20146:2 20150:1 20153:1 20167:1 20187:1 20202:1 20205:1 20208:3 20218:2 20219:2 20223:1 20224:1 20225:1 20226:1 20244:1 20252:1 20259:2 20269:1 20273:1 20279:1 20301:1 20302:1 20333:1 20370:2 20374:1 20376:1 20382:1 20397:1 20400:1 20405:1 20410:1 20437:1 20438:1 20452:1 20507:1 20518:1 20524:1 20547:1 20548:1 20550:2 20575:1 20601:1 20606:1 20609:1 20615:2 20618:1 20620:1 20630:1 20634:1 20659:2 20664:1 20666:3 20671:1 20672:1 20675:1 20681:1 20684:1 20691:1 20692:1 20696:1 20700:1 20701:2 20704:2 20706:2 20709:1 20719:1 20721:1 20722:1 20730:1 20737:2 20742:2 20743:1 20752:3 20755:1 20760:1 20779:1 20792:1 20793:1 20797:1 20832:1 20837:2 20860:2 20868:1 20920:3 20922:1 20959:1 20962:1 20970:1 20977:1 20987:1 20989:1 20993:2 21004:1 21008:1 21020:2 21022:2 21036:1 21052:2 21055:1 21075:1 21084:2 21085:2 21101:2 21112:1 21115:2 21124:2 21160:1 21179:1 21204:1 21205:1 21208:1 21209:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21250:1 21251:1 21260:1 21263:1 21269:2 21294:1 21321:3 21328:1 21332:1 21338:1 21346:2 21354:2 21360:1 21368:1 21397:1 21404:1 21405:3 21408:2 21410:1 21414:1 21426:1 21427:1 21429:2 21437:1 21452:1 21461:2 21481:2 21482:1 21493:1 21503:1 21521:1 21536:2 21568:1 21570:2 21572:1 21581:1 21598:2 21624:1 21646:1 21665:1 21669:1 21670:1 21690:1 21701:1 21712:1 21741:1 21747:1 21767:1 21784:1 21800:1 21803:2 21809:1 21814:1 21822:2 21825:2 21845:2 21848:1 21849:8 21851:1 21870:1 21883:1 21901:3 21907:1 21910:1 21921:1 21931:1 21942:1 21952:1 21960:1 21967:1 21970:1 21983:2 21986:1 21990:1 22008:1 22022:1 22026:1 22038:1 22043:1 22049:1 22050:2 22053:2 22055:1 22057:1 22068:1 22084:1 22099:1 22104:1 22109:1 22141:1 22144:1 22179:3 22185:1 22190:2 22214:1 22219:1 22243:1 22257:1 22266:1 22277:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22353:5 22363:1 22375:1 22384:1 22395:2 22396:3 22415:1 22445:1 22451:2 22459:1 22468:1 22477:1 22486:2 22495:1 22508:1 22512:1 22530:2 22533:1 22548:2 22554:1 22560:2 22577:1 22579:1 22600:2 22606:2 22609:1 22627:2 22628:2 22638:1 22662:2 22667:3 22679:1 22685:1 22697:1 22705:1 22723:2 22732:2 22733:1 22743:1 22763:1 22770:1 22779:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:1 22853:2 22867:1 22914:3 22916:1 22919:1 22924:1 22927:1 22928:4 22974:1 22985:1 23003:2 23004:1 23006:1 23007:5 23013:1 23027:5 23029:1 23042:1 23049:1 23071:1 23077:1 23089:1 23113:1 23125:1 23133:1 23161:6 23165:1 23171:1 23172:1 23176:1 23236:1 23237:1 23241:1 23247:1 23255:1 23264:1 23268:2 23297:2 23311:3 23358:2 23363:1 23365:1 23367:1 23372:1 23376:1 23382:1 23383:1 23384:1 23399:1 23409:1 23410:1 23413:1 23430:1 23433:1 23436:2 23448:1 23458:3 23467:1 23477:1 23478:1 23503:1 23505:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:1 23561:3 23562:1 23581:1 23583:1 23613:1 23623:1 23627:1 23632:1 23667:1 23671:1 23688:1 23704:1 23717:1 23722:1 23733:3 23747:2 23774:2 23790:1 23814:4 23831:1 23834:5 23841:1 23856:1 23868:1 23897:1 23912:4 23913:1 23926:2 23927:3 23928:3 23935:1 23938:1 23940:3 23941:6 23958:1 23977:1 23988:1 24003:2 24008:1 24013:1 24021:1 24033:4 24047:1 24051:2 24058:1 24068:2 24078:1 24080:1 24089:1 24122:1 24128:1 24157:1 24160:1 24192:2 24194:1 24197:2 24199:2 24205:2 24209:1 24212:2 24223:5 24235:1 24249:1 24264:4 24284:1 24292:1 24305:3 24360:1 24370:2 24373:1 24375:2 24379:4 24383:1 24388:1 24392:3 24401:1 24404:1 24405:1 24415:1 24421:1 24423:1 24424:1 24427:1 24431:1 24436:1 24441:3 24453:2 24471:1 24474:1 24489:1 24494:1 24507:1 24544:1 24547:1 24551:1 24553:1 24559:1 24560:1 24576:2 24623:2 24626:1 24631:1 24636:5 24652:1 24655:1 24658:1 24661:1 24662:3 24715:1 24719:1 24734:2 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24791:1 24803:1 24810:1 24835:1 24898:1 24904:8 24906:1 24914:1 24915:2 24918:2 24926:2 24937:1 24956:1 24965:3 24992:1 24999:1 25024:1 25026:1 25032:1 25036:1 25044:1 25048:2 25051:3 25054:2 25074:1 25081:3 25099:1 25114:1 25120:1 25142:1 25153:2 25157:1 25159:1 25175:1 25176:2 25185:1 25186:1 25187:1 25201:1 25206:1 25211:1 25225:2 25231:2 25237:1 25238:1 25249:1 25254:1 25263:1 25276:1 25277:1 25301:1 25339:1 25340:1 25365:1 25384:1 25393:2 25395:1 25401:1 25415:1 25439:1 25447:2 25451:2 25456:1 25462:4 25482:1 25483:2 25484:1 25503:1 25508:1 25512:1 25532:1 25539:1 25543:1 25568:1 25600:1 25617:1 25627:1 25631:4 25644:1 25652:1 25655:1 25659:2 25678:1 25680:1 25681:1 25704:2 25705:2 25729:1 25731:1 25736:1 25757:2 25762:1 25773:1 25777:1 25828:1 25835:1 25859:1 25871:1 25879:1 25893:2 25904:1 25905:1 25920:2 25922:2 25933:2 25935:2 25938:2 25943:3 25945:1 25952:1 25953:1 25957:2 25964:1 25974:1 25982:3 25986:1 26013:2 26024:4 26035:2 26041:1 26050:1 26052:2 26068:1 26072:1 26084:1 26092:2 26093:2 26095:2 26129:1 26130:2 26138:1 26139:1 26156:1 26160:2 26172:1 26178:2 26188:1 26214:1 26220:1 26233:3 26244:1 26268:1 26276:1 26281:2 26284:2 26299:1 26307:2 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26387:1 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:2 26511:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:3 26648:1 26649:1 26667:1 26670:4 26689:1 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26757:1 26797:1 26799:1 26805:1 26845:1 26846:1 26857:2 26858:2 26871:1 26888:2 26893:2 26903:1 26906:1 26911:1 26915:2 26916:1 26918:3 26924:1 26955:2 26965:2 26969:1 26981:1 26984:2 26988:1 26991:1 26995:1 27002:1 27006:2 27007:2 27008:1 27015:2 27017:1 27023:3 27024:1 27025:2 27033:2 27039:1 27061:1 27067:1 27089:1 27095:1 27115:5 27116:2 27164:1 27165:1 27200:1 27201:1 27203:1 27225:1 27233:1 27260:1 27261:4 27267:2 27269:1 27293:1 27294:1 27302:1 27312:1 27318:1 27319:1 27350:1 27353:1 27355:1 27369:1 27384:1 27386:2 27390:2 27395:1 27400:1 27404:1 27410:1 27424:2 27425:1 27430:4 27438:1 27448:1 27451:1 27464:1 27471:1 27473:1 27474:1 27480:1 27496:1 27527:1 27536:1 27540:1 27551:2 27554:2 27555:1 27564:4 27571:1 27584:1 27613:2 27618:1 27635:1 27657:1 27658:1 27665:1 27668:1 27669:2 27704:1 27713:1 27727:1 27731:1 27739:1 27748:1 27754:1 27776:1 27808:1 27818:2 27820:1 27825:1 27831:1 27848:1 27857:1 27874:2 27877:2 27878:1 27880:2 27881:2 27891:1 27897:3 27905:1 27910:1 27914:1 27944:1 27948:1 27952:1 27966:1 27968:1 27985:2 28001:1 28002:1 28003:2 28014:4 28032:1 28097:2 28098:1 28101:1 28109:1 28119:1 28130:2 28138:1 28139:2 28146:1 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28290:1 28302:1 28303:1 28311:1 28315:1 28318:1 28322:1 28330:1 28337:1 28358:1 28393:1 28427:1 28432:1 28435:2 28456:1 28462:2 28468:2 28481:1 28495:1 28496:1 28504:1 28522:2 28532:1 28536:2 28542:1 28547:1 28555:2 28562:2 28577:1 28588:1 28589:2 28591:1 28596:2 28617:11 28622:1 28625:1 28629:1 28633:2 28640:1 28643:1 28662:6 28663:2 28668:1 28671:2 28672:1 28684:3 28699:1 28714:1 28719:1 28725:1 28755:1 28759:1 28784:1 28806:3 28817:1 28827:2 28829:1 28835:1 28838:1 28864:2 28868:1 28872:2 28889:1 28896:1 28903:1 28907:1 28911:1 28917:1 28938:1 28952:1 28964:1 28969:1 28977:1 28987:1 28997:1 29019:1 29023:3 29025:1 29034:1 29043:1 29046:3 29049:1 29055:1 29074:1 29090:1 29091:1 29098:1 29102:3 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29175:1 29177:1 29189:1 29190:1 29204:1 29205:1 29233:1 29251:1 29252:1 29265:1 29286:1 29288:1 29297:1 29322:1 29324:2 29325:1 29333:1 29336:1 29343:1 29348:1 29366:1 29370:1 29376:2 29401:1 29453:1 29481:1 29482:1 29483:1 29519:2 29525:1 29556:1 29581:1 29628:2 29633:1 29650:1 29695:4 29703:1 29706:1 29711:1 29717:1 29734:1 29738:5 29741:1 29743:1 29746:1 29753:1 29754:1 29760:1 29764:2 29773:1 29790:2 29795:1 29807:2 29818:1 29832:1 29846:1 29848:2 29851:1 29854:3 29864:1 29868:1 29888:1 29889:1 29891:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29972:1 29974:1 29980:1 29996:1
17 12:1 14:2 24:1 25:1 32:1 41:1 50:1 57:2 65:1 78:1 100:1 110:1 148:1 157:7 167:1 171:2 174:1 180:1 190:1 212:1 213:1 214:1 226:1 241:2 253:1 258:2 282:2 284:2 307:1 318:1 319:1 324:1 330:2 377:1 380:2 381:1 393:1 399:1 452:1 462:1 464:2 470:1 476:1 542:1 555:1 591:3 597:1 599:1 602:1 618:1 648:1 657:1 660:3 671:1 677:2 726:1 747:1 762:1 765:1 771:1 788:1 796:3 811:5 817:1 867:2 869:1 873:1 904:1 906:1 908:2 912:6 913:3 915:1 917:2 919:1 921:4 924:2 925:3 926:1 931:1 935:1 936:2 940:1 942:2 945:2 960:1 966:4 967:2 968:1 972:2 991:1 1010:3 1034:1 1036:2 1039:1 1040:2 1052:1 1054:1 1055:1 1059:1 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:3 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:1 1163:1 1176:1 1186:1 1193:2 1197:2 1238:1 1247:1 1252:1 1260:2 1262:1 1266:1 1270:1 1283:1 1296:1 1297:1 1301:1 1317:1 1318:1 1321:1 1332:1 1334:1 1335:1 1351:1 1362:1 1365:1 1382:1 1385:1 1387:1 1393:1 1413:1 1414:1 1425:1 1460:1 1463:1 1481:1 1485:1 1486:2 1513:1 1516:1 1518:1 1521:1 1528:1 1536:2 1540:1 1543:1 1567:1 1571:1 1588:4 1600:1 1603:1 1611:1 1614:1 1615:1 1619:1 1634:2 1645:1 1663:1 1677:1 1682:2 1687:1 1691:3 1708:1 1715:1 1716:1 1719:1 1727:2 1736:1 1741:1 1746:1 1750:1 1754:1 1759:1 1760:1 1761:1 1764:1 1788:2 1795:1 1797:1 1803:1 1804:1 1812:3 1813:1 1824:1 1826:1 1827:1 1828:1 1839:1 1849:1 1856:1 1863:2 1864:2 1865:1 1874:1 1877:1 1892:1 1913:1 1921:3 1927:2 1933:2 1935:1 1939:1 1963:1 1979:1 1981:1 2000:1 2011:2 2013:1 2024:1 2025:2 2036:1 2041:1 2057:1 2058:1 2086:2 2128:1 2131:2 2154:2 2161:1 2170:1 2204:1 2249:1 2293:2 2330:1 2339:1 2360:1 2365:1 2366:1 2386:1 2404:1 2406:2 2412:1 2421:1 2428:4 2435:2 2436:1 2438:1 2448:5 2452:1 2455:2 2457:2 2459:2 2461:1 2465:1 2470:1 2473:5 2483:1 2497:2 2518:2 2532:1 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:1 2631:5 2636:2 2655:2 2666:1 2671:1 2679:1 2680:2 2685:1 2686:1 2692:1 2700:1 2701:1 2702:1 2706:3 2709:1 2713:1 2718:1 2728:2 2744:1 2758:1 2760:2 2784:1 2819:2 2824:1 2833:1 2858:1 2871:1 2881:1 2890:1 2892:1 2906:1 2908:1 2911:3 2921:1 2978:1 2983:1 2986:1 2989:2 2990:2 2997:1 3001:1 3007:1 3017:1 3020:1 3022:1 3043:1 3045:1 3052:1 3062:4 3070:4 3080:5 3100:1 3116:1 3119:1 3120:1 3131:2 3134:1 3150:1 3165:1 3166:1 3183:2 3190:3 3194:2 3197:2 3203:1 3219:1 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3328:1 3331:1 3337:1 3338:2 3362:1 3369:1 3370:1 3422:1 3433:3 3502:1 3525:1 3544:2 3586:1 3624:1 3627:2 3632:1 3635:1 3653:1 3654:3 3674:1 3676:1 3677:1 3696:1 3724:2 3725:1 3729:1 3740:3 3746:1 3748:1 3749:1 3751:5 3762:1 3767:1 3774:1 3781:1 3790:2 3802:1 3820:1 3833:1 3858:1 3863:1 3869:3 3872:1 3883:2 3886:1 3894:2 3914:2 3924:1 3927:1 3953:1 3955:1 3963:1 3984:3 3986:1 3990:1 3991:1 4005:2 4039:1 4057:2 4058:1 4062:3 4080:1 4100:1 4114:1 4118:3 4122:1 4127:1 4137:1 4141:2 4150:1 4170:1 4171:1 4179:1 4180:1 4189:1 4191:1 4233:1 4238:1 4268:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4318:1 4324:1 4334:1 4338:2 4348:1 4358:2 4359:1 4366:1 4374:2 4413:1 4435:1 4437:1 4440:1 4458:1 4465:1 4467:2 4468:1 4471:1 4472:1 4473:1 4484:1 4522:2 4526:3 4564:1 4575:4 4578:1 4579:1 4588:1 4589:2 4597:1 4601:3 4614:1 4627:1 4628:1 4631:1 4646:1 4655:1 4656:1 4667:2 4669:1 4701:1 4707:1 4708:1 4718:1 4729:1 4744:1 4769:1 4780:1 4782:1 4783:1 4789:2 4790:1 4794:1 4799:1 4801:5 4810:2 4822:1 4827:1 4831:1 4842:1 4867:2 4882:3 4899:1 4901:2 4914:1 4926:1 4933:1 4952:1 4953:2 4959:5 4967:1 4968:1 4978:1 4984:1 4987:1 4992:3 4997:1 4999:4 5012:1 5017:1 5021:1 5029:2 5031:2 5055:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5116:1 5117:1 5118:1 5119:1 5124:1 5129:1 5130:2 5132:1 5136:2 5138:1 5145:2 5149:2 5154:1 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5224:1 5264:1 5276:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:2 5354:3 5361:1 5366:1 5375:2 5377:1 5401:1 5404:1 5416:2 5420:1 5440:1 5450:1 5458:2 5483:1 5486:1 5495:1 5497:1 5511:2 5513:1 5529:1 5533:1 5541:2 5556:1 5601:1 5606:1 5618:1 5619:2 5625:1 5630:1 5651:1 5674:1 5682:1 5723:2 5726:1 5728:1 5731:1 5740:1 5741:3 5749:1 5772:2 5798:4 5809:1 5814:1 5844:1 5856:1 5865:1 5874:1 5877:1 5885:1 5893:2 5900:1 5911:1 5927:2 5929:1 5935:1 5951:1 5959:2 5970:1 5971:1 5989:1 5999:1 6005:1 6007:1 6011:1 6018:2 6022:2 6026:2 6027:9 6036:2 6055:2 6065:1 6082:1 6107:3 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:2 6185:1 6188:1 6190:1 6202:3 6221:2 6239:1 6245:1 6247:1 6264:2 6265:3 6268:1 6288:2 6293:1 6298:1 6301:1 6303:1 6306:1 6309:1 6318:4 6320:1 6343:1 6367:2 6377:1 6382:2 6383:2 6389:2 6391:1 6393:1 6400:1 6424:2 6450:1 6462:1 6465:1 6467:1 6482:4 6497:1 6499:1 6505:1 6517:1 6541:7 6552:1 6555:1 6568:1 6570:1 6580:3 6584:2 6586:1 6589:1 6590:1 6596:1 6600:3 6601:2 6602:1 6616:1 6625:1 6632:1 6636:1 6644:1 6646:1 6647:1 6655:1 6657:1 6664:2 6670:1 6682:1 6688:1 6750:2 6753:1 6761:1 6782:1 6790:1 6795:2 6809:1 6818:1 6821:1 6826:2 6837:1 6866:2 6868:4 6870:1 6881:1 6898:1 6903:1 6912:1 6913:1 6923:1 6964:1 6970:1 6980:1 6998:3 7022:1 7032:1 7049:1 7069:3 7072:2 7073:1 7084:1 7096:1 7098:1 7103:1 7104:1 7108:2 7113:2 7135:1 7159:1 7196:2 7237:1 7248:1 7251:1 7253:1 7270:4 7290:2 7295:1 7316:1 7318:1 7323:1 7327:1 7331:1 7337:1 7341:1 7369:1 7372:2 7375:2 7397:1 7401:1 7410:1 7415:3 7433:1 7434:1 7444:1 7446:1 7449:1 7463:1 7486:1 7493:1 7504:3 7509:1 7529:2 7532:1 7548:1 7551:1 7554:1 7575:1 7585:1 7602:2 7607:2 7613:1 7621:1 7623:1 7650:2 7664:4 7669:1 7670:1 7696:1 7700:2 7705:1 7706:1 7721:1 7730:2 7747:1 7755:2 7762:1 7763:3 7764:1 7781:1 7788:2 7791:2 7792:7 7794:1 7797:1 7801:6 7802:1 7803:1 7810:2 7811:2 7813:1 7814:4 7816:2 7828:1 7849:2 7857:3 7864:1 7871:1 7888:1 7900:1 7928:1 7943:1 7944:1 7949:1 7960:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8043:1 8058:17 8065:1 8074:1 8082:4 8083:2 8091:2 8110:1 8115:2 8127:1 8134:2 8146:1 8151:3 8157:1 8168:1 8199:1 8215:1 8233:4 8252:1 8266:1 8288:1 8292:2 8320:1 8329:3 8336:1 8338:1 8340:1 8346:1 8354:1 8374:1 8407:2 8428:1 8441:1 8468:5 8480:1 8482:2 8496:1 8501:6 8508:1 8513:1 8519:1 8525:1 8539:1 8544:1 8554:1 8556:1 8560:1 8565:2 8571:1 8585:1 8590:1 8591:6 8629:2 8641:2 8658:1 8662:1 8664:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8744:2 8749:3 8754:1 8756:1 8760:1 8765:1 8771:1 8776:2 8783:1 8790:2 8799:1 8804:1 8806:1 8824:1 8827:1 8830:1 8835:1 8845:2 8849:1 8864:1 8866:1 8870:1 8872:2 8877:1 8885:1 8900:5 8908:1 8955:1 8957:1 8958:2 8962:1 8964:4 8969:1 8972:1 8980:1 8986:1 8993:2 8998:1 9008:1 9009:1 9035:1 9045:1 9051:1 9078:2 9089:1 9092:1 9098:2 9118:1 9119:1 9122:1 9158:2 9164:7 9177:1 9181:1 9189:1 9209:1 9213:1 9241:1 9256:2 9268:1 9269:1 9276:1 9288:1 9303:1 9311:1 9322:1 9324:1 9342:1 9374:1 9395:5 9396:2 9411:2 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9477:1 9482:1 9488:1 9502:1 9507:3 9508:1 9527:1 9538:1 9539:1 9571:1 9586:1 9605:1 9610:1 9615:1 9626:1 9628:3 9651:1 9666:1 9667:2 9687:4 9689:1 9694:1 9699:1 9703:1 9706:1 9711:1 9725:1 9726:1 9737:1 9742:1 9754:1 9766:1 9780:3 9785:1 9790:1 9805:1 9809:1 9813:2 9816:1 9830:1 9834:1 9865:1 9876:1 9883:2 9914:1 9928:1 9935:1 9939:1 9942:1 9951:1 9954:2 9956:1 9963:1 9979:1 9981:1 10005:3 10011:1 10037:2 10042:1 10047:1 10055:1 10061:4 10062:1 10064:2 10071:1 10073:1 10074:1 10088:1 10089:1 10099:1 10104:1 10110:1 10117:1 10123:1 10124:1 10126:3 10135:3 10137:1 10156:1 10176:2 10177:1 10182:1 10188:1 10204:6 10208:1 10221:1 10223:2 10255:2 10256:1 10301:1 10319:1 10328:1 10330:1 10339:1 10346:1 10347:1 10359:1 10380:1 10381:1 10394:1 10399:1 10422:1 10425:1 10430:1 10468:1 10472:1 10474:1 10482:2 10492:2 10498:4 10500:1 10502:2 10503:2 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10549:1 10550:1 10554:1 10556:2 10557:1 10560:3 10561:1 10572:4 10580:1 10594:3 10597:5 10617:1 10620:1 10629:2 10647:1 10650:1 10681:1 10689:2 10696:1 10738:1 10746:1 10757:1 10761:3 10772:3 10775:2 10787:1 10795:2 10798:1 10801:1 10806:1 10820:1 10828:1 10844:2 10857:1 10863:1 10864:1 10876:1 10897:1 10899:1 10906:1 10914:1 10916:2 10918:1 10920:1 10926:1 10946:1 10950:1 10964:5 10967:1 10969:1 10973:3 10979:1 10982:1 10984:1 10988:1 10996:2 10997:1 11005:1 11010:1 11011:1 11021:1 11026:1 11027:3 11035:1 11041:1 11050:2 11089:1 11096:1 11097:2 11106:1 11114:2 11131:1 11172:1 11173:1 11183:1 11187:1 11190:2 11216:1 11227:1 11228:1 11233:1 11249:2 11258:6 11263:1 11267:2 11269:1 11282:1 11286:2 11304:1 11313:1 11326:2 11354:1 11359:1 11371:1 11373:1 11379:2 11407:1 11413:1 11427:1 11442:1 11449:1 11457:1 11470:1 11472:1 11485:4 11486:3 11495:1 11499:2 11504:1 11505:2 11514:1 11521:1 11522:2 11534:1 11536:5 11560:1 11563:1 11566:1 11567:4 11576:1 11583:1 11585:3 11600:1 11618:1 11622:1 11632:1 11642:1 11660:2 11687:1 11721:3 11728:1 11732:1 11738:1 11740:1 11747:1 11755:1 11765:2 11770:2 11771:1 11802:1 11805:2 11808:1 11811:1 11836:1 11846:1 11854:1 11856:1 11860:1 11882:1 11884:2 11888:1 11895:2 11899:1 11913:1 11922:1 11926:3 11927:1 11932:1 11936:2 11943:1 11947:2 11959:4 11971:1 11996:1 12001:1 12010:1 12024:1 12026:1 12066:1 12073:1 12078:1 12080:1 12124:1 12127:2 12145:1 12157:4 12169:1 12193:1 12215:2 12221:1 12225:1 12231:1 12247:1 12250:2 12253:1 12265:1 12277:1 12282:1 12283:3 12290:1 12292:1 12298:2 12299:1 12305:1 12342:1 12347:1 12351:1 12362:1 12364:1 12376:1 12380:1 12395:1 12411:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12476:2 12479:1 12480:1 12482:1 12486:3 12490:1 12491:5 12492:1 12494:1 12501:2 12503:1 12538:1 12541:2 12550:1 12556:1 12564:1 12583:1 12584:2 12585:1 12587:2 12591:1 12594:2 12596:1 12614:2 12620:1 12625:2 12626:1 12629:1 12631:2 12655:1 12666:1 12670:1 12678:1 12681:1 12683:1 12696:1 12698:2 12699:1 12700:3 12705:2 12712:2 12715:1 12729:1 12730:1 12743:1 12749:1 12776:1 12803:2 12806:1 12823:1 12829:1 12831:2 12838:1 12841:1 12842:1 12844:1 12850:1 12861:1 12871:1 12873:1 12883:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 12972:1 13007:1 13009:1 13012:1 13013:2 13022:2 13033:1 13034:1 13068:1 13075:1 13095:2 13116:2 13117:1 13125:1 13129:1 13133:1 13150:2 13160:1 13162:1 13182:2 13184:1 13212:1 13233:5 13254:2 13256:1 13260:1 13263:2 13318:5 13341:1 13355:2 13358:1 13366:4 13383:1 13386:2 13413:3 13417:1 13425:1 13452:1 13513:1 13518:1 13554:1 13562:1 13620:1 13637:1 13665:1 13682:2 13686:2 13721:1 13723:5 13729:2 13732:1 13733:3 13735:1 13748:1 13763:3 13772:1 13773:2 13806:1 13808:1 13811:1 13849:1 13853:1 13867:1 13887:1 13891:1 13903:1 13915:1 13919:1 13949:4 13957:1 13960:1 13983:1 14011:1 14067:2 14078:1 14085:1 14093:1 14102:2 14106:3 14115:1 14121:3 14127:2 14131:1 14148:1 14165:1 14177:1 14178:7 14211:1 14214:1 14223:2 14224:1 14227:1 14232:1 14244:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14293:1 14299:2 14306:1 14329:1 14349:2 14350:1 14353:1 14383:4 14405:2 14429:1 14455:1 14470:1 14503:1 14523:1 14529:2 14533:1 14577:1 14584:1 14593:1 14598:2 14621:1 14639:1 14651:1 14668:1 14670:1 14674:1 14686:1 14694:1 14695:1 14700:1 14708:1 14715:1 14724:1 14727:3 14736:1 14737:1 14739:1 14750:1 14776:1 14779:1 14781:1 14785:1 14789:1 14790:1 14792:1 14796:1 14799:1 14810:1 14831:1 14832:1 14853:1 14871:1 14885:2 14888:1 14899:1 14903:1 14904:1 14906:1 14909:1 14911:4 14921:1 14926:1 14928:1 14931:1 14934:1 14944:4 14945:2 14951:1 14975:1 14993:1 14998:1 15007:1 15015:1 15021:1 15022:1 15037:1 15038:1 15049:1 15056:1 15057:1 15058:4 15068:2 15076:1 15079:1 15104:2 15110:2 15116:2 15123:1 15125:1 15129:1 15149:1 15164:1 15176:1 15231:1 15253:1 15257:2 15258:3 15264:1 15297:1 15305:1 15311:1 15317:1 15319:3 15322:1 15335:1 15348:9 15355:2 15357:1 15364:1 15365:1 15366:1 15367:1 15370:4 15371:31 15381:1 15385:1 15388:2 15401:1 15425:1 15432:3 15438:2 15441:2 15476:1 15492:1 15519:3 15537:1 15540:1 15551:3 15561:1 15567:2 15572:1 15576:2 15580:1 15581:1 15588:1 15589:1 15617:1 15620:3 15622:1 15631:1 15662:1 15674:1 15676:2 15690:1 15700:1 15709:1 15719:2 15746:2 15759:2 15778:2 15780:1 15785:1 15793:1 15798:1 15806:1 15828:1 15843:2 15844:1 15853:1 15857:1 15863:1 15866:8 15879:1 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15920:1 15921:1 15938:1 15958:3 15993:1 16011:1 16014:1 16021:1 16044:1 16056:1 16063:1 16098:1 16099:1 16102:2 16103:1 16110:1 16167:1 16168:1 16177:1 16179:1 16195:2 16202:1 16204:2 16218:1 16224:1 16225:1 16240:1 16247:1 16249:2 16250:1 16268:1 16273:1 16278:1 16280:1 16284:1 16302:1 16318:1 16342:1 16345:2 16346:1 16347:1 16348:1 16350:1 16385:1 16400:2 16417:1 16426:1 16446:1 16449:1 16458:1 16460:2 16462:1 16481:1 16485:1 16488:1 16490:1 16500:9 16503:1 16553:4 16567:2 16569:1 16572:3 16586:2 16589:1 16614:1 16620:1 16623:3 16677:1 16681:1 16682:1 16704:1 16717:1 16718:3 16725:1 16729:2 16735:1 16763:1 16793:2 16795:1 16814:1 16823:1 16827:2 16836:1 16840:1 16879:1 16884:1 16895:1 16904:1 16923:1 16926:1 16944:1 16945:1 16983:2 16986:1 16998:1 17018:1 17022:1 17024:2 17027:1 17029:1 17032:1 17043:1 17050:1 17078:2 17083:1 17086:1 17095:1 17103:1 17110:3 17114:2 17116:1 17124:1 17126:2 17128:1 17135:1 17139:1 17144:1 17166:1 17179:2 17180:1 17185:1 17191:3 17200:1 17203:2 17206:1 17208:1 17209:1 17225:1 17230:1 17253:1 17272:1 17273:2 17276:1 17278:3 17280:1 17297:1 17319:1 17326:2 17334:1 17346:2 17360:1 17365:1 17388:2 17411:1 17439:2 17447:1 17459:1 17467:1 17474:1 17516:1 17535:1 17547:1 17548:1 17551:1 17559:1 17561:2 17576:1 17579:1 17583:1 17585:1 17634:1 17662:2 17676:1 17699:1 17711:1 17715:1 17724:1 17726:1 17727:1 17728:2 17743:2 17756:2 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:2 17820:1 17854:1 17859:1 17874:4 17892:1 17906:2 17918:1 17923:1 17931:1 17932:1 17940:1 17946:3 17952:3 17990:1 18043:2 18044:1 18052:1 18065:1 18082:1 18085:2 18115:1 18116:1 18121:1 18131:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:2 18246:1 18254:1 18280:1 18288:1 18289:2 18299:1 18301:1 18332:1 18335:1 18338:1 18368:1 18370:1 18374:1 18382:1 18388:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:8 18465:1 18475:2 18492:1 18523:1 18535:1 18550:1 18563:1 18598:1 18600:1 18610:1 18611:2 18621:1 18659:1 18681:2 18731:1 18748:1 18756:2 18757:1 18759:1 18769:1 18793:1 18802:1 18811:1 18817:1 18830:1 18841:1 18858:1 18860:1 18863:2 18864:3 18874:1 18891:1 18895:1 18903:1 18905:1 18933:1 18947:1 18948:1 18951:1 18965:1 18974:1 18976:1 18986:1 18996:1 19001:1 19025:1 19039:2 19056:1 19062:1 19067:1 19081:1 19085:4 19093:2 19107:2 19112:1 19118:1 19145:1 19146:1 19197:1 19203:2 19210:1 19221:1 19239:1 19242:3 19260:1 19262:2710 19265:1 19288:1 19316:1 19320:1 19325:2 19362:1 19392:2 19398:1 19401:1 19403:1 19423:2 19429:2 19434:1 19474:1 19476:1 19479:2 19486:1 19515:2 19519:1 19541:2 19547:1 19578:1 19586:1 19594:2 19597:1 19620:1 19622:1 19627:1 19650:2 19663:3 19670:2 19697:1 19707:1 19739:1 19754:1 19758:2 19771:1 19775:1 19776:3 19781:1 19810:1 19812:1 19829:1 19861:1 19869:3 19874:1 19903:1 19908:3 19914:1 19920:3 19924:1 19948:1 19957:1 19975:2 20004:1 20006:6 20035:2 20086:1 20093:1 20101:1 20125:1 20131:4 20144:1 20146:2 20150:1 20153:1 20167:1 20187:1 20202:1 20205:1 20208:3 20218:2 20219:2 20223:1 20224:1 20225:1 20226:1 20244:1 20252:1 20259:2 20269:1 20273:1 20279:1 20301:1 20302:1 20333:1 20370:2 20374:1 20376:1 20382:1 20397:1 20400:1 20405:1 20410:1 20437:1 20438:1 20452:1 20507:1 20518:1 20524:1 20547:1 20548:1 20550:2 20575:1 20601:1 20606:1 20609:1 20615:2 20618:1 20620:1 20630:1 20634:1 20659:2 20664:1 20666:3 20671:1 20672:1 20675:1 20681:1 20684:1 20691:1 20692:1 20696:1 20700:1 20701:2 20704:2 20706:2 20709:1 20719:1 20721:1 20722:1 20730:1 20737:2 20742:2 20743:1 20752:3 20755:1 20760:1 20779:1 20792:1 20793:1 20797:1 20832:1 20837:2 20860:2 20868:1 20920:3 20922:1 20959:1 20962:1 20970:1 20977:1 20987:1 20989:1 20993:2 21004:1 21008:1 21020:2 21022:2 21036:1 21052:2 21055:1 21075:1 21084:2 21085:2 21101:2 21112:1 21115:2 21124:2 21160:1 21179:1 21204:1 21205:1 21208:1 21209:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21250:1 21251:1 21260:1 21263:1 21269:2 21294:1 21321:3 21328:1 21332:1 21338:1 21346:2 21354:2 21360:1 21368:1 21397:1 21404:1 21405:3 21408:2 21410:1 21414:1 21426:1 21427:2 21429:2 21437:1 21452:1 21461:2 21481:2 21482:1 21493:1 21503:1 21521:1 21536:2 21568:1 21570:2 21572:1 21581:1 21598:2 21624:1 21646:1 21665:1 21669:1 21670:1 21690:1 21701:1 21712:1 21741:1 21747:1 21767:1 21776:1 21784:1 21800:1 21803:2 21809:1 21814:1 21822:2 21825:2 21845:2 21848:2 21849:8 21851:1 21870:1 21883:1 21901:3 21907:1 21910:1 21921:1 21931:1 21942:1 21952:1 21960:1 21967:1 21970:1 21983:2 21986:1 21990:1 22008:1 22022:1 22026:1 22038:1 22043:1 22049:1 22050:2 22053:2 22055:1 22057:1 22068:1 22084:1 22099:1 22104:1 22109:1 22141:1 22144:1 22179:3 22185:1 22190:2 22199:1 22214:1 22219:1 22243:1 22257:1 22266:1 22277:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22351:1 22353:5 22363:1 22375:1 22384:1 22395:2 22396:3 22415:1 22445:1 22451:2 22459:1 22468:1 22477:1 22486:2 22495:1 22508:1 22512:1 22530:2 22533:1 22542:1 22548:2 22554:1 22560:2 22577:1 22579:1 22600:2 22606:2 22609:1 22627:2 22628:2 22638:1 22662:2 22667:3 22679:1 22685:1 22695:1 22697:1 22705:1 22723:2 22732:2 22733:1 22743:1 22763:1 22770:1 22779:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:2 22853:2 22867:1 22914:3 22916:1 22919:1 22924:1 22927:1 22928:4 22969:1 22974:1 22985:1 23003:2 23004:1 23006:1 23007:5 23013:1 23027:5 23029:1 23042:1 23049:1 23071:1 23077:1 23089:1 23113:1 23125:1 23133:1 23161:6 23165:1 23171:1 23172:1 23176:1 23236:1 23237:1 23241:1 23247:1 23255:1 23264:1 23268:2 23297:2 23311:4 23358:2 23363:1 23365:1 23367:1 23372:1 23376:1 23382:1 23383:1 23384:1 23399:1 23409:1 23410:1 23413:1 23430:1 23433:1 23436:2 23448:1 23458:3 23467:1 23477:1 23478:1 23503:1 23505:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:1 23561:3 23562:1 23581:1 23583:1 23613:1 23623:1 23627:1 23632:1 23667:1 23671:1 23688:1 23704:1 23717:1 23722:1 23733:3 23747:2 23774:2 23790:1 23814:4 23831:1 23834:5 23841:1 23856:1 23868:1 23897:1 23912:4 23913:1 23926:2 23927:3 23928:3 23935:1 23938:1 23940:3 23941:6 23949:1 23958:1 23977:1 23988:1 24003:2 24008:1 24013:1 24021:1 24033:4 24047:1 24051:2 24058:1 24066:1 24068:2 24078:1 24080:1 24089:1 24122:1 24128:1 24157:1 24160:1 24192:2 24194:1 24197:2 24199:2 24205:2 24209:1 24212:2 24223:5 24235:1 24249:1 24264:4 24284:1 24292:1 24305:3 24360:1 24370:2 24373:1 24375:2 24379:4 24383:1 24388:1 24392:3 24401:1 24404:1 24405:1 24415:1 24421:1 24423:1 24424:1 24427:1 24431:1 24436:1 24441:3 24453:2 24471:1 24474:1 24489:1 24494:1 24507:1 24544:1 24547:1 24551:1 24553:1 24559:1 24560:1 24576:2 24623:2 24626:1 24631:1 24636:5 24652:1 24655:1 24658:1 24661:1 24662:3 24715:1 24719:1 24734:2 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24791:1 24803:1 24810:1 24835:1 24898:1 24904:8 24906:1 24914:1 24915:2 24918:2 24926:2 24937:1 24956:1 24965:3 24992:1 24999:1 25024:1 25026:1 25032:1 25036:1 25044:1 25048:2 25051:3 25054:2 25074:1 25081:3 25099:1 25114:1 25120:1 25142:1 25153:2 25157:1 25159:1 25175:1 25176:2 25185:1 25186:1 25187:1 25201:1 25206:1 25211:1 25225:2 25231:2 25237:1 25238:1 25249:1 25254:1 25263:1 25276:1 25277:1 25301:1 25339:1 25340:1 25365:1 25384:1 25393:2 25395:1 25401:1 25415:1 25439:1 25447:2 25451:2 25456:1 25462:4 25482:1 25483:2 25484:1 25503:1 25508:1 25512:1 25532:1 25539:1 25543:1 25568:1 25600:1 25617:1 25627:1 25631:4 25644:1 25652:1 25655:1 25659:2 25678:1 25680:1 25681:1 25704:2 25705:2 25729:1 25731:1 25736:1 25757:2 25762:1 25773:1 25777:1 25828:1 25835:2 25859:1 25871:1 25879:1 25893:2 25904:1 25905:1 25920:2 25922:2 25933:2 25935:2 25938:2 25943:3 25945:1 25952:1 25953:1 25957:2 25964:1 25974:1 25982:3 25986:1 26013:2 26024:4 26035:2 26041:1 26050:1 26052:2 26068:1 26072:1 26084:1 26092:2 26093:2 26095:2 26129:1 26130:2 26138:1 26139:1 26156:1 26160:2 26172:1 26178:2 26188:1 26214:1 26220:1 26233:3 26244:1 26268:1 26276:1 26281:2 26284:2 26299:1 26307:2 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26387:1 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:2 26511:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:3 26648:1 26649:1 26667:1 26670:4 26689:1 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26741:1 26757:1 26797:1 26799:1 26805:1 26845:1 26846:1 26857:2 26858:2 26871:1 26888:2 26893:2 26900:1 26903:1 26906:1 26911:1 26915:2 26916:1 26918:3 26924:1 26955:2 26965:2 26969:1 26981:1 26984:2 26988:1 26991:2 26995:1 27002:1 27006:2 27007:2 27008:1 27015:2 27017:1 27023:3 27024:1 27025:2 27033:2 27039:1 27061:1 27067:1 27089:1 27095:1 27115:5 27116:2 27164:1 27165:1 27200:1 27201:1 27203:1 27225:1 27233:1 27260:1 27261:4 27267:2 27269:1 27293:1 27294:1 27302:1 27312:1 27318:1 27319:1 27350:1 27353:1 27355:1 27369:1 27384:1 27386:2 27390:2 27395:1 27400:1 27404:1 27410:1 27424:2 27425:1 27430:4 27438:1 27448:1 27451:1 27464:1 27471:1 27473:1 27474:1 27480:1 27496:1 27527:1 27536:1 27540:1 27551:2 27554:2 27555:1 27557:1 27564:4 27571:1 27584:1 27613:2 27618:1 27635:1 27657:1 27658:1 27665:1 27668:1 27669:2 27704:1 27713:1 27727:1 27731:1 27739:1 27748:1 27754:1 27776:1 27808:1 27818:2 27820:1 27825:1 27831:1 27848:1 27857:1 27874:2 27877:2 27878:1 27880:2 27881:2 27891:1 27897:3 27905:1 27910:1 27914:1 27944:1 27948:1 27951:1 27952:1 27966:1 27968:1 27985:2 27999:1 28001:1 28002:1 28003:2 28014:4 28032:1 28097:2 28098:1 28101:1 28109:1 28119:1 28130:2 28138:1 28139:2 28146:1 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28290:1 28302:1 28303:1 28311:1 28315:1 28318:1 28322:1 28330:1 28337:1 28358:1 28393:1 28427:1 28432:1 28435:2 28456:1 28462:2 28468:2 28481:1 28495:1 28496:1 28504:1 28522:2 28530:1 28532:1 28536:2 28542:1 28547:1 28555:2 28562:2 28577:1 28588:2 28589:2 28591:1 28596:2 28617:11 28622:1 28625:1 28629:1 28633:2 28640:1 28643:1 28662:7 28663:2 28668:1 28671:2 28672:1 28674:1 28684:3 28699:1 28714:1 28719:1 28725:1 28755:1 28759:1 28784:1 28806:3 28817:1 28827:2 28829:1 28835:2 28838:1 28864:2 28868:1 28872:2 28889:1 28896:1 28903:1 28907:1 28911:1 28917:1 28938:1 28952:1 28964:1 28969:1 28977:1 28987:1 28997:1 29019:1 29023:3 29025:1 29034:1 29043:1 29046:3 29049:1 29055:1 29074:1 29090:1 29091:1 29098:1 29102:3 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29175:1 29177:1 29189:1 29190:1 29204:1 29205:1 29233:1 29251:1 29252:1 29265:1 29286:1 29288:1 29297:1 29322:1 29323:1 29324:2 29325:1 29333:1 29336:1 29343:1 29348:1 29366:1 29370:1 29376:2 29391:1 29396:1 29401:1 29453:1 29481:1 29482:1 29483:1 29519:2 29525:1 29556:1 29581:1 29628:2 29633:1 29650:1 29695:4 29703:1 29706:1 29711:1 29717:1 29734:1 29738:5 29741:1 29743:1 29746:1 29753:1 29754:1 29760:1 29764:2 29773:1 29790:2 29795:1 29807:2 29818:1 29832:1 29840:1 29846:1 29848:2 29851:1 29854:3 29864:1 29868:1 29888:1 29889:1 29891:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29972:1 29974:1 29980:1 29996:1
17 12:1 14:2 24:1 25:1 32:1 35:1 41:1 50:1 57:2 65:1 78:1 100:1 110:1 148:1 157:7 167:1 171:2 174:1 180:1 190:1 212:1 213:1 214:1 226:1 241:2 253:1 258:4 282:2 284:2 307:1 318:1 319:1 324:1 330:2 377:1 380:2 381:1 393:1 399:1 452:1 462:1 464:2 470:1 476:1 486:1 542:1 555:1 591:3 597:1 599:1 602:1 607:1 618:1 648:1 657:1 660:3 671:1 677:2 726:1 747:1 762:1 765:1 771:1 788:1 796:3 811:5 817:1 867:2 869:1 873:1 904:1 906:1 908:2 912:6 913:3 915:1 917:2 919:1 921:4 924:2 925:3 926:1 931:1 935:1 936:2 940:1 942:2 945:2 960:1 966:4 967:2 968:1 972:2 991:1 1010:3 1034:1 1036:2 1039:1 1040:2 1052:1 1054:1 1055:1 1059:1 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:3 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:2 1163:1 1176:1 1186:1 1193:2 1197:2 1238:1 1247:1 1252:1 1260:2 1262:1 1266:1 1270:1 1283:1 1296:1 1297:1 1301:1 1317:1 1318:1 1321:1 1332:1 1334:1 1335:1 1351:1 1362:1 1365:1 1382:1 1385:1 1387:1 1393:1 1413:1 1414:1 1425:1 1460:1 1463:1 1481:1 1485:1 1486:2 1513:1 1516:1 1518:1 1521:1 1528:1 1536:2 1540:1 1543:1 1567:1 1571:1 1588:4 1600:1 1603:1 1611:1 1614:1 1615:1 1619:1 1634:2 1645:1 1663:1 1677:1 1682:2 1687:1 1691:3 1708:1 1715:1 1716:1 1719:1 1727:2 1736:1 1741:1 1746:1 1750:1 1754:1 1759:1 1760:1 1761:1 1764:1 1788:2 1795:1 1797:1 1803:1 1804:1 1812:3 1813:1 1824:1 1826:1 1827:1 1828:1 1839:1 1849:1 1856:1 1858:1 1863:2 1864:2 1865:1 1874:1 1877:1 1892:1 1902:1 1913:1 1921:3 1927:2 1933:2 1935:1 1939:1 1963:1 1979:1 1981:1 1994:1 2000:1 2011:2 2013:1 2024:1 2025:2 2036:1 2041:1 2057:1 2058:1 2086:2 2128:1 2131:2 2154:2 2161:1 2170:1 2204:1 2249:1 2293:2 2330:1 2339:1 2360:1 2365:1 2366:1 2386:1 2404:1 2406:2 2412:1 2421:1 2428:4 2435:2 2436:1 2438:1 2448:5 2452:1 2455:2 2457:2 2459:2 2461:1 2465:1 2470:1 2473:5 2483:1 2497:2 2518:2 2532:1 2534:1 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:1 2631:5 2636:2 2655:2 2666:1 2671:1 2679:1 2680:2 2685:1 2686:1 2692:1 2700:1 2701:1 2702:1 2705:1 2706:3 2709:1 2713:1 2718:1 2728:2 2744:1 2758:1 2760:2 2784:1 2819:2 2824:1 2831:1 2833:1 2858:1 2871:1 2881:1 2890:1 2892:1 2906:1 2908:1 2911:3 2921:1 2978:1 2983:1 2986:1 2989:2 2990:2 2997:1 3001:1 3007:1 3017:1 3020:1 3022:1 3043:1 3045:1 3052:1 3062:4 3070:4 3080:5 3100:1 3116:1 3119:1 3120:1 3131:2 3134:1 3150:1 3160:1 3165:1 3166:1 3183:2 3190:3 3194:2 3197:2 3203:1 3219:1 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3328:1 3331:1 3337:1 3338:2 3362:1 3369:1 3370:1 3422:1 3433:3 3502:1 3525:1 3544:2 3586:1 3624:1 3627:2 3632:1 3635:1 3653:1 3654:3 3674:1 3676:1 3677:1 3696:1 3724:2 3725:1 3729:1 3740:3 3746:1 3748:1 3749:1 3751:5 3762:1 3767:1 3774:1 3781:1 3790:2 3802:1 3820:1 3833:1 3858:1 3863:1 3869:3 3872:1 3883:2 3886:1 3894:2 3914:2 3924:1 3927:1 3953:1 3955:1 3963:1 3984:3 3986:1 3990:1 3991:1 4005:2 4039:1 4057:2 4058:1 4062:3 4080:1 4092:1 4100:1 4114:1 4118:3 4122:1 4127:1 4137:1 4141:2 4150:1 4170:1 4171:1 4179:1 4180:1 4189:1 4191:1 4233:1 4238:1 4268:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4318:1 4324:1 4334:1 4338:2 4348:1 4358:2 4359:1 4366:1 4374:2 4413:1 4435:1 4437:1 4440:1 4458:1 4465:1 4467:2 4468:1 4471:1 4472:1 4473:1 4484:1 4522:2 4526:3 4564:1 4575:4 4578:1 4579:1 4588:1 4589:2 4597:1 4601:3 4614:1 4627:1 4628:1 4631:1 4646:1 4650:1 4655:1 4656:1 4667:2 4669:1 4701:1 4707:1 4708:2 4718:1 4729:1 4744:1 4769:1 4780:1 4782:1 4783:1 4789:2 4790:1 4794:1 4799:1 4801:5 4810:2 4822:1 4827:1 4831:1 4842:1 4867:2 4882:3 4899:1 4901:2 4914:1 4926:1 4933:1 4952:1 4953:2 4959:5 4967:1 4968:1 4978:1 4984:1 4987:1 4992:3 4997:1 4999:4 5012:1 5017:1 5021:1 5029:2 5031:2 5055:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5116:1 5117:1 5118:1 5119:1 5124:1 5129:1 5130:2 5132:1 5136:2 5138:1 5145:2 5149:2 5154:1 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5224:1 5264:1 5276:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:2 5354:3 5361:1 5366:1 5375:2 5377:1 5401:1 5404:1 5416:2 5420:1 5440:1 5450:1 5458:2 5483:1 5486:1 5495:1 5497:1 5511:2 5513:1 5529:1 5533:1 5541:2 5556:1 5601:1 5606:1 5618:1 5619:2 5625:1 5630:1 5651:1 5674:1 5682:1 5723:2 5726:1 5728:1 5731:1 5740:1 5741:3 5749:1 5772:2 5784:1 5798:5 5809:1 5814:1 5844:1 5856:1 5865:1 5874:1 5877:1 5885:1 5893:2 5900:1 5904:1 5911:1 5924:1 5927:2 5929:1 5935:1 5951:1 5959:2 5970:1 5971:1 5989:1 5999:1 6005:1 6007:1 6011:1 6018:2 6022:2 6026:2 6027:9 6036:2 6055:2 6065:1 6082:1 6107:3 6131:1 6134:2 6162:2 6168:1 6169:3 6170:1 6184:2 6185:1 6188:1 6190:1 6202:3 6221:2 6239:1 6245:1 6247:1 6264:2 6265:3 6268:1 6288:2 6293:1 6298:1 6301:1 6303:1 6306:1 6309:1 6318:4 6320:1 6343:1 6367:2 6377:1 6382:2 6383:2 6389:2 6391:1 6393:1 6400:1 6424:2 6450:1 6456:1 6462:1 6465:1 6467:1 6469:1 6482:4 6497:1 6499:1 6505:1 6517:1 6541:8 6552:1 6555:1 6568:1 6570:1 6580:3 6584:2 6586:1 6589:1 6590:1 6596:1 6600:3 6601:2 6602:1 6616:1 6625:1 6632:1 6636:1 6644:1 6646:1 6647:1 6655:1 6657:1 6664:2 6670:1 6682:1 6688:1 6750:2 6753:1 6761:1 6782:1 6790:1 6795:2 6809:1 6818:1 6821:1 6826:2 6837:1 6866:2 6868:4 6870:1 6881:1 6898:1 6903:1 6912:1 6913:1 6923:1 6964:1 6970:1 6980:1 6998:3 7022:1 7032:1 7049:1 7069:3 7072:2 7073:1 7084:1 7096:1 7098:1 7103:1 7104:1 7108:2 7113:2 7121:1 7135:1 7159:1 7196:2 7237:1 7248:2 7251:1 7253:1 7270:4 7290:2 7295:1 7316:1 7318:1 7323:1 7327:1 7331:1 7337:1 7341:1 7369:1 7372:2 7375:2 7397:1 7401:1 7410:1 7415:3 7433:1 7434:1 7444:1 7446:1 7449:1 7463:2 7486:1 7493:1 7504:3 7509:1 7529:2 7532:1 7548:1 7551:1 7554:1 7575:1 7585:1 7602:2 7607:2 7613:1 7621:1 7623:1 7650:2 7664:4 7669:1 7670:1 7684:1 7696:1 7700:2 7705:1 7706:1 7721:1 7730:2 7737:1 7747:1 7755:2 7762:1 7763:3 7764:1 7781:1 7788:2 7791:2 7792:7 7793:1 7794:1 7797:2 7801:6 7802:1 7803:1 7810:2 7811:3 7813:1 7814:4 7816:2 7828:1 7849:2 7857:3 7864:1 7871:1 7888:1 7900:1 7928:1 7943:1 7944:1 7949:1 7954:1 7960:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8043:1 8058:17 8065:1 8074:1 8082:4 8083:2 8091:2 8110:1 8115:2 8127:1 8134:2 8146:1 8151:3 8157:1 8168:1 8199:1 8215:1 8233:4 8252:1 8266:1 8285:1 8288:1 8292:2 8320:1 8329:3 8336:1 8338:1 8340:1 8346:1 8354:1 8374:1 8407:2 8428:1 8441:1 8468:5 8471:1 8480:1 8482:2 8496:1 8501:6 8508:1 8512:1 8513:1 8519:1 8525:1 8539:1 8544:1 8554:1 8556:1 8560:1 8565:2 8571:1 8585:1 8590:1 8591:6 8629:2 8641:2 8658:1 8662:1 8664:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8744:2 8749:3 8754:1 8756:1 8760:1 8765:1 8771:1 8776:2 8783:1 8790:2 8799:1 8804:1 8806:1 8824:1 8827:1 8830:1 8835:1 8845:2 8849:1 8864:1 8866:1 8870:1 8872:2 8877:1 8885:1 8900:5 8906:1 8908:2 8955:1 8957:1 8958:2 8962:1 8964:4 8969:1 8972:1 8980:1 8986:1 8993:2 8998:1 9008:1 9009:1 9035:1 9045:1 9051:1 9078:2 9089:1 9092:1 9098:2 9118:1 9119:1 9122:1 9158:2 9164:7 9177:1 9181:1 9189:1 9209:1 9213:1 9241:1 9256:2 9268:1 9269:1 9276:1 9288:1 9303:1 9311:1 9322:1 9324:1 9342:1 9374:1 9395:5 9396:2 9411:2 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9477:1 9482:1 9488:1 9502:1 9507:3 9508:1 9527:1 9538:1 9539:1 9571:1 9586:1 9605:1 9610:1 9615:1 9626:1 9628:3 9651:1 9666:1 9667:2 9687:4 9689:1 9694:1 9699:1 9703:1 9706:1 9711:1 9725:1 9726:1 9737:1 9742:1 9754:1 9766:1 9780:3 9785:1 9790:1 9805:1 9809:1 9813:2 9816:1 9830:1 9834:1 9862:1 9865:1 9876:1 9883:2 9902:1 9914:1 9928:1 9935:1 9939:1 9942:1 9951:1 9954:2 9956:1 9963:1 9979:1 9981:1 10005:3 10011:1 10032:1 10037:2 10042:1 10047:1 10055:1 10061:4 10062:1 10064:2 10071:1 10073:1 10074:1 10088:1 10089:1 10099:1 10104:1 10110:1 10117:1 10123:1 10124:1 10126:3 10135:3 10137:1 10156:1 10176:2 10177:1 10182:1 10188:1 10204:6 10208:1 10221:1 10223:2 10255:2 10256:1 10301:1 10319:1 10328:1 10330:1 10339:1 10346:1 10347:1 10359:1 10380:1 10381:1 10394:1 10399:1 10422:1 10425:1 10430:2 10468:1 10472:1 10474:1 10482:2 10492:2 10498:4 10500:1 10502:2 10503:2 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10549:1 10550:1 10554:1 10556:2 10557:1 10560:3 10561:1 10572:4 10580:1 10593:1 10594:3 10597:5 10617:1 10620:1 10629:2 10647:1 10650:1 10681:1 10689:2 10696:1 10738:1 10746:1 10757:1 10761:3 10772:3 10775:2 10787:1 10795:2 10798:1 10801:1 10806:1 10820:1 10828:1 10844:2 10857:1 10863:1 10864:1 10876:1 10897:1 10899:1 10906:1 10914:1 10916:2 10918:1 10920:1 10925:1 10926:1 10946:1 10950:1 10964:5 10967:1 10969:1 10973:3 10979:1 10982:1 10984:1 10988:1 10995:1 10996:2 10997:1 11005:1 11010:1 11011:1 11021:1 11026:1 11027:3 11035:1 11041:1 11050:2 11062:1 11089:1 11096:1 11097:2 11106:1 11114:2 11131:1 11172:1 11173:1 11183:1 11187:1 11190:2 11216:1 11227:1 11228:1 11233:1 11249:2 11258:6 11263:1 11267:2 11269:1 11282:1 11286:2 11304:1 11313:1 11326:2 11354:1 11359:1 11371:1 11373:1 11379:2 11407:1 11413:1 11427:1 11442:1 11449:1 11457:1 11470:1 11472:1 11485:4 11486:3 11495:1 11499:2 11504:1 11505:2 11514:1 11521:1 11522:2 11534:1 11536:5 11560:1 11563:1 11566:1 11567:4 11576:1 11583:1 11585:3 11600:1 11618:1 11622:1 11632:1 11637:1 11642:1 11660:2 11687:1 11721:3 11728:1 11732:1 11738:1 11740:1 11747:1 11755:1 11765:2 11770:2 11771:2 11802:1 11805:2 11808:1 11811:1 11830:1 11836:1 11846:1 11854:1 11856:1 11860:1 11882:1 11884:2 11888:1 11895:2 11899:1 11913:1 11922:1 11926:3 11927:1 11932:1 11936:2 11943:1 11947:2 11959:4 11971:1 11996:1 12001:1 12008:1 12010:1 12024:1 12026:1 12066:1 12073:1 12078:1 12080:1 12124:1 12127:2 12145:1 12157:4 12169:1 12179:1 12193:1 12215:2 12221:1 12225:1 12231:1 12247:1 12250:2 12253:1 12265:1 12277:1 12282:1 12283:3 12290:1 12292:1 12298:2 12299:1 12305:1 12342:1 12347:1 12351:1 12362:1 12364:1 12376:1 12380:2 12395:1 12411:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12476:3 12479:1 12480:1 12482:1 12486:3 12490:1 12491:5 12492:1 12494:1 12501:2 12503:2 12538:1 12541:2 12550:1 12556:1 12564:1 12583:1 12584:2 12585:1 12587:2 12591:1 12594:2 12596:1 12614:2 12620:1 12625:2 12626:1 12629:1 12631:2 12655:1 12666:1 12670:1 12678:1 12681:1 12683:1 12696:1 12698:2 12699:1 12700:3 12705:2 12712:3 12715:1 12729:1 12730:1 12743:1 12749:1 12776:1 12803:2 12806:1 12823:1 12829:1 12831:2 12838:1 12841:1 12842:1 12844:1 12850:1 12861:1 12871:1 12873:1 12883:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 12972:1 13007:1 13009:1 13012:1 13013:2 13022:2 13033:1 13034:1 13068:1 13075:1 13095:2 13116:2 13117:1 13125:1 13129:1 13133:1 13150:2 13160:1 13162:1 13182:2 13184:1 13212:1 13233:5 13254:2 13256:1 13260:1 13263:2 13318:5 13341:1 13355:2 13358:1 13366:6 13383:1 13386:2 13413:3 13417:1 13425:1 13452:1 13513:1 13518:1 13554:1 13562:1 13620:1 13637:1 13665:1 13682:2 13686:2 13721:1 13723:5 13729:2 13732:1 13733:3 13735:1 13748:1 13763:3 13772:1 13773:2 13797:1 13806:1 13808:1 13811:1 13849:1 13853:1 13867:1 13887:1 13891:1 13903:1 13915:1 13919:1 13949:4 13957:1 13960:1 13983:1 14011:1 14067:2 14078:1 14085:1 14093:1 14102:2 14106:3 14115:1 14121:3 14127:2 14131:1 14148:1 14165:1 14177:1 14178:8 14196:1 14211:1 14214:1 14223:2 14224:1 14227:1 14232:1 14244:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14293:1 14299:2 14306:1 14329:1 14349:2 14350:1 14353:1 14383:4 14405:2 14429:1 14455:1 14470:1 14503:1 14523:1 14529:2 14533:1 14577:1 14584:1 14593:1 14598:2 14621:1 14639:1 14651:1 14668:1 14670:1 14674:1 14686:1 14694:1 14695:1 14700:1 14708:1 14715:1 14724:1 14727:3 14736:1 14737:1 14739:1 14750:1 14776:1 14779:1 14781:1 14785:1 14789:1 14790:1 14792:1 14796:1 14799:1 14810:1 14831:1 14832:1 14853:1 14871:1 14885:2 14888:1 14899:1 14903:1 14904:1 14906:1 14909:1 14911:4 14913:1 14921:1 14926:1 14928:1 14931:1 14934:1 14944:4 14945:2 14947:1 14951:1 14975:2 14993:1 14998:1 15007:1 15015:1 15021:1 15022:1 15037:1 15038:1 15049:1 15056:1 15057:1 15058:4 15068:2 15076:1 15079:1 15104:2 15110:2 15116:2 15123:1 15125:1 15129:1 15149:1 15164:1 15176:1 15231:1 15253:1 15257:2 15258:3 15264:1 15297:1 15305:1 15310:1 15311:1 15317:1 15319:3 15322:1 15335:1 15348:9 15355:2 15357:1 15364:1 15365:1 15366:1 15367:1 15370:4 15371:34 15381:1 15385:1 15388:2 15401:1 15425:1 15432:3 15438:2 15441:2 15476:1 15492:1 15496:1 15519:3 15537:1 15540:1 15551:3 15561:1 15567:2 15572:1 15576:2 15580:1 15581:1 15588:1 15589:1 15617:1 15620:3 15622:1 15631:1 15662:1 15674:1 15676:2 15690:1 15700:1 15709:1 15719:2 15746:2 15759:2 15778:2 15780:1 15785:1 15793:1 15798:1 15806:1 15828:1 15843:2 15844:1 15853:1 15857:1 15863:1 15866:8 15879:1 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15920:1 15921:1 15938:1 15958:3 15993:1 16011:1 16014:1 16021:1 16044:1 16056:1 16063:1 16098:2 16099:1 16102:2 16103:1 16110:1 16167:1 16168:1 16177:1 16179:1 16195:2 16202:1 16204:2 16218:1 16224:1 16225:1 16240:1 16247:1 16249:2 16250:1 16268:1 16273:1 16278:1 16280:1 16284:1 16302:1 16318:1 16342:1 16345:4 16346:1 16347:1 16348:1 16350:1 16352:1 16385:1 16400:2 16416:1 16417:1 16426:1 16446:1 16449:1 16458:1 16460:2 16462:1 16481:1 16485:1 16488:1 16490:1 16500:11 16503:1 16553:4 16567:2 16569:1 16572:3 16586:2 16589:1 16614:1 16620:1 16623:3 16677:1 16681:1 16682:1 16704:1 16717:1 16718:3 16725:1 16729:2 16735:1 16763:1 16793:2 16795:1 16814:1 16823:1 16827:2 16836:1 16840:1 16879:1 16884:1 16895:1 16904:1 16923:1 16926:1 16944:1 16945:1 16983:2 16986:1 16998:1 17018:1 17022:1 17024:2 17027:1 17029:1 17032:1 17043:1 17050:1 17078:2 17083:1 17086:1 17095:1 17103:1 17110:3 17114:2 17116:1 17124:1 17126:2 17128:1 17135:1 17139:1 17144:1 17150:1 17166:1 17179:2 17180:1 17185:1 17191:3 17200:1 17203:2 17206:1 17208:2 17209:1 17225:1 17230:1 17253:1 17264:1 17272:1 17273:2 17276:1 17278:3 17280:1 17297:2 17319:1 17326:2 17334:2 17346:2 17360:1 17365:1 17388:2 17411:1 17439:2 17447:1 17459:1 17467:1 17474:1 17516:1 17535:1 17547:1 17548:1 17551:1 17559:1 17561:2 17576:1 17579:1 17583:1 17585:1 17634:1 17662:2 17676:1 17699:1 17711:1 17715:1 17724:1 17726:1 17727:1 17728:2 17743:2 17756:2 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:2 17820:1 17854:1 17859:1 17874:4 17892:1 17906:2 17918:1 17923:1 17931:1 17932:1 17940:1 17946:3 17952:3 17974:1 17990:1 18043:2 18044:1 18052:1 18065:1 18082:1 18085:2 18115:1 18116:1 18121:1 18131:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:2 18246:1 18254:1 18280:1 18288:1 18289:2 18299:1 18301:1 18332:1 18335:1 18338:1 18368:1 18370:1 18374:1 18382:1 18388:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:8 18465:1 18475:2 18492:1 18523:1 18535:1 18550:1 18563:1 18598:1 18600:1 18610:1 18611:2 18621:1 18659:1 18681:2 18731:1 18748:1 18756:2 18757:1 18759:1 18769:1 18793:1 18802:1 18811:1 18817:1 18830:1 18841:1 18858:1 18860:1 18863:2 18864:3 18874:1 18891:1 18895:1 18903:1 18905:1 18933:1 18947:1 18948:1 18951:1 18965:1 18974:1 18976:1 18986:1 18996:1 19001:1 19025:1 19039:2 19056:1 19062:1 19067:1 19081:1 19085:4 19093:2 19107:2 19112:1 19118:1 19145:1 19146:1 19197:1 19203:2 19210:1 19221:1 19239:1 19242:3 19260:1 19262:2829 19265:1 19288:1 19316:1 19320:1 19325:2 19362:1 19392:2 19398:1 19401:1 19403:1 19423:2 19429:2 19434:1 19474:1 19476:1 19479:2 19486:1 19515:2 19519:1 19541:2 19547:1 19578:1 19586:1 19594:2 19597:1 19620:1 19622:1 19627:1 19650:2 19663:3 19670:2 19697:1 19707:1 19739:1 19754:1 19758:2 19771:1 19775:1 19776:3 19781:1 19810:1 19812:1 19829:1 19832:1 19861:1 19869:3 19874:1 19903:1 19908:3 19914:1 19920:3 19924:1 19948:1 19957:1 19975:2 20004:1 20006:6 20035:2 20086:1 20093:1 20101:1 20125:1 20131:4 20144:1 20146:2 20150:1 20153:1 20167:1 20187:1 20202:1 20205:1 20208:3 20218:2 20219:2 20223:2 20224:1 20225:1 20226:1 20244:1 20252:1 20259:2 20269:1 20273:1 20279:1 20301:1 20302:1 20333:1 20370:2 20374:1 20376:1 20382:1 20397:1 20400:1 20405:1 20410:1 20437:1 20438:1 20452:1 20507:1 20518:1 20524:1 20547:1 20548:1 20550:2 20575:1 20601:1 20606:1 20609:1 20615:2 20618:1 20620:1 20630:1 20634:1 20659:2 20664:1 20666:3 20671:1 20672:1 20675:1 20681:1 20684:1 20691:1 20692:1 20696:1 20700:1 20701:2 20704:2 20706:2 20709:1 20719:1 20721:1 20722:1 20730:1 20737:2 20742:2 20743:1 20752:3 20755:1 20760:1 20779:1 20792:1 20793:1 20797:1 20832:1 20837:2 20860:2 20868:1 20920:3 20922:1 20959:1 20962:1 20970:1 20977:2 20987:1 20989:1 20993:2 21004:1 21008:1 21020:2 21022:2 21036:1 21050:1 21052:2 21055:1 21075:1 21084:2 21085:2 21101:2 21112:1 21115:2 21124:2 21160:1 21179:1 21204:1 21205:1 21208:1 21209:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21250:1 21251:1 21260:1 21263:1 21269:2 21294:1 21299:1 21321:3 21328:1 21332:1 21338:1 21346:2 21354:2 21360:1 21368:1 21397:1 21404:1 21405:3 21408:2 21410:1 21414:1 21426:1 21427:2 21429:2 21437:1 21452:1 21461:2 21481:2 21482:1 21493:1 21503:1 21521:1 21536:2 21568:1 21570:2 21572:1 21581:1 21598:2 21624:1 21646:1 21665:1 21669:1 21670:1 21690:1 21701:1 21712:1 21741:1 21747:1 21767:1 21776:1 21784:1 21800:1 21803:2 21809:1 21814:1 21822:2 21825:2 21845:2 21848:2 21849:8 21851:1 21870:1 21883:1 21901:3 21907:1 21910:1 21912:1 21921:1 21931:1 21942:1 21952:1 21960:1 21967:1 21970:1 21983:2 21986:1 21990:1 22008:1 22022:1 22026:1 22038:1 22043:1 22049:1 22050:2 22053:2 22055:1 22057:1 22068:1 22084:1 22099:1 22104:1 22109:1 22141:1 22144:1 22179:3 22185:1 22190:2 22199:1 22214:1 22219:1 22243:1 22257:1 22266:1 22277:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22351:1 22353:5 22363:1 22375:1 22384:1 22395:2 22396:3 22415:1 22445:1 22451:2 22459:1 22468:1 22477:1 22486:2 22495:1 22508:1 22512:1 22530:3 22533:1 22542:1 22548:2 22554:1 22560:2 22577:1 22579:1 22600:2 22606:2 22609:1 22627:2 22628:2 22638:1 22662:2 22667:3 22679:1 22685:1 22695:1 22697:1 22705:1 22723:2 22732:2 22733:1 22743:1 22763:1 22770:1 22779:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:2 22853:2 22867:1 22886:1 22914:3 22916:1 22919:2 22924:1 22927:1 22928:4 22969:1 22974:1 22985:1 23003:2 23004:1 23006:1 23007:5 23013:1 23027:5 23029:1 23042:1 23049:1 23071:1 23077:1 23089:1 23113:1 23125:1 23133:1 23138:1 23161:6 23165:1 23171:1 23172:1 23176:1 23236:1 23237:1 23241:1 23247:2 23255:1 23264:1 23268:2 23297:2 23309:1 23311:4 23358:2 23359:1 23363:1 23365:1 23367:1 23372:1 23376:1 23382:1 23383:1 23384:1 23399:1 23409:1 23410:1 23413:1 23430:1 23433:1 23436:2 23448:1 23458:4 23467:1 23473:1 23477:1 23478:1 23503:1 23505:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:1 23561:3 23562:1 23581:1 23583:1 23613:1 23623:1 23627:1 23632:1 23667:1 23671:1 23688:1 23704:1 23717:1 23722:2 23733:3 23747:2 23774:2 23790:1 23814:4 23831:1 23834:6 23841:1 23856:1 23868:1 23897:1 23912:4 23913:1 23926:2 23927:3 23928:3 23935:1 23938:1 23940:3 23941:6 23949:1 23958:1 23977:1 23988:1 24003:2 24008:1 24013:1 24021:1 24033:4 24047:1 24051:2 24058:1 24066:1 24068:2 24078:1 24080:1 24089:1 24122:1 24128:1 24157:1 24160:1 24192:2 24194:1 24197:2 24199:2 24205:2 24209:1 24212:2 24223:5 24235:1 24249:1 24264:4 24284:1 24292:1 24305:3 24360:1 24370:2 24373:1 24375:2 24379:4 24383:1 24388:1 24392:3 24401:1 24404:1 24405:1 24415:1 24421:1 24423:1 24424:1 24427:1 24431:1 24436:1 24441:3 24453:2 24471:1 24474:2 24489:1 24494:1 24507:1 24544:1 24547:1 24551:1 24553:1 24559:1 24560:1 24576:2 24623:2 24626:1 24631:1 24636:5 24652:1 24655:1 24658:1 24661:1 24662:3 24715:1 24719:1 24734:2 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24791:1 24803:1 24810:1 24835:1 24898:1 24904:9 24906:1 24914:1 24915:2 24918:2 24926:2 24937:1 24946:1 24956:1 24965:3 24992:1 24999:1 25024:1 25026:1 25032:1 25036:1 25044:1 25048:2 25051:4 25054:2 25074:1 25081:3 25099:1 25114:1 25120:1 25142:1 25153:2 25157:1 25159:1 25175:1 25176:2 25185:1 25186:1 25187:1 25201:1 25206:1 25211:1 25225:2 25231:2 25237:1 25238:1 25249:1 25254:1 25263:1 25276:1 25277:1 25301:1 25339:1 25340:1 25365:1 25384:1 25393:2 25395:1 25401:1 25415:1 25439:1 25447:2 25451:2 25456:1 25462:4 25482:1 25483:2 25484:1 25503:1 25508:1 25512:1 25532:1 25539:1 25543:1 25568:1 25600:1 25617:1 25627:1 25631:4 25644:2 25652:1 25655:1 25659:2 25678:1 25680:1 25681:1 25704:2 25705:2 25729:1 25731:1 25736:1 25757:2 25762:1 25773:1 25777:1 25794:1 25828:1 25835:2 25845:1 25859:1 25871:1 25879:1 25893:2 25904:1 25905:1 25920:2 25922:2 25933:2 25935:2 25938:2 25943:3 25945:1 25952:1 25953:1 25957:2 25964:1 25974:1 25982:3 25986:1 26013:2 26024:4 26035:2 26041:1 26050:1 26052:2 26068:1 26072:1 26084:1 26092:2 26093:2 26095:2 26129:1 26130:2 26138:1 26139:1 26156:1 26160:2 26172:1 26178:2 26188:1 26214:1 26220:1 26233:3 26244:1 26268:1 26276:1 26281:2 26284:2 26299:1 26307:2 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26387:1 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:2 26511:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:3 26648:1 26649:1 26667:1 26670:4 26689:1 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26741:1 26757:1 26797:1 26799:1 26805:1 26845:1 26846:1 26857:2 26858:2 26871:1 26888:2 26893:2 26900:1 26903:1 26906:1 26911:1 26915:2 26916:1 26918:3 26924:1 26955:3 26965:2 26969:1 26981:1 26984:2 26988:1 26991:2 26995:1 27002:1 27006:2 27007:2 27008:1 27015:2 27017:1 27023:3 27024:1 27025:2 27033:2 27039:1 27061:1 27067:1 27069:1 27089:1 27095:1 27115:5 27116:2 27164:1 27165:1 27200:1 27201:1 27203:1 27225:1 27233:1 27260:1 27261:4 27266:1 27267:2 27269:1 27293:1 27294:1 27302:1 27312:1 27318:1 27319:1 27350:1 27353:1 27355:1 27369:1 27384:1 27386:2 27390:2 27395:1 27400:1 27404:1 27410:1 27424:2 27425:1 27430:4 27438:1 27448:1 27451:1 27456:1 27464:1 27471:1 27473:1 27474:1 27480:1 27496:1 27527:1 27536:1 27540:1 27551:2 27554:2 27555:1 27557:1 27564:4 27571:1 27584:1 27613:2 27618:1 27635:1 27657:1 27658:1 27665:1 27668:1 27669:2 27704:1 27713:1 27727:1 27731:1 27739:1 27748:1 27754:1 27776:1 27808:1 27818:2 27820:1 27825:1 27831:1 27848:1 27857:1 27874:2 27877:2 27878:1 27880:2 27881:2 27891:1 27897:3 27905:1 27910:1 27914:1 27944:1 27948:1 27951:1 27952:1 27966:1 27968:1 27985:2 27999:1 28000:1 28001:1 28002:1 28003:2 28014:4 28032:1 28097:2 28098:1 28101:1 28109:1 28119:1 28130:2 28138:1 28139:2 28146:1 28176:2 28186:1 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28290:1 28302:1 28303:2 28311:1 28315:1 28318:1 28322:1 28330:1 28337:1 28358:1 28393:1 28427:1 28432:1 28435:2 28456:1 28462:2 28468:2 28481:1 28495:1 28496:1 28504:1 28522:2 28530:1 28532:1 28536:2 28542:1 28547:1 28555:2 28562:2 28577:1 28588:2 28589:2 28591:1 28596:2 28617:11 28622:1 28625:1 28629:1 28633:2 28640:1 28643:1 28662:7 28663:2 28668:1 28671:2 28672:1 28674:1 28684:3 28699:1 28714:1 28719:1 28725:1 28755:1 28759:1 28784:1 28806:3 28817:1 28827:2 28829:1 28835:2 28838:1 28854:1 28864:2 28868:1 28872:2 28889:1 28896:1 28903:1 28907:1 28911:1 28917:1 28938:1 28952:1 28964:1 28969:1 28977:1 28987:1 28990:1 28997:1 29019:1 29023:3 29025:1 29034:1 29043:1 29046:3 29049:1 29055:1 29074:1 29090:1 29091:1 29098:1 29102:3 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29175:1 29177:1 29189:1 29190:1 29204:1 29205:1 29233:1 29251:1 29252:1 29265:1 29268:1 29286:1 29288:1 29297:1 29322:1 29323:1 29324:2 29325:1 29333:1 29336:1 29343:1 29348:1 29366:1 29370:1 29376:2 29391:1 29396:1 29401:1 29453:1 29481:1 29482:1 29483:1 29519:2 29525:1 29556:1 29574:1 29581:1 29628:2 29633:1 29650:1 29695:4 29703:1 29706:1 29711:1 29717:1 29734:1 29738:5 29741:1 29743:1 29746:1 29753:1 29754:1 29760:1 29764:2 29773:1 29790:2 29795:1 29807:2 29818:1 29832:1 29840:1 29846:1 29848:2 29851:1 29854:3 29864:1 29868:1 29888:1 29889:1 29891:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29972:1 29974:1 29980:1 29996:1
17 12:1 14:2 24:1 25:1 32:1 35:1 41:1 50:1 57:2 65:1 78:1 100:1 110:1 148:1 157:7 167:1 171:2 174:1 180:1 190:1 212:1 213:1 214:1 226:1 241:2 253:1 258:4 282:2 284:2 307:1 318:1 319:1 324:1 330:2 377:1 380:2 381:1 393:1 399:1 452:1 462:1 464:2 470:1 476:1 477:1 486:1 542:1 555:1 591:3 597:1 599:1 602:1 607:1 618:1 648:1 657:1 660:3 671:1 677:2 726:1 747:1 762:1 765:1 771:1 779:1 788:1 796:3 811:5 817:1 867:2 869:1 873:1 904:1 906:1 908:2 912:6 913:3 915:1 917:2 919:1 921:4 924:2 925:3 926:1 931:1 935:1 936:2 940:1 942:2 945:2 960:1 966:4 967:2 968:1 972:2 991:1 1010:3 1034:1 1036:2 1039:1 1040:2 1052:1 1054:1 1055:1 1059:1 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:3 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:2 1163:1 1176:1 1186:1 1193:2 1197:2 1238:1 1247:1 1252:1 1260:2 1262:1 1266:1 1270:1 1283:1 1296:1 1297:1 1301:1 1317:1 1318:1 1321:1 1332:1 1334:1 1335:1 1351:1 1362:1 1365:1 1382:1 1385:1 1387:1 1393:1 1413:1 1414:1 1425:1 1460:1 1463:1 1481:1 1485:1 1486:2 1513:1 1516:1 1518:1 1521:1 1528:1 1536:2 1540:1 1543:1 1567:2 1571:1 1588:4 1600:1 1601:1 1603:1 1611:1 1614:1 1615:1 1619:1 1634:2 1645:1 1663:1 1677:1 1682:2 1687:1 1691:3 1708:1 1715:1 1716:1 1719:1 1727:2 1736:1 1741:1 1746:1 1750:1 1754:1 1759:1 1760:1 1761:1 1764:1 1788:2 1795:1 1797:1 1803:1 1804:1 1812:3 1813:1 1824:1 1826:1 1827:1 1828:1 1839:1 1849:1 1856:1 1858:1 1863:2 1864:2 1865:1 1874:1 1877:1 1892:1 1902:1 1913:1 1921:3 1927:2 1933:2 1935:1 1939:1 1963:1 1979:1 1981:1 1994:1 2000:1 2011:2 2013:1 2024:1 2025:2 2036:1 2041:1 2057:1 2058:1 2086:2 2128:1 2131:2 2154:2 2161:1 2170:1 2204:1 2249:1 2293:2 2330:1 2339:1 2360:1 2365:1 2366:1 2386:1 2404:1 2406:2 2412:1 2421:1 2428:4 2435:2 2436:1 2438:1 2448:5 2452:1 2455:2 2457:2 2459:2 2461:1 2465:1 2470:1 2473:6 2483:1 2497:2 2518:2 2532:1 2534:1 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:1 2631:5 2636:2 2655:2 2666:1 2671:1 2679:1 2680:2 2685:1 2686:1 2692:1 2700:1 2701:1 2702:1 2705:1 2706:3 2709:1 2713:1 2718:1 2728:2 2744:1 2758:1 2760:2 2784:1 2819:2 2824:1 2831:1 2833:1 2858:1 2871:1 2881:1 2890:1 2892:1 2906:1 2908:1 2911:3 2921:1 2978:1 2983:1 2986:1 2989:2 2990:2 2997:1 3001:1 3007:1 3017:1 3020:1 3022:1 3043:1 3045:1 3052:1 3062:4 3070:4 3080:5 3100:1 3116:1 3119:1 3120:1 3131:2 3134:1 3150:1 3160:1 3165:1 3166:1 3183:2 3190:3 3194:2 3197:2 3203:1 3219:1 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3328:1 3331:1 3337:1 3338:2 3362:1 3369:1 3370:1 3422:1 3433:3 3502:1 3525:1 3544:2 3586:1 3624:1 3627:2 3632:1 3635:1 3653:1 3654:3 3674:1 3676:1 3677:1 3696:1 3724:2 3725:1 3729:1 3740:3 3746:1 3748:1 3749:1 3751:5 3762:1 3767:1 3774:1 3781:1 3790:2 3802:1 3820:1 3833:1 3858:1 3863:1 3869:3 3872:1 3883:2 3886:1 3894:2 3914:2 3924:1 3927:1 3953:1 3955:1 3963:1 3984:3 3986:1 3990:1 3991:1 4005:2 4013:1 4039:1 4057:2 4058:1 4062:3 4080:1 4092:1 4100:1 4114:1 4118:3 4122:1 4127:1 4137:1 4141:2 4150:1 4170:1 4171:1 4179:1 4180:1 4189:1 4191:1 4233:1 4238:1 4262:2 4268:1 4283:1 4284:1 4288:1 4289:1 4306:1 4307:1 4310:1 4318:1 4324:1 4334:1 4338:2 4348:1 4358:2 4359:1 4366:1 4374:2 4413:1 4435:1 4437:1 4440:1 4458:1 4465:1 4467:2 4468:1 4471:1 4472:1 4473:1 4484:1 4522:2 4526:3 4564:1 4575:4 4578:1 4579:1 4588:1 4589:2 4597:1 4601:4 4614:1 4627:1 4628:1 4631:1 4646:1 4650:1 4655:1 4656:1 4667:2 4669:1 4701:1 4707:1 4708:2 4718:1 4729:1 4744:1 4769:1 4780:1 4782:1 4783:1 4789:2 4790:1 4794:1 4799:1 4801:5 4810:2 4822:1 4827:1 4831:1 4842:1 4867:2 4882:4 4899:1 4901:2 4914:1 4926:1 4933:1 4952:1 4953:2 4959:5 4967:1 4968:1 4978:1 4984:1 4987:1 4992:3 4997:1 4999:4 5012:1 5017:1 5021:1 5029:2 5031:2 5055:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5116:1 5117:1 5118:1 5119:1 5124:1 5129:1 5130:2 5132:1 5136:2 5138:1 5145:2 5149:2 5154:1 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5224:1 5264:1 5276:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:2 5354:3 5361:1 5366:1 5375:2 5377:1 5401:1 5404:1 5416:2 5420:1 5440:1 5450:1 5458:2 5483:1 5486:1 5495:1 5497:1 5511:2 5513:1 5529:1 5533:1 5541:2 5556:1 5601:1 5606:1 5618:1 5619:2 5625:1 5630:1 5636:1 5651:1 5674:1 5682:1 5723:2 5726:1 5728:1 5731:1 5740:1 5741:3 5749:1 5772:2 5784:1 5798:6 5809:1 5814:1 5844:1 5856:1 5865:1 5874:1 5877:1 5885:1 5893:2 5900:1 5904:1 5911:1 5924:1 5927:2 5929:1 5935:1 5951:1 5959:2 5970:1 5971:1 5989:1 5999:1 6005:1 6007:1 6011:1 6018:2 6022:2 6026:2 6027:9 6036:2 6055:2 6061:1 6065:1 6082:1 6107:3 6131:1 6134:2 6162:2 6168:1 6169:4 6170:1 6184:2 6185:1 6188:1 6190:1 6202:3 6221:2 6239:1 6245:1 6247:1 6264:2 6265:3 6268:1 6288:2 6293:1 6298:1 6301:1 6303:1 6306:1 6309:1 6318:4 6320:1 6343:1 6367:2 6377:1 6382:2 6383:2 6389:2 6391:1 6393:1 6400:1 6424:2 6450:1 6456:1 6462:1 6465:1 6467:1 6469:1 6482:4 6497:1 6499:1 6505:1 6517:1 6541:9 6552:1 6555:1 6568:1 6570:1 6580:3 6584:2 6586:1 6589:1 6590:1 6596:1 6600:3 6601:2 6602:1 6616:1 6625:1 6632:1 6636:1 6644:1 6646:1 6647:1 6655:1 6657:1 6664:2 6670:1 6682:1 6688:1 6750:2 6753:1 6761:1 6782:1 6790:1 6795:2 6809:1 6818:1 6821:1 6826:2 6837:1 6866:2 6868:4 6870:1 6881:1 6898:1 6903:1 6912:1 6913:1 6923:1 6964:1 6970:1 6980:1 6998:3 7022:1 7032:1 7049:1 7069:3 7072:2 7073:1 7084:1 7096:1 7098:1 7103:1 7104:1 7108:2 7113:3 7121:1 7135:1 7159:1 7186:1 7196:2 7237:1 7248:2 7251:1 7253:1 7270:4 7290:2 7295:1 7316:1 7318:1 7323:1 7327:1 7331:1 7337:1 7341:1 7369:1 7372:2 7375:2 7397:1 7401:1 7410:1 7415:3 7433:1 7434:1 7444:1 7446:1 7449:1 7463:2 7486:1 7493:1 7504:3 7509:1 7529:2 7532:1 7548:1 7551:1 7554:1 7575:1 7578:1 7585:1 7602:2 7607:2 7613:1 7621:1 7623:1 7650:2 7664:4 7669:1 7670:1 7684:1 7696:1 7700:2 7705:1 7706:1 7719:1 7721:1 7730:2 7737:1 7747:1 7755:2 7762:1 7763:3 7764:1 7781:1 7788:3 7791:2 7792:7 7793:2 7794:1 7796:1 7797:2 7801:6 7802:1 7803:1 7810:2 7811:3 7813:1 7814:4 7816:2 7828:1 7849:2 7857:3 7864:1 7871:1 7888:1 7900:1 7928:1 7943:1 7944:1 7949:1 7954:1 7960:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8043:1 8058:17 8065:1 8074:1 8082:4 8083:2 8091:2 8110:1 8115:2 8127:1 8134:2 8146:1 8151:3 8157:1 8168:1 8199:1 8215:1 8233:4 8252:1 8266:1 8285:1 8288:1 8292:2 8320:1 8329:3 8336:1 8338:1 8340:1 8346:1 8354:1 8374:1 8407:2 8428:1 8441:1 8468:5 8471:1 8480:1 8482:2 8496:1 8501:6 8508:1 8512:1 8513:1 8519:1 8525:1 8539:1 8544:1 8554:1 8556:1 8560:1 8565:2 8571:1 8585:1 8590:1 8591:6 8629:2 8641:2 8658:1 8662:1 8664:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8744:2 8749:3 8754:1 8756:1 8760:1 8765:1 8771:1 8776:2 8783:1 8790:2 8799:1 8804:1 8806:1 8824:1 8827:1 8830:1 8835:1 8845:2 8849:1 8864:1 8866:1 8870:1 8872:2 8877:1 8885:1 8900:5 8906:1 8908:2 8955:1 8957:1 8958:2 8962:1 8964:4 8969:1 8972:1 8980:1 8986:1 8993:2 8998:1 9008:1 9009:1 9035:1 9045:1 9051:1 9078:2 9089:1 9092:1 9098:2 9118:1 9119:1 9122:1 9158:2 9164:7 9177:1 9181:1 9189:1 9209:1 9213:1 9241:1 9256:2 9268:1 9269:1 9276:1 9288:1 9303:1 9311:1 9316:1 9322:1 9324:1 9342:1 9374:1 9395:5 9396:2 9411:2 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9477:1 9482:1 9488:1 9502:1 9507:3 9508:1 9527:1 9538:1 9539:1 9571:1 9586:1 9605:1 9610:1 9615:1 9626:1 9628:3 9651:1 9666:1 9667:2 9687:4 9689:1 9694:1 9699:1 9703:1 9706:1 9711:2 9725:1 9726:1 9737:1 9742:1 9754:1 9766:1 9780:3 9785:1 9790:1 9805:1 9809:1 9813:2 9816:1 9830:1 9834:1 9862:1 9865:1 9876:1 9883:2 9902:1 9914:1 9928:1 9935:1 9939:1 9942:1 9951:1 9954:2 9956:1 9963:1 9979:1 9981:1 10005:3 10011:1 10032:1 10037:2 10042:1 10047:1 10055:1 10061:4 10062:1 10064:2 10071:1 10073:1 10074:1 10088:1 10089:1 10099:1 10104:1 10110:1 10117:1 10123:1 10124:1 10126:3 10135:3 10137:1 10156:1 10176:2 10177:1 10182:1 10188:1 10204:6 10208:1 10221:1 10223:2 10255:2 10256:1 10301:1 10319:1 10328:1 10330:1 10339:1 10346:1 10347:1 10359:1 10372:1 10380:1 10381:1 10394:1 10399:1 10422:1 10425:1 10430:2 10468:1 10472:1 10474:1 10482:2 10487:1 10492:2 10498:4 10500:1 10502:2 10503:2 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10549:1 10550:1 10554:1 10556:2 10557:1 10560:3 10561:1 10572:4 10580:1 10593:1 10594:3 10597:5 10617:1 10620:1 10629:2 10647:1 10650:1 10681:1 10689:2 10696:1 10706:1 10738:1 10746:1 10757:1 10761:3 10772:3 10775:2 10787:1 10795:2 10798:1 10801:1 10806:1 10820:1 10828:1 10844:2 10857:1 10863:1 10864:1 10876:1 10897:1 10899:1 10906:1 10914:1 10916:2 10918:1 10920:1 10925:1 10926:1 10946:1 10950:1 10964:5 10967:1 10969:1 10973:3 10979:1 10982:1 10984:1 10988:1 10995:1 10996:2 10997:1 11005:1 11010:1 11011:1 11021:1 11026:1 11027:3 11035:1 11041:1 11050:2 11062:1 11089:1 11096:1 11097:2 11106:1 11114:2 11131:1 11172:1 11173:1 11183:1 11187:1 11190:2 11216:1 11227:1 11228:1 11233:1 11249:2 11258:6 11263:1 11267:2 11269:1 11282:1 11286:2 11304:1 11313:1 11326:2 11354:1 11359:1 11371:1 11373:1 11379:2 11407:1 11413:1 11427:1 11442:1 11449:1 11457:1 11470:1 11472:1 11485:4 11486:3 11495:1 11499:2 11504:1 11505:2 11514:1 11521:1 11522:2 11534:1 11536:5 11560:1 11563:1 11566:1 11567:4 11576:1 11583:1 11585:3 11600:1 11618:1 11622:1 11632:1 11637:1 11642:1 11660:2 11687:1 11721:3 11728:1 11732:1 11738:1 11740:1 11747:1 11755:1 11765:2 11770:3 11771:2 11802:1 11805:2 11808:1 11811:1 11830:1 11836:1 11846:1 11854:1 11856:1 11860:1 11882:1 11884:3 11888:1 11895:2 11899:1 11913:1 11922:1 11926:3 11927:1 11932:1 11936:2 11943:1 11947:2 11959:4 11971:1 11996:1 12001:1 12008:1 12010:1 12024:1 12026:1 12066:1 12073:1 12078:1 12080:1 12124:1 12127:2 12145:1 12157:5 12169:1 12179:1 12193:1 12215:2 12221:1 12225:1 12231:1 12236:1 12247:1 12250:2 12253:1 12265:1 12277:1 12282:1 12283:3 12290:1 12292:1 12298:2 12299:1 12305:1 12342:1 12347:1 12351:1 12362:1 12364:1 12376:1 12380:2 12395:1 12411:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12476:3 12479:1 12480:1 12482:1 12486:3 12490:1 12491:5 12492:1 12494:1 12501:2 12503:2 12538:1 12541:2 12550:1 12556:1 12564:1 12583:1 12584:2 12585:1 12587:2 12591:1 12594:2 12596:1 12614:2 12620:1 12625:2 12626:1 12629:1 12631:2 12655:1 12666:1 12670:1 12678:1 12681:1 12683:1 12696:1 12698:2 12699:1 12700:3 12705:2 12712:3 12715:1 12729:1 12730:1 12743:1 12749:1 12776:1 12803:2 12806:1 12823:1 12829:1 12831:2 12838:1 12841:1 12842:1 12844:1 12850:1 12861:1 12871:1 12873:1 12883:1 12893:1 12896:1 12897:1 12901:1 12913:1 12927:1 12967:1 12972:1 13007:1 13009:1 13012:1 13013:2 13022:2 13033:1 13034:1 13068:1 13075:1 13095:2 13116:2 13117:1 13125:1 13129:1 13133:1 13150:2 13160:1 13162:1 13168:1 13182:2 13184:1 13212:1 13233:5 13254:2 13256:1 13260:1 13263:2 13318:5 13341:1 13355:2 13358:1 13366:6 13383:1 13386:2 13413:3 13417:1 13425:1 13452:1 13513:1 13518:1 13554:1 13562:1 13620:1 13637:1 13665:1 13682:2 13686:2 13721:1 13723:5 13729:2 13732:1 13733:3 13735:1 13748:1 13763:3 13772:1 13773:2 13797:1 13806:1 13808:1 13811:1 13849:1 13853:1 13867:1 13887:1 13891:1 13903:1 13915:1 13919:1 13949:4 13957:1 13960:2 13983:1 14010:1 14011:1 14067:2 14078:1 14085:1 14093:1 14102:2 14106:3 14115:1 14121:3 14127:2 14131:1 14148:1 14165:1 14177:1 14178:8 14196:1 14211:1 14214:1 14223:2 14224:1 14227:1 14232:1 14244:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14293:1 14299:2 14306:1 14329:1 14349:2 14350:1 14353:1 14383:4 14405:2 14429:1 14455:1 14470:1 14503:1 14523:1 14529:2 14533:1 14577:1 14584:1 14593:1 14598:2 14621:1 14639:1 14651:1 14668:1 14670:1 14674:1 14686:1 14694:1 14695:1 14700:1 14708:1 14715:1 14724:1 14727:3 14736:1 14737:1 14739:1 14750:1 14776:1 14779:1 14781:1 14785:1 14789:1 14790:1 14792:1 14796:1 14799:1 14810:1 14831:1 14832:1 14853:1 14871:1 14885:2 14888:1 14899:1 14903:1 14904:1 14906:1 14909:1 14911:4 14913:1 14921:1 14926:1 14928:1 14931:1 14934:1 14944:4 14945:2 14947:1 14951:1 14975:2 14993:1 14998:1 15007:1 15015:1 15021:1 15022:1 15037:1 15038:1 15049:1 15056:1 15057:1 15058:4 15068:2 15076:1 15079:1 15104:2 15110:2 15116:2 15123:1 15125:1 15129:1 15149:1 15164:1 15171:1 15176:1 15231:1 15253:1 15257:2 15258:4 15264:1 15297:1 15305:1 15310:1 15311:1 15317:1 15319:3 15322:1 15335:1 15348:9 15355:2 15357:1 15364:1 15365:1 15366:1 15367:1 15370:4 15371:37 15381:1 15385:1 15388:2 15401:1 15425:1 15432:3 15438:2 15441:2 15476:1 15492:1 15496:1 15519:3 15537:1 15540:1 15551:3 15561:1 15567:2 15572:1 15576:2 15580:1 15581:1 15588:1 15589:1 15617:1 15620:3 15622:1 15631:1 15662:1 15674:1 15676:2 15690:1 15700:1 15709:1 15719:2 15746:2 15759:2 15778:2 15780:1 15785:1 15793:1 15798:1 15806:1 15828:1 15843:2 15844:1 15853:1 15857:1 15863:1 15866:8 15879:1 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15920:1 15921:1 15938:1 15958:3 15993:1 16011:1 16014:1 16021:1 16044:1 16056:1 16063:1 16098:2 16099:1 16102:2 16103:1 16110:2 16167:1 16168:1 16177:1 16179:1 16195:2 16202:1 16204:2 16218:1 16224:1 16225:1 16240:1 16247:1 16249:2 16250:1 16268:1 16273:1 16278:1 16280:1 16284:1 16302:1 16318:1 16342:1 16345:4 16346:1 16347:1 16348:1 16350:1 16352:1 16385:1 16400:2 16416:1 16417:1 16426:1 16446:1 16449:1 16458:1 16460:2 16462:1 16481:1 16485:1 16488:1 16490:1 16500:11 16503:1 16540:1 16553:4 16567:2 16569:1 16572:3 16586:2 16589:1 16614:1 16620:1 16623:3 16662:1 16677:1 16681:1 16682:1 16704:1 16717:1 16718:3 16725:1 16729:2 16735:1 16763:1 16793:2 16795:1 16814:1 16823:1 16827:2 16836:1 16840:1 16879:1 16884:1 16895:1 16904:1 16923:1 16926:1 16944:1 16945:1 16983:2 16986:1 16998:1 17018:1 17022:1 17024:2 17027:1 17029:1 17032:1 17043:1 17050:1 17078:2 17083:1 17086:1 17095:1 17103:1 17110:3 17114:2 17116:1 17124:1 17126:2 17128:1 17135:1 17139:1 17144:1 17150:1 17166:1 17179:2 17180:1 17185:1 17191:3 17200:1 17203:2 17206:1 17208:2 17209:1 17225:1 17230:1 17253:1 17264:2 17272:1 17273:2 17276:1 17278:3 17280:1 17297:2 17319:1 17326:2 17334:2 17346:2 17360:1 17365:1 17388:2 17411:1 17439:2 17447:1 17459:1 17467:1 17474:1 17516:1 17535:1 17547:1 17548:1 17551:1 17559:1 17561:2 17576:1 17579:1 17583:1 17585:1 17634:1 17662:2 17676:1 17699:1 17711:1 17715:1 17724:1 17726:1 17727:1 17728:2 17743:2 17756:2 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:2 17820:1 17854:1 17859:1 17874:4 17892:1 17906:2 17918:1 17923:1 17931:1 17932:1 17940:1 17946:3 17952:3 17974:1 17990:1 18043:2 18044:1 18052:1 18065:1 18082:1 18085:2 18115:1 18116:1 18121:1 18131:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:2 18246:1 18254:1 18280:1 18288:1 18289:2 18299:1 18301:1 18332:1 18335:1 18338:1 18368:1 18370:1 18374:1 18382:1 18388:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:8 18465:1 18475:2 18492:2 18523:1 18535:1 18550:1 18563:1 18598:1 18600:1 18610:1 18611:2 18621:1 18659:1 18681:2 18731:1 18748:1 18756:2 18757:1 18759:1 18769:1 18793:1 18802:1 18811:1 18817:1 18830:1 18841:1 18858:1 18860:1 18863:2 18864:3 18874:1 18891:1 18895:1 18903:1 18905:1 18933:1 18947:1 18948:1 18951:1 18965:1 18974:1 18976:1 18986:1 18996:1 18999:1 19001:1 19025:1 19039:2 19056:1 19062:1 19067:1 19081:1 19085:4 19093:2 19107:2 19112:1 19118:1 19145:1 19146:1 19163:1 19197:1 19203:2 19210:1 19214:1 19221:1 19239:1 19242:3 19260:1 19262:2882 19265:1 19288:1 19316:1 19320:1 19325:2 19362:1 19392:2 19398:1 19401:1 19403:1 19423:2 19429:2 19434:1 19474:1 19476:1 19479:2 19486:1 19515:2 19519:1 19541:2 19547:1 19578:1 19586:1 19594:2 19597:1 19620:1 19622:1 19627:1 19650:2 19663:3 19670:2 19686:1 19697:1 19707:1 19739:1 19754:1 19758:2 19771:1 19775:1 19776:4 19781:1 19810:1 19812:1 19829:1 19832:1 19861:1 19869:3 19874:1 19903:1 19908:3 19914:1 19920:3 19924:1 19948:1 19957:1 19975:2 20004:1 20006:6 20035:2 20086:1 20093:1 20101:1 20125:1 20131:4 20144:1 20146:2 20150:1 20153:1 20167:1 20187:1 20202:1 20205:1 20208:3 20218:2 20219:2 20223:2 20224:1 20225:1 20226:1 20244:1 20252:1 20259:2 20269:1 20273:1 20279:1 20301:1 20302:1 20333:1 20370:2 20374:1 20376:1 20382:1 20397:1 20400:1 20405:1 20410:1 20437:1 20438:1 20452:1 20507:1 20518:1 20524:1 20547:1 20548:1 20550:2 20575:1 20601:1 20606:1 20609:1 20615:2 20618:1 20620:1 20630:1 20634:1 20659:2 20664:1 20666:3 20671:1 20672:1 20675:1 20681:1 20684:1 20691:1 20692:1 20696:1 20700:1 20701:2 20704:2 20706:2 20709:1 20719:1 20721:1 20722:1 20730:1 20737:2 20742:2 20743:1 20752:3 20755:1 20760:1 20779:1 20792:1 20793:1 20797:1 20832:1 20837:2 20860:2 20868:1 20920:3 20922:1 20959:1 20962:1 20970:1 20977:2 20987:1 20989:1 20993:2 21004:1 21008:1 21020:2 21021:1 21022:2 21036:1 21050:1 21052:2 21055:1 21075:1 21084:2 21085:2 21101:2 21112:1 21115:2 21124:2 21160:1 21179:1 21204:1 21205:1 21208:1 21209:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21250:1 21251:1 21260:1 21263:1 21269:2 21274:1 21294:1 21299:1 21321:3 21328:1 21332:1 21338:1 21346:2 21354:2 21360:1 21368:1 21397:1 21404:1 21405:3 21408:2 21410:1 21414:1 21426:1 21427:2 21429:2 21437:1 21452:1 21461:3 21481:2 21482:1 21493:1 21503:1 21521:1 21536:2 21568:1 21570:2 21572:1 21581:1 21598:2 21624:1 21646:1 21665:1 21669:1 21670:1 21690:1 21701:1 21712:1 21741:1 21747:1 21767:1 21776:1 21784:1 21800:1 21803:2 21809:1 21814:1 21822:2 21825:2 21845:2 21848:2 21849:8 21851:1 21870:1 21883:1 21901:3 21907:1 21910:1 21912:1 21921:1 21931:1 21942:1 21952:1 21960:1 21967:1 21970:1 21983:2 21986:1 21990:1 22008:1 22022:1 22026:1 22038:1 22043:1 22049:1 22050:2 22053:2 22055:1 22057:1 22068:1 22084:1 22099:1 22104:1 22109:1 22138:1 22141:1 22144:1 22179:3 22185:1 22190:2 22199:1 22214:1 22219:1 22243:1 22257:1 22266:1 22277:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22351:1 22353:5 22363:2 22375:1 22384:1 22395:2 22396:3 22415:1 22445:1 22451:2 22459:1 22468:1 22477:1 22486:2 22495:1 22508:1 22512:1 22530:3 22533:1 22542:1 22548:2 22554:1 22560:2 22577:1 22579:1 22600:2 22606:2 22609:1 22627:2 22628:2 22638:1 22662:2 22667:3 22679:1 22685:1 22695:1 22697:1 22705:1 22723:2 22732:2 22733:1 22743:1 22763:1 22770:1 22779:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:2 22853:2 22867:1 22886:1 22914:3 22916:1 22919:2 22924:1 22927:1 22928:4 22969:1 22974:1 22985:1 23003:2 23004:1 23006:1 23007:5 23013:1 23027:5 23029:1 23042:1 23049:1 23071:1 23077:1 23089:1 23113:1 23125:1 23133:2 23138:1 23161:6 23165:1 23171:1 23172:1 23176:1 23236:1 23237:1 23241:1 23247:2 23255:1 23264:1 23268:2 23297:2 23309:1 23311:4 23358:2 23359:1 23363:1 23365:1 23367:1 23372:1 23376:1 23382:1 23383:1 23384:1 23399:1 23409:1 23410:1 23413:1 23430:1 23433:1 23436:2 23448:1 23458:4 23467:1 23473:1 23477:1 23478:1 23503:1 23505:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:1 23561:3 23562:1 23581:1 23583:1 23613:1 23623:1 23627:1 23632:1 23667:1 23671:1 23688:1 23704:1 23717:1 23722:2 23733:3 23747:2 23774:2 23790:1 23814:4 23831:1 23834:6 23841:1 23856:1 23868:1 23897:1 23912:4 23913:1 23926:2 23927:3 23928:3 23935:1 23938:1 23940:3 23941:6 23949:1 23958:1 23977:1 23988:1 24002:1 24003:2 24008:1 24013:1 24021:1 24033:4 24047:1 24051:2 24058:1 24066:1 24068:2 24078:1 24080:1 24089:1 24122:1 24128:1 24157:1 24160:1 24192:2 24194:1 24197:2 24199:2 24205:2 24209:1 24212:2 24223:5 24235:1 24249:1 24264:4 24284:1 24292:1 24305:3 24360:1 24370:2 24373:1 24375:2 24379:4 24383:1 24388:1 24392:3 24401:1 24404:1 24405:1 24415:1 24421:1 24423:1 24424:1 24427:1 24431:1 24436:1 24441:3 24453:2 24471:1 24474:2 24489:1 24494:1 24507:1 24544:1 24547:1 24551:1 24553:1 24559:1 24560:1 24576:2 24623:2 24626:1 24631:1 24636:5 24652:1 24655:1 24658:1 24661:1 24662:3 24715:1 24719:1 24734:2 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24791:1 24803:1 24810:1 24835:1 24898:1 24904:9 24906:1 24914:1 24915:2 24918:2 24926:2 24937:1 24946:1 24956:1 24965:3 24992:1 24999:1 25024:1 25026:1 25032:1 25036:1 25044:1 25048:2 25051:4 25054:2 25074:1 25081:3 25099:1 25100:1 25114:1 25120:1 25142:1 25153:2 25157:1 25159:1 25175:1 25176:2 25185:1 25186:1 25187:1 25201:1 25206:1 25211:1 25225:2 25231:2 25237:1 25238:1 25249:1 25254:1 25263:1 25276:1 25277:1 25301:1 25339:1 25340:1 25365:1 25384:1 25393:2 25395:1 25401:1 25415:1 25439:1 25447:2 25451:2 25456:1 25462:4 25482:1 25483:2 25484:1 25503:1 25508:1 25512:1 25532:1 25539:1 25543:1 25568:1 25600:1 25617:1 25627:1 25631:5 25644:2 25652:1 25655:1 25659:2 25678:1 25680:1 25681:1 25704:2 25705:2 25729:1 25731:1 25736:1 25757:3 25762:1 25773:1 25777:1 25794:1 25828:1 25835:2 25845:1 25859:1 25871:1 25879:1 25893:2 25904:1 25905:1 25920:2 25922:2 25933:2 25935:3 25938:2 25943:3 25945:1 25952:1 25953:1 25957:2 25964:1 25974:1 25982:3 25986:1 26013:2 26024:4 26035:2 26041:1 26043:1 26050:1 26052:2 26068:1 26072:1 26084:1 26092:2 26093:2 26095:2 26129:1 26130:2 26138:1 26139:1 26156:1 26160:2 26172:1 26178:2 26188:1 26214:1 26220:1 26233:3 26244:1 26268:1 26276:1 26281:2 26284:2 26299:1 26307:3 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26387:1 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:2 26511:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:3 26648:1 26649:1 26667:1 26670:4 26689:1 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26741:1 26757:1 26797:1 26799:1 26805:1 26845:1 26846:1 26857:2 26858:2 26871:1 26888:2 26893:2 26900:1 26903:1 26906:1 26911:1 26915:2 26916:1 26918:3 26924:1 26955:3 26965:2 26969:1 26981:1 26984:2 26988:1 26991:2 26995:1 27002:1 27006:2 27007:2 27008:1 27015:2 27017:1 27023:3 27024:1 27025:2 27033:2 27039:1 27061:1 27067:1 27069:1 27089:1 27095:1 27115:5 27116:2 27164:1 27165:1 27200:1 27201:1 27203:1 27225:1 27233:1 27260:1 27261:4 27266:1 27267:2 27269:1 27293:1 27294:1 27302:1 27312:1 27318:1 27319:1 27350:1 27353:1 27355:1 27369:1 27384:1 27386:2 27390:2 27395:1 27400:1 27404:1 27410:1 27424:2 27425:1 27430:4 27438:1 27448:1 27451:1 27456:1 27464:1 27471:1 27473:1 27474:1 27480:1 27496:1 27527:1 27536:1 27540:1 27551:2 27554:2 27555:1 27557:1 27564:4 27571:1 27584:1 27613:2 27618:1 27635:1 27657:1 27658:1 27665:1 27668:1 27669:2 27704:1 27713:1 27727:1 27731:1 27739:1 27748:1 27754:1 27776:1 27808:1 27818:2 27820:1 27825:1 27831:1 27848:1 27857:1 27874:2 27877:2 27878:1 27880:2 27881:2 27891:1 27897:3 27905:1 27910:1 27914:1 27944:1 27948:1 27951:1 27952:1 27966:1 27968:1 27985:2 27999:1 28000:1 28001:1 28002:1 28003:2 28014:4 28032:1 28097:2 28098:1 28101:1 28109:1 28119:1 28130:2 28138:1 28139:2 28146:1 28176:2 28186:2 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28290:1 28302:1 28303:2 28311:1 28315:1 28318:1 28322:1 28330:1 28337:1 28358:1 28393:1 28427:1 28432:1 28435:2 28456:1 28462:2 28468:2 28481:1 28495:1 28496:1 28504:1 28522:2 28530:1 28532:1 28536:2 28542:1 28547:1 28555:2 28562:2 28577:1 28588:2 28589:2 28591:1 28596:2 28617:11 28622:1 28625:1 28629:1 28633:2 28640:1 28643:1 28662:7 28663:2 28668:1 28671:2 28672:1 28674:1 28684:3 28699:1 28714:1 28719:3 28725:1 28755:1 28759:1 28784:1 28806:3 28817:1 28827:2 28829:1 28835:2 28838:1 28854:1 28864:2 28868:1 28872:2 28889:1 28896:1 28903:1 28907:1 28911:1 28917:2 28938:1 28952:1 28964:1 28969:1 28977:1 28987:1 28990:1 28997:1 29019:1 29023:3 29025:1 29034:1 29043:1 29046:3 29049:1 29055:1 29074:1 29077:1 29090:1 29091:1 29098:1 29102:3 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29175:1 29177:1 29189:1 29190:1 29204:1 29205:1 29233:1 29251:1 29252:1 29265:1 29268:1 29286:1 29288:1 29293:1 29297:1 29322:1 29323:1 29324:2 29325:1 29333:1 29336:1 29343:1 29348:1 29366:1 29370:1 29376:2 29391:1 29396:1 29401:1 29453:1 29481:1 29482:1 29483:1 29519:2 29525:1 29556:1 29574:1 29581:1 29628:2 29633:1 29650:1 29695:4 29703:1 29706:1 29711:1 29717:1 29734:1 29738:5 29741:1 29743:1 29746:1 29753:1 29754:1 29760:1 29764:2 29773:1 29790:2 29795:1 29807:2 29818:1 29832:1 29840:1 29846:1 29848:2 29851:1 29854:3 29864:1 29868:1 29888:1 29889:1 29891:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:1 29970:1 29972:1 29974:1 29980:1 29996:1
17 12:1 14:2 24:1 25:1 32:1 35:1 41:1 50:1 57:2 65:1 78:1 100:1 110:1 148:1 157:7 167:1 171:2 174:1 180:1 190:1 212:1 213:1 214:1 226:1 241:2 253:1 258:4 282:2 284:2 307:1 318:1 319:1 324:1 330:2 377:1 380:2 381:1 393:1 399:1 452:1 462:1 464:2 470:1 476:1 477:1 486:1 542:1 555:1 591:3 597:1 599:1 602:1 607:1 618:1 648:1 657:1 660:4 671:1 677:2 726:1 747:1 762:1 765:1 771:1 779:1 788:1 796:3 811:5 817:1 867:2 869:1 873:1 904:1 906:1 908:2 912:6 913:3 915:1 917:2 919:1 921:4 924:2 925:3 926:1 931:1 935:1 936:2 940:1 942:2 945:2 960:1 966:4 967:2 968:1 972:2 975:1 991:1 1010:3 1034:1 1036:2 1039:1 1040:2 1052:1 1054:1 1055:1 1059:1 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:3 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:2 1163:1 1176:1 1186:1 1193:2 1197:2 1207:1 1238:1 1247:1 1252:1 1260:2 1262:1 1266:1 1270:1 1283:1 1291:1 1296:1 1297:1 1301:1 1317:1 1318:1 1321:1 1332:1 1334:1 1335:1 1351:1 1362:1 1365:1 1382:1 1385:1 1387:1 1393:1 1413:1 1414:1 1425:1 1460:1 1463:1 1481:1 1485:1 1486:2 1513:1 1516:1 1518:1 1521:1 1528:1 1536:2 1540:1 1543:1 1567:2 1571:1 1588:4 1600:1 1601:1 1603:1 1611:1 1614:1 1615:1 1619:1 1634:2 1645:1 1663:1 1677:1 1682:2 1687:1 1691:3 1708:1 1715:1 1716:1 1719:1 1727:2 1736:1 1741:1 1746:1 1750:1 1754:1 1759:1 1760:1 1761:1 1764:1 1788:2 1795:1 1797:1 1803:1 1804:1 1812:3 1813:1 1824:1 1826:1 1827:1 1828:1 1839:1 1849:1 1856:1 1858:1 1863:2 1864:2 1865:1 1874:1 1877:1 1892:1 1902:1 1913:1 1921:3 1927:2 1933:2 1935:1 1936:1 1939:1 1963:1 1979:1 1981:1 1994:1 2000:1 2011:2 2013:1 2024:1 2025:2 2036:1 2041:1 2057:1 2058:1 2086:2 2128:1 2131:2 2154:2 2161:1 2170:1 2181:1 2204:1 2249:1 2293:2 2330:1 2339:1 2360:1 2365:1 2366:1 2386:1 2404:1 2406:2 2412:1 2421:1 2428:4 2435:2 2436:1 2438:1 2448:5 2452:1 2455:2 2457:2 2459:3 2461:1 2465:1 2470:1 2473:6 2483:1 2497:2 2518:2 2532:1 2534:1 2535:1 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:1 2631:5 2636:2 2655:2 2666:1 2671:1 2679:1 2680:2 2685:1 2686:1 2692:1 2700:1 2701:1 2702:1 2705:1 2706:3 2709:1 2713:1 2718:1 2728:2 2744:1 2753:1 2758:1 2760:2 2784:1 2819:2 2824:1 2831:1 2833:1 2858:1 2871:1 2881:1 2883:1 2890:1 2892:1 2906:1 2908:1 2911:3 2921:1 2978:1 2983:1 2986:1 2989:2 2990:2 2997:1 3001:1 3007:1 3017:1 3020:1 3022:1 3043:1 3045:1 3052:1 3062:4 3070:4 3080:5 3100:1 3116:1 3119:1 3120:2 3131:2 3134:1 3150:1 3160:1 3165:1 3166:1 3183:2 3190:3 3194:2 3197:2 3203:1 3219:2 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3316:1 3328:1 3331:1 3337:1 3338:2 3362:1 3369:1 3370:1 3422:1 3433:3 3502:1 3525:1 3544:2 3586:1 3624:1 3627:2 3632:1 3635:1 3653:1 3654:3 3674:1 3676:1 3677:1 3696:1 3724:2 3725:1 3729:1 3740:3 3746:1 3748:1 3749:1 3751:5 3762:1 3767:1 3774:1 3781:1 3790:2 3802:1 3820:1 3833:1 3858:1 3863:1 3869:3 3872:1 3883:2 3886:1 3894:2 3914:2 3924:1 3927:1 3953:1 3955:1 3956:1 3963:1 3984:3 3986:1 3990:1 3991:1 4005:2 4013:1 4039:1 4057:2 4058:1 4062:3 4080:1 4092:2 4100:1 4114:1 4118:3 4122:1 4127:1 4137:1 4141:2 4150:2 4170:1 4171:1 4179:1 4180:1 4189:1 4191:1 4233:1 4238:1 4262:2 4268:1 4283:1 4284:1 4288:1 4289:1 4296:1 4306:1 4307:1 4310:1 4318:1 4324:1 4334:1 4338:2 4348:1 4358:2 4359:1 4366:1 4374:2 4413:1 4435:1 4437:1 4440:1 4458:1 4465:1 4467:2 4468:1 4471:1 4472:1 4473:1 4484:1 4522:2 4526:3 4564:1 4568:1 4575:4 4578:1 4579:1 4588:1 4589:2 4597:1 4601:4 4614:1 4627:1 4628:1 4631:1 4646:1 4650:1 4655:1 4656:1 4667:2 4669:1 4701:1 4707:1 4708:2 4718:1 4729:1 4744:1 4769:1 4780:1 4782:1 4783:1 4789:2 4790:1 4794:1 4799:1 4801:5 4810:3 4822:1 4827:1 4831:1 4842:1 4867:2 4882:4 4899:1 4901:2 4914:1 4926:1 4933:1 4952:1 4953:2 4959:5 4967:1 4968:1 4978:1 4984:1 4987:1 4992:3 4997:1 4999:4 5012:1 5017:1 5021:1 5029:2 5031:2 5055:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5116:1 5117:1 5118:1 5119:1 5124:1 5129:1 5130:2 5132:1 5136:2 5138:1 5145:2 5149:2 5154:1 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5224:1 5264:1 5276:1 5280:1 5284:1 5313:2 5318:1 5321:1 5344:2 5354:3 5361:1 5366:1 5375:2 5377:1 5401:1 5404:1 5416:2 5420:1 5440:1 5450:1 5458:2 5483:1 5486:1 5495:1 5497:1 5511:2 5513:1 5529:1 5533:1 5541:2 5556:1 5601:1 5606:2 5618:1 5619:2 5625:1 5630:1 5636:1 5651:1 5674:1 5682:1 5723:2 5726:1 5728:1 5731:1 5740:1 5741:3 5749:1 5772:2 5784:1 5798:6 5809:1 5814:1 5844:1 5855:1 5856:1 5865:1 5874:1 5877:1 5885:1 5893:2 5900:1 5904:1 5911:1 5924:1 5927:2 5929:1 5935:1 5951:1 5959:2 5962:1 5970:1 5971:1 5989:1 5999:1 6005:1 6007:1 6011:1 6018:2 6022:2 6026:2 6027:9 6036:2 6055:2 6061:1 6065:1 6082:1 6107:3 6131:1 6134:2 6162:2 6168:1 6169:4 6170:1 6184:2 6185:1 6188:1 6190:1 6202:3 6221:2 6239:1 6245:1 6247:1 6264:2 6265:3 6268:1 6288:2 6293:1 6298:1 6301:1 6303:1 6306:1 6309:1 6318:4 6320:1 6343:1 6367:2 6377:1 6382:2 6383:2 6389:2 6391:1 6393:1 6400:1 6424:2 6450:1 6456:1 6462:1 6465:1 6467:1 6469:1 6482:4 6497:1 6499:1 6505:1 6517:1 6541:9 6552:1 6555:1 6568:1 6570:1 6580:3 6584:2 6586:1 6589:1 6590:1 6596:1 6600:3 6601:2 6602:1 6616:1 6625:1 6632:1 6636:1 6644:1 6646:1 6647:1 6655:1 6657:1 6664:2 6670:1 6682:1 6688:1 6750:2 6753:1 6761:1 6764:1 6782:1 6790:1 6795:2 6809:1 6818:1 6821:1 6826:2 6837:1 6866:2 6868:4 6870:1 6881:1 6898:1 6903:1 6912:1 6913:1 6922:1 6923:1 6964:1 6970:1 6980:1 6998:3 7022:1 7032:1 7049:1 7054:1 7069:3 7072:2 7073:1 7084:1 7096:1 7098:1 7103:1 7104:1 7108:2 7113:3 7121:1 7128:1 7135:1 7159:1 7186:1 7196:2 7200:1 7231:1 7237:2 7248:2 7251:1 7253:1 7270:4 7290:2 7295:1 7316:1 7318:1 7323:1 7327:1 7331:1 7337:1 7341:1 7369:1 7372:2 7375:2 7397:1 7401:1 7410:1 7415:3 7433:1 7434:1 7444:1 7446:1 7449:1 7463:2 7486:1 7493:1 7504:3 7509:1 7529:2 7532:1 7548:1 7551:1 7554:1 7575:1 7578:1 7585:1 7602:2 7607:2 7613:1 7621:1 7623:1 7650:2 7664:4 7669:1 7670:1 7684:1 7696:1 7700:2 7705:1 7706:1 7719:1 7721:1 7730:2 7737:1 7747:1 7755:2 7762:1 7763:3 7764:1 7781:1 7788:3 7791:2 7792:7 7793:3 7794:1 7796:1 7797:2 7801:6 7802:1 7803:1 7810:2 7811:3 7813:1 7814:4 7816:2 7828:1 7849:2 7857:3 7864:1 7871:1 7888:1 7900:1 7928:1 7943:1 7944:1 7949:1 7954:1 7960:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8043:1 8058:18 8065:1 8074:1 8082:4 8083:2 8091:2 8110:1 8115:2 8127:1 8134:2 8146:1 8151:4 8157:1 8168:1 8199:1 8215:1 8233:4 8252:1 8266:1 8285:1 8288:1 8292:2 8320:1 8329:3 8336:1 8338:1 8340:1 8346:1 8354:1 8374:1 8407:2 8428:1 8441:1 8468:5 8471:1 8480:1 8482:2 8496:1 8501:6 8505:1 8508:1 8512:1 8513:1 8519:1 8525:1 8539:1 8544:1 8554:1 8556:1 8560:1 8565:2 8571:1 8585:1 8590:1 8591:6 8624:1 8629:2 8641:2 8658:1 8662:1 8664:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8744:2 8749:3 8754:1 8756:1 8760:1 8765:1 8771:1 8776:2 8783:1 8790:2 8799:1 8804:1 8805:1 8806:1 8824:1 8827:1 8830:1 8835:1 8845:2 8849:1 8864:1 8866:1 8870:1 8872:2 8877:1 8885:1 8900:5 8906:1 8908:2 8955:1 8957:1 8958:2 8962:2 8964:4 8965:1 8969:1 8972:1 8980:1 8986:1 8993:2 8998:1 9008:1 9009:1 9035:1 9045:1 9051:1 9078:2 9089:1 9092:1 9098:2 9118:1 9119:1 9122:1 9158:2 9164:7 9177:1 9181:1 9189:1 9209:1 9213:1 9241:1 9256:2 9268:1 9269:1 9276:1 9288:1 9303:1 9311:1 9316:1 9322:1 9324:1 9336:1 9342:1 9374:1 9395:5 9396:2 9411:2 9423:1 9434:1 9450:1 9452:1 9457:1 9467:1 9477:1 9482:1 9488:1 9502:1 9507:3 9508:1 9527:1 9538:1 9539:1 9571:2 9586:1 9605:1 9610:1 9615:1 9626:1 9628:3 9651:1 9666:1 9667:2 9687:4 9689:1 9694:1 9699:1 9703:1 9706:1 9711:2 9725:1 9726:1 9737:1 9742:1 9754:1 9762:1 9766:1 9780:3 9785:1 9790:1 9805:1 9809:1 9812:1 9813:2 9816:1 9830:1 9834:1 9852:1 9862:1 9865:1 9876:1 9883:2 9896:1 9902:1 9914:1 9928:1 9935:1 9939:1 9942:1 9951:2 9954:2 9956:1 9963:1 9979:1 9981:1 9987:2 10005:3 10011:1 10032:2 10037:2 10042:1 10047:1 10055:1 10061:4 10062:1 10064:3 10071:1 10073:1 10074:1 10088:1 10089:1 10099:1 10104:1 10110:1 10117:1 10123:1 10124:1 10126:3 10135:3 10137:1 10151:1 10156:1 10176:2 10177:1 10182:1 10188:1 10204:6 10208:1 10221:1 10223:2 10233:1 10255:3 10256:1 10267:1 10301:1 10319:1 10328:1 10330:1 10339:1 10346:1 10347:1 10359:1 10372:1 10380:1 10381:1 10394:1 10399:1 10422:1 10425:1 10430:2 10468:1 10472:1 10474:1 10482:2 10487:1 10492:2 10498:4 10500:1 10502:2 10503:2 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10549:1 10550:1 10554:1 10556:2 10557:1 10560:3 10561:1 10572:4 10580:1 10593:1 10594:3 10597:5 10617:1 10620:1 10629:2 10647:1 10650:1 10681:1 10689:2 10696:1 10706:1 10738:1 10746:1 10757:1 10761:3 10772:3 10775:2 10777:1 10787:1 10795:2 10798:1 10801:1 10806:1 10820:1 10828:1 10844:2 10854:1 10857:1 10863:1 10864:1 10876:1 10897:1 10899:1 10906:1 10914:1 10916:2 10918:1 10920:1 10925:1 10926:1 10946:1 10950:1 10964:5 10966:1 10967:1 10969:1 10973:3 10979:1 10982:1 10984:1 10988:1 10995:1 10996:2 10997:1 11005:1 11010:1 11011:1 11021:1 11026:1 11027:3 11035:1 11041:1 11050:2 11062:1 11089:1 11096:1 11097:2 11106:1 11114:2 11131:1 11172:1 11173:1 11183:1 11187:1 11190:2 11216:1 11227:1 11228:1 11233:1 11249:2 11258:6 11263:1 11267:2 11269:1 11282:1 11286:2 11304:1 11313:1 11326:2 11354:1 11359:1 11371:1 11373:1 11379:2 11407:1 11413:1 11427:1 11442:1 11449:1 11457:1 11470:1 11472:1 11485:4 11486:3 11495:1 11499:2 11504:1 11505:2 11514:1 11521:1 11522:2 11534:1 11536:5 11560:1 11563:1 11566:1 11567:4 11576:1 11583:1 11585:3 11600:1 11618:1 11622:1 11632:1 11637:1 11642:2 11660:2 11687:1 11721:3 11728:1 11732:1 11738:1 11740:1 11747:1 11755:1 11765:2 11770:3 11771:2 11802:1 11805:2 11808:1 11811:1 11830:1 11836:1 11846:1 11854:1 11856:1 11860:1 11882:1 11884:3 11888:1 11895:2 11899:1 11913:1 11922:1 11926:3 11927:1 11932:1 11936:2 11943:1 11947:2 11959:4 11971:1 11996:1 12001:1 12008:1 12010:1 12024:1 12026:1 12066:1 12073:1 12074:1 12078:1 12080:1 12124:1 12127:2 12145:1 12157:5 12169:1 12179:1 12189:1 12193:1 12215:2 12221:1 12225:1 12231:1 12236:1 12247:1 12250:2 12253:1 12265:1 12277:1 12282:1 12283:3 12290:1 12292:1 12298:2 12299:1 12305:1 12342:1 12347:1 12351:1 12362:1 12364:1 12376:1 12380:2 12395:1 12411:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12476:3 12479:1 12480:1 12482:1 12486:3 12490:1 12491:5 12492:1 12494:1 12501:2 12503:2 12506:1 12538:1 12541:2 12550:1 12556:1 12564:1 12583:1 12584:2 12585:1 12587:2 12591:1 12594:2 12596:1 12614:2 12620:1 12625:2 12626:1 12629:1 12631:2 12655:1 12666:1 12670:1 12678:1 12681:1 12683:1 12696:1 12698:2 12699:1 12700:3 12705:2 12712:3 12715:1 12729:1 12730:1 12743:1 12749:1 12776:1 12803:2 12806:1 12823:1 12829:1 12831:2 12838:1 12841:1 12842:1 12844:1 12850:1 12861:1 12871:1 12873:1 12883:1 12893:1 12896:2 12897:1 12901:1 12913:1 12927:1 12967:1 12972:1 13007:1 13009:1 13012:1 13013:2 13022:2 13033:1 13034:1 13068:1 13075:1 13095:2 13116:2 13117:1 13125:1 13129:1 13133:1 13150:2 13160:1 13162:1 13168:1 13182:2 13184:1 13212:1 13233:5 13252:1 13254:2 13256:1 13260:1 13263:2 13318:5 13341:1 13355:2 13358:1 13366:6 13383:1 13386:2 13413:3 13417:1 13422:1 13425:1 13452:1 13513:1 13518:1 13554:1 13562:1 13620:1 13637:1 13657:1 13665:1 13682:2 13686:2 13721:1 13723:5 13729:2 13732:1 13733:3 13735:1 13748:1 13763:3 13772:1 13773:3 13797:1 13806:1 13808:1 13811:1 13849:1 13853:1 13867:1 13887:1 13891:1 13903:1 13915:1 13919:1 13949:5 13956:1 13957:1 13960:2 13961:1 13983:1 14007:1 14010:1 14011:1 14067:2 14078:1 14085:1 14093:1 14102:2 14106:3 14115:1 14121:3 14127:2 14131:1 14148:1 14165:1 14177:1 14178:8 14196:1 14200:1 14211:1 14214:1 14223:2 14224:1 14227:1 14232:1 14244:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14293:1 14299:2 14306:1 14329:1 14349:2 14350:1 14353:1 14383:4 14405:2 14429:1 14455:1 14470:1 14503:1 14523:1 14529:2 14533:1 14577:1 14584:1 14593:1 14598:2 14621:1 14639:1 14651:1 14668:1 14670:1 14674:1 14686:1 14694:1 14695:1 14700:1 14708:1 14715:1 14724:1 14727:3 14736:1 14737:1 14739:1 14750:1 14776:1 14779:1 14781:1 14785:1 14789:1 14790:1 14792:1 14796:1 14799:1 14810:1 14831:1 14832:1 14853:1 14866:1 14871:2 14885:2 14888:1 14899:1 14903:1 14904:1 14906:1 14909:1 14911:5 14913:1 14921:1 14926:1 14928:1 14930:1 14931:1 14934:1 14944:4 14945:2 14947:1 14951:1 14975:2 14993:1 14998:1 15007:1 15015:1 15021:2 15022:1 15037:1 15038:2 15049:1 15056:1 15057:1 15058:5 15068:2 15076:1 15079:1 15104:2 15110:2 15116:2 15123:1 15125:1 15129:1 15149:1 15164:1 15171:1 15176:1 15231:1 15253:1 15257:2 15258:4 15264:1 15272:1 15297:1 15305:1 15310:1 15311:1 15317:1 15319:3 15322:1 15335:1 15348:9 15355:2 15357:1 15364:1 15365:1 15366:1 15367:1 15370:4 15371:38 15381:1 15385:1 15388:2 15401:1 15425:1 15432:3 15438:2 15441:2 15476:1 15484:1 15492:1 15496:1 15519:3 15537:1 15540:1 15551:3 15561:1 15567:2 15572:1 15576:3 15580:1 15581:1 15588:1 15589:1 15617:1 15620:3 15622:1 15631:1 15662:1 15674:1 15676:2 15690:1 15700:1 15709:1 15719:3 15746:2 15759:2 15760:1 15778:2 15780:1 15785:1 15793:1 15798:1 15806:1 15828:1 15843:2 15844:1 15853:1 15857:1 15863:1 15866:9 15879:1 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15920:2 15921:1 15938:1 15958:3 15993:1 16011:1 16014:1 16021:1 16041:1 16044:1 16056:1 16063:1 16098:2 16099:1 16102:2 16103:1 16110:2 16167:1 16168:1 16177:1 16179:1 16195:2 16202:1 16204:2 16218:1 16224:1 16225:1 16240:2 16247:1 16249:2 16250:1 16268:1 16273:1 16278:1 16280:1 16284:1 16302:1 16318:1 16342:1 16345:5 16346:1 16347:1 16348:1 16350:1 16352:1 16385:1 16400:2 16416:1 16417:1 16426:2 16446:1 16449:1 16456:1 16458:1 16460:2 16462:1 16481:1 16485:1 16488:1 16490:1 16500:12 16503:1 16540:1 16553:5 16567:2 16569:1 16572:3 16586:2 16589:1 16614:1 16620:1 16623:3 16662:1 16677:1 16681:1 16682:1 16704:1 16717:1 16718:3 16725:1 16729:2 16735:1 16738:1 16763:1 16793:2 16795:1 16814:1 16823:1 16827:2 16836:1 16840:1 16879:1 16884:1 16895:1 16904:1 16923:1 16926:1 16944:1 16945:1 16983:2 16986:1 16998:1 17018:1 17022:1 17024:2 17027:1 17029:1 17032:1 17043:1 17050:1 17061:1 17078:2 17083:1 17086:1 17095:1 17103:1 17110:3 17114:2 17116:1 17124:1 17126:2 17128:1 17135:1 17139:1 17144:1 17150:1 17166:1 17179:2 17180:1 17185:1 17191:3 17200:1 17203:2 17206:1 17208:2 17209:1 17225:1 17230:1 17253:1 17264:2 17266:1 17272:1 17273:2 17276:1 17278:3 17280:1 17297:2 17319:1 17326:2 17334:2 17346:2 17360:1 17365:1 17388:2 17411:1 17439:2 17447:1 17459:1 17467:1 17474:1 17516:1 17533:1 17535:1 17547:1 17548:1 17551:1 17559:1 17561:2 17576:1 17579:1 17583:1 17585:1 17634:1 17662:2 17676:1 17699:1 17711:1 17715:1 17724:1 17726:1 17727:1 17728:2 17743:2 17756:2 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:2 17820:1 17854:1 17859:1 17874:4 17892:1 17906:2 17918:1 17923:1 17931:1 17932:1 17940:1 17946:3 17952:3 17974:1 17990:1 18043:2 18044:1 18052:1 18065:1 18069:1 18082:1 18085:2 18115:1 18116:1 18121:1 18131:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:2 18246:1 18254:1 18280:1 18288:1 18289:2 18299:1 18301:1 18332:1 18335:1 18338:1 18368:2 18370:1 18372:1 18374:1 18382:1 18388:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:8 18465:1 18466:1 18475:2 18492:2 18523:1 18535:1 18550:1 18563:1 18569:1 18598:1 18600:1 18610:1 18611:2 18621:1 18657:1 18659:1 18681:2 18731:1 18748:1 18756:2 18757:1 18759:1 18769:1 18793:1 18802:1 18811:1 18817:1 18830:1 18841:1 18858:1 18860:1 18863:2 18864:3 18874:1 18891:1 18895:1 18901:1 18903:1 18905:1 18933:1 18947:1 18948:1 18951:1 18965:1 18974:1 18976:1 18986:1 18996:1 18999:1 19001:1 19025:1 19039:2 19056:1 19062:1 19067:1 19081:1 19085:4 19093:2 19107:2 19112:1 19118:1 19145:1 19146:1 19163:1 19197:1 19203:2 19210:1 19214:1 19221:1 19239:1 19242:3 19260:1 19262:3011 19265:1 19288:1 19316:1 19320:1 19325:2 19362:1 19392:2 19398:1 19401:1 19403:1 19423:2 19429:2 19434:1 19474:1 19476:1 19479:2 19486:1 19512:1 19515:2 19519:1 19541:2 19547:1 19578:1 19586:1 19594:2 19597:1 19620:1 19622:1 19627:1 19650:2 19663:3 19670:2 19686:1 19697:1 19707:1 19739:1 19754:1 19758:2 19771:1 19775:1 19776:4 19781:1 19810:1 19812:1 19829:1 19832:1 19861:1 19869:3 19874:1 19903:1 19908:3 19914:1 19920:3 19924:1 19948:1 19957:1 19975:2 20004:1 20006:6 20035:2 20086:1 20093:1 20101:1 20125:1 20131:4 20144:1 20146:2 20150:1 20153:1 20167:1 20187:1 20202:1 20205:1 20208:3 20218:2 20219:2 20223:2 20224:1 20225:1 20226:1 20244:1 20252:1 20259:2 20269:1 20273:1 20279:1 20301:1 20302:1 20333:1 20370:2 20374:1 20376:1 20382:1 20397:1 20400:1 20405:1 20410:1 20437:1 20438:1 20452:1 20477:1 20507:1 20518:1 20524:1 20547:1 20548:1 20550:2 20575:1 20601:1 20606:1 20609:1 20615:2 20618:1 20620:1 20630:1 20634:1 20642:1 20659:2 20664:1 20666:3 20671:1 20672:1 20675:1 20681:1 20684:1 20691:1 20692:1 20696:1 20700:1 20701:2 20704:2 20706:2 20709:1 20719:1 20721:1 20722:1 20730:1 20737:3 20742:2 20743:1 20752:3 20755:1 20760:1 20779:1 20792:1 20793:1 20797:1 20832:1 20837:2 20860:2 20868:1 20920:3 20922:1 20941:1 20959:1 20962:1 20970:1 20977:2 20987:1 20989:1 20993:2 21001:1 21004:1 21008:1 21020:2 21021:1 21022:2 21036:1 21050:1 21052:2 21055:1 21075:1 21084:2 21085:2 21101:2 21112:1 21115:2 21124:2 21160:1 21179:1 21204:1 21205:1 21208:1 21209:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21250:1 21251:1 21260:1 21263:1 21269:2 21274:1 21294:1 21299:1 21321:3 21328:1 21332:1 21338:1 21346:2 21354:2 21360:1 21368:1 21397:1 21404:1 21405:3 21408:2 21410:1 21414:1 21426:1 21427:2 21429:2 21437:1 21444:1 21452:1 21461:3 21481:2 21482:1 21493:1 21503:1 21521:1 21536:2 21568:1 21570:2 21572:1 21581:1 21598:2 21624:1 21646:1 21665:1 21669:1 21670:1 21690:1 21701:1 21712:1 21741:1 21747:1 21767:1 21776:1 21784:1 21800:1 21803:2 21809:1 21814:1 21822:2 21825:2 21845:2 21848:2 21849:8 21851:1 21870:1 21883:1 21901:3 21907:1 21910:1 21912:1 21921:1 21931:1 21942:1 21952:1 21960:1 21967:1 21970:1 21983:2 21986:1 21990:1 22008:1 22022:1 22026:1 22038:1 22043:1 22049:1 22050:2 22053:2 22055:1 22057:1 22068:1 22084:1 22099:1 22104:1 22109:1 22138:1 22141:1 22144:1 22179:3 22185:1 22190:2 22199:1 22214:1 22219:1 22243:1 22257:1 22266:1 22277:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22351:1 22353:5 22363:2 22375:1 22384:1 22395:2 22396:3 22415:1 22445:1 22451:2 22459:1 22468:1 22477:1 22486:2 22495:1 22496:1 22508:1 22512:1 22530:3 22533:1 22542:1 22548:2 22554:1 22560:2 22577:1 22579:2 22600:2 22606:2 22609:1 22627:2 22628:2 22638:1 22653:1 22662:2 22667:3 22679:1 22685:1 22695:1 22697:1 22705:1 22723:2 22732:2 22733:1 22743:1 22763:1 22770:1 22779:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:2 22853:2 22867:1 22878:1 22886:1 22914:3 22916:1 22919:2 22924:1 22927:1 22928:4 22969:1 22974:1 22985:1 23003:2 23004:2 23006:1 23007:5 23013:1 23027:5 23029:1 23042:1 23049:1 23071:1 23077:1 23089:1 23113:1 23125:1 23133:2 23138:1 23161:6 23165:1 23171:1 23172:1 23176:1 23178:1 23179:1 23236:1 23237:1 23241:1 23247:2 23255:1 23260:1 23264:1 23268:2 23297:2 23309:1 23311:4 23358:2 23359:1 23363:1 23365:1 23367:1 23372:1 23376:1 23382:1 23383:1 23384:1 23399:1 23409:1 23410:1 23413:1 23430:2 23433:1 23436:2 23448:1 23458:4 23467:1 23473:1 23477:1 23478:1 23503:1 23505:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:1 23561:3 23562:1 23581:1 23583:1 23613:1 23623:1 23627:1 23632:1 23667:1 23671:1 23688:1 23704:1 23717:1 23722:2 23733:3 23747:2 23774:2 23790:1 23814:4 23831:1 23834:6 23841:1 23856:1 23868:1 23897:1 23912:4 23913:1 23926:2 23927:3 23928:3 23935:1 23938:1 23940:3 23941:6 23949:1 23958:1 23977:1 23988:1 24002:1 24003:2 24008:1 24013:1 24021:1 24033:4 24047:1 24051:2 24058:1 24066:1 24068:2 24078:1 24080:1 24089:1 24122:1 24128:1 24157:1 24160:1 24177:1 24192:2 24194:1 24197:2 24199:2 24205:2 24209:1 24212:2 24223:5 24235:1 24249:1 24264:5 24284:1 24292:1 24305:3 24324:1 24360:1 24370:2 24373:1 24375:2 24379:4 24383:1 24388:1 24392:3 24401:1 24404:1 24405:1 24412:1 24415:1 24421:1 24423:1 24424:1 24427:1 24431:1 24436:1 24441:3 24453:2 24471:1 24474:2 24489:1 24494:1 24507:1 24544:1 24547:1 24551:1 24553:1 24559:1 24560:1 24576:2 24623:2 24626:1 24631:1 24636:5 24652:1 24655:1 24658:1 24661:1 24662:3 24715:1 24719:1 24734:2 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24791:1 24803:1 24810:1 24835:1 24861:1 24898:1 24904:9 24906:1 24914:1 24915:2 24918:2 24926:2 24937:1 24946:1 24956:1 24965:3 24992:1 24999:1 25024:1 25026:1 25032:1 25036:1 25044:1 25048:2 25051:4 25054:2 25074:1 25081:3 25099:1 25100:1 25114:1 25120:1 25142:1 25153:2 25157:1 25159:1 25175:1 25176:2 25185:1 25186:1 25187:1 25201:1 25206:1 25211:1 25225:2 25231:2 25237:1 25238:1 25249:1 25254:1 25263:1 25276:1 25277:1 25301:1 25329:1 25339:1 25340:1 25365:1 25384:1 25393:2 25395:1 25401:1 25404:1 25415:1 25439:1 25447:2 25451:2 25456:1 25462:4 25482:1 25483:2 25484:1 25503:1 25508:1 25512:1 25532:1 25539:1 25543:1 25568:1 25600:1 25617:1 25627:1 25631:5 25644:2 25652:2 25655:1 25659:2 25678:1 25680:1 25681:1 25704:2 25705:2 25729:1 25731:1 25736:2 25757:3 25762:1 25773:1 25777:1 25790:1 25794:1 25828:1 25835:2 25845:1 25859:1 25871:1 25879:1 25893:2 25904:1 25905:1 25920:2 25922:3 25933:2 25935:3 25938:2 25943:3 25945:1 25952:1 25953:1 25957:2 25964:1 25974:1 25982:3 25986:1 26013:2 26024:4 26035:2 26041:1 26043:1 26050:1 26052:2 26068:1 26072:1 26084:1 26092:2 26093:2 26095:2 26129:1 26130:2 26138:1 26139:1 26156:1 26160:2 26172:1 26178:2 26188:1 26214:1 26220:1 26233:3 26244:1 26268:1 26276:1 26281:3 26284:2 26299:1 26307:3 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26387:1 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:2 26511:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:3 26648:1 26649:1 26667:1 26670:4 26689:1 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26741:1 26757:1 26797:1 26799:1 26805:1 26845:1 26846:1 26857:2 26858:2 26871:1 26888:2 26893:2 26900:1 26903:1 26906:1 26911:1 26915:2 26916:1 26918:4 26924:1 26955:3 26965:2 26969:1 26981:1 26984:2 26988:1 26991:2 26995:1 27002:1 27006:2 27007:2 27008:1 27015:2 27017:1 27023:3 27024:1 27025:2 27033:2 27039:1 27061:1 27067:1 27069:1 27070:1 27089:1 27095:1 27115:5 27116:2 27164:1 27165:1 27200:1 27201:1 27203:1 27219:1 27225:1 27233:1 27260:1 27261:4 27266:1 27267:2 27269:1 27293:1 27294:1 27302:1 27312:1 27318:1 27319:1 27350:1 27353:1 27355:1 27369:1 27384:1 27386:2 27390:2 27395:1 27400:1 27404:1 27410:1 27424:2 27425:1 27430:4 27438:1 27448:1 27451:1 27456:1 27464:1 27471:1 27473:1 27474:1 27480:1 27496:1 27527:1 27536:1 27540:1 27551:2 27554:2 27555:1 27557:1 27564:4 27571:1 27584:1 27613:2 27618:1 27635:1 27651:1 27657:1 27658:1 27665:1 27668:1 27669:2 27704:1 27713:1 27727:1 27731:1 27739:1 27748:1 27754:1 27776:1 27808:1 27818:2 27820:1 27825:1 27831:1 27848:1 27857:1 27874:3 27877:2 27878:1 27880:2 27881:2 27891:1 27897:3 27905:1 27910:1 27914:1 27944:1 27948:1 27951:1 27952:1 27966:1 27968:1 27985:2 27999:1 28000:1 28001:1 28002:1 28003:2 28014:4 28032:1 28097:2 28098:1 28101:1 28109:1 28119:1 28130:2 28138:1 28139:2 28146:1 28155:1 28176:2 28186:2 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28290:1 28302:1 28303:2 28311:1 28315:1 28318:1 28322:1 28330:1 28337:1 28358:1 28378:1 28393:1 28427:1 28432:1 28435:2 28456:1 28462:2 28468:2 28481:1 28495:1 28496:1 28504:1 28522:2 28530:1 28532:1 28536:2 28542:1 28547:1 28555:2 28556:1 28562:2 28577:1 28588:2 28589:2 28591:1 28596:2 28617:12 28622:1 28625:1 28629:1 28633:2 28640:1 28643:1 28662:7 28663:2 28668:1 28671:2 28672:1 28674:1 28684:3 28699:1 28714:1 28719:3 28725:1 28755:1 28759:1 28784:1 28806:3 28817:1 28827:2 28829:1 28835:2 28838:1 28854:1 28864:2 28868:1 28872:2 28889:1 28896:1 28903:1 28907:1 28911:1 28917:2 28938:1 28952:1 28964:1 28969:1 28977:1 28987:1 28990:1 28997:1 29002:1 29019:1 29023:3 29025:1 29034:1 29043:1 29046:3 29049:1 29055:1 29074:1 29077:1 29090:1 29091:1 29098:1 29102:3 29112:1 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29175:1 29177:1 29189:1 29190:1 29196:1 29204:1 29205:1 29233:1 29251:1 29252:1 29265:1 29268:1 29286:1 29288:1 29293:1 29297:1 29322:1 29323:1 29324:2 29325:1 29333:1 29336:1 29343:1 29348:1 29366:1 29370:1 29376:2 29391:1 29396:1 29401:1 29453:1 29481:1 29482:1 29483:1 29519:2 29525:1 29556:1 29574:1 29581:1 29628:2 29633:1 29650:1 29695:4 29703:1 29706:1 29711:1 29717:1 29734:1 29738:5 29741:1 29743:1 29746:1 29753:1 29754:1 29760:1 29764:2 29773:1 29790:2 29795:1 29797:1 29807:2 29818:1 29832:1 29840:1 29846:1 29848:2 29849:1 29851:1 29854:4 29864:1 29868:1 29888:1 29889:1 29891:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:2 29970:1 29972:1 29974:1 29980:1 29996:1
17 12:1 14:2 24:1 25:1 32:1 35:1 41:1 50:1 57:2 65:1 78:1 100:1 110:1 148:1 157:7 167:1 171:2 174:1 180:1 190:1 212:1 213:1 214:1 226:1 241:2 253:1 258:4 282:2 284:2 307:1 318:1 319:1 324:1 330:3 377:1 380:2 381:1 393:1 399:1 452:1 462:1 464:2 470:1 476:1 477:1 486:1 542:1 555:1 591:3 597:1 599:1 602:1 607:1 618:1 648:1 657:1 660:4 671:1 677:2 726:1 747:1 762:1 765:1 771:1 779:1 788:1 796:3 811:6 817:1 867:2 869:1 873:1 904:1 906:1 908:2 912:6 913:3 915:1 917:2 919:1 921:5 924:2 925:3 926:1 931:1 935:1 936:2 940:1 942:2 945:2 960:1 966:4 967:2 968:1 972:2 975:1 991:1 1010:3 1034:1 1036:2 1039:1 1040:2 1052:1 1054:1 1055:1 1059:1 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:3 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:2 1163:1 1176:1 1186:1 1193:2 1197:2 1207:1 1238:1 1247:1 1252:1 1260:2 1262:1 1266:1 1270:1 1283:1 1291:1 1296:1 1297:1 1301:1 1317:1 1318:1 1321:1 1332:1 1334:1 1335:1 1351:1 1362:1 1365:1 1382:1 1385:1 1387:2 1393:1 1413:1 1414:1 1415:1 1425:1 1460:1 1463:1 1481:1 1485:1 1486:2 1498:1 1513:1 1516:1 1518:1 1521:1 1528:1 1536:2 1540:1 1543:1 1567:2 1571:1 1588:4 1600:1 1601:1 1603:1 1611:1 1614:1 1615:1 1619:1 1634:2 1645:1 1663:1 1677:1 1682:2 1687:1 1691:3 1708:1 1715:1 1716:1 1719:1 1727:2 1736:1 1741:1 1746:1 1750:1 1754:1 1759:1 1760:1 1761:1 1764:1 1788:2 1795:1 1797:1 1803:2 1804:1 1812:3 1813:1 1824:1 1826:1 1827:1 1828:1 1839:1 1849:1 1856:1 1858:1 1863:3 1864:2 1865:1 1874:1 1877:1 1892:1 1902:1 1903:1 1913:1 1921:3 1927:2 1933:2 1935:1 1936:1 1939:1 1963:1 1979:1 1981:1 1994:1 2000:1 2011:2 2013:1 2024:1 2025:2 2036:1 2041:1 2057:1 2058:1 2077:1 2086:2 2128:1 2131:2 2154:2 2161:1 2170:1 2181:1 2204:1 2249:1 2293:2 2330:1 2339:1 2360:1 2365:1 2366:1 2386:1 2404:1 2406:2 2412:1 2421:1 2428:4 2435:2 2436:1 2438:1 2441:1 2448:5 2452:1 2455:2 2457:2 2459:3 2461:1 2465:1 2470:1 2473:6 2483:1 2497:2 2518:2 2532:1 2534:1 2535:1 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:1 2631:6 2636:2 2655:2 2666:1 2671:1 2679:1 2680:2 2685:1 2686:1 2692:1 2700:1 2701:1 2702:1 2705:1 2706:3 2709:1 2713:1 2718:1 2728:2 2744:1 2753:1 2758:1 2760:2 2784:1 2819:2 2824:1 2831:1 2833:1 2858:1 2871:1 2881:1 2883:1 2890:1 2892:1 2906:1 2908:1 2911:3 2921:1 2978:1 2983:1 2986:1 2989:2 2990:2 2997:1 3001:1 3007:1 3017:1 3020:1 3022:1 3043:1 3045:1 3052:1 3062:4 3070:4 3080:5 3100:1 3116:1 3119:1 3120:2 3131:2 3134:1 3150:1 3160:1 3165:1 3166:1 3183:2 3190:3 3194:2 3197:2 3203:1 3219:2 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3316:1 3328:1 3331:1 3337:1 3338:2 3362:1 3369:1 3370:1 3374:1 3422:1 3423:1 3433:3 3502:1 3525:1 3544:2 3586:1 3624:1 3627:2 3632:1 3635:1 3653:1 3654:3 3674:1 3676:1 3677:1 3696:1 3724:2 3725:1 3729:1 3740:3 3746:1 3748:1 3749:1 3751:5 3762:1 3767:1 3774:1 3781:1 3790:2 3802:1 3820:1 3833:1 3854:1 3858:1 3863:1 3869:3 3872:1 3883:2 3886:1 3894:2 3914:2 3924:1 3927:1 3953:1 3955:1 3956:1 3963:1 3984:3 3986:1 3990:1 3991:1 4005:2 4013:1 4039:1 4057:2 4058:1 4062:3 4080:1 4092:2 4100:1 4114:1 4118:3 4122:1 4127:1 4137:1 4141:2 4150:2 4170:1 4171:1 4179:1 4180:1 4189:1 4191:1 4233:1 4238:1 4262:2 4268:1 4283:1 4284:1 4288:1 4289:1 4296:1 4306:1 4307:1 4310:1 4318:1 4324:1 4334:1 4338:2 4348:1 4358:2 4359:1 4366:1 4374:2 4413:1 4435:1 4437:1 4440:1 4458:1 4465:1 4467:2 4468:2 4471:1 4472:1 4473:1 4484:1 4522:2 4526:3 4564:1 4568:1 4575:4 4578:1 4579:1 4581:1 4588:1 4589:2 4597:1 4601:4 4614:1 4627:1 4628:1 4631:1 4646:1 4650:1 4655:1 4656:1 4667:2 4669:1 4701:1 4707:1 4708:2 4718:1 4729:1 4744:1 4769:1 4780:1 4782:1 4783:1 4789:2 4790:1 4794:1 4799:1 4801:6 4810:3 4822:1 4827:1 4831:1 4842:1 4867:2 4882:4 4899:1 4901:2 4914:1 4926:1 4933:1 4952:1 4953:2 4959:5 4967:1 4968:1 4978:1 4984:1 4987:1 4990:1 4992:3 4997:1 4999:4 5012:1 5017:1 5021:1 5029:2 5031:2 5055:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5116:1 5117:1 5118:1 5119:1 5124:1 5129:1 5130:2 5132:1 5136:2 5138:1 5145:2 5149:2 5154:1 5155:1 5156:1 5181:1 5185:1 5201:1 5202:1 5220:1 5224:1 5264:1 5276:1 5280:1 5284:1 5310:1 5313:2 5318:1 5321:1 5344:2 5354:3 5361:1 5366:1 5375:2 5377:1 5401:1 5404:1 5416:2 5420:1 5440:1 5450:1 5458:2 5483:1 5486:1 5495:1 5497:1 5511:2 5513:1 5529:1 5533:1 5541:2 5556:1 5601:1 5606:2 5618:1 5619:2 5625:1 5630:1 5636:1 5640:1 5651:1 5674:1 5682:1 5723:2 5726:1 5728:1 5731:1 5740:1 5741:3 5749:1 5772:2 5784:1 5798:6 5809:1 5814:1 5835:1 5844:1 5846:1 5855:1 5856:1 5865:1 5874:1 5877:1 5885:1 5889:1 5893:2 5895:1 5900:1 5904:1 5911:1 5924:1 5927:2 5929:1 5935:1 5951:1 5959:2 5962:1 5970:1 5971:1 5989:1 5999:1 6005:1 6007:1 6011:1 6018:2 6022:2 6026:2 6027:9 6034:1 6036:2 6055:2 6061:1 6065:1 6082:1 6107:3 6131:1 6134:2 6162:2 6168:1 6169:4 6170:1 6184:2 6185:1 6188:1 6190:1 6202:3 6221:2 6239:1 6245:1 6247:1 6264:2 6265:3 6268:1 6288:2 6293:1 6298:1 6301:1 6303:1 6306:1 6309:1 6318:4 6320:1 6343:1 6367:2 6377:1 6382:2 6383:2 6389:2 6391:1 6393:1 6400:1 6424:2 6450:1 6456:1 6462:1 6465:1 6467:1 6469:1 6482:4 6497:1 6499:1 6505:1 6517:1 6541:9 6552:1 6555:1 6568:1 6570:1 6580:3 6584:2 6586:1 6589:1 6590:1 6596:1 6600:3 6601:2 6602:1 6616:1 6625:1 6632:1 6636:1 6644:1 6646:1 6647:1 6655:1 6657:1 6664:3 6670:1 6682:1 6688:1 6730:1 6750:3 6753:1 6761:1 6764:1 6782:1 6790:1 6795:2 6809:1 6818:2 6821:1 6826:2 6837:1 6866:2 6868:4 6870:1 6881:1 6898:1 6903:1 6910:1 6912:1 6913:1 6922:1 6923:1 6964:1 6970:1 6980:1 6985:1 6998:3 7022:1 7032:1 7049:1 7054:1 7069:3 7072:2 7073:1 7084:1 7096:1 7098:1 7103:1 7104:1 7108:2 7113:3 7121:1 7128:1 7135:1 7140:1 7159:1 7186:1 7196:2 7200:1 7231:1 7237:2 7248:2 7251:1 7253:1 7270:4 7290:2 7295:1 7316:1 7318:1 7323:2 7327:1 7331:1 7337:1 7341:1 7369:1 7372:2 7375:2 7397:1 7401:1 7410:1 7415:3 7433:1 7434:1 7444:1 7446:1 7449:1 7463:2 7486:1 7493:1 7504:3 7509:1 7529:2 7532:1 7548:1 7551:1 7554:1 7575:1 7578:1 7585:1 7602:2 7607:2 7613:1 7621:1 7623:1 7650:2 7664:4 7669:1 7670:1 7684:1 7696:1 7700:2 7705:1 7706:1 7719:1 7721:1 7730:2 7737:1 7747:1 7755:2 7762:1 7763:3 7764:1 7781:1 7788:3 7791:2 7792:7 7793:3 7794:1 7796:1 7797:2 7801:6 7802:1 7803:1 7810:2 7811:3 7813:1 7814:4 7816:2 7828:1 7849:2 7857:3 7864:1 7871:1 7888:1 7900:1 7928:1 7943:1 7944:1 7949:1 7954:1 7960:1 7963:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8043:1 8058:18 8065:1 8074:1 8082:4 8083:2 8091:2 8110:1 8115:2 8127:1 8134:2 8146:1 8151:4 8157:1 8163:1 8168:1 8199:1 8215:1 8233:4 8252:1 8266:1 8285:1 8288:1 8292:2 8320:1 8329:3 8336:1 8338:1 8340:1 8346:1 8354:1 8374:1 8407:2 8428:1 8441:1 8468:5 8471:1 8480:1 8482:2 8496:1 8501:6 8505:1 8508:1 8512:1 8513:1 8519:1 8525:1 8539:1 8544:1 8548:1 8554:1 8556:1 8560:1 8565:2 8571:1 8585:1 8589:1 8590:1 8591:6 8624:2 8629:2 8641:2 8658:1 8662:1 8664:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8740:1 8744:2 8749:3 8754:1 8756:1 8760:1 8765:1 8771:1 8776:2 8783:1 8787:1 8790:2 8799:1 8803:1 8804:1 8805:1 8806:1 8824:1 8827:1 8830:1 8835:1 8845:2 8849:1 8864:1 8866:1 8870:1 8872:2 8877:1 8885:1 8900:5 8906:1 8908:2 8955:1 8957:1 8958:2 8962:2 8964:4 8965:1 8969:1 8972:1 8980:1 8986:1 8993:2 8998:1 9008:1 9009:1 9035:1 9045:1 9051:1 9078:3 9089:1 9092:1 9098:2 9118:1 9119:1 9122:1 9125:1 9158:2 9164:7 9177:1 9181:1 9189:1 9209:1 9213:1 9241:1 9256:2 9268:1 9269:1 9276:1 9288:1 9303:1 9311:1 9316:1 9322:2 9324:1 9336:2 9342:1 9374:1 9395:6 9396:2 9411:2 9423:1 9434:1 9436:1 9450:1 9452:1 9457:1 9467:1 9477:1 9482:1 9488:1 9502:1 9507:3 9508:1 9527:1 9538:1 9539:1 9571:3 9586:1 9605:1 9610:1 9615:1 9626:1 9628:3 9651:1 9666:1 9667:2 9684:1 9687:4 9689:1 9694:1 9699:1 9703:1 9706:1 9711:2 9725:1 9726:1 9737:1 9742:1 9754:1 9762:1 9766:1 9780:3 9785:1 9790:1 9805:1 9809:1 9812:1 9813:2 9816:1 9830:1 9834:1 9852:1 9854:1 9862:1 9865:1 9876:1 9883:2 9896:1 9902:1 9914:1 9928:1 9935:1 9939:1 9942:1 9951:2 9952:1 9954:2 9956:1 9963:1 9979:1 9981:1 9987:2 10005:3 10011:1 10032:2 10037:2 10042:1 10047:1 10055:1 10061:4 10062:1 10064:3 10071:1 10073:1 10074:1 10088:1 10089:1 10099:1 10104:1 10110:1 10117:1 10123:1 10124:1 10126:3 10135:3 10137:1 10151:1 10156:1 10176:2 10177:1 10182:1 10188:1 10204:6 10208:1 10221:1 10223:2 10233:1 10255:3 10256:1 10267:2 10301:1 10319:1 10328:1 10330:1 10339:1 10346:1 10347:1 10359:1 10372:1 10380:1 10381:1 10394:1 10399:1 10422:1 10425:1 10430:2 10468:1 10472:1 10474:1 10482:2 10487:1 10492:2 10498:4 10500:1 10502:2 10503:2 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10549:1 10550:1 10554:1 10556:2 10557:1 10560:3 10561:1 10572:4 10580:2 10593:1 10594:3 10597:5 10617:1 10620:1 10629:2 10647:1 10650:1 10681:4 10689:2 10696:1 10706:1 10738:1 10746:1 10757:1 10761:3 10772:3 10775:2 10777:1 10787:1 10795:2 10798:1 10801:1 10806:1 10820:1 10828:1 10844:2 10854:1 10857:1 10863:2 10864:1 10876:1 10897:1 10899:1 10906:1 10914:1 10916:2 10918:1 10920:1 10925:1 10926:1 10946:1 10950:1 10964:5 10966:1 10967:1 10969:1 10973:3 10979:1 10982:1 10984:1 10988:1 10995:1 10996:2 10997:1 11005:1 11010:1 11011:1 11021:1 11026:1 11027:3 11035:1 11041:1 11050:2 11062:1 11089:1 11096:1 11097:2 11106:1 11114:2 11131:1 11172:1 11173:1 11183:1 11187:1 11190:2 11216:1 11227:1 11228:1 11233:1 11249:2 11258:6 11263:1 11267:2 11269:1 11282:1 11286:2 11299:1 11304:1 11313:1 11326:2 11354:1 11359:1 11371:1 11373:1 11379:2 11407:1 11413:1 11427:1 11442:1 11449:1 11457:1 11470:1 11472:1 11485:4 11486:3 11495:1 11499:2 11504:1 11505:2 11514:1 11521:1 11522:2 11534:1 11536:5 11560:1 11563:1 11566:1 11567:4 11576:1 11583:1 11585:3 11600:1 11618:1 11622:1 11632:1 11637:1 11642:2 11660:2 11687:1 11721:3 11728:1 11732:1 11738:1 11740:1 11747:1 11755:1 11765:2 11770:3 11771:2 11802:1 11805:2 11808:1 11811:1 11830:1 11836:1 11846:1 11854:1 11856:1 11860:1 11882:2 11884:3 11888:1 11895:3 11899:1 11913:1 11922:1 11926:3 11927:1 11932:1 11936:2 11943:1 11947:2 11959:4 11971:1 11996:4 12001:1 12008:1 12010:1 12024:1 12026:1 12066:1 12073:1 12074:1 12078:1 12080:1 12124:1 12127:2 12145:1 12157:5 12169:1 12179:1 12189:1 12193:1 12215:2 12221:1 12225:1 12231:1 12236:1 12247:1 12250:2 12253:1 12265:1 12277:1 12282:1 12283:3 12290:1 12292:1 12298:2 12299:2 12305:1 12342:1 12347:1 12351:1 12362:1 12364:1 12376:1 12380:2 12395:1 12411:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12474:1 12476:3 12479:1 12480:1 12482:1 12486:3 12490:1 12491:5 12492:1 12494:1 12501:2 12503:2 12506:1 12538:1 12541:2 12550:1 12556:1 12564:1 12583:1 12584:2 12585:1 12587:2 12591:1 12594:2 12596:1 12614:2 12620:1 12625:2 12626:1 12629:1 12631:2 12655:1 12666:1 12670:1 12678:1 12681:1 12683:1 12696:1 12698:2 12699:1 12700:3 12705:2 12712:3 12715:1 12729:1 12730:1 12743:1 12749:1 12776:1 12803:2 12806:1 12823:1 12829:1 12831:2 12838:1 12841:1 12842:1 12844:1 12850:1 12861:1 12871:1 12873:1 12883:1 12893:1 12896:2 12897:1 12901:1 12913:1 12927:1 12967:1 12972:1 13007:1 13009:1 13012:1 13013:2 13022:2 13033:1 13034:1 13068:1 13075:1 13095:2 13116:2 13117:1 13125:1 13129:1 13133:1 13150:2 13160:1 13162:1 13168:1 13182:2 13184:1 13212:1 13233:6 13252:1 13254:2 13256:1 13260:1 13263:3 13318:5 13341:1 13355:2 13358:1 13366:6 13383:1 13386:2 13413:3 13417:1 13422:1 13425:1 13452:1 13513:1 13518:1 13554:1 13562:1 13620:1 13637:1 13657:1 13665:1 13682:2 13686:2 13721:1 13723:5 13729:2 13732:1 13733:3 13735:1 13748:1 13760:1 13763:3 13772:1 13773:3 13797:1 13806:1 13808:1 13811:1 13849:1 13853:1 13867:1 13887:1 13891:1 13903:1 13915:1 13919:1 13949:5 13956:1 13957:1 13960:2 13961:1 13983:1 14007:1 14010:1 14011:1 14067:2 14078:1 14085:1 14093:1 14102:2 14106:3 14115:1 14121:3 14127:2 14131:1 14148:1 14165:1 14166:1 14177:1 14178:8 14196:1 14200:1 14211:1 14214:1 14223:2 14224:1 14227:1 14232:1 14244:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14293:1 14299:2 14306:1 14329:1 14349:2 14350:1 14353:1 14383:4 14405:2 14429:1 14455:1 14462:1 14470:1 14503:1 14506:1 14523:1 14529:2 14533:1 14577:1 14584:1 14593:1 14598:2 14621:1 14639:1 14651:1 14657:1 14668:1 14670:1 14674:1 14686:1 14694:1 14695:1 14700:1 14708:1 14715:1 14724:1 14727:3 14736:1 14737:1 14739:1 14750:1 14776:1 14779:2 14781:1 14785:1 14789:1 14790:1 14792:1 14796:1 14799:1 14810:1 14831:1 14832:1 14853:1 14866:1 14871:2 14885:2 14888:1 14899:1 14903:1 14904:1 14906:1 14909:1 14911:5 14913:1 14921:1 14926:1 14928:1 14930:1 14931:1 14934:1 14944:4 14945:2 14947:1 14951:1 14975:2 14993:1 14998:1 15007:1 15015:1 15018:1 15021:2 15022:1 15037:1 15038:2 15049:1 15056:1 15057:1 15058:5 15068:2 15076:1 15079:1 15104:2 15110:2 15116:2 15123:1 15125:1 15129:1 15149:1 15164:1 15171:1 15176:1 15231:1 15253:1 15257:3 15258:4 15264:1 15272:1 15297:1 15305:1 15310:1 15311:1 15317:1 15319:3 15322:1 15335:1 15348:9 15355:2 15357:1 15364:1 15365:1 15366:1 15367:1 15370:4 15371:38 15381:1 15385:1 15388:2 15401:1 15425:1 15432:3 15438:2 15441:2 15476:1 15484:1 15492:1 15496:1 15519:3 15537:1 15540:1 15551:3 15561:1 15567:2 15572:1 15576:4 15580:1 15581:1 15588:1 15589:1 15617:1 15620:3 15622:1 15631:1 15662:1 15674:1 15676:2 15690:1 15700:1 15709:1 15719:4 15729:1 15746:2 15759:2 15760:1 15778:2 15780:1 15785:1 15793:1 15798:1 15806:1 15828:1 15843:2 15844:1 15853:1 15857:1 15863:1 15866:9 15879:1 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15920:2 15921:1 15938:1 15958:3 15993:1 16011:1 16014:1 16021:1 16031:1 16041:1 16044:1 16056:1 16063:1 16098:2 16099:1 16102:2 16103:1 16110:2 16167:1 16168:1 16177:1 16179:1 16195:2 16202:1 16204:2 16218:1 16224:1 16225:1 16240:2 16247:1 16249:2 16250:1 16268:1 16273:1 16278:1 16280:1 16284:1 16302:1 16318:1 16342:1 16345:5 16346:1 16347:1 16348:1 16350:1 16352:1 16385:1 16400:2 16416:1 16417:1 16426:2 16446:1 16449:1 16456:2 16458:1 16460:2 16462:1 16481:1 16485:1 16488:1 16490:1 16500:12 16503:1 16540:1 16553:5 16567:2 16569:1 16572:3 16586:2 16589:1 16614:1 16620:1 16623:3 16662:1 16677:1 16681:1 16682:1 16704:1 16717:1 16718:3 16725:1 16729:2 16735:1 16738:1 16763:1 16793:2 16795:1 16814:1 16823:1 16827:2 16836:1 16840:1 16879:1 16884:1 16895:1 16904:1 16923:1 16926:1 16944:1 16945:1 16983:2 16986:1 16998:1 17018:1 17022:1 17024:2 17027:1 17029:1 17032:1 17043:1 17050:1 17061:1 17078:3 17083:1 17086:1 17095:1 17103:1 17110:3 17114:2 17116:1 17124:1 17126:2 17128:1 17135:1 17139:1 17144:1 17150:1 17166:1 17179:2 17180:1 17185:1 17191:3 17200:1 17203:2 17206:1 17208:2 17209:1 17225:1 17230:1 17253:1 17264:2 17266:1 17272:1 17273:2 17276:1 17278:3 17280:1 17292:1 17297:2 17319:1 17326:2 17334:2 17346:2 17360:1 17365:1 17388:2 17411:1 17439:2 17447:1 17459:1 17467:1 17474:1 17516:1 17533:1 17535:1 17547:1 17548:1 17551:1 17559:1 17561:2 17576:1 17579:1 17583:1 17585:1 17634:1 17662:2 17676:1 17699:1 17711:1 17715:1 17724:1 17726:1 17727:1 17728:2 17743:2 17756:2 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:2 17820:1 17854:1 17859:1 17874:4 17892:1 17906:2 17918:1 17923:1 17931:1 17932:1 17940:1 17946:3 17952:3 17974:1 17990:1 18043:2 18044:1 18052:1 18065:1 18069:1 18082:1 18085:2 18115:1 18116:1 18121:1 18131:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:2 18246:1 18254:1 18275:1 18280:1 18288:1 18289:2 18299:1 18301:1 18313:1 18332:1 18335:1 18338:1 18368:2 18370:1 18372:1 18374:1 18382:1 18388:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:8 18465:1 18466:1 18475:2 18492:2 18523:1 18535:1 18550:1 18563:1 18569:1 18598:1 18600:1 18610:1 18611:2 18621:1 18657:2 18659:1 18681:2 18731:1 18748:1 18756:2 18757:1 18759:1 18769:1 18793:1 18802:1 18811:1 18817:1 18830:1 18841:1 18858:1 18860:1 18863:2 18864:3 18874:1 18891:1 18895:1 18901:1 18903:1 18905:1 18933:1 18947:1 18948:1 18951:1 18965:1 18974:1 18976:1 18986:1 18996:1 18999:1 19001:1 19025:1 19039:2 19056:1 19062:1 19067:1 19081:1 19085:4 19093:2 19107:2 19112:1 19118:1 19145:1 19146:1 19163:1 19197:1 19203:2 19210:1 19214:1 19221:1 19239:1 19242:3 19260:1 19262:3143 19265:1 19288:1 19316:1 19320:1 19325:2 19362:1 19392:2 19398:1 19401:1 19403:1 19423:2 19429:2 19434:1 19474:1 19476:1 19479:2 19486:1 19512:1 19515:2 19519:1 19541:2 19547:1 19578:1 19586:1 19594:2 19597:1 19601:1 19620:1 19622:1 19627:1 19650:2 19663:3 19670:2 19686:1 19697:1 19707:1 19739:1 19754:1 19758:3 19771:1 19775:1 19776:4 19781:1 19810:1 19812:1 19829:1 19832:1 19861:1 19869:3 19874:1 19903:1 19908:3 19914:1 19920:3 19924:1 19948:1 19957:1 19975:2 20004:1 20006:6 20035:2 20086:1 20093:1 20101:1 20122:1 20125:1 20131:4 20144:1 20146:2 20150:1 20153:1 20167:1 20187:1 20202:1 20205:1 20208:3 20218:2 20219:2 20223:2 20224:1 20225:1 20226:1 20244:1 20252:1 20259:2 20269:1 20273:1 20279:1 20301:1 20302:1 20333:1 20370:2 20374:1 20376:1 20382:1 20397:1 20400:1 20405:1 20410:1 20437:1 20438:1 20452:1 20477:1 20507:1 20518:1 20524:1 20527:1 20547:1 20548:1 20550:2 20575:1 20601:1 20606:1 20609:1 20615:2 20618:1 20620:1 20630:1 20634:1 20642:1 20659:2 20664:1 20666:3 20671:1 20672:1 20675:1 20681:1 20684:1 20691:1 20692:1 20696:1 20700:1 20701:2 20704:2 20706:2 20709:1 20719:1 20721:1 20722:1 20730:1 20737:3 20742:2 20743:1 20752:3 20755:1 20760:1 20779:1 20792:1 20793:1 20797:1 20832:1 20837:2 20860:2 20868:1 20920:3 20922:1 20941:1 20959:1 20962:1 20970:1 20977:2 20987:1 20989:1 20993:2 21001:1 21004:1 21008:1 21020:2 21021:1 21022:2 21036:1 21050:1 21052:2 21055:1 21075:1 21084:2 21085:2 21101:2 21112:1 21115:2 21124:2 21160:1 21179:1 21204:1 21205:1 21208:1 21209:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21250:1 21251:1 21260:1 21263:1 21269:3 21274:1 21294:1 21299:1 21321:3 21328:1 21332:1 21338:1 21346:2 21354:2 21360:1 21368:1 21397:1 21404:1 21405:3 21408:2 21410:1 21414:1 21426:1 21427:2 21429:2 21437:1 21444:1 21452:1 21461:3 21481:2 21482:1 21493:1 21503:1 21521:1 21536:2 21568:1 21570:2 21572:1 21581:1 21598:2 21624:1 21646:1 21665:1 21669:1 21670:1 21690:1 21701:1 21712:1 21741:1 21747:1 21767:1 21776:1 21784:1 21800:1 21803:2 21809:1 21814:1 21822:2 21825:2 21845:2 21848:2 21849:8 21851:1 21870:1 21883:1 21901:3 21907:1 21910:1 21912:1 21921:1 21931:1 21942:1 21952:1 21960:1 21967:1 21970:1 21983:2 21986:1 21990:1 22008:1 22022:1 22026:1 22038:1 22043:1 22049:1 22050:2 22053:2 22055:1 22057:1 22068:1 22084:1 22099:1 22104:1 22109:1 22138:1 22141:1 22144:1 22158:1 22179:3 22185:1 22190:2 22199:1 22214:1 22219:1 22243:1 22257:2 22266:1 22277:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22351:1 22353:6 22363:2 22375:1 22384:1 22395:2 22396:3 22415:1 22445:1 22451:2 22459:1 22468:1 22477:1 22486:2 22495:1 22496:1 22508:1 22512:1 22530:3 22533:1 22542:1 22548:2 22554:1 22560:2 22577:1 22579:2 22600:2 22606:2 22609:1 22627:2 22628:2 22638:1 22653:1 22662:2 22667:3 22679:1 22685:1 22695:1 22697:1 22705:1 22723:2 22732:2 22733:1 22743:1 22750:1 22763:1 22770:1 22779:1 22800:1 22803:1 22807:1 22808:1 22811:1 22814:1 22815:2 22853:2 22867:1 22878:1 22886:1 22914:3 22916:1 22919:2 22924:1 22927:1 22928:4 22969:1 22974:1 22985:1 23003:2 23004:2 23006:1 23007:5 23013:1 23027:5 23029:1 23042:1 23049:1 23071:1 23077:1 23089:1 23113:1 23125:1 23133:2 23138:1 23161:7 23165:1 23171:2 23172:1 23176:1 23178:1 23179:1 23236:1 23237:1 23241:1 23247:2 23255:1 23260:1 23264:1 23268:2 23297:2 23309:1 23311:4 23358:2 23359:1 23363:1 23365:1 23367:1 23372:1 23376:1 23382:1 23383:1 23384:1 23399:1 23409:1 23410:1 23413:1 23420:1 23430:2 23433:1 23436:2 23448:1 23449:1 23458:4 23467:1 23473:1 23477:1 23478:1 23503:1 23505:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:1 23561:3 23562:1 23581:1 23583:1 23613:1 23623:1 23627:1 23632:1 23667:1 23671:1 23688:1 23704:1 23717:1 23722:2 23733:3 23747:3 23774:2 23790:1 23814:4 23831:1 23834:7 23841:1 23856:1 23868:1 23897:1 23912:4 23913:1 23926:2 23927:3 23928:3 23935:1 23938:1 23940:3 23941:6 23949:1 23958:1 23977:1 23988:1 24002:1 24003:2 24008:1 24013:1 24021:1 24033:4 24047:1 24051:2 24058:1 24066:1 24068:2 24078:1 24080:1 24089:1 24122:1 24128:1 24157:1 24160:1 24177:1 24192:2 24194:1 24197:2 24199:2 24205:2 24209:1 24212:2 24223:5 24235:1 24249:1 24264:5 24284:1 24292:1 24305:3 24324:1 24360:1 24370:2 24373:1 24375:2 24379:4 24383:1 24388:1 24392:3 24401:1 24404:1 24405:1 24412:1 24415:1 24421:1 24423:1 24424:1 24427:1 24431:1 24436:1 24441:3 24453:2 24471:1 24474:2 24489:1 24494:1 24507:1 24544:1 24547:1 24551:1 24553:1 24559:1 24560:1 24576:2 24623:2 24626:1 24631:1 24636:6 24652:1 24655:1 24658:1 24661:1 24662:3 24715:1 24719:1 24734:2 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24791:1 24803:1 24810:1 24835:1 24861:1 24867:1 24882:1 24898:1 24904:10 24906:1 24914:1 24915:2 24918:2 24926:2 24937:1 24946:1 24956:1 24965:3 24992:1 24999:1 25024:1 25026:1 25032:1 25036:1 25044:1 25048:2 25051:4 25054:2 25074:1 25081:3 25099:1 25100:1 25114:1 25120:1 25142:1 25153:2 25157:1 25159:1 25175:1 25176:2 25185:1 25186:1 25187:1 25201:1 25206:1 25211:1 25225:2 25231:2 25237:1 25238:1 25249:1 25254:1 25263:1 25276:1 25277:1 25301:1 25329:1 25339:2 25340:1 25365:1 25384:1 25393:2 25395:1 25401:1 25404:1 25415:1 25439:1 25447:2 25451:2 25456:1 25462:4 25482:1 25483:2 25484:1 25503:1 25508:1 25512:1 25532:1 25539:1 25543:1 25568:1 25577:1 25600:1 25617:1 25627:1 25631:5 25644:2 25652:2 25655:1 25659:2 25678:1 25680:1 25681:1 25704:2 25705:2 25729:1 25731:1 25736:2 25757:3 25762:1 25773:1 25777:1 25790:1 25794:1 25828:1 25835:2 25845:1 25859:1 25871:1 25879:1 25893:2 25904:1 25905:1 25920:2 25922:4 25933:2 25935:3 25938:2 25943:3 25945:1 25952:1 25953:1 25957:2 25964:1 25974:1 25982:3 25986:1 26013:2 26024:4 26035:2 26041:1 26043:1 26050:1 26052:2 26068:1 26072:1 26084:1 26092:2 26093:2 26095:2 26129:1 26130:2 26138:1 26139:1 26156:1 26160:2 26172:1 26178:2 26188:1 26214:1 26220:1 26226:1 26233:3 26244:1 26268:1 26276:1 26281:3 26284:2 26299:1 26307:3 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26387:2 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:2 26511:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:3 26648:1 26649:1 26667:1 26670:4 26689:1 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26741:1 26757:1 26767:1 26797:1 26799:1 26805:1 26845:1 26846:1 26857:2 26858:2 26871:1 26888:2 26893:2 26900:1 26903:1 26906:1 26911:1 26915:2 26916:1 26918:4 26924:1 26955:3 26965:2 26969:1 26981:1 26984:2 26988:1 26991:2 26992:1 26995:1 27002:1 27006:2 27007:2 27008:1 27015:2 27017:1 27023:3 27024:1 27025:2 27033:2 27039:1 27061:1 27067:1 27069:1 27070:1 27089:1 27095:1 27115:5 27116:2 27164:1 27165:1 27200:1 27201:1 27203:1 27214:1 27219:1 27225:1 27233:1 27260:1 27261:4 27266:1 27267:2 27269:1 27293:1 27294:1 27302:1 27312:1 27318:1 27319:1 27350:1 27353:1 27355:1 27369:1 27384:1 27386:2 27390:2 27395:1 27400:1 27404:1 27410:1 27424:2 27425:1 27430:4 27438:1 27448:1 27451:1 27456:1 27464:1 27471:1 27473:1 27474:1 27480:1 27496:1 27527:1 27536:1 27540:1 27551:2 27554:2 27555:1 27557:1 27564:4 27571:1 27579:1 27584:1 27613:2 27618:1 27635:1 27651:1 27657:1 27658:1 27665:1 27668:1 27669:2 27704:1 27713:1 27727:1 27731:1 27739:1 27748:1 27754:1 27776:1 27808:1 27818:2 27820:1 27825:1 27831:1 27848:1 27857:1 27874:3 27877:2 27878:1 27880:2 27881:2 27891:1 27897:3 27905:1 27910:1 27914:1 27944:1 27948:1 27951:1 27952:1 27966:1 27968:1 27985:2 27999:1 28000:1 28001:1 28002:1 28003:2 28014:4 28032:1 28097:2 28098:1 28101:1 28109:1 28119:1 28130:2 28138:1 28139:2 28146:1 28155:1 28176:2 28186:2 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28290:1 28302:1 28303:2 28311:1 28315:1 28318:1 28322:1 28330:1 28337:1 28358:1 28378:1 28393:1 28427:1 28432:1 28435:2 28456:1 28462:2 28468:2 28481:1 28495:1 28496:1 28504:1 28522:2 28530:1 28532:1 28536:2 28542:1 28547:1 28555:2 28556:1 28562:2 28577:1 28588:2 28589:2 28591:1 28596:2 28617:12 28622:1 28625:1 28629:1 28633:2 28640:1 28643:1 28662:7 28663:2 28668:1 28671:2 28672:1 28674:1 28684:3 28699:1 28714:1 28719:3 28725:1 28755:1 28759:1 28784:1 28806:3 28817:1 28827:2 28829:1 28835:2 28838:1 28854:1 28864:2 28868:1 28872:2 28889:1 28896:1 28903:1 28907:1 28911:1 28917:2 28938:1 28952:1 28964:1 28969:1 28977:1 28987:1 28990:1 28997:1 29002:1 29019:1 29023:3 29025:1 29034:1 29043:1 29046:3 29049:1 29055:1 29074:1 29077:1 29090:1 29091:1 29098:1 29102:3 29112:1 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29175:1 29177:1 29189:1 29190:1 29196:2 29204:1 29205:1 29233:1 29251:1 29252:1 29265:1 29268:1 29286:1 29288:1 29293:1 29297:1 29322:1 29323:1 29324:2 29325:1 29333:1 29336:1 29343:1 29348:1 29366:1 29370:1 29376:2 29391:1 29396:1 29401:1 29453:1 29481:1 29482:1 29483:1 29519:2 29525:1 29556:1 29574:1 29581:1 29628:2 29633:1 29650:1 29695:4 29703:1 29706:1 29711:1 29717:1 29734:1 29738:5 29741:1 29743:1 29746:1 29753:1 29754:1 29760:1 29764:2 29773:1 29790:2 29795:1 29797:1 29807:2 29818:1 29832:1 29840:1 29846:1 29848:2 29849:1 29851:1 29854:4 29864:1 29868:1 29888:1 29889:1 29891:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:2 29970:1 29972:1 29974:1 29980:1 29996:2
17 9:1 12:1 14:2 24:1 25:1 32:1 35:1 41:1 50:1 57:2 65:1 78:1 100:1 110:1 148:1 157:7 167:1 171:2 174:1 180:1 190:1 212:1 213:1 214:1 226:1 241:2 253:1 258:4 282:2 284:2 307:1 318:1 319:1 324:1 330:3 377:1 380:2 381:1 393:1 399:1 452:1 462:1 464:2 470:1 476:1 477:1 486:2 492:1 542:1 555:1 591:3 597:1 599:1 602:1 605:1 607:1 618:1 648:1 657:1 660:4 671:1 677:2 726:1 747:1 762:1 765:1 771:1 779:1 788:1 796:3 811:6 817:1 867:2 869:1 873:1 904:1 906:1 908:2 912:6 913:3 915:1 917:2 919:1 921:5 924:2 925:3 926:1 931:1 935:1 936:2 940:1 942:2 945:2 960:1 966:4 967:2 968:1 972:2 975:1 991:1 1010:3 1034:1 1036:2 1039:1 1040:2 1052:1 1054:1 1055:1 1059:1 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:3 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:2 1163:1 1176:1 1186:1 1193:2 1197:2 1207:1 1238:1 1247:1 1252:1 1260:2 1262:1 1266:1 1270:1 1283:1 1291:1 1296:1 1297:1 1301:1 1317:1 1318:1 1321:1 1332:1 1334:1 1335:1 1337:1 1351:1 1356:1 1362:1 1365:1 1382:1 1385:1 1387:2 1393:1 1413:1 1414:3 1415:1 1425:1 1460:1 1463:1 1481:1 1485:1 1486:4 1498:1 1513:1 1516:1 1518:1 1521:1 1528:1 1536:2 1540:1 1543:1 1567:2 1571:1 1588:4 1600:1 1601:1 1603:1 1611:1 1614:1 1615:1 1619:1 1634:2 1645:1 1663:1 1677:1 1682:2 1687:1 1691:3 1708:1 1715:1 1716:1 1719:1 1727:2 1736:1 1741:1 1746:1 1750:1 1754:1 1759:1 1760:1 1761:1 1764:1 1788:2 1795:1 1797:1 1803:2 1804:1 1812:3 1813:1 1824:1 1826:1 1827:1 1828:1 1839:1 1849:1 1856:1 1858:2 1863:3 1864:2 1865:1 1874:1 1877:1 1881:1 1892:1 1902:1 1903:1 1913:1 1921:3 1927:2 1933:2 1935:1 1936:1 1939:1 1963:1 1979:1 1981:1 1994:1 2000:1 2011:2 2013:1 2024:1 2025:2 2036:1 2041:1 2057:1 2058:1 2077:1 2086:2 2128:1 2131:2 2154:2 2161:1 2170:1 2181:1 2204:1 2249:1 2293:3 2330:1 2339:1 2360:1 2365:1 2366:1 2386:1 2404:1 2406:2 2412:1 2421:1 2428:4 2435:2 2436:1 2438:1 2441:1 2448:5 2452:1 2455:2 2457:2 2459:3 2461:1 2465:1 2470:1 2473:6 2483:1 2497:2 2518:2 2532:1 2534:1 2535:1 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:1 2631:6 2636:2 2655:2 2666:1 2667:1 2671:1 2679:1 2680:2 2685:1 2686:1 2692:1 2700:1 2701:1 2702:1 2705:1 2706:3 2709:1 2713:1 2718:1 2728:2 2744:1 2753:1 2758:1 2760:2 2784:1 2819:2 2824:1 2831:1 2833:1 2858:1 2871:1 2881:1 2883:1 2890:1 2892:1 2906:1 2908:1 2911:3 2921:1 2978:1 2983:1 2986:1 2989:2 2990:2 2997:1 3001:1 3007:1 3017:1 3020:1 3022:1 3043:1 3045:1 3052:1 3062:4 3070:5 3080:5 3100:1 3116:1 3119:1 3120:2 3131:2 3134:1 3150:1 3160:1 3165:1 3166:1 3183:2 3190:3 3194:2 3197:2 3203:1 3219:2 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3316:1 3328:1 3331:1 3337:1 3338:2 3362:1 3369:1 3370:1 3374:1 3422:1 3423:1 3433:3 3502:1 3525:1 3544:2 3586:1 3624:1 3627:2 3632:1 3635:1 3653:1 3654:3 3674:1 3676:1 3677:1 3696:1 3724:2 3725:1 3729:1 3740:3 3746:1 3748:1 3749:1 3751:5 3762:1 3767:1 3774:1 3781:1 3790:2 3802:1 3820:1 3833:1 3854:3 3858:1 3863:1 3869:3 3872:1 3883:2 3886:1 3894:2 3914:2 3924:1 3927:1 3953:1 3955:1 3956:1 3963:1 3984:3 3986:1 3990:1 3991:1 4005:2 4013:1 4039:1 4057:2 4058:1 4062:3 4080:1 4092:2 4094:1 4100:1 4114:1 4118:3 4122:1 4127:1 4137:1 4141:2 4150:2 4170:1 4171:1 4179:1 4180:1 4189:1 4191:1 4233:1 4238:1 4262:2 4268:1 4283:1 4284:1 4288:1 4289:1 4296:1 4306:1 4307:1 4310:1 4318:1 4324:1 4334:1 4338:2 4348:1 4358:2 4359:1 4366:1 4374:2 4413:1 4435:1 4437:1 4440:1 4458:1 4465:1 4467:2 4468:2 4471:1 4472:1 4473:1 4484:1 4522:2 4526:3 4564:1 4568:1 4575:4 4578:1 4579:1 4581:1 4588:1 4589:2 4597:1 4601:4 4614:1 4627:1 4628:1 4631:1 4646:1 4650:1 4655:1 4656:1 4667:2 4669:1 4701:1 4707:1 4708:2 4718:1 4729:1 4744:1 4769:1 4780:1 4782:1 4783:1 4789:2 4790:1 4794:1 4799:1 4801:6 4810:3 4822:1 4827:1 4831:1 4842:1 4867:2 4882:4 4899:1 4901:2 4914:1 4926:1 4933:1 4952:1 4953:2 4959:5 4967:1 4968:1 4978:1 4984:2 4987:1 4990:1 4992:3 4997:1 4999:4 5012:1 5017:1 5021:1 5029:2 5031:2 5055:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5116:1 5117:1 5118:1 5119:1 5124:1 5129:1 5130:2 5132:1 5136:2 5138:1 5145:3 5149:2 5154:1 5155:1 5156:1 5175:1 5181:1 5185:1 5201:1 5202:1 5220:1 5224:1 5264:1 5276:1 5280:1 5284:1 5310:1 5313:2 5318:1 5321:1 5344:2 5354:3 5361:1 5366:1 5375:2 5377:1 5401:1 5404:1 5416:2 5420:1 5440:1 5450:1 5458:2 5483:1 5486:1 5495:1 5497:1 5511:2 5513:1 5529:1 5533:1 5541:2 5556:1 5601:1 5606:2 5618:1 5619:2 5625:1 5630:1 5636:1 5640:1 5651:1 5674:1 5682:1 5723:2 5726:1 5728:1 5731:1 5740:1 5741:4 5749:1 5772:2 5784:1 5798:6 5809:1 5814:1 5835:1 5844:1 5846:1 5855:1 5856:1 5865:1 5874:1 5877:1 5885:1 5889:3 5893:2 5895:1 5900:1 5904:1 5911:1 5924:1 5927:2 5929:1 5935:1 5951:1 5959:2 5962:1 5970:1 5971:1 5989:1 5999:1 6005:1 6007:1 6011:1 6018:2 6022:2 6026:2 6027:9 6034:1 6036:2 6055:2 6061:1 6065:1 6082:1 6107:3 6131:1 6134:2 6162:2 6168:1 6169:4 6170:1 6184:2 6185:1 6188:1 6190:1 6202:4 6221:2 6239:1 6245:1 6247:1 6264:2 6265:3 6268:1 6288:2 6293:1 6298:1 6301:1 6303:1 6306:1 6309:1 6318:4 6320:1 6343:1 6367:2 6377:1 6382:2 6383:2 6389:2 6391:1 6393:1 6400:1 6424:2 6450:1 6456:1 6462:1 6465:1 6467:1 6469:1 6482:4 6497:1 6499:1 6505:1 6517:1 6541:9 6552:1 6555:1 6568:1 6570:1 6580:3 6584:2 6586:1 6589:1 6590:1 6596:1 6600:3 6601:2 6602:1 6616:1 6625:1 6632:1 6636:1 6644:1 6646:1 6647:1 6655:1 6657:1 6664:3 6670:1 6682:1 6688:1 6730:1 6750:3 6753:1 6761:1 6764:1 6782:1 6790:1 6795:2 6809:1 6818:2 6821:1 6826:2 6837:1 6866:2 6868:4 6870:1 6881:1 6898:1 6903:1 6910:1 6912:1 6913:1 6922:1 6923:1 6964:1 6970:1 6980:1 6985:1 6998:3 7022:1 7032:1 7049:1 7054:1 7069:3 7072:2 7073:1 7084:1 7096:1 7098:1 7103:1 7104:1 7108:2 7113:3 7121:1 7128:1 7135:1 7140:1 7159:1 7186:1 7196:2 7200:1 7231:1 7237:2 7248:2 7251:1 7253:1 7270:4 7290:2 7295:1 7316:1 7318:1 7323:2 7327:1 7331:1 7337:1 7341:1 7369:1 7372:2 7375:2 7397:1 7401:1 7410:1 7415:3 7433:1 7434:1 7444:1 7446:1 7449:1 7463:2 7486:1 7493:1 7504:3 7509:1 7529:2 7532:1 7548:1 7551:1 7554:1 7575:1 7578:1 7585:1 7602:2 7607:2 7613:1 7621:1 7623:1 7650:2 7664:4 7669:1 7670:1 7684:1 7696:1 7700:3 7705:1 7706:1 7719:1 7721:1 7730:2 7737:1 7747:1 7755:2 7757:1 7762:1 7763:3 7764:1 7781:1 7788:3 7791:2 7792:7 7793:3 7794:1 7796:1 7797:2 7801:6 7802:1 7803:1 7810:2 7811:3 7813:1 7814:4 7816:2 7828:1 7847:1 7849:2 7857:3 7864:1 7871:1 7888:1 7900:1 7928:1 7943:1 7944:1 7949:1 7954:1 7960:1 7963:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8043:1 8058:18 8065:1 8074:1 8082:5 8083:2 8091:2 8110:1 8115:2 8127:1 8134:2 8146:1 8151:4 8157:1 8163:1 8168:1 8199:1 8215:1 8233:4 8252:1 8266:1 8285:1 8288:1 8292:2 8320:1 8329:3 8336:1 8338:1 8340:1 8346:1 8354:1 8374:1 8407:2 8428:1 8441:1 8468:5 8471:1 8480:1 8482:2 8496:1 8501:7 8505:1 8508:1 8512:1 8513:1 8519:1 8525:1 8539:1 8544:1 8548:1 8554:1 8556:1 8560:1 8565:2 8571:1 8585:1 8589:1 8590:1 8591:6 8624:2 8629:2 8641:2 8658:1 8662:1 8664:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8740:1 8744:3 8749:3 8754:1 8756:1 8760:1 8765:1 8771:1 8776:2 8783:1 8787:1 8790:2 8799:1 8803:1 8804:1 8805:1 8806:1 8824:1 8827:1 8830:1 8835:1 8845:2 8849:1 8864:1 8866:1 8870:1 8872:2 8877:1 8885:1 8900:5 8906:1 8908:2 8955:1 8957:1 8958:2 8962:2 8964:4 8965:1 8969:1 8972:1 8980:1 8986:1 8993:2 8998:1 9008:1 9009:1 9035:1 9045:1 9051:1 9078:3 9089:1 9092:1 9098:2 9118:1 9119:1 9122:1 9125:1 9158:2 9164:7 9177:1 9181:1 9189:1 9209:1 9213:1 9241:1 9256:2 9268:1 9269:1 9276:1 9288:1 9303:1 9311:1 9316:1 9322:2 9324:1 9336:2 9342:1 9374:1 9395:6 9396:2 9411:2 9423:1 9434:1 9436:1 9450:1 9452:1 9457:2 9467:1 9477:1 9482:1 9488:1 9502:1 9507:3 9508:1 9527:1 9538:1 9539:1 9571:3 9586:1 9605:1 9608:1 9610:1 9615:1 9626:1 9628:3 9651:1 9660:1 9666:1 9667:2 9684:1 9687:4 9689:1 9694:1 9699:1 9703:1 9706:1 9711:2 9725:1 9726:1 9737:1 9742:1 9754:1 9762:1 9766:1 9780:3 9785:1 9790:1 9805:1 9809:1 9812:1 9813:2 9816:1 9830:1 9834:1 9852:1 9854:1 9862:1 9865:1 9876:1 9883:2 9896:1 9902:1 9914:1 9928:1 9935:1 9939:1 9942:1 9951:2 9952:1 9954:2 9956:1 9963:1 9979:1 9981:1 9987:2 10005:3 10006:1 10011:1 10032:2 10037:3 10042:1 10047:1 10055:1 10061:4 10062:1 10064:3 10071:1 10073:1 10074:1 10088:2 10089:1 10099:1 10104:1 10110:1 10117:1 10123:1 10124:1 10126:3 10135:3 10137:1 10151:1 10156:1 10176:2 10177:1 10182:1 10188:1 10204:6 10208:1 10221:1 10223:2 10233:1 10255:3 10256:1 10267:2 10301:1 10319:1 10328:1 10330:1 10339:1 10346:1 10347:1 10359:1 10372:1 10380:1 10381:1 10394:1 10399:1 10422:1 10425:1 10430:2 10468:1 10472:1 10474:1 10482:2 10487:1 10492:2 10498:4 10500:1 10502:2 10503:2 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10549:1 10550:1 10554:1 10556:2 10557:1 10560:3 10561:1 10572:4 10580:2 10593:1 10594:3 10597:5 10617:1 10620:1 10629:2 10647:1 10650:1 10681:4 10689:2 10696:1 10706:1 10738:1 10746:1 10757:1 10761:3 10772:3 10775:2 10777:1 10787:1 10795:2 10798:1 10801:1 10806:1 10820:1 10828:1 10844:2 10854:1 10857:1 10863:2 10864:1 10876:1 10897:1 10899:1 10906:1 10914:1 10916:2 10918:1 10920:1 10925:1 10926:1 10946:1 10950:1 10964:5 10966:1 10967:1 10969:1 10973:3 10979:1 10982:1 10984:1 10988:1 10989:1 10995:1 10996:2 10997:1 11005:1 11010:1 11011:1 11021:1 11026:1 11027:3 11035:1 11041:1 11050:2 11062:1 11089:1 11096:1 11097:2 11106:1 11114:2 11131:1 11172:1 11173:1 11183:1 11187:1 11190:2 11216:1 11227:1 11228:1 11233:1 11249:2 11258:6 11263:1 11267:2 11269:1 11282:1 11286:2 11299:1 11304:1 11313:1 11326:3 11354:1 11359:1 11371:1 11373:1 11379:2 11407:1 11413:1 11427:1 11442:1 11449:1 11457:1 11470:1 11472:1 11485:4 11486:3 11495:1 11499:2 11504:1 11505:2 11514:1 11521:1 11522:2 11534:1 11536:5 11560:1 11563:1 11566:1 11567:4 11576:1 11583:1 11585:3 11600:1 11618:1 11622:1 11632:1 11637:1 11642:2 11659:1 11660:2 11687:1 11721:3 11728:1 11732:1 11738:1 11740:1 11747:1 11755:1 11765:2 11770:3 11771:2 11802:1 11805:4 11808:1 11811:1 11830:1 11836:1 11846:1 11854:1 11856:1 11860:1 11882:2 11884:3 11888:1 11895:3 11899:1 11913:1 11922:1 11926:3 11927:1 11932:1 11936:2 11943:1 11947:2 11959:4 11971:1 11996:4 12001:1 12008:1 12010:1 12024:1 12026:1 12066:1 12073:1 12074:1 12078:1 12080:1 12124:1 12127:2 12145:1 12157:6 12169:1 12179:1 12182:1 12189:1 12193:1 12215:2 12221:1 12225:1 12231:1 12236:1 12247:1 12250:2 12253:1 12265:1 12277:2 12282:1 12283:3 12290:1 12292:1 12298:2 12299:2 12305:1 12342:1 12347:1 12351:1 12362:1 12364:1 12376:1 12380:2 12395:1 12411:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12474:1 12476:3 12479:1 12480:1 12482:1 12486:3 12490:1 12491:5 12492:1 12494:1 12501:2 12503:2 12506:1 12538:1 12541:2 12550:1 12556:1 12564:1 12583:1 12584:2 12585:1 12587:2 12591:1 12594:2 12596:1 12614:2 12620:1 12625:2 12626:1 12629:1 12631:2 12655:2 12666:1 12670:1 12678:1 12681:1 12683:1 12696:1 12698:2 12699:1 12700:3 12705:2 12712:3 12715:1 12729:1 12730:1 12743:1 12749:1 12776:1 12803:2 12806:1 12823:1 12829:1 12831:2 12838:1 12841:1 12842:1 12844:1 12850:1 12861:1 12871:1 12873:1 12883:1 12893:1 12896:2 12897:1 12901:1 12913:1 12927:1 12967:1 12972:1 13007:1 13009:1 13012:1 13013:2 13022:2 13033:1 13034:1 13068:1 13075:1 13095:2 13116:2 13117:1 13125:1 13129:1 13133:1 13150:2 13160:1 13162:1 13168:1 13182:2 13184:1 13212:1 13233:6 13252:1 13254:2 13256:1 13260:1 13263:3 13318:5 13341:1 13355:2 13358:1 13366:6 13383:1 13386:2 13413:3 13417:1 13422:1 13425:1 13452:1 13495:1 13513:1 13518:1 13554:1 13562:1 13620:1 13637:1 13657:1 13665:1 13682:2 13686:2 13721:1 13723:5 13729:2 13732:1 13733:3 13735:1 13748:1 13760:1 13763:3 13772:1 13773:3 13797:1 13806:1 13808:1 13811:1 13849:1 13853:1 13860:1 13867:1 13887:1 13891:1 13903:1 13915:1 13919:1 13949:6 13956:1 13957:1 13960:2 13961:1 13983:1 14007:1 14010:1 14011:1 14067:2 14078:1 14085:1 14093:1 14101:1 14102:2 14106:3 14115:1 14121:3 14127:2 14131:1 14148:1 14165:1 14166:1 14177:1 14178:8 14196:1 14200:1 14211:1 14214:1 14223:2 14224:1 14227:1 14232:1 14244:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14288:1 14293:1 14299:2 14306:1 14329:1 14349:2 14350:1 14353:1 14383:4 14405:2 14429:1 14455:1 14462:1 14470:1 14503:1 14506:1 14523:1 14529:2 14533:1 14577:1 14584:1 14593:1 14598:2 14621:1 14639:1 14651:1 14657:1 14668:1 14670:1 14674:1 14686:1 14694:1 14695:1 14700:1 14708:1 14715:1 14724:1 14727:3 14736:1 14737:1 14739:1 14750:1 14776:1 14779:2 14781:1 14785:1 14789:1 14790:1 14792:1 14796:1 14799:1 14810:1 14831:1 14832:1 14853:1 14866:1 14871:2 14884:1 14885:2 14888:1 14899:1 14903:1 14904:1 14906:1 14909:1 14911:6 14913:1 14921:1 14926:1 14928:1 14930:1 14931:1 14934:1 14944:4 14945:2 14947:1 14951:1 14975:2 14993:1 14998:1 15007:1 15015:1 15018:1 15021:2 15022:1 15037:1 15038:2 15049:1 15056:1 15057:1 15058:5 15068:2 15076:1 15079:1 15104:2 15110:2 15116:2 15123:1 15125:1 15129:1 15149:1 15164:1 15171:1 15176:1 15231:1 15248:1 15253:1 15257:3 15258:4 15264:1 15272:1 15297:1 15305:1 15310:1 15311:1 15317:1 15319:3 15322:1 15335:1 15348:9 15355:2 15357:1 15364:1 15365:1 15366:1 15367:1 15370:4 15371:38 15381:1 15385:1 15388:2 15401:1 15425:1 15432:3 15438:2 15441:2 15476:1 15484:1 15489:2 15492:1 15496:1 15519:3 15537:1 15540:1 15551:3 15561:1 15567:2 15572:1 15576:4 15580:1 15581:1 15588:1 15589:1 15617:1 15620:3 15622:1 15631:1 15662:1 15674:1 15676:2 15690:1 15700:1 15709:1 15719:4 15729:1 15746:2 15759:2 15760:1 15778:2 15780:1 15785:1 15793:1 15798:1 15806:1 15828:1 15843:2 15844:1 15853:1 15857:1 15863:1 15866:9 15879:1 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15920:2 15921:1 15925:1 15938:1 15958:3 15993:1 16011:1 16014:1 16021:1 16031:1 16041:1 16044:1 16056:1 16063:1 16098:2 16099:1 16102:2 16103:1 16110:2 16167:1 16168:1 16177:1 16179:1 16195:2 16202:1 16204:2 16218:1 16224:1 16225:1 16240:2 16247:1 16249:2 16250:1 16268:1 16273:1 16278:1 16280:1 16284:1 16302:1 16316:1 16318:1 16342:1 16345:5 16346:1 16347:1 16348:1 16350:1 16352:1 16385:1 16400:2 16416:1 16417:1 16426:2 16446:1 16449:1 16456:2 16458:1 16460:2 16462:1 16481:1 16485:1 16488:1 16490:1 16500:12 16503:1 16540:1 16553:6 16567:2 16569:1 16572:3 16586:2 16589:1 16614:1 16620:1 16623:3 16662:1 16677:1 16681:1 16682:1 16704:1 16717:1 16718:3 16725:1 16729:2 16735:1 16738:1 16763:1 16793:2 16795:1 16814:1 16823:1 16827:2 16836:1 16840:1 16879:1 16884:1 16895:1 16904:1 16923:1 16926:1 16944:1 16945:1 16983:2 16986:2 16998:1 17018:1 17022:1 17024:2 17027:1 17029:1 17032:1 17043:1 17050:1 17061:1 17078:3 17083:1 17086:1 17095:1 17103:1 17110:3 17114:2 17116:1 17124:1 17126:2 17128:1 17129:1 17135:1 17139:1 17144:1 17150:1 17166:1 17179:2 17180:2 17185:1 17191:3 17200:1 17203:2 17206:1 17208:2 17209:1 17225:1 17230:1 17253:1 17264:2 17266:1 17272:1 17273:2 17276:1 17278:3 17280:1 17292:1 17297:2 17319:1 17326:2 17334:2 17346:2 17360:1 17365:1 17388:2 17411:1 17439:2 17447:1 17459:1 17467:1 17474:1 17506:1 17516:1 17531:1 17533:1 17535:1 17547:1 17548:1 17551:1 17559:1 17561:2 17576:1 17579:1 17583:1 17585:1 17634:1 17662:2 17676:1 17699:1 17711:1 17715:1 17724:1 17726:1 17727:1 17728:2 17743:2 17756:2 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:2 17820:1 17854:1 17859:1 17874:4 17892:1 17906:2 17918:1 17923:1 17931:1 17932:1 17940:1 17946:3 17952:3 17974:1 17990:1 18043:2 18044:1 18052:1 18065:1 18069:1 18082:1 18085:2 18115:1 18116:1 18121:1 18131:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:2 18246:1 18254:1 18275:1 18280:1 18288:1 18289:2 18299:1 18301:1 18313:1 18332:1 18335:1 18338:1 18368:2 18370:1 18372:1 18374:1 18382:1 18388:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:8 18465:1 18466:1 18475:2 18492:2 18523:1 18535:1 18550:1 18563:1 18569:1 18598:1 18600:1 18610:1 18611:2 18621:1 18657:2 18659:1 18681:2 18731:1 18748:1 18756:2 18757:1 18759:1 18766:1 18769:1 18793:1 18802:1 18809:1 18811:1 18817:1 18830:1 18841:1 18858:1 18860:1 18863:2 18864:3 18874:1 18891:1 18895:1 18901:1 18903:1 18905:1 18933:1 18947:1 18948:1 18951:1 18965:1 18974:1 18976:1 18986:1 18996:1 18999:1 19001:1 19025:1 19039:2 19056:1 19062:1 19067:1 19081:1 19085:4 19093:2 19107:2 19112:1 19118:1 19145:2 19146:1 19163:1 19197:1 19203:2 19210:1 19214:2 19221:1 19239:1 19242:3 19260:1 19262:3190 19265:1 19288:1 19308:1 19316:1 19320:1 19325:2 19362:1 19392:2 19398:1 19401:1 19403:1 19423:2 19429:2 19434:1 19474:1 19476:1 19479:2 19486:1 19512:1 19515:2 19519:2 19541:2 19547:1 19553:1 19578:1 19586:1 19594:2 19597:1 19601:1 19620:1 19622:1 19627:1 19650:2 19663:3 19670:2 19686:1 19697:1 19707:1 19739:1 19754:1 19758:3 19771:1 19775:1 19776:4 19781:1 19810:1 19812:1 19829:1 19832:1 19861:1 19869:3 19874:1 19903:1 19908:3 19914:1 19920:3 19924:1 19948:1 19957:1 19975:2 20004:1 20006:6 20035:2 20086:1 20093:1 20101:1 20122:1 20125:1 20131:4 20144:1 20146:3 20150:1 20153:1 20167:1 20187:1 20202:2 20205:1 20208:3 20218:2 20219:2 20223:2 20224:1 20225:1 20226:1 20244:1 20252:1 20259:2 20269:1 20273:1 20279:1 20301:1 20302:1 20333:1 20370:2 20374:1 20376:1 20382:1 20397:1 20400:1 20405:1 20410:1 20437:1 20438:1 20452:1 20477:1 20507:1 20518:1 20524:1 20527:1 20547:1 20548:1 20550:2 20575:1 20601:1 20606:1 20609:1 20615:2 20618:1 20620:1 20630:1 20634:1 20642:1 20659:2 20664:1 20666:3 20671:1 20672:1 20675:1 20681:1 20684:1 20691:1 20692:1 20696:1 20700:1 20701:2 20704:2 20706:2 20709:1 20719:1 20721:1 20722:1 20730:1 20737:3 20742:2 20743:1 20752:3 20755:1 20760:1 20779:1 20792:1 20793:1 20797:1 20828:1 20832:1 20837:2 20860:2 20868:1 20920:3 20922:1 20941:1 20959:1 20962:1 20970:1 20977:2 20987:1 20989:1 20993:2 21001:1 21004:1 21008:1 21020:2 21021:1 21022:2 21036:1 21050:1 21052:3 21055:1 21075:1 21084:2 21085:2 21101:2 21112:1 21115:2 21124:2 21160:1 21179:1 21204:1 21205:1 21208:1 21209:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21250:1 21251:1 21260:1 21263:1 21269:3 21274:1 21294:1 21299:1 21300:1 21321:3 21324:1 21328:1 21332:1 21338:1 21346:2 21354:2 21360:1 21368:1 21397:1 21404:1 21405:3 21408:2 21410:1 21414:1 21426:1 21427:2 21429:2 21437:1 21444:1 21452:1 21461:3 21481:2 21482:1 21493:1 21503:1 21521:1 21536:2 21568:1 21570:2 21572:1 21581:1 21598:2 21624:1 21646:1 21665:1 21669:1 21670:1 21690:1 21701:1 21712:1 21741:1 21747:1 21767:1 21776:1 21784:1 21800:1 21803:2 21809:1 21814:1 21822:2 21825:3 21845:2 21848:2 21849:8 21851:1 21870:1 21883:1 21901:3 21907:1 21910:1 21912:1 21921:1 21931:1 21942:1 21952:1 21960:1 21967:1 21970:1 21983:2 21986:1 21990:1 22008:1 22022:1 22026:1 22038:1 22043:1 22049:1 22050:2 22053:2 22055:1 22057:1 22068:1 22084:1 22099:1 22104:1 22109:1 22138:1 22141:1 22144:1 22158:1 22179:3 22185:1 22190:2 22199:1 22214:1 22219:1 22243:1 22257:2 22266:1 22271:1 22277:1 22279:1 22283:1 22305:1 22312:1 22345:2 22349:1 22351:1 22353:6 22363:3 22375:1 22384:1 22395:2 22396:3 22415:1 22445:1 22451:2 22459:1 22468:1 22477:2 22486:2 22495:1 22496:1 22508:1 22512:1 22530:3 22533:1 22537:1 22542:1 22548:2 22554:1 22560:2 22577:2 22579:2 22600:2 22606:2 22609:1 22627:2 22628:2 22638:1 22653:1 22662:2 22667:3 22679:1 22685:1 22695:1 22697:1 22705:1 22723:2 22732:2 22733:1 22743:1 22750:1 22763:1 22770:1 22779:1 22800:1 22803:1 22807:2 22808:1 22811:1 22814:1 22815:2 22853:2 22867:1 22878:1 22886:1 22914:3 22916:1 22919:2 22924:1 22927:1 22928:4 22969:1 22974:1 22985:1 23003:2 23004:2 23006:1 23007:5 23013:1 23027:5 23029:1 23042:1 23049:1 23071:1 23077:1 23089:1 23113:1 23125:1 23133:2 23138:1 23161:7 23165:1 23171:2 23172:1 23176:1 23178:1 23179:1 23224:1 23236:1 23237:1 23241:1 23247:2 23255:1 23260:1 23264:1 23268:2 23297:2 23309:1 23311:4 23336:1 23358:2 23359:1 23363:1 23365:1 23367:1 23372:1 23376:1 23382:1 23383:1 23384:1 23399:1 23409:1 23410:1 23413:1 23420:1 23430:2 23433:1 23436:2 23448:1 23449:1 23458:4 23467:1 23473:1 23477:1 23478:1 23503:1 23505:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:2 23561:3 23562:1 23581:1 23583:1 23613:1 23623:1 23627:1 23632:1 23667:1 23671:1 23688:1 23704:1 23717:1 23722:2 23733:3 23747:3 23774:2 23790:1 23814:4 23831:1 23834:7 23841:1 23856:1 23868:1 23897:1 23912:4 23913:1 23926:2 23927:3 23928:3 23935:1 23938:1 23940:3 23941:6 23949:1 23958:1 23965:1 23977:1 23988:1 24002:1 24003:2 24008:1 24013:1 24021:1 24033:4 24047:1 24051:2 24058:1 24066:1 24068:2 24078:1 24080:1 24089:1 24122:1 24128:1 24157:1 24160:1 24177:1 24192:2 24194:1 24197:2 24199:2 24205:2 24209:1 24212:2 24223:5 24235:1 24249:1 24264:5 24284:1 24292:1 24305:3 24324:1 24360:1 24370:2 24373:1 24375:2 24379:4 24383:1 24388:1 24392:3 24401:1 24404:1 24405:1 24412:1 24415:1 24421:1 24423:1 24424:1 24427:1 24431:1 24436:1 24441:3 24453:2 24471:1 24474:2 24489:1 24494:1 24507:1 24544:1 24547:1 24551:1 24553:1 24559:1 24560:1 24576:2 24623:2 24626:1 24631:1 24636:6 24652:1 24654:1 24655:1 24658:1 24661:1 24662:3 24715:1 24719:1 24734:2 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24791:1 24803:1 24810:1 24835:1 24861:1 24867:1 24882:1 24898:1 24904:10 24906:1 24914:1 24915:2 24918:2 24926:2 24937:1 24946:1 24956:1 24965:3 24992:1 24999:1 25024:1 25026:1 25032:1 25036:2 25044:1 25048:2 25051:4 25054:2 25074:1 25081:3 25099:1 25100:1 25114:1 25120:1 25142:1 25153:2 25157:1 25159:1 25175:1 25176:2 25185:1 25186:1 25187:1 25201:1 25206:1 25211:1 25212:1 25225:2 25231:2 25237:1 25238:1 25248:1 25249:1 25254:1 25263:1 25276:1 25277:1 25301:1 25329:1 25339:2 25340:1 25365:1 25384:1 25393:2 25395:1 25401:1 25404:1 25415:1 25439:1 25447:2 25451:2 25456:1 25462:4 25482:1 25483:2 25484:1 25503:1 25508:1 25512:1 25532:1 25539:1 25543:1 25568:1 25577:1 25600:1 25617:1 25627:1 25631:6 25644:2 25652:2 25655:1 25659:2 25678:1 25680:1 25681:1 25704:2 25705:2 25729:1 25731:1 25736:2 25757:3 25762:1 25773:1 25777:1 25790:1 25794:1 25828:1 25835:2 25845:1 25859:1 25871:1 25879:1 25893:2 25904:1 25905:1 25920:2 25922:4 25933:2 25935:3 25938:2 25943:3 25945:1 25952:1 25953:1 25957:2 25964:1 25974:1 25982:3 25986:1 26013:2 26024:4 26035:2 26041:1 26043:1 26050:1 26052:2 26068:1 26072:1 26084:1 26092:2 26093:2 26095:2 26129:1 26130:2 26138:1 26139:1 26156:1 26160:2 26172:1 26178:2 26188:1 26214:1 26220:1 26226:1 26233:3 26244:1 26268:1 26276:1 26281:3 26284:2 26286:1 26299:1 26307:3 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26387:2 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:2 26511:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:3 26648:1 26649:1 26667:2 26670:4 26689:2 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26738:1 26741:2 26757:1 26767:1 26797:1 26799:1 26803:1 26805:1 26845:1 26846:1 26857:2 26858:2 26871:1 26888:2 26893:2 26900:1 26903:1 26906:1 26911:1 26915:2 26916:1 26918:4 26924:1 26955:3 26965:2 26969:1 26981:1 26984:2 26988:1 26991:2 26992:1 26995:1 27002:1 27006:2 27007:2 27008:1 27015:2 27017:1 27023:3 27024:1 27025:2 27033:2 27039:1 27061:1 27067:1 27069:1 27070:1 27089:1 27095:1 27115:5 27116:2 27164:1 27165:1 27200:1 27201:1 27203:1 27214:1 27219:1 27225:1 27233:1 27260:1 27261:4 27266:1 27267:2 27269:1 27293:1 27294:1 27302:1 27312:1 27318:1 27319:1 27350:1 27353:1 27355:1 27369:1 27384:1 27386:2 27390:2 27395:1 27400:1 27404:1 27410:1 27424:2 27425:1 27430:4 27438:1 27448:1 27451:1 27456:1 27464:1 27471:1 27473:1 27474:1 27480:1 27496:1 27527:1 27536:1 27540:1 27551:2 27554:2 27555:1 27556:1 27557:1 27564:4 27571:1 27579:1 27584:1 27613:2 27618:1 27635:1 27651:1 27657:1 27658:1 27665:1 27668:1 27669:2 27704:1 27713:1 27727:1 27731:1 27739:1 27748:1 27754:1 27776:1 27808:1 27818:2 27820:1 27825:1 27831:1 27848:1 27857:1 27874:3 27877:2 27878:1 27880:2 27881:2 27891:1 27897:3 27905:1 27910:1 27914:1 27944:1 27948:1 27951:1 27952:1 27966:1 27968:1 27985:3 27999:1 28000:1 28001:1 28002:1 28003:2 28011:1 28014:5 28032:1 28097:2 28098:1 28101:1 28109:1 28119:1 28130:2 28138:1 28139:2 28146:1 28155:1 28176:2 28186:2 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28290:1 28302:1 28303:2 28311:1 28315:1 28318:1 28322:1 28330:1 28337:1 28358:1 28378:1 28393:1 28427:1 28432:1 28435:2 28456:1 28462:2 28468:2 28481:1 28495:1 28496:1 28504:1 28522:2 28530:1 28532:1 28536:2 28542:1 28547:1 28555:2 28556:1 28562:2 28577:1 28588:2 28589:2 28591:1 28596:2 28617:12 28622:1 28625:1 28629:1 28633:2 28640:1 28643:1 28662:7 28663:2 28668:1 28671:3 28672:1 28674:1 28684:3 28699:1 28714:1 28719:3 28725:1 28755:1 28759:1 28784:1 28806:3 28817:1 28827:2 28829:1 28835:2 28838:1 28854:1 28864:2 28868:1 28872:2 28889:1 28896:1 28903:1 28907:1 28911:1 28917:2 28938:1 28952:1 28964:1 28969:1 28977:1 28987:1 28990:1 28997:1 29002:1 29014:1 29019:1 29023:3 29025:1 29034:1 29043:1 29046:3 29049:1 29055:1 29074:1 29075:1 29077:1 29081:1 29090:1 29091:1 29098:1 29102:3 29112:1 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29175:1 29177:1 29189:1 29190:1 29196:2 29204:1 29205:1 29233:1 29234:1 29251:1 29252:1 29265:1 29268:1 29286:1 29288:1 29293:1 29297:1 29322:1 29323:1 29324:2 29325:1 29333:1 29336:1 29343:1 29348:1 29366:1 29370:1 29376:2 29391:1 29396:1 29401:1 29453:1 29481:1 29482:1 29483:1 29519:2 29525:1 29556:1 29574:1 29581:1 29628:2 29633:1 29650:1 29695:4 29703:1 29706:1 29711:1 29717:1 29734:1 29738:5 29741:1 29743:1 29746:1 29753:1 29754:1 29760:1 29764:2 29773:1 29790:2 29795:1 29797:1 29807:2 29818:1 29832:1 29840:1 29846:1 29848:2 29849:1 29851:1 29854:4 29864:1 29868:1 29888:1 29889:1 29891:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:2 29970:1 29972:1 29974:1 29980:1 29996:2
17 9:1 12:1 14:2 24:1 25:1 32:1 35:1 41:1 50:1 57:2 65:1 78:1 100:1 110:1 148:1 157:7 167:1 171:2 174:1 180:1 190:1 212:1 213:1 214:1 226:1 241:2 253:1 258:4 271:1 282:2 284:2 307:1 318:1 319:1 324:1 330:3 377:1 380:2 381:1 393:1 399:1 452:1 462:1 464:2 470:1 476:1 477:1 486:3 492:1 542:1 555:1 591:3 597:1 599:1 602:1 605:1 607:1 618:1 648:1 657:1 660:4 671:1 677:3 726:1 747:1 762:1 765:1 771:1 779:1 788:1 796:3 811:6 817:1 867:2 869:1 873:1 904:1 906:1 908:2 912:6 913:3 915:1 917:2 919:1 921:5 924:2 925:3 926:1 931:1 935:1 936:2 940:1 942:2 945:2 960:1 966:4 967:2 968:1 972:2 975:1 991:1 1010:3 1031:1 1034:1 1036:2 1039:1 1040:2 1052:1 1054:1 1055:1 1059:1 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:3 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:1 1156:2 1163:1 1176:1 1186:1 1193:2 1197:2 1207:1 1238:1 1247:1 1252:1 1260:2 1262:1 1266:1 1270:1 1283:1 1291:1 1296:1 1297:1 1301:1 1317:1 1318:1 1321:1 1332:1 1334:1 1335:1 1337:1 1351:1 1356:1 1362:1 1365:1 1374:1 1382:1 1385:1 1387:2 1393:1 1413:1 1414:3 1415:1 1418:1 1425:1 1460:1 1463:1 1481:1 1485:1 1486:4 1498:1 1513:1 1516:1 1518:1 1521:1 1528:1 1536:2 1540:1 1543:1 1546:1 1567:2 1571:1 1588:4 1600:1 1601:1 1603:1 1611:1 1614:1 1615:1 1619:1 1634:2 1645:1 1663:1 1677:1 1682:2 1687:1 1688:1 1691:3 1708:1 1715:1 1716:1 1719:1 1727:2 1735:1 1736:1 1741:1 1746:1 1750:2 1754:1 1759:1 1760:1 1761:1 1764:1 1788:2 1795:1 1797:1 1803:2 1804:1 1812:3 1813:1 1824:1 1826:1 1827:1 1828:1 1839:1 1849:1 1856:1 1858:2 1863:3 1864:2 1865:1 1874:1 1877:1 1881:1 1892:1 1902:1 1903:1 1913:1 1921:3 1927:2 1933:2 1935:1 1936:1 1939:1 1963:1 1979:1 1981:1 1994:1 2000:1 2011:2 2013:1 2024:1 2025:2 2036:1 2041:1 2057:1 2058:1 2077:1 2086:2 2128:1 2131:2 2154:2 2161:1 2170:1 2181:1 2204:1 2249:1 2293:3 2330:1 2339:1 2360:1 2365:1 2366:1 2386:1 2404:1 2406:2 2412:1 2421:1 2428:4 2435:2 2436:1 2438:1 2441:1 2448:5 2452:1 2455:2 2457:2 2459:3 2461:1 2465:1 2470:1 2473:6 2483:1 2497:2 2518:2 2532:1 2534:2 2535:1 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:1 2631:6 2636:2 2655:2 2666:1 2667:1 2671:1 2679:1 2680:2 2685:1 2686:1 2692:1 2700:1 2701:1 2702:1 2705:1 2706:3 2709:1 2713:1 2718:1 2728:2 2744:1 2753:1 2758:1 2760:2 2784:1 2786:1 2819:2 2824:1 2829:1 2831:1 2833:1 2858:1 2871:1 2881:1 2883:1 2890:1 2892:1 2906:1 2908:1 2911:3 2921:1 2978:1 2983:1 2986:1 2989:2 2990:2 2997:1 3001:1 3007:1 3017:1 3020:1 3022:1 3043:1 3045:1 3052:1 3062:4 3070:5 3080:5 3100:1 3116:1 3119:1 3120:2 3131:2 3134:1 3150:1 3160:1 3165:1 3166:1 3183:3 3190:3 3194:2 3197:2 3203:1 3219:2 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3316:1 3328:1 3331:1 3337:1 3338:2 3362:1 3369:1 3370:1 3374:1 3422:1 3423:1 3433:3 3502:1 3525:1 3544:2 3558:1 3586:1 3624:1 3627:2 3632:1 3635:1 3653:1 3654:3 3674:1 3676:1 3677:1 3696:1 3724:2 3725:1 3729:1 3740:3 3746:1 3748:1 3749:1 3751:5 3762:1 3767:1 3774:1 3781:1 3790:2 3802:1 3820:1 3833:1 3854:3 3858:1 3863:1 3869:3 3872:1 3883:2 3886:1 3894:2 3914:2 3924:1 3927:1 3953:1 3955:1 3956:1 3963:1 3984:3 3986:1 3990:1 3991:1 4005:3 4013:1 4039:1 4057:2 4058:1 4062:3 4080:1 4092:3 4094:1 4099:1 4100:1 4114:1 4118:3 4122:1 4127:1 4137:1 4141:2 4150:2 4170:1 4171:1 4179:1 4180:1 4189:1 4191:1 4233:1 4238:1 4262:2 4268:1 4283:1 4284:1 4288:1 4289:1 4296:1 4306:1 4307:1 4310:1 4318:1 4324:1 4334:1 4338:2 4348:1 4358:2 4359:1 4366:1 4374:3 4413:1 4435:1 4437:1 4440:1 4458:1 4465:1 4467:2 4468:2 4471:1 4472:1 4473:1 4484:1 4522:2 4526:3 4564:1 4568:1 4575:4 4578:1 4579:1 4581:1 4588:1 4589:2 4597:1 4601:5 4614:1 4627:1 4628:1 4631:1 4646:1 4650:2 4655:1 4656:1 4667:2 4669:1 4701:1 4707:1 4708:2 4718:1 4729:1 4744:1 4769:1 4780:1 4782:1 4783:1 4789:2 4790:1 4794:1 4799:1 4801:6 4810:3 4822:1 4827:1 4831:1 4842:1 4867:2 4882:5 4899:1 4901:2 4914:1 4926:1 4933:1 4952:1 4953:2 4959:5 4967:1 4968:1 4978:1 4984:2 4987:1 4990:1 4992:3 4997:1 4999:4 5012:1 5017:1 5021:1 5029:2 5031:2 5055:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5116:1 5117:1 5118:1 5119:1 5124:1 5129:1 5130:2 5132:1 5136:2 5138:1 5145:3 5149:2 5154:1 5155:1 5156:1 5175:1 5181:1 5185:1 5201:1 5202:1 5220:1 5224:1 5264:1 5276:1 5280:1 5284:1 5310:1 5313:2 5318:1 5321:1 5344:2 5354:5 5361:1 5366:1 5375:2 5377:1 5401:1 5404:1 5416:2 5420:1 5440:1 5450:1 5458:2 5483:1 5486:1 5495:1 5497:1 5511:2 5513:1 5529:1 5533:1 5541:2 5556:1 5601:1 5606:2 5618:1 5619:2 5625:1 5630:1 5635:1 5636:1 5640:1 5651:1 5674:1 5682:1 5723:2 5726:1 5728:1 5731:1 5740:1 5741:4 5749:1 5772:2 5784:1 5798:6 5809:1 5814:1 5835:1 5844:1 5846:1 5855:1 5856:1 5865:1 5874:1 5877:1 5885:1 5889:3 5893:2 5895:1 5900:1 5904:2 5911:1 5924:1 5927:2 5929:1 5935:1 5951:1 5959:2 5962:1 5970:1 5971:1 5989:1 5999:1 6005:1 6007:1 6011:1 6018:2 6022:3 6026:2 6027:9 6034:1 6036:2 6055:2 6061:1 6065:1 6082:1 6107:3 6131:1 6134:2 6162:2 6168:1 6169:5 6170:1 6184:2 6185:1 6188:1 6190:1 6202:4 6221:2 6239:1 6245:1 6247:1 6264:2 6265:3 6268:1 6288:2 6293:1 6298:1 6301:1 6303:1 6306:1 6309:1 6318:4 6320:1 6343:1 6367:2 6377:1 6382:3 6383:2 6389:2 6391:1 6393:1 6400:1 6406:1 6424:2 6450:1 6456:1 6462:1 6465:1 6467:1 6469:1 6482:4 6497:1 6499:1 6505:1 6517:1 6541:9 6552:1 6555:1 6568:1 6570:1 6580:3 6584:2 6586:1 6589:1 6590:1 6596:1 6600:3 6601:2 6602:1 6616:1 6625:1 6632:1 6636:1 6644:1 6646:1 6647:1 6655:1 6657:1 6664:3 6670:1 6682:1 6688:1 6730:1 6750:3 6753:1 6761:1 6764:1 6782:2 6786:1 6790:1 6795:2 6809:1 6818:2 6821:1 6826:2 6837:1 6866:2 6868:4 6870:1 6881:1 6898:1 6903:1 6910:1 6912:1 6913:1 6922:1 6923:1 6964:1 6970:1 6980:1 6985:1 6998:3 7022:1 7032:1 7049:1 7054:1 7069:3 7072:2 7073:1 7084:1 7096:1 7098:1 7103:1 7104:1 7108:2 7113:4 7121:1 7128:1 7135:1 7140:1 7159:1 7186:1 7196:2 7200:1 7231:1 7237:2 7248:2 7251:1 7253:2 7270:4 7290:2 7295:1 7307:1 7316:1 7318:1 7323:2 7327:1 7331:1 7337:1 7341:1 7369:1 7372:2 7375:2 7388:1 7397:1 7401:1 7410:1 7415:3 7433:1 7434:1 7444:1 7446:1 7449:1 7463:2 7486:1 7493:1 7504:3 7509:1 7529:2 7532:1 7548:1 7551:1 7554:1 7563:1 7575:1 7578:1 7585:1 7602:2 7607:2 7613:1 7621:1 7623:1 7650:2 7664:4 7669:1 7670:1 7684:1 7696:1 7700:3 7705:1 7706:1 7719:1 7721:1 7730:2 7737:1 7747:1 7755:2 7757:1 7762:1 7763:3 7764:1 7781:1 7788:3 7791:2 7792:8 7793:3 7794:1 7796:1 7797:2 7801:6 7802:1 7803:1 7810:2 7811:3 7813:1 7814:4 7816:2 7828:1 7847:1 7849:2 7857:3 7864:1 7871:1 7888:1 7900:1 7928:1 7943:1 7944:1 7949:1 7954:2 7960:1 7963:1 7980:2 7992:2 7996:1 8013:1 8014:2 8042:1 8043:1 8058:18 8065:1 8074:1 8082:5 8083:2 8091:2 8110:1 8115:2 8127:1 8134:2 8146:1 8151:4 8157:2 8163:1 8168:1 8189:1 8199:1 8215:1 8233:4 8252:1 8266:1 8285:1 8288:1 8292:2 8320:1 8329:3 8336:1 8338:1 8340:1 8346:1 8354:1 8374:1 8407:2 8428:1 8441:1 8468:5 8471:1 8480:1 8482:2 8496:1 8501:7 8505:1 8508:1 8512:2 8513:1 8519:1 8525:1 8539:1 8544:1 8548:1 8554:1 8556:1 8560:1 8565:2 8571:1 8585:1 8589:1 8590:1 8591:6 8624:2 8629:2 8641:2 8658:1 8662:1 8664:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8740:1 8744:3 8749:3 8754:1 8756:1 8760:1 8765:1 8771:1 8776:2 8783:1 8787:1 8790:2 8799:1 8803:1 8804:1 8805:1 8806:1 8824:1 8827:1 8830:1 8835:1 8845:2 8849:1 8864:1 8866:1 8870:1 8872:2 8877:1 8885:1 8900:5 8906:1 8908:2 8909:1 8955:1 8957:1 8958:2 8962:2 8964:4 8965:1 8969:1 8972:1 8980:1 8986:1 8993:2 8998:1 9008:1 9009:1 9035:1 9045:1 9051:1 9078:3 9089:1 9092:1 9098:2 9118:1 9119:1 9122:1 9125:1 9158:2 9164:7 9177:1 9181:1 9189:1 9209:1 9213:1 9241:1 9256:2 9268:1 9269:1 9276:1 9288:1 9303:1 9311:2 9316:1 9322:2 9324:1 9336:2 9342:1 9374:1 9395:6 9396:2 9411:2 9423:1 9434:1 9436:1 9450:1 9452:1 9457:2 9467:1 9477:1 9482:2 9488:1 9502:1 9507:3 9508:1 9527:1 9538:1 9539:1 9571:3 9586:1 9605:1 9608:1 9610:1 9615:1 9626:1 9628:3 9651:1 9660:1 9666:1 9667:2 9684:1 9687:4 9689:1 9694:1 9699:1 9703:1 9706:1 9711:2 9725:1 9726:1 9737:1 9742:1 9754:1 9762:1 9766:1 9780:5 9785:1 9790:1 9805:1 9809:1 9812:1 9813:2 9816:1 9830:1 9834:1 9852:1 9854:1 9862:2 9865:1 9876:1 9883:2 9896:1 9902:1 9914:1 9928:1 9935:1 9939:1 9942:1 9951:2 9952:1 9954:2 9956:1 9963:1 9979:1 9981:1 9987:2 10005:3 10006:1 10011:1 10032:3 10037:3 10042:1 10047:1 10055:1 10061:4 10062:1 10064:3 10071:1 10073:1 10074:1 10088:2 10089:2 10099:1 10104:1 10110:1 10117:1 10123:1 10124:1 10126:3 10135:3 10137:1 10151:1 10156:1 10176:2 10177:1 10182:1 10188:1 10204:6 10208:1 10221:1 10223:2 10233:1 10255:3 10256:1 10267:2 10301:1 10319:1 10328:1 10330:1 10339:1 10346:1 10347:1 10359:1 10372:1 10380:1 10381:1 10394:1 10399:1 10422:1 10425:1 10430:3 10468:1 10472:1 10474:1 10482:2 10487:1 10492:2 10498:4 10500:1 10502:2 10503:2 10505:1 10506:1 10519:1 10544:1 10547:1 10548:1 10549:1 10550:1 10554:1 10556:2 10557:1 10560:3 10561:1 10572:4 10580:2 10592:1 10593:1 10594:3 10597:5 10617:1 10620:1 10629:2 10647:1 10650:1 10681:5 10689:2 10696:1 10706:1 10738:1 10746:1 10757:1 10761:3 10772:3 10775:2 10777:1 10787:1 10795:2 10798:1 10801:1 10806:1 10820:1 10828:1 10844:2 10854:1 10857:1 10863:2 10864:1 10876:1 10897:1 10899:1 10906:1 10914:1 10916:2 10918:1 10920:1 10925:2 10926:1 10946:1 10950:1 10964:5 10966:1 10967:1 10969:1 10973:3 10979:1 10982:1 10984:1 10988:1 10989:1 10995:1 10996:2 10997:1 11005:1 11010:1 11011:1 11021:1 11026:1 11027:3 11035:1 11041:1 11050:2 11062:1 11089:1 11096:1 11097:2 11106:1 11114:2 11131:1 11172:1 11173:1 11183:1 11187:1 11190:2 11216:1 11227:1 11228:1 11233:1 11249:2 11258:7 11263:1 11267:2 11269:1 11282:1 11286:2 11299:1 11304:1 11313:1 11326:3 11354:1 11359:1 11371:1 11373:1 11379:2 11407:1 11413:1 11427:1 11430:1 11442:1 11449:1 11457:1 11465:1 11470:1 11472:1 11485:4 11486:3 11495:1 11499:2 11504:1 11505:2 11514:1 11521:1 11522:3 11534:1 11536:5 11560:1 11563:1 11566:1 11567:4 11576:1 11583:1 11585:3 11600:1 11618:1 11622:1 11632:1 11637:1 11642:2 11659:1 11660:2 11687:1 11721:3 11728:1 11732:1 11738:1 11740:1 11747:1 11755:1 11765:2 11770:3 11771:2 11802:1 11805:4 11808:1 11811:1 11830:1 11836:1 11846:1 11854:1 11856:1 11860:1 11882:2 11884:3 11888:1 11895:3 11899:1 11913:1 11922:1 11926:3 11927:1 11932:1 11936:2 11943:1 11947:2 11959:4 11971:1 11996:5 12001:1 12008:1 12010:1 12024:1 12026:1 12066:1 12073:1 12074:1 12078:1 12080:1 12124:1 12127:2 12145:1 12157:6 12169:1 12179:1 12182:1 12189:1 12193:1 12215:2 12221:1 12225:1 12231:1 12236:1 12247:1 12250:2 12253:1 12265:1 12277:2 12282:1 12283:3 12290:1 12292:1 12298:2 12299:2 12305:1 12342:1 12347:1 12351:1 12362:1 12364:1 12376:1 12380:2 12395:1 12411:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12474:1 12476:3 12479:1 12480:1 12482:1 12486:3 12490:1 12491:5 12492:1 12494:1 12498:1 12501:2 12503:2 12506:1 12538:1 12541:2 12550:1 12556:1 12558:1 12564:1 12583:1 12584:2 12585:2 12587:2 12591:1 12594:2 12596:1 12614:2 12620:1 12625:2 12626:1 12629:1 12631:2 12655:2 12666:1 12670:1 12678:1 12681:1 12683:1 12694:1 12696:2 12698:2 12699:1 12700:3 12705:2 12712:3 12715:1 12729:1 12730:1 12743:1 12749:1 12776:1 12803:2 12806:1 12823:1 12829:1 12831:2 12838:1 12841:1 12842:1 12844:1 12850:1 12861:1 12871:1 12873:1 12874:1 12883:1 12893:1 12896:2 12897:1 12901:1 12913:1 12927:1 12967:1 12972:1 13007:1 13009:1 13012:1 13013:2 13022:2 13033:1 13034:1 13068:1 13075:1 13095:2 13116:2 13117:1 13125:1 13129:1 13133:1 13150:3 13160:1 13162:1 13168:1 13182:2 13184:1 13212:1 13233:6 13252:1 13254:2 13256:1 13260:1 13263:3 13318:5 13341:1 13355:2 13358:1 13366:6 13383:1 13386:2 13413:3 13417:1 13422:1 13425:1 13452:1 13495:1 13513:1 13518:1 13554:1 13562:1 13620:1 13637:1 13657:1 13665:1 13682:2 13686:2 13721:1 13723:5 13729:2 13732:1 13733:3 13735:1 13748:1 13760:1 13763:3 13772:1 13773:3 13797:1 13806:1 13808:1 13811:1 13849:1 13853:1 13860:1 13867:1 13887:1 13891:1 13903:1 13915:1 13919:1 13949:6 13956:1 13957:1 13960:2 13961:1 13983:1 14007:1 14010:1 14011:1 14021:1 14067:2 14078:1 14085:1 14093:1 14101:1 14102:2 14106:5 14115:1 14121:3 14127:2 14131:1 14148:1 14165:1 14166:1 14177:1 14178:8 14196:1 14200:1 14211:1 14214:2 14223:2 14224:1 14227:1 14232:1 14244:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14288:1 14293:1 14299:2 14306:1 14329:1 14349:2 14350:1 14353:1 14383:4 14405:2 14429:1 14455:1 14462:1 14470:1 14503:1 14506:1 14523:1 14529:2 14533:1 14577:1 14584:1 14593:1 14598:2 14621:1 14639:1 14651:1 14657:1 14668:1 14670:1 14674:1 14686:1 14694:1 14695:1 14700:1 14708:1 14715:1 14724:1 14727:3 14736:1 14737:1 14739:1 14750:1 14776:2 14779:2 14781:1 14785:1 14789:1 14790:1 14792:1 14796:1 14799:1 14810:1 14831:1 14832:1 14853:1 14866:1 14871:2 14884:1 14885:2 14888:1 14899:1 14903:1 14904:1 14906:1 14909:1 14911:7 14913:1 14921:1 14926:1 14928:1 14930:1 14931:1 14934:1 14944:4 14945:2 14947:2 14951:1 14975:2 14993:1 14998:1 15004:1 15007:1 15015:1 15018:1 15021:2 15022:1 15037:1 15038:2 15049:1 15053:1 15056:1 15057:1 15058:5 15068:2 15076:1 15079:1 15104:2 15110:2 15116:2 15123:1 15125:1 15129:1 15149:1 15164:1 15171:1 15176:1 15231:1 15248:1 15253:1 15257:3 15258:4 15264:1 15272:1 15297:1 15305:1 15310:1 15311:1 15317:1 15319:3 15322:1 15335:1 15348:9 15355:2 15357:1 15364:1 15365:1 15366:1 15367:1 15370:4 15371:39 15381:1 15385:1 15388:2 15401:1 15425:1 15432:3 15438:2 15441:2 15476:1 15484:1 15489:2 15492:1 15496:2 15519:3 15537:1 15540:1 15551:3 15561:1 15567:2 15572:1 15576:4 15580:1 15581:1 15588:1 15589:1 15617:1 15620:3 15622:1 15631:1 15662:1 15674:1 15676:2 15690:1 15700:1 15709:1 15719:4 15729:1 15746:2 15759:2 15760:1 15778:2 15780:1 15785:1 15793:1 15798:1 15806:1 15828:1 15843:2 15844:1 15853:1 15857:1 15863:1 15866:9 15879:2 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15920:2 15921:1 15925:1 15932:1 15938:1 15958:3 15993:1 16011:1 16014:1 16021:1 16031:1 16041:1 16044:1 16056:1 16063:1 16098:2 16099:1 16102:2 16103:1 16110:2 16167:2 16168:1 16177:1 16179:1 16195:2 16202:1 16204:2 16218:1 16224:1 16225:1 16240:2 16247:1 16249:2 16250:1 16268:1 16273:1 16278:1 16280:1 16284:1 16302:1 16316:1 16318:1 16342:1 16345:5 16346:1 16347:1 16348:1 16350:1 16352:1 16385:1 16400:2 16416:1 16417:1 16426:2 16446:1 16449:1 16456:2 16458:1 16460:2 16462:1 16481:1 16485:1 16488:1 16490:1 16500:12 16503:1 16540:1 16553:6 16567:2 16569:1 16572:3 16586:2 16589:1 16614:1 16620:1 16623:3 16662:1 16677:1 16681:1 16682:1 16704:1 16717:1 16718:3 16725:1 16729:3 16735:1 16738:1 16763:1 16768:1 16793:2 16795:1 16814:1 16823:1 16827:2 16836:1 16840:1 16879:1 16884:1 16895:1 16904:1 16923:1 16926:1 16944:1 16945:1 16983:2 16986:2 16998:1 17018:1 17022:1 17024:2 17027:1 17029:1 17032:1 17043:1 17050:1 17061:1 17078:3 17083:1 17086:1 17095:1 17103:1 17110:3 17114:2 17116:1 17124:1 17126:2 17128:1 17129:1 17135:1 17139:1 17144:1 17150:1 17166:1 17179:2 17180:2 17185:1 17191:3 17200:1 17203:2 17206:1 17208:2 17209:1 17225:1 17230:1 17253:1 17264:2 17266:1 17272:1 17273:2 17276:1 17278:4 17280:1 17292:1 17297:2 17319:1 17326:2 17334:2 17346:2 17360:1 17365:1 17388:2 17411:1 17439:2 17447:1 17459:1 17467:1 17474:1 17506:1 17516:1 17531:1 17533:1 17535:1 17547:1 17548:1 17551:1 17559:1 17561:2 17576:1 17579:1 17583:1 17585:1 17634:1 17662:2 17676:1 17699:1 17711:1 17715:1 17724:1 17726:1 17727:1 17728:2 17743:2 17756:2 17758:1 17763:1 17765:1 17788:1 17789:1 17796:1 17797:1 17798:2 17815:1 17820:1 17854:1 17859:1 17874:4 17892:1 17906:2 17918:1 17923:1 17931:1 17932:1 17940:1 17946:3 17952:3 17974:1 17990:1 18043:2 18044:1 18052:1 18057:1 18065:1 18069:1 18082:1 18085:2 18115:1 18116:1 18121:1 18131:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:2 18246:1 18254:1 18275:1 18280:1 18288:1 18289:2 18299:1 18301:1 18313:1 18332:1 18335:1 18338:1 18368:2 18370:1 18372:1 18374:1 18382:1 18388:1 18400:1 18409:1 18422:1 18427:1 18443:1 18450:8 18465:1 18466:1 18475:2 18492:2 18523:1 18535:1 18550:1 18563:1 18569:1 18598:1 18600:1 18610:1 18611:2 18621:1 18657:2 18659:1 18681:2 18731:1 18748:1 18756:2 18757:1 18759:1 18766:1 18769:1 18793:1 18802:1 18809:1 18811:1 18817:1 18830:1 18841:1 18858:1 18860:1 18863:2 18864:3 18874:1 18891:1 18895:1 18901:1 18903:1 18905:1 18933:1 18947:1 18948:1 18951:1 18965:1 18974:1 18976:1 18986:1 18996:1 18999:1 19001:1 19025:1 19039:2 19056:1 19062:1 19067:1 19081:1 19085:4 19093:2 19107:2 19112:1 19118:1 19145:2 19146:1 19163:1 19197:1 19203:2 19210:1 19214:2 19221:1 19239:1 19242:3 19260:1 19262:3280 19265:1 19288:1 19308:1 19316:1 19320:1 19325:2 19362:1 19392:2 19398:1 19401:1 19403:1 19423:3 19429:2 19434:1 19474:1 19476:1 19479:2 19486:1 19512:1 19515:2 19519:2 19541:2 19547:1 19553:1 19578:1 19586:1 19594:2 19597:1 19601:1 19620:1 19622:1 19627:1 19650:2 19663:3 19670:2 19686:1 19697:1 19707:1 19739:1 19754:1 19758:3 19771:1 19775:1 19776:5 19781:1 19810:1 19812:1 19829:1 19832:1 19861:1 19869:3 19874:1 19903:1 19908:3 19914:1 19920:3 19924:1 19948:1 19957:1 19975:2 20004:1 20006:6 20019:1 20023:1 20035:2 20086:1 20093:1 20101:1 20122:1 20125:1 20131:4 20144:1 20146:3 20150:1 20153:1 20167:1 20187:1 20202:2 20205:1 20208:3 20218:2 20219:2 20223:2 20224:1 20225:1 20226:1 20244:1 20252:1 20259:2 20269:1 20273:1 20279:1 20301:1 20302:1 20314:1 20333:1 20370:2 20374:1 20376:1 20382:1 20397:1 20400:1 20405:1 20410:1 20437:1 20438:1 20452:1 20477:1 20507:1 20518:1 20524:1 20527:1 20547:1 20548:1 20550:2 20575:1 20601:1 20606:1 20609:1 20615:2 20618:1 20620:1 20630:1 20634:1 20642:1 20659:2 20664:1 20666:3 20671:1 20672:1 20675:1 20681:1 20684:1 20691:1 20692:2 20696:1 20700:1 20701:3 20704:2 20706:2 20709:1 20719:1 20721:1 20722:1 20730:1 20737:3 20742:2 20743:1 20752:3 20755:1 20760:1 20779:1 20792:1 20793:1 20797:1 20828:1 20832:1 20837:2 20860:2 20868:1 20920:3 20922:1 20941:1 20959:1 20962:1 20970:1 20977:2 20987:1 20989:1 20993:2 21001:1 21004:1 21008:1 21020:2 21021:1 21022:2 21036:1 21050:1 21052:3 21055:1 21075:1 21084:2 21085:2 21101:2 21112:1 21115:2 21124:2 21160:1 21179:1 21204:1 21205:1 21208:1 21209:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:1 21250:1 21251:1 21260:1 21263:1 21269:3 21274:1 21294:1 21299:1 21300:1 21321:3 21324:1 21328:1 21332:1 21338:1 21346:2 21354:2 21360:1 21368:1 21397:1 21404:1 21405:3 21408:2 21410:1 21414:1 21426:1 21427:2 21429:2 21437:1 21444:1 21452:1 21461:4 21481:2 21482:1 21493:1 21503:1 21521:1 21536:2 21568:1 21570:3 21572:1 21581:1 21598:2 21624:1 21646:1 21665:1 21669:1 21670:1 21690:1 21701:1 21712:1 21741:1 21747:1 21767:1 21776:1 21784:1 21800:1 21803:2 21809:1 21814:1 21822:2 21825:3 21845:2 21848:2 21849:8 21851:1 21870:1 21883:1 21901:3 21907:1 21910:1 21912:2 21921:1 21931:1 21942:1 21952:1 21960:1 21967:1 21970:1 21983:2 21986:1 21990:1 22008:1 22022:1 22026:1 22038:1 22043:1 22049:1 22050:2 22053:2 22055:1 22057:1 22068:1 22084:1 22099:1 22104:1 22109:1 22138:1 22141:1 22144:1 22158:1 22179:3 22185:1 22190:2 22199:1 22214:1 22219:1 22243:1 22257:2 22266:1 22271:1 22277:1 22279:1 22283:1 22305:1 22312:1 22345:3 22349:1 22351:1 22353:6 22363:3 22375:1 22384:1 22393:1 22395:2 22396:3 22415:1 22445:1 22451:2 22459:1 22468:1 22477:2 22486:2 22495:1 22496:1 22508:1 22512:1 22530:3 22533:1 22537:1 22542:1 22548:2 22554:1 22560:2 22577:2 22579:2 22600:2 22606:2 22609:1 22627:2 22628:2 22638:1 22653:1 22662:2 22667:3 22679:1 22685:1 22695:1 22697:1 22705:1 22723:2 22732:2 22733:1 22743:1 22750:1 22763:1 22770:1 22779:1 22800:1 22803:1 22807:2 22808:1 22811:1 22814:1 22815:2 22853:2 22854:1 22867:1 22878:1 22886:2 22914:3 22916:1 22919:2 22924:1 22927:1 22928:4 22969:1 22974:1 22985:1 23003:2 23004:2 23006:1 23007:5 23013:1 23027:5 23029:1 23042:1 23049:1 23071:1 23077:1 23089:1 23113:1 23125:1 23133:2 23136:1 23138:1 23161:7 23165:1 23171:2 23172:1 23176:1 23178:1 23179:1 23224:1 23236:1 23237:1 23241:1 23247:2 23255:1 23260:1 23264:1 23268:2 23297:2 23309:2 23311:4 23336:1 23358:2 23359:1 23363:1 23365:1 23367:1 23372:1 23376:1 23382:1 23383:1 23384:1 23399:1 23409:1 23410:1 23413:1 23414:1 23420:1 23430:2 23433:1 23435:1 23436:2 23448:1 23449:1 23458:4 23467:1 23473:1 23477:2 23478:1 23503:1 23505:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:2 23561:3 23562:1 23581:1 23583:1 23613:1 23623:1 23627:1 23632:1 23667:1 23671:1 23688:1 23704:1 23717:1 23722:2 23733:3 23747:3 23774:2 23790:1 23814:4 23831:1 23834:7 23841:1 23856:1 23868:1 23897:1 23912:4 23913:2 23926:3 23927:4 23928:3 23935:1 23938:1 23940:3 23941:7 23949:1 23958:1 23965:1 23977:1 23988:1 24002:1 24003:2 24008:1 24013:1 24021:1 24033:4 24047:1 24051:2 24058:1 24066:1 24068:2 24072:1 24078:1 24080:1 24089:1 24122:1 24128:1 24157:1 24160:1 24177:1 24192:2 24194:1 24197:2 24199:2 24205:2 24209:1 24212:2 24223:5 24235:1 24238:1 24249:1 24264:5 24284:1 24292:1 24305:3 24324:1 24360:1 24370:2 24373:1 24375:2 24379:4 24383:1 24388:1 24392:3 24401:1 24404:1 24405:1 24412:1 24415:1 24421:1 24423:1 24424:1 24427:1 24431:1 24436:1 24441:3 24453:3 24471:2 24474:2 24489:1 24494:1 24507:1 24544:1 24547:1 24551:1 24553:1 24559:1 24560:1 24576:2 24623:2 24626:1 24631:1 24636:6 24652:1 24654:1 24655:1 24658:1 24661:1 24662:3 24715:1 24719:1 24734:2 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24791:1 24803:1 24810:1 24835:1 24861:1 24867:1 24882:1 24898:1 24904:10 24906:1 24913:1 24914:1 24915:2 24918:2 24926:2 24937:1 24946:1 24956:1 24965:3 24992:1 24999:1 25024:1 25026:1 25032:1 25036:2 25044:1 25048:2 25051:5 25054:2 25074:1 25081:3 25099:1 25100:1 25102:1 25114:1 25120:1 25142:1 25153:2 25157:1 25159:1 25175:1 25176:2 25185:1 25186:1 25187:1 25201:1 25206:1 25211:1 25212:1 25225:2 25231:2 25237:1 25238:1 25248:1 25249:1 25254:1 25263:1 25276:1 25277:1 25301:1 25314:1 25329:1 25339:2 25340:1 25365:1 25384:1 25393:2 25395:1 25401:1 25404:1 25415:1 25439:1 25447:2 25451:2 25456:1 25462:4 25482:1 25483:2 25484:1 25503:1 25508:1 25512:1 25532:1 25539:1 25543:2 25568:1 25577:1 25600:1 25617:1 25627:1 25631:6 25644:2 25652:2 25655:1 25659:2 25678:1 25680:1 25681:1 25704:2 25705:2 25729:1 25731:1 25736:2 25757:3 25762:1 25773:1 25777:1 25790:1 25794:2 25828:1 25835:2 25845:1 25859:1 25871:1 25879:1 25893:2 25904:1 25905:1 25920:2 25922:4 25933:2 25935:4 25938:2 25943:3 25945:1 25950:1 25952:1 25953:1 25957:2 25964:1 25974:1 25982:3 25986:1 26013:2 26024:4 26035:2 26041:1 26043:1 26050:1 26052:2 26068:1 26072:1 26084:1 26092:2 26093:2 26095:2 26129:1 26130:2 26138:1 26139:1 26156:1 26160:2 26172:1 26178:2 26188:1 26214:1 26220:1 26226:1 26233:3 26244:1 26268:1 26276:1 26281:3 26284:2 26286:1 26299:1 26307:4 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26387:2 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:2 26511:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:3 26648:1 26649:1 26667:2 26670:4 26689:2 26696:1 26702:1 26708:1 26714:1 26726:1 26729:1 26738:1 26741:2 26757:1 26767:1 26797:1 26799:1 26803:1 26805:1 26845:1 26846:1 26857:2 26858:2 26871:1 26884:1 26888:2 26893:2 26900:1 26903:1 26906:1 26911:1 26915:2 26916:1 26918:4 26924:1 26955:3 26965:2 26969:1 26981:1 26984:2 26988:1 26991:2 26992:1 26995:1 27002:1 27006:2 27007:2 27008:1 27015:2 27017:1 27023:3 27024:1 27025:2 27033:2 27039:1 27041:1 27061:1 27067:1 27069:1 27070:1 27089:1 27095:1 27115:5 27116:2 27164:1 27165:1 27200:1 27201:1 27203:1 27214:1 27219:1 27225:1 27233:1 27260:1 27261:4 27266:1 27267:3 27269:1 27293:1 27294:1 27302:1 27312:2 27318:1 27319:1 27350:1 27353:1 27355:1 27369:1 27384:1 27386:2 27390:2 27395:3 27400:1 27404:1 27410:1 27424:2 27425:1 27430:4 27438:1 27448:1 27451:1 27456:1 27464:1 27471:1 27473:1 27474:1 27480:1 27496:1 27527:1 27536:1 27540:2 27551:2 27554:2 27555:1 27556:1 27557:1 27564:4 27571:1 27579:1 27584:1 27613:2 27618:1 27635:1 27651:1 27657:1 27658:1 27665:1 27668:1 27669:2 27704:1 27713:1 27727:1 27731:1 27739:1 27748:1 27754:1 27776:1 27808:1 27818:2 27820:1 27825:1 27831:1 27848:1 27857:1 27874:3 27877:2 27878:1 27880:2 27881:2 27891:1 27897:3 27905:1 27910:1 27914:1 27944:1 27948:1 27951:1 27952:1 27966:1 27968:1 27985:3 27999:1 28000:1 28001:1 28002:1 28003:2 28011:1 28014:5 28032:1 28097:2 28098:1 28101:1 28109:1 28119:1 28130:2 28138:1 28139:2 28146:1 28155:1 28176:2 28186:2 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28290:1 28302:1 28303:2 28311:2 28315:1 28318:1 28322:1 28330:1 28337:1 28358:1 28378:1 28393:1 28427:1 28432:1 28435:2 28456:1 28462:2 28468:2 28481:1 28495:1 28496:1 28504:1 28522:2 28530:1 28532:1 28536:2 28542:1 28547:1 28555:2 28556:1 28562:2 28577:1 28588:2 28589:2 28591:1 28596:2 28617:12 28622:1 28625:1 28629:1 28633:2 28640:1 28643:1 28662:7 28663:2 28668:1 28671:3 28672:1 28674:1 28684:3 28699:1 28714:1 28719:3 28725:1 28755:1 28759:1 28784:1 28806:3 28817:1 28827:2 28829:1 28835:2 28838:1 28854:1 28864:2 28868:1 28872:2 28889:1 28896:1 28903:1 28907:1 28911:1 28917:2 28938:1 28952:1 28964:1 28969:1 28977:1 28987:1 28990:1 28997:1 29002:1 29014:1 29019:1 29023:3 29025:1 29034:1 29043:1 29046:3 29049:1 29055:1 29074:1 29075:1 29077:1 29081:1 29090:1 29091:1 29098:1 29102:3 29112:1 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29175:1 29177:1 29189:1 29190:1 29196:2 29204:1 29205:1 29233:1 29234:1 29251:1 29252:1 29265:1 29268:1 29286:1 29288:1 29293:1 29297:1 29322:1 29323:1 29324:2 29325:1 29333:1 29336:1 29343:1 29348:1 29366:1 29370:1 29376:2 29391:1 29396:1 29401:1 29453:1 29474:1 29478:1 29481:1 29482:1 29483:1 29506:1 29519:2 29525:1 29556:1 29574:1 29581:1 29628:2 29633:1 29650:1 29695:4 29703:1 29706:1 29711:1 29717:1 29734:1 29738:5 29741:1 29743:1 29746:1 29753:1 29754:1 29760:1 29764:2 29773:1 29790:2 29795:1 29797:1 29807:2 29818:1 29832:1 29840:1 29846:1 29848:2 29849:1 29851:1 29854:4 29864:1 29868:1 29888:1 29889:1 29891:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:2 29970:1 29972:1 29974:1 29980:1 29996:2
17 9:1 12:1 14:2 24:1 25:1 26:1 32:1 35:1 41:2 50:1 57:2 65:1 78:1 100:1 110:1 148:1 157:7 167:1 171:2 174:1 180:1 190:1 212:1 213:1 214:1 222:1 226:1 241:2 253:1 258:4 271:1 282:2 284:2 307:1 318:1 319:1 324:1 330:3 377:1 380:2 381:1 393:1 399:1 452:1 462:1 464:2 470:1 476:1 477:1 486:3 492:1 542:1 555:1 591:3 597:1 599:1 602:1 605:1 607:1 618:1 648:1 657:1 660:4 671:1 677:3 726:1 747:2 762:1 765:1 771:1 779:1 788:1 796:3 811:6 817:1 842:1 867:2 869:1 873:1 904:1 906:1 908:2 912:6 913:3 915:1 917:2 919:1 921:5 924:2 925:3 926:1 931:1 935:1 936:2 940:1 942:2 945:2 960:1 966:4 967:2 968:1 972:2 975:1 991:1 1010:3 1031:1 1034:2 1036:2 1039:1 1040:2 1052:1 1054:1 1055:1 1059:1 1069:1 1071:1 1084:1 1089:1 1098:1 1104:1 1105:3 1115:1 1126:1 1132:1 1140:1 1146:1 1154:1 1155:2 1156:2 1163:1 1176:1 1186:1 1193:2 1197:2 1207:1 1238:1 1247:1 1252:1 1260:2 1262:1 1266:1 1270:1 1283:1 1291:1 1296:1 1297:1 1301:1 1317:1 1318:1 1321:1 1332:1 1334:1 1335:1 1337:1 1351:1 1356:1 1362:1 1365:1 1374:1 1382:1 1385:1 1387:2 1393:1 1413:1 1414:3 1415:1 1418:1 1425:1 1454:1 1460:1 1463:1 1481:1 1485:1 1486:4 1498:1 1513:1 1516:1 1518:1 1521:1 1528:1 1536:2 1540:1 1543:1 1546:1 1552:1 1567:2 1571:1 1588:5 1600:1 1601:1 1603:1 1611:1 1614:1 1615:1 1619:1 1634:2 1645:1 1663:1 1677:1 1682:2 1687:1 1688:1 1691:3 1708:1 1715:1 1716:1 1719:1 1727:2 1735:1 1736:1 1741:1 1746:1 1750:2 1754:1 1759:1 1760:1 1761:1 1764:1 1788:2 1795:1 1797:1 1803:2 1804:1 1812:3 1813:1 1824:1 1826:1 1827:1 1828:1 1839:1 1849:1 1856:1 1858:2 1863:3 1864:2 1865:1 1874:1 1877:1 1881:1 1892:1 1902:1 1903:1 1913:1 1921:3 1927:2 1933:2 1935:1 1936:1 1939:1 1963:1 1979:1 1981:1 1994:1 2000:1 2011:2 2013:1 2024:1 2025:2 2036:1 2041:1 2057:1 2058:1 2077:1 2086:2 2128:1 2131:2 2154:2 2161:1 2170:1 2181:1 2204:1 2249:1 2293:3 2330:1 2339:1 2360:1 2365:1 2366:1 2376:1 2386:1 2404:2 2406:2 2412:1 2421:1 2428:4 2435:2 2436:1 2438:1 2441:1 2448:5 2452:1 2455:2 2457:2 2459:3 2461:1 2465:1 2466:1 2470:1 2473:6 2483:1 2497:2 2518:2 2532:1 2534:2 2535:1 2536:1 2551:1 2552:1 2589:1 2591:1 2595:2 2614:2 2631:6 2636:2 2655:2 2666:1 2667:1 2671:1 2679:1 2680:3 2685:1 2686:1 2692:1 2700:1 2701:1 2702:1 2705:1 2706:3 2709:1 2713:1 2718:1 2728:2 2744:1 2753:1 2758:1 2760:2 2784:1 2786:1 2819:2 2824:1 2829:1 2831:1 2833:1 2858:1 2871:1 2881:1 2883:1 2890:1 2892:1 2906:1 2908:1 2911:3 2921:1 2978:1 2983:1 2986:1 2989:2 2990:2 2997:1 3001:1 3007:1 3017:1 3020:1 3022:1 3043:1 3045:1 3052:1 3062:4 3070:5 3080:5 3100:1 3116:1 3119:1 3120:2 3131:2 3134:1 3150:1 3160:1 3165:1 3166:1 3183:3 3190:3 3194:2 3197:2 3203:1 3219:2 3242:1 3243:1 3252:1 3268:1 3269:1 3285:1 3292:3 3293:1 3316:1 3328:2 3331:1 3337:1 3338:2 3362:1 3369:1 3370:1 3374:1 3422:1 3423:1 3433:3 3491:1 3502:1 3525:1 3544:2 3558:1 3586:1 3624:1 3627:2 3632:1 3635:1 3653:1 3654:4 3674:1 3676:1 3677:1 3696:1 3724:2 3725:1 3729:1 3740:3 3746:1 3748:1 3749:1 3751:5 3762:1 3767:1 3774:1 3781:1 3790:2 3802:1 3820:1 3833:1 3852:1 3854:3 3858:1 3863:1 3869:3 3872:1 3883:2 3886:1 3894:2 3914:2 3924:1 3927:1 3953:1 3955:1 3956:1 3963:1 3984:3 3986:1 3990:1 3991:1 4005:4 4013:1 4039:1 4057:2 4058:1 4062:3 4080:1 4092:3 4094:1 4099:1 4100:1 4114:1 4118:3 4122:1 4127:1 4137:1 4141:2 4150:2 4170:1 4171:1 4179:1 4180:1 4189:1 4191:1 4233:1 4238:1 4262:2 4268:1 4283:1 4284:1 4288:1 4289:1 4296:1 4306:1 4307:1 4310:1 4318:1 4324:1 4334:1 4338:2 4348:1 4358:2 4359:1 4366:1 4374:3 4413:1 4435:1 4437:1 4440:1 4458:1 4465:1 4467:2 4468:2 4471:1 4472:1 4473:1 4484:1 4522:2 4526:3 4564:1 4568:1 4575:5 4578:1 4579:1 4581:1 4588:1 4589:2 4597:1 4601:5 4614:1 4627:1 4628:1 4631:1 4646:1 4650:2 4655:1 4656:1 4667:2 4669:1 4701:1 4707:1 4708:2 4718:1 4729:1 4744:1 4769:1 4780:1 4782:1 4783:1 4789:2 4790:1 4794:1 4799:1 4801:6 4810:3 4822:1 4827:1 4831:1 4842:1 4867:2 4882:5 4887:1 4899:1 4901:2 4914:1 4926:1 4933:1 4952:1 4953:2 4959:5 4967:1 4968:1 4978:1 4984:2 4987:1 4990:1 4992:3 4997:1 4999:4 5012:1 5017:1 5021:1 5029:2 5031:2 5042:1 5055:1 5058:1 5086:1 5098:1 5101:2 5105:1 5115:1 5116:1 5117:1 5118:1 5119:1 5124:1 5129:1 5130:2 5132:1 5136:2 5138:1 5145:3 5149:2 5154:2 5155:1 5156:1 5175:1 5181:1 5185:1 5201:1 5202:1 5220:1 5224:1 5264:1 5276:1 5280:1 5284:1 5310:1 5313:2 5318:1 5321:1 5344:2 5354:5 5361:1 5366:1 5375:2 5377:1 5401:1 5404:1 5416:2 5420:1 5440:1 5450:1 5458:2 5483:1 5486:1 5495:1 5497:1 5511:2 5513:1 5529:1 5533:1 5541:2 5556:1 5601:1 5606:2 5618:1 5619:2 5625:1 5630:1 5635:1 5636:1 5640:1 5651:1 5674:1 5682:1 5723:2 5726:1 5728:1 5731:1 5740:1 5741:4 5749:1 5772:2 5784:1 5787:1 5798:7 5809:1 5814:1 5835:1 5844:1 5846:1 5855:1 5856:1 5865:1 5872:1 5874:1 5877:1 5879:1 5885:1 5889:3 5893:4 5895:1 5900:1 5904:2 5911:1 5924:1 5927:2 5929:1 5935:1 5951:1 5959:2 5962:1 5970:1 5971:1 5989:1 5999:1 6005:1 6007:1 6011:1 6018:2 6022:3 6026:2 6027:9 6034:1 6036:2 6055:2 6061:1 6065:1 6082:1 6107:3 6131:1 6134:2 6162:2 6168:1 6169:5 6170:1 6184:2 6185:1 6188:1 6190:1 6202:4 6221:2 6239:1 6245:1 6247:1 6264:2 6265:3 6268:1 6288:2 6293:1 6298:1 6301:1 6303:1 6306:1 6309:1 6318:4 6320:1 6343:1 6367:2 6377:1 6382:3 6383:2 6389:2 6391:1 6393:2 6400:1 6406:1 6424:2 6450:1 6456:1 6462:1 6465:1 6467:1 6468:1 6469:1 6482:4 6497:1 6499:1 6505:1 6517:1 6541:10 6552:1 6555:1 6568:1 6570:1 6580:3 6584:2 6586:1 6589:1 6590:1 6594:1 6596:1 6600:3 6601:2 6602:1 6616:1 6625:1 6632:1 6636:1 6644:1 6646:1 6647:1 6655:1 6657:1 6664:3 6670:1 6682:1 6688:1 6730:1 6750:3 6753:1 6761:1 6764:1 6782:2 6786:1 6790:1 6795:2 6809:2 6818:2 6821:1 6826:2 6837:1 6859:1 6866:2 6868:4 6870:1 6881:1 6898:1 6903:1 6910:1 6912:1 6913:1 6922:1 6923:1 6964:1 6970:1 6980:1 6985:1 6998:3 7022:1 7032:1 7049:1 7054:1 7069:4 7072:2 7073:1 7084:1 7096:1 7098:1 7103:1 7104:1 7108:2 7113:5 7121:1 7128:1 7135:1 7140:1 7159:1 7185:1 7186:1 7196:2 7200:1 7231:1 7237:2 7248:2 7251:1 7253:2 7270:4 7290:2 7295:1 7307:1 7316:1 7318:1 7323:2 7327:1 7330:1 7331:1 7337:1 7341:1 7369:1 7372:2 7375:2 7388:1 7397:1 7401:1 7410:1 7415:3 7433:1 7434:1 7444:1 7446:1 7449:1 7455:1 7463:2 7486:1 7493:1 7504:3 7509:1 7529:2 7532:1 7548:1 7551:1 7554:1 7563:1 7571:1 7575:1 7578:1 7585:1 7602:2 7607:2 7613:1 7621:1 7623:1 7650:2 7664:4 7669:1 7670:1 7684:1 7696:1 7700:3 7705:1 7706:1 7719:1 7721:1 7730:2 7737:1 7747:1 7755:2 7757:1 7762:1 7763:3 7764:2 7781:1 7788:3 7791:3 7792:8 7793:4 7794:1 7796:2 7797:2 7801:6 7802:1 7803:1 7810:2 7811:3 7813:1 7814:4 7816:2 7828:1 7847:1 7849:2 7857:3 7864:1 7871:3 7888:1 7900:1 7928:1 7943:1 7944:1 7949:1 7954:2 7960:1 7963:1 7980:2 7992:3 7996:1 8013:1 8014:2 8042:1 8043:1 8058:18 8065:1 8074:1 8082:5 8083:2 8091:2 8110:1 8115:2 8127:1 8134:2 8146:1 8151:4 8157:2 8163:1 8168:1 8189:1 8199:1 8215:1 8233:4 8252:1 8266:1 8283:1 8285:1 8288:1 8292:2 8320:1 8329:3 8336:1 8338:1 8340:1 8346:1 8354:1 8374:1 8407:2 8428:1 8441:1 8468:5 8471:1 8480:1 8482:2 8496:1 8501:7 8505:1 8508:1 8512:2 8513:1 8519:2 8525:1 8539:1 8544:1 8548:1 8554:1 8556:1 8560:1 8565:2 8571:1 8585:1 8589:1 8590:1 8591:6 8624:2 8629:2 8641:2 8658:1 8662:1 8664:1 8684:1 8702:1 8704:2 8708:1 8716:1 8718:1 8740:1 8744:3 8749:3 8754:1 8756:1 8760:1 8765:1 8771:1 8776:2 8783:1 8787:1 8790:2 8799:1 8803:1 8804:1 8805:1 8806:1 8824:1 8827:1 8830:1 8835:1 8845:2 8849:1 8864:1 8866:1 8870:1 8872:2 8877:1 8885:1 8900:5 8906:1 8908:2 8909:1 8951:1 8955:1 8956:1 8957:1 8958:2 8962:2 8964:4 8965:1 8969:1 8972:1 8980:1 8986:1 8993:2 8998:1 9008:1 9009:1 9035:1 9045:1 9051:1 9078:3 9089:1 9092:1 9098:2 9112:1 9118:1 9119:1 9122:1 9125:1 9158:2 9164:7 9177:1 9181:1 9189:1 9209:1 9213:1 9241:1 9256:2 9268:1 9269:1 9276:1 9288:1 9303:1 9311:2 9316:1 9322:2 9324:1 9336:2 9342:1 9374:2 9395:6 9396:2 9411:2 9423:1 9434:1 9436:1 9450:1 9452:1 9457:2 9467:1 9477:1 9482:2 9488:1 9502:1 9507:3 9508:1 9527:1 9538:1 9539:1 9571:3 9586:1 9605:1 9608:1 9610:1 9615:1 9626:1 9628:3 9651:1 9660:1 9666:1 9667:2 9682:1 9684:1 9687:4 9689:1 9694:1 9699:1 9703:2 9706:1 9711:2 9725:1 9726:1 9737:1 9742:1 9754:1 9762:1 9766:1 9780:5 9785:1 9790:1 9805:1 9809:1 9812:1 9813:2 9816:2 9830:1 9834:1 9852:1 9854:1 9862:2 9865:1 9876:1 9883:2 9896:1 9902:1 9914:1 9928:1 9935:1 9939:1 9942:1 9951:2 9952:1 9954:2 9956:1 9963:1 9979:1 9981:1 9987:2 10005:3 10006:1 10011:2 10032:3 10035:1 10037:3 10042:1 10047:1 10055:1 10061:4 10062:1 10064:3 10071:1 10073:1 10074:1 10088:2 10089:2 10099:1 10104:1 10110:1 10117:1 10123:1 10124:1 10126:3 10135:3 10137:1 10151:1 10156:1 10176:2 10177:1 10182:1 10188:1 10204:6 10208:1 10221:1 10223:2 10233:1 10255:3 10256:2 10267:2 10301:1 10319:1 10328:1 10330:1 10339:1 10346:1 10347:2 10359:1 10372:1 10380:1 10381:1 10394:1 10399:1 10422:1 10425:1 10430:3 10468:1 10472:1 10474:1 10482:2 10487:1 10492:2 10498:4 10500:1 10502:2 10503:2 10505:1 10506:1 10518:1 10519:1 10544:1 10547:1 10548:1 10549:1 10550:1 10554:1 10556:2 10557:1 10560:3 10561:1 10572:4 10580:2 10592:1 10593:1 10594:3 10597:5 10617:1 10620:1 10629:3 10647:1 10650:1 10681:5 10689:2 10696:1 10706:1 10738:1 10746:1 10757:1 10761:3 10772:3 10775:2 10777:1 10787:1 10795:2 10798:1 10801:1 10806:1 10820:1 10828:1 10833:1 10844:2 10854:1 10857:1 10863:2 10864:1 10876:1 10897:1 10899:1 10906:1 10914:1 10916:2 10918:1 10920:1 10925:2 10926:1 10946:1 10950:1 10964:5 10966:1 10967:1 10969:1 10973:3 10979:1 10982:1 10984:1 10988:1 10989:1 10995:1 10996:2 10997:1 11005:1 11010:1 11011:1 11021:1 11026:1 11027:3 11035:1 11041:1 11050:2 11062:1 11089:1 11096:1 11097:2 11106:1 11114:2 11131:1 11172:1 11173:1 11183:1 11187:1 11190:2 11216:1 11227:1 11228:1 11233:1 11249:2 11258:7 11262:1 11263:1 11267:2 11269:1 11282:1 11286:2 11299:1 11304:1 11313:1 11326:3 11330:1 11354:1 11359:1 11371:1 11373:1 11379:2 11407:1 11413:1 11427:1 11429:1 11430:1 11442:1 11449:1 11457:1 11465:1 11470:1 11472:1 11480:1 11485:4 11486:3 11495:1 11499:2 11501:1 11504:1 11505:2 11514:1 11521:1 11522:3 11523:1 11534:1 11536:5 11560:1 11563:1 11566:1 11567:4 11576:1 11583:1 11585:3 11600:1 11618:1 11622:1 11632:1 11637:1 11642:2 11659:1 11660:2 11687:1 11721:3 11728:1 11732:1 11738:1 11740:1 11747:1 11755:1 11765:2 11770:3 11771:3 11802:1 11805:4 11808:1 11811:1 11830:1 11836:1 11846:1 11854:1 11856:1 11860:1 11882:2 11884:3 11888:1 11895:3 11899:1 11913:2 11922:1 11926:3 11927:1 11932:1 11936:2 11943:1 11947:2 11959:4 11971:1 11996:5 12001:1 12008:1 12010:1 12015:1 12022:1 12024:1 12026:1 12066:1 12073:1 12074:1 12078:1 12080:1 12124:1 12127:2 12145:1 12157:7 12169:1 12179:1 12182:1 12189:1 12193:1 12215:2 12221:1 12225:1 12231:1 12236:1 12247:1 12250:2 12253:1 12265:1 12277:2 12282:1 12283:3 12290:1 12292:3 12298:2 12299:2 12305:1 12342:1 12347:1 12351:1 12362:1 12364:1 12376:1 12380:3 12395:1 12411:1 12428:1 12436:1 12446:1 12449:1 12450:1 12454:1 12474:2 12476:4 12479:1 12480:1 12482:1 12486:3 12490:1 12491:5 12492:1 12494:1 12498:1 12501:2 12503:2 12506:1 12538:1 12541:2 12550:1 12556:1 12558:1 12564:1 12583:1 12584:3 12585:2 12587:2 12591:1 12594:2 12596:1 12614:2 12620:1 12625:2 12626:1 12629:1 12631:2 12655:2 12666:1 12670:1 12678:1 12681:1 12683:1 12694:1 12696:2 12698:2 12699:1 12700:3 12705:2 12712:4 12715:1 12729:1 12730:1 12743:1 12749:1 12776:1 12803:2 12806:1 12823:1 12829:1 12831:2 12838:1 12841:1 12842:1 12844:1 12850:1 12861:1 12871:1 12873:1 12874:1 12883:1 12893:1 12896:2 12897:1 12901:1 12913:1 12927:1 12967:1 12972:1 13007:1 13009:1 13012:1 13013:2 13022:2 13033:1 13034:1 13068:1 13075:1 13095:2 13116:2 13117:1 13125:1 13129:1 13133:1 13150:3 13160:1 13162:1 13168:1 13182:2 13184:1 13212:1 13233:6 13252:1 13254:2 13256:1 13260:1 13263:3 13318:5 13341:1 13355:2 13358:1 13366:6 13383:1 13386:2 13413:3 13417:1 13422:1 13425:1 13452:1 13495:1 13513:1 13518:1 13554:1 13562:1 13620:1 13637:1 13657:1 13665:1 13682:2 13686:2 13721:2 13723:5 13729:2 13732:1 13733:3 13735:1 13748:1 13750:1 13760:1 13763:3 13772:1 13773:3 13797:1 13806:1 13808:1 13811:1 13849:1 13853:1 13860:1 13867:1 13887:1 13891:1 13903:1 13915:1 13919:1 13949:6 13956:1 13957:1 13960:3 13961:1 13983:1 14007:1 14010:1 14011:2 14021:1 14067:2 14078:1 14085:1 14093:1 14101:1 14102:2 14106:5 14115:1 14121:3 14127:2 14131:1 14148:1 14165:1 14166:1 14177:1 14178:8 14196:2 14200:1 14211:1 14214:2 14223:2 14224:1 14227:1 14232:2 14244:1 14245:1 14246:1 14250:2 14259:1 14267:1 14285:1 14286:1 14288:1 14293:1 14299:2 14306:1 14329:1 14349:2 14350:1 14353:1 14383:5 14405:2 14429:1 14455:1 14462:2 14470:1 14503:1 14506:1 14523:1 14529:2 14533:1 14577:1 14584:1 14593:1 14598:2 14621:1 14639:1 14651:1 14657:1 14668:1 14670:1 14674:1 14686:1 14694:1 14695:1 14700:1 14708:1 14715:1 14724:1 14727:3 14736:1 14737:1 14739:1 14750:1 14776:2 14779:2 14781:1 14785:1 14789:1 14790:1 14792:1 14796:1 14799:1 14810:1 14831:1 14832:1 14853:1 14866:1 14870:1 14871:2 14884:1 14885:2 14888:1 14899:1 14903:1 14904:1 14906:1 14909:1 14911:7 14913:1 14921:1 14926:1 14928:1 14930:1 14931:1 14934:1 14944:4 14945:2 14947:2 14951:1 14975:2 14993:1 14998:1 15004:1 15007:1 15015:1 15018:1 15021:2 15022:1 15037:1 15038:2 15049:1 15053:1 15056:1 15057:1 15058:5 15068:2 15076:1 15079:1 15104:2 15110:2 15116:2 15123:1 15125:1 15129:2 15149:1 15164:1 15171:1 15176:1 15231:1 15248:1 15253:1 15257:3 15258:4 15264:1 15272:1 15297:1 15305:1 15310:1 15311:1 15317:1 15319:3 15322:1 15335:1 15348:9 15355:2 15357:1 15364:2 15365:1 15366:1 15367:1 15370:4 15371:42 15381:1 15385:1 15388:2 15401:1 15425:1 15432:3 15438:2 15441:2 15476:1 15484:1 15489:2 15492:1 15496:2 15519:3 15537:1 15540:1 15551:3 15561:1 15567:2 15572:1 15576:4 15580:1 15581:2 15588:2 15589:1 15617:1 15620:3 15622:1 15631:1 15662:1 15674:1 15676:2 15690:1 15700:1 15709:1 15719:4 15729:1 15746:2 15759:2 15760:1 15778:2 15780:1 15785:1 15793:1 15798:1 15806:1 15828:1 15843:2 15844:1 15853:1 15857:1 15863:1 15866:9 15879:2 15885:1 15896:1 15898:1 15900:1 15901:1 15904:1 15920:2 15921:1 15925:1 15932:1 15938:1 15958:3 15993:1 16011:1 16014:1 16021:1 16031:1 16041:1 16044:1 16056:1 16063:1 16098:3 16099:1 16102:2 16103:2 16110:3 16167:2 16168:1 16177:1 16179:2 16195:2 16202:1 16204:2 16218:1 16224:1 16225:1 16240:2 16247:1 16249:2 16250:1 16268:1 16273:1 16278:1 16280:1 16284:1 16293:1 16301:1 16302:1 16316:1 16318:1 16342:1 16345:5 16346:1 16347:1 16348:1 16350:1 16352:1 16385:1 16400:2 16416:1 16417:1 16426:2 16446:1 16449:1 16456:2 16458:1 16460:2 16462:1 16481:1 16485:1 16488:1 16490:1 16500:14 16503:1 16540:1 16553:6 16567:2 16569:1 16572:3 16586:2 16589:1 16614:1 16620:1 16623:3 16662:1 16677:1 16681:1 16682:1 16704:1 16717:1 16718:3 16725:1 16729:3 16735:1 16738:1 16763:1 16768:1 16793:2 16795:1 16814:1 16823:1 16827:2 16836:1 16840:1 16879:1 16884:1 16895:1 16904:1 16923:1 16926:1 16944:1 16945:1 16983:2 16986:2 16998:1 17018:1 17022:1 17024:2 17027:1 17029:1 17032:1 17043:1 17050:1 17061:1 17071:1 17078:3 17083:1 17086:1 17095:1 17103:1 17110:3 17114:2 17116:1 17124:1 17126:2 17128:1 17129:1 17135:2 17139:1 17144:1 17150:1 17166:1 17179:2 17180:2 17185:1 17191:3 17200:1 17203:2 17206:1 17208:2 17209:1 17225:2 17230:1 17253:1 17264:3 17266:1 17272:1 17273:2 17276:1 17278:4 17280:1 17292:1 17297:2 17319:1 17326:2 17334:2 17346:2 17360:1 17365:1 17388:2 17411:1 17439:2 17447:1 17459:1 17467:1 17474:1 17506:1 17516:1 17531:1 17533:1 17535:1 17547:1 17548:1 17551:1 17559:1 17561:2 17576:1 17579:1 17583:1 17585:1 17634:1 17662:2 17676:1 17684:1 17699:1 17711:1 17715:1 17724:1 17726:1 17727:1 17728:2 17743:2 17756:2 17758:1 17763:1 17765:1 17788:2 17789:1 17796:1 17797:1 17798:2 17815:1 17820:1 17825:1 17854:1 17859:1 17874:4 17892:1 17906:2 17918:1 17923:1 17931:1 17932:1 17940:1 17946:3 17952:3 17974:1 17990:1 18043:2 18044:1 18052:1 18057:1 18065:1 18069:1 18082:1 18085:2 18115:1 18116:1 18121:1 18131:1 18133:1 18137:1 18159:1 18166:1 18171:1 18176:1 18181:1 18182:2 18186:1 18194:1 18201:1 18216:1 18236:1 18240:1 18242:1 18244:1 18245:2 18246:1 18254:1 18275:1 18280:1 18288:2 18289:2 18299:1 18301:1 18313:1 18332:1 18335:1 18338:1 18368:2 18370:1 18372:1 18374:1 18382:1 18388:1 18400:1 18409:1 18421:1 18422:1 18427:1 18443:1 18450:9 18465:1 18466:1 18475:2 18492:2 18523:1 18535:1 18550:1 18563:1 18569:1 18571:1 18598:1 18600:1 18610:1 18611:2 18621:1 18657:2 18659:1 18681:2 18731:1 18748:1 18756:2 18757:1 18759:1 18766:1 18769:1 18793:1 18802:1 18809:1 18811:1 18817:1 18830:1 18841:1 18858:1 18860:1 18863:2 18864:3 18874:1 18891:1 18895:1 18901:1 18903:1 18905:1 18933:1 18947:1 18948:1 18951:1 18965:1 18974:1 18976:1 18986:1 18996:1 18999:1 19001:1 19025:1 19039:2 19056:1 19062:1 19067:1 19081:1 19085:4 19093:2 19107:2 19112:1 19118:1 19145:2 19146:1 19163:1 19197:1 19203:2 19210:1 19214:2 19221:1 19239:1 19242:3 19260:1 19262:3328 19265:1 19288:1 19308:1 19316:1 19320:1 19325:2 19362:1 19392:2 19398:1 19401:1 19403:1 19423:3 19429:2 19433:1 19434:1 19474:1 19476:1 19479:2 19486:1 19512:1 19515:2 19519:2 19541:2 19547:1 19553:1 19578:1 19586:1 19594:2 19597:1 19601:1 19620:1 19622:1 19627:1 19650:2 19663:3 19670:2 19686:1 19697:1 19707:1 19739:1 19754:1 19758:3 19771:1 19775:1 19776:5 19781:1 19810:1 19812:1 19829:1 19832:1 19861:1 19869:3 19874:1 19903:1 19908:3 19914:1 19920:3 19924:1 19948:1 19957:1 19975:2 20004:1 20006:6 20019:1 20023:1 20035:2 20052:1 20086:1 20093:1 20101:1 20122:1 20125:1 20131:4 20144:1 20146:3 20150:1 20153:1 20167:1 20187:1 20202:2 20205:1 20208:4 20218:2 20219:2 20223:2 20224:1 20225:1 20226:1 20244:1 20247:1 20252:1 20259:2 20269:1 20273:1 20279:1 20301:1 20302:1 20314:1 20333:1 20370:2 20374:1 20376:1 20382:1 20397:1 20400:2 20405:1 20410:1 20437:1 20438:1 20441:1 20452:1 20477:1 20507:1 20518:1 20524:1 20527:1 20547:1 20548:1 20550:2 20575:1 20601:1 20606:1 20609:1 20615:2 20618:1 20620:1 20630:1 20634:1 20642:1 20659:2 20664:1 20666:3 20671:1 20672:1 20675:1 20681:1 20684:1 20691:1 20692:2 20696:1 20700:1 20701:3 20704:2 20706:2 20709:1 20719:1 20721:1 20722:1 20730:1 20737:3 20742:2 20743:1 20752:3 20755:1 20760:1 20779:1 20792:1 20793:1 20797:1 20828:1 20832:1 20837:2 20860:2 20868:1 20920:3 20922:1 20941:1 20959:1 20962:1 20970:2 20977:2 20987:1 20989:1 20993:2 21001:1 21004:1 21008:1 21020:2 21021:1 21022:2 21036:1 21038:1 21050:1 21052:3 21055:2 21075:1 21084:3 21085:2 21101:2 21112:1 21115:2 21124:2 21160:1 21179:1 21204:1 21205:1 21208:1 21209:1 21221:1 21234:1 21236:1 21242:2 21243:1 21247:2 21250:1 21251:1 21260:1 21263:1 21269:3 21274:1 21294:1 21299:1 21300:1 21321:3 21324:1 21328:1 21332:1 21338:2 21346:2 21350:1 21354:2 21360:1 21368:1 21397:1 21404:1 21405:3 21408:2 21410:1 21414:1 21426:1 21427:2 21429:2 21437:1 21444:1 21452:1 21461:5 21481:2 21482:1 21493:1 21503:1 21521:1 21536:2 21568:1 21570:4 21572:1 21581:1 21598:2 21624:1 21646:1 21665:1 21669:1 21670:1 21690:1 21701:1 21712:1 21722:1 21741:1 21747:1 21767:1 21776:1 21784:1 21800:1 21803:2 21809:1 21814:1 21822:2 21825:3 21845:2 21848:2 21849:8 21851:1 21870:1 21883:1 21901:3 21907:1 21910:1 21912:2 21921:1 21931:1 21942:1 21952:1 21960:1 21967:1 21970:1 21983:2 21986:1 21990:1 22008:1 22022:1 22026:1 22038:1 22043:1 22049:1 22050:2 22053:2 22055:1 22057:1 22068:1 22076:1 22084:1 22099:1 22104:1 22109:1 22138:1 22141:1 22144:1 22158:1 22173:1 22179:3 22185:1 22190:2 22199:1 22214:1 22219:1 22243:1 22245:1 22257:2 22266:1 22271:1 22277:1 22279:1 22283:1 22305:1 22312:1 22345:3 22349:1 22351:1 22353:6 22363:3 22375:1 22382:1 22384:1 22393:1 22395:2 22396:3 22415:1 22445:1 22451:2 22459:1 22462:1 22468:1 22477:2 22486:2 22495:1 22496:1 22508:1 22512:1 22530:3 22533:1 22537:1 22542:1 22548:2 22554:1 22560:2 22577:2 22579:2 22600:2 22606:2 22609:1 22627:2 22628:2 22638:1 22653:1 22662:2 22667:3 22679:1 22685:1 22695:1 22697:1 22705:1 22723:3 22732:2 22733:1 22743:1 22750:1 22763:1 22770:1 22779:1 22800:1 22803:1 22807:2 22808:1 22811:1 22814:1 22815:2 22839:1 22853:2 22854:1 22867:1 22878:1 22886:2 22914:3 22916:1 22919:2 22924:1 22927:1 22928:5 22969:1 22974:1 22985:1 23003:2 23004:2 23006:1 23007:5 23013:1 23027:5 23029:1 23042:1 23049:1 23071:1 23077:1 23089:1 23113:1 23125:1 23132:1 23133:2 23136:1 23138:1 23161:7 23165:1 23171:2 23172:2 23176:1 23178:1 23179:1 23224:1 23236:1 23237:1 23241:1 23247:2 23255:1 23260:1 23264:1 23268:2 23297:2 23309:2 23311:4 23336:1 23358:2 23359:1 23363:1 23365:1 23367:1 23372:1 23376:1 23382:1 23383:1 23384:1 23399:1 23409:1 23410:1 23413:1 23414:1 23420:1 23430:2 23433:1 23435:1 23436:2 23448:1 23449:1 23458:4 23467:1 23473:1 23477:2 23478:1 23503:1 23505:1 23515:1 23522:3 23533:1 23551:1 23552:2 23556:2 23561:3 23562:1 23581:1 23583:1 23613:1 23623:1 23627:1 23632:1 23667:1 23671:1 23688:1 23704:1 23717:1 23722:2 23733:3 23747:3 23774:2 23790:1 23814:4 23831:1 23834:8 23841:1 23856:1 23868:1 23893:1 23897:1 23912:4 23913:2 23926:3 23927:4 23928:3 23935:1 23938:1 23940:3 23941:7 23949:1 23958:1 23965:1 23977:1 23988:1 24002:1 24003:2 24008:1 24013:1 24021:1 24033:4 24035:1 24047:1 24051:2 24055:1 24058:1 24066:1 24068:2 24072:1 24078:1 24080:1 24089:1 24122:1 24128:1 24157:1 24160:1 24177:1 24192:3 24194:1 24197:2 24199:2 24205:2 24209:1 24212:2 24223:5 24235:1 24238:1 24245:1 24249:1 24264:5 24284:1 24292:1 24305:3 24324:1 24339:1 24360:1 24370:2 24373:1 24375:2 24379:4 24383:1 24388:1 24392:3 24401:1 24404:1 24405:1 24412:1 24415:1 24421:1 24423:1 24424:1 24427:1 24431:1 24436:1 24441:3 24453:3 24471:2 24474:2 24487:1 24489:1 24494:1 24507:1 24544:1 24547:1 24551:1 24553:1 24559:1 24560:1 24576:2 24623:2 24626:1 24631:1 24636:6 24652:1 24654:1 24655:1 24658:1 24661:1 24662:3 24715:1 24719:1 24734:2 24740:1 24747:1 24778:1 24779:1 24783:1 24788:1 24791:1 24803:1 24810:1 24835:1 24861:1 24867:1 24882:1 24898:2 24904:10 24906:1 24913:1 24914:1 24915:2 24918:2 24926:2 24937:1 24946:1 24956:1 24965:3 24992:1 24999:2 25024:1 25026:2 25032:1 25036:2 25044:1 25048:2 25051:5 25054:2 25074:1 25081:3 25099:1 25100:1 25102:1 25114:1 25120:1 25142:1 25153:2 25157:1 25159:1 25162:1 25175:1 25176:2 25185:1 25186:1 25187:1 25201:1 25206:1 25211:1 25212:1 25225:2 25231:2 25237:1 25238:1 25248:1 25249:1 25254:1 25263:1 25276:1 25277:1 25301:1 25314:1 25329:1 25339:2 25340:1 25365:1 25384:1 25393:2 25395:1 25401:1 25404:1 25415:1 25439:1 25447:2 25451:2 25456:1 25462:4 25482:1 25483:2 25484:1 25503:1 25508:1 25512:1 25532:1 25539:1 25543:2 25568:1 25577:1 25600:2 25617:1 25627:1 25631:7 25644:2 25652:2 25655:1 25659:2 25678:1 25680:1 25681:1 25704:2 25705:2 25729:1 25731:1 25736:2 25757:3 25762:2 25773:1 25777:1 25790:1 25794:2 25828:1 25835:2 25838:1 25845:1 25859:1 25871:1 25879:1 25893:2 25904:1 25905:1 25917:1 25920:2 25922:4 25933:2 25935:5 25938:2 25943:3 25945:1 25950:1 25952:1 25953:1 25957:2 25963:1 25964:1 25974:1 25982:3 25986:1 26013:2 26024:4 26035:2 26041:1 26043:1 26050:1 26052:2 26068:1 26072:1 26084:1 26092:2 26093:2 26095:2 26129:1 26130:2 26138:1 26139:1 26156:1 26160:3 26172:1 26178:2 26188:1 26214:1 26220:1 26226:1 26233:3 26244:1 26268:1 26276:1 26281:3 26284:2 26286:1 26299:1 26307:5 26314:1 26324:1 26328:1 26345:3 26371:1 26374:1 26376:1 26387:2 26399:1 26415:1 26422:1 26435:1 26478:1 26482:1 26493:1 26502:2 26511:1 26514:1 26570:1 26594:3 26597:1 26617:1 26618:1 26634:1 26640:1 26644:3 26648:1 26649:1 26667:2 26670:4 26689:2 26696:1 26702:1 26708:2 26714:1 26726:1 26729:1 26738:1 26741:2 26757:1 26767:1 26797:1 26799:1 26803:1 26805:2 26845:1 26846:1 26857:2 26858:2 26871:1 26884:1 26888:2 26893:2 26900:1 26903:1 26906:1 26911:1 26915:2 26916:1 26918:4 26924:1 26955:3 26965:2 26969:1 26981:1 26984:2 26988:1 26991:3 26992:1 26995:2 27002:1 27006:2 27007:2 27008:1 27015:2 27017:1 27023:3 27024:1 27025:2 27033:2 27039:1 27041:1 27061:1 27067:1 27069:1 27070:1 27089:1 27092:1 27095:1 27115:5 27116:2 27164:1 27165:1 27200:1 27201:1 27203:1 27210:1 27214:1 27219:1 27225:1 27233:1 27260:1 27261:4 27266:1 27267:3 27269:1 27293:1 27294:1 27302:1 27312:2 27318:1 27319:1 27350:1 27353:1 27355:1 27369:1 27384:1 27386:2 27390:2 27395:3 27400:1 27404:1 27410:1 27424:2 27425:1 27430:4 27438:1 27448:1 27451:1 27456:1 27464:2 27471:1 27473:1 27474:1 27480:1 27496:1 27527:1 27536:1 27540:2 27551:4 27554:2 27555:1 27556:1 27557:1 27564:4 27568:1 27571:2 27579:1 27584:1 27613:2 27618:1 27635:1 27651:1 27657:1 27658:1 27665:1 27668:1 27669:2 27704:1 27713:1 27727:1 27731:1 27739:1 27748:1 27754:1 27776:1 27808:1 27818:2 27820:1 27825:1 27831:1 27848:1 27857:1 27874:3 27877:2 27878:1 27880:2 27881:2 27891:1 27897:3 27905:1 27910:1 27914:1 27944:1 27945:1 27948:1 27951:1 27952:1 27966:1 27968:1 27985:3 27999:1 28000:1 28001:1 28002:1 28003:2 28011:1 28014:5 28032:1 28042:1 28097:2 28098:1 28101:1 28109:1 28119:1 28130:2 28138:1 28139:2 28146:2 28155:1 28176:2 28186:2 28200:1 28202:1 28219:1 28222:1 28233:1 28234:2 28240:1 28248:2 28254:1 28283:1 28290:1 28302:1 28303:2 28311:2 28315:1 28318:1 28322:1 28330:1 28337:1 28358:1 28378:1 28393:1 28427:1 28432:1 28435:2 28456:1 28462:2 28468:2 28481:1 28483:1 28495:1 28496:1 28504:1 28516:1 28522:2 28530:1 28532:1 28536:2 28542:1 28547:1 28555:2 28556:1 28562:3 28569:1 28572:1 28577:1 28588:2 28589:2 28591:1 28596:2 28617:14 28622:1 28625:1 28629:1 28633:2 28640:1 28643:2 28650:1 28662:8 28663:2 28668:1 28671:3 28672:1 28674:1 28684:3 28699:1 28714:1 28719:3 28725:1 28755:1 28759:1 28784:1 28806:3 28817:1 28827:3 28829:1 28835:2 28838:1 28854:1 28864:2 28868:1 28872:2 28889:1 28896:1 28903:1 28907:1 28908:1 28911:1 28917:3 28938:1 28952:1 28964:1 28969:1 28977:1 28987:1 28990:1 28997:1 29002:1 29014:1 29019:1 29023:3 29025:1 29034:2 29043:1 29046:3 29049:1 29055:1 29074:1 29075:1 29077:1 29081:1 29088:1 29090:1 29091:1 29098:1 29102:3 29112:1 29139:2 29140:1 29153:1 29165:2 29166:1 29169:2 29175:1 29177:1 29189:1 29190:1 29196:2 29204:1 29205:1 29233:1 29234:1 29251:1 29252:1 29265:1 29268:1 29286:1 29288:2 29293:1 29297:1 29322:1 29323:1 29324:2 29325:2 29333:1 29336:1 29343:1 29348:1 29366:1 29370:1 29376:2 29391:1 29396:1 29401:1 29453:1 29474:1 29478:1 29481:1 29482:1 29483:1 29506:1 29519:2 29525:1 29556:1 29574:1 29581:1 29628:2 29633:1 29650:1 29695:4 29703:1 29706:1 29711:1 29717:1 29734:1 29738:5 29741:1 29743:1 29744:1 29746:1 29753:1 29754:1 29755:1 29760:1 29764:2 29773:1 29790:2 29795:1 29797:1 29807:2 29818:1 29832:1 29840:1 29846:1 29848:2 29849:1 29851:1 29854:4 29864:1 29868:1 29888:1 29889:1 29891:1 29903:2 29905:1 29915:2 29955:1 29958:3 29959:1 29967:2 29970:1 29972:1 29974:1 29980:1 29996:2
|
5bfff9bbad669a9aac1586c5df4d4f46f71a7798 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2201/CH3/EX3.22/ex3_22.sce | 879a52796864b8d8063554330bfb8e608e1d833d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 232 | sce | ex3_22.sce | // Exa 3.22
clc;
clear;
close;
// Given data
h = 6.64*10^-34;// in J-s
q=1.6*10^-19;// in C
h= h/q;// in eV
c = 3*10^8;// in m/s
lembda = 0.87*10^-6;// in m
E_g = (h*c)/lembda;// in eV
disp(E_g,"The band gap in eV is");
|
3c9f01f0bcab25a0d76e221c1347f1f26dfd4b4e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3869/CH6/EX6.13/Ex6_13.sce | cfcad0e52f9ca5da6d4f5805da83b67372f25dee | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 377 | sce | Ex6_13.sce | clear
//
//
//
//Variable declaration
lamda=0.071*10**-9 //wavelength(m)
h=1
k=1
l=0 //miller indices
a=0.28*10**-9 //lattice constant(m)
n=2 //order
//Calculation
d=a/sqrt(h**2+k**2+l**2)
theta=asin(n*lamda/(2*d))*180/%pi //glancing angle(degrees)
//Result
printf("\n glancing angle is %0.2f degrees",theta)
|
59752b320e7f057f5c8f85e38e282a69adfd3b10 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1736/CH4/EX4.23.9/Ch04Ex23_9a.sce | d09b8cbb0c9d7bb116e058b1df57dfe1feb3fb00 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 757 | sce | Ch04Ex23_9a.sce | // Scilab Code Ex4.9a: Page-141 (2006)
clc; clear;
m = 9.1e-031; // Mass of the electron, kg
h = 6.626e-034; // Planck's constant, Js
e = 1.6e-019; // Energy equivalent of 1 eV, J/eV
h_cross = h/(2*%pi); // Reduced Planck's constant, Js
s = 0.01; // Side of the box, m
E = 2; // Energy range of the electron in the box, eV
V = s^3; // Volume of the box, metre cube
I = integrate("E^(1/2)", 'E', 0, 2); // Definite integral over E
D_E = V/(2*%pi^2)*(2*m/h_cross^2)^(3/2)*I*e^(3/2); // Density of states for the electron in a cubical box, states
printf("\nThe density of states for the electron in a cubical box = %5.3e states", D_E);
// Result
// The density of states for the electron in a cubical box = 1.280e+022 states
|
c1642efadadc723f019fa232e5e11ee20a653b44 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH3/EX3.1/EX3_1.sce | 3ef633c68ddd8cbde7098fe5e7b5b8b99445b4c4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 224 | sce | EX3_1.sce | //EXAMPLE 3-1 PG NO-172
VL=400;
Vp=400/sqrt(3);
Z=8-%i*10;
IL=Vp/Z;
S=sqrt(3)*(VL*IL);
P=S*(cos(-51.34));
Q=S*(sin(-51.34));
Von=230.94+%i*0;
Vbn=-115.47-%i*99.99
disp('i) RMS = '+string (S)+'A ')
|
fbca064c451b07eb560ab5e313a9a1047af58517 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1538/CH26/EX26.4/Ex26_4.sce | a2b4b2a44e1d15ee6b2bf6d3ae36e5d6be3078aa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 292 | sce | Ex26_4.sce | //example-26.4
//page no-784
//given
//refractive index of core and cladding
mucladding=1.47
mucore=1.50
//critocal angle at the core cladding interface
thetac=asin(mucladding/mucore) *180/(%pi) //degrees
printf ("the critical angle at core cladding interface is %f degrees",thetac)
|
3af8de7f25c2128e39ecc06d62d9fc0f69f399e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3819/CH2/EX2.18/Ex2_18.sce | b9a2ab5337e49db385c5cbbd1d34e7d5c17aeee1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 614 | sce | Ex2_18.sce | // A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
// Chapter 2 - Pressure and its measurements
// Problem 2.18
//Given Data Set in the Problem
dens=1000
g=9.81
A=2
dens1=1000
h1=30/100
h2=10/100
SG2=0.8
dens2=SG2*dens1
h3=12/100
//calculations
pA=dens*g*A
//pressure below X-X in left limb is pA-(dens1*g*h1)
p_left=pA-dens1*g*h1
//pressure below X-X in right limb is pA-(dens1*g*h1)
//p_right=pB-dens1*g*h2-dens2*g*h3
//and ...P_left=P_right
pB=p_left+dens1*g*h2+dens2*g*h3
mprintf("The pressure in pipe B is %f N/cm^2\n",pB*10^-4)
|
23d97f8ab0100d4b52ac23e6c327e7d4004d66f3 | aaac23e7fa85785f43bf1d8037708ee77ef640ef | /src/test_ods_3_a.tst | b3e8b3ee2df6a50b0adaf0fea551139dc6d4d66e | [
"OML",
"MIT",
"BSD-3-Clause",
"Zlib"
] | permissive | anto0ine/ciyam | ee2b057a9cd11008ae0d477dac111c0a8d2f60b3 | 7127d528c37584e7d562732274fa2ed6025daeaa | refs/heads/master | 2020-12-07T13:43:24.528962 | 2014-11-20T07:22:08 | 2014-11-20T07:22:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 53 | tst | test_ods_3_a.tst |
/root> moving free data to end...
completed
/root> |
bbb5706c566e5b4bba6494422b72ed0396a0905c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2414/CH6/EX6.3/Ex6_3.sce | 9f7309ddf4cc9c56c41a5f9148c4758e3b53f649 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 356 | sce | Ex6_3.sce | clc;
//page no 190
//prob no. 6.3
//All frequencies in kHz
fc=1*10^3; //in kHz
W=15;
LSBl=fc-W; //lowest freq of LSB
USBh=fc+W; //highest freq of USB
disp(fc,'to',LSBl,'(a) The range of freq(in kHz) for LSB is from ');
disp(USBh,'to',fc,'(b) The range of freq(in kHz) for USB is from ');
BT=W;
disp(BT,'(b) Transmission bandwidth is ');
|
8eb15751bc79cd02a90e9fc55dbfdc3536f2d1f9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /135/CH2/EX2.7/EX7.sce | ea6ac1f4fb0e3cb6bdb15d8ef3ec5c18b5ea73c9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 589 | sce | EX7.sce | // Example 2.7: Current, Diode voltage
clc, clear
VDD=5; // Applied voltage in volts
VD=0.7; // Diode voltage in volts
I1=1e-3; // Current in amperes at diode voltage = 0.7 V
R=1000; // R in ohms
deltaVD=0.1; // Change in diode voltage in volts for every decade change in current
ratioI=10; // Decade change in current
eta_VT=deltaVD/log(ratioI); // Product of η and VT
ID=(VDD-VD)/R; // Diode current in amperes
VD2=VD+eta_VT*log(ID/I1); // Diode voltage in volts
ID=ID*1e3; // Diode current in miliamperes
disp(ID,"Diode current (mA) = ");
disp(VD2,"Diode voltage (v) = "); |
f48f68cc98984b43cb346d4bb7739dcf02b29df4 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/PG37IE.prev.tst | 289ae2a96fc26c33b2a016de5b3b3e0bcc9d7472 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,080 | tst | PG37IE.prev.tst | [[-2,2,-1,1,0],[1,-2,1,0,0],[2,-1,2,0,0],[1,2,-1,1,0]] [0,0,1,1]*3 [-9,2,16,15]*2 [-38,12,51,43]*3 [-33,12,40,31]*12 [-204,80,235,171]*5 [-365,150,408,283]*6 [-198,84,217,145]*21
[[-1,1,-2,2,0],[0,-1,2,-1,0],[1,-1,2,1,0],[0,2,-1,2,0]] [0,0,1,1]*3 [-6,-1,9,8]*2 [-22,-4,25,17]*3 [-18,-3,19,10]*12 [-108,-16,111,47]*5 [-190,-25,193,68]*6 [-102,-12,103,31]*21
[[-1,0,0,1,0],[0,-1,0,0,1],[1,0,0,2,0],[0,2,0,0,1]] [0,0,1,1]*3 [-14,-7,20,17] [-78,-26,87,55] [-84,-21,88,43]*3 [-620,-124,635,251] [-1290,-215,1308,433] [-798,-114,805,229]*3
[[-1,-1,-2,1,0],[0,-1,2,1,1],[1,1,2,2,0],[0,2,2,1,1]] [-1,1,2,2]*3 [-10,1,12,9]*3 [-123,-5,132,76] [-116,-9,120,55]*3 [-265,-23,270,102]*3 [-1578,-137,1596,511] [-945,-79,952,264]*3
[[-1,1,-2,2,0],[0,-2,2,-1,1],[1,-1,2,1,0],[0,1,2,-1,1]] [0,0,1,1]*3 [-4,-3,6,5]*3 [-66,-38,75,43] [-72,-33,76,31]*3 [-180,-68,185,57]*3 [-1140,-365,1158,283] [-714,-198,721,145]*3
[[-1,2,1,1,0],[1,2,1,0,0],[2,1,2,0,0],[2,2,1,1,0]] [3,4,5,6] [1,6,8,9]*6 [-5,48,69,76]*3 [-27,100,152,165]*4 [-23,60,95,102]*15 [-137,294,480,511]*6 [-237,448,749,792]*7
[[0,-2,0,0,1],[-1,0,0,2,0],[1,0,0,1,0],[0,1,0,0,1]] [-1,1,2,2] [-5,-4,6,3]*3 [-53,-75,84,28] [-127,-248,260,65] [-83,-205,210,42]*3 [-431,-1284,1302,217] [-685,-2387,2408,344]
[[0,1,-1,2,-2],[0,0,1,-2,1],[0,0,2,-1,2],[0,1,-1,2,1]] [0,0,1,1]*3 [6,1,8,9] [22,4,17,25] [18,3,10,19]*3 [108,16,47,111] [190,25,68,193] [102,12,31,103]*3
[[0,2,-2,1,-1],[0,-1,2,-1,0],[0,1,2,-1,1],[0,2,-1,2,0]] [0,0,1,1]*3 [9,-2,15,16] [38,-12,43,51] [33,-12,31,40]*3 [204,-80,171,235] [365,-150,283,408] [198,-84,145,217]*3
[[0,1,1,2,-1],[0,0,1,2,1],[0,0,2,1,2],[0,1,1,2,2]] [3,4,5,6] [5,3,4,6]*3 [41,16,23,44] [87,25,38,90] [53,12,19,54]*3 [263,49,80,266] [405,64,107,408]
[[0,-1,2,1,1],[0,1,2,1,0],[0,2,1,2,0],[0,2,2,1,1]] [3,4,5,6] [1,6,8,9]*3 [-5,48,69,76] [-27,100,152,165] [-23,60,95,102]*3 [-137,294,480,511] [-237,448,749,792]
[[1,1,2,-1,0],[0,1,2,1,0],[0,2,1,2,0],[1,1,2,2,0]] [3,4,5,6] [5,3,4,6]*6 [41,16,23,44]*3 [87,25,38,90]*4 [53,12,19,54]*15 [263,49,80,266]*6 [405,64,107,408]*7
#---> reslines=12
|
309f8914b4de655a506258a00557a819d1db8649 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set13/s_Introduction_To_Mechanical_Engineering_S._Chandra_And_O._Singh__2267.zip/Introduction_To_Mechanical_Engineering_S._Chandra_And_O._Singh__2267/CH5/EX5.3/ex5_3.sce | 571641cf14b36a4f600886e3276c95177dcbd773 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 203 | sce | ex5_3.sce | errcatch(-1,"stop");mode(2);//Part A Chapter 5 Example 3
;
;
T1=42+273;//K
T2=4+273;//K
Q2=2;//kJ/s
Q1=T1/T2*Q2;//kJ/s
Pin=Q1-Q2;//kJ/s
disp("Power required = "+string(Pin)+" kJ/s");
exit();
|
20976e97cace29f7c82b1ce39da6c9bae8adf054 | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/ncauer.sci | 1bfd72526fddf06d2e59f498e7a691037f3717ce | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,419 | sci | ncauer.sci | <<<<<<< HEAD
// Copyright (C) 2018 - IIT Bombay - FOSSEE
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
// Author:Sonu Sharma, RGIT Mumbai
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
function [Zz, Zp, Zg] = ncauer(Rp, Rs, n)
//Analog prototype for Cauer filter (Cauer filter and elliptic filters are same).
//Calling Sequence
//[Zz, Zp, Zg] = ncauer(Rp, Rs, n)
//Parameters
//n: Filter Order
//Rp: Peak-to-peak passband ripple in dB
//Rs: Stopband attenuation in dB
//Description
//It gives an analog prototype for Cauer filter of nth order, with a Peak-to-peak passband ripple of Rp dB and a stopband attenuation of Rs dB.
=======
function [Zz, Zp, Zg] = ncauer(Rp, Rs, n)
//Analog prototype for Cauer filter.
//Calling Sequence
//[Zz, Zp, Zg] = ncauer(Rp, Rs, n)
//[Zz, Zp] = ncauer(Rp, Rs, n)
//Zz = ncauer(Rp, Rs, n)
//Parameters
//n: Filter Order
//Rp: Peak-to-peak passband ripple
//Rs: Stopband attenuation
//Description
//This is an Octave function.
//It designs an analog prototype for Cauer filter of nth order, with a Peak-to-peak passband ripple of Rp and a stopband attenuation of Rs.
>>>>>>> 6bbb00d0f0128381ee95194cf7d008fb6504de7d
//Examples
//n = 5;
//Rp = 5;
//Rs = 5;
//[Zz, Zp, Zg] = ncauer(Rp, Rs, n)
<<<<<<< HEAD
=======
>>>>>>> 6bbb00d0f0128381ee95194cf7d008fb6504de7d
//Zz =
//
// 0.0000 + 2.5546i 0.0000 + 1.6835i -0.0000 - 2.5546i -0.0000 - 1.6835i
//
//Zp =
//
// -0.10199 + 0.64039i -0.03168 + 0.96777i -0.10199 - 0.64039i -0.03168 - 0.96777i -0.14368 + 0.00000i
//
//Zg = 0.0030628
<<<<<<< HEAD
=======
>>>>>>> 6bbb00d0f0128381ee95194cf7d008fb6504de7d
funcprot(0);
lhs = argn(1)
rhs = argn(2)
if (rhs < 3 | rhs > 3)
<<<<<<< HEAD
error("ncauer : Wrong number of input arguments.")
end
[Zz, Zp, Zg] = ellipap(n, Rp, Rs) ;
=======
error("Wrong number of input arguments.")
end
select(rhs)
case 3 then
if(lhs==1)
Zz = callOctave("ncauer", Rp, Rs, n)
elseif(lhs==2)
[Zz, Zp] = callOctave("ncauer", Rp, Rs, n)
elseif(lhs==3)
[Zz, Zp, Zg] = callOctave("ncauer", Rp, Rs, n)
else
error("Wrong number of output argments.")
end
end
>>>>>>> 6bbb00d0f0128381ee95194cf7d008fb6504de7d
endfunction
|
c144755d014ab9611dabb99bc5347a4b4e5c9025 | 449d555969bfd7befe906877abab098c6e63a0e8 | /226/CH14/EX14.13/example13_sce.sce | 1ce2d3cfe76938bdc0d4296c3c3e215395c331c0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 141 | sce | example13_sce.sce | //chapter 14
//example 14.13
//page 627
printf("\n")
printf("given")
Ib=500*10^-9;UTP=5;Vcc=15;
I1=100*Ib
R2=UTP/I1
R1=((Vcc-1)-5)/I1 |
6d498a7e57fa648381f636f3fa3b8ff7c08ef48b | 449d555969bfd7befe906877abab098c6e63a0e8 | /281/CH8/EX8.4/example8_4.sce | d70a39f6e50886ead518468cefa8ae07fdf91a07 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 427 | sce | example8_4.sce | disp('chapter 8 ex8.4')
disp('given')
disp('Determine required minimum slew rate for circuit designed in example 8.3')
disp('output voltage Vo=4volt')
Vo=4
disp(' change in time t=1*10^(-3)')
t=1*10^(-3)
disp('let C1=.1*10^(-6)F') //(standard value)
C1=.1*10^(-6)
disp('R1=12.5kohm')
R1=12500
disp('Smin=Vo/(t/10)')
Smin=Vo/(t/10)
disp('V/us',Smin)
disp('fc=1/(2*%pi*R1*C1)')
fc=1/(2*%pi*R1*C1)
disp('Hz',fc) |
cf29859908896b29fb54f7bd2f04610507f85c53 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.17_2.tst | 69358544f0d7b5a576d9b333efad2ab773b2c122 | [] | 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 | 27,429 | tst | bow.17_2.tst | 17 53:0.5 263:0.25 326:0.1111111111111111 357:0.3333333333333333 1105:0.3333333333333333 3316:1.0 4831:0.5 4842:0.5 5049:1.0 5602:1.0 5637:0.5 5829:1.0 6780:1.0 7053:1.0 7760:1.0 7777:1.0 8974:1.0 9125:1.0
17 10:0.25 18:0.5 19:1.0 46:0.2 56:0.08333333333333333 64:0.25 68:0.1111111111111111 90:0.06896551724137931 170:0.1 286:0.2 380:0.3333333333333333 399:1.0 453:0.5 831:0.5 1175:1.0 1315:0.5 1865:1.0 4819:0.5 6604:1.0 6880:1.0 8315:1.0 8750:1.0
17 11:0.15384615384615385 14:0.3333333333333333 39:0.5 46:0.2 59:0.5 82:0.09090909090909091 265:0.05 286:0.2 306:1.0 636:0.5 673:1.0 1204:1.0 1248:1.0 1265:1.0 1865:1.0 2055:0.5 4152:1.0 4865:1.0 4951:0.5 5102:1.0 5311:0.3333333333333333 6859:1.0 8144:1.0 8795:1.0
17 22:1.0 46:0.2 265:0.05 1105:0.3333333333333333 3316:1.0 4817:1.0 4830:0.2 4840:1.0 4843:0.25 4852:0.3333333333333333 4866:1.0 4938:0.3333333333333333 5700:1.0 5738:1.0 6387:1.0 6810:1.0 8318:0.5
17 33:1.0 253:1.0 705:1.0 1546:0.14285714285714285 2040:1.0 4814:1.0 4815:0.5 4865:1.0 4908:1.0 4958:1.0 4959:1.0 5276:1.0 5291:1.0 5637:0.5 5765:1.0 5898:1.0 5937:1.0 5981:1.0 6092:1.0 6396:1.0 7514:2.0 7858:1.0
17 11:0.23076923076923078 30:0.05555555555555555 46:0.2 59:0.5 68:0.1111111111111111 100:0.2 139:0.5 160:0.3333333333333333 170:0.1 265:0.05 297:0.5 436:1.0 705:1.0 2079:0.5 4817:1.0 4830:0.2 4881:2.0 4887:0.3333333333333333 4927:2.0 5105:1.0 5145:1.0 5164:0.5 5369:2.0 5863:1.0 6021:1.0 6047:1.0 6166:1.0 6349:1.0 8497:1.0
17 11:0.07692307692307693 801:0.5 1546:0.2857142857142857 3316:2.0 4830:0.2 4911:1.0 4954:1.0 5152:1.0 5172:1.0 5271:0.3333333333333333 5314:1.0 5596:1.0 5901:1.0 6207:1.0 6380:1.0 6472:1.0 6789:1.0 7126:1.0 7255:1.0 7863:1.0 8578:1.0
17 11:0.07692307692307693 68:0.1111111111111111 419:0.5 801:1.0 1438:1.0 3316:1.0 3468:1.0 4769:0.2 4815:0.25 4821:1.0 4822:1.0 4830:0.4 4842:0.5 4881:1.0 4927:1.0 4970:0.5 5023:1.0 5064:1.0 5132:1.0 5146:1.0 5369:1.0 5527:1.0 5705:1.0 5859:1.0 6085:1.0 6717:1.0 7718:1.0 8039:1.0 8117:1.0 8295:1.0 9058:1.0
17 30:0.05555555555555555 53:0.5 56:0.08333333333333333 59:1.0 82:0.18181818181818182 100:0.2 247:1.0 265:0.05 457:1.0 1546:0.14285714285714285 3316:0.5 4842:0.5 4908:1.0 5271:0.3333333333333333 5599:1.0 5652:1.0 5691:1.0 5762:0.5 6155:1.0 6181:1.0 6289:1.0 6478:1.0 8222:1.0
17 10:0.25 43:0.75 53:0.5 59:0.5 68:0.1111111111111111 298:0.5 505:0.5 756:0.25 877:1.0 1546:0.14285714285714285 2042:1.0 2157:1.0 2733:1.0 3316:0.5 3325:0.16666666666666666 4099:1.0 4621:1.0 4830:0.2 4840:1.0 4915:0.5 4970:0.5 5042:0.4 5065:0.5 5144:1.0 5145:1.0 5274:0.5 5596:1.0 6398:1.0 7118:1.0 8482:1.0 8517:1.0 9057:1.0
17 11:0.07692307692307693 30:0.1111111111111111 39:1.0 170:0.1 377:0.3333333333333333 385:0.5 2095:1.0 2574:1.0 3255:1.0 3316:0.5 3615:1.0 4840:1.0 4951:0.5 5042:0.2 5466:1.0 6207:1.0 7619:1.0
17 10:0.25 28:0.07142857142857142 30:0.16666666666666666 37:1.0 39:0.5 43:0.25 46:0.2 68:0.1111111111111111 89:0.2 168:0.3333333333333333 247:1.0 264:1.0 267:1.0 313:0.3333333333333333 326:0.1111111111111111 327:1.0 362:1.0 415:1.0 419:0.5 896:0.3333333333333333 1199:1.0 1973:1.0 1982:1.0 3325:0.16666666666666666 4769:0.2 5228:0.3333333333333333 5705:1.0 5735:1.0 8385:1.0
17 1105:0.3333333333333333 4516:1.0 4814:1.0 4815:0.25 4840:1.0 4842:0.5 4857:1.0 4889:1.0 4958:1.0 4959:1.0 5239:1.0 5282:1.0 5332:0.5 5338:1.0 5404:0.5 6092:1.0 6450:1.0 6786:1.0 7078:1.0 7709:1.0 8613:1.0
17 53:0.5 109:0.3333333333333333 263:0.25 357:0.3333333333333333 3316:0.5 4769:0.2 4815:0.25 4830:0.2 4843:0.25 4927:1.0 4938:0.3333333333333333 5042:0.2 5049:1.0 5276:1.0 5561:1.0 6780:1.0 7777:1.0 7778:1.0
17 11:0.07692307692307693 415:1.0 801:0.5 2012:0.5 3316:1.5 4769:0.2 4830:0.6 4840:1.0 4843:0.75 4852:0.3333333333333333 4881:1.0 4938:0.6666666666666666 5017:1.0 5172:1.0 5278:0.5 5283:1.0 5639:1.0 6663:1.0 6851:1.0 7056:1.0 7439:1.0 7469:1.0 7676:1.0
17 28:0.07142857142857142 56:0.08333333333333333 82:0.09090909090909091 83:0.125 173:1.0 264:2.0 313:0.16666666666666666 419:0.5 479:0.5 2065:1.0 2291:1.0 4893:2.0
17 10:0.25 11:0.07692307692307693 56:0.08333333333333333 90:0.06896551724137931 265:0.05 380:0.3333333333333333 399:1.0 1105:0.6666666666666666 1175:1.0 1546:0.14285714285714285 3316:1.5 4830:0.2 4906:1.0 4908:1.0 4911:1.0 4974:0.5 5014:1.0 5042:0.4 5065:0.5 5271:0.3333333333333333 5314:1.0 5367:1.0 5914:1.0 6727:1.0 7255:1.0 7256:1.0 7257:1.0 7258:1.0 7542:1.0 8316:1.0 8750:1.0
17 15:1.0 30:0.05555555555555555 39:0.5 46:0.6 59:0.5 70:1.0 82:0.09090909090909091 83:0.125 90:0.034482758620689655 156:0.5 234:0.06666666666666667 259:1.0 286:0.2 297:0.5 357:0.3333333333333333 502:1.0 519:1.0 596:0.3333333333333333 724:1.0 786:1.0 822:0.3333333333333333 945:1.0 1191:1.0 1337:1.0 1406:0.3333333333333333 1503:1.0 3740:1.0 4148:1.0 4577:1.0 7271:1.0 7972:1.0
17 68:0.1111111111111111 90:0.034482758620689655 326:0.1111111111111111 327:1.0 815:1.0 1105:0.3333333333333333 4756:1.0 4769:0.2 4830:0.2 4833:0.5 4866:1.0 5065:0.5 5183:0.5 5224:1.0 5792:1.0 6068:1.0 6078:1.0 6303:1.0 6732:1.0 7186:1.0 7500:1.0 7677:1.0 8039:1.0
17 11:0.15384615384615385 17:0.5 19:1.0 30:0.1111111111111111 46:0.2 63:0.25 68:0.2222222222222222 170:0.1 174:1.0 250:0.1111111111111111 256:0.5 259:1.0 264:1.0 298:0.5 416:0.5 419:0.5 584:1.0 708:1.0 965:1.0 2052:1.0 2733:2.0 3316:0.5 3345:1.0 3823:1.0 4830:0.4 4843:0.25 4927:1.0 4938:0.3333333333333333 5071:1.0 5137:1.0 5213:1.0 5385:1.0 6242:1.0 7676:1.0 9043:1.0
17 28:0.07142857142857142 30:0.05555555555555555 39:0.5 59:0.5 161:1.0 168:0.3333333333333333 298:0.5 679:1.0 787:0.5 1216:1.0 4830:0.2 4840:1.0 4886:0.5 4927:1.0 4930:1.0 4938:0.6666666666666666 4970:0.5 5026:0.25 5105:1.0 5239:1.0 5374:1.0 5979:1.0 6240:1.0 6983:1.0 7095:1.0 8125:1.0 8825:1.0
17 11:0.07692307692307693 14:0.3333333333333333 68:0.1111111111111111 948:1.0 987:1.0 4830:0.2 4893:1.0 4941:0.5 4974:0.5 5040:1.0 5065:0.5 5271:0.3333333333333333 5515:1.0 6472:1.0 7476:1.0 7477:1.0 7478:1.0 7479:1.0 7480:1.0
17 11:0.23076923076923078 801:1.0 1105:0.3333333333333333 1546:0.14285714285714285 2790:1.0 3316:1.5 4769:0.4 4815:0.25 4822:1.0 4830:1.2 4881:1.0 4908:1.0 4941:1.0 4976:0.5 5095:1.0 5096:1.0 5097:2.0 5098:1.0 5099:1.0 5100:1.0 5101:1.0 5164:0.5 5197:1.0 5198:1.0 5322:1.0 5361:0.5 6135:1.0 7258:1.0 8376:1.0 8811:1.0 9024:1.0
17 11:0.07692307692307693 14:0.3333333333333333 28:0.07142857142857142 30:0.1111111111111111 39:0.5 43:0.5 63:0.25 126:0.25 298:0.5 313:0.16666666666666666 479:0.5 548:1.0 708:1.0 965:1.0 1410:1.0 1978:0.3333333333333333 3316:0.5 4852:0.3333333333333333 4970:0.5 4997:1.0 5040:1.0 5074:0.3333333333333333 5190:1.0 5501:1.0 6390:1.0 7119:1.0 7860:1.0
17 11:0.15384615384615385 15:1.0 28:0.07142857142857142 30:0.05555555555555555 39:0.5 40:1.0 59:1.0 64:0.25 82:0.09090909090909091 89:0.2 313:0.16666666666666666 354:1.0 446:1.0 1184:1.0 1546:0.14285714285714285 2733:1.0 3403:1.0 4974:1.0 5014:1.0 5042:0.2 5058:1.0 5074:0.3333333333333333 5181:1.0 6983:1.0 7095:1.0 7932:1.0
17 11:0.23076923076923078 297:0.5 705:1.0 1955:1.0 3316:0.5 4769:0.2 4830:0.2 4840:1.0 4843:0.25 4938:0.3333333333333333 6427:1.0 6501:1.0 6548:1.0 6810:1.0 7011:1.0 7763:1.0 8490:1.0 9027:1.0
17 28:0.07142857142857142 30:0.05555555555555555 39:0.5 46:0.4 53:0.5 59:0.5 68:0.2222222222222222 90:0.034482758620689655 297:0.5 326:0.1111111111111111 402:1.0 431:1.0 443:1.0 517:0.3333333333333333 801:0.5 941:1.0 1172:1.0 1807:1.0 1852:0.5 2079:0.5 2465:1.0 4817:0.5 4938:0.3333333333333333 5133:1.0 8600:1.0 8935:1.0
17 46:0.2 90:0.034482758620689655 135:0.25 263:0.25 357:0.3333333333333333 446:1.0 540:0.3333333333333333 611:1.0 728:1.0 1098:1.0 2044:1.0 2719:2.0 2733:1.0 4830:0.2 4833:0.5 4842:0.5 4843:0.25 4852:0.6666666666666666 4881:1.0 4927:1.0 4938:0.3333333333333333 5142:1.0 5332:0.5 5720:1.0 5759:1.0 6477:1.0 7349:1.0 8443:1.0
17 11:0.07692307692307693 135:0.25 265:0.05 1105:0.6666666666666666 1546:0.42857142857142855 3316:2.0 4769:0.2 4830:0.2 4852:0.3333333333333333 4886:0.5 4908:1.0 4911:1.0 5042:0.4 5045:1.0 5065:0.5 5367:1.0 5372:1.0 5406:0.5 5468:1.0 5639:1.0 5652:2.0 5792:1.0 5859:1.0 6210:1.0 6477:1.0 7223:1.0 7357:1.0 7369:1.0 8292:0.5 8316:1.0 8490:1.0
17 264:1.0 1105:0.3333333333333333 3186:1.0 3316:0.5 4817:0.5 4830:0.6 4852:0.3333333333333333 4909:1.0 4915:1.0 4927:1.0 4951:0.5 4970:1.0 4992:0.3333333333333333 4993:1.0 4994:1.0 4995:1.0 5046:1.0 5085:0.25 5102:1.0 5164:0.5 5172:1.0 5197:1.0 5224:1.0 5271:0.3333333333333333 5493:1.0 5633:1.0 5691:1.0 5738:1.0 5741:1.0 5904:1.0 6111:1.0 8039:1.0 8495:1.0
17 14:0.3333333333333333 30:0.1111111111111111 39:0.5 40:1.0 59:1.0 69:1.0 74:1.0 83:0.125 89:0.4 90:0.06896551724137931 135:0.5 194:1.0 212:1.0 263:0.25 286:0.1 298:1.0 313:0.3333333333333333 479:0.5 521:1.0 559:1.0 650:1.0 3066:1.0 3316:0.5 4830:0.2 4970:0.5 5026:0.25 5027:1.0 5028:1.0 5042:0.2 5414:1.0 5628:1.0 6084:1.0 6086:1.0 6472:1.0 7369:1.0 7669:1.0 8758:1.0
17 11:0.07692307692307693 18:0.5 19:1.0 39:0.5 46:0.4 90:0.06896551724137931 135:0.25 264:1.0 357:0.3333333333333333 479:0.5 517:0.3333333333333333 787:0.5 815:1.0 1076:1.0 1411:1.0 1599:1.0 2885:1.0 3081:1.0 4830:0.4 4843:0.25 4864:2.0 4886:0.5 4893:1.0 4995:1.0 5009:0.25 5010:1.0 5011:1.0 5065:0.5 5132:1.0 5150:0.5 5281:1.0 5414:1.0 5691:2.0 5767:1.0 5792:1.0 5799:1.0
17 27:2.0 35:0.25 43:0.25 46:0.2 53:0.5 90:0.06896551724137931 401:0.3333333333333333 505:0.5 1073:1.0 2581:2.5 2799:1.0 4927:1.0 4938:0.3333333333333333 8737:1.0
17 265:0.05 1105:0.3333333333333333 1546:0.14285714285714285 3140:1.0 4815:0.25 4830:0.6 4908:1.0 4938:0.3333333333333333 4941:1.0 5071:1.0 5240:0.25 5271:0.3333333333333333 5361:0.5 5431:1.0 5795:1.0 5929:1.0 6508:0.5 6987:1.0 7213:1.0 8533:1.0 8846:1.0
17 11:0.07692307692307693 89:0.2 4830:0.6 4831:0.5 4832:1.0 4938:0.3333333333333333 5667:0.5 6200:1.0 6663:1.0 7010:1.0 7701:1.0
17 14:0.3333333333333333 22:1.0 30:0.05555555555555555 43:0.5 59:0.5 68:0.1111111111111111 83:0.125 298:0.5 388:1.0 517:0.3333333333333333 801:1.0 1033:1.0 1110:1.0 1978:0.3333333333333333 2698:1.0 3657:1.0 4830:0.2 4865:1.0 4911:1.0 4997:1.0 5046:1.0 5271:0.3333333333333333 5409:0.5 5493:1.0 8885:1.0 9145:1.0
17 11:0.07692307692307693 22:1.0 265:0.05 1978:0.3333333333333333 2733:1.0 3316:0.5 4257:1.0 4865:1.0 4866:1.0 4893:1.0 5071:1.0 5226:1.0 5367:1.0 5762:1.5 5774:1.0 6217:1.0 7011:1.0 7012:1.0 7822:1.0 8779:1.0
17 11:0.15384615384615385 14:0.3333333333333333 19:1.0 46:0.2 89:0.2 139:0.5 170:0.1 265:0.15 419:0.5 1087:1.0 3491:1.0 4909:2.0 4915:0.5 4979:0.5 5271:0.3333333333333333 5629:1.0 6259:1.0 6599:1.0 7386:1.0 7668:1.0
17 11:0.07692307692307693 286:0.1 705:1.0 896:0.3333333333333333 1105:0.3333333333333333 1546:0.14285714285714285 4815:0.25 4822:1.0 4830:0.2 4992:0.3333333333333333 4993:1.0 4994:1.0 4995:1.0 5000:1.0 5042:0.2 5065:0.5 5141:1.0 5271:0.3333333333333333 5762:0.5 6065:1.0 7213:1.0 7774:1.0 7805:1.0 7806:1.0 8533:1.0
17 18:0.5 39:0.5 56:0.08333333333333333 68:0.2222222222222222 70:1.0 89:0.2 90:0.034482758620689655 100:0.2 168:0.3333333333333333 286:0.1 326:0.1111111111111111 369:0.25 531:1.0 646:0.2 768:1.0 987:1.0 1181:1.0 1358:1.0 2055:0.5 2733:1.0 3903:1.0 4447:1.0 4769:0.4 4830:0.6 4840:1.0 4843:0.25 4938:0.3333333333333333 4995:1.0 5009:0.25 5010:1.0 5011:1.0 5051:1.0 5283:1.0 5289:1.0 5361:0.5 5820:1.0 7314:1.0 8631:1.0
17 28:0.07142857142857142 83:0.125 89:0.4 142:0.5 187:1.0 264:1.0 298:0.5 313:0.6666666666666666 419:0.5 450:1.0 767:1.0 2733:1.0 4821:1.0 4938:0.3333333333333333 4970:0.5 5026:0.25 5027:1.0 5028:1.0 5311:0.3333333333333333 6377:1.0 7933:1.0 8830:1.0
17 28:0.07142857142857142 83:0.125 135:0.25 138:0.5 173:1.0 313:0.16666666666666666 399:1.0 419:0.5 801:0.5 803:1.0 1315:0.5 2088:0.5 2548:1.0 2733:1.0 4710:1.0 4769:0.2 4840:1.0 4852:0.3333333333333333 5040:1.0 5152:1.0 5538:1.0 5979:1.0 6636:1.0 6637:1.0 7126:1.0
17 11:0.15384615384615385 801:0.5 1105:0.3333333333333333 1755:1.0 4769:0.2 4830:0.2 4843:0.25 4849:1.0 4852:0.3333333333333333 4866:1.0 4869:1.0 4886:1.0 4905:1.0 4911:1.0 4927:1.0 5014:1.0 5042:0.2 5065:0.5 5247:0.5 5527:1.0 5630:1.0 5704:1.0 5705:1.0 5706:1.0 5738:1.0 5816:1.0 7548:1.0 7849:1.0 7933:1.0 8950:1.0
17 11:0.15384615384615385 56:0.08333333333333333 59:1.0 82:0.09090909090909091 265:0.05 297:0.5 326:0.1111111111111111 2079:0.5 4852:0.3333333333333333 4891:0.5 4908:1.0 5042:0.2 5271:0.3333333333333333 5493:1.0 5527:2.0 5659:1.0 6599:1.0 7359:1.0 7418:1.0 7573:1.0 8670:1.0
17 11:0.07692307692307693 264:1.0 265:0.05 1546:0.14285714285714285 4769:0.2 4822:1.0 4830:0.4 4842:0.5 4849:1.0 4908:1.0 4927:1.0 4941:0.5 4974:0.5 5014:1.0 5040:1.0 5065:0.5 5538:1.0 5664:1.0 5938:1.0 6007:1.0 7904:1.0
17 10:0.25 43:0.25 46:0.2 59:0.5 68:0.1111111111111111 89:0.2 298:0.5 300:1.0 313:0.3333333333333333 357:0.3333333333333333 517:0.6666666666666666 795:1.0 918:1.0 1864:1.0 2050:0.5 2389:1.0 3316:0.5 4085:1.0 5014:1.0 5153:0.5 5271:0.3333333333333333 5409:0.5 5652:1.0
17 11:0.15384615384615385 918:1.0 4769:0.2 4826:1.0 4830:0.2 4843:0.25 4927:1.0 4930:1.0 4938:0.3333333333333333 5014:2.0 5142:1.0 5228:0.6666666666666666 5298:1.0 5369:1.0 5705:1.0 5760:1.0 6291:1.0 6292:1.0 6502:1.0 7056:2.0 7500:1.0 7676:1.0
17 11:0.15384615384615385 23:1.0 28:0.07142857142857142 59:0.5 90:0.034482758620689655 286:0.1 377:0.3333333333333333 446:1.0 918:1.0 1105:0.3333333333333333 2079:0.5 2878:1.0 4769:0.2 4830:0.8 4908:1.0 4927:1.0 4930:1.0 4976:1.0 5014:1.0 5042:0.2 5172:2.0 5271:0.3333333333333333 5357:1.0 5705:2.0 5865:1.0 6291:1.0 6292:1.0
17 18:0.5 43:0.25 53:1.5 79:0.5 131:1.0 263:0.25 369:0.25 372:1.0 1546:0.14285714285714285 2548:1.0 3977:1.0 4840:1.0 4872:1.0 5735:1.0 6365:1.0 6398:1.0 6984:1.0 6985:1.0 8467:1.0 9128:1.0
17 10:0.25 11:0.07692307692307693 18:0.5 30:0.05555555555555555 46:0.2 53:0.5 68:0.1111111111111111 90:0.06896551724137931 135:0.25 151:1.0 170:0.1 178:1.0 264:1.0 415:1.0 945:1.0 1437:0.5 2733:1.0 3325:0.16666666666666666 4557:1.0 4830:0.4 4852:0.3333333333333333 4908:2.0 4979:0.5 4992:0.3333333333333333 4993:1.0 4994:1.0 4995:1.0 5000:1.0 5064:1.0 5066:1.0 5228:0.3333333333333333 5239:1.0 5271:0.3333333333333333 5528:1.0 5732:1.0 6548:1.0 7416:1.0 7417:1.0 7418:1.0 7419:1.0 7420:1.0 7421:1.0 7601:1.0
17 11:0.07692307692307693 43:0.25 204:0.3333333333333333 298:0.5 313:0.16666666666666666 357:0.3333333333333333 559:1.0 650:1.0 1989:1.0 2202:1.0 4830:0.2 4864:1.0 4927:1.0 4995:1.0 5009:0.25 5010:1.0 5011:1.0 5377:1.0 5616:0.5 5761:1.0 7123:1.0 7474:1.0 8246:1.0 8763:1.0
17 24:1.0 30:0.1111111111111111 39:0.5 59:0.5 170:0.1 298:1.0 415:1.0 946:0.5 1346:1.0 1608:0.3333333333333333 3140:1.0 4593:1.0 4830:0.2 5026:0.25 5027:1.0 5028:1.0 5042:0.2 5406:0.5 5637:0.5 5759:2.0 6083:1.0 9066:1.0
17 11:0.07692307692307693 28:0.07142857142857142 30:0.05555555555555555 59:0.5 90:0.034482758620689655 170:0.3 479:1.0 946:0.5 1033:1.0 1411:1.0 2245:1.0 2437:1.0 4830:0.2 4908:1.0 4915:0.5 4941:0.5 4997:1.0 5011:1.0 5046:1.0 5406:0.5 5493:1.0 5859:1.0 6474:1.0 7147:1.0 7262:1.0 7350:1.0
17 11:0.07692307692307693 30:0.05555555555555555 39:1.0 46:0.2 59:0.5 170:0.1 230:1.0 298:0.5 313:0.16666666666666666 500:1.0 1346:1.0 2692:1.0 3649:1.0 4769:0.2 4938:0.3333333333333333 4945:1.0 4946:1.0 4970:1.0 5132:1.0 5172:1.0 5340:1.0 5762:0.5 6450:1.0 6811:1.0 7239:1.0 7645:1.0
17 11:0.23076923076923078 58:1.0 265:0.1 1105:0.3333333333333333 4769:0.2 4830:0.4 4938:1.0 4970:1.5 5051:1.0 5071:1.0 5142:1.0 5164:0.5 5183:0.5 5340:1.0 5384:1.0 5471:1.0 5757:1.0 6141:1.0 6233:1.0 6357:1.0 6820:1.0 6935:1.0 7691:1.0 8090:1.0
17 11:0.07692307692307693 14:0.3333333333333333 37:1.0 39:0.5 48:0.5 153:1.0 187:1.0 204:0.3333333333333333 259:1.0 263:0.25 385:0.5 394:1.0 708:1.0 756:0.25 1282:1.0 2790:1.0 2886:1.0 4822:1.0 4830:0.2 4831:0.5 4832:1.0 4833:0.5 6798:1.0 6820:1.0 8958:1.0
17 11:0.07692307692307693 265:0.1 4830:0.2 5172:1.0 5223:1.0 6332:1.0 7078:1.0 7718:1.0 8977:1.0
17 11:0.07692307692307693 14:0.3333333333333333 30:0.05555555555555555 36:0.3333333333333333 46:0.2 59:0.5 68:0.1111111111111111 82:0.09090909090909091 90:0.034482758620689655 204:0.3333333333333333 210:0.2 234:0.06666666666666667 263:0.25 264:1.0 551:1.0 782:1.0 862:1.0 1248:1.0 1308:1.0 1359:1.0 2044:1.0 2226:1.0 4822:1.0 4830:0.2 5750:1.0 5918:1.0 8329:1.0
17 68:0.1111111111111111 250:0.1111111111111111 1098:1.0 1323:1.0 3316:0.5 3325:0.3333333333333333 4249:1.0 4769:0.2 4908:1.0 4915:0.5 5042:0.2 5705:1.0 7109:1.0
17 22:1.0 264:1.0 778:1.0 3316:1.0 3338:1.0 4823:1.0 4840:1.0 4881:1.0 4938:0.3333333333333333 4994:1.0 5002:0.5 5137:1.0 5367:1.0 5406:0.5 7147:1.0 7148:1.0 7149:1.0 7184:1.0 8172:1.0
17 10:0.25 30:0.05555555555555555 53:0.5 68:0.2222222222222222 126:0.25 551:1.0 705:1.0 3325:0.3333333333333333 4852:0.3333333333333333 4908:1.0 4970:0.5 5042:0.2 5085:0.25 5367:1.0 5637:0.5 7684:1.0 7860:1.0
17 10:0.25 30:0.05555555555555555 43:0.25 286:0.1 1105:0.3333333333333333 1503:1.0 1546:0.2857142857142857 2291:1.0 3316:0.5 4817:0.5 4830:0.6 4908:1.0 4970:0.5 4974:0.5 4994:1.0 5074:0.3333333333333333 5442:1.0 5525:1.0 5654:1.0 5705:1.0 5706:1.0 5972:1.0 6044:1.0 6086:1.0 6207:1.0 6964:1.0 7011:1.0 7725:1.0
17 11:0.07692307692307693 28:0.07142857142857142 43:0.5 56:0.08333333333333333 58:1.0 59:1.0 61:1.0 89:0.4 139:0.5 168:0.3333333333333333 210:0.2 298:0.5 313:0.3333333333333333 326:0.1111111111111111 705:1.0 942:1.0 1359:1.0 1699:1.0 4821:1.0 4830:0.2 5137:1.0 5271:0.3333333333333333 5340:1.0 5367:1.0 5629:1.0 5679:1.0 5705:1.0 6705:1.0 7109:1.0 7665:1.0 7666:1.0 7667:1.0 8197:0.5 8800:1.0
17 43:0.25 53:0.5 596:0.3333333333333333 948:1.0 1087:1.0 1097:0.5 4769:0.2 4815:0.25 4830:0.2 4840:1.0 4852:0.3333333333333333 5027:1.0 5528:1.0 5574:1.0 6033:1.0 6356:1.0
17 83:0.125 89:0.4 135:0.25 263:0.25 313:0.6666666666666666 326:0.1111111111111111 327:2.0 354:1.0 416:0.5 801:0.5 948:1.0 4769:0.2 4811:0.3333333333333333 4813:1.0 4814:1.0 4815:0.25 4819:0.5 4869:1.0 4870:2.0 4927:1.0 4938:0.3333333333333333 5058:1.0 5164:0.5 5187:1.0 6732:1.0 9029:1.0
17 142:0.5 210:0.2 265:0.05 438:0.5 2139:1.0 3316:0.5 4830:0.2 4840:1.0 4941:0.5 4974:0.5 4976:0.5 5040:1.0 5098:1.0 5243:1.0 5956:1.0 7205:1.0 8141:1.0
17 39:1.0 53:0.5 59:0.5 68:0.1111111111111111 89:0.2 135:0.25 142:0.5 385:0.5 708:1.0 2523:1.0 3316:0.5 4830:0.2 4840:1.0 5046:1.0 5118:1.0 5274:0.5 5289:1.0 6798:1.0 7257:1.0 7297:1.0 7991:1.0
17 11:0.15384615384615385 264:1.0 1546:0.42857142857142855 3316:1.0 4769:0.4 4822:2.0 4830:0.2 4843:0.25 4849:1.0 4926:1.0 4927:1.0 4938:0.3333333333333333 5055:0.5 5065:0.5 5071:1.0 5090:1.0 5142:1.0 5164:0.5 5172:1.0 5247:0.5 5271:0.3333333333333333 5280:1.0 5500:0.5 5588:1.0 6027:1.0 6154:1.0 6205:1.0 6616:1.0 6781:1.0 7991:1.0 9071:1.0
17 11:0.15384615384615385 14:0.3333333333333333 17:0.5 19:2.0 36:0.3333333333333333 39:0.5 43:0.5 46:0.6 59:0.5 68:0.1111111111111111 139:0.5 168:0.3333333333333333 170:0.1 297:0.5 298:0.5 313:0.16666666666666666 326:0.1111111111111111 354:1.0 369:0.25 431:1.0 804:1.0 822:0.3333333333333333 1181:1.0 1358:1.0 1614:1.0 1728:1.0 2131:1.0 2507:1.0 2606:1.0 2949:1.0 3125:1.0 3461:1.0 5348:1.0 7577:1.0 8958:1.0
17 11:0.07692307692307693 30:0.1111111111111111 39:1.5 59:0.5 126:0.25 153:1.0 359:0.2 414:1.0 835:1.0 1165:1.0 1884:1.0 2372:1.0 3316:0.5 4769:0.2 4830:0.4 4840:1.0 4927:2.0 5065:0.5 5239:1.0 5367:1.0 5762:0.5 5856:1.0 5961:1.0 6250:1.0 6358:1.0 8542:1.0 8543:1.0
17 11:0.15384615384615385 30:0.05555555555555555 39:0.5 89:0.2 90:0.034482758620689655 611:1.0 1292:1.0 2369:1.0 2598:1.0 2631:1.0 2698:1.0 2733:2.0 2916:1.0 3942:1.0 4830:0.2 5014:1.0 5042:0.4 5271:0.3333333333333333 5905:1.0 6506:0.5 6525:1.0 6903:1.0 7109:1.0 7205:1.0
17 626:0.5 1105:0.3333333333333333 1546:0.14285714285714285 3316:1.0 4830:0.2 4842:0.5 4881:1.0 4908:3.0 4915:0.5 4927:2.0 4976:0.5 5014:2.0 5061:1.0 5183:0.5 5240:0.5 5271:0.3333333333333333 5367:1.0 5520:1.0 5638:1.0 6158:1.0 7349:1.0 8578:1.0
17 10:0.5 11:0.15384615384615385 30:0.05555555555555555 46:0.2 53:0.5 59:1.0 68:0.1111111111111111 88:1.0 158:1.0 168:0.3333333333333333 369:0.25 377:0.3333333333333333 714:1.0 785:1.0 1204:1.0 1342:1.0 2289:1.0 3114:1.0 3325:0.16666666666666666 3885:1.0 5035:1.0 6802:1.0 6946:1.0
17 11:0.23076923076923078 39:0.5 46:0.2 53:0.5 59:0.5 82:0.09090909090909091 265:0.05 357:0.3333333333333333 438:0.5 805:1.0 1437:0.5 3755:1.0 4285:1.0 4769:0.2 4815:0.25 4938:0.3333333333333333 4974:1.0 5042:0.4 5137:1.0 5142:1.0 5367:1.0 5553:1.0 5661:1.0 6412:1.0 7506:1.0
17 11:0.3076923076923077 135:0.25 1546:0.14285714285714285 3316:1.5 4815:0.25 4830:0.6 4842:0.5 4849:1.0 4850:2.0 4853:1.0 4864:1.0 4905:1.0 4908:2.0 4927:1.0 5011:1.0 5013:1.0 5042:0.4 5074:0.3333333333333333 5095:1.0 5229:1.0 5271:0.3333333333333333 5283:1.0 5289:1.0 5383:1.0 5442:1.0 5527:1.0 5628:1.0 5654:1.0 5747:1.0 5829:1.0 6403:1.0 6508:0.5 7253:1.0 8116:1.0 8128:1.0 8397:1.0
17 11:0.07692307692307693 30:0.05555555555555555 39:0.5 43:0.25 59:0.5 68:0.1111111111111111 69:1.0 170:0.1 263:0.25 298:1.0 329:0.5 479:0.5 673:1.0 1539:1.0 2308:1.0 2389:1.0 3578:1.0 4769:0.2 4819:0.5 4830:0.4 4843:0.25 4938:0.3333333333333333 4951:0.5 4970:0.5 5197:2.0 5239:1.0 5441:1.0 5457:1.0 7349:1.0 7794:1.0 8144:1.0
17 11:0.15384615384615385 28:0.07142857142857142 30:0.1111111111111111 46:0.2 59:0.5 168:0.3333333333333333 298:0.5 357:0.6666666666666666 414:1.0 419:0.5 1105:0.3333333333333333 1265:1.0 4107:1.0 4817:0.5 4830:0.2 4833:0.5 4840:1.0 4842:0.5 4927:4.0 5142:1.0 5228:0.3333333333333333 5239:1.0 5527:1.0 6181:1.0 6508:0.5 6973:1.0 7247:1.0 7511:0.5 7924:2.0 8945:1.0
17 11:0.07692307692307693 19:1.0 29:1.0 46:0.2 59:0.5 68:0.1111111111111111 242:1.0 263:0.5 297:0.5 668:1.0 1181:1.0 2055:0.5 2079:1.0 3316:0.5 3325:0.16666666666666666 4103:1.0 4457:1.0 4577:1.0 4817:0.5 4819:0.5 4830:0.2 4852:0.3333333333333333 4881:1.0 5082:1.0 5339:0.5 5372:1.0 5762:0.5 6032:1.0 6141:1.0 8600:1.0 8885:1.0
17 265:0.1 801:1.0 4830:0.4 4889:2.0 4935:1.0 4941:1.0 5074:0.3333333333333333 5538:1.0 5598:2.0 5721:1.0 7991:1.0
17 11:0.15384615384615385 18:0.5 28:0.07142857142857142 30:0.1111111111111111 39:0.5 43:0.25 46:0.2 52:1.0 56:0.08333333333333333 58:1.0 63:0.25 68:0.1111111111111111 90:0.034482758620689655 178:1.0 264:1.0 265:0.05 286:0.1 768:1.0 1481:1.0 3316:1.0 4830:0.4 4843:0.5 4891:0.5 4908:1.0 4927:2.0 4941:0.5 4969:0.5 4974:0.5 5014:1.0 5071:1.0 5271:0.3333333333333333 5280:1.0 5289:1.0 5332:0.5 5469:1.0 5691:1.0 5865:1.0 5929:1.0 5989:1.0 6036:1.0 6037:1.0 6038:1.0 6039:1.0 6040:1.0 6041:1.0 6042:1.0 6043:1.0 6113:1.0 7307:1.0 7449:1.0 8762:1.0 9053:1.0
17 46:0.2 59:0.5 83:0.125 298:0.5 313:0.16666666666666666 517:0.3333333333333333 1605:0.5 1640:1.0 2055:0.5 2437:1.0 5105:1.0 5367:1.0 5411:2.0 7542:1.0
17 59:1.0 83:0.125 90:0.034482758620689655 178:1.0 236:1.0 250:0.1111111111111111 263:0.25 283:0.3333333333333333 426:1.0 568:1.0 2040:1.0 4707:1.0 4830:0.2 4843:0.25 4927:1.0 5071:1.0 5527:1.0 5759:1.0 6214:1.0 6839:1.0
17 265:0.15 1105:0.6666666666666666 4769:0.2 4822:1.0 4830:0.6 4842:0.5 4911:1.0 4938:0.3333333333333333 4941:0.5 4997:1.0 5064:1.0 5074:0.3333333333333333 5142:1.0 5153:0.5 5197:1.0 5198:1.0 5227:1.0 5361:0.5 5409:0.5 5470:1.0 5493:1.0 5528:1.0 5747:1.0 5798:1.0 6111:1.0 6732:1.0 6774:1.0 7223:1.0 7273:1.0 8018:1.0 8019:1.0 8397:1.0
17 28:0.07142857142857142 30:0.1111111111111111 39:1.0 46:0.2 68:0.1111111111111111 100:0.2 139:0.5 369:0.25 414:1.0 478:1.0 1392:1.0 2692:1.0 2926:1.0 4047:1.0 4713:1.0 4888:1.0 4938:0.3333333333333333 5332:1.0 5575:1.0 5691:1.0 5911:1.0 6244:1.0 7740:1.0 8397:1.0
17 11:0.07692307692307693 46:0.2 59:0.5 83:0.125 90:0.034482758620689655 170:0.1 286:0.1 587:1.0 756:0.25 2939:1.0 3149:1.0 3343:1.0 4840:1.0 4842:0.5 4927:1.0 5144:1.0 5669:1.0 6792:1.0 7729:1.0
17 10:0.25 11:0.07692307692307693 39:0.5 53:0.5 68:0.2222222222222222 2042:1.0 2088:0.5 2254:1.0 3316:1.0 4769:0.4 4814:1.0 4815:0.25 4822:1.0 4830:0.6 4840:1.0 4842:0.5 4843:0.5 4927:1.0 4928:1.0 4958:1.0 5132:1.0 5282:1.0 5289:1.0 5511:1.0 5767:1.0 5797:1.0 5979:1.0 7459:1.0 7991:1.0
17 28:0.07142857142857142 46:0.8 212:1.0 286:0.1 298:0.5 443:1.0 705:1.0 1270:2.0 1634:1.0 2158:2.0 2733:1.0 3375:1.0 4840:1.0 4970:0.5 5011:1.0 5363:1.0 6494:1.0 6495:1.0 7574:1.0 8083:1.0
17 18:1.0 19:1.0 161:1.0 3316:0.5 4769:0.4 4815:0.25 4830:0.2 4927:1.0 4979:0.5 5064:1.0 5073:0.5 5137:1.0 5164:0.5 5172:1.0 5287:1.0 5332:0.5 5339:0.5 5603:1.0 5750:1.0 5824:1.0 6732:1.0 7068:1.0 8093:1.0 8747:1.0 8811:1.0
17 28:0.07142857142857142 30:0.05555555555555555 37:1.0 46:0.2 56:0.08333333333333333 89:0.2 138:0.5 265:0.05 327:1.0 801:0.5 1524:1.0 1546:0.14285714285714285 1608:0.3333333333333333 2592:1.0 3316:0.5 4852:0.3333333333333333 4891:0.5 5014:1.0 5409:0.5 5588:1.0 5735:1.0 5738:1.0 7307:1.0 8373:1.0
17 10:0.25 29:1.0 30:0.05555555555555555 43:0.25 153:1.0 234:0.06666666666666667 286:0.1 388:1.0 462:1.0 502:1.0 650:1.0 1315:0.5 3146:1.0 3785:1.0 3986:1.0 4769:0.2 4938:0.3333333333333333 5269:1.0
17 6:1.0 30:0.05555555555555555 46:0.6 48:1.0 88:1.0 90:0.10344827586206896 100:0.2 107:1.0 212:1.0 263:0.25 265:0.05 286:0.1 363:1.0 385:0.5 390:1.0 424:0.5 691:1.0 888:0.3333333333333333 1178:1.0 1281:1.0 1287:0.5 1506:1.0 1658:1.0 2079:0.5 2733:1.0 2752:1.0 3016:1.0 4769:0.2 4811:0.3333333333333333 4814:1.0 4815:0.25 4830:0.2 5055:0.5 5249:1.0 5339:0.5 5629:1.0 6494:1.0 7201:1.0 7772:1.0 8087:1.0 8242:1.0
17 10:0.25 18:0.5 30:0.16666666666666666 68:0.1111111111111111 82:0.09090909090909091 90:0.034482758620689655 100:0.2 135:0.25 286:0.1 654:1.0 719:0.5 987:1.0 1503:2.0 2694:1.0 3325:0.16666666666666666 3977:1.0 4938:0.3333333333333333 5058:1.0 7806:1.0 8252:1.0 8868:1.0
17 10:0.25 11:0.07692307692307693 265:0.1 286:0.1 1323:1.0 2490:1.0 4840:1.0 4852:0.3333333333333333 5045:1.0 5183:0.5 5280:1.0 5406:0.5 6387:1.0 8357:1.0 8513:1.0 8832:1.0
17 11:0.07692307692307693 1546:0.14285714285714285 4769:0.4 4814:1.0 4822:1.0 4842:0.5 4843:0.5 4852:0.3333333333333333 4889:1.0 4908:1.0 4958:1.0 4959:1.0 4992:0.3333333333333333 4993:1.0 4994:1.0 4995:1.0 4997:1.0 5042:0.2 5055:0.5 5095:1.0 5233:1.0 5271:0.3333333333333333 5406:0.5 5654:1.0 6405:0.5 6406:1.0 6417:1.0 7881:1.0
17 10:0.25 39:0.5 68:0.2222222222222222 83:0.125 138:0.5 186:1.0 259:1.0 263:0.25 286:0.1 359:0.2 521:1.0 559:2.0 1045:1.0 1282:1.0 3325:0.16666666666666666 4830:0.2 4843:0.5 4881:1.0 4886:0.5 4927:2.0 4995:1.0 5009:0.25 5010:1.0 5011:1.0 5012:1.0 5387:1.0 6836:1.0 8063:1.0 9140:1.0
17 11:0.15384615384615385 22:1.0 28:0.07142857142857142 59:1.0 83:0.25 170:0.1 264:1.0 265:0.05 298:0.5 313:0.16666666666666666 946:0.5 948:1.0 1594:1.0 2692:1.0 4769:0.2 4814:1.0 4815:0.25 4823:1.0 4830:0.2 4865:1.0 4866:1.0 4881:1.0 4958:1.0 4959:1.0 4970:1.0 5026:0.25 5027:1.0 5028:1.0 5153:0.5 5762:0.5 6377:1.0 6663:1.0 7166:1.0 8046:1.0 8160:1.0
17 59:0.5 168:0.3333333333333333 204:0.3333333333333333 286:0.1 1503:1.0 1546:0.14285714285714285 1879:1.0 3316:0.5 3325:0.16666666666666666 4769:0.2 4852:0.3333333333333333 4879:1.0 4890:1.0 4911:1.0 5042:0.2 5144:1.0 5190:1.0 5271:0.3333333333333333 5381:1.0 5747:1.0 5979:1.0 6240:1.0 6263:1.0 6380:1.0 6569:1.0 8546:1.0
17 90:0.034482758620689655 212:1.0 268:1.0 596:0.3333333333333333 824:1.0 4100:1.0 4769:0.2 4870:1.0 4927:1.0 4938:0.3333333333333333 4970:0.5 5172:1.0 6060:1.0 6141:1.0 6663:1.0
17 415:1.0 4830:0.4 4927:1.0 4938:0.3333333333333333 4970:0.5 5049:1.0 5150:0.5 5190:1.0 5243:1.0 5338:1.0 5510:1.0 5527:1.0 5616:0.5 5637:0.5 5667:0.5 6083:1.0 6569:1.0 7005:1.0 7472:1.0 8970:1.0
17 265:0.1 1546:0.2857142857142857 3316:1.0 4769:0.2 4813:1.0 4830:0.2 4840:1.0 4850:1.0 4886:0.5 4924:1.0 5065:0.5 5074:0.3333333333333333 5145:1.0 5178:0.5 5184:1.0 5280:1.0 8655:1.0
|
a1db9dee061836a79a9b2b7c5133ca586545a3a9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2063/CH7/EX7.24/7_24.sce | 1afb42c7c04c00e3c81a6de43b337707fd8c7b9b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,031 | sce | 7_24.sce | clc
clear
//Input data
d=0.3;//Diameter of the bore in m
L=0.45;//Stroke length in m
N=220;//Operating speed of the engine in rpm
T=3600;//Duration of trial in sec
F=7;//Fuel consumption in kg per minute
CV=45000;//Calorific value of fuel in kJ/kg
A=320;//Area of indicator diagram in mm^2
l=60;//Length of indicator diagram in mm
S=1.1;//Spring index in bar/mm
W=130;//Net load on brakes in kg
D=1.65;//Diameter of brake drum in m
W1=500;//Total weight of jacket cooling water in kg
t=40;//Temperature rise of jacket cooling water in degrees celsius
t1=300;//Temperature of exhaust gases in degrees celsius
ma=300;//Air consumption in kg
sg=1.004;//Specific heat of exhaust gas in kJ/kgK
sw=4.185;//Specific heat of water in kJ/kgK
t2=25;//Room temperature in degrees celsius
g=9.81;//gravity
//Calculations
P=(W*g*3.14*D*N)/(1000*60);//Power available at brakes in kW
pm=(A*S)/l;//Mean effective pressure in bar
I=(pm*10^5*L*((3.14*d^2)/4)*N)/(1000*2*60);//Indicated power developed in kW
nm=(P/I)*100;//Mechanical efficiency in percent
nt=(P/((F/T)*CV))*100;//Brake thermal efficiency in percent
ni=(I/((F/T)*CV))*100;//Indicated thermal efficiency in percent
Hs=F*CV;//Heat supplied on one hour basis
Hp=P*T;//Heat equivalent of brake power in kJ
Hf=I-P;//Heat lost in friction in kJ
Hc=W1*t*sw;//Heat carried away by cooling water in kJ
He=(ma+F)*(t1-t2)*sg;//Heat carried away by exhaust gas in kJ
Hu=Hs-(He+Hf+Hc+He);//Heat unaccounted in kJ
nb=(He/Hs)*100;//Heat equivalent of power at brakes in percent
nf=(Hf/Hs)*100;//Heat lost in friction in percent
nw=(Hc/Hs)*100;//Heat removed by jacket water in percent
ne=(He/Hs)*100;//Heat carried away by exhaust gases in percent
nu=(Hu/Hs)*100;//Heat unaccounted in percent
//Output
printf('(a)Power available at brakes is %3.2f kW\n (b)Indicated power developed is %3.2f kW\n (c)Mechanical efficiency is %3.2f percent\n (d)Brake Thermal efficiency is %3.2f percent\n (e)Indicated thermal efficiency is %3.2f percent',P,I,nm,nt,ni)
|
7388408366fd527f56fa00bbad5cc78f67dee5db | 449d555969bfd7befe906877abab098c6e63a0e8 | /3041/CH2/EX2.1/Ex2_1.sce | b791348a5fe94d9eeadf0c0259faa7eafacb0c2b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 702 | sce | Ex2_1.sce | //Variable declaration
Rb=200 //base resistance(ohm)
Vbe=0.7 //base emitter voltage drop(V) in active region
Vbb=5 //base voltage of bipolar transistor(V)
beeta=100 //current gain
Rc=3 //collector resistance(k ohms)
Vcc=10 //voltage given to the collector(V)
//Calculations
Ib=(Vbb-Vbe)/Rb //base current(mA)
Ic=beeta*Ib //collector current(mA)
Vcb=-Vbe-(Rc*Ic)+Vcc //collector base voltage drop(V)
//Results
printf ("Base current Ib = %.4f mA",Ib)
printf ("Collector current Ic = %.2f mA",Ic)
printf ("Reverse bias collector junction Vcb = %.2f V",Vcb)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.