blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
6
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
87
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
15 values
visit_date
timestamp[us]date
2016-08-04 09:00:04
2023-09-05 17:18:33
revision_date
timestamp[us]date
1998-12-11 00:15:10
2023-09-02 05:42:40
committer_date
timestamp[us]date
2005-04-26 09:58:02
2023-09-02 05:42:40
github_id
int64
436k
586M
star_events_count
int64
0
12.3k
fork_events_count
int64
0
6.3k
gha_license_id
stringclasses
7 values
gha_event_created_at
timestamp[us]date
2012-11-16 11:45:07
2023-09-14 20:45:37
gha_created_at
timestamp[us]date
2010-03-22 23:34:58
2023-01-07 03:47:44
gha_language
stringclasses
36 values
src_encoding
stringclasses
17 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
15 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
5b08585bb22624f2c81f878a5dbd7c256fe66f6d
449d555969bfd7befe906877abab098c6e63a0e8
/2240/CH31/EX30.2/EX30_2.sce
a362bb4d6a66990461160fdac6ca26467d23d374
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,177
sce
EX30_2.sce
// Grob's Basic Electronics 11e // Chapter No. 30 // Example No. 30_2 clear; clc; // Find the minimim and maximum value of Id and Vds if Vgs=-1.5 Volts // Given Data Idssmin = 2*10^-3; // Idss(min)=2m Amp Idssmax = 20*10^-3; // Idss(max)=20m Amp Vgs = -1.5; // Voltage Gate-Source=-1.5V Vgsoffmin = -2; // Voltage Gate-Source(off)(min)=-2 Volts Vgsoffmax = -8; // Voltage Gate-Source(off)(max)=-8 Volts Vdd = 20; // Supply Voltage(Drain)=20 Volts Rd = 1*10^3; // Drain Resistance=1k Ohms a = 1-(Vgs/Vgsoffmin); b = 1-(Vgs/Vgsoffmax); // Calculation using Minimum Values Id1 = Idssmin*a*a; disp (Id1,'The Value of Id in Amps using Minimum Values') disp ('i.e 125 uAmps') Vds1 = Vdd-Id1*Rd; disp (Vds1,'The Value of Vds in Volts using Minimum Values') // Calculation using Maximum Values Id2 = Idssmax*b*b; disp (Id2,'The Value of Id in Amps using Maximum Values') disp ('i.e 13.2 mAmps') Vds2 = Vdd-Id2*Rd; disp (Vds2,'The Value of Vds in Volts using Maximun Values') Vp = -Vgsoffmax; Vdsp = Vp+Vgs; disp (Vdsp,'The Value of Vds(p) in Volts using Maximun Values')
b05316705c377c202ce6bdef295775468cb9ea5d
449d555969bfd7befe906877abab098c6e63a0e8
/635/CH6/EX6.1/Ch06Ex1.sci
365c9e27f98cad76118257e74f08f929cb747578
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
693
sci
Ch06Ex1.sci
// Scilab Code Ex6.1 Rate of diffusion of nitrogen through steel wall: Page-195 (2010) D = 1e-019; // Diffusion coeffcient of nitrogen in steel at room temperature, metre square per sec dc = 10; // Concentration of nitrogen at the inner surface of the tank, kg per metre cube dx = 10e-03; // Thickness of the steel wall, m J = D*(dc/dx); // Fick's first law giving outward flux of nitrogen through steel wall of the tank, kg per metre square per second printf("\nThe rate at which nitrogen escapes through the tank wall = %1.0e kg per metre square per sec", J); // Result // The rate at which nitrogen escapes through the tank wall = 1e-016 kg per metre square per sec
4be4f0a0cd0999541b41f4adbb385e250d523c6d
449d555969bfd7befe906877abab098c6e63a0e8
/1535/CH9/EX9.1/Ch09Ex1.sci
4a457e3f4d9e12e27b03dfef18aa0eab06b45245
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
375
sci
Ch09Ex1.sci
// Scilab Code Ex9.1: De-broglie wavelength of an electron from accelerating potential : Page-202 (2010) V = 100; // Accelerating potential for electron, volt lambda = sqrt(150/V)*1e-010; // de-Broglie wavelength of electron, m printf("\nThe De-Broglie wavelength of electron = %4.2e m", lambda); // Result // The De-Broglie wavelength of electron = 1.22e-010 m
7c6c4cd3cff0659ebc863db5c2a4dd3c7c9bf91b
449d555969bfd7befe906877abab098c6e63a0e8
/1946/CH2/EX2.7/Ex_2_7.sce
6f61eabd57643d50822f59f11e8d5e2c69115d20
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
337
sce
Ex_2_7.sce
// Example 2.7:Number of the modes clc; clear; close; n1=1.48;//Waveguide Refractive Index n2=0.01;//Cladding Refractive Index h= 0.84;// Wavelenght in micrometers a= 25;// Core radius in micrometers NA=(n1^2-n2^2);// Numerical Aperture M=round((((2*%pi)/h)^2*a^2*NA)/100);// v= round(sqrt(M*2));// disp(v,"Number of modes")
ff84df6a2eee98c9a5f735f3c78a9753a948a043
449d555969bfd7befe906877abab098c6e63a0e8
/2969/CH5/EX5.19/Ex5_19.sce
ef8d1aced549080a3f26b5e1b0dedcf80de685a9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
670
sce
Ex5_19.sce
clc clear //DATA GIVEN r=14; //compression ratio //fuel cut-off is delayed from 5-8% //for air, gamma=1.4 g=1.4; //when fuel is cut-off at 5% c1=5; rho1=c1/100*(r-1)+1; //Efficiency of diesel engine ETAdiesel=1-[1/(r)^(g-1)][(rho^g-1)/(rho-1)] ETAdiesel1=1-[1/g/(r)^(g-1)]*[(rho1^g-1)/(rho1-1)]; //when fuel is cut-off at 8% c2=8; rho2=c2/100*(r-1)+1; //Efficiency of diesel engine ETAdiesel=1-[1/(r)^(g-1)][(rho^g-1)/(rho-1)] ETAdiesel2=1-[1/g/(r)^(g-1)]*[(rho2^g-1)/(rho2-1)]; ETAloss=(ETAdiesel1-ETAdiesel2)*100; printf(' The Percentage loss in efficiency due to delay in fuel cut-off is: %1.1f percent. \n',ETAloss);
3454a1bd50b88f338d4c2c18e6cf929176f2aa67
a0e0166f4d441d79605d433c627b4f5dad953f3e
/CG.sce
417100a9a758c4d2fceebfbe3ba7afbff0a8ca03
[]
no_license
TakeyukiHarayama/Advanced_Course_In_Cmputational_Algorithms_report2
bfbd2f1a787e46b5b7e892df417e29b5065ad374
0b79a8e9f6f6c052c0f80ceffe2ca7a6ff6bf9e0
refs/heads/master
2020-09-14T10:23:31.789034
2019-11-21T06:20:37
2019-11-21T06:20:37
223,102,605
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,152
sce
CG.sce
clear function [y] = mat_vec_mul(matvecmul_vec) //matric-vector multiplication for A_D for i = 1:n y(i) = A_D(i) * matvecmul_vec(i); end //matric-vector multiplication for A_L for i = 1:n for j = row_ptr(i):row_ptr(i+1)-1 y(i) = y(i) + val(j) * matvecmul_vec(col_ind(j)); end end //matric-vector multiplication for A_LT for i = 1:n for j = row_ptr(i):row_ptr(i+1)-1 y(col_ind(j)) = y(col_ind(j)) + val(j) * matvecmul_vec(i); end end endfunction if ( exists('func1') == 0 ) exec('func1.sci'); end if ( exists('func2') == 0 ) exec('func2.sci'); end if ( exists('GenLS') == 0 ) exec('GenLS.sci'); end itr = 0; N = 11; [A_D, val, col_ind, row_ptr, b] = GenLS(N); n = length(A_D); //initilaze vector x for i = 1:n x(i) = 0.0; end //CG method [y] = mat_vec_mul(x); r0 = b - y; p = r0; //main loop of CG method while 1 itr = itr + 1; [q] = mat_vec_mul(p); alpha = (r0' * r0) / (p' * q); x = x + alpha * p; rk = r0 - alpha * q; if (norm(rk, 2) / norm(b, 2) <= 1.0E-12) then break; end beta = (rk' * rk) / (r0' * r0); p = rk + beta * p; r0 = rk; end disp(itr);
94ea77c79b06ab4cd02216d1290b6a439dc73e1d
717ddeb7e700373742c617a95e25a2376565112c
/806/DEPENDENCIES/157.sci
33a0e21bc2694109b6cf28bfd7d931e37549ce01
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
68
sci
157.sci
K=2.2//GPa(Bulk modulus) dv=-0.5//percent(volume change of water)
0e043dc9f2781b71431f0bdefbf10777c24cd832
449d555969bfd7befe906877abab098c6e63a0e8
/23/CH7/EX7.2/Example_7_2.sce
8379bf3ca6e204a9ecdf29a3b994f485cb0b41d3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
814
sce
Example_7_2.sce
clear; clc; //To find Approx Value function[A]=approx(V,n) A=round(V*10^n)/10^n;//V-Value n-To what place funcprot(0) endfunction //Example 7.2 //Caption : program to find the Ratio of Area's in a Nozzle for Diff Pressures //Given Values T=573.15;//[K] P=[700,600,500,400,300,200];//[KPa] //values for H,V,S for various P from steam tables H=[3059.8,3020.4,2975.71,2923.5,2859.9,2777.35];//[KJ/Kg] V=[371.39,418.25,481.26,571.23,711.93,970.04];//[cm^3/g] S=7.29997*ones(1,6);//[KJ/Kg/K] Isentropic u0=30;//[m/s] u=zeros(1,6); //Using Eq(7.3) //u^2=u1^2-2(H-H1) u=approx(sqrt((u0^2-2*(H-H(1))*10.^3)),1); //Using Eq(2.27) //A/A1=u1*V/V1*u; c=u(1)./V(1); K=approx((c*V./u),3);//K=A/A1 c=u1/V1 Ans=[P',V',u',K']; disp(Ans,' P/[KPa] V/[cm^3/g] u/[m/s] A/A1') //End
8d20b89c440547d22c871259d6f89bcfc4f98b85
eec7ebd86603d3208aacde26fd2abcbe9bd66968
/EAPSI_Scan_Task2_7_21_18_UM.sce
e552230b66b4a7bab829b401edfbc1a6240043f1
[]
no_license
sra27/Presentation-Scenarios
897dd11dabbc31b6baafbbaa5e3d14b2eb8030ee
856b244d97509847ac5c04bb3bdc305128b52326
refs/heads/master
2020-04-04T15:09:47.936450
2018-11-03T21:53:00
2018-11-03T21:53:00
156,026,804
0
0
null
null
null
null
UTF-8
Scilab
false
false
62,113
sce
EAPSI_Scan_Task2_7_21_18_UM.sce
no_logfile = false; active_buttons = 5; button_codes = 1,2,3,4,5; response_matching = simple_matching; write_codes = true; response_port_output=false; default_monitor_sounds = false; default_font = "Arial"; default_font_size = 40; default_text_color = 0, 0, 0; default_background_color = 122, 122, 122; default_formatted_text = true; stimulus_properties = letter, string, is_target, string, stim, string, x_pos, number, y_pos, number, x_sel, number, y_sel, number; event_code_delimiter = "/n"; default_path = "C:/Users/Psychology/Desktop/Losin SCNL/EAPSI/Stimuli"; begin; #================================================================================================= #TEXT #================================================================================================= picture { text { caption = "End Run"; }EndRunText; x = 0; y = 0; }EndRun; picture { text { caption = "Exit Program"; }ExitProgramText; x = 0; y = 0; }ExitProgram; picture { text { caption = "Waiting for trigger..."; }TriggerWaitText; x = 0; y = 0; }TriggerWait; picture { text { caption = "Welcome to the experiment!"; }IntroText1; x = 0; y = 0; }Intro; #================================================================================================= #IAPS STIMULUS ARRAYS #================================================================================================= array{ # Look Neutral bitmap { filename = "iaps/5130.jpg"; preload = true; description = "stim_lookneu_5130_"; }; bitmap { filename = "iaps/7020.jpg"; preload = true; description = "stim_lookneu_7020_"; }; bitmap { filename = "iaps/7046.jpg"; preload = true; description = "stim_lookneu_7046_"; }; bitmap { filename = "iaps/2850.jpg"; preload = true; description = "stim_lookneu_2850_"; }; bitmap { filename = "iaps/5920.jpg"; preload = true; description = "stim_lookneu_5920_"; }; bitmap { filename = "iaps/1670.jpg"; preload = true; description = "stim_lookneu_1670_"; }; bitmap { filename = "iaps/1935.jpg"; preload = true; description = "stim_lookneu_1935_"; }; bitmap { filename = "iaps/1945.jpg"; preload = true; description = "stim_lookneu_1945_"; }; bitmap { filename = "iaps/2302.jpg"; preload = true; description = "stim_lookneu_2302_"; }; bitmap { filename = "iaps/5535.jpg"; preload = true; description = "stim_lookneu_5535_"; }; bitmap { filename = "iaps/5120.jpg"; preload = true; description = "stim_lookneu_5120_"; }; bitmap { filename = "iaps/5395.jpg"; preload = true; description = "stim_lookneu_5395_"; }; bitmap { filename = "iaps/2191.jpg"; preload = true; description = "stim_lookneu_2191_"; }; bitmap { filename = "iaps/2122.jpg"; preload = true; description = "stim_lookneu_2122_"; }; bitmap { filename = "iaps/2038.jpg"; preload = true; description = "stim_lookneu_2038_"; }; bitmap { filename = "iaps/2580.jpg"; preload = true; description = "stim_lookneu_2580_"; }; bitmap { filename = "iaps/7234.jpg"; preload = true; description = "stim_lookneu_7234_"; }; bitmap { filename = "iaps/2032.jpg"; preload = true; description = "stim_lookneu_2032_"; }; bitmap { filename = "iaps/6010.jpg"; preload = true; description = "stim_lookneu_6010_"; }; bitmap { filename = "iaps/2440.jpg"; preload = true; description = "stim_lookneu_2440_"; }; bitmap { filename = "iaps/2235.jpg"; preload = true; description = "stim_lookneu_2235_"; }; bitmap { filename = "iaps/2309.jpg"; preload = true; description = "stim_lookneu_2309_"; }; bitmap { filename = "iaps/5471.jpg"; preload = true; description = "stim_lookneu_5471_"; }; bitmap { filename = "iaps/2397.jpg"; preload = true; description = "stim_lookneu_2397_"; }; bitmap { filename = "iaps/8193.jpg"; preload = true; description = "stim_lookneu_8193_"; }; bitmap { filename = "iaps/7002.jpg"; preload = true; description = "stim_lookneu_7002_"; }; bitmap { filename = "iaps/7010.jpg"; preload = true; description = "stim_lookneu_7010_"; }; bitmap { filename = "iaps/7590.jpg"; preload = true; description = "stim_lookneu_7590_"; }; bitmap { filename = "iaps/7011.jpg"; preload = true; description = "stim_lookneu_7011_"; }; bitmap { filename = "iaps/7820.jpg"; preload = true; description = "stim_lookneu_7820_"; }; bitmap { filename = "iaps/9913.jpg"; preload = true; description = "stim_lookneu_9913_"; }; bitmap { filename = "iaps/1903.jpg"; preload = true; description = "stim_lookneu_1903_"; }; bitmap { filename = "iaps/2381.jpg"; preload = true; description = "stim_lookneu_2381_"; }; bitmap { filename = "iaps/2620.jpg"; preload = true; description = "stim_lookneu_2620_"; }; bitmap { filename = "iaps/7560.jpg"; preload = true; description = "stim_lookneu_7560_"; }; bitmap { filename = "iaps/7042.jpg"; preload = true; description = "stim_lookneu_7042_"; }; }IAPS_Look_Neutral; array{ # Look Negative Version 1 bitmap { filename = "iaps/9220.jpg"; preload = true; description = "stim_lookneg_9220_"; }; bitmap { filename = "iaps/1090.jpg"; preload = true; description = "stim_lookneg_1090_"; }; bitmap { filename = "iaps/9410.jpg"; preload = true; description = "stim_lookneg_9410_"; }; bitmap { filename = "iaps/6230.jpg"; preload = true; description = "stim_lookneg_6230_"; }; bitmap { filename = "iaps/2141.jpg"; preload = true; description = "stim_lookneg_2141_"; }; bitmap { filename = "iaps/1220.jpg"; preload = true; description = "stim_lookneg_1220_"; }; bitmap { filename = "iaps/1274.jpg"; preload = true; description = "stim_lookneg_1274_"; }; bitmap { filename = "iaps/3030.jpg"; preload = true; description = "stim_lookneg_3030_"; }; bitmap { filename = "iaps/6020.jpg"; preload = true; description = "stim_lookneg_6020_"; }; bitmap { filename = "iaps/6415.jpg"; preload = true; description = "stim_lookneg_6415_"; }; bitmap { filename = "iaps/1525.jpg"; preload = true; description = "stim_lookneg_1525_"; }; bitmap { filename = "iaps/9322.jpg"; preload = true; description = "stim_lookneg_9322_"; }; bitmap { filename = "iaps/2053.jpg"; preload = true; description = "stim_lookneg_2053_"; }; bitmap { filename = "iaps/2800.jpg"; preload = true; description = "stim_lookneg_2800_"; }; bitmap { filename = "iaps/2375.1.jpg"; preload = true; description = "stim_lookneg_2375.1_"; }; bitmap { filename = "iaps/9927.jpg"; preload = true; description = "stim_lookneg_9927_"; }; bitmap { filename = "iaps/9920.jpg"; preload = true; description = "stim_lookneg_9920_"; }; bitmap { filename = "iaps/9832.jpg"; preload = true; description = "stim_lookneg_9832_"; }; bitmap { filename = "iaps/9635.1.jpg"; preload = true; description = "stim_lookneg_9635.1_"; }; bitmap { filename = "iaps/9620.jpg"; preload = true; description = "stim_lookneg_9620_"; }; bitmap { filename = "iaps/9500.jpg"; preload = true; description = "stim_lookneg_9500_"; }; bitmap { filename = "iaps/9491.jpg"; preload = true; description = "stim_lookneg_9491_"; }; bitmap { filename = "iaps/9423.jpg"; preload = true; description = "stim_lookneg_9423_"; }; bitmap { filename = "iaps/6830.jpg"; preload = true; description = "stim_lookneg_6830_"; }; bitmap { filename = "iaps/9400.jpg"; preload = true; description = "stim_lookneg_9400_"; }; bitmap { filename = "iaps/9340.jpg"; preload = true; description = "stim_lookneg_9340_"; }; bitmap { filename = "iaps/9187.jpg"; preload = true; description = "stim_lookneg_9187_"; }; bitmap { filename = "iaps/9075.jpg"; preload = true; description = "stim_lookneg_9075_"; }; bitmap { filename = "iaps/9440.jpg"; preload = true; description = "stim_lookneg_9440_"; }; bitmap { filename = "iaps/7359.jpg"; preload = true; description = "stim_lookneg_7359_"; }; bitmap { filename = "iaps/6300.jpg"; preload = true; description = "stim_lookneg_6300_"; }; bitmap { filename = "iaps/6570.jpg"; preload = true; description = "stim_lookneg_6570_"; }; bitmap { filename = "iaps/6231.jpg"; preload = true; description = "stim_lookneg_6231_"; }; bitmap { filename = "iaps/3550.jpg"; preload = true; description = "stim_lookneg_3550_"; }; bitmap { filename = "iaps/9254.jpg"; preload = true; description = "stim_lookneg_9254_"; }; bitmap { filename = "iaps/2981.jpg"; preload = true; description = "stim_lookneg_2981_"; }; }IAPS_Look_Negative_1; array{ # Suppress Negative Version 1 bitmap { filename = "iaps/9941.jpg"; preload = true; description = "stim_suppress_9941_"; }; bitmap { filename = "iaps/2456.jpg"; preload = true; description = "stim_suppress_2456_"; }; bitmap { filename = "iaps/9560.jpg"; preload = true; description = "stim_suppress_9560_"; }; bitmap { filename = "iaps/9253.jpg"; preload = true; description = "stim_suppress_9253_"; }; bitmap { filename = "iaps/2683.jpg"; preload = true; description = "stim_suppress_2683_"; }; bitmap { filename = "iaps/2688.jpg"; preload = true; description = "stim_suppress_2688_"; }; bitmap { filename = "iaps/9280.jpg"; preload = true; description = "stim_suppress_9280_"; }; bitmap { filename = "iaps/1275.jpg"; preload = true; description = "stim_suppress_1275_"; }; bitmap { filename = "iaps/9300.jpg"; preload = true; description = "stim_suppress_9300_"; }; bitmap { filename = "iaps/2710.jpg"; preload = true; description = "stim_suppress_2710_"; }; bitmap { filename = "iaps/9181.jpg"; preload = true; description = "stim_suppress_9181_"; }; bitmap { filename = "iaps/6213.jpg"; preload = true; description = "stim_suppress_6213_"; }; bitmap { filename = "iaps/2751.jpg"; preload = true; description = "stim_suppress_2751_"; }; bitmap { filename = "iaps/9342.jpg"; preload = true; description = "stim_suppress_9342_"; }; bitmap { filename = "iaps/1111.jpg"; preload = true; description = "stim_suppress_1111_"; }; bitmap { filename = "iaps/8485.jpg"; preload = true; description = "stim_suppress_8485_"; }; bitmap { filename = "iaps/9911.jpg"; preload = true; description = "stim_suppress_9911_"; }; bitmap { filename = "iaps/9008.jpg"; preload = true; description = "stim_suppress_9008_"; }; bitmap { filename = "iaps/9630.jpg"; preload = true; description = "stim_suppress_9630_"; }; bitmap { filename = "iaps/9610.jpg"; preload = true; description = "stim_suppress_9610_"; }; bitmap { filename = "iaps/9561.jpg"; preload = true; description = "stim_suppress_9561_"; }; bitmap { filename = "iaps/9590.jpg"; preload = true; description = "stim_suppress_9590_"; }; bitmap { filename = "iaps/2811.jpg"; preload = true; description = "stim_suppress_2811_"; }; bitmap { filename = "iaps/9413.jpg"; preload = true; description = "stim_suppress_9413_"; }; bitmap { filename = "iaps/9295.jpg"; preload = true; description = "stim_suppress_9295_"; }; bitmap { filename = "iaps/3062.jpg"; preload = true; description = "stim_suppress_3062_"; }; bitmap { filename = "iaps/9325.jpg"; preload = true; description = "stim_suppress_9325_"; }; bitmap { filename = "iaps/9250.jpg"; preload = true; description = "stim_suppress_9250_"; }; bitmap { filename = "iaps/9007.jpg"; preload = true; description = "stim_suppress_9007_"; }; bitmap { filename = "iaps/3061.jpg"; preload = true; description = "stim_suppress_3061_"; }; bitmap { filename = "iaps/3051.jpg"; preload = true; description = "stim_suppress_3051_"; }; bitmap { filename = "iaps/6563.jpg"; preload = true; description = "stim_suppress_6563_"; }; bitmap { filename = "iaps/6210.jpg"; preload = true; description = "stim_suppress_6210_"; }; bitmap { filename = "iaps/9301.jpg"; preload = true; description = "stim_suppress_9301_"; }; bitmap { filename = "iaps/3160.jpg"; preload = true; description = "stim_suppress_3160_"; }; bitmap { filename = "iaps/3005.1.jpg"; preload = true; description = "stim_suppress_3005.1_"; }; }IAPS_Suppress_Negative_1; array{ # Look Negative Version 2 bitmap { filename = "iaps/9941.jpg"; preload = true; description = "stim_lookneg_9941_"; }; bitmap { filename = "iaps/2456.jpg"; preload = true; description = "stim_lookneg_2456_"; }; bitmap { filename = "iaps/9560.jpg"; preload = true; description = "stim_lookneg_9560_"; }; bitmap { filename = "iaps/9253.jpg"; preload = true; description = "stim_lookneg_9253_"; }; bitmap { filename = "iaps/2683.jpg"; preload = true; description = "stim_lookneg_2683_"; }; bitmap { filename = "iaps/2688.jpg"; preload = true; description = "stim_lookneg_2688_"; }; bitmap { filename = "iaps/9280.jpg"; preload = true; description = "stim_lookneg_9280_"; }; bitmap { filename = "iaps/1275.jpg"; preload = true; description = "stim_lookneg_1275_"; }; bitmap { filename = "iaps/9300.jpg"; preload = true; description = "stim_lookneg_9300_"; }; bitmap { filename = "iaps/2710.jpg"; preload = true; description = "stim_lookneg_2710_"; }; bitmap { filename = "iaps/9181.jpg"; preload = true; description = "stim_lookneg_9181_"; }; bitmap { filename = "iaps/6213.jpg"; preload = true; description = "stim_lookneg_6213_"; }; bitmap { filename = "iaps/2751.jpg"; preload = true; description = "stim_lookneg_2751_"; }; bitmap { filename = "iaps/9342.jpg"; preload = true; description = "stim_lookneg_9342_"; }; bitmap { filename = "iaps/1111.jpg"; preload = true; description = "stim_lookneg_1111_"; }; bitmap { filename = "iaps/8485.jpg"; preload = true; description = "stim_lookneg_8485_"; }; bitmap { filename = "iaps/9911.jpg"; preload = true; description = "stim_lookneg_9911_"; }; bitmap { filename = "iaps/9008.jpg"; preload = true; description = "stim_lookneg_9008_"; }; bitmap { filename = "iaps/9630.jpg"; preload = true; description = "stim_lookneg_9630_"; }; bitmap { filename = "iaps/9610.jpg"; preload = true; description = "stim_lookneg_9610_"; }; bitmap { filename = "iaps/9561.jpg"; preload = true; description = "stim_lookneg_9561_"; }; bitmap { filename = "iaps/9590.jpg"; preload = true; description = "stim_lookneg_9590_"; }; bitmap { filename = "iaps/2811.jpg"; preload = true; description = "stim_lookneg_2811_"; }; bitmap { filename = "iaps/9413.jpg"; preload = true; description = "stim_lookneg_9413_"; }; bitmap { filename = "iaps/9295.jpg"; preload = true; description = "stim_lookneg_9295_"; }; bitmap { filename = "iaps/3062.jpg"; preload = true; description = "stim_lookneg_3062_"; }; bitmap { filename = "iaps/9325.jpg"; preload = true; description = "stim_lookneg_9325_"; }; bitmap { filename = "iaps/9250.jpg"; preload = true; description = "stim_lookneg_9250_"; }; bitmap { filename = "iaps/9007.jpg"; preload = true; description = "stim_lookneg_9007_"; }; bitmap { filename = "iaps/3061.jpg"; preload = true; description = "stim_lookneg_3061_"; }; bitmap { filename = "iaps/3051.jpg"; preload = true; description = "stim_lookneg_3051_"; }; bitmap { filename = "iaps/6563.jpg"; preload = true; description = "stim_lookneg_6563_"; }; bitmap { filename = "iaps/6210.jpg"; preload = true; description = "stim_lookneg_6210_"; }; bitmap { filename = "iaps/9301.jpg"; preload = true; description = "stim_lookneg_9301_"; }; bitmap { filename = "iaps/3160.jpg"; preload = true; description = "stim_lookneg_3160_"; }; bitmap { filename = "iaps/3005.1.jpg"; preload = true; description = "stim_lookneg_3005.1_"; }; }IAPS_Look_Negative_2; array{ # Suppress Negative Version 2 bitmap { filename = "iaps/9220.jpg"; preload = true; description = "stim_suppress_9220_"; }; bitmap { filename = "iaps/1090.jpg"; preload = true; description = "stim_suppress_1090_"; }; bitmap { filename = "iaps/9410.jpg"; preload = true; description = "stim_suppress_9410_"; }; bitmap { filename = "iaps/6230.jpg"; preload = true; description = "stim_suppress_6230_"; }; bitmap { filename = "iaps/2141.jpg"; preload = true; description = "stim_suppress_2141_"; }; bitmap { filename = "iaps/1220.jpg"; preload = true; description = "stim_suppress_1220_"; }; bitmap { filename = "iaps/1274.jpg"; preload = true; description = "stim_suppress_1274_"; }; bitmap { filename = "iaps/3030.jpg"; preload = true; description = "stim_suppress_3030_"; }; bitmap { filename = "iaps/6020.jpg"; preload = true; description = "stim_suppress_6020_"; }; bitmap { filename = "iaps/6415.jpg"; preload = true; description = "stim_suppress_6415_"; }; bitmap { filename = "iaps/1525.jpg"; preload = true; description = "stim_suppress_1525_"; }; bitmap { filename = "iaps/9322.jpg"; preload = true; description = "stim_suppress_9322_"; }; bitmap { filename = "iaps/2053.jpg"; preload = true; description = "stim_suppress_2053_"; }; bitmap { filename = "iaps/2800.jpg"; preload = true; description = "stim_suppress_2800_"; }; bitmap { filename = "iaps/2375.1.jpg"; preload = true; description = "stim_suppress_2375.1_"; }; bitmap { filename = "iaps/9927.jpg"; preload = true; description = "stim_suppress_9927_"; }; bitmap { filename = "iaps/9920.jpg"; preload = true; description = "stim_suppress_9920_"; }; bitmap { filename = "iaps/9832.jpg"; preload = true; description = "stim_suppress_9832_"; }; bitmap { filename = "iaps/9635.1.jpg"; preload = true; description = "stim_suppress_9635.1_"; }; bitmap { filename = "iaps/9620.jpg"; preload = true; description = "stim_suppress_9620_"; }; bitmap { filename = "iaps/9500.jpg"; preload = true; description = "stim_suppress_9500_"; }; bitmap { filename = "iaps/9491.jpg"; preload = true; description = "stim_suppress_9491_"; }; bitmap { filename = "iaps/9423.jpg"; preload = true; description = "stim_suppress_9423_"; }; bitmap { filename = "iaps/6830.jpg"; preload = true; description = "stim_suppress_6830_"; }; bitmap { filename = "iaps/9400.jpg"; preload = true; description = "stim_suppress_9400_"; }; bitmap { filename = "iaps/9340.jpg"; preload = true; description = "stim_suppress_9340_"; }; bitmap { filename = "iaps/9187.jpg"; preload = true; description = "stim_suppress_9187_"; }; bitmap { filename = "iaps/9075.jpg"; preload = true; description = "stim_suppress_9075_"; }; bitmap { filename = "iaps/9440.jpg"; preload = true; description = "stim_suppress_9440_"; }; bitmap { filename = "iaps/7359.jpg"; preload = true; description = "stim_suppress_7359_"; }; bitmap { filename = "iaps/6300.jpg"; preload = true; description = "stim_suppress_6300_"; }; bitmap { filename = "iaps/6570.jpg"; preload = true; description = "stim_suppress_6570_"; }; bitmap { filename = "iaps/6231.jpg"; preload = true; description = "stim_suppress_6231_"; }; bitmap { filename = "iaps/3550.jpg"; preload = true; description = "stim_suppress_3550_"; }; bitmap { filename = "iaps/9254.jpg"; preload = true; description = "stim_suppress_9254_"; }; bitmap { filename = "iaps/2981.jpg"; preload = true; description = "stim_suppress_2981_"; }; }IAPS_Suppress_Negative_2; bitmap { filename = "iaps/1121.jpg"; }IAPSBit; picture { bitmap IAPSBit; x=0; y=0; }IAPSPic; #================================================================================================= #IAPS CUE ARRAYS #================================================================================================= array { text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } cue1; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneu_NA_"; } ; } IAPS_Cue_Array_LookNeu; array { text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } cue2; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; text { caption = "<b>LOOK</b>"; preload = true; font_size = 85; description = "cue_lookneg_NA_"; } ; } IAPS_Cue_Array_LookNeg; array { text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; } cue3; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; text { caption = "<b>SUPPRESS</b>"; preload = true; font_size = 85; description = "cue_suppress_NA_"; }; } IAPS_Cue_Array_Suppress; #================================================================================================= #TRIALS #================================================================================================= #----- IAPS Cue Presentation ------ trial { trial_duration = 500; trial_type = fixed; stimulus_event { picture { text cue1; x = 0; y = 0; } IAPSCuePic1; } IAPSCueEvent1; } IAPSCueTrial1; trial { trial_duration = 500; trial_type = fixed; stimulus_event { picture { text cue2; x = 0; y = 0; } IAPSCuePic2; } IAPSCueEvent2; } IAPSCueTrial2; trial { trial_duration = 500; trial_type = fixed; stimulus_event { picture { text cue3; x = 0; y = 0; } IAPSCuePic3; } IAPSCueEvent3; } IAPSCueTrial3; #----- IAPS Picture Presentation -------- trial{ stimulus_event{ picture IAPSPic; time=0; duration=7000; }IAPSEvent; }IAPSTrial; #----- ITI -------- trial { trial_duration = 500; trial_type = fixed; stimulus_event { picture { text {caption = "+"; font_size = 60;}ITIText; x = 0; y = 0; }ITI1; }ITIEvent; }ITITrial; #----- End Run -------- trial { trial_duration = 1000; trial_type = fixed; stimulus_event { picture {text EndRunText;x = 0; y = 0;}; } EndRunEvent; }EndRunTrial; #----- Exit Program -------- trial { trial_duration = forever; trial_type = specific_response; terminator_button = 1; stimulus_event { picture {text ExitProgramText;x = 0; y = 0;}; } ExitProgramEvent; }ExitProgramTrial; trial { stimulus_event { picture {text IntroText1;x = 0; y = 0;}fmriTriggerpic; duration = response; code = " "; } FMRItriggerEvent; }FMRItriggerTrial; #----- Get Version Number -------- trial { trial_duration = forever; trial_type = specific_response; terminator_button = 1; #enter button is pressed picture { text { caption = " "; } Versiontext1; x = 0; y = 0; } Versionpic1; } VersionInfoTrial; picture { text { caption = "Enter Version Number"; }; x = 0; y = 0; text { caption = " "; } Versiontext2; x = 0; y = -180; } Versionpic2; trial { stimulus_event { nothing {}; } VersionEvent; }VersionTrial; #----- Get Run Number -------- trial { trial_duration = forever; trial_type = specific_response; terminator_button = 2; #enter button is pressed picture { text { caption = " "; } RunNumbertext1; x = 0; y = 0; } RunNumberpic1; } RunNumberInfoTrial; picture { text { caption = "Enter Run Number"; }; x = 0; y = 0; text { caption = " "; } RunNumbertext2; x = 0; y = -180; } RunNumberpic2; trial { stimulus_event { nothing {}; } RunNumberEvent; }RunNumberTrial; # ----- Biopac Trigger Trial-------- trial { stimulus_event { nothing {}; port = 1; port_code = 128; code = "biopac_trigger"; }Biopac_TriggerEvent; }Biopac_TriggerTrial; trial { stimulus_event { nothing {}; port = 1; port_code = 128; code = "biopac"; }BiopacEvent; }BiopacTrial; trial { stimulus_event { nothing {}; port = 1; port_code = 255; code = "biopac_stop"; }Biopac_Stop_Event; }Biopac_Stop_Trial; #==================================================================================================== #BEGIN PCL #==================================================================================================== begin_pcl; # set up output port for biopac output_port biopac = output_port_manager.get_port( 1 ); #==================================================================================================== #2D IMAGE ARRAYS FOR RANDOMIZATION #==================================================================================================== #put three IAPS condition arrays into one array for randomizing array<bitmap>IAPS_1[3][36]; IAPS_1[1].assign( IAPS_Look_Neutral ) ; IAPS_1[2].assign ( IAPS_Look_Negative_1 ) ; IAPS_1[3].assign ( IAPS_Suppress_Negative_1 ) ; #put three IAPS condition arrays into one array for randomizing array<bitmap>IAPS_2[3][36]; IAPS_2[1].assign( IAPS_Look_Neutral ) ; IAPS_2[2].assign ( IAPS_Look_Negative_2 ) ; IAPS_2[3].assign ( IAPS_Suppress_Negative_2 ) ; #put cue arrays into one array for randomizing array<text>Cues[3][36]; Cues[1].assign( IAPS_Cue_Array_LookNeu ) ; Cues[2].assign ( IAPS_Cue_Array_LookNeg ) ; Cues[3].assign ( IAPS_Cue_Array_Suppress ) ; #==================================================================================================== #READ INPUT FILE #==================================================================================================== array<int>stim_order_input[0][0]; input_file input_pictures = new input_file; if file_exists( "C:/Users/Psychology/Desktop/Losin SCNL/EAPSI/Output_Files/EAPSI_Task2_randomization_pictures_" + logfile.subject() + ".txt" ) then #open input files input_pictures.open ( "C:/Users/Psychology/Desktop/Losin SCNL/EAPSI/Output_Files/EAPSI_Task2_randomization_pictures_" + logfile.subject() + ".txt" ); #get image indices from input file loop until input_pictures.end_of_file() || !input_pictures.last_succeeded() begin array<int> temp_pictures_input[2]; temp_pictures_input[1] = input_pictures.get_int(); temp_pictures_input[2] = input_pictures.get_int(); stim_order_input.add( temp_pictures_input ); end; #==================================================================================================== #GET VERSION AND RUN NUMBER #==================================================================================================== #GET VERSION NUMBER string versionnr = system_keyboard.get_input( Versionpic2, Versiontext2 ); VersionEvent.set_event_code( "version_" + versionnr ); VersionTrial.present(); #GET RUN NUMBER string run = system_keyboard.get_input( RunNumberpic2, RunNumbertext2 ); RunNumberEvent.set_event_code( "run_" + run ); RunNumberTrial.present(); #==================================================================================================== #VERSION 1 INPUT #==================================================================================================== if versionnr == "1" then #==================================================================================================== #MAIN - VERSION 1 INPUT #==================================================================================================== #fMRI trigger FMRItriggerEvent.set_stimulus(TriggerWait); FMRItriggerEvent.set_event_code("fmri_trigger"); loop until (response_manager.last_response() == 5) begin FMRItriggerTrial.present(); end; #start biopac Biopac_TriggerEvent.set_event_code("bp_start_run"); biopac.set_pulse_width( 300 ); Biopac_TriggerTrial.present(); #Discarded TRs ITITrial.set_duration(10000); ITIEvent.set_event_code("discarded_TRs"); ITITrial.present(); #Baseline Fixation ITITrial.set_duration(20000); ITIEvent.set_event_code("baseline"); ITITrial.present(); loop int i = 1; int stim_ctr = 1; if run == "2" then i = 37; end; if run == "3" then i = 73; end; until i > stim_order_input.count() begin int this_array = stim_order_input[i][1]; int this_stim = stim_order_input[i][2]; array <int> IAPS_conds[3] = {1,2,3}; IAPS_conds.shuffle(); loop int cond = 1; until cond > 1 begin if (IAPS_conds[cond] == 1) then #LOOK NEUTRAL #Set length int length = clock.time() + 10500; #Picture Cue int lookneu = random(500,3000); IAPSCueTrial1.set_duration(lookneu); IAPSCuePic1.set_part( 1, Cues[this_array][this_stim]); IAPSCueEvent1.set_event_code( Cues[this_array][this_stim].description() + string( stim_ctr ) ); IAPSCueTrial1.present(); #Biopac Pulse BiopacEvent.set_event_code("bp_stim"); biopac.set_pulse_width( 100 ); BiopacTrial.present(); #Picture Presentation IAPSPic.set_part( 1, IAPS_1[this_array][this_stim]); IAPSEvent.set_event_code( IAPS_1[this_array][this_stim].description() + string( stim_ctr ) ); IAPSTrial.present(); #Catchup int rt_end = clock.time(); int time_left = length - rt_end; ITITrial.set_duration(time_left); ITIEvent.set_event_code("catchup"); ITITrial.present(); elseif (IAPS_conds[cond] == 2) then #LOOK NEGATIVE #Set length int length = clock.time() + 10500; #Picture Cue int lookneg = random(500,3000); IAPSCueTrial2.set_duration(lookneg); IAPSCuePic2.set_part( 1, Cues[this_array][this_stim]); IAPSCueEvent2.set_event_code( Cues[this_array][this_stim].description() + string( stim_ctr ) ); IAPSCueTrial2.present(); #Biopac Pulse BiopacEvent.set_event_code("bp_stim"); biopac.set_pulse_width( 100 ); BiopacTrial.present(); #Picture Presentation IAPSPic.set_part( 1, IAPS_1[this_array][this_stim]); IAPSEvent.set_event_code( IAPS_1[this_array][this_stim].description() + string( stim_ctr ) ); IAPSTrial.present(); #Catchup int rt_end = clock.time(); int time_left = length - rt_end; ITITrial.set_duration(time_left); ITIEvent.set_event_code("catchup"); ITITrial.present(); elseif (IAPS_conds[cond] == 3) then #SUPPRESS NEGATIVE #Set length int length = clock.time() + 10500; #Picture Cue int suppress = random(500,3000); IAPSCueTrial3.set_duration(suppress); IAPSCuePic3.set_part( 1, Cues[this_array][this_stim]); IAPSCueEvent3.set_event_code( Cues[this_array][this_stim].description() + string( stim_ctr ) ); IAPSCueTrial3.present(); #Biopac Pulse BiopacEvent.set_event_code("bp_stim"); biopac.set_pulse_width( 100 ); BiopacTrial.present(); #Picture Presentation IAPSPic.set_part(1, IAPS_1[this_array][this_stim]); IAPSEvent.set_event_code( IAPS_1[this_array][this_stim].description() + string( stim_ctr )); IAPSTrial.present(); #Catchup int rt_end = clock.time(); int time_left = length - rt_end; ITITrial.set_duration(time_left); ITIEvent.set_event_code("catchup"); ITITrial.present(); end; cond = cond + 1; end; stim_ctr = stim_ctr + 1; i = i + 1; if stim_ctr > 36 then stim_ctr = 1; #Baseline Fixation ITITrial.set_duration(20000); ITIEvent.set_event_code("baseline"); ITITrial.present(); #End of Run EndRunEvent.set_event_code("end_run"); EndRunTrial.present(); #Biopac Pulse BiopacEvent.set_event_code("bp_end_run"); biopac.set_pulse_width( 100 ); BiopacTrial.present(); #Close Program ExitProgramEvent.set_event_code("exit_program"); ExitProgramTrial.present(); end; end; end; #==================================================================================================== #VERSION 2 INPUT #==================================================================================================== if versionnr == "2" then #==================================================================================================== #MAIN - VERSION 2 INPUT #==================================================================================================== #fMRI trigger FMRItriggerEvent.set_stimulus(TriggerWait); FMRItriggerEvent.set_event_code("fmri_trigger"); loop until (response_manager.last_response() == 5) begin FMRItriggerTrial.present(); end; #start biopac Biopac_TriggerEvent.set_event_code("bp_start_run"); biopac.set_pulse_width( 300 ); Biopac_TriggerTrial.present(); #Discarded TRs ITITrial.set_duration(10000); ITIEvent.set_event_code("discarded_TRs"); ITITrial.present(); #Baseline Fixation ITITrial.set_duration(20000); ITIEvent.set_event_code("baseline"); ITITrial.present(); loop int i = 109; int stim_ctr = 1; if run == "2" then i = 145; end; if run == "3" then i = 181; end; until i > stim_order_input.count() begin int this_array = stim_order_input[i][1]; int this_stim = stim_order_input[i][2]; array <int> IAPS_conds[3] = {1,2,3}; IAPS_conds.shuffle(); loop int cond = 1; until cond > 1 begin if (IAPS_conds[cond] == 1) then #LOOK NEUTRAL #Set length int length = clock.time() + 10500; #Picture Cue int lookneu = random(500,3000); IAPSCueTrial1.set_duration(lookneu); IAPSCuePic1.set_part( 1, Cues[this_array][this_stim]); IAPSCueEvent1.set_event_code( Cues[this_array][this_stim].description() + string( stim_ctr ) ); IAPSCueTrial1.present(); #Biopac Pulse BiopacEvent.set_event_code("bp_stim"); biopac.set_pulse_width( 100 ); BiopacTrial.present(); #Picture Presentation IAPSPic.set_part( 1, IAPS_2[this_array][this_stim]); IAPSEvent.set_event_code( IAPS_2[this_array][this_stim].description() + string( stim_ctr ) ); IAPSTrial.present(); #Catchup int rt_end = clock.time(); int time_left = length - rt_end; ITITrial.set_duration(time_left); ITIEvent.set_event_code("catchup"); ITITrial.present(); elseif (IAPS_conds[cond] == 2) then #LOOK NEGATIVE #Set length int length = clock.time() + 10500; #Picture Cue int lookneg = random(500,3000); IAPSCueTrial2.set_duration(lookneg); IAPSCuePic2.set_part( 1, Cues[this_array][this_stim]); IAPSCueEvent2.set_event_code( Cues[this_array][this_stim].description() + string( stim_ctr ) ); IAPSCueTrial2.present(); #Biopac Pulse BiopacEvent.set_event_code("bp_stim"); biopac.set_pulse_width( 100 ); BiopacTrial.present(); #Picture Presentation IAPSPic.set_part( 1, IAPS_2[this_array][this_stim]); IAPSEvent.set_event_code( IAPS_2[this_array][this_stim].description() + string( stim_ctr ) ); IAPSTrial.present(); #Catchup int rt_end = clock.time(); int time_left = length - rt_end; ITITrial.set_duration(time_left); ITIEvent.set_event_code("catchup"); ITITrial.present(); elseif (IAPS_conds[cond] == 3) then #SUPPRESS NEGATIVE #Set length int length = clock.time() + 10500; #Picture Cue int suppress = random(500,3000); IAPSCueTrial3.set_duration(suppress); IAPSCuePic3.set_part( 1, Cues[this_array][this_stim]); IAPSCueEvent3.set_event_code( Cues[this_array][this_stim].description() + string( stim_ctr ) ); IAPSCueTrial3.present(); #Biopac Pulse BiopacEvent.set_event_code("bp_stim"); biopac.set_pulse_width( 100 ); BiopacTrial.present(); #Picture Presentation IAPSPic.set_part(1, IAPS_2[this_array][this_stim]); IAPSEvent.set_event_code( IAPS_2[this_array][this_stim].description() + string( stim_ctr )); IAPSTrial.present(); #Catchup int rt_end = clock.time(); int time_left = length - rt_end; ITITrial.set_duration(time_left); ITIEvent.set_event_code("catchup"); ITITrial.present(); end; cond = cond + 1; end; stim_ctr = stim_ctr + 1; i = i + 1; if stim_ctr > 36 then stim_ctr = 1; #Baseline Fixation ITITrial.set_duration(20000); ITIEvent.set_event_code("baseline"); ITITrial.present(); #End of Run EndRunEvent.set_event_code("end_run"); EndRunTrial.present(); #Biopac Pulse BiopacEvent.set_event_code("bp_end_run"); biopac.set_pulse_width( 100 ); BiopacTrial.present(); #Close Program ExitProgramEvent.set_event_code("exit_program"); ExitProgramTrial.present(); end; end; end; #==================================================================================================== #VERSION 1 OUTPUT #==================================================================================================== elseif !file_exists( "C:/Users/Psychology/Desktop/Losin SCNL/EAPSI/Output_Files/EAPSI_Task2_randomization_pictures_" + logfile.subject() + ".txt") then output_file output_pictures = new output_file; output_pictures.open("C:/Users/Psychology/Desktop/Losin SCNL/EAPSI/Output_Files/EAPSI_Task2_randomization_pictures_" + logfile.subject() + ".txt"); #==================================================================================================== #IMAGE RANDOMIZATION - VERSION 1 OUTPUT #==================================================================================================== #temporary array to hold all possible array numbers array<int> which_array_IAPS_1[IAPS_1.count()]; which_array_IAPS_1.fill( 1, 0, 1, 1 ); which_array_IAPS_1.shuffle(); #temporary array to hold all possible stim numbers array<int>which_stim_IAPS_1[IAPS_1.count()][0]; loop int i = 1 until i > which_stim_IAPS_1.count() begin loop int j = 1 until j > IAPS_1[i].count() begin which_stim_IAPS_1[i].add( j ); j = j + 1; end; which_stim_IAPS_1[i].shuffle(); i = i + 1; end; array<int>stim_order_IAPS_1[0][0]; #now use a loop to make a full stim order array<int>stim_ctrs_IAPS_1[IAPS_1.count()]; stim_ctrs_IAPS_1.fill( 1, 0, 1, 0 ); loop int array_ctr = 1; int i = 1 until i > IAPS_1.count() * IAPS_1[1].count() begin int this_array = which_array_IAPS_1[array_ctr]; int this_stim = which_stim_IAPS_1[this_array][stim_ctrs_IAPS_1[this_array]]; array<int> temp[2]; temp[1] = this_array; temp[2] = this_stim; #write to output file output_pictures.print(this_array); output_pictures.print("\t"); output_pictures.print(this_stim); if i != IAPS_1.count() * IAPS_1[1].count() then output_pictures.print( "\n" ); end; stim_order_IAPS_1.add( temp ); #recycle the array counter once we've gone through them all array_ctr = array_ctr + 1; if ( array_ctr > IAPS_1.count() ) then array_ctr = 1; which_array_IAPS_1.shuffle(); end; stim_ctrs_IAPS_1[this_array] = stim_ctrs_IAPS_1[this_array] + 1; i = i + 1; end; output_pictures.print( "\n" ); #==================================================================================================== #IMAGE RANDOMIZATION - VERSION 2 OUTPUT #==================================================================================================== #temporary array to hold all possible array numbers array<int> which_array_IAPS_2[IAPS_2.count()]; which_array_IAPS_2.fill( 1, 0, 1, 1 ); which_array_IAPS_2.shuffle(); #temporary array to hold all possible stim numbers array<int>which_stim_IAPS_2[IAPS_2.count()][0]; loop int i = 1 until i > which_stim_IAPS_2.count() begin loop int j = 1 until j > IAPS_2[i].count() begin which_stim_IAPS_2[i].add( j ); j = j + 1; end; which_stim_IAPS_2[i].shuffle(); i = i + 1; end; array<int>stim_order_IAPS_2[0][0]; #now use a loop to make a full stim order array<int>stim_ctrs_IAPS_2[IAPS_2.count()]; stim_ctrs_IAPS_2.fill( 1, 0, 1, 0 ); loop int array_ctr = 1; int i = 1 until i > IAPS_2.count() * IAPS_2[1].count() begin int this_array = which_array_IAPS_2[array_ctr]; int this_stim = which_stim_IAPS_2[this_array][stim_ctrs_IAPS_2[this_array]]; array<int> temp[2]; temp[1] = this_array; temp[2] = this_stim; #write to output file output_pictures.print(this_array); output_pictures.print("\t"); output_pictures.print(this_stim); if i != IAPS_2.count() * IAPS_2[1].count() then output_pictures.print( "\n" ); end; stim_order_IAPS_2.add( temp ); #recycle the array counter once we've gone through them all array_ctr = array_ctr + 1; if ( array_ctr > IAPS_2.count() ) then array_ctr = 1; which_array_IAPS_2.shuffle(); end; stim_ctrs_IAPS_2[this_array] = stim_ctrs_IAPS_2[this_array] + 1; i = i + 1; end; #==================================================================================================== #GET VERSION AND RUN NUMBER #==================================================================================================== #GET VERSION NUMBER string versionnr = system_keyboard.get_input( Versionpic2, Versiontext2 ); VersionEvent.set_event_code( "version_" + versionnr ); VersionTrial.present(); #GET RUN NUMBER string run = system_keyboard.get_input( RunNumberpic2, RunNumbertext2 ); RunNumberEvent.set_event_code( "run_" + run ); RunNumberTrial.present(); if versionnr == "1" then #==================================================================================================== #MAIN - VERSION 1 OUTPUT #==================================================================================================== #fMRI trigger FMRItriggerEvent.set_stimulus(TriggerWait); FMRItriggerEvent.set_event_code("fmri_trigger"); loop until (response_manager.last_response() == 5) begin FMRItriggerTrial.present(); end; #start biopac Biopac_TriggerEvent.set_event_code("bp_start_run"); biopac.set_pulse_width( 300 ); Biopac_TriggerTrial.present(); #Discarded TRs ITITrial.set_duration(10000); ITIEvent.set_event_code("discarded_TRs"); ITITrial.present(); #Baseline Fixation ITITrial.set_duration(20000); ITIEvent.set_event_code("baseline"); ITITrial.present(); loop int i = 1; int stim_ctr = 1; until i > stim_order_IAPS_1.count() begin int this_array = stim_order_IAPS_1[i][1]; int this_stim = stim_order_IAPS_1[i][2]; array <int> IAPS_conds[3] = {1,2,3}; IAPS_conds.shuffle(); loop int last_cond = 0; int in_a_row = 0; int cond = 1; until cond > 1 begin if (IAPS_conds[cond] == 1) then #LOOK NEUTRAL #Set length int length = clock.time() + 10500; #Picture Cue int lookneu = random(500,3000); IAPSCueTrial1.set_duration(lookneu); IAPSCuePic1.set_part( 1, Cues[this_array][this_stim]); IAPSCueEvent1.set_event_code( Cues[this_array][this_stim].description() + string( stim_ctr ) ); IAPSCueTrial1.present(); #Biopac Pulse BiopacEvent.set_event_code("bp_stim"); biopac.set_pulse_width( 100 ); BiopacTrial.present(); #Picture Presentation IAPSPic.set_part( 1, IAPS_1[this_array][this_stim]); IAPSEvent.set_event_code( IAPS_1[this_array][this_stim].description() + string( stim_ctr ) ); IAPSTrial.present(); #Catchup int rt_end = clock.time(); int time_left = length - rt_end; ITITrial.set_duration(time_left); ITIEvent.set_event_code("catchup"); ITITrial.present(); elseif (IAPS_conds[cond] == 2) then #LOOK NEGATIVE #Set length int length = clock.time() + 10500; #Picture Cue int lookneg = random(500,3000); IAPSCueTrial2.set_duration(lookneg); IAPSCuePic2.set_part( 1, Cues[this_array][this_stim]); IAPSCueEvent2.set_event_code( Cues[this_array][this_stim].description() + string( stim_ctr ) ); IAPSCueTrial2.present(); #Biopac Pulse BiopacEvent.set_event_code("bp_stim"); biopac.set_pulse_width( 100 ); BiopacTrial.present(); #Picture Presentation IAPSPic.set_part( 1, IAPS_1[this_array][this_stim]); IAPSEvent.set_event_code( IAPS_1[this_array][this_stim].description() + string( stim_ctr ) ); IAPSTrial.present(); #Catchup int rt_end = clock.time(); int time_left = length - rt_end; ITITrial.set_duration(time_left); ITIEvent.set_event_code("catchup"); ITITrial.present(); elseif (IAPS_conds[cond] == 3) then #SUPPRESS NEGATIVE #Set length int length = clock.time() + 10500; #Picture Cue int suppress = random(500,3000); IAPSCueTrial3.set_duration(suppress); IAPSCuePic3.set_part( 1, Cues[this_array][this_stim]); IAPSCueEvent3.set_event_code( Cues[this_array][this_stim].description() + string( stim_ctr ) ); IAPSCueTrial3.present(); #Biopac Pulse BiopacEvent.set_event_code("bp_stim"); biopac.set_pulse_width( 100 ); BiopacTrial.present(); #Picture Presentation IAPSPic.set_part(1, IAPS_1[this_array][this_stim]); IAPSEvent.set_event_code( IAPS_1[this_array][this_stim].description() + string( stim_ctr )); IAPSTrial.present(); #Catchup int rt_end = clock.time(); int time_left = length - rt_end; ITITrial.set_duration(time_left); ITIEvent.set_event_code("catchup"); ITITrial.present(); end; cond = cond + 1; end; stim_ctr = stim_ctr + 1; i = i + 1; if stim_ctr > 36 then stim_ctr = 1; #Baseline Fixation ITITrial.set_duration(20000); ITIEvent.set_event_code("baseline"); ITITrial.present(); #End of Run EndRunEvent.set_event_code("end_run"); EndRunTrial.present(); #Biopac Pulse BiopacEvent.set_event_code("bp_end_run"); biopac.set_pulse_width( 100 ); BiopacTrial.present(); #Close Program ExitProgramEvent.set_event_code("exit_program"); ExitProgramTrial.present(); end; end; end; #==================================================================================================== #VERSION 2 OUTPUT #==================================================================================================== if versionnr == "2" then #==================================================================================================== #MAIN - VERSION 2 OUTPUT #==================================================================================================== #fMRI trigger FMRItriggerEvent.set_stimulus(TriggerWait); FMRItriggerEvent.set_event_code("fmri_trigger"); loop until (response_manager.last_response() == 5) begin FMRItriggerTrial.present(); end; #start biopac Biopac_TriggerEvent.set_event_code("bp_start_run"); biopac.set_pulse_width( 300 ); Biopac_TriggerTrial.present(); #Discarded TRs ITITrial.set_duration(10000); ITIEvent.set_event_code("discarded_TRs"); ITITrial.present(); #Baseline Fixation ITITrial.set_duration(20000); ITIEvent.set_event_code("baseline"); ITITrial.present(); loop int i = 1; int stim_ctr = 1; until i > stim_order_IAPS_2.count() begin int this_array = stim_order_IAPS_2[i][1]; int this_stim = stim_order_IAPS_2[i][2]; array <int> IAPS_conds[3] = {1,2,3}; IAPS_conds.shuffle(); loop int last_cond = 0; int in_a_row = 0; int cond = 1; until cond > 1 begin if (IAPS_conds[cond] == 1) then #LOOK NEUTRAL #Set length int length = clock.time() + 10500; #Picture Cue int lookneu = random(500,3000); IAPSCueTrial1.set_duration(lookneu); IAPSCuePic1.set_part( 1, Cues[this_array][this_stim]); IAPSCueEvent1.set_event_code( Cues[this_array][this_stim].description() + string( stim_ctr ) ); IAPSCueTrial1.present(); #Biopac Pulse BiopacEvent.set_event_code("bp_stim"); biopac.set_pulse_width( 100 ); BiopacTrial.present(); #Picture Presentation IAPSPic.set_part( 1, IAPS_2[this_array][this_stim]); IAPSEvent.set_event_code( IAPS_2[this_array][this_stim].description() + string( stim_ctr ) ); IAPSTrial.present(); #Catchup int rt_end = clock.time(); int time_left = length - rt_end; ITITrial.set_duration(time_left); ITIEvent.set_event_code("catchup"); ITITrial.present(); elseif (IAPS_conds[cond] == 2) then #LOOK NEGATIVE #Set length int length = clock.time() + 10500; #Picture Cue int lookneg = random(500,3000); IAPSCueTrial2.set_duration(lookneg); IAPSCuePic2.set_part( 1, Cues[this_array][this_stim]); IAPSCueEvent2.set_event_code( Cues[this_array][this_stim].description() + string( stim_ctr ) ); IAPSCueTrial2.present(); #Biopac Pulse BiopacEvent.set_event_code("bp_stim"); biopac.set_pulse_width( 100 ); BiopacTrial.present(); #Picture Presentation IAPSPic.set_part( 1, IAPS_2[this_array][this_stim]); IAPSEvent.set_event_code( IAPS_2[this_array][this_stim].description() + string( stim_ctr ) ); IAPSTrial.present(); #Catchup int rt_end = clock.time(); int time_left = length - rt_end; ITITrial.set_duration(time_left); ITIEvent.set_event_code("catchup"); ITITrial.present(); elseif (IAPS_conds[cond] == 3) then #SUPPRESS NEGATIVE #Set length int length = clock.time() + 10500; #Picture Cue int suppress = random(500,3000); IAPSCueTrial3.set_duration(suppress); IAPSCuePic3.set_part( 1, Cues[this_array][this_stim]); IAPSCueEvent3.set_event_code( Cues[this_array][this_stim].description() + string( stim_ctr ) ); IAPSCueTrial3.present(); #Biopac Pulse BiopacEvent.set_event_code("bp_stim"); biopac.set_pulse_width( 100 ); BiopacTrial.present(); #Picture Presentation IAPSPic.set_part(1, IAPS_2[this_array][this_stim]); IAPSEvent.set_event_code( IAPS_2[this_array][this_stim].description() + string( stim_ctr )); IAPSTrial.present(); #Catchup int rt_end = clock.time(); int time_left = length - rt_end; ITITrial.set_duration(time_left); ITIEvent.set_event_code("catchup"); ITITrial.present(); end; cond = cond + 1; end; stim_ctr = stim_ctr + 1; i = i + 1; if stim_ctr > 36 then stim_ctr = 1; #Baseline Fixation ITITrial.set_duration(20000); ITIEvent.set_event_code("baseline"); ITITrial.present(); #End of Run EndRunEvent.set_event_code("end_run"); EndRunTrial.present(); #Biopac Pulse BiopacEvent.set_event_code("bp_end_run"); biopac.set_pulse_width( 100 ); BiopacTrial.present(); #Close Program ExitProgramEvent.set_event_code("exit_program"); ExitProgramTrial.present(); end; end; end; end;
44218a142421f2e35889f24be8d0f25642c910bd
bd9ba5abb6de1e9d9485b5e98b2b68868aab21db
/Basic arithmatic/Matrix.sce
3e1ce78807825ca757f5df1ff67dfe0adef920df
[]
no_license
ShubhamRattra/Scilab_programs
c61b6538a064afe82c99507c1064cd55bbd870fa
de2bf6ab0de0b1a19c4903bb13819edc39f93d0e
refs/heads/master
2023-03-04T17:53:58.414180
2021-02-11T08:08:11
2021-02-11T08:08:11
296,920,175
2
2
null
2021-01-11T15:53:39
2020-09-19T17:37:42
Scilab
UTF-8
Scilab
false
false
31
sce
Matrix.sce
b = [ 1 , 2 , 3 ; 4 , 5 , 6]
8f85a01bb6cd9fb117e0d1ecf001b6cf6faa1376
449d555969bfd7befe906877abab098c6e63a0e8
/926/CH5/EX5.12/Chapter5_Example12.sce
669dd7fa4c2918919c8593f6d844a966231e4e22
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,164
sce
Chapter5_Example12.sce
//Hougen O.A., Watson K.M., Ragatz R.A., 2004. Chemical process principles Part-1: Material and Energy Balances(II Edition). CBS Publishers & Distributors, New Delhi, pp 504 //Chapter-5, Illustration 12, Page 127 //Title: Calculation of molal humidity //============================================================================= clear clc //INPUT P = 1; //Pressure of entering gas in atm DBT = 120; //Temperature of entering gas in degree F //DATA FROM GRAPH WBT = 71; //Wet bulb temperature in degree F corresponding to DBT of 120 degree F from Fig 20 Page 122 mH = 0.027; //Molal humidity corresponding to DBT of 120 degree F from Fig 20 Page 122 //OUTPUT // Console output mprintf('\n The temperature and molal humidity of saturated carbon dioxide leaving the chamber is %2.0f degree F and %4.3f respectively',WBT,mH); // File output fd= mopen('.\Chapter5_Example12_Output.txt','w'); mfprintf(fd,'\n The temperature and molal humidity of saturated carbon dioxide leaving the chamber is %2.0f degree F and %4.3f respectively',WBT,mH); mclose(fd); //=============================END OF PROGRMAM=================================
72cfdf257300d216ac85179d6a43ab225b525e87
449d555969bfd7befe906877abab098c6e63a0e8
/2300/CH23/EX23.31.3/Ex23_3.sce
601dc940a11ad2751ef915a920f08540d80f083d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
703
sce
Ex23_3.sce
//scilab 5.4.1 //Windows 7 operating system //chapter 23 Lasers,Fibre Optics,and Holography clc clear //To obtain interference fringes of good visibility the path difference for the central fringe must be an integral multiple of each of the 2 wavelengths. //2*d=(n1*y1)=(n2*y2)where y1 & y2 are 2 wave-lengths and d=path difference and n1 and n2 are 2 integers //(2*d)*((1/y2)-(1/y1))=(n2-n1)=m where m is another integer //Now m=(-2*d*Y)/(y^2)=(2*d*V)/(v*y)=(2*d*V)/c=(2*d)/Lc Lc=600//Lc=coherence length in km d=(Lc/2)//d=minimum difference between the 2 arms of the Michelson interferometer disp("km",d,"The minimum difference between the two arms of the Michelson interferometer is=")
655e4d5d00175dd42ff8990b07de09ecdaf07f06
449d555969bfd7befe906877abab098c6e63a0e8
/3871/CH3/EX3.6/Ex3_6.sce
bb2f9fd2a385d6dca61a0818247750295fb8c7dc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
541
sce
Ex3_6.sce
//=========================================================================== //chapter 3 example 6 clc;clear all; //variable declaration e = 0.01; //acuuracy v = 150; //voltage in V v1 = 83; // measured voltage in V //calculations dV = e*v; //magnitude of the limiting error of the instrument in V er = (dV/(v1))*100; //percentage limiting error at v1 voltage in % //result mprintf("limmiting error in case of 83V is = %3.2f percentage',er);
65d5aed1fd06695f844c6336f619cdfd1fb42b9a
449d555969bfd7befe906877abab098c6e63a0e8
/3827/CH2/EX2.2/EX2_2.sce
58fa419fc8a8e573503f65607c84ef4cb3708720
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
379
sce
EX2_2.sce
//EX2_2 Simplify Z = [A + B'C + D +EF][A + B'C + (D + EF)'] //clears the screen clc //clears already existing variables clear disp('Z = [A + B''C + D + EF][A + B''C + (D + E''F)]') disp('Let X = A + B''C') disp('and Y = D + EF Y'' = (D + EF)''') disp('Z = [X + Y][X + Y'']') //By uniting theorem i.e. (X + Y)(X + Y') = X disp('Z = X ') disp('Z = A + B''C')
d85e1453dde2f365efd62bcaedd043ff694b39e5
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/ngram/5.9_7.tst
6f353d15f6aa16b258cdcd5ab1c181ca8c34e0cd
[]
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
812,203
tst
5.9_7.tst
9 187:1 201:1 327:2 366:1 460:2 478:1 635:1 693:1 900:1 941:3 952:1 1201:2 1333:1 1524:1 1544:1 1614:1 1641:1 1706:1 1775:1 1958:2 2051:1 2057:1 2280:1 2281:1 2561:2 2841:1 2941:1 3002:1 3036:1 3240:1 3343:1 3348:1 3434:1 3544:1 3571:1 3581:1 3619:1 3670:1 3699:1 3792:1 3855:1 3905:1 3958:1 4108:1 4204:1 4239:1 4364:1 4724:1 4754:1 4843:1 4854:1 4875:1 4903:1 5021:1 5083:2 5135:1 5317:1 5396:1 5708:1 5712:1 6097:1 6152:1 6238:1 6257:1 6437:1 6485:1 6520:1 6539:1 7087:1 7091:1 7131:1 7253:1 7306:1 7310:1 7435:1 7771:1 7785:1 7812:2 7831:2 7855:1 7964:1 8285:1 8638:1 8664:2 8743:1 8749:1 8816:1 8822:1 8968:1 9078:1 9188:1 9334:1 9486:2 9624:1 9633:1 9659:1 9684:1 9793:1 9949:1 9965:1 9966:1 10225:1 10260:1 10570:1 10655:1 10990:1 11224:1 11291:1 11347:1 11372:1 11456:1 11477:1 11579:1 11583:1 11819:1 11860:1 11908:1 11933:1 11962:1 12097:1 12139:1 12156:1 12223:1 12545:1 12571:1 12603:1 12686:1 12732:1 12806:1 12810:1 12996:1 13091:1 13131:1 13315:1 13334:1 13550:1 13584:1 13609:1 13666:1 13726:1 13747:1 13757:1 13830:2 14123:2 14149:1 14204:1 14243:1 14343:1 14426:1 14489:1 14611:1 14803:1 14913:1 14927:1 15532:1 15941:1 15950:1 15961:1 16028:1 16189:1 16459:2 16760:1 16830:1 17085:1 17411:1 17535:1 17584:1 17639:1 17712:1 17762:1 17850:1 18070:1 18076:1 18126:1 18196:2 18436:2 18550:1 18643:1 18761:1 18780:1 19304:133 19431:1 19486:1 19535:1 19666:2 20038:1 20053:1 20092:1 20188:1 20242:1 20300:1 20313:1 20329:1 20374:1 20783:1 20875:1 20928:1 21057:1 21299:1 21464:1 21472:1 21605:1 21802:1 21863:1 22058:1 22273:1 22289:1 22338:1 22559:1 22561:1 22625:1 22716:1 22886:1 23052:1 23251:1 23315:2 23385:1 23830:1 23903:1 24180:1 24336:1 24561:1 24594:1 24601:1 24731:1 24748:1 24839:1 24955:1 25222:1 25255:1 25370:1 25393:1 25460:1 25545:1 25903:1 25931:1 26138:1 26146:1 26236:1 26248:1 26252:1 26261:1 26363:1 26482:1 26656:1 26872:1 26883:1 26997:1 27094:1 27138:1 27178:1 27278:1 27334:1 27387:1 27583:2 27665:1 28218:1 28361:1 28458:1 28529:1 28938:1 28992:1 28996:2 29034:1 29092:1 29184:1 29471:1 29473:1 29566:1 29682:1 29949:1 30012:1 30194:2 30231:1 30322:1 30326:1 9 14:1 187:1 201:1 236:1 315:1 327:2 338:1 366:1 460:2 478:1 592:1 635:1 637:1 693:1 843:1 900:1 941:3 952:1 959:1 964:1 1005:1 1022:1 1084:1 1201:2 1303:1 1333:1 1379:1 1411:1 1471:2 1474:1 1517:1 1522:1 1524:1 1544:1 1554:1 1574:1 1614:1 1641:1 1706:1 1712:1 1775:1 1958:2 2051:1 2053:1 2057:1 2128:1 2280:1 2281:1 2316:1 2319:1 2348:1 2386:1 2393:1 2482:1 2561:2 2595:1 2615:1 2661:1 2706:1 2784:1 2831:1 2841:1 2941:1 2980:1 3002:1 3032:1 3036:2 3176:1 3240:1 3343:1 3348:1 3434:1 3544:1 3557:1 3571:1 3581:1 3619:1 3635:2 3670:1 3681:1 3699:1 3792:1 3803:1 3855:1 3859:1 3897:1 3904:1 3905:1 3924:1 3958:1 4100:1 4108:1 4109:1 4204:1 4239:1 4364:1 4555:1 4724:1 4728:1 4741:1 4754:1 4807:1 4843:1 4854:1 4875:1 4903:1 5019:1 5021:1 5083:2 5135:2 5152:1 5317:1 5328:1 5336:1 5396:1 5459:1 5487:1 5518:1 5520:1 5535:1 5708:1 5710:1 5712:1 5722:1 5758:1 5849:1 5945:1 6097:1 6152:1 6238:1 6257:1 6437:1 6485:1 6519:1 6520:1 6525:1 6526:2 6539:1 6646:1 6919:1 6940:1 7087:1 7091:1 7131:1 7253:1 7306:1 7310:1 7337:1 7435:1 7726:1 7771:1 7785:1 7812:2 7831:4 7855:1 7964:1 8035:1 8265:1 8285:1 8400:1 8541:1 8614:1 8638:1 8664:2 8743:1 8749:1 8816:1 8822:1 8826:2 8892:1 8930:1 8968:1 8974:1 9033:1 9073:1 9078:1 9098:1 9188:1 9316:1 9334:1 9355:1 9366:1 9469:1 9486:2 9624:1 9631:1 9633:1 9634:1 9659:1 9684:1 9793:1 9949:1 9965:1 9966:1 10202:1 10225:1 10260:1 10268:1 10570:1 10655:1 10790:1 10846:1 10865:1 10967:1 10990:1 11180:1 11224:1 11291:1 11312:1 11347:1 11372:1 11443:1 11456:1 11477:1 11482:1 11579:1 11583:1 11590:1 11659:1 11752:1 11819:1 11860:1 11861:1 11908:1 11933:1 11962:1 12029:1 12097:1 12139:1 12156:1 12223:1 12265:1 12304:1 12362:1 12411:1 12439:1 12543:1 12544:1 12545:1 12571:1 12602:1 12603:1 12686:1 12732:1 12806:1 12810:1 12953:1 12996:1 13091:1 13131:1 13142:1 13153:1 13161:1 13250:1 13283:1 13315:1 13334:1 13341:1 13393:1 13550:1 13556:1 13584:1 13609:1 13647:1 13666:1 13726:1 13747:2 13756:1 13757:1 13807:1 13830:2 13833:1 13887:1 14123:2 14127:1 14149:1 14204:1 14243:2 14343:1 14359:1 14399:1 14426:1 14445:1 14489:1 14525:1 14577:1 14602:1 14611:1 14803:1 14913:1 14927:1 15084:1 15328:1 15334:1 15410:1 15450:1 15470:1 15532:1 15549:1 15638:1 15651:1 15693:1 15941:1 15950:1 15951:1 15961:1 16028:1 16160:1 16174:1 16189:1 16306:2 16345:1 16452:1 16459:2 16468:1 16488:1 16612:1 16760:1 16830:2 16885:1 17062:1 17085:1 17101:1 17234:1 17237:1 17272:1 17337:1 17347:1 17411:1 17419:1 17474:1 17535:1 17584:1 17632:1 17639:1 17712:1 17762:1 17778:1 17850:2 18000:1 18043:1 18070:1 18076:1 18126:1 18196:2 18291:1 18395:1 18403:1 18436:3 18447:1 18459:1 18528:1 18550:1 18643:1 18720:1 18761:1 18780:1 18867:1 19069:1 19095:1 19218:1 19225:1 19251:1 19300:1 19304:255 19431:1 19486:1 19535:1 19629:1 19666:2 19692:1 19747:1 20027:1 20038:1 20053:1 20092:1 20172:1 20188:1 20242:1 20300:1 20313:1 20329:1 20336:1 20339:1 20374:1 20399:1 20570:1 20641:1 20666:1 20783:1 20875:1 20928:1 20932:1 20962:1 21032:1 21057:1 21058:1 21299:1 21429:1 21464:1 21469:1 21472:1 21552:1 21605:1 21613:1 21702:1 21796:1 21802:1 21863:2 21952:1 21971:1 22005:1 22058:1 22273:1 22289:1 22338:1 22507:1 22519:1 22525:2 22532:1 22559:1 22561:1 22625:1 22665:1 22716:1 22886:1 22959:1 22975:1 23052:1 23241:1 23251:1 23260:1 23315:3 23385:1 23530:1 23594:1 23830:1 23903:1 23955:1 23992:1 24180:1 24232:1 24336:1 24343:1 24425:1 24561:1 24594:1 24601:1 24728:1 24731:1 24748:1 24761:1 24762:1 24788:1 24839:1 24863:1 24955:1 25032:1 25136:1 25206:1 25222:1 25228:1 25249:1 25255:1 25301:1 25315:1 25369:1 25370:1 25393:1 25460:1 25478:1 25545:1 25565:1 25647:1 25692:1 25785:1 25794:1 25903:1 25931:1 26060:1 26138:1 26146:1 26236:1 26248:1 26252:1 26261:1 26288:2 26307:1 26363:2 26482:1 26648:1 26656:1 26662:1 26872:1 26883:1 26907:1 26983:1 26997:1 27047:1 27094:1 27118:1 27138:1 27178:3 27278:1 27334:1 27387:1 27438:1 27583:2 27608:1 27665:1 27822:1 27826:1 28087:1 28109:1 28218:1 28226:1 28251:1 28361:1 28372:1 28458:1 28529:1 28554:1 28589:1 28616:1 28860:1 28938:1 28980:1 28992:1 28996:2 29034:1 29092:1 29115:1 29184:1 29268:1 29362:1 29449:1 29471:1 29473:2 29477:1 29551:1 29566:1 29682:1 29717:1 29773:1 29914:1 29949:1 30012:1 30136:1 30194:2 30208:1 30210:1 30231:2 30250:1 30320:1 30322:1 30326:1 30344:1 30367:1 30371:1 9 14:1 50:1 176:1 187:1 201:1 236:2 315:1 327:4 338:1 366:1 378:1 460:2 478:1 592:1 635:1 637:1 693:1 804:1 824:1 843:1 900:1 914:2 941:3 952:1 959:1 964:1 1005:1 1022:1 1032:1 1052:1 1084:1 1102:1 1156:1 1201:2 1303:1 1333:1 1336:1 1342:1 1379:1 1411:1 1471:2 1474:1 1517:1 1522:1 1524:1 1544:1 1554:1 1574:1 1614:1 1621:1 1641:1 1706:2 1712:1 1775:1 1818:1 1958:4 1996:1 2051:1 2053:1 2057:1 2128:1 2213:1 2239:1 2280:1 2281:1 2297:1 2298:1 2316:1 2319:1 2348:1 2386:1 2393:1 2482:1 2561:2 2595:1 2615:1 2620:1 2661:1 2706:1 2784:1 2817:1 2831:2 2841:1 2941:1 2980:1 3002:2 3032:1 3036:2 3061:1 3176:1 3240:1 3269:1 3343:1 3348:1 3434:1 3481:1 3544:1 3557:1 3571:1 3581:1 3619:1 3635:2 3665:1 3670:1 3681:1 3699:1 3708:1 3792:1 3796:1 3803:1 3848:1 3855:1 3859:1 3897:1 3904:1 3905:1 3924:1 3958:1 4100:1 4108:1 4109:1 4187:1 4204:1 4239:1 4250:1 4316:1 4364:1 4555:1 4724:1 4728:1 4741:1 4754:1 4807:1 4843:1 4854:1 4875:1 4903:1 5019:2 5021:1 5083:2 5135:2 5152:1 5173:1 5317:1 5328:1 5336:1 5396:1 5459:1 5487:1 5518:1 5520:1 5535:1 5553:1 5708:1 5710:1 5712:1 5722:1 5758:1 5792:1 5815:1 5849:1 5897:1 5914:1 5945:1 6097:1 6152:1 6238:1 6257:1 6301:1 6400:1 6437:1 6485:1 6501:1 6518:1 6519:1 6520:1 6525:1 6526:2 6539:1 6646:1 6822:1 6919:1 6940:2 7087:2 7091:1 7100:1 7131:1 7253:1 7306:1 7310:1 7337:1 7435:1 7505:1 7726:1 7756:1 7771:1 7785:1 7812:2 7831:5 7855:2 7860:1 7940:1 7944:1 7964:1 8035:1 8112:1 8138:1 8233:1 8265:2 8266:1 8285:1 8343:1 8358:1 8400:1 8473:1 8541:1 8591:1 8614:1 8638:1 8656:1 8664:2 8743:2 8749:1 8792:1 8816:1 8822:1 8826:2 8892:1 8930:1 8939:1 8968:1 8974:1 9033:1 9073:2 9078:1 9098:1 9105:1 9124:1 9188:2 9199:1 9275:1 9316:1 9334:1 9355:1 9366:1 9469:1 9486:4 9523:1 9624:1 9631:1 9633:1 9634:1 9659:1 9684:1 9793:1 9794:1 9844:1 9869:1 9949:1 9965:1 9966:1 10202:1 10225:1 10260:1 10268:1 10345:1 10570:1 10655:1 10790:1 10846:1 10865:1 10876:1 10967:2 10990:1 11180:1 11224:1 11291:1 11312:1 11347:1 11372:1 11443:1 11456:1 11477:1 11482:1 11579:1 11583:1 11590:1 11659:1 11660:1 11677:1 11752:1 11819:1 11860:1 11861:1 11866:1 11908:1 11933:1 11962:1 12012:1 12029:1 12059:1 12097:1 12139:1 12156:1 12223:1 12265:1 12304:1 12362:1 12411:1 12439:1 12543:1 12544:2 12545:1 12571:1 12602:1 12603:1 12686:1 12732:2 12806:1 12807:1 12810:2 12953:1 12991:1 12996:1 13009:1 13091:1 13131:1 13142:1 13151:1 13153:1 13161:1 13250:1 13283:1 13315:1 13334:1 13341:1 13393:1 13550:1 13556:1 13584:1 13609:1 13647:1 13666:1 13726:1 13747:2 13756:1 13757:1 13807:1 13830:3 13833:1 13880:1 13887:3 13937:1 14116:1 14123:2 14127:1 14149:1 14201:1 14204:1 14233:1 14243:2 14290:1 14343:1 14359:1 14399:1 14426:1 14445:1 14486:1 14489:1 14508:1 14525:1 14577:1 14602:1 14611:1 14794:1 14803:1 14913:1 14927:1 14978:1 15084:1 15328:2 15334:1 15410:1 15428:1 15450:1 15470:1 15532:1 15549:1 15638:1 15651:1 15692:1 15693:1 15863:1 15941:1 15950:1 15951:1 15961:1 16028:1 16160:1 16174:1 16189:1 16243:1 16306:2 16345:1 16452:1 16459:3 16468:1 16488:1 16612:1 16629:1 16690:1 16717:1 16760:1 16763:1 16829:1 16830:2 16885:1 16966:1 17062:1 17085:1 17101:1 17212:1 17234:1 17237:1 17272:1 17337:1 17347:1 17411:1 17419:1 17474:1 17535:1 17584:1 17632:1 17639:1 17668:1 17711:1 17712:1 17762:1 17778:1 17850:2 17946:1 17980:1 18000:1 18043:1 18070:3 18076:1 18126:3 18196:2 18240:1 18291:1 18304:1 18395:1 18403:1 18436:5 18447:1 18459:1 18486:1 18528:1 18532:1 18537:1 18550:1 18630:1 18643:1 18720:1 18723:1 18736:1 18761:1 18780:1 18805:1 18867:1 19069:2 19095:1 19218:1 19225:1 19251:1 19259:1 19287:1 19300:1 19304:354 19324:1 19402:1 19431:1 19486:1 19535:1 19629:1 19666:4 19692:1 19716:1 19747:1 19920:1 19982:1 20027:1 20036:1 20038:1 20053:1 20078:1 20092:1 20131:1 20172:1 20188:1 20242:1 20300:1 20313:1 20329:1 20331:1 20336:1 20339:1 20372:1 20374:1 20399:1 20570:1 20641:1 20666:1 20783:1 20805:1 20875:1 20918:1 20928:1 20932:1 20962:1 21032:1 21057:2 21058:2 21062:1 21299:1 21429:1 21464:1 21469:1 21472:1 21552:1 21605:1 21613:1 21647:1 21659:1 21702:1 21796:1 21802:2 21832:1 21863:2 21901:1 21952:1 21971:1 21976:1 22005:1 22045:1 22058:1 22273:1 22289:1 22338:1 22391:1 22413:1 22447:1 22507:1 22519:1 22525:2 22532:1 22559:1 22561:1 22575:1 22625:1 22632:1 22665:1 22716:2 22838:1 22886:2 22959:1 22975:1 23052:1 23053:2 23096:1 23111:1 23174:1 23241:1 23251:1 23260:1 23315:5 23385:1 23497:1 23530:1 23594:1 23649:1 23830:1 23888:1 23903:1 23928:1 23955:1 23992:1 24125:1 24180:1 24232:1 24336:1 24343:1 24425:1 24526:1 24561:1 24566:1 24594:1 24601:1 24652:1 24728:1 24731:1 24748:1 24761:1 24762:1 24788:1 24839:1 24863:1 24955:1 24957:1 25032:1 25136:1 25206:1 25210:1 25221:1 25222:1 25226:2 25228:2 25236:1 25238:1 25249:1 25255:2 25300:1 25301:1 25315:1 25369:1 25370:1 25393:1 25410:1 25460:1 25478:1 25530:1 25545:1 25565:1 25647:1 25692:1 25785:1 25794:1 25903:1 25927:1 25929:1 25931:1 26060:1 26122:1 26138:1 26146:2 26236:1 26240:1 26248:1 26252:1 26261:1 26288:2 26294:1 26307:1 26363:2 26420:2 26482:1 26614:2 26646:1 26648:1 26656:1 26662:1 26872:1 26883:1 26907:1 26983:1 26997:1 27047:2 27094:1 27118:1 27138:1 27178:3 27212:1 27278:1 27334:1 27378:1 27381:1 27387:1 27438:1 27535:1 27583:2 27608:1 27665:1 27708:1 27822:1 27826:1 27845:1 27940:1 28071:1 28087:1 28109:1 28218:1 28226:1 28251:1 28300:1 28318:1 28361:1 28372:1 28409:1 28414:1 28458:1 28529:1 28554:1 28589:1 28616:3 28860:1 28872:1 28938:1 28980:1 28992:2 28996:2 29011:1 29034:1 29048:1 29092:1 29115:1 29184:1 29190:1 29216:1 29268:1 29278:1 29293:1 29300:1 29362:1 29364:1 29449:1 29471:1 29473:2 29477:1 29498:1 29551:1 29566:1 29587:1 29682:1 29717:1 29723:1 29773:1 29801:1 29882:2 29914:1 29927:1 29949:1 29969:1 30012:1 30081:1 30088:1 30108:1 30122:1 30136:1 30187:1 30194:2 30208:1 30210:1 30231:2 30250:1 30320:1 30322:1 30326:1 30344:1 30367:1 30371:1 9 14:1 50:1 79:1 108:1 176:1 187:1 189:1 201:1 236:2 303:1 315:1 327:5 338:1 357:1 366:1 378:1 441:1 460:3 478:1 592:1 600:1 635:1 637:1 693:1 736:1 804:1 824:1 843:1 899:1 900:1 914:2 941:3 952:1 953:1 959:1 964:1 1005:1 1022:1 1032:1 1052:1 1084:1 1102:1 1156:2 1201:2 1303:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1471:2 1474:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1574:1 1614:1 1621:1 1641:1 1701:1 1706:2 1712:1 1775:1 1818:1 1844:1 1852:1 1958:4 1965:1 1996:1 2051:1 2053:1 2057:1 2128:1 2213:1 2239:1 2280:1 2281:1 2288:1 2297:1 2298:1 2301:1 2316:2 2319:3 2348:1 2386:1 2393:1 2445:1 2482:1 2493:1 2561:2 2595:1 2615:1 2620:1 2661:1 2701:1 2706:1 2717:1 2763:1 2784:1 2816:1 2817:1 2831:2 2841:1 2941:1 2980:1 3002:2 3032:1 3036:2 3061:1 3092:1 3176:1 3240:1 3259:1 3269:1 3343:1 3348:1 3434:1 3481:1 3544:1 3557:1 3571:1 3578:1 3581:1 3619:1 3635:2 3665:1 3670:1 3681:1 3699:1 3708:1 3741:2 3787:1 3792:1 3796:1 3803:1 3848:1 3855:2 3859:1 3897:1 3904:1 3905:1 3924:1 3958:1 3969:1 4100:1 4108:2 4109:2 4187:1 4204:1 4239:1 4241:1 4250:1 4316:1 4364:1 4474:1 4555:1 4572:1 4724:1 4728:2 4741:1 4754:1 4807:1 4843:1 4854:1 4875:1 4903:1 4954:1 5019:3 5021:1 5078:1 5083:2 5135:2 5152:1 5154:1 5173:1 5188:1 5317:1 5328:1 5336:1 5396:1 5459:1 5464:1 5487:1 5518:2 5520:1 5535:1 5553:1 5698:1 5708:1 5710:1 5712:1 5722:1 5758:1 5792:1 5815:1 5849:1 5897:1 5914:2 5945:1 6021:1 6097:1 6152:1 6205:2 6238:1 6257:1 6301:1 6380:1 6400:1 6437:1 6485:1 6501:1 6505:1 6518:1 6519:1 6520:1 6525:1 6526:2 6527:1 6539:1 6646:1 6814:1 6822:1 6844:1 6919:1 6940:2 6960:1 7002:1 7029:1 7087:2 7091:1 7100:1 7131:1 7253:1 7255:1 7300:1 7306:1 7310:1 7336:1 7337:1 7435:1 7491:1 7505:1 7527:1 7644:1 7726:1 7756:1 7771:1 7785:2 7812:2 7831:9 7855:2 7860:1 7908:1 7940:1 7944:1 7964:1 7967:1 8035:1 8112:1 8138:1 8233:1 8265:2 8266:1 8285:1 8333:1 8343:1 8358:1 8400:1 8473:1 8489:1 8541:1 8591:1 8614:1 8638:1 8656:1 8664:2 8743:2 8749:1 8752:1 8792:1 8816:1 8822:1 8826:2 8837:1 8892:1 8930:1 8939:1 8968:1 8974:1 9033:1 9073:2 9078:1 9098:1 9104:1 9105:1 9124:1 9164:1 9188:2 9199:1 9275:1 9276:1 9316:1 9334:1 9355:1 9366:1 9469:1 9486:5 9523:1 9624:1 9631:1 9633:1 9634:1 9659:1 9676:1 9684:1 9749:1 9793:1 9794:1 9844:1 9845:1 9869:1 9949:1 9962:1 9965:1 9966:1 10035:1 10145:1 10202:1 10225:1 10260:1 10268:1 10345:1 10418:1 10570:1 10655:1 10790:2 10800:1 10841:1 10846:1 10865:1 10876:1 10886:1 10967:2 10990:3 11079:1 11180:1 11224:1 11291:1 11312:1 11347:1 11372:1 11434:1 11443:1 11456:1 11477:1 11482:1 11490:1 11579:1 11583:1 11590:1 11659:1 11660:1 11674:1 11677:1 11752:1 11753:1 11819:1 11860:1 11861:1 11866:1 11908:1 11933:1 11962:1 12012:2 12029:1 12059:1 12097:1 12139:1 12156:1 12223:1 12265:1 12304:1 12315:1 12362:1 12411:1 12439:1 12543:1 12544:2 12545:1 12571:1 12602:1 12603:1 12686:1 12732:2 12806:1 12807:1 12810:2 12953:1 12991:1 12996:1 13009:1 13091:1 13100:1 13131:1 13142:1 13151:1 13153:1 13161:1 13180:1 13250:1 13283:1 13315:1 13334:1 13341:1 13393:1 13417:1 13550:1 13556:1 13584:1 13595:1 13609:1 13647:1 13666:1 13726:1 13747:2 13756:1 13757:1 13807:1 13830:3 13833:1 13847:1 13862:1 13880:1 13887:3 13937:1 13938:1 14116:1 14123:2 14124:1 14127:1 14149:1 14191:1 14201:1 14204:1 14233:1 14243:2 14277:1 14290:1 14304:1 14339:1 14343:1 14359:1 14399:1 14426:1 14445:1 14486:1 14489:1 14508:1 14525:1 14530:1 14577:1 14591:1 14602:1 14611:1 14643:1 14705:1 14730:1 14757:1 14794:1 14803:1 14861:1 14913:1 14927:1 14978:1 15084:1 15112:1 15328:2 15334:1 15349:1 15408:1 15410:1 15428:1 15450:1 15470:1 15532:1 15549:1 15638:1 15651:1 15692:1 15693:1 15849:1 15863:1 15941:1 15950:1 15951:1 15961:1 16028:1 16160:1 16173:1 16174:1 16189:1 16243:1 16306:3 16345:1 16403:1 16452:1 16459:3 16468:1 16488:1 16552:1 16612:1 16618:1 16629:2 16690:1 16693:1 16717:1 16756:1 16760:1 16763:1 16829:1 16830:2 16885:1 16966:1 17062:1 17066:1 17085:1 17101:1 17212:1 17234:1 17237:2 17272:1 17337:1 17347:1 17411:1 17413:2 17419:1 17474:1 17483:1 17516:1 17535:1 17584:1 17632:1 17639:1 17668:2 17711:1 17712:1 17754:1 17762:1 17778:2 17850:2 17946:1 17980:1 18000:1 18043:1 18070:3 18076:1 18126:3 18189:1 18196:2 18240:1 18252:1 18276:1 18283:1 18291:1 18304:1 18395:1 18403:1 18436:5 18447:1 18459:1 18482:1 18485:1 18486:1 18528:1 18532:1 18537:1 18550:1 18630:1 18643:1 18712:1 18720:1 18723:1 18736:2 18761:1 18780:1 18805:1 18867:1 18905:1 19069:2 19095:1 19172:1 19218:1 19225:1 19251:1 19259:1 19287:2 19300:1 19304:443 19324:1 19402:1 19431:1 19444:1 19486:1 19535:1 19629:1 19633:1 19666:5 19692:2 19716:1 19747:1 19820:1 19920:1 19982:1 20027:1 20036:1 20038:1 20053:1 20078:1 20092:1 20131:2 20172:2 20188:1 20242:1 20300:1 20313:1 20329:1 20331:1 20336:1 20339:1 20372:1 20374:1 20399:1 20429:1 20570:1 20577:1 20616:1 20620:1 20641:1 20664:1 20666:1 20783:1 20805:1 20875:1 20918:1 20928:1 20932:1 20962:1 21032:1 21057:2 21058:2 21062:1 21068:1 21080:1 21299:1 21324:1 21429:1 21464:1 21469:1 21472:1 21552:1 21605:1 21613:1 21647:1 21659:1 21702:1 21761:1 21796:1 21802:2 21832:1 21863:2 21901:1 21952:1 21971:1 21976:1 22005:1 22045:1 22058:1 22122:1 22273:1 22289:1 22338:1 22391:1 22413:1 22415:1 22447:1 22507:1 22519:1 22525:2 22532:1 22543:1 22559:1 22561:1 22575:1 22625:1 22632:1 22665:1 22716:2 22838:1 22886:2 22943:1 22959:1 22975:1 23052:1 23053:2 23096:1 23111:2 23124:1 23142:1 23174:1 23241:1 23251:1 23260:1 23309:1 23315:5 23323:1 23361:1 23364:1 23384:1 23385:1 23497:1 23530:1 23594:1 23649:1 23655:1 23785:1 23830:1 23888:1 23903:1 23928:1 23955:1 23992:1 24125:1 24169:1 24173:1 24180:1 24187:1 24232:1 24336:1 24343:1 24425:1 24526:1 24561:1 24566:1 24594:1 24601:1 24620:1 24623:1 24652:1 24661:1 24728:1 24731:1 24748:1 24761:1 24762:1 24788:1 24839:1 24863:1 24902:1 24955:1 24957:1 25032:1 25127:1 25136:1 25206:1 25210:1 25221:1 25222:1 25224:1 25226:2 25228:2 25236:1 25238:1 25249:1 25255:2 25297:1 25300:1 25301:1 25315:1 25343:1 25369:1 25370:1 25393:1 25410:1 25460:1 25478:1 25530:1 25545:1 25565:1 25601:1 25647:2 25692:1 25785:1 25794:1 25900:1 25903:1 25927:1 25929:1 25931:1 26060:2 26112:1 26122:1 26138:1 26146:2 26168:1 26236:1 26240:1 26248:1 26252:1 26261:1 26263:2 26288:2 26294:2 26307:1 26363:2 26420:2 26482:1 26579:1 26614:2 26646:1 26648:1 26656:1 26662:1 26872:1 26883:1 26907:1 26983:1 26997:1 27047:2 27094:1 27118:1 27119:1 27127:1 27138:1 27178:4 27212:1 27278:1 27334:1 27341:1 27378:1 27381:1 27387:1 27415:1 27438:1 27482:1 27535:1 27583:2 27608:2 27665:1 27670:1 27708:1 27781:1 27822:1 27826:1 27845:1 27940:2 27965:1 28071:1 28087:1 28109:1 28218:2 28226:1 28251:1 28300:1 28318:1 28361:1 28372:1 28409:1 28414:1 28458:1 28529:1 28554:2 28589:1 28616:3 28860:1 28872:1 28938:1 28980:1 28992:3 28996:2 29011:1 29034:1 29048:1 29092:1 29115:1 29184:1 29190:1 29216:1 29228:1 29268:1 29278:1 29293:1 29300:1 29362:1 29364:1 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29551:1 29566:1 29587:1 29652:1 29682:1 29717:1 29723:1 29767:1 29773:1 29782:1 29788:1 29801:1 29882:2 29900:1 29914:1 29927:1 29949:1 29969:1 30012:1 30081:1 30088:1 30108:1 30122:1 30136:1 30187:1 30194:2 30208:1 30210:1 30231:2 30250:1 30320:1 30322:1 30326:1 30344:1 30367:1 30371:1 9 11:1 14:1 50:1 79:1 108:1 176:1 187:1 189:1 201:1 236:2 257:1 283:1 303:1 315:1 327:7 338:1 356:1 357:1 366:1 378:1 441:1 460:3 478:1 592:1 600:1 625:1 635:2 637:1 638:1 691:1 693:1 736:1 804:1 824:1 843:1 857:1 883:1 885:1 899:1 900:1 914:3 933:1 938:1 941:3 946:1 952:1 953:1 959:1 964:2 1005:1 1022:1 1032:1 1045:1 1052:1 1084:1 1102:1 1156:2 1201:2 1213:1 1258:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1471:2 1474:1 1491:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1574:1 1614:1 1621:1 1641:1 1701:1 1706:3 1712:1 1775:1 1818:1 1844:1 1852:1 1878:1 1958:5 1965:1 1996:1 2051:1 2053:1 2057:1 2063:1 2128:1 2130:1 2136:1 2143:1 2213:1 2239:1 2276:1 2280:1 2281:1 2288:1 2292:1 2297:1 2298:1 2301:1 2316:3 2319:4 2348:1 2380:1 2386:1 2393:1 2407:1 2445:1 2482:1 2493:2 2532:1 2561:2 2595:1 2603:1 2608:1 2615:1 2620:1 2661:2 2699:1 2701:1 2706:1 2717:1 2763:1 2766:1 2784:2 2815:1 2816:1 2817:1 2821:1 2831:2 2841:1 2933:1 2941:1 2980:1 3002:2 3032:1 3036:2 3061:1 3092:1 3176:1 3240:1 3259:1 3269:1 3343:1 3348:1 3384:1 3434:1 3481:1 3544:1 3557:1 3563:1 3571:1 3578:1 3581:1 3619:1 3635:2 3665:1 3670:1 3681:1 3699:2 3708:1 3741:3 3787:1 3792:1 3796:1 3803:1 3848:1 3855:2 3859:1 3897:1 3904:1 3905:1 3906:1 3924:1 3958:1 3969:1 4089:1 4093:1 4100:1 4108:3 4109:2 4114:1 4187:1 4204:1 4239:1 4241:1 4250:1 4316:1 4364:1 4388:1 4474:2 4546:1 4555:1 4572:1 4697:1 4724:1 4728:2 4741:1 4754:1 4804:1 4807:2 4843:1 4854:1 4875:1 4903:1 4921:1 4954:1 5019:3 5021:1 5041:1 5078:1 5083:2 5135:2 5152:1 5154:1 5159:2 5173:1 5185:1 5188:2 5211:1 5317:1 5328:1 5336:1 5396:1 5409:1 5435:1 5459:1 5464:1 5487:1 5518:3 5520:1 5535:2 5553:1 5698:1 5708:1 5710:2 5712:1 5722:1 5758:1 5792:1 5815:1 5849:2 5897:1 5914:2 5945:1 6021:1 6028:1 6097:1 6152:1 6205:2 6238:1 6257:1 6301:1 6356:1 6380:1 6400:1 6437:1 6485:1 6501:2 6505:1 6515:1 6518:1 6519:1 6520:1 6525:1 6526:2 6527:1 6539:1 6646:1 6798:1 6814:1 6822:1 6844:1 6919:1 6940:3 6960:1 6968:1 7002:1 7029:1 7087:2 7091:1 7100:1 7131:1 7253:1 7255:1 7300:1 7306:1 7310:1 7336:1 7337:1 7416:1 7435:1 7491:1 7505:1 7527:1 7554:1 7555:1 7596:1 7644:1 7725:1 7726:2 7756:1 7757:3 7771:1 7785:2 7812:2 7831:12 7854:1 7855:2 7860:1 7908:1 7923:1 7940:1 7944:1 7964:1 7967:1 8035:1 8112:1 8138:1 8233:1 8265:2 8266:1 8285:1 8333:1 8343:1 8358:1 8400:1 8473:1 8489:1 8525:2 8541:1 8589:1 8591:1 8614:1 8629:1 8638:1 8656:1 8664:2 8743:2 8749:1 8752:1 8792:1 8816:1 8822:1 8826:2 8837:1 8892:1 8930:1 8939:1 8968:1 8974:1 9033:1 9073:2 9078:1 9098:1 9104:1 9105:1 9124:1 9164:1 9188:2 9199:1 9275:1 9276:1 9295:1 9316:1 9334:1 9355:1 9366:1 9469:1 9486:7 9510:1 9523:1 9587:1 9608:1 9624:1 9631:1 9633:1 9634:1 9659:1 9676:1 9684:1 9728:1 9749:1 9793:1 9794:1 9831:1 9844:1 9845:1 9869:1 9886:1 9949:1 9962:2 9965:1 9966:1 9991:1 10035:1 10093:1 10145:1 10202:1 10211:1 10225:1 10260:1 10268:1 10345:1 10368:1 10401:1 10418:1 10525:1 10570:1 10588:1 10655:1 10712:1 10790:2 10800:1 10823:1 10841:1 10844:1 10846:1 10865:1 10867:1 10876:1 10886:1 10916:1 10967:2 10990:4 11079:1 11112:1 11117:1 11180:1 11224:1 11291:1 11298:1 11302:1 11312:1 11347:1 11372:1 11377:1 11433:1 11434:1 11443:1 11456:1 11477:1 11482:1 11490:1 11579:1 11583:1 11590:1 11659:1 11660:1 11674:1 11677:1 11686:1 11706:1 11752:1 11753:1 11819:1 11852:1 11860:1 11861:1 11866:1 11908:1 11933:1 11962:1 12012:2 12029:1 12059:1 12074:1 12097:1 12139:1 12156:1 12223:1 12265:1 12304:1 12315:1 12362:1 12382:1 12411:1 12433:1 12439:1 12543:1 12544:2 12545:1 12571:1 12602:1 12603:1 12615:1 12686:1 12702:1 12732:2 12806:1 12807:1 12810:2 12953:1 12991:1 12996:1 13009:1 13091:1 13100:1 13131:1 13142:1 13151:1 13153:1 13161:1 13180:1 13250:1 13255:1 13256:1 13283:1 13315:1 13334:1 13341:1 13393:1 13417:1 13550:1 13556:1 13584:1 13595:1 13609:1 13611:1 13647:1 13666:1 13726:1 13747:2 13756:1 13757:1 13807:1 13830:3 13833:1 13840:1 13847:1 13862:1 13880:1 13887:3 13937:1 13938:1 14116:1 14123:2 14124:1 14127:1 14146:1 14149:1 14191:1 14201:1 14204:1 14233:1 14243:2 14277:1 14290:1 14304:1 14339:1 14343:1 14359:1 14399:1 14426:1 14445:1 14486:1 14489:1 14508:1 14525:1 14530:1 14577:1 14591:1 14602:1 14611:1 14643:1 14667:1 14705:1 14730:1 14757:1 14794:1 14796:1 14800:1 14803:1 14814:1 14861:1 14913:1 14927:2 14978:1 15013:1 15084:1 15112:1 15328:2 15334:1 15349:1 15408:1 15410:1 15428:1 15449:1 15450:1 15470:1 15532:1 15549:1 15638:1 15651:1 15692:1 15693:1 15748:1 15849:1 15863:1 15941:1 15950:1 15951:1 15961:1 15969:1 15987:1 16028:2 16081:1 16128:1 16160:2 16173:1 16174:1 16189:1 16233:1 16243:1 16306:3 16345:1 16403:1 16404:1 16452:1 16459:3 16468:1 16472:1 16488:1 16552:1 16612:1 16618:1 16624:1 16629:2 16670:1 16690:1 16693:1 16717:1 16756:1 16760:1 16763:1 16829:1 16830:2 16885:1 16966:1 17062:1 17066:1 17085:1 17101:1 17212:1 17234:1 17237:2 17272:1 17310:1 17337:1 17347:1 17411:1 17413:2 17419:1 17474:1 17483:1 17516:1 17535:1 17584:1 17632:1 17639:1 17668:3 17711:1 17712:1 17754:1 17762:1 17778:2 17850:2 17946:1 17980:1 18000:1 18041:1 18043:2 18070:3 18076:1 18126:3 18185:1 18189:1 18196:2 18210:1 18240:1 18252:1 18276:1 18283:2 18286:1 18291:1 18304:1 18327:1 18395:1 18403:1 18436:6 18447:1 18455:1 18459:1 18482:1 18485:1 18486:1 18528:1 18532:1 18537:1 18550:1 18569:1 18630:1 18643:1 18698:1 18712:1 18720:1 18723:1 18736:2 18761:1 18780:1 18805:1 18867:1 18905:1 18918:1 19069:2 19095:1 19172:1 19218:1 19225:1 19251:1 19259:1 19287:2 19300:1 19304:536 19308:1 19324:1 19402:1 19431:1 19444:1 19486:1 19535:1 19542:1 19629:1 19633:1 19666:7 19692:2 19716:1 19747:1 19820:1 19898:1 19920:1 19982:1 20021:1 20027:1 20036:1 20038:1 20043:1 20053:1 20078:1 20092:1 20131:3 20172:2 20173:1 20188:1 20242:1 20296:1 20300:1 20313:1 20329:1 20331:1 20336:1 20339:1 20372:1 20374:1 20399:1 20429:1 20516:1 20570:1 20577:1 20598:1 20616:1 20620:1 20641:1 20664:1 20666:1 20760:1 20783:1 20805:1 20850:1 20875:1 20886:1 20918:1 20928:1 20932:1 20962:1 21032:1 21057:2 21058:2 21062:1 21068:1 21080:1 21136:1 21255:1 21299:1 21324:1 21429:2 21464:1 21469:1 21472:1 21552:1 21561:1 21579:1 21588:1 21605:1 21613:1 21647:1 21659:1 21702:1 21739:1 21761:1 21796:1 21802:2 21810:1 21832:1 21863:2 21901:1 21952:1 21965:1 21971:1 21976:1 21985:1 22005:1 22045:1 22058:1 22122:1 22177:1 22265:1 22273:1 22283:1 22289:1 22298:1 22325:1 22338:1 22346:1 22378:1 22391:1 22413:1 22415:2 22447:1 22507:1 22519:1 22525:2 22532:1 22543:1 22559:1 22561:1 22562:1 22575:1 22625:1 22632:1 22665:1 22672:1 22679:1 22716:2 22801:1 22818:1 22838:1 22886:2 22897:1 22940:1 22943:1 22959:1 22975:2 23052:1 23053:2 23056:1 23072:2 23096:1 23111:2 23124:1 23142:1 23174:1 23226:1 23231:1 23241:1 23251:1 23260:1 23263:1 23309:1 23315:6 23323:1 23361:1 23364:1 23384:1 23385:1 23497:1 23501:1 23509:1 23530:1 23594:1 23634:1 23649:1 23655:1 23785:1 23830:1 23887:1 23888:1 23903:1 23906:1 23928:1 23955:1 23992:1 24125:1 24144:1 24169:1 24173:1 24180:1 24187:1 24232:1 24325:1 24336:1 24343:1 24425:1 24443:1 24488:1 24526:1 24561:1 24566:1 24594:1 24601:1 24620:1 24623:1 24652:1 24661:1 24728:1 24731:1 24748:1 24761:1 24762:1 24788:1 24822:1 24839:1 24863:1 24902:1 24927:1 24955:1 24956:1 24957:1 25028:1 25032:1 25085:1 25127:1 25136:1 25150:1 25206:1 25210:1 25221:1 25222:1 25224:1 25226:2 25228:2 25236:1 25238:1 25249:1 25255:2 25297:1 25300:1 25301:1 25315:1 25327:1 25343:1 25369:1 25370:1 25393:1 25410:1 25460:1 25478:1 25530:2 25545:1 25565:1 25601:1 25647:2 25648:1 25692:1 25752:1 25781:1 25785:1 25794:1 25861:1 25879:1 25900:1 25903:1 25922:1 25927:1 25929:1 25931:1 26023:1 26060:2 26112:1 26122:1 26138:1 26146:2 26168:1 26236:1 26240:1 26248:1 26252:1 26261:1 26263:3 26280:1 26285:1 26288:2 26294:2 26307:1 26311:1 26320:1 26363:2 26420:2 26482:1 26579:1 26614:2 26646:1 26648:1 26656:1 26662:1 26760:1 26872:1 26882:1 26883:1 26907:1 26939:1 26983:1 26997:1 27020:1 27047:2 27094:1 27095:1 27118:1 27119:1 27127:1 27138:1 27178:4 27179:1 27212:1 27234:1 27278:1 27334:1 27341:1 27378:1 27381:1 27387:1 27415:1 27438:1 27454:1 27482:1 27510:1 27535:1 27583:2 27608:2 27665:1 27670:1 27708:1 27781:1 27822:1 27826:1 27845:1 27940:2 27965:1 27990:1 28071:1 28087:1 28109:1 28218:2 28226:1 28251:1 28300:1 28318:1 28361:1 28372:1 28384:1 28409:1 28414:1 28458:1 28529:1 28554:2 28589:1 28616:3 28860:1 28872:1 28893:1 28938:1 28980:1 28992:3 28996:2 29011:1 29034:1 29048:1 29092:1 29115:1 29131:1 29176:3 29184:1 29190:1 29216:1 29228:1 29268:1 29278:1 29293:1 29300:1 29347:1 29362:1 29364:1 29388:1 29405:1 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29551:1 29566:1 29570:1 29587:1 29652:1 29682:1 29717:1 29723:1 29767:1 29773:1 29782:1 29788:1 29801:1 29832:1 29882:2 29900:1 29914:1 29927:1 29949:1 29969:1 30012:1 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30187:1 30194:2 30208:1 30210:1 30231:3 30250:1 30320:2 30322:1 30326:1 30332:1 30344:1 30367:1 30371:1 9 11:1 14:1 50:1 79:1 108:1 152:1 176:1 187:1 189:1 201:1 206:1 236:2 257:1 283:1 303:1 315:1 327:8 338:1 356:1 357:1 366:1 378:1 441:1 460:3 478:1 592:1 600:1 625:1 635:2 637:1 638:1 691:1 693:1 736:1 804:1 824:1 843:1 856:1 857:1 883:1 885:1 899:1 900:1 914:4 933:1 938:1 941:3 946:1 952:1 953:1 959:1 964:2 1005:1 1022:1 1032:2 1045:1 1052:1 1084:1 1102:1 1142:1 1156:2 1201:2 1213:1 1258:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1471:2 1474:1 1491:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1574:1 1614:1 1621:1 1641:1 1677:1 1701:1 1706:3 1712:1 1775:1 1818:1 1844:1 1852:1 1878:1 1958:6 1965:1 1986:1 1996:1 2018:1 2051:1 2053:1 2057:1 2063:1 2128:1 2130:1 2136:1 2143:1 2211:1 2213:1 2234:1 2239:1 2276:1 2280:1 2281:1 2285:1 2288:1 2292:1 2297:1 2298:1 2301:1 2316:3 2319:4 2348:1 2380:1 2386:1 2393:1 2407:1 2418:1 2445:1 2482:1 2493:2 2532:1 2561:4 2595:1 2603:1 2608:1 2615:1 2620:1 2661:2 2699:1 2701:1 2706:1 2717:1 2763:1 2766:1 2784:2 2815:1 2816:1 2817:1 2821:1 2831:2 2841:1 2933:1 2941:2 2980:1 3002:3 3032:1 3036:2 3061:1 3092:1 3176:1 3240:1 3259:1 3269:1 3325:1 3343:1 3348:1 3384:1 3434:1 3481:1 3487:1 3544:1 3557:1 3563:1 3571:1 3578:1 3581:1 3619:1 3635:2 3665:1 3670:1 3681:1 3699:2 3708:1 3715:1 3741:3 3787:1 3792:1 3796:1 3803:1 3848:1 3855:2 3858:1 3859:1 3897:1 3904:2 3905:1 3906:1 3924:1 3958:1 3969:1 4084:1 4089:1 4093:1 4099:1 4100:1 4108:3 4109:2 4114:1 4187:1 4204:1 4239:1 4241:1 4250:1 4315:1 4316:1 4364:1 4388:1 4474:2 4546:1 4555:1 4572:1 4601:1 4697:1 4724:1 4728:2 4741:1 4754:1 4804:1 4807:2 4843:1 4854:1 4875:1 4903:1 4921:1 4954:1 5019:4 5021:1 5041:1 5078:1 5083:2 5135:2 5152:1 5153:1 5154:1 5159:2 5173:1 5185:1 5188:2 5211:1 5317:1 5328:1 5336:1 5396:1 5409:1 5435:1 5459:1 5464:1 5487:1 5518:3 5520:1 5535:2 5551:1 5553:1 5602:1 5691:1 5698:1 5708:1 5710:2 5712:1 5722:1 5758:1 5792:1 5815:1 5849:2 5873:1 5897:1 5914:2 5917:1 5945:1 6021:1 6028:1 6097:1 6152:1 6205:2 6238:1 6257:1 6301:1 6356:1 6380:1 6384:1 6390:1 6400:1 6437:1 6485:1 6501:2 6505:1 6515:1 6518:1 6519:1 6520:1 6525:1 6526:3 6527:2 6539:1 6646:2 6750:1 6798:1 6803:1 6814:1 6822:1 6844:1 6898:1 6919:1 6940:3 6960:1 6968:1 7002:1 7029:1 7087:2 7091:1 7100:1 7113:1 7131:1 7253:2 7255:1 7300:1 7302:1 7306:1 7310:1 7336:1 7337:1 7416:1 7435:1 7452:1 7491:1 7505:1 7527:1 7554:1 7555:1 7579:1 7596:1 7644:1 7672:1 7725:1 7726:2 7756:1 7757:4 7771:1 7785:2 7812:2 7831:13 7854:1 7855:3 7860:1 7883:1 7908:1 7923:1 7940:1 7944:1 7964:1 7967:1 8035:1 8112:1 8138:1 8233:1 8265:2 8266:1 8285:1 8324:1 8333:1 8343:1 8348:1 8358:3 8400:1 8452:1 8473:1 8489:1 8525:2 8541:1 8589:1 8591:1 8614:1 8624:1 8629:1 8638:1 8656:1 8664:4 8728:1 8743:2 8748:1 8749:1 8752:1 8753:1 8784:1 8792:1 8816:1 8822:1 8826:2 8837:1 8892:1 8930:1 8939:1 8968:1 8974:1 9033:1 9073:2 9074:1 9078:1 9098:1 9104:1 9105:1 9124:1 9164:1 9188:2 9199:1 9222:1 9275:1 9276:1 9295:1 9307:1 9316:1 9334:1 9355:1 9366:1 9469:1 9486:8 9510:1 9523:1 9587:1 9608:1 9624:1 9631:1 9633:1 9634:1 9659:1 9676:1 9684:1 9728:1 9749:1 9793:1 9794:1 9831:1 9844:1 9845:1 9869:1 9886:1 9919:1 9949:1 9962:2 9965:1 9966:1 9991:1 10035:2 10093:1 10145:1 10171:1 10202:1 10210:1 10211:1 10225:1 10229:1 10240:1 10260:1 10268:1 10345:1 10368:1 10401:1 10402:1 10418:1 10525:1 10570:1 10588:1 10638:1 10655:1 10712:1 10767:1 10790:2 10800:1 10811:1 10813:1 10823:1 10841:1 10844:1 10846:1 10865:1 10867:1 10876:1 10886:1 10888:1 10916:1 10967:2 10990:4 11079:1 11112:1 11117:1 11180:1 11211:1 11224:1 11254:1 11291:1 11298:1 11302:1 11312:1 11347:1 11372:1 11377:1 11378:1 11433:1 11434:1 11443:1 11456:1 11477:1 11482:1 11490:1 11544:1 11554:1 11579:1 11583:1 11590:1 11659:1 11660:1 11674:1 11677:1 11686:1 11706:1 11752:1 11753:1 11819:1 11852:1 11860:1 11861:1 11866:1 11908:1 11933:1 11962:1 12012:2 12026:1 12029:1 12059:1 12074:1 12097:1 12139:1 12156:1 12200:1 12223:1 12265:1 12291:1 12304:1 12315:1 12362:1 12382:1 12411:1 12433:1 12439:1 12543:1 12544:2 12545:1 12571:1 12602:1 12603:1 12615:1 12686:1 12702:1 12732:2 12806:1 12807:1 12810:2 12953:1 12991:1 12996:1 13009:1 13091:1 13100:1 13113:1 13131:1 13142:1 13151:1 13153:1 13161:1 13180:1 13222:1 13250:1 13255:1 13256:1 13283:1 13291:1 13315:1 13334:1 13339:1 13341:1 13393:1 13417:1 13550:1 13556:1 13584:1 13588:1 13595:1 13609:1 13611:1 13647:1 13666:1 13726:1 13732:1 13734:1 13747:2 13756:1 13757:1 13774:1 13807:1 13830:3 13833:1 13840:1 13847:1 13862:1 13880:1 13887:3 13913:1 13937:1 13938:1 14116:1 14120:1 14123:2 14124:1 14127:1 14138:1 14146:1 14149:1 14191:1 14201:1 14204:1 14233:1 14243:2 14277:1 14290:1 14304:1 14339:1 14343:1 14359:1 14399:1 14426:1 14445:1 14486:1 14489:1 14508:1 14525:1 14530:1 14577:2 14591:1 14602:1 14611:1 14624:1 14643:1 14667:1 14668:1 14705:1 14730:1 14757:1 14794:1 14796:1 14800:1 14803:1 14808:1 14814:1 14861:1 14913:1 14927:2 14978:1 15013:1 15060:1 15084:1 15112:1 15134:1 15328:2 15334:1 15349:1 15408:1 15410:1 15428:1 15449:1 15450:1 15470:1 15532:1 15549:1 15638:1 15651:1 15692:1 15693:1 15748:1 15820:1 15849:1 15863:2 15924:1 15941:1 15950:1 15951:1 15961:1 15969:1 15982:1 15987:1 16018:1 16028:2 16081:1 16128:1 16160:2 16173:1 16174:1 16189:1 16233:1 16243:1 16306:3 16345:1 16403:1 16404:1 16452:1 16459:3 16468:1 16472:1 16484:1 16488:1 16552:1 16599:1 16612:2 16618:1 16624:1 16629:2 16670:1 16690:1 16693:1 16717:1 16741:1 16745:1 16756:1 16760:1 16763:1 16829:1 16830:2 16885:1 16922:1 16960:1 16966:1 17062:1 17066:1 17085:1 17101:1 17158:1 17167:1 17212:1 17234:1 17237:2 17272:1 17279:1 17287:1 17310:1 17337:1 17347:1 17411:1 17413:2 17419:1 17474:1 17483:1 17516:1 17535:1 17584:1 17632:1 17639:1 17668:3 17711:1 17712:1 17735:1 17754:1 17762:1 17778:2 17850:2 17857:1 17946:1 17962:1 17980:2 18000:1 18004:1 18025:1 18041:1 18043:2 18070:3 18072:1 18076:1 18126:3 18127:1 18185:1 18189:1 18196:2 18210:1 18240:1 18252:1 18256:1 18276:1 18283:2 18286:1 18291:1 18304:1 18327:1 18395:1 18403:1 18424:1 18436:7 18447:1 18455:1 18459:1 18482:1 18485:1 18486:1 18528:1 18532:1 18537:1 18550:1 18569:1 18586:1 18591:1 18630:1 18643:1 18680:1 18695:1 18698:1 18712:1 18720:1 18723:2 18736:2 18738:1 18761:1 18780:1 18805:1 18867:1 18905:1 18918:1 18962:1 19069:4 19095:1 19172:1 19218:1 19225:1 19251:1 19254:1 19259:1 19287:2 19291:1 19300:1 19304:598 19308:1 19324:1 19368:1 19402:1 19431:1 19437:1 19444:1 19486:1 19535:1 19542:1 19629:1 19633:1 19666:8 19692:2 19716:1 19747:1 19774:1 19820:1 19898:1 19920:1 19982:1 20021:1 20027:1 20036:1 20038:1 20043:1 20053:1 20078:1 20092:1 20106:1 20131:4 20172:2 20173:1 20188:1 20242:1 20296:1 20300:1 20313:1 20329:1 20331:1 20336:1 20339:1 20372:1 20374:1 20375:1 20399:1 20429:1 20501:1 20516:1 20570:1 20577:1 20598:1 20616:1 20620:1 20629:1 20641:1 20664:1 20666:1 20692:1 20708:1 20760:1 20783:1 20791:1 20805:1 20848:1 20850:1 20875:1 20886:1 20918:1 20928:1 20932:1 20962:1 21002:1 21032:1 21057:2 21058:2 21062:1 21068:1 21080:1 21129:1 21136:1 21255:1 21296:1 21299:2 21324:1 21389:1 21429:2 21464:1 21469:1 21472:1 21526:1 21546:1 21550:1 21552:1 21561:1 21579:1 21588:1 21605:1 21613:1 21647:1 21659:1 21673:1 21702:1 21739:1 21761:1 21796:1 21802:2 21810:1 21832:1 21836:1 21863:2 21901:1 21952:1 21965:1 21971:1 21976:1 21985:1 22005:1 22045:1 22058:1 22122:1 22177:1 22254:1 22265:1 22273:1 22283:1 22289:1 22298:1 22325:1 22338:1 22346:1 22378:1 22391:1 22413:1 22415:3 22447:1 22507:1 22519:1 22525:3 22532:1 22543:2 22559:1 22561:1 22562:1 22575:1 22625:1 22632:1 22665:1 22672:1 22679:1 22682:1 22716:2 22801:1 22818:1 22838:1 22886:2 22897:1 22933:1 22940:1 22943:1 22959:1 22975:2 23034:1 23052:1 23053:2 23056:1 23072:2 23096:1 23111:2 23124:1 23142:1 23174:1 23226:1 23231:1 23241:1 23251:1 23260:1 23263:1 23309:1 23315:7 23323:1 23329:1 23361:1 23364:1 23384:1 23385:1 23497:1 23501:1 23509:1 23530:1 23594:1 23602:1 23614:1 23634:1 23649:1 23655:1 23785:1 23830:1 23887:1 23888:1 23903:1 23906:1 23928:1 23955:1 23992:1 24079:1 24125:1 24144:1 24169:1 24173:1 24180:1 24187:1 24232:1 24278:1 24282:1 24325:1 24336:1 24343:2 24425:1 24443:1 24488:1 24526:1 24561:1 24566:1 24592:1 24594:1 24601:1 24620:1 24623:1 24652:1 24661:1 24728:1 24731:1 24748:1 24761:1 24762:1 24788:1 24822:1 24839:1 24863:1 24902:1 24912:1 24927:1 24955:1 24956:1 24957:1 24995:1 25028:1 25032:1 25085:1 25099:1 25127:1 25136:1 25150:1 25206:1 25210:1 25221:1 25222:1 25224:1 25226:2 25228:2 25229:1 25236:1 25238:1 25249:1 25255:2 25297:1 25300:1 25301:1 25315:1 25327:1 25343:1 25369:1 25370:1 25381:1 25393:1 25410:1 25460:1 25478:1 25530:2 25545:1 25565:1 25601:1 25647:2 25648:1 25692:1 25752:1 25767:1 25781:1 25785:1 25794:1 25861:1 25879:1 25900:1 25903:1 25922:1 25927:1 25929:1 25931:1 26023:1 26060:2 26083:1 26112:1 26122:1 26138:1 26146:2 26168:1 26180:1 26236:1 26240:1 26248:1 26252:1 26261:1 26263:3 26280:1 26285:2 26288:3 26294:2 26307:1 26311:1 26317:1 26320:1 26363:2 26420:2 26482:1 26579:1 26614:2 26646:1 26648:1 26656:1 26662:1 26760:1 26872:1 26882:1 26883:1 26907:1 26939:1 26954:1 26983:1 26989:1 26997:1 27020:1 27047:4 27094:1 27095:1 27118:1 27119:1 27127:1 27138:1 27178:4 27179:1 27212:1 27234:1 27278:1 27334:2 27341:1 27378:1 27381:1 27387:1 27415:1 27438:1 27454:1 27482:1 27510:1 27535:1 27583:4 27608:2 27665:1 27670:1 27708:1 27732:1 27781:1 27822:1 27826:1 27845:1 27940:2 27965:2 27974:1 27990:1 28044:1 28071:1 28087:1 28109:2 28218:2 28226:1 28251:1 28261:1 28300:1 28318:1 28361:1 28372:1 28384:1 28409:1 28414:1 28458:1 28529:1 28554:2 28589:1 28616:3 28860:2 28872:1 28893:1 28938:1 28980:1 28992:6 28993:1 28996:4 29011:1 29034:1 29048:1 29092:1 29115:1 29131:1 29146:1 29176:4 29184:1 29190:1 29216:1 29228:1 29245:1 29268:1 29278:1 29293:1 29300:1 29343:1 29347:1 29362:1 29364:1 29388:1 29405:1 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29551:1 29566:1 29570:1 29587:1 29652:1 29682:1 29717:1 29723:1 29749:1 29767:1 29773:1 29782:1 29788:1 29801:1 29832:1 29882:2 29900:1 29914:1 29927:1 29949:1 29969:1 30001:1 30012:1 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30187:1 30194:2 30208:1 30210:1 30231:3 30243:1 30250:1 30320:2 30322:1 30326:1 30331:1 30332:1 30344:1 30367:1 30371:1 9 11:1 14:1 50:1 79:1 108:1 135:1 152:1 176:1 187:1 189:1 201:1 206:1 236:2 257:1 283:1 303:1 315:1 325:1 327:9 338:1 356:1 357:2 366:1 378:1 441:1 460:3 478:1 480:1 592:1 600:1 625:1 635:2 637:1 638:1 691:1 693:1 736:1 804:1 824:1 833:1 843:1 856:1 857:1 883:1 885:1 899:1 900:1 914:4 933:1 938:1 941:3 946:1 952:1 953:1 959:1 964:3 986:1 1005:1 1022:1 1032:2 1045:1 1052:1 1054:1 1084:1 1102:1 1142:1 1156:2 1201:2 1213:1 1258:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1471:2 1474:1 1491:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1574:1 1614:1 1621:1 1641:1 1650:1 1677:1 1680:1 1701:1 1706:3 1712:1 1775:1 1818:1 1844:1 1852:1 1878:1 1958:6 1965:1 1986:1 1996:1 2018:2 2051:1 2053:1 2057:1 2063:1 2128:1 2130:1 2136:1 2143:1 2211:1 2213:1 2234:1 2239:1 2274:1 2276:1 2280:1 2281:1 2285:2 2288:2 2292:1 2297:1 2298:1 2301:1 2316:4 2319:5 2348:1 2380:1 2386:1 2393:1 2407:1 2411:1 2418:1 2445:1 2482:1 2493:3 2532:1 2561:4 2595:2 2603:1 2608:1 2615:2 2620:1 2661:2 2699:1 2701:2 2706:1 2717:1 2728:1 2763:1 2766:1 2784:3 2815:1 2816:1 2817:1 2821:1 2831:2 2841:1 2933:1 2941:2 2980:1 3002:3 3032:1 3036:3 3038:1 3061:1 3092:1 3176:1 3240:1 3259:1 3269:1 3325:1 3339:1 3343:1 3348:1 3384:1 3386:1 3434:1 3481:1 3487:1 3544:1 3557:1 3561:1 3563:1 3571:1 3578:1 3581:1 3615:1 3619:1 3635:2 3665:1 3670:1 3681:1 3699:3 3708:1 3715:1 3741:3 3787:1 3792:1 3796:1 3803:2 3848:1 3855:2 3857:1 3858:1 3859:1 3888:1 3895:1 3897:1 3904:3 3905:1 3906:1 3924:1 3958:1 3969:1 4022:1 4084:1 4089:1 4093:1 4099:1 4100:1 4108:3 4109:2 4114:1 4153:1 4169:2 4187:1 4204:1 4239:1 4241:1 4250:1 4315:1 4316:1 4364:1 4381:1 4388:1 4474:2 4546:1 4555:1 4572:1 4601:1 4697:1 4724:1 4728:2 4741:2 4754:1 4804:1 4807:3 4843:1 4854:1 4870:1 4875:1 4903:1 4921:1 4954:1 5019:4 5021:1 5041:2 5078:1 5083:4 5093:1 5135:3 5151:1 5152:1 5153:1 5154:1 5159:2 5173:1 5185:1 5188:2 5211:1 5242:1 5317:1 5328:1 5336:1 5396:2 5409:1 5435:1 5459:1 5464:1 5487:1 5518:3 5520:1 5535:2 5551:1 5553:1 5602:1 5691:1 5692:1 5698:1 5705:1 5708:1 5710:2 5712:1 5722:1 5758:2 5763:1 5792:2 5815:1 5849:2 5873:1 5897:1 5914:2 5917:1 5945:1 6021:1 6028:1 6097:1 6152:1 6183:1 6205:4 6238:1 6257:1 6301:1 6356:1 6380:1 6384:1 6390:1 6400:1 6404:1 6426:1 6437:1 6485:1 6501:2 6505:1 6515:1 6518:1 6519:1 6520:1 6525:1 6526:5 6527:2 6539:1 6646:2 6750:1 6798:1 6803:1 6814:1 6822:1 6844:1 6898:1 6919:1 6940:3 6960:1 6968:1 6973:1 7002:1 7029:1 7087:2 7091:1 7100:1 7113:1 7131:1 7212:1 7253:2 7255:1 7300:1 7302:1 7306:1 7310:1 7336:1 7337:1 7416:1 7435:1 7452:1 7491:1 7505:1 7527:1 7554:1 7555:1 7579:1 7596:1 7603:1 7644:1 7672:1 7725:1 7726:2 7756:1 7757:5 7771:1 7784:1 7785:2 7812:2 7831:17 7854:1 7855:3 7860:1 7883:1 7908:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:1 8035:1 8112:1 8138:1 8223:1 8233:1 8265:2 8266:2 8285:1 8324:1 8333:1 8343:1 8348:1 8358:3 8400:1 8452:1 8473:1 8489:1 8524:1 8525:2 8535:1 8541:1 8589:1 8591:1 8614:2 8624:1 8629:1 8638:1 8646:1 8656:1 8664:4 8728:1 8743:2 8746:1 8748:1 8749:1 8752:1 8753:1 8784:1 8792:1 8816:1 8822:1 8826:2 8837:1 8892:1 8930:1 8939:1 8968:1 8974:1 9033:2 9073:3 9074:1 9078:1 9098:1 9104:1 9105:1 9124:1 9164:1 9188:2 9199:1 9222:1 9275:1 9276:1 9295:1 9307:1 9316:1 9334:1 9355:1 9366:1 9469:1 9474:1 9486:9 9510:1 9523:1 9572:1 9587:1 9608:1 9611:1 9624:1 9631:1 9633:2 9634:1 9659:1 9676:1 9684:1 9728:1 9749:1 9758:1 9793:1 9794:1 9810:1 9831:1 9844:1 9845:1 9869:1 9886:1 9919:1 9949:1 9962:2 9965:1 9966:2 9991:1 10035:2 10093:1 10113:1 10135:1 10145:1 10158:1 10171:1 10179:1 10202:1 10210:1 10211:1 10225:1 10229:1 10240:2 10260:1 10268:1 10345:1 10368:1 10401:1 10402:1 10418:1 10525:1 10570:1 10588:1 10609:1 10625:1 10638:1 10655:1 10712:1 10767:1 10790:2 10800:1 10811:1 10813:1 10823:1 10841:1 10844:1 10846:1 10865:1 10867:1 10876:1 10886:1 10888:1 10890:1 10916:1 10967:2 10990:4 11079:1 11112:1 11117:1 11180:1 11211:1 11224:1 11254:1 11260:1 11262:1 11291:1 11298:1 11302:1 11312:1 11347:2 11372:1 11377:1 11378:1 11433:1 11434:1 11443:1 11456:1 11477:1 11482:1 11490:1 11544:1 11554:1 11579:1 11583:1 11590:1 11659:1 11660:1 11674:1 11675:1 11677:1 11686:1 11706:1 11752:1 11753:1 11819:1 11830:1 11852:1 11860:1 11861:1 11866:1 11901:1 11908:1 11933:1 11962:1 12012:2 12026:1 12029:1 12059:1 12074:1 12097:1 12108:1 12139:1 12156:1 12200:1 12223:1 12265:1 12291:1 12304:2 12315:1 12362:1 12382:1 12411:2 12433:1 12439:1 12543:2 12544:3 12545:1 12571:1 12602:1 12603:1 12615:1 12686:1 12702:1 12726:1 12732:2 12806:1 12807:1 12810:2 12935:1 12953:1 12991:1 12996:1 13009:1 13091:1 13100:1 13113:1 13131:1 13142:1 13151:1 13153:1 13161:1 13180:1 13222:1 13246:1 13250:1 13255:1 13256:1 13283:1 13291:1 13315:1 13334:1 13339:1 13341:1 13393:1 13417:1 13550:1 13556:1 13584:1 13588:2 13595:1 13609:1 13611:1 13647:1 13666:1 13726:1 13732:1 13734:1 13747:2 13756:1 13757:1 13774:1 13802:1 13807:1 13830:3 13833:1 13840:1 13847:1 13862:1 13880:1 13887:3 13913:1 13937:1 13938:1 14076:1 14116:1 14120:1 14123:2 14124:1 14127:1 14138:1 14146:1 14149:1 14170:1 14191:1 14201:1 14204:1 14233:1 14243:2 14277:1 14290:1 14304:2 14339:1 14343:1 14345:1 14359:1 14399:1 14426:1 14445:1 14486:1 14489:1 14508:1 14525:1 14530:1 14577:3 14591:1 14602:2 14611:1 14624:1 14643:1 14667:1 14668:1 14705:1 14730:1 14757:1 14794:1 14796:1 14800:1 14803:2 14808:1 14812:1 14814:1 14861:1 14913:1 14927:2 14978:1 15013:1 15060:1 15084:1 15112:1 15134:1 15328:3 15334:1 15349:1 15408:2 15410:1 15428:1 15449:1 15450:1 15470:1 15532:1 15549:1 15638:1 15651:1 15692:1 15693:1 15698:1 15748:1 15820:1 15849:1 15863:3 15924:1 15941:1 15950:1 15951:1 15961:1 15969:1 15982:1 15987:1 16018:1 16028:2 16081:1 16114:1 16128:1 16141:1 16160:2 16165:1 16173:1 16174:1 16189:1 16233:1 16243:1 16306:3 16345:1 16403:1 16404:1 16452:1 16459:3 16468:1 16472:1 16484:1 16488:1 16552:1 16553:1 16599:1 16612:3 16618:1 16624:1 16629:2 16670:1 16690:1 16693:1 16717:1 16734:1 16741:1 16745:1 16756:1 16760:1 16763:1 16791:1 16829:1 16830:2 16885:1 16922:1 16960:1 16966:1 17062:1 17066:1 17085:1 17101:1 17158:1 17167:1 17212:1 17234:1 17237:2 17272:1 17279:1 17287:1 17310:1 17337:1 17347:1 17411:1 17413:2 17419:1 17474:1 17483:1 17496:1 17516:1 17535:1 17584:1 17632:1 17639:2 17668:3 17711:1 17712:1 17735:1 17754:1 17762:1 17778:2 17844:1 17850:2 17857:1 17946:1 17962:1 17980:2 18000:1 18004:1 18025:1 18041:1 18043:2 18070:3 18072:1 18076:1 18126:4 18127:2 18154:1 18185:1 18189:1 18196:4 18210:1 18240:1 18252:2 18256:1 18276:1 18283:2 18286:1 18291:1 18304:1 18327:1 18366:1 18395:1 18403:1 18424:2 18436:8 18447:1 18451:1 18455:1 18459:1 18482:1 18485:1 18486:1 18506:1 18528:1 18532:1 18537:1 18546:1 18550:1 18569:1 18586:1 18591:1 18630:1 18643:1 18680:1 18695:1 18698:1 18712:1 18720:1 18723:2 18736:2 18738:1 18750:1 18761:1 18780:1 18805:1 18867:1 18905:1 18918:1 18962:1 19069:4 19095:1 19172:1 19218:1 19225:1 19251:2 19254:1 19259:1 19287:2 19291:1 19300:1 19304:675 19308:1 19324:1 19367:1 19368:1 19402:1 19431:1 19437:1 19444:1 19486:1 19535:1 19542:1 19629:1 19633:1 19666:9 19692:2 19716:1 19747:1 19774:1 19820:1 19868:1 19898:1 19920:1 19978:2 19982:1 20021:1 20027:1 20036:1 20038:1 20043:1 20053:1 20058:1 20074:1 20078:1 20092:1 20106:1 20131:5 20172:2 20173:1 20188:1 20242:1 20296:1 20300:1 20313:1 20329:1 20331:1 20336:2 20339:1 20372:1 20374:1 20375:1 20399:1 20429:1 20501:1 20516:1 20570:1 20577:1 20598:1 20616:1 20620:1 20629:1 20641:1 20664:1 20666:1 20692:1 20708:1 20760:1 20783:1 20791:1 20805:1 20817:1 20848:1 20850:1 20875:1 20886:1 20918:1 20928:1 20932:1 20962:1 21002:1 21032:1 21057:2 21058:2 21062:1 21068:1 21074:1 21080:1 21129:1 21136:1 21255:1 21296:1 21299:2 21314:1 21324:1 21389:1 21429:3 21464:1 21469:1 21472:1 21526:1 21529:1 21546:1 21550:1 21552:1 21561:1 21579:1 21588:1 21605:1 21613:1 21647:1 21659:1 21673:1 21702:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:1 21863:2 21901:1 21952:1 21965:1 21971:1 21976:1 21985:1 22005:1 22045:1 22058:1 22061:1 22122:1 22177:1 22225:1 22254:1 22265:1 22273:1 22283:1 22289:1 22298:1 22325:1 22338:1 22346:1 22378:1 22391:1 22413:1 22415:4 22447:1 22507:1 22513:1 22519:1 22525:4 22532:1 22543:2 22559:1 22561:1 22562:1 22575:1 22625:1 22632:1 22665:1 22672:1 22679:1 22682:1 22698:1 22716:2 22801:1 22818:1 22838:1 22886:2 22897:1 22933:1 22940:1 22943:1 22959:1 22975:2 23034:1 23052:1 23053:2 23056:1 23072:2 23096:1 23111:2 23124:1 23142:2 23174:1 23185:1 23226:1 23231:1 23241:1 23251:1 23260:1 23263:1 23309:1 23315:8 23323:1 23329:1 23361:1 23364:1 23384:1 23385:1 23497:1 23501:1 23509:1 23530:1 23535:1 23594:1 23602:1 23614:1 23625:1 23634:1 23649:1 23655:1 23664:1 23785:1 23830:1 23887:1 23888:1 23903:2 23906:1 23928:1 23944:1 23955:1 23992:1 24079:1 24125:1 24144:1 24169:1 24172:1 24173:1 24180:1 24187:1 24218:1 24232:1 24278:1 24282:1 24291:1 24309:1 24325:1 24336:1 24343:3 24425:1 24443:1 24488:1 24526:1 24561:1 24566:1 24592:1 24594:1 24601:1 24620:2 24623:1 24652:1 24661:1 24728:1 24731:1 24748:1 24761:1 24762:1 24788:1 24822:1 24839:1 24863:1 24902:1 24912:2 24923:2 24927:1 24955:1 24956:1 24957:1 24995:1 25028:1 25032:1 25085:1 25099:1 25127:1 25136:1 25150:1 25206:1 25210:1 25221:1 25222:1 25224:1 25226:2 25228:3 25229:1 25236:1 25238:1 25249:1 25255:2 25297:1 25300:2 25301:1 25315:1 25327:1 25343:1 25369:1 25370:1 25381:1 25393:1 25410:1 25460:1 25478:1 25530:2 25545:2 25565:1 25601:1 25647:2 25648:1 25692:1 25752:1 25767:1 25781:1 25785:2 25794:1 25861:1 25879:1 25900:1 25903:2 25922:1 25927:1 25929:1 25931:2 26023:1 26060:3 26083:2 26112:1 26122:1 26138:1 26146:2 26168:1 26180:1 26236:1 26240:2 26248:1 26252:1 26261:1 26263:3 26280:1 26285:2 26288:4 26294:2 26307:1 26311:1 26317:1 26320:1 26328:1 26363:2 26420:2 26482:1 26511:1 26579:1 26614:2 26646:1 26648:1 26656:1 26662:1 26698:1 26760:1 26776:1 26847:1 26872:1 26882:1 26883:1 26907:1 26939:1 26954:1 26983:1 26989:1 26997:1 27020:1 27047:4 27070:1 27094:1 27095:1 27118:1 27119:1 27127:1 27138:1 27178:4 27179:1 27212:1 27234:1 27278:1 27334:2 27341:1 27375:1 27378:1 27381:1 27387:1 27415:1 27438:1 27454:1 27482:1 27510:1 27535:1 27555:1 27583:4 27608:2 27665:1 27670:1 27708:1 27732:1 27781:1 27822:1 27826:1 27845:1 27940:2 27965:2 27974:1 27990:1 28011:1 28033:1 28044:2 28071:1 28087:1 28109:3 28188:1 28218:2 28226:2 28251:1 28261:1 28297:1 28300:1 28318:1 28361:1 28372:1 28384:1 28409:1 28414:1 28458:1 28529:1 28554:2 28589:1 28616:3 28860:3 28872:1 28893:1 28938:1 28980:1 28992:6 28993:1 28996:4 29011:1 29034:1 29048:1 29092:1 29115:1 29131:1 29146:1 29176:5 29184:1 29190:1 29216:1 29228:1 29245:1 29268:1 29278:1 29293:1 29295:1 29300:1 29343:1 29347:1 29362:1 29364:1 29388:1 29391:1 29405:1 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29551:1 29566:1 29570:1 29587:1 29652:1 29682:1 29717:1 29723:1 29740:1 29749:1 29767:1 29773:1 29780:1 29782:1 29788:1 29801:1 29832:1 29882:2 29900:1 29914:1 29927:1 29949:1 29969:1 30001:1 30012:1 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30187:1 30194:4 30208:1 30210:1 30231:3 30243:2 30250:1 30320:3 30322:2 30326:1 30331:1 30332:1 30344:1 30367:2 30371:2 9 11:1 14:1 50:1 79:1 108:1 109:1 135:1 152:1 176:1 187:1 189:1 201:1 206:2 236:2 257:1 283:1 303:1 315:1 325:1 327:10 338:1 356:1 357:2 366:1 378:1 441:1 460:3 478:1 480:1 591:2 592:1 600:1 625:1 635:2 637:1 638:1 691:1 693:1 736:1 804:1 824:1 833:1 843:1 856:1 857:1 883:2 885:1 899:1 900:1 914:4 933:1 938:1 941:3 946:1 952:1 953:1 959:1 964:3 986:1 1005:1 1022:1 1032:2 1045:1 1052:1 1054:1 1076:1 1084:1 1102:1 1133:1 1142:1 1156:2 1201:2 1213:1 1258:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1464:2 1471:3 1474:1 1491:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1574:1 1614:1 1621:1 1641:1 1650:1 1677:1 1680:1 1701:1 1706:3 1712:1 1775:1 1818:1 1844:1 1852:1 1878:1 1958:7 1965:1 1986:1 1991:1 1996:1 2018:2 2019:2 2051:1 2053:1 2057:1 2063:1 2128:1 2130:1 2136:1 2143:1 2151:1 2211:1 2213:1 2234:1 2238:1 2239:2 2255:1 2274:1 2276:1 2280:1 2281:1 2284:1 2285:2 2288:2 2292:1 2297:1 2298:1 2301:1 2316:4 2319:5 2348:1 2380:1 2386:1 2393:1 2407:1 2411:1 2418:1 2445:1 2448:1 2466:1 2482:2 2493:3 2532:1 2561:4 2595:2 2603:1 2608:1 2615:2 2620:1 2661:2 2699:1 2701:2 2706:1 2717:1 2728:1 2763:1 2766:1 2784:3 2815:1 2816:1 2817:1 2821:1 2831:2 2841:1 2848:1 2933:1 2941:5 2975:1 2980:1 3002:5 3032:1 3036:3 3038:1 3061:1 3092:1 3176:1 3177:1 3240:1 3259:1 3269:1 3325:1 3339:1 3343:1 3348:1 3384:1 3386:1 3434:1 3481:1 3487:1 3544:1 3557:1 3561:1 3563:1 3568:1 3571:1 3578:1 3581:1 3615:1 3619:1 3635:2 3665:1 3670:1 3681:1 3699:3 3708:1 3715:1 3741:3 3787:1 3792:1 3796:1 3803:2 3848:1 3853:1 3855:2 3857:1 3858:1 3859:1 3888:1 3895:1 3897:1 3904:3 3905:1 3906:1 3924:1 3958:1 3969:1 3986:1 3993:1 4022:1 4058:1 4084:1 4089:1 4093:1 4099:1 4100:1 4108:3 4109:2 4114:1 4153:1 4169:2 4187:1 4204:1 4239:1 4241:1 4250:1 4307:2 4315:1 4316:1 4325:1 4364:1 4381:1 4388:1 4474:2 4546:1 4555:1 4572:1 4601:1 4697:1 4724:1 4728:2 4741:2 4754:1 4804:1 4807:3 4843:1 4854:1 4870:1 4875:1 4903:2 4918:1 4921:1 4954:1 5019:6 5021:2 5041:2 5078:1 5083:4 5093:1 5135:3 5151:1 5152:2 5153:1 5154:1 5159:2 5173:1 5178:1 5185:1 5187:1 5188:2 5211:1 5242:1 5277:1 5317:1 5328:1 5336:1 5367:1 5396:2 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5518:3 5520:1 5535:2 5551:1 5553:1 5602:1 5691:1 5692:1 5698:1 5705:1 5708:1 5710:2 5712:1 5722:1 5758:2 5763:1 5792:2 5815:1 5816:1 5849:2 5873:1 5888:1 5897:1 5914:2 5917:1 5945:1 6021:1 6028:1 6097:1 6152:1 6183:1 6205:5 6231:2 6238:1 6257:1 6301:1 6356:1 6380:1 6384:1 6390:1 6400:1 6404:1 6426:1 6437:1 6485:1 6501:2 6505:1 6515:1 6518:1 6519:1 6520:2 6525:1 6526:7 6527:2 6539:1 6591:1 6646:2 6750:1 6763:1 6798:1 6803:1 6814:1 6822:1 6844:1 6898:1 6919:1 6940:3 6960:1 6968:1 6973:1 7002:1 7029:1 7086:1 7087:2 7091:1 7100:1 7113:1 7131:1 7212:1 7253:3 7255:1 7281:1 7300:1 7302:1 7306:1 7310:1 7336:1 7337:1 7411:1 7416:1 7435:1 7452:1 7479:1 7491:1 7505:1 7527:1 7554:1 7555:1 7579:1 7583:1 7596:1 7603:1 7644:1 7672:1 7725:1 7726:2 7756:1 7757:6 7771:1 7784:1 7785:2 7812:2 7831:18 7836:1 7854:1 7855:5 7860:1 7883:1 7908:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:1 8035:1 8093:1 8112:2 8138:1 8223:1 8233:1 8250:1 8265:2 8266:2 8285:1 8317:1 8324:1 8333:1 8343:1 8348:1 8357:1 8358:3 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:1 8541:1 8589:1 8591:1 8614:2 8615:1 8624:1 8629:1 8638:1 8646:1 8656:1 8664:4 8669:1 8671:1 8728:1 8743:2 8744:1 8746:1 8748:1 8749:1 8752:1 8753:1 8784:2 8792:1 8816:1 8822:1 8826:2 8837:1 8853:1 8892:1 8930:1 8939:1 8968:1 8974:1 9033:2 9073:3 9074:1 9078:1 9098:1 9104:1 9105:1 9124:1 9164:1 9188:2 9199:1 9222:1 9275:1 9276:1 9292:1 9295:1 9307:1 9316:1 9334:1 9355:1 9366:2 9394:1 9469:1 9474:1 9486:10 9510:1 9523:1 9572:1 9587:1 9608:1 9611:1 9624:1 9631:1 9633:3 9634:1 9659:1 9676:1 9684:1 9728:1 9749:1 9758:1 9793:1 9794:1 9810:1 9831:1 9844:1 9845:1 9869:1 9877:1 9886:1 9919:1 9949:1 9962:2 9965:1 9966:2 9991:1 10035:2 10093:1 10108:2 10113:1 10135:1 10145:1 10158:1 10171:1 10179:1 10202:1 10210:1 10211:1 10225:1 10229:1 10240:4 10260:1 10268:1 10309:1 10336:1 10345:1 10368:1 10401:1 10402:1 10418:1 10481:1 10525:1 10570:1 10588:1 10609:1 10625:1 10638:2 10655:1 10712:1 10767:1 10790:2 10800:1 10811:1 10813:1 10823:1 10841:1 10844:1 10846:1 10865:1 10867:1 10876:1 10886:1 10888:1 10890:2 10916:1 10967:2 10988:1 10990:4 11056:1 11079:1 11112:1 11117:1 11180:1 11211:1 11224:1 11254:1 11260:1 11262:1 11291:1 11298:1 11302:1 11312:1 11347:3 11372:1 11377:1 11378:1 11433:1 11434:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11544:1 11554:1 11579:1 11583:2 11590:1 11627:1 11659:1 11660:1 11674:1 11675:1 11677:1 11686:1 11706:1 11752:1 11753:1 11819:1 11830:1 11852:1 11860:1 11861:1 11866:1 11901:1 11908:1 11930:1 11933:2 11962:2 12012:2 12020:1 12026:1 12029:1 12042:1 12059:1 12074:1 12097:1 12108:1 12111:1 12139:1 12156:1 12200:1 12223:1 12265:1 12291:1 12304:2 12315:1 12362:1 12382:1 12411:2 12433:1 12439:1 12543:2 12544:3 12545:1 12571:1 12602:1 12603:2 12615:1 12686:1 12702:1 12726:1 12732:3 12806:1 12807:1 12810:2 12935:1 12953:1 12991:1 12996:1 13009:1 13091:1 13100:1 13113:1 13131:4 13142:1 13151:1 13153:2 13161:1 13180:1 13189:1 13222:1 13246:1 13250:1 13255:1 13256:1 13283:1 13291:1 13315:1 13334:1 13339:1 13341:1 13393:1 13417:1 13550:1 13556:1 13584:1 13588:2 13595:1 13609:1 13611:4 13647:1 13666:1 13726:1 13732:1 13734:1 13747:2 13756:2 13757:1 13774:1 13802:1 13807:1 13830:3 13833:1 13840:1 13847:1 13862:1 13880:1 13887:3 13913:1 13937:1 13938:1 13973:1 14076:1 14116:1 14120:1 14123:2 14124:1 14127:1 14138:1 14146:1 14149:1 14170:1 14191:2 14201:1 14204:1 14233:1 14243:2 14277:1 14290:1 14304:2 14339:1 14343:1 14345:2 14359:1 14399:1 14426:1 14445:1 14486:1 14489:1 14508:1 14525:1 14530:1 14577:3 14591:1 14602:2 14611:1 14624:1 14643:1 14667:1 14668:1 14705:1 14730:1 14757:1 14794:1 14796:1 14797:2 14800:1 14803:3 14808:1 14812:1 14814:1 14825:1 14861:1 14913:1 14927:2 14961:1 14978:1 15013:1 15060:1 15084:1 15112:1 15134:1 15183:1 15328:3 15334:1 15349:1 15408:2 15410:1 15428:1 15449:1 15450:1 15470:2 15483:1 15497:1 15532:1 15549:1 15638:1 15651:1 15670:1 15692:1 15693:1 15698:1 15748:1 15761:1 15820:1 15849:1 15863:3 15924:2 15941:1 15950:1 15951:1 15961:1 15969:1 15982:1 15987:1 16018:1 16028:2 16081:1 16114:1 16128:1 16141:1 16160:2 16165:1 16172:1 16173:1 16174:1 16189:1 16233:1 16243:1 16306:3 16345:1 16403:1 16404:1 16452:1 16459:3 16468:1 16472:1 16484:1 16488:1 16552:1 16553:1 16599:1 16612:3 16613:1 16618:1 16624:1 16629:2 16640:1 16670:1 16690:1 16693:1 16717:1 16734:1 16741:1 16745:1 16756:1 16760:1 16763:1 16791:1 16829:1 16830:2 16885:1 16922:1 16960:1 16966:1 17042:1 17052:1 17062:1 17066:1 17085:1 17101:1 17158:1 17167:1 17212:1 17234:1 17237:2 17255:1 17272:1 17279:1 17287:1 17288:1 17310:1 17322:1 17337:1 17347:1 17411:1 17413:2 17419:1 17474:1 17483:1 17496:1 17516:1 17535:1 17584:1 17632:1 17639:3 17668:3 17711:1 17712:1 17735:1 17737:1 17754:1 17762:1 17778:2 17787:1 17844:1 17850:2 17857:1 17946:1 17962:1 17968:1 17980:2 18000:1 18004:1 18025:1 18041:1 18043:2 18050:2 18070:3 18072:1 18076:1 18126:4 18127:2 18154:1 18185:1 18189:1 18196:4 18210:1 18240:1 18252:2 18256:1 18276:1 18283:2 18286:1 18291:1 18304:1 18327:1 18366:1 18395:1 18403:1 18424:2 18436:9 18447:1 18451:1 18455:1 18459:1 18482:1 18485:1 18486:1 18506:1 18528:1 18532:1 18537:1 18546:1 18550:1 18569:1 18586:1 18591:1 18630:1 18643:1 18680:1 18695:1 18698:1 18712:1 18720:1 18723:2 18736:2 18738:1 18750:1 18761:1 18780:1 18805:1 18845:1 18867:1 18905:1 18918:1 18962:1 18968:1 18969:1 19069:4 19095:1 19172:1 19218:1 19225:1 19251:2 19254:1 19259:1 19287:2 19291:1 19300:1 19304:750 19308:1 19324:1 19367:1 19368:1 19402:1 19431:1 19437:1 19444:1 19486:1 19535:2 19542:1 19548:1 19551:1 19552:1 19629:1 19633:1 19666:10 19692:2 19716:1 19747:1 19762:1 19774:1 19804:1 19820:1 19868:1 19898:1 19920:1 19953:1 19978:2 19981:1 19982:1 20021:1 20027:1 20036:1 20038:1 20043:2 20053:1 20058:1 20074:1 20078:1 20092:1 20106:1 20131:5 20172:2 20173:1 20188:1 20242:1 20296:1 20300:1 20313:1 20329:1 20331:1 20336:2 20339:1 20372:1 20374:1 20375:1 20399:1 20429:1 20501:1 20516:1 20559:1 20570:1 20577:1 20590:1 20593:1 20597:1 20598:1 20616:1 20620:1 20629:1 20641:1 20664:1 20666:1 20687:1 20692:1 20708:1 20760:1 20783:1 20791:2 20805:1 20817:1 20848:1 20850:1 20875:1 20886:1 20918:1 20928:1 20932:1 20962:1 20964:1 21002:2 21032:1 21057:3 21058:2 21062:1 21068:1 21074:1 21080:1 21129:1 21136:1 21255:1 21259:2 21296:1 21299:2 21314:1 21324:1 21389:1 21429:3 21464:1 21469:1 21472:1 21526:1 21529:1 21546:2 21550:1 21552:1 21561:1 21579:1 21588:1 21605:1 21613:1 21647:1 21659:1 21673:1 21702:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:1 21863:2 21901:1 21952:1 21965:1 21971:1 21976:1 21985:1 22005:1 22045:1 22058:1 22061:1 22122:1 22177:1 22225:1 22254:1 22265:1 22272:1 22273:1 22283:1 22289:1 22298:1 22325:1 22338:1 22346:2 22370:1 22378:1 22391:1 22413:1 22415:4 22447:1 22507:1 22513:1 22519:1 22525:6 22532:1 22543:2 22559:1 22561:1 22562:1 22575:1 22625:1 22632:1 22661:1 22665:1 22672:1 22676:1 22679:1 22682:1 22698:1 22716:2 22735:1 22801:1 22818:1 22834:1 22838:1 22870:1 22886:2 22892:1 22897:1 22933:1 22940:1 22943:1 22959:1 22975:2 23034:1 23052:2 23053:2 23056:1 23072:2 23096:1 23111:2 23124:1 23142:2 23144:1 23174:1 23185:1 23226:1 23231:1 23233:1 23241:1 23251:1 23260:1 23263:1 23292:1 23309:1 23315:9 23323:1 23327:1 23329:1 23361:1 23364:1 23384:1 23385:1 23497:1 23501:1 23509:1 23530:1 23535:1 23594:1 23602:1 23614:1 23625:1 23634:1 23649:2 23655:1 23663:1 23664:1 23711:1 23724:1 23785:1 23830:1 23837:1 23887:1 23888:1 23903:2 23906:1 23928:1 23944:1 23955:1 23992:2 24079:1 24125:1 24129:1 24144:1 24169:1 24172:1 24173:1 24180:1 24181:1 24187:1 24214:1 24218:1 24232:1 24270:1 24278:1 24282:1 24291:1 24309:1 24325:1 24336:1 24343:3 24425:1 24443:1 24488:1 24513:1 24526:1 24561:1 24566:1 24592:1 24594:1 24601:1 24620:2 24623:1 24652:1 24661:1 24728:1 24731:1 24748:1 24761:1 24762:1 24788:1 24822:1 24839:1 24863:1 24902:1 24912:2 24923:2 24927:1 24955:1 24956:1 24957:1 24973:1 24995:1 25028:1 25032:1 25085:1 25099:2 25127:1 25136:1 25150:1 25184:1 25206:1 25210:1 25221:1 25222:1 25224:1 25226:2 25228:3 25229:1 25236:1 25238:1 25249:2 25255:2 25297:1 25300:2 25301:1 25315:1 25327:1 25337:2 25343:3 25369:1 25370:1 25381:1 25393:1 25410:1 25460:1 25478:1 25530:2 25545:2 25565:1 25601:1 25647:2 25648:1 25692:1 25752:1 25767:1 25781:1 25785:2 25794:1 25828:2 25861:1 25879:1 25887:1 25900:1 25903:2 25922:1 25927:1 25929:1 25931:2 26023:1 26060:3 26083:2 26112:1 26122:1 26138:1 26146:2 26168:1 26180:1 26187:1 26236:1 26240:2 26248:1 26252:1 26259:1 26261:1 26263:3 26280:1 26285:2 26288:4 26293:1 26294:2 26307:1 26311:1 26317:1 26320:1 26328:1 26363:2 26379:2 26410:1 26420:2 26482:1 26511:1 26560:1 26579:1 26593:1 26614:2 26646:1 26648:1 26656:1 26662:1 26698:1 26760:1 26776:1 26847:1 26872:1 26882:1 26883:1 26907:1 26939:1 26954:1 26983:1 26989:1 26997:1 26998:1 27020:2 27047:4 27070:1 27094:1 27095:1 27118:1 27119:1 27127:1 27138:1 27157:1 27178:4 27179:1 27212:1 27234:1 27260:1 27278:1 27334:2 27341:1 27375:1 27378:1 27381:1 27387:1 27415:1 27438:1 27454:1 27459:1 27482:1 27510:1 27535:1 27555:1 27583:4 27608:2 27665:1 27670:1 27708:1 27732:1 27781:1 27822:1 27826:1 27845:1 27875:1 27940:2 27965:3 27974:1 27990:1 28011:1 28033:1 28044:2 28071:1 28087:1 28109:3 28188:1 28218:2 28226:2 28251:1 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28347:1 28361:1 28372:1 28384:1 28409:1 28414:1 28458:1 28529:1 28554:2 28589:1 28616:3 28686:1 28858:1 28860:3 28872:1 28893:1 28928:1 28938:1 28980:1 28983:1 28992:7 28993:2 28996:4 29011:1 29034:1 29048:1 29092:1 29100:2 29115:1 29131:1 29146:1 29176:6 29184:1 29190:1 29216:1 29221:1 29228:1 29236:1 29245:1 29268:1 29278:1 29293:1 29295:1 29300:1 29343:1 29347:1 29362:1 29364:1 29388:1 29391:1 29405:1 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29529:1 29532:1 29551:1 29566:1 29570:1 29579:1 29587:1 29652:1 29659:1 29682:1 29706:1 29717:1 29722:1 29723:1 29740:1 29749:1 29758:1 29767:1 29773:1 29780:1 29782:1 29788:1 29801:1 29832:1 29882:2 29900:1 29914:2 29927:1 29949:1 29969:1 30001:1 30012:1 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30187:1 30194:4 30208:1 30210:1 30231:3 30243:2 30250:1 30320:3 30322:2 30326:1 30331:2 30332:1 30344:1 30367:2 30371:2 9 11:1 14:1 50:1 79:1 108:1 109:1 135:1 152:1 176:1 187:1 189:1 201:1 206:2 236:3 257:1 283:1 303:1 315:1 325:1 327:11 338:1 356:1 357:2 366:1 378:1 441:1 460:3 478:1 480:1 550:1 591:2 592:1 600:1 625:1 635:2 637:1 638:1 691:1 693:1 724:1 736:1 802:1 804:1 824:1 833:1 843:1 856:1 857:1 883:2 885:1 899:1 900:1 914:4 933:1 938:2 941:4 946:1 952:1 953:1 959:1 964:3 986:1 1005:1 1022:1 1032:3 1045:1 1052:1 1054:1 1076:1 1084:1 1102:1 1133:1 1142:1 1156:2 1194:1 1201:2 1213:1 1258:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1441:1 1464:2 1471:4 1474:1 1491:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1573:1 1574:1 1614:1 1621:1 1639:1 1641:1 1650:1 1677:1 1680:1 1701:1 1706:3 1712:1 1775:1 1818:1 1830:1 1844:1 1852:1 1863:1 1878:1 1958:7 1965:1 1986:1 1991:1 1996:1 2018:2 2019:2 2051:1 2053:1 2057:1 2063:1 2088:1 2128:1 2130:1 2136:1 2143:1 2151:1 2152:1 2186:1 2211:1 2213:1 2218:1 2234:1 2238:1 2239:2 2255:1 2274:1 2276:1 2280:1 2281:1 2284:1 2285:2 2288:2 2291:1 2292:1 2293:1 2297:1 2298:1 2301:1 2314:1 2316:4 2319:5 2332:1 2348:1 2369:1 2380:1 2386:1 2393:1 2407:1 2411:1 2418:1 2430:1 2445:1 2448:1 2466:1 2482:2 2493:3 2515:1 2532:1 2561:5 2595:2 2603:1 2608:1 2615:3 2618:1 2620:1 2661:2 2699:1 2701:2 2706:1 2717:1 2728:1 2740:1 2763:1 2766:1 2784:3 2815:1 2816:1 2817:1 2821:1 2831:2 2841:1 2848:1 2933:1 2941:7 2975:1 2980:1 3002:6 3032:1 3036:3 3038:1 3061:1 3092:1 3176:1 3177:1 3240:1 3259:1 3269:1 3312:2 3325:1 3339:1 3343:1 3348:1 3384:1 3386:1 3434:1 3481:1 3487:1 3544:1 3557:1 3561:1 3563:1 3568:1 3571:1 3578:1 3581:1 3615:1 3619:1 3635:2 3640:1 3665:1 3670:1 3681:1 3699:3 3708:1 3715:1 3741:3 3787:1 3792:1 3796:1 3803:2 3848:1 3853:1 3855:3 3857:1 3858:1 3859:3 3888:1 3895:1 3897:1 3904:3 3905:1 3906:1 3924:1 3956:1 3958:1 3969:1 3986:1 3993:1 4016:1 4019:2 4022:1 4058:1 4084:1 4089:1 4093:1 4099:2 4100:1 4108:3 4109:2 4114:1 4153:1 4169:2 4187:1 4204:1 4237:1 4239:1 4241:1 4250:1 4307:2 4315:1 4316:1 4325:1 4364:1 4381:1 4388:1 4474:4 4546:1 4555:1 4572:1 4601:1 4675:1 4697:1 4724:1 4728:2 4741:3 4754:1 4804:1 4807:4 4843:1 4854:1 4870:1 4875:1 4903:2 4918:1 4921:1 4954:1 5019:6 5021:2 5041:2 5078:1 5083:5 5093:1 5115:1 5135:3 5151:1 5152:2 5153:1 5154:1 5159:2 5173:1 5178:1 5185:1 5187:1 5188:2 5211:1 5242:1 5277:1 5317:1 5321:1 5328:1 5336:1 5367:1 5396:2 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5518:3 5520:1 5535:2 5551:1 5553:1 5602:1 5663:1 5680:1 5691:1 5692:1 5698:1 5705:1 5708:1 5710:2 5712:1 5722:1 5758:3 5763:1 5772:1 5792:2 5815:1 5816:1 5849:3 5873:1 5888:1 5897:2 5914:2 5917:1 5945:1 5977:1 6011:1 6021:1 6028:1 6097:1 6152:1 6183:1 6205:6 6231:2 6238:1 6257:1 6301:1 6356:1 6380:1 6384:1 6385:1 6390:1 6400:1 6404:1 6426:1 6437:1 6485:1 6501:3 6505:1 6515:1 6518:1 6519:1 6520:2 6525:1 6526:7 6527:2 6539:1 6591:1 6646:2 6750:1 6763:1 6798:1 6803:1 6814:1 6822:1 6844:1 6851:1 6898:1 6919:2 6940:4 6960:1 6968:1 6973:1 7002:1 7029:1 7086:1 7087:2 7091:1 7100:1 7113:1 7114:2 7131:1 7177:1 7212:1 7253:5 7255:1 7281:1 7300:1 7302:1 7306:1 7310:1 7336:1 7337:1 7411:1 7416:1 7435:1 7452:1 7479:1 7491:1 7505:1 7516:1 7527:1 7554:1 7555:1 7579:1 7583:1 7596:1 7603:1 7644:1 7672:1 7725:1 7726:2 7756:1 7757:8 7771:1 7784:1 7785:2 7812:2 7831:21 7836:1 7854:1 7855:6 7860:1 7883:1 7908:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:1 8035:1 8093:1 8108:1 8112:2 8138:1 8172:1 8223:1 8226:1 8233:1 8250:1 8265:2 8266:3 8285:1 8317:1 8324:1 8333:1 8343:1 8348:1 8357:1 8358:3 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:1 8541:1 8589:1 8591:1 8614:3 8615:1 8624:2 8628:1 8629:1 8638:1 8646:1 8656:1 8664:5 8669:1 8671:1 8728:1 8743:2 8744:1 8746:1 8748:1 8749:1 8752:1 8753:1 8757:1 8784:2 8792:1 8816:1 8822:1 8826:2 8837:1 8853:1 8892:1 8930:1 8939:1 8958:1 8968:1 8974:1 9033:2 9073:3 9074:1 9078:1 9090:2 9098:1 9104:1 9105:1 9124:1 9164:1 9188:2 9199:1 9222:1 9241:1 9275:1 9276:1 9292:1 9295:1 9307:1 9316:1 9334:1 9355:1 9366:2 9394:1 9463:1 9469:1 9474:1 9486:11 9510:1 9523:1 9572:1 9587:1 9608:1 9611:1 9624:1 9631:2 9633:4 9634:1 9659:1 9676:1 9684:1 9728:1 9749:1 9758:1 9793:1 9794:1 9810:1 9831:1 9844:1 9845:1 9851:1 9869:1 9877:1 9886:1 9919:1 9949:3 9962:2 9965:1 9966:3 9991:1 10035:2 10093:1 10108:2 10113:1 10135:1 10143:1 10145:1 10158:1 10171:1 10179:1 10196:1 10202:1 10210:1 10211:1 10225:1 10229:1 10240:4 10260:1 10268:1 10279:1 10309:1 10336:1 10345:1 10368:1 10401:1 10402:1 10418:1 10481:1 10525:1 10570:1 10588:1 10609:1 10625:1 10638:2 10655:1 10712:1 10767:1 10769:1 10790:2 10800:1 10811:1 10813:1 10823:1 10841:1 10844:1 10846:1 10865:1 10867:1 10876:1 10886:1 10888:1 10890:2 10916:1 10950:1 10953:1 10967:3 10988:1 10990:5 11055:1 11056:1 11067:1 11079:1 11112:1 11117:1 11180:1 11211:1 11224:1 11254:1 11260:1 11262:1 11291:1 11298:1 11299:1 11302:1 11312:1 11347:4 11372:1 11377:1 11378:1 11433:1 11434:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11516:1 11544:1 11554:1 11579:1 11583:2 11590:1 11613:1 11627:1 11659:1 11660:1 11674:1 11675:1 11677:1 11686:1 11706:1 11752:1 11753:1 11819:1 11820:1 11830:1 11852:1 11860:1 11861:1 11866:1 11901:1 11908:1 11914:1 11930:2 11933:2 11962:2 12012:2 12020:1 12026:1 12029:1 12042:1 12059:1 12074:1 12097:1 12108:1 12111:1 12132:1 12139:1 12156:1 12200:1 12223:1 12265:1 12291:1 12304:3 12306:1 12315:1 12362:2 12382:1 12411:3 12433:1 12439:1 12543:2 12544:3 12545:1 12571:1 12602:1 12603:2 12615:1 12686:1 12702:1 12726:1 12732:3 12753:1 12806:1 12807:1 12810:2 12847:1 12872:1 12935:1 12953:1 12991:1 12996:1 13009:1 13091:1 13100:1 13113:1 13131:5 13142:1 13151:2 13153:2 13161:1 13180:1 13189:1 13199:1 13222:1 13246:1 13250:1 13255:1 13256:1 13283:1 13291:2 13315:1 13334:1 13339:1 13341:1 13393:1 13417:1 13550:1 13556:1 13584:1 13588:2 13595:1 13609:1 13611:4 13647:1 13666:1 13726:1 13732:1 13734:1 13747:2 13756:2 13757:1 13774:1 13802:1 13807:1 13830:3 13833:1 13840:1 13847:1 13854:1 13862:1 13880:1 13887:3 13913:1 13937:1 13938:1 13973:1 14076:1 14116:1 14120:1 14123:2 14124:1 14127:1 14138:1 14146:1 14149:1 14170:1 14191:2 14201:1 14204:1 14233:1 14243:2 14277:1 14290:1 14304:2 14339:1 14343:1 14345:2 14359:1 14399:1 14401:1 14426:1 14445:1 14486:1 14489:1 14508:1 14525:1 14530:1 14577:3 14591:1 14602:3 14611:1 14624:1 14643:1 14667:1 14668:1 14705:1 14730:1 14757:1 14794:1 14796:1 14797:2 14800:1 14803:4 14808:1 14812:1 14814:1 14825:1 14833:1 14861:1 14913:1 14927:3 14961:1 14971:1 14978:1 15013:1 15037:1 15060:1 15084:1 15112:1 15134:2 15157:1 15183:1 15328:3 15334:1 15349:1 15408:2 15410:1 15428:1 15449:1 15450:1 15470:2 15483:1 15494:1 15497:1 15532:1 15549:1 15638:1 15651:1 15670:1 15692:1 15693:1 15698:1 15748:1 15761:1 15820:2 15849:1 15863:3 15924:2 15941:1 15950:2 15951:1 15961:1 15969:1 15982:1 15987:1 16018:1 16028:2 16081:1 16114:1 16128:2 16141:1 16160:2 16165:1 16172:1 16173:1 16174:1 16189:1 16233:1 16243:1 16275:1 16306:3 16325:1 16345:1 16403:1 16404:1 16452:1 16459:3 16468:1 16472:1 16484:1 16488:1 16552:1 16553:1 16599:1 16612:5 16613:1 16618:1 16624:1 16629:2 16640:1 16670:1 16690:1 16693:1 16717:1 16734:1 16741:1 16745:1 16756:1 16760:1 16763:1 16791:1 16829:1 16830:2 16885:1 16922:1 16960:1 16966:1 17042:1 17052:1 17062:1 17066:1 17085:1 17101:1 17158:1 17167:1 17212:1 17234:1 17237:2 17255:1 17272:1 17279:1 17287:1 17288:2 17310:1 17322:1 17337:1 17347:1 17411:1 17413:2 17419:1 17474:1 17483:1 17496:1 17516:1 17535:2 17565:1 17569:1 17584:2 17625:1 17632:1 17639:3 17668:3 17684:1 17711:1 17712:1 17735:1 17737:1 17754:1 17762:1 17778:2 17787:1 17844:1 17850:2 17857:1 17946:1 17962:1 17968:1 17980:2 18000:1 18004:1 18025:1 18041:1 18043:2 18050:2 18070:3 18072:1 18076:1 18126:4 18127:2 18154:1 18185:1 18189:1 18196:5 18210:1 18240:1 18252:2 18256:1 18276:1 18283:2 18286:1 18291:1 18304:1 18327:1 18366:1 18395:1 18403:2 18424:2 18430:1 18436:10 18447:1 18451:1 18455:1 18459:1 18482:1 18485:1 18486:1 18506:1 18528:1 18532:1 18537:1 18546:1 18550:1 18569:1 18586:1 18591:2 18604:1 18630:1 18643:1 18680:1 18695:1 18698:1 18712:1 18720:1 18723:2 18736:2 18738:1 18750:1 18761:1 18780:1 18805:1 18845:1 18867:1 18905:1 18918:1 18962:1 18968:1 18969:1 19069:4 19095:1 19172:1 19218:1 19225:1 19229:1 19251:2 19254:2 19259:1 19287:2 19291:1 19300:1 19304:836 19308:1 19324:1 19367:1 19368:1 19402:1 19431:1 19437:1 19444:1 19486:1 19535:3 19542:1 19548:2 19551:1 19552:1 19629:1 19633:1 19642:1 19666:11 19692:2 19716:1 19747:1 19762:1 19774:2 19804:1 19820:1 19822:1 19868:1 19898:2 19920:1 19953:1 19978:2 19981:1 19982:1 20021:1 20027:1 20036:1 20038:1 20043:2 20053:1 20058:1 20074:2 20078:1 20092:1 20106:1 20131:5 20147:1 20172:2 20173:1 20188:1 20242:1 20296:1 20300:1 20313:1 20329:2 20331:1 20336:3 20339:1 20372:1 20374:1 20375:1 20399:1 20429:1 20501:1 20516:1 20559:2 20570:1 20577:1 20590:1 20593:1 20597:1 20598:1 20616:1 20620:1 20629:1 20641:1 20664:1 20666:1 20687:1 20692:2 20708:1 20760:1 20783:1 20791:2 20805:1 20817:1 20848:1 20850:1 20875:1 20886:1 20918:1 20928:1 20932:1 20962:1 20964:1 21002:3 21032:1 21057:3 21058:2 21062:1 21068:1 21074:1 21080:1 21129:1 21136:1 21255:1 21259:2 21296:1 21299:3 21314:1 21319:1 21324:1 21389:2 21429:4 21464:1 21469:1 21472:1 21511:1 21526:1 21529:1 21546:2 21550:1 21552:1 21561:1 21579:1 21588:2 21605:1 21613:1 21647:1 21659:1 21673:1 21702:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:1 21863:2 21901:1 21952:1 21965:1 21971:1 21976:1 21985:1 22005:1 22045:1 22058:1 22061:1 22122:1 22177:1 22225:1 22254:1 22265:1 22272:1 22273:1 22282:1 22283:1 22289:1 22298:1 22325:1 22338:1 22346:2 22361:1 22370:1 22378:1 22391:1 22413:1 22415:4 22447:1 22477:1 22507:1 22513:1 22519:1 22525:6 22532:1 22543:2 22559:1 22561:1 22562:1 22575:1 22625:1 22632:1 22661:1 22665:1 22672:1 22676:1 22679:1 22682:1 22698:1 22716:2 22735:1 22801:1 22818:1 22834:1 22838:1 22870:1 22886:2 22892:1 22897:1 22933:1 22940:1 22943:1 22959:1 22975:2 23034:1 23052:3 23053:2 23056:2 23072:2 23096:1 23111:2 23124:1 23142:2 23144:1 23145:1 23174:1 23185:1 23226:1 23231:1 23233:1 23241:1 23251:1 23260:1 23263:1 23292:1 23309:1 23315:10 23323:1 23327:1 23329:1 23361:1 23364:1 23384:1 23385:1 23497:1 23501:1 23509:1 23530:2 23535:1 23594:1 23602:1 23614:1 23625:1 23634:1 23649:2 23655:1 23663:1 23664:1 23711:1 23724:1 23785:1 23830:1 23837:1 23844:1 23860:1 23887:1 23888:1 23903:2 23906:1 23926:1 23928:1 23944:2 23955:1 23992:2 24079:1 24125:1 24129:1 24144:1 24169:1 24172:1 24173:1 24180:1 24181:1 24187:1 24214:1 24218:1 24228:1 24232:1 24270:1 24278:1 24282:1 24291:1 24309:1 24325:1 24336:1 24343:3 24425:1 24443:1 24488:1 24513:1 24526:1 24561:2 24566:1 24592:1 24594:1 24601:1 24620:2 24623:1 24652:1 24661:1 24728:1 24731:1 24746:2 24748:1 24761:1 24762:1 24764:1 24788:1 24822:1 24839:1 24863:1 24902:1 24912:2 24923:3 24927:1 24955:1 24956:1 24957:1 24973:1 24995:1 25028:1 25032:1 25085:1 25099:2 25115:1 25127:1 25136:1 25150:1 25184:1 25206:1 25210:1 25221:1 25222:1 25224:1 25226:2 25228:4 25229:1 25236:2 25238:1 25249:2 25255:2 25297:1 25300:2 25301:1 25315:1 25327:1 25337:2 25343:3 25369:1 25370:1 25381:1 25393:1 25410:1 25460:1 25478:1 25504:1 25530:2 25545:3 25565:1 25601:1 25647:2 25648:1 25692:1 25752:1 25767:1 25781:1 25785:3 25794:1 25828:2 25861:1 25879:1 25887:1 25900:1 25903:3 25922:1 25927:1 25929:1 25931:2 26007:1 26023:1 26060:4 26069:1 26083:2 26112:1 26122:1 26138:1 26146:2 26168:1 26180:1 26187:1 26236:1 26240:2 26248:2 26252:1 26259:1 26261:2 26263:3 26280:1 26285:2 26288:5 26293:1 26294:2 26307:1 26311:1 26317:1 26320:1 26328:1 26329:1 26363:2 26379:2 26410:1 26420:2 26482:1 26495:1 26511:1 26519:1 26560:1 26579:1 26593:1 26614:2 26646:1 26648:1 26656:1 26662:1 26698:1 26760:1 26776:1 26805:1 26847:1 26872:1 26882:1 26883:1 26907:1 26925:1 26939:1 26954:1 26983:1 26989:1 26997:1 26998:1 27020:2 27047:4 27070:1 27094:1 27095:1 27118:1 27119:1 27127:1 27138:1 27157:1 27178:4 27179:1 27212:1 27234:1 27260:1 27278:1 27327:1 27330:1 27334:2 27341:1 27375:1 27378:1 27381:1 27387:1 27415:1 27438:1 27454:2 27459:1 27482:1 27484:1 27510:1 27535:1 27555:1 27583:5 27608:2 27665:1 27670:1 27708:1 27714:1 27732:1 27780:1 27781:1 27804:1 27822:1 27826:1 27845:1 27875:1 27888:1 27917:1 27940:2 27965:3 27974:1 27990:1 28011:1 28033:1 28043:1 28044:2 28071:1 28087:2 28109:3 28188:1 28218:3 28226:2 28251:1 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28347:1 28361:1 28372:1 28384:1 28409:1 28414:1 28458:1 28529:1 28533:1 28554:2 28589:1 28616:4 28686:1 28858:1 28860:3 28872:1 28893:1 28928:1 28938:1 28980:1 28983:1 28992:8 28993:2 28996:5 28998:1 28999:2 29011:1 29034:3 29048:1 29092:1 29100:2 29115:1 29120:1 29131:1 29146:1 29176:8 29184:1 29190:1 29213:1 29216:1 29221:1 29228:1 29236:1 29245:1 29262:1 29268:1 29278:1 29293:1 29295:1 29300:1 29343:1 29347:1 29362:1 29364:1 29388:1 29391:1 29405:1 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29518:1 29525:1 29529:1 29532:1 29551:1 29566:1 29570:1 29579:1 29587:1 29652:1 29659:1 29682:1 29684:1 29706:1 29717:1 29722:1 29723:1 29740:1 29749:1 29758:1 29767:1 29773:1 29780:1 29782:1 29788:1 29801:1 29832:1 29882:2 29900:1 29914:2 29918:1 29927:1 29931:1 29949:1 29969:1 30001:2 30012:1 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30187:1 30194:5 30208:1 30210:1 30231:3 30243:2 30250:1 30320:4 30322:2 30326:1 30328:1 30331:2 30332:1 30344:1 30367:3 30371:2 9 11:1 14:1 50:1 79:1 108:1 109:1 135:1 152:1 176:1 187:1 189:2 201:1 206:2 236:3 257:1 283:1 303:1 315:1 325:1 327:12 338:1 356:1 357:2 366:1 378:1 441:1 460:3 478:1 480:1 550:1 591:2 592:1 600:1 603:1 625:1 635:2 637:1 638:1 657:1 691:1 693:1 724:1 736:1 788:1 802:1 804:1 824:1 833:1 843:1 856:1 857:1 883:2 885:2 899:1 900:1 914:5 933:1 938:2 941:4 946:1 952:1 953:1 959:1 964:3 986:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:1 1060:1 1076:1 1080:1 1084:1 1102:1 1133:1 1142:1 1156:2 1194:1 1201:2 1213:1 1258:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1441:1 1464:2 1471:4 1474:1 1491:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:1 1573:1 1574:1 1614:1 1621:1 1639:1 1641:1 1642:1 1650:1 1677:1 1680:1 1700:1 1701:1 1706:3 1712:1 1732:1 1733:1 1775:1 1818:1 1830:1 1844:1 1852:1 1863:1 1878:1 1958:8 1965:1 1970:1 1986:1 1991:1 1996:1 2018:2 2019:2 2051:1 2053:1 2057:1 2063:1 2088:1 2128:1 2130:1 2136:2 2143:1 2151:1 2152:1 2186:1 2211:1 2213:1 2218:1 2226:1 2234:1 2238:1 2239:2 2240:1 2255:1 2274:1 2276:1 2280:1 2281:1 2284:1 2285:2 2288:3 2291:1 2292:1 2293:1 2297:1 2298:1 2301:1 2314:1 2316:5 2318:1 2319:5 2332:1 2348:1 2369:1 2380:1 2386:1 2393:1 2407:1 2411:1 2418:1 2430:2 2445:1 2448:1 2466:1 2482:2 2493:3 2515:1 2532:1 2561:5 2595:2 2603:1 2608:1 2615:3 2618:1 2620:1 2661:2 2699:1 2701:2 2706:1 2717:1 2720:1 2728:1 2740:1 2763:1 2766:1 2784:3 2815:1 2816:1 2817:1 2821:2 2831:2 2841:1 2848:1 2882:1 2933:1 2941:8 2959:1 2975:1 2980:1 3002:6 3032:1 3036:3 3038:1 3061:1 3092:1 3176:1 3177:1 3225:1 3240:1 3259:1 3269:1 3312:2 3325:1 3339:1 3343:1 3348:1 3384:1 3386:1 3434:2 3481:1 3487:1 3544:1 3551:1 3557:1 3561:1 3563:1 3568:1 3571:1 3578:1 3581:1 3615:1 3619:1 3635:2 3640:1 3665:1 3670:1 3681:1 3699:3 3708:1 3709:1 3715:1 3741:3 3784:1 3787:1 3792:2 3796:1 3800:1 3803:2 3848:1 3853:1 3855:4 3857:1 3858:1 3859:4 3888:1 3895:2 3897:1 3904:4 3905:1 3906:1 3924:2 3956:2 3958:1 3967:1 3969:1 3986:1 3993:1 4016:1 4019:2 4022:1 4058:1 4077:1 4084:1 4089:1 4093:1 4099:2 4100:1 4108:3 4109:2 4114:1 4153:1 4169:2 4187:1 4196:2 4204:1 4237:1 4239:1 4241:1 4250:1 4307:2 4315:1 4316:1 4325:1 4364:1 4378:1 4381:1 4388:1 4474:4 4546:1 4555:1 4572:1 4601:1 4675:1 4697:1 4724:1 4728:2 4741:3 4754:1 4804:1 4807:5 4843:1 4854:1 4870:1 4875:1 4889:1 4903:2 4918:1 4921:1 4951:1 4954:1 5019:6 5021:2 5041:2 5078:1 5083:5 5093:1 5115:1 5135:3 5151:1 5152:2 5153:1 5154:1 5159:3 5173:1 5175:1 5178:1 5185:1 5187:1 5188:2 5211:1 5242:1 5277:1 5317:1 5321:1 5328:1 5336:1 5367:1 5385:1 5396:2 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5518:3 5520:1 5535:2 5551:1 5553:1 5602:1 5663:1 5680:1 5691:1 5692:1 5698:1 5705:1 5708:1 5710:2 5712:1 5722:1 5758:3 5763:1 5772:1 5792:2 5808:1 5815:1 5816:1 5849:3 5873:2 5888:1 5897:2 5914:3 5917:1 5945:1 5977:1 6011:1 6021:1 6028:1 6059:1 6097:1 6152:1 6183:1 6205:8 6226:1 6231:2 6238:1 6248:1 6257:1 6301:1 6356:1 6380:1 6384:1 6385:1 6390:1 6400:1 6404:1 6426:2 6437:1 6442:1 6485:1 6501:3 6505:1 6515:1 6518:1 6519:1 6520:2 6525:1 6526:7 6527:2 6539:1 6591:1 6646:2 6681:1 6750:1 6763:1 6777:1 6798:1 6803:1 6814:1 6822:1 6844:1 6851:1 6898:1 6919:2 6929:1 6940:4 6960:1 6968:1 6973:1 7002:1 7029:1 7058:1 7086:1 7087:2 7091:1 7100:1 7113:1 7114:2 7131:1 7147:1 7150:1 7177:1 7212:1 7253:6 7255:1 7281:1 7300:1 7302:1 7306:1 7310:1 7336:1 7337:1 7411:1 7416:1 7435:1 7452:1 7479:1 7491:2 7505:1 7516:1 7527:1 7549:1 7554:1 7555:1 7579:1 7583:1 7596:1 7603:1 7644:1 7672:1 7725:1 7726:2 7756:1 7757:8 7771:1 7784:1 7785:2 7812:2 7831:24 7836:1 7854:1 7855:6 7860:1 7883:1 7908:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:1 8035:1 8093:1 8108:1 8112:2 8138:1 8172:1 8223:1 8226:1 8233:1 8250:1 8265:2 8266:3 8285:1 8317:1 8324:1 8333:1 8338:1 8343:1 8348:2 8357:1 8358:3 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:1 8541:1 8589:1 8591:1 8604:1 8614:3 8615:1 8620:1 8624:2 8628:1 8629:1 8638:1 8646:1 8656:1 8664:5 8669:1 8671:1 8701:1 8728:1 8736:1 8739:1 8740:1 8743:2 8744:1 8746:1 8748:1 8749:2 8752:1 8753:1 8757:1 8784:2 8792:1 8816:1 8822:1 8826:2 8837:1 8853:1 8892:1 8930:1 8939:1 8958:1 8968:1 8974:1 9033:2 9073:3 9074:1 9078:1 9090:2 9098:1 9104:1 9105:1 9124:1 9164:1 9188:2 9199:1 9222:1 9241:1 9252:1 9275:1 9276:1 9292:1 9295:1 9307:1 9316:1 9334:2 9355:1 9366:2 9394:1 9463:1 9467:1 9469:1 9474:1 9486:12 9508:1 9510:1 9523:1 9572:1 9587:1 9608:1 9611:1 9624:1 9631:2 9633:4 9634:1 9659:1 9676:1 9684:2 9728:1 9749:1 9758:1 9793:1 9794:1 9810:1 9831:1 9844:1 9845:1 9851:1 9869:1 9877:1 9886:1 9919:1 9949:4 9962:2 9965:1 9966:3 9972:1 9991:1 10035:2 10093:1 10108:3 10113:1 10120:1 10135:1 10143:1 10145:1 10147:1 10158:2 10171:1 10179:1 10196:1 10202:1 10210:1 10211:1 10225:1 10229:1 10240:4 10260:1 10268:1 10279:1 10309:1 10336:1 10345:1 10368:1 10401:1 10402:1 10418:1 10481:1 10525:1 10570:1 10588:1 10609:1 10625:1 10630:1 10638:2 10655:1 10712:1 10724:1 10767:1 10769:1 10790:2 10794:1 10800:1 10811:1 10813:1 10823:1 10841:1 10844:1 10846:1 10865:1 10867:1 10876:1 10886:1 10888:1 10890:2 10916:1 10950:1 10953:2 10967:3 10988:1 10990:5 11055:1 11056:1 11067:1 11079:1 11112:1 11117:1 11180:1 11211:1 11224:1 11254:2 11260:1 11262:1 11269:1 11291:1 11298:1 11299:1 11302:1 11312:1 11347:4 11372:1 11377:1 11378:1 11433:1 11434:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11516:1 11544:1 11554:1 11579:1 11583:2 11590:1 11613:1 11627:1 11643:1 11659:1 11660:1 11674:1 11675:1 11677:1 11686:2 11706:1 11752:2 11753:1 11819:1 11820:1 11830:1 11852:1 11860:1 11861:1 11866:1 11901:1 11908:1 11914:1 11930:2 11933:2 11962:2 12012:2 12020:1 12026:1 12029:1 12042:1 12059:1 12074:2 12097:2 12108:1 12111:1 12132:1 12139:1 12156:1 12195:1 12200:1 12223:1 12265:1 12291:1 12304:3 12306:1 12315:1 12359:1 12362:2 12382:1 12411:3 12426:1 12433:1 12439:1 12543:2 12544:3 12545:1 12571:1 12592:1 12602:1 12603:2 12615:1 12619:1 12686:1 12702:1 12726:1 12732:3 12753:1 12806:1 12807:1 12810:2 12847:1 12872:1 12896:1 12935:1 12953:1 12991:1 12996:1 13009:1 13091:2 13100:1 13113:1 13131:6 13142:1 13151:2 13153:3 13161:1 13180:1 13189:1 13199:1 13222:1 13246:1 13250:1 13255:1 13256:1 13259:1 13283:1 13291:2 13315:1 13334:1 13339:1 13341:1 13393:1 13417:1 13454:1 13550:2 13556:1 13584:1 13588:4 13595:1 13609:1 13611:4 13647:1 13666:1 13690:1 13726:1 13732:1 13734:1 13747:2 13756:2 13757:1 13774:1 13802:1 13807:1 13830:3 13833:1 13840:1 13847:1 13854:1 13862:1 13880:1 13887:3 13913:1 13933:1 13937:1 13938:1 13973:1 14076:1 14116:1 14120:1 14123:3 14124:1 14127:1 14138:1 14146:1 14149:1 14170:1 14191:2 14201:1 14204:1 14233:1 14243:2 14277:1 14290:1 14304:2 14339:2 14343:1 14345:2 14359:1 14399:1 14401:1 14426:2 14445:1 14486:1 14489:1 14508:1 14525:1 14530:1 14560:1 14577:3 14591:1 14602:3 14611:1 14624:1 14643:1 14667:1 14668:1 14705:1 14730:1 14741:1 14757:1 14794:1 14796:2 14797:3 14800:1 14803:4 14808:1 14812:1 14814:1 14825:1 14833:1 14861:1 14913:1 14927:3 14961:1 14971:1 14978:1 15013:2 15037:1 15060:1 15084:1 15112:1 15129:1 15134:3 15157:1 15166:1 15183:1 15328:3 15329:1 15334:1 15349:1 15395:1 15408:2 15410:1 15424:1 15428:1 15449:1 15450:1 15470:2 15483:1 15494:1 15497:1 15511:1 15532:2 15549:1 15638:1 15651:1 15670:1 15692:2 15693:1 15698:1 15748:1 15761:1 15774:1 15820:2 15849:1 15863:4 15924:2 15941:1 15950:2 15951:1 15961:1 15969:1 15982:1 15987:1 16004:1 16018:1 16028:2 16081:1 16114:1 16128:3 16141:1 16151:1 16160:2 16165:1 16172:1 16173:1 16174:1 16189:1 16233:1 16243:1 16275:1 16306:3 16312:1 16325:1 16345:1 16403:1 16404:2 16452:1 16459:3 16468:1 16472:1 16484:1 16488:1 16552:1 16553:1 16599:1 16612:6 16613:1 16618:1 16624:1 16629:2 16640:1 16670:2 16690:1 16693:1 16717:1 16734:1 16741:1 16745:1 16756:1 16760:1 16763:1 16791:1 16829:1 16830:2 16885:1 16922:1 16960:1 16963:1 16966:1 17042:1 17050:1 17052:1 17062:1 17066:1 17085:1 17101:1 17111:1 17158:1 17167:1 17178:1 17212:1 17234:1 17237:2 17255:1 17272:1 17279:1 17287:1 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17411:1 17413:3 17419:1 17474:1 17483:2 17496:1 17516:1 17535:2 17565:1 17569:1 17584:2 17625:1 17630:1 17632:1 17639:3 17668:3 17684:1 17711:1 17712:1 17735:1 17737:1 17754:1 17762:1 17778:2 17787:1 17844:1 17850:2 17857:1 17946:1 17962:1 17968:1 17980:2 18000:1 18004:1 18025:1 18041:1 18043:2 18050:2 18070:3 18072:1 18076:1 18106:1 18126:4 18127:2 18154:1 18185:1 18189:1 18196:5 18210:1 18240:1 18245:1 18252:2 18256:1 18259:1 18276:1 18283:2 18286:1 18291:1 18304:1 18327:1 18366:1 18395:1 18403:2 18424:3 18430:1 18436:11 18447:1 18451:1 18455:1 18459:1 18482:1 18485:1 18486:1 18506:1 18528:1 18532:1 18537:1 18546:1 18550:1 18569:1 18586:1 18591:3 18604:1 18630:1 18643:1 18680:1 18683:1 18695:1 18698:1 18712:1 18720:1 18723:2 18736:2 18738:1 18750:1 18761:1 18780:1 18805:1 18812:1 18845:1 18867:1 18905:1 18918:1 18962:1 18968:1 18969:1 19069:4 19095:1 19148:1 19172:1 19218:1 19225:1 19229:1 19251:2 19254:2 19259:1 19279:1 19287:2 19291:1 19300:1 19304:896 19308:1 19324:1 19367:1 19368:1 19402:1 19431:1 19437:1 19444:1 19486:1 19529:1 19535:3 19542:1 19548:2 19551:1 19552:1 19629:2 19633:1 19642:1 19666:12 19692:2 19716:1 19747:1 19762:1 19774:2 19804:1 19820:1 19822:1 19837:1 19844:1 19868:1 19898:2 19920:1 19953:1 19978:2 19981:1 19982:1 20021:1 20027:1 20036:1 20038:1 20043:2 20053:1 20058:1 20074:4 20078:1 20092:1 20106:1 20131:6 20147:1 20172:3 20173:1 20188:1 20242:1 20296:1 20300:1 20313:1 20329:2 20331:1 20336:3 20339:1 20372:1 20374:1 20375:1 20399:1 20429:1 20501:1 20516:1 20528:1 20559:2 20570:1 20577:1 20590:1 20593:1 20597:1 20598:1 20608:1 20616:1 20620:1 20629:2 20641:1 20664:1 20666:1 20687:1 20692:2 20708:1 20754:1 20760:1 20783:1 20791:2 20805:1 20817:1 20828:1 20848:1 20850:1 20875:1 20886:1 20918:1 20928:1 20932:1 20962:1 20964:1 21002:3 21032:1 21057:3 21058:2 21062:1 21068:1 21074:1 21080:1 21129:1 21136:1 21255:1 21259:2 21296:1 21299:3 21314:1 21319:1 21324:1 21389:2 21429:4 21464:1 21469:1 21472:1 21511:1 21526:1 21529:1 21546:2 21550:1 21552:1 21561:1 21579:1 21588:2 21605:1 21613:2 21647:1 21656:1 21659:1 21673:1 21702:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:1 21863:2 21894:1 21901:1 21952:1 21965:1 21971:1 21976:1 21985:1 22005:1 22022:1 22045:1 22058:1 22061:1 22122:1 22177:1 22225:1 22254:1 22258:1 22265:1 22272:1 22273:1 22282:1 22283:1 22289:1 22298:1 22325:1 22338:1 22346:2 22361:1 22363:1 22370:1 22378:1 22391:1 22408:1 22413:1 22415:5 22437:1 22447:1 22477:1 22507:1 22513:1 22519:1 22525:6 22532:1 22543:2 22559:1 22561:1 22562:1 22575:1 22625:1 22632:1 22661:1 22665:1 22672:1 22676:1 22679:1 22682:1 22698:1 22716:2 22735:1 22766:1 22801:1 22818:1 22834:1 22838:1 22870:1 22886:2 22892:1 22897:1 22933:1 22940:1 22943:1 22959:1 22975:2 23034:1 23052:3 23053:2 23056:2 23072:2 23073:1 23096:1 23111:2 23124:1 23142:3 23144:1 23145:2 23174:1 23177:1 23178:1 23185:1 23226:1 23231:1 23233:1 23241:1 23251:1 23260:1 23263:1 23292:1 23309:1 23315:11 23323:1 23327:1 23329:1 23352:1 23361:1 23364:1 23384:1 23385:1 23389:1 23497:1 23501:1 23509:1 23530:2 23535:1 23594:1 23602:2 23614:1 23616:1 23625:1 23634:1 23649:2 23655:1 23663:1 23664:1 23711:1 23724:1 23785:1 23830:1 23837:1 23844:1 23860:1 23887:1 23888:1 23903:2 23906:1 23926:2 23928:1 23944:3 23955:1 23984:1 23992:2 24079:1 24125:1 24129:1 24144:1 24169:2 24172:1 24173:1 24180:1 24181:1 24187:1 24214:1 24218:1 24228:1 24232:1 24270:1 24278:1 24282:1 24291:1 24309:1 24325:1 24336:1 24343:4 24376:1 24425:1 24443:1 24488:1 24513:1 24526:1 24561:2 24566:1 24592:1 24594:1 24601:1 24620:2 24622:1 24623:1 24652:1 24661:1 24728:1 24731:1 24746:2 24748:1 24761:1 24762:1 24764:2 24788:1 24822:1 24839:1 24863:1 24902:1 24912:2 24923:3 24927:1 24955:1 24956:1 24957:1 24973:1 24995:1 25028:1 25032:1 25068:1 25085:1 25099:2 25100:1 25115:1 25127:1 25136:1 25150:1 25184:1 25206:1 25210:1 25221:1 25222:1 25224:2 25226:2 25228:4 25229:1 25235:1 25236:2 25238:1 25249:2 25255:2 25297:1 25300:2 25301:1 25315:1 25327:1 25337:2 25343:3 25369:1 25370:1 25381:1 25393:1 25410:1 25460:1 25478:1 25504:2 25530:2 25545:3 25565:1 25601:1 25647:2 25648:1 25692:1 25752:2 25767:1 25781:1 25785:3 25794:2 25828:2 25861:1 25879:1 25887:1 25900:1 25903:3 25915:1 25922:1 25927:1 25929:1 25931:2 26007:1 26023:1 26060:5 26069:1 26083:2 26112:1 26122:1 26138:1 26146:2 26168:1 26180:1 26187:1 26236:1 26240:2 26248:2 26252:1 26259:1 26261:2 26263:4 26280:1 26285:2 26288:5 26293:1 26294:2 26304:1 26307:1 26311:1 26317:1 26320:1 26328:1 26329:1 26363:2 26379:2 26410:1 26420:2 26422:1 26482:1 26494:1 26495:1 26511:1 26519:1 26560:1 26579:1 26589:1 26593:1 26614:2 26646:1 26648:1 26656:1 26662:1 26698:1 26760:1 26776:1 26805:1 26847:1 26872:1 26882:1 26883:1 26886:1 26901:1 26907:1 26925:1 26939:1 26954:1 26957:1 26983:1 26989:1 26997:1 26998:1 27020:2 27047:4 27070:1 27089:1 27091:1 27094:1 27095:1 27118:1 27119:1 27127:1 27138:1 27157:1 27178:4 27179:1 27212:1 27234:1 27260:1 27278:1 27299:1 27320:1 27327:1 27330:1 27334:2 27341:1 27375:1 27378:1 27381:1 27387:1 27415:1 27438:1 27454:2 27459:1 27482:1 27484:1 27510:1 27535:1 27539:1 27555:1 27583:5 27608:2 27665:1 27670:1 27708:1 27714:1 27732:1 27780:1 27781:1 27804:1 27822:1 27826:1 27845:1 27875:1 27888:1 27917:1 27940:3 27957:1 27965:3 27974:1 27990:1 28011:1 28033:1 28043:1 28044:3 28071:1 28087:2 28109:4 28151:1 28188:1 28218:5 28226:2 28242:1 28251:2 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28335:1 28347:1 28361:1 28372:1 28384:1 28398:1 28409:1 28414:2 28458:1 28529:1 28533:1 28554:2 28589:1 28616:4 28686:1 28755:2 28858:1 28860:3 28872:1 28893:1 28928:1 28938:1 28980:1 28983:1 28992:11 28993:2 28996:5 28998:1 28999:2 29011:1 29034:4 29048:1 29092:1 29100:2 29115:1 29120:1 29131:1 29146:1 29176:8 29180:1 29184:1 29190:1 29213:1 29216:1 29221:1 29228:1 29236:1 29245:1 29262:1 29268:2 29278:1 29293:1 29295:1 29300:1 29343:1 29347:1 29362:1 29364:1 29388:1 29391:1 29405:2 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29518:1 29525:1 29529:1 29532:1 29539:1 29551:1 29566:1 29570:1 29579:1 29587:1 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29717:1 29722:1 29723:1 29740:1 29749:1 29758:1 29767:2 29773:1 29780:1 29782:1 29788:1 29801:1 29832:1 29882:2 29900:1 29914:2 29918:1 29927:1 29931:2 29949:1 29969:1 29970:1 30001:2 30012:1 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30187:1 30194:5 30208:1 30210:1 30231:4 30243:2 30250:1 30320:5 30322:2 30326:1 30328:1 30331:2 30332:1 30344:1 30363:1 30367:3 30371:2 30408:1 9 11:1 14:1 50:2 79:1 108:1 109:1 135:1 152:1 176:1 187:1 189:3 201:1 206:2 236:3 257:1 283:1 303:1 315:1 325:1 327:12 338:1 356:1 357:2 366:1 378:1 441:1 460:3 478:1 480:1 550:1 591:2 592:1 600:1 603:2 625:1 635:2 637:1 638:1 657:2 671:1 682:1 691:1 693:1 724:1 732:1 736:1 788:1 802:1 804:1 819:1 824:1 833:1 843:1 856:1 857:1 883:2 885:3 899:1 900:1 914:6 929:1 933:1 938:2 941:4 946:1 952:1 953:1 959:1 964:3 986:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:1 1060:1 1076:1 1080:1 1084:1 1102:1 1133:1 1142:1 1156:2 1194:1 1201:2 1213:1 1258:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1441:1 1464:2 1471:4 1474:1 1491:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:1 1573:1 1574:1 1614:1 1621:1 1639:1 1641:2 1642:2 1650:1 1677:1 1680:1 1700:1 1701:1 1706:3 1712:1 1732:1 1733:1 1775:1 1818:1 1830:1 1844:1 1852:1 1863:1 1878:1 1908:1 1958:8 1965:1 1970:2 1986:1 1991:1 1996:1 2018:2 2019:2 2051:1 2053:1 2057:1 2063:1 2088:1 2128:1 2130:1 2136:3 2143:1 2151:1 2152:1 2186:1 2211:1 2213:1 2218:1 2226:1 2234:1 2238:1 2239:2 2240:2 2255:1 2274:1 2276:1 2280:1 2281:1 2284:1 2285:2 2288:4 2291:1 2292:1 2293:2 2297:1 2298:1 2301:1 2314:1 2316:5 2318:1 2319:6 2332:1 2348:1 2369:1 2380:1 2386:1 2393:1 2407:1 2411:1 2418:1 2430:2 2437:1 2445:1 2448:1 2466:1 2482:2 2493:3 2515:1 2532:1 2537:1 2561:5 2570:1 2595:2 2603:1 2608:1 2615:3 2618:1 2620:1 2661:2 2699:1 2701:2 2706:1 2709:1 2717:1 2720:1 2728:1 2740:1 2763:1 2766:1 2784:3 2810:1 2815:1 2816:1 2817:1 2821:3 2831:2 2841:1 2848:1 2882:1 2933:1 2941:9 2959:2 2975:1 2980:1 3002:6 3032:1 3036:3 3038:1 3061:1 3092:1 3176:1 3177:1 3225:1 3240:1 3259:1 3269:1 3312:2 3325:1 3339:1 3343:1 3348:1 3384:1 3386:1 3434:3 3481:1 3487:1 3544:1 3551:1 3557:1 3561:1 3563:1 3564:1 3568:1 3571:1 3578:1 3581:1 3615:1 3619:1 3635:2 3640:1 3665:1 3670:1 3681:1 3699:3 3708:2 3709:1 3715:1 3741:3 3784:1 3787:1 3792:3 3796:1 3800:2 3803:2 3848:1 3853:1 3855:4 3857:1 3858:1 3859:5 3888:1 3895:2 3897:1 3903:1 3904:5 3905:1 3906:1 3924:2 3956:2 3958:1 3967:1 3969:1 3986:1 3993:1 4016:1 4019:2 4022:1 4053:1 4054:1 4058:1 4077:2 4084:1 4089:1 4093:1 4099:2 4100:1 4108:3 4109:2 4114:1 4153:1 4169:2 4187:1 4196:2 4204:1 4237:1 4239:1 4241:1 4250:1 4307:2 4315:1 4316:1 4325:1 4364:1 4378:2 4381:1 4388:1 4474:4 4494:1 4535:1 4546:1 4555:1 4572:1 4601:1 4675:1 4697:1 4724:1 4728:2 4741:3 4754:1 4804:1 4807:6 4843:1 4854:1 4870:1 4875:1 4889:1 4903:3 4918:1 4921:1 4951:1 4954:1 5019:7 5021:2 5041:2 5078:1 5083:5 5093:1 5115:1 5135:3 5151:2 5152:2 5153:1 5154:1 5159:3 5173:2 5175:2 5178:1 5185:1 5187:1 5188:2 5211:1 5242:1 5277:2 5317:1 5321:1 5328:1 5336:1 5367:1 5385:1 5396:2 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5518:3 5520:1 5535:2 5551:1 5553:1 5602:1 5663:1 5680:1 5691:1 5692:1 5698:1 5705:1 5708:1 5710:2 5712:1 5722:1 5758:3 5763:1 5772:1 5792:2 5808:2 5815:1 5816:1 5849:3 5873:2 5888:1 5897:2 5914:4 5917:1 5945:1 5977:1 6011:1 6021:1 6028:1 6059:2 6097:1 6152:1 6183:1 6205:9 6226:1 6231:2 6238:1 6248:1 6257:1 6301:1 6356:1 6380:1 6384:1 6385:1 6390:1 6400:1 6404:1 6426:4 6437:1 6442:1 6485:1 6501:3 6505:1 6515:1 6518:1 6519:1 6520:2 6525:1 6526:8 6527:2 6539:1 6591:1 6646:2 6681:2 6750:1 6763:1 6777:1 6798:1 6803:1 6814:1 6822:1 6844:1 6851:1 6898:1 6919:2 6929:1 6940:4 6960:1 6968:1 6973:1 6997:1 7002:1 7029:1 7058:1 7086:1 7087:2 7091:1 7100:1 7113:1 7114:2 7131:1 7147:1 7150:2 7177:1 7212:1 7253:7 7255:1 7273:1 7281:1 7300:1 7302:1 7306:1 7310:1 7336:1 7337:1 7411:1 7416:1 7435:1 7452:1 7479:1 7491:3 7505:2 7516:1 7527:1 7549:2 7554:1 7555:1 7579:1 7583:1 7596:1 7603:1 7644:1 7672:1 7725:1 7726:2 7756:1 7757:9 7771:1 7784:1 7785:2 7812:2 7831:28 7836:1 7854:1 7855:6 7860:1 7883:1 7908:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:1 8035:1 8087:1 8093:1 8108:1 8112:2 8138:1 8172:1 8223:1 8226:1 8233:1 8250:1 8265:2 8266:3 8285:1 8317:1 8324:1 8333:1 8338:2 8343:1 8348:2 8357:1 8358:3 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:1 8541:1 8589:1 8591:1 8604:2 8614:3 8615:1 8620:1 8624:2 8628:1 8629:1 8638:1 8646:1 8656:1 8664:5 8669:1 8671:1 8701:1 8728:1 8736:1 8739:2 8740:1 8743:2 8744:1 8746:1 8748:1 8749:3 8752:1 8753:1 8757:1 8784:2 8792:2 8816:1 8822:1 8826:2 8837:1 8853:1 8892:1 8930:1 8939:1 8958:1 8968:1 8974:1 9033:2 9073:3 9074:1 9078:1 9090:2 9098:1 9104:1 9105:1 9124:1 9164:1 9188:2 9199:1 9222:1 9241:1 9252:1 9275:1 9276:1 9292:1 9295:1 9307:1 9316:1 9334:3 9355:1 9366:2 9394:1 9411:1 9463:1 9467:2 9469:1 9474:2 9486:12 9508:2 9510:1 9523:1 9572:1 9587:1 9608:1 9611:1 9624:1 9631:2 9633:4 9634:1 9659:1 9676:1 9684:2 9728:1 9749:1 9758:1 9793:1 9794:1 9810:1 9831:1 9844:1 9845:1 9851:1 9861:1 9869:1 9877:1 9886:1 9895:1 9919:1 9949:5 9962:2 9965:1 9966:3 9972:2 9991:1 10035:2 10065:1 10093:1 10108:3 10113:1 10120:1 10135:1 10143:1 10145:1 10147:2 10158:2 10171:1 10179:1 10196:1 10202:1 10210:1 10211:1 10225:1 10229:1 10240:4 10260:1 10268:1 10279:1 10309:1 10336:1 10345:1 10368:1 10401:1 10402:1 10418:1 10481:1 10520:1 10525:1 10570:1 10588:1 10608:1 10609:1 10625:1 10630:2 10638:2 10655:1 10712:1 10724:1 10767:1 10769:1 10790:2 10794:1 10800:1 10811:1 10813:1 10823:1 10841:1 10844:1 10846:1 10865:1 10867:1 10876:1 10886:1 10888:1 10890:2 10895:1 10916:1 10950:1 10953:3 10967:3 10988:1 10990:5 11055:1 11056:1 11067:1 11079:1 11112:1 11117:1 11180:1 11211:1 11224:1 11254:3 11260:1 11262:1 11269:1 11291:1 11298:1 11299:1 11302:1 11312:1 11347:4 11372:1 11377:1 11378:1 11381:1 11433:1 11434:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11516:1 11544:1 11554:1 11579:1 11583:3 11590:1 11613:1 11627:1 11643:2 11659:1 11660:1 11674:1 11675:1 11677:1 11686:2 11706:1 11752:3 11753:1 11819:1 11820:1 11830:1 11852:1 11860:1 11861:1 11866:1 11890:1 11901:1 11908:1 11914:1 11930:2 11933:3 11962:3 12012:2 12020:1 12026:1 12029:1 12032:1 12042:1 12059:1 12074:3 12097:3 12108:1 12111:1 12132:1 12139:1 12156:1 12195:1 12200:1 12223:1 12265:1 12291:1 12304:3 12306:1 12315:1 12346:1 12359:2 12362:2 12382:1 12411:3 12426:1 12433:1 12439:1 12543:2 12544:3 12545:1 12571:1 12592:1 12602:1 12603:3 12615:1 12619:2 12686:1 12702:1 12726:1 12732:3 12753:1 12806:1 12807:1 12810:2 12847:1 12872:1 12896:1 12935:1 12953:1 12991:1 12996:1 13009:1 13091:3 13100:1 13113:1 13131:7 13142:1 13151:2 13153:3 13161:1 13180:1 13189:1 13199:1 13222:1 13246:1 13250:1 13255:1 13256:1 13259:2 13270:1 13283:1 13291:2 13315:1 13334:1 13339:1 13341:1 13393:1 13417:1 13454:2 13550:3 13556:1 13584:1 13588:4 13595:2 13609:1 13611:4 13647:1 13666:1 13690:2 13726:1 13732:1 13734:1 13747:2 13756:2 13757:1 13774:1 13802:1 13807:1 13829:1 13830:3 13833:1 13840:1 13847:1 13854:1 13862:1 13880:1 13887:3 13913:1 13933:2 13937:1 13938:1 13973:1 14076:1 14081:1 14116:1 14120:1 14123:3 14124:1 14127:1 14138:1 14146:1 14149:1 14170:1 14191:2 14201:1 14204:1 14233:1 14243:2 14277:1 14290:1 14304:2 14339:3 14343:1 14345:2 14359:1 14399:1 14401:1 14426:2 14445:1 14486:1 14489:1 14508:1 14525:1 14530:1 14560:1 14577:4 14591:1 14602:3 14611:1 14624:1 14643:1 14649:1 14667:1 14668:1 14705:1 14730:1 14741:1 14757:1 14794:1 14795:1 14796:2 14797:3 14800:1 14803:4 14808:1 14812:1 14814:1 14825:1 14833:1 14861:1 14913:1 14927:3 14961:1 14971:2 14978:1 15013:3 15037:1 15060:1 15084:1 15112:1 15129:1 15134:3 15157:1 15166:2 15183:1 15328:3 15329:1 15334:1 15349:1 15395:1 15408:3 15410:1 15424:1 15428:1 15449:1 15450:1 15470:2 15483:1 15494:1 15497:1 15511:1 15532:3 15549:1 15638:1 15651:1 15655:1 15670:1 15692:3 15693:1 15698:1 15748:1 15761:1 15774:2 15820:2 15849:1 15863:4 15924:2 15941:1 15950:3 15951:1 15961:1 15969:1 15982:1 15987:1 16004:2 16018:1 16028:2 16081:1 16114:2 16128:3 16141:2 16151:1 16160:2 16165:1 16172:1 16173:1 16174:1 16189:1 16233:1 16243:1 16275:1 16306:3 16312:1 16325:1 16345:1 16403:1 16404:3 16452:1 16459:3 16468:1 16472:1 16484:1 16488:1 16552:1 16553:1 16599:1 16612:7 16613:1 16618:1 16624:1 16629:2 16640:1 16670:2 16690:2 16693:1 16717:1 16734:1 16741:1 16745:1 16756:1 16760:1 16763:1 16791:1 16829:1 16830:2 16885:1 16922:1 16960:1 16963:1 16966:2 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:1 17158:1 17167:1 17178:1 17212:1 17234:1 17237:2 17255:1 17272:1 17279:1 17287:1 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:1 17411:1 17413:4 17419:1 17474:1 17483:3 17496:1 17516:1 17535:3 17565:1 17569:1 17584:2 17625:1 17630:1 17632:1 17639:3 17668:3 17684:1 17711:1 17712:1 17735:1 17737:1 17754:1 17762:1 17778:2 17787:1 17844:1 17850:2 17857:1 17946:1 17962:1 17968:1 17975:1 17980:2 18000:1 18004:1 18025:1 18041:1 18043:2 18050:2 18060:1 18070:3 18072:1 18076:1 18106:1 18126:4 18127:2 18151:1 18154:1 18185:1 18189:1 18196:5 18210:1 18240:1 18245:1 18252:2 18256:1 18259:1 18276:1 18283:2 18286:1 18291:1 18304:1 18327:1 18365:1 18366:1 18395:1 18403:2 18424:3 18430:1 18436:12 18447:1 18451:1 18455:1 18459:1 18482:1 18485:1 18486:1 18506:1 18528:1 18532:1 18537:1 18546:1 18550:1 18569:1 18586:1 18591:3 18604:1 18630:1 18643:1 18680:1 18683:1 18695:1 18698:1 18712:1 18720:1 18723:2 18736:2 18738:1 18750:1 18761:1 18780:1 18805:1 18812:1 18845:1 18867:1 18905:1 18918:1 18962:1 18968:1 18969:1 19069:4 19095:1 19148:1 19172:1 19218:1 19225:1 19229:1 19251:2 19254:2 19259:1 19279:1 19287:2 19291:1 19300:1 19304:964 19308:1 19324:1 19367:1 19368:1 19402:1 19431:1 19437:1 19444:1 19486:1 19529:2 19535:3 19542:1 19548:2 19551:1 19552:1 19629:3 19633:1 19642:1 19666:12 19692:2 19716:1 19747:1 19762:1 19774:2 19794:1 19804:1 19820:1 19822:1 19837:2 19844:2 19868:1 19882:1 19898:2 19920:1 19953:1 19978:2 19981:1 19982:1 20021:1 20027:1 20036:1 20038:1 20043:2 20049:1 20053:1 20058:1 20074:4 20078:1 20092:1 20106:1 20131:6 20147:1 20172:4 20173:1 20183:1 20188:1 20198:1 20242:1 20296:1 20300:1 20313:1 20329:3 20331:1 20336:3 20339:1 20351:1 20372:1 20374:1 20375:1 20399:1 20429:1 20468:1 20501:1 20516:1 20528:1 20559:2 20570:1 20577:1 20590:1 20593:1 20597:1 20598:1 20608:1 20616:1 20620:1 20629:2 20641:1 20664:1 20666:1 20687:1 20692:2 20708:1 20754:1 20760:1 20783:1 20791:2 20805:1 20817:2 20828:1 20848:1 20850:1 20875:1 20886:1 20918:1 20928:1 20932:1 20962:1 20964:2 21002:3 21032:1 21057:3 21058:2 21062:2 21068:1 21074:1 21080:1 21129:1 21136:1 21255:2 21259:2 21296:1 21299:3 21314:1 21319:1 21324:1 21389:2 21429:4 21464:1 21468:1 21469:1 21472:1 21511:1 21526:1 21529:1 21546:2 21550:1 21552:1 21561:1 21579:1 21588:2 21605:1 21613:2 21647:1 21656:2 21659:1 21673:1 21702:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:1 21863:2 21872:1 21894:1 21901:1 21952:1 21965:1 21971:1 21976:1 21985:1 22005:1 22022:1 22045:1 22058:1 22061:1 22122:1 22177:1 22225:1 22254:1 22258:1 22265:1 22272:1 22273:1 22282:1 22283:1 22289:1 22298:1 22325:1 22338:1 22346:3 22361:1 22363:1 22370:1 22378:1 22383:1 22391:1 22408:1 22413:1 22415:5 22437:1 22447:1 22477:1 22507:1 22513:1 22519:1 22525:7 22532:1 22543:2 22559:1 22561:1 22562:1 22575:1 22616:1 22625:1 22632:1 22661:1 22665:1 22672:1 22676:1 22679:1 22682:1 22698:2 22716:2 22735:1 22766:2 22801:1 22818:1 22834:1 22838:1 22870:1 22886:2 22892:1 22897:1 22933:1 22940:1 22943:1 22947:1 22959:1 22975:2 23029:1 23034:1 23052:3 23053:2 23056:3 23072:2 23073:1 23096:1 23111:2 23124:1 23134:1 23142:3 23144:1 23145:2 23174:1 23177:1 23178:1 23185:1 23226:1 23231:1 23233:1 23241:1 23251:1 23260:1 23263:1 23292:1 23309:1 23315:12 23323:2 23327:1 23329:1 23352:1 23361:1 23364:1 23384:1 23385:1 23389:1 23497:1 23501:1 23509:1 23530:2 23535:1 23594:1 23602:2 23614:1 23616:1 23625:1 23634:1 23649:2 23655:1 23663:1 23664:1 23702:1 23711:1 23724:1 23785:1 23830:1 23837:1 23844:1 23859:1 23860:1 23887:1 23888:1 23903:2 23906:1 23926:2 23928:1 23944:3 23955:1 23978:1 23984:1 23992:2 23997:1 24079:1 24125:1 24129:1 24144:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24214:1 24218:1 24228:1 24232:1 24270:2 24278:1 24280:1 24282:1 24291:1 24309:1 24325:1 24336:1 24343:5 24376:2 24423:1 24425:1 24443:1 24488:1 24513:1 24526:2 24561:2 24566:1 24592:1 24594:1 24601:1 24620:3 24622:1 24623:1 24652:1 24661:1 24728:1 24731:1 24746:2 24748:1 24761:1 24762:1 24764:2 24788:1 24801:1 24822:1 24839:1 24863:1 24902:1 24912:3 24923:3 24927:1 24955:1 24956:1 24957:1 24973:1 24995:1 25028:1 25032:1 25068:1 25085:1 25099:2 25100:2 25115:1 25127:1 25136:1 25150:1 25184:1 25206:1 25210:1 25221:1 25222:1 25224:2 25226:2 25228:4 25229:1 25235:1 25236:2 25238:1 25249:2 25255:2 25268:1 25297:1 25300:2 25301:1 25315:1 25327:1 25337:2 25343:3 25363:1 25369:1 25370:1 25381:1 25393:1 25410:1 25460:1 25478:1 25504:2 25530:2 25545:3 25565:1 25601:1 25647:2 25648:1 25684:1 25692:1 25752:3 25767:1 25781:1 25785:3 25794:2 25828:2 25861:1 25879:1 25887:1 25900:1 25903:3 25915:1 25922:1 25927:1 25929:1 25931:2 26007:1 26023:1 26060:6 26069:1 26083:2 26112:1 26122:1 26138:1 26146:2 26168:1 26180:1 26187:1 26236:1 26240:2 26248:2 26252:1 26259:1 26261:2 26263:4 26280:1 26285:2 26288:5 26293:1 26294:2 26304:1 26307:1 26311:1 26317:1 26320:1 26328:1 26329:1 26334:1 26363:2 26379:2 26410:1 26420:2 26422:1 26482:1 26494:1 26495:1 26511:1 26519:1 26560:1 26563:1 26579:1 26589:1 26593:1 26614:2 26646:1 26648:1 26656:1 26662:1 26698:1 26760:1 26776:1 26805:1 26847:1 26872:1 26882:1 26883:1 26886:1 26901:1 26907:1 26925:1 26939:1 26954:1 26957:2 26983:1 26989:1 26997:1 26998:1 27020:3 27047:4 27070:1 27089:1 27091:1 27094:1 27095:1 27118:1 27119:1 27127:1 27138:1 27157:1 27178:4 27179:1 27212:2 27234:1 27260:1 27278:1 27299:2 27320:2 27327:1 27330:1 27334:2 27341:1 27375:2 27378:1 27381:1 27387:1 27415:1 27438:1 27454:2 27459:1 27482:1 27484:1 27510:1 27535:1 27539:1 27555:1 27583:5 27608:2 27665:1 27670:1 27708:1 27714:1 27732:1 27780:1 27781:1 27804:1 27822:1 27826:1 27845:1 27875:1 27888:1 27917:1 27940:4 27957:2 27965:3 27974:1 27990:1 27991:1 28011:1 28033:1 28043:1 28044:3 28071:1 28087:2 28109:5 28151:1 28188:1 28218:5 28226:2 28242:2 28251:2 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28335:2 28337:1 28347:1 28361:1 28372:1 28384:1 28398:1 28409:1 28414:2 28458:1 28529:1 28533:1 28554:2 28589:1 28616:4 28686:1 28755:2 28858:1 28860:4 28872:1 28893:1 28928:1 28938:1 28980:1 28983:1 28992:12 28993:2 28996:5 28998:1 28999:2 29011:1 29034:5 29048:1 29092:1 29100:2 29115:1 29120:1 29131:1 29146:1 29176:9 29180:1 29184:1 29190:1 29213:1 29216:1 29221:1 29228:1 29236:1 29245:1 29251:1 29262:1 29267:1 29268:2 29278:1 29293:1 29295:1 29300:1 29302:1 29343:1 29347:1 29362:1 29364:1 29388:1 29391:1 29405:2 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29518:1 29525:1 29529:1 29532:1 29539:1 29551:1 29566:1 29570:1 29579:1 29587:1 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29717:1 29722:1 29723:1 29740:1 29749:1 29758:1 29767:2 29773:1 29780:2 29782:1 29788:1 29801:1 29832:1 29882:2 29900:1 29914:2 29918:1 29927:1 29931:2 29949:1 29969:1 29970:1 30001:2 30012:1 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30150:1 30187:1 30194:5 30208:1 30210:1 30231:5 30243:3 30250:1 30320:6 30322:2 30326:1 30328:1 30331:2 30332:1 30344:1 30363:2 30367:3 30371:2 30408:1 9 11:1 14:1 50:2 79:1 108:1 109:1 135:1 152:1 176:1 187:1 189:3 201:1 206:2 236:3 257:1 283:1 303:1 315:1 325:1 327:14 338:1 356:1 357:2 366:1 378:1 441:1 460:3 478:1 480:1 550:1 591:2 592:1 600:1 603:2 625:1 635:2 637:1 638:1 657:2 671:1 682:1 691:1 693:1 724:1 732:1 736:1 774:1 788:1 802:1 804:1 819:1 824:1 833:1 843:1 856:1 857:1 883:2 885:3 899:1 900:1 914:7 929:1 933:1 938:2 941:4 946:1 952:1 953:1 959:1 964:3 986:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:1 1060:1 1076:1 1080:1 1084:1 1102:1 1133:1 1142:1 1156:2 1194:1 1201:2 1213:1 1258:1 1300:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1441:1 1464:2 1471:4 1474:1 1491:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:1 1573:1 1574:1 1614:1 1621:1 1639:1 1641:2 1642:2 1650:1 1677:1 1680:1 1700:1 1701:1 1706:3 1712:1 1732:1 1733:1 1775:1 1818:1 1830:1 1844:1 1852:1 1856:1 1863:1 1878:1 1908:1 1958:9 1965:1 1970:2 1986:1 1991:1 1996:1 1997:1 2018:3 2019:2 2051:1 2053:1 2057:1 2063:1 2088:1 2128:1 2130:1 2136:3 2143:1 2151:1 2152:1 2186:1 2211:1 2213:1 2218:1 2219:1 2226:1 2232:1 2234:1 2238:1 2239:2 2240:2 2255:1 2274:1 2276:1 2280:1 2281:1 2284:2 2285:3 2288:4 2291:1 2292:1 2293:2 2296:1 2297:1 2298:1 2301:1 2314:1 2316:5 2318:1 2319:6 2332:1 2348:1 2369:1 2380:1 2386:1 2393:1 2407:1 2411:1 2418:1 2430:2 2437:1 2445:1 2448:1 2466:1 2482:2 2493:3 2505:1 2515:1 2532:1 2537:1 2561:5 2570:1 2595:2 2603:1 2608:1 2615:3 2618:2 2620:1 2661:2 2699:1 2701:2 2706:1 2709:1 2717:1 2720:1 2728:1 2740:1 2745:1 2763:1 2766:1 2784:3 2810:1 2815:1 2816:1 2817:1 2821:3 2831:2 2841:1 2848:1 2882:1 2883:1 2933:2 2941:9 2959:2 2975:1 2980:1 3002:6 3032:1 3036:3 3038:1 3061:1 3064:1 3092:1 3146:1 3176:1 3177:1 3225:1 3240:1 3259:1 3269:1 3280:1 3312:3 3325:1 3339:1 3343:1 3348:1 3384:1 3386:2 3416:1 3434:3 3481:1 3487:1 3544:1 3551:1 3557:1 3561:1 3563:1 3564:1 3568:1 3571:1 3578:1 3581:1 3615:1 3619:1 3628:1 3635:2 3640:1 3648:1 3665:1 3670:1 3681:1 3699:3 3706:1 3708:2 3709:1 3715:1 3741:3 3773:1 3784:1 3787:1 3792:3 3796:1 3800:2 3803:2 3848:1 3853:1 3855:4 3857:1 3858:2 3859:5 3873:1 3888:1 3895:2 3897:1 3903:1 3904:5 3905:1 3906:1 3924:2 3956:2 3958:1 3967:1 3969:1 3978:1 3986:1 3993:1 4016:1 4019:2 4022:1 4053:1 4054:1 4058:1 4077:2 4084:1 4089:1 4093:1 4099:2 4100:1 4108:4 4109:2 4114:1 4153:1 4169:2 4187:1 4196:2 4204:1 4237:1 4239:1 4241:1 4250:1 4307:2 4315:1 4316:1 4325:1 4364:1 4378:2 4381:1 4388:1 4405:1 4474:4 4494:1 4535:1 4546:1 4555:1 4572:1 4601:1 4675:1 4697:1 4724:1 4728:2 4741:3 4754:1 4804:1 4807:7 4843:1 4854:1 4870:1 4875:1 4889:1 4903:3 4918:1 4921:1 4951:1 4954:1 5019:8 5021:2 5041:2 5052:1 5078:1 5083:5 5093:1 5115:1 5117:1 5131:1 5135:3 5151:2 5152:2 5153:1 5154:1 5159:3 5173:2 5175:2 5178:1 5185:1 5187:1 5188:2 5211:1 5242:1 5277:2 5299:1 5317:1 5321:1 5328:1 5336:1 5367:1 5385:1 5396:2 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5518:4 5520:1 5522:1 5535:2 5551:1 5553:1 5567:1 5602:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:1 5698:1 5704:1 5705:1 5708:1 5710:2 5712:1 5722:1 5758:3 5763:1 5772:1 5792:2 5808:2 5815:1 5816:1 5849:3 5873:2 5888:1 5897:2 5914:4 5917:1 5921:1 5945:1 5977:1 6011:1 6021:1 6028:1 6059:2 6066:1 6097:1 6152:1 6183:2 6205:9 6226:2 6231:2 6238:1 6248:1 6257:1 6301:1 6356:1 6380:1 6384:1 6385:1 6390:1 6400:1 6404:1 6426:4 6437:1 6442:1 6485:1 6501:3 6505:1 6515:1 6518:1 6519:1 6520:3 6525:2 6526:8 6527:2 6539:1 6591:1 6646:2 6681:2 6750:1 6763:1 6769:1 6777:1 6798:1 6803:1 6814:1 6822:1 6844:1 6851:1 6855:1 6898:1 6919:2 6924:1 6929:1 6940:4 6960:1 6968:1 6973:1 6997:1 7002:1 7029:1 7058:1 7086:1 7087:2 7091:1 7100:1 7113:1 7114:2 7131:1 7147:1 7150:2 7177:1 7212:1 7253:7 7255:1 7273:1 7281:1 7300:1 7302:1 7306:1 7310:1 7336:1 7337:1 7411:2 7416:1 7435:1 7452:1 7479:1 7491:3 7505:2 7509:1 7516:1 7527:1 7549:2 7554:1 7555:1 7579:1 7583:1 7596:1 7603:1 7644:1 7663:1 7672:1 7725:1 7726:2 7756:1 7757:9 7771:1 7784:1 7785:2 7786:1 7812:2 7831:32 7836:1 7854:2 7855:6 7857:1 7860:1 7883:1 7908:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:1 8035:1 8087:1 8093:1 8108:1 8112:2 8138:1 8172:1 8223:1 8226:1 8233:1 8250:1 8265:2 8266:3 8267:1 8285:1 8287:1 8317:1 8324:1 8333:1 8338:2 8343:1 8348:2 8357:1 8358:3 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:1 8541:1 8589:1 8591:1 8604:2 8614:3 8615:1 8620:1 8624:2 8628:1 8629:1 8638:1 8646:1 8656:1 8664:5 8669:1 8671:1 8701:1 8716:1 8728:1 8736:1 8739:2 8740:1 8743:2 8744:1 8746:1 8748:1 8749:3 8752:1 8753:1 8757:1 8784:2 8792:3 8816:1 8822:1 8826:2 8837:1 8853:1 8892:1 8906:1 8930:1 8939:1 8958:1 8968:1 8974:1 9033:2 9073:3 9074:1 9078:1 9090:2 9098:1 9104:1 9105:1 9124:1 9164:1 9177:1 9188:2 9199:2 9222:1 9241:1 9252:1 9275:1 9276:1 9292:1 9295:1 9307:1 9316:1 9323:1 9334:3 9355:1 9366:2 9373:1 9394:1 9411:1 9463:1 9467:2 9469:1 9474:2 9486:14 9508:2 9510:1 9523:1 9572:1 9587:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:4 9634:1 9659:1 9676:1 9684:3 9728:1 9749:1 9758:1 9793:1 9794:1 9810:1 9831:1 9844:1 9845:1 9851:1 9861:1 9869:2 9877:1 9886:1 9895:1 9919:1 9949:5 9962:2 9965:1 9966:3 9972:2 9991:1 10035:2 10065:1 10093:1 10108:3 10113:1 10120:1 10135:1 10143:1 10145:1 10147:2 10158:2 10171:1 10175:1 10179:1 10196:1 10202:1 10210:1 10211:1 10213:1 10225:1 10229:1 10240:4 10260:1 10268:1 10279:1 10309:1 10336:1 10345:1 10368:1 10401:1 10402:1 10418:1 10481:1 10520:1 10525:1 10570:1 10588:1 10608:1 10609:1 10625:1 10630:2 10638:2 10655:1 10712:1 10724:1 10767:1 10769:1 10790:2 10794:1 10800:1 10811:1 10813:1 10823:1 10841:1 10844:1 10846:1 10865:1 10867:1 10876:1 10886:1 10888:1 10890:2 10895:1 10916:1 10950:1 10953:3 10967:3 10988:1 10990:6 11055:1 11056:1 11067:1 11079:1 11112:1 11117:1 11180:1 11211:1 11224:1 11254:3 11257:1 11260:1 11262:1 11269:2 11291:1 11298:1 11299:1 11302:1 11312:1 11347:4 11372:1 11377:1 11378:1 11381:1 11433:1 11434:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11516:1 11544:1 11554:1 11579:1 11583:3 11590:1 11613:1 11627:1 11643:2 11659:1 11660:1 11674:1 11675:1 11677:1 11686:2 11706:1 11715:1 11752:3 11753:1 11789:1 11819:1 11820:1 11830:1 11852:1 11860:1 11861:1 11866:1 11890:1 11898:1 11901:1 11908:1 11914:2 11930:2 11933:3 11962:3 12012:2 12020:1 12025:1 12026:1 12029:1 12032:1 12042:1 12059:1 12074:3 12097:3 12108:1 12111:1 12132:1 12139:1 12156:1 12195:1 12200:1 12223:1 12265:1 12291:1 12304:3 12306:1 12315:1 12346:1 12359:2 12362:3 12382:1 12411:3 12426:1 12433:1 12439:1 12526:1 12542:1 12543:2 12544:3 12545:1 12571:1 12592:1 12602:1 12603:3 12615:1 12619:2 12686:1 12702:1 12722:1 12726:1 12732:3 12753:1 12798:1 12806:1 12807:1 12810:2 12847:1 12872:1 12896:1 12935:1 12950:1 12953:1 12991:1 12996:1 13009:2 13091:3 13100:1 13113:1 13131:7 13142:1 13151:2 13153:3 13155:1 13161:1 13180:1 13189:1 13199:1 13222:1 13246:1 13250:1 13255:1 13256:1 13259:2 13270:1 13283:1 13291:2 13315:1 13334:1 13339:1 13341:1 13393:1 13417:1 13454:2 13503:1 13523:1 13550:3 13556:1 13584:1 13588:4 13595:3 13609:1 13611:5 13647:1 13663:1 13666:1 13690:2 13726:1 13732:1 13734:1 13747:2 13756:2 13757:1 13774:1 13802:1 13807:1 13808:1 13829:1 13830:3 13833:1 13840:1 13847:1 13854:1 13862:1 13880:1 13887:3 13913:1 13933:2 13937:1 13938:1 13973:1 14076:1 14081:1 14116:2 14120:1 14123:4 14124:1 14127:1 14138:1 14146:1 14149:1 14170:1 14191:2 14198:1 14201:1 14204:1 14233:1 14243:2 14277:1 14290:1 14304:2 14339:3 14343:1 14345:2 14359:1 14399:1 14401:1 14414:1 14426:3 14445:1 14455:1 14486:1 14489:1 14508:1 14525:1 14530:1 14560:1 14577:4 14591:1 14602:3 14611:1 14624:1 14643:1 14649:1 14667:1 14668:1 14705:1 14730:1 14741:1 14757:1 14794:1 14795:1 14796:2 14797:3 14800:1 14803:4 14808:1 14812:1 14814:1 14825:1 14833:1 14861:1 14913:1 14927:3 14961:1 14971:2 14978:1 15003:1 15013:3 15037:1 15060:1 15084:1 15112:1 15129:1 15134:3 15157:1 15166:2 15183:1 15253:1 15328:3 15329:1 15332:1 15334:1 15349:1 15395:1 15396:1 15408:3 15410:1 15424:1 15428:1 15449:1 15450:1 15470:2 15483:1 15494:1 15497:1 15511:1 15532:3 15549:1 15638:1 15641:1 15651:1 15655:1 15670:1 15681:1 15692:3 15693:1 15698:1 15700:1 15715:1 15748:1 15761:1 15774:2 15820:2 15849:1 15863:4 15924:2 15941:1 15950:3 15951:1 15961:2 15969:1 15982:1 15987:1 16004:2 16018:1 16028:2 16081:1 16114:2 16128:3 16141:2 16151:1 16160:2 16165:2 16172:1 16173:2 16174:1 16184:1 16189:1 16233:1 16243:1 16275:1 16306:3 16312:1 16325:1 16345:1 16359:1 16403:1 16404:3 16452:1 16459:3 16468:1 16472:1 16484:1 16488:1 16552:1 16553:2 16599:1 16607:1 16612:8 16613:1 16618:1 16624:1 16629:2 16640:1 16670:2 16690:3 16693:1 16717:1 16734:1 16741:1 16745:1 16756:1 16760:1 16763:1 16791:1 16829:1 16830:2 16885:1 16922:1 16960:1 16963:1 16966:2 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:2 17158:1 17167:1 17178:1 17212:1 17234:1 17237:2 17245:1 17255:1 17272:1 17279:1 17287:1 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:1 17374:1 17411:1 17413:4 17419:1 17436:1 17474:1 17483:3 17496:1 17516:1 17535:3 17565:1 17569:1 17584:2 17625:1 17630:1 17632:1 17639:3 17668:3 17684:1 17711:1 17712:1 17735:1 17737:1 17750:1 17754:1 17762:1 17778:2 17787:1 17844:1 17850:2 17857:1 17946:1 17962:1 17968:1 17975:1 17980:2 18000:1 18004:1 18018:1 18025:1 18039:1 18041:1 18043:2 18050:2 18060:1 18070:3 18072:1 18076:1 18106:1 18126:4 18127:2 18151:1 18154:1 18185:1 18189:1 18196:5 18210:1 18240:1 18245:1 18252:2 18256:1 18259:1 18276:1 18283:2 18286:1 18291:1 18304:1 18327:1 18365:1 18366:1 18395:1 18403:2 18424:4 18430:1 18436:13 18444:1 18447:1 18451:1 18455:1 18459:1 18482:1 18485:1 18486:1 18506:1 18528:1 18532:1 18537:1 18546:1 18550:1 18569:1 18575:1 18586:1 18591:3 18604:1 18630:1 18643:1 18680:1 18683:1 18695:1 18698:1 18712:1 18720:1 18723:2 18736:3 18738:1 18750:1 18761:1 18780:1 18805:1 18812:1 18845:1 18867:1 18905:1 18918:1 18962:1 18968:1 18969:1 19069:4 19095:1 19148:1 19152:1 19172:1 19218:1 19225:1 19229:1 19251:2 19254:2 19259:1 19279:1 19287:3 19291:1 19300:1 19304:1071 19308:1 19324:1 19367:2 19368:1 19402:1 19431:1 19437:1 19444:1 19486:1 19506:1 19529:2 19535:3 19542:1 19548:2 19551:1 19552:1 19583:1 19629:3 19633:1 19642:1 19666:14 19692:2 19716:1 19747:1 19762:1 19774:2 19794:1 19804:1 19820:1 19822:1 19837:2 19844:2 19868:1 19882:1 19898:2 19920:1 19927:1 19953:1 19978:2 19981:1 19982:1 20021:1 20027:1 20033:1 20036:1 20038:1 20043:2 20049:1 20053:1 20058:1 20074:4 20078:1 20092:1 20106:1 20131:6 20147:1 20148:1 20172:5 20173:1 20183:1 20188:1 20198:1 20242:1 20296:1 20300:1 20313:1 20329:3 20331:1 20336:3 20339:1 20351:1 20372:1 20374:1 20375:1 20399:1 20429:1 20463:1 20468:1 20501:1 20516:1 20528:1 20559:2 20570:1 20577:1 20584:1 20590:1 20593:1 20597:1 20598:1 20599:1 20608:1 20616:1 20620:2 20629:2 20641:1 20664:1 20666:1 20687:1 20692:2 20708:1 20754:1 20760:1 20783:1 20791:2 20805:1 20817:2 20828:1 20848:1 20850:1 20875:1 20886:1 20901:1 20918:1 20928:1 20932:1 20962:1 20964:2 21002:3 21032:1 21057:3 21058:2 21062:2 21068:1 21074:1 21080:1 21127:1 21129:1 21136:1 21143:1 21255:2 21259:2 21271:1 21296:1 21299:3 21314:1 21319:1 21324:1 21389:2 21429:4 21464:1 21468:1 21469:1 21472:1 21511:1 21526:1 21529:1 21546:2 21550:1 21552:1 21561:1 21579:1 21588:2 21605:1 21613:2 21647:1 21656:2 21659:1 21673:1 21702:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:1 21863:2 21872:1 21894:1 21901:1 21907:1 21952:1 21965:1 21971:1 21976:1 21985:1 22005:1 22022:2 22045:1 22058:1 22061:1 22078:1 22122:1 22177:1 22225:1 22254:1 22258:1 22265:1 22272:2 22273:1 22282:2 22283:1 22289:1 22298:1 22325:1 22338:1 22346:3 22361:1 22363:1 22370:1 22371:1 22378:1 22383:1 22391:1 22408:1 22413:1 22415:5 22437:1 22447:1 22477:1 22507:2 22513:1 22519:1 22525:7 22532:1 22543:2 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22625:1 22632:1 22661:1 22665:1 22672:1 22676:1 22679:1 22682:1 22697:1 22698:2 22716:2 22720:1 22735:1 22766:2 22801:1 22818:1 22834:1 22838:1 22870:1 22886:3 22892:1 22897:1 22933:1 22940:1 22943:1 22947:1 22959:1 22975:2 23029:1 23034:1 23052:3 23053:2 23056:3 23072:2 23073:1 23096:1 23111:2 23124:1 23134:1 23142:3 23144:1 23145:2 23174:1 23177:1 23178:1 23185:1 23226:1 23231:1 23233:1 23241:1 23251:1 23260:1 23263:1 23291:1 23292:1 23309:1 23315:13 23323:3 23327:1 23329:1 23352:2 23361:1 23364:1 23384:1 23385:1 23389:1 23437:1 23497:1 23501:1 23509:1 23530:2 23535:1 23594:1 23602:2 23614:1 23616:1 23625:2 23634:1 23649:2 23655:1 23663:1 23664:1 23702:1 23711:1 23724:1 23785:1 23830:1 23837:1 23844:1 23859:1 23860:1 23887:1 23888:1 23903:2 23906:1 23926:2 23928:1 23944:3 23955:1 23978:1 23984:1 23992:2 23997:1 24079:1 24125:1 24129:1 24144:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24214:1 24218:1 24228:1 24232:1 24270:2 24278:1 24280:1 24282:1 24291:1 24309:1 24325:1 24336:1 24343:5 24376:2 24393:1 24423:1 24425:1 24443:1 24488:1 24513:1 24526:2 24561:2 24566:1 24592:1 24594:1 24601:1 24620:3 24622:1 24623:1 24638:1 24652:1 24661:1 24728:1 24731:1 24746:2 24748:1 24761:1 24762:1 24764:2 24788:1 24801:1 24822:1 24839:1 24863:1 24902:1 24912:3 24923:3 24927:1 24944:1 24955:1 24956:1 24957:1 24973:1 24995:1 25028:1 25032:1 25068:1 25085:1 25099:2 25100:2 25115:1 25127:1 25136:1 25148:1 25150:1 25184:1 25206:1 25210:1 25221:1 25222:1 25224:3 25226:2 25228:4 25229:1 25235:1 25236:2 25238:1 25249:2 25255:2 25268:2 25297:1 25300:2 25301:1 25315:1 25327:1 25337:2 25343:3 25363:1 25369:1 25370:1 25381:1 25393:1 25410:1 25460:1 25478:1 25504:2 25530:2 25540:1 25545:3 25565:1 25601:1 25647:2 25648:1 25684:1 25692:1 25693:1 25752:3 25767:1 25781:1 25785:3 25794:2 25828:2 25861:1 25879:1 25887:1 25900:1 25903:3 25909:1 25915:1 25922:1 25927:1 25929:1 25931:3 25988:1 26007:1 26023:1 26060:8 26069:1 26083:3 26112:1 26122:1 26138:1 26146:2 26168:1 26180:1 26187:1 26236:1 26240:2 26248:2 26252:1 26259:1 26261:2 26263:4 26280:1 26285:2 26288:5 26293:1 26294:2 26304:1 26307:1 26311:1 26317:1 26320:1 26328:1 26329:1 26334:1 26363:2 26379:2 26410:1 26420:2 26422:1 26482:1 26494:1 26495:1 26511:1 26519:1 26560:1 26563:1 26579:1 26589:1 26593:1 26614:2 26646:1 26648:1 26656:1 26662:1 26698:1 26760:1 26776:1 26805:1 26847:1 26872:1 26882:1 26883:1 26886:1 26901:1 26907:1 26925:1 26939:1 26954:1 26957:2 26983:1 26989:1 26997:1 26998:1 27020:3 27047:4 27070:1 27089:1 27091:1 27094:1 27095:1 27118:1 27119:1 27127:1 27138:1 27157:1 27178:4 27179:1 27212:3 27234:1 27236:1 27260:1 27278:1 27299:2 27320:2 27322:1 27327:1 27330:1 27334:2 27341:1 27375:2 27378:1 27381:1 27387:1 27415:1 27438:1 27439:1 27454:2 27459:1 27482:1 27484:2 27510:1 27535:1 27539:1 27555:1 27583:5 27608:2 27665:1 27670:1 27708:1 27714:1 27732:1 27780:1 27781:1 27804:1 27807:1 27822:1 27826:1 27845:1 27875:1 27888:1 27917:1 27940:4 27957:2 27965:3 27974:1 27990:1 27991:1 27997:1 28011:1 28033:1 28043:1 28044:4 28071:1 28087:2 28109:5 28151:2 28188:1 28218:5 28226:2 28242:2 28251:2 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28335:2 28337:1 28347:1 28361:1 28372:1 28377:1 28384:1 28398:1 28409:1 28414:2 28458:1 28529:1 28533:1 28554:2 28589:1 28616:4 28686:1 28736:1 28755:2 28858:1 28860:4 28872:1 28893:1 28928:1 28938:1 28980:1 28983:1 28992:12 28993:2 28996:5 28998:1 28999:2 29011:1 29034:5 29048:1 29092:1 29100:2 29115:1 29120:1 29131:1 29142:1 29146:1 29176:9 29180:1 29184:1 29190:1 29213:1 29216:1 29221:1 29228:1 29236:1 29245:1 29251:1 29262:1 29267:1 29268:2 29278:1 29293:1 29295:1 29300:1 29302:1 29343:1 29347:1 29362:1 29364:1 29387:1 29388:1 29391:1 29405:2 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29518:1 29525:1 29529:1 29532:1 29539:1 29551:1 29566:1 29570:1 29579:1 29587:1 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29717:1 29722:1 29723:1 29740:2 29749:1 29758:1 29767:3 29773:1 29780:2 29782:1 29788:1 29801:1 29832:1 29840:1 29882:2 29900:1 29914:2 29918:1 29927:1 29931:2 29949:1 29969:1 29970:1 30001:2 30012:1 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30150:1 30187:1 30194:5 30208:1 30210:1 30231:5 30243:3 30250:1 30320:7 30322:2 30326:1 30328:1 30331:2 30332:1 30344:1 30363:2 30367:3 30371:2 30408:1 9 11:1 14:1 50:2 79:1 108:1 109:1 135:1 152:1 176:1 187:1 189:3 201:1 206:2 236:4 257:1 283:1 303:1 315:2 325:1 327:14 338:1 356:1 357:2 366:1 378:1 419:1 441:2 460:3 478:1 480:1 550:1 591:2 592:1 600:1 603:2 625:1 635:2 637:1 638:1 657:2 671:1 682:1 691:1 693:1 724:1 732:1 736:1 774:1 788:1 802:1 804:1 819:1 824:1 833:1 843:1 854:1 856:1 857:1 883:2 885:3 899:1 900:1 914:7 929:1 933:1 938:2 941:5 946:1 952:1 953:1 959:1 964:3 986:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:1 1060:1 1076:1 1080:1 1084:1 1102:1 1133:1 1142:1 1156:2 1194:1 1201:2 1213:1 1258:1 1300:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1441:1 1464:2 1471:4 1474:1 1491:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:1 1573:1 1574:1 1614:1 1621:1 1639:1 1641:2 1642:2 1650:1 1677:1 1680:1 1700:1 1701:1 1706:3 1712:1 1732:1 1733:1 1775:1 1818:1 1830:1 1844:1 1852:1 1856:1 1863:1 1873:1 1878:1 1908:1 1958:9 1965:1 1970:2 1986:1 1991:1 1996:1 1997:1 2018:3 2019:2 2051:1 2053:1 2057:1 2063:1 2088:1 2128:1 2130:1 2136:3 2143:1 2151:1 2152:1 2186:1 2211:1 2213:1 2218:1 2219:1 2226:1 2232:1 2234:1 2238:1 2239:2 2240:2 2255:1 2274:1 2276:1 2280:1 2281:1 2284:2 2285:3 2288:4 2291:1 2292:2 2293:2 2296:1 2297:1 2298:1 2301:1 2314:1 2316:6 2318:1 2319:6 2332:1 2348:1 2369:1 2380:1 2386:1 2393:1 2407:1 2411:1 2418:1 2430:2 2437:1 2445:1 2448:1 2466:1 2482:2 2493:3 2505:1 2515:1 2532:1 2537:1 2561:5 2570:1 2595:2 2603:1 2608:1 2615:3 2618:2 2620:1 2661:2 2699:1 2701:2 2706:1 2709:1 2717:2 2720:1 2728:1 2740:1 2745:1 2763:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:4 2831:2 2841:1 2848:1 2882:1 2883:1 2933:2 2941:9 2959:2 2975:1 2980:1 3002:6 3032:1 3036:3 3038:1 3061:1 3064:1 3092:1 3146:1 3176:1 3177:1 3225:1 3240:1 3259:1 3269:1 3280:1 3312:3 3325:1 3339:1 3343:1 3348:1 3384:1 3386:2 3416:1 3434:4 3481:1 3487:1 3544:1 3551:1 3557:1 3561:1 3563:1 3564:1 3568:1 3571:1 3578:1 3581:1 3615:1 3619:1 3628:1 3635:2 3640:1 3648:1 3665:1 3670:1 3681:1 3699:3 3706:1 3708:2 3709:1 3715:1 3741:3 3773:1 3784:1 3787:1 3792:3 3796:1 3800:2 3803:2 3848:1 3853:1 3855:4 3857:1 3858:2 3859:6 3873:1 3888:1 3895:2 3897:1 3903:1 3904:6 3905:1 3906:1 3924:2 3956:2 3958:1 3967:1 3969:1 3978:1 3986:1 3993:1 4016:1 4019:2 4022:1 4053:1 4054:1 4058:1 4077:2 4084:1 4089:1 4093:1 4099:2 4100:1 4108:4 4109:2 4114:1 4153:1 4169:2 4187:1 4196:2 4204:1 4237:1 4239:1 4241:1 4250:1 4307:2 4315:1 4316:1 4325:1 4364:1 4378:2 4381:1 4388:1 4405:1 4474:4 4494:1 4535:1 4546:1 4555:1 4572:1 4601:1 4675:1 4697:1 4724:1 4728:2 4741:3 4754:1 4804:1 4807:7 4843:1 4854:1 4870:1 4875:1 4889:1 4903:3 4918:1 4921:1 4951:1 4954:1 5009:1 5019:10 5021:2 5041:2 5052:1 5078:1 5083:5 5093:1 5115:1 5117:1 5131:1 5135:3 5151:2 5152:3 5153:1 5154:1 5159:3 5173:2 5175:2 5178:1 5185:1 5187:1 5188:2 5211:1 5242:1 5277:2 5299:1 5317:1 5321:1 5328:1 5336:1 5367:1 5385:1 5396:2 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5518:4 5520:1 5522:1 5535:2 5538:1 5551:1 5553:1 5567:1 5602:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:1 5698:1 5704:1 5705:1 5708:1 5710:2 5712:1 5722:1 5758:3 5763:1 5772:1 5792:2 5808:2 5815:1 5816:1 5849:3 5873:2 5888:1 5897:2 5914:4 5917:1 5921:1 5945:1 5977:1 6011:1 6021:1 6028:1 6059:2 6066:1 6097:1 6152:1 6183:2 6205:9 6226:2 6231:2 6238:1 6248:1 6257:1 6301:1 6356:1 6380:1 6384:1 6385:1 6390:1 6400:1 6404:1 6426:4 6437:1 6442:1 6485:1 6501:3 6505:1 6515:1 6518:1 6519:1 6520:3 6525:2 6526:8 6527:2 6539:1 6591:1 6646:2 6681:2 6750:1 6763:1 6769:1 6777:1 6798:1 6803:1 6814:1 6822:1 6844:1 6851:1 6855:1 6898:1 6916:1 6919:2 6924:1 6929:1 6940:5 6960:1 6968:1 6973:1 6997:1 7002:1 7029:1 7045:1 7058:1 7086:1 7087:2 7091:1 7100:1 7113:1 7114:2 7131:1 7147:1 7150:2 7177:1 7212:1 7253:7 7255:1 7273:1 7281:1 7300:1 7302:1 7306:1 7310:1 7336:1 7337:1 7411:2 7416:1 7435:1 7452:1 7479:1 7491:3 7505:2 7509:1 7516:1 7527:1 7549:2 7554:1 7555:1 7579:1 7583:1 7596:1 7603:1 7627:1 7644:1 7663:1 7672:1 7725:1 7726:2 7756:1 7757:9 7771:1 7784:1 7785:2 7786:1 7812:2 7831:34 7836:1 7854:2 7855:6 7857:1 7860:1 7883:1 7908:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:2 8035:1 8087:1 8093:1 8108:1 8112:2 8138:1 8172:1 8223:1 8226:1 8233:1 8250:1 8265:2 8266:3 8267:1 8285:1 8287:1 8317:1 8324:1 8333:1 8338:2 8343:1 8348:2 8357:1 8358:3 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:1 8541:1 8589:1 8591:1 8604:2 8614:3 8615:1 8620:1 8624:2 8628:1 8629:1 8638:1 8646:1 8656:1 8664:5 8669:1 8671:1 8701:1 8716:1 8728:1 8736:1 8739:2 8740:2 8743:2 8744:1 8746:1 8748:1 8749:4 8752:1 8753:1 8757:1 8784:2 8792:3 8816:1 8822:1 8826:2 8837:1 8853:1 8892:1 8906:1 8930:1 8939:1 8958:1 8968:1 8974:1 9017:1 9033:2 9073:3 9074:1 9078:1 9090:2 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9177:1 9188:2 9199:2 9222:1 9241:1 9252:1 9275:1 9276:1 9292:1 9295:1 9307:1 9316:1 9323:1 9334:3 9355:1 9366:2 9373:1 9394:1 9411:1 9463:1 9467:3 9469:1 9474:2 9486:14 9508:2 9510:1 9523:1 9572:1 9587:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:4 9634:1 9659:1 9676:1 9684:3 9728:1 9749:1 9758:1 9793:1 9794:1 9810:1 9831:1 9844:1 9845:1 9851:1 9861:1 9869:2 9877:1 9886:1 9895:1 9919:1 9949:5 9962:2 9965:1 9966:3 9972:2 9991:1 10035:2 10065:1 10093:1 10108:3 10113:1 10120:1 10135:1 10143:1 10145:1 10147:2 10150:1 10158:2 10171:1 10175:1 10179:1 10196:1 10202:1 10210:1 10211:1 10213:1 10225:1 10229:1 10240:4 10260:1 10268:1 10279:1 10309:1 10336:1 10345:1 10368:1 10401:1 10402:1 10418:1 10481:1 10520:1 10525:1 10570:1 10588:1 10608:1 10609:1 10625:1 10630:2 10638:2 10655:1 10712:1 10724:1 10767:1 10769:1 10790:2 10794:1 10800:1 10809:1 10811:1 10813:1 10823:1 10841:1 10844:1 10846:1 10865:1 10867:1 10876:1 10886:1 10888:1 10890:2 10895:1 10916:1 10950:1 10953:3 10967:4 10988:1 10990:7 11055:1 11056:1 11067:1 11079:1 11112:1 11117:1 11180:1 11211:1 11224:1 11254:3 11257:1 11260:1 11262:1 11269:2 11291:1 11298:1 11299:1 11302:1 11312:1 11347:4 11372:1 11377:1 11378:1 11381:1 11433:1 11434:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11516:1 11544:1 11554:1 11579:1 11583:3 11590:1 11613:1 11627:1 11643:2 11659:1 11660:1 11674:1 11675:1 11677:1 11686:2 11706:1 11715:1 11752:4 11753:1 11789:1 11819:1 11820:1 11830:1 11831:1 11852:1 11860:1 11861:1 11866:1 11890:1 11898:1 11901:1 11908:1 11914:2 11930:2 11933:3 11962:3 11963:1 12012:2 12020:1 12025:1 12026:1 12029:1 12032:1 12042:1 12049:1 12059:1 12074:4 12097:4 12108:1 12111:1 12132:1 12139:1 12156:1 12195:1 12200:1 12223:1 12263:1 12265:1 12291:1 12304:3 12306:1 12315:1 12346:1 12359:2 12362:3 12382:1 12411:3 12426:1 12433:1 12439:1 12526:1 12542:1 12543:2 12544:3 12545:1 12571:1 12592:1 12602:1 12603:3 12615:1 12619:2 12686:1 12702:1 12722:1 12726:1 12732:3 12753:1 12798:1 12806:1 12807:1 12810:2 12847:1 12872:1 12896:1 12935:1 12950:1 12953:1 12991:1 12996:1 13009:2 13091:4 13100:1 13113:1 13131:7 13142:1 13151:2 13153:3 13155:1 13161:1 13180:1 13189:1 13199:1 13222:1 13246:1 13250:1 13255:1 13256:1 13259:2 13270:1 13283:1 13291:2 13292:1 13315:1 13334:1 13339:1 13341:1 13393:1 13417:1 13454:3 13503:1 13523:1 13550:4 13556:1 13584:1 13588:4 13595:3 13609:1 13611:5 13647:1 13663:1 13666:1 13690:2 13726:1 13732:1 13734:1 13747:2 13756:2 13757:1 13774:1 13802:1 13807:1 13808:1 13829:1 13830:3 13833:1 13840:1 13847:1 13854:1 13862:1 13865:1 13880:1 13887:3 13913:1 13933:2 13937:1 13938:1 13973:1 13987:1 14076:1 14081:1 14116:2 14120:1 14123:4 14124:1 14127:1 14138:1 14146:1 14149:1 14170:1 14191:2 14198:1 14201:1 14204:1 14233:1 14243:2 14277:1 14290:1 14292:1 14304:2 14339:3 14343:1 14345:2 14359:1 14399:1 14401:1 14414:1 14426:3 14445:2 14455:1 14486:1 14489:1 14508:1 14525:1 14530:1 14560:1 14577:5 14591:1 14602:3 14611:1 14624:1 14643:1 14649:1 14667:1 14668:1 14705:1 14730:1 14741:1 14757:1 14794:1 14795:1 14796:2 14797:3 14800:1 14803:4 14808:1 14812:1 14814:1 14825:1 14833:1 14861:1 14913:1 14927:3 14961:1 14971:2 14978:1 14984:1 15003:1 15013:3 15037:1 15060:1 15084:1 15112:1 15129:1 15134:3 15157:1 15166:2 15183:1 15253:1 15328:3 15329:1 15332:1 15334:1 15349:1 15395:1 15396:1 15408:3 15410:1 15424:1 15428:1 15444:1 15449:1 15450:1 15470:2 15483:1 15494:1 15497:1 15511:1 15532:4 15549:1 15638:2 15641:1 15651:1 15655:1 15670:1 15681:1 15692:3 15693:1 15698:1 15700:1 15715:1 15748:1 15761:1 15774:2 15820:2 15849:1 15863:4 15924:2 15941:1 15950:3 15951:1 15961:2 15969:1 15982:1 15987:1 16004:2 16018:1 16028:2 16081:1 16114:2 16128:3 16141:2 16151:1 16160:2 16165:2 16172:1 16173:2 16174:1 16184:1 16189:1 16233:1 16243:1 16275:1 16306:3 16312:1 16325:1 16345:1 16359:1 16403:2 16404:3 16406:1 16452:1 16459:3 16468:1 16472:1 16484:1 16488:2 16552:1 16553:2 16599:1 16607:1 16612:9 16613:1 16618:1 16624:1 16629:2 16640:1 16670:2 16690:3 16693:1 16698:1 16717:1 16734:1 16741:1 16745:1 16756:1 16760:1 16763:1 16791:1 16829:1 16830:2 16885:1 16922:1 16960:1 16963:1 16966:2 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:2 17158:1 17167:1 17178:1 17212:1 17234:1 17237:2 17245:1 17255:1 17272:1 17279:1 17287:1 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:2 17374:1 17411:1 17413:4 17419:1 17436:1 17474:1 17478:1 17483:3 17496:1 17516:1 17535:3 17565:1 17569:1 17584:2 17625:1 17630:1 17632:1 17639:4 17668:3 17684:1 17711:1 17712:1 17735:1 17737:1 17750:1 17754:1 17762:1 17778:3 17787:1 17844:1 17850:2 17857:1 17946:1 17962:1 17968:1 17975:1 17980:2 18000:1 18004:1 18018:1 18025:1 18039:1 18041:1 18043:2 18050:2 18060:1 18070:3 18072:1 18076:1 18106:1 18126:4 18127:2 18151:1 18154:1 18185:1 18189:1 18196:5 18210:1 18240:1 18245:1 18252:2 18256:1 18259:1 18276:1 18283:2 18286:1 18291:1 18304:1 18327:1 18365:1 18366:2 18395:1 18403:2 18424:4 18430:1 18436:14 18444:1 18447:1 18451:1 18455:1 18459:1 18482:1 18485:1 18486:1 18506:1 18528:1 18532:1 18537:1 18546:1 18550:1 18569:1 18575:1 18586:1 18591:3 18604:1 18630:1 18643:1 18680:1 18683:1 18695:1 18698:1 18712:1 18720:1 18723:2 18736:3 18738:1 18750:1 18761:1 18780:1 18805:1 18812:1 18845:1 18867:1 18905:1 18918:1 18962:1 18968:1 18969:1 19069:4 19095:1 19148:1 19152:1 19172:1 19191:1 19199:1 19218:1 19225:1 19229:1 19245:1 19251:2 19254:2 19259:1 19279:1 19287:3 19291:1 19300:1 19304:1111 19308:1 19324:1 19367:2 19368:1 19402:1 19431:1 19437:1 19444:1 19486:1 19506:1 19521:1 19529:2 19535:3 19542:1 19548:2 19551:1 19552:1 19583:1 19629:4 19633:1 19642:1 19666:14 19692:3 19716:1 19747:1 19762:1 19774:2 19794:1 19804:1 19820:1 19822:1 19837:2 19844:2 19868:1 19882:1 19898:2 19920:1 19927:1 19928:1 19953:1 19978:2 19981:1 19982:1 20021:1 20027:1 20033:1 20036:1 20038:1 20043:2 20049:1 20053:1 20058:1 20074:4 20078:1 20092:1 20106:1 20131:6 20147:1 20148:1 20172:5 20173:1 20183:1 20188:1 20198:1 20242:1 20296:1 20300:1 20313:1 20329:3 20331:1 20336:3 20339:1 20351:1 20372:1 20374:1 20375:1 20399:1 20429:1 20463:1 20468:1 20501:1 20516:1 20528:1 20559:2 20570:1 20577:1 20584:1 20590:1 20593:1 20597:1 20598:1 20599:1 20608:1 20616:1 20620:2 20629:2 20641:1 20664:1 20666:1 20687:1 20692:2 20708:1 20754:1 20760:1 20783:1 20791:2 20805:1 20817:2 20828:1 20848:1 20850:1 20875:1 20886:1 20901:1 20918:1 20928:1 20932:1 20962:1 20964:2 21002:3 21032:1 21057:3 21058:2 21062:2 21068:1 21074:1 21080:1 21127:1 21129:1 21136:2 21143:1 21255:2 21259:2 21271:1 21290:1 21296:1 21299:3 21314:1 21319:1 21324:1 21389:2 21429:4 21464:1 21468:1 21469:1 21472:1 21511:1 21526:1 21529:1 21546:2 21550:1 21552:1 21561:1 21579:1 21588:2 21605:1 21613:2 21647:1 21656:2 21659:1 21673:1 21702:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:1 21863:2 21872:1 21894:1 21901:1 21907:1 21952:1 21965:1 21971:1 21976:1 21985:1 22005:1 22022:2 22045:1 22058:1 22061:1 22078:1 22122:1 22177:1 22225:1 22254:1 22258:1 22265:1 22272:2 22273:1 22282:2 22283:1 22289:1 22298:1 22325:1 22338:1 22346:3 22361:1 22363:1 22370:1 22371:1 22378:1 22383:2 22391:1 22408:1 22413:1 22415:5 22437:1 22447:1 22477:1 22507:2 22513:1 22519:1 22525:7 22532:1 22543:2 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22625:1 22632:1 22661:1 22665:2 22672:1 22676:1 22679:1 22682:1 22697:1 22698:2 22716:2 22720:1 22735:1 22766:2 22801:1 22818:1 22834:1 22838:1 22870:1 22886:3 22892:1 22897:1 22933:1 22940:1 22943:1 22947:2 22959:1 22975:2 23029:1 23034:1 23052:3 23053:2 23056:3 23072:2 23073:1 23096:1 23111:2 23124:1 23134:1 23142:3 23144:1 23145:2 23174:1 23177:1 23178:1 23185:1 23226:1 23231:1 23233:1 23241:1 23251:1 23260:1 23263:1 23291:1 23292:1 23309:2 23315:14 23320:1 23323:3 23327:1 23329:1 23352:2 23361:1 23364:1 23384:1 23385:1 23389:1 23437:1 23497:1 23501:1 23509:1 23530:2 23535:1 23594:1 23602:2 23614:1 23616:1 23625:2 23634:1 23649:2 23655:1 23663:1 23664:1 23702:1 23711:1 23724:1 23785:1 23830:1 23837:1 23844:1 23859:1 23860:1 23887:1 23888:1 23903:2 23906:1 23926:2 23928:1 23944:3 23955:1 23978:1 23984:1 23992:2 23997:1 24079:1 24125:1 24129:1 24144:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24209:1 24214:1 24218:1 24228:1 24232:1 24270:2 24278:1 24280:1 24282:1 24291:1 24309:1 24325:1 24336:1 24343:6 24351:1 24376:2 24393:1 24423:1 24425:1 24443:1 24488:1 24513:1 24526:2 24561:2 24566:1 24592:1 24594:1 24601:1 24620:3 24622:1 24623:1 24638:1 24652:1 24661:1 24728:1 24731:1 24746:2 24748:1 24761:1 24762:1 24764:2 24788:1 24801:1 24822:1 24839:1 24862:1 24863:1 24902:1 24912:4 24923:3 24927:1 24944:1 24955:1 24956:1 24957:1 24973:1 24995:1 25028:1 25032:1 25068:1 25085:1 25099:2 25100:2 25115:1 25127:1 25136:1 25148:1 25150:1 25184:1 25206:1 25210:1 25221:1 25222:1 25224:3 25226:2 25228:4 25229:1 25235:1 25236:2 25238:1 25249:2 25255:2 25268:2 25297:1 25300:2 25301:1 25315:2 25327:1 25337:2 25343:3 25363:1 25369:1 25370:1 25381:1 25393:1 25410:1 25460:1 25478:1 25504:2 25530:2 25540:1 25545:3 25565:2 25601:1 25647:2 25648:1 25684:1 25692:1 25693:1 25752:3 25767:1 25781:1 25785:3 25794:2 25828:2 25861:1 25879:1 25887:1 25900:1 25903:3 25909:1 25915:1 25922:1 25927:1 25929:1 25931:3 25988:1 26007:1 26023:1 26060:8 26069:1 26083:3 26112:1 26122:1 26138:1 26146:2 26168:1 26180:1 26187:1 26236:1 26240:2 26248:2 26252:1 26259:1 26261:2 26263:4 26280:1 26285:2 26288:6 26293:1 26294:2 26304:1 26307:1 26311:1 26317:1 26320:1 26328:1 26329:1 26334:1 26363:2 26379:2 26410:1 26420:2 26422:1 26482:1 26494:1 26495:1 26511:1 26519:1 26560:1 26563:1 26579:1 26589:1 26593:1 26614:2 26646:1 26648:1 26656:1 26662:1 26698:1 26760:1 26776:1 26805:1 26847:1 26872:1 26882:1 26883:1 26886:1 26901:1 26907:1 26925:1 26939:1 26954:1 26957:2 26983:1 26989:1 26997:1 26998:1 27020:3 27047:4 27070:1 27089:1 27091:1 27094:1 27095:1 27118:1 27119:1 27127:1 27138:1 27157:1 27178:4 27179:1 27212:3 27234:1 27236:1 27260:1 27278:1 27299:2 27320:2 27322:1 27327:1 27330:1 27334:2 27341:1 27375:2 27378:1 27381:1 27387:1 27415:2 27438:1 27439:1 27454:2 27459:1 27482:1 27484:2 27510:1 27535:1 27539:1 27555:1 27583:5 27608:2 27665:1 27670:1 27708:1 27714:1 27732:1 27780:1 27781:1 27804:1 27807:1 27822:1 27826:1 27845:1 27875:1 27888:1 27917:1 27940:4 27957:2 27965:3 27974:1 27990:1 27991:1 27997:1 28011:1 28033:1 28043:1 28044:4 28071:1 28087:2 28109:6 28151:2 28188:1 28218:5 28226:2 28242:2 28246:1 28251:2 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28335:2 28337:1 28347:1 28361:1 28372:1 28377:1 28384:1 28398:1 28409:1 28414:2 28458:1 28529:1 28533:1 28554:2 28589:1 28616:4 28686:1 28736:1 28755:2 28858:1 28860:5 28872:1 28893:1 28928:1 28938:1 28980:1 28983:1 28992:13 28993:2 28996:5 28998:1 28999:2 29011:1 29034:5 29048:1 29092:1 29100:2 29115:1 29120:1 29131:1 29142:1 29146:1 29176:9 29180:1 29184:1 29190:1 29213:1 29216:1 29221:1 29228:1 29236:1 29245:1 29251:1 29262:1 29267:1 29268:2 29278:1 29293:1 29295:1 29300:1 29302:1 29343:1 29347:1 29362:1 29364:1 29387:1 29388:1 29391:1 29405:2 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29518:1 29525:1 29529:1 29532:1 29539:1 29548:1 29551:1 29566:1 29570:1 29579:1 29587:1 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29717:1 29722:1 29723:1 29740:2 29749:1 29758:1 29767:3 29773:1 29780:2 29782:1 29788:1 29801:1 29832:1 29840:1 29882:2 29890:1 29900:1 29914:2 29918:1 29927:1 29931:2 29949:1 29969:1 29970:1 30001:2 30012:1 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30150:1 30187:1 30194:5 30208:1 30210:1 30231:5 30243:4 30250:1 30320:7 30322:2 30326:1 30328:1 30331:2 30332:1 30344:1 30363:2 30367:3 30371:2 30408:1 9 11:1 14:1 50:2 79:1 108:1 109:1 135:1 152:1 176:1 187:1 189:3 201:1 206:2 236:5 257:1 283:1 303:1 315:2 325:1 327:15 338:1 356:1 357:2 366:1 378:1 419:1 441:2 460:3 478:1 480:1 550:1 591:2 592:1 600:1 603:2 625:1 635:2 637:1 638:1 657:2 671:1 682:1 691:1 693:1 703:1 724:1 732:1 736:1 774:1 788:1 802:1 804:1 819:1 824:1 833:1 843:1 854:1 856:1 857:1 883:3 885:3 897:1 899:1 900:1 914:8 929:1 933:1 938:2 941:5 946:1 952:1 953:1 959:1 964:3 986:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:1 1060:1 1076:1 1080:1 1084:1 1102:1 1133:1 1142:1 1143:1 1156:2 1172:1 1194:1 1201:2 1213:1 1258:2 1300:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1441:1 1464:2 1468:1 1471:4 1474:1 1491:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:1 1573:1 1574:1 1583:1 1614:1 1621:1 1639:1 1641:2 1642:2 1650:1 1677:1 1680:1 1700:1 1701:1 1706:3 1712:1 1732:1 1733:1 1775:1 1818:1 1830:1 1844:1 1852:1 1856:1 1863:1 1873:1 1878:1 1908:1 1958:9 1965:1 1970:2 1986:1 1991:1 1996:1 1997:1 2018:3 2019:2 2051:1 2053:1 2057:1 2063:1 2088:1 2128:1 2130:1 2136:3 2143:1 2151:1 2152:1 2186:1 2211:1 2213:1 2218:1 2219:1 2226:1 2232:1 2234:1 2238:1 2239:2 2240:2 2255:1 2274:1 2276:1 2280:1 2281:1 2284:2 2285:3 2288:4 2291:1 2292:2 2293:2 2296:1 2297:1 2298:1 2301:1 2314:1 2316:6 2318:1 2319:6 2332:1 2348:1 2369:1 2380:1 2386:1 2393:1 2407:1 2411:1 2418:1 2430:2 2437:1 2445:1 2448:1 2466:1 2482:2 2493:3 2505:1 2515:1 2532:1 2537:1 2561:5 2570:1 2577:1 2595:2 2603:1 2608:1 2615:3 2618:2 2620:1 2661:2 2699:1 2701:2 2706:1 2709:1 2717:2 2720:1 2728:1 2740:1 2745:1 2763:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:4 2831:2 2841:1 2848:1 2880:1 2882:1 2883:1 2933:2 2941:9 2959:2 2975:2 2980:1 3002:6 3032:1 3036:4 3038:1 3061:1 3064:1 3092:1 3146:1 3176:1 3177:1 3225:1 3240:1 3259:1 3269:1 3280:1 3312:3 3325:1 3339:1 3343:1 3348:1 3384:1 3386:2 3416:1 3431:1 3434:4 3481:1 3487:1 3544:1 3551:1 3557:1 3561:1 3563:1 3564:1 3568:1 3571:1 3578:1 3581:1 3587:1 3615:1 3619:1 3628:1 3635:2 3640:1 3648:1 3665:1 3670:1 3678:1 3681:2 3699:3 3706:1 3708:2 3709:1 3715:1 3741:3 3773:1 3784:1 3787:1 3792:3 3796:1 3800:2 3803:2 3848:1 3853:1 3855:4 3857:1 3858:2 3859:6 3873:1 3888:1 3895:2 3897:1 3903:1 3904:6 3905:1 3906:1 3924:2 3938:1 3956:2 3958:1 3967:1 3969:1 3978:1 3986:1 3993:1 4004:1 4016:1 4019:2 4022:1 4032:1 4053:1 4054:1 4058:1 4077:2 4084:1 4085:1 4089:2 4093:1 4099:2 4100:1 4108:4 4109:2 4114:1 4153:1 4169:2 4187:1 4196:2 4204:1 4237:1 4239:1 4241:1 4250:1 4302:1 4307:2 4315:1 4316:1 4325:1 4364:1 4378:2 4381:1 4388:1 4405:1 4474:4 4494:1 4535:1 4546:1 4555:1 4572:1 4601:1 4675:1 4697:1 4724:1 4728:2 4741:3 4751:1 4754:1 4804:1 4807:7 4843:1 4854:1 4870:1 4875:1 4889:1 4903:4 4918:1 4921:1 4951:1 4954:1 5009:1 5019:10 5021:2 5041:2 5052:1 5078:1 5083:5 5093:1 5115:1 5117:1 5131:1 5135:3 5151:2 5152:3 5153:1 5154:1 5159:3 5163:1 5166:1 5173:2 5175:2 5178:1 5185:1 5187:1 5188:2 5211:1 5242:1 5277:2 5299:1 5317:1 5321:1 5326:1 5328:1 5336:2 5367:1 5385:1 5396:2 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5518:4 5520:1 5522:1 5535:2 5538:1 5551:1 5553:1 5567:1 5602:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:1 5698:1 5704:1 5705:1 5708:1 5710:2 5712:1 5722:1 5758:3 5763:1 5772:1 5792:2 5808:2 5815:1 5816:1 5849:3 5873:2 5888:1 5897:2 5914:4 5917:1 5921:1 5945:1 5977:1 6011:1 6021:1 6028:1 6059:2 6066:1 6097:1 6129:1 6152:1 6183:2 6184:1 6205:9 6226:2 6231:2 6238:1 6248:1 6249:1 6257:1 6301:1 6308:1 6356:1 6380:1 6384:1 6385:1 6390:1 6400:1 6404:1 6426:4 6437:1 6442:1 6485:1 6501:3 6505:1 6515:1 6518:1 6519:1 6520:3 6525:2 6526:8 6527:2 6539:1 6568:1 6591:1 6646:2 6681:2 6750:1 6763:1 6769:1 6777:1 6798:1 6803:1 6814:1 6822:1 6844:1 6851:1 6855:1 6898:1 6916:1 6919:2 6924:1 6929:1 6940:5 6960:1 6968:1 6973:1 6997:1 7002:1 7029:1 7045:1 7058:1 7086:1 7087:2 7091:1 7100:1 7113:1 7114:2 7131:1 7147:1 7150:2 7177:1 7212:1 7253:7 7255:1 7273:1 7281:1 7300:1 7302:1 7306:1 7310:1 7336:1 7337:1 7411:2 7416:1 7435:1 7452:1 7479:1 7491:3 7505:2 7509:1 7516:1 7527:1 7549:3 7554:1 7555:1 7579:1 7583:1 7596:1 7603:1 7627:1 7644:1 7663:1 7672:1 7725:1 7726:2 7756:1 7757:9 7771:1 7784:1 7785:2 7786:1 7812:2 7831:34 7836:1 7854:2 7855:6 7857:1 7860:1 7883:1 7908:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:2 8035:1 8087:1 8093:1 8108:1 8112:2 8138:1 8143:1 8172:1 8223:1 8226:1 8233:1 8250:1 8258:1 8265:2 8266:3 8267:1 8269:1 8285:1 8287:1 8317:1 8324:1 8333:1 8338:2 8343:1 8348:2 8357:1 8358:3 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:1 8541:1 8589:1 8591:1 8604:2 8614:3 8615:1 8620:2 8624:2 8628:1 8629:1 8638:1 8646:1 8656:1 8664:5 8669:1 8671:1 8701:1 8716:1 8728:1 8736:1 8739:2 8740:2 8743:2 8744:1 8746:1 8748:1 8749:4 8752:1 8753:1 8757:1 8784:2 8790:1 8792:3 8816:1 8822:1 8826:2 8829:1 8837:1 8853:1 8892:1 8906:1 8930:1 8939:1 8958:1 8968:1 8974:1 8988:1 9017:1 9033:2 9073:3 9074:1 9078:1 9090:2 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9177:1 9188:2 9199:2 9222:1 9241:1 9252:1 9275:1 9276:1 9292:1 9295:1 9307:1 9316:1 9323:1 9334:3 9355:1 9366:2 9373:1 9394:1 9401:1 9411:1 9463:1 9467:3 9469:1 9474:2 9486:15 9508:2 9510:1 9523:1 9572:1 9587:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:5 9634:1 9659:1 9676:1 9684:3 9728:1 9749:1 9758:1 9793:1 9794:1 9808:1 9810:1 9831:1 9844:1 9845:1 9851:1 9861:1 9869:2 9877:1 9886:1 9895:1 9919:1 9949:5 9962:2 9965:1 9966:3 9972:2 9991:1 10035:2 10065:1 10093:1 10108:3 10113:1 10120:1 10135:1 10143:1 10145:1 10147:2 10150:1 10158:2 10171:1 10175:1 10179:1 10196:1 10202:1 10210:1 10211:1 10213:1 10225:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10309:1 10336:1 10345:1 10368:1 10401:1 10402:1 10418:1 10481:1 10520:1 10525:1 10570:1 10588:1 10608:1 10609:1 10625:1 10630:2 10638:2 10655:1 10712:1 10722:1 10724:1 10767:1 10769:1 10790:2 10794:1 10800:1 10809:1 10811:1 10813:1 10823:1 10841:1 10844:1 10846:1 10865:1 10867:1 10876:1 10886:1 10888:1 10890:2 10895:1 10916:1 10934:1 10950:1 10953:3 10967:4 10988:1 10990:7 11055:1 11056:1 11067:1 11079:1 11112:1 11117:1 11159:1 11180:1 11211:1 11224:1 11254:3 11257:1 11260:1 11262:1 11269:2 11291:1 11298:1 11299:1 11302:1 11312:1 11347:5 11372:2 11377:1 11378:1 11381:1 11433:1 11434:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11516:1 11544:1 11554:1 11579:1 11583:3 11590:1 11613:1 11627:1 11643:2 11659:1 11660:1 11674:1 11675:1 11677:1 11686:2 11706:2 11715:1 11749:1 11752:4 11753:1 11789:1 11819:1 11820:1 11830:1 11831:1 11852:1 11860:1 11861:1 11866:1 11890:1 11898:1 11901:1 11908:1 11914:2 11930:2 11933:4 11962:4 11963:1 12012:2 12020:1 12025:1 12026:1 12029:1 12032:1 12042:1 12049:1 12059:1 12074:4 12097:4 12108:1 12111:1 12132:1 12139:1 12156:1 12195:1 12200:1 12223:1 12263:1 12265:1 12291:1 12304:3 12306:1 12315:1 12346:1 12359:2 12362:3 12382:1 12411:3 12426:1 12433:1 12439:1 12526:1 12542:1 12543:2 12544:3 12545:1 12571:1 12592:1 12602:1 12603:3 12608:1 12615:1 12619:2 12686:1 12702:1 12722:1 12726:1 12732:3 12753:1 12798:1 12806:1 12807:1 12810:2 12847:1 12872:1 12896:1 12935:1 12950:1 12953:1 12954:1 12971:1 12991:1 12996:1 13009:2 13091:4 13100:1 13113:1 13131:7 13142:1 13151:2 13153:3 13155:1 13161:1 13180:1 13189:1 13199:1 13222:1 13246:1 13250:1 13255:1 13256:1 13259:2 13270:1 13283:1 13291:2 13292:1 13315:1 13334:1 13339:1 13341:1 13393:1 13417:1 13454:3 13503:1 13523:1 13550:4 13556:1 13584:1 13588:4 13595:3 13609:1 13611:5 13647:1 13663:1 13666:1 13690:2 13726:1 13732:1 13734:1 13747:2 13756:2 13757:1 13774:2 13802:1 13807:1 13808:1 13829:1 13830:3 13833:1 13840:1 13847:1 13854:1 13862:1 13865:1 13880:1 13887:4 13913:1 13933:2 13937:1 13938:1 13973:1 13987:1 14076:1 14081:1 14116:2 14120:1 14123:4 14124:1 14127:1 14138:1 14146:1 14149:1 14170:1 14191:2 14198:1 14201:1 14204:1 14233:1 14243:2 14277:1 14290:1 14292:1 14304:2 14339:3 14343:1 14345:2 14352:1 14359:1 14399:1 14401:1 14414:1 14426:3 14445:3 14455:1 14486:1 14489:1 14508:1 14525:1 14530:1 14560:1 14577:5 14591:1 14602:3 14611:1 14624:1 14643:1 14649:1 14667:1 14668:1 14705:1 14730:1 14732:1 14741:1 14757:1 14794:1 14795:1 14796:2 14797:3 14800:1 14803:5 14808:1 14812:1 14814:1 14825:1 14833:1 14861:1 14913:1 14927:3 14961:1 14971:2 14978:1 14984:1 15003:1 15013:3 15037:1 15060:1 15084:1 15099:1 15112:1 15129:1 15134:4 15152:1 15157:1 15166:2 15183:1 15253:1 15328:3 15329:1 15332:1 15334:1 15349:1 15395:1 15396:1 15408:3 15410:1 15424:1 15428:1 15444:1 15449:2 15450:1 15470:2 15483:1 15494:1 15497:1 15511:1 15532:4 15549:1 15638:2 15641:1 15651:1 15655:1 15670:1 15681:1 15692:3 15693:1 15698:1 15700:1 15715:1 15727:1 15748:1 15761:1 15774:2 15820:2 15849:1 15863:4 15924:2 15941:1 15950:3 15951:1 15961:2 15969:1 15982:1 15987:1 16004:2 16018:1 16028:2 16081:1 16114:2 16128:4 16140:1 16141:2 16151:1 16160:2 16165:2 16172:1 16173:2 16174:1 16184:1 16189:1 16233:1 16243:1 16275:1 16306:4 16312:1 16325:1 16345:1 16359:1 16403:3 16404:3 16406:1 16452:1 16459:3 16468:1 16472:1 16484:1 16488:2 16499:1 16552:1 16553:2 16599:1 16607:1 16612:9 16613:1 16618:1 16624:1 16629:2 16640:1 16670:2 16690:3 16693:1 16698:1 16717:1 16734:1 16741:1 16745:1 16756:1 16760:1 16763:1 16791:1 16829:1 16830:2 16885:1 16922:1 16960:1 16963:1 16966:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:2 17158:1 17167:1 17178:1 17212:1 17234:1 17237:2 17245:1 17255:1 17272:1 17279:1 17287:1 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:2 17374:1 17411:1 17413:4 17419:1 17436:1 17474:1 17478:1 17483:3 17496:1 17516:1 17535:3 17565:1 17569:1 17584:2 17625:1 17630:1 17632:1 17639:4 17668:3 17684:1 17711:1 17712:1 17735:1 17737:1 17750:1 17754:1 17762:1 17778:4 17787:1 17844:1 17850:2 17857:1 17946:1 17962:1 17968:1 17975:1 17980:2 18000:1 18004:1 18018:1 18025:1 18039:1 18041:1 18043:2 18050:2 18051:1 18060:1 18070:3 18072:1 18076:1 18106:1 18126:4 18127:2 18151:1 18154:1 18185:1 18189:1 18196:5 18210:1 18240:1 18245:1 18252:2 18256:1 18259:1 18276:1 18283:2 18286:1 18291:1 18304:1 18327:1 18365:1 18366:2 18395:1 18403:2 18424:4 18430:1 18436:15 18444:1 18447:1 18451:1 18455:1 18459:1 18482:1 18485:1 18486:1 18506:1 18528:1 18532:1 18537:1 18546:1 18550:1 18569:1 18575:1 18586:1 18591:4 18604:1 18630:1 18643:2 18680:1 18683:1 18695:1 18698:1 18712:1 18720:1 18723:2 18736:3 18738:1 18750:1 18761:1 18780:1 18805:1 18812:1 18845:1 18867:1 18905:1 18915:1 18918:1 18962:1 18968:1 18969:1 19069:4 19095:1 19148:1 19152:1 19172:1 19191:1 19199:1 19218:1 19225:1 19229:1 19245:1 19251:2 19254:2 19259:1 19279:1 19287:3 19291:1 19300:1 19304:1176 19308:1 19324:1 19367:2 19368:1 19402:1 19431:1 19437:1 19444:1 19486:1 19506:1 19521:1 19529:2 19535:3 19542:1 19548:2 19551:1 19552:1 19583:1 19629:4 19633:1 19642:1 19666:15 19692:4 19716:1 19747:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19837:2 19844:2 19868:1 19882:1 19898:2 19908:1 19920:1 19927:1 19928:1 19953:1 19978:2 19981:1 19982:1 20021:1 20027:1 20033:1 20036:1 20038:1 20043:2 20049:1 20053:1 20058:1 20074:4 20078:1 20092:1 20106:1 20131:6 20147:1 20148:1 20172:5 20173:1 20183:1 20188:1 20198:1 20242:1 20247:1 20296:1 20300:1 20313:1 20329:3 20331:1 20336:3 20339:2 20351:1 20372:1 20374:1 20375:1 20387:1 20399:1 20429:1 20463:1 20468:1 20501:1 20516:1 20528:1 20559:2 20570:1 20577:1 20584:1 20590:1 20593:1 20597:1 20598:1 20599:1 20608:1 20616:1 20620:2 20629:2 20641:1 20664:1 20666:1 20687:1 20692:2 20708:1 20754:1 20756:1 20760:1 20783:1 20791:2 20805:1 20817:2 20828:1 20832:1 20848:1 20850:1 20875:1 20886:1 20901:1 20918:1 20928:1 20932:1 20962:1 20964:2 21002:3 21032:1 21057:3 21058:2 21062:2 21068:1 21074:1 21080:1 21127:1 21129:1 21136:2 21143:1 21255:2 21259:2 21271:1 21290:1 21296:1 21298:1 21299:3 21314:1 21319:1 21324:1 21388:1 21389:2 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21511:1 21514:1 21526:1 21529:1 21539:1 21546:2 21550:1 21552:1 21561:1 21579:1 21588:2 21605:1 21613:2 21647:1 21656:2 21659:1 21673:1 21702:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:2 21863:2 21872:1 21875:1 21894:1 21901:1 21907:1 21952:1 21965:1 21971:1 21976:1 21985:1 22005:1 22022:2 22045:1 22058:1 22061:1 22078:1 22122:1 22177:1 22225:1 22254:1 22258:2 22265:1 22272:2 22273:1 22282:2 22283:1 22289:1 22298:1 22325:1 22338:1 22346:3 22361:1 22363:1 22370:1 22371:1 22378:1 22383:2 22391:1 22408:1 22413:1 22415:5 22437:1 22447:1 22477:1 22491:1 22507:2 22513:1 22519:1 22525:7 22532:1 22543:2 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22625:1 22632:1 22661:1 22665:2 22672:1 22676:1 22679:1 22682:1 22697:1 22698:2 22716:2 22720:1 22735:1 22766:2 22801:1 22818:1 22834:1 22838:1 22870:1 22886:3 22892:1 22897:1 22924:1 22933:1 22940:1 22943:1 22947:2 22959:1 22961:1 22975:2 23029:1 23034:1 23052:3 23053:2 23056:3 23072:2 23073:1 23096:1 23111:2 23118:1 23124:1 23134:1 23142:3 23144:1 23145:2 23174:1 23177:1 23178:1 23185:1 23226:1 23229:1 23231:1 23233:1 23241:1 23251:1 23260:1 23263:1 23291:1 23292:1 23309:2 23315:15 23320:1 23323:3 23327:1 23329:1 23352:2 23361:1 23364:1 23384:1 23385:1 23389:1 23437:1 23497:1 23501:2 23509:1 23530:2 23535:1 23594:1 23602:2 23614:1 23616:1 23625:2 23634:1 23649:2 23655:1 23663:1 23664:1 23685:1 23702:1 23711:1 23724:1 23785:1 23830:1 23837:1 23844:1 23859:1 23860:1 23887:1 23888:1 23903:2 23906:1 23926:2 23928:1 23944:3 23955:1 23978:1 23984:1 23992:2 23997:1 24079:1 24125:1 24129:1 24144:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24209:1 24214:1 24218:1 24228:1 24232:1 24270:2 24278:1 24280:1 24282:1 24291:1 24309:1 24325:1 24336:1 24343:6 24351:1 24376:2 24393:1 24423:1 24425:1 24443:1 24488:1 24513:1 24526:2 24561:2 24566:1 24592:1 24594:1 24601:1 24620:3 24622:1 24623:1 24638:1 24652:1 24661:1 24728:1 24731:1 24746:2 24748:1 24761:1 24762:1 24764:2 24788:1 24801:1 24822:1 24839:1 24862:1 24863:1 24902:1 24912:4 24923:3 24927:1 24944:1 24955:1 24956:1 24957:1 24973:1 24995:1 25028:1 25032:1 25068:1 25085:1 25099:2 25100:2 25115:1 25127:1 25136:1 25148:1 25150:1 25184:1 25206:1 25210:1 25221:1 25222:1 25224:3 25226:2 25228:4 25229:2 25235:1 25236:2 25238:1 25249:2 25255:2 25268:2 25297:1 25300:2 25301:1 25315:2 25327:1 25337:2 25343:3 25363:1 25369:1 25370:1 25381:1 25393:1 25410:1 25460:1 25463:1 25478:1 25504:2 25530:2 25540:1 25545:3 25565:2 25601:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25752:3 25767:1 25781:1 25785:3 25794:2 25828:2 25861:1 25879:1 25887:1 25900:1 25903:3 25909:1 25915:1 25922:1 25927:1 25929:1 25931:3 25988:1 26007:1 26023:1 26060:8 26069:1 26083:3 26112:1 26122:1 26138:1 26146:2 26168:1 26180:1 26187:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:4 26270:1 26280:1 26285:2 26288:6 26293:1 26294:2 26304:1 26307:1 26311:1 26317:2 26320:1 26328:1 26329:1 26334:1 26358:1 26363:2 26379:2 26387:1 26410:1 26420:2 26422:1 26482:1 26494:1 26495:1 26511:1 26519:1 26560:1 26563:1 26579:1 26589:1 26591:1 26593:1 26614:2 26646:1 26648:1 26656:1 26662:1 26698:1 26760:1 26776:1 26805:1 26847:1 26872:1 26882:1 26883:1 26886:1 26901:1 26907:1 26925:1 26939:1 26954:1 26957:2 26983:1 26989:1 26997:1 26998:1 27020:3 27047:4 27070:1 27089:1 27091:1 27094:1 27095:1 27107:1 27118:1 27119:1 27127:1 27138:1 27157:1 27178:4 27179:1 27212:3 27234:1 27236:1 27260:1 27278:1 27299:2 27320:2 27322:1 27327:1 27330:1 27334:2 27341:1 27375:2 27378:1 27381:1 27387:1 27415:2 27438:1 27439:1 27454:2 27459:1 27482:1 27484:2 27510:1 27535:1 27539:1 27555:1 27583:5 27608:2 27665:1 27670:1 27708:1 27714:1 27732:1 27739:1 27780:1 27781:1 27804:1 27807:1 27822:1 27826:1 27845:1 27875:1 27888:1 27917:1 27940:4 27957:2 27965:3 27974:1 27990:1 27991:1 27997:1 28011:1 28033:1 28043:1 28044:4 28071:1 28087:2 28101:1 28109:6 28151:2 28188:1 28218:5 28226:2 28242:2 28246:1 28251:2 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:1 28335:2 28337:1 28347:1 28361:1 28372:1 28377:1 28381:1 28384:1 28398:1 28409:1 28414:2 28458:1 28529:1 28533:1 28554:2 28589:1 28616:4 28686:1 28736:1 28755:2 28858:1 28860:5 28872:1 28893:1 28928:1 28938:1 28980:1 28983:1 28992:13 28993:2 28996:5 28998:1 28999:2 29011:1 29034:5 29048:1 29092:1 29100:2 29115:1 29120:1 29131:1 29142:1 29146:1 29176:9 29180:1 29184:1 29186:1 29190:1 29213:1 29216:1 29221:1 29228:1 29236:1 29245:2 29251:1 29262:1 29267:1 29268:2 29278:1 29293:1 29295:1 29300:1 29302:1 29343:1 29347:1 29362:2 29364:1 29387:1 29388:1 29391:1 29405:2 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29518:1 29525:1 29529:1 29532:1 29539:1 29548:1 29551:1 29566:1 29570:1 29579:1 29587:1 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29717:1 29722:1 29723:1 29740:2 29749:1 29758:1 29767:3 29773:1 29780:2 29782:1 29788:1 29801:1 29832:1 29840:1 29882:2 29890:1 29900:1 29914:2 29918:1 29927:1 29931:2 29949:1 29969:1 29970:1 30001:2 30012:1 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30150:1 30187:1 30194:5 30208:1 30210:1 30231:6 30243:4 30250:1 30320:7 30322:2 30324:1 30326:1 30328:1 30331:2 30332:1 30344:1 30363:2 30367:3 30371:2 30408:1 9 11:1 14:1 50:2 79:1 108:1 109:1 135:1 152:1 176:1 187:1 189:3 201:1 206:2 236:5 257:1 283:1 303:1 315:2 325:1 327:15 338:1 356:1 357:2 366:1 378:1 419:1 441:2 460:3 478:1 480:1 550:1 558:1 591:2 592:1 600:1 603:2 625:1 635:2 637:1 638:1 657:2 671:1 682:1 691:1 693:1 703:1 724:1 732:1 736:1 774:1 788:1 802:1 804:1 819:1 824:1 833:1 843:1 854:1 856:1 857:1 883:3 885:3 897:1 899:1 900:1 914:9 917:1 929:1 933:1 938:2 941:6 946:1 952:1 953:1 959:1 964:3 986:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:1 1060:1 1076:1 1080:1 1084:1 1102:1 1133:1 1142:1 1143:1 1156:2 1164:1 1172:1 1194:1 1201:2 1213:1 1258:2 1300:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1441:1 1464:2 1468:1 1471:4 1474:1 1491:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:1 1573:1 1574:1 1583:1 1614:1 1621:1 1639:1 1641:2 1642:3 1650:1 1677:1 1680:1 1700:1 1701:1 1706:3 1712:2 1732:1 1733:1 1752:1 1775:1 1818:1 1830:1 1844:3 1852:1 1856:1 1863:1 1873:1 1878:1 1908:1 1958:9 1965:1 1970:2 1986:1 1991:1 1996:1 1997:1 2008:1 2018:4 2019:2 2051:1 2053:1 2057:1 2063:1 2088:1 2128:1 2130:1 2136:3 2143:1 2151:1 2152:1 2186:1 2211:1 2213:1 2218:1 2219:1 2226:1 2232:1 2234:1 2238:1 2239:2 2240:3 2255:1 2274:1 2276:1 2280:1 2281:1 2284:2 2285:4 2288:4 2291:1 2292:2 2293:2 2296:1 2297:1 2298:1 2301:1 2311:1 2314:1 2316:6 2318:1 2319:6 2332:1 2348:1 2369:1 2380:1 2386:1 2393:1 2407:1 2411:1 2418:1 2430:2 2437:1 2445:1 2448:1 2466:1 2482:2 2493:3 2505:1 2515:1 2532:1 2537:1 2561:5 2570:1 2577:1 2595:2 2603:1 2608:1 2615:3 2618:2 2620:1 2661:2 2699:1 2701:2 2706:1 2709:1 2717:2 2720:1 2728:1 2740:1 2745:1 2748:1 2763:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:5 2831:2 2841:1 2848:1 2880:1 2882:1 2883:1 2889:1 2933:2 2941:9 2959:3 2975:2 2980:1 3002:6 3032:1 3036:4 3038:1 3061:1 3064:1 3092:1 3146:1 3176:1 3177:1 3225:1 3240:1 3259:1 3269:1 3280:1 3312:3 3325:1 3339:1 3343:1 3348:1 3384:1 3386:2 3416:1 3431:1 3434:6 3481:1 3487:1 3544:1 3551:1 3557:1 3561:1 3563:1 3564:1 3568:1 3571:1 3578:1 3581:1 3587:1 3615:1 3619:1 3628:1 3635:2 3640:1 3648:1 3665:1 3670:1 3674:1 3678:1 3681:2 3699:4 3706:1 3708:2 3709:1 3715:1 3741:3 3773:1 3784:1 3787:1 3792:3 3796:1 3800:2 3803:2 3848:1 3853:1 3855:4 3857:1 3858:2 3859:6 3873:1 3888:1 3895:2 3897:1 3903:1 3904:6 3905:1 3906:1 3924:3 3938:1 3956:2 3958:1 3967:1 3969:1 3978:1 3986:1 3993:1 4000:1 4004:1 4016:1 4019:2 4022:1 4032:1 4053:1 4054:1 4058:1 4077:2 4084:1 4085:1 4089:2 4093:1 4099:2 4100:2 4108:4 4109:2 4114:1 4153:1 4169:2 4187:1 4196:2 4204:1 4237:1 4239:1 4241:1 4250:1 4302:1 4307:2 4315:1 4316:1 4325:1 4364:1 4378:2 4381:1 4388:1 4405:1 4474:4 4494:1 4535:1 4546:1 4555:1 4572:1 4601:1 4631:1 4675:1 4697:1 4724:1 4728:2 4741:3 4749:1 4751:1 4754:1 4774:1 4804:1 4807:7 4843:1 4854:1 4870:1 4875:1 4889:1 4903:4 4918:1 4921:1 4951:1 4954:1 5009:1 5019:12 5021:2 5041:2 5052:1 5078:1 5083:5 5093:1 5115:1 5117:1 5131:1 5134:1 5135:3 5151:2 5152:4 5153:1 5154:1 5159:3 5163:1 5166:1 5173:2 5175:2 5178:1 5185:1 5187:2 5188:2 5211:1 5242:1 5277:2 5299:1 5317:1 5321:1 5326:1 5328:1 5336:2 5367:1 5385:1 5396:2 5404:1 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5518:4 5520:1 5522:1 5535:2 5538:1 5551:1 5553:1 5567:1 5602:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:1 5698:1 5704:1 5705:1 5708:1 5710:2 5712:1 5722:1 5758:3 5763:1 5772:1 5792:2 5808:2 5815:1 5816:1 5849:3 5873:2 5888:1 5897:2 5914:4 5917:1 5921:1 5945:1 5977:1 6011:1 6021:1 6028:1 6059:2 6066:1 6097:1 6102:1 6129:1 6152:1 6183:2 6184:1 6205:9 6226:2 6231:2 6238:1 6248:1 6249:1 6257:1 6301:1 6308:1 6356:1 6380:1 6384:1 6385:1 6390:1 6400:1 6404:1 6426:5 6437:1 6442:1 6485:1 6501:3 6505:1 6515:1 6518:1 6519:1 6520:3 6525:2 6526:8 6527:2 6539:1 6568:1 6591:1 6646:2 6681:2 6750:1 6763:1 6769:1 6777:1 6798:1 6803:1 6814:1 6816:1 6822:1 6844:1 6851:1 6855:1 6898:1 6916:1 6919:2 6924:1 6929:1 6940:5 6960:1 6968:1 6973:1 6997:1 7002:1 7029:1 7045:2 7058:1 7086:1 7087:2 7091:1 7100:1 7113:1 7114:2 7131:1 7147:1 7150:2 7177:1 7212:1 7253:7 7255:1 7273:1 7281:1 7300:1 7302:1 7306:1 7310:1 7336:1 7337:1 7411:2 7416:1 7435:2 7452:1 7479:1 7491:3 7505:2 7509:1 7516:1 7527:1 7549:3 7554:1 7555:1 7579:1 7583:1 7596:1 7603:1 7627:2 7644:1 7663:1 7672:1 7725:1 7726:2 7756:1 7757:9 7758:1 7771:1 7784:1 7785:2 7786:1 7812:2 7831:37 7836:1 7854:2 7855:6 7857:1 7860:1 7883:1 7908:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:2 8035:2 8087:1 8093:1 8108:1 8112:2 8138:1 8143:1 8145:1 8172:1 8223:1 8226:1 8233:1 8250:1 8258:1 8265:2 8266:3 8267:1 8269:1 8285:1 8287:1 8317:1 8324:1 8333:1 8338:2 8343:1 8348:2 8357:1 8358:3 8389:1 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:1 8541:1 8566:1 8589:1 8591:1 8604:2 8614:3 8615:1 8620:2 8624:2 8628:1 8629:1 8638:1 8646:1 8656:1 8664:5 8669:1 8671:1 8701:1 8716:1 8728:1 8736:1 8739:2 8740:3 8743:2 8744:1 8746:1 8748:1 8749:5 8752:2 8753:1 8757:1 8784:2 8790:1 8792:3 8816:1 8822:1 8826:2 8829:1 8834:1 8837:1 8853:1 8892:1 8906:1 8930:1 8939:1 8958:1 8968:1 8974:1 8988:1 9017:2 9033:2 9073:3 9074:1 9078:2 9090:2 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9177:1 9188:2 9199:3 9202:1 9222:1 9241:1 9252:1 9275:1 9276:1 9292:1 9295:1 9307:1 9316:1 9323:1 9325:1 9326:1 9334:3 9355:1 9366:2 9373:1 9394:1 9401:1 9411:1 9463:1 9467:4 9469:1 9474:2 9477:1 9486:15 9508:2 9510:1 9523:1 9535:1 9572:1 9587:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:5 9634:1 9659:1 9676:1 9684:3 9728:1 9749:1 9758:1 9793:1 9794:1 9808:1 9810:1 9831:1 9844:1 9845:1 9851:1 9861:1 9869:2 9877:1 9886:1 9895:1 9919:1 9949:5 9962:2 9965:1 9966:3 9972:2 9991:1 10035:2 10065:1 10093:1 10108:3 10113:1 10120:1 10135:1 10143:1 10145:1 10147:2 10150:1 10158:2 10171:1 10175:1 10179:1 10196:1 10202:1 10210:1 10211:1 10213:1 10225:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10309:1 10336:1 10345:1 10368:1 10401:1 10402:1 10418:1 10481:1 10520:1 10525:1 10550:1 10570:1 10588:1 10608:1 10609:1 10625:1 10630:2 10638:2 10653:1 10655:1 10712:1 10722:1 10724:1 10767:1 10769:1 10790:2 10794:1 10800:1 10809:1 10811:1 10813:1 10823:1 10824:1 10841:1 10844:1 10846:1 10854:1 10865:1 10867:1 10876:1 10886:1 10888:1 10890:2 10895:1 10916:1 10934:1 10950:1 10953:3 10967:4 10988:1 10990:9 11055:1 11056:1 11067:1 11079:1 11112:1 11117:1 11159:1 11180:1 11211:1 11224:1 11254:3 11257:1 11260:1 11262:1 11269:2 11291:1 11298:1 11299:1 11302:1 11312:1 11347:5 11372:2 11377:1 11378:1 11381:1 11433:1 11434:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11516:1 11544:1 11554:1 11557:1 11579:1 11583:3 11590:1 11613:1 11627:1 11643:2 11659:1 11660:1 11674:1 11675:1 11677:1 11686:2 11706:3 11715:1 11749:1 11752:5 11753:1 11789:1 11819:1 11820:1 11830:1 11831:1 11852:1 11860:1 11861:1 11866:1 11890:1 11898:1 11901:1 11908:1 11914:2 11930:2 11933:4 11960:1 11962:4 11963:1 12012:2 12020:1 12025:1 12026:1 12029:2 12032:1 12042:1 12046:1 12049:2 12059:1 12074:5 12097:5 12108:1 12111:1 12132:1 12139:1 12156:1 12195:1 12200:1 12223:1 12263:1 12265:1 12291:1 12304:3 12306:1 12315:1 12346:1 12359:3 12362:3 12382:1 12411:3 12426:1 12433:1 12439:1 12526:1 12542:1 12543:2 12544:3 12545:1 12571:1 12592:1 12602:2 12603:3 12608:1 12615:1 12619:2 12686:1 12702:1 12722:1 12726:1 12732:3 12753:1 12798:1 12806:1 12807:1 12810:2 12847:1 12872:1 12896:1 12935:1 12950:1 12953:1 12954:1 12971:1 12991:1 12996:1 13009:2 13091:5 13100:1 13113:1 13131:7 13142:1 13151:2 13153:3 13155:1 13161:1 13180:1 13189:1 13199:1 13222:2 13246:1 13250:1 13255:1 13256:1 13259:2 13270:1 13283:1 13291:2 13292:1 13315:1 13334:1 13339:1 13341:1 13393:1 13417:1 13454:4 13503:1 13523:1 13550:5 13556:1 13573:1 13584:1 13588:4 13595:3 13609:1 13611:5 13647:1 13663:1 13665:1 13666:1 13690:3 13726:1 13732:1 13734:1 13747:2 13754:1 13756:2 13757:1 13774:2 13800:1 13802:1 13807:1 13808:1 13829:1 13830:3 13833:1 13840:1 13847:1 13854:1 13862:1 13865:1 13880:1 13887:4 13913:1 13933:3 13937:1 13938:1 13973:1 13987:2 14076:1 14081:1 14116:2 14120:1 14123:4 14124:1 14127:1 14138:1 14146:1 14149:1 14170:1 14191:2 14198:1 14201:1 14204:1 14205:1 14233:1 14243:2 14254:1 14277:1 14290:1 14292:1 14304:2 14316:1 14339:3 14343:1 14345:2 14346:1 14352:1 14359:1 14399:1 14401:1 14414:1 14426:3 14445:4 14455:1 14486:1 14489:1 14508:1 14525:1 14530:1 14535:1 14560:1 14577:5 14591:1 14602:3 14611:1 14624:1 14643:1 14649:1 14651:1 14667:1 14668:1 14705:1 14720:1 14730:1 14732:1 14741:1 14757:1 14794:1 14795:1 14796:2 14797:3 14800:1 14803:5 14808:1 14812:1 14814:1 14815:1 14825:1 14833:1 14861:1 14913:1 14927:3 14961:1 14971:2 14978:1 14984:2 15003:1 15013:3 15037:1 15060:1 15084:2 15099:1 15112:1 15129:1 15134:4 15152:1 15157:1 15166:2 15183:1 15253:1 15328:3 15329:1 15332:1 15334:1 15349:1 15395:1 15396:1 15408:3 15410:1 15424:1 15428:1 15444:1 15449:3 15450:2 15470:2 15483:1 15494:1 15497:1 15511:1 15532:5 15543:1 15549:1 15638:3 15641:1 15651:1 15655:1 15670:1 15681:1 15692:3 15693:1 15698:1 15700:1 15715:1 15727:1 15748:1 15761:1 15774:2 15820:2 15849:1 15863:4 15882:1 15886:1 15924:2 15941:1 15950:3 15951:1 15961:2 15969:1 15982:1 15987:1 16004:2 16018:1 16028:2 16081:1 16114:2 16128:5 16133:1 16140:1 16141:2 16151:1 16160:2 16165:2 16172:1 16173:2 16174:1 16184:1 16189:1 16233:1 16243:1 16275:1 16306:4 16312:1 16325:1 16335:1 16345:1 16359:2 16387:1 16403:4 16404:3 16406:1 16452:1 16459:3 16468:1 16472:1 16484:1 16488:2 16499:1 16552:1 16553:2 16599:1 16607:1 16612:9 16613:1 16618:1 16624:1 16629:2 16640:1 16670:2 16690:3 16693:1 16698:1 16717:1 16734:1 16741:1 16745:1 16756:1 16760:1 16763:1 16791:1 16829:1 16830:2 16885:1 16922:1 16960:1 16963:1 16966:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:2 17133:1 17158:1 17167:1 17178:1 17212:1 17234:1 17237:2 17245:1 17255:1 17272:1 17279:1 17287:1 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:2 17374:1 17407:1 17411:1 17413:4 17419:1 17436:1 17474:1 17478:1 17483:4 17496:1 17510:1 17516:1 17535:3 17553:1 17565:1 17569:1 17584:2 17625:1 17630:1 17632:1 17639:4 17668:3 17684:1 17711:1 17712:1 17735:1 17737:1 17750:1 17754:1 17762:1 17777:1 17778:5 17787:1 17832:1 17844:1 17850:2 17857:1 17946:1 17962:1 17968:1 17975:1 17980:2 18000:1 18004:1 18018:1 18025:1 18039:1 18041:1 18043:2 18050:2 18051:1 18053:1 18060:1 18070:3 18072:1 18076:1 18106:1 18126:4 18127:2 18151:1 18154:1 18185:1 18189:1 18196:5 18210:1 18240:1 18245:1 18252:2 18256:1 18259:1 18276:1 18283:2 18286:1 18291:1 18304:1 18324:1 18327:1 18365:1 18366:2 18395:1 18403:2 18424:5 18430:2 18436:16 18444:1 18447:1 18451:1 18455:1 18459:1 18482:1 18485:1 18486:1 18506:1 18528:1 18532:1 18537:1 18546:1 18550:1 18569:1 18575:1 18586:1 18591:4 18604:1 18630:1 18643:3 18680:1 18683:1 18695:1 18698:1 18712:1 18720:1 18723:2 18736:3 18738:1 18750:1 18761:1 18780:1 18805:1 18812:1 18845:1 18867:1 18905:1 18915:1 18918:1 18962:1 18968:1 18969:1 19001:1 19069:4 19095:1 19113:1 19148:1 19152:1 19172:1 19191:2 19199:1 19218:1 19225:1 19229:1 19245:2 19251:2 19254:2 19259:1 19279:1 19287:3 19291:1 19300:1 19304:1258 19308:1 19324:1 19367:2 19368:1 19377:1 19402:1 19431:1 19437:1 19444:1 19476:1 19486:1 19506:1 19521:1 19529:2 19535:3 19542:1 19548:2 19551:1 19552:1 19583:1 19629:5 19633:1 19635:1 19642:1 19666:15 19692:5 19716:1 19747:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19837:2 19844:2 19868:1 19882:1 19898:2 19908:1 19920:1 19927:1 19928:1 19953:1 19978:2 19981:1 19982:1 20021:1 20027:1 20033:1 20036:1 20038:1 20043:2 20049:1 20053:1 20058:1 20074:4 20078:1 20092:1 20106:1 20131:6 20147:1 20148:1 20172:5 20173:1 20183:1 20188:1 20198:1 20242:1 20247:1 20296:1 20300:1 20313:1 20329:3 20331:1 20336:3 20339:2 20351:1 20372:1 20374:1 20375:1 20387:1 20399:1 20429:1 20463:1 20468:1 20501:1 20516:1 20528:1 20559:2 20570:1 20571:1 20577:1 20584:1 20590:1 20593:1 20597:1 20598:1 20599:1 20608:1 20616:1 20620:2 20629:2 20641:1 20664:1 20666:1 20687:1 20692:2 20708:1 20754:1 20756:1 20760:1 20783:1 20791:2 20805:1 20817:2 20828:1 20832:1 20848:1 20850:1 20875:1 20884:1 20886:1 20901:1 20912:1 20918:1 20923:1 20928:1 20932:1 20962:1 20964:2 21002:3 21032:1 21057:3 21058:2 21062:2 21068:1 21074:1 21080:1 21127:1 21129:1 21136:2 21143:1 21255:2 21259:2 21271:1 21290:1 21296:1 21298:1 21299:3 21314:1 21319:2 21324:1 21388:1 21389:2 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21511:1 21514:1 21526:1 21529:1 21539:1 21546:2 21550:1 21552:1 21561:1 21574:1 21579:1 21588:2 21605:1 21613:3 21647:1 21656:2 21659:1 21673:1 21702:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:2 21863:2 21872:1 21875:1 21894:1 21901:1 21907:1 21952:1 21965:1 21971:1 21976:1 21985:1 22005:1 22022:2 22045:1 22058:1 22061:1 22078:1 22082:1 22122:1 22149:1 22177:1 22225:1 22241:1 22254:1 22256:1 22258:2 22265:1 22272:2 22273:1 22282:2 22283:1 22289:1 22298:1 22325:1 22338:1 22346:3 22361:1 22363:1 22370:1 22371:1 22376:1 22378:1 22383:2 22391:1 22408:1 22413:1 22415:5 22437:1 22447:1 22477:1 22491:1 22507:2 22513:1 22519:1 22525:7 22532:1 22543:2 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22625:1 22632:1 22661:1 22665:3 22672:1 22676:1 22679:1 22681:1 22682:1 22697:1 22698:2 22716:2 22720:1 22735:1 22766:2 22801:1 22818:1 22834:1 22838:1 22870:1 22886:3 22892:1 22897:1 22924:1 22933:1 22940:1 22943:1 22947:2 22959:1 22961:1 22975:2 23029:1 23034:1 23052:3 23053:2 23056:3 23072:2 23073:1 23096:1 23111:2 23118:1 23124:1 23134:1 23142:3 23144:1 23145:2 23174:1 23177:1 23178:1 23185:1 23205:1 23226:1 23229:1 23231:1 23233:1 23241:1 23251:1 23260:1 23263:1 23291:1 23292:1 23309:2 23315:16 23320:1 23321:1 23323:3 23327:1 23329:1 23352:2 23354:1 23361:1 23364:1 23384:1 23385:1 23389:1 23437:1 23487:1 23497:1 23501:3 23509:1 23530:2 23535:1 23594:1 23596:1 23602:2 23614:1 23616:1 23622:1 23625:2 23634:1 23649:2 23655:1 23663:1 23664:1 23685:1 23702:1 23711:1 23724:1 23740:1 23785:1 23828:1 23830:1 23837:1 23844:1 23859:1 23860:1 23887:1 23888:1 23903:2 23906:1 23926:2 23928:1 23944:3 23955:1 23978:1 23984:1 23992:2 23997:1 24079:1 24125:1 24129:1 24144:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24196:1 24209:1 24214:1 24218:1 24228:1 24232:1 24270:2 24278:1 24280:1 24282:1 24291:1 24309:1 24325:1 24336:1 24343:6 24351:1 24376:2 24393:1 24423:1 24425:1 24443:1 24488:1 24513:1 24526:2 24561:2 24566:1 24592:1 24594:1 24601:1 24620:3 24622:1 24623:1 24631:1 24638:1 24652:1 24661:1 24728:1 24731:1 24746:2 24748:1 24761:1 24762:1 24764:2 24788:1 24801:1 24822:1 24839:1 24862:1 24863:1 24902:1 24912:4 24914:1 24923:3 24927:1 24944:1 24955:1 24956:1 24957:1 24973:1 24995:1 25028:1 25030:1 25032:1 25060:1 25068:1 25085:1 25099:2 25100:2 25115:1 25127:1 25136:1 25148:1 25150:1 25184:1 25206:1 25210:1 25221:2 25222:1 25224:4 25226:2 25228:4 25229:2 25235:1 25236:2 25238:1 25248:1 25249:2 25255:2 25262:1 25268:2 25297:1 25300:2 25301:1 25315:2 25327:1 25337:2 25343:3 25363:1 25369:1 25370:1 25381:1 25393:1 25410:1 25460:1 25463:1 25478:1 25504:2 25530:2 25540:1 25545:3 25565:2 25601:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25752:3 25767:1 25781:1 25785:3 25794:2 25828:2 25861:1 25879:1 25887:1 25900:1 25903:3 25909:1 25915:1 25922:1 25927:1 25929:1 25931:3 25988:1 26007:1 26023:1 26025:1 26060:8 26069:1 26083:4 26112:1 26122:1 26138:1 26146:2 26168:1 26175:1 26180:1 26187:1 26190:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:4 26270:1 26280:1 26285:2 26288:7 26293:1 26294:2 26304:1 26307:1 26311:1 26317:2 26320:1 26328:1 26329:1 26334:1 26358:1 26363:2 26379:2 26387:1 26410:1 26420:2 26422:1 26482:1 26494:1 26495:1 26511:1 26519:1 26560:1 26563:1 26579:1 26589:1 26591:1 26593:1 26614:2 26646:1 26648:1 26656:1 26662:1 26698:1 26716:1 26760:1 26776:1 26805:1 26847:1 26872:1 26882:1 26883:1 26886:1 26901:1 26907:1 26925:1 26939:1 26954:1 26957:2 26983:2 26989:1 26997:1 26998:1 27020:3 27047:4 27070:1 27089:1 27091:1 27094:1 27095:1 27107:1 27118:1 27119:1 27127:1 27138:1 27157:1 27174:1 27178:4 27179:1 27212:3 27234:1 27236:1 27260:1 27278:1 27299:3 27320:2 27322:1 27327:1 27330:1 27334:2 27341:1 27375:2 27378:1 27381:1 27387:1 27415:2 27438:2 27439:1 27454:2 27459:1 27482:1 27484:2 27510:1 27535:1 27539:1 27555:1 27583:5 27608:2 27665:1 27670:1 27708:1 27714:1 27732:1 27739:1 27780:1 27781:1 27792:1 27804:1 27807:1 27822:1 27826:1 27845:1 27875:1 27888:1 27917:1 27924:1 27940:4 27957:2 27965:3 27974:1 27990:1 27991:1 27997:1 28011:1 28033:1 28043:1 28044:5 28071:1 28087:2 28097:1 28101:1 28109:6 28151:2 28188:1 28218:5 28225:1 28226:2 28242:2 28246:1 28251:2 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:1 28335:2 28337:1 28347:1 28361:1 28372:1 28377:1 28381:1 28384:1 28398:1 28409:1 28414:2 28418:1 28458:1 28529:1 28533:1 28554:2 28589:1 28616:4 28619:1 28686:1 28736:1 28755:2 28858:1 28860:5 28872:1 28893:1 28896:1 28928:1 28938:1 28978:1 28980:1 28983:1 28992:15 28993:2 28996:5 28998:1 28999:2 29011:1 29034:5 29048:1 29092:1 29100:2 29115:1 29120:1 29131:1 29132:1 29142:1 29146:1 29176:9 29180:1 29184:1 29186:1 29190:1 29210:1 29213:1 29216:1 29221:1 29228:1 29236:1 29245:2 29251:1 29262:1 29267:1 29268:2 29278:1 29293:1 29295:1 29300:1 29302:1 29343:1 29347:1 29362:2 29364:1 29387:1 29388:1 29391:1 29405:2 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29518:1 29525:1 29529:1 29532:1 29539:1 29548:1 29551:1 29566:1 29570:1 29579:1 29587:1 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29717:1 29722:1 29723:1 29740:2 29749:1 29758:1 29767:4 29773:1 29780:2 29782:1 29788:1 29801:1 29832:1 29839:1 29840:1 29882:2 29890:1 29900:1 29914:2 29918:1 29925:1 29927:1 29931:2 29949:1 29969:1 29970:1 30001:2 30012:1 30035:1 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30150:2 30187:1 30194:5 30208:1 30210:1 30231:6 30243:4 30250:1 30320:7 30322:2 30324:2 30326:1 30328:1 30331:2 30332:1 30344:1 30363:2 30367:3 30371:2 30408:1 9 11:1 14:1 43:1 50:2 79:1 108:1 109:1 135:1 142:1 152:1 176:1 187:1 189:3 201:1 206:3 236:5 257:1 283:1 303:1 315:2 325:1 327:15 338:1 356:1 357:2 366:1 378:1 419:1 441:2 460:3 478:1 480:1 550:1 558:1 591:2 592:1 600:1 603:2 625:1 635:2 637:1 638:1 657:2 671:1 682:1 691:1 693:1 703:1 724:1 732:1 736:1 758:1 774:1 788:1 802:1 804:1 819:1 824:1 833:1 843:1 854:1 856:2 857:1 883:3 885:3 897:1 899:1 900:1 911:1 914:9 917:1 929:1 933:1 938:2 941:6 946:1 952:1 953:1 959:1 964:3 985:1 986:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:1 1060:1 1076:1 1080:1 1084:1 1102:1 1133:1 1142:1 1143:1 1156:2 1164:1 1172:1 1194:1 1201:2 1213:1 1230:1 1258:2 1300:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1441:2 1464:2 1468:1 1471:4 1474:1 1491:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:1 1573:1 1574:1 1583:1 1614:1 1621:1 1639:1 1641:2 1642:3 1650:1 1677:1 1680:1 1700:1 1701:1 1706:3 1712:2 1732:1 1733:1 1752:1 1775:1 1818:1 1830:1 1844:3 1852:1 1856:1 1863:1 1873:1 1878:1 1908:1 1958:9 1965:1 1970:2 1986:1 1991:1 1996:1 1997:1 2008:1 2018:5 2019:2 2051:1 2053:1 2057:1 2063:1 2088:1 2128:1 2130:1 2136:3 2143:1 2151:1 2152:1 2161:1 2186:1 2211:1 2213:1 2218:1 2219:1 2226:1 2232:1 2234:1 2238:1 2239:2 2240:3 2255:2 2274:1 2276:1 2280:1 2281:1 2284:2 2285:5 2288:4 2291:1 2292:2 2293:2 2296:1 2297:1 2298:1 2301:1 2311:1 2314:1 2316:6 2318:1 2319:6 2331:1 2332:1 2348:1 2369:1 2380:1 2386:1 2393:1 2407:1 2411:1 2418:1 2430:2 2437:1 2445:1 2448:1 2466:1 2482:2 2493:3 2505:1 2515:1 2532:1 2537:1 2561:5 2570:2 2577:1 2595:2 2603:1 2608:1 2615:3 2618:2 2620:1 2632:1 2661:2 2699:1 2701:2 2706:1 2709:1 2717:2 2720:1 2728:1 2740:1 2745:1 2748:1 2763:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:5 2831:2 2841:1 2848:1 2880:1 2882:1 2883:1 2889:1 2933:2 2941:10 2959:3 2975:2 2980:1 3002:8 3032:1 3036:4 3038:1 3061:1 3064:1 3092:1 3095:1 3146:1 3176:1 3177:1 3225:1 3240:1 3259:1 3269:1 3280:1 3312:4 3325:1 3339:1 3343:1 3348:1 3384:1 3386:2 3416:1 3431:1 3434:6 3481:1 3487:1 3510:1 3544:1 3551:1 3557:1 3561:1 3563:1 3564:1 3568:1 3571:1 3578:1 3581:1 3587:1 3615:1 3619:1 3628:1 3635:2 3640:1 3648:1 3665:1 3670:1 3674:1 3678:1 3681:2 3699:4 3706:1 3708:2 3709:1 3715:1 3741:3 3773:1 3784:1 3787:1 3792:3 3796:1 3800:2 3803:2 3848:1 3853:1 3855:4 3857:1 3858:2 3859:8 3873:1 3888:1 3895:2 3897:1 3903:1 3904:7 3905:1 3906:1 3924:3 3932:1 3938:1 3956:2 3958:1 3967:1 3969:1 3978:1 3986:1 3993:1 4000:1 4004:1 4016:1 4019:2 4022:1 4032:1 4053:1 4054:1 4058:1 4077:2 4084:1 4085:1 4089:2 4093:1 4099:2 4100:2 4108:4 4109:2 4114:1 4153:1 4169:2 4187:1 4196:2 4204:1 4237:1 4239:1 4241:1 4250:1 4302:1 4307:2 4315:1 4316:1 4325:1 4364:1 4378:2 4381:1 4388:1 4405:1 4474:4 4494:1 4535:1 4546:1 4555:1 4572:1 4601:1 4631:1 4675:1 4697:1 4724:1 4728:2 4741:3 4749:1 4751:1 4754:1 4774:1 4804:1 4807:7 4843:1 4854:1 4870:1 4875:1 4889:1 4896:1 4903:5 4918:1 4921:1 4951:1 4954:1 4986:1 5009:1 5019:13 5021:2 5041:2 5052:1 5078:1 5083:5 5093:1 5115:1 5117:1 5131:1 5134:1 5135:3 5151:2 5152:4 5153:1 5154:1 5159:3 5163:1 5166:1 5173:2 5175:2 5178:1 5185:1 5187:2 5188:2 5211:1 5242:1 5277:2 5299:1 5317:1 5321:1 5326:2 5328:1 5336:2 5367:1 5385:1 5396:2 5404:1 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5512:1 5518:4 5520:1 5522:1 5535:2 5538:1 5551:1 5553:1 5567:2 5602:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:1 5698:1 5704:1 5705:1 5708:1 5710:2 5712:1 5722:1 5758:3 5763:1 5772:1 5792:2 5808:2 5815:1 5816:1 5849:3 5873:2 5888:1 5897:2 5914:4 5917:1 5921:1 5945:1 5977:1 6011:1 6021:1 6028:1 6059:2 6066:1 6097:1 6102:1 6129:1 6152:1 6183:2 6184:1 6205:9 6226:3 6231:2 6238:1 6248:1 6249:1 6257:1 6280:1 6301:1 6308:1 6356:1 6380:1 6384:2 6385:1 6390:1 6400:1 6404:1 6426:5 6437:1 6442:1 6485:1 6501:3 6505:1 6515:1 6518:1 6519:1 6520:3 6525:2 6526:8 6527:3 6539:1 6568:1 6591:1 6646:3 6681:2 6699:1 6750:1 6763:1 6769:1 6777:1 6798:1 6803:1 6814:1 6816:1 6822:1 6844:1 6851:1 6855:1 6898:1 6916:1 6919:2 6924:1 6929:1 6940:5 6960:1 6968:1 6973:1 6997:1 7002:1 7029:1 7045:2 7058:1 7086:2 7087:2 7091:1 7100:1 7113:2 7114:2 7131:1 7147:1 7150:2 7177:1 7212:1 7253:7 7255:1 7273:1 7281:2 7300:1 7302:1 7306:1 7310:1 7336:1 7337:1 7411:2 7416:1 7435:2 7452:1 7479:1 7491:3 7505:2 7509:1 7516:1 7527:1 7549:3 7554:1 7555:1 7579:2 7583:1 7596:1 7603:1 7627:2 7644:1 7663:1 7672:1 7725:1 7726:2 7756:1 7757:9 7758:1 7771:1 7784:1 7785:2 7786:1 7812:2 7831:38 7836:1 7854:2 7855:8 7857:1 7860:1 7883:2 7908:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:2 8035:2 8087:1 8093:1 8108:1 8112:2 8138:1 8143:1 8145:1 8172:1 8223:1 8226:1 8233:1 8250:1 8258:1 8265:2 8266:3 8267:1 8269:1 8285:1 8287:1 8317:1 8324:2 8333:1 8338:2 8343:1 8348:2 8357:1 8358:3 8389:1 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:1 8541:1 8566:1 8589:1 8591:1 8604:2 8614:3 8615:1 8620:2 8624:2 8628:1 8629:1 8638:1 8646:1 8656:1 8664:5 8669:1 8671:1 8701:1 8716:1 8728:1 8736:1 8739:2 8740:3 8743:2 8744:2 8746:1 8748:2 8749:5 8752:2 8753:1 8757:1 8784:2 8790:1 8792:3 8816:1 8820:1 8822:1 8826:2 8829:1 8834:1 8837:1 8853:1 8892:1 8906:1 8907:1 8930:1 8939:1 8958:1 8968:1 8974:1 8988:1 9017:2 9033:2 9041:1 9073:3 9074:1 9078:2 9090:2 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9177:1 9188:2 9199:3 9202:1 9222:1 9241:1 9252:1 9275:1 9276:1 9292:1 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:2 9373:1 9394:1 9401:1 9411:1 9459:1 9463:1 9467:4 9469:1 9474:2 9477:1 9486:15 9508:2 9510:1 9523:1 9535:1 9572:1 9587:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:5 9634:1 9659:1 9676:1 9684:3 9728:1 9749:1 9758:1 9793:1 9794:1 9808:1 9810:1 9831:1 9844:1 9845:2 9851:1 9861:1 9869:2 9877:1 9886:1 9895:1 9919:2 9949:5 9962:2 9965:1 9966:3 9972:2 9991:1 9995:1 10035:3 10065:1 10093:1 10108:3 10113:1 10120:1 10135:1 10143:1 10145:1 10147:2 10150:1 10158:2 10171:1 10175:1 10179:1 10196:1 10198:1 10202:1 10210:1 10211:1 10213:1 10225:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10309:1 10336:1 10345:1 10368:1 10401:1 10402:1 10418:1 10481:1 10520:1 10525:1 10550:1 10570:1 10588:1 10608:1 10609:1 10625:1 10630:2 10638:2 10653:1 10655:1 10712:1 10722:1 10724:1 10767:1 10769:1 10790:2 10794:2 10800:1 10809:1 10811:1 10813:1 10823:1 10824:1 10841:1 10844:1 10846:1 10854:1 10865:1 10867:1 10876:1 10886:1 10888:1 10890:2 10895:1 10916:1 10934:1 10950:1 10953:3 10967:4 10988:2 10990:9 11055:1 11056:1 11067:1 11079:1 11112:1 11117:1 11159:1 11180:1 11211:1 11224:1 11254:3 11257:1 11260:1 11262:1 11269:2 11291:1 11298:1 11299:1 11302:1 11312:1 11347:5 11351:1 11372:2 11377:1 11378:1 11381:1 11433:1 11434:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11516:1 11544:1 11554:1 11557:1 11579:1 11583:4 11590:1 11613:1 11627:1 11637:1 11643:2 11659:1 11660:1 11674:1 11675:1 11677:1 11682:1 11686:2 11706:3 11715:1 11749:1 11752:5 11753:1 11789:1 11790:1 11819:1 11820:1 11830:1 11831:1 11852:1 11860:1 11861:1 11866:1 11890:1 11898:1 11901:1 11908:1 11914:2 11930:2 11933:5 11960:1 11962:4 11963:1 12012:2 12020:1 12025:1 12026:2 12029:2 12032:1 12042:1 12046:1 12049:2 12059:1 12074:5 12097:5 12108:1 12111:1 12132:1 12139:1 12149:1 12156:1 12195:1 12200:2 12223:1 12263:1 12265:1 12291:1 12304:3 12306:1 12315:1 12346:1 12359:3 12362:3 12382:1 12411:3 12426:1 12433:1 12439:1 12526:1 12542:1 12543:2 12544:3 12545:1 12571:1 12592:1 12602:2 12603:4 12608:1 12615:1 12619:2 12686:1 12702:1 12722:1 12726:1 12732:4 12753:1 12798:1 12806:1 12807:1 12810:2 12824:1 12847:1 12872:1 12896:1 12935:1 12950:1 12953:1 12954:1 12971:1 12991:1 12996:1 13009:2 13091:5 13100:1 13113:1 13131:8 13142:1 13151:2 13153:4 13155:1 13161:1 13180:1 13189:1 13199:1 13222:2 13246:1 13250:1 13255:1 13256:1 13259:2 13270:1 13283:1 13291:2 13292:1 13315:1 13334:1 13339:1 13341:1 13393:1 13417:1 13454:4 13503:1 13523:1 13550:5 13556:1 13573:1 13584:1 13588:4 13595:3 13609:1 13611:5 13647:1 13663:1 13665:1 13666:1 13690:3 13726:1 13732:1 13734:1 13747:2 13754:1 13756:2 13757:1 13774:2 13800:1 13802:1 13807:1 13808:1 13829:1 13830:3 13833:1 13840:1 13847:1 13854:1 13862:1 13865:1 13880:1 13887:4 13913:1 13933:3 13937:1 13938:1 13973:1 13987:2 14076:1 14081:1 14116:2 14120:2 14123:4 14124:1 14127:1 14138:1 14146:1 14149:1 14170:1 14191:2 14198:2 14201:1 14204:1 14205:1 14233:1 14243:2 14254:1 14277:1 14290:2 14292:1 14304:2 14316:1 14339:3 14343:1 14345:2 14346:1 14352:1 14359:1 14399:1 14401:1 14414:1 14426:3 14445:5 14455:1 14486:1 14489:1 14508:1 14525:1 14530:1 14535:1 14560:1 14577:5 14591:1 14602:3 14611:1 14624:1 14643:1 14649:1 14651:1 14667:1 14668:1 14705:1 14720:1 14730:1 14732:1 14741:1 14757:1 14768:1 14783:1 14794:1 14795:1 14796:2 14797:3 14800:1 14803:5 14808:1 14812:1 14814:1 14815:1 14825:1 14833:1 14861:1 14913:1 14914:1 14927:3 14961:2 14971:2 14978:1 14984:2 15003:1 15013:3 15037:1 15060:1 15084:2 15099:2 15112:1 15129:1 15134:4 15152:1 15157:1 15166:2 15183:1 15253:1 15266:1 15328:3 15329:1 15332:1 15334:1 15349:1 15395:1 15396:1 15408:3 15410:1 15424:1 15428:1 15444:1 15449:3 15450:2 15470:2 15483:1 15494:1 15497:1 15511:1 15532:5 15535:1 15543:1 15549:1 15638:3 15641:1 15651:1 15655:1 15670:1 15681:1 15692:3 15693:1 15698:1 15700:1 15715:1 15727:1 15748:1 15761:1 15774:2 15820:2 15849:1 15863:5 15882:1 15886:1 15924:2 15941:1 15950:3 15951:1 15961:2 15969:1 15982:1 15987:1 16004:2 16018:1 16028:2 16081:1 16114:2 16128:5 16133:1 16140:1 16141:2 16151:1 16160:2 16165:2 16172:1 16173:2 16174:2 16184:1 16189:1 16233:1 16243:1 16275:1 16306:4 16312:1 16325:1 16335:1 16345:1 16359:2 16387:1 16403:5 16404:3 16406:1 16452:1 16459:3 16468:1 16472:1 16484:1 16488:2 16499:1 16552:1 16553:2 16599:1 16607:1 16612:11 16613:1 16618:1 16624:1 16629:2 16640:1 16670:2 16690:3 16693:1 16698:1 16717:1 16734:1 16741:1 16745:1 16756:1 16760:1 16763:1 16791:1 16829:1 16830:2 16885:1 16922:1 16960:1 16963:1 16966:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:2 17133:1 17158:1 17167:1 17178:1 17212:1 17234:1 17237:2 17245:1 17255:2 17272:1 17279:1 17287:2 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:2 17374:1 17407:1 17411:1 17413:4 17419:1 17436:1 17474:1 17478:1 17483:4 17496:1 17510:1 17516:1 17535:3 17553:1 17565:1 17569:1 17584:2 17625:1 17630:1 17632:1 17639:4 17646:1 17668:3 17684:1 17711:1 17712:1 17735:1 17737:2 17750:1 17754:1 17762:1 17777:1 17778:6 17787:2 17820:1 17832:1 17844:1 17850:2 17857:2 17946:1 17962:1 17968:2 17975:1 17980:2 18000:1 18004:1 18018:1 18025:1 18039:1 18041:1 18043:2 18050:2 18051:1 18053:1 18060:2 18070:3 18072:2 18076:1 18106:1 18126:4 18127:2 18151:1 18154:1 18185:1 18189:1 18196:5 18210:1 18240:1 18245:1 18252:2 18256:1 18259:1 18276:1 18283:2 18286:1 18291:1 18304:1 18324:1 18327:1 18344:1 18365:1 18366:2 18395:1 18403:2 18424:6 18430:2 18436:17 18444:1 18447:1 18451:1 18455:1 18459:1 18482:1 18485:1 18486:1 18506:1 18528:1 18532:1 18537:1 18546:1 18550:1 18569:1 18575:1 18586:1 18591:4 18604:1 18630:1 18643:4 18680:1 18683:1 18695:1 18698:1 18712:1 18720:1 18723:2 18736:3 18738:1 18750:1 18761:1 18780:1 18805:1 18812:1 18845:1 18867:1 18905:1 18915:1 18918:1 18928:1 18962:1 18968:2 18969:1 19001:1 19069:4 19095:1 19113:1 19148:1 19152:1 19172:1 19191:3 19199:1 19218:1 19225:1 19229:1 19245:2 19251:2 19254:2 19259:1 19279:1 19287:3 19291:1 19300:1 19304:1306 19308:1 19324:1 19367:2 19368:1 19377:1 19402:1 19431:1 19437:2 19444:1 19476:1 19486:1 19506:1 19521:1 19529:2 19535:3 19542:1 19548:2 19551:1 19552:2 19583:1 19629:5 19633:1 19635:1 19642:1 19666:15 19692:6 19716:1 19747:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19837:2 19844:2 19868:1 19882:1 19898:2 19908:1 19920:1 19927:1 19928:1 19953:1 19978:2 19981:1 19982:2 20021:1 20027:1 20033:1 20036:1 20038:1 20043:2 20049:1 20053:1 20058:1 20064:1 20074:4 20078:1 20092:1 20106:2 20131:6 20147:1 20148:1 20172:5 20173:1 20183:1 20188:1 20198:1 20242:1 20247:1 20296:1 20300:1 20313:1 20329:3 20331:1 20336:3 20339:2 20351:1 20372:1 20374:2 20375:1 20387:1 20399:1 20429:1 20463:1 20468:1 20501:2 20516:1 20528:1 20559:2 20570:1 20571:1 20577:1 20584:1 20590:1 20593:1 20597:1 20598:1 20599:1 20608:1 20616:1 20620:2 20624:1 20629:2 20641:1 20664:1 20666:1 20687:1 20692:2 20708:1 20733:1 20754:1 20756:1 20760:1 20783:1 20791:3 20805:1 20817:2 20828:1 20832:1 20848:1 20850:1 20875:1 20884:1 20886:1 20901:1 20912:1 20918:1 20923:1 20928:1 20932:1 20962:1 20964:2 21002:4 21032:1 21057:4 21058:2 21062:2 21068:1 21074:1 21080:1 21127:1 21129:1 21136:2 21139:1 21143:1 21255:3 21259:2 21271:1 21290:1 21296:1 21298:1 21299:3 21314:1 21319:2 21324:1 21388:1 21389:2 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21511:1 21514:1 21526:1 21529:1 21539:1 21546:3 21550:1 21552:1 21561:1 21574:1 21579:1 21588:2 21605:1 21613:3 21647:1 21656:2 21659:1 21673:1 21702:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:2 21863:2 21872:1 21875:1 21894:1 21901:1 21907:1 21952:1 21965:1 21971:1 21976:1 21985:1 22005:1 22022:2 22045:1 22058:1 22061:1 22078:1 22082:1 22122:1 22149:1 22177:1 22225:1 22241:1 22254:1 22256:1 22258:2 22265:1 22272:2 22273:1 22282:2 22283:1 22289:1 22298:1 22325:1 22338:1 22346:3 22361:1 22363:1 22370:2 22371:1 22376:1 22378:1 22383:2 22391:1 22408:1 22413:1 22415:5 22433:1 22437:1 22447:1 22477:1 22491:1 22507:2 22513:1 22519:1 22525:7 22532:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22625:1 22632:1 22661:1 22665:3 22672:1 22676:1 22679:1 22681:1 22682:1 22697:1 22698:2 22716:2 22720:1 22735:1 22766:2 22801:1 22818:1 22834:1 22838:1 22870:1 22886:3 22892:2 22897:1 22924:1 22933:1 22940:1 22943:1 22947:2 22959:1 22961:1 22975:2 23029:1 23034:1 23052:4 23053:3 23056:3 23072:2 23073:1 23096:1 23111:2 23118:1 23124:1 23134:1 23142:3 23144:1 23145:2 23154:1 23174:1 23177:1 23178:2 23185:1 23205:1 23226:1 23229:1 23231:1 23233:1 23241:1 23243:1 23251:1 23260:1 23263:1 23291:1 23292:1 23309:2 23315:17 23320:1 23321:1 23323:3 23327:1 23329:1 23352:2 23354:1 23361:1 23364:1 23384:1 23385:1 23389:1 23437:1 23487:1 23497:1 23501:3 23509:1 23530:2 23535:1 23594:1 23596:1 23602:2 23605:1 23614:2 23616:1 23622:1 23625:2 23634:1 23649:2 23655:1 23663:1 23664:1 23685:1 23702:1 23711:1 23717:1 23724:1 23740:1 23785:1 23828:1 23830:1 23837:1 23844:1 23859:1 23860:1 23887:1 23888:1 23903:2 23906:1 23926:2 23928:1 23944:3 23952:1 23955:1 23977:1 23978:1 23984:1 23992:2 23997:1 24079:1 24125:1 24129:1 24144:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24196:1 24209:1 24214:1 24218:1 24220:1 24228:1 24232:1 24270:3 24278:1 24280:1 24282:1 24291:1 24309:1 24325:1 24336:1 24343:7 24351:1 24376:2 24393:1 24423:1 24425:1 24443:1 24488:1 24513:1 24515:1 24526:2 24561:2 24566:1 24581:1 24592:1 24594:1 24601:1 24620:3 24622:1 24623:1 24631:1 24638:1 24652:1 24661:1 24728:1 24731:1 24746:2 24748:1 24761:1 24762:1 24764:2 24788:1 24801:1 24822:1 24839:1 24862:1 24863:1 24902:1 24912:4 24914:1 24923:3 24927:1 24944:1 24955:1 24956:1 24957:1 24973:1 24995:1 25028:1 25030:1 25032:1 25060:1 25068:1 25085:1 25099:3 25100:2 25115:1 25127:1 25136:1 25148:1 25150:1 25184:1 25206:1 25210:1 25221:2 25222:1 25224:4 25226:2 25228:4 25229:2 25235:1 25236:2 25238:1 25248:1 25249:2 25255:2 25262:1 25268:2 25297:1 25300:2 25301:1 25315:2 25327:1 25337:3 25343:3 25363:1 25369:1 25370:1 25381:1 25393:1 25410:1 25414:1 25439:1 25460:1 25463:1 25478:1 25504:2 25530:2 25540:1 25545:3 25565:2 25601:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25752:3 25767:1 25781:1 25785:3 25794:2 25828:3 25861:1 25879:1 25887:1 25900:1 25903:3 25909:1 25915:1 25922:1 25927:1 25929:1 25931:3 25988:1 26007:1 26023:1 26025:1 26060:8 26069:1 26083:5 26112:1 26122:1 26138:1 26146:2 26168:1 26175:1 26180:2 26187:1 26190:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:4 26270:1 26280:1 26285:2 26288:7 26293:1 26294:2 26304:1 26307:1 26311:1 26317:2 26320:1 26328:1 26329:1 26334:1 26358:1 26363:2 26379:2 26387:1 26410:2 26420:2 26422:1 26482:1 26494:1 26495:1 26511:1 26519:1 26560:1 26563:1 26579:1 26589:1 26591:1 26593:1 26614:3 26646:1 26648:1 26656:1 26662:1 26698:1 26716:1 26754:1 26760:1 26776:1 26805:1 26847:1 26872:1 26882:1 26883:1 26886:1 26901:1 26907:1 26925:1 26939:1 26954:1 26957:2 26983:2 26989:1 26997:1 26998:1 27020:3 27047:4 27070:1 27089:1 27091:1 27094:1 27095:1 27107:1 27118:1 27119:1 27127:1 27138:1 27157:1 27174:1 27178:4 27179:1 27212:3 27234:1 27236:1 27260:1 27278:1 27299:3 27320:2 27322:1 27327:1 27330:1 27334:3 27341:1 27375:2 27378:1 27381:1 27387:1 27415:2 27438:2 27439:1 27454:2 27459:1 27482:1 27484:2 27510:1 27535:1 27539:1 27555:1 27583:5 27608:2 27665:1 27670:1 27708:1 27712:1 27714:1 27732:1 27739:1 27780:1 27781:1 27792:1 27804:1 27807:1 27822:1 27826:1 27845:1 27875:1 27888:1 27917:1 27924:1 27940:4 27957:2 27965:4 27974:1 27990:1 27991:1 27997:1 28011:1 28033:1 28043:1 28044:6 28071:1 28087:2 28097:1 28101:1 28109:7 28151:2 28188:1 28218:5 28225:1 28226:2 28242:2 28246:1 28251:2 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:1 28335:2 28337:1 28347:1 28361:1 28372:1 28377:1 28381:1 28384:1 28398:1 28409:1 28414:2 28416:1 28418:1 28458:1 28529:1 28533:1 28554:2 28589:1 28600:1 28616:4 28619:1 28686:1 28736:1 28755:2 28858:1 28860:5 28872:1 28893:1 28896:1 28928:1 28938:1 28978:1 28980:1 28983:1 28992:17 28993:2 28996:5 28998:1 28999:2 29011:1 29034:5 29048:1 29092:1 29100:2 29115:1 29120:1 29131:1 29132:1 29142:1 29146:2 29176:9 29180:1 29184:1 29186:1 29190:1 29210:1 29213:1 29216:1 29221:1 29228:1 29236:1 29245:2 29251:1 29262:1 29267:1 29268:2 29278:1 29293:1 29295:1 29300:1 29302:1 29343:1 29347:1 29362:2 29364:1 29387:1 29388:1 29391:1 29405:2 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29518:1 29525:1 29529:1 29532:1 29539:1 29548:1 29551:1 29566:1 29570:1 29579:1 29587:1 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29712:1 29717:1 29722:1 29723:1 29740:2 29749:1 29758:1 29767:4 29773:1 29780:2 29782:1 29788:1 29801:1 29832:1 29839:1 29840:1 29882:2 29890:1 29900:1 29914:2 29918:1 29920:1 29925:1 29927:1 29931:2 29949:1 29969:1 29970:1 30001:2 30012:1 30035:1 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30150:2 30187:1 30194:5 30208:1 30210:1 30231:6 30243:4 30250:1 30320:7 30322:2 30324:2 30326:1 30328:1 30331:3 30332:1 30344:1 30363:2 30367:3 30371:2 30408:1 30421:1 9 11:1 14:1 43:1 50:2 79:1 108:1 109:1 135:1 139:1 142:1 152:1 176:1 187:1 189:3 201:1 206:4 236:5 257:1 283:1 303:1 315:2 325:1 327:16 338:1 356:1 357:2 366:1 378:1 419:1 441:2 460:3 478:1 480:1 550:1 558:1 591:2 592:1 600:1 603:3 625:2 635:2 637:1 638:1 657:2 671:1 682:1 685:1 691:1 693:1 703:1 724:1 732:1 736:1 747:1 758:1 774:1 788:1 802:1 804:1 819:1 824:1 833:1 843:1 854:1 856:2 857:1 883:3 885:3 897:1 899:1 900:1 911:1 914:9 917:1 929:1 933:1 938:2 941:6 946:1 952:1 953:1 959:1 964:3 985:1 986:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:1 1060:1 1076:1 1080:2 1084:1 1102:1 1115:1 1133:1 1142:1 1143:1 1156:2 1164:1 1172:1 1194:1 1201:2 1213:1 1230:1 1258:2 1292:1 1300:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1441:2 1443:1 1464:2 1468:1 1471:5 1474:1 1490:1 1491:1 1493:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:1 1614:1 1621:1 1639:1 1641:2 1642:3 1650:1 1677:2 1680:1 1700:1 1701:1 1706:3 1712:2 1732:1 1733:1 1752:1 1775:1 1814:1 1818:1 1830:1 1844:3 1852:1 1856:1 1863:1 1873:1 1878:1 1908:1 1958:9 1965:1 1970:2 1986:1 1991:1 1996:1 1997:1 2008:1 2018:6 2019:2 2051:1 2053:1 2057:1 2063:1 2088:1 2128:1 2130:1 2136:3 2143:1 2151:1 2152:1 2161:1 2186:1 2211:1 2213:1 2218:1 2219:1 2226:1 2232:1 2234:2 2238:1 2239:2 2240:3 2243:1 2255:2 2274:1 2276:1 2280:1 2281:1 2284:2 2285:6 2288:4 2291:1 2292:2 2293:2 2296:1 2297:1 2298:1 2301:2 2311:1 2314:1 2316:6 2318:2 2319:6 2331:1 2332:1 2348:1 2369:1 2380:1 2386:1 2393:1 2407:1 2411:1 2418:1 2430:2 2437:1 2445:1 2448:1 2466:1 2482:2 2493:4 2505:1 2515:1 2532:1 2537:1 2561:5 2570:2 2577:1 2595:2 2603:1 2608:1 2615:3 2618:2 2620:1 2632:1 2661:2 2682:1 2699:1 2701:2 2706:1 2709:1 2717:2 2720:1 2728:1 2740:1 2745:1 2748:1 2761:1 2763:1 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:5 2831:2 2841:1 2848:1 2880:1 2882:1 2883:1 2889:1 2933:2 2941:10 2959:3 2975:2 2980:1 3002:9 3032:1 3036:4 3038:1 3061:1 3064:1 3092:1 3095:1 3146:1 3176:1 3177:1 3225:1 3240:1 3259:1 3269:1 3280:1 3304:1 3312:4 3325:1 3339:1 3343:1 3348:1 3384:1 3386:2 3416:1 3431:1 3434:7 3481:1 3487:1 3510:1 3544:1 3551:1 3557:1 3561:1 3563:1 3564:2 3568:2 3571:1 3578:1 3581:1 3587:1 3615:1 3619:1 3628:1 3635:2 3640:1 3648:1 3665:1 3670:1 3674:1 3678:2 3681:2 3699:4 3706:1 3708:2 3709:2 3715:1 3741:3 3773:1 3784:1 3787:1 3792:3 3796:1 3800:2 3803:2 3848:1 3853:1 3855:4 3857:1 3858:2 3859:8 3873:1 3882:1 3888:1 3895:3 3897:1 3903:1 3904:8 3905:1 3906:1 3924:3 3932:1 3938:1 3956:2 3958:1 3967:1 3969:1 3978:1 3981:1 3986:1 3993:1 4000:1 4004:1 4016:1 4019:2 4022:1 4032:1 4045:1 4053:1 4054:1 4058:1 4077:2 4084:1 4085:1 4089:2 4093:1 4099:2 4100:2 4108:4 4109:2 4114:1 4153:1 4169:2 4187:1 4196:2 4204:1 4237:1 4239:1 4241:1 4250:1 4302:1 4307:2 4315:1 4316:1 4325:1 4364:1 4378:2 4381:1 4388:1 4405:1 4455:1 4474:4 4494:1 4535:1 4546:1 4555:1 4572:1 4601:1 4631:1 4675:1 4697:1 4724:1 4728:2 4741:3 4749:1 4751:1 4754:1 4774:1 4804:1 4807:7 4843:1 4854:1 4870:1 4875:1 4889:1 4896:1 4903:5 4918:1 4921:1 4951:1 4954:1 4986:1 5009:1 5019:14 5021:2 5024:1 5041:2 5052:1 5078:1 5083:5 5093:1 5115:1 5117:1 5131:1 5134:1 5135:4 5151:2 5152:4 5153:1 5154:1 5159:3 5163:1 5166:1 5173:2 5175:2 5178:1 5185:1 5187:2 5188:2 5211:1 5242:1 5277:2 5299:1 5317:1 5321:1 5326:2 5328:1 5336:2 5344:1 5367:1 5385:1 5396:2 5404:1 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5512:2 5518:4 5520:1 5522:1 5535:2 5538:1 5551:1 5553:1 5555:1 5567:2 5602:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:1 5698:1 5704:1 5705:1 5708:1 5710:2 5712:1 5722:1 5758:3 5763:1 5772:1 5792:2 5808:2 5815:1 5816:1 5849:3 5873:2 5888:1 5897:2 5914:4 5917:1 5921:1 5945:1 5977:1 6011:1 6021:1 6028:1 6059:2 6066:1 6097:1 6102:2 6129:1 6152:1 6183:2 6184:1 6205:9 6226:4 6231:2 6238:1 6247:1 6248:2 6249:1 6257:1 6280:1 6297:1 6301:1 6308:1 6356:1 6380:1 6384:2 6385:1 6390:1 6400:1 6404:1 6426:5 6429:1 6437:1 6442:1 6464:1 6485:1 6488:1 6501:3 6505:1 6507:1 6515:1 6517:1 6518:1 6519:1 6520:3 6525:2 6526:8 6527:3 6530:1 6539:1 6568:1 6571:1 6591:1 6646:3 6681:2 6699:1 6750:1 6763:1 6769:1 6777:1 6798:1 6803:1 6814:1 6816:1 6822:1 6844:1 6851:1 6855:1 6898:1 6916:1 6919:2 6924:1 6929:1 6940:5 6960:1 6968:1 6973:1 6985:1 6997:1 7002:1 7029:1 7045:2 7058:1 7086:2 7087:2 7091:1 7100:1 7113:3 7114:2 7131:1 7147:2 7148:1 7150:2 7160:1 7177:1 7212:1 7253:7 7255:1 7273:1 7281:2 7300:1 7302:1 7306:1 7310:1 7332:1 7336:1 7337:1 7411:2 7416:1 7435:2 7452:1 7479:1 7491:3 7505:2 7509:1 7516:1 7527:1 7549:3 7554:1 7555:1 7579:2 7583:1 7596:1 7603:1 7627:2 7644:1 7663:1 7672:1 7725:1 7726:2 7756:1 7757:9 7758:1 7771:1 7784:1 7785:2 7786:1 7812:2 7831:40 7836:1 7854:2 7855:9 7857:1 7860:1 7883:2 7908:1 7911:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:2 8035:2 8059:1 8087:1 8093:1 8108:1 8112:2 8138:1 8143:1 8145:1 8172:1 8223:1 8226:1 8233:1 8250:1 8258:1 8265:2 8266:3 8267:1 8269:1 8285:1 8287:1 8317:1 8324:2 8333:1 8338:2 8343:1 8348:2 8357:1 8358:3 8389:2 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:1 8541:1 8564:1 8566:1 8589:1 8591:1 8599:1 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:1 8638:1 8646:1 8656:1 8664:5 8669:1 8671:1 8701:1 8716:1 8728:1 8736:1 8739:2 8740:3 8743:2 8744:2 8746:1 8748:3 8749:5 8752:2 8753:1 8757:1 8784:2 8790:1 8792:3 8816:1 8820:1 8822:1 8826:2 8829:1 8834:1 8837:1 8853:1 8892:1 8906:1 8907:1 8930:1 8939:1 8958:1 8968:1 8974:1 8988:1 9017:2 9033:2 9041:1 9066:1 9073:3 9074:1 9078:2 9090:2 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9171:1 9177:1 9188:2 9199:4 9202:2 9222:1 9241:1 9252:1 9275:1 9276:1 9292:1 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:2 9373:1 9387:1 9394:1 9401:1 9411:1 9421:1 9459:1 9463:1 9467:5 9469:1 9474:2 9477:1 9486:16 9508:2 9510:1 9523:1 9535:1 9572:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:6 9634:1 9659:1 9676:1 9684:3 9728:1 9749:1 9758:1 9793:1 9794:1 9808:1 9810:1 9831:1 9844:1 9845:2 9851:1 9861:1 9869:3 9877:1 9886:1 9895:1 9919:2 9949:6 9962:2 9965:1 9966:3 9972:2 9991:1 9995:1 10035:3 10065:1 10093:1 10108:4 10113:1 10120:1 10135:2 10143:1 10145:1 10147:2 10150:1 10158:3 10171:1 10175:1 10179:1 10196:1 10198:1 10202:1 10210:1 10211:1 10213:1 10225:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10309:1 10336:1 10345:1 10368:1 10399:1 10401:1 10402:1 10418:1 10481:1 10520:1 10525:1 10550:1 10570:1 10588:1 10608:1 10609:1 10625:1 10630:2 10638:2 10653:1 10655:1 10712:1 10722:1 10724:1 10767:1 10769:1 10790:2 10794:2 10800:1 10809:1 10811:1 10813:1 10823:1 10824:1 10841:1 10844:1 10846:1 10854:1 10865:1 10867:1 10876:2 10886:1 10888:1 10890:2 10895:1 10916:1 10934:1 10950:1 10953:3 10967:4 10988:2 10990:9 11055:1 11056:1 11067:1 11079:1 11112:1 11117:1 11159:1 11180:1 11211:1 11224:1 11254:3 11257:1 11260:2 11262:2 11269:2 11291:1 11298:1 11299:1 11302:1 11312:1 11347:6 11351:1 11372:2 11377:1 11378:1 11381:1 11433:1 11434:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11516:1 11544:1 11554:1 11557:1 11579:1 11583:4 11590:1 11613:1 11627:1 11637:1 11643:2 11659:1 11660:1 11674:1 11675:1 11677:1 11682:1 11686:2 11706:3 11715:1 11749:1 11752:6 11753:1 11789:1 11790:1 11819:1 11820:1 11830:1 11831:1 11852:1 11860:1 11861:1 11866:1 11890:1 11898:1 11901:1 11908:1 11914:2 11930:2 11933:5 11960:1 11962:4 11963:1 11989:1 11994:1 12012:2 12020:1 12025:1 12026:2 12029:3 12032:1 12042:1 12046:1 12049:2 12059:1 12074:5 12085:1 12097:5 12108:1 12111:1 12132:1 12139:1 12149:1 12156:1 12195:1 12200:2 12223:1 12263:1 12265:1 12291:1 12304:3 12306:1 12315:1 12346:1 12359:3 12362:3 12382:1 12411:3 12426:1 12433:1 12439:1 12526:1 12542:1 12543:2 12544:3 12545:1 12571:1 12592:1 12602:2 12603:4 12608:1 12615:1 12619:2 12686:1 12702:1 12722:1 12726:1 12732:4 12753:1 12798:1 12806:1 12807:1 12810:2 12824:1 12847:2 12872:1 12880:1 12896:1 12904:1 12935:1 12950:1 12953:1 12954:1 12971:1 12973:1 12991:1 12996:1 13009:2 13091:5 13100:1 13113:1 13114:1 13131:8 13142:1 13151:2 13153:5 13155:1 13161:1 13180:1 13189:1 13192:1 13199:1 13222:2 13246:1 13250:1 13255:1 13256:1 13259:2 13270:2 13283:1 13291:2 13292:1 13315:1 13334:1 13339:1 13341:1 13393:1 13417:1 13450:1 13454:4 13503:1 13523:1 13550:5 13556:1 13573:2 13584:1 13588:4 13595:3 13609:1 13611:5 13647:1 13663:1 13665:1 13666:1 13690:3 13726:1 13732:1 13734:1 13747:2 13754:1 13756:2 13757:1 13774:2 13800:2 13802:1 13807:1 13808:1 13829:1 13830:3 13833:1 13840:1 13847:1 13854:1 13862:1 13865:1 13880:1 13887:4 13913:1 13933:3 13937:1 13938:2 13973:1 13987:2 14008:1 14076:1 14081:1 14116:3 14120:2 14123:4 14124:1 14127:1 14138:1 14146:1 14149:1 14170:1 14191:2 14198:2 14201:1 14204:1 14205:1 14233:1 14243:2 14254:1 14277:1 14290:2 14292:1 14304:2 14316:1 14339:4 14343:1 14345:3 14346:1 14352:1 14359:1 14399:1 14401:1 14414:1 14426:3 14445:7 14455:1 14486:1 14489:1 14508:1 14525:1 14530:1 14535:1 14560:1 14577:5 14591:1 14602:3 14611:1 14624:1 14643:1 14649:1 14651:1 14667:1 14668:1 14705:1 14720:1 14730:1 14732:1 14741:1 14757:2 14768:1 14780:1 14783:1 14794:1 14795:1 14796:2 14797:4 14800:1 14803:6 14808:1 14812:1 14814:1 14815:1 14825:1 14833:1 14861:1 14913:1 14914:1 14927:4 14961:2 14971:2 14978:1 14984:2 15003:1 15013:3 15037:1 15038:1 15060:1 15084:2 15099:2 15109:1 15112:1 15129:1 15134:4 15152:1 15157:1 15166:2 15183:1 15253:1 15266:1 15328:3 15329:1 15332:1 15334:1 15349:1 15395:1 15396:1 15408:3 15410:1 15424:1 15428:1 15444:1 15449:3 15450:2 15470:2 15483:1 15494:1 15497:1 15511:1 15532:5 15535:1 15543:1 15549:1 15638:3 15641:1 15651:1 15655:1 15670:1 15681:1 15692:3 15693:1 15698:1 15700:1 15715:1 15727:1 15748:1 15761:1 15774:2 15820:2 15849:1 15863:5 15882:1 15886:1 15924:2 15941:1 15950:4 15951:1 15961:2 15969:1 15973:1 15982:1 15987:1 16004:2 16007:1 16018:1 16028:2 16081:1 16114:2 16118:1 16128:5 16133:2 16140:1 16141:2 16151:1 16160:2 16165:2 16172:1 16173:2 16174:2 16184:1 16189:1 16228:1 16233:1 16243:1 16275:1 16306:4 16312:1 16325:1 16335:1 16345:1 16359:2 16387:1 16403:6 16404:3 16406:1 16452:1 16459:3 16468:1 16472:1 16484:1 16488:2 16499:1 16552:1 16553:2 16599:1 16607:1 16612:12 16613:1 16618:1 16624:1 16629:2 16640:1 16670:2 16690:3 16693:1 16698:1 16717:1 16734:1 16741:1 16745:1 16756:2 16760:1 16763:1 16791:1 16826:1 16829:1 16830:2 16885:1 16922:1 16960:1 16963:1 16966:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:2 17133:1 17156:1 17158:1 17167:1 17178:1 17212:1 17234:1 17237:2 17245:1 17255:2 17272:1 17279:1 17287:3 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:2 17374:1 17407:2 17411:1 17413:4 17419:1 17436:1 17444:1 17474:1 17478:1 17483:5 17496:1 17510:1 17516:2 17535:4 17553:1 17565:1 17569:1 17584:2 17625:1 17630:1 17632:1 17639:4 17646:1 17668:3 17671:1 17684:1 17711:1 17712:1 17735:2 17737:2 17750:1 17754:1 17762:1 17777:1 17778:7 17787:2 17820:1 17832:1 17844:1 17850:2 17857:2 17921:1 17946:1 17962:1 17968:2 17975:1 17980:2 18000:1 18004:1 18018:1 18025:1 18039:1 18041:1 18043:2 18050:2 18051:1 18053:1 18060:2 18070:3 18072:2 18076:1 18106:1 18126:4 18127:2 18151:1 18154:1 18185:1 18189:1 18196:5 18210:1 18240:1 18245:1 18252:2 18256:1 18259:1 18276:1 18283:3 18286:1 18288:1 18291:1 18304:1 18324:1 18327:1 18344:1 18365:1 18366:2 18395:1 18403:2 18424:7 18430:2 18436:18 18444:1 18447:1 18451:1 18455:1 18459:1 18482:1 18485:1 18486:1 18506:1 18528:1 18532:1 18537:1 18546:1 18550:1 18569:1 18575:1 18586:1 18591:4 18604:1 18630:1 18643:5 18680:1 18683:1 18695:1 18698:1 18712:1 18720:1 18723:2 18736:3 18738:1 18750:1 18761:1 18780:1 18805:1 18812:1 18843:1 18845:1 18867:1 18905:1 18915:1 18918:1 18928:1 18962:1 18968:2 18969:1 19001:2 19069:4 19095:1 19113:1 19148:2 19152:1 19172:2 19191:3 19199:1 19218:1 19225:1 19229:1 19245:2 19251:2 19254:2 19259:1 19279:1 19287:3 19291:1 19300:1 19304:1376 19308:1 19324:1 19367:2 19368:1 19377:1 19402:1 19431:1 19437:2 19444:1 19476:1 19486:1 19506:1 19521:1 19529:2 19535:3 19542:1 19548:2 19551:1 19552:2 19583:1 19629:5 19633:1 19635:1 19642:1 19665:1 19666:16 19692:7 19716:1 19747:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19837:2 19844:2 19860:1 19868:1 19882:1 19898:2 19908:1 19920:1 19927:1 19928:1 19953:1 19978:2 19981:1 19982:2 20018:1 20021:1 20027:1 20033:1 20036:1 20038:1 20043:2 20049:1 20053:1 20058:1 20064:1 20074:4 20078:1 20092:1 20106:2 20131:8 20147:1 20148:1 20172:5 20173:1 20183:1 20188:1 20198:1 20242:1 20247:2 20296:1 20300:1 20313:1 20329:4 20331:1 20336:3 20339:2 20351:1 20372:1 20374:3 20375:1 20387:1 20399:1 20429:1 20463:1 20468:1 20501:3 20516:1 20528:1 20559:2 20570:1 20571:1 20577:1 20584:2 20590:1 20593:1 20597:1 20598:1 20599:1 20608:1 20616:1 20620:2 20624:1 20629:2 20641:1 20664:1 20666:1 20687:1 20692:2 20708:1 20733:1 20754:2 20756:1 20760:1 20783:1 20790:1 20791:4 20805:1 20817:2 20828:1 20832:1 20848:1 20850:1 20875:1 20884:1 20886:1 20901:1 20912:2 20918:1 20923:1 20928:1 20932:1 20962:1 20964:2 20980:1 21002:5 21032:1 21057:4 21058:2 21062:2 21068:1 21074:1 21080:1 21127:1 21129:1 21136:2 21139:1 21143:1 21255:3 21259:2 21271:1 21290:1 21296:1 21298:1 21299:4 21314:1 21319:2 21324:1 21388:1 21389:2 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21511:1 21514:1 21526:1 21529:1 21539:1 21546:4 21550:1 21552:1 21561:1 21574:1 21579:1 21588:2 21605:1 21613:3 21647:1 21656:2 21659:1 21673:1 21702:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:2 21863:2 21872:1 21875:1 21894:1 21901:1 21907:1 21952:1 21965:1 21971:1 21976:1 21979:1 21985:1 22005:1 22022:2 22045:1 22058:1 22061:1 22078:1 22082:1 22122:1 22149:1 22177:1 22225:1 22240:1 22241:2 22250:1 22254:1 22256:1 22258:2 22265:1 22272:2 22273:1 22282:2 22283:1 22289:1 22298:1 22325:1 22338:1 22346:3 22361:1 22363:1 22365:1 22370:2 22371:1 22376:1 22378:1 22383:2 22391:1 22401:1 22408:1 22413:1 22415:7 22433:1 22437:1 22447:1 22455:1 22477:1 22491:1 22507:2 22513:1 22519:1 22525:7 22532:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22625:1 22632:1 22661:1 22665:3 22672:1 22676:1 22678:1 22679:1 22681:1 22682:1 22697:1 22698:2 22716:2 22720:1 22735:1 22766:2 22798:1 22801:1 22818:1 22834:1 22838:1 22870:1 22886:3 22892:3 22897:1 22924:1 22933:1 22940:1 22943:1 22947:2 22959:1 22961:1 22975:2 23029:1 23034:1 23052:4 23053:3 23056:3 23072:2 23073:1 23096:1 23111:2 23118:1 23124:1 23134:1 23142:3 23144:1 23145:2 23154:1 23174:1 23177:1 23178:2 23185:1 23205:1 23226:1 23229:1 23231:1 23233:1 23241:1 23243:1 23251:1 23260:1 23263:1 23270:1 23291:2 23292:1 23309:2 23315:18 23320:1 23321:2 23323:3 23327:1 23329:1 23352:3 23354:1 23361:1 23364:1 23368:1 23384:1 23385:1 23389:1 23425:1 23437:1 23440:1 23487:1 23497:1 23501:3 23509:1 23530:2 23535:1 23594:1 23596:1 23602:2 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23649:2 23655:2 23663:1 23664:1 23685:1 23702:1 23711:1 23717:1 23724:1 23740:1 23785:1 23828:1 23830:1 23837:1 23844:1 23859:1 23860:1 23869:1 23887:1 23888:1 23903:2 23906:1 23926:3 23928:1 23944:3 23952:1 23955:1 23977:2 23978:1 23984:1 23992:2 23997:1 24079:1 24125:1 24129:1 24144:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24196:1 24209:1 24214:1 24218:1 24220:1 24228:1 24232:1 24258:1 24270:3 24278:1 24280:1 24282:1 24291:1 24309:1 24325:1 24336:1 24343:8 24351:1 24376:2 24393:1 24423:1 24425:1 24443:1 24488:1 24513:1 24515:1 24526:2 24533:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:1 24620:3 24622:1 24623:1 24631:1 24638:1 24652:1 24661:2 24728:1 24731:1 24746:2 24748:1 24761:1 24762:1 24764:2 24788:1 24801:1 24822:1 24839:1 24862:1 24863:1 24902:1 24912:4 24914:1 24923:3 24927:1 24944:1 24955:2 24956:1 24957:1 24973:1 24995:1 25028:2 25030:1 25032:1 25060:1 25068:1 25085:1 25093:1 25099:3 25100:2 25115:1 25127:1 25136:1 25148:1 25150:1 25184:1 25206:1 25210:1 25221:2 25222:1 25224:5 25226:2 25228:4 25229:2 25235:2 25236:2 25238:1 25248:1 25249:2 25255:2 25262:1 25268:2 25297:1 25300:2 25301:1 25315:2 25327:1 25337:3 25343:3 25363:1 25369:1 25370:1 25381:1 25393:1 25410:1 25414:1 25439:1 25460:1 25463:1 25478:1 25504:3 25530:2 25540:1 25545:3 25565:2 25601:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25752:3 25767:1 25781:1 25785:3 25794:2 25828:3 25861:1 25879:1 25887:1 25900:1 25903:3 25909:1 25915:1 25922:1 25927:1 25929:1 25931:3 25988:1 26007:1 26023:1 26025:2 26060:8 26069:1 26083:6 26112:1 26122:1 26127:1 26138:1 26146:2 26168:1 26175:1 26180:2 26187:1 26190:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:4 26270:1 26280:1 26285:2 26288:7 26293:1 26294:2 26304:1 26307:1 26311:1 26317:2 26320:1 26328:1 26329:1 26334:1 26358:1 26363:2 26373:1 26379:2 26387:1 26410:3 26420:2 26422:1 26482:1 26494:1 26495:1 26511:1 26519:1 26534:1 26560:1 26563:1 26579:1 26589:1 26591:1 26593:1 26614:3 26646:1 26648:1 26656:1 26662:1 26698:1 26716:1 26754:1 26760:1 26776:1 26805:1 26847:1 26872:1 26882:1 26883:1 26886:1 26901:1 26902:1 26907:1 26918:1 26925:1 26939:1 26954:1 26957:2 26983:2 26989:1 26997:1 26998:1 27020:4 27047:4 27070:1 27089:1 27091:1 27094:1 27095:1 27107:1 27118:1 27119:1 27127:1 27138:1 27157:1 27174:1 27178:4 27179:1 27212:3 27234:1 27236:1 27260:1 27278:1 27299:3 27320:2 27322:1 27327:1 27330:1 27334:3 27335:1 27341:1 27375:2 27378:1 27381:1 27387:1 27415:2 27438:2 27439:1 27454:2 27459:1 27482:1 27484:2 27510:1 27535:1 27539:1 27555:1 27574:1 27583:5 27608:2 27665:1 27670:1 27708:1 27712:1 27714:1 27732:1 27739:1 27780:1 27781:1 27787:1 27792:1 27804:1 27807:1 27822:1 27826:1 27845:1 27875:1 27888:1 27897:1 27917:1 27924:1 27940:4 27957:2 27965:4 27974:1 27990:1 27991:1 27997:1 28011:1 28033:1 28043:1 28044:7 28071:1 28087:2 28097:1 28101:1 28102:1 28109:8 28151:3 28188:1 28218:5 28225:1 28226:2 28242:2 28246:1 28251:2 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:1 28335:2 28337:1 28347:1 28361:1 28372:1 28377:1 28381:1 28384:1 28398:1 28409:1 28414:2 28416:1 28418:1 28458:1 28529:1 28533:1 28554:2 28588:1 28589:1 28600:1 28616:4 28619:1 28637:1 28686:1 28736:1 28755:2 28825:1 28845:1 28858:1 28860:5 28872:1 28893:1 28896:1 28928:1 28938:1 28978:1 28980:1 28983:1 28992:18 28993:2 28996:5 28998:1 28999:2 29011:1 29034:6 29048:1 29092:1 29100:2 29115:1 29120:1 29131:1 29132:1 29142:1 29146:2 29176:9 29180:2 29184:1 29186:1 29190:1 29210:1 29213:1 29216:1 29221:1 29228:1 29236:1 29245:2 29251:1 29262:1 29267:1 29268:2 29278:1 29293:1 29295:1 29300:1 29302:1 29343:1 29347:1 29362:2 29364:1 29387:1 29388:1 29391:1 29405:2 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29518:1 29525:1 29529:1 29532:1 29539:1 29548:1 29551:1 29566:1 29570:1 29579:1 29587:2 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29712:1 29717:1 29722:1 29723:1 29736:1 29740:2 29749:1 29758:1 29767:5 29773:1 29780:2 29782:1 29788:1 29801:1 29832:1 29839:1 29840:1 29882:2 29890:1 29900:1 29914:2 29918:1 29920:2 29925:1 29927:1 29931:2 29949:1 29969:1 29970:1 30001:2 30012:1 30035:1 30058:1 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30150:2 30187:1 30194:5 30208:1 30210:1 30231:6 30243:4 30250:1 30320:7 30322:2 30324:2 30326:1 30328:1 30331:3 30332:1 30344:1 30363:2 30367:3 30371:3 30408:1 30421:1 9 11:1 14:1 43:1 50:2 79:1 85:1 108:1 109:1 135:1 139:1 142:1 152:1 176:1 187:1 189:3 201:1 206:4 236:5 257:1 283:1 303:1 315:2 325:1 327:16 338:1 356:1 357:3 366:1 378:1 397:1 419:1 441:2 460:3 478:1 480:1 550:1 558:1 591:2 592:1 600:1 603:3 625:2 635:2 637:1 638:1 657:2 671:1 682:1 685:1 691:1 693:1 703:1 724:1 732:1 736:1 747:1 758:1 774:1 788:1 802:1 804:1 819:1 824:1 833:1 843:1 854:1 856:2 857:1 883:3 885:3 897:1 899:1 900:1 911:1 914:10 917:1 929:1 933:1 938:2 941:6 946:1 952:1 953:1 959:1 964:3 985:1 986:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:1 1060:1 1076:1 1080:2 1084:1 1102:1 1115:1 1126:1 1133:1 1142:1 1143:1 1156:2 1164:1 1172:1 1187:1 1194:1 1201:3 1213:1 1230:1 1258:2 1292:1 1300:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1441:2 1443:1 1464:2 1468:1 1471:5 1474:1 1490:1 1491:1 1493:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:1 1614:1 1621:1 1639:1 1641:2 1642:3 1650:1 1677:3 1680:1 1700:1 1701:2 1706:3 1712:2 1732:1 1733:1 1752:1 1775:1 1814:1 1818:1 1830:1 1844:3 1852:1 1856:1 1863:1 1873:1 1878:1 1908:1 1958:9 1965:1 1970:2 1986:1 1991:1 1996:1 1997:1 2008:1 2018:6 2019:2 2051:1 2053:1 2057:1 2063:3 2088:1 2128:1 2130:1 2136:3 2143:1 2151:1 2152:1 2161:1 2186:1 2211:1 2213:1 2218:2 2219:1 2226:1 2232:1 2234:2 2238:1 2239:2 2240:4 2243:1 2255:2 2274:1 2276:1 2280:1 2281:1 2284:2 2285:6 2288:4 2291:1 2292:2 2293:2 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:1 2314:1 2316:6 2318:2 2319:6 2331:1 2332:1 2348:1 2369:1 2380:1 2386:1 2393:1 2407:1 2411:1 2418:1 2430:2 2437:1 2445:1 2448:1 2466:1 2482:2 2493:5 2505:1 2515:1 2532:1 2537:1 2561:5 2570:2 2577:1 2595:2 2603:1 2608:2 2615:3 2618:2 2620:1 2623:1 2632:1 2661:2 2682:1 2699:1 2701:2 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2740:1 2745:1 2748:1 2761:1 2763:1 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:5 2831:2 2841:1 2848:1 2880:1 2882:1 2883:1 2889:1 2933:2 2941:13 2959:4 2975:2 2980:1 3002:9 3032:1 3036:4 3038:1 3061:1 3064:1 3092:1 3095:1 3146:2 3162:1 3176:1 3177:1 3225:1 3240:1 3242:1 3259:1 3269:1 3280:1 3304:1 3312:4 3325:1 3339:1 3343:1 3348:1 3361:1 3384:1 3386:3 3416:1 3431:1 3434:8 3481:1 3487:1 3510:1 3544:1 3551:1 3557:1 3561:1 3563:1 3564:2 3568:2 3571:1 3578:1 3581:1 3587:1 3615:1 3619:1 3628:1 3635:2 3640:1 3648:1 3665:1 3670:1 3674:1 3678:2 3681:3 3699:4 3706:1 3708:2 3709:2 3715:1 3736:1 3741:3 3751:1 3773:1 3784:1 3787:1 3791:1 3792:3 3796:1 3800:2 3803:2 3848:1 3853:1 3855:4 3857:1 3858:2 3859:8 3873:1 3882:1 3888:1 3895:3 3897:1 3903:2 3904:9 3905:1 3906:1 3924:4 3932:1 3938:1 3956:2 3958:1 3967:1 3969:1 3978:1 3981:1 3986:1 3993:1 4000:1 4004:1 4016:1 4019:2 4022:1 4032:1 4045:1 4053:1 4054:1 4058:1 4077:2 4084:1 4085:1 4089:2 4093:1 4099:2 4100:2 4108:4 4109:2 4114:1 4144:1 4153:1 4169:2 4187:1 4196:2 4204:1 4237:1 4239:1 4241:1 4250:1 4286:1 4302:1 4307:2 4315:1 4316:1 4325:1 4364:1 4378:2 4381:1 4388:1 4405:1 4455:1 4474:5 4494:1 4535:1 4546:1 4555:1 4572:1 4601:1 4631:1 4675:1 4697:1 4724:1 4728:2 4741:3 4749:1 4751:1 4754:1 4774:1 4804:1 4807:7 4843:1 4854:1 4870:1 4875:1 4889:1 4896:1 4903:6 4907:1 4918:1 4921:1 4951:1 4954:1 4986:1 5009:1 5019:15 5021:2 5024:1 5041:2 5052:1 5078:1 5083:5 5093:1 5115:1 5117:1 5131:1 5134:1 5135:4 5151:2 5152:4 5153:1 5154:1 5159:3 5162:1 5163:1 5166:1 5171:1 5173:2 5175:2 5178:1 5185:1 5187:2 5188:2 5211:1 5242:1 5277:2 5299:1 5317:1 5321:1 5326:2 5328:1 5336:2 5344:2 5367:1 5385:1 5396:2 5404:1 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5512:2 5518:4 5520:1 5522:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:1 5698:1 5704:1 5705:1 5708:1 5710:2 5712:1 5722:1 5758:3 5763:1 5772:1 5792:2 5808:2 5815:1 5816:1 5849:3 5873:2 5888:1 5897:2 5914:4 5917:1 5921:1 5945:1 5977:1 6011:1 6021:1 6028:1 6059:2 6066:1 6097:1 6102:2 6129:1 6152:1 6183:2 6184:1 6205:9 6226:4 6231:2 6238:1 6247:1 6248:2 6249:1 6257:1 6280:1 6297:1 6301:1 6308:1 6356:1 6380:1 6384:2 6385:1 6390:1 6400:1 6404:1 6426:5 6429:1 6437:1 6440:1 6442:1 6464:1 6485:1 6488:1 6501:3 6503:1 6505:1 6507:1 6515:1 6517:1 6518:1 6519:1 6520:3 6525:2 6526:8 6527:3 6530:1 6539:1 6568:1 6571:1 6591:1 6646:3 6681:2 6699:1 6750:1 6763:1 6769:1 6777:1 6798:1 6803:1 6814:1 6816:1 6822:1 6844:1 6851:1 6855:1 6897:1 6898:2 6916:1 6919:2 6924:1 6929:1 6940:5 6960:2 6968:1 6973:1 6985:1 6997:1 7002:1 7029:1 7045:2 7058:1 7086:2 7087:2 7091:2 7100:1 7113:3 7114:2 7131:1 7147:2 7148:1 7150:2 7160:1 7177:1 7212:1 7253:7 7255:1 7273:1 7281:2 7300:1 7302:1 7306:1 7310:1 7332:1 7336:1 7337:1 7411:2 7416:1 7435:2 7452:1 7479:1 7491:3 7505:2 7509:1 7516:1 7521:1 7527:1 7549:3 7554:3 7555:1 7579:2 7583:1 7596:1 7597:1 7603:1 7627:2 7644:1 7663:1 7672:1 7725:1 7726:2 7756:1 7757:9 7758:1 7771:1 7784:1 7785:2 7786:1 7812:3 7813:1 7831:42 7836:1 7854:2 7855:9 7857:1 7860:1 7883:2 7908:1 7911:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:2 8035:2 8059:1 8062:1 8087:1 8093:1 8108:1 8112:2 8138:1 8143:1 8145:1 8172:1 8223:1 8226:1 8233:1 8250:1 8258:1 8265:2 8266:3 8267:1 8269:1 8285:1 8287:1 8317:1 8324:2 8333:1 8338:2 8343:1 8348:2 8357:1 8358:3 8389:2 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:1 8564:1 8566:1 8589:1 8591:1 8599:2 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:3 8638:1 8646:1 8656:1 8664:5 8669:1 8671:1 8701:1 8716:1 8728:1 8736:1 8739:2 8740:3 8743:3 8744:2 8746:1 8748:3 8749:6 8752:2 8753:1 8757:1 8784:2 8790:1 8792:3 8816:2 8820:1 8822:1 8826:2 8829:1 8834:1 8837:2 8853:1 8892:2 8906:1 8907:1 8930:1 8939:1 8958:1 8968:1 8974:1 8988:1 9017:2 9033:2 9041:1 9066:1 9073:3 9074:1 9078:2 9090:2 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9171:1 9177:1 9188:2 9199:4 9202:2 9222:1 9241:1 9252:1 9275:1 9276:1 9292:1 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:2 9373:1 9387:1 9394:1 9401:1 9411:1 9421:1 9459:1 9463:1 9467:5 9469:1 9474:2 9477:1 9486:16 9508:2 9510:1 9523:1 9535:1 9572:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:6 9634:1 9659:1 9676:1 9684:3 9728:1 9749:1 9758:1 9793:1 9794:1 9808:1 9810:1 9831:1 9844:1 9845:2 9851:1 9861:1 9869:3 9877:1 9886:1 9895:2 9919:2 9949:6 9962:2 9965:1 9966:3 9972:2 9991:1 9995:1 10035:3 10065:1 10093:1 10108:4 10113:1 10120:1 10126:1 10135:2 10143:1 10145:1 10147:2 10150:1 10158:3 10171:1 10175:1 10179:1 10196:1 10198:1 10202:1 10210:1 10211:1 10213:1 10225:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10308:1 10309:1 10336:1 10345:1 10368:1 10399:1 10401:1 10402:1 10418:1 10481:1 10520:1 10525:1 10550:1 10570:1 10588:1 10608:1 10609:1 10625:2 10630:2 10638:2 10653:1 10655:1 10690:1 10712:1 10722:1 10724:1 10767:1 10769:1 10790:2 10794:2 10800:2 10809:1 10810:1 10811:1 10813:1 10823:1 10824:2 10841:2 10844:3 10846:1 10854:1 10865:1 10866:1 10867:1 10876:2 10886:1 10888:1 10890:2 10895:1 10916:1 10934:1 10950:1 10953:5 10967:4 10988:2 10990:9 11055:1 11056:1 11067:1 11079:1 11112:2 11117:1 11159:1 11180:1 11211:1 11224:1 11254:3 11257:2 11260:2 11262:2 11269:2 11291:1 11298:1 11299:1 11302:1 11312:1 11347:6 11351:1 11372:2 11377:1 11378:1 11381:1 11433:1 11434:1 11437:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11516:1 11544:1 11554:1 11557:1 11579:1 11583:4 11590:1 11613:1 11627:1 11637:1 11643:2 11659:1 11660:1 11674:2 11675:1 11677:1 11682:1 11686:2 11706:3 11715:1 11749:1 11752:6 11753:1 11789:1 11790:1 11797:1 11819:1 11820:1 11830:1 11831:2 11852:1 11860:1 11861:1 11866:1 11890:1 11898:1 11901:1 11908:1 11914:2 11930:2 11933:6 11960:1 11962:5 11963:1 11989:1 11994:1 12006:1 12012:2 12020:1 12025:1 12026:2 12029:3 12032:1 12042:1 12044:1 12046:1 12049:2 12055:1 12059:1 12074:5 12085:1 12097:6 12108:1 12111:1 12132:1 12139:1 12149:1 12156:1 12195:1 12200:2 12223:1 12263:1 12265:1 12291:1 12304:3 12306:1 12315:1 12346:1 12359:3 12362:3 12382:1 12411:3 12426:1 12433:1 12439:1 12526:1 12540:1 12542:1 12543:2 12544:3 12545:1 12560:1 12571:1 12592:1 12593:1 12602:2 12603:4 12608:2 12615:1 12619:2 12686:1 12702:1 12722:1 12726:1 12732:4 12753:1 12782:1 12798:1 12806:1 12807:1 12810:2 12824:1 12847:2 12872:1 12880:1 12896:1 12904:1 12935:1 12950:1 12953:1 12954:2 12971:1 12973:1 12991:1 12996:1 13009:2 13091:6 13100:1 13113:1 13114:1 13131:9 13142:1 13151:2 13153:5 13155:1 13161:1 13180:1 13189:1 13192:1 13199:1 13222:2 13246:1 13250:1 13255:1 13256:1 13259:2 13270:2 13283:1 13291:2 13292:1 13315:1 13330:2 13334:1 13339:1 13341:1 13393:1 13417:1 13450:1 13454:5 13503:1 13523:1 13550:6 13556:1 13573:2 13584:1 13588:4 13595:3 13609:1 13611:5 13647:1 13663:1 13665:1 13666:1 13690:3 13726:1 13732:1 13734:1 13747:2 13754:1 13756:2 13757:1 13774:2 13800:2 13802:1 13807:1 13808:1 13829:1 13830:4 13833:1 13840:1 13847:2 13854:1 13862:1 13865:1 13880:1 13887:4 13913:1 13933:3 13937:1 13938:2 13973:1 13987:2 14008:1 14076:1 14081:1 14116:3 14120:2 14123:4 14124:1 14127:1 14138:1 14146:1 14149:1 14170:2 14191:2 14198:2 14201:1 14204:1 14205:1 14233:1 14243:2 14254:1 14277:1 14290:2 14292:1 14304:2 14316:1 14339:5 14343:1 14345:3 14346:1 14352:1 14359:1 14399:1 14401:1 14414:1 14426:3 14445:8 14455:1 14486:1 14489:1 14508:1 14525:1 14530:1 14535:1 14560:1 14577:6 14591:1 14602:3 14611:1 14624:1 14643:1 14649:1 14651:1 14667:1 14668:1 14705:1 14720:1 14730:1 14732:1 14741:1 14757:2 14768:1 14780:1 14783:1 14794:1 14795:1 14796:2 14797:4 14800:1 14803:6 14808:1 14812:2 14814:1 14815:1 14825:1 14833:1 14861:1 14913:1 14914:1 14927:4 14961:2 14971:2 14978:1 14984:2 15003:1 15013:3 15037:1 15038:1 15060:1 15084:2 15099:2 15109:2 15112:1 15129:1 15134:4 15152:1 15157:1 15166:2 15183:1 15253:1 15266:1 15328:3 15329:1 15332:1 15334:1 15349:1 15395:1 15396:1 15408:3 15410:1 15424:1 15428:1 15444:1 15449:3 15450:2 15470:2 15483:1 15494:1 15497:1 15511:1 15532:6 15535:1 15543:1 15549:1 15599:1 15638:3 15641:1 15651:1 15655:1 15670:1 15681:1 15692:3 15693:1 15698:1 15700:1 15715:1 15727:1 15735:1 15748:1 15761:1 15774:2 15820:2 15849:1 15863:5 15882:1 15886:1 15924:2 15941:1 15950:4 15951:1 15961:2 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16081:1 16114:2 16118:1 16128:5 16133:2 16140:1 16141:2 16151:1 16160:2 16165:2 16172:1 16173:3 16174:2 16184:1 16189:1 16228:1 16233:1 16243:1 16275:1 16306:5 16312:1 16325:1 16335:1 16345:1 16359:2 16387:1 16403:6 16404:3 16406:1 16452:1 16459:3 16468:1 16472:1 16484:2 16488:2 16499:1 16536:1 16552:1 16553:2 16599:1 16607:1 16612:13 16613:1 16618:1 16624:1 16629:2 16640:1 16670:2 16690:3 16693:1 16698:1 16717:1 16734:1 16741:1 16745:1 16756:2 16760:1 16763:1 16791:2 16826:2 16829:1 16830:2 16885:1 16922:1 16960:1 16963:1 16966:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:2 17133:1 17156:1 17158:1 17167:1 17178:1 17188:1 17212:1 17234:1 17237:2 17245:1 17255:2 17272:1 17279:1 17287:3 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:2 17374:1 17407:2 17411:1 17413:4 17419:1 17436:1 17444:1 17474:1 17478:1 17483:6 17496:1 17506:1 17510:1 17516:2 17535:4 17553:1 17565:1 17569:2 17584:2 17625:1 17630:1 17632:1 17639:4 17646:1 17668:3 17671:1 17684:1 17711:1 17712:1 17735:2 17737:2 17750:1 17754:1 17762:1 17777:1 17778:7 17779:1 17787:2 17820:1 17832:1 17844:1 17850:2 17857:2 17921:1 17946:1 17962:1 17968:3 17975:1 17980:2 18000:1 18004:1 18018:1 18025:1 18039:1 18041:1 18043:2 18050:2 18051:1 18053:1 18060:2 18070:3 18072:2 18076:1 18106:1 18126:4 18127:2 18151:1 18154:1 18185:1 18189:1 18196:5 18210:1 18240:1 18245:1 18252:2 18255:1 18256:1 18259:1 18276:1 18283:4 18286:1 18288:1 18291:1 18304:1 18324:1 18327:1 18344:1 18365:1 18366:3 18395:1 18403:2 18424:7 18430:3 18436:19 18444:1 18447:1 18451:1 18455:1 18459:1 18476:1 18482:1 18485:1 18486:1 18506:1 18528:1 18532:1 18537:1 18546:1 18550:1 18553:1 18569:1 18575:1 18586:1 18591:4 18604:1 18630:1 18643:5 18680:1 18683:1 18695:1 18698:1 18712:1 18720:1 18723:2 18736:3 18738:1 18740:1 18750:1 18761:1 18780:1 18805:1 18812:1 18843:1 18845:1 18867:1 18905:1 18915:1 18918:1 18928:1 18962:1 18968:2 18969:1 19001:2 19069:4 19095:1 19113:1 19148:2 19152:1 19157:1 19172:2 19191:3 19199:1 19218:1 19225:1 19229:1 19245:2 19251:2 19254:2 19259:1 19275:1 19279:1 19287:3 19291:1 19300:1 19304:1455 19308:1 19318:1 19324:1 19367:2 19368:1 19377:1 19402:1 19431:1 19437:2 19444:1 19476:1 19486:1 19506:1 19521:1 19529:2 19535:3 19542:1 19548:2 19551:1 19552:3 19583:1 19629:6 19633:1 19635:1 19642:1 19665:1 19666:16 19686:1 19692:7 19716:1 19747:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19837:2 19844:2 19860:1 19868:1 19882:1 19898:2 19908:1 19920:1 19927:1 19928:1 19953:1 19978:2 19981:2 19982:2 20018:2 20021:3 20027:1 20033:1 20036:1 20038:1 20043:2 20049:1 20053:1 20058:1 20064:1 20074:4 20078:1 20092:1 20106:2 20131:9 20147:1 20148:1 20172:5 20173:1 20183:1 20188:1 20198:1 20242:1 20247:2 20296:1 20300:1 20313:1 20329:4 20331:1 20336:3 20339:2 20351:1 20372:1 20374:3 20375:1 20387:1 20399:1 20429:1 20463:1 20468:1 20501:3 20516:1 20528:1 20559:2 20570:1 20571:1 20577:1 20584:2 20590:1 20593:1 20597:1 20598:1 20599:1 20608:1 20615:2 20616:1 20620:3 20624:1 20629:2 20641:1 20664:1 20666:1 20687:1 20692:2 20708:1 20733:1 20754:2 20756:1 20760:1 20783:1 20790:1 20791:4 20805:1 20817:2 20828:1 20832:1 20848:1 20850:1 20875:1 20884:1 20886:1 20901:1 20912:2 20918:1 20923:1 20928:1 20932:1 20962:1 20964:2 20980:1 21002:5 21032:1 21057:4 21058:2 21062:2 21068:1 21074:1 21080:1 21127:1 21129:3 21136:2 21139:1 21143:1 21255:3 21258:1 21259:2 21271:1 21290:1 21296:1 21298:1 21299:4 21314:1 21319:3 21324:1 21348:1 21388:1 21389:2 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21511:1 21514:1 21526:1 21529:2 21539:1 21546:4 21547:1 21550:1 21552:1 21553:1 21561:1 21574:1 21579:1 21588:2 21595:1 21605:1 21613:4 21647:1 21656:2 21659:1 21673:1 21702:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:2 21863:2 21872:1 21875:1 21894:1 21901:1 21907:1 21952:1 21965:1 21971:1 21976:1 21979:1 21985:1 21989:1 22005:1 22022:2 22045:1 22058:1 22061:1 22078:1 22082:1 22122:1 22149:1 22177:1 22194:1 22225:1 22240:1 22241:2 22250:1 22254:1 22256:1 22258:2 22265:1 22272:2 22273:2 22282:2 22283:1 22289:1 22298:1 22325:1 22338:1 22346:4 22361:1 22363:1 22365:1 22370:2 22371:1 22376:1 22378:1 22383:2 22391:1 22401:1 22408:1 22413:1 22415:8 22433:1 22437:1 22447:1 22455:1 22477:1 22491:1 22507:2 22513:1 22519:1 22525:7 22532:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22625:1 22632:1 22661:1 22665:3 22672:1 22676:1 22678:1 22679:1 22681:1 22682:1 22697:1 22698:2 22716:2 22720:1 22735:1 22766:2 22798:1 22801:1 22802:1 22818:1 22834:1 22838:1 22870:1 22886:3 22892:3 22897:1 22902:1 22924:1 22933:1 22940:1 22943:1 22947:2 22959:1 22961:1 22975:2 23017:1 23029:1 23034:1 23052:4 23053:3 23056:3 23059:1 23072:2 23073:1 23096:1 23111:2 23118:1 23124:1 23134:1 23142:3 23144:1 23145:2 23154:1 23162:2 23165:1 23174:1 23177:1 23178:2 23185:1 23205:1 23226:1 23229:1 23231:1 23233:1 23241:1 23243:1 23251:2 23260:1 23263:1 23270:1 23291:2 23292:1 23309:2 23315:19 23320:1 23321:2 23323:3 23327:1 23329:1 23352:3 23354:1 23361:2 23364:1 23368:2 23384:1 23385:1 23389:1 23425:1 23437:1 23440:1 23487:1 23497:1 23501:3 23509:1 23530:2 23535:1 23594:1 23596:1 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23649:2 23655:2 23663:1 23664:1 23685:1 23702:1 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23828:1 23830:1 23837:1 23844:1 23859:1 23860:1 23869:1 23887:1 23888:1 23903:2 23906:1 23926:3 23928:1 23944:3 23952:1 23955:1 23977:2 23978:1 23984:1 23992:2 23997:1 24066:1 24079:1 24125:1 24129:1 24144:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24196:1 24209:2 24214:1 24218:1 24220:1 24228:1 24232:1 24258:1 24270:3 24278:1 24280:1 24282:1 24291:1 24309:1 24325:1 24333:1 24336:1 24343:9 24351:1 24376:2 24393:1 24423:1 24425:1 24443:1 24488:1 24497:1 24513:1 24515:1 24526:2 24533:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:1 24620:3 24622:1 24623:1 24631:1 24638:1 24652:1 24661:2 24728:1 24731:1 24746:2 24748:1 24761:1 24762:1 24764:2 24788:1 24801:1 24822:1 24839:1 24862:1 24863:1 24902:2 24912:5 24914:1 24923:3 24927:1 24944:1 24955:2 24956:1 24957:1 24973:1 24995:1 25028:2 25030:1 25032:1 25036:1 25060:1 25068:1 25085:1 25093:1 25099:3 25100:2 25115:1 25127:1 25136:1 25148:1 25150:1 25184:1 25206:1 25210:1 25221:2 25222:1 25224:6 25226:2 25228:4 25229:2 25235:2 25236:2 25238:1 25248:1 25249:2 25255:2 25262:1 25268:2 25297:1 25300:2 25301:1 25315:2 25327:1 25337:3 25343:3 25363:1 25369:1 25370:1 25381:2 25393:1 25410:1 25414:1 25415:1 25439:1 25460:1 25463:1 25478:1 25504:3 25530:2 25540:1 25545:3 25565:2 25601:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25752:3 25767:1 25778:1 25781:1 25785:3 25794:2 25828:3 25861:1 25879:1 25887:1 25900:1 25903:3 25909:1 25915:1 25922:1 25927:1 25929:1 25931:3 25988:1 26007:1 26023:1 26025:2 26060:9 26069:1 26083:6 26112:1 26122:1 26127:1 26138:1 26146:2 26168:1 26175:1 26180:2 26187:1 26190:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:4 26270:1 26280:1 26285:2 26288:7 26293:1 26294:2 26304:1 26307:1 26311:1 26317:2 26320:1 26328:1 26329:1 26334:1 26358:1 26363:2 26373:1 26379:2 26387:1 26410:3 26420:2 26422:1 26482:1 26494:1 26495:1 26511:1 26519:1 26534:1 26560:1 26563:1 26579:1 26589:1 26591:1 26593:1 26614:3 26643:1 26646:1 26648:1 26656:1 26662:1 26698:1 26716:1 26754:1 26760:1 26776:1 26805:1 26826:1 26847:1 26872:1 26882:1 26883:2 26886:1 26893:1 26901:1 26902:1 26907:1 26918:1 26925:1 26939:1 26954:1 26957:2 26983:2 26989:1 26997:1 26998:1 27020:4 27047:4 27070:1 27089:1 27091:1 27094:1 27095:1 27107:1 27118:1 27119:1 27127:1 27138:1 27157:1 27174:1 27178:4 27179:1 27212:3 27234:1 27236:1 27260:1 27278:1 27299:4 27320:2 27322:1 27327:1 27330:1 27334:3 27335:1 27341:1 27375:2 27378:1 27381:1 27387:1 27415:2 27438:2 27439:1 27454:2 27459:1 27482:1 27484:2 27510:1 27535:1 27539:1 27555:1 27574:2 27583:5 27608:2 27665:1 27670:1 27708:1 27712:1 27714:1 27732:1 27739:1 27780:1 27781:1 27787:1 27791:1 27792:1 27804:1 27807:1 27822:1 27826:1 27845:1 27875:1 27888:1 27897:1 27912:2 27917:1 27924:1 27940:4 27957:2 27965:4 27974:1 27990:1 27991:1 27997:1 28011:1 28025:1 28033:1 28043:1 28044:7 28071:1 28083:1 28087:2 28097:1 28101:1 28102:1 28109:9 28151:3 28188:1 28218:5 28225:1 28226:2 28242:2 28246:1 28251:2 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:1 28335:2 28337:1 28347:1 28361:1 28372:1 28377:1 28381:1 28384:1 28398:1 28409:1 28414:2 28416:1 28418:1 28458:1 28529:1 28533:1 28554:2 28588:1 28589:1 28600:1 28616:4 28619:1 28637:1 28686:1 28736:1 28755:2 28825:2 28845:1 28858:1 28860:6 28872:1 28893:1 28896:1 28928:1 28938:1 28961:1 28978:1 28980:1 28983:1 28992:19 28993:2 28996:5 28998:1 28999:2 29011:1 29034:6 29048:1 29092:1 29100:2 29115:1 29120:1 29131:1 29132:1 29142:1 29146:2 29176:9 29180:2 29184:1 29186:1 29190:1 29210:1 29213:1 29216:1 29221:1 29228:1 29236:1 29238:1 29245:2 29251:1 29262:1 29267:1 29268:2 29278:1 29293:1 29295:1 29300:1 29302:1 29343:1 29347:1 29362:2 29364:1 29387:1 29388:1 29391:1 29405:2 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29518:1 29525:1 29529:1 29532:1 29539:1 29548:1 29551:1 29566:1 29570:1 29579:1 29587:2 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29712:1 29717:1 29722:1 29723:1 29736:1 29740:2 29749:1 29758:1 29767:6 29773:1 29780:2 29782:1 29788:1 29801:1 29832:1 29839:1 29840:1 29882:2 29890:1 29900:1 29914:2 29918:1 29920:2 29925:1 29927:1 29931:4 29949:1 29969:1 29970:1 30001:2 30012:1 30035:1 30058:2 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30150:2 30187:1 30194:5 30206:1 30208:1 30210:1 30231:6 30243:5 30250:1 30273:1 30311:1 30320:7 30322:2 30324:2 30326:1 30328:1 30331:3 30332:1 30344:1 30363:2 30367:3 30371:3 30408:1 30421:1 9 11:1 14:1 43:1 50:2 74:1 79:1 85:1 108:1 109:1 135:1 139:1 142:1 152:1 176:1 187:1 189:3 201:1 206:4 236:5 257:1 283:1 303:1 315:2 325:1 327:17 338:1 356:3 357:3 366:1 378:1 397:1 419:1 441:2 460:3 478:1 480:1 550:1 558:1 589:1 591:2 592:1 600:1 603:3 625:2 635:2 637:1 638:1 639:1 657:2 671:1 682:1 685:1 691:1 693:1 703:1 724:1 732:1 736:1 747:1 758:1 774:1 788:1 802:1 804:1 819:1 824:1 833:1 843:1 854:1 856:2 857:1 883:4 885:3 897:1 899:1 900:1 911:1 914:10 917:1 929:1 933:1 938:2 941:7 946:1 952:1 953:1 959:1 964:3 985:1 986:2 1005:1 1022:1 1032:3 1045:1 1052:2 1054:1 1060:1 1076:1 1080:2 1084:1 1102:1 1115:1 1126:1 1133:1 1142:1 1143:1 1156:2 1164:1 1172:1 1187:1 1194:1 1201:3 1213:1 1230:1 1258:2 1292:1 1300:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1441:2 1443:1 1464:2 1468:1 1471:5 1474:1 1490:1 1491:1 1493:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:1 1614:1 1621:1 1639:1 1641:2 1642:3 1650:1 1677:3 1680:1 1700:1 1701:2 1706:3 1712:2 1732:1 1733:1 1752:1 1775:1 1814:1 1818:1 1830:1 1844:3 1852:1 1856:1 1863:1 1873:1 1878:1 1908:1 1958:9 1965:1 1970:2 1981:1 1986:1 1991:1 1996:1 1997:1 2008:1 2018:7 2019:2 2051:1 2053:1 2057:2 2063:3 2075:1 2088:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2161:1 2186:1 2211:1 2213:1 2218:2 2219:1 2226:1 2232:1 2234:3 2238:1 2239:2 2240:4 2243:1 2255:2 2274:1 2276:1 2280:2 2281:2 2284:2 2285:7 2288:4 2291:1 2292:2 2293:2 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:1 2314:1 2316:6 2318:2 2319:6 2331:1 2332:1 2348:1 2369:1 2380:1 2386:1 2393:1 2407:1 2411:1 2418:1 2430:2 2437:2 2445:1 2448:1 2466:1 2482:2 2493:5 2505:1 2515:1 2532:1 2537:1 2561:5 2570:2 2577:1 2595:2 2603:1 2608:2 2615:3 2618:2 2620:1 2623:1 2632:2 2661:2 2682:1 2699:1 2701:2 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2740:1 2745:1 2748:1 2761:1 2763:1 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:5 2825:2 2831:2 2841:1 2848:1 2880:1 2882:1 2883:1 2889:1 2933:2 2941:17 2959:4 2975:2 2980:1 2995:1 3002:10 3032:1 3036:4 3038:1 3061:1 3064:1 3092:1 3095:1 3146:2 3162:1 3176:1 3177:1 3184:1 3225:1 3240:1 3242:1 3259:1 3269:1 3280:1 3304:1 3312:4 3325:1 3332:1 3339:1 3343:1 3348:1 3361:1 3384:1 3386:3 3416:1 3431:1 3434:8 3481:1 3487:1 3510:1 3544:1 3551:1 3557:1 3561:1 3563:1 3564:2 3568:2 3571:1 3578:1 3581:1 3587:1 3615:1 3619:1 3628:1 3635:2 3640:1 3648:1 3665:1 3670:1 3674:1 3678:2 3681:3 3699:4 3705:2 3706:1 3708:2 3709:2 3715:1 3736:1 3741:3 3751:1 3773:1 3784:1 3787:1 3791:1 3792:3 3796:1 3800:2 3803:2 3848:1 3853:1 3855:4 3857:1 3858:2 3859:8 3873:1 3882:1 3888:1 3895:3 3897:1 3903:2 3904:9 3905:1 3906:1 3924:4 3932:1 3938:1 3955:1 3956:2 3958:1 3967:1 3969:1 3978:1 3981:1 3986:1 3993:1 4000:1 4004:1 4016:1 4019:3 4022:1 4032:1 4045:1 4053:1 4054:1 4058:1 4077:3 4084:1 4085:1 4089:2 4093:1 4099:2 4100:2 4108:4 4109:2 4114:1 4128:1 4144:1 4153:1 4169:2 4187:1 4196:2 4204:1 4237:1 4239:1 4241:1 4250:1 4286:1 4302:1 4307:2 4315:1 4316:1 4325:1 4364:1 4378:2 4381:2 4388:1 4405:1 4420:2 4455:1 4474:5 4494:1 4535:1 4546:1 4555:1 4572:1 4598:1 4601:1 4631:1 4675:1 4697:1 4724:1 4728:2 4741:3 4749:1 4751:1 4754:1 4772:1 4774:1 4788:1 4804:1 4807:7 4843:1 4854:1 4870:1 4875:1 4889:1 4896:1 4903:6 4907:1 4918:1 4921:1 4951:1 4954:1 4986:1 5009:1 5019:15 5021:2 5024:1 5041:2 5052:1 5078:1 5083:7 5093:2 5115:1 5117:1 5131:1 5132:1 5134:1 5135:4 5151:3 5152:4 5153:1 5154:1 5159:3 5162:1 5163:1 5166:1 5171:1 5173:2 5175:2 5178:1 5184:1 5185:1 5187:2 5188:2 5211:1 5242:1 5277:2 5299:1 5317:1 5321:1 5326:2 5328:1 5336:2 5344:2 5359:1 5367:1 5385:1 5396:2 5404:1 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5512:2 5518:4 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:2 5698:1 5704:1 5705:2 5708:1 5710:2 5712:1 5722:1 5730:1 5758:3 5763:1 5772:1 5792:2 5808:2 5815:1 5816:1 5849:3 5873:2 5888:1 5897:2 5914:4 5917:1 5921:1 5939:1 5945:1 5977:1 6011:1 6021:1 6028:1 6059:2 6066:1 6097:1 6102:2 6129:1 6152:1 6183:2 6184:1 6205:11 6226:4 6231:2 6238:1 6247:1 6248:2 6249:1 6257:1 6280:1 6297:1 6301:1 6308:1 6356:1 6380:1 6384:2 6385:1 6390:1 6400:1 6404:1 6426:5 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6485:1 6488:1 6501:3 6503:1 6505:1 6507:1 6515:1 6517:1 6518:2 6519:1 6520:3 6525:3 6526:8 6527:4 6530:1 6539:1 6568:1 6571:1 6591:1 6646:3 6681:2 6699:1 6743:1 6750:1 6763:1 6769:1 6777:1 6798:1 6803:1 6814:1 6816:1 6822:1 6844:1 6851:1 6855:1 6897:1 6898:2 6916:1 6919:2 6924:1 6929:1 6940:5 6960:2 6968:2 6973:1 6985:1 6997:1 7002:1 7029:1 7045:2 7047:1 7058:2 7086:2 7087:2 7091:2 7100:1 7113:3 7114:2 7131:1 7142:1 7147:2 7148:1 7150:2 7160:1 7177:1 7212:1 7253:10 7255:1 7273:1 7281:2 7300:1 7302:1 7306:1 7310:1 7332:1 7336:1 7337:1 7369:2 7411:2 7416:1 7435:2 7452:1 7479:2 7491:3 7505:2 7506:1 7509:1 7516:1 7521:1 7527:1 7549:3 7554:3 7555:1 7579:2 7583:1 7596:1 7597:1 7603:2 7627:2 7644:1 7663:1 7672:1 7725:1 7726:2 7756:1 7757:9 7758:1 7771:2 7784:2 7785:2 7786:1 7812:3 7813:1 7831:45 7836:1 7854:2 7855:10 7857:1 7860:1 7883:2 7908:1 7911:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:2 8035:2 8059:1 8062:1 8087:1 8093:1 8108:1 8112:2 8138:1 8143:1 8145:1 8153:1 8172:1 8223:1 8226:1 8233:1 8250:1 8258:1 8265:2 8266:3 8267:1 8269:1 8285:1 8287:1 8317:1 8324:2 8333:1 8338:2 8343:1 8348:2 8357:1 8358:5 8389:2 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:1 8564:1 8566:1 8589:1 8591:1 8599:2 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:3 8638:1 8646:1 8656:1 8664:5 8669:1 8671:1 8701:1 8716:1 8728:1 8736:1 8739:2 8740:5 8743:3 8744:2 8746:1 8748:3 8749:6 8752:2 8753:1 8757:1 8768:2 8784:4 8790:1 8792:3 8816:2 8820:1 8822:2 8826:2 8829:1 8834:1 8837:2 8853:1 8892:2 8906:1 8907:1 8930:1 8939:1 8958:1 8968:1 8974:1 8988:1 9017:2 9024:1 9033:2 9041:1 9066:1 9073:3 9074:1 9078:2 9090:2 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9171:1 9177:1 9188:2 9199:4 9202:2 9222:1 9241:1 9252:1 9275:1 9276:1 9292:1 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:2 9373:1 9387:1 9394:1 9401:1 9411:1 9421:1 9459:1 9463:1 9467:6 9469:1 9474:2 9477:1 9486:17 9489:1 9508:2 9510:1 9523:1 9535:1 9572:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:6 9634:1 9659:1 9676:1 9684:3 9728:1 9749:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9831:1 9844:1 9845:3 9851:1 9861:1 9869:3 9877:2 9886:1 9895:2 9919:2 9949:6 9962:2 9965:1 9966:3 9972:2 9974:1 9991:1 9995:1 10005:1 10035:3 10065:1 10093:1 10108:4 10113:1 10120:1 10126:1 10135:2 10143:1 10145:1 10147:2 10150:1 10153:1 10158:3 10171:1 10175:1 10179:1 10196:1 10198:1 10202:1 10210:1 10211:1 10213:1 10225:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10308:1 10309:1 10336:1 10345:1 10368:1 10399:1 10401:1 10402:1 10418:2 10481:1 10489:1 10520:1 10525:1 10550:1 10570:1 10588:1 10608:1 10609:1 10625:2 10630:2 10638:2 10653:1 10655:1 10690:1 10712:1 10722:1 10724:1 10767:1 10769:1 10790:2 10794:2 10800:2 10809:1 10810:1 10811:1 10813:1 10823:1 10824:2 10841:2 10844:3 10846:1 10854:1 10865:1 10866:1 10867:1 10876:2 10878:2 10886:1 10888:1 10890:2 10895:1 10916:1 10934:1 10950:1 10953:5 10967:4 10988:2 10990:10 11055:1 11056:1 11067:1 11079:1 11112:2 11117:1 11159:1 11180:1 11211:1 11224:1 11254:3 11257:2 11260:2 11262:2 11269:2 11283:2 11291:1 11298:1 11299:1 11302:1 11312:1 11347:6 11351:1 11372:2 11377:1 11378:1 11381:1 11433:1 11434:1 11435:2 11437:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11516:1 11544:1 11554:1 11557:1 11579:1 11583:4 11590:1 11613:1 11627:1 11637:1 11643:2 11653:2 11659:1 11660:1 11674:2 11675:1 11677:1 11682:1 11686:2 11706:3 11715:1 11749:1 11752:8 11753:1 11789:1 11790:1 11797:1 11819:1 11820:1 11830:1 11831:2 11852:1 11860:1 11861:1 11866:2 11890:1 11898:1 11901:2 11908:1 11914:2 11930:2 11933:6 11960:1 11962:5 11963:1 11989:1 11994:1 12006:1 12012:2 12020:1 12025:1 12026:2 12029:3 12032:1 12042:1 12044:1 12046:1 12049:2 12055:1 12059:1 12074:5 12085:1 12097:6 12108:1 12111:1 12132:1 12139:1 12149:1 12156:1 12195:1 12200:2 12223:1 12263:1 12265:1 12291:1 12304:3 12306:1 12315:1 12346:1 12359:3 12362:3 12382:1 12411:3 12426:1 12433:1 12439:1 12526:1 12540:1 12542:1 12543:2 12544:3 12545:1 12560:1 12571:1 12592:1 12593:1 12602:2 12603:4 12608:2 12615:1 12619:2 12686:1 12692:1 12702:1 12722:1 12726:2 12732:5 12753:1 12782:1 12798:1 12806:1 12807:1 12810:2 12824:1 12843:2 12847:2 12872:1 12880:1 12896:1 12904:1 12935:1 12950:1 12953:1 12954:2 12971:1 12973:1 12991:1 12996:1 13009:2 13091:6 13100:1 13113:1 13114:1 13116:1 13131:13 13142:1 13151:2 13153:5 13155:1 13161:1 13180:1 13189:1 13192:1 13195:2 13199:1 13222:2 13246:1 13250:1 13255:1 13256:1 13259:2 13270:2 13283:1 13291:2 13292:1 13315:1 13330:2 13334:1 13339:1 13341:1 13393:1 13417:1 13450:1 13454:5 13503:1 13523:1 13550:6 13556:1 13573:2 13584:1 13588:4 13595:3 13609:1 13611:5 13647:1 13663:1 13665:1 13666:1 13684:2 13690:3 13726:1 13732:1 13734:1 13747:6 13754:1 13756:2 13757:1 13774:2 13800:2 13802:1 13807:1 13808:1 13829:1 13830:4 13833:1 13840:1 13847:2 13854:1 13862:1 13865:1 13880:2 13887:4 13913:1 13933:3 13937:1 13938:2 13973:1 13987:2 14008:1 14076:1 14081:1 14116:3 14120:2 14123:4 14124:1 14127:1 14138:1 14146:1 14149:1 14170:2 14191:2 14198:2 14201:1 14204:1 14205:1 14233:1 14243:6 14254:1 14277:1 14290:2 14292:1 14304:2 14316:1 14339:6 14343:1 14345:3 14346:1 14352:1 14359:1 14399:1 14401:1 14414:1 14426:3 14445:8 14455:1 14486:1 14489:1 14508:1 14525:1 14530:1 14535:1 14560:1 14577:6 14591:1 14602:3 14611:1 14613:1 14624:1 14643:1 14649:1 14651:1 14667:1 14668:1 14705:1 14720:1 14730:1 14732:1 14741:1 14757:2 14768:1 14780:1 14783:2 14794:1 14795:1 14796:2 14797:4 14800:1 14803:6 14808:1 14812:2 14814:1 14815:1 14825:1 14833:1 14836:1 14861:1 14913:1 14914:1 14927:4 14961:2 14971:2 14978:1 14984:2 15003:1 15013:3 15037:1 15038:1 15060:1 15084:2 15099:2 15109:2 15112:1 15126:2 15129:1 15134:4 15152:1 15157:1 15166:2 15183:1 15253:1 15266:1 15328:3 15329:1 15332:1 15334:1 15349:1 15395:1 15396:1 15408:3 15410:1 15424:1 15425:1 15428:2 15444:1 15449:3 15450:2 15470:2 15483:1 15494:1 15497:1 15511:1 15532:6 15535:1 15543:1 15549:1 15599:1 15638:3 15641:1 15651:1 15655:1 15668:1 15670:1 15681:1 15692:3 15693:1 15698:2 15700:1 15715:1 15727:1 15735:1 15748:1 15761:1 15774:2 15820:2 15849:1 15863:6 15882:1 15886:1 15924:2 15938:1 15941:1 15950:4 15951:1 15961:2 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16081:1 16114:2 16118:1 16128:5 16133:2 16140:1 16141:3 16151:1 16160:2 16165:2 16172:1 16173:3 16174:2 16184:1 16189:1 16228:1 16233:1 16243:1 16275:1 16306:5 16312:1 16325:1 16335:1 16345:1 16359:3 16387:1 16403:6 16404:3 16406:1 16452:1 16459:3 16468:1 16472:1 16484:2 16488:2 16499:1 16536:1 16552:1 16553:2 16599:1 16607:1 16612:13 16613:1 16618:1 16624:1 16629:2 16640:1 16670:2 16690:3 16693:1 16698:1 16707:1 16716:1 16717:1 16734:1 16741:1 16745:2 16756:2 16760:1 16763:1 16791:2 16826:2 16828:1 16829:1 16830:2 16885:1 16896:1 16922:1 16960:1 16963:1 16966:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:2 17133:1 17156:1 17158:1 17167:1 17178:1 17188:1 17212:1 17234:1 17237:2 17245:1 17255:2 17272:1 17279:1 17287:3 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:2 17374:1 17407:2 17411:1 17413:4 17419:1 17436:1 17444:1 17474:1 17478:1 17483:7 17496:1 17506:1 17510:1 17516:2 17535:4 17553:1 17565:1 17569:2 17584:2 17625:1 17630:1 17632:1 17639:5 17646:1 17668:3 17671:1 17684:1 17711:1 17712:2 17735:3 17737:2 17750:1 17754:1 17762:1 17763:2 17777:1 17778:7 17779:1 17787:2 17820:1 17832:1 17844:1 17850:2 17857:2 17921:1 17946:1 17962:1 17968:3 17975:1 17980:2 18000:1 18004:1 18018:1 18025:1 18039:1 18041:1 18043:3 18050:2 18051:1 18053:1 18060:2 18070:3 18072:2 18076:1 18106:1 18126:5 18127:3 18151:1 18154:1 18185:1 18189:1 18196:7 18210:1 18240:1 18245:1 18252:2 18255:1 18256:1 18259:1 18276:1 18283:4 18286:1 18288:1 18291:1 18304:1 18324:1 18327:1 18344:1 18365:1 18366:3 18395:1 18403:2 18424:7 18426:1 18430:3 18436:20 18444:1 18447:1 18451:1 18455:1 18459:1 18476:1 18482:1 18485:1 18486:1 18506:1 18516:1 18528:1 18532:1 18537:1 18546:1 18550:1 18553:1 18569:1 18575:1 18586:1 18591:4 18604:1 18630:1 18643:5 18680:1 18683:1 18695:1 18698:1 18712:1 18720:1 18723:2 18736:3 18738:1 18740:1 18750:1 18761:1 18780:1 18805:1 18812:1 18843:1 18845:1 18867:1 18888:1 18891:2 18905:1 18915:1 18918:1 18928:1 18962:1 18968:2 18969:1 19001:2 19069:4 19095:1 19113:1 19125:1 19148:2 19152:1 19157:1 19172:2 19191:4 19199:1 19218:1 19225:1 19229:1 19245:2 19251:2 19254:2 19259:1 19275:1 19279:1 19287:3 19291:1 19300:1 19304:1509 19308:1 19318:1 19324:1 19367:2 19368:1 19377:3 19402:1 19431:1 19437:2 19444:1 19476:1 19486:1 19506:1 19521:1 19529:2 19535:6 19542:1 19548:5 19551:2 19552:3 19583:1 19629:6 19633:1 19635:1 19642:1 19665:1 19666:17 19686:1 19692:7 19716:1 19747:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:2 19860:1 19868:1 19882:1 19898:2 19908:1 19920:1 19927:1 19928:1 19953:1 19978:2 19981:2 19982:2 20018:2 20021:3 20027:1 20033:1 20036:1 20038:1 20043:3 20049:1 20053:1 20058:1 20064:1 20074:5 20078:1 20092:1 20106:2 20131:9 20147:1 20148:1 20172:6 20173:1 20183:1 20188:1 20198:1 20242:1 20247:2 20296:1 20300:1 20313:1 20329:4 20331:1 20336:3 20339:2 20351:1 20372:1 20374:3 20375:1 20387:1 20399:1 20429:1 20463:1 20468:1 20501:3 20516:1 20528:1 20559:2 20570:1 20571:1 20577:1 20584:2 20590:1 20593:1 20597:1 20598:1 20599:1 20608:1 20615:2 20616:1 20620:3 20624:1 20629:2 20641:1 20664:1 20666:1 20681:1 20687:1 20692:2 20708:1 20733:1 20754:2 20756:1 20760:1 20783:1 20790:1 20791:4 20805:1 20817:2 20828:1 20832:1 20848:1 20850:1 20875:1 20884:1 20886:1 20901:1 20912:2 20918:1 20923:1 20928:1 20932:1 20962:1 20964:2 20980:1 21002:5 21032:1 21057:5 21058:2 21062:2 21068:1 21074:1 21080:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21255:3 21258:1 21259:2 21271:1 21290:1 21296:1 21298:1 21299:5 21314:2 21319:3 21324:1 21348:1 21388:1 21389:2 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21511:1 21514:1 21526:1 21529:2 21539:1 21546:4 21547:1 21550:1 21552:1 21553:1 21561:1 21574:1 21579:1 21588:2 21595:1 21605:1 21613:4 21647:1 21656:2 21659:2 21673:1 21702:1 21712:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:2 21840:2 21863:6 21872:1 21875:1 21894:1 21901:1 21907:1 21952:1 21965:1 21971:1 21976:1 21979:1 21985:1 21989:1 22005:1 22022:2 22045:1 22058:1 22061:1 22078:1 22082:1 22122:1 22149:1 22177:1 22194:1 22225:1 22240:1 22241:2 22250:1 22254:1 22256:1 22258:2 22265:1 22272:2 22273:2 22282:2 22283:1 22289:1 22298:1 22325:1 22338:1 22346:4 22361:1 22363:1 22365:1 22370:2 22371:1 22376:1 22378:1 22383:2 22391:1 22401:1 22408:1 22413:1 22415:8 22432:1 22433:1 22437:1 22447:1 22455:1 22477:1 22491:1 22504:1 22507:2 22513:1 22519:1 22525:7 22532:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22625:1 22632:1 22661:1 22665:3 22672:1 22676:1 22678:1 22679:1 22681:1 22682:1 22697:1 22698:3 22716:2 22720:1 22735:1 22766:2 22798:1 22801:1 22802:1 22818:1 22834:1 22838:1 22870:1 22886:3 22892:3 22897:1 22902:1 22924:1 22933:1 22940:1 22943:1 22947:2 22959:1 22961:1 22975:3 23017:1 23029:1 23034:1 23052:4 23053:5 23056:3 23059:1 23072:2 23073:1 23096:1 23111:2 23118:1 23124:1 23131:1 23134:1 23142:3 23144:1 23145:3 23154:1 23162:2 23165:1 23174:1 23177:1 23178:2 23185:1 23205:1 23226:1 23229:1 23231:1 23233:1 23241:1 23243:1 23251:2 23260:1 23263:1 23270:1 23291:2 23292:1 23309:2 23315:20 23320:1 23321:2 23323:3 23326:1 23327:1 23329:1 23336:1 23352:3 23354:1 23361:2 23364:1 23368:2 23384:1 23385:1 23389:1 23400:1 23425:1 23437:1 23440:1 23487:1 23497:1 23501:3 23509:1 23530:2 23535:1 23560:1 23594:1 23596:1 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23649:2 23655:2 23663:1 23664:1 23685:1 23702:1 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23823:1 23828:1 23830:1 23837:1 23844:1 23859:1 23860:1 23869:1 23872:1 23887:1 23888:2 23903:2 23906:1 23926:3 23927:1 23928:1 23944:3 23952:2 23955:1 23977:2 23978:1 23984:1 23992:2 23997:1 24066:1 24079:1 24125:1 24129:1 24144:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24196:2 24209:2 24214:1 24218:1 24220:1 24228:1 24232:1 24258:2 24270:3 24278:1 24280:1 24282:1 24291:1 24309:1 24325:1 24333:1 24336:1 24343:9 24351:1 24376:2 24393:1 24423:1 24424:1 24425:1 24443:1 24488:1 24497:1 24513:1 24515:1 24526:2 24533:1 24543:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:1 24620:3 24622:1 24623:1 24631:1 24638:1 24652:1 24661:2 24728:1 24731:1 24746:2 24748:1 24761:1 24762:1 24764:2 24788:1 24791:2 24801:1 24822:1 24839:1 24862:1 24863:1 24902:2 24912:5 24914:1 24923:4 24927:1 24944:1 24955:2 24956:1 24957:1 24973:1 24995:2 25011:1 25028:2 25030:1 25032:1 25036:1 25060:1 25068:1 25085:1 25093:1 25099:3 25100:2 25115:1 25127:1 25136:1 25148:1 25150:1 25176:1 25184:1 25206:1 25210:1 25220:1 25221:2 25222:1 25224:6 25226:2 25228:4 25229:2 25235:2 25236:2 25238:1 25248:1 25249:2 25255:2 25262:1 25268:2 25297:1 25300:2 25301:1 25315:2 25327:1 25337:3 25343:3 25363:1 25369:1 25370:1 25381:2 25393:1 25410:1 25414:1 25415:1 25439:1 25460:1 25463:1 25478:1 25504:3 25530:2 25540:1 25545:3 25565:2 25601:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25752:3 25767:1 25778:1 25781:1 25785:3 25794:2 25828:3 25861:1 25879:2 25887:1 25900:1 25903:4 25909:1 25915:1 25922:1 25927:1 25929:1 25931:4 25988:1 26007:1 26023:1 26025:2 26060:9 26069:1 26083:7 26112:1 26122:1 26127:1 26138:1 26146:2 26168:1 26175:1 26180:2 26184:1 26187:1 26190:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:4 26270:1 26280:1 26285:2 26288:7 26293:1 26294:2 26304:1 26307:1 26311:1 26317:2 26320:1 26328:1 26329:1 26334:1 26358:1 26363:2 26373:1 26379:2 26387:1 26410:3 26420:2 26422:1 26482:1 26494:1 26495:1 26511:1 26519:1 26534:1 26560:1 26563:1 26579:1 26589:1 26590:2 26591:1 26593:1 26614:5 26643:1 26646:1 26648:1 26656:1 26662:1 26698:1 26716:1 26754:1 26760:1 26776:1 26805:1 26826:1 26847:1 26872:1 26882:1 26883:2 26886:1 26893:1 26901:1 26902:1 26907:1 26918:2 26925:1 26939:1 26954:1 26957:2 26983:3 26989:1 26997:1 26998:1 27020:4 27046:1 27047:4 27070:1 27089:1 27091:1 27094:1 27095:1 27107:1 27118:1 27119:1 27127:1 27138:1 27157:1 27174:1 27178:4 27179:1 27212:3 27234:1 27236:1 27260:1 27278:1 27299:4 27320:2 27322:1 27327:1 27330:1 27334:3 27335:1 27341:1 27375:2 27378:1 27381:1 27387:1 27415:2 27438:2 27439:1 27454:2 27459:1 27482:1 27484:2 27510:1 27530:2 27535:1 27539:1 27555:1 27574:2 27583:5 27608:2 27665:1 27670:1 27686:1 27708:1 27712:1 27714:1 27732:1 27739:1 27780:1 27781:1 27787:1 27791:1 27792:1 27804:1 27807:1 27822:1 27826:1 27845:1 27875:1 27888:1 27897:1 27912:2 27917:1 27920:1 27924:1 27940:4 27957:3 27965:4 27974:1 27990:1 27991:1 27997:1 28011:1 28025:1 28033:1 28043:1 28044:8 28071:1 28083:1 28087:2 28097:1 28098:1 28101:1 28102:1 28109:9 28151:3 28188:2 28193:1 28218:5 28225:2 28226:2 28242:2 28246:1 28251:2 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:1 28335:2 28337:1 28347:1 28361:1 28372:1 28377:1 28381:1 28384:1 28398:1 28409:1 28414:2 28416:1 28418:1 28458:1 28529:1 28533:1 28554:2 28557:1 28564:1 28588:1 28589:1 28600:1 28616:4 28619:1 28637:1 28672:1 28686:1 28736:1 28755:2 28825:2 28845:1 28858:1 28860:6 28872:1 28893:1 28896:2 28928:1 28938:1 28961:1 28978:1 28980:1 28983:1 28992:21 28993:4 28996:5 28998:1 28999:2 29011:1 29034:6 29048:1 29092:1 29100:2 29115:1 29120:1 29131:1 29132:1 29142:1 29146:2 29176:9 29180:2 29184:1 29186:1 29190:1 29210:1 29213:1 29216:1 29221:2 29228:1 29236:1 29238:1 29245:2 29251:1 29262:1 29267:1 29268:2 29278:1 29293:1 29295:1 29300:1 29302:1 29343:1 29347:1 29362:2 29364:1 29387:1 29388:1 29391:1 29405:3 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29518:1 29525:1 29529:1 29532:1 29539:1 29548:1 29551:1 29566:1 29570:1 29579:1 29587:2 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29712:1 29717:1 29722:1 29723:2 29736:1 29740:2 29749:1 29758:1 29767:6 29773:1 29780:2 29782:1 29788:1 29801:1 29828:1 29832:1 29839:1 29840:1 29882:2 29890:1 29900:1 29914:2 29918:1 29920:2 29925:1 29927:1 29931:4 29949:1 29969:1 29970:1 30001:2 30012:1 30035:1 30058:2 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30150:2 30187:1 30194:7 30206:1 30208:1 30210:1 30231:6 30243:5 30250:1 30273:1 30311:1 30320:7 30322:2 30324:2 30326:1 30328:1 30331:3 30332:2 30344:1 30363:2 30367:3 30371:3 30408:1 30421:1 9 11:1 14:1 43:1 50:2 74:1 79:1 85:1 99:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 176:1 187:1 189:3 201:1 206:4 236:5 257:1 283:1 303:1 315:2 325:1 327:18 338:1 355:1 356:3 357:3 366:1 378:1 397:1 419:1 441:2 460:3 478:1 480:1 550:1 558:1 589:1 591:4 592:1 600:1 603:3 625:2 635:2 637:1 638:1 639:1 657:2 671:1 682:1 685:1 691:1 693:1 703:1 724:1 732:1 736:1 747:1 758:1 774:1 788:1 802:1 804:1 819:1 824:1 833:1 843:1 854:1 856:2 857:1 883:5 885:3 897:1 899:1 900:1 911:1 914:10 917:1 929:1 933:1 938:2 941:7 946:1 952:1 953:1 959:1 964:3 985:1 986:2 997:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:1 1060:1 1076:1 1080:2 1084:1 1102:1 1115:1 1126:1 1133:1 1142:1 1143:1 1156:2 1164:1 1172:1 1187:1 1194:1 1201:3 1213:1 1230:1 1258:2 1291:1 1292:1 1300:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1441:2 1443:1 1464:2 1468:1 1471:5 1474:1 1487:1 1490:1 1491:1 1493:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:2 1614:1 1621:1 1636:1 1639:1 1641:2 1642:3 1650:1 1677:3 1680:1 1700:1 1701:2 1706:3 1712:2 1732:1 1733:1 1752:1 1775:1 1814:1 1818:1 1830:1 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1886:1 1908:1 1958:9 1965:1 1970:2 1981:1 1986:1 1991:1 1996:1 1997:1 2008:1 2018:7 2019:2 2051:1 2053:1 2057:2 2063:3 2075:1 2088:1 2107:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2186:1 2195:1 2211:1 2213:1 2218:3 2219:1 2226:1 2232:1 2234:3 2238:1 2239:2 2240:4 2243:1 2255:2 2274:1 2276:1 2280:2 2281:2 2284:2 2285:7 2288:4 2291:1 2292:2 2293:3 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:1 2314:1 2316:6 2318:2 2319:6 2331:1 2332:1 2348:1 2369:1 2380:1 2386:1 2393:1 2407:1 2411:1 2418:1 2430:3 2437:2 2445:1 2448:1 2466:1 2482:2 2493:5 2505:1 2515:1 2532:1 2537:1 2561:5 2570:2 2577:1 2595:2 2603:1 2608:2 2615:3 2618:2 2620:1 2623:1 2632:2 2661:2 2682:1 2699:1 2701:2 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2740:1 2745:1 2748:1 2761:1 2763:1 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:5 2825:2 2831:2 2841:1 2848:1 2880:1 2882:1 2883:1 2889:1 2933:2 2935:1 2941:20 2959:4 2975:2 2980:1 2995:1 3002:11 3032:1 3036:4 3038:1 3061:1 3064:1 3068:1 3092:1 3095:1 3146:3 3162:1 3176:1 3177:1 3184:1 3225:1 3240:1 3242:1 3259:1 3269:1 3280:1 3304:1 3312:4 3325:1 3332:1 3339:1 3343:1 3348:1 3361:1 3384:1 3386:3 3416:1 3431:1 3434:8 3481:1 3487:1 3510:1 3544:1 3551:1 3557:1 3561:1 3563:1 3564:2 3568:2 3571:1 3578:1 3581:1 3587:1 3615:1 3619:1 3628:1 3635:2 3640:1 3648:1 3665:1 3670:1 3674:1 3678:2 3681:3 3699:4 3705:2 3706:1 3708:2 3709:2 3715:1 3736:2 3741:3 3751:1 3773:1 3784:1 3787:1 3791:1 3792:3 3796:1 3800:2 3803:2 3848:1 3853:1 3855:4 3857:1 3858:2 3859:8 3873:1 3882:1 3888:1 3895:4 3897:1 3903:2 3904:10 3905:1 3906:1 3924:4 3932:1 3938:1 3955:1 3956:3 3958:1 3967:1 3969:1 3978:1 3981:1 3986:1 3993:1 4000:1 4004:1 4016:1 4019:3 4022:1 4032:1 4045:1 4053:1 4054:1 4058:1 4063:1 4077:3 4084:1 4085:1 4089:2 4093:1 4099:2 4100:2 4108:4 4109:2 4114:1 4128:1 4144:1 4153:1 4169:2 4187:1 4196:2 4204:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:2 4307:2 4315:1 4316:1 4325:1 4364:1 4378:2 4381:2 4388:1 4405:1 4420:2 4455:1 4474:5 4494:1 4535:1 4546:2 4555:1 4572:1 4598:1 4601:1 4631:1 4675:1 4697:1 4724:1 4728:2 4741:3 4749:1 4751:1 4754:1 4772:1 4774:1 4788:1 4804:1 4807:7 4843:1 4854:1 4870:1 4875:1 4889:1 4896:1 4903:6 4907:1 4918:1 4921:1 4951:1 4954:1 4986:2 5009:1 5019:16 5021:2 5024:1 5041:2 5052:1 5078:1 5083:7 5093:2 5115:1 5117:1 5131:1 5132:1 5134:1 5135:4 5151:3 5152:4 5153:1 5154:1 5159:3 5160:1 5162:1 5163:1 5166:1 5171:1 5173:2 5175:2 5176:1 5178:1 5184:1 5185:1 5187:4 5188:2 5211:1 5242:1 5277:2 5279:1 5299:1 5317:1 5321:1 5326:2 5328:1 5336:2 5344:2 5359:1 5367:1 5385:1 5396:2 5404:2 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5512:2 5518:5 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:2 5698:1 5704:1 5705:2 5708:1 5710:2 5712:1 5722:1 5730:1 5736:1 5758:3 5763:1 5772:1 5786:1 5792:2 5797:1 5808:2 5815:1 5816:1 5849:3 5873:2 5888:1 5897:2 5914:4 5917:1 5921:1 5939:1 5945:1 5975:1 5977:1 6007:1 6011:1 6021:1 6028:1 6059:2 6066:1 6097:1 6102:2 6129:1 6152:1 6183:2 6184:1 6205:12 6226:4 6229:1 6231:4 6238:1 6247:1 6248:3 6249:1 6257:1 6280:2 6297:1 6301:1 6308:1 6356:1 6380:1 6384:2 6385:1 6390:1 6400:1 6404:1 6426:5 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6485:1 6488:1 6501:3 6503:1 6505:1 6507:1 6515:1 6517:1 6518:2 6519:1 6520:3 6525:4 6526:8 6527:4 6530:1 6539:1 6568:1 6571:1 6591:1 6646:3 6681:2 6699:1 6743:1 6750:1 6763:1 6769:1 6777:1 6797:1 6798:1 6803:1 6814:1 6816:1 6822:1 6844:1 6851:1 6855:1 6897:1 6898:2 6916:1 6919:2 6924:1 6929:1 6940:5 6960:2 6968:2 6973:1 6985:1 6997:1 7002:1 7029:1 7045:2 7047:1 7049:2 7058:2 7086:2 7087:2 7091:3 7100:1 7113:3 7114:2 7128:1 7131:1 7142:1 7147:2 7148:1 7150:2 7160:1 7177:1 7212:1 7253:10 7255:1 7273:1 7281:2 7300:1 7302:1 7306:1 7310:1 7332:1 7336:1 7337:1 7369:2 7411:2 7416:1 7435:2 7452:1 7479:2 7491:3 7505:2 7506:1 7509:1 7516:1 7521:1 7527:1 7549:3 7554:3 7555:1 7579:2 7583:1 7596:1 7597:1 7603:2 7627:2 7644:1 7663:1 7672:2 7725:1 7726:2 7756:2 7757:9 7758:1 7771:2 7784:2 7785:2 7786:1 7812:3 7813:1 7831:46 7836:1 7854:2 7855:11 7857:1 7860:1 7883:2 7908:1 7911:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:2 8035:2 8059:1 8062:1 8087:1 8093:1 8108:1 8112:3 8138:1 8143:1 8145:1 8153:1 8172:1 8223:1 8226:1 8233:1 8250:1 8258:1 8265:2 8266:3 8267:1 8269:1 8285:1 8287:1 8317:1 8324:2 8333:1 8338:2 8343:1 8348:2 8357:1 8358:5 8389:2 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:1 8564:1 8566:1 8589:1 8591:1 8599:2 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:3 8638:1 8646:1 8656:1 8664:5 8669:1 8671:1 8701:1 8716:1 8728:1 8736:1 8739:2 8740:5 8743:4 8744:2 8746:1 8748:3 8749:6 8752:2 8753:2 8757:1 8768:2 8784:4 8790:1 8792:3 8816:3 8820:1 8822:2 8826:2 8829:1 8834:1 8837:3 8853:1 8892:2 8906:1 8907:1 8930:1 8939:1 8958:1 8968:1 8974:1 8988:1 9017:2 9024:1 9033:2 9041:2 9066:1 9073:3 9074:1 9078:2 9090:2 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9171:1 9177:1 9188:2 9199:4 9202:2 9222:1 9241:2 9252:1 9263:1 9275:1 9276:1 9292:1 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:2 9373:1 9387:1 9394:1 9401:1 9411:1 9421:1 9459:1 9463:1 9467:7 9469:1 9474:2 9477:1 9486:18 9489:1 9508:2 9510:1 9523:1 9535:1 9572:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:6 9634:1 9659:1 9676:1 9684:3 9728:1 9749:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9828:1 9831:1 9844:1 9845:3 9851:1 9861:1 9869:3 9877:2 9886:1 9895:2 9919:2 9949:7 9962:2 9965:1 9966:4 9972:2 9974:1 9991:1 9995:1 10005:1 10035:3 10065:1 10093:1 10108:6 10113:1 10120:1 10126:1 10135:3 10143:1 10145:1 10147:2 10150:1 10153:1 10158:3 10171:1 10175:1 10179:1 10196:1 10198:1 10202:1 10210:1 10211:1 10213:1 10225:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10308:1 10309:1 10336:1 10345:1 10368:1 10399:1 10401:1 10402:1 10418:2 10466:1 10481:1 10489:1 10520:1 10525:1 10550:2 10570:1 10588:1 10608:1 10609:1 10625:3 10630:2 10638:2 10653:1 10655:1 10690:1 10712:1 10722:1 10724:1 10767:1 10769:1 10790:2 10794:2 10800:4 10809:1 10810:1 10811:1 10813:1 10823:1 10824:2 10841:2 10844:3 10846:1 10854:1 10865:1 10866:1 10867:1 10876:2 10878:2 10886:1 10888:1 10890:2 10892:1 10895:1 10916:1 10934:1 10950:1 10953:7 10967:4 10988:2 10990:10 11055:1 11056:1 11067:1 11079:1 11112:2 11117:1 11159:1 11180:1 11211:1 11224:1 11254:3 11257:2 11260:2 11262:2 11269:2 11283:2 11291:1 11298:1 11299:1 11302:1 11312:1 11347:6 11351:1 11372:3 11377:1 11378:1 11381:1 11433:1 11434:1 11435:2 11437:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11516:1 11544:1 11554:1 11557:1 11566:1 11579:1 11583:4 11590:1 11613:1 11627:1 11637:1 11643:2 11653:2 11659:1 11660:1 11674:2 11675:1 11677:1 11682:1 11686:2 11706:4 11715:1 11749:1 11752:9 11753:1 11789:1 11790:1 11797:1 11819:1 11820:1 11830:1 11831:2 11852:1 11860:1 11861:1 11866:2 11890:1 11898:1 11901:2 11908:1 11914:2 11930:2 11933:6 11960:1 11962:5 11963:1 11989:1 11994:1 12006:1 12009:1 12012:2 12020:1 12025:1 12026:2 12029:3 12032:1 12042:1 12044:1 12046:1 12049:2 12055:1 12059:1 12074:5 12085:1 12097:6 12108:1 12111:1 12132:1 12139:1 12149:1 12156:1 12195:1 12200:2 12223:1 12263:1 12265:1 12291:1 12304:3 12306:1 12313:1 12315:1 12346:1 12359:3 12362:3 12382:1 12411:3 12426:1 12433:1 12439:1 12526:1 12540:1 12542:1 12543:2 12544:3 12545:1 12560:1 12571:1 12592:1 12593:1 12602:2 12603:4 12608:2 12615:1 12619:2 12686:1 12692:1 12702:1 12722:1 12726:2 12732:6 12753:1 12782:2 12798:1 12806:1 12807:1 12810:2 12824:2 12843:2 12847:2 12872:1 12880:1 12896:1 12904:1 12935:1 12950:1 12953:1 12954:2 12971:1 12973:1 12991:1 12996:1 13009:2 13091:6 13100:1 13113:1 13114:1 13116:1 13131:14 13136:1 13142:1 13151:2 13153:5 13155:1 13161:1 13180:1 13189:1 13192:1 13195:2 13199:1 13222:2 13246:1 13250:1 13255:1 13256:2 13259:2 13270:2 13283:1 13291:2 13292:1 13315:1 13330:3 13334:1 13339:1 13341:1 13362:1 13393:1 13417:1 13450:1 13454:5 13503:1 13504:1 13523:1 13550:6 13556:1 13573:2 13584:1 13588:4 13595:4 13609:1 13611:6 13647:1 13663:1 13665:1 13666:1 13684:2 13690:3 13726:1 13732:1 13734:1 13747:6 13754:1 13756:2 13757:1 13772:1 13774:2 13786:1 13800:2 13802:1 13807:1 13808:1 13829:1 13830:4 13833:1 13840:1 13847:2 13854:1 13862:1 13865:1 13880:2 13887:4 13909:1 13913:1 13933:3 13937:1 13938:2 13973:1 13987:2 14008:1 14076:1 14081:1 14116:3 14120:2 14123:4 14124:1 14127:1 14138:1 14146:1 14149:1 14170:3 14191:3 14198:2 14201:1 14204:1 14205:1 14233:1 14243:6 14254:1 14277:1 14290:2 14292:1 14304:2 14316:1 14339:7 14343:1 14345:3 14346:1 14352:1 14359:1 14399:1 14401:1 14414:1 14426:3 14445:8 14455:1 14486:1 14489:1 14508:1 14525:1 14530:1 14535:1 14560:1 14577:6 14591:1 14602:3 14611:1 14613:1 14624:1 14643:1 14649:1 14651:1 14667:1 14668:1 14705:1 14720:1 14730:1 14732:1 14741:1 14751:1 14757:2 14768:1 14780:1 14783:3 14794:1 14795:1 14796:2 14797:6 14800:1 14803:6 14808:1 14812:3 14814:1 14815:1 14825:1 14833:1 14836:1 14861:1 14871:1 14913:1 14914:1 14927:4 14961:2 14971:2 14978:1 14984:2 15003:1 15013:3 15032:1 15037:1 15038:1 15060:1 15084:2 15099:2 15109:2 15112:1 15126:2 15129:1 15134:4 15137:1 15152:2 15157:1 15166:2 15181:1 15183:1 15253:1 15266:1 15328:3 15329:1 15332:1 15334:1 15349:1 15395:1 15396:1 15408:3 15410:1 15424:1 15425:1 15428:2 15444:1 15449:4 15450:2 15470:2 15483:1 15494:1 15497:1 15511:1 15532:6 15535:1 15538:1 15543:1 15549:1 15599:1 15638:3 15641:1 15651:1 15655:1 15668:1 15670:2 15681:1 15692:3 15693:1 15698:2 15700:1 15715:1 15727:1 15735:1 15748:1 15761:2 15774:2 15820:2 15849:1 15863:7 15882:1 15886:1 15924:2 15938:1 15941:1 15950:4 15951:1 15961:3 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16081:1 16114:2 16118:1 16128:5 16133:2 16140:1 16141:3 16151:1 16160:2 16165:2 16171:1 16172:1 16173:4 16174:2 16176:1 16184:1 16189:1 16228:1 16233:1 16243:1 16275:1 16306:5 16312:1 16325:1 16335:1 16345:1 16359:3 16387:1 16403:6 16404:3 16406:1 16452:1 16459:3 16468:1 16472:1 16484:3 16488:2 16499:1 16536:1 16552:1 16553:2 16599:1 16607:1 16612:14 16613:1 16618:1 16624:1 16629:2 16640:1 16649:1 16670:2 16690:3 16693:1 16698:1 16707:1 16716:1 16717:1 16734:1 16741:1 16745:2 16756:2 16760:1 16763:1 16789:1 16791:2 16826:2 16828:1 16829:1 16830:2 16885:1 16896:1 16922:1 16960:1 16963:1 16966:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:2 17133:1 17156:1 17158:1 17167:1 17178:1 17188:1 17212:1 17234:1 17237:2 17245:2 17255:2 17272:1 17279:1 17287:3 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:2 17374:1 17407:2 17411:1 17413:4 17419:1 17436:1 17444:1 17455:1 17474:1 17478:1 17483:8 17496:1 17499:1 17506:1 17510:1 17516:2 17535:4 17553:1 17565:1 17569:2 17584:2 17625:1 17630:1 17632:1 17639:5 17646:1 17668:3 17671:1 17684:1 17711:2 17712:2 17735:3 17737:2 17750:1 17754:1 17762:1 17763:2 17777:1 17778:7 17779:1 17787:2 17820:1 17832:1 17844:1 17850:2 17857:2 17921:1 17946:1 17962:1 17968:3 17975:1 17980:2 18000:1 18004:1 18018:1 18025:1 18039:1 18041:1 18043:3 18050:2 18051:1 18053:1 18060:2 18070:3 18072:2 18076:1 18106:1 18126:5 18127:3 18151:1 18154:1 18185:1 18189:1 18196:7 18210:1 18240:1 18245:1 18252:2 18255:1 18256:1 18259:1 18276:1 18281:1 18283:4 18286:1 18288:1 18291:1 18304:1 18324:1 18327:1 18344:1 18365:1 18366:3 18395:1 18403:2 18424:7 18426:1 18430:3 18436:21 18444:1 18447:1 18451:1 18455:1 18459:1 18476:2 18482:1 18485:1 18486:1 18506:1 18516:1 18528:1 18532:1 18537:1 18546:1 18549:1 18550:1 18553:1 18569:1 18575:1 18586:1 18591:4 18604:1 18630:1 18643:5 18680:1 18683:1 18695:2 18698:1 18712:1 18720:1 18723:2 18736:3 18738:1 18740:1 18750:1 18761:1 18780:1 18805:1 18812:1 18843:1 18845:1 18867:1 18888:1 18891:2 18905:1 18915:1 18918:1 18928:1 18962:1 18968:2 18969:1 19001:2 19069:4 19095:1 19113:1 19125:1 19148:2 19152:1 19157:1 19172:2 19191:4 19199:1 19218:1 19225:1 19229:1 19245:2 19251:2 19254:2 19259:1 19275:1 19279:1 19287:3 19291:1 19300:1 19304:1569 19308:1 19318:1 19324:1 19367:2 19368:1 19377:3 19402:1 19431:1 19437:2 19444:2 19476:2 19486:1 19506:1 19521:1 19529:2 19535:6 19542:1 19548:5 19551:2 19552:4 19583:1 19629:6 19633:1 19635:1 19642:1 19665:1 19666:18 19686:1 19692:7 19716:1 19747:1 19756:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:2 19857:1 19860:1 19868:1 19882:1 19898:2 19908:1 19920:1 19927:1 19928:1 19953:1 19957:1 19978:2 19981:2 19982:3 20018:2 20021:3 20027:1 20033:1 20036:1 20038:1 20043:3 20049:1 20053:1 20058:1 20064:1 20074:5 20078:1 20092:1 20106:2 20127:1 20131:9 20147:1 20148:1 20172:6 20173:1 20183:1 20188:1 20198:1 20242:1 20247:2 20296:1 20300:1 20313:1 20329:4 20331:1 20336:3 20339:2 20351:1 20372:1 20374:3 20375:1 20387:1 20399:1 20429:1 20434:1 20463:1 20468:1 20501:3 20516:1 20528:1 20559:2 20570:1 20571:1 20577:1 20584:2 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:3 20616:1 20620:3 20624:1 20629:4 20641:1 20664:1 20666:1 20681:1 20687:1 20692:2 20705:1 20708:1 20733:1 20754:2 20756:2 20760:1 20783:1 20790:1 20791:4 20805:1 20817:2 20828:1 20832:1 20848:1 20850:1 20875:1 20884:1 20886:1 20901:1 20912:2 20918:1 20923:1 20928:1 20932:1 20962:1 20964:2 20980:1 21002:5 21032:1 21057:6 21058:2 21062:2 21068:1 21074:1 21080:1 21120:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21255:3 21258:1 21259:4 21271:1 21290:1 21296:1 21298:1 21299:5 21314:2 21316:1 21319:3 21324:1 21348:1 21388:1 21389:2 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21511:1 21514:1 21526:1 21529:3 21539:1 21546:4 21547:1 21550:1 21552:1 21553:1 21561:1 21574:2 21579:1 21584:1 21588:2 21595:1 21605:1 21613:4 21647:1 21656:2 21659:2 21673:1 21702:1 21712:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:2 21840:2 21863:6 21872:1 21875:1 21894:1 21901:1 21907:2 21952:1 21965:1 21971:1 21976:1 21979:1 21985:1 21989:1 22005:1 22022:2 22045:1 22058:1 22061:1 22078:1 22082:1 22122:1 22149:1 22177:1 22194:1 22225:1 22240:1 22241:2 22250:1 22254:1 22256:1 22258:2 22265:1 22272:2 22273:3 22282:2 22283:1 22289:1 22298:1 22325:1 22338:1 22346:4 22361:1 22363:1 22365:1 22370:2 22371:2 22376:1 22378:1 22383:2 22391:1 22401:1 22408:1 22413:1 22415:8 22432:1 22433:1 22436:1 22437:1 22447:1 22455:1 22477:1 22491:1 22504:1 22507:2 22513:1 22519:1 22525:7 22532:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22625:1 22632:1 22661:1 22665:3 22672:1 22676:1 22678:1 22679:1 22681:1 22682:1 22697:1 22698:3 22716:2 22720:1 22735:1 22752:1 22766:2 22798:1 22801:1 22802:1 22818:1 22834:1 22838:1 22870:3 22886:3 22892:3 22897:1 22902:1 22924:1 22933:1 22940:1 22943:1 22947:2 22959:1 22961:1 22975:3 23017:1 23023:1 23029:1 23034:1 23052:4 23053:5 23056:3 23059:1 23072:2 23073:1 23096:1 23111:2 23118:1 23124:1 23131:1 23134:1 23142:3 23144:2 23145:3 23154:1 23162:2 23165:1 23174:1 23177:1 23178:2 23185:1 23205:2 23226:1 23229:2 23231:1 23233:1 23241:1 23243:1 23251:3 23260:1 23263:2 23270:1 23291:3 23292:1 23309:2 23315:21 23320:1 23321:2 23323:4 23326:1 23327:2 23329:1 23334:1 23336:1 23352:3 23354:1 23361:2 23364:1 23368:2 23384:1 23385:2 23389:1 23400:1 23425:1 23437:1 23440:1 23487:2 23497:1 23501:4 23509:1 23530:2 23535:1 23552:1 23560:1 23594:1 23596:1 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23649:2 23655:2 23663:1 23664:1 23685:1 23702:1 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23823:1 23828:1 23830:1 23837:1 23844:1 23859:1 23860:1 23869:1 23872:1 23887:1 23888:2 23903:2 23906:1 23926:3 23927:1 23928:1 23944:3 23952:2 23955:1 23977:2 23978:1 23982:1 23984:1 23992:2 23997:1 24066:1 24079:1 24125:1 24129:1 24144:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24196:2 24209:2 24214:2 24215:1 24218:1 24220:1 24228:1 24232:1 24258:2 24270:3 24278:1 24280:1 24282:1 24291:1 24309:1 24325:1 24333:1 24336:1 24343:10 24351:1 24376:2 24393:1 24423:1 24424:1 24425:1 24443:1 24488:1 24497:1 24513:1 24515:1 24526:2 24533:1 24543:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:1 24620:3 24622:1 24623:1 24631:1 24638:1 24649:1 24652:1 24661:2 24728:1 24731:1 24746:2 24748:1 24761:1 24762:1 24764:2 24788:1 24791:2 24801:1 24822:1 24839:1 24862:1 24863:1 24902:2 24912:5 24914:1 24923:4 24927:1 24944:1 24955:2 24956:1 24957:1 24964:1 24973:2 24974:1 24995:2 25011:1 25028:2 25030:1 25032:1 25036:1 25060:1 25068:1 25085:1 25093:1 25099:3 25100:2 25106:1 25115:1 25127:1 25136:1 25147:1 25148:1 25150:1 25176:1 25184:1 25206:1 25210:1 25220:1 25221:2 25222:1 25224:6 25226:2 25228:4 25229:2 25234:1 25235:2 25236:2 25238:1 25248:2 25249:2 25255:2 25262:1 25268:2 25297:1 25300:2 25301:1 25315:2 25327:1 25337:3 25343:3 25363:1 25369:1 25370:1 25381:2 25393:1 25410:1 25414:1 25415:1 25439:1 25460:1 25463:1 25478:1 25504:3 25530:2 25540:1 25545:4 25565:2 25601:1 25602:1 25616:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25752:3 25767:1 25778:1 25781:1 25785:3 25794:2 25828:3 25861:1 25879:2 25887:1 25900:1 25903:4 25909:1 25915:1 25922:1 25927:1 25929:1 25931:4 25988:1 26007:1 26023:1 26025:2 26060:9 26069:1 26083:7 26112:1 26122:1 26127:1 26138:1 26146:2 26168:1 26175:1 26180:2 26184:1 26187:1 26190:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:4 26270:1 26280:1 26285:2 26288:7 26293:1 26294:2 26304:1 26307:1 26311:1 26317:2 26320:1 26328:1 26329:1 26334:1 26358:1 26363:2 26373:1 26379:4 26387:1 26410:3 26416:2 26420:2 26422:2 26482:1 26494:1 26495:1 26511:1 26519:1 26534:1 26560:1 26563:1 26579:1 26589:1 26590:2 26591:1 26593:1 26614:5 26643:1 26646:1 26648:1 26656:1 26662:1 26698:1 26716:1 26754:1 26760:1 26776:1 26805:1 26826:1 26847:1 26872:1 26882:1 26883:3 26886:2 26893:1 26901:1 26902:1 26907:1 26918:2 26925:1 26939:1 26954:1 26957:2 26983:3 26989:1 26997:1 26998:2 27020:4 27046:1 27047:4 27070:1 27089:1 27091:1 27094:2 27095:1 27107:1 27118:1 27119:1 27127:1 27138:1 27157:2 27174:1 27178:4 27179:1 27212:3 27234:1 27236:1 27260:2 27278:1 27299:4 27320:2 27321:1 27322:1 27327:1 27330:1 27334:3 27335:1 27341:1 27375:2 27378:1 27381:1 27387:1 27415:2 27438:2 27439:1 27454:2 27459:1 27482:1 27484:2 27510:1 27530:2 27535:1 27539:1 27555:1 27574:2 27583:5 27608:2 27613:1 27665:1 27670:1 27686:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27780:1 27781:1 27787:1 27791:1 27792:1 27804:1 27807:1 27822:1 27826:1 27845:1 27873:1 27875:1 27888:1 27897:1 27912:2 27917:1 27920:1 27924:2 27940:4 27957:3 27965:5 27974:1 27990:1 27991:1 27997:1 28011:1 28025:1 28033:1 28043:1 28044:8 28071:1 28083:1 28087:2 28097:1 28098:1 28101:1 28102:1 28109:10 28151:3 28188:2 28189:1 28193:1 28213:1 28218:5 28225:2 28226:2 28242:2 28246:1 28251:2 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:1 28335:2 28337:1 28347:1 28361:1 28372:1 28377:1 28381:1 28384:1 28398:1 28409:1 28414:2 28416:1 28418:1 28458:1 28529:1 28533:1 28554:2 28557:1 28564:1 28588:1 28589:1 28600:1 28616:4 28619:1 28637:1 28649:1 28672:1 28686:1 28736:1 28755:2 28825:2 28845:1 28858:1 28860:6 28872:1 28893:1 28896:3 28928:2 28938:1 28961:1 28978:1 28980:1 28983:1 28992:23 28993:4 28996:5 28998:1 28999:2 29011:1 29034:7 29048:1 29092:1 29100:2 29115:1 29120:1 29131:1 29132:1 29142:1 29146:2 29176:9 29180:2 29184:1 29186:1 29190:1 29210:1 29213:1 29216:1 29221:2 29228:2 29236:1 29238:1 29245:2 29251:1 29262:1 29267:1 29268:2 29278:1 29281:1 29293:1 29295:1 29300:1 29302:1 29343:1 29347:1 29362:2 29364:1 29387:1 29388:1 29391:1 29405:3 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29518:1 29525:1 29529:1 29532:2 29539:1 29548:1 29551:1 29566:1 29570:1 29579:1 29587:2 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29712:1 29716:1 29717:1 29718:1 29722:1 29723:2 29736:1 29740:2 29743:1 29749:1 29758:1 29767:6 29773:1 29780:2 29782:1 29788:1 29801:1 29828:1 29832:1 29839:2 29840:1 29882:2 29890:1 29900:1 29914:2 29918:1 29920:2 29925:1 29927:1 29931:6 29949:1 29969:1 29970:1 30001:2 30012:1 30035:2 30058:2 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30150:2 30187:1 30194:7 30206:1 30208:1 30210:1 30231:6 30243:5 30244:1 30250:1 30273:1 30311:1 30320:7 30322:2 30324:2 30326:1 30328:1 30331:3 30332:2 30344:1 30363:2 30367:3 30371:3 30408:1 30421:1 9 11:1 14:1 43:1 50:2 74:1 79:1 85:1 99:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 176:1 187:1 189:3 201:1 206:4 236:5 257:1 283:1 303:1 315:2 325:1 327:19 338:2 355:1 356:3 357:4 362:1 366:1 378:1 397:1 419:1 441:2 460:3 478:1 480:1 550:1 558:1 589:1 591:4 592:1 600:1 603:3 625:2 635:2 637:1 638:1 639:1 657:2 671:1 682:1 685:1 691:1 693:1 703:1 724:1 732:1 736:1 747:1 758:1 774:1 788:1 802:1 804:1 819:1 824:1 833:1 843:1 854:1 856:2 857:1 883:5 885:3 897:1 899:1 900:1 911:1 914:11 917:1 929:1 933:1 938:3 941:7 946:1 952:1 953:1 959:1 964:3 985:1 986:2 997:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:1 1060:1 1076:1 1080:2 1084:1 1102:1 1115:1 1126:1 1133:1 1142:1 1143:1 1148:1 1156:2 1163:1 1164:2 1172:1 1187:1 1194:1 1201:3 1206:1 1213:1 1230:1 1258:2 1291:1 1292:1 1300:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1411:1 1441:2 1443:1 1464:2 1468:1 1471:5 1474:1 1487:1 1490:1 1491:1 1493:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:2 1614:1 1621:1 1636:1 1639:1 1641:2 1642:3 1650:1 1677:3 1680:1 1700:1 1701:2 1706:3 1712:2 1732:1 1733:1 1752:1 1775:1 1814:1 1818:1 1830:1 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1886:1 1908:1 1958:9 1965:1 1970:2 1981:1 1986:1 1991:1 1996:1 1997:1 2008:1 2018:7 2019:2 2051:1 2053:1 2057:2 2063:3 2075:1 2088:1 2107:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2186:1 2195:1 2211:1 2213:1 2218:3 2219:1 2223:1 2226:1 2232:1 2234:3 2238:1 2239:2 2240:4 2243:1 2255:2 2274:1 2276:1 2280:2 2281:2 2284:2 2285:7 2288:4 2291:1 2292:2 2293:3 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:1 2314:1 2316:6 2318:2 2319:6 2331:1 2332:1 2348:1 2369:1 2380:1 2386:1 2393:1 2407:1 2411:1 2418:1 2430:3 2437:2 2438:1 2445:1 2448:1 2466:2 2482:2 2493:5 2505:1 2515:1 2532:1 2537:1 2561:5 2570:2 2577:1 2595:2 2603:1 2608:2 2615:3 2618:2 2620:1 2623:1 2632:2 2661:2 2682:1 2699:1 2701:2 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2740:1 2745:1 2748:1 2761:1 2763:1 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:5 2825:2 2831:2 2841:1 2848:1 2880:1 2882:1 2883:1 2889:1 2912:1 2933:2 2935:1 2941:20 2959:4 2975:2 2980:1 2995:1 3002:11 3032:1 3036:4 3038:1 3039:1 3061:1 3064:1 3068:1 3092:1 3095:1 3146:3 3162:1 3176:1 3177:1 3184:1 3225:1 3240:1 3242:1 3259:1 3269:1 3280:1 3304:1 3312:4 3325:1 3332:1 3339:1 3343:1 3348:1 3361:1 3384:1 3386:3 3416:1 3431:1 3434:8 3481:1 3487:1 3510:1 3544:1 3551:1 3557:2 3561:1 3563:1 3564:2 3568:2 3571:1 3578:1 3581:1 3587:1 3615:1 3619:1 3628:1 3635:2 3640:1 3648:1 3665:1 3670:1 3674:1 3678:2 3681:3 3699:4 3705:2 3706:1 3708:2 3709:2 3715:1 3736:2 3741:3 3751:1 3773:1 3784:1 3787:1 3791:1 3792:3 3796:1 3800:2 3803:2 3848:1 3853:1 3855:4 3857:1 3858:2 3859:9 3873:1 3882:1 3888:1 3895:4 3897:1 3903:2 3904:11 3905:1 3906:1 3924:4 3932:1 3938:1 3955:1 3956:3 3958:1 3967:1 3969:1 3978:1 3981:1 3986:1 3993:1 4000:1 4004:1 4016:1 4019:3 4022:1 4032:1 4045:1 4053:1 4054:1 4058:1 4063:1 4077:3 4084:1 4085:1 4089:2 4093:1 4099:2 4100:2 4108:4 4109:2 4114:1 4128:1 4144:1 4153:1 4169:2 4181:1 4187:1 4196:2 4204:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:2 4307:2 4315:1 4316:1 4325:1 4364:1 4378:2 4381:2 4388:1 4405:1 4420:2 4455:1 4474:5 4494:1 4535:1 4546:2 4555:1 4572:1 4598:1 4601:1 4631:1 4675:1 4697:1 4719:1 4724:1 4728:2 4741:3 4749:1 4751:1 4754:1 4772:1 4774:1 4788:1 4804:1 4807:7 4843:1 4854:1 4870:1 4875:1 4889:1 4896:1 4903:6 4907:1 4918:1 4921:1 4951:1 4954:1 4986:2 5009:1 5019:18 5021:2 5024:1 5041:2 5052:1 5078:1 5083:7 5091:1 5093:2 5115:1 5117:1 5131:1 5132:1 5134:1 5135:6 5151:3 5152:4 5153:1 5154:1 5159:3 5160:1 5162:1 5163:1 5166:1 5171:1 5173:2 5175:3 5176:1 5178:1 5184:1 5185:1 5187:4 5188:2 5211:1 5242:1 5277:2 5279:1 5299:2 5317:1 5321:1 5326:2 5328:1 5336:2 5344:2 5359:1 5367:1 5385:1 5396:2 5404:2 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5512:2 5518:5 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:2 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:1 5736:1 5758:3 5763:1 5772:1 5786:1 5792:2 5797:1 5808:2 5815:1 5816:1 5849:3 5873:2 5888:1 5897:2 5914:4 5917:1 5921:1 5939:1 5945:1 5975:1 5977:1 6007:1 6011:1 6021:1 6028:1 6059:2 6066:1 6097:1 6102:2 6129:1 6152:1 6183:2 6184:1 6205:12 6226:4 6229:1 6231:4 6238:1 6247:1 6248:3 6249:2 6257:1 6280:2 6297:1 6301:1 6308:1 6356:1 6380:1 6384:2 6385:1 6390:1 6400:1 6404:2 6426:5 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6485:1 6488:1 6501:3 6503:1 6505:1 6507:1 6515:1 6517:1 6518:2 6519:1 6520:4 6525:4 6526:9 6527:5 6530:1 6539:1 6568:1 6571:1 6591:1 6646:3 6681:2 6699:1 6743:1 6750:1 6763:1 6769:1 6777:1 6797:1 6798:1 6803:1 6814:1 6816:1 6822:1 6844:1 6851:1 6855:1 6897:1 6898:2 6916:1 6919:2 6924:1 6929:1 6940:5 6960:2 6968:2 6973:1 6985:1 6987:1 6997:1 7002:1 7019:1 7029:1 7045:2 7047:1 7049:2 7058:2 7086:2 7087:2 7091:3 7100:1 7113:3 7114:2 7128:1 7131:1 7142:1 7147:2 7148:1 7150:2 7160:1 7177:1 7212:1 7253:10 7255:1 7273:1 7281:2 7300:1 7302:1 7306:1 7310:1 7312:1 7332:1 7336:1 7337:1 7369:2 7411:2 7416:1 7435:2 7452:1 7479:2 7491:3 7500:1 7505:2 7506:1 7509:1 7516:1 7521:1 7527:1 7539:1 7549:3 7554:3 7555:1 7559:1 7579:2 7583:1 7596:1 7597:1 7603:2 7622:1 7627:2 7644:1 7663:1 7672:2 7723:1 7725:1 7726:2 7756:2 7757:9 7758:2 7771:2 7784:2 7785:2 7786:1 7812:4 7813:1 7831:46 7836:1 7854:2 7855:11 7857:1 7860:1 7883:2 7908:1 7911:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:2 8035:2 8059:1 8062:2 8087:1 8093:1 8108:1 8112:4 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8223:1 8226:1 8233:1 8250:1 8258:1 8265:2 8266:3 8267:1 8269:1 8285:1 8287:1 8317:1 8324:2 8333:1 8338:2 8343:1 8348:2 8357:1 8358:5 8389:2 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8564:1 8566:1 8589:1 8591:1 8599:2 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:3 8638:1 8646:1 8656:1 8664:5 8669:1 8671:1 8701:1 8716:1 8728:1 8736:1 8739:3 8740:5 8743:4 8744:2 8746:1 8748:3 8749:6 8752:2 8753:2 8757:1 8768:2 8784:4 8790:1 8792:3 8816:3 8820:1 8822:2 8826:2 8829:1 8834:1 8837:3 8853:1 8892:2 8906:1 8907:1 8930:1 8939:1 8958:1 8968:1 8974:1 8988:1 9017:2 9024:1 9033:2 9041:2 9066:1 9073:3 9074:1 9078:2 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9171:1 9177:1 9188:2 9199:4 9202:2 9222:1 9241:2 9252:1 9263:1 9275:1 9276:2 9278:1 9292:1 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:2 9373:1 9387:1 9394:1 9401:1 9411:1 9421:1 9459:1 9463:1 9467:7 9469:1 9474:2 9477:1 9486:19 9489:1 9490:1 9508:2 9510:1 9523:1 9535:1 9572:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:6 9634:1 9659:1 9676:1 9684:3 9702:1 9728:1 9749:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9828:1 9831:1 9844:1 9845:4 9851:1 9861:1 9869:3 9877:2 9886:1 9895:2 9919:2 9949:7 9962:2 9965:1 9966:4 9972:2 9974:1 9991:1 9995:1 10004:1 10005:1 10035:3 10065:1 10093:1 10108:6 10113:1 10120:1 10126:1 10135:3 10143:2 10145:1 10147:2 10150:1 10153:1 10158:3 10171:1 10175:1 10179:1 10196:2 10198:1 10202:1 10210:1 10211:1 10213:1 10225:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10308:1 10309:1 10336:1 10345:1 10368:1 10399:1 10401:1 10402:1 10418:2 10466:1 10481:1 10489:1 10520:1 10525:1 10550:2 10570:1 10588:1 10608:2 10609:1 10625:3 10630:2 10638:2 10653:1 10655:1 10690:1 10712:1 10722:1 10724:1 10767:1 10769:1 10790:2 10794:2 10800:4 10809:1 10810:1 10811:1 10813:1 10823:1 10824:2 10841:2 10844:3 10846:1 10854:1 10865:1 10866:1 10867:1 10876:2 10878:2 10886:1 10888:1 10890:2 10892:1 10895:1 10916:1 10934:1 10950:1 10953:7 10967:4 10988:2 10990:10 11055:1 11056:1 11065:1 11067:1 11079:1 11112:2 11117:1 11159:1 11180:1 11193:1 11211:1 11224:1 11254:3 11257:2 11260:2 11262:2 11269:2 11283:2 11291:1 11298:1 11299:1 11302:1 11312:1 11323:1 11347:6 11351:1 11372:4 11377:1 11378:1 11381:1 11433:1 11434:1 11435:2 11437:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11516:1 11544:1 11554:1 11557:1 11566:1 11579:1 11583:4 11590:1 11613:1 11627:1 11637:1 11643:2 11653:2 11659:1 11660:1 11674:2 11675:1 11677:2 11682:1 11686:2 11706:4 11715:1 11749:1 11752:9 11753:1 11789:1 11790:1 11797:1 11819:1 11820:1 11830:1 11831:2 11848:1 11850:1 11852:1 11860:1 11861:1 11866:2 11890:1 11898:1 11901:2 11908:1 11914:2 11930:2 11933:6 11960:1 11962:5 11963:1 11989:1 11994:1 12006:1 12009:1 12012:3 12020:1 12025:1 12026:2 12029:3 12032:1 12042:1 12044:2 12046:1 12049:2 12055:2 12059:1 12074:5 12085:1 12097:6 12108:1 12111:1 12132:1 12139:1 12149:1 12156:1 12177:1 12195:1 12200:2 12223:1 12263:1 12265:1 12291:1 12304:3 12306:1 12313:1 12315:1 12321:1 12340:1 12346:1 12359:3 12362:3 12382:1 12411:3 12426:1 12433:1 12439:1 12442:1 12526:1 12540:1 12542:1 12543:2 12544:3 12545:2 12560:1 12571:1 12592:1 12593:1 12602:2 12603:4 12608:2 12615:1 12619:2 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:6 12753:1 12782:2 12798:1 12806:1 12807:1 12810:2 12824:2 12843:2 12847:2 12872:1 12880:1 12896:1 12904:1 12935:1 12950:1 12953:1 12954:2 12957:1 12971:1 12973:1 12991:1 12996:1 13009:2 13091:6 13100:1 13113:1 13114:1 13116:1 13131:14 13136:1 13142:1 13151:2 13153:5 13155:1 13161:1 13180:1 13189:1 13192:1 13195:2 13199:1 13222:2 13246:1 13250:1 13255:1 13256:2 13259:2 13270:2 13283:1 13291:2 13292:1 13315:1 13330:3 13334:1 13339:1 13341:1 13362:1 13393:1 13417:1 13450:1 13454:5 13503:1 13504:1 13523:1 13550:6 13556:1 13573:2 13584:1 13588:4 13595:4 13609:1 13611:6 13647:1 13663:1 13665:1 13666:1 13684:2 13690:3 13726:1 13732:1 13734:1 13747:6 13754:1 13756:2 13757:1 13772:1 13774:2 13786:1 13800:2 13802:1 13807:1 13808:1 13829:1 13830:4 13833:1 13840:1 13847:2 13854:1 13862:1 13865:1 13880:2 13887:4 13909:1 13913:1 13933:3 13937:1 13938:2 13973:1 13987:2 14008:1 14076:1 14081:1 14116:3 14120:2 14123:4 14124:2 14127:1 14138:1 14146:1 14149:1 14170:3 14191:3 14198:2 14201:1 14204:1 14205:1 14233:1 14243:6 14254:1 14277:1 14290:2 14292:1 14304:2 14316:1 14339:7 14343:1 14345:3 14346:1 14352:1 14359:1 14399:1 14401:1 14414:1 14426:3 14445:8 14455:1 14486:1 14489:2 14508:1 14525:1 14530:1 14531:1 14535:1 14560:1 14577:6 14591:1 14602:3 14611:1 14613:1 14624:1 14643:1 14649:1 14651:1 14667:1 14668:1 14705:1 14720:1 14730:1 14732:1 14741:1 14751:1 14757:2 14768:1 14780:1 14783:3 14794:1 14795:1 14796:2 14797:6 14800:1 14803:6 14808:1 14812:3 14814:1 14815:1 14825:1 14833:1 14836:1 14861:1 14871:1 14913:1 14914:1 14927:4 14961:2 14971:2 14978:1 14984:2 15003:1 15013:3 15032:1 15037:1 15038:1 15060:1 15084:2 15099:2 15106:1 15109:2 15112:1 15126:2 15129:1 15134:4 15137:1 15152:2 15157:1 15166:2 15181:1 15183:1 15253:1 15266:1 15278:1 15328:3 15329:1 15332:1 15334:1 15347:1 15349:1 15395:1 15396:1 15408:4 15410:1 15424:1 15425:1 15428:2 15444:1 15449:4 15450:2 15470:2 15483:1 15494:1 15497:1 15510:1 15511:1 15532:6 15535:1 15538:1 15543:1 15549:1 15599:1 15638:3 15641:1 15651:1 15655:1 15668:1 15670:2 15681:1 15692:3 15693:1 15698:2 15700:1 15715:1 15727:1 15735:1 15748:1 15761:2 15774:2 15820:2 15849:1 15863:7 15882:1 15886:1 15924:2 15938:1 15941:1 15950:4 15951:1 15961:4 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16081:1 16114:2 16118:1 16128:5 16133:2 16140:1 16141:3 16151:1 16160:2 16165:2 16171:1 16172:1 16173:4 16174:2 16176:1 16184:1 16189:1 16228:1 16233:1 16243:1 16266:1 16275:1 16306:6 16312:1 16325:1 16335:1 16345:1 16348:1 16359:3 16387:1 16403:6 16404:3 16406:1 16452:1 16459:3 16468:1 16472:1 16484:3 16488:2 16499:1 16536:1 16552:1 16553:2 16599:1 16607:1 16612:15 16613:1 16618:1 16624:1 16629:2 16640:1 16649:1 16670:2 16690:3 16693:1 16698:1 16707:1 16716:1 16717:1 16734:1 16741:1 16745:2 16756:2 16760:1 16763:1 16789:1 16791:2 16826:2 16828:1 16829:1 16830:2 16850:1 16885:1 16896:1 16922:1 16960:1 16963:1 16966:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:2 17133:1 17156:1 17158:1 17167:1 17178:1 17188:1 17212:1 17234:1 17237:2 17245:2 17255:2 17272:1 17279:1 17287:3 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:2 17374:1 17407:2 17411:1 17413:4 17419:1 17436:1 17444:1 17455:1 17474:1 17478:1 17483:8 17496:1 17499:1 17506:1 17510:1 17516:2 17535:4 17553:1 17565:1 17569:2 17584:2 17617:1 17625:1 17630:1 17632:1 17639:5 17646:1 17668:3 17671:1 17684:1 17690:1 17711:2 17712:2 17735:3 17737:2 17750:1 17754:1 17762:1 17763:2 17777:2 17778:7 17779:1 17787:2 17820:1 17832:1 17844:1 17850:2 17857:2 17921:1 17946:1 17962:1 17968:3 17975:1 17980:2 18000:1 18004:1 18018:1 18025:1 18039:1 18041:1 18043:3 18050:2 18051:1 18053:1 18060:2 18070:3 18072:2 18076:1 18106:1 18110:1 18126:5 18127:3 18151:1 18154:2 18185:1 18189:1 18196:7 18210:1 18240:1 18245:1 18252:2 18255:1 18256:1 18259:1 18276:1 18281:1 18283:4 18286:1 18288:1 18291:1 18304:1 18323:1 18324:1 18327:1 18344:1 18365:1 18366:3 18395:1 18403:2 18424:7 18426:1 18430:3 18436:22 18444:1 18447:1 18451:1 18455:1 18459:1 18476:2 18482:1 18485:1 18486:1 18506:1 18516:1 18528:1 18532:1 18537:1 18546:1 18548:1 18549:1 18550:1 18553:1 18569:1 18575:1 18586:1 18591:4 18604:1 18630:1 18643:5 18680:1 18683:1 18695:2 18698:1 18712:1 18720:1 18723:2 18736:3 18738:1 18740:1 18750:1 18761:1 18774:1 18780:1 18805:1 18812:1 18843:1 18845:1 18867:1 18888:1 18891:2 18905:1 18915:1 18918:1 18928:1 18962:1 18968:2 18969:1 19001:2 19069:4 19081:1 19095:1 19113:1 19125:1 19148:2 19152:1 19157:1 19172:2 19191:4 19199:1 19218:1 19225:1 19229:1 19245:2 19251:2 19254:2 19259:1 19275:1 19279:1 19287:3 19291:1 19300:1 19304:1641 19308:1 19318:1 19324:1 19367:2 19368:1 19377:3 19402:1 19431:1 19437:2 19444:2 19476:2 19486:1 19506:1 19521:1 19529:2 19535:6 19542:1 19548:5 19551:2 19552:4 19583:1 19629:6 19633:1 19635:1 19642:1 19665:1 19666:19 19686:1 19692:7 19716:1 19747:1 19756:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:2 19857:1 19860:1 19868:1 19882:1 19898:2 19908:1 19920:1 19927:1 19928:1 19953:1 19957:1 19978:2 19981:2 19982:3 20018:2 20021:3 20027:1 20033:1 20036:1 20038:1 20043:3 20049:1 20053:1 20058:1 20064:1 20074:5 20078:1 20092:2 20106:2 20127:1 20131:9 20147:1 20148:1 20172:6 20173:1 20183:1 20188:1 20198:1 20242:1 20247:2 20296:1 20300:1 20313:1 20329:4 20331:1 20336:3 20339:2 20351:1 20353:1 20372:1 20374:3 20375:1 20387:1 20399:1 20429:1 20434:1 20463:1 20468:1 20501:3 20516:1 20528:1 20559:2 20570:1 20571:1 20577:1 20584:2 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:3 20616:1 20620:3 20624:1 20629:4 20641:1 20664:1 20666:1 20681:1 20687:1 20692:2 20705:1 20708:1 20733:1 20754:2 20756:2 20760:1 20783:1 20790:1 20791:4 20805:1 20807:1 20817:2 20828:1 20832:1 20848:1 20850:1 20868:1 20875:1 20884:1 20886:1 20901:1 20912:2 20918:1 20920:1 20923:1 20928:1 20932:1 20962:1 20964:2 20980:1 21002:5 21032:1 21057:6 21058:2 21062:2 21068:1 21074:1 21080:1 21120:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21255:3 21258:1 21259:4 21271:1 21290:1 21296:1 21298:1 21299:6 21314:2 21316:1 21317:1 21319:3 21324:1 21348:1 21388:1 21389:2 21407:1 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21475:1 21511:1 21514:1 21526:1 21529:3 21539:1 21546:4 21547:1 21550:1 21552:1 21553:1 21561:1 21574:2 21579:1 21584:1 21588:2 21595:1 21605:1 21613:4 21647:1 21656:2 21659:2 21660:1 21673:1 21702:1 21712:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:2 21840:2 21863:6 21872:1 21873:1 21875:1 21894:1 21901:1 21907:2 21952:2 21965:1 21971:1 21976:1 21979:1 21985:1 21989:1 22005:1 22022:2 22045:1 22058:1 22061:1 22078:1 22082:1 22122:1 22149:1 22177:1 22194:1 22225:1 22240:1 22241:2 22250:1 22254:1 22256:1 22258:2 22265:1 22272:2 22273:3 22282:2 22283:1 22287:1 22289:1 22291:1 22298:1 22325:1 22332:1 22338:1 22346:4 22361:1 22363:1 22365:1 22370:2 22371:2 22376:1 22378:1 22383:2 22391:1 22401:1 22408:1 22413:1 22415:8 22419:1 22432:1 22433:1 22436:1 22437:1 22447:1 22455:1 22477:1 22491:1 22504:1 22507:2 22513:1 22519:1 22525:8 22532:1 22539:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22625:1 22632:1 22661:1 22665:3 22672:1 22676:1 22678:1 22679:1 22681:1 22682:1 22697:1 22698:3 22716:2 22720:1 22735:1 22752:1 22766:2 22798:1 22801:1 22802:1 22818:1 22834:1 22838:1 22870:3 22886:3 22892:3 22897:1 22902:1 22924:1 22933:1 22940:1 22943:1 22947:2 22959:2 22961:1 22975:3 23017:1 23023:1 23029:1 23034:1 23052:4 23053:5 23056:3 23059:1 23072:2 23073:1 23096:1 23111:2 23118:1 23124:1 23131:1 23134:1 23142:3 23144:2 23145:3 23154:1 23162:2 23165:1 23174:1 23177:1 23178:2 23185:1 23205:2 23226:1 23229:2 23231:1 23233:1 23241:1 23243:1 23251:3 23260:1 23263:2 23270:1 23291:3 23292:1 23309:2 23315:22 23320:1 23321:2 23323:4 23326:1 23327:2 23329:1 23333:1 23334:1 23336:1 23352:3 23354:1 23361:2 23364:1 23368:2 23384:1 23385:2 23389:1 23400:1 23425:1 23437:1 23440:1 23487:2 23497:1 23501:4 23509:1 23530:2 23535:1 23552:1 23560:1 23594:1 23596:1 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23649:2 23655:2 23663:1 23664:1 23685:1 23702:1 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23806:1 23823:1 23828:1 23830:1 23837:2 23844:1 23859:1 23860:1 23869:1 23872:1 23887:1 23888:2 23903:2 23906:1 23926:3 23927:1 23928:1 23944:3 23952:2 23955:2 23977:2 23978:1 23982:1 23984:1 23992:2 23997:1 24066:1 24079:1 24125:1 24129:1 24144:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24196:2 24209:2 24214:2 24215:1 24218:1 24220:1 24228:1 24232:1 24258:2 24270:3 24278:1 24280:1 24282:1 24291:1 24309:1 24325:1 24333:1 24336:1 24343:11 24351:1 24376:2 24393:1 24423:1 24424:1 24425:1 24443:1 24488:1 24497:1 24513:1 24515:1 24526:2 24533:1 24543:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:1 24620:4 24622:1 24623:1 24631:1 24638:1 24649:1 24652:1 24661:2 24728:1 24731:1 24746:3 24748:1 24761:1 24762:1 24764:2 24788:1 24791:2 24801:1 24822:1 24839:1 24862:1 24863:1 24902:2 24912:5 24914:1 24923:4 24927:1 24944:1 24955:2 24956:1 24957:1 24964:1 24973:2 24974:1 24995:2 25011:1 25028:2 25030:1 25032:1 25036:1 25060:1 25068:1 25085:1 25093:1 25099:3 25100:2 25106:1 25115:1 25127:1 25136:1 25147:1 25148:1 25150:1 25171:1 25176:1 25180:1 25184:1 25206:1 25210:1 25220:1 25221:2 25222:1 25224:6 25226:2 25228:4 25229:2 25234:1 25235:2 25236:2 25238:1 25248:2 25249:2 25255:2 25262:2 25268:2 25297:1 25300:2 25301:1 25315:2 25327:1 25337:3 25343:3 25363:1 25369:1 25370:1 25381:2 25393:1 25410:1 25414:1 25415:1 25439:1 25460:1 25463:1 25478:1 25504:3 25530:2 25540:1 25545:4 25565:2 25601:1 25602:1 25616:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25718:1 25752:3 25767:1 25778:1 25781:1 25785:3 25794:2 25828:3 25861:1 25879:2 25887:1 25900:1 25903:4 25909:1 25915:1 25922:1 25927:1 25929:1 25931:4 25988:1 26007:1 26023:1 26025:2 26060:9 26069:1 26083:7 26112:1 26122:1 26127:1 26138:1 26146:2 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26190:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:4 26270:1 26280:1 26285:2 26288:7 26293:1 26294:2 26304:1 26307:1 26311:1 26317:2 26320:1 26328:1 26329:1 26334:1 26358:1 26363:2 26373:1 26379:4 26387:1 26410:3 26416:2 26420:2 26422:2 26482:1 26494:1 26495:1 26511:1 26519:1 26534:1 26560:1 26563:1 26579:1 26589:1 26590:2 26591:1 26593:1 26614:5 26643:1 26646:1 26648:1 26656:1 26662:1 26698:1 26716:1 26754:1 26760:1 26776:1 26805:1 26826:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26893:1 26901:1 26902:1 26907:1 26918:2 26925:1 26939:1 26954:1 26957:2 26983:3 26989:1 26997:1 26998:2 27020:4 27046:1 27047:4 27070:1 27089:1 27091:1 27094:2 27095:1 27107:1 27118:1 27119:1 27127:1 27138:2 27157:2 27174:1 27178:4 27179:1 27212:3 27234:1 27236:1 27239:1 27260:2 27278:1 27299:4 27320:2 27321:1 27322:1 27327:1 27329:1 27330:1 27334:3 27335:1 27341:1 27375:2 27378:1 27381:1 27387:1 27415:2 27438:2 27439:1 27454:2 27459:1 27482:1 27484:2 27510:1 27530:2 27535:1 27539:1 27555:1 27574:2 27583:5 27608:2 27613:1 27665:1 27670:1 27686:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27780:1 27781:1 27787:1 27791:1 27792:1 27804:1 27807:1 27822:1 27826:1 27845:1 27873:1 27875:1 27888:1 27897:1 27912:2 27917:1 27920:1 27924:2 27940:4 27957:3 27965:5 27974:1 27990:1 27991:1 27997:1 28011:1 28025:1 28033:1 28043:1 28044:8 28071:1 28083:1 28087:2 28097:1 28098:1 28101:1 28102:1 28109:11 28151:3 28188:2 28189:1 28193:1 28213:2 28218:5 28225:2 28226:2 28242:2 28246:1 28251:2 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:1 28335:2 28337:1 28347:1 28361:1 28372:1 28377:1 28381:1 28384:1 28398:1 28409:1 28414:2 28416:1 28418:1 28458:1 28459:1 28529:1 28533:1 28554:3 28557:1 28564:1 28588:1 28589:1 28600:1 28616:4 28619:1 28637:1 28649:1 28672:1 28686:1 28736:1 28755:2 28801:1 28825:2 28845:1 28858:1 28860:6 28872:1 28893:1 28896:3 28928:2 28938:1 28961:1 28978:1 28980:1 28983:1 28992:24 28993:4 28996:5 28998:1 28999:3 29011:1 29034:7 29048:1 29092:1 29100:2 29115:1 29120:1 29131:1 29132:2 29142:1 29146:2 29176:9 29180:2 29184:1 29186:1 29190:1 29210:1 29213:1 29216:1 29221:2 29228:2 29236:1 29238:1 29245:2 29251:1 29262:1 29267:1 29268:2 29278:1 29281:1 29293:1 29295:1 29300:1 29302:1 29343:1 29347:1 29362:2 29364:1 29387:1 29388:1 29391:1 29405:3 29449:1 29471:1 29473:2 29474:1 29477:1 29498:1 29518:1 29525:1 29529:1 29532:2 29539:1 29548:1 29551:1 29566:1 29570:1 29579:1 29587:2 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29712:1 29716:1 29717:1 29718:1 29722:1 29723:2 29736:1 29740:2 29743:1 29749:1 29758:1 29766:1 29767:6 29773:1 29777:1 29780:3 29782:1 29788:1 29801:1 29828:1 29832:1 29839:2 29840:1 29882:2 29890:1 29900:1 29914:2 29918:1 29920:2 29925:1 29927:1 29931:6 29949:1 29969:1 29970:1 30001:2 30012:1 30035:2 30058:2 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30150:2 30187:1 30194:7 30206:1 30208:1 30210:1 30231:6 30243:5 30244:1 30250:1 30273:1 30311:1 30320:7 30322:2 30324:2 30326:1 30328:1 30331:3 30332:2 30344:1 30363:2 30367:3 30371:3 30408:1 30421:1 9 11:1 14:1 30:1 43:1 50:2 74:1 79:1 85:1 99:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 176:1 187:1 189:3 201:1 206:4 236:7 257:1 283:1 303:1 315:2 325:1 327:20 338:2 355:1 356:3 357:4 362:1 366:1 378:1 397:1 419:1 441:2 460:3 478:1 480:1 550:1 558:1 589:1 591:4 592:1 600:1 603:3 625:3 635:2 637:1 638:1 639:1 657:2 671:1 682:2 685:1 691:1 693:1 703:1 724:1 732:1 736:1 747:1 758:1 774:1 788:1 791:1 802:1 804:1 819:1 824:1 833:1 843:1 854:1 856:2 857:1 880:1 883:6 885:3 897:1 899:1 900:1 911:1 914:11 917:1 929:1 933:1 938:3 941:7 946:1 952:1 953:1 959:1 964:3 978:1 985:2 986:2 997:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:1 1060:2 1076:1 1080:2 1084:1 1102:1 1115:1 1126:1 1133:1 1142:1 1143:2 1148:1 1156:2 1163:1 1164:2 1172:1 1187:1 1194:1 1201:3 1206:1 1213:1 1230:1 1258:2 1291:1 1292:1 1300:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1404:1 1411:2 1441:2 1443:1 1464:2 1468:1 1471:5 1474:1 1487:1 1490:2 1491:1 1493:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:2 1614:1 1621:1 1636:1 1639:1 1641:2 1642:3 1650:1 1677:4 1680:1 1700:1 1701:2 1706:3 1712:2 1732:1 1733:1 1751:1 1752:1 1775:1 1814:2 1818:1 1827:1 1830:1 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1884:1 1886:1 1908:1 1958:10 1965:1 1970:2 1981:1 1986:1 1991:1 1996:1 1997:1 2008:1 2018:7 2019:2 2051:1 2053:1 2057:2 2063:3 2075:1 2088:1 2107:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2186:1 2195:1 2211:1 2213:1 2216:1 2218:3 2219:1 2223:1 2226:1 2232:1 2234:3 2238:1 2239:2 2240:4 2243:1 2255:2 2258:1 2274:1 2276:1 2280:2 2281:2 2284:2 2285:7 2288:4 2291:1 2292:2 2293:4 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:1 2314:1 2316:6 2318:2 2319:7 2331:1 2332:1 2348:1 2369:1 2380:2 2386:1 2393:1 2407:1 2411:1 2418:1 2430:3 2437:3 2438:1 2445:1 2448:1 2453:1 2466:2 2482:3 2493:6 2505:1 2511:1 2515:1 2532:1 2537:1 2561:5 2570:3 2577:1 2595:2 2603:1 2608:2 2615:3 2618:2 2620:1 2623:1 2632:2 2661:2 2682:1 2699:1 2701:3 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2740:1 2745:1 2748:1 2761:1 2763:1 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:5 2825:2 2831:2 2841:1 2848:1 2880:1 2882:1 2883:1 2889:1 2890:1 2912:1 2933:3 2935:1 2941:21 2959:4 2975:2 2980:1 2995:1 3002:11 3032:1 3036:4 3038:1 3039:1 3061:1 3064:1 3068:1 3092:1 3095:1 3146:3 3162:1 3169:1 3176:1 3177:1 3184:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3304:1 3312:4 3325:1 3332:1 3339:1 3343:1 3348:1 3361:1 3384:1 3386:3 3416:1 3431:1 3434:8 3481:1 3487:1 3510:2 3544:1 3551:1 3557:2 3561:1 3563:1 3564:2 3568:2 3571:1 3578:1 3581:1 3587:2 3615:1 3619:1 3628:1 3635:2 3640:1 3648:1 3665:1 3670:1 3674:1 3678:2 3681:3 3699:4 3705:2 3706:1 3708:2 3709:2 3712:1 3715:1 3736:2 3741:4 3751:1 3754:1 3773:1 3784:1 3787:1 3791:1 3792:3 3796:1 3800:2 3803:2 3848:1 3853:1 3855:4 3857:1 3858:2 3859:10 3873:1 3882:1 3888:1 3895:4 3897:1 3903:2 3904:11 3905:1 3906:1 3912:1 3923:1 3924:5 3932:1 3938:1 3955:1 3956:3 3958:1 3967:1 3969:1 3978:1 3981:1 3986:1 3993:1 4000:1 4004:1 4016:1 4019:3 4022:2 4032:1 4045:1 4053:1 4054:1 4058:1 4063:1 4077:3 4084:1 4085:1 4089:2 4093:1 4098:1 4099:2 4100:2 4108:4 4109:2 4114:1 4128:1 4144:1 4153:1 4169:2 4181:1 4187:1 4196:2 4204:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:2 4307:2 4315:1 4316:1 4325:1 4364:1 4378:2 4381:2 4388:1 4405:1 4420:2 4455:1 4474:5 4494:1 4535:1 4546:2 4555:1 4572:1 4598:1 4601:1 4631:1 4665:1 4675:1 4697:1 4719:1 4724:1 4728:2 4741:3 4749:1 4751:1 4754:1 4772:1 4774:1 4788:1 4804:1 4807:8 4843:1 4854:1 4870:1 4875:1 4889:1 4896:1 4903:6 4907:1 4918:1 4921:1 4951:1 4954:1 4986:3 5009:1 5019:19 5021:2 5024:1 5041:2 5052:1 5071:1 5078:1 5083:7 5091:1 5093:2 5115:1 5117:1 5131:1 5132:1 5134:1 5135:6 5151:3 5152:4 5153:1 5154:1 5159:3 5160:1 5162:1 5163:2 5166:1 5171:1 5173:2 5175:3 5176:1 5178:1 5184:1 5185:1 5187:4 5188:2 5211:1 5242:1 5271:1 5277:2 5279:1 5299:2 5317:1 5321:1 5326:2 5328:1 5336:2 5344:2 5359:1 5367:1 5385:1 5396:2 5404:2 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5512:2 5518:6 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5607:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:2 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:1 5736:1 5758:3 5763:1 5772:1 5786:1 5792:2 5797:1 5808:3 5815:1 5816:1 5849:3 5873:2 5888:1 5897:3 5914:4 5917:1 5921:1 5939:1 5945:1 5959:1 5975:1 5977:1 6007:1 6011:1 6021:1 6028:1 6059:2 6066:1 6097:1 6102:2 6129:1 6152:1 6183:2 6184:1 6205:12 6226:4 6229:1 6231:4 6238:1 6242:1 6247:1 6248:3 6249:2 6257:1 6280:3 6297:1 6301:1 6308:1 6356:1 6380:1 6384:2 6385:1 6390:1 6400:1 6404:2 6426:5 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:1 6488:1 6501:3 6503:1 6505:1 6507:1 6511:1 6515:1 6517:1 6518:2 6519:1 6520:4 6525:4 6526:9 6527:5 6530:1 6539:1 6568:1 6571:1 6591:1 6646:3 6681:2 6699:2 6743:1 6750:1 6763:1 6769:1 6777:1 6797:1 6798:1 6803:1 6814:1 6816:1 6822:1 6844:1 6851:1 6855:1 6897:1 6898:2 6916:1 6919:2 6920:1 6924:1 6929:1 6940:7 6960:2 6968:2 6973:1 6985:1 6987:1 6997:1 7002:1 7019:1 7029:1 7045:2 7047:1 7049:2 7058:2 7086:2 7087:2 7091:3 7100:1 7113:3 7114:2 7128:1 7131:1 7142:1 7147:2 7148:1 7150:2 7154:1 7160:1 7177:1 7212:1 7253:10 7255:1 7273:1 7281:2 7300:1 7302:1 7306:1 7310:1 7312:1 7332:1 7336:1 7337:1 7369:2 7411:2 7416:1 7435:2 7452:1 7479:2 7491:3 7495:1 7500:1 7505:2 7506:1 7509:1 7516:1 7521:1 7527:1 7539:1 7549:3 7554:3 7555:1 7559:1 7579:2 7583:1 7596:2 7597:1 7603:2 7622:1 7627:2 7644:1 7663:1 7672:2 7690:1 7723:1 7725:1 7726:2 7756:2 7757:11 7758:3 7771:2 7784:2 7785:2 7786:1 7812:4 7813:1 7831:49 7836:1 7854:3 7855:11 7857:1 7860:1 7883:2 7908:1 7911:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:2 8035:2 8059:1 8062:3 8087:1 8093:1 8108:1 8112:4 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8223:1 8226:1 8233:1 8250:1 8258:1 8265:2 8266:3 8267:1 8269:1 8285:1 8287:1 8317:1 8319:1 8324:2 8333:1 8338:2 8343:1 8348:2 8357:1 8358:5 8389:2 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8564:1 8566:1 8589:1 8591:1 8599:2 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:3 8638:1 8646:1 8656:1 8664:5 8669:1 8671:1 8701:1 8716:1 8728:1 8736:1 8739:3 8740:5 8743:4 8744:2 8746:1 8748:3 8749:6 8752:2 8753:2 8757:1 8767:1 8768:2 8784:4 8790:1 8792:3 8816:3 8820:1 8822:2 8826:2 8829:2 8834:1 8837:4 8853:1 8892:2 8906:1 8907:1 8930:1 8939:1 8958:1 8968:1 8974:1 8988:1 9017:2 9024:1 9033:2 9041:3 9066:1 9073:3 9074:1 9078:2 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9171:1 9177:1 9188:2 9199:4 9202:2 9222:1 9241:3 9252:1 9263:1 9275:1 9276:2 9278:1 9292:1 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:3 9373:1 9387:1 9394:1 9401:2 9411:1 9421:1 9459:1 9463:1 9467:7 9469:1 9470:1 9474:2 9477:1 9486:20 9489:1 9490:1 9508:2 9510:1 9523:1 9535:1 9572:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:6 9634:1 9659:1 9676:1 9684:3 9702:1 9728:1 9749:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9828:1 9831:1 9844:1 9845:5 9851:1 9861:1 9869:3 9877:2 9886:1 9895:2 9919:2 9949:7 9962:2 9965:1 9966:4 9972:2 9974:1 9991:1 9993:1 9995:1 10004:1 10005:1 10035:3 10053:1 10065:1 10093:1 10108:7 10113:1 10120:1 10126:1 10135:3 10142:1 10143:2 10145:1 10147:2 10150:1 10153:1 10158:3 10171:1 10175:1 10179:1 10186:1 10196:3 10198:1 10202:1 10210:1 10211:1 10213:1 10220:1 10225:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10308:1 10309:1 10336:1 10345:1 10368:1 10399:1 10401:1 10402:1 10418:2 10466:1 10479:1 10481:1 10489:1 10520:1 10525:1 10550:2 10570:1 10588:1 10608:2 10609:1 10625:3 10630:2 10638:2 10653:1 10655:1 10690:1 10699:1 10712:1 10722:1 10724:1 10764:1 10767:1 10769:1 10788:1 10790:2 10794:2 10800:4 10809:1 10810:1 10811:1 10813:1 10823:1 10824:2 10841:2 10844:3 10846:1 10854:1 10865:2 10866:1 10867:1 10876:2 10878:2 10886:1 10888:1 10890:2 10892:1 10895:1 10916:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:3 10990:10 11055:1 11056:1 11065:1 11067:1 11079:1 11112:2 11117:1 11159:1 11180:1 11193:1 11211:1 11224:1 11254:3 11257:2 11260:2 11262:2 11269:2 11283:2 11291:1 11298:1 11299:1 11302:1 11312:1 11323:1 11347:6 11351:1 11372:4 11377:1 11378:1 11381:1 11433:1 11434:1 11435:2 11437:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11516:1 11544:1 11554:1 11557:1 11566:1 11579:1 11583:4 11590:1 11613:1 11627:1 11637:1 11643:2 11653:2 11659:1 11660:1 11674:2 11675:1 11677:2 11682:1 11686:2 11706:4 11715:1 11749:1 11752:9 11753:1 11789:1 11790:1 11797:1 11819:1 11820:1 11830:1 11831:2 11848:1 11850:1 11852:1 11860:1 11861:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:2 11930:3 11933:6 11958:1 11960:2 11962:5 11963:1 11989:1 11994:1 12006:1 12009:1 12012:3 12020:1 12025:1 12026:2 12029:3 12032:1 12042:1 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:5 12085:1 12097:6 12108:1 12111:1 12132:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:1 12263:1 12265:1 12291:1 12304:3 12306:1 12313:1 12315:1 12321:1 12340:1 12346:1 12359:3 12362:3 12382:1 12411:3 12414:1 12426:1 12433:1 12439:1 12442:1 12526:1 12540:1 12542:1 12543:2 12544:3 12545:2 12560:1 12571:1 12592:1 12593:1 12602:3 12603:4 12608:2 12615:1 12619:2 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:6 12747:1 12753:1 12782:2 12798:1 12806:1 12807:1 12810:2 12824:3 12843:2 12847:2 12872:1 12880:1 12896:1 12899:1 12904:1 12935:1 12950:1 12953:1 12954:2 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13091:6 13100:1 13113:1 13114:1 13116:1 13126:1 13131:14 13136:1 13142:1 13151:2 13153:5 13155:1 13161:1 13180:1 13189:1 13192:1 13195:2 13199:1 13222:2 13246:1 13250:1 13255:1 13256:2 13259:2 13270:2 13283:1 13291:2 13292:1 13315:1 13330:3 13334:1 13339:1 13341:1 13362:1 13393:1 13406:1 13417:1 13450:1 13454:5 13503:1 13504:1 13523:1 13550:6 13556:1 13573:2 13584:1 13588:5 13595:4 13609:1 13611:6 13647:1 13652:1 13663:1 13665:1 13666:1 13684:2 13690:3 13726:1 13732:1 13734:1 13747:6 13754:1 13756:3 13757:1 13772:1 13774:2 13781:1 13786:1 13800:2 13802:1 13807:1 13808:1 13829:1 13830:4 13833:1 13840:1 13847:2 13854:1 13862:1 13865:1 13880:2 13887:5 13909:1 13913:1 13933:3 13937:1 13938:3 13961:1 13973:1 13987:2 14008:1 14076:1 14081:1 14092:1 14116:3 14120:2 14123:4 14124:2 14127:1 14138:1 14146:1 14149:1 14170:3 14186:1 14191:3 14198:2 14201:1 14204:1 14205:1 14233:1 14243:6 14254:1 14277:2 14290:2 14292:1 14304:2 14316:1 14339:7 14343:1 14345:3 14346:1 14352:1 14359:1 14399:1 14401:1 14414:1 14426:3 14445:9 14455:1 14486:1 14489:2 14508:1 14525:1 14530:1 14531:1 14535:1 14560:1 14577:6 14591:1 14602:3 14611:1 14613:1 14624:1 14643:1 14649:1 14651:1 14667:1 14668:1 14669:1 14705:1 14720:1 14730:1 14732:1 14741:1 14751:1 14757:2 14768:2 14780:1 14783:3 14794:1 14795:1 14796:2 14797:7 14800:1 14803:6 14808:1 14812:3 14814:1 14815:1 14825:1 14833:1 14836:1 14861:1 14871:1 14913:1 14914:1 14927:5 14961:2 14971:2 14978:1 14984:2 15003:1 15013:3 15032:1 15037:1 15038:1 15060:1 15084:2 15099:2 15106:1 15109:2 15112:1 15113:1 15126:2 15129:1 15134:4 15137:1 15152:2 15157:1 15166:2 15181:1 15183:1 15253:1 15266:1 15270:1 15278:1 15328:3 15329:1 15332:1 15334:1 15347:1 15349:1 15395:1 15396:1 15408:5 15410:1 15424:1 15425:1 15428:2 15444:1 15449:4 15450:2 15470:2 15483:1 15494:1 15497:1 15510:1 15511:1 15532:6 15535:1 15538:1 15543:1 15549:1 15569:1 15599:1 15638:3 15641:1 15651:1 15655:1 15668:1 15670:2 15681:1 15692:3 15693:1 15698:2 15700:1 15715:1 15727:1 15735:1 15748:1 15761:2 15774:2 15820:2 15849:1 15863:7 15882:1 15886:1 15918:1 15924:2 15938:1 15941:1 15950:4 15951:1 15961:4 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16081:1 16114:2 16118:1 16128:6 16133:2 16140:1 16141:3 16151:1 16160:2 16165:2 16171:1 16172:1 16173:5 16174:2 16176:1 16184:1 16189:1 16228:1 16233:1 16243:1 16266:1 16275:1 16306:7 16312:1 16325:1 16335:1 16339:1 16345:1 16348:1 16359:3 16387:1 16403:6 16404:3 16406:1 16410:1 16452:1 16459:3 16468:1 16472:1 16478:1 16484:3 16488:2 16499:1 16536:1 16552:1 16553:2 16599:1 16607:1 16612:15 16613:1 16618:1 16624:1 16629:4 16635:1 16640:1 16641:1 16649:1 16670:2 16690:3 16693:1 16698:1 16707:1 16716:1 16717:1 16734:1 16741:1 16745:2 16756:2 16760:1 16763:1 16789:1 16791:2 16826:3 16828:1 16829:1 16830:2 16850:1 16885:1 16896:1 16922:1 16944:1 16960:1 16963:1 16966:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:2 17133:1 17156:1 17158:1 17167:1 17177:1 17178:1 17188:1 17212:1 17234:1 17237:2 17245:2 17255:2 17272:1 17279:1 17287:3 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:2 17374:1 17407:2 17411:1 17413:4 17419:1 17436:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:1 17499:1 17506:1 17510:1 17516:2 17535:4 17551:1 17553:1 17564:1 17565:1 17569:2 17584:2 17586:1 17617:1 17625:1 17630:1 17632:1 17639:5 17646:1 17666:1 17668:4 17671:1 17684:1 17690:1 17711:2 17712:2 17735:3 17737:2 17750:1 17754:1 17762:1 17763:2 17777:2 17778:7 17779:1 17787:2 17820:1 17832:1 17844:1 17850:2 17857:2 17921:1 17946:1 17962:1 17968:3 17975:2 17980:2 18000:1 18004:1 18018:1 18025:1 18039:1 18041:1 18043:3 18050:2 18051:1 18053:1 18060:3 18070:3 18071:1 18072:2 18076:1 18106:1 18110:1 18126:5 18127:3 18151:1 18154:2 18185:1 18189:1 18196:7 18210:1 18240:1 18245:1 18252:2 18255:1 18256:1 18259:1 18263:1 18276:1 18281:1 18283:4 18286:1 18288:1 18291:1 18304:1 18323:1 18324:1 18327:1 18344:1 18365:1 18366:3 18395:1 18403:2 18422:1 18424:7 18426:1 18430:4 18436:23 18444:1 18447:1 18451:1 18455:1 18459:1 18476:2 18482:1 18485:1 18486:1 18496:1 18506:1 18516:1 18528:1 18532:1 18537:1 18546:1 18548:1 18549:1 18550:1 18553:1 18569:1 18575:1 18586:1 18591:4 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:2 18698:1 18712:1 18720:1 18723:2 18736:3 18738:1 18740:1 18750:1 18761:1 18774:1 18780:1 18805:1 18812:1 18843:1 18845:1 18867:1 18888:1 18891:2 18905:1 18915:1 18918:1 18928:1 18962:1 18968:2 18969:1 19001:2 19069:4 19081:1 19095:1 19113:1 19125:1 19148:2 19152:1 19153:1 19157:1 19172:2 19191:4 19199:1 19218:1 19225:1 19229:1 19245:2 19251:2 19254:2 19259:1 19275:1 19279:1 19287:3 19291:1 19294:1 19300:1 19304:1713 19308:1 19318:1 19324:1 19367:2 19368:1 19377:3 19402:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:1 19506:1 19521:1 19529:2 19535:6 19542:1 19548:5 19551:2 19552:4 19583:1 19629:6 19633:2 19635:1 19641:1 19642:1 19665:1 19666:20 19675:1 19686:1 19692:7 19716:1 19747:1 19756:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:2 19857:1 19860:1 19868:1 19882:1 19898:2 19908:1 19920:1 19927:1 19928:1 19953:1 19957:1 19964:1 19978:2 19981:2 19982:3 20010:1 20014:1 20018:2 20021:3 20027:1 20033:1 20036:1 20038:1 20043:3 20049:1 20053:1 20058:1 20064:1 20074:5 20078:1 20092:2 20106:2 20108:1 20127:1 20131:10 20147:1 20148:1 20172:6 20173:1 20183:1 20184:1 20188:1 20198:1 20242:1 20247:2 20296:1 20300:1 20313:1 20329:4 20331:1 20336:3 20339:2 20351:1 20353:1 20372:1 20374:3 20375:1 20387:3 20399:1 20429:1 20434:1 20463:1 20468:1 20501:3 20516:1 20528:1 20559:2 20570:1 20571:1 20577:1 20584:2 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:3 20616:1 20620:4 20624:1 20629:4 20641:1 20664:1 20666:1 20681:1 20687:1 20692:2 20705:1 20708:1 20733:1 20754:2 20756:3 20760:1 20783:1 20790:1 20791:4 20805:1 20807:1 20817:2 20828:1 20832:1 20844:1 20848:1 20850:2 20868:1 20875:1 20884:1 20886:1 20901:1 20912:2 20918:1 20920:1 20923:1 20928:2 20932:1 20962:2 20964:2 20980:1 21002:5 21032:1 21057:6 21058:2 21062:2 21068:1 21074:1 21080:1 21120:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21255:3 21258:1 21259:4 21271:1 21290:1 21296:1 21298:1 21299:6 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:2 21407:1 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21475:1 21511:1 21514:1 21526:1 21529:3 21539:1 21546:4 21547:1 21550:1 21552:1 21553:1 21561:1 21574:2 21579:1 21584:1 21588:2 21595:1 21605:1 21613:5 21647:1 21656:2 21658:1 21659:2 21660:1 21673:1 21702:2 21712:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:2 21840:2 21863:6 21872:1 21873:1 21875:1 21894:1 21901:1 21907:2 21952:2 21965:1 21971:1 21976:1 21979:1 21985:1 21989:1 22005:1 22022:2 22045:1 22058:1 22061:1 22078:1 22082:1 22122:1 22149:1 22160:1 22177:1 22194:1 22225:1 22240:1 22241:2 22250:1 22254:2 22256:1 22258:2 22265:1 22272:2 22273:3 22275:1 22282:2 22283:1 22287:1 22289:1 22291:1 22298:1 22325:1 22332:1 22338:1 22346:4 22359:1 22361:1 22363:1 22365:1 22370:2 22371:2 22376:1 22378:1 22383:2 22391:1 22401:1 22408:1 22413:1 22415:9 22419:1 22432:1 22433:2 22436:1 22437:1 22447:1 22455:1 22477:1 22491:1 22504:1 22507:2 22513:1 22519:1 22525:8 22532:1 22539:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22624:1 22625:1 22632:1 22661:1 22665:3 22672:1 22676:1 22678:1 22679:1 22681:1 22682:1 22697:2 22698:3 22716:2 22720:1 22735:1 22752:1 22766:2 22798:1 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:3 22892:3 22897:1 22902:1 22924:1 22933:1 22940:1 22943:1 22947:2 22959:2 22961:1 22975:3 23017:1 23023:1 23029:1 23033:1 23034:1 23052:4 23053:5 23056:3 23059:1 23072:2 23073:1 23096:1 23111:4 23118:1 23124:1 23131:2 23134:1 23142:3 23144:2 23145:3 23154:1 23162:2 23165:1 23174:1 23177:1 23178:3 23185:1 23205:2 23226:1 23229:2 23231:1 23233:1 23241:1 23243:1 23251:3 23260:1 23263:2 23270:1 23291:3 23292:1 23309:2 23315:23 23320:1 23321:2 23323:4 23326:1 23327:2 23329:2 23333:1 23334:1 23336:1 23352:3 23354:1 23361:2 23364:1 23368:2 23384:2 23385:2 23389:1 23400:1 23425:1 23437:1 23440:1 23487:2 23497:1 23501:4 23509:1 23530:2 23535:1 23552:1 23560:1 23594:1 23596:1 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23649:2 23655:2 23663:1 23664:1 23685:1 23702:1 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23828:1 23830:1 23837:2 23844:1 23859:1 23860:1 23869:1 23872:1 23887:1 23888:2 23903:2 23906:1 23926:3 23927:1 23928:1 23944:3 23952:2 23955:2 23977:2 23978:1 23982:1 23984:1 23992:2 23997:1 24066:1 24079:1 24125:1 24129:1 24144:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24196:2 24209:2 24214:2 24215:1 24218:1 24220:1 24228:1 24232:1 24258:2 24270:3 24278:1 24280:2 24282:1 24291:1 24293:1 24309:1 24325:1 24333:1 24336:1 24343:11 24351:1 24376:2 24393:1 24423:1 24424:1 24425:1 24443:1 24488:1 24497:1 24513:1 24515:1 24526:2 24533:1 24543:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:1 24620:5 24622:1 24623:1 24631:1 24638:1 24649:1 24652:1 24661:2 24728:1 24731:1 24746:3 24748:1 24761:1 24762:1 24764:2 24788:1 24791:2 24801:1 24822:1 24839:1 24862:1 24863:1 24902:2 24912:5 24914:1 24923:4 24927:1 24944:1 24955:2 24956:1 24957:1 24964:1 24973:2 24974:1 24995:2 25011:1 25028:3 25030:1 25032:1 25036:1 25060:1 25068:1 25085:1 25087:1 25093:1 25099:3 25100:2 25106:1 25115:1 25127:1 25136:1 25147:1 25148:1 25150:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:1 25220:1 25221:2 25222:1 25224:6 25226:2 25228:4 25229:2 25234:1 25235:2 25236:2 25238:1 25248:2 25249:3 25255:2 25262:2 25268:3 25297:1 25300:2 25301:1 25315:2 25327:1 25337:3 25343:3 25363:1 25369:1 25370:1 25381:3 25393:1 25410:1 25414:1 25415:1 25439:1 25460:1 25463:1 25478:1 25504:3 25530:2 25540:1 25545:4 25565:2 25601:1 25602:1 25616:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25718:1 25752:3 25767:1 25778:1 25781:1 25785:3 25794:2 25828:3 25861:1 25879:2 25887:1 25900:1 25903:4 25909:1 25910:1 25915:1 25922:1 25927:1 25929:1 25931:4 25988:1 26007:1 26023:2 26025:3 26060:10 26069:1 26083:7 26104:1 26112:1 26122:1 26127:1 26138:1 26146:2 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26190:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:5 26270:1 26280:2 26285:2 26288:7 26293:2 26294:4 26304:1 26307:1 26311:1 26317:2 26320:1 26328:1 26329:1 26334:1 26358:1 26363:2 26373:1 26379:4 26387:1 26410:3 26416:2 26420:2 26422:2 26482:1 26494:1 26495:1 26511:1 26519:1 26534:1 26560:1 26563:1 26579:1 26589:1 26590:2 26591:1 26593:2 26614:5 26643:1 26646:1 26648:1 26656:1 26662:1 26698:1 26716:1 26741:1 26754:1 26760:1 26776:1 26805:1 26826:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26893:1 26901:1 26902:1 26907:2 26918:2 26925:1 26939:1 26954:1 26957:2 26983:3 26989:1 26997:1 26998:2 27020:5 27046:1 27047:4 27070:1 27089:1 27091:1 27094:2 27095:1 27107:1 27118:1 27119:1 27127:2 27138:2 27157:2 27174:1 27178:5 27179:1 27212:3 27234:1 27236:1 27239:1 27260:2 27278:1 27299:4 27320:2 27321:1 27322:1 27327:1 27329:1 27330:1 27334:3 27335:1 27341:1 27375:2 27378:1 27381:1 27387:1 27406:1 27415:2 27438:2 27439:1 27454:2 27459:1 27482:1 27484:2 27510:1 27530:2 27535:1 27539:1 27555:1 27574:2 27583:5 27608:2 27613:1 27665:1 27670:1 27686:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:1 27780:1 27781:1 27787:1 27791:1 27792:1 27804:1 27807:1 27822:1 27826:1 27845:1 27873:1 27875:1 27888:1 27897:1 27912:2 27917:1 27920:1 27924:2 27940:4 27957:3 27965:5 27974:1 27990:1 27991:1 27997:1 28011:1 28025:1 28033:1 28043:1 28044:8 28071:1 28083:1 28087:2 28097:1 28098:1 28101:1 28102:1 28109:11 28151:3 28188:2 28189:1 28193:1 28213:2 28218:5 28225:2 28226:2 28242:2 28246:1 28251:2 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:2 28335:2 28337:1 28347:1 28361:1 28372:1 28377:1 28381:1 28384:1 28398:1 28409:1 28414:2 28416:1 28418:1 28420:1 28458:1 28459:1 28529:1 28533:1 28554:4 28557:1 28564:1 28588:1 28589:1 28600:2 28616:4 28619:1 28637:1 28649:1 28672:1 28686:1 28736:1 28755:2 28779:1 28801:1 28825:2 28845:1 28858:1 28860:6 28872:1 28893:1 28896:3 28928:2 28938:1 28958:1 28959:1 28961:1 28978:1 28980:1 28983:1 28992:24 28993:4 28996:5 28998:1 28999:3 29011:1 29034:7 29048:1 29092:1 29100:2 29115:1 29120:1 29131:1 29132:2 29142:3 29146:2 29176:11 29180:2 29184:1 29186:1 29190:1 29210:1 29213:1 29216:1 29221:2 29228:2 29236:1 29238:1 29245:2 29251:1 29262:1 29267:1 29268:2 29278:1 29281:1 29293:1 29295:1 29300:1 29302:1 29307:1 29343:1 29347:1 29362:2 29364:1 29365:1 29387:1 29388:1 29391:1 29405:3 29449:1 29471:1 29473:2 29474:2 29477:1 29498:1 29514:1 29518:1 29522:1 29524:1 29525:1 29529:1 29532:2 29539:1 29548:1 29550:1 29551:1 29566:2 29570:1 29579:1 29587:2 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29712:1 29716:1 29717:1 29718:1 29722:1 29723:2 29736:1 29740:2 29743:1 29749:1 29758:1 29766:1 29767:6 29773:1 29777:1 29780:4 29782:1 29788:1 29801:1 29828:1 29832:1 29839:2 29840:1 29882:2 29890:1 29900:1 29914:3 29918:1 29920:2 29925:1 29927:1 29931:6 29949:1 29969:1 29970:1 30001:2 30012:1 30035:2 30058:2 30081:1 30088:1 30104:1 30108:1 30122:1 30136:1 30150:2 30187:1 30194:7 30206:1 30208:1 30210:1 30231:7 30243:5 30244:1 30250:1 30273:1 30311:1 30320:8 30322:3 30324:2 30326:1 30328:1 30331:3 30332:2 30344:1 30363:2 30367:3 30371:3 30408:1 30421:1 9 11:1 14:1 30:1 43:1 50:2 74:1 79:1 85:1 99:1 103:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 176:1 187:1 189:3 201:1 206:4 236:7 257:1 283:1 303:1 315:2 325:1 327:24 338:2 355:1 356:3 357:4 362:1 366:1 378:1 397:1 419:1 441:2 460:3 478:1 480:1 550:1 558:1 589:1 591:4 592:1 600:1 603:3 625:4 635:2 637:1 638:1 639:1 657:2 671:1 682:2 685:1 691:1 693:1 703:1 724:1 732:1 736:1 747:1 758:1 774:1 788:1 791:1 802:1 804:1 819:1 824:1 833:1 843:1 854:1 856:2 857:1 880:1 883:6 885:3 897:1 899:1 900:1 911:1 914:12 917:1 929:1 933:1 938:3 941:7 946:1 952:1 953:1 959:1 964:3 978:1 985:2 986:2 997:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:1 1060:2 1076:1 1080:2 1084:1 1102:1 1115:2 1126:1 1133:1 1141:1 1142:1 1143:2 1148:1 1156:2 1163:1 1164:2 1172:1 1187:1 1194:1 1201:3 1206:1 1213:1 1230:1 1258:2 1291:1 1292:1 1300:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1393:1 1404:1 1411:2 1441:2 1443:1 1461:1 1464:2 1468:1 1471:5 1474:1 1487:1 1490:2 1491:1 1493:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:2 1614:1 1621:1 1636:1 1639:1 1641:2 1642:3 1650:1 1677:4 1680:1 1700:1 1701:2 1706:3 1712:2 1732:1 1733:1 1751:1 1752:1 1775:1 1785:1 1814:2 1818:1 1827:1 1830:1 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1884:1 1886:1 1908:1 1954:1 1958:12 1965:1 1970:2 1981:1 1986:1 1991:1 1996:1 1997:1 2008:1 2018:8 2019:2 2051:1 2053:1 2057:2 2063:3 2075:1 2088:2 2107:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2186:1 2195:1 2211:1 2213:1 2216:1 2218:4 2219:1 2223:1 2226:1 2232:1 2234:3 2238:1 2239:2 2240:4 2243:1 2255:2 2258:1 2274:1 2276:1 2280:2 2281:2 2284:2 2285:8 2288:4 2291:1 2292:2 2293:4 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:1 2314:1 2316:6 2318:2 2319:7 2331:1 2332:1 2348:1 2369:1 2380:2 2386:1 2393:1 2407:1 2411:1 2418:1 2430:3 2437:3 2438:1 2445:1 2448:1 2453:1 2466:2 2482:3 2493:6 2505:1 2511:1 2515:1 2532:1 2537:1 2561:5 2570:3 2577:1 2595:2 2603:1 2608:2 2615:3 2618:2 2620:1 2623:1 2632:2 2661:2 2666:1 2682:1 2699:1 2701:3 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2740:1 2745:1 2748:1 2761:1 2763:1 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:6 2825:2 2831:2 2841:1 2848:1 2880:1 2882:1 2883:1 2889:1 2890:1 2912:2 2933:3 2935:1 2941:22 2959:4 2975:2 2980:1 2982:1 2995:1 3002:11 3032:1 3036:4 3038:1 3039:1 3061:1 3064:1 3068:1 3082:1 3092:1 3095:1 3146:3 3162:1 3169:1 3176:1 3177:1 3184:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3304:1 3312:4 3325:1 3332:1 3338:1 3339:1 3343:1 3348:1 3361:1 3384:1 3386:3 3416:1 3431:1 3434:10 3481:1 3487:1 3510:2 3544:1 3551:1 3557:2 3561:1 3563:1 3564:2 3568:2 3571:1 3578:1 3581:1 3587:2 3615:1 3619:1 3628:1 3635:2 3640:1 3648:1 3665:1 3670:1 3674:1 3678:2 3681:4 3699:4 3705:2 3706:1 3708:2 3709:2 3712:1 3715:1 3736:2 3741:4 3751:1 3754:1 3773:1 3784:1 3787:1 3791:1 3792:3 3796:1 3800:2 3803:2 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:10 3873:1 3882:1 3888:1 3895:4 3897:1 3903:2 3904:11 3905:1 3906:1 3912:1 3923:1 3924:5 3932:1 3938:1 3955:1 3956:3 3958:1 3967:1 3969:1 3978:1 3981:1 3986:1 3993:1 4000:1 4004:1 4016:1 4019:3 4022:2 4032:1 4045:1 4053:1 4054:1 4058:1 4063:1 4077:4 4084:1 4085:1 4089:2 4093:1 4098:1 4099:2 4100:2 4108:4 4109:3 4114:1 4128:1 4144:1 4153:1 4169:2 4181:1 4187:1 4196:2 4204:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:2 4307:2 4315:1 4316:1 4325:1 4364:1 4378:2 4381:2 4388:1 4405:1 4420:2 4455:2 4474:5 4494:1 4535:1 4546:2 4555:1 4572:1 4598:1 4601:1 4631:1 4665:1 4675:1 4697:1 4719:1 4724:1 4728:2 4741:3 4749:1 4751:1 4754:1 4772:1 4774:1 4788:1 4804:1 4807:8 4843:1 4854:1 4870:1 4875:1 4889:1 4896:1 4903:6 4907:1 4918:1 4921:1 4944:1 4951:1 4954:1 4986:3 5009:1 5019:19 5021:2 5024:1 5041:2 5052:1 5071:1 5078:1 5083:7 5091:1 5093:2 5115:1 5117:1 5131:1 5132:1 5134:1 5135:6 5151:4 5152:4 5153:1 5154:1 5155:1 5159:3 5160:1 5162:1 5163:2 5166:1 5171:1 5173:2 5175:3 5176:1 5178:1 5184:1 5185:1 5187:4 5188:2 5211:1 5242:1 5271:1 5277:2 5279:1 5299:2 5317:1 5321:1 5326:2 5328:2 5336:2 5344:2 5359:1 5367:1 5385:1 5396:2 5404:2 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5512:2 5518:6 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5607:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:2 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:1 5736:1 5758:3 5763:1 5772:1 5786:1 5792:3 5797:1 5808:3 5815:1 5816:1 5849:3 5873:2 5888:1 5897:3 5914:4 5917:1 5921:1 5939:1 5945:1 5959:1 5975:1 5977:1 6007:1 6011:1 6021:1 6028:1 6059:2 6066:1 6097:1 6102:2 6129:1 6152:1 6183:2 6184:1 6205:12 6226:4 6229:1 6231:4 6238:1 6242:1 6247:1 6248:3 6249:2 6257:1 6280:3 6297:1 6301:1 6303:1 6308:1 6325:1 6345:1 6356:1 6380:1 6384:2 6385:1 6390:1 6400:1 6404:2 6426:5 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:1 6488:1 6501:3 6503:1 6505:1 6507:1 6511:1 6515:2 6517:1 6518:2 6519:1 6520:4 6525:4 6526:9 6527:5 6530:1 6539:1 6568:1 6571:1 6591:1 6646:3 6681:2 6699:2 6743:1 6750:1 6763:1 6769:1 6777:1 6797:1 6798:1 6803:1 6814:1 6816:1 6822:1 6844:1 6851:1 6855:1 6897:1 6898:2 6916:1 6919:2 6920:1 6924:1 6929:1 6940:7 6960:2 6968:2 6973:1 6985:1 6987:1 6997:1 7002:1 7019:1 7029:1 7045:2 7047:1 7049:2 7058:2 7086:2 7087:2 7091:3 7100:1 7113:3 7114:2 7128:1 7131:1 7142:1 7147:2 7148:1 7150:2 7154:1 7160:1 7177:1 7212:1 7253:10 7255:1 7273:1 7281:2 7300:1 7302:1 7306:1 7310:1 7312:1 7332:1 7336:1 7337:1 7369:2 7411:2 7416:1 7435:2 7452:1 7479:2 7491:3 7495:1 7500:1 7505:2 7506:1 7509:1 7516:1 7521:1 7527:1 7539:1 7549:4 7554:3 7555:1 7559:1 7579:2 7583:1 7596:2 7597:1 7603:2 7622:1 7627:2 7644:1 7663:1 7672:2 7690:1 7723:1 7725:1 7726:2 7756:2 7757:11 7758:3 7771:2 7784:2 7785:2 7786:1 7812:4 7813:1 7831:50 7836:1 7854:3 7855:11 7857:1 7860:1 7883:2 7908:1 7911:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:2 8035:2 8059:1 8062:3 8087:1 8093:1 8108:1 8112:4 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8223:1 8226:1 8233:1 8250:1 8258:1 8265:2 8266:3 8267:1 8269:1 8285:1 8287:1 8317:1 8319:1 8324:2 8333:1 8338:2 8343:1 8348:2 8357:1 8358:6 8389:2 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8564:1 8566:1 8589:1 8591:1 8599:2 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:3 8638:1 8646:1 8656:1 8664:5 8669:1 8671:1 8701:1 8716:1 8728:1 8736:1 8739:3 8740:5 8743:4 8744:2 8746:1 8748:3 8749:7 8752:2 8753:2 8757:1 8767:1 8768:2 8784:4 8790:1 8792:3 8816:3 8820:1 8822:2 8826:2 8829:2 8834:1 8837:4 8853:1 8892:2 8906:1 8907:1 8930:1 8939:1 8958:1 8968:1 8974:1 8988:1 9017:2 9024:1 9033:2 9041:3 9063:2 9066:1 9073:4 9074:1 9078:2 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9171:1 9177:1 9188:2 9199:4 9202:2 9222:1 9241:3 9252:1 9263:1 9275:1 9276:2 9278:1 9292:1 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:3 9373:1 9387:1 9394:1 9401:2 9411:1 9420:1 9421:1 9459:1 9463:1 9467:7 9469:1 9470:1 9474:2 9477:1 9486:24 9489:1 9490:2 9508:2 9510:1 9523:1 9535:1 9567:1 9572:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:6 9634:1 9659:1 9676:1 9684:3 9702:1 9728:1 9749:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9828:1 9831:1 9844:1 9845:5 9851:1 9861:1 9869:3 9877:2 9886:1 9895:2 9919:2 9949:7 9962:2 9965:1 9966:4 9972:2 9974:1 9986:1 9991:1 9993:1 9995:1 10004:1 10005:1 10035:3 10053:1 10065:1 10089:1 10093:1 10108:7 10113:1 10120:1 10126:1 10135:3 10142:1 10143:2 10145:1 10147:2 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10186:1 10196:3 10198:1 10202:2 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10308:1 10309:1 10329:1 10336:1 10345:1 10368:1 10397:1 10399:1 10401:1 10402:1 10418:2 10443:1 10466:1 10479:1 10481:1 10489:1 10520:1 10525:1 10550:2 10570:1 10588:1 10608:2 10609:1 10625:3 10630:2 10638:2 10653:1 10655:1 10690:1 10699:1 10712:1 10722:1 10724:1 10764:1 10767:1 10769:1 10788:1 10790:2 10794:2 10800:4 10809:1 10810:1 10811:1 10813:1 10823:1 10824:2 10841:2 10844:3 10846:1 10854:1 10865:2 10866:1 10867:1 10876:3 10878:2 10886:1 10888:1 10890:2 10892:1 10895:1 10916:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:3 10990:11 11055:1 11056:1 11065:1 11067:1 11079:1 11112:2 11117:1 11159:1 11180:1 11193:1 11211:1 11224:1 11236:1 11254:3 11257:2 11260:2 11262:2 11269:2 11283:2 11291:1 11298:1 11299:1 11302:1 11312:1 11323:1 11347:6 11351:1 11372:4 11377:1 11378:1 11381:1 11433:1 11434:1 11435:2 11437:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11501:1 11516:1 11544:1 11554:1 11557:1 11566:1 11579:1 11583:4 11590:1 11602:1 11613:1 11627:1 11637:1 11643:2 11653:2 11659:1 11660:1 11674:2 11675:1 11677:2 11682:1 11686:2 11706:4 11715:1 11749:1 11752:9 11753:1 11789:1 11790:1 11797:1 11819:1 11820:1 11830:1 11831:2 11848:1 11850:1 11852:1 11860:1 11861:1 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:2 11930:3 11933:6 11958:1 11960:2 11962:5 11963:1 11989:1 11994:1 12006:1 12009:1 12012:3 12020:1 12025:1 12026:2 12029:3 12032:1 12042:1 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:6 12085:1 12097:7 12108:1 12111:1 12132:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:1 12263:1 12265:1 12291:1 12304:3 12306:1 12313:1 12315:1 12321:1 12340:1 12346:1 12359:3 12362:3 12382:1 12411:3 12414:1 12426:1 12433:1 12439:1 12442:1 12526:1 12540:1 12542:1 12543:2 12544:3 12545:2 12560:1 12571:1 12592:1 12593:1 12602:3 12603:4 12608:2 12615:1 12619:2 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:6 12747:1 12753:1 12782:2 12798:1 12806:1 12807:1 12810:2 12824:3 12843:2 12847:2 12872:1 12880:1 12896:1 12899:2 12904:1 12935:1 12950:1 12953:1 12954:3 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13091:7 13100:1 13113:1 13114:1 13116:1 13126:1 13131:15 13136:1 13142:1 13151:2 13153:5 13155:1 13161:1 13180:1 13189:1 13192:1 13195:2 13199:2 13222:2 13246:1 13250:1 13255:1 13256:2 13259:2 13270:2 13283:1 13291:2 13292:1 13315:1 13330:3 13334:1 13339:1 13341:1 13362:1 13393:1 13406:1 13417:1 13450:1 13454:6 13503:1 13504:1 13523:1 13550:7 13556:1 13573:2 13584:1 13588:5 13595:4 13609:1 13611:6 13632:1 13633:1 13647:1 13652:1 13663:1 13665:1 13666:1 13684:2 13690:4 13715:1 13726:1 13732:1 13734:1 13747:6 13754:1 13756:3 13757:1 13772:1 13774:2 13781:1 13786:1 13800:2 13802:1 13807:1 13808:1 13829:1 13830:4 13833:1 13840:1 13847:2 13854:1 13862:1 13865:1 13880:2 13887:7 13909:1 13913:1 13933:4 13937:1 13938:3 13961:1 13973:1 13987:2 14008:1 14076:1 14081:1 14092:1 14116:3 14120:2 14123:4 14124:2 14127:1 14138:1 14146:1 14149:1 14170:3 14186:1 14191:3 14198:2 14201:1 14204:1 14205:1 14233:1 14243:6 14254:1 14277:2 14290:2 14292:1 14304:2 14316:1 14339:7 14343:1 14345:3 14346:1 14352:1 14359:1 14399:1 14401:1 14414:1 14426:3 14445:9 14455:1 14486:1 14489:2 14508:1 14525:1 14530:1 14531:1 14535:1 14560:1 14577:6 14591:1 14602:3 14611:1 14613:1 14624:1 14643:1 14649:1 14651:1 14667:1 14668:1 14669:1 14705:1 14720:1 14730:1 14732:1 14741:1 14751:1 14757:2 14768:2 14780:1 14783:3 14794:1 14795:1 14796:2 14797:8 14800:1 14803:6 14808:1 14812:3 14814:1 14815:1 14825:1 14833:1 14836:1 14861:1 14871:1 14913:1 14914:1 14927:5 14932:1 14961:2 14971:2 14978:1 14984:3 15003:1 15012:1 15013:3 15032:1 15037:2 15038:1 15060:1 15084:2 15099:2 15106:2 15109:2 15112:1 15113:1 15126:2 15129:1 15134:4 15137:1 15152:2 15157:1 15166:2 15181:1 15183:1 15253:1 15266:1 15270:1 15278:1 15303:1 15328:3 15329:1 15332:1 15334:1 15347:1 15349:1 15395:1 15396:1 15408:6 15410:1 15424:1 15425:1 15428:2 15444:1 15449:4 15450:3 15470:2 15483:1 15494:1 15497:1 15510:1 15511:1 15532:7 15535:1 15538:1 15543:1 15549:1 15569:1 15599:1 15624:1 15638:3 15641:1 15651:1 15655:1 15668:1 15670:2 15681:1 15683:1 15692:3 15693:1 15698:2 15700:1 15715:1 15727:1 15735:1 15748:1 15761:2 15774:2 15789:1 15820:2 15849:1 15863:8 15882:1 15886:2 15918:1 15924:2 15938:1 15941:1 15950:4 15951:1 15961:4 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16081:1 16114:2 16118:1 16128:7 16133:3 16140:1 16141:3 16151:1 16160:2 16165:2 16171:1 16172:1 16173:5 16174:2 16176:1 16184:1 16189:1 16228:1 16233:1 16243:1 16266:1 16275:1 16306:7 16312:1 16325:1 16335:2 16339:1 16345:1 16348:1 16359:3 16387:2 16403:6 16404:3 16406:1 16410:1 16452:1 16459:3 16468:1 16472:1 16478:1 16484:3 16488:2 16499:1 16536:1 16552:1 16553:2 16599:1 16607:1 16612:15 16613:1 16618:1 16624:1 16629:4 16635:1 16640:1 16641:1 16649:1 16652:1 16663:1 16670:2 16690:3 16693:1 16698:1 16707:1 16716:1 16717:1 16734:1 16740:1 16741:1 16745:2 16756:2 16760:1 16763:1 16789:1 16791:2 16826:3 16828:1 16829:1 16830:2 16850:1 16885:1 16896:1 16922:1 16944:1 16960:1 16963:1 16966:2 16990:1 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:2 17133:1 17156:1 17158:1 17167:1 17177:1 17178:1 17188:1 17212:1 17216:1 17234:1 17237:2 17245:2 17255:2 17272:1 17279:1 17287:3 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:2 17374:1 17407:3 17411:1 17413:4 17419:1 17436:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:1 17499:1 17506:1 17510:1 17516:2 17535:4 17551:1 17553:1 17564:1 17565:1 17569:2 17584:2 17586:1 17613:1 17617:1 17625:1 17630:1 17632:1 17639:5 17646:1 17666:1 17668:4 17671:1 17684:1 17690:1 17711:2 17712:2 17735:3 17737:2 17750:1 17754:1 17761:1 17762:1 17763:2 17777:2 17778:7 17779:1 17787:2 17820:1 17832:1 17844:1 17850:2 17857:2 17921:1 17946:1 17962:1 17968:3 17975:2 17980:2 18000:1 18004:1 18018:1 18025:1 18039:1 18041:1 18043:3 18050:2 18051:1 18053:1 18060:3 18070:3 18071:1 18072:2 18076:1 18106:1 18110:1 18126:5 18127:3 18151:1 18154:2 18185:1 18189:1 18196:7 18210:1 18240:1 18245:1 18252:2 18255:1 18256:1 18259:1 18263:1 18276:1 18281:1 18283:5 18286:1 18288:1 18291:1 18304:1 18323:1 18324:1 18327:1 18344:1 18365:1 18366:3 18395:1 18403:2 18422:1 18424:8 18426:1 18430:4 18436:24 18441:1 18444:1 18447:1 18451:1 18455:1 18459:1 18476:3 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18528:1 18532:1 18537:1 18546:1 18548:1 18549:1 18550:1 18553:1 18569:1 18575:1 18586:1 18591:4 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:2 18698:1 18712:1 18720:1 18723:2 18736:3 18738:1 18740:1 18750:1 18761:1 18774:1 18780:1 18805:1 18812:1 18843:1 18845:1 18867:1 18888:1 18891:2 18905:1 18915:1 18918:1 18928:1 18962:1 18968:2 18969:1 19001:2 19069:4 19081:1 19095:1 19113:1 19125:1 19148:2 19152:1 19153:1 19157:1 19172:2 19191:4 19199:1 19218:1 19225:1 19229:1 19245:2 19251:2 19254:2 19259:1 19275:1 19279:1 19287:3 19291:1 19294:1 19300:1 19304:1827 19308:1 19318:1 19324:1 19367:2 19368:1 19377:3 19402:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:1 19506:1 19521:1 19529:3 19535:6 19542:1 19548:5 19551:2 19552:4 19583:1 19629:6 19633:2 19635:2 19641:1 19642:1 19665:1 19666:24 19675:1 19686:1 19692:7 19716:1 19747:1 19756:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:3 19857:1 19860:1 19868:1 19882:1 19898:2 19908:1 19920:1 19927:1 19928:1 19953:1 19957:1 19964:1 19978:2 19981:2 19982:3 20010:1 20014:1 20018:2 20021:3 20027:1 20033:1 20036:1 20038:1 20043:3 20049:1 20053:1 20058:1 20064:1 20074:5 20078:1 20092:2 20106:2 20108:1 20127:1 20131:10 20147:1 20148:1 20172:6 20173:1 20183:1 20184:1 20188:1 20198:1 20242:1 20247:3 20296:1 20300:1 20313:1 20329:4 20331:1 20336:3 20339:2 20351:1 20353:1 20372:1 20374:3 20375:1 20387:3 20399:1 20429:1 20434:1 20463:1 20468:1 20501:3 20516:1 20528:1 20559:2 20570:1 20571:1 20577:1 20584:2 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:3 20616:1 20620:4 20624:1 20629:4 20641:1 20657:1 20664:1 20666:1 20681:1 20687:1 20692:2 20705:1 20708:1 20733:1 20754:2 20756:3 20760:1 20783:1 20790:1 20791:4 20805:1 20807:1 20817:2 20828:1 20832:1 20844:1 20848:1 20850:2 20868:1 20875:1 20884:1 20886:1 20901:1 20912:3 20918:1 20920:1 20923:1 20928:2 20932:1 20962:2 20964:2 20980:1 21002:5 21032:1 21057:6 21058:3 21062:2 21068:1 21074:1 21080:1 21120:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21251:1 21255:3 21258:1 21259:4 21271:1 21290:1 21296:1 21298:1 21299:6 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:2 21407:1 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21475:1 21511:1 21514:1 21515:1 21526:1 21529:3 21539:1 21546:4 21547:1 21550:1 21552:1 21553:1 21561:1 21574:2 21579:1 21584:1 21588:2 21595:1 21605:1 21613:5 21647:1 21656:2 21658:1 21659:2 21660:1 21673:1 21702:2 21712:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:2 21840:2 21863:6 21872:1 21873:1 21875:1 21894:1 21901:1 21907:2 21952:2 21965:1 21971:1 21976:1 21979:2 21985:1 21989:1 22005:1 22022:2 22045:1 22058:1 22061:1 22076:1 22078:1 22082:1 22122:1 22149:1 22160:1 22176:1 22177:1 22194:1 22225:1 22240:1 22241:2 22243:1 22250:1 22254:2 22256:1 22258:2 22265:1 22272:2 22273:3 22275:1 22282:2 22283:1 22287:1 22289:1 22291:1 22298:1 22325:1 22332:1 22338:1 22346:4 22359:1 22361:1 22363:1 22365:1 22370:2 22371:2 22376:1 22378:1 22383:2 22391:1 22401:1 22408:1 22413:1 22415:9 22419:1 22432:1 22433:2 22436:1 22437:1 22447:1 22455:1 22477:1 22491:1 22504:1 22507:2 22513:1 22519:1 22525:8 22532:1 22539:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22624:1 22625:1 22632:1 22661:1 22665:3 22672:1 22676:1 22678:1 22679:1 22681:1 22682:1 22688:1 22697:2 22698:3 22716:2 22720:1 22735:1 22752:1 22766:2 22798:1 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:3 22892:3 22897:1 22902:1 22924:1 22933:1 22940:1 22943:1 22947:2 22959:2 22961:1 22975:3 23017:1 23023:1 23029:1 23033:1 23034:1 23052:4 23053:5 23056:3 23059:1 23072:2 23073:1 23089:1 23096:1 23109:1 23111:4 23118:1 23124:1 23131:2 23134:1 23142:3 23144:2 23145:3 23154:1 23162:2 23165:1 23173:1 23174:1 23177:1 23178:3 23185:1 23205:2 23226:1 23229:2 23231:1 23233:1 23241:1 23243:1 23251:3 23260:1 23263:2 23270:1 23291:3 23292:1 23309:2 23315:24 23320:1 23321:2 23323:4 23326:1 23327:2 23329:2 23333:1 23334:1 23336:1 23352:3 23354:1 23361:2 23364:1 23368:2 23384:2 23385:2 23389:1 23400:1 23425:1 23437:1 23440:1 23487:2 23497:1 23501:4 23509:1 23530:2 23535:1 23552:1 23560:1 23594:1 23596:2 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:2 23655:2 23663:1 23664:1 23685:1 23702:1 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23828:1 23830:1 23837:2 23844:1 23859:1 23860:1 23869:1 23872:1 23887:1 23888:2 23894:1 23903:2 23906:1 23926:3 23927:1 23928:1 23944:3 23952:2 23955:2 23977:2 23978:1 23982:1 23984:1 23992:2 23997:1 24066:1 24079:1 24125:1 24129:1 24144:1 24166:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24196:2 24209:2 24214:2 24215:1 24218:1 24220:1 24228:1 24232:1 24258:2 24270:3 24278:1 24280:2 24282:1 24291:1 24293:1 24309:1 24325:1 24333:1 24336:1 24343:11 24351:1 24376:2 24393:1 24423:1 24424:1 24425:1 24443:1 24488:1 24497:1 24513:1 24515:1 24526:2 24533:2 24543:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:1 24620:6 24622:1 24623:1 24631:1 24638:1 24649:1 24652:1 24661:2 24728:1 24731:1 24746:3 24748:1 24761:1 24762:1 24764:2 24774:1 24788:1 24791:2 24801:1 24822:1 24839:1 24862:1 24863:1 24902:2 24912:5 24914:1 24923:4 24927:1 24944:1 24955:2 24956:1 24957:1 24964:1 24973:2 24974:1 24995:2 25011:1 25028:3 25030:2 25032:1 25036:1 25060:1 25068:1 25085:1 25087:1 25093:1 25099:3 25100:2 25106:1 25115:1 25117:1 25127:1 25136:1 25147:1 25148:1 25150:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:1 25220:1 25221:2 25222:1 25224:6 25226:3 25228:4 25229:2 25234:1 25235:2 25236:2 25238:1 25248:2 25249:3 25255:2 25262:2 25268:4 25297:1 25300:2 25301:1 25315:2 25327:1 25337:3 25343:3 25363:2 25369:1 25370:1 25381:3 25393:1 25410:1 25414:1 25415:2 25439:1 25460:1 25463:1 25478:1 25504:3 25530:2 25540:1 25545:4 25565:2 25601:1 25602:1 25604:1 25616:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25718:1 25752:3 25767:1 25778:1 25781:1 25785:3 25794:2 25828:3 25861:1 25879:2 25887:1 25900:1 25903:4 25909:1 25910:1 25915:1 25922:1 25927:1 25929:1 25931:4 25988:1 26007:1 26011:2 26023:2 26025:3 26060:10 26069:1 26083:9 26104:1 26112:1 26122:1 26127:1 26138:1 26146:2 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:5 26270:1 26280:2 26285:2 26288:7 26293:2 26294:4 26304:1 26307:1 26311:1 26317:2 26320:1 26328:1 26329:1 26334:1 26358:1 26363:2 26373:1 26379:4 26387:1 26410:3 26416:2 26420:2 26422:2 26482:1 26494:1 26495:1 26511:1 26519:1 26523:1 26534:1 26560:1 26563:1 26579:1 26589:1 26590:2 26591:1 26593:2 26614:5 26643:1 26646:1 26648:1 26656:1 26662:1 26698:1 26716:1 26741:1 26754:1 26760:1 26768:1 26776:1 26805:1 26826:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26893:1 26901:1 26902:1 26907:2 26918:2 26925:1 26939:1 26954:1 26957:2 26983:3 26989:1 26997:1 26998:2 27020:5 27046:1 27047:4 27070:1 27089:1 27091:1 27094:2 27095:1 27107:1 27118:1 27119:1 27127:2 27138:2 27157:2 27174:1 27178:5 27179:1 27212:3 27234:1 27236:1 27239:1 27260:2 27278:1 27299:4 27320:2 27321:1 27322:1 27327:1 27329:1 27330:1 27334:3 27335:1 27341:1 27375:2 27378:1 27381:1 27387:1 27406:1 27415:2 27438:2 27439:1 27453:1 27454:2 27459:1 27482:1 27484:2 27510:1 27530:2 27535:1 27539:1 27555:1 27574:3 27583:5 27608:2 27613:1 27665:1 27670:1 27686:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:1 27780:1 27781:1 27787:1 27791:1 27792:1 27804:1 27807:1 27822:1 27826:1 27845:1 27873:1 27875:1 27888:1 27897:1 27912:2 27917:1 27920:1 27924:2 27940:4 27957:4 27965:5 27974:1 27990:1 27991:1 27997:1 28011:1 28025:1 28033:1 28043:1 28044:10 28071:1 28083:1 28087:2 28097:1 28098:1 28101:1 28102:1 28109:11 28151:3 28188:2 28189:1 28193:1 28213:2 28218:5 28225:2 28226:2 28242:2 28246:1 28251:2 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:2 28335:2 28337:1 28347:1 28361:1 28372:1 28377:1 28381:1 28384:1 28398:1 28409:1 28414:2 28416:1 28418:1 28420:1 28458:1 28459:1 28529:1 28533:1 28554:4 28557:1 28564:1 28588:1 28589:1 28600:2 28616:4 28619:1 28637:1 28649:1 28672:1 28681:1 28686:1 28736:1 28755:2 28779:1 28801:1 28825:3 28845:1 28858:1 28860:6 28872:1 28893:1 28896:3 28919:1 28928:2 28938:1 28958:1 28959:1 28961:1 28978:1 28980:1 28983:1 28992:24 28993:4 28996:5 28998:1 28999:3 29011:1 29034:7 29048:1 29092:1 29100:2 29115:1 29120:1 29131:1 29132:2 29142:3 29146:2 29176:11 29180:2 29184:1 29186:1 29190:1 29210:1 29213:1 29216:1 29221:2 29228:2 29236:1 29238:1 29245:2 29251:1 29262:1 29267:1 29268:2 29278:1 29281:1 29293:1 29295:1 29300:1 29302:1 29307:1 29343:1 29347:1 29362:2 29364:1 29365:1 29387:1 29388:1 29391:1 29405:3 29449:1 29471:1 29473:2 29474:2 29477:1 29498:1 29514:1 29518:1 29522:1 29524:1 29525:1 29529:1 29532:2 29539:1 29548:1 29550:1 29551:1 29566:2 29570:1 29579:1 29587:2 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29712:1 29716:1 29717:1 29718:1 29722:1 29723:2 29736:1 29740:2 29743:1 29749:1 29758:1 29766:1 29767:6 29773:1 29777:1 29780:5 29782:1 29788:1 29801:1 29828:1 29832:1 29839:2 29840:1 29882:3 29890:1 29900:1 29914:3 29918:1 29920:2 29925:1 29927:1 29931:6 29949:1 29969:1 29970:1 30001:2 30011:1 30012:1 30035:2 30058:2 30081:1 30088:1 30104:1 30108:1 30113:1 30122:1 30136:1 30150:2 30187:1 30194:7 30206:1 30208:1 30210:1 30231:7 30243:5 30244:1 30250:1 30273:1 30311:1 30320:8 30322:3 30324:2 30326:1 30328:1 30331:3 30332:2 30344:1 30353:1 30362:1 30363:2 30367:3 30371:3 30408:1 30421:1 9 11:1 14:1 30:1 43:1 50:2 74:1 79:1 85:1 99:1 103:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 176:1 187:1 189:3 201:1 206:4 236:7 257:1 283:1 303:1 315:2 325:1 327:26 338:2 355:1 356:3 357:4 362:1 366:1 378:1 397:1 419:1 441:2 460:3 478:1 480:1 550:1 558:1 589:1 591:4 592:1 600:2 603:3 625:4 635:2 637:1 638:1 639:1 657:2 671:1 682:2 685:1 691:1 693:1 703:1 724:1 732:1 736:1 747:1 758:1 774:1 788:1 791:1 802:1 804:1 819:1 824:1 833:1 843:1 854:1 856:2 857:1 880:1 883:7 885:3 897:1 899:2 900:1 911:1 914:12 917:1 929:1 933:1 938:3 941:7 946:1 952:1 953:1 959:1 964:3 978:1 985:2 986:2 997:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:1 1060:2 1076:1 1080:2 1084:1 1102:1 1115:2 1126:1 1133:1 1141:1 1142:1 1143:2 1148:1 1156:3 1163:1 1164:2 1172:1 1187:1 1194:1 1201:3 1206:1 1213:1 1230:1 1258:2 1291:1 1292:1 1300:1 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1393:1 1404:1 1411:2 1441:2 1443:1 1461:1 1464:2 1468:2 1471:5 1474:1 1487:1 1490:2 1491:1 1493:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:3 1614:1 1621:1 1636:1 1639:1 1641:2 1642:3 1650:1 1677:4 1680:1 1700:1 1701:3 1706:4 1712:2 1732:1 1733:1 1751:1 1752:1 1775:1 1785:1 1814:2 1818:1 1827:1 1830:1 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1884:1 1886:1 1908:1 1954:1 1958:14 1965:1 1970:2 1981:1 1986:1 1991:1 1996:1 1997:1 2008:1 2018:8 2019:2 2051:1 2053:1 2057:2 2063:3 2075:1 2088:2 2107:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2186:1 2195:1 2211:1 2213:1 2216:1 2218:4 2219:1 2223:1 2226:1 2232:1 2234:3 2238:1 2239:2 2240:4 2243:1 2251:1 2255:2 2258:1 2274:1 2276:1 2280:2 2281:2 2284:2 2285:8 2288:4 2291:1 2292:2 2293:4 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:1 2314:1 2316:6 2318:2 2319:7 2331:1 2332:1 2348:1 2369:1 2380:2 2386:1 2393:1 2407:1 2411:1 2418:1 2430:3 2437:3 2438:1 2445:1 2448:1 2453:1 2466:2 2482:3 2493:6 2505:1 2511:1 2515:1 2532:1 2537:1 2561:5 2570:3 2577:1 2595:2 2603:1 2608:2 2615:3 2618:2 2620:1 2623:1 2632:2 2661:2 2666:1 2682:1 2699:1 2701:3 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2740:1 2745:1 2748:1 2761:1 2763:1 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:7 2825:2 2831:2 2841:1 2848:1 2880:1 2882:1 2883:1 2889:1 2890:1 2912:2 2933:3 2935:1 2941:22 2959:4 2975:2 2980:1 2982:1 2995:1 3002:11 3032:1 3036:4 3038:1 3039:1 3061:1 3064:1 3068:1 3082:1 3092:1 3095:1 3097:1 3146:3 3162:1 3169:1 3176:1 3177:1 3184:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3304:1 3312:4 3325:1 3332:1 3338:1 3339:1 3343:1 3348:1 3361:1 3384:1 3386:3 3416:1 3431:1 3434:12 3481:1 3487:1 3510:2 3544:1 3551:1 3557:2 3561:1 3563:1 3564:2 3568:2 3571:1 3578:1 3581:1 3587:2 3615:1 3619:1 3628:1 3635:2 3640:1 3648:1 3665:1 3670:1 3674:1 3678:2 3681:4 3699:4 3705:2 3706:1 3708:2 3709:2 3712:1 3715:1 3736:2 3741:4 3751:1 3754:1 3773:1 3784:1 3787:1 3791:1 3792:3 3796:1 3800:2 3803:2 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:10 3873:1 3882:1 3888:1 3895:4 3897:1 3903:2 3904:11 3905:1 3906:1 3912:1 3923:1 3924:5 3932:1 3938:1 3955:1 3956:3 3958:1 3967:1 3969:1 3978:1 3981:1 3986:1 3992:1 3993:1 4000:1 4004:1 4016:1 4019:3 4022:2 4032:1 4045:1 4047:1 4053:1 4054:1 4058:1 4063:1 4077:4 4084:1 4085:1 4089:2 4093:1 4098:1 4099:2 4100:2 4108:4 4109:3 4114:1 4128:1 4144:1 4153:1 4165:1 4169:2 4181:1 4187:1 4196:2 4197:1 4204:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:2 4307:2 4315:1 4316:1 4321:1 4325:1 4364:1 4378:2 4381:2 4388:1 4405:1 4420:2 4455:2 4474:5 4494:1 4535:1 4546:2 4555:1 4572:1 4598:1 4601:1 4631:1 4661:1 4665:1 4675:1 4697:1 4699:2 4719:1 4724:1 4728:2 4741:3 4749:1 4751:1 4754:1 4772:1 4774:1 4788:1 4804:1 4807:8 4843:1 4854:1 4870:1 4875:1 4889:1 4896:1 4903:7 4907:1 4918:1 4921:1 4944:1 4951:1 4954:1 4986:3 5009:1 5019:19 5021:2 5024:1 5041:2 5052:1 5071:1 5078:2 5083:7 5091:1 5093:2 5115:1 5117:1 5131:1 5132:1 5134:1 5135:6 5151:4 5152:4 5153:1 5154:1 5155:1 5157:1 5159:3 5160:1 5162:1 5163:2 5166:1 5171:1 5173:2 5175:3 5176:1 5178:1 5184:1 5185:1 5187:4 5188:2 5211:1 5242:1 5271:1 5277:2 5279:1 5299:2 5317:1 5321:1 5326:2 5328:2 5336:2 5344:2 5359:1 5367:1 5385:1 5396:2 5404:2 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5512:2 5518:6 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5607:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:2 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:2 5736:1 5758:3 5763:1 5772:1 5786:1 5792:3 5797:1 5808:3 5815:1 5816:1 5849:3 5873:2 5888:1 5897:3 5914:4 5917:1 5921:1 5939:1 5945:1 5959:1 5975:1 5977:1 6007:1 6011:1 6021:2 6028:1 6059:2 6066:1 6097:1 6102:2 6129:1 6152:1 6183:2 6184:1 6205:13 6226:4 6229:1 6231:4 6238:1 6242:1 6247:1 6248:3 6249:2 6257:1 6280:3 6297:1 6301:1 6303:1 6308:1 6325:1 6345:1 6356:1 6380:2 6384:2 6385:1 6390:1 6400:1 6404:2 6426:5 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:1 6488:1 6501:3 6503:1 6505:1 6507:1 6511:1 6515:2 6517:1 6518:2 6519:1 6520:4 6525:4 6526:9 6527:5 6530:1 6539:1 6568:1 6571:1 6591:1 6646:3 6681:2 6699:2 6743:1 6750:1 6763:1 6769:1 6777:1 6797:1 6798:1 6803:1 6814:1 6816:1 6822:1 6844:1 6851:1 6855:1 6897:1 6898:2 6916:1 6919:2 6920:1 6924:1 6929:1 6940:7 6960:2 6968:2 6973:1 6985:1 6987:1 6997:1 7002:1 7019:1 7029:1 7045:2 7047:1 7049:2 7058:2 7086:2 7087:2 7091:3 7100:1 7113:3 7114:2 7128:1 7131:1 7142:1 7147:2 7148:1 7150:2 7154:1 7160:1 7177:1 7212:1 7253:10 7255:1 7273:1 7281:2 7300:1 7302:1 7306:1 7310:1 7312:1 7332:1 7336:1 7337:1 7369:2 7411:2 7416:1 7435:2 7452:1 7479:2 7491:3 7495:1 7500:1 7505:2 7506:1 7509:1 7516:1 7521:1 7527:1 7539:1 7549:4 7554:3 7555:1 7559:1 7579:2 7583:1 7596:2 7597:1 7603:2 7622:1 7627:2 7644:1 7663:1 7672:2 7690:1 7723:1 7725:1 7726:2 7756:2 7757:11 7758:3 7771:2 7784:2 7785:3 7786:1 7812:4 7813:1 7831:50 7836:1 7854:3 7855:11 7857:1 7860:1 7883:2 7908:1 7911:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:2 8035:2 8059:1 8062:3 8087:1 8093:1 8108:1 8112:4 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8223:1 8226:1 8233:1 8250:1 8258:1 8265:2 8266:3 8267:1 8269:1 8285:1 8287:1 8317:1 8319:1 8324:2 8333:2 8338:2 8343:1 8348:2 8357:1 8358:6 8389:2 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8564:1 8566:1 8589:1 8591:1 8599:2 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:3 8638:1 8646:1 8656:1 8664:5 8669:1 8671:1 8701:1 8716:1 8728:1 8736:1 8739:3 8740:5 8743:4 8744:2 8746:1 8748:3 8749:8 8752:2 8753:2 8757:1 8767:1 8768:2 8784:4 8790:1 8792:3 8816:3 8820:1 8822:2 8826:2 8829:2 8834:1 8837:4 8853:1 8892:2 8906:1 8907:1 8930:1 8939:1 8958:1 8968:1 8974:1 8988:1 9017:2 9024:1 9033:2 9041:3 9063:2 9066:1 9073:4 9074:1 9078:2 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9171:1 9177:1 9188:2 9199:4 9202:2 9220:1 9222:1 9241:3 9252:1 9263:1 9275:1 9276:2 9278:1 9292:1 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:3 9373:1 9387:1 9394:1 9401:2 9411:1 9420:2 9421:1 9459:1 9463:1 9467:7 9469:1 9470:1 9474:2 9477:1 9486:26 9489:1 9490:2 9508:2 9510:1 9523:1 9535:1 9567:1 9572:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:6 9634:1 9659:1 9676:1 9684:3 9702:1 9728:1 9749:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9828:1 9831:1 9844:1 9845:5 9851:1 9861:1 9869:3 9877:2 9886:1 9895:2 9919:2 9949:7 9962:2 9965:1 9966:4 9972:2 9974:1 9986:1 9991:1 9993:1 9995:1 10004:1 10005:1 10035:3 10053:1 10065:1 10089:2 10093:1 10108:7 10113:1 10120:1 10126:1 10135:3 10142:1 10143:2 10145:1 10147:2 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10186:1 10196:3 10198:1 10202:2 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10308:1 10309:1 10329:1 10336:1 10345:1 10368:1 10397:1 10399:1 10401:1 10402:1 10418:2 10443:1 10466:1 10479:1 10481:1 10489:1 10520:1 10525:2 10550:2 10570:1 10588:1 10608:2 10609:1 10625:3 10630:2 10638:2 10653:1 10655:1 10690:1 10699:1 10712:1 10722:1 10724:1 10764:1 10767:1 10769:1 10788:1 10790:2 10794:2 10800:4 10809:1 10810:1 10811:1 10813:1 10823:1 10824:2 10841:3 10844:3 10846:1 10854:1 10865:2 10866:1 10867:1 10876:3 10878:2 10886:2 10888:1 10890:2 10892:1 10895:1 10916:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:3 10990:11 11055:1 11056:1 11065:1 11067:1 11079:1 11112:2 11117:1 11159:1 11180:1 11193:1 11211:1 11224:1 11236:1 11254:3 11257:2 11260:2 11262:2 11269:2 11283:2 11291:1 11298:1 11299:1 11302:1 11312:1 11323:1 11347:6 11351:1 11372:4 11377:1 11378:1 11381:1 11433:1 11434:2 11435:2 11437:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11501:1 11507:1 11516:1 11544:1 11554:1 11557:1 11566:1 11579:1 11583:5 11590:1 11602:1 11613:1 11616:1 11627:1 11637:1 11643:2 11653:2 11659:1 11660:1 11674:2 11675:1 11677:2 11682:1 11686:2 11706:4 11715:1 11749:1 11752:9 11753:1 11789:1 11790:1 11797:1 11819:1 11820:1 11830:1 11831:2 11848:1 11850:1 11852:1 11860:1 11861:1 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:2 11930:3 11933:7 11958:1 11960:2 11962:6 11963:1 11989:1 11994:1 12006:1 12009:1 12012:3 12020:1 12025:1 12026:2 12029:3 12032:1 12042:1 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:7 12085:1 12097:8 12108:1 12111:1 12127:1 12132:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:1 12263:1 12265:1 12291:1 12304:3 12306:1 12313:1 12315:1 12321:1 12340:1 12346:1 12359:3 12362:3 12382:1 12411:3 12414:1 12426:1 12433:1 12439:1 12442:1 12526:1 12540:1 12542:1 12543:2 12544:3 12545:2 12560:1 12571:1 12592:1 12593:1 12602:3 12603:5 12608:2 12615:1 12619:2 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:6 12747:1 12753:1 12782:2 12798:1 12806:1 12807:1 12810:2 12824:3 12843:2 12847:2 12872:1 12880:1 12896:1 12899:2 12904:2 12935:1 12950:1 12953:1 12954:3 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13091:8 13100:1 13113:1 13114:1 13116:1 13126:1 13131:15 13136:1 13142:1 13151:2 13153:5 13155:1 13161:1 13180:1 13189:1 13192:1 13195:2 13199:2 13222:2 13246:1 13250:1 13255:1 13256:2 13259:2 13270:2 13283:1 13285:1 13291:2 13292:1 13315:1 13330:3 13334:1 13339:1 13341:1 13362:1 13393:1 13406:1 13417:1 13450:1 13454:7 13503:1 13504:1 13523:1 13550:8 13556:1 13573:2 13584:1 13588:5 13595:4 13609:1 13611:6 13632:1 13633:1 13647:1 13652:1 13663:1 13665:1 13666:1 13684:2 13690:5 13715:1 13726:1 13732:1 13734:1 13747:6 13754:1 13756:3 13757:1 13772:1 13774:2 13781:1 13786:1 13800:2 13802:1 13807:1 13808:1 13829:1 13830:4 13833:1 13840:1 13847:3 13854:1 13862:2 13865:1 13880:2 13887:7 13909:1 13913:1 13933:4 13937:1 13938:3 13961:1 13973:1 13987:2 14008:1 14076:1 14081:1 14092:1 14116:3 14120:2 14123:4 14124:2 14127:1 14138:1 14146:1 14149:1 14170:3 14186:1 14191:3 14198:2 14201:1 14204:1 14205:1 14233:1 14243:6 14254:1 14277:2 14290:2 14292:1 14304:2 14316:1 14339:7 14343:1 14345:3 14346:1 14352:1 14359:1 14399:1 14401:1 14414:1 14426:3 14445:9 14455:1 14486:1 14489:2 14508:1 14525:1 14530:1 14531:1 14535:1 14560:1 14577:6 14591:1 14602:3 14611:1 14613:1 14624:1 14643:1 14649:1 14651:1 14667:2 14668:1 14669:1 14705:1 14720:1 14730:2 14732:1 14741:1 14751:1 14757:2 14768:2 14780:1 14783:3 14794:1 14795:1 14796:2 14797:9 14800:1 14803:6 14808:1 14812:3 14814:1 14815:1 14825:1 14833:1 14836:1 14861:1 14871:1 14913:1 14914:1 14927:5 14932:1 14961:2 14971:2 14978:1 14984:4 14996:1 15003:1 15012:1 15013:3 15032:1 15037:2 15038:1 15060:1 15084:2 15099:2 15106:2 15109:2 15112:1 15113:1 15126:2 15129:1 15134:4 15137:1 15152:2 15157:1 15166:2 15181:1 15183:1 15253:1 15266:1 15270:1 15278:1 15303:1 15328:3 15329:1 15332:1 15334:1 15347:1 15349:1 15395:1 15396:1 15408:6 15410:1 15424:1 15425:1 15428:2 15444:1 15449:4 15450:3 15470:2 15483:1 15494:1 15497:1 15510:1 15511:1 15532:8 15535:1 15538:1 15543:1 15549:1 15569:1 15599:1 15624:1 15638:3 15641:1 15651:1 15655:1 15668:1 15670:2 15681:1 15683:1 15692:3 15693:1 15698:2 15700:1 15715:1 15727:1 15735:1 15748:1 15754:1 15761:2 15774:2 15789:1 15820:2 15849:1 15863:8 15882:1 15886:2 15918:1 15924:2 15938:1 15941:1 15950:4 15951:1 15961:4 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16081:1 16114:2 16118:1 16128:7 16133:3 16140:1 16141:3 16151:1 16160:2 16165:2 16171:2 16172:1 16173:5 16174:2 16176:1 16184:1 16189:1 16228:1 16233:1 16243:1 16266:1 16275:1 16306:7 16312:1 16325:1 16335:2 16339:1 16345:1 16348:1 16359:3 16387:2 16403:6 16404:3 16406:1 16410:1 16411:1 16452:1 16459:3 16468:1 16472:1 16478:1 16484:3 16488:2 16499:1 16536:1 16552:1 16553:2 16599:1 16607:1 16612:15 16613:1 16618:1 16624:1 16629:4 16635:1 16640:1 16641:1 16649:1 16652:1 16663:1 16670:2 16690:3 16693:1 16698:1 16707:1 16716:1 16717:1 16734:1 16740:1 16741:1 16745:2 16756:2 16760:1 16763:1 16789:1 16791:2 16826:3 16828:1 16829:1 16830:2 16850:1 16885:1 16896:1 16922:1 16944:1 16960:1 16963:1 16966:2 16990:1 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:2 17133:1 17156:1 17158:1 17167:1 17177:1 17178:1 17188:1 17212:1 17216:1 17234:1 17237:2 17245:2 17255:2 17272:1 17279:1 17287:3 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:2 17374:1 17407:4 17411:1 17413:4 17419:1 17436:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:1 17499:1 17506:1 17510:1 17516:2 17535:4 17551:1 17553:1 17564:1 17565:1 17569:2 17584:2 17586:1 17613:1 17617:1 17625:1 17630:1 17632:1 17639:5 17646:1 17666:1 17668:4 17671:1 17684:1 17690:1 17711:2 17712:2 17735:3 17737:2 17750:1 17754:1 17761:1 17762:1 17763:2 17777:2 17778:7 17779:1 17787:2 17820:1 17832:1 17844:1 17850:2 17857:2 17921:1 17946:1 17962:1 17968:3 17975:2 17980:2 18000:1 18004:1 18018:1 18025:1 18039:1 18041:1 18043:3 18050:2 18051:1 18053:1 18060:3 18070:3 18071:1 18072:2 18076:1 18106:1 18110:1 18126:5 18127:3 18151:1 18154:2 18185:1 18189:1 18196:7 18210:1 18240:1 18245:1 18252:2 18255:2 18256:1 18259:1 18263:1 18276:1 18281:1 18283:5 18286:1 18288:1 18291:1 18304:1 18323:1 18324:1 18327:1 18344:1 18365:1 18366:3 18395:1 18403:2 18418:1 18422:1 18424:8 18426:1 18430:4 18436:25 18441:1 18444:1 18447:1 18451:1 18455:1 18459:1 18476:3 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18528:1 18532:1 18537:1 18546:1 18548:1 18549:1 18550:1 18553:1 18569:1 18575:1 18586:1 18591:4 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:2 18698:1 18712:1 18720:1 18723:2 18736:5 18738:1 18740:1 18750:1 18761:1 18774:1 18780:1 18805:1 18812:1 18843:1 18845:1 18867:1 18888:1 18891:2 18905:1 18915:1 18918:1 18928:1 18962:1 18968:2 18969:1 19001:2 19069:4 19081:1 19095:1 19113:1 19125:1 19148:2 19152:1 19153:1 19157:1 19172:2 19191:4 19199:1 19218:1 19225:1 19229:1 19245:2 19251:2 19254:2 19259:1 19275:1 19279:1 19287:5 19291:1 19294:1 19300:1 19304:1895 19308:1 19318:1 19324:1 19367:2 19368:1 19377:3 19402:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:1 19506:1 19521:1 19529:3 19535:6 19542:1 19548:5 19551:2 19552:4 19583:1 19629:6 19633:2 19635:2 19641:1 19642:1 19665:1 19666:26 19675:1 19686:1 19692:7 19716:1 19747:1 19756:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:3 19857:1 19860:1 19868:1 19882:1 19898:2 19908:1 19920:1 19927:1 19928:1 19953:1 19957:1 19964:1 19978:2 19981:2 19982:3 20010:1 20014:1 20018:2 20021:3 20027:1 20033:1 20036:1 20038:1 20043:3 20049:1 20053:1 20058:1 20064:1 20074:5 20078:1 20092:2 20106:2 20108:1 20127:1 20131:10 20147:1 20148:1 20172:7 20173:1 20183:1 20184:1 20188:1 20198:1 20242:1 20247:3 20296:1 20300:1 20313:1 20329:4 20331:1 20336:3 20339:2 20351:1 20353:1 20372:1 20374:3 20375:1 20387:3 20399:1 20429:1 20434:1 20463:1 20468:1 20501:3 20516:1 20528:1 20559:2 20570:1 20571:1 20577:1 20584:2 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:3 20616:2 20620:4 20624:1 20629:4 20641:1 20657:1 20664:1 20666:1 20681:1 20687:1 20692:2 20705:1 20708:1 20733:1 20754:2 20756:4 20760:1 20783:1 20790:1 20791:4 20805:1 20807:1 20817:2 20828:1 20832:1 20844:1 20848:1 20850:2 20868:1 20875:1 20884:1 20886:1 20901:1 20912:4 20918:1 20920:1 20923:1 20928:2 20932:1 20941:1 20962:2 20964:2 20980:1 21002:5 21032:1 21057:6 21058:3 21062:2 21068:2 21074:1 21080:1 21120:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21217:1 21220:1 21251:1 21255:3 21258:1 21259:4 21271:1 21290:1 21296:1 21298:1 21299:6 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:2 21407:1 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21475:1 21511:1 21514:1 21515:1 21526:1 21529:3 21539:1 21546:4 21547:1 21550:1 21552:1 21553:1 21561:1 21574:2 21579:1 21584:1 21588:2 21595:1 21605:1 21613:5 21647:1 21656:2 21658:1 21659:2 21660:1 21673:1 21702:2 21712:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:2 21840:2 21863:6 21872:1 21873:1 21875:1 21894:1 21901:1 21907:2 21952:2 21965:1 21971:1 21976:1 21979:2 21985:1 21989:1 22005:1 22022:2 22045:1 22058:1 22061:1 22076:1 22078:1 22082:1 22122:1 22149:1 22160:1 22176:1 22177:1 22194:1 22225:1 22240:1 22241:2 22243:1 22250:1 22254:2 22256:1 22258:2 22265:1 22272:2 22273:3 22275:1 22282:2 22283:1 22287:1 22289:1 22291:1 22298:1 22325:1 22332:1 22338:1 22346:4 22359:1 22361:1 22363:1 22365:1 22370:2 22371:2 22376:1 22378:1 22383:2 22391:1 22401:1 22408:1 22413:1 22415:9 22419:1 22432:1 22433:2 22436:1 22437:1 22447:1 22455:1 22477:1 22491:1 22504:1 22507:2 22513:1 22519:1 22525:8 22532:1 22539:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22624:1 22625:1 22632:1 22661:1 22665:3 22672:1 22676:1 22678:1 22679:1 22681:1 22682:1 22688:1 22697:2 22698:3 22716:2 22720:1 22735:1 22752:1 22766:2 22790:1 22798:1 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:3 22892:3 22897:1 22902:1 22924:1 22933:1 22940:1 22943:1 22947:2 22959:2 22961:1 22975:3 23017:1 23023:1 23029:1 23033:1 23034:1 23052:4 23053:5 23056:3 23057:1 23059:2 23072:2 23073:1 23089:1 23096:1 23109:1 23111:4 23118:1 23124:1 23125:1 23131:2 23134:1 23142:3 23144:2 23145:3 23154:1 23162:2 23165:1 23173:1 23174:1 23177:1 23178:3 23185:1 23205:2 23226:1 23229:2 23231:1 23233:1 23241:1 23243:1 23251:3 23260:1 23263:2 23270:1 23290:1 23291:3 23292:1 23309:2 23315:25 23320:1 23321:2 23323:4 23326:1 23327:3 23329:2 23333:1 23334:1 23336:1 23352:3 23354:1 23361:3 23364:1 23368:2 23384:2 23385:2 23389:1 23400:1 23425:1 23437:1 23440:1 23487:2 23497:1 23501:4 23509:1 23530:2 23535:1 23552:1 23560:1 23594:1 23596:2 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:3 23655:2 23663:1 23664:1 23685:1 23702:1 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23828:1 23830:1 23837:2 23844:1 23859:1 23860:1 23869:1 23872:1 23887:1 23888:2 23894:1 23903:2 23906:1 23926:3 23927:1 23928:1 23944:3 23952:2 23955:2 23977:2 23978:1 23982:1 23984:1 23992:2 23997:1 24038:1 24066:1 24079:1 24125:1 24129:1 24144:1 24166:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24196:2 24209:2 24214:2 24215:1 24218:1 24220:1 24228:1 24232:1 24258:2 24270:3 24278:1 24280:2 24282:1 24291:1 24293:1 24309:1 24325:1 24333:1 24336:1 24343:11 24351:1 24376:2 24393:1 24423:1 24424:1 24425:1 24443:1 24488:1 24497:1 24513:1 24515:1 24526:2 24533:2 24543:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:1 24620:6 24622:1 24623:1 24631:1 24638:1 24649:1 24652:1 24661:2 24728:1 24731:1 24746:3 24748:1 24761:1 24762:1 24764:2 24774:1 24788:1 24791:2 24801:1 24822:1 24839:1 24862:1 24863:1 24902:3 24912:5 24914:1 24923:4 24927:1 24944:1 24955:2 24956:1 24957:1 24964:1 24973:2 24974:1 24995:2 25011:1 25028:3 25030:2 25032:1 25036:1 25060:1 25068:1 25085:1 25087:1 25093:1 25099:3 25100:2 25106:1 25115:1 25117:1 25127:1 25136:1 25147:1 25148:1 25150:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:1 25220:1 25221:2 25222:1 25224:7 25226:3 25228:4 25229:2 25234:1 25235:2 25236:2 25238:1 25248:2 25249:3 25255:2 25262:2 25268:4 25297:1 25300:2 25301:1 25315:2 25327:1 25337:3 25343:3 25363:2 25369:1 25370:1 25381:3 25393:1 25410:1 25414:1 25415:2 25439:1 25460:1 25463:1 25478:1 25504:3 25530:2 25540:1 25545:4 25565:2 25601:1 25602:1 25604:1 25616:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25718:1 25752:3 25767:1 25778:1 25781:1 25785:3 25794:2 25828:3 25861:1 25879:2 25887:1 25900:1 25903:4 25909:1 25910:1 25915:1 25922:1 25927:1 25929:1 25931:4 25988:1 26007:1 26011:2 26023:2 26025:3 26060:10 26069:1 26083:9 26104:1 26112:1 26122:1 26127:1 26138:1 26146:2 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:5 26270:1 26280:2 26285:2 26288:7 26293:2 26294:4 26304:1 26307:1 26311:1 26317:2 26320:1 26328:1 26329:1 26334:1 26358:1 26363:2 26373:1 26379:4 26387:1 26410:3 26416:2 26420:2 26422:2 26482:1 26494:1 26495:1 26511:1 26519:1 26523:1 26534:1 26560:1 26563:1 26579:1 26589:1 26590:2 26591:1 26593:2 26614:5 26643:1 26646:1 26648:1 26656:1 26662:1 26668:1 26698:1 26716:1 26741:1 26754:1 26760:1 26768:1 26776:1 26805:1 26826:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26893:1 26901:1 26902:1 26907:2 26918:2 26925:1 26939:1 26954:1 26957:2 26983:3 26989:1 26997:1 26998:2 27020:5 27046:1 27047:4 27070:1 27089:1 27091:1 27094:2 27095:1 27107:1 27118:1 27119:1 27127:2 27138:2 27157:2 27174:1 27178:5 27179:1 27212:3 27216:1 27234:1 27236:1 27239:1 27260:2 27278:1 27299:4 27320:2 27321:1 27322:1 27327:1 27329:1 27330:1 27334:3 27335:1 27341:1 27375:2 27378:1 27381:1 27387:1 27406:1 27415:2 27438:2 27439:1 27453:1 27454:2 27459:1 27482:1 27484:2 27510:1 27530:2 27535:1 27539:1 27555:1 27574:3 27583:5 27608:2 27613:1 27665:1 27670:1 27686:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:1 27780:1 27781:1 27787:1 27791:1 27792:1 27804:1 27807:1 27822:1 27826:1 27845:1 27873:1 27875:1 27888:1 27897:1 27912:2 27917:1 27920:1 27924:2 27940:4 27957:4 27965:5 27974:1 27990:1 27991:1 27997:1 28011:2 28025:1 28033:1 28043:1 28044:10 28071:1 28083:1 28087:2 28097:1 28098:1 28101:1 28102:2 28109:11 28151:3 28188:2 28189:1 28193:1 28213:2 28218:5 28225:2 28226:2 28242:2 28246:1 28251:2 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:2 28322:1 28335:2 28337:1 28347:1 28361:1 28372:1 28377:1 28381:1 28384:1 28398:1 28407:1 28409:1 28414:2 28416:1 28418:1 28420:1 28458:1 28459:1 28529:1 28533:1 28554:4 28557:1 28564:1 28588:1 28589:1 28600:2 28616:4 28619:1 28627:1 28637:1 28649:1 28672:1 28681:1 28686:1 28736:1 28755:2 28779:1 28801:1 28825:3 28845:1 28858:1 28860:6 28872:1 28893:1 28896:3 28919:1 28928:2 28938:1 28958:1 28959:1 28961:1 28978:1 28980:1 28983:1 28992:24 28993:4 28996:5 28998:1 28999:3 29011:1 29034:7 29048:1 29092:1 29100:2 29115:1 29120:1 29131:1 29132:2 29142:3 29146:2 29176:11 29180:2 29184:1 29186:1 29190:1 29210:1 29213:1 29216:1 29221:2 29228:2 29236:1 29238:1 29245:2 29251:1 29262:1 29267:1 29268:2 29278:2 29281:1 29293:1 29295:1 29300:1 29302:1 29307:1 29343:1 29347:1 29362:2 29364:1 29365:1 29387:1 29388:1 29391:1 29405:3 29449:1 29471:1 29473:2 29474:2 29477:1 29498:1 29514:1 29518:1 29522:1 29524:1 29525:1 29529:1 29532:2 29538:1 29539:1 29548:1 29550:1 29551:1 29566:2 29570:1 29579:1 29587:2 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29712:1 29716:1 29717:1 29718:1 29722:1 29723:2 29736:1 29740:2 29743:1 29749:1 29758:1 29766:1 29767:7 29773:1 29777:1 29780:5 29782:1 29788:1 29801:1 29828:1 29832:1 29839:2 29840:1 29882:3 29890:1 29900:1 29914:3 29918:1 29920:2 29925:1 29927:1 29931:6 29949:1 29969:1 29970:1 30001:2 30011:1 30012:1 30035:2 30058:2 30081:1 30088:1 30104:1 30108:1 30113:1 30122:1 30136:1 30150:2 30187:1 30194:7 30206:1 30208:1 30210:1 30231:7 30243:5 30244:1 30250:1 30273:1 30311:1 30320:8 30322:3 30324:2 30326:1 30328:1 30331:3 30332:2 30344:1 30353:1 30362:1 30363:2 30367:3 30371:3 30408:1 30421:1 9 11:1 14:1 30:1 43:1 50:2 74:1 79:1 83:1 85:1 99:1 103:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 176:1 187:1 189:3 201:1 206:4 236:7 257:1 283:1 303:1 315:2 325:1 327:29 338:2 355:1 356:3 357:4 362:1 366:1 378:1 380:1 397:1 419:1 441:2 460:3 478:1 480:1 550:1 558:1 589:1 591:4 592:1 600:2 603:3 625:4 635:2 637:1 638:1 639:1 657:2 671:1 682:2 685:1 691:1 693:1 703:1 724:1 732:1 736:1 747:1 758:1 774:1 788:1 791:1 802:1 804:1 819:1 824:1 833:1 843:1 854:1 856:2 857:1 880:1 883:7 885:3 897:1 899:2 900:1 911:1 914:12 917:1 929:1 933:1 938:4 941:7 946:1 952:1 953:1 959:1 964:3 978:1 985:2 986:2 997:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:2 1060:2 1076:1 1080:2 1084:1 1102:1 1115:2 1126:1 1133:1 1141:1 1142:1 1143:2 1148:1 1156:3 1163:1 1164:2 1172:1 1176:1 1187:1 1194:1 1201:3 1206:1 1213:1 1230:1 1258:2 1291:1 1292:1 1300:2 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1393:1 1404:1 1411:2 1441:2 1443:1 1461:1 1464:2 1468:3 1471:5 1474:1 1487:1 1490:2 1491:1 1493:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:4 1614:1 1621:1 1636:1 1639:1 1641:2 1642:3 1650:1 1677:4 1680:1 1700:1 1701:3 1706:5 1712:2 1732:1 1733:1 1751:1 1752:1 1775:1 1785:1 1814:2 1818:1 1827:1 1830:1 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1884:1 1886:1 1908:1 1954:1 1958:16 1965:1 1970:2 1981:1 1986:1 1991:1 1996:1 1997:1 2008:1 2018:8 2019:2 2051:1 2053:1 2057:2 2063:3 2075:1 2088:3 2102:1 2107:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2186:1 2195:1 2211:1 2213:1 2216:1 2218:5 2219:1 2223:1 2226:1 2232:1 2234:3 2238:1 2239:2 2240:4 2243:1 2251:1 2255:2 2258:1 2274:1 2276:1 2280:2 2281:2 2284:2 2285:8 2288:4 2291:1 2292:2 2293:4 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:1 2314:1 2316:6 2318:2 2319:7 2331:1 2332:1 2334:1 2348:1 2369:1 2380:2 2386:1 2393:1 2407:1 2411:1 2418:1 2430:3 2437:3 2438:1 2445:1 2448:1 2453:1 2460:1 2466:2 2482:3 2493:6 2505:1 2511:1 2515:1 2532:1 2537:1 2561:5 2570:3 2577:1 2595:2 2603:1 2608:2 2615:3 2618:2 2620:1 2623:1 2632:2 2661:2 2666:1 2682:1 2699:1 2701:3 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2740:1 2745:1 2748:1 2761:1 2763:1 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:7 2825:2 2831:2 2841:1 2848:1 2880:1 2882:1 2883:1 2889:1 2890:1 2912:2 2933:3 2935:1 2941:22 2959:4 2975:2 2980:1 2982:1 2995:1 3002:11 3032:1 3036:4 3038:1 3039:1 3061:1 3064:1 3068:1 3082:1 3092:1 3095:1 3097:1 3146:3 3162:1 3169:1 3176:1 3177:1 3184:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3304:1 3312:4 3325:1 3332:1 3338:1 3339:1 3343:1 3348:1 3361:1 3384:1 3386:3 3416:1 3431:1 3434:12 3481:1 3487:1 3510:2 3544:1 3551:1 3557:2 3561:1 3563:1 3564:2 3568:2 3571:1 3578:1 3581:1 3587:2 3615:1 3619:1 3628:1 3635:2 3640:1 3648:1 3665:1 3670:1 3674:1 3678:2 3681:4 3699:4 3705:2 3706:1 3708:2 3709:2 3712:1 3715:1 3736:2 3741:4 3751:1 3754:1 3773:1 3784:1 3787:1 3791:2 3792:3 3796:1 3800:2 3803:2 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:11 3873:1 3882:1 3888:1 3895:5 3897:1 3903:2 3904:12 3905:1 3906:1 3912:1 3923:1 3924:5 3932:1 3938:1 3955:1 3956:3 3958:1 3967:1 3969:1 3978:1 3981:1 3986:1 3992:1 3993:1 4000:1 4004:1 4016:1 4019:3 4022:3 4032:1 4045:1 4047:1 4053:1 4054:1 4058:1 4063:1 4077:4 4084:1 4085:1 4089:2 4093:1 4098:1 4099:2 4100:2 4108:4 4109:3 4114:1 4128:1 4144:1 4153:1 4165:1 4169:2 4181:1 4187:1 4196:2 4197:1 4204:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:3 4307:2 4315:1 4316:1 4321:1 4325:1 4364:1 4378:2 4381:2 4388:1 4405:1 4420:2 4455:2 4469:1 4474:5 4494:1 4504:1 4535:1 4546:2 4555:1 4572:1 4598:1 4601:1 4631:2 4661:1 4665:1 4675:1 4697:1 4699:2 4719:1 4724:1 4728:2 4741:3 4749:1 4751:1 4754:1 4772:1 4774:1 4788:1 4804:1 4807:8 4843:1 4854:1 4870:1 4875:1 4889:1 4896:1 4903:7 4907:1 4918:1 4921:1 4944:1 4951:1 4954:1 4986:3 5009:1 5019:19 5021:2 5024:1 5041:2 5052:1 5071:1 5078:2 5083:7 5091:1 5093:2 5115:1 5117:1 5131:1 5132:1 5134:1 5135:6 5151:4 5152:5 5153:1 5154:1 5155:1 5157:1 5159:3 5160:1 5162:1 5163:2 5166:1 5171:1 5173:2 5175:3 5176:1 5178:1 5184:1 5185:1 5187:4 5188:2 5211:1 5242:1 5271:1 5277:2 5279:1 5299:2 5317:1 5321:1 5326:2 5328:2 5336:2 5344:2 5359:1 5367:1 5385:1 5396:2 5404:3 5409:1 5435:1 5459:1 5464:1 5466:1 5487:1 5512:2 5518:7 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5607:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:2 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:2 5736:1 5758:3 5763:1 5772:1 5786:1 5792:3 5797:1 5808:4 5815:1 5816:1 5849:3 5873:2 5888:1 5897:3 5914:4 5917:1 5921:1 5939:1 5945:1 5959:1 5975:1 5977:1 6007:1 6011:1 6021:2 6028:1 6059:3 6066:1 6097:1 6102:2 6129:1 6152:1 6183:3 6184:1 6205:13 6226:4 6229:1 6231:4 6238:1 6242:1 6247:1 6248:3 6249:2 6257:1 6280:3 6297:1 6301:1 6303:1 6308:1 6325:1 6345:1 6356:1 6380:2 6384:2 6385:1 6390:1 6400:1 6404:2 6426:5 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:1 6488:1 6501:3 6503:1 6505:1 6507:1 6511:1 6515:2 6517:1 6518:2 6519:1 6520:4 6525:4 6526:9 6527:5 6530:1 6539:1 6568:1 6571:1 6591:1 6646:3 6648:1 6681:2 6699:2 6743:1 6750:1 6763:1 6769:1 6777:1 6797:1 6798:1 6803:1 6814:1 6816:1 6822:1 6836:1 6844:1 6851:1 6855:1 6897:1 6898:2 6911:1 6916:1 6919:2 6920:1 6924:1 6929:1 6940:7 6960:2 6968:2 6973:1 6985:1 6987:1 6997:1 7002:1 7019:1 7029:1 7045:2 7047:1 7049:2 7058:2 7086:2 7087:2 7091:3 7100:1 7113:3 7114:2 7128:1 7131:1 7142:1 7147:2 7148:1 7150:2 7154:1 7160:1 7177:1 7212:1 7220:1 7253:10 7255:1 7273:1 7281:2 7300:1 7302:1 7306:1 7310:1 7312:1 7332:1 7336:1 7337:1 7369:2 7411:2 7416:1 7435:2 7452:1 7479:2 7491:3 7495:1 7500:1 7505:2 7506:1 7509:1 7516:1 7521:1 7527:1 7539:1 7549:4 7554:3 7555:1 7559:1 7579:2 7583:1 7596:2 7597:1 7603:2 7622:1 7627:2 7644:1 7663:1 7672:2 7690:1 7723:1 7725:1 7726:2 7756:2 7757:12 7758:3 7771:2 7784:2 7785:3 7786:1 7812:4 7813:1 7831:50 7836:1 7854:3 7855:11 7857:1 7860:1 7883:2 7908:1 7911:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:2 8035:2 8059:1 8062:3 8087:1 8093:1 8108:1 8112:4 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8223:1 8226:1 8233:1 8250:1 8258:1 8265:2 8266:3 8267:1 8269:1 8285:1 8287:2 8317:1 8319:1 8324:2 8333:2 8338:2 8343:1 8348:2 8357:1 8358:7 8389:2 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8564:1 8566:1 8589:1 8591:1 8599:2 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:3 8638:1 8646:1 8656:1 8664:5 8667:1 8669:1 8671:1 8701:1 8716:1 8728:1 8736:1 8739:3 8740:5 8743:4 8744:2 8746:1 8748:3 8749:8 8752:2 8753:2 8755:1 8757:1 8767:1 8768:2 8784:4 8790:1 8792:3 8816:3 8820:1 8822:2 8826:2 8829:2 8834:1 8837:4 8853:1 8892:2 8906:1 8907:1 8930:1 8939:1 8958:1 8968:1 8974:1 8988:1 9008:1 9017:3 9024:1 9033:2 9041:3 9063:2 9066:1 9073:4 9074:1 9078:2 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9171:1 9177:1 9188:2 9199:4 9202:2 9220:1 9222:1 9241:3 9252:1 9263:1 9275:1 9276:2 9278:1 9292:1 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:3 9373:1 9387:1 9394:1 9401:2 9411:1 9420:2 9421:1 9459:1 9463:1 9467:7 9469:1 9470:1 9474:2 9477:1 9486:29 9489:1 9490:2 9508:2 9510:1 9523:1 9535:1 9567:1 9572:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:6 9634:1 9659:1 9676:1 9684:3 9702:1 9728:1 9749:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9828:2 9831:1 9843:1 9844:1 9845:5 9851:1 9861:1 9869:3 9877:2 9886:1 9895:2 9919:2 9949:7 9962:2 9965:1 9966:4 9972:2 9974:1 9986:1 9991:1 9993:1 9995:1 10004:1 10005:1 10035:3 10053:1 10057:1 10065:1 10089:2 10093:1 10108:7 10113:1 10120:1 10126:1 10135:4 10142:1 10143:2 10145:1 10147:2 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10186:1 10196:3 10198:1 10202:2 10203:1 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10308:1 10309:1 10329:1 10336:1 10345:1 10368:1 10397:1 10399:1 10401:1 10402:1 10418:2 10443:1 10466:1 10479:1 10481:1 10489:1 10520:1 10525:2 10550:3 10570:1 10588:1 10608:2 10609:1 10625:3 10630:2 10638:2 10653:1 10655:1 10690:1 10699:1 10712:1 10722:1 10724:1 10764:1 10767:1 10769:1 10788:1 10790:3 10794:2 10800:5 10809:1 10810:1 10811:1 10813:1 10823:1 10824:2 10841:3 10844:3 10846:1 10854:1 10865:2 10866:1 10867:1 10876:3 10878:2 10886:2 10888:1 10890:2 10892:1 10895:1 10916:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:3 10990:11 11055:1 11056:1 11065:1 11067:1 11079:1 11112:2 11117:1 11137:1 11159:1 11180:1 11193:1 11211:1 11224:1 11236:1 11254:3 11257:2 11260:2 11262:2 11269:2 11283:2 11291:1 11298:1 11299:1 11302:1 11312:1 11323:1 11347:6 11351:1 11372:4 11377:1 11378:1 11381:1 11433:1 11434:2 11435:2 11437:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11501:1 11507:1 11516:1 11544:1 11554:1 11557:1 11566:1 11579:1 11583:5 11590:1 11602:1 11613:1 11616:1 11627:1 11637:1 11643:2 11653:2 11659:1 11660:1 11674:2 11675:1 11677:2 11682:1 11686:3 11706:6 11715:1 11749:1 11752:9 11753:1 11755:1 11789:1 11790:1 11797:1 11819:1 11820:1 11830:1 11831:2 11848:1 11850:1 11852:1 11860:1 11861:1 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:2 11930:3 11933:7 11958:1 11960:2 11962:6 11963:1 11989:1 11994:1 12006:1 12009:1 12012:3 12020:1 12025:1 12026:2 12029:3 12032:1 12042:1 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:7 12085:1 12097:8 12108:1 12111:1 12127:1 12132:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:1 12263:1 12265:2 12291:1 12304:3 12306:1 12313:1 12315:1 12321:1 12340:1 12346:1 12359:3 12362:3 12382:1 12411:3 12414:1 12426:1 12433:1 12439:1 12442:1 12526:1 12540:1 12542:1 12543:2 12544:3 12545:2 12560:1 12571:1 12592:1 12593:1 12602:3 12603:5 12608:2 12615:1 12619:2 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:6 12747:1 12753:1 12782:2 12785:1 12798:1 12806:1 12807:1 12810:2 12824:3 12843:2 12847:2 12872:1 12880:1 12896:1 12899:2 12904:2 12935:1 12950:1 12953:1 12954:3 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13091:8 13100:1 13113:1 13114:1 13116:1 13126:1 13131:15 13136:1 13142:1 13151:2 13153:5 13155:1 13161:1 13180:1 13189:1 13192:1 13195:2 13199:3 13222:2 13246:1 13250:1 13255:1 13256:4 13259:2 13270:2 13283:1 13285:1 13291:2 13292:1 13315:1 13330:3 13334:1 13339:1 13341:1 13362:1 13393:1 13406:1 13417:1 13450:1 13454:7 13458:1 13503:1 13504:1 13523:1 13550:8 13556:1 13573:2 13584:1 13588:5 13595:4 13609:1 13611:6 13632:1 13633:1 13647:1 13652:1 13663:1 13665:1 13666:1 13684:2 13690:5 13715:1 13726:1 13732:1 13734:1 13747:6 13754:1 13756:3 13757:1 13772:1 13773:1 13774:2 13781:1 13786:1 13800:2 13802:1 13807:1 13808:1 13829:1 13830:4 13833:1 13840:1 13847:3 13854:1 13862:2 13865:1 13880:2 13887:7 13909:1 13913:1 13915:1 13933:4 13937:1 13938:3 13961:1 13973:1 13987:2 14008:1 14036:1 14076:1 14081:1 14092:1 14116:3 14118:1 14120:2 14123:4 14124:2 14127:1 14138:1 14146:1 14149:1 14170:3 14186:1 14191:3 14198:2 14201:1 14204:1 14205:1 14233:1 14243:6 14254:1 14277:2 14290:2 14292:1 14304:2 14316:1 14339:7 14343:1 14345:3 14346:1 14352:1 14359:1 14399:1 14401:1 14414:1 14426:3 14445:9 14455:1 14486:1 14489:2 14508:1 14525:1 14530:1 14531:1 14535:1 14560:1 14577:6 14591:1 14602:3 14611:1 14613:1 14624:1 14643:1 14649:1 14651:1 14667:3 14668:1 14669:1 14705:1 14720:1 14730:2 14732:1 14741:1 14751:1 14757:2 14768:2 14780:1 14783:3 14794:1 14795:1 14796:3 14797:9 14800:1 14803:6 14808:1 14812:3 14814:1 14815:2 14825:1 14833:1 14836:1 14861:1 14871:1 14913:1 14914:1 14927:5 14932:1 14961:2 14971:2 14978:1 14984:4 14996:1 15003:1 15012:1 15013:3 15032:1 15037:3 15038:1 15060:1 15084:2 15099:2 15106:2 15109:2 15112:1 15113:1 15126:2 15129:1 15134:4 15137:1 15152:3 15157:1 15166:2 15181:1 15183:1 15253:1 15266:1 15270:1 15278:1 15303:1 15328:3 15329:1 15332:1 15334:1 15347:1 15349:1 15395:1 15396:1 15408:6 15410:1 15424:1 15425:1 15428:2 15444:1 15449:6 15450:3 15470:2 15483:1 15494:1 15497:1 15510:1 15511:1 15532:8 15535:1 15538:1 15543:1 15549:1 15569:1 15599:1 15624:1 15638:4 15641:1 15651:1 15655:1 15668:1 15670:2 15681:1 15683:1 15692:3 15693:1 15698:2 15700:1 15715:1 15727:1 15735:1 15748:1 15754:1 15761:2 15774:2 15789:1 15820:2 15849:1 15863:9 15882:1 15886:2 15918:1 15924:2 15938:1 15941:1 15950:4 15951:1 15961:4 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16081:1 16114:2 16118:1 16128:7 16133:3 16140:1 16141:3 16151:1 16160:2 16165:3 16171:2 16172:1 16173:5 16174:2 16176:1 16184:1 16189:1 16228:1 16233:1 16243:1 16266:1 16275:1 16306:7 16312:1 16325:1 16335:2 16339:1 16345:1 16348:1 16359:3 16387:2 16403:6 16404:3 16406:1 16410:1 16411:1 16452:1 16459:3 16468:1 16472:1 16478:1 16484:4 16488:2 16499:1 16536:1 16552:1 16553:3 16599:1 16607:1 16612:16 16613:1 16618:1 16624:1 16629:4 16635:1 16640:1 16641:1 16649:1 16652:1 16663:1 16670:2 16690:3 16693:1 16698:1 16707:1 16714:1 16716:1 16717:1 16726:1 16734:1 16740:1 16741:1 16745:2 16756:2 16760:1 16763:1 16789:1 16791:2 16826:3 16828:1 16829:1 16830:2 16850:1 16885:1 16896:1 16922:1 16944:1 16960:1 16963:1 16966:2 16990:1 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:2 17133:1 17156:1 17158:1 17167:1 17177:1 17178:1 17188:1 17212:1 17216:1 17234:1 17237:2 17245:2 17255:2 17272:1 17279:1 17281:1 17287:3 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:2 17374:1 17407:4 17411:1 17413:4 17419:1 17436:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:1 17499:2 17506:1 17510:1 17516:2 17535:4 17551:1 17553:1 17564:1 17565:1 17569:2 17584:2 17586:1 17613:1 17617:1 17625:1 17630:1 17632:2 17639:6 17646:1 17666:1 17668:5 17671:1 17684:1 17690:1 17711:2 17712:2 17735:3 17737:2 17750:1 17754:1 17761:1 17762:1 17763:2 17777:2 17778:7 17779:1 17787:2 17820:1 17832:1 17844:1 17850:2 17857:2 17921:1 17946:1 17962:1 17968:3 17975:2 17980:2 18000:1 18004:1 18018:1 18025:1 18039:1 18041:1 18043:3 18050:2 18051:1 18053:1 18060:3 18070:3 18071:1 18072:2 18076:1 18106:1 18110:1 18126:5 18127:3 18151:1 18154:2 18185:1 18189:1 18196:7 18210:1 18240:1 18245:1 18252:2 18255:2 18256:1 18259:1 18263:1 18276:1 18281:2 18283:5 18286:1 18288:1 18291:1 18304:1 18323:1 18324:1 18327:1 18344:1 18365:1 18366:3 18395:1 18403:2 18418:1 18422:1 18424:8 18426:1 18430:4 18436:26 18441:1 18444:1 18447:1 18451:2 18455:1 18459:1 18476:4 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18528:1 18532:1 18537:1 18546:1 18548:1 18549:1 18550:1 18553:1 18569:1 18575:1 18586:1 18591:4 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:2 18698:1 18712:1 18720:1 18723:2 18736:5 18738:1 18740:1 18750:1 18761:1 18774:1 18780:1 18805:1 18812:1 18843:1 18845:1 18867:1 18888:1 18891:2 18905:1 18915:1 18918:1 18928:1 18935:1 18962:1 18968:3 18969:1 19001:2 19069:4 19081:1 19095:1 19113:1 19125:1 19148:2 19152:1 19153:1 19157:1 19172:2 19191:4 19199:1 19218:1 19225:1 19229:1 19245:3 19251:2 19254:2 19259:1 19275:1 19279:1 19287:5 19291:1 19294:1 19300:1 19304:1969 19308:1 19318:1 19324:1 19367:3 19368:1 19377:3 19402:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:1 19506:1 19521:1 19529:3 19535:6 19542:1 19548:5 19551:2 19552:4 19583:1 19629:6 19633:2 19635:2 19641:1 19642:1 19665:1 19666:29 19675:1 19686:1 19692:7 19716:1 19747:1 19756:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:3 19857:1 19860:1 19868:1 19882:1 19898:2 19908:1 19920:1 19927:1 19928:1 19953:1 19957:1 19964:1 19978:2 19981:2 19982:3 20010:1 20014:1 20018:2 20021:3 20027:1 20033:1 20036:1 20038:1 20043:3 20049:1 20053:1 20058:1 20064:1 20074:5 20078:1 20091:1 20092:2 20106:2 20108:1 20127:1 20131:10 20147:1 20148:1 20172:7 20173:1 20183:1 20184:1 20188:1 20198:1 20242:1 20247:3 20296:1 20300:1 20313:1 20329:4 20331:1 20336:3 20339:2 20351:1 20353:1 20372:1 20374:3 20375:1 20387:3 20399:1 20429:1 20434:1 20463:1 20468:1 20501:3 20516:1 20528:1 20559:2 20570:1 20571:1 20577:1 20584:2 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:3 20616:2 20620:4 20624:1 20629:4 20641:1 20657:1 20664:1 20666:1 20681:1 20687:1 20692:2 20705:1 20708:1 20733:1 20754:2 20756:4 20760:1 20783:1 20790:1 20791:4 20805:1 20807:1 20817:2 20828:1 20832:1 20844:1 20848:1 20850:2 20868:1 20875:1 20884:1 20886:1 20901:1 20912:4 20918:1 20920:1 20923:1 20928:2 20932:1 20941:1 20962:2 20964:2 20980:1 21002:5 21032:1 21057:6 21058:3 21062:2 21068:2 21074:1 21080:1 21120:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21217:1 21220:1 21251:1 21255:3 21258:1 21259:4 21271:1 21290:1 21296:1 21298:1 21299:6 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:2 21407:1 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21475:1 21511:1 21514:1 21515:1 21526:1 21529:3 21539:1 21546:4 21547:1 21549:1 21550:1 21552:1 21553:1 21561:1 21574:3 21579:1 21584:1 21587:1 21588:2 21595:1 21605:1 21613:5 21647:1 21656:2 21658:1 21659:2 21660:1 21673:1 21702:2 21712:1 21739:1 21761:1 21788:1 21796:1 21802:2 21810:1 21832:1 21836:2 21840:2 21863:6 21872:1 21873:1 21875:1 21894:1 21901:1 21907:2 21952:2 21965:1 21971:1 21976:1 21979:2 21985:1 21989:1 22005:1 22022:2 22045:1 22058:1 22061:1 22076:1 22078:1 22082:1 22122:1 22149:1 22160:1 22176:1 22177:1 22194:1 22225:1 22240:1 22241:2 22243:1 22250:1 22254:2 22256:1 22258:2 22265:1 22272:2 22273:3 22275:1 22282:2 22283:1 22287:1 22289:1 22291:1 22298:1 22321:1 22325:1 22332:1 22338:1 22346:4 22359:1 22361:1 22363:1 22365:1 22370:2 22371:2 22376:1 22378:1 22383:2 22391:1 22401:1 22408:1 22413:1 22415:9 22419:1 22432:1 22433:2 22436:1 22437:1 22447:1 22455:1 22477:1 22491:1 22504:1 22507:2 22511:1 22513:1 22519:1 22525:8 22532:1 22539:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22624:1 22625:1 22632:1 22661:1 22665:4 22672:1 22676:1 22678:1 22679:1 22681:1 22682:1 22688:1 22697:2 22698:3 22716:2 22720:1 22735:1 22752:2 22766:2 22790:1 22798:1 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:3 22892:3 22897:1 22902:1 22924:1 22933:1 22940:1 22943:1 22947:2 22959:2 22961:1 22975:3 23017:1 23023:1 23029:1 23033:1 23034:1 23052:4 23053:5 23056:3 23057:1 23059:2 23072:2 23073:1 23089:1 23096:1 23109:1 23111:4 23118:1 23124:1 23125:1 23131:2 23134:1 23142:3 23144:2 23145:3 23154:1 23162:2 23165:1 23173:1 23174:1 23177:1 23178:3 23185:1 23205:2 23226:1 23229:2 23231:1 23233:1 23241:1 23243:1 23251:3 23260:1 23263:2 23270:1 23290:1 23291:4 23292:1 23309:2 23315:26 23320:1 23321:2 23323:4 23326:1 23327:3 23329:2 23333:1 23334:1 23336:1 23352:3 23354:1 23361:3 23364:1 23368:2 23384:2 23385:2 23389:1 23400:1 23425:1 23437:1 23440:1 23487:3 23497:1 23501:6 23509:1 23530:2 23535:1 23552:1 23560:1 23569:1 23594:1 23596:2 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:3 23655:2 23663:1 23664:1 23685:1 23702:1 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23828:1 23830:1 23837:2 23844:1 23859:1 23860:1 23869:1 23872:1 23887:1 23888:2 23894:1 23903:2 23906:1 23926:3 23927:1 23928:1 23944:3 23952:2 23955:2 23977:2 23978:1 23982:1 23984:1 23992:2 23997:1 24038:1 24066:1 24079:1 24125:1 24129:1 24144:1 24166:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24196:3 24209:2 24214:2 24215:1 24218:1 24220:1 24228:1 24232:1 24258:2 24270:3 24278:1 24280:2 24282:1 24291:1 24293:1 24309:1 24325:1 24333:1 24336:1 24343:12 24351:1 24376:2 24393:1 24423:1 24424:1 24425:1 24443:1 24488:1 24497:1 24513:1 24515:1 24526:2 24533:2 24543:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:1 24620:6 24622:1 24623:1 24631:1 24638:1 24649:1 24652:1 24661:2 24725:1 24728:1 24731:1 24746:3 24748:1 24761:1 24762:1 24764:2 24774:1 24788:1 24791:2 24801:1 24822:1 24839:1 24862:1 24863:1 24902:3 24912:5 24914:1 24923:4 24927:1 24944:1 24947:1 24955:2 24956:1 24957:1 24964:1 24973:2 24974:1 24995:2 25011:1 25028:3 25030:2 25032:1 25036:1 25060:1 25068:1 25085:1 25087:1 25093:1 25099:3 25100:2 25106:1 25115:1 25117:1 25127:1 25136:1 25147:1 25148:1 25150:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:1 25220:1 25221:2 25222:1 25224:7 25226:3 25228:4 25229:2 25234:1 25235:2 25236:2 25238:1 25248:2 25249:3 25255:2 25262:2 25268:4 25297:1 25300:2 25301:1 25315:2 25327:1 25337:4 25343:3 25363:2 25369:1 25370:1 25381:3 25393:1 25410:1 25414:1 25415:2 25439:1 25460:1 25463:1 25478:1 25504:3 25530:3 25540:1 25545:4 25565:2 25566:1 25590:1 25601:1 25602:2 25604:1 25616:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25718:1 25752:3 25767:1 25778:1 25781:1 25785:3 25794:2 25828:4 25861:1 25879:2 25887:1 25900:1 25903:4 25909:1 25910:1 25915:1 25922:1 25927:1 25929:1 25931:4 25988:1 26007:1 26011:2 26023:2 26025:3 26060:10 26069:1 26083:9 26104:1 26112:1 26122:1 26127:1 26138:1 26146:2 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:6 26270:1 26280:2 26285:2 26288:8 26293:2 26294:4 26304:1 26307:1 26311:1 26317:2 26320:1 26328:1 26329:1 26334:1 26348:1 26358:1 26363:2 26373:1 26379:4 26387:1 26400:1 26410:3 26416:2 26420:2 26422:2 26482:1 26494:1 26495:1 26511:1 26519:1 26523:1 26534:1 26560:1 26563:1 26579:1 26589:1 26590:2 26591:1 26593:2 26614:5 26643:1 26646:1 26648:1 26656:1 26662:1 26668:1 26698:1 26716:1 26741:1 26754:1 26760:1 26768:1 26776:1 26805:1 26826:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26893:1 26901:1 26902:1 26907:2 26918:2 26925:1 26939:1 26954:1 26957:2 26974:1 26983:3 26989:1 26997:1 26998:2 27020:5 27046:1 27047:4 27070:1 27089:1 27091:1 27094:2 27095:1 27107:1 27118:1 27119:1 27127:2 27138:2 27157:2 27174:1 27178:5 27179:1 27212:3 27216:1 27234:1 27236:1 27239:1 27260:2 27278:1 27299:4 27320:2 27321:1 27322:1 27327:1 27329:1 27330:1 27334:3 27335:1 27341:1 27372:1 27375:2 27378:1 27381:1 27387:1 27389:1 27406:1 27415:2 27421:1 27438:2 27439:1 27453:1 27454:2 27459:1 27482:1 27484:2 27510:1 27530:2 27535:1 27539:1 27555:1 27574:3 27583:5 27608:2 27613:1 27665:1 27670:1 27686:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:1 27775:1 27780:1 27781:1 27787:1 27791:1 27792:1 27800:1 27804:1 27807:1 27822:1 27826:1 27845:1 27873:1 27875:1 27888:1 27897:1 27912:2 27917:1 27920:1 27924:3 27940:4 27957:4 27965:5 27974:1 27990:1 27991:1 27997:1 28011:2 28025:1 28033:1 28043:1 28044:10 28071:1 28083:1 28087:2 28097:1 28098:1 28101:1 28102:2 28109:12 28151:3 28188:2 28189:1 28193:1 28213:2 28218:5 28225:2 28226:2 28242:2 28246:1 28251:3 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:2 28322:1 28335:2 28337:1 28347:1 28361:1 28372:1 28377:1 28381:1 28384:1 28398:1 28407:1 28409:1 28414:2 28416:1 28418:1 28420:1 28458:1 28459:1 28499:1 28529:1 28533:1 28554:4 28557:1 28564:1 28588:1 28589:1 28600:2 28616:4 28619:1 28627:1 28637:1 28649:1 28672:1 28681:1 28686:1 28736:1 28755:2 28779:1 28801:1 28825:3 28845:1 28858:1 28860:6 28872:1 28893:1 28896:3 28919:1 28928:2 28938:1 28958:1 28959:1 28961:1 28978:1 28980:1 28983:1 28992:25 28993:4 28996:5 28998:1 28999:3 29011:1 29034:7 29048:1 29092:1 29100:2 29107:1 29115:1 29120:1 29131:1 29132:2 29142:3 29146:2 29176:11 29177:1 29180:2 29184:1 29186:1 29190:1 29210:1 29213:1 29216:1 29221:2 29228:2 29236:1 29238:1 29245:2 29251:1 29262:1 29267:1 29268:2 29278:2 29281:1 29293:1 29295:1 29300:1 29302:1 29307:1 29343:1 29347:1 29362:2 29364:1 29365:1 29387:1 29388:1 29391:1 29405:3 29420:1 29447:1 29449:1 29471:1 29473:2 29474:2 29477:1 29498:1 29514:1 29518:1 29522:1 29524:1 29525:1 29529:1 29532:2 29538:1 29539:1 29548:1 29550:1 29551:1 29566:2 29567:1 29570:1 29579:1 29587:2 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29712:1 29716:1 29717:1 29718:1 29722:1 29723:2 29736:1 29740:3 29743:1 29749:1 29758:1 29766:1 29767:7 29773:1 29777:1 29780:5 29782:1 29788:1 29801:1 29828:1 29832:1 29839:2 29840:1 29882:3 29890:1 29900:1 29914:3 29918:1 29920:2 29925:1 29927:1 29931:6 29940:1 29949:1 29969:1 29970:1 30001:2 30011:1 30012:1 30035:2 30058:2 30081:1 30088:1 30104:1 30108:2 30113:1 30122:1 30136:1 30150:2 30187:1 30194:7 30206:1 30208:1 30210:1 30231:7 30243:5 30244:1 30250:1 30273:1 30311:1 30320:8 30322:3 30324:2 30326:1 30328:1 30331:3 30332:2 30344:1 30353:1 30362:1 30363:2 30367:3 30371:3 30408:1 30421:1 9 11:1 14:1 30:1 43:1 50:2 74:1 79:1 83:1 85:1 99:1 103:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 176:1 180:1 187:1 189:3 201:1 206:4 236:7 257:1 283:1 303:1 315:2 325:1 327:31 338:2 355:1 356:3 357:4 362:1 366:1 378:1 380:1 397:1 419:1 441:2 460:3 478:1 480:1 550:1 558:1 589:1 591:4 592:1 600:2 603:3 625:4 635:2 637:1 638:1 639:1 657:2 671:1 682:2 685:1 691:1 693:1 703:1 724:1 732:1 736:1 747:1 758:1 774:1 788:1 791:1 802:1 804:1 819:1 824:1 833:1 843:1 854:1 856:2 857:1 880:1 883:7 885:3 897:1 899:2 900:1 911:1 914:13 917:1 929:1 933:1 938:4 941:7 946:1 952:1 953:1 959:1 964:3 978:1 985:2 986:2 997:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:2 1060:2 1076:1 1080:2 1084:1 1102:1 1103:1 1115:2 1126:1 1133:1 1141:1 1142:1 1143:2 1148:1 1156:3 1163:1 1164:2 1172:1 1176:1 1187:1 1194:1 1201:3 1206:1 1213:1 1230:1 1258:2 1291:1 1292:1 1300:2 1303:1 1313:1 1333:1 1336:1 1342:1 1379:1 1380:1 1393:1 1404:1 1411:3 1441:2 1443:1 1461:1 1464:2 1468:3 1471:5 1474:1 1487:1 1490:2 1491:1 1493:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:4 1614:1 1621:1 1636:1 1639:1 1641:2 1642:3 1650:1 1677:4 1680:1 1700:1 1701:3 1706:6 1712:2 1732:1 1733:1 1751:1 1752:1 1775:1 1785:1 1814:2 1818:1 1827:1 1830:1 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1884:1 1886:1 1908:1 1954:1 1958:18 1965:1 1970:2 1981:1 1986:1 1991:1 1996:1 1997:1 2008:1 2018:8 2019:2 2051:1 2053:1 2057:2 2063:3 2075:1 2088:3 2102:1 2107:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2186:1 2195:1 2211:1 2213:1 2216:1 2218:5 2219:1 2220:1 2223:1 2226:1 2232:1 2234:3 2238:1 2239:2 2240:4 2243:1 2251:1 2255:2 2258:1 2274:1 2276:1 2280:2 2281:2 2284:2 2285:8 2288:4 2291:1 2292:2 2293:4 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:1 2314:1 2316:6 2318:2 2319:7 2331:1 2332:1 2334:1 2348:1 2369:1 2380:2 2386:1 2393:1 2407:1 2411:1 2418:1 2430:3 2437:3 2438:1 2445:1 2448:1 2453:1 2460:1 2466:2 2482:3 2493:6 2505:1 2511:1 2515:1 2532:1 2537:1 2561:5 2570:3 2577:1 2595:2 2603:1 2608:2 2615:3 2618:2 2620:1 2623:1 2632:2 2661:2 2666:1 2682:1 2685:1 2699:1 2701:3 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2740:1 2745:1 2748:1 2761:1 2763:1 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:7 2825:3 2831:2 2841:1 2848:1 2880:1 2882:1 2883:1 2889:1 2890:1 2904:1 2912:2 2933:3 2935:1 2941:22 2959:4 2975:2 2980:1 2982:1 2995:1 3002:11 3032:3 3036:5 3038:1 3039:1 3050:1 3061:1 3064:1 3068:1 3082:1 3092:1 3095:1 3097:1 3146:4 3162:1 3169:1 3176:1 3177:1 3184:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3287:1 3304:1 3312:5 3325:1 3332:1 3338:1 3339:1 3343:1 3348:1 3361:1 3384:1 3386:3 3416:1 3431:1 3434:12 3481:1 3487:1 3510:2 3544:1 3551:1 3557:2 3561:1 3563:1 3564:2 3568:2 3571:1 3578:1 3581:1 3587:2 3615:1 3619:1 3628:1 3635:2 3640:1 3648:1 3665:1 3670:1 3674:1 3678:2 3681:5 3699:4 3705:2 3706:1 3708:2 3709:2 3712:1 3715:1 3736:2 3741:4 3751:1 3754:1 3773:1 3784:1 3787:1 3791:2 3792:3 3796:1 3800:2 3803:2 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:12 3873:1 3882:1 3888:1 3895:5 3897:1 3903:2 3904:12 3905:1 3906:1 3912:1 3923:1 3924:5 3932:1 3938:1 3955:1 3956:3 3958:1 3967:1 3969:1 3978:1 3981:1 3986:1 3992:1 3993:1 4000:1 4004:1 4016:1 4019:3 4022:3 4032:1 4045:1 4047:1 4053:1 4054:1 4058:1 4063:1 4077:4 4084:1 4085:1 4089:2 4093:1 4098:1 4099:2 4100:2 4108:4 4109:3 4114:1 4128:1 4144:1 4153:1 4165:1 4169:2 4181:1 4187:1 4196:2 4197:1 4204:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:3 4307:2 4315:1 4316:1 4321:1 4325:1 4364:1 4378:2 4381:2 4388:1 4405:1 4420:2 4455:2 4469:1 4474:5 4494:1 4504:1 4535:1 4546:2 4555:1 4572:1 4598:1 4601:1 4631:2 4661:1 4665:1 4675:1 4697:1 4699:2 4719:1 4724:1 4728:2 4741:3 4749:1 4751:1 4754:1 4772:1 4774:1 4788:1 4804:1 4807:8 4843:1 4854:1 4870:1 4875:1 4889:1 4896:1 4903:7 4907:1 4918:1 4921:1 4944:1 4951:1 4954:1 4986:3 5009:1 5019:19 5021:2 5024:1 5041:2 5052:1 5071:1 5078:2 5083:7 5091:1 5093:2 5115:1 5117:1 5131:1 5132:1 5134:1 5135:6 5151:4 5152:5 5153:1 5154:1 5155:1 5157:1 5159:3 5160:1 5162:1 5163:2 5166:1 5171:1 5173:2 5175:3 5176:1 5178:1 5184:1 5185:1 5187:4 5188:2 5211:1 5242:1 5271:1 5277:2 5279:1 5299:2 5317:1 5321:1 5326:2 5328:2 5336:2 5344:2 5359:1 5367:1 5385:1 5396:2 5404:3 5409:1 5435:1 5459:1 5464:1 5466:1 5482:1 5487:1 5512:2 5518:7 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5607:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:2 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:2 5736:1 5758:3 5763:1 5767:1 5772:1 5786:1 5792:3 5797:1 5808:4 5815:1 5816:1 5849:3 5873:2 5888:1 5897:3 5914:4 5917:1 5921:1 5939:1 5945:1 5959:1 5975:1 5977:1 6007:1 6011:1 6021:2 6028:1 6059:3 6066:1 6097:1 6102:2 6129:1 6152:1 6183:3 6184:1 6205:14 6226:4 6229:1 6231:4 6238:1 6242:1 6247:1 6248:3 6249:2 6257:1 6280:3 6297:1 6301:1 6303:1 6308:1 6325:1 6345:1 6356:1 6380:2 6384:2 6385:1 6390:1 6400:1 6404:2 6426:5 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:2 6488:1 6501:3 6503:1 6505:1 6507:1 6511:1 6515:2 6517:1 6518:2 6519:2 6520:4 6525:4 6526:9 6527:5 6530:1 6539:1 6568:1 6571:1 6591:1 6646:3 6648:1 6649:1 6681:2 6699:2 6743:1 6750:1 6763:1 6769:1 6777:1 6797:1 6798:1 6803:1 6814:1 6816:1 6822:1 6836:1 6844:1 6851:1 6855:1 6897:1 6898:2 6909:1 6911:1 6916:1 6919:2 6920:1 6924:1 6929:1 6940:7 6960:2 6968:3 6973:1 6985:1 6987:1 6997:1 7002:1 7019:1 7029:1 7045:2 7047:1 7049:2 7058:2 7086:2 7087:2 7091:3 7100:1 7113:3 7114:2 7128:1 7131:1 7142:1 7147:2 7148:1 7150:2 7154:1 7160:1 7177:1 7212:1 7220:1 7253:10 7255:1 7273:1 7281:2 7300:1 7302:1 7306:1 7310:1 7312:1 7332:1 7336:1 7337:1 7369:2 7411:2 7416:1 7435:2 7452:1 7479:2 7491:3 7495:1 7500:1 7505:2 7506:1 7509:1 7516:1 7521:1 7527:1 7539:1 7549:4 7554:3 7555:1 7559:1 7579:2 7583:1 7596:2 7597:1 7603:2 7622:1 7627:2 7644:1 7663:1 7672:2 7690:1 7723:1 7725:1 7726:2 7756:2 7757:12 7758:3 7771:2 7784:2 7785:3 7786:1 7812:4 7813:1 7831:50 7836:1 7854:4 7855:11 7857:1 7860:1 7883:2 7908:1 7911:1 7923:1 7940:1 7944:2 7964:1 7966:1 7967:2 8035:2 8059:1 8062:3 8087:1 8093:1 8108:1 8112:4 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8223:1 8226:1 8233:1 8250:1 8258:1 8265:2 8266:3 8267:1 8269:1 8285:1 8287:2 8317:1 8319:1 8324:2 8330:1 8333:2 8338:2 8343:1 8348:2 8357:1 8358:7 8389:2 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8564:1 8566:1 8589:1 8591:1 8599:2 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:3 8638:1 8646:1 8656:1 8664:5 8667:1 8669:1 8671:1 8701:1 8716:1 8728:1 8736:1 8739:3 8740:5 8743:4 8744:2 8746:1 8748:3 8749:8 8752:2 8753:2 8755:1 8757:1 8767:1 8768:2 8784:4 8790:1 8792:3 8816:3 8820:1 8822:2 8826:2 8829:2 8834:1 8837:4 8853:1 8892:2 8906:1 8907:1 8930:1 8939:1 8958:1 8968:1 8974:1 8988:1 9008:1 9017:3 9024:1 9033:2 9041:3 9063:2 9066:1 9073:4 9074:1 9078:2 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9171:1 9177:1 9188:2 9199:4 9202:2 9220:1 9222:1 9241:3 9252:1 9263:1 9275:1 9276:2 9278:1 9292:1 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:3 9373:1 9387:1 9394:1 9401:2 9411:1 9420:2 9421:1 9459:1 9463:1 9467:7 9469:1 9470:1 9474:2 9477:1 9486:31 9489:2 9490:2 9508:2 9510:1 9523:1 9535:1 9567:1 9572:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:6 9634:2 9659:1 9676:1 9684:3 9702:1 9728:1 9749:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9824:1 9828:2 9831:1 9843:1 9844:1 9845:5 9851:1 9861:1 9869:3 9877:2 9886:1 9895:2 9919:2 9949:7 9962:2 9965:1 9966:4 9972:2 9974:1 9986:1 9991:1 9993:1 9995:1 10004:1 10005:1 10035:3 10053:1 10057:1 10065:1 10089:2 10093:1 10108:7 10113:1 10120:1 10126:1 10135:4 10142:1 10143:2 10145:1 10147:2 10149:1 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10186:1 10196:3 10198:1 10202:2 10203:1 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10308:1 10309:1 10329:1 10336:1 10345:1 10368:1 10397:1 10399:1 10401:1 10402:1 10418:2 10443:1 10466:1 10479:1 10481:1 10489:1 10520:1 10525:2 10550:3 10570:1 10576:1 10588:1 10608:2 10609:1 10625:3 10630:2 10638:2 10653:1 10655:1 10689:1 10690:1 10699:1 10712:1 10722:1 10724:1 10764:1 10767:1 10769:1 10788:1 10790:3 10794:2 10800:5 10809:1 10810:1 10811:1 10813:1 10823:1 10824:2 10841:3 10844:3 10846:1 10854:1 10865:3 10866:1 10867:1 10876:3 10878:3 10886:2 10888:1 10890:2 10892:1 10895:1 10916:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:3 10990:11 11055:1 11056:1 11065:1 11067:1 11079:1 11112:2 11117:1 11137:1 11159:1 11180:1 11193:1 11211:1 11224:1 11236:1 11254:3 11257:2 11260:2 11262:2 11269:2 11283:2 11291:1 11298:1 11299:1 11302:1 11312:1 11323:1 11347:6 11351:1 11372:4 11377:1 11378:1 11381:1 11385:1 11433:1 11434:2 11435:2 11437:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11501:1 11507:1 11516:1 11544:1 11554:1 11557:1 11566:1 11579:1 11583:5 11590:1 11602:1 11613:1 11616:1 11627:1 11637:1 11643:2 11650:1 11653:2 11659:1 11660:1 11674:2 11675:1 11677:2 11682:1 11686:3 11706:6 11715:1 11749:1 11752:10 11753:1 11755:1 11772:1 11789:1 11790:1 11797:1 11819:1 11820:1 11830:1 11831:2 11848:1 11850:1 11852:1 11853:1 11860:1 11861:1 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:2 11930:3 11933:7 11958:1 11960:3 11962:6 11963:1 11989:1 11994:1 12006:1 12009:1 12012:3 12020:1 12025:1 12026:2 12029:3 12032:1 12042:1 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:7 12085:1 12097:8 12108:1 12111:1 12127:1 12132:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:1 12263:1 12265:2 12291:1 12304:3 12306:1 12313:1 12315:1 12321:1 12340:1 12346:1 12359:3 12362:3 12382:1 12411:3 12414:1 12426:1 12433:1 12439:1 12442:1 12526:1 12540:1 12542:1 12543:2 12544:3 12545:2 12560:1 12571:1 12592:1 12593:1 12602:3 12603:5 12608:2 12611:1 12615:1 12619:2 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:6 12747:1 12753:1 12782:2 12785:1 12798:1 12806:1 12807:1 12810:2 12824:3 12843:2 12847:2 12872:1 12880:1 12896:1 12899:2 12904:2 12934:1 12935:1 12950:1 12953:1 12954:4 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13091:8 13100:1 13108:1 13113:1 13114:1 13116:1 13126:1 13131:15 13136:1 13142:1 13151:2 13153:5 13155:1 13161:1 13180:1 13189:1 13192:1 13195:3 13199:3 13222:2 13246:1 13250:1 13255:1 13256:4 13259:2 13270:2 13281:1 13283:1 13285:1 13288:1 13291:2 13292:1 13315:1 13330:3 13334:1 13339:1 13341:1 13362:1 13393:1 13406:1 13417:1 13450:1 13454:7 13458:1 13474:1 13503:1 13504:1 13523:1 13550:8 13556:1 13573:2 13584:1 13588:5 13595:4 13609:1 13611:6 13632:1 13633:1 13647:1 13652:1 13663:1 13665:1 13666:1 13684:2 13690:5 13715:1 13726:1 13732:1 13734:1 13747:6 13754:1 13756:3 13757:1 13772:1 13773:1 13774:2 13781:1 13786:1 13800:2 13802:1 13807:1 13808:1 13829:1 13830:4 13833:1 13840:1 13847:3 13854:1 13862:2 13865:1 13880:2 13887:7 13909:1 13913:1 13915:1 13933:4 13937:1 13938:3 13961:1 13973:1 13987:2 14008:1 14018:1 14036:1 14076:1 14081:1 14092:1 14116:3 14118:1 14120:2 14123:4 14124:2 14127:2 14138:1 14146:1 14149:1 14170:3 14186:1 14191:3 14198:2 14201:1 14204:1 14205:1 14233:1 14243:6 14254:1 14277:2 14290:3 14292:1 14304:2 14316:1 14339:7 14343:1 14345:3 14346:1 14352:1 14359:1 14399:1 14401:1 14414:1 14426:3 14445:9 14455:1 14486:1 14489:2 14508:1 14525:1 14530:1 14531:1 14535:1 14560:1 14577:6 14591:1 14602:3 14611:1 14613:1 14624:1 14643:1 14649:1 14651:1 14667:4 14668:1 14669:1 14681:1 14705:1 14720:1 14730:2 14732:1 14741:1 14751:1 14757:2 14768:2 14780:1 14783:3 14794:1 14795:1 14796:3 14797:9 14800:1 14803:6 14808:1 14812:3 14814:1 14815:2 14825:1 14833:1 14836:1 14861:1 14871:1 14913:1 14914:1 14927:5 14932:1 14961:2 14971:2 14978:1 14984:4 14996:1 15003:1 15012:1 15013:3 15032:1 15037:3 15038:1 15060:1 15084:2 15099:2 15106:2 15109:2 15112:1 15113:1 15126:2 15129:1 15134:4 15137:1 15152:3 15157:1 15166:2 15181:1 15183:1 15253:1 15266:1 15270:1 15278:1 15303:2 15328:3 15329:1 15332:1 15334:1 15347:1 15349:1 15395:1 15396:1 15408:6 15410:1 15424:1 15425:1 15428:2 15444:1 15449:6 15450:3 15470:2 15483:1 15494:1 15497:1 15510:1 15511:1 15532:8 15535:1 15538:1 15543:1 15549:1 15569:1 15599:1 15624:1 15638:4 15641:1 15651:1 15655:1 15668:1 15670:2 15681:1 15683:1 15692:3 15693:1 15698:2 15700:1 15715:1 15727:1 15735:1 15748:1 15754:1 15761:2 15774:2 15789:1 15820:2 15849:1 15863:10 15882:1 15886:2 15918:1 15924:2 15938:1 15941:1 15950:4 15951:1 15961:4 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16081:1 16114:2 16118:1 16128:7 16133:3 16140:1 16141:3 16151:1 16160:2 16165:3 16171:2 16172:1 16173:5 16174:2 16176:1 16184:1 16189:1 16228:1 16233:1 16243:1 16266:1 16275:1 16306:7 16312:1 16325:1 16335:2 16339:1 16345:1 16348:1 16359:3 16387:2 16403:6 16404:3 16406:1 16410:1 16411:1 16452:1 16459:3 16468:1 16472:1 16478:1 16484:4 16488:2 16499:1 16536:1 16552:1 16553:3 16599:1 16607:1 16612:17 16613:1 16618:1 16624:1 16629:4 16635:1 16640:1 16641:1 16649:1 16652:1 16663:1 16670:2 16690:3 16693:1 16698:1 16707:2 16714:1 16716:1 16717:1 16726:1 16734:1 16740:1 16741:1 16745:2 16756:2 16760:1 16763:1 16789:1 16791:2 16826:3 16828:1 16829:1 16830:2 16850:1 16885:1 16896:1 16922:1 16944:1 16960:1 16963:1 16966:2 16990:1 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:2 17133:1 17156:1 17158:1 17167:1 17177:1 17178:1 17188:1 17212:1 17216:1 17234:1 17237:2 17245:2 17255:2 17272:1 17279:1 17281:1 17287:3 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:2 17374:1 17407:4 17411:1 17413:5 17419:1 17436:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:1 17499:2 17506:1 17510:1 17516:2 17535:4 17551:1 17553:1 17564:1 17565:1 17569:2 17584:2 17586:1 17613:1 17617:1 17625:1 17630:1 17632:2 17639:6 17646:1 17666:1 17668:6 17671:1 17684:1 17690:1 17711:2 17712:2 17735:3 17737:2 17750:1 17754:1 17761:1 17762:1 17763:2 17777:2 17778:7 17779:1 17787:2 17820:1 17832:1 17844:1 17850:2 17857:2 17898:1 17921:1 17946:1 17962:1 17968:3 17975:2 17980:2 18000:1 18004:1 18018:1 18025:1 18037:1 18039:1 18041:1 18043:3 18050:2 18051:1 18053:1 18060:3 18070:3 18071:1 18072:2 18076:1 18106:1 18110:1 18126:5 18127:3 18141:1 18151:1 18154:2 18185:1 18189:1 18196:7 18210:1 18240:1 18245:1 18252:2 18255:2 18256:1 18259:1 18263:1 18276:1 18281:2 18283:5 18286:1 18288:1 18291:1 18304:1 18323:1 18324:1 18327:1 18344:1 18365:1 18366:3 18395:1 18403:2 18418:1 18422:1 18424:8 18426:1 18430:4 18436:27 18441:1 18444:1 18447:1 18451:2 18455:1 18459:1 18476:4 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18528:1 18532:1 18537:2 18546:1 18548:1 18549:1 18550:1 18553:1 18569:1 18575:1 18586:1 18591:4 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:2 18698:1 18712:1 18720:1 18723:2 18736:5 18738:1 18740:1 18750:1 18761:1 18774:1 18780:1 18805:1 18812:1 18843:1 18845:1 18867:1 18888:2 18891:2 18905:1 18915:1 18918:1 18928:1 18935:1 18962:1 18968:3 18969:1 19001:2 19069:4 19081:1 19095:1 19106:1 19113:1 19125:1 19148:2 19152:1 19153:1 19157:1 19172:2 19188:1 19191:5 19199:1 19218:1 19225:1 19229:1 19237:1 19245:3 19251:2 19254:2 19259:1 19275:1 19279:1 19287:5 19291:1 19294:1 19300:1 19304:1997 19308:1 19318:1 19324:1 19367:3 19368:1 19377:3 19402:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:1 19506:1 19507:1 19521:1 19529:3 19535:6 19542:1 19548:5 19551:2 19552:4 19583:1 19629:6 19633:2 19635:2 19641:1 19642:1 19665:1 19666:31 19675:1 19686:1 19692:7 19716:1 19747:1 19756:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:3 19857:1 19860:1 19868:1 19882:1 19898:2 19908:1 19920:1 19927:1 19928:1 19953:1 19957:1 19964:1 19978:2 19981:2 19982:3 20010:1 20014:1 20018:2 20021:3 20027:1 20033:1 20036:1 20038:1 20043:3 20049:1 20053:1 20058:1 20064:1 20074:5 20078:1 20082:1 20091:1 20092:2 20106:2 20108:1 20127:1 20131:10 20147:1 20148:1 20172:7 20173:1 20183:1 20184:1 20188:1 20198:1 20242:1 20247:3 20296:1 20300:1 20313:1 20329:4 20331:1 20336:3 20339:2 20351:1 20353:1 20372:1 20374:3 20375:1 20387:3 20399:1 20429:1 20434:1 20463:1 20468:1 20501:3 20516:1 20528:1 20559:2 20570:1 20571:1 20577:1 20584:2 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:3 20616:2 20620:4 20622:1 20624:1 20629:4 20641:1 20657:1 20664:1 20666:1 20681:1 20687:1 20692:2 20705:1 20708:1 20733:1 20754:2 20756:4 20760:1 20783:1 20790:1 20791:4 20805:1 20807:1 20817:2 20828:1 20832:1 20844:1 20848:1 20850:2 20868:1 20875:1 20884:1 20886:1 20901:1 20912:4 20918:1 20920:1 20923:1 20928:2 20932:1 20941:1 20962:2 20964:2 20980:1 21002:5 21032:1 21057:6 21058:3 21062:2 21068:2 21074:1 21080:1 21120:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21217:1 21220:1 21251:1 21255:3 21258:1 21259:4 21271:1 21290:1 21296:1 21298:1 21299:6 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:2 21407:1 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21475:1 21511:1 21514:1 21515:1 21526:1 21529:3 21539:1 21546:4 21547:1 21549:1 21550:1 21552:1 21553:1 21561:1 21574:3 21579:1 21584:1 21587:1 21588:2 21595:1 21605:1 21613:5 21647:1 21656:2 21658:1 21659:3 21660:1 21673:1 21675:1 21702:3 21712:1 21739:1 21761:1 21788:1 21796:2 21802:2 21810:1 21832:1 21836:2 21840:2 21863:6 21872:1 21873:1 21875:1 21894:1 21901:1 21907:2 21952:2 21965:1 21971:1 21976:1 21979:2 21985:1 21989:1 22005:1 22022:2 22045:1 22058:1 22061:1 22076:1 22078:1 22082:1 22122:1 22149:1 22160:1 22176:1 22177:1 22194:1 22225:1 22240:1 22241:2 22243:1 22250:1 22254:2 22256:1 22258:2 22265:1 22272:2 22273:3 22275:1 22282:2 22283:1 22287:1 22289:1 22291:1 22292:1 22298:1 22321:1 22325:1 22332:1 22338:1 22346:4 22359:1 22361:1 22363:1 22365:1 22370:2 22371:2 22376:1 22378:1 22383:2 22391:1 22401:1 22408:1 22413:1 22415:9 22419:1 22432:1 22433:2 22436:1 22437:1 22447:1 22455:1 22477:1 22491:1 22504:1 22507:2 22511:1 22513:1 22519:1 22525:8 22532:1 22539:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22624:1 22625:1 22632:1 22635:1 22661:1 22665:4 22672:1 22676:1 22678:1 22679:2 22681:1 22682:1 22688:1 22697:2 22698:3 22716:2 22720:1 22735:1 22752:2 22766:2 22790:1 22798:2 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:3 22892:3 22897:1 22902:1 22924:1 22933:1 22940:1 22943:1 22947:2 22959:2 22961:1 22975:3 23017:1 23023:1 23029:1 23033:1 23034:1 23052:4 23053:5 23056:3 23057:1 23059:2 23072:2 23073:1 23089:1 23096:1 23109:1 23111:4 23118:1 23124:1 23125:1 23131:2 23134:1 23142:3 23144:2 23145:4 23154:1 23162:2 23165:1 23173:1 23174:1 23177:1 23178:3 23185:1 23205:2 23226:1 23229:2 23231:1 23233:1 23241:1 23243:1 23251:3 23260:1 23263:2 23270:1 23290:1 23291:4 23292:1 23302:1 23309:2 23315:27 23320:1 23321:2 23323:4 23326:1 23327:3 23329:2 23333:1 23334:1 23336:1 23352:3 23354:1 23361:3 23364:1 23368:2 23384:2 23385:2 23389:1 23400:1 23425:2 23437:1 23440:1 23487:3 23497:1 23501:6 23509:1 23530:2 23535:1 23552:1 23560:1 23569:1 23594:1 23596:2 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:3 23655:2 23663:1 23664:1 23685:1 23702:1 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23828:1 23830:1 23837:2 23844:1 23859:1 23860:1 23869:1 23872:1 23887:1 23888:2 23894:1 23903:2 23906:1 23926:3 23927:1 23928:1 23944:3 23952:3 23955:2 23977:2 23978:1 23982:1 23984:1 23992:2 23997:1 24038:1 24066:1 24079:1 24125:1 24129:1 24144:1 24166:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24196:3 24209:2 24214:2 24215:1 24218:1 24220:1 24228:1 24232:1 24258:2 24270:3 24278:1 24280:2 24282:1 24291:1 24293:1 24309:1 24325:1 24333:1 24336:1 24343:12 24351:1 24376:2 24393:1 24423:1 24424:1 24425:1 24443:1 24488:1 24497:1 24513:1 24515:1 24526:2 24533:2 24543:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:1 24620:6 24622:1 24623:1 24631:1 24638:1 24649:1 24652:1 24661:2 24725:1 24728:1 24731:1 24746:3 24748:1 24761:1 24762:1 24764:2 24774:1 24788:1 24791:2 24801:1 24822:1 24839:1 24862:1 24863:1 24902:3 24912:5 24914:1 24923:4 24927:1 24944:1 24947:1 24955:2 24956:1 24957:1 24964:1 24973:2 24974:1 24995:2 25011:1 25028:3 25030:2 25032:1 25036:1 25060:1 25068:1 25085:1 25087:1 25093:1 25099:3 25100:2 25106:1 25115:1 25117:1 25127:1 25136:1 25147:1 25148:1 25150:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:1 25220:1 25221:2 25222:1 25224:7 25226:3 25228:4 25229:2 25234:1 25235:2 25236:2 25238:1 25248:2 25249:3 25255:2 25262:2 25268:4 25297:1 25300:2 25301:1 25315:2 25327:1 25337:4 25343:3 25363:2 25369:1 25370:1 25381:3 25393:1 25410:1 25414:1 25415:2 25439:1 25460:1 25463:1 25478:1 25504:3 25530:4 25540:1 25545:4 25565:2 25566:1 25590:1 25601:1 25602:2 25604:1 25616:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25718:1 25752:3 25767:1 25778:1 25781:1 25785:3 25794:2 25797:1 25828:4 25861:1 25879:2 25887:1 25900:1 25903:4 25909:1 25910:1 25915:1 25922:1 25927:1 25929:1 25931:4 25988:1 26007:1 26011:2 26023:2 26025:4 26060:10 26069:1 26083:9 26104:1 26112:1 26122:1 26127:1 26138:1 26146:2 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:6 26270:1 26280:2 26285:2 26288:8 26293:2 26294:4 26304:1 26307:1 26311:1 26317:2 26320:1 26328:1 26329:1 26334:1 26348:1 26358:1 26363:2 26373:1 26379:4 26387:1 26400:1 26410:3 26416:2 26420:2 26422:2 26482:1 26494:1 26495:1 26511:1 26519:1 26523:1 26534:1 26560:1 26563:1 26579:1 26589:1 26590:3 26591:1 26593:2 26614:5 26643:1 26646:1 26648:1 26656:1 26662:1 26668:1 26698:1 26716:1 26741:1 26754:1 26760:1 26768:1 26776:1 26805:1 26826:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26893:1 26901:1 26902:1 26907:2 26918:2 26925:1 26939:1 26954:1 26957:2 26974:1 26983:3 26989:1 26997:1 26998:2 27020:5 27046:1 27047:4 27070:1 27089:1 27091:1 27094:2 27095:1 27107:1 27118:1 27119:1 27127:2 27138:2 27157:2 27174:1 27178:5 27179:1 27212:3 27216:1 27234:1 27236:1 27239:1 27260:2 27278:1 27299:4 27320:2 27321:1 27322:1 27327:1 27329:1 27330:1 27334:3 27335:1 27341:1 27372:1 27375:2 27378:1 27381:1 27387:1 27389:1 27406:1 27415:2 27421:1 27438:2 27439:1 27453:1 27454:2 27459:1 27482:1 27484:2 27510:1 27530:2 27535:1 27539:1 27555:1 27574:3 27583:5 27608:2 27613:1 27665:1 27670:1 27686:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:1 27775:1 27780:1 27781:1 27787:1 27791:1 27792:1 27800:1 27804:1 27807:1 27822:1 27826:2 27845:1 27873:1 27875:1 27888:1 27897:1 27912:2 27917:1 27920:1 27924:3 27940:4 27957:4 27965:5 27974:1 27990:1 27991:1 27997:1 28011:2 28025:1 28033:1 28043:1 28044:10 28071:1 28083:1 28087:2 28097:1 28098:1 28101:1 28102:2 28109:12 28151:3 28188:2 28189:1 28193:1 28213:2 28218:5 28225:2 28226:2 28242:2 28246:1 28251:3 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:3 28322:1 28335:2 28337:1 28347:1 28361:1 28372:1 28377:1 28381:1 28384:1 28398:1 28407:1 28409:1 28414:2 28416:1 28418:1 28420:1 28458:1 28459:1 28499:1 28529:1 28533:1 28554:4 28557:1 28564:1 28588:1 28589:1 28600:2 28616:4 28619:1 28627:1 28637:1 28649:1 28672:1 28681:1 28686:1 28736:1 28755:2 28779:1 28801:1 28825:3 28845:1 28858:1 28860:6 28872:1 28893:1 28896:3 28919:1 28928:2 28938:1 28958:1 28959:1 28961:1 28978:1 28980:1 28983:1 28992:25 28993:4 28996:5 28998:1 28999:3 29011:1 29034:7 29048:1 29092:1 29100:2 29107:1 29115:1 29120:1 29131:1 29132:2 29142:3 29146:2 29176:11 29177:1 29180:2 29184:1 29186:1 29190:1 29210:1 29213:1 29216:1 29221:2 29228:2 29236:1 29238:1 29245:2 29251:1 29262:1 29267:1 29268:2 29278:2 29281:1 29293:1 29295:1 29300:1 29302:1 29307:1 29343:1 29347:1 29362:2 29364:1 29365:1 29387:1 29388:1 29391:1 29405:3 29409:1 29420:1 29447:1 29449:1 29471:1 29473:2 29474:2 29477:1 29498:1 29514:1 29518:1 29522:1 29524:1 29525:1 29529:1 29532:2 29538:1 29539:1 29548:1 29550:1 29551:1 29559:1 29566:2 29567:1 29569:1 29570:1 29579:1 29587:2 29632:1 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29712:1 29716:1 29717:1 29718:1 29722:1 29723:2 29736:1 29740:3 29743:1 29749:1 29758:1 29766:1 29767:7 29773:1 29777:1 29780:5 29782:1 29788:1 29801:1 29828:1 29832:1 29839:2 29840:1 29882:3 29890:1 29900:1 29914:3 29918:1 29920:2 29925:1 29927:1 29931:6 29940:1 29949:1 29969:1 29970:1 30001:2 30002:1 30011:1 30012:1 30035:2 30058:2 30081:1 30088:1 30104:1 30108:2 30113:1 30122:1 30136:1 30150:2 30187:1 30194:7 30206:1 30208:1 30210:1 30231:7 30243:5 30244:1 30250:1 30273:1 30311:1 30320:8 30322:3 30324:2 30326:1 30328:1 30331:3 30332:2 30344:1 30353:1 30362:1 30363:2 30367:3 30371:3 30408:1 30421:1 9 11:1 14:1 30:1 43:1 50:2 74:1 79:1 83:1 85:1 99:1 103:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 163:1 176:1 180:1 187:1 189:3 201:1 206:4 236:7 257:1 283:1 303:1 315:2 325:1 327:32 338:2 355:1 356:3 357:4 362:1 366:1 378:2 380:1 397:1 419:1 441:2 460:3 469:1 478:1 480:1 550:1 558:1 589:1 591:4 592:1 600:2 603:3 625:4 635:2 637:1 638:1 639:1 657:2 671:1 682:2 685:1 691:1 693:1 703:1 724:1 732:1 736:1 747:1 758:1 774:1 788:1 791:1 802:1 804:1 819:1 824:1 833:1 843:1 854:1 856:2 857:1 880:1 883:7 885:3 897:1 899:2 900:1 911:1 914:14 917:1 929:1 933:1 938:5 941:7 946:2 952:1 953:1 959:1 964:3 978:1 985:2 986:2 997:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:2 1060:2 1076:1 1080:2 1084:1 1102:1 1103:1 1115:2 1126:1 1133:1 1141:1 1142:1 1143:2 1148:1 1156:3 1163:1 1164:2 1172:1 1176:1 1187:1 1194:1 1201:3 1206:1 1213:1 1230:1 1258:2 1291:1 1292:1 1300:2 1303:1 1313:1 1333:1 1336:1 1342:1 1353:1 1379:1 1380:1 1393:1 1404:1 1411:3 1434:1 1441:2 1443:1 1461:1 1464:2 1468:3 1471:5 1474:1 1487:1 1490:2 1491:1 1493:1 1494:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:4 1614:1 1621:1 1636:1 1639:1 1641:2 1642:3 1650:1 1658:1 1677:4 1680:1 1700:1 1701:3 1706:6 1712:2 1732:1 1733:1 1751:1 1752:1 1775:1 1785:1 1803:1 1814:2 1818:1 1827:1 1830:1 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1884:1 1886:1 1908:1 1934:1 1954:1 1958:18 1965:1 1970:2 1981:1 1986:1 1991:1 1996:1 1997:1 2008:1 2018:8 2019:2 2051:1 2053:1 2057:2 2063:3 2075:1 2088:3 2102:1 2107:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2186:1 2195:1 2211:1 2213:1 2216:1 2218:5 2219:1 2220:1 2223:1 2226:1 2232:1 2234:4 2238:1 2239:2 2240:4 2243:1 2251:1 2255:2 2258:1 2274:1 2276:1 2280:2 2281:2 2284:2 2285:8 2288:4 2291:1 2292:2 2293:4 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:1 2314:1 2316:6 2318:2 2319:7 2331:1 2332:1 2334:1 2348:1 2369:1 2380:2 2386:1 2393:1 2407:1 2411:1 2418:1 2430:3 2437:3 2438:1 2445:1 2448:1 2453:1 2460:1 2466:2 2482:3 2493:6 2505:1 2511:1 2515:1 2532:1 2537:1 2561:5 2570:3 2577:1 2595:2 2603:1 2608:2 2615:3 2618:2 2620:1 2623:1 2632:2 2661:2 2666:1 2682:1 2685:1 2699:1 2701:3 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2740:1 2745:1 2748:1 2761:1 2763:2 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:7 2825:3 2831:3 2841:1 2848:1 2880:1 2882:1 2883:1 2889:1 2890:2 2904:1 2912:2 2933:4 2935:1 2941:23 2959:4 2975:2 2980:1 2982:1 2995:1 3002:11 3032:4 3036:6 3038:1 3039:1 3050:1 3061:1 3064:1 3068:1 3082:1 3092:1 3095:1 3097:1 3146:4 3162:1 3169:1 3176:1 3177:1 3184:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3287:1 3304:1 3312:5 3325:1 3332:1 3338:1 3339:1 3343:1 3348:1 3361:1 3370:1 3384:1 3386:3 3416:1 3431:1 3434:12 3481:1 3487:1 3510:2 3544:1 3551:1 3557:2 3561:1 3563:1 3564:2 3568:2 3571:1 3578:1 3581:1 3587:2 3601:1 3615:1 3619:1 3628:1 3635:2 3640:1 3648:1 3665:2 3670:1 3674:1 3678:2 3681:6 3699:5 3705:2 3706:1 3708:2 3709:2 3712:1 3715:1 3736:2 3741:4 3751:1 3754:1 3773:1 3784:1 3787:1 3791:2 3792:3 3796:1 3800:2 3803:2 3816:1 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:12 3873:1 3882:1 3888:1 3895:5 3897:1 3903:2 3904:12 3905:1 3906:1 3912:1 3923:1 3924:5 3932:1 3938:1 3955:1 3956:3 3958:1 3967:1 3969:1 3978:1 3981:1 3986:1 3992:1 3993:1 4000:1 4004:1 4016:1 4019:3 4022:3 4032:1 4045:1 4047:1 4053:1 4054:1 4058:1 4063:1 4077:4 4084:1 4085:1 4089:2 4093:1 4098:1 4099:2 4100:2 4108:4 4109:3 4114:1 4128:1 4144:1 4153:1 4165:1 4169:2 4181:1 4187:1 4196:2 4197:1 4204:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:3 4307:2 4315:1 4316:1 4321:1 4325:1 4364:1 4378:2 4381:2 4388:1 4405:1 4420:2 4455:2 4469:1 4474:5 4494:1 4504:1 4535:1 4546:2 4555:1 4572:1 4598:1 4601:1 4631:2 4661:1 4665:1 4675:1 4697:1 4699:2 4719:1 4724:1 4728:2 4741:3 4749:1 4751:1 4754:1 4772:2 4774:1 4788:1 4789:1 4804:1 4807:8 4843:1 4854:1 4870:1 4875:1 4889:1 4896:1 4903:7 4907:1 4918:1 4921:1 4935:1 4944:1 4951:1 4954:1 4986:3 5009:1 5019:21 5021:2 5024:1 5041:2 5052:1 5071:1 5078:2 5083:7 5091:1 5093:2 5115:1 5117:1 5131:1 5132:1 5134:1 5135:6 5151:4 5152:5 5153:1 5154:1 5155:1 5157:1 5159:3 5160:1 5162:1 5163:2 5166:1 5171:1 5173:2 5175:3 5176:1 5178:1 5184:1 5185:1 5187:4 5188:3 5211:1 5242:1 5246:1 5271:2 5277:2 5279:1 5299:2 5317:1 5321:1 5326:2 5328:2 5336:2 5344:2 5359:1 5367:1 5385:1 5396:2 5404:3 5409:1 5435:1 5459:1 5464:1 5466:1 5482:1 5487:1 5512:2 5518:7 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5607:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:2 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:2 5736:1 5758:3 5763:1 5767:1 5772:1 5786:1 5792:3 5797:1 5808:4 5815:1 5816:1 5849:3 5873:3 5888:1 5897:3 5914:4 5917:1 5921:1 5939:1 5945:1 5959:1 5975:1 5977:1 6007:1 6011:1 6021:2 6028:1 6059:3 6066:1 6097:1 6102:2 6129:1 6152:1 6183:3 6184:1 6205:14 6226:4 6229:1 6231:4 6238:1 6242:1 6247:1 6248:3 6249:2 6257:1 6280:3 6297:1 6301:1 6303:1 6308:1 6325:1 6345:1 6356:1 6380:2 6384:2 6385:1 6390:1 6400:1 6404:2 6410:1 6426:5 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:2 6488:1 6501:3 6503:1 6505:1 6507:2 6511:1 6515:2 6517:1 6518:2 6519:3 6520:4 6525:4 6526:9 6527:5 6530:1 6539:1 6568:1 6571:1 6591:2 6646:3 6648:1 6649:1 6681:2 6699:2 6743:1 6750:1 6763:1 6769:1 6777:1 6797:2 6798:1 6803:1 6814:1 6816:1 6822:2 6832:1 6836:1 6844:1 6851:1 6855:1 6897:1 6898:2 6909:1 6911:1 6916:1 6919:2 6920:1 6924:1 6929:1 6940:7 6949:1 6960:2 6968:4 6973:1 6985:1 6987:1 6997:1 7002:1 7019:1 7029:1 7045:2 7047:1 7049:2 7058:2 7086:2 7087:2 7091:3 7098:1 7100:1 7113:3 7114:2 7128:1 7131:1 7142:1 7147:2 7148:1 7150:2 7154:1 7160:1 7177:2 7212:1 7220:1 7253:10 7255:1 7273:1 7281:2 7300:1 7302:1 7306:2 7310:1 7312:1 7332:1 7336:1 7337:1 7369:2 7411:2 7416:1 7435:2 7452:1 7479:2 7491:3 7495:1 7500:1 7505:2 7506:1 7509:1 7516:1 7521:1 7527:1 7539:1 7549:5 7554:3 7555:1 7559:1 7579:2 7583:1 7596:2 7597:1 7603:2 7622:1 7627:2 7644:1 7663:1 7672:2 7690:1 7719:1 7723:1 7725:1 7726:2 7756:2 7757:12 7758:4 7771:2 7784:2 7785:3 7786:1 7812:4 7813:1 7831:50 7836:1 7854:5 7855:11 7857:1 7860:2 7883:2 7908:1 7911:1 7923:1 7940:2 7944:2 7964:1 7966:1 7967:2 7982:1 8035:2 8059:1 8062:3 8072:1 8087:1 8093:2 8108:1 8112:6 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8223:1 8226:1 8233:1 8250:1 8258:1 8265:2 8266:3 8267:1 8269:1 8285:1 8287:2 8306:1 8317:1 8319:1 8324:2 8330:1 8333:2 8338:2 8343:1 8348:3 8357:1 8358:7 8389:2 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8564:1 8566:1 8589:1 8591:1 8599:2 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:3 8638:1 8646:1 8656:1 8664:5 8667:1 8669:1 8671:1 8701:1 8711:1 8716:1 8728:1 8736:1 8739:3 8740:5 8743:4 8744:2 8746:1 8748:3 8749:8 8752:2 8753:3 8755:1 8757:1 8767:1 8768:2 8784:4 8790:1 8792:3 8816:3 8820:1 8822:2 8826:2 8829:2 8834:1 8837:4 8853:1 8891:1 8892:2 8906:1 8907:1 8930:1 8939:1 8958:1 8968:1 8973:1 8974:1 8988:1 9008:1 9017:3 9024:1 9033:2 9041:3 9063:2 9066:1 9073:4 9074:1 9078:2 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9171:1 9177:1 9188:2 9199:5 9202:2 9220:1 9222:1 9241:3 9252:1 9263:1 9275:1 9276:2 9278:1 9292:1 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:3 9373:1 9387:1 9394:2 9401:2 9403:1 9411:1 9420:2 9421:1 9459:1 9463:1 9467:7 9469:1 9470:1 9474:2 9477:1 9486:32 9489:2 9490:2 9508:2 9510:1 9520:1 9523:1 9535:1 9567:1 9572:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:6 9634:2 9659:1 9676:1 9684:3 9702:1 9724:1 9728:1 9749:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9824:1 9828:2 9831:1 9843:1 9844:1 9845:5 9851:1 9861:1 9869:4 9877:2 9886:1 9895:2 9919:2 9949:7 9962:2 9965:1 9966:4 9972:2 9974:1 9986:1 9991:1 9993:1 9995:1 10004:1 10005:1 10035:3 10053:1 10057:1 10065:1 10081:1 10089:2 10093:1 10108:7 10113:1 10120:1 10126:1 10135:4 10142:1 10143:2 10145:1 10147:2 10149:1 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10186:1 10196:3 10198:1 10202:2 10203:1 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10308:1 10309:1 10329:1 10336:1 10345:1 10368:1 10397:1 10399:1 10400:1 10401:1 10402:1 10418:2 10443:1 10466:1 10479:1 10481:1 10489:1 10520:1 10525:2 10550:3 10570:1 10576:1 10588:1 10590:1 10608:2 10609:1 10625:3 10630:2 10638:2 10653:1 10655:1 10689:1 10690:1 10699:1 10712:1 10720:1 10722:1 10724:1 10764:1 10767:1 10769:1 10788:1 10790:3 10794:2 10800:5 10809:1 10810:1 10811:1 10813:1 10823:1 10824:2 10841:3 10844:3 10846:1 10854:1 10865:3 10866:1 10867:1 10876:3 10878:3 10886:2 10888:1 10890:2 10892:1 10895:1 10916:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:3 10990:11 11055:1 11056:1 11065:1 11067:1 11079:1 11112:2 11115:1 11117:1 11137:1 11159:1 11180:1 11193:1 11211:1 11224:1 11236:1 11254:3 11257:2 11260:2 11262:2 11269:2 11283:2 11291:1 11298:1 11299:1 11302:1 11312:1 11323:1 11347:6 11351:1 11372:4 11377:1 11378:1 11381:1 11385:1 11411:1 11433:1 11434:2 11435:2 11437:1 11443:1 11456:1 11468:1 11477:1 11482:1 11490:1 11501:1 11507:1 11516:1 11544:1 11551:1 11554:1 11557:1 11566:1 11579:1 11583:5 11590:1 11602:1 11613:1 11616:1 11627:1 11637:1 11643:2 11650:1 11653:2 11659:1 11660:1 11674:2 11675:1 11677:2 11682:1 11686:3 11706:6 11715:1 11749:1 11752:10 11753:1 11755:1 11772:1 11789:1 11790:1 11797:1 11819:1 11820:1 11830:1 11831:2 11848:1 11850:1 11852:1 11853:1 11860:1 11861:1 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:2 11930:3 11933:7 11958:1 11960:3 11962:6 11963:1 11989:1 11994:1 12006:1 12009:1 12012:3 12020:1 12022:1 12025:1 12026:2 12029:3 12032:1 12042:2 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:7 12085:1 12097:8 12108:1 12111:1 12127:1 12132:1 12134:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:1 12263:1 12265:2 12291:1 12304:3 12306:1 12313:1 12315:1 12321:1 12340:1 12346:1 12359:3 12362:3 12382:1 12411:3 12414:1 12426:1 12433:1 12439:1 12442:1 12526:1 12540:1 12542:1 12543:2 12544:3 12545:2 12560:2 12571:1 12592:1 12593:1 12602:3 12603:5 12608:2 12611:1 12615:1 12619:2 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:6 12747:1 12753:1 12782:2 12785:1 12798:1 12799:1 12806:1 12807:1 12810:2 12824:3 12843:2 12847:2 12872:1 12880:1 12896:1 12899:2 12904:2 12934:1 12935:1 12950:1 12953:1 12954:5 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13091:8 13100:1 13108:1 13113:1 13114:1 13116:1 13126:1 13131:16 13136:1 13142:1 13151:2 13153:5 13155:1 13161:1 13180:1 13182:1 13189:1 13192:1 13195:3 13199:3 13222:2 13246:1 13250:1 13255:1 13256:4 13259:2 13270:2 13281:1 13283:1 13285:1 13288:1 13291:2 13292:1 13315:1 13330:4 13334:1 13339:1 13341:1 13362:1 13363:1 13393:1 13406:1 13417:1 13450:1 13454:7 13458:1 13474:1 13503:1 13504:1 13523:1 13550:8 13556:1 13573:2 13576:1 13584:1 13588:5 13595:4 13600:1 13609:1 13611:6 13632:1 13633:1 13647:1 13652:1 13663:1 13665:1 13666:1 13684:2 13690:5 13715:1 13726:1 13732:1 13734:1 13747:6 13754:1 13756:3 13757:1 13772:1 13773:1 13774:2 13781:1 13786:1 13800:2 13802:1 13807:1 13808:1 13811:1 13829:1 13830:4 13833:1 13840:1 13847:3 13854:1 13862:2 13865:1 13880:2 13887:7 13909:1 13913:1 13915:1 13933:4 13937:1 13938:3 13961:1 13973:1 13987:2 14008:1 14018:1 14036:1 14051:1 14076:1 14081:1 14092:1 14116:4 14118:1 14120:2 14123:4 14124:2 14127:2 14138:1 14146:1 14149:1 14170:3 14186:1 14191:3 14198:2 14201:1 14204:1 14205:1 14233:1 14243:6 14254:1 14277:2 14290:3 14292:1 14304:2 14316:1 14339:7 14343:1 14345:3 14346:1 14352:1 14359:1 14399:1 14401:1 14414:1 14426:3 14445:9 14455:1 14486:1 14489:2 14508:1 14525:1 14530:1 14531:1 14535:1 14560:1 14577:6 14591:1 14602:3 14611:1 14613:1 14617:1 14624:1 14643:1 14649:1 14651:1 14667:4 14668:1 14669:1 14681:1 14705:1 14720:1 14730:2 14732:1 14741:1 14751:2 14757:2 14768:2 14780:1 14783:3 14794:1 14795:1 14796:3 14797:9 14800:1 14803:6 14808:1 14812:3 14814:1 14815:2 14825:1 14833:1 14836:1 14861:1 14871:1 14913:1 14914:1 14927:5 14932:1 14961:2 14971:2 14978:1 14984:4 14996:1 15003:1 15012:1 15013:3 15032:1 15037:3 15038:1 15060:1 15084:2 15099:2 15106:2 15109:2 15112:1 15113:1 15126:2 15129:2 15134:4 15137:1 15152:3 15157:1 15166:2 15181:1 15183:1 15253:1 15266:1 15270:1 15278:1 15303:2 15328:3 15329:1 15332:1 15334:1 15347:1 15349:1 15395:1 15396:1 15408:6 15410:1 15424:1 15425:1 15428:2 15444:1 15449:6 15450:3 15470:2 15483:1 15494:2 15497:1 15510:1 15511:1 15532:8 15535:1 15538:1 15543:1 15549:1 15569:1 15599:1 15624:1 15638:4 15641:1 15651:1 15655:1 15668:1 15670:2 15681:1 15683:1 15692:3 15693:1 15698:2 15700:1 15715:1 15727:1 15735:1 15748:1 15754:1 15756:1 15761:2 15774:2 15789:1 15820:2 15849:1 15863:11 15882:1 15886:2 15918:1 15924:2 15938:1 15941:1 15950:4 15951:1 15961:4 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16081:1 16114:2 16118:1 16128:8 16133:3 16140:1 16141:3 16151:1 16160:2 16165:3 16171:2 16172:1 16173:5 16174:2 16176:1 16184:1 16189:1 16228:1 16233:1 16243:1 16266:1 16275:1 16301:1 16306:7 16312:1 16325:1 16335:2 16339:1 16345:1 16348:1 16359:3 16387:2 16403:6 16404:3 16406:1 16410:1 16411:1 16452:1 16458:1 16459:3 16468:1 16472:1 16478:1 16484:4 16488:2 16499:1 16536:1 16552:1 16553:3 16599:1 16607:1 16612:17 16613:1 16618:1 16624:1 16629:4 16635:2 16640:1 16641:1 16649:1 16652:1 16663:1 16670:2 16690:3 16693:1 16698:1 16707:2 16714:1 16716:1 16717:1 16726:1 16734:1 16740:1 16741:1 16745:2 16756:2 16760:1 16763:1 16789:1 16791:2 16826:3 16828:1 16829:1 16830:2 16850:1 16885:1 16896:1 16922:1 16944:1 16960:1 16963:1 16966:2 16990:1 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:2 17133:1 17156:1 17158:1 17167:1 17177:1 17178:1 17188:1 17212:1 17216:1 17234:1 17237:2 17245:2 17255:2 17272:1 17279:1 17281:1 17287:3 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:2 17374:1 17407:4 17411:1 17413:5 17419:1 17436:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:1 17499:2 17506:1 17510:1 17516:2 17535:4 17545:1 17551:1 17553:1 17564:1 17565:1 17569:2 17584:2 17586:1 17613:1 17617:1 17625:1 17630:1 17632:2 17639:6 17646:1 17666:1 17668:6 17671:1 17684:1 17690:1 17711:2 17712:2 17735:4 17737:2 17750:1 17754:1 17761:1 17762:1 17763:2 17777:2 17778:7 17779:1 17787:2 17820:1 17832:1 17844:1 17850:2 17857:2 17898:1 17921:1 17946:1 17962:1 17968:3 17975:2 17980:2 18000:1 18004:1 18018:1 18025:1 18037:1 18039:1 18041:1 18043:3 18050:2 18051:1 18053:1 18060:3 18070:3 18071:1 18072:2 18076:1 18106:1 18110:1 18126:5 18127:4 18141:1 18151:1 18154:2 18172:1 18185:1 18189:1 18196:7 18210:1 18240:1 18245:1 18252:2 18255:2 18256:1 18259:1 18263:1 18276:1 18281:2 18283:5 18286:1 18288:1 18291:1 18304:2 18323:1 18324:1 18327:1 18344:1 18365:1 18366:3 18395:1 18403:2 18418:1 18422:1 18424:8 18426:1 18430:4 18436:28 18441:1 18444:1 18447:1 18451:2 18455:1 18459:1 18466:1 18476:4 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18528:1 18532:1 18537:2 18546:1 18548:1 18549:2 18550:1 18553:1 18569:1 18575:1 18586:1 18591:4 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:2 18698:1 18712:1 18720:1 18723:2 18736:5 18738:1 18740:1 18750:1 18761:1 18774:1 18780:1 18781:1 18805:1 18812:1 18843:1 18845:1 18867:1 18888:2 18891:2 18905:1 18915:1 18918:1 18928:1 18935:1 18962:1 18968:3 18969:1 19001:2 19069:4 19081:1 19095:1 19106:1 19113:1 19125:1 19148:2 19152:1 19153:1 19157:1 19172:2 19188:1 19191:5 19199:1 19218:1 19225:1 19229:1 19237:1 19245:3 19251:2 19254:2 19259:1 19275:1 19279:1 19281:1 19287:5 19291:1 19294:1 19300:1 19304:2054 19308:1 19318:1 19324:1 19367:3 19368:1 19377:3 19401:1 19402:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:1 19506:1 19507:1 19521:1 19529:3 19535:6 19542:1 19548:5 19551:3 19552:4 19580:1 19583:1 19629:6 19633:2 19635:2 19641:1 19642:1 19665:1 19666:32 19675:1 19686:1 19692:7 19716:1 19747:1 19756:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:3 19857:1 19860:1 19868:1 19882:1 19898:2 19908:1 19920:1 19927:1 19928:1 19953:1 19957:1 19964:1 19978:2 19981:2 19982:3 20010:1 20014:1 20018:2 20021:3 20027:1 20033:1 20036:1 20038:2 20043:3 20049:1 20053:1 20058:1 20064:1 20074:5 20078:1 20082:1 20091:1 20092:2 20106:2 20108:1 20124:1 20127:2 20131:10 20147:1 20148:1 20172:7 20173:1 20183:1 20184:1 20188:1 20198:1 20242:1 20244:1 20247:3 20296:1 20300:1 20313:1 20317:1 20329:4 20331:1 20336:3 20339:2 20351:1 20353:1 20372:1 20374:3 20375:1 20387:3 20399:1 20429:1 20434:1 20463:1 20468:1 20501:3 20516:1 20528:1 20559:2 20570:1 20571:1 20577:1 20584:2 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:4 20616:2 20620:4 20622:1 20624:1 20629:4 20641:1 20657:1 20664:1 20666:1 20681:1 20687:1 20692:2 20705:1 20708:1 20733:1 20754:2 20756:4 20760:1 20783:2 20790:1 20791:4 20805:1 20807:1 20817:2 20828:1 20832:1 20844:1 20848:1 20850:2 20868:1 20875:1 20884:1 20886:1 20901:1 20912:4 20918:1 20920:1 20923:1 20928:2 20932:1 20941:1 20962:2 20964:2 20980:1 21002:5 21012:1 21032:1 21057:6 21058:3 21062:2 21068:2 21074:1 21080:1 21120:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21217:1 21220:1 21251:1 21255:3 21258:1 21259:4 21271:1 21290:1 21296:1 21298:1 21299:7 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:2 21390:1 21405:1 21407:1 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21475:1 21498:1 21505:1 21511:1 21514:1 21515:1 21526:1 21529:3 21539:1 21546:4 21547:1 21549:1 21550:1 21552:1 21553:1 21561:1 21574:3 21579:1 21584:1 21587:1 21588:2 21595:1 21605:1 21613:5 21647:1 21656:2 21658:1 21659:3 21660:1 21673:1 21675:1 21702:3 21712:1 21731:1 21739:1 21761:1 21788:1 21796:2 21802:2 21810:1 21832:1 21836:2 21840:2 21863:6 21872:1 21873:1 21875:1 21894:1 21901:1 21907:2 21952:2 21965:1 21971:1 21976:1 21979:2 21985:1 21989:1 22005:1 22022:2 22045:1 22058:1 22061:1 22076:1 22078:1 22082:1 22122:1 22142:1 22149:1 22160:1 22176:1 22177:1 22194:1 22225:1 22240:1 22241:2 22243:1 22250:1 22254:2 22256:1 22258:2 22265:1 22268:1 22272:2 22273:3 22275:1 22282:2 22283:1 22287:1 22289:1 22291:1 22292:1 22293:1 22298:2 22321:1 22325:1 22332:1 22338:1 22346:4 22359:1 22361:1 22363:1 22365:1 22370:2 22371:2 22376:1 22378:1 22383:2 22391:2 22401:1 22408:1 22413:1 22415:9 22419:1 22432:1 22433:2 22436:2 22437:1 22447:1 22455:1 22477:1 22491:1 22504:1 22507:2 22511:1 22513:1 22519:1 22525:8 22532:1 22539:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22624:1 22625:1 22632:1 22635:1 22661:1 22665:4 22672:1 22676:1 22678:1 22679:2 22681:1 22682:1 22688:1 22697:2 22698:3 22699:1 22716:2 22720:1 22729:1 22735:1 22738:1 22752:2 22766:2 22790:1 22798:2 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:4 22892:3 22893:1 22896:1 22897:1 22902:1 22924:1 22933:1 22940:2 22943:1 22947:2 22959:2 22961:1 22975:3 23017:1 23023:1 23029:1 23033:1 23034:1 23052:4 23053:5 23056:3 23057:1 23059:2 23072:2 23073:1 23089:1 23096:1 23109:1 23111:4 23118:1 23124:1 23125:1 23131:2 23134:1 23142:3 23144:2 23145:4 23154:1 23162:2 23165:1 23173:1 23174:1 23177:1 23178:3 23185:1 23205:2 23226:1 23229:2 23231:1 23233:1 23241:1 23243:1 23251:3 23260:1 23263:2 23270:1 23290:1 23291:4 23292:1 23302:1 23309:2 23315:28 23320:1 23321:2 23323:4 23326:1 23327:3 23329:2 23333:1 23334:1 23336:1 23352:3 23354:1 23361:3 23364:1 23368:2 23384:2 23385:2 23389:1 23400:1 23425:2 23437:1 23440:1 23487:3 23497:1 23501:6 23509:1 23530:2 23535:1 23552:1 23560:1 23569:1 23594:1 23596:2 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:3 23655:2 23663:1 23664:1 23685:1 23702:1 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23828:1 23830:1 23837:2 23844:1 23859:1 23860:1 23869:1 23872:1 23887:1 23888:2 23894:1 23903:2 23906:1 23914:1 23926:3 23927:1 23928:1 23944:3 23952:3 23955:2 23977:2 23978:1 23982:1 23984:1 23992:2 23997:1 24017:1 24038:1 24066:1 24079:1 24107:1 24125:1 24129:1 24144:1 24166:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24196:3 24209:2 24214:2 24215:1 24218:1 24220:1 24228:1 24232:1 24258:2 24270:3 24278:1 24280:2 24282:1 24291:1 24293:1 24309:1 24325:1 24333:1 24336:1 24343:12 24351:1 24376:2 24393:1 24423:1 24424:1 24425:1 24443:1 24488:1 24497:1 24513:1 24515:1 24526:2 24533:2 24543:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:1 24620:6 24622:1 24623:1 24631:1 24638:1 24649:1 24652:1 24661:2 24670:1 24725:1 24728:1 24731:1 24746:3 24748:1 24761:1 24762:1 24764:2 24774:1 24788:1 24791:2 24801:1 24822:1 24839:1 24862:1 24863:1 24902:3 24912:5 24914:1 24923:4 24927:1 24944:1 24947:1 24955:2 24956:1 24957:1 24964:1 24973:2 24974:1 24995:2 25011:1 25028:3 25030:2 25032:1 25036:1 25060:1 25068:1 25075:1 25085:1 25087:2 25093:1 25099:3 25100:2 25106:1 25115:1 25117:1 25127:1 25136:1 25147:1 25148:1 25150:1 25156:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:1 25220:1 25221:2 25222:1 25224:7 25226:3 25228:4 25229:2 25234:1 25235:2 25236:2 25238:3 25248:2 25249:3 25255:2 25262:2 25268:4 25273:1 25297:1 25300:2 25301:1 25311:1 25315:2 25327:1 25337:4 25343:3 25363:2 25369:1 25370:1 25381:3 25393:1 25410:1 25414:1 25415:2 25439:1 25460:1 25463:1 25478:1 25504:3 25530:4 25540:1 25545:4 25565:2 25566:1 25590:1 25601:1 25602:2 25604:1 25616:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25718:1 25752:3 25767:1 25778:1 25781:1 25785:3 25794:2 25797:1 25828:4 25861:1 25879:2 25887:1 25900:1 25903:4 25909:1 25910:1 25915:1 25922:1 25927:1 25929:1 25931:4 25988:1 26007:1 26011:2 26023:2 26025:4 26060:10 26069:1 26083:9 26104:1 26112:1 26122:1 26127:1 26136:1 26138:1 26146:2 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26216:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:6 26270:1 26280:2 26285:2 26288:8 26293:2 26294:4 26304:1 26307:1 26311:1 26317:2 26320:1 26328:1 26329:1 26334:1 26348:1 26358:1 26363:2 26373:1 26379:4 26387:1 26400:1 26410:3 26416:2 26420:2 26422:2 26482:1 26494:1 26495:1 26511:1 26519:1 26523:1 26534:1 26560:2 26563:1 26579:1 26589:1 26590:3 26591:1 26593:2 26614:5 26643:1 26646:1 26648:1 26650:1 26656:1 26662:1 26668:1 26698:1 26716:1 26741:1 26754:1 26760:1 26768:1 26776:1 26805:1 26826:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26893:1 26901:1 26902:1 26907:2 26918:2 26925:1 26939:1 26954:1 26957:2 26974:1 26983:3 26989:1 26997:1 26998:2 27006:1 27020:5 27042:1 27046:1 27047:4 27070:1 27089:1 27091:1 27094:2 27095:1 27107:1 27118:1 27119:1 27127:2 27138:2 27157:2 27174:1 27178:5 27179:1 27212:3 27216:1 27234:1 27236:1 27239:1 27260:2 27278:1 27289:1 27299:4 27320:2 27321:1 27322:1 27327:1 27329:1 27330:1 27334:3 27335:1 27341:1 27372:1 27375:2 27378:1 27381:1 27387:1 27389:1 27406:1 27415:2 27421:1 27438:2 27439:1 27453:1 27454:2 27459:1 27482:1 27484:2 27510:1 27530:2 27535:1 27539:1 27555:1 27574:3 27583:5 27608:2 27613:1 27665:1 27670:1 27686:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:1 27775:1 27780:1 27781:1 27787:1 27791:1 27792:1 27800:1 27804:1 27807:1 27822:1 27826:2 27845:1 27869:1 27873:1 27875:1 27888:1 27897:1 27912:2 27917:1 27920:1 27924:3 27940:4 27957:4 27965:5 27974:1 27990:1 27991:1 27997:1 28011:2 28025:1 28033:1 28043:1 28044:10 28071:1 28083:1 28087:2 28097:1 28098:1 28101:1 28102:2 28109:12 28121:1 28151:3 28177:1 28188:2 28189:1 28193:1 28213:2 28218:5 28225:2 28226:2 28242:2 28246:1 28251:3 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:3 28322:1 28335:2 28337:1 28347:1 28361:1 28372:1 28377:1 28381:1 28384:1 28398:1 28407:1 28409:1 28414:2 28416:1 28418:1 28420:1 28458:1 28459:1 28499:1 28529:1 28533:1 28554:4 28557:1 28564:1 28588:1 28589:1 28600:2 28616:5 28619:1 28627:1 28637:1 28649:1 28672:1 28681:1 28686:1 28736:1 28743:1 28746:1 28755:2 28779:1 28801:1 28825:3 28845:1 28858:1 28860:6 28872:1 28893:1 28896:4 28907:1 28919:1 28928:2 28938:1 28946:1 28958:1 28959:1 28961:1 28978:1 28980:1 28983:1 28992:26 28993:4 28996:5 28998:1 28999:3 29011:1 29034:7 29048:1 29092:1 29100:2 29107:1 29115:1 29120:1 29131:1 29132:2 29142:4 29146:2 29176:11 29177:1 29180:2 29184:1 29186:1 29190:1 29202:2 29210:1 29213:1 29216:1 29221:2 29228:2 29236:1 29237:1 29238:1 29245:2 29251:1 29262:1 29267:1 29268:2 29278:2 29281:1 29293:1 29295:1 29300:1 29302:1 29307:1 29343:1 29347:1 29362:2 29364:1 29365:1 29387:1 29388:1 29391:1 29405:5 29409:1 29420:1 29447:1 29449:1 29471:1 29473:2 29474:2 29477:1 29498:1 29514:1 29518:1 29522:1 29524:1 29525:1 29529:2 29532:4 29538:1 29539:1 29548:1 29550:1 29551:1 29559:1 29566:2 29567:1 29569:1 29570:1 29579:1 29587:2 29632:1 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29712:1 29716:1 29717:1 29718:1 29722:1 29723:2 29736:1 29740:3 29743:1 29749:1 29758:1 29766:1 29767:7 29773:1 29777:1 29780:5 29782:1 29788:1 29801:1 29828:1 29832:1 29839:2 29840:1 29882:3 29890:1 29900:1 29914:3 29918:1 29920:2 29925:1 29927:1 29931:6 29940:1 29949:1 29969:1 29970:1 30001:2 30002:1 30011:1 30012:1 30035:2 30058:2 30081:1 30088:1 30104:1 30108:2 30113:1 30122:1 30136:1 30143:1 30150:2 30187:1 30194:7 30206:1 30208:1 30210:1 30231:7 30243:5 30244:1 30250:1 30273:1 30311:1 30320:8 30322:3 30324:2 30326:1 30328:1 30331:3 30332:3 30344:1 30353:1 30362:1 30363:2 30367:3 30371:3 30408:1 30421:1 9 11:1 14:1 30:1 43:1 50:2 74:1 79:1 83:1 85:1 99:1 103:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 163:1 176:1 180:1 187:1 189:3 201:1 206:4 236:8 238:1 257:1 283:1 303:1 315:2 325:1 327:33 338:2 355:1 356:3 357:4 362:1 366:1 378:2 380:1 385:1 397:1 419:1 441:2 460:3 469:1 474:1 475:1 478:1 480:1 500:1 550:1 558:1 589:1 591:4 592:1 600:2 603:4 625:4 635:2 637:1 638:1 639:1 657:2 671:1 682:3 685:1 691:1 693:2 703:1 724:1 732:2 736:1 747:1 758:1 774:1 788:1 791:1 802:1 804:1 819:1 824:1 833:1 843:1 854:1 856:2 857:1 880:1 883:7 885:3 897:1 899:3 900:1 911:1 914:15 917:1 929:1 933:1 938:5 941:7 946:2 952:1 953:1 959:1 961:1 964:3 978:1 985:2 986:2 997:1 1005:1 1022:1 1032:3 1045:1 1052:2 1054:2 1060:2 1076:1 1080:2 1084:1 1085:1 1102:1 1103:1 1115:2 1125:1 1126:1 1133:1 1141:1 1142:1 1143:2 1148:2 1156:3 1163:1 1164:2 1172:1 1176:1 1187:1 1188:1 1194:1 1201:3 1206:1 1213:1 1230:1 1258:2 1291:1 1292:1 1300:2 1303:1 1313:1 1333:1 1336:1 1342:1 1353:1 1379:1 1380:1 1393:1 1404:1 1411:3 1434:1 1441:2 1443:1 1461:1 1464:2 1468:4 1471:6 1474:1 1487:1 1490:2 1491:1 1493:1 1494:1 1510:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:5 1584:1 1614:1 1621:1 1636:1 1639:1 1641:3 1642:3 1650:1 1658:1 1677:5 1680:1 1700:1 1701:3 1706:6 1712:2 1732:1 1733:1 1751:1 1752:1 1775:1 1785:1 1803:1 1814:3 1818:1 1827:1 1830:1 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1884:1 1886:1 1908:1 1934:1 1954:1 1956:1 1958:18 1965:1 1970:2 1981:1 1986:1 1991:1 1996:1 1997:1 2008:1 2011:1 2018:8 2019:2 2051:1 2053:1 2057:2 2063:3 2075:1 2088:3 2102:1 2107:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2186:1 2195:1 2211:1 2213:1 2216:1 2218:5 2219:1 2220:1 2223:1 2226:1 2232:1 2234:4 2238:1 2239:2 2240:4 2243:1 2251:1 2255:2 2258:1 2274:1 2276:1 2280:2 2281:2 2284:2 2285:8 2288:4 2291:1 2292:2 2293:4 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:1 2314:1 2316:6 2318:2 2319:7 2331:1 2332:1 2334:1 2348:1 2369:1 2380:2 2386:1 2393:1 2407:1 2411:1 2418:1 2430:3 2437:4 2438:1 2445:1 2448:1 2453:1 2457:1 2460:1 2466:2 2482:4 2493:6 2505:1 2509:1 2511:1 2515:1 2532:1 2537:1 2561:5 2570:4 2577:1 2595:2 2603:1 2608:2 2615:3 2618:2 2620:1 2623:1 2632:2 2661:2 2666:1 2682:1 2685:1 2699:1 2701:3 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2740:1 2745:1 2748:1 2761:1 2763:2 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:7 2825:3 2831:4 2841:1 2848:1 2880:1 2882:1 2883:1 2889:2 2890:2 2904:1 2912:2 2933:5 2935:1 2941:23 2959:4 2975:2 2980:1 2982:1 2995:1 3002:11 3032:5 3036:7 3037:1 3038:1 3039:1 3050:1 3061:1 3064:1 3068:1 3082:1 3092:1 3095:1 3097:1 3146:4 3162:1 3169:1 3176:1 3177:2 3184:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3287:1 3304:1 3312:5 3325:1 3332:1 3338:1 3339:1 3343:1 3348:1 3361:1 3370:1 3384:1 3386:3 3416:1 3431:1 3434:12 3481:1 3487:1 3510:2 3544:1 3551:1 3557:2 3561:1 3563:1 3564:2 3568:2 3571:1 3578:1 3581:1 3587:2 3601:1 3615:1 3619:2 3628:1 3635:2 3640:1 3648:1 3665:2 3670:1 3674:1 3678:2 3681:7 3699:5 3705:2 3706:1 3708:2 3709:2 3712:1 3715:1 3736:2 3741:6 3751:1 3754:1 3773:1 3784:1 3787:1 3791:2 3792:3 3796:1 3800:2 3803:2 3816:1 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:12 3873:1 3882:1 3888:1 3895:5 3897:1 3903:2 3904:12 3905:3 3906:1 3912:1 3923:1 3924:6 3932:1 3938:1 3955:1 3956:3 3958:1 3967:1 3969:1 3978:1 3981:1 3986:1 3992:1 3993:1 4000:1 4004:2 4016:1 4019:3 4022:3 4032:2 4045:1 4047:1 4053:2 4054:1 4058:1 4063:1 4077:4 4084:1 4085:1 4089:2 4093:1 4098:1 4099:2 4100:2 4108:4 4109:3 4114:1 4128:1 4144:1 4153:1 4165:1 4169:2 4181:1 4187:1 4196:2 4197:1 4204:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:4 4307:2 4315:1 4316:1 4319:1 4321:1 4325:1 4364:1 4378:2 4381:2 4388:1 4401:1 4405:1 4420:2 4455:2 4469:1 4474:5 4494:1 4504:1 4535:1 4546:2 4555:1 4572:1 4598:1 4601:1 4631:2 4637:1 4661:1 4665:1 4675:1 4680:1 4697:1 4699:2 4719:1 4724:1 4728:2 4735:1 4741:3 4749:1 4751:1 4754:3 4772:2 4774:1 4788:1 4789:1 4804:1 4807:8 4843:1 4854:1 4870:1 4875:1 4889:1 4896:1 4903:7 4907:1 4918:1 4921:1 4935:1 4944:1 4951:1 4954:1 4986:3 5009:1 5019:22 5021:2 5024:1 5041:2 5052:1 5058:1 5071:1 5078:2 5083:7 5091:1 5093:2 5115:2 5117:1 5131:1 5132:1 5134:1 5135:7 5151:4 5152:6 5153:1 5154:1 5155:1 5157:1 5159:3 5160:1 5162:1 5163:2 5166:1 5171:1 5173:2 5175:3 5176:1 5178:1 5184:1 5185:1 5187:4 5188:3 5211:1 5242:1 5246:1 5271:2 5277:2 5279:1 5299:2 5317:1 5321:1 5326:2 5327:1 5328:2 5336:2 5344:2 5359:1 5367:1 5385:1 5396:2 5404:3 5409:1 5435:1 5459:1 5464:1 5466:1 5482:1 5487:1 5512:2 5518:7 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5607:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:2 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:2 5736:1 5758:3 5763:1 5767:1 5772:1 5780:1 5786:1 5792:3 5797:1 5808:4 5815:1 5816:1 5849:3 5873:3 5888:1 5897:3 5914:4 5917:1 5921:2 5939:1 5945:1 5959:2 5975:1 5977:1 6007:1 6011:1 6021:2 6028:1 6059:3 6066:1 6097:1 6102:2 6129:1 6152:1 6183:4 6184:1 6205:14 6226:4 6229:1 6231:4 6238:1 6242:1 6247:1 6248:5 6249:2 6257:1 6280:3 6297:1 6301:1 6303:1 6308:1 6325:1 6345:1 6356:1 6380:2 6384:2 6385:1 6390:1 6400:1 6404:2 6410:1 6426:6 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:2 6488:1 6501:3 6503:1 6505:1 6507:2 6511:1 6515:2 6517:1 6518:2 6519:3 6520:5 6523:1 6525:4 6526:9 6527:5 6530:1 6539:1 6568:1 6571:1 6591:2 6646:3 6648:1 6649:1 6681:2 6699:2 6743:1 6750:1 6763:1 6769:1 6777:1 6797:2 6798:1 6803:1 6814:1 6816:1 6822:2 6832:1 6833:1 6836:1 6844:1 6851:1 6855:1 6897:1 6898:2 6909:1 6911:1 6916:1 6919:2 6920:1 6924:1 6929:1 6940:9 6949:1 6960:2 6968:4 6973:1 6985:1 6987:1 6997:1 7002:1 7019:1 7029:1 7045:2 7047:1 7049:2 7058:2 7086:2 7087:2 7091:3 7098:1 7100:1 7113:3 7114:2 7128:1 7131:1 7142:1 7147:2 7148:1 7150:2 7154:1 7160:1 7169:1 7177:2 7212:1 7220:1 7253:10 7255:1 7273:1 7281:2 7300:1 7302:1 7306:2 7310:2 7312:1 7332:1 7336:1 7337:1 7369:2 7411:3 7416:1 7435:2 7452:1 7479:2 7491:3 7495:1 7500:1 7505:2 7506:1 7509:1 7516:1 7521:1 7527:1 7539:1 7549:5 7554:3 7555:1 7559:1 7579:2 7583:1 7596:2 7597:1 7603:2 7622:1 7627:2 7644:1 7663:1 7672:2 7690:1 7719:1 7723:1 7725:1 7726:2 7756:2 7757:13 7758:5 7771:2 7784:2 7785:4 7786:1 7812:5 7813:1 7831:50 7836:1 7854:6 7855:11 7857:1 7860:2 7871:1 7883:2 7908:1 7911:1 7923:1 7940:2 7941:1 7944:2 7964:1 7966:1 7967:2 7982:2 8035:2 8059:1 8062:3 8072:1 8087:1 8090:1 8093:2 8108:1 8112:6 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8223:1 8226:1 8233:1 8250:1 8255:1 8258:1 8265:2 8266:3 8267:1 8269:1 8285:1 8287:2 8303:1 8306:1 8317:1 8319:1 8324:2 8330:1 8333:2 8338:2 8343:1 8348:3 8357:1 8358:8 8389:2 8394:1 8400:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8564:1 8566:1 8589:1 8591:1 8599:2 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:3 8638:1 8646:1 8656:1 8664:5 8667:1 8669:1 8671:1 8674:1 8701:1 8711:1 8716:1 8728:1 8736:1 8739:3 8740:5 8743:4 8744:2 8746:1 8748:3 8749:8 8752:2 8753:3 8755:1 8757:1 8767:1 8768:2 8784:4 8790:2 8792:3 8816:3 8820:1 8822:2 8826:2 8829:2 8834:2 8837:5 8853:1 8891:1 8892:2 8906:1 8907:1 8930:1 8939:1 8958:1 8968:1 8973:1 8974:1 8988:1 9008:1 9017:3 9024:1 9033:2 9041:3 9063:2 9066:1 9073:4 9074:1 9078:2 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9171:1 9177:1 9188:2 9199:5 9202:2 9220:1 9222:1 9241:3 9252:1 9263:1 9275:1 9276:2 9278:1 9292:1 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:4 9373:1 9386:1 9387:1 9394:2 9401:2 9403:1 9411:1 9420:2 9421:1 9459:1 9463:2 9467:7 9469:1 9470:1 9474:2 9477:1 9486:33 9489:2 9490:2 9508:2 9510:1 9520:1 9523:1 9535:1 9548:1 9567:1 9572:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:6 9634:2 9659:1 9676:1 9684:3 9702:1 9724:1 9728:1 9749:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9814:1 9824:1 9828:2 9831:1 9843:1 9844:1 9845:5 9851:1 9861:1 9869:4 9877:2 9886:1 9895:2 9919:2 9949:7 9962:2 9965:1 9966:4 9972:2 9974:1 9986:1 9991:1 9993:1 9995:1 10004:1 10005:1 10035:3 10053:1 10057:1 10065:1 10081:1 10089:2 10093:1 10108:7 10113:1 10120:1 10126:1 10130:1 10135:4 10142:1 10143:2 10145:1 10147:2 10149:1 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10186:1 10196:3 10198:1 10202:2 10203:1 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10308:1 10309:1 10329:1 10336:1 10345:1 10368:1 10397:1 10399:1 10400:1 10401:1 10402:1 10418:2 10443:1 10466:1 10479:1 10481:1 10489:1 10520:1 10525:2 10550:3 10570:1 10576:1 10588:1 10590:1 10608:2 10609:1 10625:3 10630:2 10638:2 10653:1 10655:1 10689:1 10690:1 10699:1 10712:1 10720:1 10722:1 10724:1 10764:1 10767:1 10769:1 10788:1 10790:3 10794:2 10800:5 10809:1 10810:1 10811:1 10813:1 10823:1 10824:2 10841:3 10844:3 10846:1 10854:1 10865:3 10866:1 10867:1 10876:3 10878:3 10886:2 10888:1 10890:2 10892:1 10895:1 10916:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:4 10990:12 11055:1 11056:1 11065:1 11067:2 11079:1 11112:2 11115:1 11117:1 11137:1 11159:1 11180:1 11193:1 11211:1 11224:1 11236:1 11254:3 11257:2 11260:2 11262:2 11269:2 11283:2 11291:1 11298:1 11299:1 11302:1 11312:1 11323:1 11347:6 11351:1 11372:6 11377:1 11378:1 11381:1 11385:1 11411:1 11433:1 11434:2 11435:2 11437:1 11443:1 11452:1 11456:1 11468:1 11477:1 11482:1 11490:1 11501:1 11507:1 11516:1 11520:1 11544:1 11551:1 11554:1 11557:1 11566:1 11579:1 11583:5 11590:1 11602:1 11613:2 11616:1 11627:1 11637:1 11643:2 11650:1 11653:2 11659:1 11660:1 11662:1 11674:2 11675:1 11677:2 11682:1 11686:3 11706:6 11715:1 11749:1 11752:10 11753:1 11755:1 11772:1 11789:1 11790:1 11797:1 11819:1 11820:1 11830:1 11831:2 11848:1 11850:1 11852:1 11853:1 11860:1 11861:1 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:2 11930:3 11933:7 11958:1 11960:4 11962:6 11963:1 11989:1 11994:1 12006:1 12009:1 12012:3 12020:1 12022:2 12025:1 12026:2 12029:3 12032:1 12042:2 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:7 12085:1 12097:8 12108:1 12111:1 12127:1 12132:1 12134:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:1 12263:1 12265:2 12291:1 12304:3 12306:1 12313:1 12315:1 12321:1 12340:1 12346:1 12359:3 12362:3 12382:1 12411:3 12414:1 12426:1 12433:1 12439:1 12442:1 12445:1 12505:1 12526:1 12540:1 12542:1 12543:2 12544:3 12545:2 12560:2 12571:1 12592:1 12593:1 12602:4 12603:5 12608:2 12611:1 12615:1 12619:2 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:6 12747:1 12753:1 12782:2 12785:1 12798:1 12799:1 12806:1 12807:1 12810:2 12824:3 12843:2 12847:2 12872:1 12880:1 12896:1 12899:2 12904:2 12934:1 12935:1 12950:1 12953:1 12954:6 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13091:8 13100:1 13108:1 13113:1 13114:1 13116:1 13126:1 13131:16 13136:1 13142:1 13151:2 13153:5 13155:1 13161:1 13180:1 13182:1 13189:1 13192:1 13195:3 13199:3 13222:2 13246:1 13250:1 13255:1 13256:4 13259:2 13270:2 13281:1 13283:1 13285:1 13288:1 13291:2 13292:1 13315:2 13330:4 13334:1 13339:1 13341:1 13362:1 13363:1 13364:1 13393:1 13406:1 13417:1 13450:1 13454:7 13458:1 13474:1 13503:1 13504:1 13523:1 13550:8 13556:1 13573:2 13576:1 13584:1 13588:6 13595:4 13600:1 13609:1 13611:6 13632:1 13633:1 13647:1 13652:1 13663:1 13665:1 13666:1 13684:2 13690:5 13715:1 13726:1 13732:1 13734:1 13747:6 13754:1 13756:4 13757:1 13772:1 13773:1 13774:2 13781:1 13786:1 13800:2 13802:1 13807:1 13808:1 13811:1 13829:2 13830:4 13833:1 13840:1 13847:3 13854:1 13862:2 13865:1 13880:2 13887:7 13909:1 13913:1 13915:1 13933:4 13937:1 13938:3 13961:1 13973:1 13987:2 14008:1 14018:1 14019:1 14036:1 14051:1 14076:1 14081:2 14092:1 14094:1 14116:4 14118:1 14120:2 14123:4 14124:2 14127:2 14138:1 14146:1 14149:1 14170:3 14186:1 14191:3 14198:2 14201:1 14204:1 14205:1 14233:1 14243:6 14254:1 14277:2 14290:3 14292:1 14299:1 14304:2 14316:1 14339:7 14343:1 14345:3 14346:1 14352:1 14359:1 14399:1 14401:1 14414:1 14426:3 14445:10 14455:1 14486:1 14489:2 14508:1 14525:1 14530:1 14531:1 14535:1 14560:1 14577:6 14591:1 14602:3 14611:1 14613:1 14617:1 14624:1 14643:1 14649:1 14651:1 14667:4 14668:1 14669:1 14681:1 14705:1 14720:1 14730:2 14732:1 14741:1 14751:2 14757:2 14768:2 14780:1 14783:3 14794:1 14795:1 14796:3 14797:9 14800:1 14803:6 14808:1 14812:3 14814:1 14815:2 14825:1 14833:1 14836:1 14861:1 14871:1 14913:1 14914:1 14927:5 14932:1 14961:2 14971:2 14978:1 14979:1 14984:4 14996:1 15003:1 15012:1 15013:3 15032:1 15037:3 15038:1 15060:1 15084:2 15099:2 15106:2 15109:3 15112:1 15113:1 15126:2 15129:2 15134:4 15137:1 15152:3 15157:1 15166:2 15181:1 15183:1 15253:1 15266:1 15270:1 15278:1 15303:2 15328:3 15329:1 15332:1 15334:1 15347:1 15349:1 15395:1 15396:1 15408:6 15410:1 15424:1 15425:1 15428:2 15444:1 15449:6 15450:3 15470:2 15483:1 15494:2 15497:1 15510:1 15511:1 15532:8 15535:1 15538:1 15543:1 15549:1 15569:1 15599:1 15624:1 15638:4 15641:1 15649:1 15651:1 15655:1 15668:1 15670:2 15681:1 15683:1 15692:4 15693:1 15698:2 15700:1 15715:1 15727:1 15735:1 15748:1 15754:1 15756:1 15761:2 15774:2 15789:1 15796:1 15820:2 15828:1 15849:1 15863:11 15882:1 15886:2 15918:1 15924:2 15938:1 15941:1 15950:4 15951:1 15961:5 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16081:1 16114:3 16118:1 16128:8 16133:3 16140:1 16141:3 16151:1 16160:2 16165:4 16171:2 16172:1 16173:6 16174:2 16176:1 16184:1 16189:1 16228:1 16233:1 16243:1 16266:1 16275:2 16282:1 16301:1 16306:8 16312:1 16325:1 16335:2 16339:1 16345:1 16348:1 16359:3 16387:2 16403:6 16404:3 16406:1 16410:1 16411:1 16452:1 16458:1 16459:3 16468:1 16472:1 16478:1 16484:4 16488:2 16499:1 16536:1 16552:1 16553:4 16599:1 16607:1 16612:17 16613:1 16618:1 16624:1 16629:4 16635:2 16640:1 16641:1 16649:1 16652:1 16663:1 16670:2 16690:3 16693:1 16698:1 16707:2 16714:1 16716:1 16717:1 16726:1 16734:1 16740:2 16741:1 16745:2 16756:2 16760:1 16763:1 16789:1 16791:2 16826:4 16828:1 16829:1 16830:2 16850:1 16885:1 16896:1 16922:1 16944:1 16960:1 16963:1 16966:2 16990:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17101:1 17111:2 17133:1 17156:1 17158:1 17167:1 17177:1 17178:1 17188:1 17212:1 17216:1 17234:1 17237:2 17241:1 17245:2 17255:2 17272:1 17279:1 17281:1 17287:3 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:2 17372:1 17374:1 17407:4 17411:1 17413:5 17419:1 17436:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:1 17499:2 17506:1 17510:1 17516:2 17535:4 17545:1 17551:1 17553:1 17564:1 17565:1 17569:2 17584:2 17586:1 17613:1 17617:1 17625:2 17630:1 17632:2 17639:6 17646:1 17666:1 17668:6 17671:1 17684:1 17690:1 17711:2 17712:2 17735:4 17737:2 17750:1 17754:1 17761:1 17762:2 17763:2 17777:3 17778:7 17779:1 17787:2 17820:1 17832:1 17844:1 17850:2 17857:2 17898:1 17921:1 17946:1 17962:1 17968:3 17975:2 17980:2 18000:1 18004:1 18018:1 18025:1 18037:1 18039:1 18041:1 18043:3 18050:2 18051:1 18053:1 18060:4 18070:3 18071:1 18072:2 18076:1 18106:1 18110:2 18126:5 18127:4 18141:1 18151:2 18154:2 18172:1 18185:1 18189:1 18196:7 18208:1 18210:1 18240:1 18245:1 18252:2 18255:2 18256:1 18259:1 18263:1 18276:1 18281:2 18283:5 18286:1 18288:1 18291:1 18304:2 18323:1 18324:1 18327:1 18344:1 18365:1 18366:3 18395:1 18403:2 18418:1 18422:1 18424:8 18426:1 18430:4 18436:29 18441:1 18444:1 18447:1 18451:2 18455:1 18459:1 18466:1 18476:4 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18528:1 18532:1 18537:2 18546:1 18548:1 18549:3 18550:1 18553:1 18569:1 18575:1 18586:1 18591:4 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:2 18698:1 18712:1 18720:1 18723:2 18736:5 18738:1 18740:1 18750:1 18761:2 18774:1 18780:1 18781:1 18805:1 18812:1 18843:1 18845:1 18867:1 18888:2 18891:2 18905:1 18915:1 18918:1 18928:1 18935:1 18962:1 18968:3 18969:1 19001:2 19069:4 19081:1 19095:1 19106:1 19113:2 19125:1 19148:2 19152:1 19153:1 19157:1 19172:2 19188:1 19191:5 19199:1 19218:1 19225:1 19229:1 19237:1 19245:3 19251:2 19254:2 19259:1 19275:1 19279:1 19281:1 19287:5 19291:1 19294:1 19300:1 19304:2116 19308:1 19318:1 19324:1 19367:4 19368:1 19377:3 19401:1 19402:1 19413:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:2 19506:1 19507:1 19521:1 19529:3 19535:6 19542:1 19548:5 19551:3 19552:4 19580:1 19583:1 19629:6 19633:2 19635:2 19641:1 19642:1 19665:1 19666:33 19675:1 19686:1 19692:7 19716:1 19747:1 19756:1 19761:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:3 19857:1 19860:1 19868:1 19882:1 19898:2 19908:1 19920:1 19927:1 19928:1 19953:1 19957:1 19964:1 19978:2 19981:2 19982:3 20010:2 20014:1 20018:2 20021:3 20027:1 20033:1 20036:1 20038:2 20043:3 20049:1 20053:1 20058:1 20064:1 20074:5 20078:1 20082:1 20091:1 20092:2 20106:2 20108:1 20124:1 20127:3 20131:10 20147:1 20148:1 20172:7 20173:1 20183:2 20184:1 20188:1 20198:1 20242:1 20244:1 20247:3 20296:1 20300:1 20313:1 20317:1 20329:4 20331:1 20336:3 20339:2 20351:1 20353:1 20372:1 20374:3 20375:1 20383:1 20387:3 20399:1 20429:1 20434:1 20463:1 20468:2 20501:3 20516:1 20528:1 20559:2 20570:1 20571:1 20577:1 20584:2 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:4 20616:2 20620:5 20622:1 20624:1 20629:4 20641:1 20657:1 20664:1 20666:1 20681:1 20687:1 20692:2 20705:1 20708:1 20733:1 20754:2 20756:5 20760:1 20778:1 20783:2 20790:1 20791:4 20805:1 20807:1 20817:3 20818:1 20828:1 20832:1 20844:1 20848:1 20850:2 20852:1 20868:1 20875:1 20884:1 20886:1 20901:1 20912:4 20918:1 20920:1 20923:1 20928:2 20932:1 20941:1 20962:2 20964:2 20980:1 21002:5 21012:1 21032:1 21057:6 21058:3 21062:2 21068:2 21074:1 21080:1 21081:1 21120:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21217:1 21220:1 21251:1 21255:3 21258:1 21259:4 21271:1 21290:1 21296:1 21298:1 21299:7 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:2 21390:1 21405:1 21407:1 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21475:1 21498:1 21505:1 21511:1 21514:1 21515:1 21526:1 21529:3 21539:1 21546:4 21547:1 21549:1 21550:1 21552:1 21553:1 21561:1 21574:3 21579:1 21584:1 21587:1 21588:2 21595:1 21605:1 21613:6 21647:1 21656:2 21658:1 21659:3 21660:1 21673:1 21675:1 21702:3 21712:1 21731:1 21739:1 21751:1 21761:1 21788:1 21796:2 21802:2 21810:1 21832:1 21836:2 21840:2 21863:6 21872:1 21873:1 21875:1 21894:1 21901:1 21907:2 21952:2 21965:1 21971:1 21976:1 21979:2 21985:1 21989:1 22005:1 22022:2 22045:1 22058:2 22061:1 22076:1 22078:1 22082:1 22122:1 22142:1 22149:1 22160:1 22176:1 22177:1 22194:1 22225:1 22240:1 22241:2 22243:1 22250:1 22254:2 22256:1 22258:2 22265:1 22268:1 22272:3 22273:3 22275:1 22282:2 22283:1 22287:1 22289:1 22291:1 22292:1 22293:1 22298:2 22312:1 22321:1 22325:1 22332:1 22338:1 22346:4 22359:1 22361:2 22363:1 22365:1 22370:2 22371:2 22376:1 22378:1 22383:2 22391:2 22392:1 22401:1 22408:1 22413:1 22415:9 22419:1 22432:1 22433:2 22436:3 22437:1 22447:1 22455:1 22477:1 22491:2 22504:1 22507:2 22511:1 22513:1 22519:1 22525:8 22532:1 22539:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22624:1 22625:1 22632:1 22635:1 22661:1 22665:5 22672:1 22676:1 22678:1 22679:2 22681:2 22682:1 22688:1 22696:1 22697:2 22698:3 22699:1 22716:2 22720:1 22729:1 22735:1 22738:1 22752:2 22766:2 22790:1 22798:2 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:4 22892:3 22893:1 22896:1 22897:1 22902:1 22924:1 22933:1 22940:2 22943:1 22947:2 22959:2 22961:1 22975:3 23017:1 23023:1 23029:1 23033:1 23034:1 23052:4 23053:5 23056:3 23057:1 23059:2 23072:2 23073:1 23089:1 23096:1 23109:1 23111:4 23118:1 23124:1 23125:1 23131:2 23134:1 23142:3 23144:2 23145:4 23154:1 23162:2 23165:1 23173:1 23174:1 23177:1 23178:3 23185:1 23205:2 23226:1 23229:2 23231:1 23233:1 23241:1 23243:1 23249:1 23251:3 23260:1 23263:2 23270:1 23290:1 23291:4 23292:1 23302:1 23309:2 23315:29 23320:1 23321:2 23323:4 23326:1 23327:3 23329:3 23333:1 23334:1 23336:1 23352:3 23354:1 23361:3 23364:1 23368:2 23384:2 23385:2 23389:1 23400:1 23425:2 23437:1 23440:1 23487:3 23497:1 23501:6 23509:1 23530:2 23535:2 23552:1 23560:1 23569:1 23594:1 23596:2 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:3 23655:2 23663:1 23664:1 23685:1 23702:2 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23828:1 23830:1 23837:2 23844:1 23859:1 23860:1 23869:2 23872:1 23887:1 23888:2 23894:1 23903:2 23906:1 23914:2 23926:3 23927:1 23928:1 23944:3 23952:3 23955:2 23977:2 23978:1 23982:1 23984:1 23992:2 23997:1 24017:1 24038:1 24066:1 24079:1 24107:1 24125:1 24129:1 24144:1 24153:1 24166:1 24169:3 24172:1 24173:1 24180:1 24181:1 24187:1 24196:3 24209:2 24214:2 24215:1 24218:1 24220:1 24228:1 24232:1 24258:2 24270:3 24278:1 24280:3 24282:1 24291:1 24293:1 24309:1 24325:1 24333:1 24336:1 24343:12 24351:1 24376:2 24393:1 24423:1 24424:1 24425:1 24443:1 24488:1 24497:1 24513:1 24515:1 24522:1 24526:2 24533:2 24543:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:3 24604:1 24620:6 24622:2 24623:1 24631:1 24638:1 24649:1 24652:1 24661:2 24670:1 24725:1 24728:1 24731:1 24746:3 24748:1 24761:1 24762:1 24764:2 24774:1 24788:1 24791:2 24801:1 24822:1 24839:1 24862:1 24863:1 24902:3 24912:5 24914:1 24923:4 24927:1 24944:1 24947:1 24955:2 24956:1 24957:1 24964:1 24973:2 24974:1 24995:2 25011:1 25025:1 25028:3 25030:2 25032:1 25036:1 25060:2 25068:1 25075:1 25085:1 25087:2 25093:1 25099:3 25100:2 25106:1 25115:1 25117:1 25127:1 25136:1 25147:1 25148:1 25150:1 25156:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:1 25220:1 25221:2 25222:1 25224:7 25226:3 25228:4 25229:2 25234:1 25235:2 25236:2 25238:3 25248:2 25249:4 25255:2 25262:2 25268:4 25273:2 25297:1 25300:2 25301:1 25311:1 25315:2 25327:1 25337:4 25343:3 25363:2 25369:1 25370:1 25381:3 25393:1 25410:1 25414:1 25415:2 25439:1 25460:1 25463:1 25478:1 25504:3 25530:4 25540:1 25545:4 25565:2 25566:1 25590:1 25601:1 25602:2 25604:1 25616:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25718:1 25752:3 25767:1 25778:1 25781:1 25785:3 25794:2 25797:1 25828:4 25861:1 25879:2 25887:1 25900:1 25903:4 25909:1 25910:1 25915:1 25922:1 25927:1 25929:1 25931:4 25988:1 26007:1 26011:2 26023:3 26025:5 26060:10 26069:1 26083:9 26104:1 26112:1 26122:1 26127:1 26136:1 26138:1 26146:2 26150:1 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26216:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:6 26270:1 26280:2 26285:2 26288:8 26293:2 26294:4 26304:1 26307:1 26311:1 26317:2 26318:1 26320:1 26328:1 26329:1 26334:1 26348:1 26358:1 26363:2 26373:1 26379:4 26387:1 26400:1 26410:3 26416:2 26420:2 26422:2 26482:1 26494:1 26495:1 26511:1 26519:1 26523:1 26534:1 26560:2 26563:1 26579:1 26589:1 26590:3 26591:1 26593:2 26614:5 26643:1 26646:1 26648:1 26650:1 26656:1 26662:1 26668:1 26698:1 26716:1 26741:1 26754:1 26760:1 26768:1 26776:1 26805:1 26826:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26893:1 26901:1 26902:1 26907:2 26918:2 26925:1 26939:1 26954:1 26957:2 26974:1 26983:4 26989:1 26997:1 26998:2 27006:1 27020:5 27042:1 27046:1 27047:4 27070:1 27089:1 27091:1 27094:2 27095:1 27107:2 27118:1 27119:1 27127:2 27138:2 27157:2 27174:1 27178:6 27179:1 27212:3 27216:1 27234:1 27236:1 27239:1 27260:2 27278:1 27289:1 27299:4 27320:2 27321:1 27322:1 27327:1 27329:1 27330:1 27334:3 27335:1 27341:1 27372:1 27375:3 27378:1 27381:1 27387:1 27389:1 27406:1 27415:2 27421:1 27438:2 27439:1 27453:1 27454:2 27459:1 27482:1 27484:2 27510:1 27530:2 27535:1 27539:1 27555:1 27574:3 27583:5 27608:2 27613:1 27665:1 27670:1 27686:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:1 27763:1 27775:1 27780:1 27781:1 27787:1 27791:1 27792:1 27800:1 27804:1 27807:2 27822:1 27826:2 27845:1 27869:1 27873:1 27875:1 27888:1 27897:1 27912:2 27917:2 27920:1 27924:3 27940:4 27957:4 27965:5 27974:1 27990:1 27991:1 27997:1 28011:3 28025:1 28033:1 28043:1 28044:10 28071:1 28083:1 28087:2 28097:1 28098:1 28101:1 28102:2 28109:12 28121:1 28151:3 28177:1 28188:2 28189:1 28193:1 28213:2 28218:5 28225:2 28226:2 28242:2 28246:1 28251:3 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:3 28322:1 28335:2 28337:1 28347:1 28361:3 28372:1 28377:1 28381:1 28384:1 28398:1 28407:1 28409:1 28414:2 28416:1 28418:1 28420:1 28441:1 28458:1 28459:1 28499:1 28529:1 28533:1 28554:4 28557:1 28564:1 28588:1 28589:1 28600:2 28616:5 28619:1 28627:1 28637:1 28649:1 28672:1 28681:1 28686:1 28736:1 28743:1 28746:1 28755:2 28779:1 28801:1 28825:3 28845:1 28858:1 28860:6 28872:1 28893:1 28896:4 28907:1 28919:1 28928:2 28938:1 28946:2 28958:1 28959:1 28961:1 28978:1 28980:1 28983:1 28992:26 28993:4 28996:5 28998:1 28999:3 29011:1 29034:7 29048:1 29092:3 29100:2 29107:1 29115:1 29120:2 29131:1 29132:3 29142:4 29146:2 29176:12 29177:1 29180:2 29184:3 29186:1 29190:1 29202:2 29210:1 29213:1 29216:1 29221:2 29228:2 29236:1 29237:1 29238:1 29245:2 29251:2 29262:1 29267:2 29268:2 29274:1 29278:2 29281:1 29293:1 29295:1 29300:1 29302:2 29307:1 29343:1 29347:1 29362:2 29364:1 29365:1 29387:1 29388:1 29391:1 29405:5 29409:1 29420:1 29447:1 29449:1 29471:1 29473:2 29474:2 29477:1 29498:1 29514:1 29515:1 29518:1 29522:1 29524:1 29525:1 29529:2 29532:5 29538:1 29539:1 29548:1 29550:1 29551:1 29559:1 29566:2 29567:1 29569:1 29570:1 29579:1 29587:2 29632:1 29652:1 29659:1 29678:1 29682:1 29684:1 29706:1 29712:1 29716:1 29717:1 29718:1 29722:1 29723:2 29736:1 29740:3 29743:1 29747:1 29749:1 29758:1 29766:1 29767:7 29773:1 29774:1 29777:1 29780:5 29782:1 29788:1 29801:1 29828:1 29832:1 29839:2 29840:1 29882:3 29890:1 29900:1 29914:4 29918:1 29920:2 29925:1 29927:1 29931:6 29940:1 29949:1 29969:1 29970:1 30001:2 30002:1 30011:1 30012:1 30035:2 30058:2 30081:1 30088:1 30104:1 30108:2 30113:1 30122:1 30136:1 30143:1 30150:2 30187:1 30194:7 30206:1 30208:1 30210:1 30227:1 30231:7 30243:5 30244:1 30250:1 30273:1 30311:1 30320:8 30322:3 30324:2 30326:1 30328:1 30331:3 30332:3 30344:1 30353:1 30362:1 30363:2 30367:3 30371:3 30408:1 30421:1 9 11:1 14:2 30:1 43:1 50:3 63:1 74:1 79:1 83:1 85:1 93:1 99:1 103:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 163:1 176:1 180:2 187:1 189:3 201:1 206:4 236:8 238:1 257:1 283:1 303:1 309:1 315:2 325:1 327:33 338:2 355:1 356:3 357:5 362:1 366:1 378:2 380:1 385:1 397:1 419:1 441:2 460:3 469:1 474:1 475:1 478:1 480:1 500:1 550:1 558:1 589:1 591:4 592:1 600:2 603:4 625:4 635:2 637:1 638:1 639:1 657:2 671:1 682:3 685:1 691:1 693:2 703:1 724:1 732:2 736:1 747:1 758:1 774:1 783:1 788:2 791:1 802:1 804:1 819:2 824:1 833:1 843:1 854:1 856:2 857:1 880:1 883:8 885:3 897:1 899:3 900:1 911:1 914:15 917:1 929:1 933:1 938:5 941:7 946:2 952:1 953:1 959:1 961:1 964:3 978:1 985:2 986:2 997:1 1005:1 1022:1 1032:3 1045:1 1052:3 1054:2 1060:2 1076:1 1080:2 1084:1 1085:1 1102:1 1103:1 1115:2 1125:1 1126:1 1133:1 1141:1 1142:1 1143:2 1148:2 1156:3 1163:1 1164:2 1172:1 1176:1 1187:1 1188:1 1194:1 1201:3 1206:1 1213:1 1230:1 1258:2 1291:1 1292:1 1300:2 1303:1 1313:1 1333:1 1336:1 1342:1 1353:1 1379:1 1380:1 1393:1 1404:1 1411:3 1434:1 1441:2 1443:1 1461:1 1464:2 1468:6 1471:7 1474:1 1487:1 1489:1 1490:2 1491:1 1493:1 1494:1 1510:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:7 1584:1 1614:1 1621:1 1636:1 1639:1 1641:3 1642:3 1650:1 1658:1 1677:5 1680:1 1700:1 1701:3 1706:6 1712:2 1732:1 1733:1 1751:1 1752:1 1775:1 1785:1 1803:1 1814:3 1818:1 1827:1 1830:1 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1883:1 1884:1 1886:1 1908:1 1934:1 1954:1 1956:2 1958:18 1965:1 1970:2 1981:1 1986:1 1991:1 1996:1 1997:1 2008:1 2011:1 2018:8 2019:2 2051:1 2053:1 2057:2 2063:3 2075:1 2088:3 2102:1 2107:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2186:1 2195:1 2211:1 2213:1 2216:1 2218:5 2219:1 2220:1 2223:2 2226:1 2232:1 2234:4 2238:2 2239:2 2240:4 2243:1 2251:1 2255:2 2258:1 2274:1 2276:1 2280:2 2281:2 2284:2 2285:8 2288:4 2291:1 2292:2 2293:4 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:2 2314:1 2316:6 2318:2 2319:7 2331:1 2332:1 2334:1 2348:1 2369:1 2380:2 2386:1 2393:1 2407:1 2411:1 2418:1 2430:3 2437:4 2438:1 2445:1 2448:1 2453:1 2457:2 2460:1 2466:2 2482:4 2493:6 2505:1 2509:1 2511:1 2515:1 2532:1 2537:1 2561:5 2570:4 2577:1 2593:1 2595:2 2603:1 2608:3 2615:3 2618:2 2620:1 2623:1 2632:2 2661:2 2666:1 2682:1 2685:1 2690:1 2699:1 2701:3 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2740:1 2745:1 2748:1 2761:1 2763:2 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:7 2825:3 2831:4 2841:1 2848:1 2880:1 2882:1 2883:1 2889:2 2890:2 2904:2 2912:2 2933:5 2935:1 2941:23 2959:4 2975:2 2980:1 2982:1 2995:1 3002:11 3024:1 3032:5 3036:7 3037:1 3038:1 3039:1 3050:1 3061:1 3064:1 3068:1 3082:1 3092:1 3095:1 3097:1 3146:4 3162:1 3169:1 3176:1 3177:2 3184:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3287:1 3304:1 3312:5 3317:1 3325:1 3332:1 3338:1 3339:1 3343:1 3348:1 3357:1 3361:1 3370:1 3384:1 3386:4 3416:1 3431:2 3434:12 3481:1 3487:1 3510:2 3544:1 3551:1 3557:2 3561:1 3563:2 3564:2 3568:2 3571:1 3578:1 3581:1 3587:2 3601:1 3615:1 3619:2 3628:1 3635:2 3640:1 3648:1 3665:2 3670:1 3674:1 3678:2 3681:7 3699:5 3705:2 3706:1 3708:2 3709:2 3712:1 3715:1 3736:2 3741:6 3751:1 3754:1 3773:1 3784:1 3787:1 3791:2 3792:3 3796:1 3800:2 3803:2 3816:1 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:12 3873:1 3882:1 3888:1 3895:5 3897:1 3903:2 3904:12 3905:3 3906:1 3912:1 3923:1 3924:7 3932:1 3938:1 3955:1 3956:3 3958:1 3967:1 3969:1 3978:1 3981:1 3986:1 3992:1 3993:1 4000:1 4004:2 4016:1 4019:3 4022:3 4032:2 4045:1 4047:1 4053:2 4054:1 4058:1 4063:1 4077:4 4084:1 4085:1 4089:2 4093:1 4098:1 4099:2 4100:2 4108:4 4109:3 4114:1 4128:1 4144:1 4153:1 4165:1 4169:2 4181:1 4187:2 4196:2 4197:1 4204:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:6 4307:2 4315:1 4316:1 4319:1 4321:1 4325:1 4364:1 4378:2 4381:2 4388:1 4401:1 4405:1 4420:2 4455:2 4462:1 4469:1 4474:5 4494:1 4504:1 4535:1 4546:2 4555:1 4572:1 4598:1 4601:1 4631:2 4637:1 4661:1 4665:1 4675:1 4680:1 4697:1 4699:2 4719:1 4724:1 4728:2 4735:1 4741:3 4749:1 4751:1 4754:3 4772:2 4774:1 4788:1 4789:1 4804:1 4807:8 4843:1 4854:1 4870:1 4875:1 4889:1 4896:1 4903:7 4907:1 4918:1 4921:1 4935:1 4944:1 4951:1 4954:1 4986:3 5009:1 5019:23 5021:2 5024:1 5041:2 5052:1 5058:2 5071:1 5078:2 5083:7 5091:1 5093:2 5115:2 5117:1 5131:1 5132:1 5134:1 5135:7 5151:5 5152:6 5153:1 5154:1 5155:1 5157:1 5159:3 5160:1 5162:1 5163:2 5165:1 5166:1 5171:1 5173:2 5175:3 5176:1 5178:1 5184:1 5185:1 5187:4 5188:3 5211:1 5242:1 5246:1 5271:2 5277:2 5279:1 5299:2 5317:1 5321:1 5326:2 5327:1 5328:3 5336:2 5343:1 5344:2 5359:1 5367:1 5385:1 5396:2 5404:3 5409:1 5435:1 5459:1 5464:1 5466:1 5482:1 5487:1 5512:2 5518:8 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5607:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:2 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:2 5736:1 5745:1 5758:3 5763:1 5767:1 5772:1 5780:1 5786:1 5792:3 5797:1 5808:4 5815:1 5816:1 5849:3 5873:3 5888:1 5897:3 5898:1 5911:1 5914:4 5917:1 5921:2 5939:1 5945:1 5959:2 5975:1 5977:1 5987:1 6007:1 6011:1 6021:2 6022:1 6028:1 6059:3 6066:1 6097:1 6102:2 6129:1 6152:1 6183:4 6184:1 6205:14 6226:4 6229:1 6231:4 6238:1 6242:1 6247:1 6248:5 6249:2 6257:1 6280:3 6297:1 6301:1 6303:1 6308:1 6325:2 6345:1 6356:1 6380:2 6384:2 6385:1 6390:1 6400:1 6404:3 6410:1 6426:6 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:2 6488:1 6501:3 6503:1 6505:1 6507:2 6510:1 6511:1 6515:2 6517:1 6518:2 6519:3 6520:5 6523:1 6525:4 6526:10 6527:5 6530:1 6539:1 6568:1 6571:1 6591:2 6646:3 6648:1 6649:1 6681:2 6699:2 6743:1 6750:1 6763:1 6769:1 6777:1 6797:2 6798:1 6803:1 6814:1 6816:1 6822:2 6832:1 6833:1 6836:1 6844:1 6851:1 6855:1 6897:1 6898:2 6909:1 6911:1 6916:1 6919:2 6920:1 6924:1 6929:1 6940:9 6949:1 6960:2 6968:4 6973:1 6985:1 6987:1 6997:1 7002:1 7019:1 7029:1 7045:2 7047:1 7049:2 7058:2 7086:2 7087:2 7091:3 7098:1 7100:1 7113:3 7114:2 7128:1 7131:1 7142:1 7147:2 7148:1 7150:2 7154:1 7160:1 7169:1 7177:2 7212:1 7220:1 7245:1 7253:10 7255:1 7273:1 7281:2 7300:1 7302:1 7306:2 7310:2 7312:1 7332:1 7336:1 7337:1 7369:2 7411:3 7416:1 7435:2 7452:1 7479:2 7491:3 7495:1 7500:1 7505:2 7506:1 7509:1 7516:1 7521:1 7527:1 7535:1 7539:1 7549:5 7554:3 7555:1 7559:1 7579:2 7583:1 7596:2 7597:1 7603:2 7622:1 7627:2 7644:1 7663:1 7672:2 7690:2 7719:1 7723:1 7725:1 7726:2 7756:2 7757:13 7758:5 7763:1 7771:2 7784:2 7785:4 7786:1 7812:5 7813:1 7831:51 7836:1 7854:6 7855:11 7857:1 7860:2 7871:1 7883:2 7892:1 7908:1 7911:1 7923:1 7940:2 7941:1 7944:2 7964:1 7966:1 7967:2 7982:2 8035:2 8059:1 8062:3 8072:1 8087:1 8090:1 8093:2 8108:1 8112:6 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8209:1 8223:1 8226:1 8233:1 8250:1 8255:1 8258:1 8265:2 8266:3 8267:1 8269:1 8285:1 8287:2 8303:1 8306:1 8317:1 8319:1 8324:2 8330:1 8333:2 8338:2 8343:1 8348:3 8357:1 8358:8 8389:2 8394:1 8400:2 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8564:1 8566:1 8589:1 8591:1 8599:2 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:3 8638:1 8646:1 8656:1 8664:5 8667:1 8669:1 8671:1 8674:1 8701:1 8711:1 8716:1 8728:1 8736:1 8739:3 8740:5 8743:4 8744:2 8746:1 8748:3 8749:8 8752:2 8753:3 8755:1 8757:1 8767:1 8768:2 8784:4 8790:2 8792:3 8816:3 8820:1 8822:2 8826:2 8829:2 8834:2 8837:5 8853:1 8891:1 8892:2 8906:1 8907:1 8930:1 8939:1 8958:1 8968:1 8973:1 8974:1 8988:1 9008:1 9017:3 9024:1 9033:2 9041:3 9063:2 9066:1 9073:4 9074:2 9078:2 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9171:1 9177:1 9188:2 9199:5 9202:2 9220:2 9222:1 9241:3 9252:1 9263:1 9275:1 9276:2 9278:1 9292:1 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:4 9373:1 9386:1 9387:1 9394:2 9401:2 9403:1 9411:1 9420:2 9421:1 9459:1 9463:2 9467:7 9469:1 9470:1 9474:2 9477:1 9486:33 9489:3 9490:2 9508:2 9510:1 9520:1 9523:1 9535:1 9548:2 9567:1 9572:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:6 9634:2 9659:1 9676:1 9684:3 9702:1 9724:1 9728:1 9749:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9814:1 9824:1 9828:2 9831:1 9843:1 9844:1 9845:5 9851:1 9861:1 9869:4 9877:2 9886:1 9895:2 9919:2 9949:7 9962:2 9965:1 9966:4 9972:2 9974:1 9986:1 9991:1 9993:1 9995:1 10004:1 10005:1 10035:3 10053:1 10057:1 10065:1 10081:1 10089:2 10093:1 10108:7 10113:1 10120:1 10126:1 10130:1 10135:4 10142:1 10143:2 10145:1 10147:2 10149:1 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10186:1 10196:3 10198:1 10202:2 10203:1 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10308:1 10309:1 10329:2 10336:1 10345:1 10368:1 10397:1 10399:1 10400:1 10401:1 10402:1 10418:2 10443:1 10466:1 10479:1 10481:1 10489:1 10515:1 10520:1 10525:2 10548:1 10550:3 10570:1 10576:2 10588:1 10590:1 10608:2 10609:1 10625:3 10630:2 10638:2 10653:1 10655:1 10689:1 10690:1 10699:1 10712:1 10720:1 10722:1 10724:1 10764:1 10767:1 10769:1 10788:1 10790:3 10794:2 10800:5 10809:1 10810:1 10811:1 10813:1 10820:1 10823:1 10824:3 10841:3 10844:3 10846:1 10854:1 10865:3 10866:1 10867:1 10876:3 10878:3 10886:2 10888:1 10890:2 10892:1 10895:1 10916:1 10932:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:4 10990:12 11055:1 11056:1 11065:1 11067:2 11079:1 11112:3 11115:1 11117:1 11137:1 11159:1 11175:1 11180:1 11193:1 11211:1 11224:1 11236:1 11254:3 11257:3 11260:2 11262:2 11266:1 11269:2 11283:2 11291:1 11297:1 11298:1 11299:1 11302:1 11312:1 11323:1 11347:6 11351:1 11372:6 11377:1 11378:1 11381:1 11385:1 11411:1 11433:1 11434:2 11435:2 11437:1 11443:1 11452:1 11456:1 11468:1 11477:1 11482:1 11490:1 11501:1 11507:2 11516:1 11520:1 11544:1 11551:1 11554:1 11557:1 11566:1 11579:1 11583:5 11590:1 11602:1 11613:2 11616:1 11627:1 11637:1 11643:2 11650:1 11653:2 11659:1 11660:1 11662:1 11674:2 11675:1 11677:2 11682:2 11686:3 11706:8 11715:1 11749:1 11752:10 11753:1 11755:1 11772:1 11789:1 11790:1 11797:1 11819:1 11820:1 11830:1 11831:2 11848:2 11850:1 11852:1 11853:1 11860:1 11861:1 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:2 11930:3 11933:7 11958:1 11960:6 11962:6 11963:1 11989:1 11994:1 12006:1 12009:1 12011:1 12012:3 12016:1 12020:1 12022:2 12025:1 12026:2 12029:3 12032:1 12042:2 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:7 12085:1 12097:8 12108:1 12111:1 12116:1 12127:1 12132:2 12134:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:1 12263:1 12265:2 12291:1 12304:3 12306:1 12313:1 12315:1 12321:1 12340:1 12346:1 12359:3 12362:4 12382:1 12411:3 12414:1 12426:1 12433:1 12439:1 12442:1 12445:1 12505:1 12526:1 12540:1 12542:1 12543:2 12544:3 12545:2 12560:2 12571:1 12592:1 12593:2 12602:4 12603:5 12608:2 12611:1 12615:1 12619:2 12668:1 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:6 12747:1 12753:1 12782:3 12785:1 12798:1 12799:1 12806:1 12807:1 12810:2 12824:3 12843:2 12847:2 12872:1 12880:1 12896:1 12899:3 12904:2 12934:1 12935:1 12946:1 12950:1 12953:1 12954:6 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13091:8 13100:1 13108:1 13113:1 13114:1 13116:1 13126:1 13131:16 13136:1 13142:1 13151:3 13153:6 13155:1 13161:1 13180:1 13182:1 13189:1 13192:1 13195:3 13199:3 13222:2 13246:1 13250:1 13255:2 13256:5 13259:2 13270:2 13281:1 13283:1 13285:1 13288:1 13291:2 13292:1 13315:2 13330:4 13334:1 13339:1 13341:1 13362:1 13363:1 13364:1 13393:1 13406:1 13417:1 13450:1 13454:7 13458:1 13474:1 13503:1 13504:1 13523:1 13550:8 13556:1 13573:2 13576:1 13584:1 13588:7 13595:4 13600:1 13609:1 13611:6 13632:1 13633:1 13647:1 13652:1 13663:1 13665:1 13666:1 13684:2 13690:5 13715:1 13726:1 13732:2 13734:1 13747:6 13754:1 13756:4 13757:1 13764:1 13772:1 13773:1 13774:2 13781:1 13786:1 13800:2 13802:1 13807:1 13808:1 13811:1 13829:2 13830:4 13833:1 13840:1 13847:3 13854:1 13862:2 13865:1 13880:2 13887:7 13909:1 13913:1 13915:1 13933:4 13937:1 13938:3 13961:1 13973:1 13987:2 14008:1 14018:1 14019:1 14036:1 14051:1 14076:2 14081:2 14092:1 14094:1 14116:4 14118:1 14120:2 14123:4 14124:2 14127:2 14135:1 14138:1 14146:1 14149:1 14170:3 14186:1 14191:3 14198:2 14201:1 14204:1 14205:1 14233:1 14243:6 14254:1 14277:2 14290:3 14292:1 14299:1 14304:2 14316:1 14339:7 14343:1 14345:3 14346:1 14352:1 14359:1 14399:1 14401:1 14414:1 14426:3 14445:10 14455:1 14486:1 14489:2 14508:1 14525:1 14530:1 14531:1 14535:1 14560:2 14577:6 14591:1 14602:3 14611:1 14613:1 14617:1 14624:1 14643:1 14649:1 14651:1 14667:4 14668:1 14669:1 14681:1 14705:1 14720:1 14730:2 14732:1 14741:1 14751:2 14757:2 14768:2 14780:1 14783:3 14794:1 14795:1 14796:3 14797:9 14800:1 14803:6 14808:1 14812:3 14814:1 14815:2 14825:1 14833:1 14836:1 14861:1 14871:1 14913:1 14914:1 14927:5 14932:1 14961:2 14971:2 14974:1 14978:1 14979:2 14984:4 14996:1 15003:1 15012:1 15013:3 15023:1 15032:1 15037:3 15038:1 15060:1 15084:2 15099:2 15106:2 15109:3 15112:1 15113:1 15126:2 15129:2 15134:4 15137:1 15152:3 15157:1 15166:2 15181:1 15183:1 15253:1 15266:1 15270:1 15278:1 15303:2 15328:3 15329:1 15332:1 15334:1 15347:1 15349:1 15395:1 15396:1 15408:7 15410:1 15424:2 15425:1 15428:2 15444:1 15449:8 15450:3 15470:2 15483:1 15494:2 15497:1 15510:1 15511:1 15532:8 15535:1 15538:1 15543:1 15549:1 15569:1 15599:1 15624:1 15638:4 15641:1 15649:1 15651:1 15655:1 15668:1 15670:2 15681:1 15683:1 15692:4 15693:1 15698:2 15700:1 15715:1 15727:1 15735:1 15748:1 15754:1 15756:1 15760:1 15761:3 15774:2 15789:1 15796:1 15820:2 15828:1 15849:1 15863:11 15882:1 15886:2 15918:1 15924:2 15938:1 15941:1 15950:4 15951:1 15961:5 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16062:1 16081:1 16114:4 16118:1 16128:9 16133:3 16140:1 16141:3 16151:1 16160:2 16165:4 16171:2 16172:1 16173:7 16174:2 16176:1 16184:1 16189:1 16228:1 16233:1 16243:2 16266:1 16274:1 16275:2 16282:2 16301:1 16306:8 16312:1 16325:1 16335:2 16339:1 16345:1 16348:1 16359:3 16387:2 16403:6 16404:3 16406:1 16410:1 16411:1 16452:1 16458:1 16459:3 16468:1 16472:1 16478:1 16484:4 16488:2 16499:1 16536:1 16552:1 16553:4 16599:1 16607:1 16612:17 16613:1 16618:1 16624:1 16629:4 16635:2 16640:1 16641:1 16649:1 16652:1 16663:1 16670:2 16690:3 16693:1 16698:1 16707:2 16714:1 16716:1 16717:1 16726:1 16734:1 16740:2 16741:1 16745:2 16756:2 16760:1 16763:1 16789:1 16791:2 16826:4 16828:1 16829:1 16830:2 16850:1 16882:1 16885:1 16896:1 16922:1 16944:1 16960:1 16963:1 16966:2 16990:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17099:1 17101:1 17111:2 17133:1 17156:1 17158:1 17167:1 17177:1 17178:1 17188:1 17212:1 17216:1 17234:1 17237:2 17241:1 17245:2 17255:2 17272:1 17279:1 17281:1 17287:3 17288:2 17291:1 17310:1 17322:1 17337:1 17347:1 17362:2 17372:1 17374:1 17407:4 17411:1 17413:5 17419:1 17436:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:1 17499:2 17506:1 17510:1 17516:2 17535:4 17545:1 17551:1 17553:1 17564:1 17565:1 17569:2 17584:2 17586:1 17613:1 17617:1 17625:2 17630:1 17632:2 17639:6 17646:2 17666:1 17668:6 17671:1 17684:1 17690:1 17711:2 17712:2 17735:4 17737:2 17750:1 17754:1 17761:1 17762:2 17763:2 17777:3 17778:7 17779:1 17787:2 17820:1 17832:1 17844:1 17850:2 17857:2 17862:1 17898:1 17921:1 17946:1 17962:1 17968:4 17975:2 17980:2 18000:1 18004:1 18018:1 18025:1 18037:1 18039:1 18041:1 18043:3 18050:3 18051:1 18053:1 18060:4 18070:3 18071:1 18072:2 18076:1 18106:1 18110:2 18126:5 18127:4 18141:1 18151:2 18154:3 18172:1 18185:1 18189:1 18196:7 18208:1 18210:1 18240:1 18245:1 18252:2 18255:2 18256:1 18259:1 18263:1 18276:1 18281:2 18283:5 18286:1 18288:1 18291:1 18294:1 18304:2 18323:1 18324:1 18327:1 18344:1 18365:1 18366:3 18395:1 18403:2 18418:1 18422:2 18424:8 18426:1 18430:4 18436:30 18441:1 18444:1 18447:1 18451:2 18455:1 18459:1 18466:1 18476:4 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18528:1 18532:1 18537:2 18546:1 18548:1 18549:3 18550:1 18553:1 18569:1 18575:1 18586:1 18591:4 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:2 18698:1 18712:1 18720:2 18723:2 18736:5 18738:1 18740:1 18750:1 18761:2 18774:1 18780:1 18781:1 18805:1 18812:1 18843:1 18845:1 18867:1 18888:2 18891:2 18905:1 18915:1 18918:1 18928:1 18935:1 18962:1 18968:3 18969:1 19001:2 19069:4 19081:1 19095:1 19106:1 19113:2 19125:1 19148:2 19152:2 19153:2 19157:1 19172:2 19188:1 19191:5 19199:1 19218:1 19225:1 19229:1 19234:1 19237:1 19245:3 19251:2 19254:3 19259:1 19275:1 19279:1 19281:1 19287:5 19291:1 19294:1 19300:1 19304:2167 19308:1 19318:1 19324:1 19354:1 19367:4 19368:1 19377:3 19401:1 19402:1 19413:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:2 19506:1 19507:1 19521:1 19529:3 19535:6 19542:1 19548:5 19551:3 19552:4 19580:1 19583:1 19629:6 19633:2 19635:2 19641:1 19642:1 19665:1 19666:33 19675:1 19686:1 19692:7 19716:1 19747:1 19756:1 19761:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:3 19857:1 19860:1 19868:1 19882:1 19898:2 19908:1 19920:1 19927:1 19928:1 19953:1 19957:1 19964:1 19978:2 19981:2 19982:3 20010:2 20014:1 20018:2 20021:3 20027:1 20033:1 20036:1 20038:2 20043:4 20049:1 20053:1 20058:1 20064:1 20074:5 20078:1 20082:1 20091:1 20092:2 20106:2 20108:1 20123:1 20124:1 20127:3 20131:10 20147:1 20148:1 20172:7 20173:1 20183:2 20184:1 20188:1 20198:1 20242:1 20244:1 20247:3 20296:1 20300:1 20313:1 20317:1 20329:4 20331:1 20336:3 20339:2 20351:1 20353:1 20372:1 20374:3 20375:1 20383:1 20387:3 20399:1 20429:1 20434:1 20463:1 20468:2 20501:3 20516:1 20528:1 20559:2 20570:1 20571:1 20577:1 20584:3 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:4 20616:2 20620:6 20622:1 20624:1 20629:4 20641:1 20657:1 20664:1 20666:1 20681:1 20687:1 20692:2 20705:1 20708:1 20733:1 20754:2 20756:5 20760:1 20778:1 20783:2 20790:1 20791:4 20805:1 20807:1 20817:3 20818:1 20828:1 20832:1 20844:1 20848:2 20850:2 20852:1 20868:1 20875:1 20884:1 20886:1 20901:1 20912:4 20918:1 20920:1 20923:1 20928:2 20932:1 20941:1 20962:2 20964:2 20980:1 21002:5 21012:1 21032:1 21057:6 21058:3 21062:2 21068:2 21074:1 21080:1 21081:1 21120:1 21126:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21217:1 21220:1 21246:1 21251:1 21255:3 21258:1 21259:4 21271:1 21273:1 21290:1 21296:1 21298:1 21299:7 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:2 21390:1 21405:1 21407:2 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21475:1 21498:1 21505:1 21511:1 21514:1 21515:1 21526:1 21529:3 21539:1 21546:4 21547:1 21549:1 21550:1 21552:2 21553:1 21561:1 21574:4 21579:1 21584:1 21587:2 21588:2 21595:1 21599:1 21605:1 21613:7 21647:1 21656:2 21658:1 21659:3 21660:1 21673:1 21675:1 21702:3 21712:1 21731:1 21739:1 21751:1 21761:1 21788:1 21796:2 21802:2 21810:1 21832:1 21836:2 21840:2 21863:6 21872:1 21873:1 21875:1 21894:1 21901:1 21907:2 21952:2 21965:1 21971:1 21975:1 21976:1 21979:2 21985:1 21989:1 22005:1 22022:2 22026:1 22045:1 22058:2 22061:1 22076:1 22078:1 22082:1 22091:1 22122:1 22131:1 22142:1 22149:1 22160:1 22176:1 22177:1 22194:1 22219:1 22225:1 22240:1 22241:2 22243:1 22250:1 22254:3 22256:1 22258:2 22265:1 22266:1 22268:1 22272:3 22273:3 22275:1 22282:2 22283:1 22287:1 22289:1 22291:1 22292:1 22293:1 22298:2 22312:1 22321:1 22325:1 22332:1 22338:1 22346:4 22359:1 22361:2 22363:1 22365:1 22370:2 22371:2 22376:1 22378:1 22383:2 22391:2 22392:1 22401:1 22408:1 22413:1 22415:9 22419:1 22432:1 22433:2 22436:3 22437:1 22447:1 22455:1 22477:1 22491:2 22504:1 22507:2 22511:1 22513:2 22519:1 22525:8 22532:1 22539:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22624:1 22625:1 22632:1 22635:1 22661:1 22665:5 22672:1 22676:1 22678:1 22679:2 22681:2 22682:1 22688:1 22695:1 22696:1 22697:4 22698:3 22699:1 22716:2 22720:1 22729:1 22735:1 22738:1 22752:2 22766:2 22790:1 22798:3 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:4 22892:3 22893:1 22896:1 22897:1 22902:1 22924:1 22933:1 22940:2 22943:1 22947:2 22959:2 22961:1 22975:3 22994:1 23013:1 23017:1 23023:1 23029:1 23033:1 23034:1 23052:4 23053:5 23056:3 23057:1 23059:2 23072:2 23073:1 23089:1 23096:2 23109:1 23111:4 23118:1 23124:1 23125:1 23131:2 23134:1 23142:3 23144:2 23145:4 23154:1 23162:2 23165:1 23173:1 23174:1 23177:1 23178:3 23185:1 23205:2 23226:1 23229:2 23231:1 23233:1 23241:1 23243:1 23249:1 23251:3 23260:1 23263:2 23270:1 23290:1 23291:4 23292:1 23302:1 23309:2 23315:30 23320:1 23321:2 23323:4 23326:1 23327:3 23329:4 23333:1 23334:1 23336:1 23352:3 23354:1 23361:3 23364:1 23368:2 23384:2 23385:2 23389:1 23400:2 23419:1 23425:3 23437:1 23440:1 23487:3 23497:1 23501:8 23509:1 23530:2 23535:2 23552:1 23560:1 23569:1 23594:1 23596:2 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:3 23655:2 23663:1 23664:1 23685:1 23701:1 23702:2 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23827:1 23828:1 23830:1 23837:2 23844:1 23859:1 23860:1 23869:2 23872:1 23887:1 23888:2 23894:1 23903:2 23906:1 23914:2 23926:3 23927:1 23928:1 23944:3 23952:3 23955:2 23977:2 23978:1 23982:1 23984:1 23992:3 23997:1 24017:1 24038:1 24066:1 24079:1 24086:1 24107:1 24125:1 24129:1 24144:1 24153:1 24166:1 24169:3 24172:2 24173:1 24180:1 24181:1 24187:1 24196:3 24209:2 24214:2 24215:1 24218:1 24220:1 24228:1 24232:1 24258:2 24270:3 24278:1 24280:3 24282:1 24291:1 24293:2 24309:1 24325:1 24333:1 24336:1 24343:12 24351:1 24376:2 24393:1 24423:1 24424:1 24425:1 24443:1 24484:1 24488:1 24497:1 24513:1 24515:1 24522:1 24526:2 24533:2 24543:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:3 24604:1 24620:7 24622:2 24623:1 24631:1 24638:2 24649:1 24652:1 24661:2 24670:1 24725:1 24728:1 24731:1 24746:3 24748:1 24761:1 24762:1 24764:2 24774:1 24788:1 24791:2 24801:1 24822:1 24839:1 24862:1 24863:1 24902:3 24912:5 24914:1 24923:4 24927:1 24944:1 24947:1 24955:2 24956:1 24957:1 24964:1 24973:2 24974:1 24995:2 25011:1 25025:1 25028:3 25030:2 25032:1 25036:1 25060:2 25068:1 25075:1 25085:1 25087:2 25093:1 25099:3 25100:2 25106:1 25115:1 25117:1 25127:1 25136:1 25147:1 25148:1 25150:1 25156:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:1 25220:1 25221:2 25222:1 25224:7 25226:3 25228:4 25229:2 25234:1 25235:2 25236:2 25238:4 25248:2 25249:4 25255:2 25262:2 25268:4 25273:2 25297:1 25300:2 25301:1 25311:1 25315:2 25327:1 25337:4 25343:3 25363:2 25369:1 25370:1 25381:3 25393:1 25410:1 25414:1 25415:2 25439:1 25460:1 25463:1 25478:1 25504:3 25530:4 25540:1 25545:4 25565:2 25566:1 25590:1 25601:1 25602:2 25604:1 25613:1 25616:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25718:1 25752:3 25767:1 25769:1 25778:1 25781:1 25785:3 25794:2 25797:1 25828:4 25861:1 25879:2 25887:1 25900:1 25903:4 25909:1 25910:1 25915:1 25922:1 25927:1 25929:1 25931:4 25988:1 26007:1 26011:2 26023:3 26025:7 26060:11 26069:1 26083:9 26104:1 26112:1 26122:1 26127:1 26136:1 26138:1 26146:2 26150:1 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26216:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:6 26270:1 26280:2 26285:2 26288:9 26293:2 26294:4 26304:1 26307:1 26311:1 26317:2 26318:1 26320:1 26328:1 26329:1 26334:1 26348:1 26358:1 26363:2 26373:1 26379:4 26387:1 26400:1 26410:3 26416:2 26420:2 26422:2 26482:1 26494:1 26495:1 26511:1 26519:1 26523:1 26534:1 26560:2 26563:1 26579:1 26589:1 26590:3 26591:1 26593:2 26598:1 26614:5 26643:1 26646:1 26648:1 26650:1 26656:1 26662:1 26668:1 26698:1 26716:1 26741:1 26754:1 26760:1 26768:1 26776:1 26805:1 26826:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26893:1 26901:1 26902:1 26907:2 26918:2 26925:1 26939:1 26954:1 26957:2 26974:1 26983:5 26989:1 26997:1 26998:2 27006:1 27020:5 27042:1 27046:1 27047:4 27070:1 27074:1 27089:1 27091:1 27094:2 27095:1 27107:2 27118:1 27119:1 27127:2 27138:2 27157:2 27174:1 27178:6 27179:1 27212:4 27216:1 27234:1 27236:1 27239:1 27260:2 27278:1 27289:1 27299:4 27320:2 27321:1 27322:1 27327:1 27329:1 27330:1 27334:3 27335:2 27341:1 27372:1 27375:3 27378:1 27381:1 27387:1 27389:1 27406:1 27415:2 27421:1 27438:2 27439:1 27453:1 27454:2 27459:1 27482:1 27484:2 27510:1 27530:2 27535:1 27539:1 27555:1 27574:3 27583:5 27608:2 27613:1 27665:1 27670:1 27686:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:1 27763:1 27775:1 27780:1 27781:1 27787:1 27791:1 27792:1 27800:1 27804:1 27807:2 27822:1 27826:2 27845:1 27859:1 27869:1 27873:1 27875:1 27888:1 27897:1 27912:2 27916:1 27917:2 27920:1 27924:3 27940:4 27957:4 27965:5 27974:1 27990:1 27991:1 27997:1 28011:3 28025:1 28033:1 28043:1 28044:10 28071:1 28083:1 28087:2 28097:1 28098:1 28101:1 28102:2 28109:12 28121:1 28146:1 28151:3 28177:1 28188:2 28189:1 28193:1 28213:2 28218:6 28225:2 28226:2 28242:2 28246:1 28251:3 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:3 28322:1 28335:2 28337:1 28347:1 28361:3 28372:1 28377:1 28381:1 28384:1 28398:1 28407:2 28409:1 28414:2 28416:1 28418:1 28420:2 28441:1 28448:1 28458:1 28459:1 28499:1 28529:1 28533:1 28554:4 28557:1 28564:1 28588:1 28589:1 28600:2 28616:5 28619:1 28627:1 28637:1 28649:1 28672:1 28681:1 28686:1 28688:1 28714:1 28736:1 28743:1 28746:1 28755:2 28779:1 28801:1 28825:3 28845:1 28858:1 28860:6 28872:1 28893:1 28896:4 28905:1 28907:1 28919:1 28928:2 28938:1 28946:2 28958:1 28959:1 28961:1 28978:1 28980:2 28983:1 28992:26 28993:4 28996:5 28998:1 28999:3 29011:1 29034:7 29048:1 29092:3 29100:2 29107:1 29115:1 29120:2 29131:1 29132:3 29142:4 29146:2 29176:12 29177:1 29180:2 29184:3 29186:1 29190:2 29198:1 29202:2 29210:1 29213:1 29216:1 29221:2 29228:2 29236:1 29237:1 29238:1 29245:2 29251:2 29262:1 29267:2 29268:2 29274:1 29278:2 29281:1 29293:1 29295:1 29300:1 29302:2 29307:1 29343:1 29347:1 29362:2 29364:1 29365:1 29383:1 29387:1 29388:1 29391:1 29405:5 29409:1 29420:1 29447:1 29449:2 29471:1 29473:2 29474:2 29477:1 29498:1 29514:1 29515:1 29518:1 29522:1 29524:1 29525:1 29529:2 29532:5 29538:1 29539:1 29548:1 29550:1 29551:1 29559:2 29566:2 29567:1 29569:1 29570:1 29579:1 29587:2 29632:1 29652:1 29659:1 29678:1 29682:1 29684:1 29688:1 29706:1 29712:1 29716:1 29717:1 29718:1 29722:1 29723:2 29727:1 29736:1 29740:3 29743:1 29747:1 29749:1 29758:1 29766:1 29767:7 29773:2 29774:1 29777:1 29780:6 29782:1 29788:1 29801:1 29828:1 29832:1 29839:2 29840:1 29882:3 29890:1 29900:1 29914:4 29918:1 29920:2 29925:1 29927:1 29931:6 29936:1 29940:1 29949:1 29969:1 29970:1 30000:1 30001:2 30002:1 30011:1 30012:1 30015:1 30035:2 30053:1 30058:2 30081:1 30088:1 30104:1 30108:2 30113:1 30122:1 30136:1 30143:1 30150:2 30187:1 30194:7 30206:1 30208:1 30210:1 30227:1 30231:7 30243:5 30244:1 30250:1 30273:1 30311:1 30320:8 30322:3 30324:2 30326:1 30328:1 30331:3 30332:3 30344:1 30353:1 30362:1 30363:2 30367:3 30371:3 30408:1 30421:1 9 11:1 14:2 30:1 43:1 50:4 63:1 74:1 79:1 83:1 85:1 93:1 99:1 103:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 163:1 176:1 180:2 187:1 189:3 201:1 206:4 236:8 238:1 257:1 283:1 303:1 309:1 315:2 325:1 327:33 338:2 355:1 356:3 357:5 360:1 362:1 366:1 378:2 380:1 385:1 397:1 419:1 441:2 460:3 469:1 474:1 475:1 478:1 480:1 500:1 550:1 558:1 589:1 591:4 592:1 600:2 603:4 625:4 635:2 637:2 638:1 639:1 657:2 671:1 682:3 685:1 691:1 693:2 703:1 724:1 732:2 736:1 747:1 758:1 774:1 783:1 788:2 791:1 802:1 804:1 819:2 824:1 833:1 843:1 854:1 856:2 857:1 880:1 883:8 885:3 897:1 899:3 900:1 911:1 914:15 917:1 929:1 933:1 938:5 941:7 946:2 952:1 953:1 959:1 961:1 964:3 978:1 985:2 986:2 997:1 1005:1 1022:1 1032:3 1045:1 1052:4 1054:2 1060:2 1076:1 1080:2 1084:1 1085:1 1102:1 1103:1 1115:2 1125:1 1126:1 1133:1 1141:1 1142:1 1143:2 1148:2 1156:3 1163:1 1164:2 1172:1 1176:1 1187:1 1188:1 1194:1 1201:3 1206:1 1213:1 1230:1 1258:2 1287:1 1291:1 1292:1 1300:2 1303:1 1313:1 1333:1 1336:1 1342:1 1353:2 1379:1 1380:1 1393:1 1404:1 1411:3 1434:1 1441:2 1443:1 1461:1 1464:2 1468:6 1471:9 1474:1 1487:1 1489:1 1490:3 1491:1 1493:1 1494:2 1510:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:7 1584:1 1614:1 1621:1 1636:1 1639:1 1641:3 1642:3 1650:1 1658:1 1677:5 1680:1 1700:1 1701:3 1706:6 1712:2 1732:1 1733:1 1751:1 1752:1 1775:1 1785:1 1803:1 1814:3 1818:1 1827:1 1830:1 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1883:1 1884:1 1886:1 1908:1 1934:1 1954:1 1956:2 1958:18 1965:1 1970:2 1981:1 1986:1 1991:1 1996:1 1997:1 2008:1 2011:1 2018:8 2019:2 2051:1 2053:1 2057:2 2063:3 2075:1 2088:3 2100:1 2102:1 2107:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2178:1 2186:1 2195:1 2211:1 2213:1 2216:1 2218:5 2219:1 2220:1 2223:2 2226:1 2232:1 2234:4 2238:2 2239:2 2240:4 2243:1 2251:1 2255:2 2258:1 2274:1 2276:1 2278:1 2280:2 2281:2 2284:2 2285:8 2288:4 2291:1 2292:2 2293:4 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:2 2314:1 2316:6 2318:2 2319:7 2331:1 2332:1 2334:1 2348:1 2369:1 2380:2 2386:1 2393:1 2407:1 2411:1 2418:1 2430:3 2437:4 2438:1 2439:1 2445:1 2448:1 2453:1 2457:2 2460:1 2466:2 2482:4 2493:6 2505:1 2509:1 2511:1 2515:1 2532:1 2537:1 2561:5 2570:4 2577:1 2593:1 2595:2 2603:1 2608:4 2615:3 2618:2 2620:1 2623:1 2632:2 2661:2 2666:1 2682:1 2685:1 2690:1 2699:1 2701:3 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2740:1 2745:1 2748:1 2761:1 2763:2 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:7 2825:3 2831:5 2840:1 2841:1 2848:1 2880:1 2882:1 2883:2 2889:2 2890:2 2904:2 2912:2 2933:6 2935:1 2941:23 2959:4 2975:2 2980:1 2982:1 2995:1 3002:11 3024:1 3032:5 3036:7 3037:1 3038:1 3039:1 3050:1 3061:1 3064:1 3068:1 3082:1 3092:1 3095:1 3097:1 3146:4 3162:1 3169:1 3176:1 3177:2 3184:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3287:1 3304:1 3312:5 3317:1 3325:1 3332:1 3338:1 3339:1 3343:1 3348:1 3357:1 3361:1 3370:1 3374:1 3384:1 3386:4 3416:1 3431:2 3434:13 3481:1 3487:1 3510:2 3544:1 3551:1 3557:2 3561:1 3563:2 3564:2 3568:2 3571:1 3578:1 3581:1 3587:2 3601:1 3615:1 3619:2 3628:1 3635:2 3640:1 3648:1 3665:2 3670:1 3674:1 3678:2 3681:7 3699:5 3705:2 3706:1 3708:3 3709:2 3712:1 3715:1 3736:2 3741:6 3751:1 3754:1 3773:1 3784:1 3787:1 3791:2 3792:3 3796:1 3800:2 3803:2 3816:1 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:12 3873:1 3882:1 3888:1 3895:5 3897:1 3903:2 3904:12 3905:3 3906:1 3912:1 3923:1 3924:7 3932:1 3938:1 3955:1 3956:3 3958:1 3967:1 3969:1 3978:1 3981:1 3986:1 3992:1 3993:1 4000:1 4004:2 4016:1 4019:3 4022:3 4032:2 4045:1 4047:1 4053:2 4054:1 4058:1 4063:1 4066:1 4077:4 4084:1 4085:1 4089:2 4093:1 4098:1 4099:2 4100:2 4108:4 4109:3 4114:1 4128:1 4144:1 4153:1 4165:1 4169:2 4181:1 4187:4 4196:2 4197:1 4204:1 4236:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:6 4307:2 4315:1 4316:1 4319:1 4321:1 4325:1 4364:1 4378:2 4381:2 4388:1 4401:1 4405:1 4420:2 4455:2 4462:1 4469:1 4474:5 4494:1 4504:1 4535:1 4546:3 4555:1 4572:1 4593:1 4598:1 4601:1 4631:2 4637:1 4661:1 4665:1 4675:1 4680:1 4697:1 4699:2 4719:1 4724:1 4728:2 4735:1 4741:3 4749:1 4751:1 4754:3 4772:2 4774:1 4788:1 4789:1 4804:1 4807:8 4843:1 4854:1 4870:1 4875:1 4879:1 4889:1 4896:1 4903:7 4907:1 4918:1 4921:1 4935:1 4944:1 4951:1 4954:1 4986:3 5009:1 5019:25 5021:2 5024:1 5041:2 5052:1 5058:4 5071:1 5078:2 5083:7 5091:1 5093:2 5115:2 5117:1 5131:1 5132:1 5134:1 5135:7 5151:5 5152:6 5153:1 5154:1 5155:1 5157:1 5159:3 5160:1 5162:1 5163:2 5165:1 5166:1 5171:1 5173:3 5175:3 5176:1 5178:1 5184:1 5185:1 5187:4 5188:3 5211:1 5212:1 5242:1 5246:1 5271:2 5277:2 5279:1 5299:2 5317:1 5321:1 5326:2 5327:1 5328:3 5336:2 5343:1 5344:3 5359:1 5367:1 5385:1 5396:2 5404:3 5409:1 5435:1 5459:1 5464:1 5466:1 5482:1 5487:1 5512:2 5518:8 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5607:2 5612:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:2 5693:2 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:2 5736:1 5745:1 5758:3 5763:1 5767:1 5772:1 5780:1 5786:1 5792:3 5797:1 5808:4 5815:1 5816:1 5849:3 5873:3 5888:1 5897:3 5898:1 5911:1 5914:4 5917:1 5921:2 5939:1 5945:1 5959:2 5975:1 5977:1 5987:1 5994:1 6007:1 6011:1 6021:2 6022:1 6028:1 6059:3 6066:1 6097:1 6102:2 6129:1 6152:1 6183:4 6184:1 6202:1 6205:14 6226:4 6229:1 6231:4 6238:1 6242:1 6247:1 6248:5 6249:2 6257:1 6280:3 6297:1 6301:1 6303:1 6308:1 6325:2 6345:1 6356:1 6380:2 6384:2 6385:1 6390:1 6400:1 6404:3 6410:1 6426:6 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:2 6488:1 6501:3 6503:1 6505:1 6507:2 6510:1 6511:1 6515:3 6517:1 6518:3 6519:3 6520:5 6522:1 6523:1 6525:4 6526:10 6527:5 6530:1 6539:1 6568:1 6571:1 6591:2 6646:3 6648:1 6649:1 6652:1 6681:2 6699:2 6743:1 6750:1 6763:1 6769:1 6777:1 6797:2 6798:1 6803:1 6814:1 6816:1 6822:2 6832:1 6833:1 6836:1 6844:1 6851:1 6855:1 6897:1 6898:2 6903:1 6909:1 6911:1 6916:1 6919:2 6920:1 6924:1 6929:1 6940:9 6949:1 6960:2 6968:4 6973:1 6985:1 6987:1 6997:1 7002:1 7019:1 7029:1 7045:2 7047:1 7049:2 7058:2 7086:2 7087:2 7091:3 7098:1 7100:1 7113:3 7114:2 7128:1 7131:1 7142:1 7147:2 7148:1 7150:2 7154:1 7160:1 7169:1 7177:2 7212:1 7220:1 7245:1 7253:10 7255:1 7273:1 7281:2 7300:1 7302:1 7306:2 7310:2 7312:1 7321:1 7332:1 7336:1 7337:1 7369:2 7388:1 7411:3 7416:1 7435:2 7452:1 7479:2 7491:3 7495:1 7500:1 7505:3 7506:1 7509:1 7516:1 7521:1 7527:1 7535:1 7539:1 7549:5 7554:3 7555:1 7559:1 7579:2 7583:1 7596:2 7597:1 7603:2 7622:1 7627:2 7644:1 7663:1 7672:2 7690:2 7706:1 7719:1 7723:1 7725:1 7726:2 7756:2 7757:13 7758:5 7763:1 7771:2 7784:2 7785:4 7786:1 7812:5 7813:1 7831:52 7836:1 7854:7 7855:11 7857:1 7860:2 7871:1 7883:2 7892:1 7908:1 7911:1 7923:1 7940:2 7941:1 7944:2 7964:1 7966:1 7967:2 7982:2 8035:2 8059:1 8062:3 8072:1 8087:1 8090:1 8093:2 8108:1 8112:6 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8209:1 8223:1 8226:1 8233:1 8250:1 8255:1 8258:1 8265:3 8266:3 8267:1 8269:1 8285:1 8287:2 8303:1 8306:1 8317:1 8319:1 8324:2 8330:1 8333:2 8338:2 8339:1 8343:1 8347:1 8348:3 8357:1 8358:9 8389:2 8394:1 8400:2 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8564:1 8566:1 8569:1 8589:1 8591:1 8599:3 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:3 8638:1 8646:1 8656:1 8664:5 8667:1 8669:1 8671:1 8674:1 8701:1 8711:1 8716:1 8728:1 8736:1 8739:3 8740:5 8743:4 8744:2 8746:1 8748:3 8749:8 8752:2 8753:3 8755:1 8757:1 8767:2 8768:2 8784:4 8790:2 8792:4 8812:1 8816:3 8820:1 8822:2 8826:2 8829:2 8834:2 8837:5 8853:1 8860:1 8891:1 8892:2 8906:1 8907:1 8930:1 8939:1 8958:1 8968:1 8973:1 8974:1 8988:1 9008:1 9017:3 9024:1 9033:2 9041:3 9063:2 9066:1 9073:4 9074:2 9078:3 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9171:1 9177:1 9188:2 9199:5 9202:2 9220:2 9222:1 9241:3 9252:1 9261:1 9263:1 9275:1 9276:2 9278:1 9292:1 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:4 9373:1 9386:1 9387:1 9394:2 9401:2 9403:1 9411:1 9420:2 9421:1 9459:1 9463:2 9467:7 9469:1 9470:1 9474:2 9477:1 9486:33 9489:3 9490:2 9508:2 9510:1 9520:1 9523:1 9535:1 9548:4 9567:1 9572:1 9583:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:6 9634:2 9659:1 9676:1 9684:3 9702:1 9724:1 9728:1 9749:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9814:1 9824:1 9828:2 9831:1 9843:1 9844:1 9845:5 9851:1 9861:1 9869:4 9877:2 9886:1 9895:2 9919:2 9949:7 9955:1 9962:2 9965:1 9966:4 9972:2 9974:1 9986:1 9991:1 9993:1 9995:1 10004:1 10005:1 10035:3 10053:1 10057:1 10065:1 10081:1 10089:2 10093:1 10108:7 10113:1 10120:1 10126:1 10130:1 10135:4 10142:1 10143:2 10145:1 10147:2 10149:1 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10186:1 10196:3 10198:1 10202:2 10203:1 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10308:1 10309:1 10329:2 10336:1 10345:1 10368:1 10397:1 10399:2 10400:1 10401:1 10402:1 10418:2 10443:1 10466:1 10479:1 10481:1 10489:1 10515:1 10520:1 10525:2 10548:1 10550:3 10570:1 10576:2 10588:1 10590:1 10608:2 10609:1 10625:3 10630:2 10638:2 10653:1 10655:1 10689:1 10690:1 10699:1 10712:1 10720:1 10722:1 10724:1 10751:1 10764:1 10767:1 10769:1 10776:1 10788:1 10790:3 10794:2 10800:5 10809:1 10810:1 10811:1 10813:1 10820:1 10823:1 10824:3 10841:3 10844:3 10846:1 10854:1 10865:3 10866:1 10867:1 10876:4 10878:3 10886:2 10888:1 10890:2 10892:1 10895:1 10916:1 10921:1 10932:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:4 10990:13 11055:1 11056:1 11065:1 11067:2 11079:1 11112:4 11115:1 11117:1 11137:1 11159:1 11175:2 11180:1 11193:1 11211:1 11224:1 11236:1 11254:4 11257:3 11260:2 11262:2 11266:1 11269:2 11283:2 11291:1 11297:1 11298:2 11299:1 11302:1 11312:1 11323:1 11347:6 11351:1 11372:6 11377:1 11378:1 11381:2 11385:1 11411:1 11433:1 11434:2 11435:2 11437:1 11443:1 11452:1 11456:1 11468:1 11477:1 11482:1 11490:1 11501:1 11507:2 11516:1 11520:1 11534:1 11544:1 11551:1 11554:1 11557:1 11566:1 11579:1 11583:5 11590:1 11602:1 11613:2 11616:1 11627:1 11637:1 11643:2 11650:1 11653:2 11659:1 11660:1 11662:1 11674:2 11675:1 11677:2 11682:2 11686:3 11706:8 11715:1 11749:1 11752:10 11753:1 11755:1 11772:1 11775:1 11789:1 11790:1 11797:1 11819:1 11820:1 11830:1 11831:2 11848:2 11850:1 11852:1 11853:1 11860:1 11861:2 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:2 11930:3 11933:7 11958:1 11960:7 11962:6 11963:1 11989:1 11994:1 12006:1 12009:2 12011:1 12012:3 12016:1 12020:1 12022:2 12025:1 12026:2 12029:3 12032:1 12042:2 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:7 12085:1 12097:8 12108:1 12111:1 12116:1 12127:1 12132:2 12134:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:1 12263:1 12265:2 12291:1 12304:3 12306:1 12313:2 12315:1 12321:1 12340:1 12346:1 12359:3 12362:4 12382:1 12411:3 12414:1 12426:1 12433:1 12439:1 12442:1 12445:1 12505:2 12526:1 12540:1 12542:1 12543:2 12544:3 12545:2 12560:2 12571:1 12592:1 12593:2 12602:4 12603:5 12608:2 12611:1 12615:1 12619:2 12668:1 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:6 12747:1 12753:1 12775:1 12782:3 12785:1 12798:1 12799:1 12806:1 12807:1 12810:2 12824:3 12843:2 12847:2 12872:1 12880:1 12896:1 12899:4 12904:2 12934:1 12935:1 12946:1 12950:1 12953:1 12954:6 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13091:8 13100:1 13108:1 13113:1 13114:1 13116:1 13126:1 13131:16 13136:1 13142:1 13151:3 13153:6 13155:1 13161:2 13180:1 13182:1 13189:1 13192:1 13195:3 13199:3 13222:2 13246:1 13250:1 13255:2 13256:5 13259:2 13270:2 13281:1 13283:1 13285:1 13288:1 13291:2 13292:1 13315:2 13330:4 13334:1 13339:1 13341:1 13362:1 13363:1 13364:1 13393:1 13406:1 13417:1 13450:1 13454:7 13458:1 13474:1 13503:1 13504:1 13523:1 13550:8 13556:1 13573:3 13576:1 13584:1 13588:7 13595:4 13600:1 13609:1 13611:6 13632:1 13633:1 13647:2 13652:1 13663:1 13665:1 13666:1 13684:2 13690:5 13715:1 13726:1 13732:2 13734:1 13747:6 13754:1 13756:4 13757:2 13764:1 13772:1 13773:1 13774:2 13781:1 13786:2 13800:2 13802:1 13807:1 13808:1 13811:1 13829:2 13830:4 13833:1 13840:1 13847:3 13854:1 13862:2 13865:1 13880:2 13887:7 13909:1 13913:1 13915:1 13933:4 13937:1 13938:4 13961:1 13973:1 13987:2 14008:1 14018:1 14019:1 14036:1 14051:1 14075:1 14076:2 14081:2 14092:1 14094:1 14116:4 14118:1 14120:2 14123:4 14124:2 14127:2 14135:1 14138:1 14146:1 14149:1 14170:3 14186:1 14191:3 14198:2 14201:2 14204:1 14205:1 14233:1 14243:6 14254:1 14277:2 14290:3 14292:1 14299:1 14304:2 14316:1 14339:7 14343:1 14345:3 14346:1 14352:1 14359:2 14399:1 14401:1 14414:1 14426:3 14445:10 14455:1 14486:1 14489:2 14508:1 14525:1 14530:1 14531:1 14535:1 14560:2 14577:6 14586:2 14591:1 14602:3 14611:1 14613:1 14617:1 14624:1 14643:1 14649:1 14651:1 14658:1 14667:4 14668:1 14669:1 14681:1 14705:1 14720:1 14730:2 14732:1 14741:1 14751:2 14757:2 14768:2 14780:1 14783:3 14794:2 14795:1 14796:3 14797:9 14800:1 14803:6 14808:1 14812:3 14814:1 14815:2 14825:1 14833:1 14835:1 14836:1 14861:1 14871:1 14908:2 14913:1 14914:1 14927:5 14932:1 14961:2 14971:2 14974:1 14978:1 14979:4 14984:4 14987:1 14996:1 15003:1 15012:1 15013:3 15023:1 15032:1 15037:3 15038:1 15060:1 15084:3 15099:2 15106:2 15109:3 15112:1 15113:1 15126:2 15129:2 15134:4 15137:1 15152:3 15157:1 15166:2 15181:1 15183:1 15253:1 15266:1 15270:1 15278:1 15303:2 15328:3 15329:1 15332:1 15334:1 15347:1 15349:1 15395:1 15396:1 15408:7 15410:1 15424:2 15425:1 15428:2 15444:1 15449:8 15450:3 15470:2 15483:1 15494:2 15497:1 15510:1 15511:1 15532:8 15535:1 15538:1 15543:1 15549:1 15569:1 15599:1 15624:1 15638:4 15641:1 15649:1 15651:1 15655:1 15668:1 15670:2 15681:1 15683:1 15692:4 15693:1 15698:2 15700:1 15715:1 15727:1 15735:1 15739:1 15748:1 15754:1 15756:1 15760:1 15761:3 15774:2 15789:1 15796:1 15820:2 15828:1 15849:1 15863:11 15882:1 15886:2 15918:1 15924:2 15938:1 15941:1 15950:4 15951:1 15961:5 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16062:1 16081:1 16114:5 16118:1 16128:10 16133:3 16140:1 16141:3 16151:1 16160:2 16165:4 16171:2 16172:1 16173:7 16174:2 16176:1 16184:1 16189:1 16228:1 16233:1 16243:2 16263:1 16266:1 16274:1 16275:2 16282:4 16301:1 16306:9 16312:1 16325:1 16335:2 16339:1 16345:1 16348:1 16359:3 16387:2 16403:6 16404:3 16406:1 16410:1 16411:1 16452:1 16458:1 16459:3 16468:1 16472:1 16478:1 16484:4 16488:2 16499:1 16536:1 16552:1 16553:4 16586:1 16599:1 16607:1 16612:17 16613:1 16618:1 16624:1 16629:4 16635:2 16640:1 16641:1 16649:1 16652:1 16663:1 16670:2 16690:4 16693:1 16698:1 16707:2 16714:1 16716:1 16717:1 16721:1 16726:1 16734:1 16740:2 16741:1 16745:2 16756:2 16760:1 16763:1 16789:1 16791:2 16826:4 16828:1 16829:1 16830:2 16850:1 16882:1 16885:1 16896:1 16922:1 16944:1 16960:1 16963:1 16966:3 16990:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17099:1 17101:1 17111:2 17133:1 17156:1 17158:1 17167:1 17177:2 17178:1 17188:1 17212:1 17216:1 17234:1 17237:2 17241:1 17245:2 17255:2 17272:1 17279:1 17281:1 17287:3 17288:2 17291:1 17299:1 17310:1 17322:1 17337:1 17347:1 17362:2 17372:1 17374:1 17407:4 17411:1 17413:5 17419:1 17436:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:1 17499:2 17506:1 17510:1 17516:2 17535:4 17545:1 17551:2 17553:1 17564:1 17565:1 17569:2 17584:2 17586:1 17613:1 17617:1 17625:2 17630:1 17632:2 17639:6 17646:2 17666:1 17668:6 17671:1 17684:1 17690:1 17711:2 17712:2 17735:4 17737:2 17750:1 17754:1 17761:1 17762:2 17763:2 17777:3 17778:7 17779:1 17787:2 17820:1 17832:1 17844:1 17850:2 17857:2 17862:1 17898:1 17921:1 17946:1 17962:1 17968:4 17975:2 17980:2 18000:1 18004:1 18018:1 18019:1 18025:1 18037:1 18039:1 18041:1 18043:3 18050:3 18051:1 18053:1 18060:4 18070:3 18071:1 18072:2 18076:1 18106:1 18110:2 18126:5 18127:4 18141:1 18151:2 18154:3 18172:1 18185:1 18189:1 18196:7 18208:1 18210:1 18240:1 18245:1 18252:2 18255:2 18256:1 18259:1 18263:1 18276:1 18281:2 18283:5 18286:1 18288:1 18291:1 18294:1 18304:2 18323:1 18324:1 18327:1 18344:1 18365:1 18366:3 18395:1 18403:2 18418:1 18422:2 18424:8 18426:1 18430:4 18436:31 18441:1 18444:1 18447:1 18451:2 18455:1 18459:1 18466:1 18476:4 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18528:1 18532:1 18537:2 18546:1 18548:1 18549:4 18550:1 18553:1 18569:1 18575:1 18586:1 18591:4 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:2 18698:1 18712:1 18720:2 18723:2 18736:5 18738:1 18740:1 18750:1 18761:2 18774:1 18780:1 18781:1 18805:1 18812:1 18843:1 18845:1 18867:1 18888:2 18891:2 18905:1 18915:1 18918:1 18928:1 18935:1 18962:1 18968:3 18969:1 19001:2 19069:4 19081:1 19095:1 19106:1 19113:2 19125:1 19148:2 19152:3 19153:3 19157:1 19172:2 19188:1 19191:5 19199:1 19218:1 19225:1 19229:1 19234:1 19237:1 19245:3 19251:2 19254:3 19259:1 19275:1 19279:1 19281:1 19287:5 19291:1 19294:1 19300:1 19304:2243 19308:1 19318:1 19324:1 19354:1 19367:4 19368:1 19377:3 19401:1 19402:1 19413:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:2 19506:1 19507:1 19521:1 19529:3 19535:6 19542:1 19548:5 19551:3 19552:4 19568:1 19580:1 19583:1 19616:1 19629:7 19633:2 19635:2 19641:1 19642:1 19665:1 19666:33 19675:1 19686:1 19692:7 19716:1 19747:1 19756:1 19761:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:3 19857:1 19860:1 19868:1 19882:1 19898:2 19908:1 19920:1 19927:1 19928:1 19953:1 19957:1 19964:1 19978:2 19981:2 19982:3 20010:2 20014:1 20018:2 20021:3 20027:1 20033:1 20036:2 20038:2 20043:4 20049:1 20053:1 20058:1 20064:1 20074:5 20078:1 20082:1 20091:1 20092:2 20106:2 20108:1 20123:1 20124:1 20127:4 20131:10 20147:1 20148:1 20172:7 20173:1 20183:2 20184:1 20188:1 20198:1 20242:1 20244:1 20247:3 20296:1 20300:1 20313:1 20317:1 20329:4 20331:1 20336:3 20339:2 20351:2 20353:1 20372:1 20374:3 20375:1 20383:1 20387:3 20399:1 20429:1 20434:1 20463:1 20468:2 20501:3 20516:1 20528:1 20559:2 20570:1 20571:1 20577:1 20584:3 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:4 20616:2 20620:6 20622:1 20624:1 20629:4 20641:1 20657:1 20664:1 20666:1 20681:1 20687:1 20692:2 20705:1 20708:1 20733:1 20754:2 20756:5 20760:1 20778:1 20783:2 20790:1 20791:4 20805:1 20807:1 20817:4 20818:1 20828:1 20832:1 20844:1 20848:2 20850:2 20852:1 20868:1 20875:1 20884:1 20886:1 20901:1 20912:4 20918:1 20920:1 20923:1 20928:3 20932:1 20941:1 20947:1 20962:2 20964:2 20980:1 21002:5 21012:1 21019:1 21032:1 21057:6 21058:3 21062:3 21068:2 21074:1 21080:1 21081:1 21120:1 21126:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21217:1 21220:1 21221:1 21246:1 21251:1 21255:3 21258:1 21259:4 21265:1 21271:1 21273:1 21290:1 21296:1 21298:1 21299:7 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:2 21390:1 21398:1 21405:1 21407:2 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21475:1 21498:1 21503:1 21505:1 21511:1 21514:1 21515:1 21526:1 21529:3 21539:1 21546:4 21547:1 21549:1 21550:1 21552:2 21553:1 21561:1 21564:1 21574:4 21579:1 21584:1 21587:3 21588:3 21595:1 21599:1 21605:1 21613:7 21647:1 21656:2 21658:1 21659:3 21660:1 21673:1 21675:1 21702:3 21712:1 21731:1 21739:1 21751:1 21761:1 21788:1 21796:2 21802:2 21810:1 21832:1 21836:2 21840:2 21863:6 21872:1 21873:1 21875:1 21894:2 21901:1 21907:2 21952:2 21965:1 21971:1 21975:1 21976:1 21979:2 21985:1 21989:1 22005:1 22022:2 22026:1 22045:1 22058:2 22061:1 22076:1 22078:1 22082:1 22091:1 22122:1 22131:1 22142:1 22149:1 22160:1 22169:1 22170:1 22176:1 22177:1 22194:1 22219:1 22225:1 22240:1 22241:2 22243:1 22250:1 22254:4 22256:1 22257:1 22258:2 22265:1 22266:1 22268:1 22272:3 22273:3 22275:2 22282:2 22283:1 22287:1 22289:1 22291:1 22292:1 22293:1 22298:2 22312:1 22321:1 22325:1 22332:1 22338:1 22346:4 22359:1 22361:2 22363:1 22365:1 22370:2 22371:2 22376:1 22378:1 22383:2 22391:2 22392:1 22401:1 22408:1 22413:1 22415:9 22419:1 22432:1 22433:2 22436:4 22437:1 22447:2 22455:1 22477:1 22491:2 22504:1 22507:2 22511:1 22513:2 22519:1 22525:8 22532:2 22539:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22624:1 22625:1 22632:1 22635:1 22661:1 22665:5 22672:1 22676:1 22678:1 22679:2 22681:2 22682:1 22688:1 22695:1 22696:1 22697:6 22698:3 22699:1 22716:2 22720:1 22729:1 22735:1 22738:1 22752:2 22766:2 22768:1 22790:1 22798:3 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:4 22892:3 22893:1 22896:1 22897:1 22902:1 22924:1 22933:1 22940:2 22943:1 22947:2 22959:2 22961:1 22975:3 22994:1 23013:1 23017:1 23023:1 23029:1 23033:1 23034:1 23052:5 23053:5 23056:3 23057:1 23059:2 23072:2 23073:1 23089:1 23096:2 23109:1 23111:4 23118:1 23124:1 23125:1 23131:2 23134:1 23142:3 23144:2 23145:4 23154:1 23162:2 23165:1 23173:1 23174:1 23177:1 23178:3 23185:1 23205:2 23226:1 23229:2 23231:1 23233:1 23241:1 23243:1 23249:1 23251:3 23260:1 23263:3 23270:1 23290:1 23291:5 23292:1 23302:1 23309:2 23315:31 23320:1 23321:3 23323:4 23326:1 23327:3 23329:4 23333:1 23334:1 23336:1 23352:3 23354:1 23361:3 23364:1 23368:2 23384:2 23385:2 23389:1 23400:2 23419:1 23425:3 23437:1 23440:1 23454:1 23487:3 23497:1 23501:8 23509:1 23530:2 23535:2 23552:1 23560:1 23569:1 23594:1 23596:2 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:4 23655:2 23663:1 23664:1 23685:1 23701:1 23702:2 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23827:1 23828:1 23830:1 23837:2 23844:1 23859:1 23860:1 23869:2 23872:1 23887:1 23888:2 23894:1 23903:2 23906:1 23908:2 23914:2 23926:3 23927:1 23928:1 23944:3 23952:3 23955:2 23977:2 23978:1 23982:1 23984:1 23992:3 23997:1 24017:1 24020:1 24035:1 24038:1 24066:1 24079:1 24086:1 24107:1 24125:1 24129:1 24144:2 24153:1 24161:1 24166:1 24169:3 24172:2 24173:1 24180:1 24181:1 24187:2 24196:3 24209:2 24214:2 24215:1 24218:1 24220:1 24228:1 24232:1 24258:2 24270:3 24278:1 24280:5 24282:1 24291:1 24293:2 24309:2 24325:1 24333:1 24336:1 24343:12 24351:1 24376:2 24393:1 24423:2 24424:1 24425:1 24443:1 24476:1 24484:2 24488:1 24497:1 24513:1 24515:1 24522:1 24526:3 24533:2 24543:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:3 24604:1 24620:7 24622:2 24623:1 24631:1 24638:4 24649:1 24652:1 24661:2 24670:1 24725:1 24728:1 24731:1 24746:3 24748:1 24761:1 24762:1 24764:2 24774:1 24788:1 24791:2 24801:1 24822:1 24839:1 24862:1 24863:1 24902:4 24912:5 24914:1 24923:4 24927:1 24944:1 24947:1 24955:2 24956:1 24957:1 24964:1 24965:1 24973:2 24974:1 24995:2 25011:1 25025:1 25028:3 25030:2 25032:1 25036:1 25060:2 25068:1 25075:1 25085:1 25087:2 25093:1 25099:3 25100:2 25106:1 25115:1 25117:1 25127:1 25136:1 25147:1 25148:1 25150:1 25156:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:2 25220:1 25221:2 25222:1 25224:7 25226:3 25228:4 25229:2 25234:1 25235:2 25236:2 25238:4 25248:2 25249:4 25255:2 25262:2 25268:5 25273:2 25297:1 25300:2 25301:1 25311:1 25315:2 25327:1 25337:4 25343:3 25363:2 25369:1 25370:1 25381:3 25393:1 25410:1 25414:1 25415:2 25439:1 25460:1 25463:1 25478:1 25504:3 25530:4 25540:1 25545:4 25565:2 25566:1 25590:1 25596:1 25601:1 25602:2 25604:1 25613:1 25616:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25718:2 25752:3 25762:1 25767:1 25769:1 25778:1 25781:2 25785:3 25794:2 25797:1 25828:4 25861:1 25879:2 25887:1 25900:1 25903:4 25909:1 25910:1 25915:1 25922:1 25927:1 25929:1 25931:4 25988:1 26007:1 26011:2 26023:3 26025:8 26060:11 26069:1 26083:9 26104:1 26112:1 26122:1 26127:1 26136:1 26138:1 26146:2 26150:1 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26216:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:6 26270:1 26280:2 26285:2 26288:9 26293:2 26294:4 26304:1 26307:1 26311:1 26317:2 26318:1 26320:1 26328:1 26329:1 26334:1 26348:1 26358:1 26363:2 26373:1 26379:4 26387:1 26400:1 26410:3 26416:2 26420:2 26422:2 26482:1 26494:2 26495:1 26511:1 26519:1 26523:1 26534:1 26560:2 26563:1 26579:1 26589:1 26590:3 26591:1 26593:2 26598:1 26614:5 26643:1 26646:1 26648:1 26650:1 26654:2 26656:1 26662:1 26668:1 26698:1 26716:1 26741:1 26754:1 26760:1 26768:1 26776:1 26805:1 26826:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26893:1 26901:1 26902:1 26907:2 26918:2 26925:1 26939:1 26954:1 26957:2 26974:1 26983:5 26989:1 26997:1 26998:2 27006:1 27020:5 27042:1 27046:1 27047:4 27070:2 27074:1 27089:1 27091:1 27094:2 27095:1 27101:1 27107:2 27118:1 27119:1 27127:2 27138:2 27157:2 27174:1 27178:6 27179:1 27212:5 27216:1 27234:1 27236:1 27239:1 27260:2 27278:1 27289:1 27299:4 27311:1 27320:2 27321:2 27322:1 27327:1 27329:1 27330:1 27334:3 27335:2 27341:1 27372:1 27375:4 27378:1 27381:1 27387:1 27389:1 27406:2 27415:2 27421:1 27438:2 27439:1 27453:1 27454:2 27459:1 27482:1 27484:2 27510:1 27530:2 27535:1 27539:1 27555:1 27574:3 27583:5 27608:2 27613:1 27665:1 27670:1 27686:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:1 27763:1 27775:1 27780:1 27781:1 27787:1 27791:1 27792:1 27800:1 27804:1 27807:2 27822:1 27826:2 27845:1 27857:1 27859:1 27869:1 27873:1 27875:1 27888:1 27897:1 27912:2 27916:1 27917:2 27920:1 27924:3 27940:4 27957:4 27965:5 27974:1 27990:1 27991:1 27997:1 28011:3 28025:1 28033:1 28043:1 28044:10 28071:1 28083:1 28087:2 28097:1 28098:1 28101:1 28102:2 28109:12 28121:1 28146:1 28151:3 28177:1 28188:2 28189:1 28193:1 28213:2 28218:6 28225:2 28226:2 28242:2 28246:1 28251:3 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:3 28322:1 28335:2 28337:1 28347:1 28361:3 28372:1 28377:1 28381:1 28384:1 28398:1 28407:2 28409:1 28414:2 28416:1 28418:1 28420:2 28441:1 28448:1 28458:1 28459:1 28499:1 28529:1 28533:1 28554:5 28557:1 28564:1 28588:1 28589:1 28600:2 28616:5 28619:1 28627:1 28637:1 28649:1 28672:1 28681:1 28686:1 28688:1 28714:1 28736:1 28743:1 28746:1 28755:2 28779:1 28801:1 28825:3 28845:1 28858:1 28860:6 28872:1 28893:1 28896:4 28905:1 28907:1 28919:1 28928:2 28938:1 28946:2 28958:1 28959:1 28961:1 28978:1 28980:2 28983:1 28992:26 28993:4 28996:5 28998:1 28999:3 29011:1 29034:7 29048:1 29092:3 29100:2 29107:1 29115:1 29120:2 29131:1 29132:3 29142:5 29146:2 29176:12 29177:1 29180:2 29184:3 29186:1 29190:2 29198:1 29202:2 29210:1 29213:1 29216:1 29221:2 29228:2 29236:1 29237:1 29238:1 29245:2 29251:2 29262:1 29267:2 29268:2 29274:1 29278:2 29281:1 29293:1 29295:1 29300:1 29302:2 29307:1 29324:1 29343:1 29347:1 29362:2 29364:1 29365:1 29383:1 29387:1 29388:1 29391:1 29405:5 29409:1 29420:1 29447:1 29449:2 29471:1 29473:2 29474:2 29477:1 29498:1 29504:1 29514:1 29515:1 29518:1 29522:1 29524:1 29525:1 29529:2 29532:5 29538:1 29539:1 29548:1 29550:1 29551:1 29559:2 29566:2 29567:1 29569:1 29570:1 29579:1 29587:2 29632:1 29652:1 29659:1 29678:1 29682:1 29684:1 29688:1 29706:1 29712:1 29716:1 29717:1 29718:2 29722:1 29723:2 29727:1 29736:1 29740:3 29743:1 29747:1 29749:1 29758:1 29766:1 29767:7 29773:2 29774:2 29777:1 29780:6 29782:1 29788:1 29801:1 29828:1 29832:1 29839:2 29840:1 29882:3 29890:1 29900:1 29914:4 29918:1 29920:2 29925:1 29927:1 29931:6 29936:1 29940:1 29949:1 29969:1 29970:1 30000:1 30001:2 30002:1 30011:1 30012:1 30015:1 30035:2 30053:1 30058:3 30081:2 30088:1 30104:1 30108:2 30113:1 30122:1 30136:1 30143:1 30150:2 30187:1 30194:7 30206:1 30208:1 30210:1 30227:1 30231:7 30243:5 30244:1 30250:1 30273:1 30311:1 30320:8 30322:3 30324:2 30326:1 30328:1 30331:3 30332:3 30344:1 30353:1 30362:1 30363:2 30367:3 30371:3 30408:1 30421:1 9 11:1 14:2 30:1 34:1 43:1 50:4 63:1 74:1 79:1 83:1 85:1 93:1 99:1 103:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 163:1 176:1 180:2 187:1 189:3 201:1 206:4 236:8 238:1 257:1 277:1 283:1 303:1 309:1 315:2 325:1 327:33 338:2 355:1 356:3 357:5 360:2 362:1 366:1 378:3 380:1 385:1 397:1 419:1 441:2 460:3 469:1 474:1 475:1 478:1 480:1 500:1 550:1 558:1 589:2 591:4 592:1 600:2 603:4 625:4 635:2 637:2 638:1 639:1 657:2 671:1 682:4 685:1 691:1 693:2 703:1 724:1 732:2 736:1 747:1 750:1 758:1 774:1 783:1 788:2 791:1 802:1 804:1 819:2 824:1 833:1 843:1 854:1 856:2 857:1 880:1 883:8 885:3 897:1 899:3 900:1 911:1 914:15 916:1 917:1 929:1 933:1 938:5 941:7 944:1 946:2 952:1 953:1 959:1 961:1 964:4 978:1 985:2 986:2 997:1 1005:1 1022:1 1032:3 1045:1 1052:4 1054:2 1060:2 1076:1 1080:2 1084:1 1085:1 1102:1 1103:1 1115:2 1125:1 1126:1 1133:1 1141:1 1142:1 1143:2 1148:2 1156:3 1163:1 1164:2 1172:1 1176:1 1187:1 1188:1 1194:1 1201:3 1206:1 1213:1 1230:1 1258:2 1287:1 1289:1 1291:1 1292:2 1300:2 1303:1 1313:1 1333:1 1336:1 1342:1 1353:2 1379:1 1380:1 1393:1 1404:1 1411:3 1434:1 1441:2 1443:1 1461:1 1464:2 1468:6 1471:10 1474:1 1487:1 1489:1 1490:3 1491:1 1493:1 1494:2 1510:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:7 1584:1 1614:2 1621:1 1636:1 1639:1 1641:3 1642:3 1650:1 1658:1 1677:5 1680:1 1700:1 1701:3 1706:6 1712:2 1732:1 1733:1 1751:1 1752:1 1775:1 1785:1 1803:1 1814:3 1818:1 1827:1 1830:1 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1883:1 1884:1 1886:2 1887:1 1908:1 1934:1 1952:1 1954:1 1956:2 1958:18 1965:1 1970:2 1981:2 1986:1 1991:1 1996:1 1997:1 2008:1 2011:1 2018:8 2019:2 2051:1 2053:1 2057:2 2063:3 2075:1 2088:3 2095:1 2100:1 2102:1 2107:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2178:1 2186:1 2195:1 2207:1 2211:1 2213:1 2216:1 2218:5 2219:1 2220:1 2223:2 2226:1 2232:1 2234:4 2238:2 2239:2 2240:4 2241:1 2243:1 2251:1 2255:2 2258:1 2274:1 2276:1 2278:2 2280:2 2281:2 2284:2 2285:8 2288:5 2291:1 2292:2 2293:4 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:2 2314:1 2316:6 2318:2 2319:7 2331:1 2332:1 2334:1 2348:1 2369:1 2380:2 2386:1 2393:1 2407:1 2411:1 2418:1 2430:3 2437:4 2438:1 2439:1 2445:1 2448:1 2453:1 2457:2 2460:1 2466:2 2482:4 2493:6 2505:1 2509:1 2511:1 2515:1 2532:1 2537:1 2561:5 2570:5 2577:1 2593:1 2595:2 2603:1 2608:4 2615:3 2618:2 2620:1 2623:1 2632:2 2661:2 2666:1 2682:1 2685:1 2690:1 2699:1 2701:3 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2730:1 2740:1 2745:1 2748:1 2761:1 2763:2 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:7 2825:3 2831:6 2840:1 2841:1 2848:1 2880:1 2882:1 2883:2 2889:2 2890:2 2904:2 2912:2 2933:6 2935:1 2941:24 2945:1 2959:4 2975:2 2980:1 2982:1 2995:1 3002:12 3021:1 3024:1 3029:1 3032:5 3036:7 3037:1 3038:1 3039:1 3050:1 3061:1 3064:1 3068:1 3082:1 3092:1 3095:1 3097:1 3146:4 3162:1 3169:1 3176:1 3177:2 3184:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3287:1 3293:1 3304:1 3312:5 3317:1 3325:1 3332:1 3338:1 3339:1 3343:1 3348:1 3357:1 3361:1 3370:1 3374:1 3384:1 3386:5 3416:1 3431:2 3434:13 3481:1 3487:1 3510:2 3544:1 3551:1 3557:2 3561:1 3563:2 3564:2 3568:2 3571:1 3578:1 3581:1 3587:2 3601:1 3615:2 3619:2 3628:1 3635:2 3640:1 3648:1 3665:3 3670:1 3674:1 3678:2 3681:7 3699:5 3705:2 3706:1 3708:3 3709:2 3712:1 3715:1 3736:2 3741:6 3751:1 3754:1 3773:1 3784:1 3787:1 3791:2 3792:3 3796:1 3800:2 3803:2 3816:1 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:12 3873:1 3882:1 3888:1 3895:5 3897:1 3903:2 3904:12 3905:3 3906:1 3912:1 3923:2 3924:7 3932:1 3938:1 3955:1 3956:3 3958:1 3967:1 3969:1 3978:1 3981:1 3986:1 3992:1 3993:1 4000:1 4004:2 4016:1 4019:3 4022:3 4032:2 4045:1 4047:1 4053:2 4054:1 4058:1 4063:1 4066:1 4077:4 4084:1 4085:1 4089:2 4093:1 4094:1 4098:1 4099:2 4100:2 4108:4 4109:4 4114:1 4128:1 4144:1 4153:1 4165:1 4169:2 4181:1 4187:4 4196:2 4197:1 4204:1 4236:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:6 4307:2 4315:1 4316:1 4319:1 4321:1 4325:1 4364:1 4378:2 4381:2 4388:1 4401:1 4405:1 4420:2 4455:2 4462:1 4469:1 4474:5 4494:1 4504:1 4535:1 4546:3 4555:1 4572:1 4593:1 4598:1 4601:1 4631:2 4637:1 4661:1 4665:1 4675:1 4680:1 4697:2 4699:2 4719:1 4724:1 4728:2 4735:1 4741:3 4749:1 4751:1 4754:3 4772:2 4774:1 4788:2 4789:1 4804:1 4807:8 4830:1 4843:1 4854:1 4870:1 4875:1 4879:1 4889:1 4896:1 4903:7 4907:1 4918:2 4921:1 4935:1 4944:1 4951:1 4954:1 4986:3 5009:1 5019:26 5021:2 5024:1 5041:3 5052:1 5058:4 5071:1 5078:2 5083:7 5091:1 5093:2 5115:2 5117:1 5131:1 5132:1 5134:1 5135:7 5151:5 5152:6 5153:1 5154:1 5155:1 5157:1 5159:3 5160:1 5162:1 5163:3 5165:1 5166:1 5171:1 5173:3 5175:3 5176:1 5178:1 5184:1 5185:1 5187:4 5188:3 5192:1 5211:1 5212:1 5242:1 5246:1 5271:2 5277:2 5279:1 5299:2 5317:1 5321:1 5326:2 5327:1 5328:3 5336:2 5343:1 5344:3 5359:1 5367:1 5385:1 5396:2 5404:3 5409:1 5435:1 5441:1 5459:1 5464:1 5466:1 5482:1 5487:1 5512:2 5518:8 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5607:2 5612:1 5625:1 5650:1 5663:1 5680:2 5691:1 5692:2 5693:2 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:2 5733:1 5736:1 5745:1 5758:3 5763:1 5767:1 5772:1 5780:1 5786:1 5792:3 5797:1 5808:4 5815:1 5816:1 5849:3 5873:3 5888:1 5897:3 5898:1 5911:1 5914:4 5917:1 5921:2 5939:1 5945:1 5959:2 5975:1 5977:1 5987:1 5994:1 6007:1 6011:1 6021:2 6022:1 6028:1 6059:3 6066:1 6097:1 6102:2 6129:1 6152:1 6183:4 6184:1 6202:2 6205:14 6226:4 6229:1 6231:4 6238:1 6242:1 6247:1 6248:5 6249:2 6257:1 6280:3 6288:1 6297:1 6301:1 6303:1 6308:1 6325:2 6345:1 6356:1 6364:1 6380:2 6384:2 6385:1 6390:1 6400:1 6404:3 6410:1 6426:6 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:2 6488:1 6501:3 6503:1 6505:1 6506:1 6507:2 6510:1 6511:1 6515:4 6517:1 6518:3 6519:3 6520:5 6522:1 6523:1 6525:4 6526:11 6527:5 6530:1 6539:1 6568:1 6571:1 6591:2 6646:4 6648:1 6649:1 6652:1 6681:2 6686:1 6699:2 6743:1 6750:1 6763:1 6769:1 6777:1 6797:2 6798:1 6803:1 6813:1 6814:1 6816:1 6822:3 6832:1 6833:1 6836:1 6844:1 6851:1 6855:1 6897:1 6898:2 6903:1 6909:1 6911:1 6916:1 6919:2 6920:1 6924:1 6929:1 6940:9 6949:1 6960:2 6968:4 6973:1 6985:1 6987:1 6997:1 7002:1 7014:1 7019:1 7029:1 7045:2 7047:1 7049:2 7058:2 7086:2 7087:2 7091:3 7098:1 7100:1 7113:3 7114:2 7128:1 7131:1 7142:2 7147:2 7148:1 7150:2 7154:1 7160:1 7169:1 7177:2 7212:1 7220:1 7245:1 7253:10 7255:1 7273:1 7281:2 7300:1 7302:1 7306:2 7310:2 7312:1 7321:1 7332:1 7336:1 7337:1 7369:2 7379:1 7388:1 7411:3 7416:1 7435:2 7452:1 7479:2 7491:3 7495:1 7500:1 7505:3 7506:1 7509:1 7516:1 7521:1 7527:1 7535:1 7539:1 7549:5 7554:3 7555:1 7559:1 7579:2 7583:1 7596:2 7597:1 7603:2 7622:1 7627:2 7644:1 7663:1 7672:2 7690:2 7706:1 7719:1 7723:1 7725:1 7726:2 7756:2 7757:13 7758:5 7763:1 7771:2 7784:2 7785:4 7786:2 7812:5 7813:1 7831:54 7836:2 7854:7 7855:12 7857:1 7860:3 7871:1 7883:2 7892:1 7899:1 7908:1 7911:1 7923:1 7940:3 7941:1 7944:2 7964:1 7966:1 7967:2 7982:2 8035:2 8059:1 8062:3 8072:1 8087:1 8090:1 8093:2 8108:1 8112:6 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8209:1 8223:1 8226:1 8233:1 8250:1 8255:1 8258:1 8265:3 8266:3 8267:1 8269:1 8285:2 8287:2 8303:1 8306:1 8317:2 8319:1 8324:2 8330:1 8333:2 8338:2 8339:1 8343:1 8347:1 8348:3 8357:1 8358:9 8389:2 8394:1 8400:2 8417:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8564:1 8566:1 8569:1 8589:1 8591:1 8599:4 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:3 8638:1 8646:1 8656:1 8664:5 8667:1 8669:2 8671:2 8674:1 8701:1 8711:1 8716:1 8721:1 8728:1 8736:1 8739:3 8740:5 8743:4 8744:2 8746:1 8748:3 8749:8 8752:2 8753:3 8755:1 8757:1 8767:2 8768:2 8784:4 8790:2 8792:4 8812:1 8816:3 8820:1 8822:2 8826:2 8829:2 8834:2 8837:5 8853:2 8860:1 8891:1 8892:2 8898:1 8906:1 8907:1 8930:1 8933:1 8939:1 8958:1 8968:1 8973:1 8974:1 8988:1 9008:1 9017:3 9024:1 9033:2 9041:3 9063:2 9066:1 9073:4 9074:2 9078:3 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9171:1 9177:1 9188:2 9199:5 9202:2 9220:2 9222:1 9241:3 9252:1 9261:1 9263:1 9275:1 9276:2 9278:1 9292:1 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:4 9373:1 9386:1 9387:1 9394:2 9401:2 9403:1 9411:1 9420:2 9421:1 9459:1 9463:2 9467:7 9469:1 9470:1 9474:2 9477:1 9482:1 9486:33 9489:3 9490:2 9508:2 9510:1 9520:1 9523:1 9535:1 9548:4 9567:1 9572:1 9583:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:6 9634:2 9659:1 9676:1 9684:3 9702:1 9724:1 9728:1 9749:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9814:1 9824:1 9828:2 9831:1 9843:1 9844:1 9845:5 9851:1 9861:1 9869:4 9877:2 9886:2 9895:2 9919:2 9949:7 9955:1 9962:2 9965:1 9966:4 9972:2 9974:1 9986:1 9991:1 9993:1 9995:1 10004:1 10005:1 10035:3 10053:1 10057:1 10065:1 10081:1 10089:2 10093:1 10108:7 10113:1 10120:1 10126:1 10130:1 10135:4 10142:1 10143:2 10145:1 10147:2 10149:1 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10181:1 10186:1 10196:3 10198:1 10202:2 10203:1 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10308:1 10309:1 10329:2 10336:1 10345:1 10368:1 10374:1 10391:1 10397:1 10399:2 10400:1 10401:1 10402:1 10418:2 10443:1 10466:1 10479:1 10481:1 10487:1 10489:1 10514:1 10515:1 10520:1 10525:2 10544:1 10548:1 10550:3 10570:1 10576:2 10584:1 10588:1 10590:1 10608:2 10609:1 10625:3 10630:2 10638:2 10653:1 10655:1 10689:1 10690:1 10699:1 10712:2 10720:1 10722:1 10724:1 10751:1 10764:1 10767:1 10769:1 10776:1 10788:1 10790:3 10794:2 10800:5 10809:1 10810:1 10811:1 10813:1 10820:1 10823:1 10824:3 10837:1 10840:1 10841:3 10844:3 10846:1 10854:1 10865:3 10866:1 10867:1 10876:4 10878:3 10886:2 10888:1 10890:2 10892:1 10895:1 10916:1 10921:1 10932:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:4 10990:13 11055:1 11056:1 11065:1 11067:2 11079:1 11112:4 11115:1 11117:1 11137:1 11159:1 11175:2 11180:1 11193:1 11211:1 11224:1 11236:1 11254:4 11257:4 11260:2 11262:2 11266:1 11269:2 11283:2 11291:1 11297:1 11298:2 11299:1 11302:1 11312:1 11313:1 11323:1 11347:6 11351:1 11364:1 11372:6 11377:1 11378:1 11381:2 11385:1 11411:1 11433:1 11434:2 11435:2 11437:1 11443:1 11452:1 11456:1 11468:1 11477:1 11482:1 11490:1 11501:1 11507:2 11516:1 11520:1 11534:1 11544:1 11551:1 11554:1 11557:1 11566:1 11579:1 11583:5 11590:1 11602:1 11613:2 11616:1 11627:1 11637:1 11643:2 11650:1 11653:2 11659:1 11660:1 11662:1 11674:2 11675:1 11677:2 11682:2 11686:3 11706:8 11715:1 11749:1 11752:11 11753:1 11755:1 11772:1 11775:1 11789:1 11790:1 11797:1 11819:1 11820:1 11830:1 11831:2 11848:2 11850:1 11852:1 11853:1 11860:1 11861:2 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:2 11930:3 11933:7 11958:1 11960:7 11962:6 11963:1 11989:1 11994:1 12006:1 12009:2 12011:1 12012:3 12016:1 12020:1 12022:2 12025:1 12026:2 12029:3 12030:1 12032:1 12042:2 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:7 12077:1 12085:1 12097:8 12108:2 12111:1 12116:1 12127:1 12132:2 12134:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:2 12263:1 12265:2 12291:1 12304:3 12306:1 12313:2 12315:1 12321:1 12340:1 12346:1 12359:3 12362:4 12382:1 12411:3 12414:1 12426:1 12433:1 12439:1 12442:1 12445:1 12505:2 12516:1 12526:1 12531:1 12540:1 12542:1 12543:2 12544:3 12545:2 12560:2 12571:1 12580:1 12592:1 12593:2 12602:4 12603:5 12608:2 12611:1 12615:1 12619:2 12668:1 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:6 12747:1 12753:1 12775:1 12782:3 12785:1 12798:1 12799:1 12806:1 12807:1 12810:2 12824:3 12843:2 12847:2 12872:1 12880:1 12890:1 12896:1 12899:4 12904:2 12934:1 12935:1 12946:1 12950:1 12953:1 12954:6 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13079:1 13091:8 13100:1 13108:1 13113:1 13114:1 13116:1 13126:1 13131:16 13136:1 13142:1 13151:3 13153:6 13155:1 13161:2 13180:1 13182:1 13189:1 13192:1 13195:3 13199:3 13222:2 13246:1 13250:1 13255:2 13256:5 13259:2 13270:2 13274:1 13281:1 13283:1 13285:1 13288:1 13291:2 13292:1 13315:2 13330:5 13334:1 13339:1 13341:1 13362:1 13363:1 13364:1 13393:1 13406:1 13417:1 13450:1 13454:7 13458:1 13474:1 13503:1 13504:1 13523:1 13550:8 13556:1 13573:3 13576:1 13584:1 13588:7 13595:4 13600:1 13609:2 13611:6 13632:1 13633:1 13647:2 13649:1 13652:1 13663:1 13665:1 13666:1 13684:2 13690:5 13715:1 13726:2 13732:2 13734:1 13744:1 13747:7 13754:1 13756:4 13757:2 13764:1 13772:1 13773:1 13774:2 13781:1 13786:2 13800:2 13802:1 13807:1 13808:1 13811:1 13829:2 13830:4 13833:1 13840:1 13847:3 13854:1 13862:2 13865:1 13880:2 13887:7 13909:1 13913:1 13915:1 13933:4 13937:1 13938:4 13961:1 13973:1 13987:2 14008:1 14018:1 14019:1 14036:1 14051:1 14075:1 14076:2 14081:2 14092:1 14094:1 14116:4 14118:1 14120:2 14123:4 14124:2 14127:2 14135:1 14138:1 14146:1 14149:1 14170:3 14186:1 14191:3 14198:2 14201:2 14204:1 14205:1 14233:1 14243:7 14254:1 14277:3 14290:3 14292:1 14299:1 14304:2 14316:1 14339:7 14343:1 14345:3 14346:1 14352:1 14359:2 14399:1 14401:1 14414:1 14426:3 14445:10 14455:1 14486:1 14489:2 14508:1 14525:1 14530:1 14531:1 14535:1 14542:1 14560:2 14577:7 14586:2 14591:1 14602:3 14611:1 14613:1 14617:1 14624:1 14643:1 14649:1 14651:1 14658:1 14667:4 14668:1 14669:1 14681:1 14705:1 14720:1 14730:2 14732:1 14741:1 14751:2 14757:2 14768:2 14780:1 14783:3 14794:2 14795:1 14796:3 14797:9 14800:1 14803:6 14808:1 14812:3 14814:2 14815:2 14825:1 14833:1 14835:1 14836:1 14861:1 14871:1 14908:2 14913:1 14914:1 14927:5 14932:1 14961:2 14971:2 14974:2 14978:1 14979:4 14984:4 14987:1 14996:1 15003:1 15012:1 15013:3 15023:1 15032:1 15037:3 15038:1 15060:1 15084:4 15099:2 15106:2 15109:3 15112:1 15113:1 15126:2 15129:2 15134:4 15137:1 15152:3 15157:1 15166:2 15181:1 15183:1 15253:1 15266:1 15270:1 15278:1 15303:2 15328:3 15329:1 15332:1 15334:1 15347:1 15349:1 15395:1 15396:1 15408:7 15410:1 15424:2 15425:1 15428:3 15435:1 15444:1 15449:8 15450:3 15470:2 15483:1 15494:2 15497:1 15510:1 15511:1 15532:8 15535:1 15538:1 15543:1 15549:1 15569:1 15599:1 15624:1 15638:4 15641:1 15649:1 15651:1 15655:1 15668:1 15670:2 15681:1 15683:1 15692:4 15693:1 15698:2 15700:1 15715:1 15727:1 15735:1 15739:1 15748:1 15754:1 15756:1 15760:1 15761:3 15774:2 15789:1 15796:1 15820:2 15828:1 15849:1 15863:11 15870:2 15882:1 15886:2 15918:1 15924:2 15938:1 15941:1 15950:4 15951:1 15961:5 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16062:1 16081:1 16114:5 16118:1 16128:11 16133:3 16140:1 16141:3 16151:1 16160:2 16165:5 16171:2 16172:1 16173:7 16174:3 16176:1 16184:1 16189:1 16228:1 16233:1 16243:2 16263:1 16266:1 16274:1 16275:2 16282:4 16301:1 16303:1 16306:9 16312:1 16325:1 16335:2 16339:1 16345:1 16348:1 16359:3 16387:2 16403:6 16404:3 16406:1 16410:1 16411:1 16452:1 16458:1 16459:3 16468:1 16472:1 16478:1 16484:4 16488:2 16499:1 16536:1 16552:1 16553:4 16586:1 16599:1 16607:1 16612:17 16613:1 16618:1 16624:1 16629:4 16635:2 16640:1 16641:1 16649:1 16652:1 16663:1 16670:2 16690:4 16693:1 16698:1 16707:2 16714:1 16716:1 16717:1 16721:1 16726:1 16734:1 16740:2 16741:1 16745:2 16756:2 16760:1 16763:1 16789:1 16791:2 16826:4 16828:1 16829:1 16830:2 16850:1 16876:1 16882:1 16885:1 16896:1 16922:1 16944:1 16960:1 16963:1 16966:3 16990:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17099:1 17101:1 17111:2 17133:1 17156:1 17158:1 17167:1 17177:2 17178:1 17188:1 17212:1 17216:1 17234:1 17237:2 17241:1 17245:2 17255:2 17272:1 17279:1 17281:1 17287:3 17288:3 17291:1 17299:1 17310:1 17322:1 17335:1 17337:1 17347:1 17360:1 17362:3 17372:1 17374:1 17407:4 17411:2 17413:5 17419:1 17436:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:1 17499:2 17506:1 17510:1 17516:2 17535:4 17545:1 17551:2 17553:1 17564:1 17565:1 17569:2 17584:2 17586:1 17613:1 17617:1 17625:2 17630:1 17632:2 17639:6 17646:2 17666:1 17668:6 17671:1 17684:1 17690:1 17711:2 17712:2 17735:4 17737:2 17750:1 17754:1 17761:1 17762:2 17763:2 17777:3 17778:7 17779:1 17787:2 17820:1 17832:1 17844:1 17850:2 17857:2 17862:1 17898:1 17921:1 17941:1 17946:1 17962:1 17968:4 17975:2 17980:2 18000:1 18004:1 18018:1 18019:1 18025:1 18037:1 18039:1 18041:2 18043:3 18050:3 18051:1 18053:1 18060:5 18070:3 18071:1 18072:2 18076:1 18106:1 18110:2 18126:5 18127:4 18141:1 18151:2 18154:3 18172:1 18185:1 18189:1 18196:7 18208:1 18210:1 18240:1 18245:1 18252:2 18255:2 18256:1 18259:1 18263:1 18276:1 18281:2 18283:5 18286:1 18288:1 18291:1 18294:1 18304:3 18323:1 18324:1 18327:1 18335:1 18344:1 18365:1 18366:3 18395:1 18403:2 18418:1 18422:2 18424:8 18426:1 18430:4 18436:32 18441:1 18444:1 18447:1 18451:2 18455:1 18459:1 18466:1 18476:4 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18528:1 18532:1 18537:3 18546:1 18548:1 18549:4 18550:1 18553:1 18569:1 18575:1 18586:1 18591:4 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:2 18698:1 18708:1 18712:1 18720:2 18723:2 18736:5 18738:1 18740:1 18750:1 18761:2 18774:1 18780:1 18781:1 18805:1 18812:1 18828:1 18843:1 18845:1 18867:1 18888:2 18891:2 18905:1 18915:1 18918:1 18928:1 18935:1 18962:1 18968:3 18969:1 18992:1 19001:2 19038:1 19069:4 19081:1 19095:1 19106:1 19113:2 19125:1 19148:2 19152:3 19153:3 19157:1 19172:2 19188:1 19191:6 19199:1 19218:1 19225:1 19229:1 19234:1 19237:1 19245:3 19251:2 19254:3 19259:1 19275:1 19279:1 19281:1 19287:5 19291:1 19294:2 19300:1 19304:2334 19308:1 19318:1 19324:1 19354:1 19359:1 19367:4 19368:1 19377:3 19401:1 19402:1 19413:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:2 19506:1 19507:1 19521:1 19529:3 19535:6 19542:1 19548:5 19551:3 19552:4 19554:1 19568:1 19580:1 19583:1 19616:1 19629:7 19633:2 19635:2 19641:1 19642:1 19665:1 19666:33 19675:1 19686:1 19692:7 19716:1 19747:1 19756:1 19761:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:3 19857:1 19860:1 19868:1 19882:2 19898:2 19908:1 19920:1 19927:1 19928:1 19948:1 19953:1 19957:1 19964:1 19978:2 19981:2 19982:3 20010:2 20014:1 20018:2 20021:3 20027:1 20033:1 20036:2 20038:2 20043:4 20049:1 20053:1 20058:1 20064:1 20074:5 20078:1 20082:1 20091:1 20092:2 20106:2 20108:1 20123:1 20124:1 20127:4 20131:10 20147:1 20148:1 20172:7 20173:1 20183:2 20184:1 20188:1 20198:1 20242:2 20244:1 20247:3 20296:1 20300:1 20313:1 20317:1 20329:4 20331:1 20336:3 20339:2 20351:2 20353:1 20372:1 20374:3 20375:1 20383:1 20387:3 20393:1 20399:1 20429:1 20434:1 20463:1 20468:2 20501:3 20516:1 20528:1 20559:3 20570:1 20571:1 20577:1 20584:3 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:5 20616:2 20620:6 20622:1 20624:2 20629:4 20641:1 20642:1 20657:1 20664:1 20666:1 20681:1 20687:1 20692:2 20705:1 20708:1 20733:1 20754:2 20756:5 20760:1 20778:1 20783:2 20790:1 20791:4 20805:1 20807:1 20817:4 20818:1 20828:1 20832:1 20844:1 20848:2 20850:2 20852:1 20868:1 20875:1 20884:1 20886:1 20901:1 20912:4 20918:1 20920:1 20923:1 20928:3 20932:1 20941:2 20947:1 20962:2 20964:2 20980:1 21002:6 21012:1 21018:1 21019:1 21032:1 21057:6 21058:3 21062:3 21068:2 21074:1 21080:1 21081:1 21120:1 21126:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21168:1 21204:1 21217:1 21220:1 21221:1 21246:1 21251:1 21255:3 21258:1 21259:4 21265:1 21271:1 21273:1 21290:1 21296:1 21298:1 21299:7 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:2 21390:1 21398:1 21405:1 21407:2 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21475:1 21498:1 21503:1 21505:1 21511:1 21514:1 21515:1 21526:1 21529:3 21539:1 21546:4 21547:1 21549:1 21550:1 21552:2 21553:1 21561:1 21564:1 21574:4 21579:1 21584:1 21587:3 21588:3 21595:1 21599:1 21605:1 21613:7 21647:1 21650:1 21656:2 21658:1 21659:3 21660:1 21673:1 21675:1 21702:3 21712:1 21731:1 21739:1 21751:1 21761:1 21788:1 21796:2 21802:2 21810:1 21832:1 21836:2 21840:2 21863:7 21872:1 21873:1 21875:1 21894:2 21901:1 21907:2 21952:2 21965:1 21971:1 21975:1 21976:1 21979:2 21985:1 21989:1 22005:1 22022:2 22026:1 22045:1 22058:2 22061:1 22076:1 22078:1 22082:1 22091:1 22122:1 22131:1 22142:1 22149:1 22160:1 22169:2 22170:1 22176:1 22177:1 22194:1 22210:1 22219:1 22225:1 22240:1 22241:2 22243:1 22250:1 22254:4 22256:1 22257:1 22258:2 22265:1 22266:1 22268:1 22272:3 22273:3 22275:2 22282:2 22283:1 22287:1 22289:1 22291:1 22292:1 22293:1 22298:3 22312:1 22321:1 22325:1 22332:1 22338:1 22346:4 22359:1 22361:2 22363:1 22365:1 22370:2 22371:2 22376:1 22378:1 22381:1 22383:3 22391:2 22392:1 22401:1 22408:1 22413:1 22415:9 22419:1 22432:1 22433:2 22436:4 22437:1 22447:2 22455:1 22477:1 22491:2 22504:1 22507:2 22511:1 22513:3 22519:1 22525:8 22532:2 22539:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22624:1 22625:1 22632:1 22635:1 22661:1 22665:5 22672:1 22676:1 22678:1 22679:2 22681:2 22682:1 22688:1 22695:1 22696:1 22697:6 22698:3 22699:1 22716:2 22720:1 22729:1 22735:1 22738:1 22752:2 22766:2 22768:1 22790:1 22798:3 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:4 22892:3 22893:2 22896:1 22897:1 22902:1 22924:1 22933:1 22940:2 22943:1 22947:3 22959:2 22961:1 22975:3 22994:1 23013:1 23017:1 23023:1 23029:1 23033:2 23034:1 23052:5 23053:5 23056:3 23057:1 23059:2 23060:1 23072:2 23073:1 23089:1 23096:2 23109:1 23111:4 23118:1 23124:1 23125:1 23131:2 23134:1 23142:3 23144:2 23145:4 23154:1 23162:2 23165:1 23173:1 23174:1 23177:1 23178:3 23185:1 23205:2 23226:1 23229:2 23231:1 23233:1 23241:1 23243:1 23249:1 23251:3 23260:1 23263:3 23270:1 23290:1 23291:7 23292:1 23302:1 23309:2 23315:32 23320:1 23321:3 23323:4 23326:1 23327:3 23329:4 23333:1 23334:1 23336:2 23351:1 23352:3 23354:1 23361:3 23364:1 23368:2 23384:2 23385:2 23389:1 23400:2 23403:1 23419:1 23425:3 23437:1 23440:1 23454:1 23487:3 23497:1 23501:8 23509:2 23530:2 23535:2 23552:1 23560:1 23569:1 23594:1 23596:2 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:4 23655:2 23663:1 23664:1 23685:1 23701:1 23702:2 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23827:1 23828:1 23830:1 23837:2 23844:1 23859:1 23860:1 23869:2 23872:1 23887:1 23888:2 23894:1 23903:2 23906:1 23908:2 23914:2 23926:3 23927:1 23928:1 23944:3 23952:4 23955:2 23977:2 23978:1 23982:1 23984:1 23992:3 23997:1 24017:1 24020:1 24035:1 24038:1 24066:1 24079:1 24086:1 24107:1 24125:1 24129:1 24144:2 24153:1 24161:1 24166:1 24169:3 24172:2 24173:1 24180:1 24181:1 24187:2 24196:3 24209:2 24214:2 24215:1 24218:1 24220:1 24228:1 24232:1 24258:2 24270:3 24278:1 24280:5 24282:1 24288:1 24291:1 24293:2 24309:2 24325:1 24333:1 24336:1 24343:12 24351:1 24376:2 24393:1 24406:1 24423:2 24424:1 24425:1 24443:1 24476:1 24484:2 24488:1 24497:1 24513:1 24515:1 24522:1 24526:3 24533:2 24543:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:3 24604:1 24620:7 24622:2 24623:1 24631:1 24638:4 24649:1 24652:1 24661:2 24670:1 24725:1 24728:1 24731:1 24746:3 24748:2 24761:1 24762:1 24764:2 24774:1 24788:1 24791:2 24801:1 24822:1 24825:1 24839:1 24862:1 24863:1 24902:4 24912:6 24914:1 24923:4 24927:1 24944:1 24947:1 24955:2 24956:1 24957:1 24964:1 24965:1 24973:2 24974:1 24995:2 25011:1 25025:1 25028:3 25030:2 25032:1 25036:1 25060:2 25068:1 25075:1 25085:1 25087:2 25093:1 25099:3 25100:2 25106:1 25115:1 25117:1 25127:1 25136:1 25147:1 25148:1 25150:1 25156:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:2 25220:1 25221:2 25222:1 25224:7 25226:3 25228:4 25229:2 25234:1 25235:2 25236:2 25238:4 25248:2 25249:4 25255:2 25262:2 25268:5 25273:2 25281:1 25297:1 25300:2 25301:1 25311:1 25315:2 25327:1 25337:5 25343:3 25363:2 25369:1 25370:1 25381:3 25393:1 25410:1 25414:1 25415:2 25439:1 25460:1 25463:1 25478:1 25504:3 25530:4 25540:1 25545:4 25565:2 25566:1 25590:1 25596:1 25601:1 25602:2 25604:1 25613:1 25616:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25718:2 25743:1 25752:3 25762:1 25767:1 25769:1 25778:1 25781:2 25785:3 25794:2 25797:1 25828:5 25861:1 25879:2 25887:1 25900:1 25903:4 25909:1 25910:1 25915:1 25922:1 25927:1 25929:1 25931:4 25988:1 26007:1 26011:2 26023:3 26025:8 26060:11 26069:1 26083:9 26104:1 26112:1 26122:1 26127:1 26136:1 26138:1 26146:2 26150:1 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26216:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:6 26270:1 26280:2 26285:2 26288:9 26293:2 26294:4 26304:1 26307:1 26311:1 26317:2 26318:1 26320:1 26328:1 26329:1 26334:1 26348:1 26358:1 26363:2 26373:1 26379:4 26387:1 26400:1 26410:3 26416:2 26420:2 26422:2 26482:1 26494:2 26495:1 26511:1 26519:1 26523:1 26534:1 26538:1 26560:2 26563:1 26579:1 26589:1 26590:3 26591:1 26593:2 26598:1 26614:5 26643:1 26646:1 26648:1 26650:1 26654:2 26656:1 26662:1 26668:1 26689:1 26698:1 26706:1 26716:1 26741:1 26754:2 26760:1 26768:1 26776:1 26805:1 26826:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26892:1 26893:1 26898:1 26901:1 26902:1 26907:2 26918:2 26925:1 26939:1 26954:1 26957:2 26974:1 26979:1 26983:5 26989:1 26997:1 26998:2 27006:1 27020:5 27042:1 27046:1 27047:4 27070:2 27074:1 27089:1 27091:1 27094:2 27095:1 27101:1 27107:2 27118:1 27119:1 27127:2 27132:1 27138:2 27157:2 27174:1 27178:6 27179:1 27212:5 27216:1 27234:1 27236:1 27239:1 27260:2 27278:1 27279:1 27289:1 27299:4 27311:1 27320:2 27321:2 27322:1 27327:1 27329:1 27330:1 27334:3 27335:2 27341:1 27372:1 27375:4 27378:1 27381:1 27387:1 27389:1 27406:2 27415:2 27419:1 27421:1 27438:2 27439:1 27453:1 27454:2 27459:1 27482:1 27484:2 27510:1 27530:2 27535:1 27539:1 27555:1 27574:3 27583:5 27608:2 27612:1 27613:1 27665:1 27670:1 27686:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:1 27763:1 27775:1 27780:1 27781:1 27787:1 27791:1 27792:1 27800:1 27804:1 27807:2 27822:1 27826:2 27845:1 27857:1 27859:1 27868:1 27869:1 27873:1 27875:1 27888:1 27897:1 27912:2 27916:1 27917:2 27920:1 27924:3 27940:4 27957:4 27965:5 27974:1 27990:1 27991:1 27997:1 28011:4 28025:1 28033:1 28043:1 28044:10 28071:1 28083:1 28087:2 28097:1 28098:2 28101:1 28102:2 28109:12 28121:1 28146:1 28151:3 28177:1 28188:2 28189:1 28193:1 28213:2 28218:6 28225:2 28226:2 28227:1 28242:2 28246:1 28251:4 28261:1 28266:1 28277:1 28297:1 28300:1 28318:1 28319:3 28322:1 28335:2 28337:1 28347:1 28361:3 28372:1 28377:1 28381:1 28384:1 28398:1 28407:2 28409:1 28414:2 28416:1 28418:1 28420:2 28441:1 28448:1 28458:1 28459:1 28499:1 28529:1 28533:1 28554:5 28557:1 28564:1 28588:1 28589:1 28600:2 28616:5 28619:1 28627:1 28637:1 28649:1 28672:1 28681:1 28686:1 28688:1 28714:1 28736:1 28743:1 28746:1 28755:2 28779:1 28801:1 28825:3 28845:1 28858:1 28860:7 28872:1 28893:1 28896:4 28905:1 28907:1 28919:1 28928:2 28938:1 28946:2 28958:1 28959:1 28961:1 28978:1 28980:2 28983:1 28987:2 28992:26 28993:4 28996:5 28998:1 28999:3 29011:1 29034:7 29048:1 29092:3 29100:2 29107:1 29115:1 29120:2 29131:1 29132:3 29142:5 29146:2 29176:12 29177:1 29180:2 29184:3 29186:1 29190:2 29198:1 29202:3 29210:1 29213:1 29216:1 29221:2 29224:1 29228:2 29236:1 29237:1 29238:1 29245:2 29251:2 29262:1 29267:2 29268:2 29274:1 29278:3 29281:1 29293:1 29295:1 29300:1 29302:2 29307:1 29324:1 29343:1 29347:1 29362:2 29364:1 29365:1 29379:1 29383:1 29387:1 29388:1 29391:2 29405:5 29409:1 29420:1 29447:1 29449:2 29471:1 29473:2 29474:2 29477:1 29498:1 29504:1 29514:1 29515:1 29518:1 29522:1 29524:1 29525:1 29529:2 29532:5 29538:2 29539:1 29542:1 29548:1 29550:1 29551:1 29559:2 29566:2 29567:1 29569:1 29570:1 29579:1 29587:2 29608:1 29632:1 29648:1 29652:1 29659:1 29678:1 29682:2 29684:1 29688:1 29706:1 29712:1 29716:1 29717:1 29718:2 29722:1 29723:2 29727:1 29736:1 29740:3 29743:1 29747:1 29749:1 29758:1 29766:1 29767:7 29773:2 29774:2 29777:1 29780:6 29782:1 29788:1 29801:1 29828:1 29832:1 29839:2 29840:1 29882:3 29890:1 29900:1 29914:4 29918:1 29920:2 29925:1 29927:1 29931:6 29936:1 29940:1 29949:1 29969:1 29970:1 30000:1 30001:2 30002:1 30011:1 30012:1 30015:1 30035:2 30053:1 30058:4 30081:2 30088:1 30104:1 30108:2 30113:1 30122:1 30136:1 30143:1 30150:2 30162:1 30187:1 30194:7 30206:1 30208:1 30210:1 30227:1 30231:7 30243:6 30244:1 30250:1 30273:1 30311:1 30320:8 30322:3 30324:2 30326:1 30328:1 30331:3 30332:3 30344:1 30353:1 30362:1 30363:2 30367:3 30371:3 30408:1 30421:1 9 11:1 14:2 30:1 34:1 43:1 50:5 63:1 74:1 79:1 83:1 85:1 93:1 99:1 103:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 163:2 176:1 180:2 187:1 189:3 201:1 206:4 236:8 238:1 257:1 277:1 283:1 303:1 309:1 315:2 325:1 327:34 338:2 355:1 356:3 357:5 360:2 362:1 366:1 378:4 380:1 383:1 385:1 397:2 419:1 441:2 460:3 469:1 474:1 475:1 478:1 480:1 500:1 504:1 550:1 558:1 589:2 591:4 592:1 600:2 603:4 625:4 635:2 637:2 638:1 639:1 657:2 671:1 682:4 685:1 691:1 693:2 703:1 724:1 732:2 736:1 747:1 750:1 758:1 774:1 783:1 788:2 791:1 802:1 804:1 819:2 824:1 833:2 843:1 854:1 856:2 857:1 867:1 880:1 883:8 885:3 897:1 899:3 900:1 911:1 914:15 916:1 917:1 929:1 933:1 938:6 941:7 944:1 946:2 952:1 953:1 959:1 961:1 964:4 978:1 985:2 986:2 997:1 1005:1 1022:1 1032:3 1045:1 1052:5 1054:2 1060:2 1076:1 1080:2 1084:1 1085:1 1102:1 1103:1 1115:2 1125:1 1126:1 1133:1 1141:1 1142:1 1143:2 1148:2 1156:3 1163:1 1164:2 1172:1 1176:1 1187:1 1188:1 1194:1 1201:3 1206:1 1213:1 1230:1 1258:2 1287:1 1289:1 1291:2 1292:2 1300:2 1303:1 1313:1 1333:1 1336:1 1342:1 1353:2 1379:1 1380:1 1393:1 1404:1 1411:3 1434:1 1441:2 1443:1 1461:1 1464:2 1468:6 1471:10 1474:1 1487:2 1489:1 1490:3 1491:1 1493:1 1494:2 1510:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:8 1584:1 1614:2 1621:1 1636:1 1639:1 1641:3 1642:3 1650:1 1652:1 1658:2 1677:5 1680:1 1700:1 1701:3 1706:6 1712:2 1732:1 1733:1 1751:1 1752:1 1768:1 1775:1 1785:1 1803:1 1814:3 1818:1 1827:1 1830:1 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1883:1 1884:1 1886:2 1887:1 1908:1 1934:1 1952:1 1954:1 1956:2 1958:18 1965:1 1970:2 1981:2 1986:1 1991:1 1996:1 1997:1 2008:1 2011:1 2018:8 2019:2 2051:1 2053:1 2057:2 2063:3 2075:1 2088:3 2095:1 2100:2 2102:1 2107:1 2120:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2178:1 2186:1 2195:1 2207:1 2211:1 2213:1 2216:1 2218:5 2219:1 2220:1 2223:2 2226:1 2232:1 2234:4 2238:3 2239:2 2240:4 2241:1 2243:1 2251:1 2255:3 2258:1 2274:1 2276:1 2278:3 2280:2 2281:2 2284:2 2285:8 2288:5 2291:1 2292:2 2293:4 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:2 2314:1 2316:6 2318:2 2319:9 2331:1 2332:1 2334:1 2348:1 2369:1 2380:2 2386:1 2393:1 2407:1 2411:1 2418:1 2430:3 2437:4 2438:1 2439:1 2445:1 2448:1 2453:1 2457:2 2460:1 2466:2 2482:4 2493:7 2505:1 2509:1 2511:1 2515:1 2532:1 2537:1 2561:5 2570:5 2577:1 2593:1 2595:2 2603:1 2608:4 2615:3 2618:2 2620:1 2623:1 2632:2 2661:2 2666:1 2682:1 2685:1 2690:1 2699:2 2701:4 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2730:1 2740:1 2745:1 2748:1 2761:1 2763:2 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:7 2825:4 2831:6 2840:1 2841:1 2848:1 2880:1 2882:1 2883:2 2889:2 2890:2 2904:2 2912:2 2933:6 2935:2 2941:24 2945:1 2959:4 2975:2 2980:1 2982:1 2987:1 2995:1 3002:13 3021:1 3024:1 3029:1 3032:5 3036:8 3037:1 3038:1 3039:1 3050:1 3061:1 3064:1 3068:1 3082:1 3092:1 3095:1 3097:1 3129:1 3146:4 3162:1 3169:1 3176:1 3177:2 3184:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3287:1 3293:1 3304:1 3312:5 3317:1 3325:1 3332:1 3338:1 3339:1 3343:1 3348:1 3357:1 3361:1 3370:1 3374:1 3384:1 3386:5 3416:1 3431:2 3434:13 3481:1 3487:1 3510:2 3537:1 3544:1 3551:1 3557:2 3561:1 3563:2 3564:2 3568:2 3571:1 3578:1 3581:1 3587:2 3601:1 3615:2 3619:2 3628:1 3635:2 3640:1 3648:1 3665:4 3670:1 3674:1 3678:2 3681:7 3699:5 3705:2 3706:1 3708:4 3709:2 3712:1 3715:1 3736:2 3741:6 3751:1 3754:1 3773:1 3784:1 3787:1 3791:2 3792:3 3796:1 3800:2 3803:2 3816:1 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:12 3873:1 3882:1 3888:1 3895:5 3897:1 3903:2 3904:12 3905:3 3906:1 3912:2 3923:2 3924:7 3932:1 3938:1 3955:1 3956:3 3958:1 3966:1 3967:1 3969:1 3978:1 3981:1 3986:1 3992:1 3993:1 4000:1 4004:2 4016:1 4019:3 4022:3 4032:2 4045:1 4047:1 4053:2 4054:1 4058:2 4063:1 4066:1 4077:4 4084:1 4085:1 4089:2 4093:1 4094:1 4098:1 4099:2 4100:2 4108:5 4109:4 4114:1 4128:1 4144:1 4153:1 4165:1 4169:2 4177:1 4181:1 4187:5 4196:2 4197:1 4204:1 4221:1 4236:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:7 4307:2 4315:1 4316:1 4319:1 4321:1 4325:1 4364:1 4378:2 4381:2 4388:1 4401:1 4405:1 4420:2 4450:1 4455:2 4462:1 4469:1 4474:5 4494:1 4504:1 4535:1 4546:3 4555:1 4572:1 4593:1 4598:1 4601:1 4631:2 4637:1 4661:1 4665:1 4675:1 4680:1 4697:2 4699:2 4719:1 4724:1 4728:2 4735:1 4741:3 4749:1 4751:1 4754:3 4772:2 4774:1 4788:2 4789:1 4804:1 4807:8 4830:1 4843:1 4854:1 4870:1 4875:1 4879:1 4889:1 4896:1 4903:7 4907:1 4911:1 4918:2 4921:1 4935:1 4944:1 4951:1 4954:1 4986:3 5009:1 5019:27 5021:2 5024:1 5041:3 5052:1 5058:4 5071:1 5078:2 5083:7 5091:1 5093:2 5115:2 5117:1 5131:1 5132:1 5134:1 5135:7 5151:5 5152:6 5153:1 5154:1 5155:1 5157:1 5159:3 5160:1 5162:1 5163:3 5165:1 5166:1 5171:1 5173:4 5175:3 5176:1 5178:1 5184:1 5185:1 5187:4 5188:3 5192:1 5211:1 5212:1 5242:1 5246:1 5271:3 5277:2 5279:1 5284:1 5299:2 5317:1 5321:1 5326:2 5327:1 5328:3 5336:2 5343:1 5344:3 5359:1 5367:1 5385:1 5396:2 5404:3 5409:1 5435:1 5441:1 5459:1 5464:1 5466:1 5482:1 5487:1 5512:2 5518:8 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5607:2 5612:1 5625:1 5650:1 5663:1 5664:1 5680:2 5691:1 5692:2 5693:2 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:2 5733:1 5736:1 5745:1 5758:3 5763:1 5767:1 5772:1 5780:1 5786:1 5792:3 5797:1 5808:4 5815:1 5816:1 5849:3 5873:3 5888:1 5897:3 5898:1 5911:2 5914:4 5917:1 5921:2 5939:1 5945:1 5959:2 5975:1 5977:1 5987:1 5994:1 6001:1 6007:1 6011:1 6021:2 6022:1 6028:1 6059:3 6066:1 6097:1 6102:2 6129:1 6152:1 6171:1 6183:4 6184:1 6202:2 6205:16 6226:4 6229:1 6231:4 6238:1 6242:1 6247:1 6248:5 6249:2 6257:1 6280:3 6288:1 6297:1 6301:1 6303:1 6308:1 6325:2 6345:1 6356:1 6364:1 6380:2 6384:2 6385:1 6390:1 6400:1 6404:3 6410:1 6426:6 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:2 6488:1 6501:3 6503:1 6505:1 6506:1 6507:2 6510:1 6511:1 6515:4 6517:1 6518:3 6519:3 6520:5 6522:1 6523:1 6525:4 6526:11 6527:5 6530:1 6539:1 6568:1 6571:1 6591:2 6646:4 6648:1 6649:1 6652:1 6681:2 6683:1 6686:1 6699:2 6743:1 6750:1 6752:1 6763:1 6769:1 6777:1 6797:2 6798:1 6803:1 6813:1 6814:1 6816:1 6822:4 6832:1 6833:1 6836:1 6844:1 6851:2 6855:1 6897:1 6898:2 6903:2 6909:1 6911:2 6916:1 6919:2 6920:1 6924:1 6929:1 6940:9 6949:1 6960:2 6968:4 6973:1 6985:1 6987:1 6997:1 7002:1 7014:1 7019:1 7029:1 7045:3 7047:1 7049:2 7058:2 7086:2 7087:2 7091:3 7098:1 7100:1 7113:3 7114:2 7128:1 7131:1 7142:2 7147:2 7148:1 7150:2 7154:1 7160:1 7169:1 7177:2 7212:1 7220:1 7245:1 7253:11 7255:1 7273:1 7281:3 7300:1 7302:1 7306:2 7310:2 7312:1 7321:1 7332:1 7336:1 7337:1 7369:2 7379:1 7388:1 7411:3 7416:1 7435:2 7452:1 7479:2 7491:3 7495:1 7500:1 7505:4 7506:1 7509:1 7516:1 7521:1 7527:1 7535:1 7539:1 7549:5 7554:3 7555:1 7559:1 7579:2 7583:1 7596:2 7597:1 7603:2 7622:1 7627:2 7644:1 7663:1 7672:3 7690:2 7706:1 7719:1 7723:1 7725:1 7726:2 7756:2 7757:13 7758:6 7763:1 7771:2 7784:2 7785:4 7786:2 7812:5 7813:1 7831:57 7836:2 7854:7 7855:13 7857:1 7860:4 7871:1 7878:1 7883:2 7892:1 7899:1 7908:1 7911:1 7923:1 7940:4 7941:1 7944:2 7964:1 7966:1 7967:2 7982:2 8035:2 8059:1 8062:3 8072:1 8087:1 8090:1 8093:2 8108:1 8112:6 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8209:1 8223:1 8226:1 8233:1 8250:1 8255:1 8258:1 8265:3 8266:3 8267:1 8269:1 8285:2 8287:2 8301:1 8303:1 8306:1 8317:2 8319:1 8324:2 8330:1 8333:2 8338:2 8339:1 8343:1 8347:1 8348:3 8357:1 8358:9 8389:2 8394:1 8400:2 8417:1 8452:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8564:1 8566:1 8569:1 8589:1 8591:1 8599:4 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:3 8638:1 8646:1 8656:1 8664:5 8667:1 8669:2 8671:2 8674:1 8701:1 8711:1 8716:1 8721:1 8728:1 8736:1 8739:3 8740:6 8743:4 8744:2 8746:1 8748:3 8749:8 8752:2 8753:3 8755:1 8757:2 8767:2 8768:2 8784:4 8790:2 8792:5 8801:1 8812:1 8816:3 8820:1 8822:2 8826:2 8829:2 8834:2 8837:5 8853:2 8860:1 8891:1 8892:2 8898:1 8906:1 8907:1 8930:1 8933:1 8939:1 8958:1 8968:1 8973:2 8974:1 8988:1 9008:1 9017:3 9024:1 9033:2 9041:3 9063:2 9066:1 9073:4 9074:2 9078:3 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9171:1 9177:1 9188:2 9199:6 9202:2 9213:1 9220:2 9222:1 9241:3 9252:1 9261:1 9263:1 9275:1 9276:2 9278:1 9292:2 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:4 9373:1 9386:1 9387:1 9394:2 9401:2 9403:1 9411:1 9420:2 9421:1 9459:1 9463:2 9467:7 9469:1 9470:1 9474:3 9477:1 9482:1 9486:34 9489:3 9490:2 9508:2 9510:1 9520:1 9523:1 9535:1 9548:4 9567:1 9572:1 9583:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:7 9634:2 9659:1 9676:1 9684:4 9689:1 9702:1 9724:1 9728:1 9749:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9814:1 9824:1 9828:2 9831:1 9832:1 9843:1 9844:1 9845:5 9851:1 9861:1 9869:5 9877:2 9886:2 9895:2 9919:2 9949:7 9955:1 9962:2 9963:1 9965:1 9966:6 9972:2 9974:1 9986:1 9991:1 9993:1 9995:1 10004:1 10005:1 10035:3 10053:1 10057:1 10065:1 10081:1 10089:2 10093:1 10108:7 10113:1 10120:1 10126:1 10130:1 10135:4 10142:1 10143:2 10145:1 10147:2 10149:1 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10181:1 10186:1 10196:3 10198:1 10202:2 10203:1 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10308:1 10309:1 10329:2 10336:1 10345:1 10368:1 10374:1 10391:1 10397:1 10399:2 10400:1 10401:1 10402:1 10418:2 10443:1 10466:1 10479:1 10481:1 10487:1 10489:1 10514:1 10515:1 10520:1 10525:2 10544:1 10548:1 10550:3 10570:1 10576:2 10584:1 10588:1 10590:1 10608:2 10609:1 10625:3 10630:2 10638:2 10653:1 10655:1 10689:1 10690:1 10699:1 10712:2 10720:1 10722:1 10724:1 10751:1 10764:1 10767:1 10769:1 10776:1 10788:1 10790:3 10794:2 10800:5 10809:1 10810:1 10811:1 10813:1 10820:1 10823:1 10824:3 10837:1 10840:1 10841:3 10844:3 10846:1 10854:1 10865:3 10866:1 10867:1 10876:4 10878:4 10886:2 10888:1 10890:2 10892:1 10895:1 10916:1 10921:1 10932:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:4 10990:14 11055:1 11056:1 11065:1 11067:2 11079:1 11112:4 11115:1 11117:1 11137:1 11159:1 11175:2 11180:1 11193:1 11211:1 11224:1 11236:1 11254:4 11257:4 11260:2 11262:2 11266:1 11269:2 11283:2 11291:1 11297:1 11298:2 11299:1 11302:1 11312:1 11313:1 11323:1 11347:7 11351:1 11364:1 11372:6 11377:1 11378:1 11381:2 11385:1 11411:1 11433:1 11434:2 11435:2 11437:1 11443:1 11452:1 11456:1 11457:1 11468:1 11477:1 11482:1 11490:1 11501:1 11507:2 11516:1 11520:1 11534:1 11536:1 11544:1 11551:1 11554:1 11557:1 11566:1 11579:1 11583:5 11590:1 11602:1 11613:2 11616:1 11627:1 11637:1 11643:2 11650:1 11653:3 11659:1 11660:1 11662:1 11674:2 11675:1 11677:2 11682:2 11686:3 11706:8 11715:1 11749:1 11752:12 11753:1 11755:1 11772:1 11775:1 11789:1 11790:1 11797:1 11819:1 11820:1 11830:1 11831:2 11848:2 11850:1 11852:1 11853:1 11860:1 11861:2 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:2 11930:4 11933:7 11958:1 11960:7 11962:6 11963:1 11989:1 11994:1 12006:1 12009:2 12011:2 12012:3 12016:1 12020:2 12022:2 12025:1 12026:2 12029:3 12030:1 12032:1 12042:2 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:7 12077:1 12085:1 12097:8 12108:2 12111:1 12116:1 12127:1 12132:2 12134:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:2 12263:1 12265:2 12291:1 12304:3 12306:1 12313:2 12315:1 12321:1 12340:1 12346:1 12359:3 12362:4 12382:1 12411:3 12414:1 12426:1 12433:1 12439:1 12442:1 12445:1 12505:2 12516:1 12526:1 12531:1 12540:1 12542:1 12543:2 12544:3 12545:2 12560:2 12571:1 12580:1 12592:1 12593:2 12602:4 12603:5 12608:2 12611:1 12615:1 12619:2 12668:1 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:7 12747:1 12753:2 12775:1 12782:3 12785:1 12798:1 12799:1 12806:1 12807:1 12810:2 12824:3 12828:1 12843:2 12847:2 12872:1 12880:1 12890:1 12896:1 12899:4 12904:2 12911:1 12934:1 12935:1 12946:1 12950:1 12953:1 12954:6 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13079:1 13091:8 13100:1 13108:1 13113:1 13114:1 13116:1 13126:1 13131:16 13136:1 13142:1 13151:3 13153:6 13155:1 13161:2 13180:1 13182:1 13189:1 13192:1 13195:4 13199:3 13222:2 13246:1 13250:1 13255:2 13256:5 13259:2 13270:2 13274:1 13281:1 13283:1 13285:1 13288:1 13291:2 13292:1 13315:2 13330:5 13334:1 13339:1 13341:1 13362:1 13363:1 13364:1 13393:1 13406:1 13417:1 13450:1 13454:7 13458:1 13474:1 13503:1 13504:1 13523:1 13550:8 13556:1 13573:3 13576:1 13584:1 13588:7 13595:4 13600:1 13609:2 13611:6 13632:1 13633:1 13647:2 13649:1 13652:1 13663:2 13665:1 13666:1 13684:2 13690:5 13715:1 13726:2 13732:2 13734:1 13744:1 13747:7 13754:1 13756:4 13757:2 13764:1 13772:1 13773:1 13774:2 13781:1 13786:2 13800:2 13802:1 13807:1 13808:1 13811:1 13829:2 13830:4 13833:1 13840:1 13847:3 13854:1 13862:2 13865:1 13880:2 13887:7 13909:1 13913:1 13915:1 13933:4 13937:1 13938:4 13961:1 13973:1 13987:3 14008:1 14018:1 14019:1 14036:1 14051:1 14075:1 14076:2 14081:2 14092:1 14094:1 14116:5 14118:1 14120:2 14123:5 14124:2 14127:2 14135:1 14138:1 14146:1 14149:1 14170:3 14186:1 14191:3 14198:2 14201:2 14204:1 14205:1 14233:1 14243:7 14254:1 14277:3 14290:3 14292:1 14299:1 14304:2 14316:1 14339:7 14343:1 14345:3 14346:1 14352:1 14359:2 14399:1 14401:1 14414:1 14426:4 14445:10 14455:1 14486:1 14489:2 14508:1 14510:1 14525:1 14530:1 14531:1 14535:1 14542:1 14560:2 14577:7 14586:2 14591:1 14602:3 14611:1 14613:1 14617:1 14624:1 14643:1 14649:1 14651:1 14658:1 14667:4 14668:1 14669:1 14681:1 14702:1 14705:1 14720:1 14730:2 14732:1 14741:1 14751:2 14757:2 14768:2 14780:1 14783:3 14794:3 14795:1 14796:3 14797:9 14800:1 14803:7 14808:1 14812:3 14814:2 14815:2 14825:1 14833:1 14835:1 14836:1 14861:1 14871:1 14908:2 14913:1 14914:1 14927:5 14932:1 14961:3 14971:2 14974:2 14978:1 14979:4 14984:4 14987:1 14996:1 15003:1 15012:1 15013:3 15023:1 15032:1 15037:3 15038:1 15060:1 15084:4 15099:2 15106:2 15109:3 15112:1 15113:1 15126:2 15129:2 15134:4 15137:1 15152:3 15157:1 15166:2 15181:1 15183:1 15253:1 15266:1 15270:1 15278:1 15303:2 15328:3 15329:1 15332:1 15334:1 15347:1 15349:1 15395:1 15396:1 15408:8 15410:1 15424:2 15425:1 15428:3 15435:1 15444:1 15449:8 15450:3 15470:2 15483:1 15494:2 15497:1 15510:1 15511:1 15532:8 15535:1 15538:1 15543:1 15549:1 15569:1 15599:1 15624:1 15638:4 15641:1 15649:1 15651:1 15655:1 15668:1 15670:2 15681:1 15683:1 15692:4 15693:1 15698:2 15700:1 15715:1 15727:1 15735:1 15739:1 15748:1 15754:1 15756:1 15760:1 15761:3 15774:2 15789:1 15796:1 15820:2 15828:1 15849:1 15863:11 15870:2 15882:1 15886:2 15918:1 15924:2 15938:1 15941:1 15950:4 15951:1 15961:5 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16062:1 16081:1 16114:5 16118:1 16128:11 16133:3 16140:1 16141:3 16151:1 16160:2 16165:5 16171:2 16172:1 16173:7 16174:3 16176:1 16184:1 16189:1 16228:1 16233:1 16243:2 16263:1 16266:1 16274:1 16275:2 16282:4 16301:1 16303:1 16306:9 16312:1 16325:1 16335:2 16339:1 16345:1 16348:1 16359:3 16387:2 16403:6 16404:3 16406:1 16410:1 16411:1 16452:1 16458:1 16459:3 16468:1 16472:1 16478:1 16484:4 16488:2 16499:1 16536:1 16552:1 16553:4 16586:1 16591:1 16599:1 16603:1 16607:1 16612:17 16613:1 16615:1 16618:1 16624:1 16629:4 16633:1 16635:2 16640:1 16641:1 16649:1 16652:1 16663:1 16670:2 16690:5 16693:1 16698:1 16707:2 16714:1 16716:1 16717:1 16721:1 16726:1 16734:1 16740:2 16741:1 16745:2 16756:2 16760:1 16763:1 16789:1 16791:2 16826:4 16828:1 16829:1 16830:2 16850:1 16876:1 16882:1 16885:1 16896:1 16922:1 16944:1 16960:1 16963:1 16966:4 16990:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17099:1 17101:1 17111:2 17133:1 17156:1 17158:1 17167:1 17177:2 17178:1 17188:1 17212:1 17216:1 17234:1 17237:2 17241:1 17245:2 17255:3 17272:1 17278:1 17279:1 17281:1 17287:3 17288:3 17291:1 17299:1 17310:1 17322:1 17335:1 17337:1 17347:1 17360:1 17362:3 17372:1 17374:1 17396:1 17407:4 17411:2 17413:5 17419:1 17436:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:2 17499:2 17506:1 17510:1 17516:2 17535:4 17545:1 17551:3 17553:1 17564:1 17565:1 17569:2 17584:2 17586:1 17613:1 17617:1 17625:2 17630:1 17632:2 17639:6 17646:2 17666:1 17668:6 17671:1 17684:1 17690:1 17700:1 17711:2 17712:2 17735:4 17737:3 17750:1 17754:1 17761:1 17762:2 17763:3 17777:3 17778:7 17779:1 17787:3 17792:1 17820:1 17823:1 17832:1 17844:1 17850:2 17857:2 17862:1 17898:1 17921:1 17941:1 17946:1 17962:1 17968:4 17975:2 17980:2 18000:1 18004:1 18018:1 18019:1 18024:1 18025:1 18037:1 18039:1 18041:2 18043:3 18050:4 18051:1 18053:1 18060:5 18070:3 18071:1 18072:2 18076:1 18106:1 18110:2 18126:5 18127:4 18141:1 18151:2 18154:3 18172:1 18185:1 18189:1 18196:7 18208:1 18210:1 18240:1 18245:1 18252:2 18255:2 18256:1 18259:1 18263:2 18276:1 18281:2 18283:5 18286:1 18288:1 18291:1 18294:1 18302:1 18304:4 18323:1 18324:1 18327:1 18335:1 18344:1 18365:1 18366:3 18395:1 18403:2 18418:1 18422:2 18424:8 18426:1 18430:4 18436:33 18441:1 18444:1 18447:1 18451:2 18455:1 18459:1 18466:1 18476:4 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18528:1 18532:1 18537:3 18546:1 18548:1 18549:4 18550:1 18553:1 18569:1 18575:1 18586:1 18591:4 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:3 18698:1 18708:1 18712:1 18720:2 18723:2 18736:5 18738:1 18740:1 18750:1 18761:2 18774:1 18780:1 18781:1 18805:1 18812:1 18828:1 18843:1 18845:1 18867:1 18881:1 18888:2 18891:3 18905:1 18915:1 18918:1 18928:1 18935:1 18962:1 18968:4 18969:1 18992:1 19001:2 19038:1 19069:4 19081:1 19095:1 19106:1 19113:2 19125:1 19148:2 19152:3 19153:3 19157:1 19172:2 19188:1 19191:7 19199:1 19218:1 19225:1 19229:1 19234:1 19237:1 19245:3 19251:2 19254:3 19259:1 19275:1 19279:1 19281:1 19287:5 19291:2 19294:2 19300:1 19304:2374 19308:1 19318:1 19324:1 19354:1 19359:1 19367:4 19368:1 19377:3 19383:1 19401:2 19402:1 19413:1 19418:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:2 19506:1 19507:1 19521:1 19529:3 19535:6 19542:1 19548:5 19551:3 19552:4 19554:1 19568:1 19580:1 19583:1 19616:2 19629:7 19633:2 19635:2 19641:1 19642:1 19665:1 19666:34 19675:1 19686:1 19692:7 19716:1 19747:1 19756:1 19761:1 19762:1 19774:2 19794:1 19796:1 19804:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:3 19857:1 19860:1 19868:1 19882:2 19898:2 19908:1 19920:1 19927:1 19928:1 19948:1 19953:1 19957:1 19964:1 19978:2 19981:2 19982:3 20010:2 20014:1 20018:2 20021:3 20027:1 20033:1 20036:3 20038:2 20043:4 20049:1 20053:1 20058:1 20064:1 20074:5 20078:1 20082:1 20091:1 20092:2 20106:2 20108:1 20123:1 20124:1 20127:4 20131:11 20147:1 20148:1 20172:7 20173:1 20183:2 20184:1 20188:1 20198:1 20242:2 20244:1 20247:3 20296:1 20300:1 20313:1 20317:1 20329:4 20331:1 20336:3 20339:2 20351:2 20353:1 20372:1 20374:4 20375:1 20383:1 20387:3 20393:1 20399:1 20429:1 20434:1 20463:1 20468:2 20501:3 20516:1 20528:1 20559:3 20570:1 20571:1 20577:1 20584:3 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:5 20616:2 20620:6 20622:1 20624:2 20629:5 20641:1 20642:1 20657:1 20664:1 20666:1 20681:1 20687:1 20692:2 20705:1 20708:1 20733:1 20754:2 20756:5 20760:1 20778:1 20783:2 20790:1 20791:4 20805:1 20807:1 20817:4 20818:1 20828:1 20832:1 20844:1 20848:2 20850:2 20852:1 20868:1 20875:1 20884:1 20886:1 20901:1 20912:4 20918:1 20920:1 20923:1 20928:3 20932:1 20941:2 20947:1 20962:2 20964:2 20980:1 21002:6 21012:1 21018:1 21019:1 21032:1 21057:7 21058:3 21062:4 21068:2 21074:1 21080:1 21081:1 21120:1 21126:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21168:1 21178:1 21204:1 21217:1 21220:1 21221:1 21246:1 21251:1 21255:3 21258:1 21259:4 21265:1 21271:1 21273:1 21290:1 21296:1 21298:1 21299:7 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:2 21390:1 21398:1 21405:1 21407:2 21429:4 21440:1 21464:1 21468:1 21469:1 21472:1 21475:1 21498:2 21503:2 21505:1 21511:1 21514:1 21515:1 21526:1 21529:3 21539:1 21546:4 21547:1 21549:1 21550:1 21552:2 21553:1 21561:1 21564:1 21574:4 21579:1 21584:1 21587:3 21588:3 21595:1 21599:1 21605:1 21613:7 21647:1 21650:2 21656:2 21658:1 21659:3 21660:1 21673:1 21675:1 21702:3 21712:1 21731:1 21739:1 21751:1 21761:1 21788:1 21796:2 21802:2 21810:1 21832:1 21836:2 21840:2 21863:7 21872:1 21873:1 21875:1 21894:2 21901:1 21907:2 21952:2 21965:1 21971:1 21975:1 21976:1 21979:2 21985:1 21989:1 22005:1 22022:2 22026:1 22045:1 22048:1 22058:2 22061:1 22076:1 22078:1 22082:1 22091:1 22122:1 22131:1 22142:1 22149:1 22160:1 22169:2 22170:1 22176:1 22177:1 22194:1 22210:1 22219:1 22225:1 22240:1 22241:2 22243:1 22250:1 22254:4 22256:1 22257:1 22258:2 22265:1 22266:1 22268:1 22272:3 22273:3 22275:2 22282:2 22283:1 22287:1 22289:1 22291:1 22292:1 22293:1 22298:3 22312:1 22321:1 22325:1 22332:1 22338:1 22346:4 22359:1 22361:2 22363:1 22365:1 22370:3 22371:2 22376:1 22378:1 22381:1 22383:3 22391:2 22392:1 22401:1 22408:1 22413:1 22415:10 22419:1 22432:1 22433:2 22436:4 22437:1 22447:2 22455:1 22477:1 22491:2 22504:1 22507:2 22511:1 22513:3 22519:1 22525:8 22532:2 22539:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22624:1 22625:1 22632:1 22635:1 22661:1 22665:5 22672:1 22676:1 22678:1 22679:2 22681:2 22682:1 22688:1 22695:1 22696:1 22697:6 22698:3 22699:1 22716:2 22720:1 22729:1 22735:1 22738:1 22752:2 22766:2 22768:1 22790:1 22798:3 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:4 22892:3 22893:3 22896:1 22897:1 22902:1 22924:1 22931:1 22933:1 22940:2 22943:1 22947:3 22959:2 22961:1 22975:3 22994:1 23013:1 23017:1 23023:1 23029:1 23033:2 23034:1 23052:5 23053:6 23056:3 23057:1 23059:2 23060:1 23072:2 23073:1 23089:1 23096:2 23109:1 23111:4 23118:1 23124:1 23125:2 23131:2 23134:2 23142:3 23144:2 23145:4 23154:1 23162:2 23165:1 23173:1 23174:1 23177:1 23178:3 23185:1 23205:2 23226:1 23229:2 23231:1 23233:1 23241:1 23243:1 23249:1 23251:3 23255:1 23260:1 23263:3 23270:1 23290:1 23291:8 23292:1 23302:1 23309:2 23315:33 23320:1 23321:3 23323:4 23326:1 23327:3 23329:4 23333:1 23334:1 23336:2 23351:1 23352:3 23354:1 23361:3 23364:1 23368:2 23384:2 23385:2 23389:1 23400:2 23403:1 23419:1 23425:3 23437:1 23440:1 23454:1 23487:3 23497:1 23501:8 23509:2 23530:2 23535:2 23552:1 23560:1 23569:1 23594:1 23596:2 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:4 23655:2 23662:1 23663:1 23664:1 23685:1 23701:1 23702:2 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23827:1 23828:1 23830:1 23837:2 23844:1 23859:1 23860:1 23869:2 23872:1 23887:1 23888:2 23894:1 23903:2 23906:1 23908:2 23914:2 23926:3 23927:1 23928:1 23944:3 23952:4 23955:2 23977:2 23978:1 23982:1 23984:1 23992:3 23997:1 24017:1 24020:1 24035:1 24038:1 24066:1 24079:1 24086:1 24107:1 24125:1 24129:1 24144:2 24153:1 24161:1 24166:1 24169:3 24172:2 24173:1 24180:1 24181:1 24187:2 24196:3 24209:2 24214:2 24215:1 24218:1 24220:1 24228:1 24232:1 24258:2 24270:3 24278:1 24280:5 24282:1 24288:1 24291:2 24293:2 24309:2 24325:1 24333:1 24336:1 24343:12 24351:1 24376:2 24393:1 24406:1 24423:2 24424:1 24425:1 24443:1 24476:2 24484:2 24488:1 24497:1 24513:1 24515:1 24522:1 24526:4 24533:2 24543:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:3 24604:1 24620:8 24622:2 24623:1 24631:1 24638:5 24649:1 24652:1 24661:2 24670:1 24725:1 24728:1 24731:1 24746:3 24748:2 24761:1 24762:1 24764:2 24774:1 24788:1 24791:2 24801:1 24822:1 24825:1 24839:1 24862:1 24863:1 24872:1 24902:4 24912:6 24914:1 24923:4 24927:1 24944:1 24947:1 24955:2 24956:1 24957:1 24964:1 24965:1 24973:2 24974:1 24995:2 25011:1 25025:1 25028:3 25030:2 25032:1 25036:1 25060:2 25068:1 25075:1 25085:1 25087:3 25093:1 25099:3 25100:2 25106:1 25115:1 25117:1 25127:1 25136:1 25147:1 25148:1 25150:1 25156:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:2 25220:1 25221:2 25222:1 25224:7 25226:3 25228:4 25229:2 25234:1 25235:2 25236:2 25238:5 25248:2 25249:4 25255:2 25262:2 25268:5 25273:2 25281:1 25297:1 25300:2 25301:1 25311:1 25315:2 25327:1 25337:6 25343:3 25363:2 25369:1 25370:1 25381:3 25393:1 25410:1 25414:1 25415:2 25439:1 25460:1 25463:1 25478:1 25504:3 25530:4 25540:1 25545:6 25565:2 25566:1 25570:1 25590:1 25596:1 25601:1 25602:2 25604:1 25613:1 25616:1 25647:2 25648:1 25666:1 25684:1 25692:1 25693:1 25718:2 25743:1 25746:1 25752:3 25762:1 25767:1 25769:1 25778:1 25781:2 25785:3 25794:2 25797:1 25828:6 25861:1 25879:2 25885:1 25887:1 25900:1 25903:4 25909:1 25910:1 25915:1 25922:1 25927:1 25929:1 25931:4 25988:1 26007:1 26011:2 26023:3 26025:8 26060:11 26069:1 26083:9 26094:1 26104:1 26112:1 26122:1 26127:1 26136:1 26138:1 26146:2 26150:1 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26216:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:6 26270:1 26280:2 26285:2 26288:9 26293:2 26294:4 26304:1 26307:1 26311:1 26317:2 26318:1 26320:1 26328:1 26329:1 26334:1 26336:1 26348:1 26358:1 26363:2 26373:1 26379:4 26387:1 26400:1 26410:3 26416:2 26420:2 26422:2 26482:1 26494:2 26495:1 26511:1 26519:1 26523:1 26534:1 26538:1 26560:2 26563:1 26579:1 26589:1 26590:4 26591:1 26593:2 26598:1 26614:6 26643:1 26646:1 26648:1 26650:1 26654:2 26656:1 26662:1 26668:1 26689:1 26698:1 26706:1 26716:1 26741:1 26754:2 26760:1 26768:1 26776:1 26805:1 26826:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26892:1 26893:1 26898:1 26901:1 26902:1 26907:2 26918:2 26925:1 26939:1 26954:1 26957:2 26974:1 26979:1 26983:5 26989:1 26997:1 26998:2 27006:1 27020:5 27042:1 27046:1 27047:4 27070:2 27074:1 27089:1 27091:1 27094:2 27095:1 27101:1 27107:2 27118:1 27119:1 27127:2 27132:1 27138:2 27157:2 27174:1 27178:6 27179:1 27212:6 27216:1 27234:1 27236:1 27239:1 27260:2 27278:1 27279:1 27289:1 27299:4 27311:1 27320:2 27321:2 27322:1 27327:1 27329:1 27330:1 27334:3 27335:3 27341:1 27372:1 27375:4 27378:1 27381:1 27387:1 27389:1 27406:3 27415:2 27419:1 27421:1 27438:2 27439:1 27453:1 27454:2 27459:1 27472:1 27482:1 27484:2 27510:1 27530:2 27535:1 27539:1 27555:1 27572:1 27574:3 27583:5 27608:2 27612:1 27613:1 27665:1 27670:1 27686:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:1 27763:1 27775:1 27780:1 27781:1 27787:1 27791:1 27792:2 27800:1 27804:1 27807:2 27822:1 27826:2 27845:1 27857:1 27859:1 27868:1 27869:1 27873:1 27875:1 27888:1 27897:1 27912:2 27916:1 27917:2 27920:1 27924:3 27940:4 27957:4 27965:5 27974:1 27990:1 27991:1 27997:1 28011:4 28025:2 28033:1 28043:1 28044:10 28071:1 28083:1 28087:2 28097:1 28098:2 28101:1 28102:2 28103:1 28109:12 28121:1 28146:1 28151:3 28177:1 28188:2 28189:1 28193:1 28213:2 28218:6 28225:2 28226:2 28227:1 28242:2 28246:1 28251:4 28261:1 28266:1 28277:2 28297:1 28300:1 28318:1 28319:3 28322:1 28335:2 28337:1 28347:1 28361:3 28372:1 28377:1 28381:1 28384:1 28398:1 28407:2 28409:1 28414:2 28416:1 28418:1 28420:2 28441:1 28448:1 28458:1 28459:1 28499:1 28529:1 28533:1 28554:5 28557:1 28564:1 28588:1 28589:1 28598:1 28600:2 28616:5 28619:1 28627:1 28637:1 28649:1 28672:1 28681:1 28686:1 28688:1 28714:1 28736:1 28743:1 28746:1 28755:2 28779:1 28801:1 28825:3 28845:1 28858:1 28860:7 28872:1 28893:1 28896:4 28905:1 28907:1 28919:1 28928:2 28938:1 28946:2 28958:1 28959:1 28961:1 28978:1 28980:2 28983:1 28987:2 28992:29 28993:4 28996:5 28998:1 28999:3 29011:1 29034:7 29048:1 29092:3 29100:2 29107:1 29115:1 29120:2 29131:1 29132:3 29142:6 29146:2 29176:12 29177:1 29180:2 29184:3 29186:1 29190:2 29198:1 29202:4 29210:1 29213:1 29216:1 29221:2 29224:1 29228:2 29236:1 29237:1 29238:1 29245:2 29251:2 29262:1 29267:2 29268:2 29274:1 29278:3 29281:1 29286:1 29293:1 29295:1 29300:1 29302:2 29307:1 29324:1 29343:1 29347:1 29362:2 29364:1 29365:1 29379:1 29383:1 29387:1 29388:1 29391:2 29405:5 29409:1 29420:1 29447:1 29449:2 29471:1 29473:2 29474:2 29477:1 29498:1 29504:1 29514:1 29515:1 29518:1 29522:1 29524:1 29525:1 29529:2 29532:5 29538:2 29539:1 29542:1 29548:1 29550:1 29551:1 29559:2 29566:2 29567:1 29569:1 29570:1 29579:1 29587:2 29608:1 29632:1 29646:1 29648:1 29652:1 29659:1 29678:1 29682:2 29684:1 29688:2 29706:1 29712:1 29716:1 29717:1 29718:2 29722:1 29723:2 29727:1 29736:1 29740:3 29743:1 29747:1 29749:1 29758:1 29766:1 29767:7 29773:2 29774:2 29777:1 29780:7 29782:1 29788:1 29801:1 29828:1 29832:1 29839:2 29840:1 29882:3 29890:1 29900:1 29914:4 29918:1 29920:2 29925:1 29927:1 29931:6 29936:1 29940:1 29949:1 29969:1 29970:1 30000:1 30001:2 30002:1 30011:1 30012:1 30015:1 30035:2 30053:1 30058:4 30081:2 30088:1 30104:1 30108:2 30113:1 30122:1 30136:1 30143:1 30150:2 30162:1 30187:1 30194:7 30206:1 30208:1 30210:1 30227:1 30231:7 30243:6 30244:1 30250:1 30273:1 30311:1 30320:8 30322:3 30324:3 30326:1 30328:1 30331:3 30332:3 30344:1 30353:1 30362:1 30363:2 30367:3 30371:3 30408:1 30421:1 9 11:1 14:2 21:1 30:1 34:1 43:1 50:5 63:1 74:1 79:1 83:1 85:1 93:1 99:1 103:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 163:2 176:1 180:2 187:1 189:3 201:1 206:4 236:8 238:1 257:1 277:1 283:1 303:1 309:1 315:2 325:1 327:34 338:2 355:1 356:4 357:5 360:2 362:1 366:1 378:4 380:1 383:1 385:1 397:2 419:1 441:2 460:3 469:1 474:1 475:1 478:1 480:1 500:1 504:1 550:1 558:1 589:2 591:4 592:1 600:2 603:4 625:4 635:2 637:2 638:1 639:1 657:2 671:1 682:4 685:1 691:1 693:2 703:1 724:1 732:2 736:1 747:1 750:1 758:1 774:1 783:1 788:2 791:1 802:1 804:1 819:3 824:1 833:2 843:1 854:1 856:2 857:1 867:1 880:1 883:8 885:3 897:1 899:3 900:1 911:1 914:16 916:1 917:1 929:1 933:1 938:6 939:1 941:7 944:1 946:3 952:1 953:1 959:1 961:1 964:4 976:1 978:1 985:2 986:2 997:1 1005:1 1022:1 1032:3 1045:1 1052:5 1054:2 1060:2 1076:1 1080:2 1084:1 1085:1 1102:1 1103:1 1115:2 1125:1 1126:1 1133:1 1141:1 1142:1 1143:2 1148:2 1156:3 1163:1 1164:2 1172:1 1176:1 1187:1 1188:1 1194:1 1201:3 1206:1 1213:1 1230:1 1258:2 1287:1 1289:1 1291:2 1292:2 1300:2 1303:1 1307:1 1313:1 1333:1 1336:1 1342:1 1353:2 1379:1 1380:1 1393:1 1404:1 1411:3 1434:1 1441:2 1443:1 1461:1 1464:2 1468:6 1471:10 1474:1 1487:2 1489:1 1490:3 1491:2 1493:1 1494:2 1510:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:8 1584:1 1614:2 1621:1 1636:1 1639:1 1641:3 1642:3 1650:1 1652:1 1658:2 1677:5 1680:1 1700:1 1701:3 1706:6 1712:2 1732:1 1733:1 1751:1 1752:1 1768:1 1775:1 1785:1 1803:1 1814:3 1818:1 1827:1 1830:1 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1883:1 1884:1 1886:2 1887:1 1908:1 1911:1 1934:1 1952:1 1954:1 1956:2 1958:18 1965:1 1970:2 1981:2 1986:1 1991:1 1996:1 1997:1 2008:1 2011:1 2018:8 2019:2 2051:1 2053:1 2057:2 2063:4 2075:1 2088:3 2095:1 2100:2 2102:1 2107:1 2120:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2178:1 2186:1 2195:1 2207:1 2211:2 2213:1 2216:1 2218:5 2219:1 2220:1 2223:2 2226:1 2232:1 2234:5 2238:4 2239:2 2240:4 2241:1 2243:1 2251:1 2255:3 2258:1 2274:1 2276:1 2278:3 2280:2 2281:2 2284:2 2285:8 2288:5 2291:1 2292:2 2293:4 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:2 2314:1 2316:6 2318:2 2319:9 2331:1 2332:1 2334:1 2348:1 2369:1 2380:2 2386:1 2393:1 2407:1 2411:1 2418:1 2430:3 2437:4 2438:1 2439:1 2445:1 2448:1 2453:1 2457:2 2460:1 2466:2 2482:4 2493:7 2505:1 2509:1 2511:1 2515:1 2532:1 2537:1 2561:5 2570:5 2577:1 2593:1 2595:2 2603:2 2608:4 2615:3 2618:2 2620:1 2623:1 2632:2 2637:1 2661:2 2666:1 2682:1 2685:1 2690:1 2699:2 2701:4 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2730:1 2740:1 2745:1 2748:1 2761:1 2763:2 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:7 2825:4 2831:6 2840:1 2841:1 2848:1 2880:1 2882:1 2883:2 2889:2 2890:2 2904:2 2912:2 2933:7 2935:2 2941:25 2945:1 2959:4 2975:2 2980:1 2982:1 2987:1 2995:1 3002:14 3021:1 3024:1 3029:1 3032:6 3036:9 3037:1 3038:1 3039:1 3050:1 3061:1 3064:1 3068:1 3082:1 3092:1 3095:1 3097:1 3129:1 3146:4 3162:1 3169:1 3176:1 3177:2 3184:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3287:1 3293:1 3304:1 3312:6 3317:1 3325:2 3332:1 3338:1 3339:1 3343:1 3348:1 3357:1 3361:1 3370:1 3374:1 3384:1 3386:5 3416:1 3431:2 3434:13 3481:1 3487:1 3510:2 3537:1 3544:1 3551:1 3557:2 3561:1 3563:2 3564:2 3568:2 3571:1 3578:1 3581:1 3587:2 3601:1 3615:2 3619:2 3621:1 3628:1 3635:2 3640:1 3645:1 3648:1 3665:4 3670:1 3674:1 3678:2 3681:8 3699:5 3705:2 3706:1 3708:4 3709:2 3712:1 3715:1 3736:2 3741:6 3751:1 3754:1 3773:1 3784:1 3787:1 3791:2 3792:3 3796:1 3800:2 3803:3 3816:1 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:13 3873:1 3882:1 3888:1 3895:5 3897:1 3903:2 3904:12 3905:3 3906:1 3912:2 3923:2 3924:7 3932:1 3938:1 3955:1 3956:3 3958:1 3966:1 3967:1 3969:1 3978:1 3981:1 3986:1 3992:1 3993:1 4000:1 4004:2 4016:1 4019:3 4022:3 4032:2 4037:1 4045:1 4047:1 4053:2 4054:1 4058:2 4063:2 4066:1 4077:5 4084:1 4085:1 4089:2 4093:1 4094:1 4098:1 4099:3 4100:2 4108:5 4109:4 4114:1 4128:1 4141:1 4144:1 4153:1 4165:1 4169:2 4177:1 4181:1 4187:5 4196:2 4197:1 4204:1 4221:1 4236:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:7 4307:2 4315:1 4316:1 4319:1 4321:1 4325:1 4364:1 4366:1 4378:2 4381:2 4388:1 4401:1 4405:1 4420:2 4450:1 4455:2 4462:1 4469:1 4474:5 4494:1 4504:1 4535:1 4546:3 4555:1 4572:1 4584:1 4593:1 4598:1 4601:1 4631:2 4637:1 4661:1 4665:1 4675:1 4680:1 4697:2 4699:2 4719:1 4724:1 4728:2 4735:1 4741:3 4749:1 4751:1 4754:3 4772:2 4774:1 4788:2 4789:1 4804:1 4807:8 4830:1 4843:1 4854:1 4870:1 4875:1 4879:1 4889:1 4896:1 4903:8 4907:1 4911:1 4918:2 4921:1 4935:1 4944:1 4951:1 4954:1 4986:3 5009:1 5019:27 5021:2 5024:1 5041:3 5052:1 5058:4 5071:1 5078:2 5083:7 5091:1 5093:2 5115:2 5117:1 5131:1 5132:1 5134:1 5135:7 5151:5 5152:7 5153:1 5154:1 5155:1 5157:1 5159:3 5160:1 5162:1 5163:3 5165:1 5166:2 5171:1 5173:4 5175:3 5176:1 5178:1 5184:1 5185:1 5187:4 5188:3 5192:1 5209:1 5211:1 5212:1 5242:1 5246:1 5271:3 5277:2 5279:1 5284:1 5299:2 5317:1 5321:1 5326:2 5327:1 5328:3 5336:2 5343:1 5344:3 5359:1 5367:1 5385:1 5396:2 5404:4 5409:1 5435:1 5441:1 5459:1 5464:1 5466:1 5482:1 5487:1 5512:2 5518:8 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5607:2 5612:1 5625:1 5650:1 5663:1 5664:2 5680:2 5691:1 5692:2 5693:2 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:2 5733:1 5736:1 5745:1 5758:3 5763:1 5767:1 5772:1 5780:1 5786:1 5792:3 5797:1 5808:4 5815:1 5816:1 5849:3 5873:3 5882:1 5888:1 5897:3 5898:1 5911:2 5914:4 5917:1 5921:2 5939:1 5945:1 5959:2 5975:1 5977:1 5987:1 5994:1 6001:1 6007:1 6011:1 6021:2 6022:1 6028:1 6059:3 6066:1 6097:1 6102:2 6129:1 6152:1 6171:1 6183:4 6184:1 6202:2 6205:17 6226:4 6229:1 6231:4 6238:1 6242:1 6247:1 6248:5 6249:2 6257:1 6280:3 6288:1 6297:1 6301:1 6303:1 6308:1 6325:2 6345:1 6348:1 6356:1 6364:1 6380:2 6384:2 6385:1 6390:1 6400:1 6404:3 6410:1 6426:6 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:2 6488:1 6501:4 6503:1 6505:1 6506:1 6507:2 6510:1 6511:2 6515:4 6517:1 6518:3 6519:3 6520:5 6522:1 6523:1 6525:4 6526:13 6527:5 6530:1 6539:1 6568:1 6571:1 6591:3 6646:4 6648:1 6649:1 6652:1 6681:2 6683:1 6686:1 6699:2 6743:1 6749:1 6750:1 6752:1 6763:1 6769:1 6777:1 6797:3 6798:1 6803:1 6813:1 6814:1 6816:1 6822:4 6832:1 6833:1 6836:1 6844:1 6851:2 6855:1 6897:1 6898:2 6903:2 6909:1 6911:2 6916:1 6919:2 6920:1 6924:1 6929:1 6940:9 6949:1 6960:2 6968:4 6973:1 6985:1 6987:1 6997:1 7002:1 7014:1 7019:1 7029:1 7045:4 7047:1 7049:2 7058:2 7086:2 7087:2 7091:3 7098:1 7100:1 7113:3 7114:2 7128:1 7131:1 7142:2 7147:2 7148:1 7150:2 7154:1 7160:1 7169:1 7177:2 7212:1 7220:1 7245:1 7253:12 7255:1 7273:1 7281:3 7300:1 7302:1 7306:2 7310:2 7312:1 7321:1 7332:1 7336:1 7337:1 7369:2 7379:1 7388:1 7411:3 7416:1 7435:2 7452:1 7479:2 7486:1 7491:3 7495:1 7500:1 7505:4 7506:1 7509:1 7516:1 7521:1 7527:1 7535:1 7539:1 7549:5 7554:4 7555:1 7559:1 7579:2 7583:1 7596:2 7597:1 7603:2 7622:1 7627:2 7644:1 7663:1 7672:3 7690:2 7706:1 7719:1 7723:1 7725:1 7726:2 7756:2 7757:13 7758:6 7763:1 7771:2 7779:1 7784:2 7785:4 7786:2 7812:5 7813:1 7831:57 7836:2 7854:8 7855:14 7857:1 7860:4 7871:1 7878:1 7883:2 7892:1 7899:1 7908:1 7911:1 7923:2 7940:4 7941:1 7944:2 7964:1 7966:1 7967:2 7982:2 8017:1 8035:2 8059:1 8062:3 8072:1 8087:1 8090:1 8093:3 8108:1 8112:6 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8209:1 8223:1 8226:1 8233:1 8250:1 8255:1 8258:1 8265:3 8266:3 8267:1 8269:1 8285:2 8287:2 8301:1 8303:1 8306:1 8317:2 8319:1 8324:2 8330:1 8333:2 8338:2 8339:1 8343:1 8347:1 8348:3 8357:1 8358:11 8389:2 8394:1 8400:2 8417:1 8452:1 8461:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8559:1 8564:1 8566:1 8569:1 8589:1 8591:1 8599:4 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:4 8638:1 8646:1 8656:1 8664:5 8667:1 8669:2 8671:2 8674:1 8701:1 8711:1 8716:1 8721:1 8728:1 8734:1 8736:1 8739:3 8740:7 8743:4 8744:2 8746:1 8748:3 8749:8 8752:2 8753:4 8755:1 8757:2 8767:3 8768:2 8784:4 8790:2 8792:5 8801:1 8812:1 8816:3 8820:1 8822:2 8826:2 8829:2 8834:2 8837:5 8838:1 8853:2 8860:1 8891:1 8892:2 8898:1 8906:1 8907:1 8930:1 8933:1 8939:1 8958:1 8968:1 8973:2 8974:1 8988:1 9008:1 9017:3 9024:1 9033:2 9041:3 9059:1 9063:2 9066:1 9073:4 9074:2 9078:3 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9171:1 9177:1 9188:2 9199:6 9202:2 9213:1 9220:2 9222:1 9241:3 9252:1 9261:1 9263:1 9275:1 9276:2 9278:1 9292:2 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:4 9373:1 9386:1 9387:1 9394:3 9401:2 9403:1 9411:1 9420:2 9421:1 9459:1 9463:2 9466:1 9467:8 9469:1 9470:1 9474:3 9477:1 9482:1 9486:34 9489:3 9490:2 9508:2 9510:1 9520:1 9523:1 9535:1 9548:4 9567:2 9572:1 9583:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:7 9634:2 9659:1 9676:1 9684:4 9689:1 9702:1 9724:1 9728:1 9749:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9814:1 9824:1 9828:3 9831:1 9832:1 9843:1 9844:1 9845:6 9851:1 9861:1 9869:5 9877:2 9886:2 9895:2 9919:2 9949:8 9955:1 9962:2 9963:1 9965:1 9966:6 9972:2 9974:1 9986:1 9991:1 9993:1 9995:2 10004:1 10005:1 10035:3 10053:1 10057:1 10065:1 10081:1 10084:1 10089:2 10093:1 10108:7 10113:1 10120:1 10126:1 10130:1 10135:4 10142:2 10143:2 10145:1 10147:2 10149:1 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10181:1 10185:1 10186:1 10196:3 10198:1 10202:2 10203:1 10206:1 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:1 10308:1 10309:1 10329:2 10336:1 10345:1 10368:1 10374:1 10391:1 10397:1 10399:2 10400:1 10401:1 10402:1 10418:2 10443:1 10466:1 10479:1 10481:1 10487:1 10489:1 10514:1 10515:1 10520:1 10525:2 10544:2 10548:1 10550:4 10570:1 10576:2 10584:1 10588:1 10590:1 10608:2 10609:1 10625:4 10630:2 10638:2 10653:1 10655:1 10689:1 10690:1 10699:1 10712:2 10720:1 10722:1 10724:1 10751:1 10764:1 10767:1 10769:1 10776:1 10788:1 10790:3 10794:2 10796:1 10800:7 10809:1 10810:1 10811:1 10813:1 10820:1 10823:1 10824:3 10837:1 10840:1 10841:3 10844:4 10846:1 10854:1 10865:3 10866:1 10867:1 10876:4 10878:4 10886:2 10888:1 10890:2 10892:1 10895:1 10916:1 10921:1 10932:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:4 10990:14 11055:1 11056:1 11065:1 11067:2 11079:1 11112:4 11115:1 11117:1 11137:1 11159:1 11162:1 11175:2 11180:1 11193:1 11211:1 11219:1 11224:1 11236:1 11254:4 11257:4 11260:2 11262:2 11266:1 11269:2 11283:2 11291:1 11297:1 11298:2 11299:1 11302:1 11312:1 11313:1 11323:1 11347:7 11351:1 11364:1 11372:6 11377:1 11378:1 11381:2 11385:1 11411:1 11433:1 11434:2 11435:2 11437:1 11443:1 11452:1 11456:1 11457:1 11468:1 11477:1 11482:1 11490:1 11501:1 11507:2 11516:1 11520:1 11534:1 11536:1 11544:1 11551:1 11554:1 11557:1 11566:1 11579:1 11583:5 11590:1 11602:1 11613:2 11616:1 11627:1 11637:1 11643:2 11650:1 11653:3 11659:1 11660:1 11662:1 11674:2 11675:1 11677:2 11682:2 11686:3 11706:9 11715:1 11749:1 11752:13 11753:1 11755:1 11772:1 11775:1 11789:1 11790:1 11797:2 11813:1 11819:1 11820:1 11830:1 11831:2 11848:2 11849:1 11850:1 11852:1 11853:1 11860:1 11861:2 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:2 11930:4 11933:8 11958:1 11960:7 11962:7 11963:1 11989:1 11994:1 12006:1 12009:2 12011:2 12012:3 12016:1 12020:2 12022:2 12025:1 12026:2 12029:3 12030:1 12032:1 12042:2 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:7 12077:1 12085:1 12097:8 12108:2 12111:1 12116:1 12127:1 12132:2 12134:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:2 12263:1 12265:2 12291:1 12304:3 12306:1 12313:3 12315:1 12321:1 12340:1 12346:1 12359:3 12362:4 12382:1 12411:3 12414:1 12426:1 12433:1 12439:1 12442:1 12445:1 12505:2 12516:1 12526:1 12531:1 12540:1 12542:1 12543:3 12544:4 12545:2 12560:2 12571:1 12580:2 12592:1 12593:2 12602:4 12603:5 12608:3 12611:1 12615:1 12619:2 12668:1 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:8 12747:1 12753:2 12775:1 12782:3 12785:1 12798:1 12799:1 12806:1 12807:1 12810:2 12824:3 12828:1 12843:2 12847:2 12872:1 12880:1 12890:1 12896:1 12899:4 12904:2 12911:1 12934:1 12935:1 12946:1 12950:1 12953:1 12954:7 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13079:1 13091:8 13100:1 13108:1 13113:1 13114:1 13116:1 13126:1 13131:17 13136:1 13142:1 13151:3 13153:6 13155:1 13161:2 13180:1 13182:1 13189:1 13192:1 13195:4 13199:3 13222:2 13246:1 13250:1 13255:2 13256:5 13259:2 13270:2 13274:1 13281:1 13283:1 13285:1 13288:1 13291:2 13292:1 13315:2 13330:5 13334:1 13339:1 13341:1 13362:1 13363:1 13364:1 13393:1 13406:1 13417:1 13450:1 13454:7 13458:1 13474:1 13503:1 13504:1 13523:1 13550:8 13556:1 13573:3 13576:1 13584:1 13588:8 13595:4 13600:1 13609:2 13611:6 13632:1 13633:1 13647:2 13649:1 13652:1 13663:2 13665:1 13666:1 13684:2 13690:5 13715:1 13726:2 13732:2 13734:1 13744:1 13747:7 13754:1 13756:4 13757:2 13764:1 13772:1 13773:1 13774:2 13781:2 13786:2 13800:2 13802:1 13807:1 13808:1 13811:1 13829:2 13830:4 13833:1 13840:1 13847:3 13854:1 13862:2 13865:1 13880:2 13887:7 13909:1 13913:1 13915:1 13933:4 13937:1 13938:4 13961:1 13973:2 13987:3 14004:1 14008:1 14018:1 14019:1 14036:1 14051:1 14075:1 14076:2 14081:2 14092:1 14094:1 14116:5 14118:1 14120:2 14123:5 14124:2 14127:2 14135:1 14138:1 14146:1 14149:1 14170:4 14186:1 14191:3 14198:2 14201:2 14204:1 14205:1 14233:1 14243:7 14254:1 14277:3 14290:3 14292:1 14299:1 14304:2 14316:1 14339:7 14343:1 14345:3 14346:1 14352:1 14359:2 14399:1 14401:1 14414:1 14426:4 14445:10 14455:1 14486:1 14489:2 14508:1 14510:1 14525:1 14530:1 14531:1 14535:1 14542:1 14560:2 14577:7 14586:2 14591:1 14602:3 14611:1 14613:1 14617:1 14624:1 14643:1 14649:1 14651:1 14658:1 14667:4 14668:1 14669:1 14681:1 14702:1 14705:1 14720:1 14730:2 14732:1 14741:1 14751:3 14757:2 14768:2 14780:1 14783:3 14794:3 14795:1 14796:3 14797:9 14800:1 14803:7 14808:1 14812:4 14814:2 14815:2 14825:1 14833:1 14835:1 14836:1 14861:1 14871:1 14908:2 14913:1 14914:1 14927:5 14932:1 14961:3 14971:2 14974:2 14978:1 14979:4 14984:4 14987:1 14996:1 15003:1 15012:1 15013:3 15023:1 15032:1 15037:3 15038:1 15060:1 15084:4 15099:2 15106:2 15109:3 15112:1 15113:1 15126:2 15129:2 15134:5 15137:1 15152:3 15157:1 15166:2 15181:1 15183:1 15210:1 15213:1 15253:1 15266:1 15270:1 15278:2 15303:2 15328:4 15329:1 15332:2 15334:1 15347:1 15349:1 15395:1 15396:1 15408:9 15410:1 15424:2 15425:1 15428:3 15435:1 15444:1 15449:9 15450:3 15470:2 15483:1 15494:2 15497:1 15510:1 15511:1 15532:8 15535:1 15538:1 15543:1 15549:1 15569:1 15599:1 15624:1 15638:5 15641:1 15649:1 15651:1 15655:1 15667:1 15668:1 15670:2 15681:1 15683:1 15692:4 15693:1 15698:2 15700:1 15715:1 15727:1 15735:1 15739:1 15746:1 15748:1 15754:1 15756:1 15760:1 15761:3 15774:2 15789:1 15796:1 15820:2 15828:1 15849:1 15863:11 15870:2 15882:1 15886:2 15918:1 15924:3 15938:1 15941:1 15950:5 15951:1 15961:5 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16057:1 16062:1 16081:1 16114:5 16118:1 16128:11 16133:3 16140:1 16141:3 16151:1 16160:2 16165:5 16171:2 16172:1 16173:7 16174:3 16176:1 16184:1 16189:1 16228:1 16233:1 16243:2 16263:1 16266:1 16274:1 16275:2 16282:4 16301:1 16303:1 16306:10 16312:1 16325:1 16335:2 16339:1 16345:1 16348:1 16359:3 16387:2 16403:6 16404:3 16406:1 16410:1 16411:1 16452:1 16458:1 16459:3 16468:1 16472:1 16478:1 16484:5 16488:2 16499:1 16536:1 16552:1 16553:4 16586:1 16591:1 16599:1 16603:1 16607:1 16612:18 16613:1 16615:1 16618:1 16624:1 16629:4 16633:1 16635:2 16640:1 16641:2 16649:1 16652:1 16663:1 16670:2 16690:5 16693:1 16698:1 16707:2 16714:1 16716:1 16717:1 16721:1 16726:1 16733:1 16734:1 16740:2 16741:1 16745:3 16756:2 16760:1 16763:1 16789:1 16791:3 16826:4 16828:1 16829:1 16830:2 16850:1 16876:1 16882:1 16885:1 16896:1 16922:1 16944:1 16960:1 16963:1 16966:4 16990:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17099:1 17101:1 17111:3 17133:1 17156:1 17158:1 17167:1 17177:2 17178:1 17188:1 17212:1 17216:1 17234:1 17237:2 17241:1 17245:2 17255:3 17272:1 17278:1 17279:1 17281:1 17287:3 17288:3 17291:1 17299:1 17310:1 17322:1 17335:1 17337:1 17347:1 17360:1 17362:3 17372:1 17374:1 17396:1 17399:1 17407:4 17411:2 17413:6 17419:1 17436:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:2 17499:3 17506:1 17510:1 17516:2 17535:5 17545:1 17551:4 17553:1 17564:1 17565:1 17569:2 17584:2 17586:1 17613:1 17617:1 17625:2 17630:1 17632:2 17639:6 17646:2 17666:1 17668:6 17671:1 17684:1 17685:1 17690:1 17700:1 17711:2 17712:2 17735:5 17737:3 17750:1 17754:1 17761:1 17762:2 17763:3 17777:3 17778:7 17779:1 17787:3 17792:1 17820:1 17823:1 17825:1 17832:1 17844:1 17850:2 17857:2 17862:1 17898:1 17921:1 17941:1 17942:1 17946:1 17962:1 17968:4 17975:2 17980:2 18000:1 18004:1 18018:1 18019:1 18024:1 18025:2 18037:1 18039:1 18041:3 18043:3 18050:5 18051:1 18053:1 18060:5 18070:3 18071:1 18072:2 18076:1 18106:1 18110:2 18126:5 18127:4 18141:1 18151:2 18154:3 18172:1 18185:2 18189:1 18196:7 18208:1 18210:1 18240:1 18245:1 18252:2 18255:2 18256:1 18259:1 18263:2 18276:1 18281:2 18283:5 18286:1 18288:1 18291:1 18294:1 18302:1 18304:4 18323:1 18324:1 18327:1 18335:1 18344:1 18365:1 18366:3 18395:1 18403:2 18418:1 18422:2 18424:8 18426:1 18430:4 18436:34 18441:1 18444:1 18447:1 18451:2 18455:1 18459:1 18466:1 18476:4 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18528:1 18532:1 18537:3 18546:1 18548:1 18549:5 18550:1 18553:1 18569:1 18575:1 18586:1 18591:5 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:3 18698:1 18708:1 18712:1 18720:2 18723:2 18736:5 18738:1 18740:1 18750:1 18761:2 18774:1 18780:1 18781:1 18805:1 18812:1 18828:1 18843:1 18845:1 18867:1 18881:1 18888:2 18891:3 18905:1 18915:1 18918:1 18928:1 18935:1 18962:1 18968:4 18969:1 18992:1 19001:2 19038:1 19069:4 19081:1 19095:1 19106:1 19113:2 19125:1 19148:2 19152:3 19153:3 19157:1 19172:2 19188:1 19191:8 19199:1 19218:1 19225:1 19229:1 19234:1 19237:1 19243:1 19245:3 19251:2 19254:4 19259:1 19275:1 19279:1 19281:1 19287:5 19291:2 19294:2 19300:1 19304:2410 19308:1 19318:1 19324:1 19354:1 19359:1 19367:4 19368:1 19377:3 19383:1 19401:2 19402:1 19413:1 19418:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:2 19506:1 19507:1 19521:1 19529:3 19535:6 19542:1 19548:5 19551:4 19552:4 19554:1 19568:1 19580:1 19583:1 19616:2 19624:1 19629:7 19633:2 19635:2 19641:1 19642:1 19665:1 19666:34 19675:1 19686:1 19692:7 19716:1 19729:1 19747:1 19756:1 19761:1 19762:1 19774:2 19794:1 19796:1 19804:1 19808:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:4 19857:1 19860:1 19868:1 19882:2 19898:3 19908:1 19920:1 19927:1 19928:1 19948:1 19953:1 19957:1 19964:1 19978:2 19981:2 19982:3 20010:2 20014:1 20018:2 20021:4 20027:1 20033:1 20036:3 20038:3 20043:4 20049:1 20053:1 20058:1 20064:1 20074:5 20078:1 20082:1 20091:1 20092:2 20106:2 20108:1 20123:1 20124:1 20127:5 20131:11 20147:1 20148:1 20172:7 20173:1 20183:2 20184:1 20188:1 20198:1 20242:2 20244:1 20247:3 20296:1 20300:1 20313:1 20317:1 20329:5 20331:1 20336:3 20339:2 20351:2 20353:1 20372:1 20374:4 20375:1 20383:1 20387:3 20393:1 20399:1 20429:1 20434:1 20463:1 20468:2 20501:3 20516:1 20528:1 20559:3 20570:1 20571:1 20577:1 20581:1 20584:3 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:5 20616:2 20620:6 20622:1 20624:2 20629:5 20641:1 20642:1 20657:1 20664:1 20666:1 20681:1 20687:1 20692:2 20705:1 20708:1 20733:2 20754:2 20756:5 20760:1 20778:1 20783:2 20790:1 20791:4 20805:1 20807:1 20817:4 20818:1 20828:1 20832:1 20844:2 20848:2 20850:2 20852:1 20868:1 20875:1 20884:1 20886:1 20901:1 20912:4 20918:1 20920:1 20923:1 20928:3 20932:1 20941:2 20947:1 20962:2 20964:2 20980:1 21002:6 21012:1 21018:1 21019:1 21032:1 21057:8 21058:3 21062:4 21068:2 21074:1 21080:1 21081:1 21120:1 21126:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21168:1 21178:1 21204:1 21217:1 21220:1 21221:1 21246:1 21251:1 21255:3 21258:1 21259:4 21265:1 21271:1 21273:1 21290:1 21296:1 21298:1 21299:9 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:3 21390:1 21398:1 21405:1 21407:2 21429:4 21440:1 21464:1 21468:1 21469:1 21470:1 21472:1 21475:1 21498:2 21503:2 21505:1 21511:1 21514:2 21515:1 21526:1 21529:4 21539:1 21546:4 21547:1 21549:1 21550:1 21552:2 21553:1 21561:1 21564:1 21574:5 21579:1 21584:1 21587:3 21588:3 21595:1 21599:1 21605:1 21613:7 21647:1 21650:2 21656:2 21658:1 21659:3 21660:1 21673:1 21675:1 21702:3 21712:1 21731:1 21739:1 21751:1 21761:1 21788:1 21796:2 21802:2 21804:1 21810:1 21832:1 21836:2 21840:2 21863:7 21872:1 21873:1 21875:1 21894:2 21901:1 21907:2 21952:2 21965:1 21971:1 21975:1 21976:1 21979:2 21985:1 21989:1 22002:1 22005:1 22022:2 22026:1 22045:1 22048:1 22058:2 22061:1 22076:1 22078:1 22082:1 22091:1 22122:1 22131:1 22142:1 22149:1 22160:2 22169:2 22170:1 22176:1 22177:1 22194:1 22210:1 22219:1 22225:1 22240:1 22241:2 22243:1 22250:1 22254:4 22256:1 22257:1 22258:2 22265:1 22266:1 22268:1 22272:3 22273:3 22275:2 22282:2 22283:1 22287:1 22289:1 22291:1 22292:1 22293:1 22298:3 22312:1 22321:1 22325:2 22332:1 22338:1 22346:4 22359:1 22361:2 22363:1 22365:1 22370:3 22371:2 22376:1 22378:1 22381:1 22383:3 22391:2 22392:1 22401:1 22408:1 22413:1 22415:10 22419:1 22432:1 22433:2 22436:5 22437:1 22447:2 22455:1 22477:1 22491:2 22504:1 22507:2 22511:1 22513:4 22519:1 22525:9 22532:2 22539:1 22543:3 22559:1 22561:2 22562:1 22575:1 22601:1 22616:1 22624:1 22625:1 22632:1 22635:1 22661:1 22665:6 22672:1 22676:1 22678:1 22679:2 22681:2 22682:1 22688:1 22695:1 22696:1 22697:6 22698:3 22699:1 22716:2 22720:1 22729:1 22735:1 22738:1 22752:2 22766:2 22768:1 22790:1 22798:3 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:4 22892:3 22893:3 22896:1 22897:1 22902:1 22924:1 22931:1 22933:1 22940:2 22943:1 22947:3 22959:2 22961:2 22975:3 22994:1 23013:1 23017:1 23023:1 23029:1 23033:2 23034:1 23042:1 23052:5 23053:6 23056:3 23057:1 23059:2 23060:1 23072:2 23073:1 23089:1 23096:2 23109:1 23111:4 23118:1 23124:1 23125:2 23131:2 23134:3 23142:3 23144:2 23145:4 23154:1 23162:2 23165:1 23173:1 23174:1 23177:1 23178:3 23185:1 23205:2 23226:1 23229:2 23231:1 23233:1 23241:1 23243:1 23249:1 23251:3 23255:1 23260:1 23263:3 23270:1 23290:1 23291:9 23292:1 23302:1 23309:2 23315:34 23320:1 23321:3 23323:4 23326:1 23327:3 23329:5 23333:1 23334:1 23336:2 23351:1 23352:3 23354:1 23361:3 23364:1 23368:2 23384:2 23385:3 23389:1 23400:2 23403:1 23419:1 23425:3 23437:1 23440:1 23454:1 23487:4 23497:1 23501:9 23509:2 23530:2 23535:2 23552:1 23560:1 23569:1 23594:1 23596:2 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:4 23655:2 23662:1 23663:1 23664:1 23685:1 23701:1 23702:2 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23827:1 23828:1 23830:1 23837:2 23844:1 23859:1 23860:1 23869:2 23872:1 23887:1 23888:2 23894:1 23903:2 23906:1 23908:2 23914:2 23926:3 23927:1 23928:1 23944:3 23952:4 23955:2 23977:2 23978:1 23982:1 23984:1 23992:3 23997:1 24017:1 24020:1 24035:1 24038:1 24066:1 24079:1 24086:1 24107:1 24125:1 24129:1 24144:2 24153:1 24161:1 24166:1 24169:3 24172:2 24173:1 24180:1 24181:1 24187:2 24196:3 24209:2 24214:2 24215:1 24218:1 24220:1 24228:1 24232:1 24241:1 24258:2 24270:3 24278:1 24280:5 24282:1 24288:1 24291:2 24293:2 24309:2 24325:1 24333:1 24335:1 24336:1 24343:12 24351:1 24376:2 24393:1 24406:1 24423:2 24424:1 24425:1 24443:1 24457:1 24476:2 24484:2 24488:1 24497:1 24513:1 24515:1 24522:1 24526:4 24533:2 24543:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:3 24604:1 24620:9 24622:2 24623:1 24631:1 24638:5 24649:1 24652:1 24661:2 24670:1 24725:1 24728:1 24731:1 24746:3 24748:2 24761:1 24762:1 24764:2 24774:1 24788:1 24791:2 24801:1 24822:1 24825:1 24839:1 24862:1 24863:1 24872:1 24902:4 24912:6 24914:1 24923:4 24927:1 24944:1 24947:1 24955:2 24956:1 24957:1 24964:1 24965:1 24973:2 24974:1 24995:3 25011:1 25025:1 25028:3 25030:2 25032:1 25036:1 25060:2 25068:1 25075:1 25085:1 25087:3 25093:1 25099:3 25100:2 25106:1 25115:1 25117:1 25127:1 25136:1 25147:1 25148:1 25150:1 25156:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:2 25220:1 25221:2 25222:1 25224:7 25226:3 25227:1 25228:4 25229:2 25234:1 25235:2 25236:2 25238:5 25248:2 25249:4 25255:2 25262:2 25268:6 25273:2 25281:1 25297:1 25300:3 25301:1 25311:1 25315:2 25327:1 25337:6 25343:3 25363:2 25369:1 25370:1 25380:1 25381:3 25393:1 25410:1 25414:1 25415:2 25439:1 25460:1 25463:1 25478:1 25504:3 25530:4 25540:1 25545:6 25565:2 25566:1 25570:1 25590:1 25596:1 25601:1 25602:2 25604:1 25613:1 25616:1 25647:2 25648:1 25655:1 25666:1 25684:1 25692:2 25693:1 25718:2 25743:1 25746:1 25752:3 25762:1 25767:1 25769:1 25778:1 25781:2 25785:3 25794:2 25797:1 25828:6 25861:1 25879:2 25885:1 25887:1 25900:1 25903:4 25909:1 25910:1 25915:1 25922:1 25927:1 25929:1 25931:4 25988:1 26007:1 26011:2 26023:3 26025:8 26060:11 26069:1 26083:9 26094:1 26104:1 26112:1 26122:1 26127:1 26136:1 26138:1 26144:1 26146:2 26150:1 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26216:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:6 26270:1 26280:2 26285:2 26288:11 26293:2 26294:4 26304:1 26307:1 26311:1 26317:2 26318:1 26320:1 26328:1 26329:1 26334:1 26336:1 26348:1 26358:1 26363:2 26373:1 26379:4 26387:1 26400:1 26410:3 26416:2 26420:2 26422:2 26482:1 26494:2 26495:1 26511:1 26519:1 26523:1 26534:1 26538:1 26560:3 26563:1 26579:1 26589:1 26590:4 26591:1 26593:2 26598:1 26614:6 26643:1 26646:1 26648:1 26650:1 26654:2 26656:1 26662:1 26668:1 26689:1 26698:1 26706:1 26716:1 26741:1 26754:2 26760:1 26768:1 26776:1 26805:1 26826:1 26832:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26892:1 26893:1 26897:1 26898:1 26901:1 26902:1 26907:2 26918:2 26925:1 26939:1 26954:1 26957:2 26974:1 26979:1 26983:5 26989:1 26997:1 26998:2 27006:1 27020:5 27042:1 27046:1 27047:4 27070:2 27074:1 27089:1 27091:1 27094:2 27095:1 27101:1 27107:2 27118:1 27119:1 27127:2 27132:1 27138:2 27157:2 27174:1 27178:6 27179:1 27212:6 27216:1 27234:1 27236:1 27239:1 27260:2 27278:1 27279:1 27289:1 27299:4 27311:1 27320:2 27321:3 27322:1 27327:1 27329:1 27330:1 27334:3 27335:3 27341:1 27372:1 27375:4 27378:1 27381:1 27387:1 27388:1 27389:1 27392:1 27406:3 27415:2 27419:1 27421:1 27438:2 27439:2 27453:1 27454:2 27459:1 27472:1 27482:1 27484:2 27510:2 27530:2 27535:1 27539:1 27555:1 27572:1 27574:3 27583:5 27608:2 27612:1 27613:1 27665:1 27670:1 27686:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:1 27763:1 27775:1 27780:1 27781:1 27787:1 27791:1 27792:2 27800:1 27804:1 27807:2 27822:1 27826:2 27845:1 27857:1 27859:1 27868:1 27869:1 27873:1 27875:1 27888:1 27897:1 27912:2 27916:1 27917:2 27920:1 27924:4 27940:4 27957:5 27965:5 27974:1 27977:1 27990:1 27991:1 27997:1 28011:4 28025:2 28033:1 28043:1 28044:10 28071:1 28083:1 28087:2 28097:1 28098:2 28101:1 28102:2 28103:1 28109:12 28121:1 28146:1 28151:3 28177:1 28188:2 28189:1 28193:1 28213:2 28218:7 28225:2 28226:3 28227:1 28242:2 28246:1 28251:4 28261:1 28266:1 28277:2 28297:1 28300:1 28318:1 28319:3 28322:1 28335:2 28337:1 28347:1 28361:3 28372:1 28377:1 28381:1 28384:1 28398:1 28407:2 28409:1 28414:2 28416:1 28418:1 28420:2 28441:1 28448:1 28458:1 28459:1 28499:1 28529:1 28533:1 28554:5 28557:1 28564:1 28588:1 28589:1 28598:1 28600:2 28616:5 28619:1 28627:1 28637:1 28649:1 28672:1 28681:1 28686:1 28688:1 28714:1 28736:1 28743:1 28746:1 28755:2 28779:1 28801:1 28825:3 28845:1 28858:1 28860:7 28872:1 28876:1 28893:1 28896:4 28905:1 28907:1 28919:1 28928:2 28938:1 28946:2 28958:1 28959:1 28961:1 28978:1 28980:2 28983:1 28987:2 28992:32 28993:4 28996:5 28998:1 28999:3 29011:1 29017:1 29034:8 29048:1 29092:3 29100:2 29107:1 29115:1 29120:2 29131:1 29132:3 29142:7 29146:2 29176:12 29177:1 29180:2 29184:3 29186:1 29190:2 29198:1 29202:4 29210:1 29213:1 29216:1 29221:2 29224:1 29228:2 29236:1 29237:1 29238:1 29245:2 29251:2 29262:1 29267:2 29268:2 29274:1 29278:3 29281:1 29286:1 29293:1 29295:1 29300:1 29302:2 29307:1 29324:1 29343:1 29347:1 29362:2 29364:1 29365:1 29379:1 29383:1 29387:1 29388:1 29391:2 29405:5 29409:1 29420:1 29447:1 29449:2 29471:1 29473:2 29474:2 29477:1 29498:1 29504:1 29514:1 29515:1 29518:1 29522:1 29524:1 29525:1 29529:3 29532:6 29538:2 29539:1 29542:1 29548:1 29550:1 29551:1 29559:2 29566:2 29567:1 29569:1 29570:1 29579:1 29587:2 29608:1 29632:1 29635:1 29646:1 29648:1 29652:1 29659:1 29678:1 29682:2 29684:1 29688:2 29706:1 29712:1 29716:1 29717:1 29718:2 29722:2 29723:2 29727:1 29736:1 29740:3 29743:1 29747:1 29749:1 29758:1 29766:1 29767:7 29773:2 29774:2 29777:1 29780:8 29782:1 29788:1 29801:1 29814:1 29828:1 29832:1 29839:2 29840:1 29882:3 29890:1 29900:1 29914:4 29918:1 29920:2 29925:1 29927:1 29931:6 29936:1 29940:1 29949:1 29969:1 29970:1 30000:1 30001:2 30002:1 30011:2 30012:1 30015:1 30035:2 30053:1 30058:4 30081:2 30088:1 30104:1 30108:2 30113:1 30122:1 30136:1 30143:1 30150:2 30162:1 30187:1 30194:7 30206:1 30208:1 30210:1 30227:1 30231:7 30243:6 30244:1 30250:1 30273:1 30311:1 30320:8 30322:3 30324:3 30326:1 30328:1 30331:3 30332:3 30344:1 30353:1 30362:1 30363:3 30367:3 30371:3 30408:1 30421:1 9 11:1 14:2 21:1 30:1 34:1 43:1 50:5 63:1 74:1 79:1 83:1 85:1 93:1 99:1 103:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 163:2 176:1 180:2 187:1 189:3 201:1 206:4 236:8 238:1 257:1 277:1 283:1 303:1 309:1 315:2 318:1 325:1 327:36 338:2 355:1 356:4 357:5 360:2 362:1 366:1 378:4 380:1 383:1 385:1 397:2 419:1 441:2 460:3 469:1 474:1 475:1 478:1 480:1 500:1 504:1 550:1 558:1 589:2 591:4 592:1 600:2 603:4 625:4 635:2 637:2 638:1 639:1 657:2 671:1 682:4 685:1 691:1 693:2 703:1 724:1 732:2 736:1 747:1 750:1 758:1 774:1 783:1 788:2 791:1 802:1 804:1 819:3 824:1 833:2 843:1 854:1 856:2 857:1 867:1 880:1 883:8 885:3 897:1 899:3 900:1 911:1 914:16 916:1 917:1 929:1 933:1 938:6 939:1 940:1 941:8 944:1 946:3 952:1 953:1 959:1 961:1 964:4 976:1 978:1 985:2 986:2 997:1 1000:1 1005:1 1022:1 1032:3 1045:1 1052:5 1054:2 1060:2 1076:1 1080:2 1084:1 1085:1 1102:1 1103:1 1115:2 1125:1 1126:1 1133:1 1141:1 1142:1 1143:2 1148:2 1156:3 1163:1 1164:2 1172:1 1176:1 1187:1 1188:1 1194:1 1201:3 1206:1 1213:1 1230:1 1252:1 1258:2 1287:1 1289:1 1291:2 1292:2 1300:2 1303:1 1307:1 1313:1 1333:1 1336:1 1342:1 1353:2 1379:1 1380:1 1393:1 1404:1 1411:3 1434:1 1441:2 1443:1 1461:1 1464:2 1468:6 1471:10 1474:1 1487:2 1489:1 1490:3 1491:2 1493:2 1494:2 1510:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:8 1584:1 1614:2 1621:1 1636:1 1639:1 1641:3 1642:3 1650:1 1652:1 1658:2 1677:5 1680:1 1700:1 1701:3 1706:6 1712:2 1732:1 1733:1 1751:1 1752:1 1768:1 1775:1 1785:1 1803:1 1814:3 1818:1 1827:1 1830:1 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1883:1 1884:1 1886:2 1887:1 1908:1 1911:1 1934:1 1952:1 1954:1 1956:2 1958:18 1965:1 1970:2 1981:2 1986:1 1991:1 1995:1 1996:1 1997:1 2008:1 2011:1 2018:8 2019:2 2051:1 2053:1 2057:2 2063:4 2075:1 2088:3 2095:1 2100:2 2102:1 2107:1 2120:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2178:1 2186:1 2195:1 2207:1 2211:2 2213:1 2216:2 2218:5 2219:1 2220:1 2223:2 2226:1 2232:1 2234:5 2238:4 2239:2 2240:4 2241:1 2243:1 2251:1 2255:3 2258:1 2274:1 2276:1 2278:3 2280:2 2281:2 2284:2 2285:8 2288:5 2291:1 2292:2 2293:4 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:2 2314:2 2316:6 2318:2 2319:9 2331:1 2332:2 2334:1 2348:1 2369:1 2380:2 2386:1 2393:1 2407:1 2411:1 2418:1 2430:3 2437:4 2438:1 2439:1 2445:1 2448:1 2453:1 2457:2 2460:1 2466:2 2482:4 2493:7 2505:1 2509:1 2511:1 2515:1 2532:1 2537:1 2561:5 2570:5 2577:1 2593:1 2595:3 2603:2 2608:4 2615:3 2618:2 2620:1 2623:1 2632:2 2637:1 2661:2 2666:1 2682:1 2685:1 2690:1 2699:2 2701:4 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2730:1 2740:2 2745:1 2748:1 2761:1 2763:2 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:7 2825:4 2831:6 2840:1 2841:1 2848:1 2880:1 2882:1 2883:3 2889:2 2890:2 2904:2 2912:2 2930:1 2933:7 2935:2 2941:27 2945:1 2959:4 2975:2 2980:1 2982:1 2987:1 2995:1 3002:15 3021:1 3024:1 3029:1 3032:6 3036:9 3037:1 3038:1 3039:1 3050:1 3061:1 3064:1 3068:1 3082:1 3092:1 3095:1 3097:1 3129:1 3146:4 3162:1 3169:1 3176:1 3177:2 3184:1 3210:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3287:1 3293:1 3304:1 3312:6 3317:1 3325:2 3332:1 3338:1 3339:1 3343:1 3348:1 3357:1 3361:1 3370:1 3374:1 3384:1 3386:5 3416:1 3431:2 3434:14 3481:1 3487:1 3510:2 3537:1 3544:1 3551:1 3557:2 3558:1 3561:1 3563:2 3564:2 3568:2 3571:1 3578:1 3581:1 3587:2 3601:1 3615:2 3619:2 3621:1 3628:1 3635:2 3640:1 3645:1 3648:1 3665:4 3670:1 3672:1 3674:1 3678:2 3681:8 3699:5 3705:2 3706:1 3708:4 3709:2 3712:1 3715:1 3719:1 3736:2 3741:6 3751:1 3754:1 3773:1 3784:1 3787:1 3791:3 3792:3 3796:1 3799:1 3800:2 3803:3 3816:1 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:13 3873:1 3882:1 3888:1 3895:5 3897:1 3903:2 3904:12 3905:3 3906:1 3912:2 3923:2 3924:7 3932:1 3938:1 3955:1 3956:3 3958:1 3966:1 3967:1 3969:1 3978:1 3981:2 3985:1 3986:1 3992:1 3993:1 4000:1 4004:2 4016:1 4019:4 4022:3 4032:2 4037:1 4045:1 4047:1 4053:2 4054:1 4058:2 4063:2 4066:1 4077:5 4084:1 4085:1 4089:2 4093:1 4094:1 4098:1 4099:3 4100:2 4108:5 4109:4 4114:1 4128:1 4141:1 4144:1 4153:1 4165:1 4169:2 4177:1 4181:1 4187:5 4196:2 4197:1 4204:1 4221:1 4236:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:7 4307:2 4315:1 4316:1 4319:1 4321:1 4325:1 4364:1 4366:1 4378:2 4381:2 4388:1 4401:1 4405:1 4420:2 4421:1 4450:1 4455:2 4462:1 4469:1 4474:5 4494:1 4504:1 4535:1 4546:3 4555:1 4572:1 4584:1 4593:1 4598:1 4601:1 4631:2 4637:1 4661:1 4665:1 4675:1 4680:1 4697:2 4699:2 4719:1 4724:1 4728:2 4735:1 4741:3 4749:1 4751:1 4754:3 4772:2 4774:1 4788:2 4789:1 4804:1 4807:8 4830:1 4843:1 4854:1 4870:1 4875:1 4879:1 4889:1 4896:1 4903:8 4907:1 4911:1 4918:2 4921:1 4935:1 4944:1 4951:1 4954:1 4986:3 5009:1 5019:28 5021:3 5024:1 5041:3 5052:1 5058:4 5071:1 5078:2 5083:7 5091:1 5093:2 5115:2 5117:1 5131:1 5132:1 5134:1 5135:7 5151:5 5152:7 5153:1 5154:1 5155:1 5157:1 5159:3 5160:1 5162:1 5163:3 5165:1 5166:2 5171:1 5173:4 5175:3 5176:1 5178:1 5180:1 5184:1 5185:1 5187:4 5188:3 5192:1 5209:1 5211:1 5212:1 5242:1 5246:1 5271:3 5277:2 5279:1 5284:1 5299:2 5317:1 5321:1 5326:3 5327:1 5328:3 5336:2 5343:1 5344:3 5359:1 5367:1 5385:1 5396:2 5404:4 5409:1 5435:1 5441:1 5459:1 5464:1 5466:1 5482:1 5487:1 5512:2 5518:8 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5607:2 5612:1 5625:1 5650:1 5663:1 5664:2 5680:2 5691:1 5692:2 5693:2 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:2 5733:1 5736:1 5745:1 5758:3 5763:1 5767:1 5772:1 5780:1 5786:1 5792:3 5797:1 5808:4 5815:1 5816:1 5849:3 5873:3 5882:1 5888:1 5897:3 5898:1 5911:2 5914:4 5917:1 5921:2 5939:1 5945:1 5959:2 5975:1 5977:1 5987:1 5994:1 6001:1 6007:1 6011:1 6021:2 6022:1 6028:1 6059:3 6065:1 6066:1 6097:1 6102:2 6129:1 6152:1 6171:1 6183:4 6184:1 6202:2 6205:18 6226:5 6229:1 6231:4 6238:1 6242:1 6247:1 6248:5 6249:2 6257:1 6280:3 6288:1 6297:1 6301:1 6303:1 6308:1 6325:2 6345:1 6348:1 6356:1 6364:1 6380:2 6384:2 6385:1 6390:1 6400:1 6404:3 6410:1 6426:6 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:2 6488:1 6501:4 6503:1 6505:1 6506:1 6507:2 6510:1 6511:2 6515:4 6517:1 6518:3 6519:3 6520:5 6522:1 6523:1 6525:4 6526:13 6527:5 6530:2 6539:1 6568:1 6571:1 6591:3 6646:4 6648:1 6649:1 6652:1 6681:2 6683:1 6686:1 6699:2 6743:1 6749:1 6750:1 6752:1 6763:1 6769:1 6777:1 6797:3 6798:1 6803:1 6813:1 6814:1 6816:1 6822:4 6832:1 6833:1 6836:1 6844:1 6851:2 6855:1 6897:1 6898:2 6903:2 6909:1 6911:2 6916:1 6919:2 6920:1 6924:1 6929:1 6940:9 6949:1 6960:2 6968:4 6973:1 6985:1 6987:1 6997:1 7002:1 7014:1 7019:1 7029:1 7045:4 7047:1 7049:2 7058:3 7086:2 7087:2 7091:3 7098:1 7100:1 7113:3 7114:2 7128:1 7131:1 7142:2 7147:2 7148:1 7150:2 7154:1 7160:1 7169:1 7177:2 7212:1 7220:1 7245:1 7253:14 7255:1 7273:1 7281:3 7300:1 7302:1 7306:2 7310:2 7312:1 7321:1 7332:1 7336:1 7337:1 7369:2 7379:1 7388:1 7411:3 7416:1 7420:1 7435:2 7452:1 7479:2 7486:1 7491:3 7495:1 7500:1 7505:4 7506:1 7509:1 7516:1 7521:1 7527:1 7535:1 7539:1 7549:5 7554:4 7555:1 7559:1 7579:2 7583:1 7596:2 7597:1 7603:2 7622:1 7627:2 7644:1 7663:1 7672:3 7690:2 7706:1 7719:1 7723:1 7725:1 7726:2 7756:2 7757:14 7758:6 7763:1 7771:2 7779:1 7784:2 7785:4 7786:2 7812:5 7813:1 7831:58 7836:2 7854:8 7855:15 7857:1 7860:4 7871:1 7878:1 7883:2 7892:1 7899:1 7908:1 7911:1 7923:2 7940:4 7941:1 7944:2 7964:1 7966:1 7967:2 7982:2 8014:1 8017:1 8035:2 8059:1 8062:3 8072:1 8087:1 8090:1 8093:3 8108:1 8112:6 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8209:1 8223:1 8226:1 8233:1 8250:1 8255:1 8258:1 8265:3 8266:3 8267:1 8269:1 8285:2 8287:2 8301:1 8303:1 8306:1 8317:2 8319:1 8324:2 8330:1 8333:2 8338:2 8339:1 8343:1 8347:1 8348:3 8357:1 8358:12 8389:3 8394:1 8400:2 8417:1 8452:1 8461:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8559:2 8564:1 8566:1 8569:1 8589:1 8591:1 8599:4 8604:2 8614:3 8615:1 8620:3 8624:2 8628:1 8629:4 8638:1 8646:1 8656:1 8664:5 8667:2 8669:2 8671:2 8674:1 8701:1 8711:1 8716:1 8721:1 8728:1 8734:1 8736:1 8739:3 8740:8 8743:4 8744:2 8746:1 8748:3 8749:8 8752:2 8753:4 8755:1 8757:2 8767:3 8768:2 8784:4 8790:2 8792:5 8801:1 8812:1 8816:3 8820:1 8822:2 8826:2 8829:2 8834:2 8837:5 8838:1 8853:2 8860:1 8891:1 8892:2 8898:1 8906:1 8907:1 8917:1 8930:1 8933:1 8939:1 8958:1 8968:1 8973:2 8974:1 8988:1 9008:1 9017:3 9024:1 9033:2 9041:3 9059:1 9063:2 9066:1 9073:4 9074:2 9078:3 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9168:1 9171:1 9177:1 9188:2 9199:6 9202:2 9213:1 9220:2 9222:1 9241:3 9252:1 9261:1 9263:1 9275:1 9276:2 9278:1 9292:2 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:4 9373:1 9386:1 9387:1 9394:3 9401:2 9403:1 9411:1 9420:2 9421:1 9436:1 9459:1 9463:2 9466:1 9467:8 9469:1 9470:1 9474:3 9477:1 9482:1 9486:36 9489:3 9490:2 9508:2 9510:1 9513:1 9520:1 9523:1 9535:1 9548:4 9567:2 9572:1 9583:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:7 9634:2 9659:1 9660:1 9676:1 9684:4 9689:1 9702:1 9724:1 9728:1 9749:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9814:1 9824:1 9828:3 9831:1 9832:1 9843:1 9844:1 9845:6 9851:1 9861:1 9869:5 9877:2 9886:2 9895:2 9919:2 9949:8 9955:1 9962:2 9963:1 9965:1 9966:6 9972:2 9974:1 9986:1 9991:1 9993:1 9995:2 10004:1 10005:1 10017:1 10035:3 10053:1 10057:1 10065:1 10081:1 10084:1 10089:2 10093:1 10108:7 10113:1 10120:1 10126:1 10130:1 10135:4 10142:2 10143:2 10145:1 10147:2 10149:1 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10181:1 10185:1 10186:1 10196:3 10198:1 10202:2 10203:1 10206:1 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:2 10308:1 10309:1 10329:2 10336:1 10345:1 10368:1 10374:1 10391:1 10397:1 10399:2 10400:1 10401:1 10402:1 10418:2 10443:1 10466:1 10479:1 10481:1 10487:1 10489:1 10514:1 10515:1 10520:1 10525:2 10544:2 10548:1 10550:4 10570:1 10576:2 10584:1 10588:1 10590:1 10608:2 10609:1 10625:4 10630:2 10638:2 10653:1 10655:1 10689:1 10690:1 10699:1 10712:2 10720:1 10722:1 10724:1 10751:1 10764:1 10767:1 10769:2 10776:1 10788:1 10790:3 10794:2 10796:1 10800:7 10809:1 10810:1 10811:1 10813:1 10820:1 10823:1 10824:3 10837:1 10840:1 10841:3 10844:4 10846:1 10854:1 10865:3 10866:1 10867:1 10876:4 10878:4 10879:1 10886:2 10888:1 10890:2 10892:1 10895:1 10916:1 10921:1 10932:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:4 10990:14 11055:1 11056:1 11065:1 11067:2 11079:1 11112:4 11115:1 11117:1 11137:1 11159:1 11162:1 11175:2 11180:1 11193:1 11211:1 11219:1 11224:1 11236:1 11254:4 11257:4 11260:2 11262:2 11266:1 11269:2 11283:2 11291:1 11297:1 11298:2 11299:1 11302:1 11312:1 11313:1 11323:1 11347:7 11351:1 11364:1 11372:6 11377:1 11378:1 11381:2 11385:1 11411:1 11433:1 11434:2 11435:2 11437:1 11443:1 11452:1 11456:1 11457:1 11468:1 11477:1 11482:1 11490:1 11501:1 11507:2 11516:1 11520:1 11534:1 11536:2 11544:1 11551:1 11554:1 11557:1 11566:1 11579:1 11583:5 11590:1 11602:1 11613:2 11616:1 11627:1 11637:1 11643:2 11650:1 11653:3 11659:1 11660:1 11662:1 11674:2 11675:1 11677:2 11682:2 11686:4 11706:9 11715:1 11749:2 11752:13 11753:1 11755:1 11772:1 11775:1 11789:1 11790:1 11797:2 11813:1 11819:1 11820:1 11830:1 11831:2 11848:2 11849:1 11850:1 11852:1 11853:1 11860:1 11861:2 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:2 11930:4 11933:8 11958:1 11960:7 11962:7 11963:1 11989:1 11994:1 12006:1 12009:2 12011:2 12012:3 12016:1 12020:2 12022:2 12025:1 12026:2 12029:3 12030:1 12032:1 12038:1 12042:2 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:7 12077:1 12085:1 12097:8 12108:2 12111:1 12116:1 12127:1 12132:2 12134:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:2 12263:1 12265:2 12291:1 12304:3 12306:1 12313:3 12315:1 12321:1 12340:1 12346:1 12359:3 12362:4 12382:1 12411:3 12414:1 12426:2 12433:1 12439:1 12442:1 12445:1 12505:2 12516:1 12526:1 12531:1 12540:1 12542:1 12543:3 12544:4 12545:2 12560:2 12571:1 12580:2 12592:1 12593:2 12602:4 12603:5 12608:3 12611:1 12615:1 12619:2 12668:1 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:9 12747:1 12753:2 12775:1 12782:3 12785:1 12798:1 12799:1 12806:1 12807:1 12810:2 12824:3 12828:1 12843:2 12847:2 12872:1 12880:1 12890:1 12896:1 12899:4 12904:3 12911:1 12934:1 12935:1 12946:1 12950:1 12953:1 12954:7 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13079:1 13091:8 13100:1 13108:1 13113:1 13114:1 13116:1 13126:1 13131:18 13136:1 13142:1 13151:3 13153:6 13155:1 13161:2 13180:1 13182:1 13189:1 13192:1 13195:4 13199:3 13222:2 13246:1 13250:1 13255:2 13256:5 13259:2 13270:2 13274:1 13281:1 13283:1 13285:1 13288:1 13291:3 13292:1 13315:2 13330:5 13333:1 13334:1 13339:1 13341:1 13362:1 13363:1 13364:1 13393:1 13406:1 13417:1 13450:1 13452:1 13454:7 13458:1 13474:1 13503:1 13504:1 13523:1 13550:8 13556:1 13573:4 13576:1 13581:1 13584:1 13588:8 13595:4 13600:1 13609:2 13611:6 13632:1 13633:1 13647:2 13649:1 13652:1 13663:2 13665:1 13666:1 13684:2 13690:5 13715:1 13726:2 13732:2 13734:1 13744:1 13747:7 13754:1 13756:4 13757:2 13764:1 13772:1 13773:1 13774:2 13781:2 13786:2 13800:3 13802:1 13807:1 13808:1 13811:1 13829:2 13830:4 13833:1 13840:1 13847:3 13854:1 13862:2 13865:1 13880:2 13887:7 13909:1 13913:1 13915:1 13933:4 13937:1 13938:5 13961:1 13973:2 13987:3 14004:1 14008:1 14018:1 14019:1 14036:1 14051:1 14075:1 14076:2 14081:2 14092:1 14094:1 14116:5 14118:1 14120:2 14123:5 14124:2 14127:2 14135:1 14138:1 14146:1 14149:1 14170:4 14186:1 14191:3 14198:2 14201:2 14204:1 14205:1 14233:1 14243:7 14254:1 14277:3 14290:3 14292:1 14299:1 14304:2 14316:1 14339:7 14343:1 14345:3 14346:1 14352:1 14359:2 14398:1 14399:1 14401:1 14414:1 14426:4 14445:10 14455:1 14486:1 14489:2 14508:1 14510:1 14525:1 14530:1 14531:1 14535:1 14542:1 14560:2 14577:7 14586:2 14591:1 14602:3 14610:1 14611:1 14613:1 14617:1 14624:1 14643:1 14649:1 14651:1 14658:1 14667:4 14668:1 14669:1 14681:1 14702:1 14705:1 14720:1 14730:2 14732:1 14741:1 14751:3 14757:2 14768:2 14780:1 14783:3 14794:3 14795:1 14796:4 14797:9 14800:1 14803:7 14808:1 14812:4 14814:2 14815:2 14825:1 14833:1 14835:1 14836:1 14861:1 14871:1 14908:2 14913:1 14914:1 14927:5 14932:1 14961:3 14971:2 14974:2 14978:1 14979:4 14984:4 14987:1 14996:2 15003:1 15012:1 15013:3 15023:1 15032:1 15037:3 15038:1 15060:1 15084:4 15099:3 15106:2 15109:3 15112:1 15113:1 15126:2 15129:2 15134:5 15137:1 15152:3 15157:2 15166:2 15181:1 15183:1 15210:1 15213:1 15253:1 15266:1 15270:1 15278:2 15303:2 15328:4 15329:1 15332:2 15334:1 15347:1 15349:1 15395:1 15396:1 15408:9 15410:1 15424:2 15425:1 15428:3 15435:1 15444:1 15449:9 15450:3 15470:2 15483:1 15494:2 15497:1 15506:1 15510:1 15511:1 15532:8 15535:1 15538:1 15543:1 15549:1 15569:1 15599:1 15624:1 15638:5 15641:1 15649:1 15651:1 15655:1 15667:1 15668:1 15670:2 15681:1 15683:1 15692:4 15693:1 15698:2 15700:1 15711:1 15715:1 15718:1 15727:1 15735:1 15739:1 15746:1 15748:1 15754:1 15756:1 15760:1 15761:3 15774:2 15789:1 15796:1 15820:2 15828:1 15849:1 15863:11 15870:2 15882:1 15886:2 15918:1 15924:3 15938:1 15941:1 15950:5 15951:1 15961:5 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16057:1 16062:1 16081:1 16114:5 16118:1 16128:11 16133:4 16140:1 16141:3 16151:1 16160:2 16165:5 16171:2 16172:1 16173:8 16174:3 16176:1 16184:1 16189:1 16228:1 16233:1 16243:2 16263:1 16266:1 16274:1 16275:2 16282:4 16301:1 16303:1 16306:10 16312:1 16325:1 16335:2 16339:1 16345:1 16348:1 16359:3 16387:2 16403:6 16404:3 16406:1 16410:1 16411:1 16452:1 16458:1 16459:4 16468:1 16472:1 16478:1 16484:5 16488:2 16499:2 16536:2 16552:1 16553:4 16586:2 16591:1 16599:1 16603:1 16607:1 16612:18 16613:1 16615:1 16618:1 16624:1 16629:4 16633:1 16635:2 16640:1 16641:2 16649:1 16652:1 16663:1 16670:2 16690:5 16693:1 16698:1 16707:2 16714:1 16716:1 16717:1 16719:1 16721:1 16726:1 16733:1 16734:1 16740:2 16741:1 16745:3 16756:2 16760:1 16763:1 16789:1 16791:3 16812:1 16826:4 16828:1 16829:1 16830:2 16850:1 16876:1 16881:1 16882:1 16885:1 16896:1 16922:1 16944:1 16960:1 16963:1 16966:4 16990:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17099:1 17101:1 17111:3 17131:1 17133:1 17156:1 17158:1 17167:1 17177:2 17178:1 17188:1 17212:1 17216:1 17234:1 17237:2 17241:1 17245:2 17255:3 17266:1 17272:1 17278:1 17279:1 17281:1 17287:3 17288:3 17291:1 17299:1 17310:1 17322:1 17335:1 17337:1 17347:1 17360:1 17362:3 17372:1 17374:1 17396:1 17399:1 17407:5 17411:2 17413:6 17419:1 17436:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:2 17499:3 17506:1 17510:1 17516:2 17535:5 17545:1 17551:4 17553:1 17564:1 17565:1 17569:2 17584:2 17586:1 17613:1 17617:1 17625:2 17630:1 17632:2 17639:6 17646:2 17666:1 17668:6 17671:1 17684:1 17685:1 17690:1 17700:1 17711:2 17712:2 17735:5 17737:3 17750:1 17754:1 17761:1 17762:2 17763:3 17777:3 17778:7 17779:1 17787:3 17792:1 17820:1 17823:1 17825:1 17832:1 17844:1 17850:2 17857:2 17862:1 17898:1 17921:1 17941:1 17942:2 17946:1 17962:1 17968:4 17975:2 17980:2 18000:1 18004:1 18018:1 18019:1 18024:1 18025:2 18037:1 18039:1 18041:3 18043:3 18050:5 18051:1 18053:1 18060:5 18070:3 18071:1 18072:2 18076:1 18106:1 18110:2 18126:5 18127:4 18141:1 18146:1 18151:2 18154:3 18172:1 18185:2 18189:1 18196:7 18200:1 18208:1 18210:1 18240:1 18245:1 18252:2 18255:2 18256:1 18259:1 18263:2 18276:1 18281:2 18283:5 18286:1 18288:1 18291:1 18294:1 18302:1 18304:4 18323:1 18324:1 18327:1 18335:1 18344:1 18365:1 18366:3 18395:1 18403:2 18418:1 18422:2 18424:8 18426:1 18430:4 18436:35 18441:1 18444:1 18447:1 18451:2 18455:1 18459:1 18466:1 18476:4 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18528:1 18532:1 18537:3 18546:1 18548:1 18549:5 18550:1 18553:1 18569:1 18575:1 18586:1 18591:5 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:4 18698:1 18708:1 18712:1 18720:2 18723:2 18736:5 18738:1 18740:2 18750:1 18761:2 18774:1 18780:1 18781:1 18805:1 18812:1 18828:1 18843:1 18845:1 18867:1 18881:1 18888:2 18891:3 18905:1 18915:2 18918:1 18928:1 18935:1 18962:1 18968:4 18969:1 18992:1 19001:3 19038:1 19069:5 19081:1 19095:1 19106:1 19113:2 19125:1 19148:2 19152:3 19153:3 19157:1 19172:2 19188:1 19191:8 19199:1 19218:1 19225:1 19229:1 19234:1 19237:1 19243:1 19245:3 19251:2 19254:4 19259:1 19275:1 19279:1 19281:1 19287:5 19291:2 19294:2 19300:1 19304:2485 19308:1 19318:1 19324:1 19354:1 19359:1 19367:4 19368:1 19377:3 19383:1 19401:2 19402:1 19413:1 19418:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:2 19506:1 19507:1 19521:1 19529:3 19535:7 19542:1 19548:5 19551:4 19552:5 19554:1 19568:1 19580:1 19583:1 19616:2 19624:1 19629:7 19633:2 19635:2 19641:1 19642:1 19665:1 19666:36 19675:1 19686:1 19692:7 19716:1 19729:1 19747:1 19756:1 19761:1 19762:1 19772:1 19774:2 19794:1 19796:1 19804:1 19808:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:4 19857:1 19860:2 19868:2 19882:2 19898:3 19908:1 19920:1 19927:1 19928:1 19948:1 19953:1 19957:1 19964:1 19978:2 19981:2 19982:4 20010:2 20014:1 20018:2 20021:4 20027:1 20033:1 20036:3 20038:3 20043:4 20049:1 20053:1 20058:1 20064:1 20074:6 20078:1 20082:1 20091:1 20092:2 20106:2 20108:1 20123:1 20124:1 20127:5 20131:11 20147:1 20148:1 20172:7 20173:1 20183:2 20184:1 20188:1 20198:1 20242:2 20244:1 20247:3 20296:1 20300:1 20313:2 20317:1 20329:5 20331:1 20336:3 20339:2 20351:2 20353:1 20372:1 20374:5 20375:1 20383:1 20387:3 20393:1 20399:1 20429:1 20434:1 20463:1 20468:2 20501:3 20516:1 20528:1 20559:3 20570:1 20571:1 20577:1 20581:2 20584:4 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:5 20616:2 20620:7 20622:1 20624:2 20629:5 20641:1 20642:1 20657:1 20664:1 20666:1 20681:1 20687:1 20692:3 20705:1 20708:1 20733:3 20735:1 20754:2 20756:5 20760:2 20778:1 20783:2 20790:1 20791:4 20805:1 20807:1 20817:4 20818:1 20828:1 20832:1 20844:2 20848:2 20850:2 20852:1 20868:1 20875:1 20884:1 20886:1 20901:1 20912:5 20918:1 20920:1 20923:1 20928:3 20932:1 20941:2 20947:1 20962:2 20964:2 20980:2 21002:6 21012:1 21018:1 21019:1 21032:1 21057:9 21058:3 21062:4 21068:2 21074:1 21080:1 21081:1 21120:1 21126:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21168:1 21178:1 21204:1 21217:1 21220:1 21221:1 21246:1 21251:1 21255:3 21258:1 21259:4 21265:1 21271:1 21273:1 21290:1 21296:1 21298:1 21299:9 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:3 21390:1 21398:1 21405:1 21407:2 21429:4 21437:1 21440:1 21464:1 21468:1 21469:1 21470:1 21472:1 21475:1 21498:2 21503:2 21505:1 21511:1 21514:2 21515:1 21526:1 21529:4 21539:1 21546:4 21547:2 21549:1 21550:1 21552:2 21553:1 21561:1 21564:1 21574:5 21579:1 21584:1 21587:3 21588:3 21595:1 21599:1 21605:1 21613:7 21647:1 21650:2 21656:2 21658:1 21659:3 21660:1 21673:1 21675:1 21702:3 21712:1 21731:1 21739:1 21751:1 21761:1 21788:1 21796:2 21802:2 21804:1 21810:1 21832:1 21836:2 21840:2 21863:7 21872:1 21873:1 21875:1 21880:1 21883:1 21894:2 21901:1 21907:2 21952:2 21965:1 21971:1 21975:1 21976:1 21979:2 21985:1 21989:1 22002:1 22005:1 22022:2 22026:1 22045:1 22048:1 22056:1 22058:2 22061:1 22076:1 22078:1 22081:1 22082:1 22091:1 22122:1 22131:1 22142:1 22149:1 22160:2 22169:2 22170:1 22176:1 22177:1 22194:1 22210:1 22219:1 22225:1 22240:1 22241:3 22243:1 22250:1 22254:4 22256:1 22257:1 22258:2 22265:1 22266:1 22268:1 22272:3 22273:3 22275:2 22282:2 22283:1 22287:1 22289:1 22291:1 22292:1 22293:1 22298:3 22312:1 22321:1 22325:2 22332:1 22338:1 22346:4 22359:1 22361:2 22363:1 22365:1 22370:3 22371:2 22374:1 22376:1 22378:1 22381:1 22383:3 22391:2 22392:1 22401:1 22408:1 22413:1 22415:10 22419:1 22432:1 22433:2 22436:5 22437:1 22447:2 22455:1 22464:1 22477:1 22491:2 22504:1 22507:2 22511:1 22513:4 22514:1 22519:1 22525:9 22532:2 22539:1 22543:3 22559:1 22561:2 22562:1 22575:1 22593:1 22601:1 22616:1 22624:1 22625:1 22628:1 22632:1 22635:1 22661:1 22665:6 22672:1 22676:1 22678:1 22679:2 22681:2 22682:1 22688:1 22695:1 22696:1 22697:6 22698:3 22699:1 22716:2 22720:1 22729:1 22735:1 22738:1 22752:2 22766:2 22768:1 22790:1 22798:3 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:4 22892:3 22893:3 22896:1 22897:1 22902:1 22924:1 22931:1 22933:1 22940:2 22943:1 22947:3 22959:2 22961:2 22975:3 22994:1 23013:1 23017:1 23023:1 23029:1 23033:2 23034:1 23042:1 23052:5 23053:6 23056:3 23057:1 23059:2 23060:1 23072:2 23073:1 23089:1 23096:2 23109:1 23111:4 23118:1 23124:1 23125:2 23131:3 23134:3 23142:3 23144:2 23145:4 23154:1 23162:2 23165:1 23173:1 23174:1 23177:1 23178:3 23185:1 23205:2 23226:1 23229:2 23231:1 23233:1 23241:1 23243:1 23249:1 23251:3 23255:1 23260:1 23263:3 23270:1 23290:1 23291:9 23292:1 23302:1 23306:1 23309:2 23315:35 23320:1 23321:4 23323:4 23326:1 23327:3 23329:5 23333:1 23334:1 23336:2 23351:1 23352:4 23354:1 23361:3 23364:1 23368:2 23384:2 23385:3 23389:1 23400:2 23403:1 23419:1 23425:3 23437:1 23440:1 23454:1 23487:4 23497:1 23501:9 23509:2 23530:3 23535:2 23552:1 23560:1 23569:1 23594:1 23596:2 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:4 23655:2 23662:1 23663:1 23664:1 23685:1 23701:1 23702:2 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23827:1 23828:1 23830:1 23837:2 23844:1 23858:1 23859:1 23860:1 23869:2 23872:1 23887:1 23888:2 23894:1 23903:2 23906:1 23908:2 23914:2 23926:3 23927:1 23928:1 23944:3 23952:4 23955:2 23977:2 23978:1 23982:1 23984:1 23992:3 23997:1 24017:1 24020:1 24035:1 24038:1 24066:1 24079:1 24086:1 24107:1 24125:1 24129:1 24144:2 24153:1 24161:1 24166:1 24169:3 24172:2 24173:1 24180:1 24181:1 24187:2 24196:3 24209:2 24214:2 24215:1 24218:1 24220:2 24228:1 24232:1 24241:1 24258:2 24270:3 24278:1 24280:5 24282:1 24288:1 24291:2 24293:2 24309:2 24325:1 24333:1 24335:1 24336:1 24343:12 24351:1 24376:2 24393:1 24406:1 24423:2 24424:1 24425:1 24443:2 24457:1 24476:2 24484:2 24488:1 24497:1 24513:1 24515:1 24522:1 24526:4 24533:2 24543:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:3 24604:1 24620:9 24622:2 24623:1 24631:1 24638:5 24649:1 24652:1 24661:2 24670:1 24713:1 24725:1 24728:1 24731:1 24746:3 24748:2 24761:1 24762:1 24764:2 24774:1 24788:1 24791:2 24801:1 24822:1 24825:1 24839:1 24862:1 24863:1 24872:1 24900:1 24902:4 24912:6 24914:1 24923:4 24927:1 24944:1 24947:1 24955:2 24956:1 24957:1 24964:1 24965:1 24973:2 24974:1 24995:3 25011:1 25025:1 25028:3 25030:2 25032:1 25036:1 25060:2 25068:1 25075:1 25085:1 25087:3 25093:1 25099:3 25100:2 25106:1 25115:1 25117:1 25127:1 25136:1 25147:1 25148:1 25150:1 25156:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:2 25220:1 25221:2 25222:1 25224:8 25226:3 25227:1 25228:4 25229:2 25234:1 25235:2 25236:2 25238:5 25248:2 25249:4 25255:2 25262:2 25268:6 25273:2 25281:1 25297:1 25300:3 25301:1 25311:1 25315:2 25327:1 25332:1 25337:6 25343:3 25363:2 25369:1 25370:1 25380:1 25381:3 25393:1 25410:1 25414:1 25415:2 25439:1 25460:1 25463:1 25478:1 25504:3 25530:4 25540:1 25545:6 25565:2 25566:1 25570:1 25590:1 25596:1 25601:1 25602:2 25604:1 25613:1 25616:1 25647:2 25648:1 25655:1 25666:1 25684:1 25692:2 25693:1 25718:2 25743:1 25746:1 25752:3 25762:1 25767:1 25769:1 25778:1 25781:2 25785:3 25794:2 25797:1 25828:6 25861:1 25879:2 25885:1 25887:1 25900:1 25903:4 25909:1 25910:1 25915:2 25922:1 25927:1 25929:1 25931:4 25988:1 26007:1 26011:2 26023:4 26025:8 26060:11 26069:1 26083:9 26094:1 26104:1 26112:1 26122:1 26127:1 26136:1 26138:1 26144:1 26146:2 26150:1 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26216:1 26236:1 26240:2 26248:2 26252:1 26257:1 26259:1 26261:2 26263:6 26270:1 26280:2 26285:2 26288:11 26293:2 26294:4 26304:1 26307:1 26311:1 26317:2 26318:1 26320:1 26328:1 26329:1 26334:2 26336:1 26348:1 26358:1 26363:2 26373:1 26379:4 26387:1 26400:1 26410:3 26416:2 26420:2 26422:2 26482:1 26494:2 26495:1 26511:1 26519:1 26523:1 26534:1 26538:1 26560:3 26563:1 26579:1 26589:1 26590:4 26591:1 26593:2 26598:1 26614:6 26624:1 26643:1 26646:1 26648:1 26650:1 26654:2 26656:1 26662:1 26668:1 26689:1 26698:1 26706:1 26716:1 26741:1 26754:2 26760:1 26768:1 26776:2 26805:1 26826:1 26832:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26892:1 26893:1 26897:1 26898:1 26901:1 26902:1 26907:2 26918:2 26925:1 26939:1 26954:1 26957:2 26974:1 26979:1 26983:5 26989:1 26997:1 26998:2 27006:1 27020:5 27042:1 27046:1 27047:5 27070:2 27074:1 27089:1 27091:1 27094:2 27095:1 27101:1 27107:2 27118:1 27119:1 27127:2 27132:1 27138:2 27157:2 27174:1 27178:7 27179:1 27209:1 27212:6 27216:1 27234:1 27236:1 27239:1 27260:2 27278:1 27279:1 27289:1 27299:4 27311:1 27320:2 27321:3 27322:1 27327:1 27329:1 27330:1 27334:3 27335:3 27341:1 27372:1 27375:4 27378:1 27381:1 27387:1 27388:1 27389:1 27392:1 27406:3 27415:2 27419:1 27421:2 27438:2 27439:2 27453:1 27454:2 27459:1 27472:1 27482:1 27484:2 27510:2 27530:2 27534:1 27535:1 27539:1 27555:1 27572:1 27574:3 27583:5 27608:2 27612:1 27613:1 27665:1 27670:1 27686:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:1 27763:1 27775:1 27780:1 27781:1 27787:1 27791:1 27792:2 27800:1 27804:1 27807:2 27822:1 27826:2 27845:1 27857:1 27859:1 27868:1 27869:1 27873:1 27875:1 27885:1 27888:1 27897:2 27912:2 27916:1 27917:2 27920:1 27924:4 27940:4 27957:5 27965:5 27974:1 27977:1 27990:1 27991:1 27997:1 28011:4 28025:2 28033:1 28043:1 28044:10 28071:1 28083:1 28087:2 28097:1 28098:2 28101:1 28102:3 28103:1 28109:12 28121:1 28146:1 28151:3 28177:1 28188:2 28189:1 28193:1 28213:2 28218:8 28225:2 28226:3 28227:1 28242:2 28246:1 28251:4 28261:1 28266:1 28277:2 28297:1 28300:1 28318:1 28319:3 28322:1 28326:1 28335:2 28337:1 28347:1 28361:3 28372:1 28377:1 28381:1 28384:1 28398:1 28407:2 28409:1 28414:2 28416:1 28418:1 28420:2 28441:1 28448:1 28458:1 28459:1 28499:1 28529:1 28533:1 28554:5 28555:1 28557:1 28564:1 28588:1 28589:1 28598:1 28600:2 28616:5 28619:1 28627:1 28637:1 28649:1 28672:1 28681:1 28686:1 28688:1 28714:1 28736:1 28743:1 28746:1 28755:2 28779:1 28801:1 28825:3 28845:1 28858:1 28860:7 28872:1 28876:1 28893:1 28896:4 28905:1 28907:1 28919:1 28928:2 28938:1 28946:2 28958:1 28959:1 28961:1 28978:1 28980:2 28983:1 28987:2 28992:33 28993:4 28996:5 28998:1 28999:3 29011:2 29017:1 29034:9 29048:1 29092:3 29100:2 29107:1 29115:1 29120:2 29131:1 29132:3 29142:7 29146:2 29176:13 29177:1 29180:2 29184:3 29186:1 29190:2 29198:1 29202:4 29210:1 29213:1 29216:1 29221:2 29224:1 29228:2 29236:1 29237:2 29238:1 29245:2 29251:2 29262:1 29267:2 29268:2 29274:1 29276:1 29278:3 29281:1 29286:1 29293:1 29295:1 29300:1 29302:2 29307:1 29324:1 29343:1 29347:1 29362:2 29364:1 29365:1 29379:1 29383:1 29387:1 29388:1 29391:2 29405:5 29409:1 29420:1 29447:1 29448:1 29449:2 29471:1 29473:2 29474:2 29477:1 29498:1 29504:1 29514:1 29515:1 29518:1 29522:1 29524:1 29525:1 29529:3 29532:6 29538:2 29539:1 29542:2 29548:1 29550:1 29551:1 29559:2 29566:2 29567:1 29569:1 29570:1 29579:1 29587:2 29608:1 29632:1 29635:1 29646:1 29648:1 29652:1 29659:1 29678:1 29682:2 29684:1 29688:2 29706:1 29712:1 29716:1 29717:1 29718:2 29722:2 29723:2 29727:1 29736:1 29740:3 29743:1 29747:1 29749:1 29758:1 29766:1 29767:8 29773:2 29774:2 29777:1 29780:8 29782:1 29788:1 29801:1 29814:1 29828:1 29832:1 29839:2 29840:1 29882:3 29890:1 29900:1 29914:4 29918:1 29920:2 29925:1 29927:1 29931:6 29936:1 29940:1 29949:1 29969:1 29970:1 30000:1 30001:2 30002:1 30011:2 30012:1 30015:1 30035:2 30053:1 30058:4 30081:2 30088:2 30104:1 30108:2 30113:1 30122:1 30136:1 30143:1 30150:2 30162:1 30187:1 30194:7 30206:1 30208:1 30210:1 30227:1 30231:7 30243:6 30244:1 30250:1 30273:1 30311:1 30320:8 30322:3 30324:3 30326:1 30328:1 30331:3 30332:3 30344:1 30353:1 30362:1 30363:3 30367:3 30371:3 30408:1 30421:1 9 11:1 14:2 21:1 30:1 34:1 43:1 50:6 63:1 74:1 79:1 83:1 85:1 93:1 99:1 103:1 107:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 163:2 176:1 180:2 187:1 189:3 201:1 206:5 236:8 238:1 257:1 277:1 283:1 303:1 309:1 315:2 318:1 325:1 327:38 338:2 355:1 356:4 357:5 360:2 362:1 366:1 378:4 380:1 383:1 385:1 397:2 419:1 441:2 460:3 469:1 474:1 475:1 478:1 480:1 500:1 504:1 550:1 558:1 589:2 591:4 592:1 600:2 603:4 625:4 635:2 637:2 638:1 639:1 657:2 671:1 682:4 685:1 691:1 693:2 703:1 724:1 732:2 736:1 747:1 750:1 758:1 774:1 783:1 788:2 791:1 802:1 804:1 819:3 824:1 833:2 843:1 854:1 856:2 857:1 867:1 880:1 883:8 885:3 897:1 899:3 900:1 911:1 914:16 916:1 917:1 929:1 933:1 938:6 939:1 940:1 941:8 944:1 946:3 952:1 953:1 959:1 961:1 964:4 976:1 978:1 985:2 986:3 997:1 1000:1 1005:1 1022:1 1023:1 1032:3 1045:1 1052:6 1054:2 1060:2 1076:1 1080:2 1084:1 1085:1 1102:1 1103:1 1115:2 1125:1 1126:1 1133:1 1141:1 1142:1 1143:2 1148:2 1156:3 1163:1 1164:2 1172:1 1176:1 1187:1 1188:1 1194:1 1201:3 1206:1 1213:1 1230:1 1252:1 1258:2 1287:1 1289:1 1291:2 1292:2 1300:2 1303:1 1307:1 1313:1 1333:1 1336:1 1342:1 1353:2 1379:1 1380:1 1393:1 1404:1 1411:3 1434:1 1441:2 1443:1 1461:1 1464:2 1468:6 1471:10 1474:1 1487:2 1489:1 1490:3 1491:2 1493:2 1494:2 1510:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:8 1584:1 1614:2 1621:1 1636:1 1639:1 1641:3 1642:3 1650:1 1652:1 1655:1 1658:2 1677:5 1680:1 1700:1 1701:3 1706:6 1712:2 1732:1 1733:1 1751:2 1752:1 1768:1 1775:1 1785:1 1803:1 1814:3 1818:1 1827:1 1830:1 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1883:1 1884:1 1886:2 1887:1 1908:1 1911:1 1934:1 1952:1 1954:1 1956:2 1958:19 1965:1 1970:2 1981:2 1986:1 1991:1 1995:1 1996:1 1997:1 2008:1 2011:1 2018:8 2019:2 2051:1 2053:1 2057:2 2063:4 2069:1 2075:1 2088:3 2095:1 2100:2 2102:1 2107:1 2112:1 2120:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2178:1 2186:1 2195:1 2207:1 2211:2 2213:1 2216:2 2218:5 2219:1 2220:1 2223:2 2226:1 2232:1 2234:5 2238:4 2239:2 2240:4 2241:1 2243:1 2245:1 2251:1 2255:4 2258:1 2274:1 2276:1 2278:4 2280:2 2281:2 2284:2 2285:8 2288:5 2291:1 2292:2 2293:4 2296:1 2297:1 2298:1 2301:2 2306:1 2309:1 2311:2 2314:2 2316:6 2318:2 2319:9 2331:1 2332:2 2334:1 2348:1 2369:1 2380:2 2381:1 2386:1 2393:1 2407:1 2411:1 2418:1 2430:3 2437:4 2438:1 2439:1 2445:1 2448:1 2453:1 2457:2 2460:1 2466:2 2482:5 2493:7 2505:1 2509:1 2511:1 2515:1 2532:1 2537:1 2561:5 2570:5 2577:1 2593:1 2595:3 2603:2 2608:4 2615:3 2618:2 2620:1 2623:1 2632:2 2637:1 2661:2 2666:1 2682:1 2685:1 2690:1 2699:2 2701:4 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2730:2 2740:2 2745:1 2748:1 2761:1 2763:2 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:7 2825:4 2831:6 2840:1 2841:1 2848:1 2880:1 2882:1 2883:3 2889:2 2890:2 2904:2 2912:2 2930:1 2933:7 2935:2 2941:27 2945:1 2959:4 2975:2 2980:1 2982:1 2987:1 2995:1 3002:16 3021:1 3024:1 3029:1 3032:6 3036:9 3037:1 3038:1 3039:1 3050:1 3061:1 3064:1 3068:1 3082:1 3092:1 3095:1 3097:1 3129:1 3146:4 3162:1 3169:1 3176:1 3177:2 3184:1 3210:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3287:1 3293:1 3304:2 3312:6 3317:1 3322:2 3325:2 3332:1 3338:1 3339:1 3343:1 3348:1 3357:1 3361:1 3370:1 3374:1 3384:1 3386:5 3416:1 3431:2 3434:14 3481:1 3487:1 3510:2 3537:1 3544:1 3551:1 3557:2 3558:1 3561:1 3563:2 3564:2 3568:2 3571:1 3578:1 3581:1 3587:2 3601:1 3615:2 3619:2 3621:1 3628:1 3635:2 3640:1 3645:1 3648:1 3665:4 3670:1 3672:1 3674:1 3678:2 3681:8 3699:5 3705:2 3706:1 3708:5 3709:2 3712:1 3715:1 3719:1 3736:2 3741:6 3751:1 3754:1 3773:1 3784:1 3787:1 3791:3 3792:3 3796:1 3799:1 3800:2 3803:3 3816:1 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:13 3873:1 3882:1 3884:1 3888:1 3895:5 3897:1 3903:2 3904:12 3905:3 3906:1 3911:1 3912:2 3923:2 3924:7 3932:1 3938:1 3955:1 3956:3 3958:1 3966:1 3967:1 3969:1 3978:1 3981:2 3985:1 3986:1 3992:1 3993:1 4000:1 4004:2 4016:1 4019:4 4022:3 4032:2 4037:1 4045:1 4047:1 4053:2 4054:1 4058:3 4063:3 4066:1 4077:5 4084:1 4085:1 4089:2 4093:1 4094:1 4098:1 4099:3 4100:2 4108:5 4109:5 4114:1 4128:1 4141:1 4144:1 4153:1 4165:1 4169:2 4177:1 4181:1 4187:6 4195:1 4196:2 4197:1 4204:1 4221:1 4236:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:7 4307:2 4315:1 4316:1 4319:1 4321:1 4325:1 4364:1 4366:1 4378:2 4381:2 4388:1 4401:1 4405:2 4412:1 4420:2 4421:1 4450:1 4455:2 4462:1 4469:1 4474:5 4494:1 4504:1 4535:1 4546:3 4555:1 4572:1 4576:1 4584:1 4593:1 4598:1 4601:1 4631:2 4637:1 4661:1 4665:1 4675:1 4680:1 4688:1 4697:2 4699:2 4719:1 4724:1 4728:2 4735:1 4741:4 4749:1 4751:1 4754:3 4772:2 4774:1 4775:1 4788:2 4789:1 4804:1 4807:8 4830:1 4843:1 4854:1 4870:1 4875:1 4879:1 4889:1 4896:1 4903:8 4907:1 4911:1 4918:2 4921:1 4935:1 4944:1 4951:1 4954:1 4986:3 5009:1 5019:30 5021:3 5024:1 5041:3 5043:1 5052:1 5058:4 5071:1 5078:2 5083:7 5091:1 5093:2 5115:2 5117:2 5131:1 5132:1 5134:1 5135:7 5151:5 5152:8 5153:1 5154:1 5155:1 5157:1 5159:3 5160:1 5162:1 5163:3 5165:1 5166:2 5170:1 5171:1 5173:5 5175:3 5176:1 5178:1 5180:1 5184:1 5185:1 5187:4 5188:3 5192:1 5209:1 5211:1 5212:1 5219:1 5238:1 5242:1 5246:1 5271:3 5277:2 5279:1 5284:1 5294:1 5299:2 5317:1 5321:1 5326:3 5327:1 5328:3 5336:2 5343:1 5344:3 5359:1 5367:1 5374:1 5385:1 5396:2 5404:5 5409:1 5435:1 5441:1 5459:1 5464:1 5466:1 5482:1 5487:1 5506:1 5512:3 5518:8 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5607:2 5612:1 5625:1 5650:1 5663:1 5664:2 5680:2 5691:1 5692:2 5693:2 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:2 5733:1 5736:1 5745:1 5750:1 5758:3 5763:1 5767:1 5772:1 5780:1 5786:1 5792:3 5797:1 5808:4 5815:1 5816:1 5849:3 5873:3 5882:1 5888:1 5897:3 5898:1 5911:2 5914:4 5917:1 5921:2 5939:1 5945:1 5959:2 5975:1 5977:1 5987:1 5994:1 6001:1 6007:1 6011:1 6021:2 6022:1 6028:1 6059:3 6065:1 6066:1 6097:1 6102:2 6129:1 6152:1 6171:1 6183:4 6184:1 6202:2 6204:1 6205:19 6226:5 6229:1 6231:4 6238:1 6242:1 6247:1 6248:5 6249:2 6257:1 6280:3 6288:1 6297:1 6301:1 6303:1 6308:1 6325:2 6345:1 6348:1 6356:1 6364:1 6380:2 6384:2 6385:1 6390:1 6400:1 6404:3 6410:1 6426:7 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:2 6488:1 6501:4 6503:1 6505:1 6506:1 6507:2 6510:1 6511:2 6515:4 6517:1 6518:3 6519:3 6520:5 6522:1 6523:1 6525:4 6526:13 6527:5 6530:2 6539:1 6568:1 6571:1 6591:3 6646:4 6648:1 6649:1 6652:1 6681:2 6683:1 6686:1 6699:2 6743:1 6749:1 6750:1 6752:1 6763:1 6769:1 6777:1 6797:3 6798:1 6803:1 6813:1 6814:1 6816:1 6822:4 6832:1 6833:1 6836:1 6844:1 6851:2 6855:2 6897:1 6898:2 6903:2 6909:1 6911:2 6916:1 6919:2 6920:1 6924:1 6929:1 6940:9 6949:1 6960:2 6968:4 6973:1 6985:1 6987:1 6997:1 7002:1 7014:1 7019:1 7029:1 7045:4 7047:1 7049:2 7058:3 7086:2 7087:2 7091:3 7098:1 7100:1 7113:3 7114:2 7128:1 7131:1 7142:2 7147:2 7148:1 7150:2 7154:1 7160:1 7169:1 7177:2 7202:1 7212:1 7220:1 7245:1 7253:15 7255:1 7273:1 7281:3 7300:1 7302:1 7306:2 7310:2 7312:1 7321:1 7332:1 7336:1 7337:1 7369:2 7379:1 7388:1 7411:3 7416:1 7420:1 7435:2 7452:1 7479:2 7486:1 7491:3 7495:1 7500:1 7505:5 7506:1 7509:1 7516:1 7521:1 7527:1 7535:1 7539:1 7549:6 7554:4 7555:1 7559:1 7579:2 7583:1 7596:2 7597:1 7603:2 7622:1 7627:2 7644:1 7663:1 7672:3 7690:2 7706:1 7719:1 7723:1 7725:1 7726:2 7756:3 7757:14 7758:6 7763:1 7771:2 7779:1 7784:3 7785:4 7786:2 7812:5 7813:1 7831:59 7836:2 7854:8 7855:16 7857:1 7860:4 7871:1 7878:1 7883:2 7892:1 7899:1 7908:1 7911:1 7923:2 7940:4 7941:1 7944:2 7964:1 7966:1 7967:2 7982:2 8014:1 8017:1 8035:2 8059:1 8062:3 8072:1 8087:1 8090:1 8093:3 8108:1 8112:8 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8209:1 8223:1 8226:1 8233:1 8250:1 8255:1 8258:1 8265:3 8266:3 8267:1 8269:1 8285:2 8287:2 8301:1 8303:1 8306:1 8317:2 8319:1 8324:2 8330:1 8333:2 8338:2 8339:1 8343:1 8347:1 8348:3 8357:1 8358:13 8389:3 8394:1 8400:2 8417:1 8452:1 8461:1 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8559:2 8564:1 8566:1 8569:1 8589:1 8591:1 8599:4 8604:2 8614:3 8615:1 8620:3 8624:3 8628:1 8629:4 8638:1 8646:1 8656:1 8664:5 8667:2 8669:2 8671:2 8674:1 8701:1 8711:1 8716:1 8721:1 8728:1 8734:1 8736:1 8739:3 8740:8 8743:4 8744:2 8746:1 8748:3 8749:8 8752:3 8753:4 8755:1 8757:2 8767:3 8768:2 8784:4 8790:2 8792:7 8801:1 8812:1 8816:3 8820:1 8822:2 8826:2 8829:2 8834:2 8837:5 8838:1 8853:2 8860:1 8891:1 8892:2 8898:1 8906:1 8907:1 8909:1 8917:1 8930:1 8933:1 8939:1 8958:1 8968:1 8973:2 8974:1 8988:1 9008:1 9017:3 9024:1 9033:2 9041:3 9059:1 9063:2 9066:1 9073:4 9074:2 9078:3 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9168:1 9171:1 9177:1 9188:2 9199:6 9202:2 9213:1 9218:1 9220:2 9222:1 9241:3 9252:1 9261:1 9263:1 9275:1 9276:2 9278:1 9292:3 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:4 9373:1 9386:1 9387:1 9394:3 9401:2 9403:1 9411:1 9420:2 9421:1 9425:1 9436:1 9459:1 9463:2 9466:1 9467:8 9469:1 9470:1 9474:3 9477:1 9482:1 9486:38 9489:3 9490:2 9508:2 9510:1 9513:1 9520:1 9522:1 9523:1 9526:1 9535:1 9548:4 9567:2 9572:1 9583:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:8 9634:2 9650:1 9659:1 9660:1 9676:1 9684:4 9689:1 9702:1 9724:1 9728:1 9749:1 9751:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9814:1 9824:1 9828:3 9831:1 9832:1 9843:1 9844:1 9845:6 9851:1 9861:1 9867:1 9869:5 9877:2 9886:2 9895:2 9919:2 9949:9 9955:1 9962:2 9963:1 9965:1 9966:6 9972:2 9974:1 9986:1 9991:1 9993:1 9995:2 10004:1 10005:1 10017:2 10035:3 10053:1 10057:1 10065:1 10081:1 10084:1 10089:2 10093:1 10108:7 10113:1 10120:1 10126:1 10130:1 10135:4 10142:2 10143:2 10145:1 10147:2 10149:1 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10181:1 10185:1 10186:1 10196:3 10198:1 10202:2 10203:1 10206:1 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10240:4 10260:1 10268:1 10279:1 10290:2 10308:1 10309:1 10329:2 10336:1 10345:1 10368:1 10374:1 10391:1 10397:1 10399:2 10400:1 10401:1 10402:1 10418:2 10443:1 10466:1 10479:1 10481:1 10487:1 10489:1 10514:1 10515:1 10520:1 10525:2 10544:2 10548:1 10550:5 10570:1 10576:2 10584:1 10588:1 10590:1 10608:2 10609:1 10625:5 10630:2 10638:2 10653:1 10655:1 10689:1 10690:1 10694:1 10699:1 10712:2 10720:1 10722:1 10724:1 10751:1 10764:1 10767:1 10769:2 10776:1 10788:1 10790:3 10794:2 10796:1 10800:8 10809:1 10810:1 10811:1 10813:1 10820:1 10823:1 10824:3 10837:1 10840:1 10841:3 10844:4 10846:1 10854:1 10865:3 10866:1 10867:1 10876:4 10878:4 10879:1 10886:2 10888:1 10890:2 10892:1 10895:1 10916:1 10921:1 10932:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:4 10990:15 11055:1 11056:1 11065:1 11067:2 11079:1 11112:4 11115:1 11117:1 11137:1 11159:1 11162:1 11175:2 11180:1 11193:1 11211:1 11219:1 11224:1 11236:1 11240:1 11254:4 11257:4 11260:2 11262:2 11266:1 11269:2 11283:2 11291:1 11297:1 11298:2 11299:1 11302:1 11312:1 11313:1 11323:1 11347:8 11351:1 11364:1 11372:6 11377:1 11378:1 11381:2 11385:1 11411:1 11433:1 11434:2 11435:2 11437:1 11443:1 11452:1 11456:1 11457:1 11468:1 11477:1 11482:1 11490:1 11501:1 11507:2 11516:1 11520:1 11534:1 11536:2 11544:1 11551:1 11554:1 11557:1 11566:1 11579:1 11583:5 11590:1 11602:1 11613:2 11616:1 11627:1 11637:1 11643:2 11650:1 11653:3 11659:1 11660:1 11662:1 11674:2 11675:1 11677:2 11682:2 11686:4 11706:10 11715:1 11749:2 11752:13 11753:1 11755:1 11772:1 11775:1 11789:2 11790:1 11797:2 11813:1 11819:1 11820:1 11830:1 11831:2 11848:2 11849:1 11850:1 11852:1 11853:1 11860:1 11861:2 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:3 11930:4 11933:8 11958:1 11960:7 11962:7 11963:1 11989:1 11994:1 12006:1 12009:2 12011:2 12012:3 12016:1 12018:1 12020:3 12022:2 12025:1 12026:2 12029:3 12030:1 12032:1 12038:1 12042:2 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:7 12077:1 12085:1 12097:8 12108:2 12111:1 12116:1 12127:1 12132:2 12134:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:2 12263:1 12265:2 12291:1 12304:4 12306:1 12313:4 12315:1 12321:1 12340:1 12346:1 12359:3 12362:4 12382:1 12411:4 12414:1 12426:2 12433:1 12439:1 12442:1 12445:1 12505:2 12516:1 12526:1 12531:1 12540:1 12542:1 12543:3 12544:4 12545:2 12560:2 12571:1 12580:2 12592:1 12593:2 12602:4 12603:5 12608:3 12611:1 12615:1 12619:2 12668:1 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:10 12747:1 12753:2 12775:1 12782:3 12785:1 12798:1 12799:1 12806:1 12807:1 12810:2 12824:3 12828:1 12843:2 12847:2 12872:1 12880:1 12890:1 12896:1 12899:4 12904:3 12911:1 12934:1 12935:1 12946:1 12950:1 12953:1 12954:7 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13079:1 13091:8 13100:1 13108:1 13113:1 13114:1 13116:1 13126:1 13131:18 13136:1 13142:1 13151:3 13153:7 13155:1 13161:2 13180:1 13182:1 13189:1 13192:1 13195:4 13199:3 13222:2 13246:1 13250:1 13255:2 13256:6 13259:2 13270:2 13274:1 13281:1 13283:1 13285:1 13288:1 13291:3 13292:1 13315:2 13330:5 13333:1 13334:1 13339:1 13341:1 13362:1 13363:1 13364:1 13393:1 13406:1 13417:1 13450:1 13452:1 13454:7 13458:1 13465:1 13474:1 13496:1 13503:1 13504:1 13523:1 13550:8 13556:1 13568:1 13573:4 13576:1 13581:1 13584:1 13588:8 13595:4 13600:1 13609:2 13611:6 13632:1 13633:1 13647:2 13649:1 13652:1 13663:2 13665:1 13666:1 13684:2 13690:5 13715:1 13726:2 13732:2 13734:1 13744:1 13747:8 13754:1 13756:5 13757:2 13764:1 13772:1 13773:1 13774:2 13781:2 13786:2 13800:3 13802:1 13807:1 13808:1 13811:1 13829:2 13830:4 13833:1 13840:1 13847:3 13854:1 13862:2 13865:1 13880:2 13887:7 13909:1 13913:1 13915:1 13933:4 13937:1 13938:5 13961:1 13973:2 13987:4 13993:1 14004:1 14008:1 14018:1 14019:1 14036:1 14051:1 14075:1 14076:2 14081:2 14092:2 14094:1 14116:6 14118:1 14120:2 14123:5 14124:2 14127:2 14135:1 14138:1 14146:1 14149:1 14170:5 14186:1 14191:3 14198:2 14201:2 14204:1 14205:1 14233:1 14243:8 14254:1 14277:3 14290:3 14292:1 14299:1 14304:2 14316:1 14339:7 14343:1 14345:3 14346:1 14352:2 14359:2 14398:1 14399:1 14401:1 14414:1 14426:4 14445:10 14455:1 14486:1 14489:2 14508:1 14510:2 14525:1 14530:1 14531:1 14535:1 14542:1 14560:2 14577:7 14586:2 14591:1 14602:3 14610:1 14611:1 14613:1 14617:1 14624:1 14643:1 14649:1 14651:1 14658:1 14667:4 14668:1 14669:1 14681:1 14702:1 14705:1 14720:1 14730:2 14732:1 14741:1 14751:3 14757:2 14768:2 14779:1 14780:1 14783:3 14794:4 14795:1 14796:4 14797:9 14800:1 14803:8 14808:1 14812:5 14814:2 14815:2 14825:1 14833:1 14835:1 14836:1 14861:1 14871:1 14908:2 14913:1 14914:1 14927:5 14932:1 14961:3 14971:2 14974:2 14978:1 14979:4 14984:4 14987:1 14990:1 14996:2 15003:1 15012:1 15013:3 15023:1 15032:1 15037:3 15038:1 15060:1 15084:4 15099:3 15106:2 15109:3 15112:1 15113:1 15118:1 15126:2 15129:2 15134:5 15137:1 15152:3 15157:2 15166:2 15181:1 15183:1 15210:1 15213:1 15253:1 15266:1 15270:1 15278:2 15303:2 15328:4 15329:1 15332:2 15334:1 15347:1 15349:1 15395:1 15396:1 15408:9 15410:1 15424:2 15425:1 15427:1 15428:3 15435:1 15444:1 15449:10 15450:3 15470:2 15483:2 15494:2 15497:1 15498:1 15506:1 15510:1 15511:1 15532:8 15535:1 15538:1 15543:1 15549:1 15569:1 15586:1 15599:1 15624:1 15638:6 15641:1 15649:1 15651:1 15655:1 15667:1 15668:1 15670:2 15681:2 15683:1 15692:4 15693:1 15698:2 15700:1 15711:1 15715:1 15718:1 15727:1 15734:1 15735:1 15739:1 15746:1 15748:1 15754:1 15756:1 15760:1 15761:3 15763:1 15774:2 15789:1 15796:1 15820:2 15828:1 15849:1 15863:12 15870:2 15882:1 15886:2 15918:1 15924:3 15938:1 15941:1 15950:5 15951:1 15961:5 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16057:1 16062:1 16081:1 16114:5 16118:2 16128:11 16133:4 16140:1 16141:3 16151:1 16160:2 16165:5 16171:2 16172:1 16173:8 16174:3 16176:1 16184:1 16189:1 16228:1 16233:1 16243:2 16263:1 16266:1 16274:1 16275:2 16282:4 16301:1 16303:1 16306:10 16312:1 16322:1 16325:1 16335:2 16339:1 16345:1 16348:1 16359:3 16387:2 16403:6 16404:3 16406:1 16410:1 16411:1 16452:1 16458:1 16459:4 16468:1 16472:1 16478:1 16484:6 16488:3 16499:2 16536:2 16552:1 16553:4 16586:2 16591:1 16599:1 16603:1 16607:1 16612:18 16613:1 16615:1 16618:1 16624:1 16629:4 16633:1 16635:2 16640:1 16641:2 16649:1 16652:1 16663:1 16670:2 16690:7 16693:1 16698:1 16707:2 16714:1 16716:1 16717:1 16718:1 16719:1 16721:1 16726:1 16733:1 16734:1 16740:2 16741:1 16745:3 16756:2 16760:1 16763:1 16789:1 16791:4 16812:1 16826:4 16828:1 16829:1 16830:2 16850:1 16876:1 16881:1 16882:1 16885:1 16896:1 16922:1 16944:1 16960:1 16963:1 16966:5 16990:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17099:1 17101:1 17111:3 17131:1 17133:1 17156:1 17158:1 17167:1 17177:2 17178:1 17188:1 17212:1 17216:1 17234:1 17237:2 17241:1 17245:2 17255:3 17266:1 17272:1 17278:1 17279:1 17281:1 17287:3 17288:3 17291:1 17299:1 17310:1 17322:1 17335:1 17337:1 17347:1 17360:1 17362:3 17372:1 17374:1 17396:1 17399:1 17407:5 17411:2 17413:6 17419:1 17436:1 17440:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:2 17499:4 17506:1 17510:1 17516:2 17535:5 17545:1 17551:4 17553:1 17564:1 17565:1 17569:2 17584:2 17586:1 17613:1 17617:1 17625:2 17630:1 17632:2 17639:6 17646:2 17666:1 17668:6 17671:1 17684:1 17685:1 17690:1 17700:1 17711:3 17712:2 17735:5 17737:3 17750:1 17754:1 17761:1 17762:2 17763:3 17777:3 17778:7 17779:1 17787:4 17792:1 17820:1 17823:1 17825:1 17832:1 17844:1 17850:2 17857:2 17862:1 17898:1 17921:1 17941:1 17942:2 17946:1 17962:1 17968:4 17975:2 17980:2 18000:1 18004:1 18018:1 18019:1 18024:1 18025:2 18037:1 18039:2 18041:3 18043:3 18050:5 18051:1 18053:1 18060:5 18070:3 18071:1 18072:2 18076:1 18106:1 18110:2 18126:5 18127:4 18141:1 18146:1 18151:2 18154:3 18172:1 18185:2 18189:1 18196:7 18200:1 18208:1 18210:1 18240:1 18245:1 18252:2 18255:2 18256:1 18259:1 18263:2 18264:1 18276:1 18281:2 18283:5 18286:1 18288:1 18291:1 18294:1 18302:1 18304:4 18323:1 18324:1 18327:1 18335:1 18344:1 18365:1 18366:3 18395:1 18403:2 18418:1 18422:2 18424:8 18426:1 18430:4 18433:1 18436:36 18441:1 18444:1 18447:1 18451:2 18455:1 18459:1 18466:1 18476:4 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18528:1 18532:1 18537:3 18546:1 18548:1 18549:5 18550:1 18553:1 18569:1 18575:1 18586:1 18591:5 18602:1 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:4 18698:1 18708:1 18712:1 18720:2 18723:2 18736:5 18738:1 18740:2 18750:1 18761:2 18774:1 18780:1 18781:1 18805:1 18812:1 18828:1 18843:1 18845:1 18867:1 18881:1 18888:2 18891:3 18905:1 18915:2 18918:1 18928:1 18935:1 18962:1 18968:4 18969:1 18992:1 19001:3 19038:1 19069:5 19081:1 19095:1 19106:1 19113:2 19125:1 19148:2 19152:3 19153:3 19157:1 19172:2 19188:1 19191:8 19199:1 19218:1 19225:1 19229:1 19234:1 19237:1 19243:1 19245:3 19251:2 19254:5 19259:1 19275:1 19279:1 19281:1 19287:5 19291:2 19294:2 19300:1 19304:2560 19308:1 19318:1 19324:1 19354:1 19359:1 19367:4 19368:1 19377:3 19383:1 19401:2 19402:1 19413:1 19418:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:2 19506:1 19507:1 19521:1 19529:3 19535:7 19542:1 19548:5 19551:4 19552:5 19554:1 19568:1 19580:1 19583:1 19616:2 19624:1 19629:7 19633:2 19635:2 19641:1 19642:1 19665:1 19666:38 19675:1 19686:1 19692:7 19716:1 19729:1 19747:1 19756:1 19761:1 19762:1 19772:1 19774:2 19794:1 19796:1 19804:1 19808:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:4 19857:1 19860:2 19868:3 19882:2 19898:3 19908:1 19920:1 19927:1 19928:1 19948:1 19953:1 19957:1 19964:1 19978:2 19981:2 19982:4 20010:2 20014:1 20018:2 20021:4 20027:1 20033:1 20036:4 20038:3 20043:4 20049:1 20053:1 20058:1 20064:1 20074:6 20078:1 20082:1 20091:1 20092:2 20106:2 20108:1 20123:1 20124:1 20127:5 20131:11 20147:1 20148:1 20172:7 20173:1 20183:2 20184:1 20188:1 20198:1 20242:2 20244:1 20247:3 20296:1 20300:1 20313:2 20317:1 20329:5 20331:1 20336:3 20339:2 20351:2 20353:1 20372:1 20374:5 20375:1 20383:1 20387:3 20393:1 20399:1 20429:1 20434:1 20463:2 20468:2 20501:3 20516:1 20528:1 20559:3 20570:1 20571:1 20577:1 20581:2 20584:4 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:5 20616:2 20620:7 20622:1 20624:2 20629:5 20641:1 20642:1 20657:1 20664:1 20666:1 20681:1 20687:1 20692:3 20705:1 20708:1 20733:3 20735:1 20754:2 20756:5 20760:2 20778:1 20783:2 20790:1 20791:5 20805:1 20807:1 20817:4 20818:1 20828:1 20832:1 20844:2 20848:2 20850:2 20852:1 20868:1 20875:1 20884:1 20886:1 20901:1 20912:5 20918:1 20920:1 20923:1 20928:3 20932:1 20941:2 20947:1 20962:2 20964:2 20980:2 21002:6 21012:1 21018:1 21019:1 21032:1 21057:10 21058:3 21062:5 21068:2 21074:1 21080:1 21081:1 21120:1 21126:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21168:1 21178:1 21204:1 21217:1 21220:1 21221:1 21246:1 21251:1 21255:3 21258:1 21259:4 21265:1 21271:1 21273:1 21290:1 21296:1 21298:1 21299:9 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:3 21390:1 21398:1 21405:1 21407:2 21429:4 21437:1 21440:1 21464:1 21468:1 21469:1 21470:1 21472:1 21475:1 21498:2 21503:2 21505:1 21511:1 21514:2 21515:1 21526:1 21529:5 21539:1 21546:4 21547:2 21549:1 21550:1 21552:2 21553:1 21561:1 21564:1 21574:6 21579:1 21584:1 21587:3 21588:3 21595:1 21599:1 21605:1 21613:7 21647:1 21650:2 21656:2 21658:1 21659:3 21660:1 21673:1 21675:1 21702:3 21712:1 21731:1 21739:1 21751:1 21761:1 21788:1 21796:2 21802:2 21804:1 21810:1 21832:1 21836:2 21840:2 21863:8 21872:1 21873:1 21875:1 21880:1 21883:1 21894:2 21901:1 21907:2 21952:2 21965:1 21971:1 21975:1 21976:1 21979:2 21985:1 21989:1 22002:1 22005:1 22022:2 22026:1 22045:1 22048:1 22056:1 22058:2 22061:1 22076:1 22078:1 22081:1 22082:1 22091:1 22122:1 22131:1 22142:1 22149:1 22160:2 22169:2 22170:1 22176:1 22177:1 22194:1 22210:1 22219:1 22225:1 22240:1 22241:3 22243:1 22250:1 22254:4 22256:1 22257:1 22258:2 22265:1 22266:1 22268:1 22272:3 22273:3 22275:2 22282:2 22283:1 22287:1 22289:1 22291:1 22292:1 22293:1 22298:3 22312:1 22321:1 22325:2 22332:1 22338:1 22346:4 22359:1 22361:2 22363:1 22365:1 22370:3 22371:2 22374:1 22376:1 22378:1 22381:1 22383:3 22391:2 22392:1 22401:1 22408:1 22413:1 22415:10 22419:1 22432:1 22433:2 22436:5 22437:1 22447:2 22455:1 22464:1 22477:1 22491:2 22504:1 22507:2 22511:1 22513:4 22514:1 22519:1 22525:9 22532:2 22539:1 22543:3 22559:1 22561:2 22562:1 22575:1 22593:1 22601:2 22616:1 22624:1 22625:1 22628:1 22632:1 22635:1 22659:2 22661:1 22665:7 22672:1 22676:1 22678:1 22679:2 22681:2 22682:1 22688:1 22695:1 22696:1 22697:6 22698:3 22699:1 22716:2 22720:1 22729:1 22735:1 22738:1 22752:2 22766:2 22768:1 22790:1 22798:3 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:4 22892:4 22893:3 22896:1 22897:1 22902:1 22909:1 22913:1 22924:1 22931:1 22933:1 22940:2 22943:1 22947:3 22959:2 22961:2 22975:3 22994:1 23013:1 23017:1 23023:1 23029:1 23033:2 23034:1 23042:1 23052:5 23053:6 23056:3 23057:1 23059:2 23060:1 23072:2 23073:1 23089:1 23096:2 23109:1 23111:4 23118:1 23124:1 23125:2 23131:3 23134:3 23136:1 23142:3 23144:2 23145:4 23154:1 23162:2 23165:1 23170:1 23173:1 23174:1 23177:1 23178:3 23185:1 23205:2 23226:1 23229:2 23231:1 23233:1 23241:1 23243:1 23249:1 23251:3 23255:1 23260:1 23263:3 23270:1 23290:1 23291:9 23292:1 23302:1 23306:1 23309:2 23315:36 23320:1 23321:4 23323:4 23326:1 23327:3 23329:5 23333:1 23334:1 23336:2 23351:1 23352:4 23354:1 23361:3 23364:1 23368:3 23384:2 23385:3 23389:1 23400:2 23403:1 23419:1 23425:3 23437:1 23440:1 23454:1 23487:5 23497:1 23501:10 23509:2 23530:3 23535:2 23552:1 23560:1 23569:1 23594:1 23596:2 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:4 23655:2 23662:1 23663:1 23664:1 23685:1 23701:1 23702:2 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23827:1 23828:1 23830:1 23837:2 23844:1 23858:1 23859:1 23860:1 23869:2 23872:1 23887:1 23888:2 23894:1 23903:2 23906:1 23908:2 23914:2 23926:3 23927:1 23928:1 23944:3 23952:4 23955:2 23977:3 23978:1 23982:1 23984:1 23992:3 23997:1 24017:1 24020:1 24035:1 24038:1 24066:1 24079:1 24086:1 24107:1 24125:1 24129:1 24141:1 24144:2 24153:1 24161:1 24166:1 24169:3 24172:2 24173:1 24180:1 24181:1 24187:2 24196:3 24209:2 24214:2 24215:1 24218:1 24220:2 24228:1 24232:1 24241:1 24258:2 24270:3 24278:1 24280:5 24282:1 24288:1 24291:2 24293:2 24309:2 24325:1 24333:1 24335:1 24336:1 24343:12 24351:1 24376:2 24393:1 24406:1 24423:2 24424:1 24425:1 24443:2 24457:1 24476:2 24484:2 24488:1 24497:1 24513:1 24515:1 24522:1 24526:5 24533:2 24543:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:3 24604:1 24620:9 24622:2 24623:1 24631:1 24638:7 24649:1 24652:1 24661:2 24670:1 24713:1 24725:1 24728:1 24731:1 24736:1 24746:3 24748:2 24761:1 24762:1 24764:2 24774:1 24788:1 24791:2 24801:1 24822:1 24825:1 24839:1 24862:1 24863:1 24872:1 24900:1 24902:4 24912:6 24914:1 24915:1 24923:4 24927:1 24944:2 24947:1 24955:2 24956:1 24957:1 24964:1 24965:1 24973:2 24974:1 24995:3 24998:1 25011:1 25025:1 25028:3 25030:2 25032:1 25036:1 25060:2 25068:1 25075:1 25085:1 25087:3 25093:2 25099:3 25100:2 25106:1 25115:1 25117:1 25127:1 25136:1 25147:1 25148:1 25150:1 25156:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:2 25220:1 25221:2 25222:1 25224:8 25226:3 25227:1 25228:4 25229:2 25234:1 25235:2 25236:2 25238:5 25248:2 25249:4 25255:2 25262:2 25268:6 25273:2 25281:1 25297:1 25300:3 25301:1 25311:1 25315:3 25327:1 25332:1 25337:6 25343:3 25363:2 25369:1 25370:1 25380:1 25381:3 25393:1 25410:1 25414:1 25415:2 25439:1 25460:1 25463:1 25478:1 25504:3 25530:4 25540:1 25545:6 25565:3 25566:1 25570:1 25590:1 25596:1 25601:1 25602:2 25604:1 25613:1 25616:1 25647:2 25648:1 25655:1 25666:1 25684:1 25692:2 25693:2 25718:2 25743:1 25746:1 25752:3 25762:1 25767:1 25769:1 25778:1 25781:2 25785:3 25794:2 25797:1 25828:6 25861:1 25879:2 25885:1 25887:1 25900:1 25903:4 25909:1 25910:1 25915:2 25922:1 25927:1 25929:1 25931:4 25988:1 26007:1 26011:2 26023:4 26025:8 26060:11 26069:1 26083:9 26094:1 26104:1 26112:1 26122:1 26127:1 26136:1 26138:1 26144:1 26146:2 26150:1 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26216:1 26236:1 26240:2 26242:1 26248:2 26252:1 26257:1 26259:1 26261:2 26263:6 26270:1 26280:2 26285:2 26288:12 26293:2 26294:4 26304:1 26307:1 26311:1 26317:2 26318:1 26320:1 26328:1 26329:1 26334:2 26336:2 26348:1 26358:1 26363:2 26373:1 26379:4 26387:1 26400:1 26410:4 26416:2 26420:2 26422:2 26482:1 26494:2 26495:1 26511:1 26519:1 26523:1 26534:1 26538:1 26560:3 26563:1 26579:1 26589:1 26590:4 26591:1 26593:2 26598:1 26614:6 26624:1 26643:1 26646:1 26648:1 26650:1 26654:2 26656:1 26662:1 26668:1 26689:1 26698:1 26706:1 26716:1 26741:1 26754:2 26760:1 26768:1 26776:3 26805:1 26826:1 26832:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26892:1 26893:1 26897:1 26898:1 26901:1 26902:1 26907:2 26918:2 26925:1 26939:1 26954:1 26957:2 26974:1 26979:1 26983:5 26989:1 26997:1 26998:2 27006:1 27020:5 27042:1 27046:1 27047:5 27070:2 27074:1 27089:1 27091:1 27094:2 27095:1 27101:1 27107:2 27118:1 27119:1 27127:2 27132:1 27138:2 27157:2 27174:1 27178:7 27179:1 27209:1 27212:8 27216:1 27220:1 27234:1 27236:1 27239:1 27260:2 27278:1 27279:1 27289:1 27299:4 27311:1 27320:2 27321:4 27322:1 27327:1 27329:1 27330:1 27334:3 27335:3 27341:1 27372:1 27375:4 27378:1 27381:1 27387:1 27388:1 27389:2 27392:1 27406:3 27415:2 27419:1 27421:2 27438:2 27439:2 27453:1 27454:2 27459:1 27472:1 27482:1 27484:2 27510:2 27530:2 27534:1 27535:1 27539:1 27555:1 27572:1 27574:3 27583:5 27608:2 27612:1 27613:1 27651:1 27665:1 27670:1 27686:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:2 27763:1 27775:1 27780:1 27781:1 27787:1 27791:1 27792:3 27800:1 27804:1 27807:2 27822:1 27826:2 27845:1 27857:1 27859:1 27868:1 27869:1 27873:1 27875:1 27885:1 27888:1 27897:2 27912:2 27916:1 27917:2 27920:1 27924:5 27940:4 27957:5 27965:5 27966:1 27974:1 27977:1 27990:1 27991:1 27997:1 28011:4 28025:2 28033:1 28043:1 28044:10 28071:1 28083:1 28087:2 28097:1 28098:2 28101:1 28102:3 28103:1 28109:12 28121:1 28146:1 28151:4 28177:1 28188:2 28189:1 28193:1 28213:2 28218:8 28225:2 28226:3 28227:1 28242:2 28246:1 28251:4 28261:1 28266:1 28277:2 28297:1 28300:1 28318:1 28319:3 28322:1 28326:1 28335:2 28337:1 28347:1 28361:3 28372:1 28377:1 28381:1 28384:1 28398:1 28407:2 28409:1 28414:2 28416:1 28418:1 28420:2 28441:1 28448:1 28458:2 28459:1 28499:1 28529:1 28533:1 28554:5 28555:1 28557:1 28564:1 28588:1 28589:1 28598:1 28600:2 28616:5 28619:1 28627:1 28637:1 28649:1 28672:1 28681:1 28686:1 28688:1 28714:1 28736:1 28743:1 28746:1 28755:2 28779:1 28801:1 28825:3 28845:1 28858:1 28860:7 28872:1 28876:1 28893:1 28896:4 28905:1 28907:1 28919:1 28928:2 28938:1 28946:2 28958:1 28959:1 28961:1 28978:1 28980:2 28983:1 28987:2 28992:34 28993:4 28996:5 28998:1 28999:3 29011:2 29017:1 29034:11 29048:1 29092:3 29100:2 29107:1 29115:1 29120:2 29131:1 29132:3 29142:7 29146:2 29176:13 29177:1 29180:2 29184:3 29186:1 29190:2 29198:1 29202:4 29210:1 29213:1 29216:1 29221:2 29224:1 29228:2 29236:1 29237:2 29238:1 29245:2 29251:2 29262:1 29267:2 29268:2 29274:1 29276:1 29278:3 29281:1 29286:1 29293:1 29295:1 29300:1 29302:2 29307:1 29324:1 29343:1 29347:1 29362:2 29364:1 29365:1 29379:1 29383:1 29387:1 29388:1 29391:2 29405:5 29409:1 29420:1 29447:1 29448:1 29449:2 29461:1 29471:1 29473:2 29474:2 29477:1 29498:1 29504:1 29514:1 29515:1 29518:1 29522:1 29524:1 29525:1 29529:3 29532:6 29538:2 29539:1 29542:2 29548:1 29550:1 29551:1 29559:2 29566:2 29567:1 29569:1 29570:1 29579:1 29587:2 29608:1 29632:1 29635:1 29646:1 29648:1 29652:1 29659:1 29678:1 29682:2 29684:1 29688:2 29706:1 29712:1 29716:1 29717:1 29718:2 29722:2 29723:2 29727:1 29736:2 29740:3 29743:1 29747:1 29749:1 29758:1 29766:1 29767:8 29773:2 29774:2 29777:1 29780:8 29782:1 29788:1 29790:1 29801:1 29814:1 29828:1 29832:1 29839:2 29840:1 29882:3 29887:1 29890:1 29900:1 29914:4 29918:1 29920:3 29925:1 29927:1 29931:6 29936:1 29940:1 29949:1 29969:1 29970:1 30000:1 30001:2 30002:1 30011:2 30012:1 30015:1 30035:2 30053:1 30058:4 30081:2 30088:2 30104:1 30108:2 30113:1 30122:1 30136:2 30143:1 30150:2 30162:1 30187:1 30194:7 30206:1 30208:1 30210:1 30227:1 30231:7 30243:6 30244:1 30250:1 30273:1 30311:1 30320:8 30322:3 30324:4 30326:1 30328:1 30331:3 30332:3 30344:1 30353:1 30362:1 30363:3 30367:3 30371:3 30408:1 30421:1 9 11:1 14:2 21:1 30:1 34:1 43:1 50:6 63:1 74:1 79:1 83:1 85:1 93:1 99:1 103:1 107:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 163:2 176:1 180:2 187:1 189:3 201:1 206:5 207:1 236:8 238:1 257:1 277:1 283:1 303:1 309:2 315:2 318:1 325:1 327:39 338:2 355:1 356:4 357:5 360:2 362:1 366:1 378:4 380:1 383:1 385:1 397:2 419:1 441:2 460:4 469:1 474:1 475:1 478:1 480:1 500:1 504:1 550:1 558:1 589:2 591:5 592:1 600:2 603:4 625:4 635:2 637:2 638:1 639:1 657:2 671:1 682:4 685:1 691:1 693:2 703:1 724:1 732:2 736:1 747:1 750:1 758:1 774:1 783:1 788:2 791:1 802:1 804:1 819:3 824:1 833:2 843:1 854:1 856:2 857:1 867:1 880:1 883:9 885:3 897:1 899:3 900:1 911:1 914:16 916:1 917:1 929:1 933:1 938:6 939:1 940:1 941:8 944:1 946:4 952:1 953:1 959:1 961:1 964:4 976:1 978:1 985:2 986:3 997:1 1000:1 1005:1 1022:1 1023:1 1032:3 1045:1 1052:6 1054:2 1060:2 1076:1 1080:2 1084:1 1085:1 1102:1 1103:1 1115:2 1125:1 1126:1 1133:1 1141:1 1142:1 1143:2 1148:2 1156:3 1163:1 1164:2 1172:1 1176:1 1187:1 1188:1 1194:1 1201:3 1206:1 1213:1 1230:1 1252:1 1254:1 1258:2 1287:1 1289:1 1291:2 1292:2 1300:2 1303:1 1307:1 1311:1 1313:1 1333:1 1336:1 1342:1 1353:2 1358:1 1379:1 1380:1 1393:1 1404:1 1411:3 1434:1 1441:2 1443:1 1461:1 1464:2 1468:6 1471:10 1474:1 1487:2 1489:1 1490:3 1491:2 1493:2 1494:2 1510:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:8 1584:1 1614:2 1621:1 1636:1 1639:1 1641:3 1642:3 1650:1 1652:1 1655:1 1658:2 1677:5 1680:1 1684:2 1700:1 1701:3 1706:6 1712:2 1732:1 1733:1 1751:2 1752:2 1768:1 1775:1 1785:1 1803:1 1814:3 1818:1 1827:1 1830:1 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1883:1 1884:1 1886:2 1887:1 1908:1 1911:1 1934:1 1935:1 1952:1 1954:1 1956:2 1958:19 1965:1 1970:2 1981:2 1986:1 1991:1 1995:1 1996:1 1997:1 2008:1 2011:1 2018:8 2019:2 2051:1 2053:1 2057:2 2063:4 2069:2 2075:1 2088:3 2095:1 2100:2 2102:1 2107:1 2112:1 2120:1 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2178:1 2186:1 2195:1 2207:1 2208:1 2210:1 2211:2 2213:1 2216:2 2218:5 2219:1 2220:1 2223:2 2226:1 2229:1 2232:1 2234:5 2238:4 2239:2 2240:5 2241:1 2243:1 2245:1 2251:1 2255:4 2258:1 2274:1 2276:1 2278:4 2280:2 2281:2 2284:2 2285:8 2288:5 2291:1 2292:2 2293:4 2296:1 2297:1 2298:1 2301:3 2306:1 2309:1 2311:2 2314:2 2316:6 2318:2 2319:9 2331:1 2332:2 2334:1 2348:1 2369:1 2380:2 2381:2 2386:1 2393:1 2407:1 2411:1 2418:1 2430:3 2437:4 2438:1 2439:1 2445:1 2448:1 2453:1 2457:2 2460:1 2466:2 2482:5 2493:9 2505:1 2509:1 2511:1 2515:1 2532:1 2537:1 2561:5 2570:5 2577:1 2593:1 2595:3 2603:2 2608:4 2615:3 2618:2 2620:1 2623:1 2632:2 2637:1 2661:2 2666:1 2682:1 2685:1 2690:1 2699:2 2701:4 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2730:2 2740:2 2745:1 2748:1 2761:1 2763:3 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:7 2825:4 2831:6 2840:1 2841:1 2848:1 2880:1 2882:1 2883:3 2889:2 2890:2 2904:2 2912:2 2930:1 2933:8 2935:2 2941:28 2945:1 2948:1 2959:4 2975:2 2980:1 2982:1 2987:1 2995:1 3002:16 3021:1 3024:1 3029:1 3032:6 3036:9 3037:1 3038:1 3039:1 3050:1 3061:1 3064:1 3068:1 3082:1 3092:1 3095:1 3097:1 3129:1 3146:4 3162:1 3169:1 3176:1 3177:2 3178:1 3184:1 3190:1 3210:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3287:1 3293:1 3304:2 3312:6 3317:1 3322:2 3325:2 3332:1 3338:1 3339:1 3343:1 3348:1 3357:1 3361:1 3370:1 3374:1 3384:1 3386:5 3416:1 3431:2 3434:14 3481:1 3487:1 3510:2 3537:1 3544:1 3551:1 3557:2 3558:1 3561:1 3563:2 3564:2 3568:2 3571:1 3578:1 3581:2 3587:2 3601:1 3615:2 3619:2 3621:1 3626:1 3628:1 3635:2 3640:1 3645:1 3648:1 3665:4 3670:1 3672:1 3674:1 3678:2 3681:8 3699:5 3705:2 3706:1 3708:5 3709:2 3712:1 3715:1 3719:1 3736:2 3741:6 3751:1 3754:1 3773:1 3784:1 3787:1 3791:3 3792:3 3796:1 3799:1 3800:2 3803:3 3816:1 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:13 3863:1 3873:1 3882:1 3884:1 3888:1 3895:5 3897:1 3903:2 3904:13 3905:3 3906:1 3911:1 3912:2 3923:2 3924:7 3932:1 3938:1 3955:1 3956:3 3958:1 3964:1 3966:1 3967:1 3969:1 3978:1 3981:2 3985:1 3986:1 3992:1 3993:1 3994:1 4000:1 4004:2 4016:1 4019:4 4022:3 4032:2 4037:1 4045:1 4047:1 4053:2 4054:1 4058:3 4063:3 4066:1 4077:5 4084:1 4085:1 4089:2 4090:2 4093:1 4094:1 4098:1 4099:3 4100:2 4108:5 4109:5 4114:1 4128:1 4141:1 4144:1 4153:1 4165:1 4169:2 4177:1 4181:1 4187:6 4195:1 4196:2 4197:1 4204:1 4221:1 4236:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:7 4307:2 4315:1 4316:1 4319:1 4321:1 4325:1 4364:1 4366:1 4374:1 4378:2 4381:2 4388:1 4401:1 4405:2 4412:1 4420:2 4421:1 4450:1 4455:2 4462:1 4466:1 4469:1 4474:5 4494:1 4504:1 4535:1 4546:3 4555:1 4572:1 4576:1 4584:1 4593:1 4598:1 4601:1 4625:1 4631:2 4637:1 4661:1 4665:1 4675:1 4680:1 4688:1 4697:2 4699:2 4719:1 4724:1 4728:3 4735:1 4741:5 4749:1 4751:1 4754:3 4772:2 4774:1 4775:1 4788:2 4789:1 4804:1 4807:8 4830:1 4843:1 4854:1 4870:1 4875:1 4879:1 4889:1 4896:1 4903:8 4907:1 4911:1 4918:2 4921:1 4935:1 4944:1 4951:1 4954:1 4986:3 5009:1 5019:30 5021:3 5024:1 5041:3 5043:1 5052:1 5058:4 5071:1 5078:2 5083:7 5091:1 5093:2 5115:2 5117:2 5131:1 5132:1 5134:1 5135:7 5151:5 5152:8 5153:1 5154:1 5155:1 5157:1 5159:3 5160:1 5162:1 5163:3 5165:1 5166:2 5170:1 5171:1 5173:5 5175:3 5176:1 5178:1 5180:1 5184:1 5185:1 5187:4 5188:4 5192:1 5209:1 5211:1 5212:1 5219:1 5238:1 5242:1 5246:1 5271:3 5277:2 5279:1 5284:1 5294:1 5299:2 5317:1 5321:1 5326:3 5327:1 5328:3 5336:2 5343:1 5344:3 5359:1 5367:1 5374:1 5385:1 5396:2 5404:5 5409:1 5435:1 5441:1 5459:1 5464:1 5466:1 5482:1 5487:1 5506:1 5512:3 5518:8 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5607:2 5612:1 5625:1 5650:1 5663:1 5664:2 5680:2 5691:1 5692:2 5693:2 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:2 5733:1 5736:1 5745:1 5750:1 5758:3 5763:1 5765:1 5767:1 5772:1 5780:1 5786:1 5792:3 5797:1 5808:4 5815:1 5816:1 5849:3 5870:1 5873:3 5882:1 5888:1 5897:3 5898:1 5911:2 5914:4 5917:1 5921:2 5939:1 5945:1 5959:2 5975:1 5977:1 5987:1 5994:1 6001:1 6007:1 6011:1 6021:2 6022:1 6028:1 6059:3 6065:1 6066:1 6097:1 6102:2 6129:1 6152:1 6171:1 6183:4 6184:1 6202:2 6204:1 6205:19 6226:5 6229:1 6231:4 6238:1 6242:1 6246:1 6247:1 6248:5 6249:2 6257:1 6280:3 6288:1 6297:1 6301:1 6303:1 6308:1 6325:2 6345:1 6348:1 6356:1 6364:1 6380:2 6384:2 6385:1 6390:1 6400:1 6404:3 6410:1 6426:7 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:2 6488:1 6501:4 6503:1 6505:1 6506:1 6507:2 6510:1 6511:2 6515:4 6517:1 6518:3 6519:3 6520:5 6522:1 6523:1 6525:4 6526:13 6527:5 6530:3 6539:1 6568:1 6571:1 6591:3 6646:4 6648:1 6649:1 6652:1 6681:2 6683:1 6686:1 6699:2 6743:1 6749:1 6750:1 6752:1 6763:1 6769:1 6777:1 6797:3 6798:1 6803:1 6813:1 6814:1 6816:1 6822:4 6832:1 6833:1 6836:1 6841:1 6844:1 6851:2 6855:2 6897:1 6898:2 6903:2 6909:1 6911:2 6916:1 6919:2 6920:1 6924:1 6929:1 6940:9 6949:1 6960:2 6968:4 6973:1 6985:1 6987:1 6997:1 7002:1 7014:1 7015:1 7019:1 7029:1 7045:4 7047:1 7049:2 7058:3 7086:2 7087:2 7091:3 7098:1 7100:1 7113:3 7114:2 7128:1 7131:1 7142:2 7147:2 7148:1 7150:2 7154:1 7160:1 7169:1 7177:2 7202:1 7212:1 7220:1 7245:1 7253:15 7255:1 7266:1 7273:1 7281:3 7300:1 7302:1 7306:2 7310:2 7312:2 7321:1 7332:1 7336:1 7337:1 7369:2 7379:1 7388:1 7411:3 7416:1 7420:1 7435:2 7452:1 7479:2 7486:1 7491:3 7495:1 7500:1 7505:5 7506:1 7509:1 7516:1 7521:1 7527:1 7535:1 7539:1 7549:6 7554:4 7555:1 7559:1 7579:2 7583:1 7596:2 7597:1 7603:2 7611:1 7622:1 7627:2 7644:1 7663:1 7672:3 7690:2 7706:1 7719:1 7723:1 7725:1 7726:2 7756:3 7757:14 7758:7 7763:1 7771:2 7779:1 7784:3 7785:4 7786:2 7812:5 7813:1 7831:61 7836:2 7854:9 7855:16 7857:1 7860:4 7871:1 7878:1 7883:2 7892:1 7899:1 7908:1 7911:1 7923:2 7940:4 7941:2 7944:2 7964:1 7966:1 7967:2 7982:2 8014:1 8017:1 8035:2 8059:1 8062:3 8072:1 8087:1 8090:1 8093:3 8108:1 8112:8 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8209:1 8223:1 8226:1 8233:1 8250:1 8255:1 8258:1 8265:3 8266:3 8267:2 8269:1 8285:2 8287:2 8301:1 8303:1 8306:1 8317:2 8319:1 8324:2 8330:1 8333:2 8338:2 8339:1 8343:1 8347:1 8348:3 8357:1 8358:13 8389:3 8394:1 8400:2 8417:1 8447:1 8452:1 8461:2 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8559:2 8564:1 8566:1 8569:1 8589:1 8591:1 8599:4 8604:2 8614:4 8615:1 8620:3 8624:3 8628:1 8629:4 8638:1 8646:1 8656:1 8664:5 8667:2 8669:2 8671:2 8674:1 8701:1 8711:1 8716:1 8721:1 8728:1 8734:1 8736:1 8739:3 8740:8 8743:4 8744:2 8746:1 8748:3 8749:8 8752:3 8753:4 8755:1 8757:2 8767:3 8768:2 8784:4 8790:2 8792:7 8801:1 8812:1 8816:3 8820:1 8822:2 8826:2 8829:2 8834:2 8837:5 8838:1 8853:2 8860:1 8891:1 8892:2 8898:1 8906:1 8907:1 8909:1 8917:1 8930:1 8933:1 8939:1 8958:1 8968:2 8973:2 8974:1 8988:1 9008:1 9017:3 9024:1 9033:2 9041:3 9059:1 9063:2 9066:1 9073:4 9074:2 9078:3 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9168:1 9171:1 9177:1 9188:2 9199:6 9202:2 9213:1 9218:1 9220:2 9222:1 9241:3 9252:1 9261:1 9263:1 9275:1 9276:2 9278:1 9292:3 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:4 9373:1 9386:1 9387:1 9394:3 9401:2 9403:1 9411:1 9420:2 9421:1 9425:1 9436:1 9459:1 9463:2 9466:2 9467:8 9469:1 9470:1 9474:3 9477:1 9482:1 9486:39 9489:4 9490:2 9497:1 9508:2 9510:1 9513:1 9520:1 9522:2 9523:1 9526:1 9535:1 9548:4 9567:2 9572:1 9583:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:8 9634:2 9650:1 9659:1 9660:1 9676:1 9684:5 9689:1 9693:1 9702:1 9724:1 9728:1 9749:1 9751:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9814:1 9824:1 9828:3 9831:1 9832:1 9843:1 9844:1 9845:6 9851:1 9861:1 9867:1 9869:5 9877:2 9886:2 9895:2 9919:2 9949:9 9955:1 9962:2 9963:1 9965:1 9966:6 9972:2 9974:1 9986:1 9991:1 9993:1 9995:2 10004:1 10005:1 10017:2 10035:3 10053:1 10057:1 10061:1 10065:1 10081:1 10084:1 10089:2 10093:1 10108:7 10113:1 10120:1 10126:1 10130:1 10135:4 10142:2 10143:2 10145:1 10147:2 10149:1 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10181:1 10185:1 10186:1 10196:3 10198:1 10202:2 10203:1 10206:1 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10240:4 10260:1 10268:1 10279:1 10288:1 10290:2 10302:1 10308:1 10309:1 10329:2 10336:1 10345:1 10368:1 10374:1 10377:1 10391:1 10397:1 10399:2 10400:1 10401:1 10402:1 10418:2 10443:1 10466:1 10479:1 10481:1 10484:1 10487:2 10489:1 10514:1 10515:1 10520:1 10525:2 10544:2 10548:1 10550:5 10570:1 10576:2 10584:1 10588:1 10590:1 10608:2 10609:1 10625:5 10630:2 10638:2 10653:1 10655:1 10689:1 10690:1 10694:1 10699:1 10712:2 10720:1 10722:1 10724:1 10751:1 10764:1 10767:1 10769:2 10776:1 10787:1 10788:1 10790:4 10794:2 10796:1 10800:8 10809:1 10810:1 10811:1 10813:1 10820:1 10823:1 10824:3 10837:2 10840:1 10841:3 10844:4 10846:1 10854:1 10865:3 10866:1 10867:1 10876:4 10878:4 10879:1 10886:2 10888:1 10890:2 10892:1 10895:1 10916:1 10921:1 10932:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:4 10990:15 11055:1 11056:1 11059:1 11065:1 11067:2 11079:1 11112:4 11115:1 11117:1 11137:1 11159:1 11162:1 11175:2 11180:1 11193:1 11211:1 11219:1 11224:1 11236:1 11240:1 11253:2 11254:4 11257:4 11260:2 11262:2 11266:1 11269:3 11283:2 11291:1 11297:1 11298:2 11299:1 11302:1 11312:1 11313:1 11323:1 11347:8 11351:1 11352:1 11364:1 11372:7 11377:1 11378:1 11381:2 11385:1 11411:1 11433:1 11434:2 11435:2 11437:1 11443:1 11444:1 11452:1 11456:1 11457:1 11468:1 11477:1 11482:1 11490:1 11501:1 11507:2 11516:1 11520:1 11534:1 11536:2 11544:1 11551:1 11554:1 11557:1 11566:1 11579:1 11583:5 11590:1 11602:1 11613:2 11616:1 11627:1 11637:1 11643:2 11650:1 11653:3 11659:1 11660:1 11662:1 11674:2 11675:1 11677:2 11682:2 11686:4 11706:10 11715:1 11749:3 11752:14 11753:1 11755:1 11772:1 11775:1 11789:2 11790:1 11797:2 11813:1 11819:2 11820:1 11830:1 11831:2 11848:2 11849:1 11850:1 11852:1 11853:1 11860:1 11861:2 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:3 11930:4 11933:8 11958:1 11960:7 11962:7 11963:1 11989:1 11994:1 12006:1 12009:2 12011:2 12012:3 12016:1 12018:1 12020:3 12022:2 12025:1 12026:2 12029:3 12030:1 12032:1 12038:1 12042:2 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:7 12077:1 12085:1 12097:8 12108:2 12111:1 12116:1 12127:1 12132:2 12134:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:2 12263:1 12265:2 12291:1 12297:1 12304:5 12306:1 12313:4 12315:1 12321:1 12340:1 12346:1 12359:3 12362:4 12382:1 12411:5 12414:1 12426:2 12433:1 12439:1 12442:1 12445:1 12505:2 12516:1 12519:1 12526:1 12531:1 12540:1 12542:1 12543:3 12544:4 12545:2 12560:2 12571:1 12580:2 12592:1 12593:2 12596:1 12602:4 12603:5 12608:3 12611:1 12615:2 12619:2 12654:1 12668:1 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:10 12747:1 12753:2 12775:1 12782:3 12785:1 12798:1 12799:1 12806:1 12807:1 12810:2 12824:3 12828:1 12843:2 12847:2 12872:1 12880:1 12890:1 12896:1 12899:4 12904:3 12911:1 12934:1 12935:1 12946:1 12950:1 12953:1 12954:7 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13079:1 13091:8 13100:1 13108:1 13113:1 13114:1 13116:1 13126:1 13131:19 13136:1 13142:1 13151:3 13153:7 13155:1 13161:2 13180:1 13182:1 13189:1 13192:1 13195:4 13199:3 13222:2 13246:1 13250:1 13255:2 13256:6 13259:2 13270:2 13274:1 13281:1 13283:1 13285:1 13288:1 13291:3 13292:1 13315:2 13330:5 13333:1 13334:1 13339:1 13341:1 13362:1 13363:1 13364:1 13393:1 13406:1 13410:1 13417:1 13450:1 13452:1 13454:7 13458:1 13465:1 13474:1 13496:1 13503:1 13504:1 13523:1 13548:1 13550:8 13556:1 13568:1 13573:4 13576:1 13581:1 13584:1 13588:8 13595:4 13600:1 13609:2 13611:6 13632:1 13633:1 13647:2 13649:1 13652:1 13663:2 13665:1 13666:1 13684:2 13690:5 13715:1 13726:2 13732:2 13734:1 13736:1 13744:1 13747:8 13754:1 13756:6 13757:2 13764:1 13772:1 13773:1 13774:2 13781:2 13786:2 13800:3 13802:1 13807:1 13808:1 13811:1 13829:2 13830:5 13833:1 13840:1 13847:3 13854:1 13862:2 13865:1 13880:2 13887:7 13909:1 13913:1 13915:1 13933:4 13937:1 13938:5 13961:1 13973:2 13987:4 13993:1 14004:1 14008:1 14018:1 14019:1 14036:1 14051:1 14075:1 14076:2 14081:2 14092:2 14094:1 14116:6 14118:1 14120:2 14123:6 14124:2 14127:2 14135:1 14138:1 14146:1 14149:1 14170:5 14186:1 14191:3 14198:2 14201:2 14204:1 14205:1 14233:1 14243:8 14254:1 14277:3 14290:3 14292:1 14299:1 14304:2 14316:1 14317:1 14339:7 14343:1 14345:3 14346:1 14352:2 14359:2 14379:2 14398:1 14399:1 14401:1 14414:1 14426:5 14445:10 14455:1 14486:1 14489:2 14495:1 14508:1 14510:2 14525:1 14530:1 14531:1 14535:1 14542:2 14560:3 14577:7 14586:2 14591:1 14602:3 14610:1 14611:1 14613:1 14617:1 14624:1 14643:1 14649:1 14651:1 14658:1 14667:4 14668:1 14669:1 14681:1 14702:1 14705:1 14718:1 14720:1 14730:2 14732:1 14741:1 14751:3 14757:2 14768:2 14779:1 14780:1 14783:3 14794:4 14795:1 14796:4 14797:9 14800:1 14803:8 14808:1 14812:5 14814:2 14815:2 14825:1 14833:1 14835:1 14836:1 14861:1 14871:1 14908:2 14913:1 14914:1 14927:5 14932:1 14961:3 14971:2 14974:2 14978:1 14979:4 14984:4 14987:1 14990:1 14996:2 15003:1 15012:1 15013:3 15023:1 15032:1 15037:3 15038:1 15060:1 15084:4 15099:3 15106:2 15109:3 15112:2 15113:1 15118:2 15126:2 15129:2 15134:5 15137:1 15152:3 15157:2 15161:1 15166:2 15176:1 15181:1 15183:1 15210:1 15213:1 15253:1 15266:1 15270:1 15278:2 15303:2 15328:4 15329:1 15332:2 15334:1 15347:1 15349:1 15350:1 15395:1 15396:1 15408:11 15410:1 15424:3 15425:1 15427:1 15428:3 15435:1 15444:1 15449:10 15450:3 15470:2 15483:2 15494:2 15497:1 15498:1 15506:1 15510:1 15511:1 15532:8 15535:1 15538:1 15543:1 15549:1 15569:1 15586:1 15599:1 15624:1 15638:6 15641:1 15649:1 15651:1 15655:1 15667:1 15668:1 15670:2 15681:2 15683:1 15692:4 15693:1 15698:2 15700:1 15711:1 15715:1 15718:1 15727:1 15734:1 15735:1 15739:1 15746:1 15748:1 15754:1 15756:1 15760:1 15761:3 15763:1 15768:1 15774:2 15789:1 15796:1 15820:2 15828:1 15849:1 15863:12 15870:2 15882:1 15886:2 15918:1 15924:4 15938:1 15941:1 15950:5 15951:1 15961:6 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16057:1 16062:1 16081:1 16114:5 16118:2 16128:11 16133:4 16140:2 16141:3 16151:1 16160:2 16165:5 16171:2 16172:1 16173:8 16174:3 16176:1 16184:1 16189:1 16228:1 16233:1 16243:2 16263:1 16266:1 16274:1 16275:2 16282:4 16301:1 16303:1 16306:10 16312:1 16322:1 16325:1 16335:2 16339:1 16345:1 16348:1 16359:3 16387:2 16397:1 16403:6 16404:3 16406:1 16410:1 16411:1 16452:1 16458:1 16459:5 16468:1 16472:1 16478:1 16484:6 16488:3 16499:2 16536:2 16552:1 16553:4 16586:2 16591:1 16599:1 16603:1 16607:1 16612:19 16613:1 16615:1 16618:1 16624:1 16629:4 16633:2 16635:2 16640:1 16641:2 16649:1 16652:1 16663:1 16670:2 16690:7 16693:1 16698:1 16707:2 16714:1 16716:1 16717:1 16718:1 16719:1 16721:1 16726:1 16733:1 16734:1 16740:2 16741:1 16745:3 16756:2 16760:1 16763:1 16789:1 16791:4 16812:1 16826:4 16828:1 16829:1 16830:2 16850:1 16876:1 16881:1 16882:1 16885:1 16896:1 16922:1 16944:1 16960:1 16963:1 16966:5 16990:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17099:1 17101:1 17111:4 17131:1 17133:1 17156:1 17158:1 17167:1 17177:2 17178:1 17188:1 17212:1 17216:1 17227:1 17234:1 17237:3 17241:1 17245:2 17255:4 17266:1 17272:1 17278:1 17279:1 17281:1 17287:3 17288:3 17291:1 17299:1 17310:1 17322:1 17335:1 17337:1 17338:1 17347:1 17360:1 17362:3 17372:1 17374:1 17396:1 17399:1 17407:5 17411:2 17413:6 17419:1 17436:1 17440:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:2 17499:4 17506:1 17510:1 17516:2 17535:5 17545:1 17551:4 17553:1 17564:1 17565:1 17569:2 17584:2 17586:1 17613:1 17617:1 17625:2 17630:1 17632:2 17639:6 17646:2 17666:1 17668:6 17671:1 17684:1 17685:2 17690:1 17700:1 17711:3 17712:2 17735:5 17737:3 17750:1 17754:1 17761:2 17762:2 17763:3 17777:3 17778:7 17779:1 17787:4 17792:1 17820:1 17823:1 17825:1 17832:1 17844:1 17850:2 17857:2 17862:1 17898:1 17921:1 17941:1 17942:2 17946:1 17962:1 17968:4 17975:2 17980:2 18000:1 18004:1 18018:1 18019:1 18024:1 18025:2 18037:1 18039:2 18041:3 18043:3 18050:5 18051:1 18053:1 18060:5 18065:2 18070:3 18071:1 18072:2 18076:1 18106:1 18110:2 18126:5 18127:4 18141:1 18146:1 18151:2 18154:3 18172:1 18185:2 18189:1 18196:7 18200:1 18208:1 18210:1 18240:1 18245:1 18252:2 18255:2 18256:1 18259:1 18263:2 18264:1 18276:1 18281:2 18283:5 18286:1 18288:1 18291:1 18294:1 18302:1 18304:4 18308:2 18323:1 18324:1 18327:1 18335:1 18344:1 18365:1 18366:3 18395:1 18403:2 18418:1 18422:2 18424:8 18426:1 18430:4 18433:1 18436:37 18441:1 18444:1 18447:1 18451:2 18455:1 18459:1 18466:1 18476:4 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18528:1 18532:1 18537:3 18543:1 18546:1 18548:1 18549:5 18550:1 18553:1 18569:1 18575:1 18586:1 18591:5 18602:1 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:4 18698:1 18708:1 18712:1 18720:2 18723:2 18736:5 18738:1 18740:2 18750:1 18761:2 18768:1 18774:1 18780:2 18781:1 18805:1 18812:1 18828:1 18843:1 18845:1 18865:1 18867:1 18881:1 18888:2 18891:3 18905:1 18915:2 18918:1 18928:1 18935:1 18962:1 18968:5 18969:1 18992:1 19001:3 19028:1 19038:1 19069:5 19081:1 19095:1 19106:1 19113:2 19125:1 19148:2 19152:3 19153:3 19157:1 19172:2 19188:1 19191:9 19199:1 19211:1 19218:1 19225:1 19229:1 19234:1 19237:1 19243:1 19245:3 19251:2 19254:5 19255:1 19259:1 19275:1 19279:1 19281:1 19287:5 19291:2 19294:2 19300:1 19304:2623 19308:1 19318:1 19324:1 19354:1 19359:1 19367:4 19368:1 19377:3 19383:1 19401:2 19402:1 19413:1 19418:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:2 19506:1 19507:1 19521:1 19529:4 19535:7 19542:1 19548:5 19551:4 19552:5 19554:1 19568:1 19580:1 19583:1 19616:2 19624:1 19629:8 19633:2 19635:2 19641:1 19642:1 19665:1 19666:39 19675:1 19686:1 19692:7 19716:1 19729:1 19747:1 19756:1 19761:1 19762:1 19772:1 19774:2 19794:1 19796:1 19804:1 19808:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:5 19857:1 19860:2 19868:4 19882:2 19898:3 19908:1 19920:1 19927:1 19928:1 19948:2 19953:1 19957:1 19964:1 19978:2 19981:2 19982:4 20010:2 20014:1 20018:3 20021:4 20027:1 20033:1 20036:4 20038:3 20043:4 20049:1 20053:1 20058:1 20064:1 20074:6 20078:1 20082:1 20091:1 20092:2 20106:2 20108:1 20112:1 20123:2 20124:1 20127:5 20131:12 20147:1 20148:1 20172:8 20173:1 20183:2 20184:1 20188:1 20198:1 20242:2 20244:1 20247:3 20249:1 20296:1 20300:1 20313:2 20317:1 20329:5 20331:1 20336:3 20338:1 20339:2 20351:2 20353:1 20372:1 20374:5 20375:1 20383:1 20387:3 20393:1 20399:1 20429:1 20434:1 20463:2 20466:1 20468:2 20501:3 20516:1 20528:1 20559:3 20570:1 20571:1 20577:1 20581:2 20584:4 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:5 20616:2 20620:7 20622:1 20624:2 20629:5 20641:1 20642:1 20657:1 20664:1 20666:1 20681:1 20687:1 20692:3 20705:1 20708:1 20733:3 20735:1 20754:2 20756:5 20760:2 20778:1 20783:2 20790:1 20791:5 20805:1 20807:1 20817:4 20818:1 20828:1 20832:1 20844:2 20848:2 20850:2 20852:1 20868:1 20875:1 20884:1 20886:1 20901:2 20912:5 20918:1 20920:1 20923:1 20928:3 20932:1 20941:2 20947:1 20962:2 20964:2 20980:2 21002:6 21012:1 21018:1 21019:1 21032:1 21057:10 21058:3 21062:5 21068:2 21074:1 21080:1 21081:1 21120:1 21126:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21168:1 21178:1 21204:1 21217:1 21220:1 21221:1 21246:1 21251:1 21255:3 21258:1 21259:4 21265:1 21271:1 21273:1 21279:1 21290:1 21296:1 21298:1 21299:9 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:3 21390:1 21398:1 21405:1 21407:2 21429:4 21437:1 21440:1 21464:1 21468:1 21469:1 21470:1 21472:1 21475:1 21498:2 21503:2 21505:1 21511:1 21514:2 21515:1 21526:1 21529:5 21539:1 21540:1 21546:4 21547:2 21549:1 21550:1 21552:2 21553:1 21561:1 21564:1 21574:6 21579:1 21584:1 21587:3 21588:3 21595:1 21599:1 21605:1 21613:7 21647:1 21650:2 21656:2 21658:1 21659:3 21660:1 21673:1 21675:1 21702:3 21712:1 21731:1 21739:1 21751:1 21761:1 21788:1 21796:2 21802:2 21804:1 21810:1 21832:1 21836:2 21840:2 21863:8 21872:1 21873:1 21875:1 21880:1 21883:1 21894:2 21901:1 21907:2 21952:2 21965:1 21971:1 21975:1 21976:1 21979:2 21985:1 21989:1 22002:1 22005:1 22022:3 22026:1 22045:1 22048:1 22056:1 22058:2 22061:1 22076:1 22078:1 22081:1 22082:1 22091:1 22122:1 22131:1 22142:2 22149:1 22160:2 22169:2 22170:1 22176:1 22177:1 22194:1 22210:1 22219:1 22225:1 22240:1 22241:3 22243:1 22250:1 22254:4 22256:1 22257:1 22258:2 22265:2 22266:2 22268:1 22272:3 22273:3 22275:2 22282:2 22283:1 22287:1 22289:1 22291:1 22292:1 22293:1 22298:3 22312:1 22321:1 22325:2 22332:1 22338:1 22346:4 22359:1 22361:2 22363:1 22365:1 22370:4 22371:2 22374:1 22376:2 22378:1 22381:1 22383:3 22391:2 22392:1 22401:1 22408:1 22413:1 22415:10 22419:1 22432:1 22433:2 22436:5 22437:1 22447:2 22455:1 22464:1 22477:1 22491:2 22504:1 22507:2 22511:1 22513:4 22514:1 22519:1 22525:9 22529:1 22532:2 22539:1 22543:3 22559:1 22561:3 22562:1 22575:1 22593:1 22601:2 22616:1 22624:1 22625:1 22628:1 22632:1 22635:1 22659:2 22661:1 22665:7 22672:1 22676:1 22678:1 22679:2 22681:2 22682:1 22688:1 22695:1 22696:1 22697:6 22698:3 22699:1 22711:1 22716:2 22720:1 22729:2 22735:1 22738:1 22752:2 22766:2 22768:1 22790:1 22798:3 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:5 22892:4 22893:3 22896:1 22897:1 22902:1 22909:1 22913:1 22924:1 22931:1 22933:1 22940:3 22943:1 22947:3 22959:2 22961:2 22975:3 22994:1 23013:1 23017:1 23023:1 23029:1 23033:2 23034:1 23042:1 23052:5 23053:6 23056:3 23057:1 23059:2 23060:1 23072:2 23073:1 23089:1 23096:2 23109:1 23111:4 23118:1 23124:1 23125:2 23131:3 23134:3 23136:1 23142:3 23144:2 23145:4 23154:1 23162:2 23165:1 23170:1 23173:1 23174:1 23177:1 23178:3 23185:1 23205:2 23226:1 23228:1 23229:2 23231:1 23233:1 23241:1 23243:1 23249:1 23251:3 23255:1 23260:1 23263:3 23270:1 23290:1 23291:9 23292:1 23302:1 23306:1 23309:2 23315:37 23320:1 23321:4 23323:4 23326:1 23327:3 23329:5 23333:1 23334:1 23336:2 23351:1 23352:4 23354:1 23361:3 23364:1 23368:3 23384:2 23385:3 23389:1 23400:3 23403:1 23419:1 23425:3 23437:1 23440:1 23454:1 23487:5 23497:1 23501:10 23509:2 23530:3 23535:2 23552:1 23560:1 23569:1 23594:1 23596:2 23600:1 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:4 23655:2 23662:1 23663:1 23664:1 23685:1 23701:1 23702:2 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23827:2 23828:1 23830:1 23837:2 23844:1 23858:1 23859:1 23860:1 23869:2 23872:1 23887:1 23888:2 23894:1 23903:2 23906:1 23908:2 23914:2 23926:3 23927:1 23928:1 23944:3 23952:5 23955:2 23977:3 23978:1 23982:1 23984:1 23992:3 23997:1 24001:1 24017:1 24020:1 24035:1 24038:1 24066:1 24079:1 24086:1 24107:1 24125:1 24129:1 24141:1 24144:2 24153:1 24161:1 24166:1 24169:3 24172:2 24173:1 24180:1 24181:1 24187:2 24196:3 24209:2 24214:3 24215:1 24218:1 24220:2 24228:1 24232:1 24241:1 24258:2 24270:3 24278:1 24280:5 24282:1 24288:1 24291:3 24293:2 24309:2 24325:1 24333:1 24335:1 24336:1 24343:13 24351:1 24376:2 24393:1 24406:1 24423:2 24424:1 24425:1 24443:2 24457:1 24476:2 24484:2 24488:1 24497:1 24513:1 24515:1 24522:1 24526:5 24533:2 24543:1 24558:1 24561:2 24566:1 24581:1 24592:1 24594:1 24601:3 24604:1 24620:11 24622:2 24623:1 24631:1 24638:7 24648:1 24649:1 24652:1 24661:2 24670:1 24713:1 24725:1 24728:1 24731:1 24736:1 24746:3 24748:2 24761:1 24762:1 24764:2 24774:1 24788:1 24791:2 24801:1 24822:1 24825:1 24839:1 24862:1 24863:1 24872:1 24900:1 24902:4 24912:6 24914:1 24915:1 24923:4 24927:1 24944:2 24947:1 24955:2 24956:1 24957:1 24964:1 24965:1 24973:2 24974:2 24995:3 24998:1 25011:1 25025:1 25028:3 25030:2 25032:1 25036:1 25060:3 25068:1 25075:1 25085:1 25087:3 25093:2 25099:3 25100:2 25101:1 25106:1 25115:1 25117:1 25124:1 25127:1 25136:1 25147:1 25148:1 25150:1 25156:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:2 25220:1 25221:2 25222:1 25224:8 25226:3 25227:1 25228:4 25229:2 25234:1 25235:2 25236:2 25238:5 25248:2 25249:4 25255:2 25262:2 25268:6 25273:2 25281:1 25297:1 25300:3 25301:1 25311:1 25315:3 25327:1 25332:1 25337:7 25343:3 25363:2 25369:1 25370:1 25380:1 25381:3 25393:1 25410:1 25414:1 25415:3 25439:1 25460:1 25463:1 25478:1 25504:3 25530:4 25540:1 25545:6 25565:3 25566:1 25570:1 25590:1 25596:1 25601:1 25602:2 25604:1 25613:1 25616:1 25647:3 25648:1 25655:1 25666:1 25684:1 25692:2 25693:2 25718:2 25743:1 25746:1 25752:3 25762:1 25767:1 25769:1 25778:1 25781:2 25785:3 25794:2 25797:1 25828:7 25861:1 25879:2 25885:1 25887:2 25900:1 25903:4 25909:1 25910:1 25915:2 25922:1 25927:1 25929:1 25931:4 25987:1 25988:1 26007:1 26011:2 26023:4 26025:8 26060:12 26069:1 26083:9 26092:1 26094:1 26104:1 26112:1 26122:1 26127:1 26136:1 26138:1 26144:1 26146:2 26150:1 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26216:2 26236:1 26240:2 26242:1 26248:2 26252:1 26257:1 26259:1 26261:2 26263:6 26270:1 26280:2 26285:2 26288:12 26293:2 26294:4 26304:1 26307:1 26311:1 26317:2 26318:1 26320:1 26328:1 26329:1 26334:2 26336:2 26348:1 26358:1 26363:2 26373:1 26379:5 26387:1 26400:1 26410:4 26411:1 26416:2 26420:2 26422:2 26479:1 26482:1 26494:2 26495:1 26511:1 26519:1 26523:1 26534:1 26538:1 26560:3 26563:1 26579:1 26589:1 26590:4 26591:1 26593:2 26598:1 26614:6 26624:1 26643:1 26646:1 26648:1 26650:1 26654:2 26656:1 26662:1 26668:1 26689:1 26698:1 26706:1 26716:1 26741:1 26754:2 26760:1 26768:1 26776:4 26795:1 26805:1 26826:1 26832:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26892:1 26893:1 26897:1 26898:1 26901:1 26902:1 26907:2 26918:2 26925:1 26939:1 26954:1 26957:2 26974:1 26979:2 26983:5 26989:1 26997:1 26998:2 27006:1 27020:5 27042:1 27046:1 27047:5 27069:1 27070:2 27074:1 27089:1 27091:1 27094:2 27095:1 27101:1 27107:2 27118:1 27119:1 27127:3 27132:1 27138:2 27157:2 27174:1 27178:7 27179:1 27209:1 27212:8 27216:1 27220:1 27234:1 27236:1 27239:1 27260:2 27278:1 27279:1 27289:1 27299:4 27311:1 27320:2 27321:4 27322:1 27327:1 27329:1 27330:1 27334:3 27335:3 27341:1 27372:1 27375:4 27378:1 27381:1 27387:1 27388:1 27389:2 27392:1 27406:3 27415:2 27419:1 27421:2 27438:2 27439:2 27453:1 27454:2 27459:1 27472:1 27482:1 27484:2 27510:2 27530:2 27534:1 27535:1 27539:1 27555:1 27572:1 27574:3 27583:5 27608:2 27612:1 27613:1 27651:1 27665:1 27670:1 27686:1 27691:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:2 27763:2 27767:2 27775:1 27780:1 27781:1 27787:1 27791:1 27792:3 27800:1 27804:1 27807:2 27822:1 27826:2 27845:1 27857:1 27859:1 27868:1 27869:1 27873:1 27875:1 27885:1 27888:1 27897:2 27912:2 27916:1 27917:2 27920:1 27924:5 27940:4 27957:5 27965:5 27966:1 27974:1 27975:2 27977:1 27990:1 27991:1 27997:1 28011:4 28025:2 28033:1 28043:1 28044:10 28071:1 28083:1 28087:2 28097:1 28098:2 28101:1 28102:3 28103:1 28109:13 28121:1 28146:1 28151:5 28177:1 28188:2 28189:1 28193:1 28213:2 28218:8 28225:2 28226:3 28227:1 28239:1 28242:2 28246:1 28251:4 28261:1 28266:1 28277:3 28297:1 28300:1 28315:1 28318:1 28319:3 28322:1 28326:1 28335:2 28337:1 28347:1 28361:3 28372:1 28377:2 28381:1 28384:1 28391:1 28398:1 28407:2 28409:1 28414:2 28416:1 28418:1 28420:2 28441:1 28448:1 28458:2 28459:1 28499:1 28529:1 28533:1 28554:5 28555:1 28557:1 28564:1 28588:1 28589:1 28598:1 28600:2 28616:5 28619:1 28620:1 28627:1 28637:1 28649:1 28672:1 28681:1 28686:1 28688:2 28714:1 28736:1 28743:1 28746:1 28755:2 28779:1 28801:1 28802:1 28825:3 28845:1 28858:1 28860:7 28872:1 28876:1 28893:1 28896:4 28905:1 28907:1 28919:1 28928:2 28938:1 28946:2 28958:1 28959:1 28961:1 28978:1 28980:2 28983:1 28987:2 28992:34 28993:4 28996:5 28998:1 28999:3 29011:2 29017:1 29034:11 29043:1 29048:1 29092:3 29100:2 29107:1 29115:1 29120:2 29131:1 29132:4 29142:7 29146:2 29176:13 29177:1 29180:2 29184:3 29186:2 29190:2 29198:1 29202:4 29210:1 29213:1 29216:1 29221:2 29224:1 29228:2 29236:2 29237:2 29238:1 29245:2 29251:2 29262:1 29267:2 29268:2 29274:1 29276:1 29278:3 29281:1 29286:1 29293:1 29295:1 29300:1 29302:2 29307:1 29324:1 29343:1 29347:1 29354:1 29362:2 29364:1 29365:1 29379:1 29383:1 29387:1 29388:1 29391:2 29405:5 29409:1 29420:1 29447:1 29448:1 29449:2 29461:1 29471:1 29473:2 29474:3 29477:1 29498:1 29504:1 29514:1 29515:1 29518:1 29522:1 29524:1 29525:1 29529:3 29532:6 29538:2 29539:1 29542:2 29548:1 29550:1 29551:1 29559:2 29566:2 29567:1 29569:1 29570:1 29579:1 29584:1 29587:2 29608:1 29632:1 29635:1 29646:1 29648:1 29652:1 29659:1 29678:1 29682:2 29684:1 29688:2 29706:1 29712:1 29716:1 29717:1 29718:2 29722:2 29723:2 29727:1 29736:2 29740:3 29743:1 29747:1 29749:1 29758:1 29766:1 29767:8 29773:2 29774:2 29777:1 29780:10 29782:1 29788:1 29790:1 29801:1 29814:1 29828:1 29832:1 29839:2 29840:1 29882:3 29887:1 29890:1 29900:1 29914:4 29918:1 29920:3 29925:1 29927:1 29931:6 29936:1 29940:1 29949:1 29969:1 29970:1 30000:1 30001:2 30002:1 30011:2 30012:1 30015:1 30035:2 30053:2 30058:4 30081:2 30088:2 30104:1 30108:2 30113:1 30122:1 30136:2 30142:1 30143:2 30150:2 30162:1 30187:1 30194:7 30206:1 30208:1 30210:1 30227:1 30231:7 30243:6 30244:1 30250:1 30273:1 30311:1 30317:1 30320:8 30322:3 30324:4 30326:1 30328:1 30331:3 30332:3 30344:1 30353:1 30362:2 30363:3 30367:3 30371:3 30408:1 30421:1 9 11:1 14:2 21:1 30:1 34:1 43:1 50:6 63:1 74:1 79:1 83:1 85:1 93:1 99:1 103:1 107:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 163:2 176:1 180:2 187:1 189:3 201:1 206:5 207:1 230:1 236:8 238:1 257:1 277:1 283:1 303:1 309:2 315:2 318:1 325:1 327:39 338:2 355:1 356:4 357:5 360:2 362:1 366:1 378:4 380:1 383:1 385:1 397:2 419:1 441:2 460:4 469:1 474:1 475:1 478:1 480:1 500:1 504:1 547:1 550:1 558:1 589:2 591:5 592:1 600:2 603:4 625:4 635:2 637:2 638:1 639:1 657:2 671:1 682:4 685:1 691:1 693:2 703:1 724:1 732:3 736:1 747:1 750:1 758:1 774:1 783:1 788:2 791:1 802:1 804:1 809:1 819:3 824:1 833:2 843:1 854:1 856:2 857:1 867:1 880:1 883:10 885:3 897:1 899:3 900:1 911:1 914:16 916:1 917:1 929:1 933:1 938:6 939:1 940:1 941:8 944:1 946:4 952:1 953:1 959:1 961:1 964:4 976:1 978:1 985:2 986:3 997:1 1000:1 1005:1 1022:1 1023:1 1032:3 1045:1 1052:6 1054:2 1060:2 1076:1 1080:2 1084:1 1085:1 1102:1 1103:1 1115:2 1125:1 1126:1 1133:1 1141:1 1142:1 1143:2 1148:2 1156:3 1163:1 1164:2 1172:1 1176:1 1187:1 1188:1 1194:1 1201:3 1206:1 1213:1 1230:1 1252:1 1254:1 1258:2 1287:1 1289:1 1291:2 1292:2 1300:2 1303:1 1307:1 1311:1 1313:1 1333:1 1336:1 1342:1 1353:2 1358:1 1379:1 1380:1 1393:1 1404:1 1411:3 1434:1 1441:2 1443:1 1461:1 1464:2 1468:6 1471:10 1474:1 1487:2 1489:1 1490:3 1491:2 1493:3 1494:2 1510:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:8 1584:1 1614:2 1621:1 1636:1 1639:1 1641:3 1642:3 1650:1 1652:1 1655:1 1658:2 1677:6 1680:1 1684:2 1700:1 1701:3 1706:6 1712:2 1732:1 1733:1 1751:2 1752:2 1768:1 1775:1 1785:1 1803:1 1814:3 1818:1 1827:1 1830:2 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1883:1 1884:1 1886:2 1887:2 1900:1 1908:1 1911:1 1934:1 1935:1 1952:1 1954:1 1956:2 1958:19 1965:1 1970:2 1981:2 1986:1 1991:1 1995:1 1996:1 1997:1 2008:1 2011:1 2018:8 2019:2 2051:1 2053:1 2057:2 2063:4 2069:2 2075:1 2088:3 2095:1 2100:2 2102:1 2107:1 2112:1 2120:2 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2178:1 2186:1 2195:1 2207:1 2208:1 2210:1 2211:2 2213:1 2216:2 2218:5 2219:1 2220:1 2223:2 2226:1 2229:1 2232:1 2234:5 2238:5 2239:2 2240:5 2241:1 2243:1 2245:1 2251:1 2255:4 2258:1 2274:1 2276:1 2278:4 2280:2 2281:2 2284:2 2285:8 2288:5 2291:1 2292:2 2293:5 2296:1 2297:1 2298:1 2301:3 2306:1 2309:2 2311:2 2314:2 2316:6 2318:2 2319:9 2331:1 2332:2 2334:1 2348:1 2369:1 2380:2 2381:2 2386:1 2393:1 2407:1 2411:1 2418:1 2420:1 2430:3 2437:4 2438:1 2439:1 2445:1 2448:1 2453:1 2457:2 2460:1 2466:2 2482:5 2493:10 2505:1 2509:1 2511:1 2515:1 2532:1 2537:1 2545:1 2561:5 2570:6 2577:1 2593:1 2595:3 2603:2 2608:4 2615:3 2618:2 2620:1 2623:1 2632:2 2637:1 2661:2 2666:1 2682:1 2685:1 2690:1 2699:2 2701:4 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2730:2 2740:2 2745:1 2748:1 2761:1 2763:3 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:7 2825:4 2831:6 2840:1 2841:1 2848:1 2880:1 2882:1 2883:3 2889:2 2890:2 2904:2 2912:2 2930:1 2933:8 2935:2 2941:28 2945:1 2948:1 2959:4 2975:2 2980:1 2982:1 2987:1 2995:1 3002:16 3021:1 3024:1 3029:1 3032:6 3036:9 3037:1 3038:1 3039:1 3050:1 3061:1 3064:1 3068:1 3082:1 3086:1 3092:1 3095:1 3097:1 3129:1 3146:4 3162:1 3169:1 3176:1 3177:2 3178:1 3184:1 3190:1 3210:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3287:1 3293:1 3304:2 3312:6 3317:1 3322:2 3325:2 3332:1 3338:1 3339:1 3343:1 3348:1 3357:1 3361:1 3370:1 3374:1 3384:1 3386:5 3416:1 3431:2 3434:14 3481:1 3487:1 3510:2 3537:1 3544:1 3551:1 3557:2 3558:1 3561:1 3563:2 3564:2 3568:2 3571:1 3578:1 3581:2 3587:2 3601:1 3615:2 3619:2 3621:1 3626:1 3628:1 3635:2 3640:1 3645:1 3648:1 3665:4 3670:1 3672:1 3674:1 3678:2 3681:8 3699:6 3705:2 3706:1 3708:5 3709:2 3712:1 3715:1 3719:1 3736:2 3741:6 3751:1 3754:1 3773:1 3784:1 3787:1 3791:3 3792:3 3796:1 3799:1 3800:2 3803:3 3816:1 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:14 3863:1 3873:1 3882:1 3884:1 3888:1 3895:5 3897:1 3903:2 3904:13 3905:3 3906:1 3911:1 3912:2 3923:3 3924:7 3932:1 3938:1 3945:1 3955:1 3956:3 3958:1 3964:1 3966:1 3967:1 3969:1 3978:1 3981:2 3985:1 3986:1 3992:1 3993:1 3994:1 4000:1 4004:2 4016:1 4019:4 4022:3 4032:2 4037:1 4045:1 4047:1 4053:3 4054:1 4058:3 4063:3 4066:1 4077:5 4084:1 4085:1 4089:2 4090:2 4093:2 4094:1 4098:1 4099:3 4100:2 4108:5 4109:5 4114:1 4128:1 4129:1 4141:1 4144:1 4153:1 4165:1 4169:2 4177:1 4181:1 4187:6 4195:1 4196:2 4197:1 4204:1 4221:1 4236:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:7 4307:2 4315:1 4316:1 4319:1 4321:1 4325:1 4364:1 4366:1 4374:1 4378:2 4381:2 4388:1 4401:1 4405:2 4412:1 4420:2 4421:1 4450:1 4455:2 4462:1 4466:2 4469:1 4474:5 4494:1 4504:1 4535:1 4546:4 4555:1 4572:1 4576:2 4584:1 4593:1 4598:1 4601:1 4612:1 4625:1 4631:2 4637:2 4661:1 4665:1 4675:1 4680:1 4688:1 4697:3 4699:2 4719:1 4724:1 4728:3 4735:1 4741:5 4749:1 4751:1 4754:3 4772:2 4774:1 4775:1 4788:2 4789:1 4804:1 4807:8 4830:1 4843:1 4854:1 4870:1 4875:1 4879:1 4889:1 4896:1 4903:8 4907:1 4911:1 4918:2 4921:1 4935:3 4944:1 4951:1 4954:1 4986:3 5009:1 5019:30 5021:3 5024:1 5041:3 5043:1 5052:1 5058:4 5071:1 5078:2 5083:7 5091:1 5093:2 5115:2 5117:2 5131:1 5132:1 5134:1 5135:7 5151:5 5152:8 5153:1 5154:1 5155:1 5157:1 5159:3 5160:2 5162:1 5163:4 5165:1 5166:2 5170:1 5171:1 5173:5 5175:3 5176:1 5178:1 5180:1 5184:1 5185:1 5187:4 5188:4 5192:1 5209:1 5211:1 5212:1 5219:1 5238:1 5242:1 5246:1 5271:3 5277:2 5279:1 5284:1 5294:1 5299:2 5317:1 5321:1 5326:3 5327:1 5328:3 5336:2 5343:1 5344:3 5359:1 5367:1 5374:1 5385:1 5396:2 5404:5 5409:1 5435:1 5441:1 5459:1 5464:1 5466:1 5482:1 5487:1 5506:1 5512:3 5518:8 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5607:2 5612:1 5625:1 5650:1 5663:1 5664:2 5679:1 5680:3 5691:1 5692:2 5693:2 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:2 5733:1 5736:1 5745:1 5750:1 5758:3 5763:1 5765:1 5767:1 5772:1 5780:1 5786:1 5792:3 5797:1 5808:5 5815:1 5816:1 5849:3 5870:1 5873:3 5882:1 5888:1 5897:3 5898:1 5911:3 5914:4 5917:1 5921:2 5939:1 5945:1 5959:2 5975:1 5977:1 5987:1 5994:1 6001:1 6007:1 6011:1 6021:2 6022:1 6028:1 6059:4 6065:1 6066:1 6085:1 6097:1 6102:2 6129:1 6152:1 6171:1 6183:4 6184:1 6202:2 6204:1 6205:19 6226:5 6229:1 6231:4 6238:1 6242:1 6246:1 6247:1 6248:5 6249:2 6257:1 6280:3 6288:1 6297:1 6301:1 6303:1 6308:1 6325:2 6345:1 6348:1 6356:1 6364:1 6380:2 6384:2 6385:1 6390:1 6400:1 6404:3 6410:1 6426:7 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:2 6488:1 6501:4 6503:1 6505:1 6506:1 6507:2 6510:1 6511:2 6515:4 6517:1 6518:3 6519:3 6520:5 6522:1 6523:1 6525:4 6526:13 6527:5 6530:3 6539:1 6568:1 6571:1 6591:3 6646:4 6648:1 6649:1 6652:1 6681:2 6683:1 6686:1 6699:2 6743:1 6749:1 6750:1 6752:1 6763:1 6769:1 6777:1 6797:3 6798:1 6803:1 6813:1 6814:1 6816:1 6822:4 6832:1 6833:1 6836:1 6841:1 6844:1 6851:2 6855:2 6897:1 6898:2 6903:2 6909:1 6911:3 6916:1 6919:2 6920:1 6924:1 6929:1 6940:10 6949:1 6960:2 6968:4 6973:1 6985:1 6987:1 6997:1 7002:1 7014:1 7015:1 7019:1 7029:1 7045:4 7047:1 7049:2 7058:3 7086:2 7087:3 7091:3 7098:1 7100:1 7113:3 7114:2 7128:1 7131:1 7142:2 7147:2 7148:1 7150:2 7154:1 7160:1 7169:1 7177:2 7183:1 7202:1 7212:1 7220:1 7233:1 7245:1 7253:15 7255:1 7266:1 7273:1 7281:3 7300:1 7302:1 7306:2 7310:2 7312:2 7321:1 7332:1 7336:1 7337:1 7369:2 7379:1 7388:1 7411:3 7416:1 7420:1 7435:2 7452:1 7479:2 7486:1 7491:3 7495:1 7500:1 7505:5 7506:1 7509:1 7516:1 7521:1 7527:1 7535:1 7539:1 7549:6 7554:4 7555:1 7559:1 7579:2 7583:1 7596:3 7597:1 7603:2 7611:1 7622:1 7627:2 7644:1 7663:1 7672:3 7690:2 7706:1 7719:1 7723:1 7725:1 7726:2 7749:1 7756:3 7757:14 7758:8 7763:1 7769:1 7771:2 7779:1 7784:3 7785:4 7786:2 7812:5 7813:1 7831:63 7836:2 7854:9 7855:16 7857:1 7860:4 7871:1 7878:1 7883:2 7892:1 7899:1 7908:1 7911:1 7923:2 7940:4 7941:2 7944:2 7964:1 7966:1 7967:2 7982:2 8014:1 8017:1 8035:2 8059:1 8062:3 8072:1 8087:1 8090:1 8093:3 8108:1 8112:8 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8201:1 8209:1 8223:1 8226:1 8233:1 8250:1 8255:1 8258:1 8265:3 8266:3 8267:2 8269:1 8285:2 8287:2 8301:1 8303:1 8306:1 8317:2 8319:1 8324:2 8330:1 8333:2 8338:2 8339:1 8343:1 8347:1 8348:3 8357:1 8358:13 8376:1 8389:3 8394:2 8400:2 8417:1 8447:1 8452:1 8461:2 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8559:2 8564:1 8566:1 8569:1 8589:1 8591:1 8599:4 8604:2 8614:4 8615:1 8620:3 8624:3 8628:1 8629:4 8638:1 8646:1 8656:1 8664:5 8667:2 8669:2 8671:2 8674:1 8701:1 8711:1 8716:1 8721:1 8728:1 8734:1 8736:1 8739:3 8740:8 8743:4 8744:2 8746:1 8748:3 8749:8 8752:3 8753:4 8755:1 8757:2 8767:3 8768:2 8784:4 8790:2 8792:7 8801:1 8812:1 8816:3 8820:1 8822:2 8826:2 8829:2 8834:2 8837:5 8838:1 8853:2 8860:1 8891:1 8892:2 8898:1 8906:1 8907:1 8909:1 8917:1 8930:1 8933:1 8939:1 8958:1 8968:2 8973:2 8974:1 8988:1 9008:1 9017:3 9024:1 9033:2 9041:3 9059:1 9063:2 9066:1 9073:4 9074:2 9078:3 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9166:1 9168:1 9171:1 9177:1 9188:2 9199:6 9202:2 9213:1 9218:1 9220:2 9222:1 9223:1 9241:3 9252:1 9261:1 9263:1 9275:1 9276:2 9278:1 9292:3 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:4 9373:1 9386:1 9387:1 9394:3 9401:2 9403:1 9411:1 9420:2 9421:1 9425:1 9436:1 9459:1 9463:2 9466:2 9467:8 9469:1 9470:1 9474:3 9477:1 9482:1 9486:39 9489:4 9490:2 9497:1 9508:2 9510:1 9513:1 9520:1 9522:2 9523:1 9526:1 9535:1 9548:4 9567:2 9572:1 9583:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:8 9634:2 9650:1 9659:1 9660:1 9676:1 9684:5 9689:1 9693:1 9702:1 9704:1 9724:1 9728:1 9749:1 9751:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9814:1 9824:1 9828:3 9831:1 9832:1 9843:1 9844:1 9845:6 9851:1 9861:1 9867:1 9869:5 9877:2 9886:3 9895:2 9919:2 9949:9 9955:1 9962:2 9963:1 9965:1 9966:6 9972:2 9974:1 9986:1 9991:1 9993:1 9995:2 10004:1 10005:1 10017:2 10035:3 10053:1 10057:1 10061:1 10065:1 10081:1 10084:1 10088:1 10089:2 10093:1 10108:7 10113:1 10120:1 10126:1 10130:1 10135:4 10142:2 10143:2 10145:1 10147:2 10149:1 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10181:1 10185:1 10186:2 10196:3 10198:1 10202:2 10203:2 10206:1 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10232:1 10240:4 10260:1 10268:1 10279:1 10288:1 10290:2 10302:1 10308:1 10309:1 10323:1 10329:2 10330:1 10336:1 10345:1 10368:1 10374:1 10377:1 10391:1 10397:1 10399:2 10400:1 10401:1 10402:1 10418:2 10443:1 10466:1 10469:1 10479:1 10481:1 10484:1 10487:2 10489:1 10514:2 10515:1 10520:1 10525:2 10544:2 10548:1 10550:5 10570:1 10576:2 10584:2 10588:1 10590:2 10608:2 10609:1 10625:5 10630:2 10638:2 10653:1 10655:1 10689:1 10690:1 10694:1 10699:1 10712:3 10720:1 10722:1 10724:1 10751:1 10764:2 10767:1 10769:2 10776:1 10787:2 10788:1 10790:4 10794:2 10796:1 10800:8 10809:1 10810:1 10811:1 10813:1 10820:1 10823:1 10824:3 10837:2 10840:1 10841:3 10844:4 10846:1 10854:1 10865:3 10866:1 10867:1 10876:4 10878:4 10879:1 10886:2 10888:1 10890:2 10892:1 10895:1 10916:1 10921:1 10932:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:4 10990:15 11055:1 11056:1 11059:1 11065:1 11067:2 11079:1 11095:1 11112:4 11115:1 11117:1 11137:1 11159:1 11162:1 11175:2 11180:1 11193:1 11211:1 11219:1 11224:1 11236:1 11240:1 11253:2 11254:4 11257:4 11260:2 11262:2 11266:1 11269:3 11283:2 11291:1 11297:1 11298:2 11299:1 11302:1 11312:1 11313:1 11323:1 11347:8 11351:1 11352:1 11364:1 11372:7 11377:1 11378:1 11381:2 11385:1 11411:1 11433:1 11434:2 11435:2 11437:1 11443:1 11444:1 11452:1 11456:1 11457:1 11468:1 11477:1 11482:1 11490:1 11501:1 11507:2 11516:1 11520:1 11534:1 11536:2 11544:1 11551:1 11554:1 11557:1 11566:1 11579:1 11583:5 11590:1 11602:1 11613:2 11616:1 11627:1 11637:1 11643:2 11650:1 11653:3 11659:1 11660:1 11662:1 11674:2 11675:1 11677:2 11682:2 11686:4 11706:10 11715:1 11749:3 11752:14 11753:1 11755:1 11772:1 11775:1 11783:1 11789:2 11790:1 11797:2 11813:1 11819:2 11820:1 11830:1 11831:2 11848:2 11849:1 11850:1 11852:1 11853:1 11860:1 11861:2 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:3 11930:4 11933:8 11958:1 11960:7 11962:7 11963:1 11989:1 11994:1 12006:1 12009:2 12011:2 12012:3 12016:1 12018:1 12020:3 12022:2 12025:1 12026:2 12029:3 12030:1 12032:1 12038:1 12042:2 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:7 12077:2 12085:1 12097:8 12108:2 12111:1 12116:1 12127:1 12132:2 12134:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:2 12241:1 12263:1 12265:2 12291:1 12297:1 12304:5 12306:1 12313:4 12315:1 12321:1 12340:1 12346:1 12359:3 12362:5 12363:1 12382:1 12411:5 12414:1 12426:2 12433:1 12439:1 12442:1 12445:1 12505:2 12516:1 12519:1 12526:1 12531:1 12540:1 12542:1 12543:3 12544:4 12545:2 12557:1 12560:2 12571:1 12580:2 12592:1 12593:2 12596:1 12602:4 12603:5 12608:3 12611:1 12615:2 12619:2 12654:1 12668:1 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:10 12747:1 12753:2 12775:1 12782:3 12785:1 12798:1 12799:1 12806:1 12807:1 12810:2 12824:3 12828:1 12843:2 12847:2 12872:2 12880:1 12890:1 12896:1 12899:4 12904:3 12911:1 12934:1 12935:1 12946:1 12950:1 12953:1 12954:7 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13079:2 13091:8 13100:1 13108:1 13113:1 13114:1 13116:1 13126:1 13131:19 13136:1 13139:1 13142:1 13151:3 13153:7 13155:1 13161:2 13180:1 13182:1 13189:1 13192:1 13195:4 13199:3 13222:2 13238:1 13246:1 13250:1 13255:2 13256:6 13259:2 13270:2 13274:1 13281:1 13283:1 13285:1 13288:1 13291:3 13292:1 13315:2 13330:5 13333:1 13334:1 13339:1 13341:1 13362:1 13363:1 13364:1 13393:1 13406:1 13410:1 13417:1 13450:1 13452:1 13454:7 13458:1 13465:1 13474:1 13496:1 13503:1 13504:1 13523:1 13548:2 13550:8 13556:1 13568:1 13573:4 13576:1 13581:1 13584:1 13588:8 13595:4 13600:1 13609:2 13611:6 13632:1 13633:1 13647:2 13649:1 13652:1 13663:2 13665:1 13666:1 13684:2 13690:5 13715:1 13726:2 13732:2 13734:1 13736:1 13744:1 13747:8 13748:1 13754:1 13756:6 13757:2 13764:1 13772:1 13773:1 13774:2 13781:2 13786:2 13800:3 13802:1 13807:1 13808:1 13811:1 13829:2 13830:5 13833:1 13840:1 13847:3 13854:1 13862:2 13865:2 13880:2 13887:7 13909:1 13913:1 13915:1 13933:4 13937:1 13938:6 13961:1 13973:2 13987:4 13993:1 14004:1 14008:1 14018:1 14019:1 14036:2 14051:1 14075:1 14076:3 14081:2 14092:2 14094:1 14109:1 14116:6 14118:1 14120:2 14123:6 14124:2 14127:2 14131:1 14135:1 14138:1 14146:1 14149:1 14153:1 14170:5 14186:1 14191:3 14198:2 14201:2 14204:1 14205:1 14233:1 14243:8 14254:1 14277:4 14290:3 14292:1 14299:1 14304:2 14316:1 14317:1 14339:7 14343:1 14345:3 14346:1 14352:2 14359:2 14379:2 14398:1 14399:1 14401:1 14414:1 14426:5 14445:11 14455:1 14486:1 14489:2 14495:2 14508:1 14510:2 14525:1 14530:1 14531:1 14535:1 14542:2 14560:3 14577:7 14586:2 14591:1 14602:3 14610:1 14611:1 14613:1 14617:1 14624:1 14643:1 14649:1 14651:1 14658:1 14667:4 14668:1 14669:1 14681:1 14702:1 14705:1 14718:1 14720:1 14730:2 14732:1 14741:1 14751:3 14757:2 14768:2 14779:1 14780:1 14783:3 14794:4 14795:1 14796:4 14797:9 14800:1 14803:8 14808:1 14812:5 14814:3 14815:2 14825:1 14833:1 14835:1 14836:1 14861:1 14871:1 14908:2 14913:1 14914:1 14927:5 14932:1 14961:3 14971:2 14974:2 14978:1 14979:4 14984:4 14987:1 14990:1 14996:2 15003:1 15012:1 15013:3 15023:1 15032:1 15037:3 15038:1 15060:1 15084:4 15099:3 15106:2 15109:3 15112:2 15113:1 15118:2 15126:2 15129:2 15134:5 15137:1 15152:3 15157:2 15161:1 15166:2 15176:1 15181:1 15183:1 15210:1 15213:1 15253:1 15266:1 15270:1 15278:2 15303:2 15328:4 15329:1 15332:2 15334:1 15347:1 15349:2 15350:1 15395:1 15396:1 15408:11 15410:1 15424:3 15425:1 15427:1 15428:3 15435:1 15444:1 15449:10 15450:3 15470:2 15483:2 15494:2 15497:1 15498:1 15506:1 15510:1 15511:1 15532:8 15535:1 15538:1 15543:1 15549:1 15569:1 15586:1 15599:1 15624:1 15638:6 15641:1 15649:1 15651:1 15655:1 15667:1 15668:1 15670:2 15681:2 15683:1 15692:4 15693:1 15698:2 15700:1 15711:1 15715:1 15718:1 15727:1 15734:1 15735:1 15736:1 15739:1 15746:1 15748:1 15754:1 15756:1 15760:1 15761:3 15763:1 15768:1 15774:2 15789:1 15796:1 15820:2 15828:1 15849:1 15863:12 15870:2 15882:1 15886:2 15918:1 15924:4 15938:1 15941:1 15950:5 15951:1 15961:6 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16057:1 16062:1 16081:1 16114:6 16118:2 16128:12 16133:4 16140:2 16141:3 16151:1 16160:2 16165:5 16171:2 16172:1 16173:8 16174:4 16176:1 16184:1 16189:1 16228:1 16233:2 16243:2 16263:1 16266:1 16274:1 16275:2 16281:1 16282:4 16301:1 16303:1 16306:10 16312:1 16322:1 16325:2 16335:2 16339:1 16345:1 16348:1 16359:3 16387:2 16397:1 16403:6 16404:3 16406:1 16410:1 16411:1 16452:1 16458:1 16459:5 16468:1 16472:1 16478:1 16484:6 16488:3 16499:2 16536:2 16552:1 16553:4 16586:2 16591:1 16599:1 16600:1 16603:1 16607:1 16612:19 16613:1 16615:1 16618:1 16624:1 16629:5 16633:2 16635:2 16640:1 16641:2 16649:1 16652:1 16663:1 16670:2 16690:7 16693:1 16698:1 16707:2 16714:1 16716:1 16717:1 16718:1 16719:1 16721:1 16726:1 16733:1 16734:1 16740:2 16741:1 16745:3 16756:2 16760:1 16763:1 16789:1 16791:4 16812:1 16826:5 16828:1 16829:1 16830:2 16850:1 16876:1 16881:1 16882:1 16885:1 16896:1 16922:1 16944:1 16960:1 16963:1 16966:5 16990:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17084:1 17085:1 17099:1 17101:1 17110:1 17111:4 17131:1 17133:1 17156:1 17158:1 17167:1 17177:2 17178:1 17188:1 17212:1 17216:1 17227:1 17234:1 17237:3 17241:1 17245:2 17255:4 17266:1 17272:1 17278:2 17279:1 17281:1 17287:3 17288:3 17291:1 17299:1 17310:1 17322:1 17335:1 17337:1 17338:1 17347:1 17360:1 17362:3 17372:1 17374:1 17379:1 17396:1 17399:1 17407:5 17411:2 17413:6 17419:1 17436:1 17440:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:2 17499:4 17506:1 17510:1 17516:2 17535:5 17545:1 17551:4 17553:1 17564:1 17565:1 17569:2 17580:1 17584:2 17586:1 17613:1 17617:1 17625:2 17630:1 17632:2 17639:6 17642:1 17646:2 17666:1 17668:7 17671:1 17684:1 17685:2 17690:1 17700:1 17711:3 17712:2 17735:5 17737:3 17750:1 17754:1 17761:2 17762:2 17763:3 17777:3 17778:7 17779:1 17787:4 17792:1 17820:1 17823:1 17825:1 17832:1 17844:1 17850:2 17857:2 17862:1 17898:1 17921:1 17941:1 17942:2 17946:1 17962:1 17968:4 17975:2 17980:2 17991:1 18000:1 18004:1 18018:1 18019:1 18024:1 18025:2 18037:1 18039:2 18041:3 18043:3 18050:6 18051:1 18053:1 18060:6 18065:2 18070:3 18071:1 18072:2 18076:1 18106:1 18110:2 18126:5 18127:4 18141:1 18146:1 18151:2 18154:3 18172:1 18185:2 18189:1 18196:7 18200:1 18208:1 18210:1 18212:1 18213:1 18240:1 18245:1 18252:2 18255:2 18256:1 18259:1 18263:2 18264:1 18276:1 18281:2 18283:5 18286:1 18288:1 18291:1 18294:1 18302:1 18304:4 18308:2 18323:1 18324:1 18327:1 18335:1 18344:1 18365:1 18366:3 18395:1 18403:2 18418:1 18422:2 18424:8 18426:1 18430:4 18433:1 18436:38 18441:1 18444:1 18447:1 18451:2 18455:1 18459:1 18466:1 18476:4 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18528:1 18532:1 18537:3 18543:1 18546:1 18548:1 18549:5 18550:1 18553:1 18569:1 18575:1 18586:1 18591:5 18602:1 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:4 18698:1 18708:1 18712:1 18716:1 18720:2 18723:2 18736:5 18738:1 18740:2 18750:1 18761:2 18768:1 18774:1 18780:2 18781:1 18805:1 18812:1 18828:1 18840:1 18843:1 18845:1 18865:1 18867:1 18881:1 18888:2 18891:3 18905:1 18915:2 18918:1 18928:1 18935:1 18962:1 18968:5 18969:1 18992:1 19001:3 19028:1 19038:1 19069:5 19081:1 19095:1 19106:1 19113:2 19125:1 19148:2 19152:3 19153:3 19157:1 19172:2 19188:1 19191:9 19199:1 19211:1 19218:1 19225:1 19229:1 19234:1 19237:1 19243:1 19245:3 19251:2 19254:5 19255:1 19259:1 19275:1 19279:1 19281:1 19287:5 19291:2 19294:3 19300:1 19304:2702 19308:1 19318:1 19324:1 19354:1 19359:1 19367:4 19368:1 19377:3 19383:1 19401:2 19402:1 19413:1 19418:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:2 19506:1 19507:1 19521:1 19529:4 19535:7 19542:1 19548:5 19551:4 19552:5 19554:1 19568:1 19580:1 19583:1 19616:2 19624:1 19629:8 19633:2 19635:2 19641:1 19642:1 19665:1 19666:39 19675:1 19686:1 19692:7 19716:1 19729:1 19747:1 19756:1 19761:1 19762:1 19772:1 19774:2 19794:1 19796:1 19804:1 19808:1 19820:1 19822:1 19824:1 19826:1 19837:2 19844:5 19857:1 19860:2 19868:4 19882:2 19898:3 19908:1 19920:1 19927:1 19928:1 19948:2 19953:1 19957:1 19964:1 19978:2 19981:2 19982:4 20010:2 20014:1 20018:4 20021:4 20027:1 20033:1 20036:4 20038:3 20043:4 20049:1 20053:1 20058:1 20064:1 20074:6 20078:1 20082:1 20091:2 20092:2 20106:2 20108:1 20112:2 20123:2 20124:1 20127:5 20131:13 20147:1 20148:1 20172:8 20173:1 20181:1 20183:2 20184:1 20188:1 20198:1 20228:1 20242:2 20244:1 20247:3 20249:1 20296:1 20300:1 20313:2 20317:1 20329:5 20331:1 20336:3 20338:1 20339:2 20351:2 20353:1 20372:1 20374:5 20375:1 20383:1 20387:3 20393:1 20399:1 20429:1 20434:1 20463:2 20466:1 20468:2 20501:3 20516:1 20528:1 20559:3 20570:1 20571:1 20577:1 20581:2 20584:4 20588:1 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:5 20616:2 20620:7 20622:1 20624:3 20629:5 20641:1 20642:2 20657:1 20664:1 20666:1 20681:1 20687:1 20692:3 20705:1 20708:1 20733:3 20735:1 20754:2 20756:5 20760:2 20778:1 20783:2 20786:1 20790:1 20791:5 20805:1 20807:1 20817:5 20818:1 20828:1 20832:1 20844:2 20848:2 20850:2 20852:1 20868:1 20875:1 20884:1 20886:1 20901:2 20912:5 20918:1 20920:1 20923:1 20928:3 20932:1 20941:3 20947:1 20962:2 20964:2 20980:2 21002:6 21012:1 21018:1 21019:1 21032:1 21057:10 21058:3 21062:5 21068:2 21074:1 21080:1 21081:1 21120:1 21125:1 21126:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21168:1 21178:1 21204:1 21217:1 21220:1 21221:1 21246:1 21251:1 21255:3 21258:1 21259:4 21265:1 21271:1 21273:1 21279:1 21290:1 21296:1 21298:1 21299:9 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:3 21390:1 21398:1 21405:1 21407:2 21429:4 21437:1 21440:1 21464:1 21468:1 21469:1 21470:1 21472:1 21475:1 21498:2 21503:2 21505:1 21508:1 21511:1 21514:2 21515:1 21522:1 21526:1 21529:5 21539:1 21540:1 21546:4 21547:2 21549:1 21550:1 21552:2 21553:1 21561:1 21564:1 21574:6 21579:1 21584:1 21587:3 21588:4 21595:1 21599:1 21605:1 21613:7 21647:1 21650:2 21656:2 21658:1 21659:3 21660:1 21673:1 21675:1 21702:3 21712:1 21731:1 21739:1 21751:1 21761:1 21788:1 21796:2 21802:2 21804:1 21810:1 21832:1 21836:2 21840:2 21863:8 21872:1 21873:1 21875:1 21880:1 21883:1 21894:2 21901:1 21907:2 21952:2 21965:1 21971:1 21975:1 21976:1 21979:2 21985:1 21989:1 22002:1 22005:1 22022:3 22026:2 22045:1 22048:1 22056:1 22058:2 22061:1 22076:1 22078:1 22081:1 22082:1 22091:1 22122:1 22129:1 22131:1 22142:2 22149:1 22160:2 22169:2 22170:1 22176:1 22177:1 22194:1 22210:1 22219:1 22225:1 22240:1 22241:3 22243:1 22250:1 22254:5 22256:1 22257:1 22258:2 22265:2 22266:2 22268:1 22272:3 22273:3 22275:2 22282:2 22283:1 22287:1 22289:1 22291:1 22292:1 22293:1 22298:3 22312:1 22321:1 22325:2 22332:1 22338:1 22346:4 22359:1 22361:2 22363:1 22365:1 22370:4 22371:2 22374:1 22376:2 22378:1 22381:1 22383:3 22391:2 22392:1 22401:1 22408:1 22413:1 22415:10 22419:1 22432:1 22433:2 22436:5 22437:1 22447:2 22455:1 22464:1 22477:1 22491:2 22504:1 22507:2 22511:1 22513:4 22514:1 22519:1 22525:9 22529:1 22532:2 22539:1 22543:3 22559:1 22561:3 22562:1 22575:1 22593:1 22601:2 22616:1 22624:1 22625:1 22628:1 22632:1 22635:1 22659:2 22661:1 22665:7 22672:1 22676:1 22678:1 22679:2 22681:2 22682:1 22688:1 22695:1 22696:1 22697:6 22698:3 22699:1 22711:1 22716:2 22720:1 22729:2 22735:1 22738:1 22752:2 22766:2 22768:1 22790:1 22798:3 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:5 22892:4 22893:3 22896:1 22897:1 22902:1 22909:1 22913:1 22924:1 22931:1 22933:1 22940:3 22943:1 22947:3 22959:2 22961:2 22975:3 22994:1 23013:1 23017:1 23023:1 23029:1 23033:3 23034:1 23042:1 23052:5 23053:6 23056:3 23057:1 23059:2 23060:1 23063:1 23072:2 23073:1 23089:1 23096:2 23109:1 23111:5 23118:1 23124:1 23125:2 23131:3 23134:3 23136:1 23142:3 23144:2 23145:4 23154:1 23162:2 23165:1 23170:1 23173:1 23174:1 23177:1 23178:3 23185:1 23205:2 23226:1 23228:1 23229:2 23231:1 23233:1 23241:1 23243:1 23249:2 23251:3 23255:1 23260:1 23263:4 23270:1 23290:1 23291:9 23292:1 23302:1 23306:1 23309:2 23315:38 23320:1 23321:4 23323:4 23326:1 23327:3 23329:5 23333:1 23334:1 23336:2 23351:1 23352:4 23354:1 23361:3 23364:1 23368:3 23384:2 23385:3 23389:1 23400:3 23403:1 23419:1 23425:3 23437:1 23440:1 23454:1 23487:5 23497:1 23501:10 23509:3 23530:3 23535:2 23552:1 23560:1 23569:2 23594:1 23596:2 23600:1 23602:2 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:4 23655:2 23662:1 23663:1 23664:1 23685:1 23701:1 23702:3 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23827:2 23828:1 23830:1 23837:2 23844:1 23858:1 23859:1 23860:1 23869:2 23872:1 23887:1 23888:2 23894:1 23903:2 23906:1 23908:2 23914:2 23926:3 23927:1 23928:1 23944:3 23952:5 23955:2 23977:3 23978:1 23982:1 23984:1 23992:3 23997:1 24001:1 24017:1 24020:1 24035:1 24038:1 24066:1 24079:1 24086:1 24107:3 24125:1 24129:1 24141:1 24144:2 24153:1 24161:1 24166:1 24169:3 24172:3 24173:1 24180:1 24181:1 24187:2 24196:3 24209:2 24214:3 24215:1 24218:1 24220:2 24228:1 24232:1 24241:1 24258:2 24270:3 24278:1 24280:5 24282:1 24288:1 24291:3 24293:2 24309:2 24325:1 24333:1 24335:1 24336:1 24343:13 24351:1 24376:2 24393:1 24406:1 24423:2 24424:1 24425:1 24443:2 24457:1 24476:2 24484:2 24488:1 24497:1 24513:1 24515:1 24522:1 24526:5 24533:2 24543:1 24558:1 24561:2 24566:1 24581:1 24592:1 24594:1 24598:1 24601:3 24604:1 24620:11 24622:2 24623:1 24631:1 24638:7 24648:1 24649:1 24652:1 24661:2 24670:1 24713:1 24725:1 24728:1 24731:1 24736:1 24746:3 24748:2 24761:1 24762:1 24764:2 24774:1 24788:1 24791:2 24801:1 24822:1 24825:2 24839:1 24862:1 24863:1 24872:1 24900:1 24902:4 24912:6 24914:1 24915:1 24923:4 24927:1 24944:2 24947:1 24955:2 24956:1 24957:1 24964:1 24965:1 24973:2 24974:2 24995:3 24998:1 25011:1 25025:1 25028:3 25030:2 25032:1 25036:1 25060:4 25068:1 25075:1 25085:1 25087:3 25093:2 25099:3 25100:2 25101:1 25106:1 25115:1 25117:1 25124:1 25127:1 25136:1 25147:1 25148:1 25150:1 25156:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:2 25220:1 25221:2 25222:1 25224:8 25226:3 25227:1 25228:4 25229:2 25234:1 25235:2 25236:2 25238:5 25248:2 25249:4 25255:2 25262:2 25268:6 25273:2 25281:1 25297:1 25300:3 25301:1 25311:1 25315:3 25327:1 25332:1 25337:7 25343:3 25363:2 25369:1 25370:1 25380:1 25381:3 25393:1 25410:1 25414:1 25415:3 25439:1 25460:1 25463:1 25478:1 25504:3 25530:4 25540:1 25545:6 25565:3 25566:1 25570:1 25590:1 25596:1 25601:1 25602:2 25604:1 25613:1 25616:1 25619:1 25647:3 25648:1 25655:1 25666:1 25684:1 25692:2 25693:2 25718:2 25743:1 25746:1 25752:3 25762:1 25767:1 25769:1 25778:1 25781:2 25785:3 25794:2 25797:1 25828:7 25861:1 25879:2 25885:1 25887:2 25900:1 25903:4 25909:1 25910:1 25915:2 25922:1 25927:1 25929:1 25931:4 25987:1 25988:1 26007:1 26011:2 26023:4 26025:8 26060:12 26069:1 26083:9 26092:1 26094:1 26104:1 26112:1 26122:1 26127:1 26136:1 26138:1 26144:1 26146:2 26150:1 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26208:1 26216:2 26236:1 26240:2 26242:1 26248:2 26252:1 26257:1 26259:1 26261:2 26263:6 26270:1 26280:2 26285:2 26288:12 26293:2 26294:5 26304:1 26307:1 26311:1 26317:2 26318:1 26320:1 26328:1 26329:1 26334:2 26336:2 26348:1 26358:1 26363:2 26373:1 26379:5 26387:1 26400:1 26410:4 26411:1 26416:2 26420:2 26422:2 26479:1 26482:1 26494:2 26495:1 26511:1 26519:1 26523:1 26534:1 26538:1 26560:3 26563:1 26579:1 26589:1 26590:4 26591:1 26593:2 26598:1 26614:6 26624:1 26643:1 26646:1 26648:1 26650:1 26654:2 26656:1 26662:1 26668:1 26689:1 26698:1 26706:1 26716:1 26741:1 26754:3 26760:1 26768:1 26776:4 26795:1 26805:1 26826:1 26832:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26892:1 26893:1 26897:1 26898:1 26901:1 26902:1 26907:2 26918:2 26925:1 26939:1 26949:1 26954:1 26957:2 26974:1 26979:2 26983:5 26989:1 26997:1 26998:2 27006:1 27020:5 27042:1 27046:1 27047:5 27069:1 27070:2 27074:1 27089:1 27091:1 27094:2 27095:1 27101:1 27107:2 27118:1 27119:1 27127:3 27132:1 27138:2 27157:2 27174:1 27178:7 27179:1 27209:1 27212:8 27216:1 27220:1 27234:1 27236:1 27239:1 27260:2 27278:1 27279:1 27289:1 27299:4 27311:1 27320:2 27321:4 27322:1 27327:1 27329:1 27330:1 27334:3 27335:3 27341:1 27372:1 27375:5 27378:1 27381:1 27387:1 27388:1 27389:2 27392:1 27406:3 27415:2 27419:1 27421:2 27438:2 27439:2 27453:1 27454:2 27459:1 27472:1 27482:1 27484:3 27510:2 27530:2 27534:1 27535:1 27539:1 27555:1 27572:1 27574:3 27583:5 27608:2 27612:1 27613:1 27651:1 27665:1 27670:1 27686:1 27691:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:2 27763:2 27767:2 27775:1 27780:2 27781:1 27787:1 27791:1 27792:3 27800:1 27804:1 27807:2 27822:1 27826:2 27845:1 27857:1 27859:1 27868:1 27869:1 27873:1 27875:1 27885:1 27888:1 27897:2 27912:2 27916:1 27917:2 27920:1 27924:5 27940:4 27957:5 27965:5 27966:1 27974:1 27975:2 27977:1 27990:1 27991:1 27997:1 28011:5 28025:2 28033:1 28043:1 28044:10 28071:1 28083:1 28087:2 28097:1 28098:2 28101:1 28102:3 28103:1 28109:13 28121:1 28146:1 28151:6 28177:1 28188:2 28189:1 28193:1 28213:2 28218:8 28225:2 28226:3 28227:1 28239:1 28242:2 28246:1 28251:4 28261:1 28266:1 28277:3 28297:1 28300:1 28315:1 28318:1 28319:3 28322:1 28326:1 28335:2 28337:1 28347:1 28361:3 28372:1 28377:2 28381:1 28384:1 28391:1 28398:1 28407:2 28409:1 28414:2 28416:1 28418:1 28420:2 28441:1 28448:1 28458:2 28459:1 28469:1 28499:1 28529:1 28533:1 28554:5 28555:1 28557:1 28564:1 28588:1 28589:1 28598:1 28600:2 28616:6 28619:1 28620:2 28627:1 28637:1 28649:1 28672:1 28681:1 28686:1 28688:2 28714:1 28722:1 28736:1 28743:1 28746:1 28755:2 28779:1 28801:1 28802:1 28825:3 28845:1 28858:1 28860:7 28872:1 28876:1 28893:1 28896:4 28905:1 28907:1 28919:1 28928:2 28938:1 28946:2 28958:1 28959:1 28961:1 28978:1 28979:1 28980:2 28983:1 28987:2 28992:34 28993:4 28996:5 28998:1 28999:3 29011:2 29017:1 29034:11 29043:1 29048:1 29092:3 29100:2 29107:1 29115:1 29120:2 29131:1 29132:5 29142:7 29146:2 29176:13 29177:1 29180:2 29184:3 29186:2 29190:2 29198:1 29202:4 29210:1 29213:1 29216:1 29221:2 29224:1 29228:2 29236:2 29237:2 29238:1 29245:2 29251:2 29262:1 29267:3 29268:2 29274:1 29276:1 29278:4 29281:1 29286:1 29293:1 29295:1 29300:1 29302:3 29307:1 29324:1 29343:1 29347:2 29354:1 29362:2 29364:1 29365:1 29379:1 29383:1 29387:1 29388:1 29391:2 29405:5 29409:1 29420:2 29447:1 29448:1 29449:2 29461:1 29471:1 29473:2 29474:3 29477:1 29498:1 29504:1 29514:1 29515:1 29518:1 29522:1 29524:1 29525:1 29529:3 29532:6 29538:2 29539:1 29542:2 29548:1 29550:1 29551:1 29559:2 29560:1 29566:2 29567:1 29569:1 29570:1 29579:1 29584:1 29587:2 29608:1 29632:1 29635:1 29646:1 29648:1 29652:1 29659:1 29678:1 29682:2 29684:1 29688:3 29706:1 29712:1 29716:1 29717:1 29718:2 29722:2 29723:2 29727:1 29736:2 29740:3 29743:1 29747:1 29749:1 29758:1 29766:1 29767:8 29773:2 29774:2 29777:1 29780:10 29782:1 29786:1 29788:1 29790:1 29801:1 29814:1 29828:1 29832:1 29839:2 29840:1 29882:3 29887:1 29890:1 29900:1 29914:4 29918:1 29920:3 29925:1 29927:1 29931:6 29936:1 29940:1 29949:1 29969:1 29970:1 30000:1 30001:2 30002:1 30011:2 30012:1 30015:1 30035:2 30053:2 30058:4 30081:2 30088:2 30104:1 30108:2 30113:1 30122:1 30136:2 30142:1 30143:2 30150:2 30162:1 30187:1 30194:7 30206:1 30208:1 30210:1 30227:1 30231:7 30243:6 30244:1 30250:1 30273:1 30299:1 30311:1 30317:1 30320:8 30322:3 30324:4 30326:1 30328:1 30331:3 30332:3 30344:1 30353:1 30362:2 30363:3 30367:3 30371:3 30406:1 30408:1 30421:1 9 11:1 14:2 21:1 30:1 34:1 43:1 50:7 63:1 74:1 79:1 83:1 85:1 93:1 99:1 103:1 107:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 163:2 176:1 180:2 187:1 189:3 201:1 206:5 207:1 230:1 236:8 238:1 257:1 262:1 277:1 283:1 303:1 309:2 315:2 318:1 325:1 327:40 338:2 355:1 356:5 357:5 360:2 362:1 366:1 378:4 380:1 383:1 385:1 397:2 419:1 441:2 460:4 469:1 474:1 475:1 478:1 480:1 496:1 500:1 504:1 547:1 550:1 558:1 589:2 591:5 592:1 600:2 603:4 625:4 635:2 637:2 638:1 639:1 657:2 671:1 682:4 685:1 691:1 693:3 703:1 724:1 732:3 736:1 747:1 750:1 758:2 774:1 783:1 788:2 791:1 802:1 804:1 809:1 819:3 824:1 833:2 843:1 854:1 856:2 857:1 867:1 880:1 883:10 885:3 897:1 899:3 900:1 911:1 914:17 916:1 917:1 929:1 933:1 938:6 939:1 940:1 941:9 944:1 946:4 952:1 953:1 959:1 961:1 964:4 976:1 978:1 985:2 986:3 997:1 1000:1 1005:1 1022:1 1023:1 1032:3 1045:1 1052:6 1054:2 1060:2 1076:1 1080:2 1084:1 1085:1 1102:1 1103:1 1115:2 1125:1 1126:1 1133:1 1141:1 1142:1 1143:2 1148:2 1156:3 1163:1 1164:2 1172:1 1176:2 1187:1 1188:1 1194:2 1201:3 1206:1 1213:1 1226:1 1230:1 1238:1 1252:1 1254:1 1258:2 1287:1 1289:1 1291:2 1292:2 1300:2 1303:1 1307:1 1311:1 1313:1 1333:1 1336:1 1342:1 1353:2 1358:1 1379:1 1380:1 1393:1 1404:1 1411:3 1434:1 1441:2 1443:1 1461:1 1464:2 1468:6 1471:10 1474:1 1487:2 1489:1 1490:3 1491:2 1493:3 1494:2 1510:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1583:8 1584:1 1614:2 1621:1 1636:1 1639:1 1641:3 1642:3 1650:1 1652:1 1655:1 1658:2 1677:6 1680:1 1684:2 1700:1 1701:3 1706:6 1712:2 1732:1 1733:1 1751:2 1752:2 1768:1 1775:1 1785:1 1803:1 1814:4 1818:1 1827:1 1830:2 1844:4 1852:1 1856:1 1863:1 1873:1 1878:1 1883:1 1884:1 1886:2 1887:2 1900:1 1908:1 1911:1 1934:1 1935:1 1952:1 1954:1 1956:2 1958:19 1965:1 1970:2 1981:2 1986:1 1991:1 1995:1 1996:1 1997:1 2008:1 2011:1 2018:9 2019:2 2051:1 2053:1 2057:2 2063:4 2069:2 2075:1 2088:3 2095:1 2100:3 2102:1 2107:1 2112:1 2120:2 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2178:1 2186:1 2195:1 2207:1 2208:1 2210:1 2211:2 2213:1 2216:2 2218:6 2219:1 2220:1 2223:2 2226:1 2229:1 2232:1 2234:5 2238:5 2239:2 2240:5 2241:1 2243:1 2245:1 2251:1 2255:4 2258:1 2274:1 2276:1 2278:5 2280:2 2281:2 2284:2 2285:9 2288:5 2291:1 2292:2 2293:5 2296:1 2297:1 2298:1 2301:3 2306:1 2309:2 2311:2 2314:2 2316:6 2318:2 2319:9 2331:1 2332:2 2334:1 2348:1 2369:1 2380:2 2381:2 2386:1 2393:1 2407:1 2411:1 2418:1 2420:1 2430:4 2437:5 2438:1 2439:1 2445:1 2448:1 2453:1 2457:2 2460:1 2466:2 2482:5 2493:10 2505:1 2509:1 2511:1 2515:1 2532:1 2537:1 2545:1 2561:5 2570:7 2577:1 2588:1 2593:1 2595:3 2603:2 2608:4 2615:3 2618:2 2620:1 2623:1 2632:2 2637:1 2661:2 2666:1 2682:1 2685:1 2690:1 2699:2 2701:4 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2730:2 2740:2 2745:1 2748:1 2761:1 2763:3 2764:1 2766:1 2784:3 2810:1 2815:1 2816:2 2817:1 2821:7 2825:4 2831:6 2840:1 2841:1 2848:1 2880:1 2882:1 2883:3 2889:2 2890:2 2904:2 2912:2 2930:1 2933:8 2935:2 2941:28 2945:1 2948:1 2959:4 2975:2 2980:1 2982:1 2987:1 2995:1 3002:16 3021:1 3024:1 3029:1 3032:6 3036:9 3037:1 3038:1 3039:1 3050:1 3061:1 3064:1 3068:1 3082:1 3086:1 3092:1 3095:2 3096:1 3097:1 3129:1 3146:4 3162:1 3169:1 3176:1 3177:2 3178:1 3184:1 3190:1 3210:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3287:1 3293:1 3304:2 3312:6 3317:1 3322:2 3325:2 3332:1 3338:1 3339:1 3343:1 3348:1 3357:1 3361:1 3370:1 3374:1 3384:1 3386:5 3416:1 3431:2 3434:14 3481:1 3487:1 3510:2 3518:1 3537:1 3544:1 3551:1 3557:2 3558:1 3561:1 3562:1 3563:2 3564:2 3568:2 3571:1 3578:1 3581:2 3587:2 3601:1 3615:2 3619:2 3621:1 3626:1 3628:1 3635:2 3640:1 3645:1 3648:1 3665:4 3670:1 3672:1 3674:1 3678:2 3681:8 3699:6 3705:2 3706:1 3708:6 3709:2 3712:1 3715:1 3719:1 3736:2 3741:6 3751:1 3754:1 3773:1 3784:1 3787:1 3791:3 3792:3 3796:1 3799:1 3800:2 3803:3 3816:1 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:14 3863:1 3873:1 3882:1 3884:1 3888:1 3895:5 3897:1 3903:2 3904:13 3905:4 3906:1 3911:1 3912:2 3923:3 3924:7 3927:1 3932:1 3938:1 3945:1 3955:1 3956:4 3958:1 3964:1 3966:1 3967:1 3969:1 3978:1 3981:2 3985:1 3986:1 3992:1 3993:1 3994:1 4000:1 4004:2 4016:1 4019:4 4022:3 4032:2 4037:1 4045:1 4047:1 4053:3 4054:1 4058:3 4063:3 4066:1 4077:6 4084:1 4085:1 4089:2 4090:2 4093:2 4094:1 4098:1 4099:3 4100:2 4108:5 4109:5 4114:1 4128:1 4129:1 4141:1 4144:1 4153:1 4165:1 4169:2 4177:1 4181:2 4187:6 4195:1 4196:2 4197:1 4204:1 4221:1 4236:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:7 4307:2 4315:1 4316:1 4319:1 4321:1 4325:1 4364:1 4366:1 4374:1 4378:2 4381:2 4388:1 4401:1 4405:2 4412:1 4420:2 4421:1 4450:1 4455:2 4462:1 4466:2 4469:1 4474:5 4494:1 4504:1 4535:1 4545:1 4546:4 4555:1 4572:1 4576:2 4584:1 4593:1 4598:1 4601:2 4612:1 4625:1 4631:2 4637:2 4661:1 4665:1 4668:1 4675:1 4680:1 4688:1 4697:3 4699:2 4719:1 4724:1 4728:3 4735:1 4741:5 4749:1 4751:1 4754:4 4761:1 4772:2 4774:1 4775:1 4788:2 4789:1 4804:1 4807:8 4830:1 4843:1 4854:1 4870:1 4875:1 4879:1 4889:1 4896:1 4903:8 4907:1 4911:1 4918:2 4921:1 4935:3 4944:1 4951:1 4954:1 4986:3 5009:1 5019:30 5021:3 5024:1 5041:3 5043:1 5052:1 5058:4 5071:1 5078:2 5083:7 5091:1 5093:2 5115:2 5117:2 5131:1 5132:1 5134:1 5135:7 5151:5 5152:8 5153:1 5154:1 5155:1 5157:1 5159:5 5160:2 5162:1 5163:4 5165:1 5166:2 5170:1 5171:1 5173:6 5175:3 5176:1 5178:1 5180:1 5184:1 5185:2 5187:4 5188:4 5192:1 5209:1 5210:1 5211:1 5212:1 5219:1 5238:1 5242:1 5246:1 5271:3 5277:2 5279:1 5284:1 5294:1 5299:2 5317:1 5321:1 5326:3 5327:1 5328:3 5336:2 5337:1 5343:1 5344:3 5359:1 5367:1 5374:1 5385:1 5396:2 5404:6 5409:1 5435:1 5437:1 5441:1 5459:1 5464:1 5466:1 5482:1 5487:1 5506:1 5512:3 5518:8 5520:1 5522:1 5528:1 5535:2 5538:2 5551:1 5553:1 5555:1 5567:2 5592:1 5602:1 5607:2 5611:1 5612:1 5625:1 5650:1 5663:1 5664:2 5679:1 5680:3 5691:1 5692:2 5693:2 5696:1 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5730:2 5733:1 5736:1 5745:1 5750:1 5758:3 5763:1 5765:1 5767:1 5772:1 5780:1 5786:1 5792:3 5797:1 5808:5 5815:1 5816:1 5849:3 5870:1 5873:4 5882:1 5888:1 5897:3 5898:1 5911:3 5914:4 5917:1 5921:2 5939:1 5945:1 5959:2 5975:1 5977:1 5987:1 5994:1 6001:1 6007:1 6011:1 6021:2 6022:1 6028:1 6059:4 6065:1 6066:1 6085:1 6097:1 6102:2 6129:1 6152:1 6171:1 6183:4 6184:1 6202:3 6204:1 6205:20 6226:5 6229:1 6231:4 6238:1 6242:1 6246:1 6247:1 6248:5 6249:2 6257:1 6280:3 6288:1 6297:1 6301:1 6303:1 6308:1 6325:3 6345:1 6348:1 6356:1 6364:1 6380:2 6384:2 6385:1 6390:1 6400:1 6404:3 6410:1 6426:7 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:2 6488:1 6501:4 6503:1 6505:1 6506:1 6507:2 6510:1 6511:2 6515:4 6517:1 6518:3 6519:3 6520:6 6522:1 6523:1 6525:4 6526:15 6527:5 6530:3 6539:1 6568:1 6571:1 6591:3 6646:4 6648:1 6649:1 6652:1 6681:2 6683:1 6686:1 6699:2 6743:1 6749:1 6750:1 6752:1 6763:1 6769:1 6777:1 6786:1 6797:3 6798:1 6803:1 6813:1 6814:1 6816:1 6822:4 6832:1 6833:1 6836:1 6841:1 6844:1 6851:2 6855:2 6897:1 6898:2 6903:2 6909:1 6911:3 6916:1 6919:2 6920:1 6924:1 6929:1 6940:10 6949:1 6960:2 6968:4 6973:1 6985:1 6987:1 6997:1 7002:1 7014:1 7015:1 7019:1 7029:1 7045:4 7047:1 7049:2 7058:4 7086:3 7087:3 7091:3 7098:1 7100:1 7113:3 7114:2 7128:1 7131:1 7142:2 7147:2 7148:1 7150:2 7154:1 7160:1 7169:1 7172:1 7177:2 7183:1 7202:1 7212:1 7220:1 7233:1 7245:1 7253:15 7255:1 7266:1 7273:1 7281:3 7300:1 7302:1 7306:2 7310:3 7312:2 7321:1 7332:1 7336:1 7337:1 7369:2 7379:1 7388:1 7411:4 7416:1 7420:1 7435:2 7452:1 7479:2 7486:1 7491:3 7495:1 7500:1 7505:6 7506:1 7509:1 7516:1 7521:1 7525:1 7527:1 7535:1 7539:1 7549:6 7554:4 7555:1 7559:1 7579:2 7583:1 7596:3 7597:1 7603:2 7611:1 7622:1 7627:2 7644:1 7663:1 7672:3 7690:2 7706:1 7719:1 7723:1 7725:1 7726:2 7749:1 7756:3 7757:15 7758:8 7763:1 7769:1 7771:2 7779:1 7784:3 7785:4 7786:2 7812:5 7813:1 7831:65 7836:2 7854:9 7855:16 7857:1 7860:4 7871:1 7878:1 7883:2 7892:1 7899:1 7908:1 7911:1 7923:2 7940:4 7941:2 7944:2 7964:1 7966:1 7967:2 7982:2 8014:1 8017:1 8035:2 8059:1 8062:3 8072:1 8087:1 8090:1 8093:3 8108:1 8112:8 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8201:1 8209:1 8223:1 8226:1 8233:1 8250:1 8255:1 8258:1 8265:3 8266:3 8267:2 8269:1 8285:2 8287:2 8301:1 8303:1 8306:1 8317:2 8319:1 8324:2 8330:1 8333:2 8338:2 8339:1 8343:1 8347:1 8348:4 8357:1 8358:13 8376:1 8389:3 8394:2 8400:2 8417:1 8447:1 8452:1 8461:2 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8559:2 8564:1 8566:1 8569:1 8589:1 8591:1 8599:5 8604:2 8614:4 8615:1 8620:3 8624:3 8628:1 8629:4 8635:1 8638:1 8646:1 8656:1 8664:5 8667:2 8669:2 8671:2 8674:1 8701:1 8711:1 8716:1 8721:1 8728:1 8734:1 8736:1 8739:3 8740:9 8743:4 8744:3 8746:1 8748:3 8749:8 8752:3 8753:4 8755:1 8757:2 8767:3 8768:2 8778:1 8784:4 8790:2 8792:8 8801:1 8812:1 8816:3 8820:1 8822:2 8826:2 8829:2 8834:2 8837:5 8838:1 8853:2 8860:1 8891:1 8892:2 8898:1 8906:1 8907:1 8909:1 8917:1 8930:1 8933:1 8939:1 8958:1 8968:2 8973:2 8974:1 8988:1 9008:1 9017:3 9024:1 9033:2 9041:3 9059:1 9063:2 9066:1 9073:4 9074:2 9078:3 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9166:1 9168:1 9171:1 9177:1 9188:2 9199:7 9202:2 9213:1 9218:1 9220:2 9222:1 9223:1 9241:3 9252:1 9261:1 9263:1 9275:1 9276:2 9278:1 9292:3 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:4 9373:1 9386:1 9387:1 9394:3 9401:2 9403:1 9411:1 9420:2 9421:1 9425:1 9436:1 9459:1 9463:2 9466:2 9467:8 9469:1 9470:1 9474:3 9477:1 9482:1 9486:40 9489:4 9490:2 9497:1 9508:2 9510:1 9513:1 9520:1 9522:2 9523:1 9526:1 9535:1 9548:4 9567:3 9572:1 9583:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:8 9634:2 9650:1 9659:1 9660:1 9676:1 9684:5 9689:1 9693:1 9702:1 9704:1 9724:1 9728:1 9749:1 9751:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9814:1 9824:1 9828:3 9831:1 9832:1 9843:1 9844:1 9845:6 9851:1 9861:1 9867:1 9869:6 9877:2 9886:3 9895:2 9907:1 9919:2 9949:9 9955:1 9962:2 9963:1 9965:1 9966:6 9972:2 9974:2 9986:1 9991:1 9993:1 9995:2 10004:1 10005:1 10017:2 10035:3 10053:1 10057:1 10061:1 10065:1 10081:1 10084:1 10088:1 10089:2 10093:1 10108:7 10113:1 10120:1 10126:1 10130:1 10135:4 10142:2 10143:2 10145:1 10147:2 10149:1 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10181:1 10185:1 10186:3 10196:3 10198:1 10202:2 10203:2 10206:1 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10232:1 10240:6 10260:1 10268:1 10279:1 10288:1 10290:2 10302:1 10308:1 10309:1 10323:1 10329:3 10330:1 10336:1 10345:1 10368:1 10374:1 10377:1 10391:1 10397:1 10399:2 10400:1 10401:1 10402:1 10418:2 10443:1 10466:1 10469:1 10479:1 10481:1 10484:1 10487:2 10489:1 10514:2 10515:1 10520:1 10525:2 10544:2 10548:1 10550:6 10570:1 10576:2 10584:2 10588:1 10590:2 10608:2 10609:1 10625:5 10630:2 10638:2 10653:1 10655:1 10689:1 10690:1 10694:1 10699:1 10712:3 10720:1 10722:1 10724:1 10744:1 10751:1 10764:2 10767:1 10769:2 10776:1 10787:2 10788:1 10790:4 10794:2 10796:1 10800:9 10809:1 10810:1 10811:1 10813:1 10820:1 10823:1 10824:3 10837:2 10840:1 10841:3 10844:4 10846:1 10854:1 10865:3 10866:1 10867:1 10876:4 10878:4 10879:1 10886:2 10888:1 10890:2 10892:1 10895:1 10916:1 10921:1 10932:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:4 10990:15 11055:1 11056:1 11059:1 11065:1 11067:2 11079:1 11095:1 11112:4 11115:1 11117:1 11137:1 11159:1 11162:1 11175:2 11180:1 11193:1 11211:1 11219:1 11224:1 11236:1 11240:1 11253:2 11254:4 11257:4 11260:2 11262:2 11266:1 11269:3 11283:2 11291:1 11297:1 11298:2 11299:1 11302:1 11312:1 11313:1 11323:1 11347:8 11351:1 11352:1 11364:1 11372:7 11377:1 11378:1 11381:2 11385:1 11411:1 11433:1 11434:2 11435:2 11437:1 11443:1 11444:1 11452:1 11456:1 11457:1 11468:1 11477:1 11482:1 11490:1 11501:1 11507:2 11516:1 11520:1 11534:1 11536:2 11544:1 11551:1 11554:1 11557:1 11566:1 11579:1 11583:5 11590:1 11602:1 11613:2 11616:1 11627:1 11637:1 11643:2 11650:1 11653:3 11659:1 11660:1 11662:1 11674:2 11675:1 11677:2 11682:2 11686:4 11706:11 11715:1 11749:3 11752:14 11753:1 11755:1 11772:1 11775:1 11783:1 11789:2 11790:1 11797:2 11813:1 11819:2 11820:1 11830:1 11831:2 11848:2 11849:1 11850:1 11852:1 11853:1 11860:1 11861:2 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:3 11930:4 11933:8 11958:1 11960:7 11962:7 11963:1 11989:1 11994:1 12006:1 12009:2 12011:2 12012:3 12016:1 12018:1 12020:3 12022:2 12025:1 12026:2 12029:3 12030:1 12032:1 12038:1 12042:2 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:7 12077:2 12085:1 12097:8 12108:2 12111:1 12116:1 12127:1 12132:2 12134:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:2 12241:1 12263:1 12265:2 12291:1 12297:1 12304:5 12306:1 12313:4 12315:1 12321:1 12340:1 12346:1 12359:3 12362:5 12363:1 12382:1 12411:5 12414:1 12426:2 12433:1 12439:1 12442:1 12445:1 12464:1 12505:2 12516:1 12519:1 12526:1 12531:1 12540:1 12542:1 12543:3 12544:4 12545:2 12557:1 12560:2 12571:1 12580:2 12592:1 12593:2 12596:1 12602:4 12603:5 12608:3 12611:1 12615:2 12619:2 12654:1 12668:1 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:10 12747:1 12753:2 12775:1 12782:3 12785:1 12790:1 12798:1 12799:1 12806:1 12807:1 12810:2 12824:3 12828:1 12843:2 12847:2 12872:2 12880:1 12890:1 12896:1 12899:4 12904:3 12911:1 12934:1 12935:1 12946:1 12950:1 12953:1 12954:7 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13079:2 13091:8 13100:1 13108:1 13113:1 13114:1 13116:1 13126:1 13131:19 13136:1 13139:1 13142:1 13151:3 13153:7 13155:1 13161:2 13180:1 13182:1 13189:1 13192:1 13195:4 13199:3 13222:2 13238:1 13246:1 13250:1 13255:2 13256:7 13259:2 13270:2 13274:1 13281:1 13283:1 13285:1 13288:1 13291:3 13292:1 13315:2 13330:5 13333:1 13334:1 13339:1 13341:1 13362:1 13363:1 13364:1 13393:1 13406:1 13410:1 13417:1 13450:1 13452:1 13454:7 13458:1 13465:1 13474:1 13496:1 13503:1 13504:1 13523:1 13548:2 13550:8 13556:1 13568:1 13573:4 13576:1 13581:1 13584:1 13588:8 13595:4 13600:1 13609:2 13611:6 13632:1 13633:1 13647:2 13649:1 13652:1 13663:2 13665:1 13666:1 13684:2 13690:5 13715:1 13726:2 13732:2 13734:1 13736:1 13744:1 13747:8 13748:1 13754:1 13756:6 13757:2 13764:1 13772:1 13773:1 13774:2 13781:2 13786:2 13800:3 13802:1 13807:1 13808:1 13811:1 13829:2 13830:7 13833:1 13840:1 13847:3 13854:1 13862:2 13865:2 13880:2 13887:7 13909:1 13913:1 13915:1 13933:4 13937:1 13938:6 13961:1 13973:2 13987:4 13993:1 14004:1 14008:1 14018:1 14019:1 14036:2 14051:1 14075:1 14076:3 14081:2 14092:2 14094:1 14109:1 14116:7 14118:1 14120:2 14123:6 14124:2 14127:2 14131:1 14135:1 14138:1 14146:1 14149:1 14153:1 14170:5 14186:1 14191:3 14198:2 14201:2 14204:1 14205:1 14233:1 14243:8 14254:1 14277:4 14290:3 14292:1 14299:1 14304:2 14316:1 14317:1 14339:7 14343:1 14345:3 14346:1 14352:2 14359:2 14379:2 14398:1 14399:1 14401:1 14414:1 14426:5 14445:11 14455:1 14486:1 14489:2 14495:2 14508:1 14510:2 14525:1 14530:1 14531:1 14535:1 14542:2 14560:3 14577:7 14586:2 14591:1 14602:3 14610:1 14611:1 14613:1 14617:1 14624:1 14643:1 14649:1 14651:1 14658:1 14667:4 14668:1 14669:1 14681:1 14702:1 14705:1 14718:1 14720:1 14730:2 14732:1 14741:1 14751:3 14757:2 14768:2 14779:1 14780:1 14783:3 14794:4 14795:1 14796:4 14797:9 14800:1 14803:8 14808:1 14812:5 14814:3 14815:2 14825:1 14833:1 14835:1 14836:1 14861:1 14871:1 14908:2 14913:1 14914:1 14921:1 14927:5 14932:1 14961:3 14971:2 14974:2 14978:1 14979:4 14984:4 14987:1 14990:1 14996:2 15003:1 15012:1 15013:3 15023:1 15032:1 15037:3 15038:1 15060:1 15084:4 15099:3 15106:2 15109:3 15112:2 15113:1 15118:2 15126:2 15129:2 15134:6 15137:1 15152:3 15157:2 15161:1 15166:2 15176:1 15181:1 15183:1 15210:1 15213:1 15253:1 15266:1 15270:1 15278:2 15303:2 15328:4 15329:1 15332:2 15334:1 15347:1 15349:2 15350:1 15395:2 15396:1 15408:11 15410:1 15424:3 15425:2 15427:1 15428:3 15435:1 15444:1 15449:11 15450:3 15470:2 15483:2 15494:2 15497:1 15498:1 15506:1 15510:1 15511:1 15532:8 15535:1 15538:1 15543:1 15549:1 15569:2 15586:1 15599:1 15624:1 15638:6 15641:1 15649:1 15651:1 15655:1 15667:1 15668:1 15670:2 15681:2 15683:1 15689:1 15692:4 15693:1 15698:2 15700:1 15711:1 15715:1 15718:1 15727:1 15734:1 15735:1 15736:1 15739:1 15746:1 15748:1 15754:1 15756:1 15760:1 15761:3 15763:1 15768:1 15774:2 15789:1 15796:1 15820:2 15828:1 15849:1 15863:13 15870:2 15882:1 15886:2 15918:1 15924:4 15938:1 15941:1 15950:5 15951:1 15961:6 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16057:1 16062:1 16081:1 16114:6 16118:2 16128:13 16133:4 16140:2 16141:3 16151:1 16160:2 16165:5 16171:2 16172:1 16173:9 16174:4 16176:1 16184:1 16189:1 16228:1 16233:2 16243:2 16263:1 16266:1 16274:1 16275:2 16281:1 16282:4 16301:1 16303:1 16306:10 16312:1 16322:1 16325:2 16335:2 16339:1 16345:1 16348:1 16359:3 16387:2 16397:1 16403:6 16404:3 16406:1 16410:1 16411:1 16452:1 16458:1 16459:7 16468:1 16472:1 16478:1 16484:7 16488:3 16499:2 16536:2 16552:1 16553:4 16586:2 16591:1 16599:1 16600:1 16603:1 16607:1 16612:19 16613:1 16615:2 16618:1 16624:1 16629:5 16633:2 16635:2 16640:1 16641:2 16649:1 16652:1 16663:1 16670:2 16690:8 16693:1 16698:1 16707:2 16714:1 16716:1 16717:1 16718:1 16719:1 16721:1 16726:1 16733:1 16734:1 16740:2 16741:1 16745:3 16756:2 16760:1 16763:1 16789:1 16791:4 16812:1 16826:5 16828:1 16829:1 16830:2 16850:1 16876:1 16881:1 16882:1 16885:1 16896:1 16922:1 16944:1 16955:1 16960:1 16963:1 16966:6 16990:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17068:1 17084:1 17085:1 17099:1 17101:1 17110:1 17111:4 17131:1 17133:1 17156:1 17158:1 17167:1 17177:2 17178:1 17181:1 17188:1 17212:1 17216:1 17227:1 17234:1 17237:3 17241:1 17245:2 17255:4 17266:1 17272:1 17278:2 17279:1 17281:1 17287:3 17288:3 17291:1 17299:1 17310:1 17322:1 17335:1 17337:1 17338:1 17347:1 17360:1 17362:3 17372:1 17374:1 17379:1 17396:1 17399:1 17407:5 17411:2 17413:6 17419:1 17436:1 17440:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:2 17499:5 17506:1 17510:1 17516:2 17535:5 17545:1 17551:5 17553:1 17564:1 17565:1 17569:2 17580:1 17584:2 17586:1 17613:1 17617:1 17625:2 17630:2 17632:2 17639:6 17642:1 17646:2 17666:1 17668:7 17671:1 17684:1 17685:2 17690:1 17700:1 17711:3 17712:2 17735:5 17737:3 17750:1 17754:1 17761:2 17762:3 17763:3 17777:3 17778:7 17779:1 17787:4 17792:1 17820:1 17823:1 17825:1 17832:1 17844:1 17850:2 17857:2 17862:1 17898:1 17921:1 17941:1 17942:2 17946:1 17962:1 17968:4 17975:2 17980:2 17991:1 18000:1 18004:1 18018:1 18019:1 18024:1 18025:2 18037:1 18039:2 18041:4 18043:3 18050:6 18051:1 18053:1 18060:7 18065:2 18070:3 18071:1 18072:2 18076:1 18106:1 18110:2 18126:5 18127:4 18141:1 18146:1 18151:2 18154:3 18172:1 18185:2 18189:1 18196:7 18200:1 18208:1 18210:2 18212:1 18213:1 18240:1 18245:1 18252:2 18255:2 18256:2 18259:1 18263:2 18264:1 18276:1 18281:3 18283:5 18286:1 18288:1 18291:1 18294:1 18302:1 18304:4 18308:2 18323:1 18324:1 18327:1 18335:1 18344:1 18365:1 18366:3 18395:1 18403:2 18418:1 18422:2 18424:9 18426:1 18430:4 18433:1 18436:39 18441:1 18444:1 18447:1 18451:2 18455:1 18459:1 18466:1 18476:5 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18528:1 18532:1 18537:3 18543:1 18546:1 18548:1 18549:5 18550:1 18553:1 18569:1 18575:1 18586:1 18591:6 18602:1 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:4 18698:1 18708:1 18712:1 18713:1 18716:1 18720:2 18723:2 18736:5 18738:1 18740:2 18750:1 18761:3 18768:1 18774:1 18780:2 18781:1 18805:1 18812:1 18828:1 18840:1 18843:1 18845:1 18865:1 18867:1 18881:1 18888:2 18891:3 18905:1 18915:2 18918:1 18928:1 18935:1 18962:3 18968:5 18969:1 18992:1 19001:3 19028:1 19038:1 19069:5 19081:1 19095:1 19106:1 19113:2 19125:1 19148:2 19152:3 19153:3 19157:1 19166:1 19172:2 19188:1 19191:9 19199:1 19211:1 19218:1 19225:1 19229:1 19234:1 19237:1 19243:1 19245:3 19251:2 19254:5 19255:1 19259:1 19275:1 19279:1 19281:1 19287:5 19291:3 19294:3 19300:1 19304:2749 19308:1 19318:1 19324:1 19354:1 19359:1 19367:4 19368:1 19377:3 19383:1 19401:2 19402:1 19413:1 19418:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:2 19506:1 19507:1 19521:1 19529:4 19535:7 19542:1 19548:5 19551:4 19552:5 19554:1 19568:1 19580:1 19583:1 19616:2 19624:1 19629:8 19633:2 19635:2 19641:1 19642:1 19665:1 19666:40 19675:1 19686:1 19692:7 19716:1 19729:1 19747:1 19756:1 19761:1 19762:1 19772:1 19774:2 19794:1 19796:1 19804:1 19808:1 19820:1 19822:1 19824:1 19826:1 19833:1 19837:2 19844:5 19857:1 19860:2 19868:4 19882:2 19898:3 19908:1 19920:1 19927:1 19928:1 19948:2 19953:1 19957:1 19964:1 19978:2 19981:2 19982:4 20010:2 20014:1 20018:4 20021:4 20027:1 20033:1 20036:4 20038:3 20039:1 20043:4 20049:1 20053:1 20058:1 20064:1 20074:7 20078:1 20082:1 20091:2 20092:2 20106:2 20108:1 20112:2 20123:2 20124:1 20127:5 20131:14 20147:1 20148:1 20172:8 20173:1 20181:1 20183:2 20184:1 20188:1 20198:1 20228:1 20242:2 20244:1 20247:3 20249:1 20296:1 20300:1 20304:1 20313:2 20317:1 20329:5 20331:1 20334:1 20336:3 20338:1 20339:2 20351:3 20353:1 20372:1 20374:5 20375:1 20383:1 20387:3 20393:1 20399:1 20429:1 20434:1 20463:2 20466:1 20468:2 20501:3 20516:1 20528:1 20559:3 20570:1 20571:1 20577:1 20581:2 20584:4 20588:1 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:5 20616:2 20620:8 20622:1 20624:3 20629:5 20641:1 20642:2 20657:1 20664:1 20666:1 20681:1 20687:1 20692:3 20705:1 20708:1 20733:3 20735:1 20754:2 20756:5 20760:2 20778:1 20783:2 20786:1 20790:1 20791:5 20805:1 20807:1 20817:5 20818:1 20828:1 20832:1 20844:2 20848:2 20850:2 20852:1 20868:1 20875:1 20884:1 20886:1 20901:2 20912:5 20918:1 20920:1 20923:1 20928:3 20932:1 20941:3 20947:1 20962:2 20964:2 20980:2 21002:6 21012:1 21018:1 21019:1 21032:1 21057:10 21058:3 21062:6 21068:2 21074:1 21080:1 21081:1 21120:1 21125:1 21126:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21168:1 21178:1 21204:1 21217:1 21220:1 21221:1 21246:1 21251:1 21255:3 21258:1 21259:4 21265:1 21271:1 21273:1 21279:1 21290:1 21296:1 21298:1 21299:9 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:3 21390:1 21398:1 21405:1 21407:2 21429:4 21437:1 21440:1 21464:1 21468:1 21469:1 21470:1 21472:1 21475:1 21498:2 21503:2 21505:1 21508:1 21511:1 21514:2 21515:1 21522:1 21526:1 21529:5 21539:1 21540:1 21546:4 21547:2 21549:1 21550:1 21552:2 21553:1 21561:1 21564:1 21574:7 21579:1 21584:1 21587:3 21588:4 21595:1 21599:1 21605:1 21613:7 21647:1 21650:2 21656:2 21658:1 21659:3 21660:1 21673:3 21675:1 21702:3 21712:1 21731:1 21739:1 21751:1 21761:1 21788:1 21796:2 21802:2 21804:1 21810:1 21832:1 21836:2 21840:2 21863:8 21872:1 21873:1 21875:1 21878:1 21880:1 21883:1 21894:2 21901:1 21907:2 21952:2 21965:1 21971:1 21975:1 21976:1 21979:2 21985:1 21989:1 22002:1 22005:1 22022:3 22026:2 22029:1 22045:1 22048:1 22056:1 22058:3 22061:1 22076:1 22078:1 22081:1 22082:1 22091:1 22122:1 22129:1 22131:1 22142:2 22149:1 22160:2 22169:2 22170:1 22176:1 22177:1 22194:1 22210:1 22219:1 22225:1 22240:1 22241:3 22243:1 22250:1 22254:6 22256:1 22257:1 22258:2 22265:2 22266:2 22268:1 22272:4 22273:3 22275:2 22282:2 22283:1 22287:1 22289:1 22291:1 22292:1 22293:1 22298:3 22312:1 22321:1 22325:3 22332:1 22338:1 22346:4 22359:1 22361:2 22363:2 22365:1 22370:4 22371:2 22374:1 22376:2 22378:1 22381:1 22383:4 22391:2 22392:1 22401:1 22408:1 22413:1 22415:11 22419:1 22432:1 22433:2 22436:5 22437:1 22447:2 22455:1 22464:1 22477:1 22491:2 22504:1 22507:2 22511:1 22513:4 22514:1 22519:1 22525:11 22529:1 22532:2 22539:1 22543:3 22559:1 22561:3 22562:1 22575:1 22593:1 22601:2 22616:1 22624:1 22625:1 22628:1 22632:1 22635:1 22659:2 22661:1 22665:7 22672:1 22676:1 22678:1 22679:2 22681:2 22682:1 22688:1 22695:1 22696:1 22697:6 22698:3 22699:1 22711:1 22716:2 22720:1 22729:2 22735:1 22738:1 22752:2 22766:2 22768:1 22790:1 22798:3 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:5 22892:4 22893:3 22896:1 22897:2 22902:2 22909:1 22913:1 22924:1 22931:1 22933:1 22940:3 22943:1 22947:3 22959:2 22961:2 22975:3 22994:1 23013:1 23017:1 23023:1 23029:1 23033:3 23034:3 23042:1 23052:5 23053:6 23056:3 23057:1 23059:2 23060:1 23063:1 23072:3 23073:1 23089:1 23096:2 23109:1 23111:5 23118:1 23124:1 23125:2 23131:3 23134:3 23136:1 23142:3 23144:2 23145:5 23154:1 23162:2 23165:1 23170:1 23173:1 23174:1 23177:1 23178:3 23185:1 23193:1 23205:2 23226:1 23228:1 23229:2 23231:1 23233:1 23241:1 23243:1 23249:2 23251:3 23255:1 23260:1 23263:4 23270:1 23290:1 23291:9 23292:1 23302:1 23306:1 23309:2 23315:39 23320:1 23321:4 23323:4 23326:2 23327:3 23329:5 23333:1 23334:1 23336:2 23351:1 23352:4 23354:1 23361:3 23364:1 23368:3 23384:2 23385:3 23389:1 23400:3 23403:1 23419:1 23425:3 23437:1 23440:1 23454:1 23487:6 23491:1 23497:1 23501:11 23509:3 23530:3 23535:2 23552:1 23560:1 23569:2 23594:1 23596:2 23600:1 23602:3 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:4 23655:2 23662:1 23663:1 23664:1 23685:1 23701:1 23702:3 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23827:2 23828:1 23830:1 23837:2 23844:1 23858:1 23859:1 23860:1 23869:2 23872:1 23885:1 23887:2 23888:2 23894:1 23903:2 23906:1 23908:2 23914:2 23926:3 23927:1 23928:1 23944:3 23952:5 23955:2 23977:3 23978:1 23982:1 23984:1 23992:3 23997:1 24001:1 24017:1 24020:1 24035:1 24038:1 24066:1 24079:1 24086:1 24107:3 24125:1 24129:1 24141:1 24144:2 24153:1 24161:1 24166:1 24169:3 24172:3 24173:1 24180:1 24181:1 24187:2 24196:3 24209:2 24214:3 24215:1 24218:1 24220:2 24228:1 24232:1 24241:1 24258:2 24270:3 24278:1 24280:5 24282:1 24288:1 24291:3 24293:2 24309:2 24325:1 24333:1 24335:2 24336:1 24343:13 24351:1 24376:2 24393:1 24406:1 24423:2 24424:1 24425:1 24435:1 24443:2 24457:1 24476:3 24484:2 24488:2 24497:1 24513:1 24515:1 24522:1 24526:6 24533:2 24543:1 24558:1 24561:2 24566:1 24581:1 24592:1 24594:1 24598:1 24601:4 24604:1 24620:11 24622:2 24623:1 24631:1 24638:7 24648:1 24649:1 24652:1 24661:2 24670:1 24713:1 24725:1 24728:1 24731:1 24736:1 24746:3 24748:2 24761:1 24762:1 24764:2 24774:2 24788:1 24791:2 24801:1 24822:1 24825:2 24839:1 24862:1 24863:1 24872:1 24900:1 24902:4 24912:6 24914:1 24915:1 24923:4 24927:1 24944:2 24947:1 24955:2 24956:1 24957:1 24964:1 24965:1 24973:2 24974:2 24995:3 24998:1 25011:1 25025:1 25028:3 25030:2 25032:1 25036:1 25060:4 25068:1 25075:1 25085:1 25087:3 25093:2 25099:3 25100:2 25101:1 25106:1 25115:1 25117:1 25124:1 25127:1 25136:1 25147:1 25148:1 25150:1 25156:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:3 25220:1 25221:2 25222:1 25224:8 25226:3 25227:1 25228:4 25229:2 25234:1 25235:2 25236:2 25238:5 25248:2 25249:4 25255:2 25262:2 25268:6 25273:2 25281:1 25297:1 25300:3 25301:1 25311:1 25315:3 25327:1 25332:1 25337:7 25343:3 25363:2 25369:1 25370:1 25380:1 25381:3 25393:1 25395:1 25410:1 25414:1 25415:3 25439:1 25460:1 25463:1 25478:1 25504:3 25530:4 25540:1 25545:6 25565:3 25566:1 25570:1 25576:1 25590:1 25596:1 25601:1 25602:2 25604:1 25613:1 25616:1 25619:1 25647:3 25648:1 25655:1 25666:1 25684:1 25692:2 25693:2 25718:2 25743:1 25746:1 25752:3 25762:1 25767:1 25769:1 25778:1 25781:2 25785:3 25794:2 25797:1 25828:7 25861:1 25879:2 25885:1 25887:2 25900:1 25903:4 25909:1 25910:1 25915:2 25922:1 25927:1 25929:1 25931:4 25987:1 25988:1 26007:1 26011:2 26023:4 26025:8 26060:13 26069:1 26083:10 26092:1 26094:1 26104:1 26112:1 26122:1 26127:1 26136:1 26138:1 26144:1 26146:2 26150:1 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26208:1 26216:2 26236:1 26240:2 26242:1 26248:2 26252:1 26257:1 26259:1 26261:2 26263:6 26270:1 26280:2 26285:2 26288:12 26293:2 26294:5 26304:1 26307:1 26311:1 26317:2 26318:1 26320:1 26328:1 26329:2 26334:2 26336:2 26348:1 26358:1 26363:2 26373:1 26379:5 26387:1 26400:1 26410:4 26411:1 26416:2 26420:2 26422:2 26479:1 26482:1 26494:2 26495:1 26511:1 26519:1 26523:1 26534:1 26538:1 26560:3 26563:1 26578:1 26579:1 26589:1 26590:4 26591:1 26593:2 26598:1 26614:6 26624:1 26643:1 26646:1 26648:1 26650:1 26654:2 26656:1 26662:1 26668:1 26689:1 26698:1 26706:1 26716:1 26741:1 26754:3 26760:1 26768:1 26776:4 26795:1 26805:1 26826:1 26832:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26892:1 26893:1 26897:1 26898:1 26901:1 26902:1 26907:2 26918:2 26925:1 26931:1 26939:1 26949:1 26954:1 26957:2 26974:1 26979:2 26983:5 26989:1 26997:1 26998:2 27006:1 27020:5 27042:1 27046:2 27047:5 27069:1 27070:2 27074:1 27089:1 27091:1 27094:2 27095:1 27101:1 27107:2 27118:1 27119:1 27127:3 27132:1 27138:2 27157:2 27174:1 27178:7 27179:1 27209:1 27212:9 27216:1 27220:1 27234:1 27236:1 27239:1 27260:2 27278:1 27279:1 27289:1 27299:4 27311:1 27320:2 27321:4 27322:1 27327:1 27329:1 27330:1 27334:3 27335:3 27341:1 27372:1 27375:5 27378:1 27381:1 27387:1 27388:1 27389:2 27392:1 27406:3 27415:2 27419:1 27421:2 27438:2 27439:2 27453:1 27454:2 27459:1 27472:1 27482:1 27484:3 27510:2 27530:2 27534:1 27535:1 27539:1 27555:1 27572:1 27574:3 27583:5 27608:2 27612:1 27613:1 27651:1 27665:1 27670:1 27686:1 27691:1 27705:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:2 27763:2 27767:2 27775:1 27780:2 27781:1 27787:1 27791:1 27792:3 27800:1 27804:1 27807:2 27822:1 27826:2 27832:1 27845:1 27857:1 27859:1 27868:1 27869:1 27873:1 27875:1 27885:1 27888:1 27897:2 27912:2 27916:1 27917:2 27920:1 27924:6 27940:4 27957:6 27965:5 27966:1 27974:1 27975:2 27977:1 27990:1 27991:1 27997:1 28011:5 28025:2 28033:1 28043:1 28044:11 28071:1 28083:1 28087:2 28097:1 28098:2 28101:1 28102:3 28103:1 28109:13 28121:1 28146:1 28151:6 28177:1 28188:2 28189:1 28193:1 28200:1 28213:2 28218:8 28225:2 28226:3 28227:1 28239:1 28242:2 28246:1 28251:4 28261:1 28266:1 28277:3 28297:1 28300:1 28311:1 28315:1 28318:1 28319:3 28322:1 28326:1 28335:2 28337:1 28347:1 28361:3 28372:1 28377:2 28381:1 28384:1 28391:1 28398:1 28407:2 28409:1 28414:2 28416:1 28418:1 28420:2 28441:1 28448:1 28458:2 28459:1 28469:1 28499:1 28529:1 28533:1 28554:5 28555:1 28557:1 28564:1 28588:1 28589:1 28598:1 28600:2 28616:6 28619:1 28620:2 28627:1 28637:1 28649:1 28672:1 28681:1 28686:1 28688:2 28714:1 28722:1 28736:1 28743:1 28746:1 28755:2 28779:1 28801:1 28802:1 28825:3 28845:1 28858:1 28860:7 28872:1 28876:1 28893:1 28896:4 28905:1 28907:1 28912:1 28919:1 28928:2 28938:1 28946:2 28958:1 28959:1 28961:1 28978:1 28979:1 28980:2 28983:1 28987:2 28992:35 28993:4 28996:5 28998:1 28999:3 29011:2 29017:1 29034:11 29043:1 29048:1 29092:3 29100:2 29107:1 29115:1 29120:2 29131:1 29132:5 29142:7 29146:2 29176:14 29177:1 29180:2 29184:4 29186:2 29190:2 29198:1 29202:4 29210:1 29213:1 29216:1 29221:2 29224:1 29228:2 29236:2 29237:2 29238:1 29245:2 29251:2 29262:1 29267:3 29268:2 29274:1 29276:1 29278:4 29281:1 29286:1 29293:1 29295:1 29300:1 29302:3 29307:1 29324:1 29343:1 29347:2 29354:1 29362:2 29364:1 29365:1 29379:1 29383:1 29387:1 29388:1 29391:2 29405:5 29409:1 29420:2 29447:1 29448:1 29449:2 29461:1 29471:1 29473:2 29474:3 29477:1 29489:1 29498:1 29504:1 29514:1 29515:1 29518:1 29522:1 29524:1 29525:1 29529:3 29532:6 29538:2 29539:1 29542:2 29548:1 29550:1 29551:1 29559:2 29560:1 29566:2 29567:1 29569:1 29570:1 29579:1 29584:1 29587:2 29608:1 29632:1 29635:1 29646:1 29648:1 29652:1 29659:1 29678:1 29682:2 29684:1 29688:3 29706:1 29712:1 29716:1 29717:1 29718:2 29722:2 29723:2 29727:1 29736:2 29740:3 29743:1 29747:1 29749:1 29758:1 29766:1 29767:8 29773:2 29774:2 29777:1 29780:10 29782:1 29786:1 29788:1 29790:1 29801:1 29814:1 29828:1 29832:1 29839:2 29840:1 29882:3 29887:1 29890:1 29900:1 29914:4 29918:1 29920:3 29925:1 29927:1 29931:6 29936:1 29940:1 29949:1 29969:1 29970:1 30000:1 30001:2 30002:1 30005:1 30011:3 30012:1 30015:1 30035:2 30053:2 30058:5 30081:2 30088:2 30104:1 30108:2 30113:1 30122:1 30136:2 30142:1 30143:2 30150:2 30162:1 30187:1 30194:7 30206:1 30208:1 30210:1 30227:1 30231:7 30243:6 30244:1 30250:1 30273:1 30299:1 30311:1 30317:1 30320:8 30322:3 30324:4 30326:1 30328:2 30331:3 30332:3 30344:1 30353:1 30362:2 30363:4 30367:3 30371:3 30406:1 30408:1 30421:1 9 11:1 14:2 21:1 30:1 34:1 43:1 50:7 63:1 74:1 79:1 83:1 85:1 93:1 99:1 103:1 107:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 163:2 176:1 180:3 187:1 189:3 201:1 206:5 207:1 230:1 236:8 238:1 257:1 262:1 277:2 283:1 303:1 309:2 315:2 318:1 325:1 327:40 338:2 355:1 356:5 357:5 360:2 362:1 366:1 378:4 380:1 383:1 385:1 393:1 397:2 419:1 441:2 460:4 469:1 474:1 475:1 478:1 480:1 496:1 500:1 504:1 547:1 550:1 558:1 589:2 591:5 592:1 600:2 603:4 625:4 635:2 637:2 638:1 639:1 657:2 671:1 682:4 685:1 691:1 693:3 703:1 724:1 732:3 736:1 747:1 750:1 758:2 774:1 783:1 788:2 791:1 802:1 803:1 804:1 809:1 819:3 824:1 833:2 843:1 854:1 856:2 857:1 867:1 880:1 883:10 885:3 897:1 899:3 900:1 911:1 914:17 916:1 917:1 929:1 933:1 938:6 939:1 940:1 941:9 944:1 946:4 952:1 953:1 959:1 961:1 964:4 976:1 978:1 985:2 986:3 997:1 1000:1 1005:1 1022:1 1023:1 1032:3 1045:1 1052:6 1054:2 1060:2 1076:1 1080:2 1084:1 1085:1 1102:1 1103:1 1115:2 1125:1 1126:1 1133:1 1141:1 1142:1 1143:2 1148:2 1156:3 1163:1 1164:2 1172:1 1176:2 1187:1 1188:1 1194:2 1201:3 1206:1 1213:1 1226:1 1230:1 1238:1 1252:1 1254:1 1258:2 1287:1 1289:1 1291:2 1292:2 1300:2 1303:2 1307:1 1311:1 1313:2 1333:1 1336:1 1342:1 1353:2 1358:1 1379:1 1380:1 1393:1 1404:1 1411:3 1434:1 1436:1 1441:2 1443:1 1461:1 1464:2 1468:6 1471:10 1474:1 1487:2 1489:1 1490:3 1491:2 1493:3 1494:2 1510:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:1 1571:2 1573:1 1574:1 1580:1 1583:8 1584:1 1614:2 1621:1 1636:1 1639:1 1641:3 1642:3 1650:1 1652:1 1655:1 1658:2 1677:6 1680:1 1684:2 1700:1 1701:3 1706:6 1712:2 1732:1 1733:1 1751:2 1752:2 1768:1 1775:1 1785:1 1803:1 1814:4 1818:1 1827:1 1830:2 1844:4 1852:1 1856:1 1863:2 1873:1 1878:1 1883:1 1884:1 1886:2 1887:2 1900:1 1908:1 1911:1 1934:1 1935:1 1952:1 1954:1 1956:2 1958:19 1965:1 1970:2 1981:2 1986:1 1991:1 1995:1 1996:1 1997:1 2008:1 2011:1 2018:9 2019:2 2051:1 2053:1 2057:3 2063:4 2069:2 2075:1 2088:3 2095:1 2100:3 2102:1 2107:1 2112:1 2120:2 2128:1 2130:1 2136:3 2143:2 2151:1 2152:1 2158:1 2161:1 2178:1 2186:1 2195:1 2207:1 2208:1 2210:1 2211:2 2213:1 2216:2 2218:6 2219:1 2220:1 2223:2 2226:1 2229:2 2232:1 2234:5 2238:5 2239:2 2240:5 2241:1 2243:1 2245:1 2251:1 2255:4 2258:1 2274:1 2276:1 2278:5 2280:2 2281:3 2284:2 2285:9 2288:5 2291:2 2292:2 2293:5 2296:1 2297:1 2298:1 2301:3 2306:1 2309:2 2311:2 2314:2 2316:6 2318:2 2319:9 2331:1 2332:2 2334:1 2348:2 2369:1 2379:1 2380:2 2381:2 2386:1 2393:1 2407:1 2411:1 2418:1 2420:1 2430:4 2437:5 2438:1 2439:1 2445:1 2448:1 2453:1 2457:2 2460:1 2466:2 2482:5 2493:10 2505:1 2509:1 2511:1 2515:1 2532:1 2537:1 2545:1 2561:5 2570:7 2577:1 2588:1 2593:1 2595:3 2603:2 2608:4 2615:3 2618:2 2620:1 2623:1 2632:2 2637:1 2661:2 2666:1 2682:1 2685:1 2690:1 2699:2 2701:4 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2730:2 2740:2 2745:1 2748:1 2761:1 2763:3 2764:1 2766:1 2784:3 2797:1 2810:1 2815:1 2816:2 2817:1 2821:7 2825:4 2831:6 2840:1 2841:1 2848:1 2880:1 2882:1 2883:3 2889:2 2890:2 2904:3 2912:2 2930:1 2933:8 2935:2 2941:28 2945:1 2948:1 2959:4 2975:2 2980:1 2982:1 2987:1 2995:1 3002:16 3021:1 3024:1 3029:1 3032:6 3036:9 3037:1 3038:1 3039:1 3050:1 3061:1 3064:1 3068:1 3082:1 3086:1 3092:1 3095:2 3096:1 3097:1 3129:1 3146:4 3162:1 3169:1 3176:1 3177:2 3178:1 3184:1 3190:1 3206:1 3210:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3287:1 3293:1 3304:2 3312:6 3317:1 3322:2 3325:2 3332:1 3338:1 3339:1 3343:1 3348:1 3357:1 3361:1 3370:1 3374:1 3384:1 3386:6 3416:1 3431:2 3434:14 3481:1 3487:1 3500:1 3510:2 3518:1 3537:1 3544:1 3551:1 3557:2 3558:1 3561:1 3562:1 3563:2 3564:2 3568:2 3571:1 3578:1 3581:2 3587:2 3601:1 3615:2 3619:2 3621:1 3626:1 3628:1 3635:2 3640:1 3645:1 3648:1 3665:4 3670:1 3672:1 3674:1 3678:2 3681:8 3699:7 3705:2 3706:1 3708:6 3709:2 3712:1 3715:1 3719:1 3736:2 3741:6 3751:1 3754:1 3773:1 3784:1 3787:1 3791:3 3792:3 3796:1 3799:1 3800:2 3803:3 3816:1 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:15 3863:1 3873:1 3882:1 3884:1 3888:1 3895:5 3897:1 3903:2 3904:13 3905:4 3906:1 3911:1 3912:2 3923:3 3924:7 3927:1 3932:1 3938:1 3945:1 3955:1 3956:4 3958:1 3964:1 3966:1 3967:1 3969:1 3978:1 3981:2 3985:1 3986:1 3990:1 3992:1 3993:1 3994:1 4000:1 4004:2 4016:1 4019:4 4022:3 4032:2 4037:1 4045:1 4047:1 4053:3 4054:1 4058:3 4063:3 4066:1 4077:6 4084:1 4085:1 4089:2 4090:2 4093:2 4094:1 4098:1 4099:3 4100:2 4108:5 4109:5 4114:1 4128:1 4129:1 4141:1 4144:1 4153:1 4165:1 4169:2 4177:1 4181:2 4187:6 4195:1 4196:2 4197:1 4204:1 4221:1 4236:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:7 4307:2 4315:1 4316:1 4319:1 4321:1 4325:1 4364:1 4366:1 4374:1 4378:2 4381:2 4388:1 4401:1 4405:3 4412:1 4420:2 4421:1 4450:1 4455:2 4462:1 4466:2 4469:1 4474:5 4494:1 4504:1 4535:1 4545:1 4546:4 4555:1 4572:1 4576:2 4584:1 4593:1 4598:1 4601:2 4612:1 4625:1 4631:2 4637:2 4661:1 4665:1 4668:1 4675:1 4680:1 4688:1 4697:3 4699:2 4719:1 4724:1 4728:3 4735:1 4741:5 4749:1 4751:1 4754:4 4761:1 4772:2 4774:1 4775:1 4788:2 4789:1 4804:1 4807:8 4830:1 4843:1 4854:1 4870:1 4875:1 4879:1 4889:1 4896:1 4903:8 4907:1 4911:1 4918:2 4921:1 4935:3 4944:1 4951:1 4954:1 4986:3 5009:1 5019:31 5021:4 5024:1 5041:3 5043:1 5052:1 5058:4 5071:1 5078:2 5083:7 5091:1 5093:2 5115:2 5117:3 5131:1 5132:1 5134:1 5135:7 5151:5 5152:8 5153:1 5154:1 5155:1 5157:1 5159:5 5160:2 5162:1 5163:4 5165:1 5166:2 5170:2 5171:1 5173:6 5175:3 5176:1 5178:1 5180:1 5184:1 5185:2 5187:4 5188:4 5192:1 5209:1 5210:1 5211:1 5212:1 5219:1 5238:1 5242:1 5246:1 5271:3 5277:2 5279:1 5284:1 5294:1 5299:2 5317:1 5321:1 5326:3 5327:1 5328:3 5336:2 5337:1 5343:1 5344:3 5359:1 5367:1 5374:1 5385:1 5396:2 5404:6 5409:1 5435:1 5437:1 5441:1 5459:1 5464:1 5466:1 5482:1 5487:1 5506:1 5512:3 5518:8 5520:1 5522:1 5528:1 5535:2 5538:3 5551:2 5553:1 5555:1 5567:2 5592:1 5602:1 5607:2 5611:1 5612:1 5625:1 5650:1 5663:1 5664:2 5679:1 5680:3 5691:1 5692:2 5693:2 5696:1 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5726:1 5730:2 5733:2 5736:1 5745:1 5750:1 5758:3 5763:1 5765:1 5767:1 5772:1 5780:1 5786:1 5792:3 5797:1 5808:5 5815:1 5816:1 5849:4 5870:1 5873:4 5882:1 5888:1 5897:3 5898:1 5911:3 5914:4 5917:1 5921:2 5939:1 5945:1 5959:2 5975:1 5977:1 5987:1 5994:1 6001:1 6007:1 6011:1 6021:2 6022:1 6028:1 6059:4 6065:1 6066:1 6085:1 6097:2 6102:2 6129:1 6152:1 6171:1 6183:4 6184:1 6202:3 6204:1 6205:20 6226:5 6229:1 6231:4 6238:1 6242:1 6243:1 6246:1 6247:1 6248:5 6249:2 6257:1 6280:3 6288:1 6297:1 6301:1 6303:1 6308:1 6325:3 6336:1 6345:1 6348:1 6356:1 6364:2 6380:2 6384:2 6385:1 6390:1 6400:1 6404:3 6410:1 6426:7 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:2 6488:1 6501:4 6503:1 6505:1 6506:1 6507:2 6510:1 6511:2 6515:4 6517:1 6518:3 6519:3 6520:7 6522:1 6523:1 6525:4 6526:16 6527:5 6530:3 6539:1 6568:1 6571:1 6591:3 6646:4 6648:1 6649:1 6652:1 6681:2 6683:1 6686:1 6699:2 6743:1 6749:1 6750:1 6752:1 6763:1 6769:1 6777:1 6786:1 6797:3 6798:1 6803:1 6813:1 6814:1 6816:1 6822:4 6832:1 6833:1 6836:1 6841:1 6844:1 6851:2 6855:3 6897:1 6898:2 6903:2 6909:1 6911:3 6916:1 6919:2 6920:1 6924:1 6929:1 6940:10 6949:1 6960:2 6968:4 6973:1 6985:1 6987:1 6997:1 7002:1 7014:1 7015:1 7019:1 7029:1 7045:4 7047:1 7049:2 7058:4 7086:3 7087:3 7091:3 7098:1 7100:1 7113:3 7114:2 7128:1 7131:1 7142:2 7147:2 7148:1 7150:2 7154:1 7160:1 7169:1 7172:1 7177:2 7183:1 7202:1 7212:1 7220:1 7233:1 7245:1 7253:15 7255:1 7266:2 7273:1 7281:3 7300:1 7302:1 7306:2 7310:3 7312:2 7321:1 7332:1 7336:1 7337:1 7369:2 7379:1 7388:1 7411:5 7416:1 7420:1 7435:2 7452:1 7479:2 7486:1 7491:3 7495:1 7500:1 7505:6 7506:1 7509:1 7516:1 7521:1 7525:1 7527:1 7535:1 7539:1 7542:1 7549:6 7554:4 7555:1 7559:1 7579:3 7583:1 7596:3 7597:1 7603:2 7611:1 7622:1 7627:2 7644:1 7663:1 7672:3 7690:2 7706:1 7719:1 7723:1 7725:1 7726:2 7749:1 7756:3 7757:15 7758:8 7763:1 7769:1 7771:2 7779:1 7784:3 7785:4 7786:2 7812:5 7813:1 7831:67 7836:2 7854:10 7855:16 7857:1 7860:4 7871:1 7878:1 7883:2 7892:1 7899:1 7904:1 7908:1 7911:1 7923:2 7940:4 7941:2 7944:2 7964:1 7966:1 7967:2 7982:2 8014:1 8017:1 8035:2 8059:1 8062:3 8072:1 8087:1 8090:1 8093:3 8108:1 8112:8 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8201:1 8209:1 8223:1 8226:1 8233:1 8250:1 8255:1 8258:1 8265:3 8266:3 8267:2 8269:1 8285:2 8287:2 8301:1 8303:1 8306:1 8317:2 8319:1 8324:2 8330:1 8333:2 8338:2 8339:1 8343:1 8347:1 8348:4 8357:1 8358:13 8376:1 8389:3 8394:2 8400:2 8417:2 8447:1 8452:1 8461:2 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8545:1 8559:2 8564:1 8566:1 8569:1 8589:1 8591:1 8599:5 8604:2 8614:4 8615:1 8620:3 8624:3 8628:1 8629:4 8635:1 8638:1 8646:1 8656:1 8664:5 8667:2 8669:2 8671:2 8674:1 8701:1 8711:1 8716:1 8721:1 8728:1 8734:1 8736:1 8739:3 8740:9 8743:4 8744:3 8746:1 8748:3 8749:8 8752:3 8753:4 8755:1 8757:2 8767:3 8768:2 8778:1 8784:4 8790:2 8792:9 8801:1 8812:1 8816:3 8820:1 8822:2 8826:2 8829:2 8834:2 8837:5 8838:1 8853:2 8860:1 8891:1 8892:2 8898:1 8906:1 8907:1 8909:1 8917:1 8930:1 8933:1 8939:1 8958:1 8968:2 8973:2 8974:1 8988:1 9008:1 9017:3 9024:1 9033:2 9041:3 9059:1 9063:2 9066:1 9073:4 9074:2 9078:3 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9166:1 9168:1 9171:1 9177:1 9188:2 9199:7 9202:2 9213:1 9218:1 9220:2 9222:1 9223:1 9241:3 9252:1 9261:1 9263:1 9275:1 9276:2 9278:1 9292:3 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:4 9373:1 9386:1 9387:1 9394:3 9401:2 9403:1 9411:1 9420:2 9421:1 9425:1 9436:1 9459:1 9463:2 9466:2 9467:8 9469:1 9470:1 9474:3 9477:1 9482:1 9486:40 9489:4 9490:2 9497:1 9508:2 9510:1 9513:1 9520:1 9522:2 9523:1 9526:1 9535:1 9548:4 9567:3 9572:1 9583:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:9 9634:2 9650:1 9659:1 9660:1 9676:1 9684:6 9689:1 9693:1 9699:1 9702:1 9704:1 9724:1 9728:1 9749:1 9751:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9814:1 9824:1 9828:3 9831:1 9832:1 9843:1 9844:1 9845:6 9851:1 9861:1 9867:1 9869:6 9877:2 9886:3 9895:2 9907:1 9919:2 9949:9 9955:1 9962:2 9963:1 9965:1 9966:6 9972:2 9974:2 9986:1 9991:1 9993:1 9995:2 10004:1 10005:1 10017:2 10035:3 10053:1 10057:1 10061:1 10065:1 10081:1 10084:1 10088:1 10089:2 10093:1 10108:7 10113:1 10120:1 10126:1 10130:1 10135:4 10139:1 10142:2 10143:2 10145:1 10147:2 10149:1 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10181:1 10185:1 10186:3 10196:3 10198:1 10202:2 10203:2 10206:1 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10232:1 10240:7 10260:1 10268:1 10279:1 10288:1 10290:2 10302:1 10308:1 10309:1 10323:1 10329:3 10330:1 10336:1 10345:1 10368:1 10370:1 10374:1 10377:1 10391:1 10397:1 10399:2 10400:1 10401:1 10402:1 10418:2 10443:1 10466:1 10469:1 10479:1 10481:1 10484:1 10487:2 10489:1 10514:2 10515:1 10520:1 10525:2 10544:2 10548:1 10550:6 10570:1 10576:3 10584:2 10588:1 10590:2 10608:2 10609:1 10625:5 10630:2 10638:2 10653:1 10655:2 10689:1 10690:1 10694:1 10699:1 10712:3 10720:1 10722:1 10724:1 10744:1 10746:1 10751:1 10764:2 10767:1 10769:2 10776:1 10787:2 10788:1 10790:4 10794:2 10796:1 10800:9 10809:1 10810:1 10811:1 10813:1 10820:1 10823:1 10824:3 10837:2 10840:2 10841:3 10844:4 10846:1 10854:1 10865:3 10866:1 10867:1 10876:4 10878:4 10879:1 10886:2 10888:1 10890:2 10892:1 10895:1 10916:1 10921:1 10932:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:4 10990:15 11055:1 11056:1 11059:1 11065:1 11067:2 11079:1 11095:1 11112:4 11115:1 11117:1 11137:1 11159:1 11162:1 11175:2 11180:1 11193:1 11211:1 11219:1 11224:1 11236:1 11240:1 11253:2 11254:4 11257:5 11260:2 11262:2 11266:1 11269:3 11283:2 11291:1 11297:1 11298:2 11299:1 11302:1 11312:1 11313:1 11323:1 11347:9 11351:1 11352:1 11364:1 11372:8 11377:1 11378:1 11381:2 11385:1 11411:1 11433:1 11434:2 11435:2 11437:1 11443:1 11444:1 11452:1 11456:1 11457:1 11468:1 11477:1 11482:1 11490:1 11501:1 11507:2 11516:1 11520:1 11534:1 11536:2 11544:1 11551:1 11554:1 11557:1 11566:1 11579:1 11583:5 11590:1 11602:1 11613:2 11616:1 11627:1 11637:1 11643:2 11650:1 11653:3 11659:1 11660:1 11662:1 11674:2 11675:1 11677:2 11682:2 11686:4 11706:11 11715:1 11749:3 11752:14 11753:1 11755:1 11772:1 11775:1 11783:1 11789:3 11790:1 11797:2 11812:1 11813:1 11819:2 11820:1 11830:1 11831:2 11848:2 11849:1 11850:1 11852:1 11853:1 11860:1 11861:2 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:3 11930:4 11933:8 11958:1 11960:8 11962:7 11963:1 11989:1 11994:1 12006:1 12009:2 12011:2 12012:3 12016:1 12018:1 12020:3 12022:2 12025:1 12026:2 12029:4 12030:1 12032:1 12038:1 12042:2 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:7 12077:2 12085:1 12097:8 12108:2 12111:1 12116:1 12127:1 12132:2 12134:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:2 12241:1 12263:1 12265:2 12291:1 12297:1 12304:5 12306:1 12313:4 12315:1 12321:1 12340:1 12346:1 12359:3 12362:5 12363:1 12382:1 12411:5 12414:1 12426:2 12433:1 12439:1 12442:1 12445:1 12464:1 12505:2 12516:1 12519:1 12526:1 12531:1 12540:1 12542:1 12543:3 12544:4 12545:2 12557:1 12560:2 12571:1 12580:2 12592:1 12593:2 12596:1 12602:4 12603:5 12608:3 12611:1 12615:2 12619:2 12654:1 12668:1 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:10 12747:1 12753:2 12775:1 12782:3 12785:1 12790:1 12798:1 12799:1 12806:1 12807:1 12810:2 12824:3 12828:1 12843:2 12847:2 12872:2 12880:1 12890:1 12896:1 12899:4 12904:3 12911:1 12934:1 12935:1 12946:1 12950:1 12953:1 12954:7 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13079:2 13091:8 13100:1 13108:1 13113:1 13114:1 13116:1 13126:1 13131:19 13136:1 13139:1 13142:1 13151:3 13153:7 13155:1 13161:2 13180:1 13182:1 13189:1 13192:1 13193:1 13195:4 13199:3 13222:2 13238:1 13246:1 13250:1 13255:2 13256:7 13259:2 13270:2 13274:1 13281:1 13283:1 13285:1 13288:1 13291:3 13292:1 13315:2 13330:5 13333:1 13334:1 13339:1 13341:1 13362:1 13363:1 13364:1 13393:1 13406:1 13410:1 13417:1 13450:1 13452:1 13454:7 13458:1 13465:1 13474:1 13496:1 13503:1 13504:1 13523:1 13548:2 13550:8 13556:1 13568:1 13573:4 13576:1 13581:1 13584:1 13588:8 13595:4 13600:1 13609:2 13611:6 13632:1 13633:1 13647:2 13649:1 13652:1 13663:2 13665:1 13666:1 13684:2 13690:5 13715:1 13726:2 13732:2 13734:1 13736:1 13744:2 13747:8 13748:1 13754:1 13756:6 13757:2 13764:1 13772:1 13773:1 13774:2 13781:2 13786:2 13800:3 13802:1 13807:1 13808:1 13811:1 13829:2 13830:7 13833:1 13840:1 13847:3 13854:1 13862:2 13865:2 13880:2 13887:7 13909:1 13913:1 13915:1 13933:4 13937:1 13938:6 13961:1 13973:2 13987:4 13993:1 14004:1 14008:1 14018:1 14019:1 14036:2 14051:1 14075:1 14076:3 14081:2 14092:2 14094:1 14109:1 14116:7 14118:1 14120:2 14123:7 14124:2 14127:2 14131:1 14135:1 14138:1 14146:1 14149:1 14153:1 14170:5 14186:1 14191:3 14198:2 14201:2 14204:1 14205:1 14233:1 14243:8 14254:1 14277:4 14290:3 14292:1 14299:1 14304:2 14316:1 14317:1 14339:7 14343:1 14345:4 14346:1 14352:2 14359:2 14379:2 14398:1 14399:1 14401:1 14414:1 14426:6 14445:11 14455:1 14486:1 14489:2 14495:2 14508:1 14510:2 14525:1 14530:1 14531:1 14535:1 14542:2 14560:3 14577:7 14586:2 14591:1 14602:3 14610:1 14611:1 14613:1 14617:1 14624:1 14643:1 14649:1 14651:1 14658:1 14667:4 14668:1 14669:1 14681:1 14702:1 14705:1 14718:1 14720:1 14730:2 14732:1 14741:1 14751:3 14757:2 14768:2 14779:1 14780:1 14783:3 14794:4 14795:1 14796:4 14797:9 14800:1 14803:9 14808:1 14812:5 14814:3 14815:2 14825:1 14833:1 14835:1 14836:1 14861:1 14871:1 14908:2 14913:1 14914:1 14921:1 14927:6 14932:1 14961:3 14971:2 14974:3 14978:1 14979:4 14984:4 14987:1 14990:1 14996:2 15003:1 15012:1 15013:3 15023:1 15032:1 15037:3 15038:1 15060:1 15084:4 15099:3 15106:2 15109:3 15112:2 15113:1 15118:2 15126:2 15129:2 15134:6 15137:1 15145:1 15152:3 15157:2 15161:1 15166:2 15176:1 15181:1 15183:1 15210:1 15213:1 15253:1 15266:1 15270:1 15278:2 15303:2 15328:4 15329:1 15332:2 15334:1 15347:1 15349:2 15350:1 15395:2 15396:1 15408:11 15410:1 15424:3 15425:2 15427:1 15428:3 15435:1 15444:1 15449:11 15450:3 15470:2 15483:2 15494:2 15497:1 15498:1 15506:1 15510:1 15511:1 15532:8 15535:1 15538:1 15543:1 15549:1 15569:2 15586:1 15599:1 15624:1 15638:6 15641:1 15649:1 15651:1 15655:1 15667:1 15668:1 15670:2 15681:3 15683:1 15689:1 15692:4 15693:1 15698:2 15700:1 15711:1 15715:1 15718:1 15727:1 15734:1 15735:1 15736:1 15739:1 15746:1 15748:1 15754:1 15756:1 15760:1 15761:3 15763:1 15768:1 15774:2 15789:1 15796:1 15820:2 15828:1 15849:1 15863:14 15870:2 15882:1 15886:2 15918:1 15924:4 15938:1 15941:1 15950:5 15951:1 15961:7 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16057:1 16062:1 16081:1 16114:6 16118:2 16128:13 16133:4 16140:2 16141:3 16151:1 16160:2 16165:5 16171:2 16172:1 16173:10 16174:4 16176:1 16184:1 16189:1 16228:1 16233:2 16239:1 16243:2 16263:1 16266:1 16274:1 16275:2 16281:1 16282:4 16301:1 16303:1 16306:10 16312:1 16322:1 16325:2 16335:2 16339:1 16345:1 16348:1 16359:3 16387:2 16397:1 16403:6 16404:3 16406:1 16410:1 16411:1 16452:1 16458:1 16459:7 16468:1 16472:1 16478:1 16484:7 16488:3 16499:2 16536:2 16552:1 16553:4 16586:2 16591:1 16599:1 16600:1 16603:1 16607:1 16612:19 16613:1 16615:2 16618:1 16624:1 16629:5 16633:2 16635:2 16640:1 16641:2 16649:1 16652:1 16663:1 16670:2 16690:9 16693:1 16698:1 16707:2 16714:1 16716:1 16717:1 16718:1 16719:1 16721:1 16726:1 16733:1 16734:1 16740:2 16741:1 16745:3 16756:2 16760:1 16763:1 16789:1 16791:4 16812:1 16826:5 16828:1 16829:1 16830:2 16850:1 16876:1 16881:1 16882:1 16885:1 16896:1 16922:1 16944:1 16955:1 16960:1 16963:1 16966:6 16990:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17068:1 17084:1 17085:1 17099:1 17101:1 17110:1 17111:4 17131:1 17133:1 17156:1 17158:1 17167:1 17177:2 17178:1 17181:1 17188:1 17212:1 17216:1 17227:1 17234:1 17237:3 17241:1 17245:2 17255:4 17266:1 17272:1 17278:2 17279:1 17281:1 17287:3 17288:3 17291:1 17299:1 17310:1 17322:1 17335:2 17337:1 17338:1 17347:1 17360:1 17362:3 17372:1 17374:1 17379:1 17396:1 17399:1 17407:5 17411:2 17413:6 17419:1 17436:1 17440:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:2 17499:5 17506:1 17510:1 17516:2 17535:5 17545:1 17551:5 17553:1 17564:1 17565:1 17569:2 17580:1 17584:2 17586:1 17613:1 17617:1 17625:2 17630:2 17632:2 17639:6 17642:1 17646:2 17666:1 17668:8 17671:1 17684:1 17685:2 17690:1 17700:1 17711:3 17712:2 17735:5 17737:3 17750:1 17754:1 17761:2 17762:3 17763:3 17777:3 17778:7 17779:1 17787:4 17792:1 17820:1 17823:1 17825:1 17832:1 17844:1 17850:2 17857:2 17862:1 17898:1 17921:1 17941:1 17942:2 17946:1 17962:1 17968:4 17975:2 17980:2 17991:1 18000:1 18004:1 18018:1 18019:1 18024:1 18025:2 18037:1 18039:3 18041:4 18043:4 18050:6 18051:1 18053:1 18060:7 18065:2 18070:3 18071:1 18072:2 18076:1 18106:1 18110:2 18126:5 18127:4 18141:1 18146:1 18151:2 18154:3 18172:1 18185:2 18189:1 18196:7 18200:1 18208:1 18210:2 18212:1 18213:1 18224:1 18240:1 18245:1 18252:2 18255:2 18256:2 18259:1 18263:2 18264:1 18276:1 18281:3 18283:5 18286:1 18288:1 18291:1 18294:1 18302:1 18304:4 18308:2 18323:1 18324:1 18327:1 18335:1 18344:1 18365:1 18366:3 18395:1 18403:2 18418:1 18422:2 18424:9 18426:1 18430:4 18433:1 18436:40 18441:1 18444:1 18447:1 18451:2 18455:1 18459:1 18466:1 18476:5 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18527:1 18528:1 18532:1 18537:4 18543:1 18546:1 18548:1 18549:5 18550:1 18553:1 18569:1 18575:1 18586:1 18591:6 18602:1 18604:1 18617:1 18630:1 18643:5 18680:1 18683:1 18695:4 18698:1 18708:1 18712:1 18713:1 18716:1 18720:2 18723:2 18736:5 18738:1 18740:2 18750:1 18761:3 18768:1 18774:1 18780:2 18781:1 18805:1 18812:1 18828:1 18840:1 18843:1 18845:1 18865:1 18867:1 18881:1 18888:2 18891:3 18905:1 18915:2 18918:1 18928:1 18935:1 18962:3 18968:5 18969:1 18985:1 18992:1 19001:3 19028:1 19038:1 19069:5 19081:1 19095:1 19106:2 19113:2 19125:1 19148:2 19152:4 19153:3 19157:1 19166:1 19172:2 19188:1 19191:9 19199:1 19211:1 19218:1 19225:1 19229:1 19234:1 19237:1 19243:1 19245:3 19251:2 19254:5 19255:1 19259:1 19275:1 19279:1 19281:1 19287:5 19291:3 19294:3 19300:1 19304:2813 19308:1 19318:1 19324:1 19354:1 19359:1 19367:4 19368:1 19377:3 19383:1 19401:2 19402:1 19413:1 19418:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:2 19506:1 19507:1 19521:1 19529:4 19535:7 19542:1 19548:5 19551:4 19552:5 19554:1 19568:1 19580:1 19583:1 19616:2 19624:1 19629:8 19633:2 19635:2 19641:1 19642:1 19665:1 19666:40 19675:1 19686:1 19692:7 19716:1 19729:1 19747:1 19756:1 19761:1 19762:1 19772:1 19774:2 19794:1 19796:1 19804:1 19808:1 19820:1 19822:1 19824:1 19826:1 19833:1 19837:2 19844:5 19857:1 19860:2 19868:4 19882:2 19898:3 19908:1 19920:1 19927:1 19928:1 19948:2 19953:1 19957:1 19964:1 19978:2 19981:2 19982:4 20010:2 20014:1 20018:4 20021:4 20027:1 20033:1 20036:4 20038:3 20039:1 20043:4 20049:1 20053:1 20058:1 20064:1 20074:7 20078:1 20082:1 20091:2 20092:2 20106:2 20108:1 20112:2 20123:2 20124:1 20127:5 20131:14 20147:1 20148:1 20172:8 20173:1 20181:1 20183:2 20184:1 20188:1 20198:1 20199:1 20228:1 20242:2 20244:1 20247:3 20249:1 20296:1 20300:1 20304:1 20313:2 20317:1 20329:5 20331:1 20334:1 20336:3 20338:1 20339:2 20351:3 20353:1 20372:1 20374:6 20375:1 20383:1 20387:3 20393:1 20399:1 20429:1 20434:1 20463:3 20466:1 20468:2 20501:3 20516:1 20528:1 20559:3 20570:1 20571:1 20577:1 20581:2 20584:4 20588:1 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:5 20616:2 20620:8 20622:1 20624:3 20629:5 20641:1 20642:2 20657:1 20664:1 20666:1 20681:1 20687:1 20692:3 20705:1 20708:1 20733:3 20735:1 20754:2 20756:5 20760:2 20778:1 20783:2 20786:1 20790:1 20791:5 20805:1 20807:1 20817:5 20818:1 20828:1 20832:1 20844:2 20848:2 20850:2 20852:1 20868:1 20875:1 20884:1 20886:1 20901:2 20911:1 20912:5 20918:1 20920:1 20923:1 20928:3 20932:1 20941:3 20947:1 20962:2 20964:2 20980:2 21002:6 21012:1 21018:1 21019:1 21032:1 21057:10 21058:3 21062:6 21068:2 21074:1 21080:1 21081:1 21120:1 21125:1 21126:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21168:1 21178:1 21204:1 21217:1 21220:1 21221:1 21236:1 21246:1 21251:1 21255:3 21258:1 21259:4 21265:1 21271:1 21273:1 21279:1 21290:1 21296:1 21298:1 21299:9 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:3 21390:1 21398:1 21405:1 21407:2 21429:4 21437:1 21440:1 21464:1 21468:1 21469:1 21470:1 21472:1 21475:1 21498:2 21503:2 21505:1 21508:1 21511:1 21514:2 21515:1 21522:1 21526:1 21529:5 21539:1 21540:1 21546:4 21547:2 21549:1 21550:1 21552:2 21553:1 21561:1 21564:1 21567:1 21574:7 21579:1 21584:1 21587:3 21588:4 21595:1 21599:1 21605:1 21613:7 21647:1 21650:2 21656:2 21658:1 21659:4 21660:1 21673:3 21675:1 21702:3 21712:1 21731:1 21739:1 21751:1 21761:1 21785:1 21788:1 21796:2 21802:2 21804:1 21810:1 21832:1 21836:2 21840:2 21863:8 21872:1 21873:1 21875:1 21878:1 21880:1 21883:1 21894:2 21901:1 21907:2 21952:2 21965:1 21971:1 21975:1 21976:1 21979:2 21985:1 21989:1 22002:1 22005:1 22022:3 22026:2 22029:1 22045:1 22048:1 22056:1 22058:3 22061:1 22076:1 22078:1 22081:1 22082:1 22091:1 22122:1 22129:1 22131:1 22142:2 22149:1 22160:2 22169:2 22170:1 22176:1 22177:1 22194:1 22210:1 22219:1 22225:1 22240:1 22241:3 22243:1 22250:1 22254:6 22256:1 22257:1 22258:2 22265:2 22266:2 22268:1 22272:5 22273:3 22275:2 22282:2 22283:1 22287:1 22289:1 22291:1 22292:1 22293:1 22294:1 22298:3 22312:1 22321:1 22325:3 22332:1 22338:1 22346:5 22359:1 22361:2 22363:2 22365:1 22370:4 22371:2 22374:1 22376:2 22378:1 22381:1 22383:4 22391:2 22392:1 22401:1 22408:1 22413:1 22415:11 22419:1 22432:1 22433:2 22436:5 22437:1 22447:2 22455:1 22464:1 22477:1 22491:2 22504:1 22507:2 22511:1 22513:4 22514:1 22519:1 22525:12 22529:1 22532:2 22539:1 22543:3 22559:1 22561:4 22562:1 22575:1 22593:1 22601:3 22616:1 22624:1 22625:1 22628:1 22632:1 22635:1 22659:2 22661:1 22665:7 22672:1 22676:1 22678:1 22679:2 22681:2 22682:1 22688:1 22695:1 22696:1 22697:7 22698:3 22699:1 22711:1 22716:2 22720:1 22729:2 22735:1 22738:1 22752:2 22766:2 22768:1 22790:1 22798:4 22801:1 22802:1 22818:1 22834:1 22838:1 22843:1 22870:3 22876:1 22886:5 22892:4 22893:3 22896:1 22897:2 22902:2 22909:1 22913:1 22924:1 22931:1 22933:1 22940:3 22943:1 22947:3 22959:2 22961:2 22975:4 22994:1 23013:1 23017:1 23023:1 23029:1 23033:3 23034:3 23042:1 23052:5 23053:6 23056:3 23057:1 23059:2 23060:1 23063:1 23072:3 23073:1 23089:1 23096:2 23109:1 23111:5 23118:1 23124:1 23125:2 23131:3 23134:3 23136:1 23142:3 23144:2 23145:5 23154:1 23162:2 23165:1 23170:1 23173:1 23174:1 23177:1 23178:3 23185:1 23193:1 23205:2 23226:1 23228:1 23229:2 23231:1 23233:1 23241:1 23243:1 23249:2 23251:3 23255:1 23260:1 23263:4 23270:1 23290:1 23291:9 23292:1 23302:1 23306:1 23309:2 23315:40 23320:1 23321:4 23323:4 23326:2 23327:3 23329:5 23333:1 23334:1 23336:2 23351:1 23352:4 23354:1 23361:3 23364:1 23368:3 23384:2 23385:3 23389:1 23391:1 23400:3 23403:1 23419:1 23425:4 23437:1 23440:1 23454:1 23487:6 23491:1 23497:1 23501:11 23509:3 23530:3 23535:2 23552:1 23560:1 23569:2 23594:1 23596:2 23600:1 23602:3 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:4 23655:2 23662:1 23663:1 23664:1 23685:1 23701:1 23702:3 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23827:2 23828:1 23830:1 23837:2 23844:1 23858:1 23859:1 23860:1 23869:2 23872:1 23885:1 23887:2 23888:2 23894:1 23903:2 23906:1 23908:2 23914:2 23926:3 23927:1 23928:1 23944:3 23952:5 23955:2 23977:3 23978:1 23982:1 23984:1 23992:3 23997:1 24001:1 24017:1 24020:1 24035:1 24038:1 24066:1 24079:1 24086:1 24107:3 24125:1 24129:1 24141:1 24144:2 24153:1 24161:1 24166:1 24169:3 24172:3 24173:1 24180:1 24181:1 24187:2 24196:3 24209:3 24214:3 24215:1 24218:1 24220:2 24228:1 24232:1 24241:1 24258:2 24270:3 24278:1 24280:5 24282:1 24288:1 24291:3 24293:2 24309:2 24325:1 24333:2 24335:2 24336:1 24343:13 24351:1 24376:2 24393:1 24406:1 24423:2 24424:1 24425:1 24435:1 24443:2 24457:1 24475:1 24476:3 24484:2 24488:2 24497:1 24512:1 24513:1 24515:1 24522:1 24526:6 24533:2 24543:1 24558:1 24561:2 24566:1 24581:1 24592:1 24594:1 24598:1 24601:4 24604:1 24620:11 24622:2 24623:1 24631:1 24638:8 24648:1 24649:1 24652:1 24661:2 24670:1 24713:1 24725:1 24728:1 24731:1 24736:1 24746:3 24748:2 24761:1 24762:1 24764:2 24774:2 24778:1 24788:1 24791:2 24801:1 24822:1 24825:2 24839:1 24862:1 24863:1 24872:1 24884:1 24900:1 24902:4 24912:6 24914:1 24915:1 24923:4 24927:1 24944:3 24947:1 24955:2 24956:1 24957:1 24964:1 24965:1 24973:2 24974:2 24995:3 24998:1 25011:1 25025:1 25028:3 25030:2 25032:1 25036:1 25060:4 25068:1 25075:1 25085:1 25087:3 25093:2 25099:3 25100:2 25101:1 25106:1 25115:1 25117:2 25124:1 25127:1 25136:1 25147:1 25148:1 25150:1 25156:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:3 25220:1 25221:2 25222:1 25224:8 25226:3 25227:1 25228:4 25229:2 25234:1 25235:2 25236:2 25238:5 25248:2 25249:4 25255:2 25262:2 25268:6 25273:2 25281:1 25297:1 25300:3 25301:1 25311:1 25315:3 25327:1 25332:2 25337:7 25343:3 25363:2 25369:1 25370:1 25380:1 25381:3 25393:1 25395:1 25410:1 25414:1 25415:3 25439:1 25460:1 25463:1 25478:1 25504:3 25530:5 25540:1 25545:6 25565:3 25566:1 25570:1 25576:1 25590:1 25596:1 25601:1 25602:2 25604:1 25613:1 25616:1 25619:1 25647:3 25648:1 25655:1 25666:1 25684:1 25692:2 25693:3 25718:2 25743:1 25746:1 25752:3 25762:1 25767:1 25769:1 25778:1 25781:2 25785:3 25794:2 25797:1 25828:7 25861:1 25879:2 25885:1 25887:2 25900:1 25903:4 25909:1 25910:1 25915:2 25922:1 25927:1 25929:1 25931:4 25987:1 25988:1 26007:1 26011:2 26023:4 26025:9 26060:13 26069:1 26083:10 26092:1 26094:1 26104:1 26112:1 26122:1 26127:1 26136:1 26138:1 26144:1 26146:2 26150:1 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26208:1 26216:2 26236:1 26240:2 26242:1 26248:2 26252:1 26257:1 26259:1 26261:2 26263:6 26270:1 26274:1 26280:2 26285:2 26288:12 26293:2 26294:5 26304:1 26307:1 26311:1 26317:2 26318:1 26320:1 26328:1 26329:2 26334:2 26336:2 26348:1 26358:1 26363:2 26373:1 26379:5 26387:1 26400:1 26410:4 26411:1 26416:2 26420:2 26422:2 26479:1 26482:1 26494:2 26495:1 26511:1 26519:1 26523:1 26534:1 26538:1 26560:3 26563:1 26578:1 26579:1 26589:1 26590:4 26591:1 26593:2 26598:1 26614:6 26624:1 26643:1 26646:1 26648:1 26650:1 26654:2 26656:1 26662:1 26668:1 26689:1 26698:1 26706:1 26716:1 26741:1 26754:3 26760:1 26768:1 26776:4 26795:1 26805:1 26826:1 26832:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26892:1 26893:1 26897:1 26898:1 26901:1 26902:1 26907:2 26918:2 26925:1 26931:1 26939:1 26949:1 26954:1 26957:2 26970:1 26974:1 26979:2 26983:5 26989:1 26997:1 26998:2 27006:1 27020:5 27042:1 27046:2 27047:5 27069:1 27070:2 27074:1 27089:1 27091:1 27094:2 27095:1 27101:1 27107:2 27118:1 27119:1 27127:3 27132:1 27138:2 27157:2 27174:1 27178:7 27179:1 27209:2 27212:10 27216:1 27220:1 27234:1 27236:1 27239:1 27260:2 27278:1 27279:1 27289:1 27299:4 27311:1 27320:2 27321:4 27322:1 27327:1 27328:1 27329:1 27330:1 27334:3 27335:3 27341:1 27372:1 27375:5 27378:1 27381:1 27387:1 27388:1 27389:2 27392:1 27406:3 27415:2 27419:1 27421:2 27438:2 27439:2 27453:1 27454:2 27459:1 27472:1 27482:1 27484:3 27510:2 27530:2 27534:1 27535:1 27539:1 27555:1 27572:1 27574:3 27583:5 27608:2 27612:1 27613:1 27651:1 27665:1 27670:1 27686:1 27691:1 27705:1 27708:1 27712:1 27713:1 27714:1 27732:1 27739:1 27761:2 27763:2 27767:2 27775:1 27780:2 27781:1 27787:1 27791:1 27792:3 27800:1 27804:1 27807:2 27822:1 27826:2 27832:1 27845:1 27857:1 27859:1 27868:1 27869:1 27873:1 27875:1 27885:1 27888:1 27897:2 27912:2 27916:1 27917:2 27920:1 27924:6 27940:4 27957:6 27965:5 27966:1 27974:1 27975:2 27977:1 27990:1 27991:1 27997:1 28011:5 28025:2 28033:1 28043:1 28044:11 28071:1 28083:1 28087:2 28097:1 28098:2 28101:1 28102:3 28103:1 28109:13 28121:1 28146:1 28151:7 28177:1 28188:2 28189:1 28193:1 28200:1 28213:2 28218:8 28225:2 28226:3 28227:1 28239:1 28242:2 28246:1 28251:4 28261:1 28266:1 28277:3 28293:1 28297:1 28300:1 28311:1 28315:1 28317:1 28318:1 28319:3 28322:1 28326:1 28335:2 28337:1 28347:1 28361:3 28372:1 28377:2 28381:1 28384:1 28391:1 28398:1 28407:2 28409:1 28414:2 28416:1 28418:1 28420:2 28438:1 28441:1 28448:1 28458:2 28459:1 28469:1 28499:1 28529:1 28533:2 28554:5 28555:1 28557:1 28564:1 28588:1 28589:1 28598:1 28600:2 28616:7 28618:1 28619:1 28620:2 28627:1 28637:1 28649:1 28672:1 28681:1 28686:1 28688:2 28714:1 28722:1 28736:1 28743:1 28746:1 28755:2 28779:1 28801:1 28802:1 28825:3 28845:1 28858:1 28860:7 28872:1 28876:1 28893:1 28896:4 28905:1 28907:1 28912:1 28919:1 28928:2 28938:1 28946:2 28958:1 28959:1 28961:1 28978:1 28979:1 28980:2 28983:1 28987:2 28992:35 28993:4 28996:5 28998:1 28999:3 29011:2 29017:1 29034:11 29043:1 29048:1 29092:3 29100:2 29107:1 29115:1 29120:2 29131:1 29132:5 29142:7 29146:2 29176:14 29177:1 29180:2 29184:4 29186:2 29190:2 29198:1 29202:4 29210:1 29213:1 29216:1 29221:2 29224:1 29228:2 29236:2 29237:2 29238:1 29245:2 29251:2 29262:1 29267:3 29268:2 29274:1 29276:1 29278:4 29281:1 29286:1 29293:1 29295:1 29300:1 29302:3 29307:1 29324:1 29343:1 29347:2 29354:1 29362:2 29364:1 29365:1 29379:1 29383:1 29387:1 29388:1 29391:3 29405:5 29409:1 29420:2 29447:1 29448:1 29449:2 29461:1 29468:1 29471:1 29473:2 29474:3 29477:1 29489:1 29498:1 29504:1 29514:1 29515:1 29518:1 29522:1 29524:1 29525:1 29529:3 29532:6 29538:2 29539:1 29542:2 29548:1 29550:1 29551:1 29559:3 29560:1 29566:2 29567:1 29569:2 29570:1 29579:1 29584:1 29587:2 29608:1 29632:1 29635:1 29646:1 29648:1 29652:1 29659:1 29678:1 29682:2 29684:1 29688:3 29706:1 29712:1 29716:1 29717:1 29718:2 29722:2 29723:2 29727:1 29736:2 29740:3 29743:1 29747:1 29749:1 29758:1 29766:1 29767:8 29773:2 29774:2 29777:1 29780:10 29782:1 29786:1 29788:1 29790:1 29801:1 29814:1 29828:1 29832:1 29839:2 29840:1 29882:3 29887:1 29890:1 29900:1 29914:4 29918:1 29920:3 29925:1 29927:1 29931:6 29936:1 29940:1 29949:1 29969:1 29970:1 30000:1 30001:2 30002:1 30005:1 30011:3 30012:1 30015:1 30035:2 30053:2 30058:5 30064:1 30081:2 30088:2 30104:1 30108:2 30113:1 30122:1 30136:2 30142:1 30143:2 30150:2 30162:2 30187:1 30194:7 30206:1 30208:1 30210:1 30227:1 30231:7 30243:6 30244:1 30250:1 30273:1 30299:1 30311:1 30317:1 30320:8 30322:3 30324:4 30326:1 30328:2 30331:3 30332:3 30339:1 30344:1 30353:1 30362:2 30363:4 30367:3 30371:3 30406:1 30408:1 30421:1 9 11:1 14:2 21:1 30:1 34:1 43:1 50:7 63:1 74:1 79:1 83:1 85:1 93:1 99:1 103:1 107:1 108:1 109:1 122:1 135:1 139:1 142:1 152:1 163:2 176:1 180:4 187:1 189:3 201:1 206:5 207:1 230:1 236:8 238:1 257:1 262:1 277:2 283:1 303:1 309:2 315:2 318:1 325:1 327:40 338:2 355:1 356:5 357:5 360:2 362:1 366:1 378:4 380:1 383:1 385:1 393:2 397:2 419:1 441:2 460:5 469:1 474:1 475:1 478:1 480:1 496:1 500:1 504:1 547:1 550:1 558:1 589:2 591:5 592:1 600:2 603:4 625:4 635:2 637:2 638:1 639:1 657:2 671:1 682:4 685:1 691:1 693:3 703:1 724:1 732:3 736:1 747:1 750:1 758:2 771:1 774:1 783:1 788:2 791:1 802:2 803:2 804:1 809:1 819:3 824:1 833:2 843:1 854:1 856:2 857:1 867:1 880:1 883:11 885:3 897:1 899:3 900:1 911:1 914:17 916:1 917:1 929:1 933:1 938:6 939:1 940:1 941:9 944:1 946:4 952:1 953:1 959:1 961:1 964:4 976:1 978:1 985:2 986:3 997:1 1000:1 1005:1 1022:1 1023:1 1032:3 1045:1 1052:6 1054:2 1060:2 1076:1 1080:2 1084:1 1085:1 1090:1 1102:1 1103:1 1115:2 1125:1 1126:1 1133:1 1141:1 1142:1 1143:2 1148:2 1153:1 1156:3 1163:1 1164:2 1172:1 1176:2 1187:1 1188:1 1194:2 1201:3 1206:1 1213:1 1226:2 1230:1 1238:1 1252:1 1254:1 1258:2 1287:1 1289:1 1291:2 1292:2 1300:2 1303:3 1307:1 1311:1 1313:2 1333:1 1336:1 1342:1 1353:2 1358:1 1379:1 1380:1 1393:1 1404:1 1411:3 1434:2 1436:2 1441:2 1443:1 1461:1 1464:2 1468:6 1471:10 1474:1 1487:2 1489:1 1490:4 1491:2 1493:3 1494:2 1510:1 1517:1 1522:1 1524:1 1544:1 1554:1 1556:2 1571:2 1573:1 1574:1 1580:1 1583:8 1584:1 1614:2 1621:1 1636:1 1639:1 1641:3 1642:3 1650:1 1652:1 1655:1 1658:2 1677:6 1680:1 1684:2 1700:1 1701:3 1706:6 1712:2 1732:1 1733:1 1751:2 1752:2 1768:1 1775:1 1785:1 1803:1 1814:4 1818:1 1827:1 1830:2 1834:1 1844:4 1852:1 1856:1 1863:3 1873:1 1878:1 1883:1 1884:1 1886:2 1887:2 1900:1 1908:1 1911:1 1934:2 1935:1 1952:1 1954:1 1956:2 1958:19 1965:1 1970:2 1981:2 1986:1 1991:1 1995:1 1996:1 1997:1 2008:1 2011:1 2018:9 2019:2 2033:1 2051:1 2053:1 2057:3 2063:4 2069:2 2075:1 2088:3 2095:1 2100:3 2102:1 2107:1 2112:1 2120:2 2128:1 2130:1 2136:4 2143:2 2151:1 2152:1 2158:1 2161:1 2178:1 2186:1 2195:1 2207:1 2208:1 2210:1 2211:2 2213:1 2216:2 2218:6 2219:1 2220:1 2223:2 2226:1 2229:3 2232:1 2234:5 2238:5 2239:2 2240:5 2241:1 2243:1 2245:1 2251:1 2255:4 2258:1 2274:1 2276:1 2278:5 2280:2 2281:3 2284:2 2285:9 2288:5 2291:3 2292:2 2293:5 2296:1 2297:1 2298:1 2301:4 2306:1 2309:2 2311:2 2314:2 2316:6 2318:2 2319:9 2331:1 2332:2 2334:1 2348:3 2369:1 2379:2 2380:2 2381:2 2386:1 2393:1 2407:1 2411:1 2418:1 2420:1 2430:4 2437:5 2438:1 2439:1 2445:1 2448:1 2453:1 2457:2 2460:1 2466:2 2482:5 2493:10 2505:1 2509:1 2511:1 2515:1 2532:1 2537:1 2545:1 2561:5 2570:7 2577:1 2588:1 2593:1 2595:3 2603:2 2608:4 2615:3 2618:2 2620:1 2623:1 2632:2 2637:1 2661:2 2666:1 2682:1 2685:1 2690:1 2699:2 2701:4 2706:1 2709:1 2717:2 2720:1 2723:1 2728:1 2730:2 2740:2 2745:1 2748:1 2757:1 2761:1 2763:4 2764:1 2766:1 2784:3 2797:1 2810:1 2815:1 2816:2 2817:1 2821:7 2825:4 2831:6 2840:1 2841:1 2848:1 2880:1 2882:1 2883:3 2889:2 2890:2 2904:4 2912:2 2930:1 2933:8 2935:2 2941:29 2945:1 2948:1 2959:4 2975:2 2980:1 2982:1 2987:1 2995:1 3002:16 3021:1 3024:1 3029:1 3032:6 3036:9 3037:1 3038:1 3039:1 3050:1 3061:1 3064:1 3068:1 3072:1 3074:1 3082:1 3086:1 3092:1 3095:2 3096:1 3097:1 3129:1 3146:4 3162:1 3169:1 3176:1 3177:2 3178:1 3184:1 3190:1 3206:2 3210:1 3225:1 3240:1 3242:1 3259:2 3269:1 3280:1 3287:1 3293:1 3304:2 3312:6 3317:1 3322:2 3325:2 3332:1 3338:1 3339:1 3343:1 3348:1 3357:1 3361:1 3370:1 3374:1 3384:1 3386:6 3416:1 3431:2 3434:14 3481:1 3487:1 3500:1 3510:2 3518:1 3537:1 3544:1 3551:1 3557:2 3558:1 3561:1 3562:1 3563:2 3564:2 3568:2 3571:1 3578:1 3581:2 3587:2 3601:1 3615:2 3619:2 3621:1 3626:1 3628:1 3635:2 3640:1 3645:1 3648:1 3665:4 3670:1 3672:1 3674:1 3678:2 3681:8 3699:7 3705:2 3706:1 3708:6 3709:2 3712:1 3715:1 3719:1 3736:2 3741:6 3751:1 3754:1 3773:1 3784:1 3787:1 3791:3 3792:3 3796:1 3799:1 3800:2 3803:3 3808:1 3816:1 3821:1 3835:1 3848:1 3853:1 3855:4 3857:1 3858:2 3859:16 3863:1 3873:1 3882:1 3884:1 3888:1 3895:5 3897:1 3903:2 3904:13 3905:4 3906:1 3911:1 3912:2 3923:3 3924:7 3927:1 3932:1 3938:1 3945:1 3955:1 3956:4 3958:1 3964:1 3966:1 3967:1 3969:1 3978:1 3981:2 3985:1 3986:1 3990:1 3992:1 3993:1 3994:1 4000:1 4004:2 4016:1 4019:4 4022:3 4032:2 4037:1 4045:1 4047:1 4053:3 4054:1 4058:3 4063:3 4066:1 4077:6 4084:1 4085:1 4089:2 4090:2 4093:2 4094:1 4098:1 4099:4 4100:2 4108:6 4109:5 4114:1 4128:1 4129:1 4141:1 4144:1 4153:1 4165:1 4169:2 4177:1 4181:2 4187:7 4195:1 4196:2 4197:1 4204:1 4221:1 4236:1 4237:1 4239:1 4241:1 4250:1 4251:1 4286:1 4302:7 4307:2 4315:1 4316:1 4319:1 4321:1 4325:1 4364:1 4366:1 4374:1 4378:2 4381:2 4388:1 4401:1 4405:4 4412:1 4420:2 4421:1 4438:1 4450:1 4455:2 4462:1 4466:2 4469:1 4474:5 4494:1 4504:1 4535:1 4545:1 4546:4 4555:1 4572:1 4576:2 4584:1 4593:1 4598:1 4601:2 4612:1 4625:1 4631:2 4637:2 4661:1 4665:1 4668:1 4675:1 4680:1 4688:1 4697:3 4699:2 4719:1 4724:1 4728:3 4735:1 4741:5 4749:1 4751:1 4754:4 4761:1 4772:2 4774:1 4775:1 4788:2 4789:1 4804:1 4807:8 4830:1 4843:1 4854:1 4870:1 4875:1 4879:1 4889:1 4896:1 4903:8 4907:1 4911:1 4918:2 4921:1 4935:3 4944:1 4951:1 4954:1 4986:3 5009:1 5019:31 5021:5 5024:1 5041:3 5043:1 5052:1 5058:4 5071:1 5078:2 5083:7 5091:1 5093:2 5115:2 5117:4 5131:1 5132:1 5134:1 5135:7 5151:5 5152:9 5153:1 5154:1 5155:1 5157:2 5159:6 5160:2 5162:1 5163:4 5165:1 5166:2 5170:2 5171:1 5173:6 5175:3 5176:1 5178:1 5180:1 5184:1 5185:2 5187:4 5188:4 5192:1 5209:1 5210:1 5211:1 5212:1 5219:1 5238:1 5242:1 5246:1 5271:3 5277:2 5279:1 5284:1 5294:1 5299:2 5312:1 5317:1 5321:1 5326:3 5327:1 5328:3 5336:2 5337:1 5343:1 5344:3 5359:1 5367:1 5374:1 5385:1 5396:2 5404:6 5409:1 5435:1 5437:1 5441:1 5459:1 5464:1 5466:1 5482:1 5487:1 5506:1 5512:4 5518:8 5520:1 5522:1 5528:1 5535:2 5538:3 5551:2 5553:1 5555:1 5567:2 5592:1 5593:1 5602:1 5607:2 5611:1 5612:1 5625:1 5650:1 5663:1 5664:2 5679:1 5680:3 5691:1 5692:2 5693:2 5696:1 5698:1 5704:1 5705:2 5708:2 5710:2 5712:1 5722:1 5725:1 5726:2 5730:2 5733:2 5736:1 5745:1 5750:1 5758:3 5763:1 5765:1 5767:1 5772:1 5780:1 5786:1 5792:3 5797:1 5808:5 5815:1 5816:1 5838:1 5849:5 5870:1 5873:5 5882:1 5888:1 5897:3 5898:1 5911:3 5914:4 5917:1 5921:2 5939:1 5945:1 5959:2 5975:1 5977:1 5987:1 5994:1 6001:1 6007:1 6011:1 6021:2 6022:1 6028:1 6059:4 6065:1 6066:1 6085:1 6097:2 6102:2 6129:1 6152:1 6171:1 6183:4 6184:1 6202:3 6204:1 6205:20 6226:5 6229:1 6231:4 6238:1 6242:1 6243:1 6246:1 6247:1 6248:5 6249:2 6257:1 6280:3 6288:1 6297:1 6301:1 6303:1 6308:1 6325:3 6336:1 6345:1 6348:1 6356:1 6364:3 6380:2 6384:2 6385:1 6390:1 6400:1 6404:3 6410:2 6426:7 6429:1 6432:1 6437:1 6440:1 6442:1 6464:1 6484:1 6485:2 6488:1 6501:5 6503:1 6505:1 6506:1 6507:2 6510:1 6511:2 6515:4 6517:1 6518:3 6519:3 6520:8 6522:1 6523:1 6525:4 6526:17 6527:5 6530:3 6539:1 6568:1 6571:1 6591:3 6646:4 6648:1 6649:1 6652:1 6681:2 6683:1 6686:1 6699:2 6743:1 6749:1 6750:1 6752:1 6763:1 6769:1 6777:1 6786:1 6797:3 6798:1 6803:1 6813:1 6814:1 6816:1 6822:4 6832:1 6833:1 6836:1 6841:1 6844:1 6851:2 6855:4 6897:1 6898:2 6903:2 6909:1 6911:3 6916:1 6919:2 6920:1 6924:1 6929:1 6940:10 6949:1 6960:2 6968:4 6973:1 6985:1 6987:1 6997:1 7002:1 7014:1 7015:1 7019:1 7029:1 7045:4 7047:1 7049:2 7058:4 7086:3 7087:3 7091:3 7098:1 7100:1 7113:3 7114:2 7128:1 7131:1 7142:2 7147:2 7148:1 7150:2 7154:1 7160:1 7169:1 7172:1 7177:2 7183:1 7202:1 7212:1 7220:1 7233:1 7245:1 7253:15 7255:2 7266:2 7273:1 7281:3 7300:1 7302:1 7306:2 7310:3 7312:2 7321:1 7332:1 7336:1 7337:1 7369:2 7379:1 7388:1 7411:6 7416:1 7420:1 7435:2 7452:1 7479:2 7486:1 7491:3 7495:1 7500:1 7505:6 7506:1 7509:1 7516:1 7521:1 7525:1 7527:1 7535:1 7539:1 7542:2 7549:6 7554:4 7555:1 7559:1 7579:4 7583:1 7596:3 7597:1 7603:2 7611:1 7622:1 7627:2 7644:1 7663:1 7672:3 7690:2 7706:1 7719:1 7723:1 7725:1 7726:2 7749:1 7756:3 7757:15 7758:8 7763:1 7769:1 7771:2 7779:1 7784:3 7785:4 7786:2 7812:5 7813:1 7831:69 7836:2 7854:11 7855:16 7857:1 7860:4 7871:1 7878:1 7883:2 7892:1 7899:1 7904:1 7908:1 7911:1 7923:2 7940:4 7941:2 7944:2 7964:1 7966:1 7967:2 7982:2 8014:1 8017:1 8035:2 8059:1 8062:3 8072:1 8087:1 8090:1 8093:3 8108:1 8112:8 8127:1 8138:1 8143:1 8145:1 8153:1 8155:1 8172:1 8180:1 8201:1 8209:1 8223:1 8226:1 8233:1 8250:1 8255:1 8258:1 8265:3 8266:3 8267:2 8269:1 8285:2 8287:2 8301:1 8303:1 8306:1 8307:1 8317:2 8319:1 8324:2 8330:1 8333:2 8338:2 8339:1 8343:1 8347:1 8348:5 8357:1 8358:13 8376:1 8389:3 8394:2 8400:2 8417:3 8447:1 8452:1 8461:2 8462:1 8473:1 8489:1 8524:1 8525:2 8535:2 8541:2 8545:1 8559:2 8564:1 8566:1 8569:1 8589:1 8591:1 8599:5 8604:2 8614:4 8615:1 8620:3 8624:3 8628:1 8629:4 8635:1 8638:1 8646:1 8656:2 8664:5 8667:2 8669:2 8671:2 8674:1 8701:1 8703:1 8711:1 8716:1 8721:1 8728:1 8734:1 8736:1 8739:3 8740:9 8743:4 8744:3 8746:1 8748:3 8749:8 8752:3 8753:4 8755:1 8757:2 8767:3 8768:2 8778:1 8784:4 8790:2 8792:10 8801:1 8812:1 8816:3 8820:1 8822:2 8826:2 8829:2 8834:2 8837:5 8838:1 8853:2 8860:1 8891:2 8892:2 8893:1 8898:1 8906:1 8907:1 8909:1 8917:1 8930:1 8933:1 8939:1 8958:1 8968:2 8973:2 8974:1 8988:1 9008:1 9017:3 9024:1 9033:2 9041:3 9059:1 9063:2 9066:1 9073:5 9074:2 9078:3 9090:3 9098:1 9104:1 9105:1 9113:1 9124:1 9164:1 9166:1 9168:1 9171:1 9177:1 9188:2 9199:7 9202:2 9213:1 9218:1 9220:2 9222:1 9223:1 9241:3 9252:1 9261:1 9263:1 9275:1 9276:2 9278:1 9292:3 9295:1 9307:1 9316:1 9323:1 9324:1 9325:1 9326:1 9334:3 9355:1 9366:4 9373:1 9386:1 9387:1 9389:1 9394:3 9401:2 9403:1 9411:1 9420:2 9421:1 9425:1 9436:1 9459:1 9463:2 9466:2 9467:8 9469:1 9470:1 9474:3 9477:1 9482:1 9486:40 9489:4 9490:2 9497:1 9508:2 9510:1 9513:1 9520:1 9522:2 9523:1 9526:1 9535:2 9548:4 9567:3 9572:1 9583:1 9587:1 9589:1 9599:1 9608:1 9611:1 9624:1 9631:2 9633:9 9634:2 9650:1 9659:1 9660:1 9676:1 9684:7 9689:1 9693:1 9699:2 9702:1 9704:1 9724:1 9728:1 9749:1 9751:1 9752:1 9758:1 9793:1 9794:1 9795:1 9808:1 9810:1 9814:1 9823:1 9824:1 9828:3 9831:1 9832:1 9843:1 9844:1 9845:6 9851:1 9861:1 9867:1 9869:6 9877:2 9886:3 9895:2 9907:1 9919:2 9949:9 9955:1 9962:2 9963:1 9965:1 9966:6 9972:2 9974:2 9986:1 9991:1 9993:1 9995:2 10004:1 10005:1 10017:2 10035:3 10053:1 10057:1 10061:1 10065:1 10081:1 10084:1 10088:1 10089:2 10093:1 10108:7 10113:1 10120:1 10126:1 10130:1 10135:4 10139:1 10142:2 10143:2 10145:1 10147:2 10149:1 10150:1 10153:1 10158:4 10171:1 10175:1 10179:1 10181:1 10185:1 10186:3 10196:3 10198:1 10202:2 10203:2 10206:1 10210:1 10211:1 10213:1 10220:1 10225:1 10227:1 10229:1 10232:1 10240:8 10260:1 10268:1 10279:1 10288:1 10290:2 10302:1 10308:1 10309:1 10323:1 10329:3 10330:1 10336:1 10345:1 10368:1 10370:2 10374:1 10377:1 10391:1 10397:1 10399:2 10400:1 10401:1 10402:1 10418:2 10443:1 10466:1 10467:1 10469:1 10479:1 10481:1 10484:1 10487:2 10489:1 10514:2 10515:1 10520:1 10525:2 10544:2 10548:1 10550:6 10570:1 10576:4 10584:2 10588:1 10590:2 10608:2 10609:1 10625:5 10630:2 10638:2 10653:1 10655:2 10689:1 10690:1 10694:1 10699:1 10712:3 10720:1 10722:1 10724:1 10744:1 10746:2 10751:1 10754:1 10764:2 10767:1 10769:2 10776:1 10787:2 10788:1 10790:4 10794:2 10796:1 10800:9 10809:1 10810:1 10811:1 10813:1 10820:1 10823:1 10824:3 10837:2 10840:3 10841:3 10844:4 10846:1 10854:1 10865:3 10866:1 10867:1 10876:4 10878:4 10879:1 10886:2 10888:1 10890:2 10892:1 10895:1 10916:1 10921:1 10932:1 10934:1 10950:1 10953:7 10967:5 10982:2 10988:4 10990:15 11055:1 11056:1 11059:1 11065:1 11067:2 11079:1 11095:1 11112:4 11115:1 11117:1 11137:1 11159:1 11162:1 11175:2 11180:1 11193:1 11211:1 11219:1 11224:1 11236:1 11240:1 11253:2 11254:5 11257:5 11260:2 11262:2 11266:1 11269:3 11283:2 11291:1 11297:1 11298:2 11299:1 11302:1 11312:1 11313:1 11323:1 11347:9 11351:1 11352:1 11364:1 11372:8 11377:1 11378:2 11381:2 11385:1 11411:2 11433:1 11434:2 11435:2 11437:1 11443:1 11444:1 11452:1 11456:1 11457:1 11468:1 11477:1 11482:1 11490:1 11501:1 11507:2 11516:1 11520:1 11534:1 11536:2 11544:1 11551:1 11554:1 11557:1 11566:1 11579:1 11583:5 11590:1 11602:1 11613:2 11616:1 11627:1 11637:1 11643:2 11650:1 11651:1 11653:3 11659:1 11660:1 11662:1 11674:2 11675:1 11677:2 11682:2 11686:4 11706:11 11715:1 11749:3 11752:14 11753:1 11755:1 11772:1 11775:2 11783:1 11789:4 11790:1 11797:2 11812:1 11813:1 11819:2 11820:1 11825:1 11830:1 11831:2 11848:2 11849:1 11850:1 11852:1 11853:1 11860:1 11861:2 11863:1 11866:2 11884:1 11890:1 11898:1 11901:2 11908:1 11914:3 11930:4 11933:8 11958:1 11960:10 11962:7 11963:1 11989:1 11994:1 12006:1 12009:2 12011:2 12012:3 12016:1 12018:1 12020:3 12022:2 12025:1 12026:2 12029:4 12030:1 12032:1 12038:1 12042:2 12044:3 12046:1 12049:2 12055:3 12059:1 12062:1 12074:7 12077:2 12085:1 12097:8 12108:2 12111:1 12116:1 12127:1 12132:2 12134:1 12139:1 12149:1 12150:1 12156:1 12177:1 12195:1 12200:2 12223:2 12241:1 12263:1 12265:2 12291:1 12297:1 12300:1 12304:5 12306:1 12313:4 12315:1 12321:1 12340:1 12346:1 12359:3 12362:5 12363:1 12382:1 12411:5 12414:1 12426:2 12433:1 12439:1 12442:1 12445:1 12464:1 12505:2 12516:1 12519:1 12526:1 12531:1 12540:1 12542:1 12543:3 12544:4 12545:2 12557:1 12560:2 12571:1 12580:2 12592:1 12593:2 12596:1 12602:4 12603:5 12608:3 12611:1 12615:2 12619:2 12654:1 12668:1 12686:1 12692:1 12702:1 12714:1 12722:1 12726:2 12732:10 12747:1 12753:2 12775:1 12782:3 12785:1 12790:1 12798:1 12799:1 12806:1 12807:1 12810:2 12824:3 12828:1 12843:2 12847:2 12872:2 12880:1 12890:1 12896:1 12899:4 12904:3 12911:1 12934:1 12935:1 12946:1 12950:1 12953:1 12954:7 12957:1 12971:1 12973:1 12991:1 12994:1 12996:1 13009:2 13072:1 13079:2 13090:1 13091:8 13100:1 13108:1 13113:1 13114:1 13116:1 13126:1 13131:20 13136:1 13139:1 13142:1 13151:3 13153:7 13155:1 13161:2 13180:1 13182:1 13189:1 13192:1 13193:1 13195:4 13199:3 13222:2 13238:1 13246:1 13250:1 13255:2 13256:7 13259:2 13270:2 13274:1 13281:1 13283:1 13285:1 13288:1 13291:3 13292:1 13315:2 13330:5 13333:1 13334:1 13339:1 13341:1 13362:1 13363:1 13364:1 13393:1 13406:1 13410:1 13417:1 13450:1 13452:1 13454:7 13458:1 13465:1 13474:1 13496:1 13503:1 13504:1 13523:1 13548:2 13550:8 13556:1 13568:1 13573:4 13576:1 13581:1 13584:1 13588:8 13595:4 13600:1 13609:2 13611:6 13616:1 13632:1 13633:1 13647:2 13649:1 13652:1 13663:2 13665:1 13666:1 13684:2 13690:5 13715:1 13726:2 13732:2 13734:1 13736:1 13744:3 13747:8 13748:1 13754:1 13756:6 13757:2 13764:1 13772:1 13773:1 13774:2 13781:2 13786:2 13800:3 13802:1 13807:1 13808:1 13811:2 13829:2 13830:7 13833:1 13840:1 13847:3 13854:1 13862:2 13865:2 13880:2 13887:8 13909:1 13913:1 13915:1 13933:4 13937:1 13938:6 13961:1 13973:2 13987:4 13993:1 14004:1 14008:1 14018:1 14019:1 14036:2 14051:1 14075:1 14076:3 14081:2 14092:2 14094:1 14109:1 14112:1 14116:7 14118:1 14120:2 14123:8 14124:2 14127:2 14131:1 14135:1 14138:1 14146:1 14149:1 14153:1 14170:5 14186:1 14191:3 14198:2 14201:2 14204:1 14205:1 14233:1 14243:8 14254:1 14277:4 14290:4 14292:1 14299:1 14304:2 14316:1 14317:1 14339:7 14343:1 14345:4 14346:1 14352:2 14359:2 14377:1 14379:2 14398:1 14399:1 14401:1 14414:1 14426:7 14445:11 14455:1 14486:1 14489:2 14495:2 14508:2 14510:2 14525:1 14530:1 14531:1 14535:1 14542:2 14560:3 14577:7 14586:2 14591:1 14602:3 14610:1 14611:1 14613:1 14617:1 14624:1 14643:1 14649:1 14651:1 14658:1 14667:4 14668:1 14669:1 14681:1 14702:1 14705:1 14718:1 14720:1 14730:2 14732:1 14741:1 14751:3 14757:2 14768:2 14779:1 14780:1 14783:3 14794:4 14795:1 14796:4 14797:9 14800:1 14803:9 14808:1 14812:5 14814:3 14815:2 14825:1 14833:1 14835:1 14836:1 14861:1 14871:1 14908:2 14913:1 14914:1 14921:1 14927:6 14932:1 14961:3 14971:2 14974:4 14978:1 14979:4 14984:4 14987:1 14990:1 14996:2 15003:1 15012:1 15013:3 15023:1 15032:1 15037:3 15038:1 15060:1 15084:4 15099:3 15106:2 15109:3 15112:3 15113:1 15118:2 15126:2 15129:2 15134:6 15137:1 15145:1 15152:3 15157:2 15161:1 15166:2 15176:1 15181:1 15183:1 15210:1 15213:1 15253:1 15266:1 15270:1 15278:2 15303:2 15328:4 15329:1 15332:2 15334:1 15347:1 15349:2 15350:1 15395:2 15396:1 15408:11 15410:1 15424:3 15425:2 15427:1 15428:3 15435:1 15444:1 15449:11 15450:3 15470:2 15483:2 15494:2 15497:1 15498:1 15506:1 15510:1 15511:1 15532:8 15535:1 15538:1 15543:1 15549:1 15569:2 15586:1 15599:1 15624:1 15638:7 15641:1 15649:1 15651:1 15655:1 15667:1 15668:1 15670:2 15681:4 15683:1 15689:1 15692:4 15693:1 15698:2 15700:1 15711:1 15715:1 15718:1 15727:1 15734:1 15735:1 15736:1 15739:1 15746:1 15748:1 15754:1 15756:1 15760:1 15761:3 15763:1 15768:1 15774:2 15789:1 15796:1 15820:2 15828:1 15849:1 15863:15 15870:2 15882:1 15886:2 15918:1 15924:4 15938:1 15941:1 15950:5 15951:1 15961:7 15969:1 15973:1 15982:1 15987:1 15988:1 16004:2 16007:1 16018:1 16028:2 16043:1 16057:1 16062:1 16081:1 16114:6 16118:2 16128:13 16133:4 16140:2 16141:3 16151:1 16160:2 16165:5 16171:2 16172:1 16173:11 16174:4 16176:1 16184:1 16189:1 16228:1 16233:2 16239:1 16243:2 16263:1 16266:1 16274:1 16275:2 16281:1 16282:4 16301:1 16303:1 16306:10 16312:1 16322:1 16325:2 16335:2 16339:1 16345:1 16348:1 16359:3 16379:1 16387:2 16397:1 16403:6 16404:3 16406:1 16410:1 16411:1 16452:1 16458:1 16459:7 16468:1 16472:1 16478:1 16484:7 16488:3 16499:3 16536:2 16546:1 16552:1 16553:4 16586:2 16591:1 16599:1 16600:1 16603:1 16607:1 16612:19 16613:1 16615:2 16618:1 16624:1 16629:5 16633:2 16635:2 16640:1 16641:2 16649:1 16652:1 16663:1 16670:2 16690:10 16693:1 16698:1 16707:2 16714:1 16716:1 16717:1 16718:1 16719:1 16721:1 16726:1 16733:1 16734:1 16740:2 16741:1 16745:3 16756:2 16760:1 16763:1 16789:1 16791:4 16812:1 16826:5 16828:1 16829:1 16830:2 16850:1 16876:1 16881:1 16882:1 16885:1 16896:1 16922:1 16944:1 16955:1 16960:1 16963:1 16966:6 16990:2 17034:1 17042:1 17050:1 17052:1 17062:1 17066:1 17068:1 17084:1 17085:1 17099:1 17101:1 17110:1 17111:4 17131:1 17133:1 17156:1 17158:1 17167:1 17177:2 17178:1 17181:1 17188:1 17212:1 17216:1 17227:1 17234:1 17237:3 17241:1 17245:2 17255:4 17266:1 17272:1 17278:2 17279:1 17281:1 17287:3 17288:3 17291:1 17299:1 17310:1 17322:1 17335:3 17337:1 17338:1 17347:1 17360:1 17362:3 17372:1 17374:1 17379:1 17396:1 17399:1 17407:5 17411:2 17413:6 17419:1 17436:1 17440:1 17444:1 17455:1 17469:1 17474:1 17478:1 17483:8 17496:2 17499:5 17506:1 17510:1 17516:2 17535:5 17545:2 17551:5 17553:1 17564:1 17565:1 17569:2 17580:1 17584:2 17586:1 17613:1 17617:1 17625:2 17630:2 17632:2 17639:6 17642:1 17646:2 17657:1 17666:1 17668:8 17671:1 17684:1 17685:2 17690:1 17700:1 17711:3 17712:2 17735:5 17737:3 17750:1 17754:1 17761:2 17762:3 17763:3 17777:3 17778:7 17779:1 17787:4 17792:1 17820:1 17823:1 17825:1 17832:1 17844:1 17850:2 17857:2 17862:1 17898:1 17921:1 17941:1 17942:2 17946:2 17962:1 17968:4 17975:2 17980:2 17991:1 18000:1 18004:1 18018:1 18019:1 18024:1 18025:2 18037:1 18039:4 18041:4 18043:5 18050:6 18051:1 18053:1 18060:7 18065:2 18070:3 18071:1 18072:2 18076:1 18106:1 18110:2 18126:5 18127:4 18141:1 18146:1 18151:2 18154:3 18172:1 18185:2 18189:1 18196:7 18200:1 18208:1 18210:2 18212:1 18213:1 18224:2 18240:1 18245:1 18252:2 18255:2 18256:2 18259:1 18263:2 18264:1 18276:1 18281:3 18283:5 18286:1 18288:1 18291:1 18294:1 18302:1 18304:4 18308:2 18323:1 18324:1 18327:1 18335:1 18344:1 18365:1 18366:3 18395:1 18403:2 18418:1 18422:2 18424:9 18426:1 18430:4 18433:1 18436:41 18441:1 18444:1 18447:1 18451:2 18455:1 18459:1 18466:1 18476:5 18482:1 18485:1 18486:1 18496:1 18506:1 18515:1 18516:1 18527:2 18528:1 18532:1 18537:4 18543:1 18546:1 18548:1 18549:5 18550:1 18553:1 18569:1 18575:1 18586:1 18591:6 18602:1 18604:1 18617:1 18630:1 18643:5 18657:1 18680:1 18683:1 18695:4 18698:1 18708:1 18712:1 18713:1 18716:1 18720:2 18723:2 18736:5 18738:1 18740:2 18750:1 18761:3 18768:1 18774:1 18780:2 18781:1 18805:1 18812:1 18828:1 18840:1 18843:1 18845:1 18862:1 18864:1 18865:1 18867:1 18881:1 18888:2 18891:3 18905:1 18915:3 18918:1 18928:1 18935:1 18957:1 18962:3 18968:5 18969:1 18985:2 18992:1 19001:3 19028:1 19038:1 19069:5 19081:1 19095:1 19106:2 19113:2 19125:1 19148:2 19152:5 19153:3 19157:1 19166:1 19172:2 19188:1 19191:9 19199:1 19211:1 19218:1 19225:1 19229:1 19234:1 19237:1 19243:1 19245:3 19251:2 19254:5 19255:1 19259:1 19275:1 19279:1 19281:2 19287:5 19291:3 19294:3 19300:1 19304:2881 19308:1 19318:1 19324:1 19354:1 19359:1 19367:4 19368:1 19377:3 19383:1 19401:2 19402:1 19413:1 19418:1 19431:1 19437:2 19444:2 19476:2 19486:1 19497:2 19506:1 19507:1 19521:1 19529:4 19535:7 19542:1 19548:5 19551:5 19552:5 19554:1 19568:1 19580:1 19583:1 19616:2 19624:1 19629:8 19633:2 19635:2 19641:1 19642:1 19665:1 19666:40 19675:1 19686:1 19692:7 19716:1 19729:1 19747:1 19756:1 19761:1 19762:1 19772:1 19774:2 19794:1 19796:1 19804:1 19808:1 19820:1 19822:1 19824:1 19826:1 19833:1 19837:2 19844:5 19857:1 19860:2 19868:4 19882:2 19898:4 19908:1 19920:1 19927:1 19928:1 19948:2 19953:1 19957:1 19964:1 19978:2 19981:2 19982:4 20010:2 20014:1 20018:4 20021:4 20027:1 20033:1 20036:4 20038:3 20039:1 20043:5 20049:1 20053:1 20058:1 20064:1 20074:7 20078:1 20082:1 20091:2 20092:2 20106:2 20108:1 20112:2 20123:2 20124:2 20127:5 20131:14 20147:1 20148:1 20172:8 20173:1 20181:1 20183:2 20184:1 20188:1 20198:1 20199:2 20228:1 20242:2 20244:2 20247:3 20249:1 20296:1 20300:1 20304:1 20313:2 20317:1 20329:5 20331:1 20334:1 20336:3 20338:1 20339:2 20351:3 20353:1 20372:1 20374:6 20375:1 20383:1 20387:3 20393:1 20399:1 20429:1 20434:1 20463:4 20466:1 20468:2 20501:3 20516:1 20528:1 20559:3 20570:1 20571:1 20577:1 20581:2 20584:4 20588:1 20590:1 20593:1 20597:1 20598:1 20599:1 20608:2 20615:5 20616:2 20620:8 20622:1 20624:3 20629:5 20641:1 20642:2 20657:1 20664:1 20666:1 20681:1 20687:1 20692:3 20705:1 20708:1 20714:1 20733:3 20735:1 20754:2 20756:5 20760:2 20778:1 20783:2 20786:1 20790:1 20791:5 20805:1 20807:1 20817:5 20818:1 20828:1 20832:1 20844:2 20848:2 20850:2 20852:1 20868:1 20875:1 20884:1 20886:1 20901:2 20911:1 20912:5 20918:1 20920:1 20923:1 20928:3 20932:1 20941:3 20947:1 20962:2 20964:2 20980:2 21002:6 21012:1 21018:1 21019:1 21020:1 21032:1 21057:10 21058:4 21062:6 21068:2 21074:1 21080:1 21081:1 21120:1 21125:1 21126:1 21127:1 21129:3 21136:2 21139:1 21143:1 21154:1 21168:1 21178:1 21204:1 21217:1 21220:1 21221:1 21236:1 21246:1 21251:1 21255:4 21258:1 21259:4 21265:1 21271:1 21273:1 21279:1 21290:1 21296:1 21298:1 21299:9 21314:2 21316:1 21317:1 21319:4 21324:2 21348:1 21388:1 21389:4 21390:1 21398:1 21405:1 21407:2 21429:4 21437:1 21440:1 21464:1 21468:1 21469:1 21470:1 21472:1 21475:1 21498:2 21503:2 21505:1 21508:1 21511:1 21514:2 21515:1 21522:1 21526:1 21529:5 21539:1 21540:1 21546:4 21547:2 21549:1 21550:1 21552:2 21553:1 21561:1 21564:1 21567:1 21574:7 21579:1 21584:1 21587:3 21588:4 21595:1 21599:1 21605:1 21613:7 21647:1 21650:2 21656:2 21658:1 21659:5 21660:1 21673:3 21675:1 21702:3 21712:1 21731:1 21739:1 21751:1 21761:1 21785:1 21788:1 21796:2 21802:2 21804:1 21810:1 21832:1 21836:2 21840:2 21863:8 21872:1 21873:1 21875:1 21878:1 21880:1 21883:1 21894:2 21901:1 21907:2 21952:2 21953:1 21965:1 21971:1 21975:1 21976:1 21979:2 21980:1 21985:1 21989:1 22002:1 22005:1 22022:3 22026:2 22029:1 22045:1 22048:1 22056:1 22058:3 22061:1 22076:1 22078:1 22081:1 22082:1 22091:1 22122:1 22129:1 22131:1 22142:2 22149:1 22154:1 22160:2 22169:2 22170:1 22176:1 22177:1 22194:1 22210:1 22219:1 22225:1 22240:1 22241:3 22243:1 22250:1 22254:6 22256:1 22257:1 22258:2 22265:2 22266:2 22268:1 22272:6 22273:3 22275:3 22282:2 22283:1 22287:1 22289:1 22291:1 22292:1 22293:2 22294:2 22298:3 22312:1 22321:1 22325:3 22332:1 22338:1 22346:5 22359:1 22361:2 22363:2 22365:1 22370:4 22371:2 22374:1 22376:2 22378:1 22381:1 22383:4 22391:2 22392:1 22401:1 22408:1 22413:1 22415:11 22419:1 22432:1 22433:2 22436:5 22437:1 22447:2 22455:1 22464:1 22477:1 22491:2 22504:1 22507:2 22511:1 22513:4 22514:1 22519:1 22525:13 22529:1 22532:2 22539:1 22543:3 22559:1 22561:4 22562:1 22575:1 22593:1 22601:4 22616:1 22624:1 22625:1 22628:1 22632:1 22635:1 22659:2 22661:1 22665:8 22672:1 22676:1 22678:1 22679:2 22681:2 22682:1 22688:1 22689:1 22695:1 22696:1 22697:8 22698:3 22699:1 22711:1 22716:2 22720:1 22729:2 22735:1 22738:1 22752:2 22766:2 22768:1 22790:1 22798:5 22801:1 22802:1 22818:1 22834:1 22838:2 22843:1 22870:3 22876:1 22886:5 22892:4 22893:3 22896:2 22897:2 22902:2 22909:1 22913:1 22924:1 22931:1 22933:1 22940:3 22943:1 22947:3 22959:2 22961:2 22975:5 22994:1 23013:1 23017:1 23023:1 23029:1 23033:3 23034:3 23042:1 23052:5 23053:7 23055:1 23056:3 23057:2 23059:2 23060:1 23063:1 23072:3 23073:1 23089:1 23096:2 23109:1 23111:5 23118:1 23124:1 23125:2 23131:3 23134:3 23136:1 23142:3 23144:2 23145:5 23154:1 23162:2 23165:1 23170:1 23173:1 23174:1 23177:1 23178:3 23185:1 23193:1 23205:2 23226:1 23228:1 23229:2 23231:1 23233:1 23241:1 23243:1 23249:2 23251:3 23255:1 23260:1 23263:4 23270:1 23290:1 23291:9 23292:1 23302:1 23306:1 23309:2 23315:41 23320:1 23321:4 23323:4 23326:2 23327:3 23329:5 23333:1 23334:1 23336:2 23351:1 23352:4 23354:1 23361:3 23364:1 23368:3 23384:2 23385:3 23389:1 23391:1 23400:3 23403:1 23419:1 23425:5 23437:1 23440:1 23454:1 23487:6 23491:1 23497:1 23501:11 23509:3 23530:3 23535:2 23552:1 23560:1 23569:2 23594:1 23596:2 23600:1 23602:3 23604:1 23605:1 23614:3 23616:1 23622:1 23625:2 23629:1 23634:1 23637:1 23649:4 23655:2 23658:1 23662:1 23663:1 23664:1 23685:1 23701:1 23702:3 23710:1 23711:1 23717:1 23724:1 23740:1 23776:1 23785:1 23805:1 23806:1 23823:1 23827:2 23828:1 23830:1 23837:2 23844:1 23858:1 23859:1 23860:1 23869:2 23872:1 23885:1 23887:2 23888:2 23894:1 23903:2 23906:1 23908:2 23914:2 23926:3 23927:1 23928:1 23936:1 23944:3 23952:5 23955:2 23977:4 23978:1 23982:1 23984:1 23992:3 23997:1 24001:1 24017:1 24020:1 24035:1 24038:1 24066:1 24079:1 24086:1 24107:3 24125:1 24129:1 24141:1 24144:2 24153:1 24161:1 24166:1 24169:3 24172:3 24173:1 24180:1 24181:1 24187:2 24196:3 24209:3 24214:3 24215:1 24218:1 24220:2 24228:1 24232:1 24241:1 24258:2 24270:3 24278:1 24280:5 24282:1 24288:1 24291:3 24293:2 24309:2 24325:1 24333:2 24335:2 24336:1 24343:13 24351:1 24376:2 24393:1 24406:1 24423:2 24424:1 24425:1 24435:1 24443:2 24457:1 24475:2 24476:3 24484:2 24488:2 24497:1 24512:2 24513:1 24515:1 24522:1 24526:6 24533:2 24543:1 24558:1 24561:2 24566:1 24581:1 24592:2 24594:1 24598:1 24601:4 24604:2 24620:11 24622:2 24623:1 24624:1 24631:1 24638:10 24648:1 24649:1 24652:1 24661:2 24670:1 24713:1 24725:1 24728:1 24731:1 24736:1 24746:3 24748:2 24761:1 24762:1 24764:2 24774:2 24778:2 24788:1 24791:2 24801:1 24822:1 24825:2 24839:1 24862:1 24863:1 24872:1 24884:1 24900:1 24902:4 24912:6 24914:1 24915:1 24923:4 24927:1 24944:4 24947:1 24955:2 24956:2 24957:1 24964:1 24965:1 24973:2 24974:2 24977:1 24995:3 24998:1 25011:1 25025:1 25028:3 25030:2 25032:1 25036:1 25060:4 25068:1 25075:1 25085:1 25087:3 25093:2 25099:3 25100:2 25101:1 25106:1 25115:1 25117:3 25124:1 25127:1 25136:1 25147:1 25148:1 25150:1 25156:1 25171:1 25176:1 25180:1 25184:1 25206:1 25207:1 25210:3 25220:1 25221:2 25222:1 25223:1 25224:8 25226:3 25227:1 25228:5 25229:2 25234:1 25235:2 25236:2 25238:7 25248:2 25249:4 25255:2 25262:2 25268:6 25273:2 25281:1 25297:1 25300:3 25301:1 25311:1 25315:3 25327:1 25332:3 25337:7 25343:3 25363:2 25369:1 25370:1 25380:1 25381:3 25393:1 25395:1 25410:1 25414:1 25415:3 25439:1 25460:1 25463:1 25478:1 25504:3 25530:5 25540:1 25545:6 25565:3 25566:1 25570:1 25576:1 25590:1 25596:1 25601:1 25602:2 25604:1 25613:1 25616:1 25619:1 25647:3 25648:1 25655:1 25665:1 25666:1 25684:1 25692:2 25693:4 25718:2 25743:1 25746:1 25752:3 25762:1 25767:1 25769:1 25778:1 25781:2 25785:3 25794:2 25797:1 25828:7 25861:1 25879:2 25885:1 25887:2 25900:1 25903:4 25909:1 25910:1 25915:2 25922:1 25927:1 25929:1 25931:4 25987:1 25988:1 26007:1 26011:2 26023:4 26025:11 26060:13 26069:1 26083:10 26092:1 26094:1 26104:1 26112:1 26122:1 26127:1 26136:1 26138:1 26144:1 26146:2 26150:1 26168:1 26175:1 26180:2 26183:1 26184:1 26187:1 26188:1 26190:1 26208:1 26216:3 26236:1 26240:2 26242:1 26248:2 26252:1 26257:1 26259:1 26261:2 26263:6 26270:1 26274:2 26280:2 26285:2 26288:13 26293:2 26294:5 26304:1 26307:1 26311:1 26317:2 26318:1 26320:1 26328:1 26329:2 26334:2 26336:2 26348:1 26358:1 26363:2 26373:1 26379:5 26387:1 26400:1 26410:5 26411:1 26416:2 26420:2 26422:2 26479:1 26482:1 26494:2 26495:1 26511:1 26519:1 26523:1 26534:1 26538:1 26560:3 26563:1 26578:1 26579:1 26589:1 26590:4 26591:1 26593:2 26598:1 26614:7 26624:1 26643:1 26646:1 26648:1 26650:1 26654:2 26656:1 26662:1 26668:1 26689:1 26698:1 26706:1 26716:1 26741:1 26754:3 26760:1 26768:1 26776:4 26795:1 26805:1 26826:1 26832:1 26847:1 26867:1 26872:1 26882:1 26883:3 26886:2 26892:1 26893:1 26897:1 26898:1 26901:1 26902:1 26907:2 26918:2 26925:1 26931:1 26939:1 26949:1 26954:1 26957:2 26970:1 26974:1 26979:2 26983:5 26989:1 26997:1 26998:2 27006:1 27020:5 27042:2 27046:2 27047:5 27069:1 27070:2 27074:1 27089:1 27091:1 27094:2 27095:1 27101:1 27107:2 27118:1 27119:1 27127:4 27132:1 27138:2 27157:2 27174:1 27178:7 27179:1 27209:3 27212:11 27216:1 27220:1 27234:1 27236:1 27239:1 27247:1 27260:2 27278:1 27279:1 27289:2 27299:4 27311:2 27320:2 27321:4 27322:1 27327:2 27328:1 27329:1 27330:1 27334:3 27335:3 27341:1 27372:1 27375:5 27378:1 27381:1 27387:1 27388:1 27389:2 27392:1 27406:3 27415:2 27419:1 27421:2 27438:2 27439:2 27453:1 27454:2 27459:1 27472:1 27482:1 27484:3 27510:2 27530:2 27534:1 27535:1 27539:1 27555:1 27572:1 27574:3 27583:5 27608:2 27612:1 27613:1 27651:1 27665:1 27670:1 27686:1 27691:1 27705:1 27708:2 27712:1 27713:1 27714:1 27732:1 27739:1 27761:2 27763:2 27767:2 27775:1 27780:2 27781:1 27787:1 27791:1 27792:3 27800:1 27804:1 27807:2 27822:1 27826:2 27832:1 27845:1 27857:1 27859:1 27868:1 27869:1 27873:1 27875:1 27885:1 27888:1 27897:2 27912:2 27916:1 27917:2 27920:1 27924:6 27940:4 27957:6 27965:5 27966:1 27974:1 27975:2 27977:1 27990:1 27991:1 27997:1 28011:5 28025:2 28033:1 28043:1 28044:11 28071:1 28083:1 28087:2 28097:1 28098:2 28101:1 28102:3 28103:1 28109:13 28121:1 28146:1 28151:7 28177:1 28188:2 28189:1 28193:1 28200:1 28213:2 28218:8 28225:2 28226:3 28227:1 28239:1 28242:2 28246:1 28251:4 28261:1 28266:1 28277:3 28293:2 28297:1 28300:1 28311:1 28315:1 28317:1 28318:1 28319:3 28322:1 28326:1 28335:2 28337:1 28347:1 28361:3 28372:1 28377:2 28381:1 28384:1 28391:1 28398:1 28407:2 28409:1 28414:2 28416:1 28418:1 28420:2 28438:2 28441:1 28448:1 28458:2 28459:1 28469:1 28499:1 28529:1 28533:3 28554:5 28555:1 28557:1 28564:1 28565:1 28588:1 28589:1 28598:1 28600:2 28616:9 28618:1 28619:1 28620:2 28627:1 28637:1 28649:1 28672:1 28681:1 28686:1 28688:2 28714:1 28722:1 28736:1 28743:1 28746:1 28755:2 28779:1 28801:1 28802:1 28823:1 28825:3 28845:1 28858:1 28860:7 28872:1 28876:1 28893:1 28896:4 28905:1 28907:1 28912:1 28919:1 28928:2 28938:1 28946:2 28958:1 28959:1 28961:1 28978:1 28979:1 28980:2 28983:1 28987:2 28992:35 28993:4 28996:5 28998:1 28999:3 29011:2 29017:1 29034:11 29043:1 29048:2 29092:3 29100:2 29107:1 29115:1 29120:2 29131:1 29132:5 29142:7 29146:2 29176:14 29177:1 29180:2 29184:4 29186:2 29190:2 29198:1 29202:5 29210:1 29213:1 29216:1 29221:2 29224:1 29228:2 29234:1 29236:2 29237:2 29238:1 29245:2 29251:2 29262:1 29267:3 29268:2 29274:1 29276:1 29278:4 29281:1 29286:1 29293:1 29295:1 29300:1 29302:3 29307:1 29324:1 29343:1 29347:2 29354:1 29362:2 29364:1 29365:1 29379:1 29383:1 29387:1 29388:1 29391:3 29405:5 29409:1 29420:2 29447:1 29448:1 29449:2 29461:1 29468:2 29471:1 29473:2 29474:4 29477:1 29489:1 29498:1 29504:1 29514:1 29515:1 29518:1 29522:1 29524:1 29525:1 29529:3 29532:6 29538:2 29539:1 29542:2 29548:1 29550:1 29551:1 29559:4 29560:1 29566:2 29567:1 29569:2 29570:1 29579:1 29584:1 29587:2 29608:1 29632:1 29635:1 29646:1 29648:1 29649:1 29652:1 29659:1 29678:1 29682:2 29684:1 29688:3 29706:1 29712:1 29716:1 29717:1 29718:2 29722:2 29723:2 29727:1 29736:2 29740:3 29743:1 29747:1 29749:2 29758:1 29766:1 29767:8 29773:2 29774:2 29777:1 29780:10 29782:1 29786:1 29788:1 29790:1 29801:1 29814:1 29828:1 29832:1 29839:2 29840:1 29882:3 29887:1 29890:1 29900:1 29905:1 29914:4 29918:1 29920:4 29925:1 29927:1 29931:6 29936:1 29940:1 29949:1 29969:1 29970:1 30000:1 30001:2 30002:1 30005:1 30011:3 30012:1 30015:1 30035:2 30053:2 30058:5 30064:2 30081:2 30088:2 30104:1 30108:2 30113:1 30122:1 30136:2 30142:1 30143:2 30150:2 30162:3 30187:1 30194:7 30206:1 30208:1 30210:1 30227:1 30231:7 30243:6 30244:1 30250:1 30273:1 30299:1 30311:1 30317:1 30320:8 30322:3 30324:4 30326:1 30328:2 30331:3 30332:3 30339:1 30344:1 30353:1 30362:2 30363:4 30367:3 30371:3 30406:1 30408:1 30421:1
1f370d85023524f31df0a87c2118ba981195b839
449d555969bfd7befe906877abab098c6e63a0e8
/48/DEPENDENCIES/bin21dec.sci
439803002ac0eb57bebbd8facc55174bf7921ddd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,913
sci
bin21dec.sci
//bin21dec is a function whcih converts any binary number given to it will output its equivalent decimal number //pass the binary number as an argument to the function // For eg:bin21decimal(1010) //Will give an output of 10 function [temp]=bin21dec(bin) i=1;w=1; temp1=floor(bin); //separating integer part from the given number temp2=modulo(bin,1); //separating decimal part from the given number temp2=temp2*10^3; //converting decimal value to interger for convenience while(temp1>0) //storing each integer digit in vector for convenience p(i)=modulo(temp1,10); temp1=floor(temp1/10); i=i+1; end while(temp2>0) //storing each integer digit in vector for convenience q(w)=modulo(temp2,2); temp2=(temp2/10); temp2=floor(temp2); w=w+1; end temp1=0; //clearing the temporary variable 'temp2' for i=1:length(p) //checking whether it is binary or not. if(p(i)>1) then disp('not a binary number'); abort; end end for i=1:length(p) //multipliying the bits of integer part with their position values and adding temp1=temp1+(p(i)*2^(i-1)); end temp2=0; //clearing the temporary variable 'temp2' for z=1:w-1 //multipliying the bits of decimal part with their position values and adding temp2=temp2+(q(z)*2^(-1*(4-z))); end temp=temp1+temp2; //finally adding both the integer and decimal parts to get total output. endfunction
71212ab52b82169e20cfe8d48a3f3c0a719b9bf5
c615df4b42fe20e90a196619f909aefb59526107
/test2.tst
8d93952be58d96c90bd616e9951352ef3f014709
[]
no_license
cs310comporg/A7
057f5b542cbe138ea04c05a80d0e801a15fa16ea
9a8b60acb78e3edb5f1702add8dcdba4da52ce90
refs/heads/master
2020-05-18T21:58:54.189394
2019-05-08T20:49:30
2019-05-08T20:49:30
184,678,572
0
0
null
null
null
null
UTF-8
Scilab
false
false
382
tst
test2.tst
load Larc.hdl, set RAM16K[0] %X8101, // 1. li R1 1 set RAM16K[1] %X8202, // 2. li R2 2 set RAM16K[2] %XD512, // 3. sw 5(R1) R2 MEM[6] <-- 2 set RAM16K[3] %XC324, // 4. lw R3 4(R2) R3 <-- MEM[6] set RAM16K[4] %XF000, // 5. halt set RAM16K[5] %X8103 //should not do this ; repeat 25 { tick, tock; }
dee16b497b16c1de5dac481a1f852da55470fa98
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH12/EX12.28/example12_28.sce
5a0be95c79769a4449546b7e6921b6389d4929e2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
519
sce
example12_28.sce
clc // Given that P = 5e7 // power in watt e = 33 // percentage efficiency of nuclear reactor m1 = 2.01478 // mass of H(2) in a.m.u. m2 = 4.00388 // mass of He(4) in a.m.u. // Sample Problem 28 on page no. 12.42 printf("\n # PROBLEM 28 # \n") printf(" Standard formula used \n") printf(" del_E = del_m * c^2 \n efficiency = output/input \n") m = (2 * m1) - m2 E = m * 931 * 1.6e-13 E_O = E * e /(2 * 100) N = P / E_O k = N * m1 / 6.023e26 M = k * 24 * 3600 printf("\n Mass of deuterium consumed per day is %f kg.",M)
c626722bff71b711314720b8f2f409d30298f62d
449d555969bfd7befe906877abab098c6e63a0e8
/2318/CH1/EX1.4/ex_1_4.sce
505f2bc981406676dcf4337d2776bb7188dfdcff
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
579
sce
ex_1_4.sce
//Example 1.4://ARITHEMATIC MEAN,AVERAGE DEVIATION ,STANDARD DEVIATION AND PROBABLE ERROR clc; clear; T=[99.7,99.8,100,100.2,100.3];//VOLTS q=[T(1),T(2),T(3),T(4),T(5)];// AM=(q(1)+q(2)+q(3)+q(4)+q(5))/5;//arithematic mean in mm for i= 1:5 qb(i)= T(i)-AM; end Q= [qb(1),qb(2),qb(3),qb(4),qb(5)];// AV=(-qb(1)-qb(2)-qb(3)+qb(4)+qb(5))/5;// SD=sqrt(((qb(1)^2)+(qb(2)^2)+(qb(3)^2)+(qb(4)^2)+(qb(5)^2))/5);//standard deviation V=SD^2;// disp(AM,"arithmetic mean is, (V)=") disp(AV,"average deviation is, (V)=") disp(SD,"standard deviation is, (V)=") disp(V,"Variance is ,(V)=")
52d00cceeaf97030349c8f027bc9acabedc8dcf8
449d555969bfd7befe906877abab098c6e63a0e8
/42/CH1/EX1.5/sadiku_1_5.sce
9e4a71d0fdcf1bf37cdbefdd66d298b1b30b3225
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,053
sce
sadiku_1_5.sce
clear; clc; format('v',7); P=[2,0,-1]; Q=[2,-1,2]; R=[2,-3,1]; S=P+Q; T=P-Q; U1=S(1,2)*T(1,3)-S(1,3)*T(1,2); U2=S(1,3)*T(1,1)-S(1,1)*T(1,3); U3=S(1,1)*T(1,2)-S(1,2)*T(1,1); U=[U1 U2 U3]; disp(U,'(P+Q)*(P-Q)=') V1=R(1,2)*P(1,3)-R(1,3)*P(1,2); V2=R(1,3)*P(1,1)-R(1,1)*P(1,3); V3=R(1,1)*P(1,2)-R(1,2)*P(1,1); V=[V1 V2 V3]; X=(Q(1,1)*V(1,1)+Q(1,2)*V(1,2)+Q(1,3)*V(1,3)); disp(X,'Q.R*P') W1=Q(1,2)*R(1,3)-Q(1,3)*R(1,2); W2=Q(1,3)*R(1,1)-Q(1,1)*R(1,3); W3=Q(1,1)*R(1,2)-Q(1,2)*R(1,1); W=[W1 W2 W3]; Y=(W(1,1)*P(1,1)+W(1,2)*P(1,2)+W(1,3)*P(1,3)); disp(Y,'P.Q*R') det_W=(W(1,1)^2+W(1,2)^2+W(1,3)^2)^.5; det_Q=(Q(1,1)^2+Q(1,2)^2+Q(1,3)^2)^.5; det_R=(R(1,1)^2+R(1,2)^2+R(1,3)^2)^.5 sineoftheta=(det_W/(det_Q*det_R)); disp(sineoftheta,'sin of theta=') Z1=P(1,2)*W(1,3)-P(1,3)*W(1,2); Z2=P(1,3)*W(1,1)-P(1,1)*W(1,3); Z3=P(1,1)*W(1,2)-P(1,2)*W(1,1); Z=[Z1 Z2 Z3]; disp(Z,'P* Q*R=') disp(W/det_W,'Unit Vector Perpendicular to Q & R') q=Q/det_Q; C=(P(1,1)*q(1,1)+P(1,2)*q(1,2)+P(1,3)*q(1,3)); disp(C*q,'Component of P along Q');
7c8616f93244f27a7497905084ccf47895070da3
449d555969bfd7befe906877abab098c6e63a0e8
/2495/CH8/EX8.23.7/Ex8_23_7.sce
d5fb188fb15dc3802252a9fb0f0de40820720aaa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
260
sce
Ex8_23_7.sce
clear clc Ecell=-0.188;//in V RT_F=0.05913;//in V H=10^(Ecell/RT_F);//in mol/dm^3 M=1/32;// alpha=(H/M);//degree of freedom printf('alpha=%.3f*10^-2',alpha/10^-2) Kh=(M*alpha^2)/(1-alpha);// printf('\nKh=%.2f*10^-5 mol/dm^3',Kh/10^-5) //page 547
d3e9954f47aacd26df4b3f361ea20fe10b9b2a56
449d555969bfd7befe906877abab098c6e63a0e8
/770/CH2/EX2.6/2_6.sce
d4952f3d15d3e4ffbfff97c21a8dffad1d2d0b2a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,106
sce
2_6.sce
clear; clc; funcprot(0); //Example - 2.6 //Page number - 47 printf("Example - 2.6 and Page number - 47\n\n"); //Given T = 373.15;//[K] - Temperature P = 101325;//[N/m^(2)] - Pressure Tc = 647.1;//[K] - Critical temperature Pc = 220.55*10^(5);//[N/m^(2)] - Critical pressure w = 0.345;//acentric factor Tr = T/Tc;// Reduced temperature R = 8.314;//[J/mol*K] - UNiversal gas constant B_0 = 0.083-(0.422/(Tr)^(1.6)); B_1 = 0.139-(0.172/(Tr)^(4.2)); //We know,(B*Pc)/(R*Tc) = B_0+(w*B_1) B = ((B_0+(w*B_1))*(R*Tc))/Pc;//[m^(3)/mol] - Second virial coefficient //We have, Z = 1+(B/V) and Z = (P*V)/(R*T). Substituting the value of Z,we get // V^(2)-((R*T)/P)*V-((B*R*T)/P)=0 .Solving the quadratic equation by shreedharcharya rule V1 = (((R*T)/P) + (((R*T)/P)^(2) + 4*1*((B*R*T)/P))^(1/2))/2*1; printf(" The molar volume of water vapour is %f m^(3)/mol",V1); //The roots are,V1 = 0.0003670 [m^(3)/mol] and V2 = 0.0302510 [m^(3)/mol]. //As 'V2' is near to ideal volume (0.030618 [m^(3)/mol]),it is taken as the molar volume //The other root 'V1' hss no physical significance
a75101e2ecfe581ccca9c1f70a49919cd5c48295
449d555969bfd7befe906877abab098c6e63a0e8
/2882/CH7/EX7.2/Ex7_2.sce
59597ae0e3986696c842db380130e28e57d927e7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex7_2.sce
//Tested on Windows 7 Ultimate 32-bit //Chapter 7 Field Effect Transistors Pg no. 224 clear; clc; //Given Data IDSS=30D-3;//drain saturation current in amperes VGS_cutoff=-10;//gate to source cutoff voltage in volts gm0=5000D-6;//transconductance at VGS=0 Volts in Siemens VGS=-5;//gate to source voltage in volts //Solution gm=gm0*(1-VGS/VGS_cutoff);//transconductance for given VGS in Siemens ID=IDSS*(1-VGS/VGS_cutoff)^2;//drain current for given VGS in amperes printf("gm = %d μS\n ",gm*10^6); printf("ID = %.1f mA",ID*10^3); //calculation of gm is incorrect in textbook as gm0=5000μS and not 500μS
8191e6c25ca564fe4c558cfc2f26cf5cb84d0a75
0fe450b52908c4de1f70576ebfbce8d2b98ec427
/src/test_ods_1_c.tst
aea09c93574cf7f388a0f89f2bdef999a57d4afa
[ "MIT", "Zlib", "BSD-3-Clause", "OML" ]
permissive
technologiespro/ciyam
41c75cce77fed8db16439b10698c6fd0db10d4d5
5a63b84251132b393221500edb0e285cc4f38a7d
refs/heads/master
2020-12-02T10:05:46.529201
2017-07-09T08:55:53
2017-07-09T08:55:53
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,828
tst
test_ods_1_c.tst
** File Info Version Id = 65536 Num Trans = 0 Num Writers = 0 Init Tranlog = 0 Total Entries = 14 Tranlog Offset = 0 Transaction Id = 17 Index Free List = 13 Total Size of Data = 428 Data Transformation Id = 16 Index Transformation Id = 58 ** Entry Info for: all num: 0000000000000000 pos: 0000000000000000 len: 0000000000000034 txn: 0000000000000010 txo: 0000000000000000 flags: lk=0 tx=0 num: 0000000000000001 pos: 00000000000000be len: 0000000000000033 txn: 000000000000000b txo: 0000000000000000 flags: lk=0 tx=0 num: 0000000000000002 pos: 0000000000000034 len: 0000000000000033 txn: 000000000000000b txo: 0000000000000000 flags: lk=0 tx=0 num: 0000000000000003 pos: 0000000000000149 len: 000000000000001b txn: 000000000000000c txo: 0000000000000000 flags: lk=0 tx=0 num: 0000000000000004 pos: 000000000000017f len: 000000000000002d txn: 000000000000000f txo: 0000000000000000 flags: lk=0 tx=0 num: 0000000000000005 pos: 000000000000012c len: 000000000000001d txn: 000000000000000b txo: 0000000000000000 flags: lk=0 tx=0 num: 0000000000000006 pos: 000000000000010e len: 000000000000001e txn: 000000000000000b txo: 0000000000000000 flags: lk=0 tx=0 num: 0000000000000007 pos: 00000000000000f1 len: 000000000000001d txn: 000000000000000b txo: 0000000000000000 flags: lk=0 tx=0 num: 0000000000000008 pos: 00000000000000a1 len: 000000000000001d txn: 000000000000000b txo: 0000000000000000 flags: lk=0 tx=0 num: 0000000000000009 pos: 0000000000000084 len: 000000000000001d txn: 000000000000000b txo: 0000000000000000 flags: lk=0 tx=0 num: 000000000000000a pos: 0000000000000067 len: 000000000000001d txn: 000000000000000b txo: 0000000000000000 flags: lk=0 tx=0 num: 000000000000000b pos: 0000000000000164 len: 000000000000001b txn: 000000000000000e txo: 0000000000000000 flags: lk=0 tx=0 num: 000000000000000c pos: 000000000000000e len: 0000000000000000 txn: 0000000000000010 txo: 0000000000000000 flags: lk=0 tx=3 (freelist entry) link: 000000000000000d num: 000000000000000d pos: 0000000000000000 len: 0000000000000000 txn: 0000000000000010 txo: 0000000000000000 flags: lk=0 tx=3 (freelist entry) link: <at end> ** Freelist Info First freelist entry = 12 Iterating over freelist...(OK) Last freelist entry = 13 Total freelist entries = 2
8bb884a9a51730334f6d9a87339c510f2a8a7976
67be33a2f1b2815769ef612759053f35ea40977a
/Gevorgyan.TodoListApp.RestApi/ClientApp/src/app/core/service-proxies/service-proxies.tst
3672d0b19b164f4928610b9417cbac116bc3dbe4
[]
no_license
WAlbus792/TodoListApp
2fbcb08ebf2b87bd9b018f16a1bdb5475bc15f0e
d925e9e2c8f82860b9851270e192d065f92b6dc8
refs/heads/master
2020-07-01T22:57:39.991393
2019-08-11T16:58:59
2019-08-11T16:58:59
201,331,892
0
0
null
null
null
null
UTF-8
Scilab
false
false
10,607
tst
service-proxies.tst
${ // Enable extension methods by adding using Typewriter.Extensions.* using Typewriter.Extensions.Types; using static System.Diagnostics.Debug; Template(Settings settings) { settings.IncludeProject("Gevorgyan.TodoListApp.RestApi"); settings.OutputFilenameFactory = file => file.Name.Replace("Controller.cs", "ServiceProxy.ts"); settings.OutputExtension = ".ts"; } // generates Import components string Imports(Class c) { IEnumerable<string> resultTypes = c.Methods.Where(m => m.Type.ClassName().EndsWith("Model")) .Select(m => $"import {{ {m.Type.ClassName()} }} from '../models/{m.Type.ClassName()}'"); IEnumerable<string> paramsTypes = c.Methods.SelectMany(m => m.Parameters).Where(p => p.Type.ClassName().EndsWith("Model")) .Select(m => $"import {{ {m.Type.ClassName()} }} from '../models/{m.Type.ClassName()}'"); return string.Join(Environment.NewLine, resultTypes.Union(paramsTypes).Distinct()); } // Class name for service proxy string ServiceProxyName(Class cl) => cl.Name.Replace("Controller", "ServiceProxy"); // Is method for getting the data for kendo-grid? bool IsKendoRequest(Method method) => method.Parameters.Any(p => p.Attributes.Any(a => a.Name == "DataSourceRequest")); // Gets other parameters besides the main request parameter of kendo-grid IEnumerable<Parameter> NonKendoParameters(Method method) => method.Parameters.Where(p => p.Attributes.Any(a => a.Name == "FromQuery")); // Gets a parameter specified in route of the method for kendo-grid Parameter NonKendoParameterSpecifiedInRoute(Method method) => method.Parameters.FirstOrDefault(p => !p.Attributes.Any(a => a.Name == "FromQuery" || a.Name == "DataSourceRequest")); // Method parameter passed in the body of request Parameter BodyParameter(Method method) => method.Parameters.FirstOrDefault(p => p.Attributes.Any(a => a.Name == "FromBody")); // Method for parameters passed through query string of request IEnumerable<Parameter> QueryStringParameters(Method method) => method.Parameters.Where(p => p.Attributes.Any(a => a.Name == "FromQuery")); // Method for checking has the method any query parameter bool AnyQueryParameter(Method method) => method.Parameters.Any(p => p.Attributes.Any(a => a.Name == "FromQuery")); // Method result is void? bool IsVoidResult(Method method) => method.Type.name == "void"; // Method result is Enumerable? bool IsEnumerableResult(Method method) => method.Type.IsEnumerable; // Method result is file? bool IsFileResult(Method method) => method.Type.Name == "FileContentResult"; // Method result Type is Primitive (string, boolean, etc)? bool IsResultTypePrimitive(Method method) => method.Type.IsPrimitive; // Returns Enumerable type name string EnumeratedType(Method method) { if(!method.Type.IsEnumerable) throw new InvalidOperationException("Attempt to get the type of items not of an Enumerable"); string typeName = method.Type.Name; return typeName.Substring(0, typeName.Length - 2); } // All frequently used methods static List<string> httpMethods = new List<string>(){ "HttpGet", "HttpPost", "HttpDelete", "HttpPut"}; // Http method name string HttpMethod(Method method) { string httpMethod = method.Attributes.FirstOrDefault(a => httpMethods.Contains(a.Name))?.Name; if(httpMethod != null) return httpMethod.Remove(0, 4).ToLower(); throw new InvalidOperationException("Method of http request is not determined"); } // Controller Name (without "Controller") for methods string ControllerName(Method method) { Class cl = (Class)method.Parent; return cl.Name.Replace("Controller", string.Empty); } // path to the Api method string Route(Method method) { var route = method.Attributes.FirstOrDefault(a => httpMethods.Contains(a.Name) && a.Value != null && a.Value != "{id}"); return route?.Value ?? string.Empty; } bool IsParameterSpecifiedInRoute(Method method){ return method.Attributes.Any(a => a.Value != null && a.Value.Contains("{") && a.Value.Contains("}")); } string RouteNameWithParameter(Method method) { var methodParameterName = method.Parameters.FirstOrDefault(p => !p.Attributes.Any()).name; var route = method.Attributes.FirstOrDefault(a => httpMethods.Contains(a.Name)).Value; string routeNameWithoutParam = route.Substring(route.IndexOf('}') + 1); var returnValue = methodParameterName; if(!string.IsNullOrWhiteSpace(routeNameWithoutParam)) returnValue += $" + \"{routeNameWithoutParam}\""; return returnValue; } } // for AUTO-GENERATION! import { ServiceProxyBase, API_BASE_URL, FileContentResult } from "./service-proxy-base"; import 'rxjs/add/observable/fromPromise'; import 'rxjs/add/observable/of'; import 'rxjs/add/observable/throw'; import 'rxjs/add/operator/map'; import 'rxjs/add/operator/toPromise'; import 'rxjs/add/operator/mergeMap'; import 'rxjs/add/operator/catch'; import { Observable } from 'rxjs/Observable'; import { Injectable, Inject, Optional, InjectionToken } from '@angular/core'; import { HttpClient, HttpHeaders, HttpResponse, HttpResponseBase } from '@angular/common/http'; import { DataSourceRequestState} from "@progress/kendo-data-query"; import { GridDataResult } from "@progress/kendo-angular-grid"; import { UserSessionProvider } from "../user-session-provider"; import * as moment from 'moment'; $Classes(*Controller)[$Imports export class $ServiceProxyName extends ServiceProxyBase { protected jsonParseReviver: ((key: string, value: any) => any) | undefined = undefined; constructor( private session: UserSessionProvider, @Inject(API_BASE_URL) private baseUrl: string, private http: HttpClient ) { super(session, baseUrl, http); } $Methods[ $IsKendoRequest[ $name($NonKendoParameterSpecifiedInRoute[$name: $Type, ]state: DataSourceRequestState$NonKendoParameters[, $name: $Type]): Observable<GridDataResult> { const relativePath = "/api/$ControllerName/"$IsParameterSpecifiedInRoute[ + $RouteNameWithParameter][ + "$Route"]; let args: [string, any][] = [ $NonKendoParameters[['$name', $name],]]; return this.fetch(relativePath, state, args); }][ $name($Parameters[$name: $Type][, ]): Observable<$IsVoidResult[void][$Type | null]> { let url_ = this.baseUrl + "/api/$ControllerName/$Route"$IsParameterSpecifiedInRoute[ + $RouteNameWithParameter]$AnyQueryParameter[ + "?"]; $QueryStringParameters[ if ($name === undefined || $name === null) throw new Error("The parameter '$name' must be defined and cannot be null."); else url_ += "$name=" + encodeURIComponent("" + $name) + "&"; url_ = url_.replace(/[?&]$/, ""); ] $BodyParameter[ const content_ = JSON.stringify($name); ] let options_: any = { $BodyParameter[body: content_,] observe: "response", responseType: "blob", headers: new HttpHeaders({ "Content-Type": "application/json", "Accept": "application/json" }) }; return Observable.fromPromise(this.transformOptions(options_)).flatMap(transformedOptions_ => { return this.http.request("$HttpMethod", url_, transformedOptions_); }).flatMap((response_: any) => { return this.process$Name(response_); }).catch((response_: any) => { if (response_ instanceof HttpResponseBase) { try { return this.process$Name(<any>response_); } catch (e) { return <Observable<$IsVoidResult[void][$Type | null]>><any>Observable.throw(e); } } else return <Observable<$IsVoidResult[void][$Type | null]>><any>Observable.throw(response_); }); } protected process$Name(response: HttpResponseBase): Observable<$IsVoidResult[void][$Type | null]> { const status = response.status; const responseBlob = response instanceof HttpResponse ? response.body : (<any>response).error instanceof Blob ? (<any>response).error : undefined; let _headers: any = {}; if (response.headers) { for (let key of response.headers.keys()) { _headers[key] = response.headers.get(key); }}; if (status === 200) { $IsVoidResult[ return this.blobToText(responseBlob).flatMap(_responseText => { return Observable.of<void>(<any>null); }); ][ $IsFileResult[ const contentDisposition = response.headers ? response.headers.get("content-disposition") : undefined; const fileNameMatch = contentDisposition ? /filename=this.hack?(;|$)/g.exec(contentDisposition) : undefined; const fileName = fileNameMatch && fileNameMatch.length > 1 ? fileNameMatch[1] : undefined; return Observable.of({ fileName: fileName, data: <any>responseBlob, status: status, headers: _headers }); ][ return this.blobToText(responseBlob).flatMap(_responseText => { let result200: any = null; let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver); $IsEnumerableResult[ if (resultData200 && resultData200.constructor === Array) { result200 = []; for (let item of resultData200) result200.push($EnumeratedType.fromJS(item)); } ][ result200 = resultData200 ? $IsResultTypePrimitive[resultData200][$Type.fromJS(resultData200)] : <any>null; ] return Observable.of(result200); }); ]] } else if (status !== 200 && status !== 204) { return this.blobToText(responseBlob).flatMap(_responseText => { return this.throwException("An unexpected server error occurred.", status, _responseText, _headers); }); } return Observable.of<$IsVoidResult[void][$Type | null]>(<any>null); } ]] } ]
8f8f0e38f7eb3305c21fae2c48f782ee8a76f18e
449d555969bfd7befe906877abab098c6e63a0e8
/2300/CH15/EX15.7.4/Ex15_4.sce
4dcb457e2917267d99b05fe5730b05b090ca6f18
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
876
sce
Ex15_4.sce
//scilab 5.4.1 //Windows 7 operating system //chapter 15 Active Filters clc clear fo=400//fo=centre frequency in Hz Q=10//Q=wo/w=Quality factor C1=0.1*10^-6 C2=0.1*10^-6//C1=C2=Assumed Capacitances in Farad Ao=2//Ao=gain at the centre frequency //R1*C1=Q/(wo*Ao) for active band pass Butterworth filter wo=2*%pi*fo R1=Q/(Ao*wo*C1) format("v",6) R3=Q/(wo*((C1*C2)/(C1+C2))) Rp=1/((wo^2)*R3*C1*C2) R2=(R1*Rp)/(R1-Rp) //Assuming arbitrarily (R6/R5)=10=a a=10 R6=10*1000//R6=Assumed resistance in ohms R5=R6/a R4=R5/Ao disp("The designed values of resistance and capacitance for a notch filter are:") disp("kilo ohm",(R1/1000),"R1=") disp("ohm",(R2),"R2=") disp("kilo ohm",(R3/1000),"R3=") disp("ohm",R4,"R4=") disp("kilo ohm",(R5/1000),"R5=") disp("kilo ohm",(R6/1000),"R6=") disp("micro Farad",C1/10^-6,"C1=") disp("micro Farad",C2/10^-6,"C2=")
9cb820ee0a2cbfc892c0837fa1e99c5b8d7b5bd5
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/gainplot.man.tst
b75b992800ab7934d18e16a74ab2f677a6699cb7
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
270
tst
gainplot.man.tst
clear;lines(0); s=poly(0,'s') h=syslin('c',(s^2+2*0.9*10*s+100)/(s^2+2*0.3*10.1*s+102.01)) gainplot(h,0.01,100,'(s^2+2*0.9*10*s+100)/(s^2+2*0.3*10.1*s+102.01)') xbasc() h1=h*syslin('c',(s^2+2*0.1*15.1*s+228.01)/(s^2+2*0.9*15*s+225)) gainplot([h1;h],0.01,100,['h1';'h'])
75fefe7099fb8368df53201db54fdd95fe82245e
449d555969bfd7befe906877abab098c6e63a0e8
/3176/CH3/EX3.2/Ex3_2.sce
6b984f70ea35df9e843d47e1dde0a3e23922b9d8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
798
sce
Ex3_2.sce
//Ex3_2 // Illustration of Power Law Transformation // Version : Scilab 5.4.1 // Operating System : Window-xp, Window-7 //Toolbox: Image Processing Design 8.3.1-1 //Toolbox: SIVP 0.5.3.1-2 //Reference book name : Digital Image Processing //book author: Rafael C. Gonzalez and Richard E. Woods clc; close; clear; xdel(winsid())//to close all currently open figure(s). gray=imread("Ex3_2.tif"); gray=im2double(gray); figure,ShowImage(gray,'Gray Image'); title('Original Image','color','blue','fontsize',4); [M,N]=size(gray); c=1; gamma=[3 4 5]; for i=1:length(gamma) b=c.*(gray).^gamma(i); //Gamma transformation b=mat2gray(b); figure,ShowImage(b,'Gray Image'); title('Enhance Image after Gamma transformation','color','blue','fontsize',4); end
0c28b16ef8c7ba9799364ead81a38cf2ace01995
449d555969bfd7befe906877abab098c6e63a0e8
/1427/CH16/EX16.3/16_3.sce
2295c5cd167d4943facdb561af725b55f0aef286
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
278
sce
16_3.sce
//ques-16.3 //Finding initial concentration of the reactants clc //2nd order reaction t=60;//time (in minutes) k=5.2*10^-3;//rate constant (in L/mol/minute) //k = x/(t*a*(a-x)) //where, x = a/2 a=1/(t*k); printf("Initial concentration of reactants is %.1f mol/L.",a);
c574ff132c1cfa14291173f4b388b744cc546ca1
449d555969bfd7befe906877abab098c6e63a0e8
/2459/CH11/EX11.8/Ex11_8.sce
93fd88c3004f01859ea6ae0f0c513766b4b5dc66
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
295
sce
Ex11_8.sce
//chapter11 //example11.8 //page209 alpha1=0.9 alpha2=0.98 alpha3=0.99 beta1=alpha1/(1-alpha1) beta2=alpha2/(1-alpha2) beta3=alpha3/(1-alpha3) printf("for alpha=0.9, beta=%.1f \n",beta1) printf("for alpha=0.98, beta=%.1f \n",beta2) printf("for alpha=0.99, beta=%.1f \n",beta3)
1fd3f098d901eb619abbb57ca63c3e402ccc5b0a
19fd40cb94855327f6f4db1330b2ccec188b13cb
/Aulas/Aula6/dif3.sce
2b88d2dd9f07618fa30b37c21e2b45c33eeab4ce
[]
no_license
Afcam/Materiais-Eletricos-Magneticos
6e22194419f2704f5e49c4dc9f5b282ccabafc11
0fb3c8847a7c5a8ee9d46d7be1280eceefe08c79
refs/heads/master
2023-07-24T21:50:12.675217
2018-05-11T13:27:25
2018-05-11T13:27:25
126,596,938
0
0
null
null
null
null
UTF-8
Scilab
false
false
902
sce
dif3.sce
//Programa: dif3.m //Modelo de Difusão //Fronteiras Constantes + Pulso Quadrado clear; N = 30; //Número de Nós L = 1; //Comprimento [m] D = 1; //input('D = '); //Coeficiente de Difusão xmin = 0; xmax = L; //[m] dx = (xmax - xmin)/(N-1); //Passo [m] xp = linspace(xmin,xmax,N); //[m] up = 0*xp; //posterior: u(k+1) uc = 0*xp; //corrente: u(k) Kd = 0.2 //Constante de Difusão //Estabilidade: Kd <= 1/2 dt = Kd*(dx^2)/D; disp('dt = '); disp(dt); //Pulso Quadrado uc(13:18) = 1; scf(1); clf(1); plot(xp,uc,'b'); square(0,0,1,1.2); sleep(3000); scf(1); clf(1); while(%t) //Tempo Discreto drawlater; for i = 2:(N-1) //Posição Discreta up(i) = uc(i) + Kd*(uc(i+1) + uc(i-1) - 2*uc(i)); end //Fronteiras Constantes up(1) = 0; up(N) = 1; scf(1); clf(1); plot(xp,up,'b'); square(0,0,1,1.2); drawnow; uc = up; end
0b29289024cf4d372b1d7b2737e958f14b7029b6
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.4.1/Unix-Windows/scilab-2.4.1/macros/arma/armac.sci
b90e37d4f3acf47d04b909bc5d4276b346235fe2
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
709
sci
armac.sci
function [ar]=armac(a,b,d,ny,nu,sig) // just build a tlist for storing armacx coefficients // A(z^-1)y= B(z^-1)u + D(z^-1)sig*e(t) // a=<Id,a1,..,a_r>; matrix (ny,r*ny) // b=<b0,.....,b_s>; matrix (ny,(s+1)*nu) // d=<Id,d1,..,d_p>; matrix (ny,p*ny); // ny : dim of observation y // nu : dim of control u // sig : standard deviation (ny,ny); // //! // Copyright INRIA [na,la]=size(a); if na<>ny,write(%io(2),"a(:,1) must be of dimension "+string(ny));end [nb,lb]=size(b); if nb<>ny,write(%io(2),"b(:,1) must be of dimension "+string(ny));end [nd,ld]=size(d); if nd<>ny,write(%io(2),"d(:,1) must be of dimension "+string(ny));end ar=tlist(['ar','a','b','d','ny','nu','sig'],a,b,d,ny,nu,sig);
d1e5af6cca89a1d5670b13ac1ee6f755a762b027
518b77b4f75f1e023ec173d2cfa465812d9ffa2b
/oqpskdemod/genqamdemod.sci
966bf532aaeb208d16430a158cef9caff6e4e245
[]
no_license
senthilkumarIRTT/Scilab-communication-toolbox
94fd7d1ad7408805817bb22a37a8e8eef135733b
b1bfd518daf8496f3a2c056d4dd996de327e1acc
refs/heads/master
2021-01-10T20:30:24.937033
2015-12-20T00:17:31
2015-12-20T00:17:31
41,198,649
0
0
null
2015-08-22T10:01:31
2015-08-22T08:40:51
null
UTF-8
Scilab
false
false
1,127
sci
genqamdemod.sci
function z = genqamdemod(y,const) //GENQAMDEMOD General quadrature amplitude demodulation. // Z = GENQAMDEMOD(Y,CONST) demodulates the complex envelope Y of a // quadrature amplitude modulated signal. CONST is a one dimensional // vector that specifies the signal mapping. For two-dimensional signals, // the function treats each column as 1 channel. // error checks [ll,rr]=argn(0); funcprot(0); if(rr>2) error('comm:genqamdemod:numarg'); end if(~(type(y)==[1 5 8])) error('comm:genqamdemod:Ynum'); end // check that const is a 1-D vector if(~isvector(const)|~(type(const)==[1 5 8])) error('comm:genqamdemod:const1D'); end // --- Assure that Y, if one dimensional, has the correct orientation --- % wid = size(y,1); if(wid ==1) y = y(:); end [m,n]=size(y) z = zeros(m,n); disp(z) disp(size(y,1)) disp(size(y,2)) for(i = 1:size(y,1)) for(j = 1:size(y,2)) //compute the minimum distance for each symbol [tmp, idx] = min(abs(y(i,j) - const)); z(i,j) = idx-1; end end // --- restore the output signal to the original orientation --- % if(wid == 1) z = z'; end endfunction
9b40e9bebc81607a86d7450d176c5742d84d5fdd
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH25/EX25.3/Ex25_3.sce
f4a25843b09f56cdcfa5e504b9f9fa0ea48da388
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
109
sce
Ex25_3.sce
clc; re=8; RC=220; RE=47; R1=4.7*10**3; R2=470; B=50; rL=RC; AV=rL/re; Ai=B; Ap=AV*Ai; disp(Ap);
18aaab79b85a112a708c955f4514b4b1ee58464f
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/tweet/bow/bow.19_18.tst
1e80a6c46b07049193e91832522a9e850b867532
[]
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
13,549
tst
bow.19_18.tst
19 5:1.0 56:1.0 66:0.5 86:0.07692307692307693 106:0.5 317:0.5 342:1.0 390:0.25 574:1.0 698:1.0 712:0.5 1153:0.3333333333333333 1764:0.5 1808:1.0 2581:1.0 4115:1.0 19 37:0.14285714285714285 85:0.09090909090909091 106:0.25 107:0.125 259:1.0 261:1.0 267:0.03508771929824561 317:1.0 390:0.25 927:0.5 1676:0.5 3752:0.5 4669:1.0 19 9:0.013157894736842105 19:0.3333333333333333 40:1.0 53:1.0 56:2.0 57:0.25 85:0.09090909090909091 86:0.07692307692307693 107:0.125 121:1.0 124:0.2 265:0.5 267:0.07017543859649122 282:1.0 317:0.5 342:1.0 472:1.0 666:0.2 855:0.5 1142:1.0 1371:1.0 1529:1.0 1717:1.0 3062:1.0 4802:1.0 4807:1.0 19 9:0.013157894736842105 57:0.25 107:0.125 112:1.0 198:0.5 261:1.0 577:1.0 821:0.25 1798:0.3333333333333333 2297:1.0 2643:1.0 4559:1.0 5225:1.0 19 29:1.0 39:0.3333333333333333 56:2.0 57:0.25 124:0.2 159:0.5 197:0.3333333333333333 384:0.25 575:1.0 576:1.0 927:0.5 1027:1.0 1030:1.0 1032:1.0 1245:0.3333333333333333 1702:1.0 2618:1.0 3261:1.0 4547:1.0 5378:1.0 19 29:1.0 106:0.25 348:0.16666666666666666 390:0.25 821:0.25 1155:1.0 1245:0.16666666666666666 2360:0.5 3752:0.5 3994:1.0 4164:1.0 19 29:1.0 30:0.5 56:1.0 107:0.125 267:0.017543859649122806 341:1.0 770:0.3333333333333333 848:0.25 1245:0.16666666666666666 1477:0.5 1681:1.0 1696:1.0 2132:1.0 2772:1.0 3096:1.0 4093:1.0 4704:1.0 4841:1.0 19 42:0.5 56:1.0 62:0.16666666666666666 81:0.027777777777777776 86:0.07692307692307693 267:0.017543859649122806 474:0.5 822:0.5 856:1.0 1153:0.3333333333333333 1205:0.5 1510:1.0 1786:0.16666666666666666 3360:1.0 4573:1.0 4897:1.0 4959:1.0 19 29:2.0 60:1.0 107:0.125 146:1.0 197:0.3333333333333333 284:0.16666666666666666 287:0.5 341:1.0 344:1.0 416:0.3333333333333333 856:1.0 894:1.0 927:0.5 1027:2.0 1175:1.0 1245:0.16666666666666666 1433:1.0 1676:0.5 1679:1.0 2517:1.0 3461:1.0 4351:1.0 4775:1.0 5792:1.0 19 62:0.3333333333333333 81:0.027777777777777776 86:0.15384615384615385 106:0.25 1102:1.0 1205:0.5 2141:0.25 4594:1.0 4700:1.0 19 39:0.3333333333333333 42:0.5 53:1.0 56:5.0 66:0.25 85:0.09090909090909091 86:0.07692307692307693 120:0.5 124:0.2 175:1.0 267:0.017543859649122806 287:0.5 330:1.0 342:1.0 669:1.0 691:0.5 847:1.0 909:1.0 1749:1.0 1763:1.0 1798:0.3333333333333333 3619:1.0 4108:0.5 4401:1.0 4571:1.0 5346:1.0 19 20:1.0 37:0.14285714285714285 42:0.5 56:1.0 124:0.2 265:0.5 267:0.017543859649122806 342:1.0 348:0.16666666666666666 856:1.0 1188:0.6666666666666666 1205:0.5 4077:1.0 5262:1.0 19 53:1.0 56:3.0 57:0.25 62:0.16666666666666666 86:0.07692307692307693 94:0.3333333333333333 109:1.0 121:1.0 124:0.4 267:0.017543859649122806 466:0.25 472:0.5 712:0.5 894:1.0 1161:0.5 1187:1.0 1477:0.5 1543:1.0 2399:1.0 2641:1.0 3620:1.0 4073:1.0 4824:1.0 5342:1.0 19 30:0.5 56:2.0 57:0.25 86:0.07692307692307693 133:0.5 197:0.3333333333333333 198:0.5 228:1.0 261:1.0 267:0.03508771929824561 666:0.4 894:1.0 913:1.0 927:0.5 1128:1.0 1156:1.0 1213:1.0 1245:0.16666666666666666 2141:0.25 2641:1.0 3028:2.0 3409:1.0 4072:1.0 4901:1.0 5263:1.0 5611:1.0 19 29:1.0 30:0.5 57:0.25 85:0.09090909090909091 86:0.07692307692307693 124:0.4 197:0.3333333333333333 228:1.0 267:0.017543859649122806 416:0.3333333333333333 466:0.25 789:1.0 846:1.0 909:1.0 1146:1.0 1211:0.16666666666666666 1245:0.16666666666666666 1372:1.0 1552:1.0 1606:0.2 1786:0.16666666666666666 2643:1.0 2755:1.0 3550:1.0 4251:0.5 4289:1.0 4363:1.0 4568:1.0 5393:1.0 19 29:1.0 39:0.3333333333333333 57:0.25 86:0.07692307692307693 94:0.3333333333333333 110:0.5 131:0.5 133:1.0 175:1.0 261:1.0 267:0.05263157894736842 284:0.16666666666666666 317:0.5 574:1.0 576:1.0 594:0.5 1131:1.0 1160:2.0 1201:1.0 1245:0.3333333333333333 1354:1.0 1543:1.0 1764:0.5 1786:0.16666666666666666 2772:1.0 4233:1.0 4333:1.0 4579:1.0 4897:1.0 19 30:0.5 39:0.6666666666666666 44:1.0 53:1.0 57:0.25 62:0.16666666666666666 81:0.027777777777777776 86:0.07692307692307693 90:2.0 106:0.25 107:0.125 196:1.0 261:1.0 284:0.16666666666666666 384:0.25 416:0.3333333333333333 689:0.2 891:1.0 4573:1.0 4671:1.0 5672:1.0 19 29:1.0 50:1.0 53:2.0 56:2.0 57:1.0 86:0.07692307692307693 107:0.125 124:0.2 132:1.0 146:1.0 228:1.0 267:0.05263157894736842 317:0.5 345:1.0 391:1.0 417:2.0 576:1.0 891:1.0 909:1.0 927:0.5 1205:0.5 1245:0.16666666666666666 1763:1.0 2708:1.0 3428:1.0 3738:1.0 4071:1.0 4633:1.0 4783:1.0 4807:1.0 5535:1.0 19 20:1.0 62:0.16666666666666666 86:0.23076923076923078 106:0.5 107:0.125 124:0.2 197:0.3333333333333333 228:1.0 231:0.5 250:1.0 261:1.0 267:0.017543859649122806 511:1.0 891:1.0 927:0.5 1032:1.0 1135:1.0 1205:0.5 1245:0.3333333333333333 1308:1.0 1354:1.0 1512:0.5 1543:1.0 1894:2.0 1909:1.0 2041:1.0 2344:1.0 2955:1.0 4072:1.0 4115:1.0 4713:1.0 5195:1.0 5592:1.0 19 5:1.0 60:1.0 86:0.07692307692307693 89:0.04 106:0.25 123:1.0 198:0.5 207:1.0 284:0.3333333333333333 343:1.0 416:0.3333333333333333 793:1.0 1035:1.0 1105:2.0 1201:1.0 1433:1.0 3740:1.0 4180:1.0 4289:1.0 4533:1.0 4704:1.0 5513:1.0 5861:1.0 19 19:0.3333333333333333 29:1.0 37:0.14285714285714285 86:0.07692307692307693 107:0.125 198:0.5 267:0.017543859649122806 1368:1.0 1543:1.0 4077:1.0 4802:1.0 19 29:2.0 30:1.0 37:0.14285714285714285 53:2.0 56:1.0 57:0.25 62:0.16666666666666666 90:1.0 228:1.0 261:1.0 267:0.03508771929824561 317:0.5 348:0.16666666666666666 666:0.2 848:0.25 856:1.0 927:0.5 1153:0.3333333333333333 1211:0.16666666666666666 1676:0.5 1726:0.5 1763:2.0 1909:1.0 2244:0.5 3140:1.0 3550:1.0 4237:1.0 4733:1.0 19 9:0.013157894736842105 53:1.0 57:0.5 85:0.09090909090909091 86:0.23076923076923078 90:1.0 106:0.25 121:2.0 267:0.07017543859649122 417:1.0 906:1.0 1032:1.0 1041:1.0 1187:1.0 1245:0.16666666666666666 1679:0.5 2204:1.0 3583:1.0 4812:1.0 5606:1.0 19 30:0.5 56:1.0 66:0.25 86:0.15384615384615385 94:0.3333333333333333 261:1.0 267:0.03508771929824561 317:0.5 342:1.0 416:0.3333333333333333 574:1.0 690:1.0 1679:0.5 2227:1.0 3774:1.0 4812:1.0 4959:1.0 6004:1.0 19 9:0.013157894736842105 30:0.5 44:1.0 56:1.0 81:0.027777777777777776 85:0.09090909090909091 124:0.4 267:0.03508771929824561 572:0.3333333333333333 1032:1.0 1320:0.5 1648:1.0 2227:1.0 4001:1.0 4072:1.0 4075:1.0 4411:1.0 19 9:0.013157894736842105 85:0.09090909090909091 131:0.5 267:0.017543859649122806 284:0.16666666666666666 384:0.25 416:0.3333333333333333 1201:1.0 1433:1.0 1606:0.2 1786:0.16666666666666666 5591:1.0 19 29:1.0 30:0.5 62:0.16666666666666666 107:0.125 149:0.5 474:0.5 891:1.0 1245:0.16666666666666666 5477:1.0 19 9:0.013157894736842105 39:0.3333333333333333 53:1.0 56:1.0 81:0.027777777777777776 85:0.09090909090909091 86:0.15384615384615385 261:1.0 267:0.017543859649122806 305:1.0 341:1.0 686:1.0 1034:0.125 1245:0.16666666666666666 1608:0.5 3028:1.0 3829:1.0 4251:0.5 4847:1.0 4929:1.0 19 86:0.07692307692307693 107:0.125 267:0.03508771929824561 689:0.2 1034:0.125 3028:1.0 3461:1.0 4812:1.0 19 9:0.013157894736842105 86:0.07692307692307693 198:1.0 472:0.5 1035:1.0 1770:0.25 2041:1.0 3192:1.0 3357:1.0 4226:1.0 5988:1.0 19 30:1.0 42:0.5 53:1.0 57:0.25 66:0.5 228:2.0 259:1.0 265:0.5 317:0.5 330:1.0 345:1.0 849:1.0 1135:1.0 1245:0.16666666666666666 1573:1.0 1668:1.0 1909:2.0 3943:1.0 4680:1.0 19 29:1.0 57:0.25 62:0.16666666666666666 86:0.07692307692307693 264:1.0 267:0.017543859649122806 330:1.0 474:0.5 848:0.25 876:1.0 891:1.0 994:1.0 1034:0.125 1135:1.0 1150:0.5 1245:0.3333333333333333 1683:1.0 1849:1.0 2559:1.0 4077:1.0 4785:1.0 4924:1.0 19 37:0.14285714285714285 53:1.0 56:1.0 57:0.5 85:0.09090909090909091 119:1.0 124:0.4 198:0.5 267:0.05263157894736842 317:0.5 472:0.5 712:0.5 856:1.0 891:1.0 927:0.5 1211:0.16666666666666666 1214:1.0 1227:1.0 1258:1.0 1320:0.5 1354:1.0 3028:1.0 3428:1.0 4564:1.0 5143:1.0 5148:0.5 5672:1.0 19 25:0.09090909090909091 39:0.3333333333333333 53:3.0 57:0.75 83:0.2 90:1.0 121:1.0 265:0.5 282:1.0 474:0.5 559:1.0 742:1.0 3916:1.0 4602:1.0 5378:1.0 19 53:1.0 56:2.0 81:0.027777777777777776 85:0.09090909090909091 121:1.0 124:0.4 207:1.0 267:0.03508771929824561 573:1.0 691:0.5 927:0.5 1134:0.3333333333333333 1201:1.0 1679:1.0 1681:1.0 1921:1.0 1977:1.0 2236:0.3333333333333333 4411:1.0 4779:1.0 5102:1.0 5342:1.0 19 30:0.5 57:0.5 106:0.25 267:0.017543859649122806 317:0.5 383:0.25 472:0.5 573:1.0 909:1.0 1032:1.0 1131:1.0 1477:0.5 2344:1.0 3261:1.0 4330:1.0 4565:1.0 4978:1.0 19 30:1.0 39:0.3333333333333333 42:0.5 53:1.0 56:1.0 59:1.0 85:0.09090909090909091 90:1.0 124:0.2 133:0.5 161:1.0 198:0.5 261:1.0 267:0.017543859649122806 342:1.0 511:1.0 677:1.0 712:0.5 846:1.0 847:1.0 1245:0.16666666666666666 1258:1.0 1649:1.0 4180:1.0 4436:1.0 4990:1.0 5373:1.0 5698:1.0 19 9:0.013157894736842105 19:0.3333333333333333 39:0.3333333333333333 57:0.25 60:1.0 62:0.16666666666666666 86:0.07692307692307693 106:0.5 110:0.5 124:0.2 197:0.3333333333333333 267:0.03508771929824561 317:0.5 756:1.0 1245:0.16666666666666666 1326:0.2 1682:1.0 1977:1.0 2204:1.0 3752:0.5 4115:1.0 4418:1.0 19 29:2.0 37:0.2857142857142857 43:1.0 44:2.0 53:1.0 56:1.0 62:0.16666666666666666 85:0.09090909090909091 86:0.07692307692307693 90:2.0 106:0.25 107:0.25 124:0.4 131:0.5 133:0.5 198:1.0 228:1.0 267:0.03508771929824561 282:1.0 348:0.16666666666666666 666:0.2 783:1.0 891:1.0 927:1.0 1032:1.0 1084:0.3333333333333333 1136:1.0 1205:0.5 1211:0.16666666666666666 1679:0.5 1699:0.5 1742:1.0 1909:1.0 2132:1.0 2244:0.5 2306:0.5 3552:1.0 4030:1.0 4250:2.0 5233:1.0 5535:1.0 19 39:0.6666666666666666 50:1.0 53:1.0 56:3.0 57:0.5 81:0.027777777777777776 86:0.23076923076923078 106:0.25 133:0.5 197:0.3333333333333333 261:1.0 267:0.03508771929824561 305:1.0 332:0.3333333333333333 333:1.0 760:1.0 1245:0.16666666666666666 1679:0.5 1764:0.5 1978:1.0 2944:1.0 3192:1.0 4916:1.0 19 30:0.5 107:0.125 161:1.0 261:1.0 267:0.03508771929824561 344:1.0 851:2.0 1153:0.3333333333333333 1245:0.16666666666666666 2163:1.0 4250:1.0 4834:1.0 5135:1.0 19 9:0.013157894736842105 29:1.0 57:0.25 83:0.2 86:0.15384615384615385 106:0.25 110:0.5 348:0.16666666666666666 588:0.06666666666666667 849:1.0 1153:0.3333333333333333 1543:1.0 2427:1.0 3191:1.0 3849:1.0 4319:1.0 4500:1.0 5378:1.0 19 30:1.0 86:0.07692307692307693 89:0.04 267:0.017543859649122806 692:1.0 823:1.0 856:1.0 1163:0.5 1477:0.5 1510:1.0 1786:0.16666666666666666 4076:0.5 4835:1.0 4912:1.0 19 29:1.0 56:1.0 85:0.2727272727272727 86:0.23076923076923078 106:0.25 121:1.0 267:0.03508771929824561 361:1.0 393:0.3333333333333333 472:1.0 574:1.0 788:1.0 1131:1.0 1161:1.0 1187:1.0 1206:1.0 1320:0.5 1340:1.0 1354:1.0 1512:0.5 1588:1.0 1602:0.5 3739:1.0 19 66:0.25 106:0.25 267:0.017543859649122806 444:0.5 574:1.0 686:1.0 1156:1.0 1211:0.16666666666666666 1433:1.0 4716:0.5 19 37:0.14285714285714285 62:0.16666666666666666 85:0.09090909090909091 86:0.07692307692307693 90:1.0 107:0.125 124:0.2 228:1.0 267:0.03508771929824561 384:0.25 846:1.0 1032:1.0 1102:1.0 1160:1.0 1258:1.0 1681:1.0 2141:0.25 2306:0.5 2420:1.0 2851:1.0 4321:1.0 4359:1.0 19 85:0.09090909090909091 86:0.07692307692307693 89:0.04 327:1.0 344:1.0 348:0.16666666666666666 856:1.0 927:0.5 1161:0.5 1175:1.0 1201:1.0 2132:1.0 2796:1.0 19 29:1.0 30:0.5 37:0.14285714285714285 57:0.25 62:0.16666666666666666 85:0.09090909090909091 86:0.07692307692307693 197:0.3333333333333333 198:0.5 267:0.03508771929824561 282:1.0 317:0.5 572:0.3333333333333333 575:1.0 851:1.0 894:1.0 1534:1.0 2368:1.0 4070:1.0 4215:1.0 5630:1.0 19 53:3.0 56:1.0 57:0.75 66:0.25 85:0.18181818181818182 86:0.07692307692307693 106:0.25 107:0.125 261:1.0 267:0.017543859649122806 317:0.5 329:1.0 389:1.0 855:0.5 1014:1.0 1035:1.0 1036:1.0 1543:2.0 1699:0.5 1931:1.0 2955:1.0 3286:1.0 4072:1.0 4077:1.0 4162:1.0 19 29:1.0 30:0.5 56:1.0 107:0.125 197:0.3333333333333333 261:1.0 267:0.03508771929824561 317:0.5 509:1.0 666:0.2 793:1.0 847:1.0 851:1.0 855:0.5 1150:0.5 1151:1.0 1245:0.16666666666666666 1865:1.0 2186:1.0 4047:1.0 4072:1.0 4882:1.0 5513:1.0 19 9:0.013157894736842105 30:0.5 57:0.25 61:1.0 86:0.07692307692307693 133:0.5 267:0.017543859649122806 317:0.5 574:1.0 1034:0.25 1156:1.0 1206:1.0 1477:0.5 1702:1.0 1764:1.0 2141:0.25 2703:1.0 4115:1.0 4386:1.0 4831:1.0 4912:1.0 19 29:1.0 56:1.0 57:0.25 85:0.09090909090909091 86:0.07692307692307693 789:1.0 846:1.0 1065:1.0 1762:1.0 2360:0.5 4663:1.0 19 39:0.3333333333333333 42:0.5 57:0.25 83:0.2 85:0.09090909090909091 86:0.23076923076923078 94:0.3333333333333333 196:1.0 265:0.5 267:0.05263157894736842 380:1.0 846:1.0 1153:0.3333333333333333 1245:0.3333333333333333 1486:1.0 2120:1.0 3145:1.0 4809:1.0 4838:1.0 4839:0.5 5546:1.0 19 53:2.0 57:0.5 62:0.16666666666666666 81:0.027777777777777776 86:0.07692307692307693 198:0.5 284:0.16666666666666666 848:0.25 1030:1.0 1935:1.0 5380:1.0 5546:1.0 19 57:0.5 62:0.16666666666666666 90:1.0 267:0.03508771929824561 383:0.25 391:1.0 891:1.0 1201:1.0 1205:0.5 1214:1.0 1278:1.0 3096:1.0 4323:1.0 4765:1.0 19 9:0.013157894736842105 29:1.0 56:1.0 57:0.25 686:1.0 848:0.25 927:0.5 1034:0.125 1155:1.0 1935:1.0 2041:1.0 2132:1.0 2283:1.0 2822:1.0 3461:1.0 3740:1.0 4341:1.0 4765:1.0 5364:1.0 5466:1.0 19 85:0.09090909090909091 265:0.5 267:0.017543859649122806 384:0.25 577:1.0 821:0.25 1135:1.0 19 16:1.0 53:1.0 56:1.0 57:0.25 60:1.0 62:0.16666666666666666 90:1.0 559:1.0 691:0.5 848:0.25 891:1.0 913:1.0 1032:1.0 1161:0.5 1176:1.0 1260:1.0 1510:1.0 1798:0.3333333333333333 2141:0.25 2163:1.0 2204:1.0 2641:1.0 2703:1.0 4028:1.0 4198:1.0 4765:1.0 4824:1.0 5535:1.0 19 30:0.5 53:1.0 56:1.0 83:0.2 86:0.07692307692307693 121:1.0 416:0.3333333333333333 669:1.0 891:1.0 1135:1.0 1211:0.16666666666666666 2955:1.0 3720:0.5 3839:1.0 4736:1.0 5131:1.0 19 7:1.0 9:0.013157894736842105 30:0.5 62:0.16666666666666666 63:1.0 81:0.027777777777777776 86:0.15384615384615385 332:0.3333333333333333 1030:1.0 1031:1.0 1608:0.5 2821:1.0 3261:1.0 4076:0.5 5175:1.0
ec0a18c647491aa1b385999b11e4b07762e9b8f3
28a8d47c4d79b231f8bebc28925792a290f67e9f
/html/others/examples/create_package.tst
fe22c6882d1d0be9ac15e06dc45f03720a999d06
[]
no_license
ZVlad1980/doo
a1fe7d18ccfd0acf6ced7dbb33927c86a925aae8
e81be8f524b78b9a6ec06b7f83a8c13354fc6412
refs/heads/master
2021-08-17T02:03:54.553822
2017-11-20T17:21:03
2017-11-20T17:21:03
111,440,129
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,219
tst
create_package.tst
PL/SQL Developer Test script 3.0 32 -- Created on 04.06.2014 by ZHURAVOV_VB declare -- Local variables here p xxweb.xxweb_api_ap_pkg_typ; begin -- Test statements here p := xxweb.xxweb_api_ap_pkg_typ('XXWEB','XXWEB_TEST_PKG'); p.add_method(p_type => 'F',p_name => 'get_name', p_in_params => xxweb.xxweb_api_ap_pkg_m_pars_typ( xxweb.xxweb_api_ap_pkg_m_par_typ('p_par1',null,'varchar2'), xxweb.xxweb_api_ap_pkg_m_par_typ('p_par2',null,'number') ), p_out_type => 'number', p_is_public => 'Y'); -- -- p.methods(p.methods.count).add_line('dbms_output.put_line(''Ok'');'); p.methods(p.methods.count).add_line('for i in 1..3 loop'); p.methods(p.methods.count).indent_inc; p.methods(p.methods.count).add_line('dbms_output.put_line(i);'); p.methods(p.methods.count).indent_dec; p.methods(p.methods.count).add_line('end loop;'); p.methods(p.methods.count).add_line('--'); p.methods(p.methods.count).add_line('return 1;'); -- p.generate; dbms_output.put_line(p.specification); dbms_output.put_line('/'); dbms_output.put_line(p.body); end; 0 0
037a4bff7c19e0c4e1492c1da378c6b00cf36c4a
92d437f771b932e7830c448f910250b9747096ec
/SAE/SISO/p_da.sce
e7a0be44cbdbfacd008d73200a61e2e9961825d0
[]
no_license
pcaires/Proj_cvoo
c98ca370f5b740ab57ace1d518760100b50a3819
59a2a9573d6e9657b6beb89f7a0b637fa4d1e2a7
refs/heads/master
2023-05-14T02:30:06.579732
2021-06-06T22:48:49
2021-06-06T22:48:49
367,080,028
0
0
null
null
null
null
UTF-8
Scilab
false
false
721
sce
p_da.sce
clear exec('dados/dinamica.sce',-1) A = A(1:4,1:4) B = B(1:4,:) // p/da H1 = syslin('c',A,B(:,1),[0 1 0 0]) H1 = (-1)*H1 //Root locus para ganhos negativos/ realimentação positiva evans(H1,.5) title('p/da') wn = [0.5 1/1.4] zeta =[0.6 0.08] mtlb_axis([-.8 .1 -2 2]) sgrid(zeta,wn,'black') //Post-tuning graphical elements ch = gca().children; curves = ch(2).children; curves.thickness = 2; asymptotes = ch(ch.type=="Segs"); asymptotes.segs_color = color("grey70"); //Escolha do ganho k = 0.006 // Plot dos polos do anel fechado //S = zpk(H1/(1+k*H1)) //p = S.P{1} //for j=1:1:length(p) // plot(real(p(j)),imag(p(j)),'r+','MarkerSize',15) //end //Display dos polos disp("polos do anel fechado:") disp(p)
ae96998f5792db1c57636ba8b674a2189536ab8a
449d555969bfd7befe906877abab098c6e63a0e8
/1739/CH3/EX3.11/Exa3_11.sce
26545c7a5fface064490a92f57639cc737f4c089
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
678
sce
Exa3_11.sce
//Exa 3.11 clc; clear; close; //Given data : //Let Material Dispersion, lambda^2*(d^2n/dlambda^2)=a a=0.03;//in ns deltaTau_s=15;//in nm lambda=1.3;//in um lambda=1.3*10^3;//in nm c=3*10^8;//speed of light in m/s c=3*10^5;//speed of light in Km/s //Part (a) Dmat=a/(lambda*c);//sec/nm-Km Dmat=Dmat*10^12;//ps/nm-Km disp("Material dispersion coefficient at a wavelength of 1.3 micro meter is "+string(Dmat)+" ps/nm-Km"); //Part (b) deltaTmat_perKm=deltaTau_s*Dmat;//in ps/km disp("Rms pulse broadning per Km due to material dispersion is "+string(deltaTmat_perKm)+" ps/km or "+string(deltaTmat_perKm*10^-3)+" ns/km"); //Note : Ans is not accurate in the book.
b87e35b30ece5232afa884d503050a1cf5c59659
449d555969bfd7befe906877abab098c6e63a0e8
/2873/CH9/EX9.14/Ex9_14.sce
fdf60e3a23795ed0f0786461b5fd6671b2443cfc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
275
sce
Ex9_14.sce
// Display mode mode(0); // Display warning for floating point exception ieee(1); clear; clc; disp("Engineering Thermodynamics by Onkar Singh Chapter 9 Example 14") disp("In question no.14,various expression is derived which cannot be solved using scilab software.")
5d51fddb86423cc46fba6d2d4ccf73b332ede060
3dde4a142b61cec47a2ba2f7d7d3fee569221b8c
/main file.sce
772ce1dbdedfce1129701bb1afb4c1150f91de9d
[]
no_license
iamvarunsingh/Image-processing-in-scilab
58967960b49b1035c1c801275685b18cf74a852d
c81163dd957fdbf320ecd2fb170fa2df8cde2bac
refs/heads/master
2020-05-29T21:20:32.520125
2014-07-04T17:30:03
2014-07-04T17:30:03
21,503,618
1
0
null
null
null
null
UTF-8
Scilab
false
false
5,271
sce
main file.sce
//The starting steps of image processing for the given image is presented in this scinotes. //the images are named accordingly and to download the images directly,you can log on to "https://drive.google.com/folderview?id=0B-hExKho8d7eUTFpaTZiYUFtU2M&usp=sharing" //This code is an open source file with no copyright and was developed during an internship program in IIT Bombay by FOSSEE team (Varun Singh). //These codes requires toolboxes such as IPD 8.0 and SIVP 0.5.3.1 executed, to work. global IPD_PATH; RGB= ReadImage(IPD_PATH + 'demos\image.png'); //"image.png" here represents the original image Image= RGB2Gray(RGB); figure(); ShowColorImage(RGB,'Color Image'); //Shows original image (stacksize max) figure(); ShowImage (Image, 'Gray Level Image');// shows gray level figure(); ShowImage (Image, 'Pseudo Color Image', jetcolormap(256));// pseudo color Histogram= CreateHistogram(Image);// creates the histogram of image figure();plot(0: 255, Histogram); figure(); ImageTool(Image);// for manual pixel location figure(); A=ShowImage(RGB(:,:,1), 'Red Channel'); // **important** conversion to red channel figure(); B=ShowImage(RGB(:,:,2), 'Green Channel'); // **important** conversion to green channel imwrite(A,'red patches.png'); // writing the observed red channel image **execute SIVP** imwrite(B,'green patches.png');// writing the observed red channel image **execute SIVP** RGB= ReadImage('C:\Users\varun singh\Desktop\Matlab\red patches.png'); //calling of writen red patches. Image= RGB2Gray(RGB); InvertedImage= uint8(255*ones(size(Image,1),size(Image,2)))-Image; Histogram= CreateHistogram(InvertedImage);// histogram of red (patches) image. figure();plot(0:255,Histogram); LogicalImage= SegmentByThreshold(InvertedImage,99); //logical image conversion figure(); ShowImage(Image,'Original Image');// shows original red image figure(); ShowImage(InvertedImage,'Invereted Image');//shows inverted image figure(); ShowImage(LogicalImage,'Logical Image');//shows logical image ImageTool(Image);// makes it easy for the user to check pixel locations manually. //EDGE DETECTION(IMPORTANT) imwrite(LogicalImage,'logical.png'); im = imread('C:\Users\varun singh\Desktop\Matlab\red patches.png');// calling red image in SIVP imread function im = rgb2gray(im); E = edge(im, 'sobel'); imshow(E); //for edge sobel E = edge(im, 'canny', [0.06, 0.2]); imshow(E); //for canny sobel **important** E = edge(im, 'sobel', -1); imshow(mat2gray(E)); //mat2gray conversion of sobel. I = imread('C:\Users\varun singh\Desktop\Matlab\ed.png');// ed.png is the canny edge image. [ii] = find(I>0);// find and size function to find the pixel count. pixelcount = size(ii) //find and size function to find the pixel count close() im= imread('C:\Users\varun singh\Desktop\Matlab\images\image.png'); imshow(im); a=rgb2gray(im); imshow(a); b=im2bw(a,0.1);// conversion in binary imwrite(b,'b.png'); imshow(b) // binary green patches only because of 0.1 threshold [r,c]=size(b) // checking the size of rows and columns of the whole image //Logical image using Otsu method. (secondary program for logical image) Threshold= CalculateOtsuThreshold(InvertedImage); Threshold= 52; LogicalImage= SegmentByThreshold(InvertedImage,Threshold); figure();ShowImage(LogicalImage,'Result of threshold'); ImageTool(Image); Image//an hypermatrix [i,j]=find(Image>200)// to find the red patches location in the matrix using threshold (note that images written in scilab,may it be logical, are converted into matrices with 0 to 255 values) //cropping of the patches to find the centroid CroppedInvertedImage= InvertedImage(0 : 364,0 : 287); Threshold= CalculateOtsuThreshold(InvertedImage); Threshold= 90; LogicalImage= SegmentByThreshold(CroppedInvertedImage,Threshold); figure();ShowImage(LogicalImage,'segmented cropped image'); //Calling the red patches image and finding the centroid location of the image from where the distance is to be measured.**important** S= imread('C:\Users\varun singh\Desktop\Matlab\red patches.png'); ShowColorImage(S,'0'); S2= rgb2gray(S); ShowImage(S2,'0'); S3=S2>160; ShowImage(S3,'0'); se = CreateStructureElement('vertical_line', 10); S4 = ErodeImage(S3, se); se = CreateStructureElement('horizontal_line', 10); S4 = ErodeImage(S4, se); ShowImage(S4,'0'); S5 = S4.*1; IsCalculated = CreateFeatureStruct(%f); // Feature struct is generated. IsCalculated.Centroid = %t; // The bounding box shall be calculated for each blob. S6 = AnalyzeBlobs(S5, IsCalculated); ShowColorImage(S,'0'); plot(S6(1).Centroid(1),S6(1).Centroid(2),'r*'); //Secondary approach and centroid detection of sample patch //The distance can be calculated using L*a*b function of IPD tool and it is executed here below. RGBAsDouble = double (RGB)/ 255; LAB = RGB2LAB(RGBAsDouble); ListOfChannels = ['L*', 'a*', 'b*']; for n=1: size(ListOfChannels, 2) Minimum=min(LAB(:,:,n));Maximum=max(LAB(:,:,n)); NormalizedChannel= (LAB(:,:,n)- Minimum)/(Maximum-Minimum); [Histogram,ListOfBins]= CreateHistogram(NormalizedChannel,100); figure(); ShowImage(NormalizedChannel,ListOfChannels(n)); figure();plot(ListOfBins,Histogram); end
067c9cc82f6052c508b3417288b24b0e35539bd7
98074d67753fcd91680ba7e447cba54e710d6410
/topologias pruebas/EstiNet/topo1/topo1.sim/topo1.sce
fb2486d5fe40901518d131852fe618d06d74437e
[]
no_license
elchobo5/licenciaturaSDN
82fd88740f131234fde2e3d965d8e69cc85a22d2
9868bbb16c26389eac7353f873aac08654a085d1
refs/heads/master
2020-04-06T07:00:01.266197
2016-09-03T15:13:12
2016-09-03T15:13:12
63,431,538
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,634
sce
topo1.sce
#estinet scenario file $node_(1) set 32.000000 216.000000 0 0.0 0.0 0.0 $node_(2) set 154.000000 95.000000 0 0.0 0.0 0.0 $node_(3) set 46.000000 130.000000 0 0.0 0.0 0.0 $node_(4) set 233.000000 216.000000 0 0.0 0.0 0.0 $node_(5) set 7.000000 43.000000 0 0.0 0.0 0.0 $node_(6) set 62.000000 45.000000 0 0.0 0.0 0.0 $node_(7) set 112.000000 43.000000 0 0.0 0.0 0.0 $node_(8) set 168.000000 45.000000 0 0.0 0.0 0.0 $node_(9) set 258.000000 126.000000 0 0.0 0.0 0.0 $node_(10) set 340.000000 185.000000 0 0.0 0.0 0.0 $node_(11) set 376.000000 240.000000 0 0.0 0.0 0.0 $node_(12) set 373.000000 310.000000 0 0.0 0.0 0.0 $node_(13) set 347.000000 351.000000 0 0.0 0.0 0.0 $node_(14) set 307.000000 376.000000 0 0.0 0.0 0.0 $node_(15) set 243.000000 405.000000 0 0.0 0.0 0.0 $node_(16) set 149.000000 409.000000 0 0.0 0.0 0.0 $node_(17) set 261.000000 67.000000 0 0.0 0.0 0.0 $node_(18) set 314.000000 85.000000 0 0.0 0.0 0.0 $node_(19) set 365.000000 143.000000 0 0.0 0.0 0.0 $node_(20) set 417.000000 176.000000 0 0.0 0.0 0.0 $node_(21) set 450.000000 234.000000 0 0.0 0.0 0.0 $node_(22) set 468.000000 273.000000 0 0.0 0.0 0.0 $node_(23) set 460.000000 330.000000 0 0.0 0.0 0.0 $node_(24) set 472.000000 364.000000 0 0.0 0.0 0.0 $node_(25) set 490.000000 406.000000 0 0.0 0.0 0.0 $node_(26) set 482.000000 436.000000 0 0.0 0.0 0.0 $node_(27) set 436.000000 449.000000 0 0.0 0.0 0.0 $node_(28) set 399.000000 476.000000 0 0.0 0.0 0.0 $node_(29) set 358.000000 506.000000 0 0.0 0.0 0.0 $node_(30) set 309.000000 512.000000 0 0.0 0.0 0.0 $node_(31) set 269.000000 510.000000 0 0.0 0.0 0.0 $node_(32) set 231.000000 522.000000 0 0.0 0.0 0.0
b10fa5ff4d6e4243eb609a90ad5fd6e9584f613e
449d555969bfd7befe906877abab098c6e63a0e8
/1646/CH13/EX13.3/Ch13Ex3.sce
83793392e38b46ffa0f1ad3ace5608daf1760b14
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
504
sce
Ch13Ex3.sce
// Scilab Code Ex13.3: Page-649 (2011) clc;clear; chi_e = 35.4e-12;....// Susceptability of the material, C-square/N-meter-square eps_0 = 8.85e-12;....// Electric permittivity in free space, C-squre/N-meter-square K = 1 + (chi_e/eps_0); printf("\nThe dielectric constant = %d ",K); eps = (eps_0*K); printf("\nThe electric permittivity = %5.3e C-square/N-meter square ",eps); // Result // The dielectric constant = 5 // The electric permittivity = 4.425e-011 C-square/N-meter square
cd315d1ab3304bee6e7af9f72f5b6226708258a9
449d555969bfd7befe906877abab098c6e63a0e8
/3850/CH32/EX32.3/Ex32_3.sce
eb4100bb6432e44ad739bafb87bbda13e7a6445c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
386
sce
Ex32_3.sce
//To Calculate the Resistance of an aluminium wire //Example 32.3 clear; clc; rho=2.6*10^-8;//Resistivity of Aluminium in ohm-metre l=0.50;//Length of Aluminium wire in metres A=2*10^-6;//Cross sectional area of aluminium wire in metre^2 R=rho*l/A;//Formula for finding the resistance of an aluminium wire printf("Resistance of the aluminium wire= %f ohm",R);
f2f2a04aea6d068ed9e190e2eeebc1221ba4de14
449d555969bfd7befe906877abab098c6e63a0e8
/2915/CH1/EX1.3/Ex1_3.sce
43e4f5ed8041449c57bb08df07d3e177ee24ef18
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
525
sce
Ex1_3.sce
clc,clear //example 1.3 //To determine length of unknown side in 3 given right triangles //Triangle ABC AB=5 //given AC=4 //given a=sqrt(AB^2- AC^2) //by pythagoras theorem printf('Triangle ABC: a=%f units \n',a) //Triangle DEF DE=2 //given EF=1 //given e=sqrt(DE^2- EF^2) //by pythagoras theorem printf(' Triangle DEF: e=%f units = sqrt(%f) units\n',e,e^2) //Triangle XYZ XZ=1 //given YZ=1 //given z=sqrt(XZ^2+YZ^2)//by pythagoras theorem printf(' Triangle XYZ: z=%f units = sqrt(%f) units\n',z,z^2)
d12c88c2eb51c0afcb0e2cd6151565cffbf612dc
449d555969bfd7befe906877abab098c6e63a0e8
/215/CH2/EX2.3/ex2_3.sce
87a2176913b01e34d1ed0ca6c63b321f156e50bd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
399
sce
ex2_3.sce
//Example 2.3 //Calculate the voltage and power dissipated acreoss the resistor terminals //From figure 2.24b disp("Given") disp("R=560 ohm ; i=428mA") R=560;i=428*10^-3; //Voltage across a resistor is disp("v=R*i") v=R*i; printf("Voltage across a resistor=%3.3fV\n",v) //Power dissipated by the resistor is disp("p=v*i") p=v*i; printf("Power dissipated by the resistor=%3.3fW\n",p)
e3a6d27a220ecf47ba46155fa21b74258e63a93a
449d555969bfd7befe906877abab098c6e63a0e8
/557/CH14/EX14.7/7.sce
dc31a3e75fe402770c13cb0b49fda28067f6d71e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
684
sce
7.sce
clc; funcprot(0);//Example 14.7 //Initializing the variables d = [0.1 0.125 0.15 0.1 0.1 ]; // Corrosponding to AA1B AA2B BC CD CF l = [30 30 60 15 30]; // Corrosponding to AA1B AA2B BC CD CF rho = 1.2; f = 0.006; Ha = 100; Hf = 60; He = 40; //Calculations for(i=1:length(d)) K(i) = f*l(i)/(3*d(i)^5); end K_ab = K(1)*K(2)/(sqrt(K(1))+sqrt(K(2)))^2; K_ac = K_ab + K(3); Hc = (K_ac*Hf +K(5)*Ha/4)/(K_ac+K(5)/4); Q = sqrt((Ha - Hc)/K_ac); function[z] = f(n) z = He - Hc + (0.5*Q)^2 *(K(4)+(4000/n)^2); endfunction n = fsolve(1,f); disp(n,"Percentage valve opening (%) :", Hc,"Head at C (m):", Q, "total Volume flow rate (m3/s):");
495bb641b28843a9fb86174ec925a0f24b46e177
449d555969bfd7befe906877abab098c6e63a0e8
/98/CH14/EX14.6/example14_6.sce
0eedbcaa89fe5c0fe5f84145bfdffee1ac9ad8db
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
819
sce
example14_6.sce
//Chapter 14 //Example 14_6 //Page 365 x=139.7; y=-42.8; iab=x+%i*(y); ibc=(x-40)+%i*(y+30); icd=(x-160)+%i*(y+30); ida=(x-220.6)+%i*(y+65); va=11000/sqrt(3); vb=va-(iab)*(1+%i*0.6); vc=vb-(ibc)*(1.2+%i*0.9); vd=vc-(icd)*(0.8+%i*0.5); printf("Current in section AB = %.2f+j(%.2f) A \n", real(iab), imag(iab)); printf("Current in section BC = %.2f+j(%.2f) A \n", real(ibc), imag(ibc)); printf("Current in section CD = %.2f+j(%.2f) A \n", real(icd), imag(icd)); printf("Current in section DA = %.2f+j(%.2f) A \n\n", real(ida), imag(ida)); printf("Voltage at supply end = %d V/phase \n", va); printf("Voltage at station B = %.2f+j(%.2f) V \n", real(vb), imag(vb)); printf("Voltage at station C = %.2f+j(%.2f) V \n", real(vc), imag(vc)); printf("Voltage at station D = %.2f+j(%.2f) V \n", real(vd), imag(vd));
30afa6a87d1dbb1c72bc70fda01b3d0891596839
449d555969bfd7befe906877abab098c6e63a0e8
/1808/CH5/EX5.5/Chapter5_Exampl5.sce
7f784992c7c7b329e0ffcdb39a10ceeea146d80a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,413
sce
Chapter5_Exampl5.sce
clc clear //INPUT DATA fad=14;//free air delivered in m^3/min N=300;//speed in rpm p2=7;//delivery pressure in bar p1=1;//pressure in bar n=1.3;//index of compression and expansion t1=288;//temperature in K //CALCULATIONS //Without clearance volume vs=fad/(N*2);//swept volume of the cylinder in m^3 t2=t1*(p2/p1)^((n-1)/n);//Delivery temperature in K ip=(n/(n-1))*p1*10^2*(fad/60)*(((p2/p1)^((n-1)/n))-1);//indicated power in kW d=((vs*4/(3.14*1.5))^(1/3))*100;//bore of the cylinder in cm l=1.5*d;//stroke in cm //with clearance volume vs1=vs/(1.05-vs);//swept volume with clearence volume in m^3 t2=t1*(p2/p1)^((n-1)/n);//Delivery temperature in K nv=(vs/vs1)*100;//volumetric efficiency in percentage d1=((vs1*4/(3.14*1.5))^(1/3))*100;//bore of the cylinder in cm l1=1.5*d1;//stroke in cm //OUTPUT printf('(a)Without clearance volume \n (i)swept volume of the cylinder is %3.4f m^3 \n (ii)The delivery temperature is %3.4f K \n (iii)Indicated power is %3.3f kW \n (iv)volumetric efficiency is 100percentage \n (v)bore of the cylinder is %3.2f cm \n stroke %3.4f cm \n',vs,t2,ip,d,l) printf('(a)With clearance volume \n (i)swept volume of the cylinder is %3.4f m^3 \n (ii)The delivery temperature is %3.4f K \n (iii)Indicated power is %3.3f kW \n (iv)volumetric efficiency is %3.2f percentage \n (v)bore of the cylinder is %3.2f cm \n stroke %3.4f cm \n',vs1,t2,ip,nv,d1,l1)
3718084106a85361dc5a24329fa2d053bc90a1e3
1a00eb132340e145c8a7d8fd0ef79a02b24605a2
/macros/buildmacros.sce
82165a3f92e80cc477d0f723808a4b97792b29ac
[]
no_license
manasdas17/Scilab-Arduino-Toolbox
e848d75dc810cb0700df34b1e5c606802631ada4
2a6c9d3f9f2e656e1f201cecccd4adfe737175e7
refs/heads/master
2018-12-28T15:51:35.378091
2015-08-06T07:22:15
2015-08-06T07:22:15
37,854,821
3
2
null
null
null
null
UTF-8
Scilab
false
false
876
sce
buildmacros.sce
// This file is released under the 3-clause BSD license. See COPYING-BSD. function buildmacros() macros_path = get_absolute_file_path("buildmacros.sce"); tbx_build_macros(TOOLBOX_NAME, macros_path); blocks = [ "ARDUINO_ANALOG_READ" "ARDUINO_ANALOG_WRITE" "ARDUINO_DCMOTOR" ... "ARDUINO_DIGITAL_READ" "ARDUINO_DIGITAL_WRITE" "ARDUINO_ENCODER" ... "ARDUINO_SERVO_READ" "ARDUINO_SERVO_WRITE" "ARDUINO_SETUP" ... "ARDUINO_STEPPER" "ARDUINO_INTERRUPT"... "TIME_SAMPLE" "ARDUINO_SETUP" ... "ANALOG_READ_SB" "ANALOG_WRITE_SB" "DCMOTOR_SB" ... "DIGITAL_READ_SB" "DIGITAL_WRITE_SB" "ENCODER_SB" ... "SERVO_READ_SB" "SERVO_WRITE_SB" "STEPPER_SB" "INTERRUPT_SB" ... "ARDUINO_SCOPE" ]; tbx_build_blocks(toolbox_dir, blocks); endfunction buildmacros(); clear buildmacros;
730c1c92721e74a2167df5cdc3637225bf0c248b
449d555969bfd7befe906877abab098c6e63a0e8
/764/CH10/EX10.5.b/solution10_5.sce
9120d2444cf481f27fb5ac1454ded29d6730618f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,054
sce
solution10_5.sce
//Obtain path of solution file path = get_absolute_file_path('solution10_5.sce') //Obtain path of data file datapath = path + filesep() + 'data10_5.sci' //Clear all clc //Execute the data file exec(datapath) //Calculate the permissible shear stress for the spring tau (N/mm2) tau = (50/100)*Sut //Calculate the Wahl factor K K = (((4 * C) - 1)/((4 * C) - 4)) + (0.615/C) //Calculate the wire diameter d (mm) d = sqrt((K * 8 * P * C)/(%pi * tau)) dround = ceil(d) //Calculate the mean coil diameter D (mm) D = C * dround //Calculate the number of active coils N N = (delta * G * (dround^4))/(8 * P * (D^3)) Nceil = ceil(N) //Calculate the required spring rate k (N/mm) k = P/delta //Calculate the actual spring rate kact (N/mm) kact = (G * (dround^4))/(8 * (D^3) * Nceil) //Print results printf("\nWire diameter(d) = %f or %f mm\n",d, dround) printf("\nMean coil diameter(D) = %f mm\n",D) printf("\nNumber of active coils(N) = %f or %d\n",N, Nceil) printf("\nRequired spring rate(k) = %f N/mm\n",k) printf("\nActual spring rate(kact) = %f N/mm\n",kact)
33a4f478bebd85ac276f96dce82c5327ca5fa5b2
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.2/Unix/scilab-2.2/macros/scicos/CLR_f.sci
d16177055a3eade1568b9bb59360e44ab3dd4bda
[ "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
2,028
sci
CLR_f.sci
function [x,y,typ]=CLR_f(job,arg1,arg2) x=[];y=[];typ=[] select job case 'plot' then standard_draw(arg1) graphics=arg1(2); [orig,sz,orient,label]=graphics(1:4) xstringb(orig(1),orig(2),['Num(s)';'-----';'Den(s)'],sz(1),sz(2),'fill') 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(2);label=graphics(4) model=arg1(3);[x0,rpar,ipar]=model([6 8 9]) ns=prod(size(x0));nin=1;nout=1 if ipar==[] then //for compatibility A=matrix(rpar(1:ns*ns),ns,ns) B=matrix(rpar(ns*ns+1:ns*(ns+nin)),ns,nin) C=matrix(rpar(ns*(ns+nin)+1:ns*(ns+nin+nout)),nout,ns) D=rpar(ns*(ns+nin+nout)+1) H=ss2tf(syslin('c',A,B,C,D)) H=clean(H) if type(H)==16 then num=H(2);den=H(3) else num=H,den=1 end ipar=[sci2exp(num);sci2exp(den)] end s=poly(0,'s');z=poly(0,'s') while %t do [ok,label,tnum,tden]=getvalue('Set continuous SISO transfer parameters',.. ['Block label'; 'Numerator (s)'; 'Denominator (s)'],.. list('str',1,'str',1,'str',1),.. [label;ipar(1);ipar(2)]) if ~ok then break,end num=real(evstr(tnum)) den=real(evstr(tden)) if degree(num)>degree(den) then x_message('Transfer must be proper or strictly proper') ok=%f end if ok then H=cont_frm(num,den) [A,B,C,D]=H(2:5); graphics(4)=label; [ns1,ns1]=size(A) rpar=[matrix(A,ns1*ns1,1); matrix(B,ns1,1); matrix(C,ns1,1); D] if norm(D,1)<>0 then model(12)=[%t %f]; else model(12)=[%f %f]; end if ns1<=ns then x0=x0(1:ns1) else x0(ns1,1)=0 end model(6)=x0 model(8)=rpar model(9)=[tnum;tden] x(2)=graphics;x(3)=model break end end case 'define' then x0=0;A=-1;B=1;C=1;D=0; ipar=['1';'1+s'] model=list('csslti',1,1,0,0,x0,[],[A;B;C;D],ipar,'c',%f,[%f %f]) x=standard_define([2.5 2.5],model) end
5c8ed49630265fbe68aef312cdf5ce103313debd
449d555969bfd7befe906877abab098c6e63a0e8
/884/CH19/EX19.3/Example19_3.sce
d61d9a19da572d3eeba91d2b8468ef0c05327a55
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
361
sce
Example19_3.sce
//computation of standard emf of a cell clear; clc; printf("\t Example 19.3\n"); E0cathode=0.8;//standard electrode potential of cathode(Ag+/Ag), V E0anode=-2.37;//standard electrode potential of anode(Mg2+/Mg), V E0cell=E0cathode-E0anode;//standard emf of the cell, V printf("\t the standard emf of the cell is : %4.2f V\n",E0cell); //End
0b9594f90fd024f81238616b0f2943c012a28f1c
449d555969bfd7befe906877abab098c6e63a0e8
/3760/CH1/EX1.57/Ex1_57.sce
0ed8c7becd434f91916aeea9f2ff3ba5dbd3a88e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
388
sce
Ex1_57.sce
clc; k=5; // Effective turns ratio E1=400; // supply voltage for primary il=10; // load current E2=E1/k; // magnitude of maximum secondary induced E1o=E1+E2; // maximum possibe value of output voltage P=(il*E2)/1000; // Rating of secondary winding ip=(il*E2)/E1; // neglecting noload current, primary winding current I=ip+il; printf('Total primary line current is %f A',I);
2bfa9cba5a415d4ddf116f4238943c0b76927d15
449d555969bfd7befe906877abab098c6e63a0e8
/2096/CH7/EX7.5/ex_7_5.sce
252220aa53f99e937c6bb552d5392d4d28495316
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
231
sce
ex_7_5.sce
//Example 7.5 // LINEARITY clc; clear; close; //given data : V=1.8; // the output voltage D=.0045; // the deviation from a straight line through the origin may be +ve or-ve A=(D/V)*100; disp(A,"age linearity,A(%) = ± ")
58c35515f7eac101d6c7f27dfd84fce496ab42dd
61129043aed87983b640a33b1c260316043fa570
/drawing/primitives/sphere.sci
aff2adc6744f5028d61a2b55c0d812f5bdb50817
[]
no_license
dgerod/gfx4scilab
7643dbb42fcbea772af12017dccf484544da6f79
4aafc59f241a9383de65e4fb25eefef80660bf64
refs/heads/master
2021-01-19T03:35:08.368764
2017-04-08T06:05:33
2017-04-08T06:05:33
61,438,380
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,972
sci
sphere.sci
// ============================================================================= // gfx4scilab - drawing // dgerod@xyz-lab.org.es // ============================================================================= function [Sphere] = dw_Sphere_create(Radius, T) Sphere = 0; if rt_ishomog( T ) == %T then dim = struct("r", Radius); Sphere = struct("dim", dim, "T", T); end return [Sphere]; endfunction // ----------------------------------------------------------------------------- function [Points] = dw_Sphere_getPoints(Sphere) // This code is ONGOING... r = Sphere.dim.r; T = Sphere.T; u = linspace(-%pi/2,%pi/2,40); v = linspace(0,2*%pi,20); X = r*cos(u)' * cos(v); Y = r*cos(u)' * sin(v); Z = r*sin(u)' * ones(v); // // -- // // n = size(X,1); // m = size(X,2); // // X1 = matrix( X,1,n*m ); // Y1 = matrix( Y,1,n*m ); // Z1 = matrix( Z,1,n*m ); // // -- // // P = [X1' Y1' Z1' ]; // a = T * [P'; ones(1,size(P',2))]; // points = (a(1:3,:))'; // // // -- // X2 = matrix (points(:,1),n,m); // Y2 = matrix (points(:,2),n,m); // Z2 = matrix (points(:,3),n,m); // // -- // // Points = [X2' Y2' Z2' ]; // Ret = 1; Points = [X' Y' Z']; return [Points]; endfunction // ----------------------------------------------------------------------------- function [Handle] = dw_Sphere_draw(Sphere) Handle = list(); points = dw_Sphere_getPoints(Sphere); // This code is ONGOING... x = r*cos(alp).*cos(tet) + orig(1)*ones(tet); y = r*cos(alp).*sin(tet) + orig(2)*ones(tet); z = r*sin(alp) + orig(3)*ones(tet); r=1; orig=[0 0 0]; u = linspace(-%pi/2, %pi/2, 40) v = linspace(0, %pi*2, 20); [xx,yy,zz] = eval3dp(sph, u, v); Handle($+1) = plot3d(xx, yy, zz) endfunction // =============================================================================
493b2c1f943685267304bd9c60433b4c9d8adc72
449d555969bfd7befe906877abab098c6e63a0e8
/62/CH1/EX1.5.d/ex_1_5d.sce
26009f1ff84a34eea0b892c7ef46f8ff0a59edcb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
497
sce
ex_1_5d.sce
//ex_5 d even and odd signals of x(t) clear; clc; close; t=0:5; x=[ 0 2 4 2 0 0]; figure a=gca(); plot2d3(t,x) plot(t,x,'r.') xtitle('x[n]','n') a.thickness=2; figure a=gca(); t2=-5:5 ; y=[ x($:-1:2)./2 x(1) x(2:6)./2 ] plot2d3(t2,y) plot(t2,y,'r.') xtitle('even','n') a.y_location='right'; a.thickness=2; figure a=gca(); z=[ -x($:-1:2)./2 0 x(2:6)./2 ] plot2d3(t2,z) plot(t2,z,'r.') xtitle('odd','n') a.y_location='right'; a.x_location='origin'; a.thickness=2;
58642ec264f63267fec53e7bfd1d7fc44dc705c8
b260f3d67de5bd0fbb64f116da0d48c79d85382a
/commstr2poly/commstr2poly_ascend.sci
342b684de6c0d4d539aca4c0df2ebe9d1ae8078c
[]
no_license
nikitapinto/Scilab-Communications
92c1002a14452dab39edda3675bc0c4a4da25919
4ebf7bbd70374b812eeb8dd3333ed997bca70b09
refs/heads/master
2021-01-10T06:27:41.892245
2016-04-02T16:37:42
2016-04-02T16:37:42
51,426,801
0
0
null
null
null
null
UTF-8
Scilab
false
false
5,118
sci
commstr2poly_ascend.sci
funcprot(0); // Code for commstr2poly(ascend) to generate a vector of coefficients from an input string. // The coefficients vector is displayed in ascending order function coeffvect = commstr2poly_ascend(text) strs = strsplit(text); minus_idx = find(strs == '-'); // Find indexes of minus signs for i = 1:length(minus_idx) if (minus_idx(i)==1) then continue; end txt = strcat(strs(1:minus_idx(i)-1)) + '+' + strcat(strs(minus_idx(i): $)); splittxt = strsplit(txt) end splittxt = [splittxt ; '0']; loopcount = strindex(txt,'+'); length_loopcount = length(loopcount); // Store individual terms in a cell terms = cell(length_loopcount+1,1); start = 1; loopcount = [loopcount size(splittxt,1)] for i = 1:length(loopcount) terms(i) = cellstr(strcat(splittxt(start:loopcount(i)-1))); start = loopcount(i) + 1; end powers = repmat('',size(terms,1),1); coeffs = repmat('',size(terms,1),1); minus = zeros(size(terms,1),1); length_terms = size(terms,1); variableFound = %F; constFound = %F; // Extract all the values for each term.. for i = 1:length_terms [coeffs(i), powers(i),minus(i),variable(i),variableFound] = extractvalues(terms(i),variableFound); end // Setup final coefficients vector coeffvect = zeros(1,max(strtod(powers))); // Fill coefficients vector for each term for i = 1:length_terms if ~isempty(variable(i)) then [coeffvect,powers,coeffs(i),constFound] = withvariable(powers,coeffs(i),constFound,minus(i),coeffvect,i); else [coeffvect,constFound] = wovariable(coeffs(i),constFound,coeffvect,minus(i),i); end end endfunction // function to extract values - power,coefficient,variable name, minus sign. function [coeffs,powers,minus,variable,variableFound] = extractvalues(terms,variableFound) term = string(terms); // Remove all elements that dont belong to the test vector asciitest = [45, 48:57 , 65:90, 97:122]; str1 = strsplit(term); str1(~members(ascii(str1),asciitest)) = []; // Check for minus signs and set flags if (str1(1)== '-') then minus = 1; str1(1) = []; else minus = 0; end term = strcat(str1); // check pre processed term for constant and variable // only constant present if (~or(isnan(strtod(strsplit(term))))) then coeffs = term; powers = ''; variable = []; else // if const and var present [a1,Nchar,c,token1] = regexp(term,'/(?P<const>\d+)(?P<var>\w+)/'); if (a1==1) then tempvar = strrev(token1(2)); [a2,N,c,token2] = regexp(tempvar,'/(?P<power>\d+)(?P<var>\w+)/'); if (a2~=1) then coeffs = token1(1); variable = (token1(2)); powers = ''; else coeffs = token1(1); variable = strrev(token2(2)); powers = strrev(token2(1)); end else [a4,Nchar,c,token4] = regexp(term,'/(?P<var>\w+)/'); if (a4==1) then tempvar1 = strrev(token4(1)); [a5,N,c,token5] = regexp(tempvar1,'/(?P<power>\d+)(?P<var>\w+)/'); if (a5 ~= 1) then coeffs = ''; variable = (token4(1)); powers = ''; else coeffs = ''; variable = strrev(token5(2)); powers = strrev(token5(1)); end end end end if (~isempty(variable)) then // Record if variable present for future use variableFound = %T; end endfunction // function to fill in final coefficient vector if variable present in the term function [coeffvect,powers,coeffs,constFound] = withvariable(powers,coeffs,constFound,minus,coeffvect,idx) if (coeffs=='') then coeffs = '1'; end if isempty(powers(idx)) then powerNum = 1; powers(idx) = '1'; else powerNum = strtod(powers(idx)); orig_power = powers(idx); if (powerNum ~= fix(powerNum) | powerNum < 0) then error('Power string must be only posit)ve integer values'); end end dupconst = ((powerNum == 0) & constFound); // Check if this power is already specified pidx = powerNum+1; if (dupconst |(length(find(powers == string(powerNum))))>1) then error('Duplicate Powers in string' ); end constFound = (constFound | powerNum==0); // Get the coefficients num_coeff = strtod(coeffs); coeffvect(pidx) = num_coeff; if (minus) then coeffvect(pidx) = -num_coeff; end endfunction // function to fill final coefficient vector if the term is a constant function [coeffvect,constFound] = wovariable(coeffs,constFound,coeffvect,minus,idx) if (~constFound) then constFound = %T; coeffvect(idx) = strtod(coeffs); else error('Invalid constant in Input String') end if (minus) then coeffvect(idx) = -coeffvect(idx); end endfunction
1d820fdf695b0fdefa71ded32b7e8098884ab966
449d555969bfd7befe906877abab098c6e63a0e8
/2939/CH4/EX4.5/Ex4_5.sce
88ef40aaf622869e1d2f6c91676fd853aac7feb6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
// Ex4_5 clc; // Given: t=5736;// in years Nk=16.1;// dis/min L=6.022*10^23; // Solution: k=(0.693*60)/(t*3.16*10^7); N1=Nk/k;// atoms per g for C14 N2=L/12;// r=(N1*10^12)/N2;// ratio of C14/C12 in atmosphere printf("The ratio of C14/C12 in atmosphere in 10^-12 is = %f",r)
66063731e17ff1f3c2b2b6414841149453c770d9
449d555969bfd7befe906877abab098c6e63a0e8
/2858/CH6/EX6.5/Ex6_5.sce
0664a78db1ca88acdb93f716dc2128f5cb17b549
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex6_5.sce
//example 6.5 clc; funcprot(0); P=['A','B','C','D','E','F','G','H','I','J','K','L','M','N'];//point k=1.2*ones(1,14);//Q/A x=[-38,-24, -12, 0, 12, 24, 38, 38, 24, 12, 0, -12, -24, -38]; x1=0.0017*x; y=[48,48,48,48,48,48,48, -48, -48, -48, -48, -48, -48, -48]; y1=-0.0011*y; printf("point\t Q\A (kip/ft^2)\t x(ft)\t 0.0017x(ft)\t\t y(ft)\t 0.0011y(ft)\t q(kip/ft^2)\n") for i=1:14 q(i)=1.2+x1(i)+y1(i); printf("%s\t %.2f\t\t %.2f\t\t%.2f\t\t %.2f\t %.2f\t\t %.2f\n ",P(i),k(i),x(i),x1(i),y(i),y1(i),q(i)) end printf("the soil pressure at all point is less than the given qallnet=1.5 kip/ft^2");
84eb1f61f451a3ac1c49cb116917bc769648bf4d
449d555969bfd7befe906877abab098c6e63a0e8
/2720/CH1/EX1.18.3/ex1_18_3.sce
235b52dc3444c7b4dab9aaab1041d0ed2a10010d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
318
sce
ex1_18_3.sce
// Exa 1.18.3 clc; clear; close; // Given data At = 28;// Atomic weight n = 4; N_A = 6.023*10^23; a = 5.3;// in Å a = a * 10^-10;// in m m = At/N_A;// in gm m = m*10^-3;// in kg V = (a)^3;// in m^3 Rho = (m*n)/V;// in gm/m^3 Rho = Rho * 10^-3;// in kg/m^3 disp(Rho,"The volume density in kg/m^3 is");
26539dbf34e61306348c34d0b631b90990908ec6
1573c4954e822b3538692bce853eb35e55f1bb3b
/DSP Functions/allpassshiftc/test_1.sce
365ab3e7cbd5e729aa7469e77474144b5a3b59a2
[]
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
229
sce
test_1.sce
// Test # 1 : No Input Arguments exec('./allpassshiftc.sci',-1); [n,d]=allpassshiftc(); //!--error 10000 //Number of input arguments should be 2 //at line 28 of function allpassshiftc called by : //[n,d]=allpassshiftc();
abb2bb303605d47e4854a8d2114e01e333d444be
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH22/EX22.9/Ex22_9.sce
56b18854bf7a88479fe15e65e24859bb10bcdc94
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
142
sce
Ex22_9.sce
clc; //e.g 22.9 gm=2.5*10**-3; rd=500*10**3; RD=10*10**3; rL=(RD*rd)/(rd+RD); disp('10^3 ohm',rL*10**-3,"rL="); AV=-gm*rL; disp(AV);
d0044bd5f6562dbea9d13851930237986ccb1de5
449d555969bfd7befe906877abab098c6e63a0e8
/572/CH7/EX7.4/c7_4.sce
762084987dcc34021b419ba032aac506890c267f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,446
sce
c7_4.sce
//(7.4) For the gearbox of Examples 2.4 and 6.4(a), develop a full exergy accounting of the power input. Let T0 = 293 K. //solution //Since the gearbox volume is constant, the rate of exergy transfer accompanying power reduces to the power itself. Accordingly, exergy is transferred into the gearbox via the high-speed shaft at a rate equal to the power input, 60 kW, and exergy is transferred out via the low-speed shaft at a rate equal to the power output, 58.8 kW. Additionally, exergy is transferred out accompanying heat transfer and destroyed by irreversibilities within the gearbox. T0 = 293 //in kelvin Qdot = -1.2 //in KW, from example 6.4a Tb = 300 //temperature at the outer surface of the gearbox in kelvin from example 6.4a sigmadot = 4e-3 //rate of entropy production in KW/k from example 6.4a R = (1-T0/Tb)*Qdot //time rate of exergy transfer accompanying heat Eddot = T0*sigmadot //rate of exergy destruction printf('balance sheet') printf('\nrate of exergy in:\n high speed shaft\t\t 60Kw') printf('\nDisposition of the exergy:\n• Rate of exergy out\nlow-speed shaft\t\t 58.8Kw') printf('\nheat transfer in kw\t\t%f',norm(R)) printf('\n• Rate of exergy destruction in kw\t\t%f',Eddot)
244400639d30c7b71df79ca8c2f82bbfad171d38
5f48beee3dc825617c83ba20a7c82c544061af65
/tests/s/117.tst
2d22258a5980383328e002baba5488f145b17607
[]
no_license
grenkin/compiler
bed06cd6dac49c1ca89d2723174210cd3dc8efea
30634ec46fba10333cf284399f577be7fb8e5b61
refs/heads/master
2020-06-20T12:44:17.903582
2016-11-27T03:08:20
2016-11-27T03:08:20
74,863,612
3
0
null
null
null
null
WINDOWS-1251
Scilab
false
false
458
tst
117.tst
int f(float); int f(float);int f(float);int f(float);int f(float);int f(float);int f(float); int f(float), f(float), f(float), f(float), f(float); int f(float x) { int x1; } void main(void) { enum A { A1, A2, A3, A4, A5 } a; int x; float y; int *p; { int x; /* не ошибка */ } main(); f(x+1.); f(y); f(a- -2.3); f(-1.9); p[2]; p++; p--; x++; y++; x--; y--; a--; +a; -a; +x; -y; +y; ~a; ~x; !p; !a; }
46f75d4e3368f49385ac166bc8b488ed11e00805
e9affefd4e89b3c7e2064fee8833d7838c0e0abc
/aws-java-sdk-core/src/test/resources/resources/profileconfig/RoleProfileWithRoleSource.tst
8e57dbf4223356cc6a18ceee0869c0b321e3233d
[ "Apache-2.0" ]
permissive
aws/aws-sdk-java
2c6199b12b47345b5d3c50e425dabba56e279190
bab987ab604575f41a76864f755f49386e3264b4
refs/heads/master
2023-08-29T10:49:07.379135
2023-08-28T21:05:55
2023-08-28T21:05:55
574,877
3,695
3,092
Apache-2.0
2023-09-13T23:35:28
2010-03-22T23:34:58
null
UTF-8
Scilab
false
false
246
tst
RoleProfileWithRoleSource.tst
[source] aws_access_key_id=defaultAccessKey aws_secret_access_key=defaultSecretAccessKey [test] source_profile=source role_arn=arn:aws:iam::123456789012:role/testRole [test2] source_profile=test role_arn=arn:aws:iam::123456789012:role/testRole2
c16d8cb2eee9da47a1c0e5afb8813163cf3132db
fa96b6f7b84fc275c3bc6a2ec1413711285aa54a
/Segmentation techniques using various Edge Detection Operators/Robert.sce
ebe0e1ca287167286f5c407fda93383092b3ac19
[]
no_license
Sid-149/Image-Processing-and-Machine-Vision
9d4d4308b39d7bd3fb0ab8171531fbbfe4381de9
94bb83e4005b39c2f08d15e23c5be73cde01b364
refs/heads/main
2022-12-30T01:51:08.942675
2020-10-19T05:15:12
2020-10-19T05:15:12
302,541,282
0
0
null
null
null
null
UTF-8
Scilab
false
false
368
sce
Robert.sce
clc clear close im=imread('toyobjects.png') a=double(im) [r c]=size(a) w1=[-1 0;0 1] w2=[0 -1;1 0] for i=2:r-1 for j=2:c-1 a1(i-1,j-1)=sum(a(i-1:i,j-1:j).*w1) a2(i-1,j-1)=sum(a(i-1:i,j-1:j).*w2) end end robert=a1+a2 subplot(1,2,1) title('Orginal Image'); imshow(im); subplot(1,2,2) title('Robert'); imshow(uint8(robert));
d8cd6f967a5bded0896ae0bb6b2ecb36d6eb437b
449d555969bfd7befe906877abab098c6e63a0e8
/1757/CH5/EX5.5/EX5_5.sce
b15cfd25c042c879f58ffb91c2759e7a9b5fcb9d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
EX5_5.sce
//Example5.5 // Determine the bias current effect with and without current compensation method clc; clear; close; R1 = 10 ; //kilo ohm R2 = 100 ; //kilo ohm Ib1 = 1.1*10^-3 ; Ib2 = 1*10^-3 ; // the output voltage of the circuit due to bias current is Vo = Ib1*R2 ; disp('the output voltage of the circuit due to bias current is = '+string(Vo)+' V '); //Bias compensated resistor is given by R3 = (R1*R2)/(R1+R2) ; disp('Bias compensated resistor is = '+string(R3)+' kilo ohm '); //Bias compensated output voltage is given by Vo = R2*(Ib1-Ib2); disp('Bias compensated output voltage is = '+string(Vo)+' V ');
6da53de5deae857de20ea2bf05e5a554fab3bdca
449d555969bfd7befe906877abab098c6e63a0e8
/1922/CH4/EX4.19/4_19.sce
d2df1d9dd2e16050248eed0f69ba9c573bbe8f15
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
309
sce
4_19.sce
clc clear //Initialization of variables w=0.3448 R=8.3143 Tc=647.3 //calculations disp("From charts of entropy") h0=0.57 h1=0.05 h2=h0+w*h1 h3=h2*R*Tc dh=-h3 //results printf("Enthalpy departure = %d kJ/kmol",dh) disp("The answer is a bit different due to rounding off error in the textbook")
820789467ed6300f233817f19f3b036b9ee70477
449d555969bfd7befe906877abab098c6e63a0e8
/172/CH17/EX17.3/ex3.sce
c55647364d50e8adc20b9840601877533b72df33
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
567
sce
ex3.sce
//ques3 //determining the thrust acting on a control surface clear clc //i-inlet //e-exit //using momentum equation on control surface in x direction me=20.4;//mass exiting in kg mi=20;//mass entering in kg ve=450;//exit velocity in m/s vi=100;//exit velocity in m/s Pi=95;//Pressure at inlet in kPa Pe=125;//Pressure at exit in kPa Po=100;//surrounding pressure in kPa Ai=0.2;//inlet area in m^2 Ae=0.1;//exit area in m^2 Rx=(me*ve-mi*vi)/1000-(Pi-Po)*Ai+(Pe-Po)*Ae;//thrust in x direction in kN printf('Thrust acting in x direction = %.2f kN',Rx);
1453616deb8fde5630db26df74eb9f9b4a388895
449d555969bfd7befe906877abab098c6e63a0e8
/1436/CH5/EX5.11/ex5_11.sce
602968670c6684578a5d496154d8560e5cd601eb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
127
sce
ex5_11.sce
// Example 5.11, page no-314 clear clc dens=1026 p=25*10^3 V=sqrt(2*p/dens) printf("V=%.2f m/sec =%.3f km/hr",V,V*18/5)
02eeaef0758b0795d3f29c11d49378539b128dac
449d555969bfd7befe906877abab098c6e63a0e8
/3850/CH38/EX38.7/Ex38_7.sce
a67c23e4cad61180c59f71618f4867fdb65774ab
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
294
sce
Ex38_7.sce
//To Calculate the Energy Stored in the Inductor //Example 38.7 clear; clc; L=50*10^-3;//Self Inductance of Inductor in Henry i=2;//Cuurent passed through inductor in Amperes U=0.5*L*i^2;//Energy stored in the Inductor printf("Energy stored in the inductor = %.2f J",U);
5c7a8d39f85e86242c82c4e3500388b7ab04de90
13c3ed7bef4d80dabd836219bbf4396f07cb934a
/addintdemo.sci
2ef0653859637a82105329ad3a7bc666ea03b35f
[]
no_license
Mushirahmed/scilab_workspace
99f489a110a5e295ce9fca9991122d14840018d3
f58b91b87bb0357fff82dcb97b05541e7e976eca
refs/heads/master
2021-01-10T15:48:40.576771
2016-02-10T10:32:46
2016-02-10T10:32:46
43,348,489
0
0
null
null
null
null
UTF-8
Scilab
false
false
150
sci
addintdemo.sci
//SCI2C: DEFAULT_PRECISION= FLOAT function addintdemo() a = int(1); b = int(2); c = a - b; //d0d0OpPlusd0 disp(int(c)) endfunction
37f8d7ea1d5703b972af130905dadcb0364b9d46
449d555969bfd7befe906877abab098c6e63a0e8
/1370/CH4/EX4.17/Exp4_17.sce
56fb7534e830f54830bc2a29ae12a6a14e2dfc85
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,063
sce
Exp4_17.sce
//Example 4.17 clc disp("Assume star connected alternator") disp("R_a+R_a = V_dc/I_dc") disp("2R_a = 6/10") ra=0.6/2 format(4) disp(ra,"Therefore, R_a(in ohm/ph) =") disp("V_oc(line) = 420, V_L = 1100 V, 100 kVA") disp("Therefore, VA = sqrt(3)*V_L*I_L") il=(100*10^3)/(sqrt(3)*1100) format(8) disp(il,"Therefore, I_L(in A) = I_aph =") disp("Therefore, Rated armature current = 52.4864 A = I_ssc") zs=(420/sqrt(3))/52.4864 format(5) disp(zs,"Therefore, Z_s(in ohm/ph) = V_oc(ph) / I_ssc(ph) =") xs=sqrt((4.62^2)-(0.3^2)) format(7) disp(xs,"Therefore, X_s(in ohm/ph) = sqrt(Z_a^2 - R_a^2) =") disp("For cos(phi) = 0.8 lagging, sin(phi) = 0.6") disp("E_ph^2 = (V_ph*cos(phi)+I_a*R_a)^2 + (V_ph*sin(phi)+I_a*R_a)^2") vph=1100/sqrt(3) format(8) disp(vph,"V_ph(in V) = V_L/sqrt(3) =") ephi=sqrt(((((635.085*0.8)+(52.4864*0.3))^2)+(((635.085*0.6)+(52.4864*4.6102))^2))) format(9) disp(ephi,"Therefore, E_ph(in V) =") r=((813.9654-635.085)/635.085)*100 format(8) disp(r,"Therefore, %R(in percentage) = (E_ph-V_ph / V_ph)*100 = ")
903cfe3443d597edf5bbcf59b337718ac87f48e6
449d555969bfd7befe906877abab098c6e63a0e8
/2870/CH15/EX15.4/Ex15_4.sce
2935c83553ca0e927c2583528296c4323ca94021
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
920
sce
Ex15_4.sce
clc;clear; //Example 15.4 //given data Pprod=100; //from Table A-1 Mair=29; MC=12; MH=2; //from Table A-4 Psat=3.1698; //calculations //consedering 100 kmol of dry products // xC8H18 + a (O2 + 3.76N2) = 10.02CO2 + 0.88C0 + 84.48N2 + bH20 //from mass balamces a=83.48/3.76; x=(0.88+10.02)/8; b=18*x/2; // 1.36C8H18 + 22.2 (O2 + 3.76N2) = 10.02CO2 + 0.88C0 + 84.48N2 + 12.24H20 // 1 mol conversion // C8H18 + 16.32 (O2 + 3.76N2) = 7.37CO2 + 4.13C0 + 61.38N2 + 9H20 AF= 16.32*4.76*Mair/(8*MC+9*MH); disp(AF,'air-fuel ratio of combustion process in kg air/kg fuel') // C8H18 + ath (O2 + 3.76N2) = 8CO2 + 9H2O + 3.76athN2 ath=8+4.5; Pth=16.32/ath*4.76/4.76*100; Pth=ceil(Pth); disp(Pth,'percentage of theoretical air'); Nprod=7.37+0.65+4.13+61.98+9; // Nv/Nprod = Pv/Pprod Pv=Psat; Nw= (Nprod*Pv-9*Pprod)/(Pv-Pprod); disp(Nw,'the amount of H2O that condenses as the products in kmol')
9e1e6270e780b8f26c435b69dc2640a89399ce04
726961a3412b6d2fda7c781172773be5e27ac97a
/jflap-grades/tests/q04c.tst
62bfc1730eba138e6319d6957881770b9c87c10c
[]
no_license
ailton07/jflap-grades-19-2
0546deb482e7f8e003591351191fa649d62fd405
ff58118d31aa30a0f56cae8e5f0186d44c1b72a8
refs/heads/master
2020-09-16T12:49:31.560841
2019-11-25T01:03:19
2019-11-25T01:03:19
223,774,968
0
0
null
null
null
null
UTF-8
Scilab
false
false
76
tst
q04c.tst
0 0.20 ababaabbab 1 aabbbabbaab 1 ab 1 bbbaab 1 aaaba 0 bbba 0 a 0 bbbaaa 0
7dcda53c7ae6b415b3ead787a961edacc3f2371f
eac3cfc2721389036753c792674af1164112999f
/teste.sce
ebfda93473de9f44f297127ac536b7dc3452f81d
[]
no_license
Sergio-Saraiva/trabalho1inteligenciacomputacional
8d9fa2b4be967c503a6c8ba51c1393513799f500
509d88c97361c47f3d4c3f6ba8cc10f06b2e33ae
refs/heads/master
2020-03-12T10:58:30.973304
2018-04-22T16:23:18
2018-04-22T16:23:18
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
334
sce
teste.sce
clc; clear; X = fscanfMat("C:\Users\sergi\Desktop\Trabalho1-IC\aerogerador.dat"); y = X(:,2); x = X(:,1); ybarra = mean(y,'r'); xbarra = mean(x,'r'); b1 = (sum(x'*y)- (ybarra*sum(x)))/(sum(x^2)-(xbarra^2)); b0 = ybarra - b1*xbarra; ychap = b0 + b1*x; e = y - ychap; reta = b0 + b1*x + e; plot(x,y, "b*"); plot(y, reta, "r-");
7d9ab19afd227c5f507f85b7d2afcbef82c30640
717ddeb7e700373742c617a95e25a2376565112c
/2474/CH8/EX8.4/Ch08Ex04.sce
9af3a8814c60a57e6a41d4180d251314a4a20149
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
446
sce
Ch08Ex04.sce
// Scilab code Ex8.4: Pg.323-324 (2008) clc; clear; k = 1.38e-23; // Boltzmann constant, J/K T = 300; // Temperature, K E = (3/2)*k*T; // Average energy of H_2, J m = 3.34e-27; // Mass of H_2, kg // Also E = (0.5*m*v^2), solving for v, we get v = sqrt((2*E)/m); // Average speed of H_2, m/s printf("\nThe average speed of H_2 molecule = %4.2f km/s", v*1e-03); // Result // The average speed of H_2 molecule = 1.93 km/s
3e311ecfef3c25cbf6901cdf96bcb42d9ade0e92
44f225adc0be4f9ecb45fb9fde03e74f23d7acb2
/dev-tools/comparatoranator/build.sce
f1b242e50c8a2324503e43175b128b7cf72eed6e
[]
no_license
harpreetrathore/scilab-IPT
10c4996614f1c59972e59decd1b7171e7d5816e0
db79f1370f3cb0a7716a8afcf1cf5fde9fe70aba
refs/heads/master
2021-01-01T04:06:52.573735
2016-05-26T20:34:33
2016-05-26T20:34:33
59,781,201
0
0
null
null
null
null
UTF-8
Scilab
false
false
82
sce
build.sce
oldplace = pwd(); cd ../../ exec builder.sce; cd(oldplace); clear oldplace exit()
4e89fb4120a17f206baf51a3e90ea94519cb01e3
449d555969bfd7befe906877abab098c6e63a0e8
/2240/CH17/EX16.10/EX16_10.sce
d8aebb83867ba737f59826de01a53adaf9d1fcd0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
662
sce
EX16_10.sce
// Grob's Basic Electronics 11e // Chapter No. 16 // Example No. 16_10 clc; clear; // For the tantalum capacitor shown in Fig. 16–21, determine the capacitance C in both pF and uF units. Also, determine the voltage rating and tolerance. disp ('Moving from top to bottom, the first two color bands are yellow and violet, which represent the digits 4 and 7, respectively. The third color band is blue, indicating a multiplier of 1,000,000. Therefore the capacitance C is 47*1,000,000 = 47,000,000 pF, or 47 uF. The blue color at the left indicates a voltage rating of 35 V. And, finally, the silver dot at the very top indicates a tolerance of +-10%.')
8dfda8dc24739a42bdc755fa91ccdaf9c151a6f9
b6bf377ad0dd93166c29119fdaf090d104caf3b7
/ extensiblesimulationofplanetsandcomets --username lasxrcista/ThesisWebsite/scripts/2Body.sci
e8362fb7b69bee48ee92a30d9c7dc89c15e4a67f
[]
no_license
tectronics/extensiblesimulationofplanetsandcomets
d69905f0406bf552043dd0e244ea889a55922ef9
d9d59841d1d177026e60245d3f99c879ee0f8ca0
refs/heads/master
2018-01-11T15:15:54.659208
2009-07-21T21:22:33
2009-07-21T21:22:33
47,740,385
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,052
sci
2Body.sci
function xyp=f1(t,Z); // M is mass of the Earth // SUN is the mass of the Sun // G is the gravitational constant M = 5.9737 * 10^24; SUN = 1.989 * 10^30; G = 6.67259 * 10^(-11); //here's the problem setup just like the previous examples shown x(1) = Z(1); x(2) = Z(2); y(1) = Z(3); y(2) = Z(4); r = (x(1)^2 + y(1)^2)^(1/2); //for earth xprime1(1) = x(2); xprime1(2) = -G * M * SUN * x(1) / ( r^3 ) yprime1(1) = y(2); yprime1(2) = -G * M * SUN * y(1) / ( r^3 ) xyp(1) = xprime1(1); xyp(2) = xprime1(2); xyp(3) = yprime1(1); xyp(4) = yprime1(2); endfunction t0 = 0; M = 5.9737 * 10^24; G = 6.67259 * 10^(-11); // ( ((4*%pi^2)/(GM))*r^3 )^(1/2) is one period of the orbit. tf = ((4 * %pi^2)/(G*M) * 152100000^3)^(1/2); //we want to divide the period up into small step-sizes, so the //larger the denominator, the smaller our step-size will be. h = tf/400; t=0:h:tf; //eccentricity of the Earth's orbit which is not currently used.. e = .01671022 //initial condition setup for x and y. //first value is the distance between the Earth and //the Sun at aphelion(furthest distance).. z0 = [152100000 0 0 0]; y = ode("rkf", z0, t0, t, f1); m = max(size(y)); x1 = zeros(2, m); y1 = zeros(2, m); x1(1,:) = y(1,:); x1(2,:) = y(2,:); y1(1,:) = y(3,:); y1(2,:) = y(4,:); //plot2d(x1(1,:),y1(1,:),rect=[-2,-1,1,1]); filen = 'C:\Documents and Settings\Administrator\My Documents\CSCI\Thesis\ProjectSource\trajectory1.txt' u = file('open', filen, 'unknown') for i=1:m fprintf(u,'%f %f',x1(1,i), y1(1,i)); end file('close', u) ////////////////////////////////////////////////////////// //[fd, err] = mopen( filen, 'w' ) //write( filen, '3.4545 6.4545') //mput( x1(1,:), 'd' ) //x = fileinfo('thefile.txt') //write('theFile.txt', x1(1,1), 'd') //plot2d(x1(1,:),y1(1,:)) //xtitle('Plot of 4 Periods','x-coord','y-coord') //////////////////////////////////////////////////////////
64f18b3ebc2902325943e79ba55ea90751c9c7e8
449d555969bfd7befe906877abab098c6e63a0e8
/1332/CH5/EX5.23/5_23.sce
5c33f28217631f863356ab955cd99023efdd8bbd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,690
sce
5_23.sce
//Example 5.23 //Bairstow Hitchcock Method //Page no. 187 clc;clear;close; deff('y=f(x,p,q)','y=x^2+p*z+q') a=[1,-1,1,-1,1] a=a';a=[a,a,a,a,a] printf('Iteration-->') for i=1:5 printf('\t%i\t',i) end printf('\n------------------------------------------------------------------------------------------') p(1,1)=-1.2;q(1,1)=0.95; s=["b1","b2","b3","b4","c1","c2","c3","c4","c","dp","dq","p","q"] //s1=[b1;b2;b3;b4;c1;c2;c3;c4;c;dp;dq;p;q] for i=1:5 b(1,i)=0;b(2,i)=a(1,i);c(1,i)=0;c(2,i)=a(1,i); for k=1:4 b(k+2,i)=a(k+1,i)-p(1,i)*b(k+1,i)-q(1,i)*b(k,i) c(k+2,i)=b(k+2,i)-p(1,i)*c(k+1,i)-q(1,i)*c(k,i) end cb(1,i)=c(6,i)-b(6,i); dq(1,i)=(b(6,i)*c(4,i)-b(5,i)*cb(1,i))/(c(4,i)^2-cb(1,i)*c(3,i)) dp(1,i)=(b(5,i)*c(4,i)-b(6,i)*c(3,i))/(c(4,i)^2-cb(1,i)*c(3,i)) p(1,i+1)=p(1,i)+dp(1,i);q(1,i+1)=q(1,i)+dq(1,i); end for j=1:13 printf('\n %s\t\t',s(j)) if j<5 then for i=1:5 printf('%.9f\t',b(j+2,i)) end elseif j<9 then for i=1:5 printf('%.9f\t',c(j-2,i)) end elseif j<10 for i=1:5 printf('%.9f\t',cb(1,i)) end elseif j<11 for i=1:5 printf('%.9f\t',dp(1,i)) end elseif j<12 for i=1:5 printf('%.9f\t',dq(1,i)) end elseif j<13 for i=1:5 printf('%.9f\t',p(1,i+1)) end else for i=1:5 printf('%.9f\t',q(1,i+1)) end end end z=poly(0,'z'); a=f(z,p(1,i+1),q(1,i+1)); printf('\n\nRoots for Quadratic Equation Q = ') disp(a) a=roots(a) printf('\n\tare\n') disp(a(1)) disp(a(2))
e35d07e10fb08062fcb54ff08bc79676201629a8
449d555969bfd7befe906877abab098c6e63a0e8
/2240/CH2/EX1.4/EX1_4.sce
85cacdf10a5ef51c923807f3ecba98c3355765eb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
476
sce
EX1_4.sce
// Grob's Basic Electronics 11e // Chapter No. 01 // Example No. 1_4 clc; clear; // A neutral dielectric has 12.5*10^18 electrons removed. What is its charge? // Given data ec = 12.5*10^18; // Electron charge=12.5*10^18 electrons disp ('The 2-C of electron charge removed allows an excess of 12.5*10^18 protons. Since the proton and electron have exactly the same amount of charge,') disp ('now the dielectric has a positive charge of +Q = 2 Columbs.')
da8c84214b04ff9781cf5e7e63b3396d17bdff08
449d555969bfd7befe906877abab098c6e63a0e8
/275/CH1/EX1.1.75/Ch1_1_75.sce
81407610e8ab20572aac19418ed85dda7c2e1ded
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
296
sce
Ch1_1_75.sce
clc disp("Example 1.75") printf("\n") disp("Find the current through diode at 50c & 80c") T1=50 T2=80 D=3.2*10^-3 Pd1=400*10^-3 Vz=6.2 //at 50c Izm1=Pd1/Vz //at 80c Pd2=Pd1-((T2-T1)*D) Izm2=Pd2/Vz printf("the current through diode at 50c & 80c=\n%f ampere\n%f ampere\n",Izm1,Izm2)
b9cc4e401b9e970cab4fadd6f30f095ca05820da
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.4.1/macros/mtlb/%s_f_b.sci
aecf13d94904c8adbb9dda4ef4985d2a1b5d9512
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
39
sci
%s_f_b.sci
function r=%s_f_b(s,b) r=[s;bool2s(b)]
021cf302597089b5e6dc0ac335ca89b404088a47
449d555969bfd7befe906877abab098c6e63a0e8
/1529/CH20/EX20.15/20_15.sce
26951351036b635bfb4333d7f812b50a782db864
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
338
sce
20_15.sce
//Chapter 20, Problem 15 clc; P1=8; //power 1 in watt P2=4; //power 2 in watt P=P1+P2; //total input power phi=atan(sqrt(3)*((P1-P2)/(P1+P2))); pf=cos(phi); //load power factor printf("(a) Total input power = %d kW\n\n",P); printf("(b) Power factor = %.3f ",pf);
239e1ee62d0936bc056c3396067503e4c0edea8b
449d555969bfd7befe906877abab098c6e63a0e8
/1529/CH7/EX7.1/7_01.sce
322e8e386e0b8db287bcec0256147b9e519bc7c5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
208
sce
7_01.sce
//Chapter 7, Problem 1 clc; phi=150*10^-6; //Flux A=200*100*10^-6; //Cross sectional area B=phi/A; //Calculating flux density printf("Flux density = %f T",B);
40b03170d693444370259e0dd43ac4e6e6ede64d
449d555969bfd7befe906877abab098c6e63a0e8
/1019/CH7/EX7.4/Example_7_4.sce
e7bec8fadfaa443514de61ae76cfe0c0b7954e01
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,311
sce
Example_7_4.sce
//Example 7.1 clear; clc; //Given R=8.314;//gas constant in J K^-1 mol^-1 T=298;//temperature in K //To calculate delGmix,delHmix and delSmix //(i) 10 moles of H + 10 moles of Ne n1=10;//moles of H n2=10;//moles of Ne x1=n1/(n1+n2);//mole fraction of H x2=n2/(n1+n2);//mole fraction of Ne delGmix1=R*T*((n1*log(x1))+(n2*log(x2)));//free energy change in J delSmix1=-delGmix1/T;//entropy change in J K^-1 delHmix1=0;//since all gases are ideal mprintf('(i) delGmix = %f J \n delHmix = %f J \n delSmix = %f J K^-1',delGmix1,delHmix1,delSmix1); //(ii) 10 moles of H + 20 moles of Ne n21=10;//moles of H n22=20;//moles of Ne x21=n21/(n21+n22);//mole fraction of H x22=n22/(n21+n22);//mole fraction of Ne delGmix2=R*T*((n21*log(x21))+(n22*log(x22)));//free energy change in J delSmix2=-delGmix2/T;//entropy change in J K^-1 delHmix2=0;//since all gases are ideal mprintf('\n (ii) delGmix = %f J \n delHmix = %f J \n delSmix = %f J K^-1',delGmix2,delHmix2,delSmix2); //(iii) 10 moles of Ne + 20 moles of equimolar mixture of Ne and He delGmix3=delGmix2-delGmix1//free energy change in J delSmix3=-delGmix3/T;//entropy change in J K^-1 delHmix3=0;//since all gases are ideal mprintf('\n (iii) delGmix = %f J \n delHmix = %f J \n delSmix = %f J K^-1',delGmix3,delHmix3,delSmix3); //end
7a907f5221912b19d97fab0d6b6e1884cb8d2c7b
449d555969bfd7befe906877abab098c6e63a0e8
/1217/CH1/EX1.7/Exa1_7.sce
b579f326f098e2aaf992fc9f6ced375e759b66a1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,031
sce
Exa1_7.sce
//Exa 1.7 clc; clear; close; //given data Ri=600;//in kohm Vopp=5;//in volts VEE=15;//in volts VT=25;//in mVolts VD=0.7;//in Volts BETAac=100;//unitless BETAdc=100;//unitless VBE=0.7;//in volts BETAact=BETAac*BETAdc;//unitless //formula : Ri=2*BETAact*(2*re1) re1=Ri/(4*BETAact);//in ohm //formula : re1=VT/IE1 IE1=(VT*10^(-3))/re1;//in mA IE3=2*IE1;//in mA RE=VD/(IE3*10^(-3));//in ohm R2=(VEE-2*VD)/IE3;//in kohm disp("Now terhe voltage drop across Rc determines the peak to peak output voltage swing.") disp("We have given Vopp=5volts, sinve the output is balance i.e. differential the voltage drop across each collector resistor will become2.5Vpp or 1.25Volts.") disp("In other words RcIc=1.25Volts. We have Ic=IE1=1.67mA") IC=IE1;//in mA RC=1.25/(IC*10^(-3));//in ohm disp("Thus the Design components values are :") disp(RC,"Value of Rc in ohm is : "); disp(RE,"Value of RE in ohm is : "); disp(R2,"Value of R2 in kohm is : "); //Answer in the book is not as much accurate as calculated by Scilab
1ea7e8d5249fd4a8bb6d498cd8feb314740e62df
449d555969bfd7befe906877abab098c6e63a0e8
/3557/CH17/EX17.13/Ex17_13.sce
b834d1147d2312dbc118142398e8e24a79354615
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
204
sce
Ex17_13.sce
//Example 17.13// ue=0.070;//Electron Mobility CdTe (From table 17.5) uh=0.007;//holes Mobility CdTe (From table 17.5) fe=ue/(ue+uh) mprintf("fe = %f ",fe) fh=uh/(ue+uh) mprintf("\nfh = %f ",fh)
d77b181bc551e3a057ffcef835da731854121602
39c5c468df5e2bde0147a30cf092fc8da3e7ed3e
/UFRGS/calcNumerico/area2/P2_numerico_oberdan/M8 - Minimos_Quadrados/M8-Q6 - minimos-quadrados-kx.sce
884a00ba3e0cb6c3e6ac7851cee357c75969ff57
[]
no_license
andredxc/Files
9dffc9fe5f7e923b83035d794dfa15c930cdb898
e32309b9ab548b829b04be66c2776cf9c9c6656e
refs/heads/master
2021-06-03T10:44:01.606242
2020-09-21T15:39:48
2020-09-21T15:39:48
107,410,076
0
0
null
null
null
null
UTF-8
Scilab
false
false
72
sce
M8-Q6 - minimos-quadrados-kx.sce
clear //q6 x=[-2:0.1:2]' b=exp(x/12)-1 A=[x^1] k=(A'*A)\(A'*b) disp(k)
793296a52063d58b7f8ddb981a43ea897b341964
f4d3c7f7e8954cdeb6eb0c7b54a056242b07da22
/BCPST UTT/Old/UTTfonction.sci
70ea89e134c95bf63eeead6eb8709338bfd047bb
[]
no_license
ThibaultLatrille/Slides-Sciencework
bfdf959dbbe4a94e621a3a9a71ccbcd06c5fc338
84b53f3901cbdb10fab930e832dc75431a7dce05
refs/heads/master
2020-04-27T07:53:52.313720
2019-03-06T16:17:57
2019-03-06T16:17:57
174,151,758
0
0
null
null
null
null
ISO-8859-1
Scilab
false
false
1,014
sci
UTTfonction.sci
function []=utt() txt=['Première Ville';'Seconde Ville']; Villes=x_mdialog('Entrez le nom des deux villes',txt,['';'']) ville1=Villes(1);// Première ville //Remplacement de tous les symboles foireux nville1=cleaner(ville1); ville2=Villes(2); // Seconde ville //Remplacement de tous les symboles foireux nville2=cleaner(ville2); //On remplit les variables correspondant à chaque ville en utilisant la fonction finder() rang1=finder(nville1); rang2=finder(nville2); //Si les villes n'existent pas : rang1=bonneville1(rang1); rang2=bonneville2(rang2); //Creation de la matrice de coordonnées (différente si il existe des doublons) if Value(rang1+1,3)==1|Value(rang2+1,3)==1 then C=doublon(rang1,rang2,ville1,ville2); //On vérifie si il y a des doublons et on remplit la matrice. else C=coord(rang1,rang2); //Remplissage normal end //Calcul de la distance d=calculdistance(C,1,2); //Affichage du résultat final. affichage(C,ville1,ville2,d); endfunction
43cdc527c1cb97dcdcab5b40c54f215e30a41f49
449d555969bfd7befe906877abab098c6e63a0e8
/3760/CH6/EX6.18/Ex6_18.sce
a869e26ddde90e826e5e2726e67e85ac69ad25fa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
520
sce
Ex6_18.sce
//equation clc; //Test/Tefl=1.5; d=1.5; //Tem/Tefl=2.5; e=2.5; //for part a //d=Test/Tefl; //equation of torque gives following equation Q=[1 -3.33 1]; R=roots(Q); smT=R(2); mprintf('The slip at maximun torque is %f \n',smT) //for part b //equation of torque gives Q=[1 -1.665 0.111]; R=roots(Q); sfl=R(2); mprintf('The slip at full load is %f \n',sfl) //for part c //I2st=c*Isfl As per torque equation c=sqrt((d)*(1/sfl)); mprintf('The rotor current = %f times full load current \n',c)
3b3f8295295639369034e16e269dc93d6cf8b973
66106821c3fd692db68c20ab2934f0ce400c0890
/test/disassembler/swap.instr.tst
e1d5ff7426cd60235caa28dcbf4851c674375dbf
[]
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,288
tst
swap.instr.tst
; @Harness: disassembler ; @Result: PASS section .text size=0x00000040 vma=0x00000000 lma=0x00000000 offset=0x00000034 ;2**0 section .data size=0x00000000 vma=0x00000000 lma=0x00000000 offset=0x00000074 ;2**0 start .text: label 0x00000000 ".text": 0x0: 0x02 0x94 swap r0 0x2: 0x12 0x94 swap r1 0x4: 0x22 0x94 swap r2 0x6: 0x32 0x94 swap r3 0x8: 0x42 0x94 swap r4 0xa: 0x52 0x94 swap r5 0xc: 0x62 0x94 swap r6 0xe: 0x72 0x94 swap r7 0x10: 0x82 0x94 swap r8 0x12: 0x92 0x94 swap r9 0x14: 0xa2 0x94 swap r10 0x16: 0xb2 0x94 swap r11 0x18: 0xc2 0x94 swap r12 0x1a: 0xd2 0x94 swap r13 0x1c: 0xe2 0x94 swap r14 0x1e: 0xf2 0x94 swap r15 0x20: 0x02 0x95 swap r16 0x22: 0x12 0x95 swap r17 0x24: 0x22 0x95 swap r18 0x26: 0x32 0x95 swap r19 0x28: 0x42 0x95 swap r20 0x2a: 0x52 0x95 swap r21 0x2c: 0x62 0x95 swap r22 0x2e: 0x72 0x95 swap r23 0x30: 0x82 0x95 swap r24 0x32: 0x92 0x95 swap r25 0x34: 0xa2 0x95 swap r26 0x36: 0xb2 0x95 swap r27 0x38: 0xc2 0x95 swap r28 0x3a: 0xd2 0x95 swap r29 0x3c: 0xe2 0x95 swap r30 0x3e: 0xf2 0x95 swap r31 start .data:
a66d62f86b24d428a30e39185ff8a07f1965b319
449d555969bfd7befe906877abab098c6e63a0e8
/1898/CH6/EX6.14/Ex6_14.sce
40a46c0a70ca031f5f4b6ee30452616506f77999
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
838
sce
Ex6_14.sce
clear all; clc; disp("Scilab Code Ex 6.14 : ") //Given: b = 60; //mm h = 120; //mm sigma_max = 20; //N/mm^2 c = b; //Part (a): I = (1/12)*b*h^3; M1 = (sigma_max*I)/(c); //sigma_max = Mc/I Flexure Formula M1 = M1*10^-6; //in kN/m //Part (b): y0=60; y1=-60 M2 = integrate('-(20*y^2)','y',y0,y1); M2 = M2*10^-6; F = (0.5*sigma_max*b*b); c = 2*(60 -(0.5*b)); //distance between centroids of both the volumes. M = F*c/1000; //Display: printf("\n\nThe internal moment M calculated using : "); printf('\na)The flexure formula = %1.2f kNm',M1); printf('\nb)The resultant of the stress distribution using the basic principles = %1.2f kNm',M2); //-----------------------------------------------------------------END--------------------------------------------------------------------------
dff2dd24620d74ee6a5748887fd051f07522802c
449d555969bfd7befe906877abab098c6e63a0e8
/2126/CH7/EX7.12/12.sce
1be45f87d71c416129059997a712be5becacf709
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
863
sce
12.sce
clc clear //input data m1=3600 //internal mass in kg Cj=2070 //average effective jet velocity in m/s tp=80 //rocket operation duration in sec g=9.81 //acceleration due to gravity in m/s^2 //calculation up=2*Cj //flight velocity in m/s MR=1/exp((up+(g*tp))/Cj) //mass ratio m2=MR*m1 //mass after rocket operation in kg PMF=1-MR //propellant mass fraction Mp=m1-m2 //mass of propellant in kg mp=Mp/tp //propellent flow rate in kg/s F=Cj*mp*10^-3 //thrust in kN Zp=(((1+((1-(1/PMF))*log(1/MR)))*Cj*tp)-(0.5*g*tp^2))*10^-3 //powered altitude gain in km Zc=((0.5*up^2)/g)*10^-3 //coasting altitude gain in km Z=Zp+Zc //maximum altitude in km //output printf('(A)flow rate of propellent is %3.2f kg/s\n (B)thrust developed is %3.3f kN\n (C)altitude gains during powered and coasting flights are %3.3f km and %3.3f km respectively',mp,F,Zp,Zc)
bea5795ee837c7de189fc2bef793acc9809759ce
449d555969bfd7befe906877abab098c6e63a0e8
/1631/CH3/EX3.2/Ex3_2.sce
9d9dc568c56b5155e78ec133b45662e51173e83e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
497
sce
Ex3_2.sce
//Caption: Nquist Rate,time interval //Example 3.2 //page no 103 //Find Nquist Rate and Nquist time interval //given clc; clear; w1=5000*%pi; w2=3000*%pi; f1=w1/(2*%pi); f2=w2/(2*%pi); fm=f1;//fm = maximum frquency is present at the signal disp(" Hz",f1,"i) maximum frquency of the signal is"); fs=2*fm;//Nyquist rate disp(" Hz",fs,"ii) Nquist Rate of the given Signal is"); Ts=1/(2*fm);//frequncy =1/time disp("m Sec",Ts*10^3,"iii) Nquist Interval of the given signal is");
87a0e079264585d352c739e8875865d76ef10dfd
449d555969bfd7befe906877abab098c6e63a0e8
/2489/CH15/EX15.2/15_2.sce
83a5f63589f74754b7b40a1286a07b0624775f78
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
285
sce
15_2.sce
clc //Intitalisation of variables clear c1= 0.01 //M c2= 0.001 //M n= 2 //moles k= -0.509 n1= 1 //moles //CALCULATIONS f1= 10^(k*sqrt(c1)) f2= 10^(k*n*sqrt((c2*(n+n1)))) //RESULTS printf ('activity coefficient = %.3f ',f1) printf ('\n activity coefficient = %.3f ',f2)
450ca0a18ac90e36bd777378feabe999f45824e2
1b969fbb81566edd3ef2887c98b61d98b380afd4
/Rez/bivariate-lcmsr-post_mi/bfas_oi_bfa_mt/~BivLCM-SR-bfas_oi_bfa_mt-PLin-VLin.tst
180a84d1643de8cc285d908109414bc0b7062e08
[]
no_license
psdlab/life-in-time-values-and-personality
35fbf5bbe4edd54b429a934caf289fbb0edfefee
7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e
refs/heads/master
2020-03-24T22:08:27.964205
2019-03-04T17:03:26
2019-03-04T17:03:26
143,070,821
1
0
null
null
null
null
UTF-8
Scilab
false
false
11,909
tst
~BivLCM-SR-bfas_oi_bfa_mt-PLin-VLin.tst
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 0.265455D+00 2 -0.165887D-02 0.214968D-02 3 -0.722794D-01 0.670482D-03 0.400970D+00 4 0.392089D-04 -0.514416D-03 -0.553466D-02 0.335544D-02 5 -0.109437D-02 -0.956875D-05 -0.127154D-02 0.119463D-03 0.381748D-02 6 0.942617D-03 -0.603938D-04 0.444114D-03 -0.166858D-03 0.594265D-03 7 0.572220D-03 -0.160650D-03 0.214697D-02 -0.230662D-03 0.443875D-03 8 -0.288375D-03 -0.122243D-03 0.417861D-03 0.122621D-03 0.183054D-03 9 -0.439551D+00 0.244862D-01 0.689996D-01 0.293988D-01 0.420076D-01 10 -0.369729D+00 -0.196955D-02 0.126864D+00 0.109944D-01 0.174574D+00 11 -0.878811D-01 -0.262989D-02 -0.337992D-01 -0.151728D-01 -0.621682D-01 12 0.215274D-01 0.141776D-01 0.472657D+00 0.213967D-01 0.243930D-01 13 0.738202D-01 -0.163390D-01 0.156945D+00 -0.159941D-01 0.211503D-01 14 -0.960723D-01 -0.206303D-01 0.218365D+00 0.575909D-02 0.354590D-01 15 -0.233944D+01 -0.291803D-01 0.443687D+00 -0.102129D-01 -0.753467D-01 16 -0.204379D-01 -0.759374D-02 -0.665535D-02 0.131187D-02 -0.176611D-03 17 0.558002D-02 0.100513D-03 0.722552D-03 -0.329545D-04 -0.412395D-03 18 0.338303D+00 0.691512D-02 -0.659268D+00 -0.108416D-01 0.151558D-01 19 -0.473565D-01 0.117273D-01 0.290931D-01 0.500566D-02 0.163873D-01 20 -0.162914D+00 0.769755D-02 0.124199D+01 0.199367D-01 0.762402D-02 21 0.407710D-01 -0.686689D-02 -0.654617D-01 -0.436092D-02 -0.197183D-01 22 0.683121D-03 -0.153231D-04 0.447710D-02 0.121903D-03 0.224821D-03 23 0.311498D-03 -0.660005D-03 -0.661640D-02 0.989585D-02 -0.279954D-02 24 0.270256D-03 -0.245320D-04 0.310358D-02 -0.198913D-03 0.893025D-04 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 6 7 8 9 10 ________ ________ ________ ________ ________ 6 0.101965D-02 7 0.116215D-02 0.393770D-02 8 0.113304D-03 0.740526D-03 0.375436D-02 9 -0.671169D-02 -0.330859D-01 0.204290D-01 0.339322D+02 10 0.551447D-02 0.996072D-02 0.976723D-02 0.199641D+01 0.168656D+02 11 0.207455D-01 0.400415D-01 -0.507126D-01 -0.999577D+01 -0.314980D+01 12 -0.827600D-01 -0.978077D-01 0.481719D-01 0.436874D+01 0.447335D+01 13 0.740789D-01 0.136695D+00 0.286529D-01 0.342467D+00 -0.121844D+01 14 0.251316D-01 0.122571D+00 0.393589D+00 0.277653D+01 0.432668D+01 15 0.216241D-01 0.786109D-01 0.301928D-01 0.272378D+01 -0.316092D+01 16 0.250284D-03 0.123694D-02 0.905868D-03 0.531242D+00 -0.267786D-01 17 -0.194043D-03 -0.257749D-03 0.520103D-04 -0.110707D+00 -0.382498D-01 18 -0.439416D-01 -0.183971D+00 -0.208290D-02 0.106589D+02 0.537339D+00 19 -0.870377D-02 -0.316021D-02 0.116949D-02 0.291080D+01 0.631932D+00 20 -0.740271D-02 -0.436493D-01 -0.312999D+00 0.319482D+01 0.316130D+01 21 0.842668D-02 0.165614D-02 -0.355848D-02 -0.301198D+01 -0.735742D+00 22 -0.146487D-03 0.161718D-03 0.273584D-03 -0.453007D-01 0.161457D-01 23 -0.253814D-02 -0.448599D-02 -0.128069D-02 0.340737D+00 -0.664865D-01 24 0.248118D-03 0.327303D-03 0.252874D-04 -0.384883D-01 0.154883D-02 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 11 12 13 14 15 ________ ________ ________ ________ ________ 11 0.290131D+02 12 -0.225560D+02 0.109688D+03 13 -0.113673D+01 -0.737462D+01 0.131297D+02 14 -0.505774D+01 0.312979D+01 0.394211D+01 0.732872D+02 15 0.869295D+01 -0.179396D+01 0.253996D+01 0.290298D+01 0.184812D+03 16 -0.750731D-01 -0.254823D+00 0.209410D+00 0.353401D+00 0.168386D+01 17 -0.175157D-01 -0.983530D-02 0.434880D-02 0.147052D-01 -0.860411D+00 18 -0.851554D+01 0.546002D+01 -0.640175D+01 0.566474D+01 -0.456441D+02 19 -0.111926D+01 0.148742D+01 -0.895728D+00 -0.183736D+00 0.120467D+01 20 0.342921D+01 -0.177067D+02 0.347826D+01 -0.516363D+02 0.148303D+02 21 0.154213D+01 -0.260549D+01 0.807947D+00 0.211611D+00 -0.166836D+01 22 -0.197090D-01 0.899065D-01 -0.102304D-01 0.388142D-03 0.102101D+00 23 -0.292894D+00 0.852834D+00 -0.243391D+00 -0.353614D+00 -0.414742D+00 24 0.456527D-01 -0.779339D-01 0.306333D-02 0.469424D-02 -0.183535D-01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 16 17 18 19 20 ________ ________ ________ ________ ________ 16 0.344446D+00 17 -0.206993D-01 0.105955D-01 18 0.107232D+00 0.558770D-01 0.183836D+03 19 -0.190667D+00 0.631408D-03 0.327704D+01 0.496311D+01 20 -0.233535D+00 -0.716578D-01 -0.788285D+02 -0.196450D+01 0.445268D+03 21 -0.183543D-01 0.138923D-01 -0.820924D+00 -0.452446D+01 0.138931D+01 22 0.526285D-02 -0.103736D-02 -0.778383D+00 -0.130099D-01 0.213985D+00 23 0.294558D-01 -0.412092D-02 -0.282478D+00 -0.524155D-03 0.466183D+01 24 -0.485657D-02 0.467733D-03 0.192982D+00 0.138930D-01 -0.174497D+01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 21 22 23 24 ________ ________ ________ ________ 21 0.523148D+01 22 -0.375363D-01 0.809981D-02 23 -0.243501D+00 0.843065D-02 0.659620D+00 24 -0.353625D-03 -0.190738D-02 -0.576225D-01 0.163737D-01 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 1.000 2 -0.069 1.000 3 -0.222 0.023 1.000 4 0.001 -0.192 -0.151 1.000 5 -0.034 -0.003 -0.033 0.033 1.000 6 0.057 -0.041 0.022 -0.090 0.301 7 0.018 -0.055 0.054 -0.063 0.114 8 -0.009 -0.043 0.011 0.035 0.048 9 -0.146 0.091 0.019 0.087 0.117 10 -0.175 -0.010 0.049 0.046 0.688 11 -0.032 -0.011 -0.010 -0.049 -0.187 12 0.004 0.029 0.071 0.035 0.038 13 0.040 -0.097 0.068 -0.076 0.094 14 -0.022 -0.052 0.040 0.012 0.067 15 -0.334 -0.046 0.052 -0.013 -0.090 16 -0.068 -0.279 -0.018 0.039 -0.005 17 0.105 0.021 0.011 -0.006 -0.065 18 0.048 0.011 -0.077 -0.014 0.018 19 -0.041 0.114 0.021 0.039 0.119 20 -0.015 0.008 0.093 0.016 0.006 21 0.035 -0.065 -0.045 -0.033 -0.140 22 0.015 -0.004 0.079 0.023 0.040 23 0.001 -0.018 -0.013 0.210 -0.056 24 0.004 -0.004 0.038 -0.027 0.011 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 6 7 8 9 10 ________ ________ ________ ________ ________ 6 1.000 7 0.580 1.000 8 0.058 0.193 1.000 9 -0.036 -0.091 0.057 1.000 10 0.042 0.039 0.039 0.083 1.000 11 0.121 0.118 -0.154 -0.319 -0.142 12 -0.247 -0.149 0.075 0.072 0.104 13 0.640 0.601 0.129 0.016 -0.082 14 0.092 0.228 0.750 0.056 0.123 15 0.050 0.092 0.036 0.034 -0.057 16 0.013 0.034 0.025 0.155 -0.011 17 -0.059 -0.040 0.008 -0.185 -0.090 18 -0.101 -0.216 -0.003 0.135 0.010 19 -0.122 -0.023 0.009 0.224 0.069 20 -0.011 -0.033 -0.242 0.026 0.036 21 0.115 0.012 -0.025 -0.226 -0.078 22 -0.051 0.029 0.050 -0.086 0.044 23 -0.098 -0.088 -0.026 0.072 -0.020 24 0.061 0.041 0.003 -0.052 0.003 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 11 12 13 14 15 ________ ________ ________ ________ ________ 11 1.000 12 -0.400 1.000 13 -0.058 -0.194 1.000 14 -0.110 0.035 0.127 1.000 15 0.119 -0.013 0.052 0.025 1.000 16 -0.024 -0.041 0.098 0.070 0.211 17 -0.032 -0.009 0.012 0.017 -0.615 18 -0.117 0.038 -0.130 0.049 -0.248 19 -0.093 0.064 -0.111 -0.010 0.040 20 0.030 -0.080 0.045 -0.286 0.052 21 0.125 -0.109 0.097 0.011 -0.054 22 -0.041 0.095 -0.031 0.001 0.083 23 -0.067 0.100 -0.083 -0.051 -0.038 24 0.066 -0.058 0.007 0.004 -0.011 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 16 17 18 19 20 ________ ________ ________ ________ ________ 16 1.000 17 -0.343 1.000 18 0.013 0.040 1.000 19 -0.146 0.003 0.108 1.000 20 -0.019 -0.033 -0.276 -0.042 1.000 21 -0.014 0.059 -0.026 -0.888 0.029 22 0.100 -0.112 -0.638 -0.065 0.113 23 0.062 -0.049 -0.026 0.000 0.272 24 -0.065 0.036 0.111 0.049 -0.646 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 21 22 23 24 ________ ________ ________ ________ 21 1.000 22 -0.182 1.000 23 -0.131 0.115 1.000 24 -0.001 -0.166 -0.554 1.000
d5a4beb81c6ef25f6ac6848e7e13903f9aa60e44
7c3708a7d8dd10452b9fbaf7b43e692b2cdccaf5
/src/ItemTemplates/Models/Models.tst
22e8b74231202525c04fb398f80036d2631a0d6f
[ "Apache-2.0" ]
permissive
Ackhuman/Typewriter
3925ad31d7686861df0e4f39f9001f2abdf03502
3ab6f1e19d75ae3839e0573d42851344269fdfa0
refs/heads/master
2022-04-13T08:15:53.688515
2020-04-12T21:48:26
2020-04-12T21:48:26
254,759,329
0
0
Apache-2.0
2020-04-10T23:57:09
2020-04-10T23:57:09
null
UTF-8
Scilab
false
false
542
tst
Models.tst
 module $rootnamespace$ { $Classes(Filter)[ export class $Name { $Properties[ public $name: $Type = $IsEnumerable[[]][$Default];] constructor(data: any = null) { this.map(data); } public map = (data: any) => { if(data) {$Properties[ this.$name = $IsPrimitive[$IsDate[new Date(data.$name)][data.$name]][$IsEnumerable[data.$name ? data.$name.map(i => new $Class(i)) : []][data.$name ? new $Class(data.$name) : null]];] } }; }] }
18c11ac076d550bbd53123d8e7460c6300e4c336
676ffceabdfe022b6381807def2ea401302430ac
/library/Demos/MultiRegions/Tests/Helmholtz3D_HDG_Hex_AllBCs_par2.tst
4751c5ecf57206acc5e3b1a619b0e24107eecaa1
[ "MIT" ]
permissive
mathLab/ITHACA-SEM
3adf7a49567040398d758f4ee258276fee80065e
065a269e3f18f2fc9d9f4abd9d47abba14d0933b
refs/heads/master
2022-07-06T23:42:51.869689
2022-06-21T13:27:18
2022-06-21T13:27:18
136,485,665
10
5
MIT
2019-05-15T08:31:40
2018-06-07T14:01:54
Makefile
UTF-8
Scilab
false
false
625
tst
Helmholtz3D_HDG_Hex_AllBCs_par2.tst
<?xml version="1.0" encoding="utf-8" ?> <test> <description>Helmholtz 3D HDG, hexes, mixed BCs, par(2)</description> <executable>HDGHelmholtz3D</executable> <parameters>--use-scotch Helmholtz3D_Hex_AllBCs_P6.xml</parameters> <processes>2</processes> <files> <file description="Session File">Helmholtz3D_Hex_AllBCs_P6.xml</file> </files> <metrics> <metric type="L2" id="1"> <value tolerance="1e-12">0.000417674</value> </metric> <metric type="Linf" id="2"> <value tolerance="1e-06">0.00168661</value> </metric> </metrics> </test>