blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 21 values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 141k 586M ⌀ | star_events_count int64 0 30.4k | fork_events_count int64 0 9.67k | gha_license_id stringclasses 8 values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 50 values | src_encoding stringclasses 23 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 29 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3e2be80b93eff7bc69a3796ccda5d7e593ae9b57 | e182a95b50904008697c55b376261f8a6c38b225 | /decimal_to_fixed_pont.sce | a67335d556fb49a67c4c88c24bc6b864303303e2 | [] | no_license | RhinomanUK/Scilab | 210fb0ca7f7776d2b271bb243140aa8aa837dd81 | 63519c7f6ada71f1baf6f72633247ea518e6eeb3 | refs/heads/master | 2021-09-07T12:06:29.767806 | 2018-02-22T16:33:57 | 2018-02-22T16:33:57 | 118,903,494 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,067 | sce | decimal_to_fixed_pont.sce | // decimal_to_fixed_point.sce
// Converts a decimal number to an 8.8 fixed point value
// copyright James Holland 2018
// This code is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This code is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
// You should have received a copy of the GNU Lesser General
// Public License along with this code; if not, write to the
// Free Software Foundation, Inc., 59 Temple Place, Suite 330,
// Boston, MA 02111-1307 USA
// James Holland
// Version 1 - 25th January 2018
dec_value = [14.7];
mod_value = uint8(dec_value);
rem_value = modulo(dec_value,1);
hex_value = dec2hex(mod_value);
bit_weight = 128;
bit_value = 0.5;
out_value = 0;
tmp_value = 0;
calc_value = 0;
for n = 1 : 8
tmp_value = rem_value-bit_value;
if tmp_value>=0
rem_value=tmp_value;
out_value = out_value + bit_weight;
calc_value = calc_value + bit_value;
end
bit_weight=bit_weight/2;
bit_value = bit_value/2;
end
dec_str = string(dec_value);
dec_str = 'Decimal Input=' + dec_str;
calc_value=calc_value + double(mod_value);
calc_str = string(calc_value);
calc_str = 'decimal=' + calc_str;
out_value_L = uint8(out_value);
hex_value_L = dec2hex(out_value_L);
hex_value = hex_value + hex_value_L;
hex_str = 'Hex value=' + '0x' + hex_value;
error_value = dec_value- calc_value;
error_value = (error_value/dec_value)*100;
err_str = string(error_value);
err_str = 'error=' + err_str + '%';
disp(dec_str);
disp(hex_str);
disp(calc_str);
disp(err_str);
|
4117fb6f346c649f3ff5b16678ca6b38a16f8258 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3831/CH18/EX18.4/Ex18_4.sce | 1250d6df0d86a900d71fbb48786ba54b03c474b7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 495 | sce | Ex18_4.sce | // Example 18_4
clc;funcprot(0);
// Given data
T_in=500;// K
T_out=1200;// K
mdot=1.00;// kg/min
R_u=8.314;// kJ/(kgmole.K)
// Calculation
// For CC1_4,
b=5;// The number of atoms in the molecule
F=3*b;// The degrees of freedom per molecule
M=12.0+(4*(35.5));// kg/kgmole
R=R_u/M;// kJ/(kg.K)
c_p=(1+(F/2))*R;// kJ/(kg.K)
Qdot=mdot*c_p*(T_out-T_in);// kJ/min
printf("\nThe heat transfer rate required to heat low-pressure gaseous carbon tetrachloride,Qdot=%3.0f kJ/min",Qdot);
|
8f6ad2a6310b876ed26eefc983dbc780b566311a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1535/CH4/EX4.6/Ch04Ex6.sci | 7cff022d1e8590f6d81f13b0c7b1f2b42f560c64 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 953 | sci | Ch04Ex6.sci | // Scilab Code Ex4.6 : Page-93 (2010)
n = 1; // Order of diffraction spectrum
N = 6000e+02; // Number of lines per m on diffraction grating, per m
D = 2; // Distance of screen from the source, m
lambda1 = 400e-009; // Wavelength of blue light, m
// We have sin(theta1) = n*N*lambda, solving for theta1
theta1 = asind(n*N*lambda1); // Angle at first order diffraction for Blue light, degrees
lambda2 = 750e-009; // Wavelength of blue light, m
// We have sin(theta2) = n*N*lambda, solving for theta2
theta2 = asind(n*N*lambda2); // Angle at first order diffraction for Red light, degrees
x1 = D*tand(theta1); // Half width position at central maximum for blue color, m
x2 = D*tand(theta2); // Half width position at central maximum for red color, m
printf("\nThe width of first order spectrum on the screen = %4.1f cm", (x2 - x1)/1e-02);
// Result
// The width of first order spectrum on the screen = 51.3 cm |
d075722aab8d732e6a9358b340974b444b93ff06 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2414/CH21/EX21.4/Ex21_4.sce | d65fb6d2cb5654348868ded607d7025e92fb5fdb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 171 | sce | Ex21_4.sce | clc;
close();
clear();
//page no 644
//prob no. 21.4
delta_f=25 //KHz
W=15; //KHz
Bt=2*(delta_f+W) //bandwidth
mprintf('The bandwidth is Bt=%i KHz',Bt)
|
fa2ac3c3b8aedd821cf52a2ae4cc62c07aa003ae | 449d555969bfd7befe906877abab098c6e63a0e8 | /3718/CH14/EX14.10/Ex14_10.sce | e432f3f21165d67a3d2710e05aa099dc1d1ed49c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 387 | sce | Ex14_10.sce | //Chapter 14: Water Treatment
//Problem: 10
clc;
//Initialisation of Variables
v1 = 50. //in ml for hardwater
v2 = 15 //in ml for EDTA
m = 0.01 //in M for EDTA
//Solution
M = v2 * m / v1
N = M * 2
S = N * 50 * 1000
mprintf("Molarity of hardness is :%.3f M\n", M)
mprintf(" Normality of hardness is :%.3f N\n", N)
mprintf(" Strength of hardness is :%d ppm", S)
|
63240905c43eb52c3dd13b55916e95c374b4c389 | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Programming/testfunctionstring.sce | 2d6bcaad2b144a0c0ac019071f21e4163855adda | [] | no_license | markusmorawitz77/Scilab | 902ef1b9f356dd38ea2dbadc892fe50d32b44bd0 | 7c98963a7d80915f66a3231a2235010e879049aa | refs/heads/master | 2021-01-19T23:53:52.068010 | 2017-04-22T12:39:21 | 2017-04-22T12:39:21 | 89,051,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 110 | sce | testfunctionstring.sce | function y=foo(a,b,c)
y='input parameters :'+a+','+b+','+c
endfunction
foo('1','abc','SCI')
foo 1 abc SCI
|
cd455cbffa2d4b14da5a138f2433bfa97a858e89 | 449d555969bfd7befe906877abab098c6e63a0e8 | /635/CH2/EX2.6/Ch02Ex6.sci | e5394fe8f300b8c91d003d215ba9c93a2050e420 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,724 | sci | Ch02Ex6.sci | // Scilab Code Ex2.6 Binding force and critical separation of a diatomic molecule: Page-69 (2010)
Re = 3D-10; // Equilibrium spacing of diatomic molecule, m
e = 1.6D-19; // Electronic charge, C
D = 4*e; // Dissociation energy of diatomic molecule, eV
n = 2; // Power of R in the attractive term of potential energy of two particles
m = 10; // Power of R in the repulsive term of potential energy of two particles
Ue = -D; // Potential energy of diatomic molecule at equilibrium separation, joule
A = -(Ue*Re^n)/(1-n/m); // Constant corrsponding to the attractive term in potential energy, joule metre square
B = A*Re^8/5; // Constant corresponding to the repulsive term in potential energy, joule metre raised to power 10
Rc = (55/3*B/A)^(1/8); // Critical separation between the nuclei, m
F_min = -2*A/Rc^3*(1-(Re/Rc)^8); // The minimum force required to dissociate the moleule, N
disp(A,"The constant A corresponding to the attractive potential energy, in joule metre square, is :");
disp(B,"The constant B corresponding to the repulsive potential energy, in joule metre raised to power 10, is :");
disp(Rc/1d-10, "The critical separation between the nuclei, in angstrom, is : ");
disp(F_min, "The minimum force required to dissociate the molecule, in N, is : ");
//Result
// The constant A corresponding to the attractive potential energy, in joule metre square, is : // 7.200D-38
// The constant B corresponding to the repulsive potential energy, in joule metre raised to power 10, is : // 9.44D-115
// The critical separation between the nuclei, in angstrom, is :
// 3.529D-10
// The minimum force required to dissociate the molecule, in N, is :
// -2.383D-09 |
72780a06749bfc6fce4afc10e97b603aee6bc827 | 882ab91f6a6beaeb864c7cbbf4dd7f03993a46bb | /Test 3.tst | a4ba1be66a4413b3218f2c48b95a49cc6274adee | [] | no_license | Sseryozha/Project_Tests | 21e6ffbf3f88cc865677a0d949073695d00506e3 | 95c3cbe7149d802e5026c1ea735786eebec0b546 | refs/heads/master | 2023-08-22T02:42:07.908533 | 2021-10-10T21:19:46 | 2021-10-10T21:19:46 | 415,702,085 | 0 | 0 | null | null | null | null | WINDOWS-1251 | Scilab | false | false | 6,220 | tst | Test 3.tst | 14
Психология воспитания школьников
0 1 2 3 4
1 0 1 0 0
2 1 0 0 0
3 1 0 0 0
4 0 0 0 1
5 0 1 0 0
6 0 0 1 0
7 0 1 0 0
8 0 1 0 0
9 0 0 0 1
0 0 1 0 0
1 0 0 1 0
2 0 1 0 0
3 1 0 0 0
4 0 0 1 0
1
Процесс формирования внутренних структур человеческой психики благодаря усвоению структур внешней социальной деятельности – это
рефлектирование
интериоризация
экстериоризация
ассоциация
2
Развитие - объективный процесс внутреннего последовательного количественного и качественного изменения физических и духовных сил человека
Да
Нет
-
-
3
Психологическая готовность к школьному обучению - необходимый и достаточный уровень психического развития ребенка для освоения школьной учебной программы в коллективе сверстников
Да
Нет
-
-
4
Выявление проблемы и ее формулировка, т.е. определение сути затруднения, считается первым этапом творческого мышления и называется
проверкой гипотезы
формулированием предположения
проблемной ситуацией
постановкой проблемы
5
Выделение в учебно-познавательной деятельности способов исследования и развитие интереса обусловливают формирование у ученика механизма
понятия как развивающейся системы
учебного целеполагания
понятия
не практической цели
6
Распределение между детьми различных точек зрения (позиций), представляющих разные стороны усваиваемого понятия называется
отношением некритичного доверия
ролевым отношением
учебным сотрудничеством со сверстниками
отношением подражания (имитации) образцам
7
Обучение, при котором преподаватель обеспечивает оптимальное сочетание самостоятельной поисковой деятельности учеников с усвоением ими готовых выводов науки называется
эвристическим обучением
проблемным обучением
программированным обучением
развивающим обучением
8
Профессиональный тип (склад) мышления - индивидуально-психологические свойства личности человека, отличающие его от других, отвечающие требованиям данной профессиональной деятельности и являющиеся условием ее успешного выполнения
Да
Нет
-
-
9
Психическое явление «заражения», механизм которого рассматривается в социальной психологии как способ интеграции групповой деятельности лежит в основе
мыслительного содействия
проблемного обучения
программированного обучения
эмоционального сопереживания
10
Теоретические знания, овладение которыми посредством этой деятельности развивает у учащихся основы теоретического сознания и мышления, а также творчески-личностный уровень осуществления практических видов деятельности выступают
учебной программой
содержанием учебной деятельности
образовательной ситуацией
проблемной ситуацией
11
Процесс формирования учебной деятельности начинается с того, что ученики овладевают процессом решения какой-либо
учебно-теоретической задачи
учебно-исследовательской задачи
практической задачи
учебно-практической задачи
12
Навыки в игре проявляются при достаточно сильном мотиве и потому оказываются более ярко выраженными, чем в учебной деятельности
Нет
Да
-
-
13
Положение о том, что если какое-то действие приводит к желательным результатам, вероятность его повторения возрастает, если же – к нежелательным последствиям, то вероятность повторения снижается называется
законом эффекта
законом упражняемости
законом готовности
первым принципом программирования
14
Не столько на безошибочность действий, сколько на уяснение самим учеником причины, вызвавшей ошибку, ориентировано
линейное программирование
эвристическое обучение
разветвленное программирование
проблемное обучение
|
34b0292f67ff9b2c4c69ee212f3516c511108ce3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3432/CH6/EX6.6/Ex6_6.sce | a70ab9c7a49be101aa298faa433494900c1a22bb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,130 | sce | Ex6_6.sce | //Example 6.6
//Bode Plot for Complex Poles and Zeros:
//Satellite with Flexible appendages.
xdel(winsid())//close all graphics Windows
clear;
clc;
//------------------------------------------------------------------
//System transfer function and its bode plot
K=0.01;
s=poly(0,'s');
NumG=K*(s^2+0.01*s+1);
DenG=s^2*((s^2/4)+0.02*(s/2)+1)
sysG=syslin('c',NumG/DenG);
fmin=0.09/2/%pi; //mininmum frq. in Hz for response (0.1 rad/sec)
fmax=11/2/%pi; //maximum frq. in Hz for response (100 read/sec)
//------------------------------------------------------------------
//Bode plot for frequency in Hz (scilab ver. 5.4.1)
//bode(g,fmin,fmax);
//OR
//Bode plot for frequency in rad/sec (scilab ver. 5.5.1)
bode(sysG,fmin,fmax,0.01,"rad")
//------------------------------------------------------------------
title(["Bode plot for a transfer function with complex...
poles and zeros"; "(a) magnitude (b) phase"],'fontsize',3)
//------------------------------------------------------------------
disp('NOTE : Result of the above example can be verified by checking the figures shown in example 6.5')
|
0fdb4025181ad3fe0294946bcd5e127f21589fed | 449d555969bfd7befe906877abab098c6e63a0e8 | /14/CH5/EX5.3/example_5_3.sce | fc1adc046adedddc04f7b6999656c19605eaf1a9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,573 | sce | example_5_3.sce | //Chapter 5
//Example 5.3
//Page 106
//equivalentpicircuit
clear;clc;
//Given
l = 230 ; //in mi
f = 60 ; //in Hz
P = 125e6 ; //in W
V = 215e3 ; //in V
//From Table A.1 and A.2 for 30ft Rook
//z = R + i(Xa + Xd)
z = 0.1603 + %i * (0.415+0.4127);
//From Table A.1 and A.3 for 30ft Rook
y = %i * [1e-6 / ( 0.0950 + 0.1008)]
//Calculations
yl = sqrt(y*z)*l;
Z_c = sqrt(z/y);
cosh_yl = cosh(real(yl)) * cos(imag(yl)) + %i * sinh(real(yl)) * sin(imag(yl));
sinh_yl = sinh(real(yl)) * cos(imag(yl)) + %i * cosh(real(yl)) * sin(imag(yl));
//Equivalent pi circuit
Z1 = Z_c * sinh_yl;
Y1_2 = (cosh_yl - 1)/(Z_c * sinh_yl);
disp('Equivalent PI circuit')
printf("\n\n Total series impedance of the line = %.2f /_%.2f ohm in series arm \n\n",abs(Z1),atan(imag(Z1),real(Z1))*180/%pi)
printf("\n\n Total Shunt admittance of the line = %.6f /_%.2f mho in each shunt arm \n\n",abs(Y1_2),atan(imag(Y1_2),real(Y1_2))*180/%pi)
//Nominal pi Circuit
Z = l * z;
Y_2 = y * l/2;
disp('Nominal PI circuit')
printf("\n\n Total series impedance of the line = %.2f /_%.2f ohm in series arm \n\n",abs(Z),atan(imag(Z),real(Z))*180/%pi)
printf("\n\n Total Shunt admittance of the line = %.6f /_%.2f mho in each shunt arm \n\n",abs(Y_2),atan(imag(Y_2),real(Y_2))*180/%pi)
zp = ((abs(Z)-abs(Z1))/abs(Z1))*100;
yp = ((abs(Y_2)-abs(Y1_2))/abs(Y1_2))*100;
printf("\n\n Line impedace of the series arm of the nominal pi exceeds that of equivalent pi by %.1f percent \n\n",zp)
printf("\n\n Conductance of the shunt arms of the nominal pi is %.0f percent less than that of equivalent pi \n\n",abs(yp))
|
64020263cfb156faf893c78b3c1e65af4f2f72f6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH4/EX4.44/44.sce | ea1304d75ddc4db20ffed1179fb1bc49aa74f95c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 161 | sce | 44.sce | clc
W=-175; //kJ/kg
dh=70; //kJ/kg
Q_water=-92; //kJ/kg
Q=dh+W;
Q_atm=Q-Q_water;
disp("Heat transferred to the atmosphere = ")
disp(-Q_atm)
disp("kJ/kg") |
434cf07c8e43423e9786eb91992f1d54b119d338 | 449d555969bfd7befe906877abab098c6e63a0e8 | /226/CH8/EX8.4/example4_sce.sce | e01ef1ac92a34ecf57449adfe1b4dd535d774320 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 316 | sce | example4_sce.sce | //chapter 8
//example 8.4
//page 317
printf("\n")
printf("given")
Ic=1*10^-3;hfe=50;hie=1.3*10^3;fT=250*10^6;Cbc=5*10^-12;Rc=8.2*10^3;Rl=100*10^3;
Ie=Ic;
Av=(hfe*((Rc*Rl)/(Rc+Rl)))/hie
Cbe=(6.1*Ie)/fT;
Cin=(Cbe+(1+Av)*Cbc)*10^9;
printf(" input capacitance when the circuit operated as CE is %3.3fnF\n",Cin) |
e76b33c61fbcce7972be89a3b733e1b6688d7085 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3733/CH24/EX24.4/Ex24_4.sce | bc4aec58c5ee7344e795f2d3ba03194ba061f64b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 954 | sce | Ex24_4.sce | // Example 24_4
clc;funcprot(0);
//Given data
p_1=101;//kN/m^2
p_2=606;//kN/m^2
e=0.65;//Effectiveness of regenerative heat exchanger
T_1=15+273;// K
n_c=0.85;// The compressor efficiency
n_t=0.80;// The turbine efficiency
m=4;// Air flow rate in kg/s
T_3=870+273;// K
// P_r=(P_1/P_2)=(P_3/P_4)
P_r=6;// Pressure ratio
C_p=1.005;// kJ/kg K
r=1.4;// Specific heat ratio
//Calculation
T_2a=T_1*(P_r)^((r-1)/r);// K
T_2=((T_2a-T_1)/n_c)+T_1;// K
T_4a=T_3/(P_r)^((r-1)/r);// K
T_4=T_3-(n_t*(T_3-T_4a));// K
P=m*C_p*((T_3-T_4)-(T_2-T_1));// kW
T_5=(e*(T_4-T_2))+T_2;// K
// T_4-T_6=T_5-T_2, neglecting,the weight of the fuel
T_6=T_4+T_2-T_5;// K
n_th1=(((T_3-T_4)-(T_2-T_1))/(T_3-T_5))*100;//%
n_th2=(((T_3-T_4)-(T_2-T_1))/(T_3-T_2))*100;// %
printf('\nEfficiency of the plant with regeneration=%0.1f percentage \nEfficiency without heat exchanger=%0.1f percentage',n_th1,n_th2);
// The answer provided in the textbook is wrong
|
af3ad572402096eec02360897a2c7677faae611f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2699/CH13/EX13.27/Ex13_27.sce | 576f75f0a43e3d72b0febdd49c9e131422e71cf2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 404 | sce | Ex13_27.sce | //Ex13_27 PG-13.14
clc
clear
disp("Conversion of decimal number 0.1289062 base to its hexadecimal equivalent ")
a=[0.1289062];
z=modulo(a,1);
d=0;
for i=1:10;//converting the values after the decimal point into octal
z=z*16;
q=floor(z);
d=d+q/(10^i);
if z>=1 then
z=z-q;
end
end
s=d;
printf("\n The hexadecimal equivalent of the given decimal number 0.640625 is = %.3f",s);
|
6ea70342a3c90b04b07163d0f160abf96d4ec224 | 30ad7dd5146dfff03b7639186330ec527bfc0524 | /Control Systems Programs/RungeKutta.sce | 591c8133ebcad5922c08859cdc8b8f91d900e663 | [] | no_license | boberae/Other-Small-Projects | fcc79d8fd69c6d39de68a8b83360b32b28216d73 | 63d668d2f2c022f653cf44f55992dd05420437e3 | refs/heads/master | 2020-06-11T10:07:44.474211 | 2016-12-06T06:42:33 | 2016-12-06T06:42:33 | 75,697,420 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 888 | sce | RungeKutta.sce | // 2 Variable Runge Kutta
x1 = 0; // initial conditions
v1 = 0;
Jm = 0.04407;
Ks = 6.800;
X = [x1, v1];
// Define the state matrix function
// The values returned are [x, v]
function foo=f(state,t)
foo = [state($,2), state($,1)*(-Kx/Jm)];
endfunction
// Set the time length and step size for the integration
steps = 1000;
t_start = 0;
t_end = 4;
h = (t_end - t_start) / steps;
t = [t_start];
// Loop for integration
for i=1:steps,
t = [t ; t($,:) + h];
F1 = h * f(X($,:), t($,:));
F2 = h * f(X($,:) + F1/2.0, t($,:) + h/2.0);
F3 = h * f(X($,:) + F2/2.0 , t($,:)+h/2.0 );
F4 = h * f(X($,:) + F3, t($,:) + h);
X = [X ; X($,:) + (F1 + 2.0*F2 + 2.0*F3 + F4)/6.0];
//Print the Values
printf("\nIntegration values: t=%f, x1=%f", t($,:), X($,1));
end
//Graph the Results
plot2d(t, X, [-7, -9], leg="position");
xtitle("Position vs. Time");
|
080c0b4c2f79319f409ddfd7195dba8fcdea8306 | d01bf962afff16bc1ce292c49da5923ebbe59775 | /Maths/Bond-FK.sce | 0a4ab2612fc03e3a37a609ff7b7677ac4c45f4be | [] | no_license | fredkerdraon/Reference-research | 71d0af22f84605ed0c53907acd6b248400c47388 | 1f48fdfebbe766bbd268b4f1853ab98162f57425 | refs/heads/master | 2023-05-05T12:18:18.655367 | 2020-02-08T22:08:15 | 2020-02-08T22:08:15 | 71,020,179 | 0 | 0 | null | 2023-04-19T18:37:49 | 2016-10-15T23:49:14 | POV-Ray SDL | UTF-8 | Scilab | false | false | 280 | sce | Bond-FK.sce | //FK - Discounting a 100 cashflow in ten year at 6%
CT=100;
y=.06;
T=10;
PV=CT/(1+y)^T;
disp(PV);
//FK - Future value of 100 in 10 years
FV=CT*(1+y)^10;
disp(FV);
//FK - Semi annual rate conversion
// (1+y) = (1+y^S/2)^2)
yS=((1+y)^(1/2)-1)*2;
disp(yS)
//FK - PV of a 6% bond
|
410420f726732547499b420d53eb68fc447cffc6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1370/CH2/EX2.7/example2_7.sce | c55a4f68cb73bf098a54b6d2a57463d3f31f8ade | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 269 | sce | example2_7.sce | //example2.7
clc
disp("V=200 V, I_a=30 A, R_a=0.75 ohm are the given values.")
disp("For a motor, V=(E_b)+[(I_a)*(R_a)]")
disp("Therefore, 220=(E_b)+(30*0.75)")
e=220-(30*0.75)
disp(e,"E_b(in V)=")
disp("This is the induced emf called back emf in a motor")
|
7c8b9721b5da8f4effb1f2eb6e7fac16c5475999 | 598546b56588670efcd591e67deb3578f52ddddc | /btests/0.0.tst | 86c35d427b25c6bcd16a79c5e24a0e60258535e7 | [] | no_license | natindo/techpark-HM1 | 6ae5da7cca55a5306f33fedd9ab4021a0d897cc2 | e9a4f25d32b0e802d1749ec2f5d1a250b6e1b2f4 | refs/heads/master | 2023-08-25T14:35:18.304147 | 2021-10-13T18:51:42 | 2021-10-13T18:51:42 | 416,403,554 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 20 | tst | 0.0.tst | KEYS="1"
STATUS=255
|
eff4608d6ae9b29fc4641692284da694b09463a0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3281/CH4/EX4.23/ex4_23.sce | de1da3c7680083272d3583c04e4ef2c8e219cf07 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 351 | sce | ex4_23.sce | //Page Number: 249
//Example 4.23
clc;
//Given
f=10D+9; //Hz
u=4D-7*%pi;
c=3D+8; //m/s
a=2.29; //cm
a1=a/100;
b=1.02; //cm
b1=b/100;
//E/H
w=2*%pi*f;
EbyH=(w*u)/sqrt(((w/c)^2)+((%pi/a1)^2));
lam=c/f;
lamc=2*a1;
d=(1/4)*(lam/sqrt(1-((lam/lamc)^2)));
disp('cm',d*100,'Position:');
//Answer for positon is calculated wrong in book
|
673104ed2cfd0c54e5c58febc5de4569bbbfa506 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2360/CH5/EX5.15/ex5_15.sce | da3133eff49cf1439e03cad58bc0679510bbb02a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 753 | sce | ex5_15.sce | // Exa 5.15
format('v',7);clc;clear;close;
// Given data
P = 1000;// in ohm
Q = 1000;// in ohm
p = 1000;// in ohm
q = 1000;// in ohm
S = 0.001;// in ohm
R = (P/Q)*S;// in ohm
disp(R,"The value of unknown resistance in Ω is");
Rb = 5;// in ohm
V = 100;// in V
I = V/(Rb+R+S);// in A
disp(I,"The current through the unknown resistance in A is");
R = R*0.1;// in ohm
// Vac = ( (R+r+S)/(Rb+R+r+S) )*V;
Vac = ((R+S)/(Rb+R+S))*V;// in V .. correction
Vab = (P/(P+Q))*Vac;// in V
Vab = Vab * 10^3;// in mV
// Vamd = (R + (Pr/(p+q+r)))/(R+S+(((p+q)*r)/(p+q+r)));
Vamd = (R/(R+S))*Vab*10^-3;// in V
Vamd = Vamd * 10^3;// in mV
Vout = Vab - Vamd;//output voltage in mV
Vout = Vout*10^-3;// in V
disp(Vout,"The output voltage in V is");
|
c62d891fd7c42714dcaf7c15f54ebc2edd1d0c28 | 58e46e2399198997cdd50c661bd7c508d597bfa2 | /encode.sce | 9ac3be443d4e4a0cc9762a3bbcafc0ec1fb7f0ec | [] | no_license | Mistgun-Dev/Steganography | 14105009aa3fd232b7ef20bb375224ba53decb0e | 0fc932789562e103a4184e4b8aa996cc9adb2880 | refs/heads/master | 2021-05-11T00:00:42.753010 | 2018-01-21T00:49:29 | 2018-01-21T00:49:29 | 118,293,222 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,191 | sce | encode.sce | // La fonction encode, permet de cacher le message dans l'image.
// La technique consiste à décomposer le message en binaire et analyser les pixel de l'image au
// fur et à mesure. Si le bit a écrire est égale a 0, on analyse la valeur de l'octect courant de l'image, si le code ASCII est pair, cela veut dire que le dernier bit == 0
// donc pas besoin de modifier la valeur, mais si si la valeur de l'octet est impaire, cela veut dire que le dernier bit == 1 donc on incrémente la valeur de l'octet de 1
// afin qu'on retrouve une valeur pair ... idem si le bit à écrire == 1 ...
function res=encode(original_pics,text)
res = original_pics;
[h,w] = size(original_pics);
ascii_text = ascii(text); // convertir le texte en une matrice de code ASCII
len_code = length(text); // récupérer la taille du texte
binary_code = decToBin(len_code); //convertir la taille du texte en binaire
//Si le message secret contient plus de 256 caractères
if((len_code) > 256) then
disp("Le message est trop long, veuillez ne pas dépasser 256 caractères.");
return;
end
//Si l'image est trop petite pour acceuillir le message
if((len_code+1)*8 > h*w) then
disp("L image n est pas assez grande pour contenir ce message, veuillez choisir une plus grande image");
return;
end
acc = 0;
current_character = 0;
current_bit = 1;
for i=1:h
for j=1:w
rgb = 1;
while(rgb <= 3)
byte = original_pics(i,j,rgb); // on récupère la valeur du pixel courant
bit = binary_code(current_bit); // on récupère le bit à inclure
if(bit == '0') then // si le bit à ecrire == 0
acc = acc + 1;
if(modulo(uint8(byte),uint8(2)) == 1) then // si la valeur du pixel est impair on rajoute 1 afin que la valeure de l'octet devienne paire
res(i,j,rgb) = byte + 1;
end
end
if(bit == '1') then // si le bit a ecrire == 1
acc = acc + 1;
if(modulo(uint8(byte),uint8(2)) == 0) then // si la valeur du pixel est pair on rajoute 1 afin que la valeure de l'octet devienne impair
res(i,j,rgb) = byte + 1;
end
end
rgb = rgb+1;
current_bit = current_bit+1;
if(current_bit > 8) then // si on a écrit 8 bit, on doit passer à l'octet suivant
if(current_character < len_code) then // incrémentation du carractère courant
current_character = current_character + 1;
else // si on a dépasser la taille du code, alors il n'y a plus rien a écrire, et donc on sort de la fonction.
return;
end
binary_code = emptystr();
binary_code = decToBin(ascii_text(current_character)); // convertir la lettre suivante en binaire
current_bit = 1;
end
end
end
end
endfunction
|
f5ecf68e0639fc43cd22afa3755b4149c6b55352 | 449d555969bfd7befe906877abab098c6e63a0e8 | /761/CH2/EX2.1/2_1.sce | 8c6db04e1dea1901d6c652dbeceecd18f0252f70 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 307 | sce | 2_1.sce | clc;
//page no 50
//prob no 2.1
//Refer the fig 2.6 of page 50. L1=25uH;C1=50pF
L1=25*10^-6;C1=50*10^-12;Q=15;
//A) The resonent freqency is given as
fo=(1/(2*%pi*sqrt(L1*C1)));
disp('Hz',fo,'a)The resonent frequency is ');
//B) The bandwidth is given as
B=fo/Q;
disp('Hz',B,'The bandwidth is '); |
b00f281071bdde5d8984665a43886d03652ff827 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3802/CH1/EX1.10/Ex1_10.sce | 49d7070a234ef0976e3d7255fec6fd7ce4dd0e76 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,451 | sce | Ex1_10.sce | //Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014
//Ex1_10.sce.
clc;
clear;
subplot(2,2,1)
t=[0:0.001:8];
x=length(t);
v=ones(1,x);
for n=1:x;
L=5;
if t(n)<=2
v(n)=6.25;
else if t(n)>=6 & t(n)<8
v(n)=-6.25;
else
v(n)=0;
end
end
end
xlabel("Time in seconds")
ylabel("voltage in volts")
title("voltage waveform")
plot(t,v)
subplot(2,2,2)
t=[0:0.001:8];
x=length(t);
p=ones(1,x);
for n=1:x;
if t(n)<=2
v(n)=6.25;
i(n)=1.25;
p(n)=v(n)*t(n)*i(n);
else if t(n)>=6 & t(n)<8
v(n)=-6.25;
i(n)=10;
p(n)=(i(n)-(1.25*t(n)))*v(n);
else
v(n)=0;
i(n)=2.5;
p(n)=v(n)*t(n)*i(n);
end
end
end
xlabel("Time in seconds")
ylabel("power in watts")
title("power waveform")
plot(t,p)
subplot(2,2,3)
t=[0:0.001:8];
x=length(t);
e=ones(1,x);
L=5;
for n=1:x;
if t(n)<=2
i(n)=1.25;
e(n)=(1/2)*L*(t(n)*i(n))^2;
else if t(n)>=6 & t(n)<8
i(n)=10;
e(n)=(1/2)*L*(i(n)-(1.25*t(n)))^2;
else
i(n)=2.5;
e(n)=(1/2)*L*(i(n))^2;
end
end
end
xlabel("Time in seconds")
ylabel("Energy in joules")
title("Energy waveform")
plot(t,e)
|
7d00fb884c66548a8371d1db318be7219c5afa12 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1358/CH3/EX3.23/Example323.sce | 24b790686fbaf645ff6322b7e5abc03586ef1195 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 610 | sce | Example323.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Turbomachinery Design and Theory,Rama S. R. Gorla and Aijaz A. Khan, Chapter 3, Example 23")
disp("Inner Diameter,")
D2 = 0.45
disp("Outer Diameter,")
D1 = 0.9
disp("Radial Discharge")
alpha2 = 90
Cr2 = 2.8
Cr1 = Cr2
disp("From velocity triangle at inlet, The peripheral velocity of the wheel at inlet")
alpha1 = 12
U1 = Cr1/tan(alpha1*%pi/180)
N = 60*U1/(%pi*D1)
disp("Considering velocity triangle at outlet peripheral velocity at outlet")
U2 = %pi*D2*N/60
beta2 = atan(Cr2/U2)*180/%pi
|
ef6c1c347692f640d3c4a144ef34c48a25bc7ea8 | 2e676e3b1cebfbb9d20f9b935ceacd507c57d36a | /Octave/octave-4.2.1/share/octave/4.2.1/etc/tests/fixed/bug-35448/bug-35448.tst | d24938eaa434e2eea398a2722f47c80af83af4fe | [] | no_license | vohrahul/ML-ang-coursera | 239469e763b290aa178b7aa8a86eda08e4e7f4be | 4c24fd2ecfb9f3de7df15e3a9f75627f782f9915 | refs/heads/master | 2022-12-28T03:45:54.810173 | 2020-10-16T12:33:25 | 2020-10-16T12:33:25 | 304,620,441 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 141 | tst | bug-35448.tst | %!test
%! global gfun
%! gfun = @fB;
%! y = fA (e);
%! assert (y, e);
%!test
%! global gfun
%! gfun = @fC;
%! y = fA (e);
%! assert (y, e);
|
1d04a79566ab42f9333791796e9844ac062b9fd4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3756/CH3/EX3.1/Ex3_1.sce | 7cb8f5622c43e1e79aaac3912cd82b106020299c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 475 | sce | Ex3_1.sce | clc
//
//
//
//Variable declaration
lambdaa=5896 //Wavelength
N=60000 //Total Number of lines in 10 cm
n1=2 //order
n2=3 //order
//Calculations
RP=n1*N
dlambda=((lambdaa)/(n2*N))
//Result
printf("\n (a)The resolving power in second order is %0.3f ",RP)
printf("\n (b) The smallest wavelength that can be resolved in the 3rd order in 5896 Angstrom wavelength region is %0.4f Angstrom",dlambda)
|
053a5876a5cc7203d3d24e1d5f5736333816adb6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /72/CH4/EX4.5.2/4_5_2.sce | 68dc76f46d355ec964b447821b3af8324af94fe4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,182 | sce | 4_5_2.sce |
//chapter-4
//Example4-5-2 page no. 174
//(a)Program_to_find_out_the_input_and_output_VSWRs.
s11=0; //for_balanced_amplifier s11=0
s=(1+s11)/(1-s11); //Input_VSWR
disp(s,'input vswr=');
s22=0; //for_balanced_amplifier s22=0
s=(1+s22)/(1-s22); //output_VSWR
disp(s,'output vswr=');
//(b)Program_to_find_out_the_output_power_in_watts
PO=200*10*2; //output_power(PO)=[powerinput]*[power_gain_of_each_GaAs_chip]*[n] ,here n=2
disp(PO/1000,'Output_POWER_in_Watts'); //display_power_in_watts_by_dividing_by_1000
//(C)Program to find out the linear output power gain in db
GAIN=10*log10(2); //BECAUSE_TWO_CHIPS_ARE_IN_PARALLEL. Gain=(power gain of each GaAs chip)*log(n),n=2.
disp(GAIN,'Linear_output_power_gain_in_db='); //display_linear_output_power_gain_in_db
|
26a9e30040c4402040fd626030829fd0154fd4ec | b23687e2eb02bcb6d0f581b7975f42c496faeda1 | /DefiniteIntegral.sce | eafd60fb920e2f59e09706fdd1ac7e5f73b95864 | [
"MIT"
] | permissive | harvishj/Scilab | bd3fbd3e679eb07aa088ff2bab40d491c6499770 | 9daada512f42ea6f52199a34d6b18e64b107af94 | refs/heads/master | 2021-07-14T15:06:03.621923 | 2020-10-05T06:35:43 | 2020-10-05T06:35:43 | 213,328,984 | 1 | 3 | MIT | 2020-10-05T06:35:44 | 2019-10-07T08:16:52 | Scilab | UTF-8 | Scilab | false | false | 187 | sce | DefiniteIntegral.sce | clear;
clf;
ts = 0;
te = 2;
dt = 1/1000;
t = te : dt : ts;
x = 2*ones(1, (te-ts)/dt);
z = sum(x)*dt;
disp(z);
t1 = 0;
t2 = 2*%pi;
T = t1 : dt : t2;
y = sin(T);
k = sum(y)*dt;
disp(k); |
1052572d999a28e5cf25c1572fa102aaf9aed39f | a5f0fbcba032f945a9ee629716f6487647cafd5f | /Machine_Learning/demos/Random Forest_Demo.sce | bf00d4ad28d47ea908ead36ab79358641cad0507 | [
"BSD-2-Clause"
] | permissive | SoumitraAgarwal/Scilab-gsoc | 692c00e3fb7a5faf65082e6c23765620f4ecdf35 | 678e8f80c8a03ef0b9f4c1173bdda7f3e16d716f | refs/heads/master | 2021-04-15T17:55:48.334164 | 2018-08-07T13:43:26 | 2018-08-07T13:43:26 | 126,500,126 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 535 | sce | Random Forest_Demo.sce | // Demo for Random Forest -- Scilab
getd('../macros')
// Data preparation
M = csvRead('Datasets/titanic.csv')
x = M(:, [3,6]);
y = M(:, 2);
// Data cleaning
function xnorm = norma(x)
n = length(x)
mi = min(x)
ma = max(x)
for i=1:n
x(i) = 1.0*(x(i) - mi)/(ma - mi)
end
xnorm = x
endfunction
y(or(isnan(x),'c'),:) = []
x(or(isnan(x),'c'),:) = []
x(:, 1) = norma(real(x(:, 1)))
x(:, 2) = norma(real(x(:, 2)))
trees = 4
samplesize = 100
ypred = randomForest(x, y, trees, samplesize, x)
disp(0.5*sqrt(norm(y - ypred'))) |
4d99eff6b90326e5cb0760a64f5b00959b1bc2a9 | ebd6f68d47e192da7f81c528312358cfe8052c8d | /swig/Examples/test-suite/scilab/scilab_enums_runme.sci | 2776bee1e875740f8b866758903e3ca06dc9ca7e | [
"LicenseRef-scancode-swig",
"GPL-3.0-or-later",
"LicenseRef-scancode-unknown-license-reference",
"GPL-3.0-only",
"Apache-2.0"
] | permissive | inishchith/DeepSpeech | 965ad34d69eb4d150ddf996d30d02a1b29c97d25 | dcb7c716bc794d7690d96ed40179ed1996968a41 | refs/heads/master | 2021-01-16T16:16:05.282278 | 2020-05-19T08:00:33 | 2020-05-19T08:00:33 | 243,180,319 | 1 | 0 | Apache-2.0 | 2020-02-26T05:54:51 | 2020-02-26T05:54:50 | null | UTF-8 | Scilab | false | false | 862 | sci | scilab_enums_runme.sci | exec("swigtest.start", -1);
function checkEnum(enum_val, expected_enum_val)
if typeof(enum_val) <> "constant" then swigtesterror(); end
if enum_val <> expected_enum_val then swigtesterror(); end
endfunction
checkEnum(ENUM_1, 0);
checkEnum(ENUM_2, 1);
checkEnum(ENUM_EXPLICIT_1_1, 5);
checkEnum(ENUM_EXPLICIT_1_2, 6);
checkEnum(ENUM_EXPLICIT_2_1, 0);
checkEnum(ENUM_EXPLICIT_2_2, 10);
checkEnum(ENUM_EXPLICIT_3_1, 2);
checkEnum(ENUM_EXPLICIT_3_2, 5);
checkEnum(ENUM_EXPLICIT_3_3, 8);
checkEnum(TYPEDEF_ENUM_1_1, 21);
checkEnum(TYPEDEF_ENUM_1_2, 22);
checkEnum(TYPEDEF_ENUM_2_1, 31);
checkEnum(TYPEDEF_ENUM_2_2, 32);
checkEnum(ENUM_REF_1, 1);
checkEnum(ENUM_REF_2, 10);
checkEnum(clsEnum_CLS_ENUM_1, 100);
checkEnum(clsEnum_CLS_ENUM_2, 101);
checkEnum(clsEnum_CLS_ENUM_REF_1, 101);
checkEnum(clsEnum_CLS_ENUM_REF_2, 110);
exec("swigtest.quit", -1);
|
0c9fb5b2560d34f62b38757c0cffc48bce1950dd | 449d555969bfd7befe906877abab098c6e63a0e8 | /1106/CH11/EX11.5/ex11_5.sce | 3b094a661bc496420f3d4688d7838ed32b726cc8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 460 | sce | ex11_5.sce | // Example 11.5, Page No-463
clear
clc
//Part A
printf('\nPart A')
R=10000
Vr=10
n=4
lsb=0.5
Rf=(R*2^n)*lsb/Vr
Rfn=Rf/1000
printf('\nRf= %d kohm', Rfn)
printf('\nPart B')
b1=1
Rf1=R*6/(Vr*lsb)
Rfn1=Rf1/1000
printf('\nRf= %d kohm', Rfn1)
printf('\nPart C')
Vfs=12
Rf2=R*Vfs/Vr
Rfn2=Rf2/1000
printf('\nRf= %d kohm', Rfn2)
printf('\nPart D')
Vfs1=10
bb=0.9375
Rf3=R*Vfs1/(Vr*bb)
Rfn3=Rf3/1000
printf('\nRf= %.3f kohm', Rfn3)
|
fa6a32707856fd1bf2d6d12eeb110725a9b10f3e | 449d555969bfd7befe906877abab098c6e63a0e8 | /26/CH6/EX6.4.1/6_4_1.sce | beeb5b0e0b0dbabb919364bad38d50ae854a9612 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 323 | sce | 6_4_1.sce | disp('to orthogonalise the given vectors using Gram-Schimdt orthogonalisation')
x1=[3;0;-1]
x2=[8;5;-6]
disp(x2,'x2=',x1,'x1=')
disp('Let v1=x1')
v1=x1
disp('v2=x2-((x2.v1)/(v1.v1))*v1')
a1=x2'*v1
a2=v1'*v1
p=(a1/a2)*v1
v2=x2-p
disp(p,'-',x2,'=')
disp(v2,'=')
disp('Thus, an orthogonal basis is:')
disp(v2,v1) |
d23dd243c869df7ca06bf5035f40faa2685a2bb3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /29/CH3/EX3.2.15/exa3_2_15.sce | 24aab86a0ac6fed542ad1745c41ab1833eb595cd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 681 | sce | exa3_2_15.sce | //Caption:transfer_function
// example 3.2.15
//page 52
// we have defined parallel and series function which we are going to use here
//exec parallel.sce;
//exec series.sce;
syms G1 G2 H1 H2 H3 D1 D2 R;
a=G2/.H2
b=a/(1+a*H3);
b=simple(b)
//inorder to determine C(s)/R(s) consider D1=0,D2=0
c=series(b,G1)
y=c/(1+c*H1);
y=simple(y)
disp(y,"C(s)/R(s)");
// now consider R=0,D2=0 for calculating C(s)/D1(s)
d=series(G1,H1);
z=b/(1+b*d);
z=simple(z)
disp(z,"D1(s)/R(s)");
// now consider R=0,D1=0 for calculating C(s)/D2(s)
e=G1*(-H1);
f=series(b,e);
x=f/(1+f);
x=simple(x);
disp(x,"D2(s)/R(s)");
out=(y*R)+(z*D1)+(x*D2);
out=simple(out);
disp(out,"C(s)"); |
dadc804717e79881663c0f7925344a6589af392d | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/unshiftdata.sci | 46c3777b848bf339935da9b3e019db06b345d48e | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,612 | sci | unshiftdata.sci | function y = unshiftdata(x,perm,nshifts)
//Inverts the effect of shiftdata
//Calling sequence
//y=unshiftdata(x,perm,nshifts)
//Parameters
//x
//A vector matrix or n-dimensional array
//perm
//Permutation applied by shiftdata to obtain x
//nshifts
//The number of shifts applied by shiftdata to obtain x
//Description
//y=unshiftdata(x,perm,nshifts)
//Applies the permutation perm or number of shifts nshifts on x to invert shiftdata
//Examples
//x=testmatrix('magi',3)
//x =
//
// 8. 1. 6.
// 3. 5. 7.
// 4. 9. 2.
//[y,perm,nshifts] = shiftdata(x,2) //Shifts dimension 2
//nshifts =
//
// []
// perm =
//
// 2. 1.
// y =
//
// 8. 3. 4.
// 1. 5. 9.
// 6. 7. 2.
//z=unshiftdata(y,perm,nshifts)
//z =
//
// 8. 1. 6.
// 3. 5. 7.
// 4. 9. 2.
//
//x=1:5
//x =
//
// 1. 2. 3. 4. 5.
// [y,perm,nshifts] = shiftdata(x) //Shifts first non-singleton dimension
//nshifts =
//
// 1.
// perm =
//
// []
// y =
//
// 1.
// 2.
// 3.
// 4.
// 5.
////z=unshiftdata(y,perm,nshifts)
//z =
//
// 1. 2. 3. 4. 5.
//See Also
//permute
//shiftdata
//Author
//Ankur Mallick
funcprot(0);
if(argn(2)<1|argn(2)<2|(argn(2)<3&size(perm)==0)|argn(2)>3)
error('Incorrect number of input arguments.');
else
if(size(perm)==0)
S=size(x);
S1=[ones(1,nshifts),S]
y=matrix(x,S1);
else
iperm(perm)=1:length(perm);
y=permute(x,iperm);
end
end
endfunction
|
8f7e3d5257a8ab009afa6bf317511eaae962c129 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3131/CH3/EX3.2/3_2.sce | c7503b7164b7b225b9e4101db0203e9c045679c6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 469 | sce | 3_2.sce | clear all; clc;
disp("Ex 3_2")
//Cable CA supports the weight of the engine 2.452kN
//Concurrent System of forces
disp("Equilibrium Equations")
disp("T_B*cos(30) - T_D = 0 ....(1)")
disp("T_B*sin(30) - 2.452kN = 0 ....(2)")
disp("Solving eqn (2) we get the value of T_B")
a=2.452
b1=30
b=30*%pi/180
c=a/sin(b)
printf('\n\nT_B = %0.2f kN',c)
disp(" ")
disp("Putting the above value of T_B in eqn (1), we get the value of T_D")
d=c*cos(b)
printf('\n\nT_D = %0.2f kN',d)
|
0402ddb60b2540c28c9774a672db7c1a0ef97b06 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1727/CH10/EX10.1/10_1.sce | 282e2691fc1740dc3d47d671875882880926f80e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 160 | sce | 10_1.sce | clc
//Initialization of variables
v=30 //m/s
nu=1.5e-5 //m^2/s
//calculations
Re=5*10^5
xc= Re*nu/v
//results
printf("Transistion region = %.2f m",xc)
|
8fd8fa8c6a5400b26e8101453e03ee656944f5f0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3768/CH10/EX10.3/Ex10_3.sce | ff8458ab5ef458b72cbc38bd8227ce9c3870ba31 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 354 | sce | Ex10_3.sce | //Example number 10.3, Page number 225
clc;clear;
close;
//Variable declaration
Hc=5*10**3; //critical magnetic field(A/m)
T=6; //temperature(K)
H0=2*10**4; //critical magnetic field(A/m)
//Calculation
Tc=T/sqrt(1-(Hc/H0)); //critical temperature(K)
//Result
printf("critical temperature is %.3f K",Tc)
//answer given in the book is wrong
|
5c6811a438da5ffd2e54a6b0db8000ebc8f67c95 | b67defe3c1cae63dd1a79578f840d069568034e6 | /scilab/main_mn2.sci | ccade40f5539b45aa1b1cc96dc3c06ffd0e814a6 | [] | no_license | wmacevoy/luck | bf5d93ce00e8136634d715057a97706d3aa804b3 | 47e5c8eb1782a1b4f3f5b9e7583290d9a842532e | refs/heads/master | 2023-05-03T14:46:51.353817 | 2023-04-25T03:13:44 | 2023-04-25T03:13:44 | 33,452,250 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 505 | sci | main_mn2.sci | exec("mnprobln.sci",2);
exec("mnluck.sci",2);
exec("mnsamp.sci",2);
exec("mnr.sci",2);
dim=25; // dimension
nsamps=1; // number of samples
mu=hypermat([dim,2]);
Sigma=hypermat([dim,dim,2]);
x=hypermat([dim,nsamps,2]);
for i=1:2
mu(:,i)=rand(dim,1);
tmp=rand(dim,dim);
Sigma(:,:,i)=tmp'*tmp;
x(:,:,i)=mnsamp(nsamps,mu(:,i),Sigma(:,:,i));
end
z=zeros(2,2);
for i=1:2
for j=1:2
R=mnr(x(:,:,i),mu(:,j),Sigma(:,:,j));
z(i,j)=norm(R)-sqrt(nsamps*dim-0.5);
end
end
L=0.5*(1+erf(z));
|
2f128a14f28e307fd500c171daa453e03d834171 | b513eb49824ff62ddd2289a920c92cfcb362d5f2 | /magister/course_1/litvinov/lab_2/scilab/model.sce | dda675ad1923a4d8ab1471f84036f236684022e0 | [] | no_license | kirillin/ifmo | 6264ac42ec2031777145b39d4930f2f645e1d316 | 633919ba09d43814298c3a2145d5d6f72b5b068e | refs/heads/master | 2021-01-12T09:32:27.270130 | 2018-11-18T12:17:46 | 2018-11-18T12:17:46 | 76,181,268 | 3 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 765 | sce | model.sce | T = 0.5;
A = [0, 1; 0, 0];
B = [0; 1];
A = [0, 1; 0, -1.0526]
B = [0; 0.5263]
C = [1, 0];
Ad = expm(A*T);
Bd = [0; 0];
for i=1:10
Bd = Bd + (A^(i-1) * T^i) / prod(1:i) * B;
end
z1 = [0.9, -0.9, 0, imult(0.1), complex(-0.2, 0.8), complex(0.8,0.2)];
z2 = [1, -1, 0.2, imult(-0.1), complex(-0.2, -0.8), complex(0.8,-0.2)];
a1 = [];
a0 = [];
k2 = [];
k1 = [];
Fb = [
1/5, 1/50;
-1/5, 1/50
];
for i=1:6
Z = [
z1(i), 1;
z2(i), 1
]
Z2 = [
-z1(i)^2;
-z2(i)^2
]
a = Z^-1 * Z2;
a1(i) = a(1);
a0(i) = a(2);
Fb2 = [
a(1) + 2;
a(2) - 1
];
k = Fb^-1 * Fb2;
k2(i) = k(1);
k1(i) = k(2);
end
init = 3;
i = 6;
K2 = k2(i);
K1 = k1(i);
Kd = [K1, K2]
|
44a93a5010ee40e785f83dd41ed5ac56d2ca4116 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1694/CH2/EX2.23/EX2_23.sce | 8310182cca021d37bd7162a23ec3fab842d20c4d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 366 | sce | EX2_23.sce | clear;
clc;
printf("\nEx2.23\n");
//page no.-69
//given
h=6.62*10^-34;..............//planck's constant in joule-sec
m=1.67*10^-27;..............//mass of proton
c=3*10^8;..................//speed of light in m/s
E=46.08*10^-19;...........//energy in joule
lambda=h/sqrt(2*m*E).........//wavelength in m
printf("\nwavelength is 0.05336 angstrom \n");
|
4105754dc69578890b29a58488f61b1636763a97 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1184/CH1/EX1.6/Ex1_6.sce | 763bfb8f41f8e0a930410ca67d68f61c904f627b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 201 | sce | Ex1_6.sce | //Example 1-6, Page No - 19
clear
clc
bandwidth_megahertz= 6
f1_megahertz=54
f2_megahertz=f1_megahertz + bandwidth_megahertz
printf('Upper frequency limit is %.3f Megahertz',f2_megahertz)
|
e01e58b5a37d53cd89c3546f330932349637d705 | dc628e7d8425aa0bb1460d2583f04c9969b4ec9c | /dlog-server/examples/iocaste/c1000.tst | ce835ce3c1b2ed725e8dd3ccf8478186386317d7 | [] | no_license | logicmoo/DLog | bc2c43523ccbc3747c381f2eb0e25960cfc8d6e1 | 855774c38c1eea119405fde0057cfdb1032006f0 | refs/heads/master | 2021-05-28T14:03:35.596790 | 2015-01-12T22:49:56 | 2015-01-12T22:49:56 | 27,461,790 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 82,230 | tst | c1000.tst | %Generated from '../examples/iocaste/c1000.dig'.
query(instances(aconcept('Good')), [i1]).
concept('Good').
concept('Patricide').
role(hasChild).
implies(and([some(arole(hasChild), and([aconcept('Patricide'), some(arole(hasChild), not(aconcept('Patricide')))]))]), aconcept('Good')).
implies(aconcept('Good'), and([some(arole(hasChild), and([aconcept('Patricide'), some(arole(hasChild), not(aconcept('Patricide')))]))])).
cassertion(not(aconcept('Patricide')), i1002).
cassertion(aconcept('Patricide'), i2).
rassertion(arole(hasChild), i1001, i1002).
rassertion(arole(hasChild), i1000, i1001).
rassertion(arole(hasChild), i999, i1000).
rassertion(arole(hasChild), i998, i999).
rassertion(arole(hasChild), i997, i998).
rassertion(arole(hasChild), i996, i997).
rassertion(arole(hasChild), i995, i996).
rassertion(arole(hasChild), i994, i995).
rassertion(arole(hasChild), i993, i994).
rassertion(arole(hasChild), i992, i993).
rassertion(arole(hasChild), i991, i992).
rassertion(arole(hasChild), i990, i991).
rassertion(arole(hasChild), i989, i990).
rassertion(arole(hasChild), i988, i989).
rassertion(arole(hasChild), i987, i988).
rassertion(arole(hasChild), i986, i987).
rassertion(arole(hasChild), i985, i986).
rassertion(arole(hasChild), i984, i985).
rassertion(arole(hasChild), i983, i984).
rassertion(arole(hasChild), i982, i983).
rassertion(arole(hasChild), i981, i982).
rassertion(arole(hasChild), i980, i981).
rassertion(arole(hasChild), i979, i980).
rassertion(arole(hasChild), i978, i979).
rassertion(arole(hasChild), i977, i978).
rassertion(arole(hasChild), i976, i977).
rassertion(arole(hasChild), i975, i976).
rassertion(arole(hasChild), i974, i975).
rassertion(arole(hasChild), i973, i974).
rassertion(arole(hasChild), i972, i973).
rassertion(arole(hasChild), i971, i972).
rassertion(arole(hasChild), i970, i971).
rassertion(arole(hasChild), i969, i970).
rassertion(arole(hasChild), i968, i969).
rassertion(arole(hasChild), i967, i968).
rassertion(arole(hasChild), i966, i967).
rassertion(arole(hasChild), i965, i966).
rassertion(arole(hasChild), i964, i965).
rassertion(arole(hasChild), i963, i964).
rassertion(arole(hasChild), i962, i963).
rassertion(arole(hasChild), i961, i962).
rassertion(arole(hasChild), i960, i961).
rassertion(arole(hasChild), i959, i960).
rassertion(arole(hasChild), i958, i959).
rassertion(arole(hasChild), i957, i958).
rassertion(arole(hasChild), i956, i957).
rassertion(arole(hasChild), i955, i956).
rassertion(arole(hasChild), i954, i955).
rassertion(arole(hasChild), i953, i954).
rassertion(arole(hasChild), i952, i953).
rassertion(arole(hasChild), i951, i952).
rassertion(arole(hasChild), i950, i951).
rassertion(arole(hasChild), i949, i950).
rassertion(arole(hasChild), i948, i949).
rassertion(arole(hasChild), i947, i948).
rassertion(arole(hasChild), i946, i947).
rassertion(arole(hasChild), i945, i946).
rassertion(arole(hasChild), i944, i945).
rassertion(arole(hasChild), i943, i944).
rassertion(arole(hasChild), i942, i943).
rassertion(arole(hasChild), i941, i942).
rassertion(arole(hasChild), i940, i941).
rassertion(arole(hasChild), i939, i940).
rassertion(arole(hasChild), i938, i939).
rassertion(arole(hasChild), i937, i938).
rassertion(arole(hasChild), i936, i937).
rassertion(arole(hasChild), i935, i936).
rassertion(arole(hasChild), i934, i935).
rassertion(arole(hasChild), i933, i934).
rassertion(arole(hasChild), i932, i933).
rassertion(arole(hasChild), i931, i932).
rassertion(arole(hasChild), i930, i931).
rassertion(arole(hasChild), i929, i930).
rassertion(arole(hasChild), i928, i929).
rassertion(arole(hasChild), i927, i928).
rassertion(arole(hasChild), i926, i927).
rassertion(arole(hasChild), i925, i926).
rassertion(arole(hasChild), i924, i925).
rassertion(arole(hasChild), i923, i924).
rassertion(arole(hasChild), i922, i923).
rassertion(arole(hasChild), i921, i922).
rassertion(arole(hasChild), i920, i921).
rassertion(arole(hasChild), i919, i920).
rassertion(arole(hasChild), i918, i919).
rassertion(arole(hasChild), i917, i918).
rassertion(arole(hasChild), i916, i917).
rassertion(arole(hasChild), i915, i916).
rassertion(arole(hasChild), i914, i915).
rassertion(arole(hasChild), i913, i914).
rassertion(arole(hasChild), i912, i913).
rassertion(arole(hasChild), i911, i912).
rassertion(arole(hasChild), i910, i911).
rassertion(arole(hasChild), i909, i910).
rassertion(arole(hasChild), i908, i909).
rassertion(arole(hasChild), i907, i908).
rassertion(arole(hasChild), i906, i907).
rassertion(arole(hasChild), i905, i906).
rassertion(arole(hasChild), i904, i905).
rassertion(arole(hasChild), i903, i904).
rassertion(arole(hasChild), i902, i903).
rassertion(arole(hasChild), i901, i902).
rassertion(arole(hasChild), i900, i901).
rassertion(arole(hasChild), i899, i900).
rassertion(arole(hasChild), i898, i899).
rassertion(arole(hasChild), i897, i898).
rassertion(arole(hasChild), i896, i897).
rassertion(arole(hasChild), i895, i896).
rassertion(arole(hasChild), i894, i895).
rassertion(arole(hasChild), i893, i894).
rassertion(arole(hasChild), i892, i893).
rassertion(arole(hasChild), i891, i892).
rassertion(arole(hasChild), i890, i891).
rassertion(arole(hasChild), i889, i890).
rassertion(arole(hasChild), i888, i889).
rassertion(arole(hasChild), i887, i888).
rassertion(arole(hasChild), i886, i887).
rassertion(arole(hasChild), i885, i886).
rassertion(arole(hasChild), i884, i885).
rassertion(arole(hasChild), i883, i884).
rassertion(arole(hasChild), i882, i883).
rassertion(arole(hasChild), i881, i882).
rassertion(arole(hasChild), i880, i881).
rassertion(arole(hasChild), i879, i880).
rassertion(arole(hasChild), i878, i879).
rassertion(arole(hasChild), i877, i878).
rassertion(arole(hasChild), i876, i877).
rassertion(arole(hasChild), i875, i876).
rassertion(arole(hasChild), i874, i875).
rassertion(arole(hasChild), i873, i874).
rassertion(arole(hasChild), i872, i873).
rassertion(arole(hasChild), i871, i872).
rassertion(arole(hasChild), i870, i871).
rassertion(arole(hasChild), i869, i870).
rassertion(arole(hasChild), i868, i869).
rassertion(arole(hasChild), i867, i868).
rassertion(arole(hasChild), i866, i867).
rassertion(arole(hasChild), i865, i866).
rassertion(arole(hasChild), i864, i865).
rassertion(arole(hasChild), i863, i864).
rassertion(arole(hasChild), i862, i863).
rassertion(arole(hasChild), i861, i862).
rassertion(arole(hasChild), i860, i861).
rassertion(arole(hasChild), i859, i860).
rassertion(arole(hasChild), i858, i859).
rassertion(arole(hasChild), i857, i858).
rassertion(arole(hasChild), i856, i857).
rassertion(arole(hasChild), i855, i856).
rassertion(arole(hasChild), i854, i855).
rassertion(arole(hasChild), i853, i854).
rassertion(arole(hasChild), i852, i853).
rassertion(arole(hasChild), i851, i852).
rassertion(arole(hasChild), i850, i851).
rassertion(arole(hasChild), i849, i850).
rassertion(arole(hasChild), i848, i849).
rassertion(arole(hasChild), i847, i848).
rassertion(arole(hasChild), i846, i847).
rassertion(arole(hasChild), i845, i846).
rassertion(arole(hasChild), i844, i845).
rassertion(arole(hasChild), i843, i844).
rassertion(arole(hasChild), i842, i843).
rassertion(arole(hasChild), i841, i842).
rassertion(arole(hasChild), i840, i841).
rassertion(arole(hasChild), i839, i840).
rassertion(arole(hasChild), i838, i839).
rassertion(arole(hasChild), i837, i838).
rassertion(arole(hasChild), i836, i837).
rassertion(arole(hasChild), i835, i836).
rassertion(arole(hasChild), i834, i835).
rassertion(arole(hasChild), i833, i834).
rassertion(arole(hasChild), i832, i833).
rassertion(arole(hasChild), i831, i832).
rassertion(arole(hasChild), i830, i831).
rassertion(arole(hasChild), i829, i830).
rassertion(arole(hasChild), i828, i829).
rassertion(arole(hasChild), i827, i828).
rassertion(arole(hasChild), i826, i827).
rassertion(arole(hasChild), i825, i826).
rassertion(arole(hasChild), i824, i825).
rassertion(arole(hasChild), i823, i824).
rassertion(arole(hasChild), i822, i823).
rassertion(arole(hasChild), i821, i822).
rassertion(arole(hasChild), i820, i821).
rassertion(arole(hasChild), i819, i820).
rassertion(arole(hasChild), i818, i819).
rassertion(arole(hasChild), i817, i818).
rassertion(arole(hasChild), i816, i817).
rassertion(arole(hasChild), i815, i816).
rassertion(arole(hasChild), i814, i815).
rassertion(arole(hasChild), i813, i814).
rassertion(arole(hasChild), i812, i813).
rassertion(arole(hasChild), i811, i812).
rassertion(arole(hasChild), i810, i811).
rassertion(arole(hasChild), i809, i810).
rassertion(arole(hasChild), i808, i809).
rassertion(arole(hasChild), i807, i808).
rassertion(arole(hasChild), i806, i807).
rassertion(arole(hasChild), i805, i806).
rassertion(arole(hasChild), i804, i805).
rassertion(arole(hasChild), i803, i804).
rassertion(arole(hasChild), i802, i803).
rassertion(arole(hasChild), i801, i802).
rassertion(arole(hasChild), i800, i801).
rassertion(arole(hasChild), i799, i800).
rassertion(arole(hasChild), i798, i799).
rassertion(arole(hasChild), i797, i798).
rassertion(arole(hasChild), i796, i797).
rassertion(arole(hasChild), i795, i796).
rassertion(arole(hasChild), i794, i795).
rassertion(arole(hasChild), i793, i794).
rassertion(arole(hasChild), i792, i793).
rassertion(arole(hasChild), i791, i792).
rassertion(arole(hasChild), i790, i791).
rassertion(arole(hasChild), i789, i790).
rassertion(arole(hasChild), i788, i789).
rassertion(arole(hasChild), i787, i788).
rassertion(arole(hasChild), i786, i787).
rassertion(arole(hasChild), i785, i786).
rassertion(arole(hasChild), i784, i785).
rassertion(arole(hasChild), i783, i784).
rassertion(arole(hasChild), i782, i783).
rassertion(arole(hasChild), i781, i782).
rassertion(arole(hasChild), i780, i781).
rassertion(arole(hasChild), i779, i780).
rassertion(arole(hasChild), i778, i779).
rassertion(arole(hasChild), i777, i778).
rassertion(arole(hasChild), i776, i777).
rassertion(arole(hasChild), i775, i776).
rassertion(arole(hasChild), i774, i775).
rassertion(arole(hasChild), i773, i774).
rassertion(arole(hasChild), i772, i773).
rassertion(arole(hasChild), i771, i772).
rassertion(arole(hasChild), i770, i771).
rassertion(arole(hasChild), i769, i770).
rassertion(arole(hasChild), i768, i769).
rassertion(arole(hasChild), i767, i768).
rassertion(arole(hasChild), i766, i767).
rassertion(arole(hasChild), i765, i766).
rassertion(arole(hasChild), i764, i765).
rassertion(arole(hasChild), i763, i764).
rassertion(arole(hasChild), i762, i763).
rassertion(arole(hasChild), i761, i762).
rassertion(arole(hasChild), i760, i761).
rassertion(arole(hasChild), i759, i760).
rassertion(arole(hasChild), i758, i759).
rassertion(arole(hasChild), i757, i758).
rassertion(arole(hasChild), i756, i757).
rassertion(arole(hasChild), i755, i756).
rassertion(arole(hasChild), i754, i755).
rassertion(arole(hasChild), i753, i754).
rassertion(arole(hasChild), i752, i753).
rassertion(arole(hasChild), i751, i752).
rassertion(arole(hasChild), i750, i751).
rassertion(arole(hasChild), i749, i750).
rassertion(arole(hasChild), i748, i749).
rassertion(arole(hasChild), i747, i748).
rassertion(arole(hasChild), i746, i747).
rassertion(arole(hasChild), i745, i746).
rassertion(arole(hasChild), i744, i745).
rassertion(arole(hasChild), i743, i744).
rassertion(arole(hasChild), i742, i743).
rassertion(arole(hasChild), i741, i742).
rassertion(arole(hasChild), i740, i741).
rassertion(arole(hasChild), i739, i740).
rassertion(arole(hasChild), i738, i739).
rassertion(arole(hasChild), i737, i738).
rassertion(arole(hasChild), i736, i737).
rassertion(arole(hasChild), i735, i736).
rassertion(arole(hasChild), i734, i735).
rassertion(arole(hasChild), i733, i734).
rassertion(arole(hasChild), i732, i733).
rassertion(arole(hasChild), i731, i732).
rassertion(arole(hasChild), i730, i731).
rassertion(arole(hasChild), i729, i730).
rassertion(arole(hasChild), i728, i729).
rassertion(arole(hasChild), i727, i728).
rassertion(arole(hasChild), i726, i727).
rassertion(arole(hasChild), i725, i726).
rassertion(arole(hasChild), i724, i725).
rassertion(arole(hasChild), i723, i724).
rassertion(arole(hasChild), i722, i723).
rassertion(arole(hasChild), i721, i722).
rassertion(arole(hasChild), i720, i721).
rassertion(arole(hasChild), i719, i720).
rassertion(arole(hasChild), i718, i719).
rassertion(arole(hasChild), i717, i718).
rassertion(arole(hasChild), i716, i717).
rassertion(arole(hasChild), i715, i716).
rassertion(arole(hasChild), i714, i715).
rassertion(arole(hasChild), i713, i714).
rassertion(arole(hasChild), i712, i713).
rassertion(arole(hasChild), i711, i712).
rassertion(arole(hasChild), i710, i711).
rassertion(arole(hasChild), i709, i710).
rassertion(arole(hasChild), i708, i709).
rassertion(arole(hasChild), i707, i708).
rassertion(arole(hasChild), i706, i707).
rassertion(arole(hasChild), i705, i706).
rassertion(arole(hasChild), i704, i705).
rassertion(arole(hasChild), i703, i704).
rassertion(arole(hasChild), i702, i703).
rassertion(arole(hasChild), i701, i702).
rassertion(arole(hasChild), i700, i701).
rassertion(arole(hasChild), i699, i700).
rassertion(arole(hasChild), i698, i699).
rassertion(arole(hasChild), i697, i698).
rassertion(arole(hasChild), i696, i697).
rassertion(arole(hasChild), i695, i696).
rassertion(arole(hasChild), i694, i695).
rassertion(arole(hasChild), i693, i694).
rassertion(arole(hasChild), i692, i693).
rassertion(arole(hasChild), i691, i692).
rassertion(arole(hasChild), i690, i691).
rassertion(arole(hasChild), i689, i690).
rassertion(arole(hasChild), i688, i689).
rassertion(arole(hasChild), i687, i688).
rassertion(arole(hasChild), i686, i687).
rassertion(arole(hasChild), i685, i686).
rassertion(arole(hasChild), i684, i685).
rassertion(arole(hasChild), i683, i684).
rassertion(arole(hasChild), i682, i683).
rassertion(arole(hasChild), i681, i682).
rassertion(arole(hasChild), i680, i681).
rassertion(arole(hasChild), i679, i680).
rassertion(arole(hasChild), i678, i679).
rassertion(arole(hasChild), i677, i678).
rassertion(arole(hasChild), i676, i677).
rassertion(arole(hasChild), i675, i676).
rassertion(arole(hasChild), i674, i675).
rassertion(arole(hasChild), i673, i674).
rassertion(arole(hasChild), i672, i673).
rassertion(arole(hasChild), i671, i672).
rassertion(arole(hasChild), i670, i671).
rassertion(arole(hasChild), i669, i670).
rassertion(arole(hasChild), i668, i669).
rassertion(arole(hasChild), i667, i668).
rassertion(arole(hasChild), i666, i667).
rassertion(arole(hasChild), i665, i666).
rassertion(arole(hasChild), i664, i665).
rassertion(arole(hasChild), i663, i664).
rassertion(arole(hasChild), i662, i663).
rassertion(arole(hasChild), i661, i662).
rassertion(arole(hasChild), i660, i661).
rassertion(arole(hasChild), i659, i660).
rassertion(arole(hasChild), i658, i659).
rassertion(arole(hasChild), i657, i658).
rassertion(arole(hasChild), i656, i657).
rassertion(arole(hasChild), i655, i656).
rassertion(arole(hasChild), i654, i655).
rassertion(arole(hasChild), i653, i654).
rassertion(arole(hasChild), i652, i653).
rassertion(arole(hasChild), i651, i652).
rassertion(arole(hasChild), i650, i651).
rassertion(arole(hasChild), i649, i650).
rassertion(arole(hasChild), i648, i649).
rassertion(arole(hasChild), i647, i648).
rassertion(arole(hasChild), i646, i647).
rassertion(arole(hasChild), i645, i646).
rassertion(arole(hasChild), i644, i645).
rassertion(arole(hasChild), i643, i644).
rassertion(arole(hasChild), i642, i643).
rassertion(arole(hasChild), i641, i642).
rassertion(arole(hasChild), i640, i641).
rassertion(arole(hasChild), i639, i640).
rassertion(arole(hasChild), i638, i639).
rassertion(arole(hasChild), i637, i638).
rassertion(arole(hasChild), i636, i637).
rassertion(arole(hasChild), i635, i636).
rassertion(arole(hasChild), i634, i635).
rassertion(arole(hasChild), i633, i634).
rassertion(arole(hasChild), i632, i633).
rassertion(arole(hasChild), i631, i632).
rassertion(arole(hasChild), i630, i631).
rassertion(arole(hasChild), i629, i630).
rassertion(arole(hasChild), i628, i629).
rassertion(arole(hasChild), i627, i628).
rassertion(arole(hasChild), i626, i627).
rassertion(arole(hasChild), i625, i626).
rassertion(arole(hasChild), i624, i625).
rassertion(arole(hasChild), i623, i624).
rassertion(arole(hasChild), i622, i623).
rassertion(arole(hasChild), i621, i622).
rassertion(arole(hasChild), i620, i621).
rassertion(arole(hasChild), i619, i620).
rassertion(arole(hasChild), i618, i619).
rassertion(arole(hasChild), i617, i618).
rassertion(arole(hasChild), i616, i617).
rassertion(arole(hasChild), i615, i616).
rassertion(arole(hasChild), i614, i615).
rassertion(arole(hasChild), i613, i614).
rassertion(arole(hasChild), i612, i613).
rassertion(arole(hasChild), i611, i612).
rassertion(arole(hasChild), i610, i611).
rassertion(arole(hasChild), i609, i610).
rassertion(arole(hasChild), i608, i609).
rassertion(arole(hasChild), i607, i608).
rassertion(arole(hasChild), i606, i607).
rassertion(arole(hasChild), i605, i606).
rassertion(arole(hasChild), i604, i605).
rassertion(arole(hasChild), i603, i604).
rassertion(arole(hasChild), i602, i603).
rassertion(arole(hasChild), i601, i602).
rassertion(arole(hasChild), i600, i601).
rassertion(arole(hasChild), i599, i600).
rassertion(arole(hasChild), i598, i599).
rassertion(arole(hasChild), i597, i598).
rassertion(arole(hasChild), i596, i597).
rassertion(arole(hasChild), i595, i596).
rassertion(arole(hasChild), i594, i595).
rassertion(arole(hasChild), i593, i594).
rassertion(arole(hasChild), i592, i593).
rassertion(arole(hasChild), i591, i592).
rassertion(arole(hasChild), i590, i591).
rassertion(arole(hasChild), i589, i590).
rassertion(arole(hasChild), i588, i589).
rassertion(arole(hasChild), i587, i588).
rassertion(arole(hasChild), i586, i587).
rassertion(arole(hasChild), i585, i586).
rassertion(arole(hasChild), i584, i585).
rassertion(arole(hasChild), i583, i584).
rassertion(arole(hasChild), i582, i583).
rassertion(arole(hasChild), i581, i582).
rassertion(arole(hasChild), i580, i581).
rassertion(arole(hasChild), i579, i580).
rassertion(arole(hasChild), i578, i579).
rassertion(arole(hasChild), i577, i578).
rassertion(arole(hasChild), i576, i577).
rassertion(arole(hasChild), i575, i576).
rassertion(arole(hasChild), i574, i575).
rassertion(arole(hasChild), i573, i574).
rassertion(arole(hasChild), i572, i573).
rassertion(arole(hasChild), i571, i572).
rassertion(arole(hasChild), i570, i571).
rassertion(arole(hasChild), i569, i570).
rassertion(arole(hasChild), i568, i569).
rassertion(arole(hasChild), i567, i568).
rassertion(arole(hasChild), i566, i567).
rassertion(arole(hasChild), i565, i566).
rassertion(arole(hasChild), i564, i565).
rassertion(arole(hasChild), i563, i564).
rassertion(arole(hasChild), i562, i563).
rassertion(arole(hasChild), i561, i562).
rassertion(arole(hasChild), i560, i561).
rassertion(arole(hasChild), i559, i560).
rassertion(arole(hasChild), i558, i559).
rassertion(arole(hasChild), i557, i558).
rassertion(arole(hasChild), i556, i557).
rassertion(arole(hasChild), i555, i556).
rassertion(arole(hasChild), i554, i555).
rassertion(arole(hasChild), i553, i554).
rassertion(arole(hasChild), i552, i553).
rassertion(arole(hasChild), i551, i552).
rassertion(arole(hasChild), i550, i551).
rassertion(arole(hasChild), i549, i550).
rassertion(arole(hasChild), i548, i549).
rassertion(arole(hasChild), i547, i548).
rassertion(arole(hasChild), i546, i547).
rassertion(arole(hasChild), i545, i546).
rassertion(arole(hasChild), i544, i545).
rassertion(arole(hasChild), i543, i544).
rassertion(arole(hasChild), i542, i543).
rassertion(arole(hasChild), i541, i542).
rassertion(arole(hasChild), i540, i541).
rassertion(arole(hasChild), i539, i540).
rassertion(arole(hasChild), i538, i539).
rassertion(arole(hasChild), i537, i538).
rassertion(arole(hasChild), i536, i537).
rassertion(arole(hasChild), i535, i536).
rassertion(arole(hasChild), i534, i535).
rassertion(arole(hasChild), i533, i534).
rassertion(arole(hasChild), i532, i533).
rassertion(arole(hasChild), i531, i532).
rassertion(arole(hasChild), i530, i531).
rassertion(arole(hasChild), i529, i530).
rassertion(arole(hasChild), i528, i529).
rassertion(arole(hasChild), i527, i528).
rassertion(arole(hasChild), i526, i527).
rassertion(arole(hasChild), i525, i526).
rassertion(arole(hasChild), i524, i525).
rassertion(arole(hasChild), i523, i524).
rassertion(arole(hasChild), i522, i523).
rassertion(arole(hasChild), i521, i522).
rassertion(arole(hasChild), i520, i521).
rassertion(arole(hasChild), i519, i520).
rassertion(arole(hasChild), i518, i519).
rassertion(arole(hasChild), i517, i518).
rassertion(arole(hasChild), i516, i517).
rassertion(arole(hasChild), i515, i516).
rassertion(arole(hasChild), i514, i515).
rassertion(arole(hasChild), i513, i514).
rassertion(arole(hasChild), i512, i513).
rassertion(arole(hasChild), i511, i512).
rassertion(arole(hasChild), i510, i511).
rassertion(arole(hasChild), i509, i510).
rassertion(arole(hasChild), i508, i509).
rassertion(arole(hasChild), i507, i508).
rassertion(arole(hasChild), i506, i507).
rassertion(arole(hasChild), i505, i506).
rassertion(arole(hasChild), i504, i505).
rassertion(arole(hasChild), i503, i504).
rassertion(arole(hasChild), i502, i503).
rassertion(arole(hasChild), i501, i502).
rassertion(arole(hasChild), i500, i501).
rassertion(arole(hasChild), i499, i500).
rassertion(arole(hasChild), i498, i499).
rassertion(arole(hasChild), i497, i498).
rassertion(arole(hasChild), i496, i497).
rassertion(arole(hasChild), i495, i496).
rassertion(arole(hasChild), i494, i495).
rassertion(arole(hasChild), i493, i494).
rassertion(arole(hasChild), i492, i493).
rassertion(arole(hasChild), i491, i492).
rassertion(arole(hasChild), i490, i491).
rassertion(arole(hasChild), i489, i490).
rassertion(arole(hasChild), i488, i489).
rassertion(arole(hasChild), i487, i488).
rassertion(arole(hasChild), i486, i487).
rassertion(arole(hasChild), i485, i486).
rassertion(arole(hasChild), i484, i485).
rassertion(arole(hasChild), i483, i484).
rassertion(arole(hasChild), i482, i483).
rassertion(arole(hasChild), i481, i482).
rassertion(arole(hasChild), i480, i481).
rassertion(arole(hasChild), i479, i480).
rassertion(arole(hasChild), i478, i479).
rassertion(arole(hasChild), i477, i478).
rassertion(arole(hasChild), i476, i477).
rassertion(arole(hasChild), i475, i476).
rassertion(arole(hasChild), i474, i475).
rassertion(arole(hasChild), i473, i474).
rassertion(arole(hasChild), i472, i473).
rassertion(arole(hasChild), i471, i472).
rassertion(arole(hasChild), i470, i471).
rassertion(arole(hasChild), i469, i470).
rassertion(arole(hasChild), i468, i469).
rassertion(arole(hasChild), i467, i468).
rassertion(arole(hasChild), i466, i467).
rassertion(arole(hasChild), i465, i466).
rassertion(arole(hasChild), i464, i465).
rassertion(arole(hasChild), i463, i464).
rassertion(arole(hasChild), i462, i463).
rassertion(arole(hasChild), i461, i462).
rassertion(arole(hasChild), i460, i461).
rassertion(arole(hasChild), i459, i460).
rassertion(arole(hasChild), i458, i459).
rassertion(arole(hasChild), i457, i458).
rassertion(arole(hasChild), i456, i457).
rassertion(arole(hasChild), i455, i456).
rassertion(arole(hasChild), i454, i455).
rassertion(arole(hasChild), i453, i454).
rassertion(arole(hasChild), i452, i453).
rassertion(arole(hasChild), i451, i452).
rassertion(arole(hasChild), i450, i451).
rassertion(arole(hasChild), i449, i450).
rassertion(arole(hasChild), i448, i449).
rassertion(arole(hasChild), i447, i448).
rassertion(arole(hasChild), i446, i447).
rassertion(arole(hasChild), i445, i446).
rassertion(arole(hasChild), i444, i445).
rassertion(arole(hasChild), i443, i444).
rassertion(arole(hasChild), i442, i443).
rassertion(arole(hasChild), i441, i442).
rassertion(arole(hasChild), i440, i441).
rassertion(arole(hasChild), i439, i440).
rassertion(arole(hasChild), i438, i439).
rassertion(arole(hasChild), i437, i438).
rassertion(arole(hasChild), i436, i437).
rassertion(arole(hasChild), i435, i436).
rassertion(arole(hasChild), i434, i435).
rassertion(arole(hasChild), i433, i434).
rassertion(arole(hasChild), i432, i433).
rassertion(arole(hasChild), i431, i432).
rassertion(arole(hasChild), i430, i431).
rassertion(arole(hasChild), i429, i430).
rassertion(arole(hasChild), i428, i429).
rassertion(arole(hasChild), i427, i428).
rassertion(arole(hasChild), i426, i427).
rassertion(arole(hasChild), i425, i426).
rassertion(arole(hasChild), i424, i425).
rassertion(arole(hasChild), i423, i424).
rassertion(arole(hasChild), i422, i423).
rassertion(arole(hasChild), i421, i422).
rassertion(arole(hasChild), i420, i421).
rassertion(arole(hasChild), i419, i420).
rassertion(arole(hasChild), i418, i419).
rassertion(arole(hasChild), i417, i418).
rassertion(arole(hasChild), i416, i417).
rassertion(arole(hasChild), i415, i416).
rassertion(arole(hasChild), i414, i415).
rassertion(arole(hasChild), i413, i414).
rassertion(arole(hasChild), i412, i413).
rassertion(arole(hasChild), i411, i412).
rassertion(arole(hasChild), i410, i411).
rassertion(arole(hasChild), i409, i410).
rassertion(arole(hasChild), i408, i409).
rassertion(arole(hasChild), i407, i408).
rassertion(arole(hasChild), i406, i407).
rassertion(arole(hasChild), i405, i406).
rassertion(arole(hasChild), i404, i405).
rassertion(arole(hasChild), i403, i404).
rassertion(arole(hasChild), i402, i403).
rassertion(arole(hasChild), i401, i402).
rassertion(arole(hasChild), i400, i401).
rassertion(arole(hasChild), i399, i400).
rassertion(arole(hasChild), i398, i399).
rassertion(arole(hasChild), i397, i398).
rassertion(arole(hasChild), i396, i397).
rassertion(arole(hasChild), i395, i396).
rassertion(arole(hasChild), i394, i395).
rassertion(arole(hasChild), i393, i394).
rassertion(arole(hasChild), i392, i393).
rassertion(arole(hasChild), i391, i392).
rassertion(arole(hasChild), i390, i391).
rassertion(arole(hasChild), i389, i390).
rassertion(arole(hasChild), i388, i389).
rassertion(arole(hasChild), i387, i388).
rassertion(arole(hasChild), i386, i387).
rassertion(arole(hasChild), i385, i386).
rassertion(arole(hasChild), i384, i385).
rassertion(arole(hasChild), i383, i384).
rassertion(arole(hasChild), i382, i383).
rassertion(arole(hasChild), i381, i382).
rassertion(arole(hasChild), i380, i381).
rassertion(arole(hasChild), i379, i380).
rassertion(arole(hasChild), i378, i379).
rassertion(arole(hasChild), i377, i378).
rassertion(arole(hasChild), i376, i377).
rassertion(arole(hasChild), i375, i376).
rassertion(arole(hasChild), i374, i375).
rassertion(arole(hasChild), i373, i374).
rassertion(arole(hasChild), i372, i373).
rassertion(arole(hasChild), i371, i372).
rassertion(arole(hasChild), i370, i371).
rassertion(arole(hasChild), i369, i370).
rassertion(arole(hasChild), i368, i369).
rassertion(arole(hasChild), i367, i368).
rassertion(arole(hasChild), i366, i367).
rassertion(arole(hasChild), i365, i366).
rassertion(arole(hasChild), i364, i365).
rassertion(arole(hasChild), i363, i364).
rassertion(arole(hasChild), i362, i363).
rassertion(arole(hasChild), i361, i362).
rassertion(arole(hasChild), i360, i361).
rassertion(arole(hasChild), i359, i360).
rassertion(arole(hasChild), i358, i359).
rassertion(arole(hasChild), i357, i358).
rassertion(arole(hasChild), i356, i357).
rassertion(arole(hasChild), i355, i356).
rassertion(arole(hasChild), i354, i355).
rassertion(arole(hasChild), i353, i354).
rassertion(arole(hasChild), i352, i353).
rassertion(arole(hasChild), i351, i352).
rassertion(arole(hasChild), i350, i351).
rassertion(arole(hasChild), i349, i350).
rassertion(arole(hasChild), i348, i349).
rassertion(arole(hasChild), i347, i348).
rassertion(arole(hasChild), i346, i347).
rassertion(arole(hasChild), i345, i346).
rassertion(arole(hasChild), i344, i345).
rassertion(arole(hasChild), i343, i344).
rassertion(arole(hasChild), i342, i343).
rassertion(arole(hasChild), i341, i342).
rassertion(arole(hasChild), i340, i341).
rassertion(arole(hasChild), i339, i340).
rassertion(arole(hasChild), i338, i339).
rassertion(arole(hasChild), i337, i338).
rassertion(arole(hasChild), i336, i337).
rassertion(arole(hasChild), i335, i336).
rassertion(arole(hasChild), i334, i335).
rassertion(arole(hasChild), i333, i334).
rassertion(arole(hasChild), i332, i333).
rassertion(arole(hasChild), i331, i332).
rassertion(arole(hasChild), i330, i331).
rassertion(arole(hasChild), i329, i330).
rassertion(arole(hasChild), i328, i329).
rassertion(arole(hasChild), i327, i328).
rassertion(arole(hasChild), i326, i327).
rassertion(arole(hasChild), i325, i326).
rassertion(arole(hasChild), i324, i325).
rassertion(arole(hasChild), i323, i324).
rassertion(arole(hasChild), i322, i323).
rassertion(arole(hasChild), i321, i322).
rassertion(arole(hasChild), i320, i321).
rassertion(arole(hasChild), i319, i320).
rassertion(arole(hasChild), i318, i319).
rassertion(arole(hasChild), i317, i318).
rassertion(arole(hasChild), i316, i317).
rassertion(arole(hasChild), i315, i316).
rassertion(arole(hasChild), i314, i315).
rassertion(arole(hasChild), i313, i314).
rassertion(arole(hasChild), i312, i313).
rassertion(arole(hasChild), i311, i312).
rassertion(arole(hasChild), i310, i311).
rassertion(arole(hasChild), i309, i310).
rassertion(arole(hasChild), i308, i309).
rassertion(arole(hasChild), i307, i308).
rassertion(arole(hasChild), i306, i307).
rassertion(arole(hasChild), i305, i306).
rassertion(arole(hasChild), i304, i305).
rassertion(arole(hasChild), i303, i304).
rassertion(arole(hasChild), i302, i303).
rassertion(arole(hasChild), i301, i302).
rassertion(arole(hasChild), i300, i301).
rassertion(arole(hasChild), i299, i300).
rassertion(arole(hasChild), i298, i299).
rassertion(arole(hasChild), i297, i298).
rassertion(arole(hasChild), i296, i297).
rassertion(arole(hasChild), i295, i296).
rassertion(arole(hasChild), i294, i295).
rassertion(arole(hasChild), i293, i294).
rassertion(arole(hasChild), i292, i293).
rassertion(arole(hasChild), i291, i292).
rassertion(arole(hasChild), i290, i291).
rassertion(arole(hasChild), i289, i290).
rassertion(arole(hasChild), i288, i289).
rassertion(arole(hasChild), i287, i288).
rassertion(arole(hasChild), i286, i287).
rassertion(arole(hasChild), i285, i286).
rassertion(arole(hasChild), i284, i285).
rassertion(arole(hasChild), i283, i284).
rassertion(arole(hasChild), i282, i283).
rassertion(arole(hasChild), i281, i282).
rassertion(arole(hasChild), i280, i281).
rassertion(arole(hasChild), i279, i280).
rassertion(arole(hasChild), i278, i279).
rassertion(arole(hasChild), i277, i278).
rassertion(arole(hasChild), i276, i277).
rassertion(arole(hasChild), i275, i276).
rassertion(arole(hasChild), i274, i275).
rassertion(arole(hasChild), i273, i274).
rassertion(arole(hasChild), i272, i273).
rassertion(arole(hasChild), i271, i272).
rassertion(arole(hasChild), i270, i271).
rassertion(arole(hasChild), i269, i270).
rassertion(arole(hasChild), i268, i269).
rassertion(arole(hasChild), i267, i268).
rassertion(arole(hasChild), i266, i267).
rassertion(arole(hasChild), i265, i266).
rassertion(arole(hasChild), i264, i265).
rassertion(arole(hasChild), i263, i264).
rassertion(arole(hasChild), i262, i263).
rassertion(arole(hasChild), i261, i262).
rassertion(arole(hasChild), i260, i261).
rassertion(arole(hasChild), i259, i260).
rassertion(arole(hasChild), i258, i259).
rassertion(arole(hasChild), i257, i258).
rassertion(arole(hasChild), i256, i257).
rassertion(arole(hasChild), i255, i256).
rassertion(arole(hasChild), i254, i255).
rassertion(arole(hasChild), i253, i254).
rassertion(arole(hasChild), i252, i253).
rassertion(arole(hasChild), i251, i252).
rassertion(arole(hasChild), i250, i251).
rassertion(arole(hasChild), i249, i250).
rassertion(arole(hasChild), i248, i249).
rassertion(arole(hasChild), i247, i248).
rassertion(arole(hasChild), i246, i247).
rassertion(arole(hasChild), i245, i246).
rassertion(arole(hasChild), i244, i245).
rassertion(arole(hasChild), i243, i244).
rassertion(arole(hasChild), i242, i243).
rassertion(arole(hasChild), i241, i242).
rassertion(arole(hasChild), i240, i241).
rassertion(arole(hasChild), i239, i240).
rassertion(arole(hasChild), i238, i239).
rassertion(arole(hasChild), i237, i238).
rassertion(arole(hasChild), i236, i237).
rassertion(arole(hasChild), i235, i236).
rassertion(arole(hasChild), i234, i235).
rassertion(arole(hasChild), i233, i234).
rassertion(arole(hasChild), i232, i233).
rassertion(arole(hasChild), i231, i232).
rassertion(arole(hasChild), i230, i231).
rassertion(arole(hasChild), i229, i230).
rassertion(arole(hasChild), i228, i229).
rassertion(arole(hasChild), i227, i228).
rassertion(arole(hasChild), i226, i227).
rassertion(arole(hasChild), i225, i226).
rassertion(arole(hasChild), i224, i225).
rassertion(arole(hasChild), i223, i224).
rassertion(arole(hasChild), i222, i223).
rassertion(arole(hasChild), i221, i222).
rassertion(arole(hasChild), i220, i221).
rassertion(arole(hasChild), i219, i220).
rassertion(arole(hasChild), i218, i219).
rassertion(arole(hasChild), i217, i218).
rassertion(arole(hasChild), i216, i217).
rassertion(arole(hasChild), i215, i216).
rassertion(arole(hasChild), i214, i215).
rassertion(arole(hasChild), i213, i214).
rassertion(arole(hasChild), i212, i213).
rassertion(arole(hasChild), i211, i212).
rassertion(arole(hasChild), i210, i211).
rassertion(arole(hasChild), i209, i210).
rassertion(arole(hasChild), i208, i209).
rassertion(arole(hasChild), i207, i208).
rassertion(arole(hasChild), i206, i207).
rassertion(arole(hasChild), i205, i206).
rassertion(arole(hasChild), i204, i205).
rassertion(arole(hasChild), i203, i204).
rassertion(arole(hasChild), i202, i203).
rassertion(arole(hasChild), i201, i202).
rassertion(arole(hasChild), i200, i201).
rassertion(arole(hasChild), i199, i200).
rassertion(arole(hasChild), i198, i199).
rassertion(arole(hasChild), i197, i198).
rassertion(arole(hasChild), i196, i197).
rassertion(arole(hasChild), i195, i196).
rassertion(arole(hasChild), i194, i195).
rassertion(arole(hasChild), i193, i194).
rassertion(arole(hasChild), i192, i193).
rassertion(arole(hasChild), i191, i192).
rassertion(arole(hasChild), i190, i191).
rassertion(arole(hasChild), i189, i190).
rassertion(arole(hasChild), i188, i189).
rassertion(arole(hasChild), i187, i188).
rassertion(arole(hasChild), i186, i187).
rassertion(arole(hasChild), i185, i186).
rassertion(arole(hasChild), i184, i185).
rassertion(arole(hasChild), i183, i184).
rassertion(arole(hasChild), i182, i183).
rassertion(arole(hasChild), i181, i182).
rassertion(arole(hasChild), i180, i181).
rassertion(arole(hasChild), i179, i180).
rassertion(arole(hasChild), i178, i179).
rassertion(arole(hasChild), i177, i178).
rassertion(arole(hasChild), i176, i177).
rassertion(arole(hasChild), i175, i176).
rassertion(arole(hasChild), i174, i175).
rassertion(arole(hasChild), i173, i174).
rassertion(arole(hasChild), i172, i173).
rassertion(arole(hasChild), i171, i172).
rassertion(arole(hasChild), i170, i171).
rassertion(arole(hasChild), i169, i170).
rassertion(arole(hasChild), i168, i169).
rassertion(arole(hasChild), i167, i168).
rassertion(arole(hasChild), i166, i167).
rassertion(arole(hasChild), i165, i166).
rassertion(arole(hasChild), i164, i165).
rassertion(arole(hasChild), i163, i164).
rassertion(arole(hasChild), i162, i163).
rassertion(arole(hasChild), i161, i162).
rassertion(arole(hasChild), i160, i161).
rassertion(arole(hasChild), i159, i160).
rassertion(arole(hasChild), i158, i159).
rassertion(arole(hasChild), i157, i158).
rassertion(arole(hasChild), i156, i157).
rassertion(arole(hasChild), i155, i156).
rassertion(arole(hasChild), i154, i155).
rassertion(arole(hasChild), i153, i154).
rassertion(arole(hasChild), i152, i153).
rassertion(arole(hasChild), i151, i152).
rassertion(arole(hasChild), i150, i151).
rassertion(arole(hasChild), i149, i150).
rassertion(arole(hasChild), i148, i149).
rassertion(arole(hasChild), i147, i148).
rassertion(arole(hasChild), i146, i147).
rassertion(arole(hasChild), i145, i146).
rassertion(arole(hasChild), i144, i145).
rassertion(arole(hasChild), i143, i144).
rassertion(arole(hasChild), i142, i143).
rassertion(arole(hasChild), i141, i142).
rassertion(arole(hasChild), i140, i141).
rassertion(arole(hasChild), i139, i140).
rassertion(arole(hasChild), i138, i139).
rassertion(arole(hasChild), i137, i138).
rassertion(arole(hasChild), i136, i137).
rassertion(arole(hasChild), i135, i136).
rassertion(arole(hasChild), i134, i135).
rassertion(arole(hasChild), i133, i134).
rassertion(arole(hasChild), i132, i133).
rassertion(arole(hasChild), i131, i132).
rassertion(arole(hasChild), i130, i131).
rassertion(arole(hasChild), i129, i130).
rassertion(arole(hasChild), i128, i129).
rassertion(arole(hasChild), i127, i128).
rassertion(arole(hasChild), i126, i127).
rassertion(arole(hasChild), i125, i126).
rassertion(arole(hasChild), i124, i125).
rassertion(arole(hasChild), i123, i124).
rassertion(arole(hasChild), i122, i123).
rassertion(arole(hasChild), i121, i122).
rassertion(arole(hasChild), i120, i121).
rassertion(arole(hasChild), i119, i120).
rassertion(arole(hasChild), i118, i119).
rassertion(arole(hasChild), i117, i118).
rassertion(arole(hasChild), i116, i117).
rassertion(arole(hasChild), i115, i116).
rassertion(arole(hasChild), i114, i115).
rassertion(arole(hasChild), i113, i114).
rassertion(arole(hasChild), i112, i113).
rassertion(arole(hasChild), i111, i112).
rassertion(arole(hasChild), i110, i111).
rassertion(arole(hasChild), i109, i110).
rassertion(arole(hasChild), i108, i109).
rassertion(arole(hasChild), i107, i108).
rassertion(arole(hasChild), i106, i107).
rassertion(arole(hasChild), i105, i106).
rassertion(arole(hasChild), i104, i105).
rassertion(arole(hasChild), i103, i104).
rassertion(arole(hasChild), i102, i103).
rassertion(arole(hasChild), i101, i102).
rassertion(arole(hasChild), i100, i101).
rassertion(arole(hasChild), i99, i100).
rassertion(arole(hasChild), i98, i99).
rassertion(arole(hasChild), i97, i98).
rassertion(arole(hasChild), i96, i97).
rassertion(arole(hasChild), i95, i96).
rassertion(arole(hasChild), i94, i95).
rassertion(arole(hasChild), i93, i94).
rassertion(arole(hasChild), i92, i93).
rassertion(arole(hasChild), i91, i92).
rassertion(arole(hasChild), i90, i91).
rassertion(arole(hasChild), i89, i90).
rassertion(arole(hasChild), i88, i89).
rassertion(arole(hasChild), i87, i88).
rassertion(arole(hasChild), i86, i87).
rassertion(arole(hasChild), i85, i86).
rassertion(arole(hasChild), i84, i85).
rassertion(arole(hasChild), i83, i84).
rassertion(arole(hasChild), i82, i83).
rassertion(arole(hasChild), i81, i82).
rassertion(arole(hasChild), i80, i81).
rassertion(arole(hasChild), i79, i80).
rassertion(arole(hasChild), i78, i79).
rassertion(arole(hasChild), i77, i78).
rassertion(arole(hasChild), i76, i77).
rassertion(arole(hasChild), i75, i76).
rassertion(arole(hasChild), i74, i75).
rassertion(arole(hasChild), i73, i74).
rassertion(arole(hasChild), i72, i73).
rassertion(arole(hasChild), i71, i72).
rassertion(arole(hasChild), i70, i71).
rassertion(arole(hasChild), i69, i70).
rassertion(arole(hasChild), i68, i69).
rassertion(arole(hasChild), i67, i68).
rassertion(arole(hasChild), i66, i67).
rassertion(arole(hasChild), i65, i66).
rassertion(arole(hasChild), i64, i65).
rassertion(arole(hasChild), i63, i64).
rassertion(arole(hasChild), i62, i63).
rassertion(arole(hasChild), i61, i62).
rassertion(arole(hasChild), i60, i61).
rassertion(arole(hasChild), i59, i60).
rassertion(arole(hasChild), i58, i59).
rassertion(arole(hasChild), i57, i58).
rassertion(arole(hasChild), i56, i57).
rassertion(arole(hasChild), i55, i56).
rassertion(arole(hasChild), i54, i55).
rassertion(arole(hasChild), i53, i54).
rassertion(arole(hasChild), i52, i53).
rassertion(arole(hasChild), i51, i52).
rassertion(arole(hasChild), i50, i51).
rassertion(arole(hasChild), i49, i50).
rassertion(arole(hasChild), i48, i49).
rassertion(arole(hasChild), i47, i48).
rassertion(arole(hasChild), i46, i47).
rassertion(arole(hasChild), i45, i46).
rassertion(arole(hasChild), i44, i45).
rassertion(arole(hasChild), i43, i44).
rassertion(arole(hasChild), i42, i43).
rassertion(arole(hasChild), i41, i42).
rassertion(arole(hasChild), i40, i41).
rassertion(arole(hasChild), i39, i40).
rassertion(arole(hasChild), i38, i39).
rassertion(arole(hasChild), i37, i38).
rassertion(arole(hasChild), i36, i37).
rassertion(arole(hasChild), i35, i36).
rassertion(arole(hasChild), i34, i35).
rassertion(arole(hasChild), i33, i34).
rassertion(arole(hasChild), i32, i33).
rassertion(arole(hasChild), i31, i32).
rassertion(arole(hasChild), i30, i31).
rassertion(arole(hasChild), i29, i30).
rassertion(arole(hasChild), i28, i29).
rassertion(arole(hasChild), i27, i28).
rassertion(arole(hasChild), i26, i27).
rassertion(arole(hasChild), i25, i26).
rassertion(arole(hasChild), i24, i25).
rassertion(arole(hasChild), i23, i24).
rassertion(arole(hasChild), i22, i23).
rassertion(arole(hasChild), i21, i22).
rassertion(arole(hasChild), i20, i21).
rassertion(arole(hasChild), i19, i20).
rassertion(arole(hasChild), i18, i19).
rassertion(arole(hasChild), i17, i18).
rassertion(arole(hasChild), i16, i17).
rassertion(arole(hasChild), i15, i16).
rassertion(arole(hasChild), i14, i15).
rassertion(arole(hasChild), i13, i14).
rassertion(arole(hasChild), i12, i13).
rassertion(arole(hasChild), i11, i12).
rassertion(arole(hasChild), i10, i11).
rassertion(arole(hasChild), i9, i10).
rassertion(arole(hasChild), i8, i9).
rassertion(arole(hasChild), i7, i8).
rassertion(arole(hasChild), i6, i7).
rassertion(arole(hasChild), i5, i6).
rassertion(arole(hasChild), i4, i5).
rassertion(arole(hasChild), i3, i4).
rassertion(arole(hasChild), i2, i3).
rassertion(arole(hasChild), i1, i1001).
rassertion(arole(hasChild), i1, i1000).
rassertion(arole(hasChild), i1, i999).
rassertion(arole(hasChild), i1, i998).
rassertion(arole(hasChild), i1, i997).
rassertion(arole(hasChild), i1, i996).
rassertion(arole(hasChild), i1, i995).
rassertion(arole(hasChild), i1, i994).
rassertion(arole(hasChild), i1, i993).
rassertion(arole(hasChild), i1, i992).
rassertion(arole(hasChild), i1, i991).
rassertion(arole(hasChild), i1, i990).
rassertion(arole(hasChild), i1, i989).
rassertion(arole(hasChild), i1, i988).
rassertion(arole(hasChild), i1, i987).
rassertion(arole(hasChild), i1, i986).
rassertion(arole(hasChild), i1, i985).
rassertion(arole(hasChild), i1, i984).
rassertion(arole(hasChild), i1, i983).
rassertion(arole(hasChild), i1, i982).
rassertion(arole(hasChild), i1, i981).
rassertion(arole(hasChild), i1, i980).
rassertion(arole(hasChild), i1, i979).
rassertion(arole(hasChild), i1, i978).
rassertion(arole(hasChild), i1, i977).
rassertion(arole(hasChild), i1, i976).
rassertion(arole(hasChild), i1, i975).
rassertion(arole(hasChild), i1, i974).
rassertion(arole(hasChild), i1, i973).
rassertion(arole(hasChild), i1, i972).
rassertion(arole(hasChild), i1, i971).
rassertion(arole(hasChild), i1, i970).
rassertion(arole(hasChild), i1, i969).
rassertion(arole(hasChild), i1, i968).
rassertion(arole(hasChild), i1, i967).
rassertion(arole(hasChild), i1, i966).
rassertion(arole(hasChild), i1, i965).
rassertion(arole(hasChild), i1, i964).
rassertion(arole(hasChild), i1, i963).
rassertion(arole(hasChild), i1, i962).
rassertion(arole(hasChild), i1, i961).
rassertion(arole(hasChild), i1, i960).
rassertion(arole(hasChild), i1, i959).
rassertion(arole(hasChild), i1, i958).
rassertion(arole(hasChild), i1, i957).
rassertion(arole(hasChild), i1, i956).
rassertion(arole(hasChild), i1, i955).
rassertion(arole(hasChild), i1, i954).
rassertion(arole(hasChild), i1, i953).
rassertion(arole(hasChild), i1, i952).
rassertion(arole(hasChild), i1, i951).
rassertion(arole(hasChild), i1, i950).
rassertion(arole(hasChild), i1, i949).
rassertion(arole(hasChild), i1, i948).
rassertion(arole(hasChild), i1, i947).
rassertion(arole(hasChild), i1, i946).
rassertion(arole(hasChild), i1, i945).
rassertion(arole(hasChild), i1, i944).
rassertion(arole(hasChild), i1, i943).
rassertion(arole(hasChild), i1, i942).
rassertion(arole(hasChild), i1, i941).
rassertion(arole(hasChild), i1, i940).
rassertion(arole(hasChild), i1, i939).
rassertion(arole(hasChild), i1, i938).
rassertion(arole(hasChild), i1, i937).
rassertion(arole(hasChild), i1, i936).
rassertion(arole(hasChild), i1, i935).
rassertion(arole(hasChild), i1, i934).
rassertion(arole(hasChild), i1, i933).
rassertion(arole(hasChild), i1, i932).
rassertion(arole(hasChild), i1, i931).
rassertion(arole(hasChild), i1, i930).
rassertion(arole(hasChild), i1, i929).
rassertion(arole(hasChild), i1, i928).
rassertion(arole(hasChild), i1, i927).
rassertion(arole(hasChild), i1, i926).
rassertion(arole(hasChild), i1, i925).
rassertion(arole(hasChild), i1, i924).
rassertion(arole(hasChild), i1, i923).
rassertion(arole(hasChild), i1, i922).
rassertion(arole(hasChild), i1, i921).
rassertion(arole(hasChild), i1, i920).
rassertion(arole(hasChild), i1, i919).
rassertion(arole(hasChild), i1, i918).
rassertion(arole(hasChild), i1, i917).
rassertion(arole(hasChild), i1, i916).
rassertion(arole(hasChild), i1, i915).
rassertion(arole(hasChild), i1, i914).
rassertion(arole(hasChild), i1, i913).
rassertion(arole(hasChild), i1, i912).
rassertion(arole(hasChild), i1, i911).
rassertion(arole(hasChild), i1, i910).
rassertion(arole(hasChild), i1, i909).
rassertion(arole(hasChild), i1, i908).
rassertion(arole(hasChild), i1, i907).
rassertion(arole(hasChild), i1, i906).
rassertion(arole(hasChild), i1, i905).
rassertion(arole(hasChild), i1, i904).
rassertion(arole(hasChild), i1, i903).
rassertion(arole(hasChild), i1, i902).
rassertion(arole(hasChild), i1, i901).
rassertion(arole(hasChild), i1, i900).
rassertion(arole(hasChild), i1, i899).
rassertion(arole(hasChild), i1, i898).
rassertion(arole(hasChild), i1, i897).
rassertion(arole(hasChild), i1, i896).
rassertion(arole(hasChild), i1, i895).
rassertion(arole(hasChild), i1, i894).
rassertion(arole(hasChild), i1, i893).
rassertion(arole(hasChild), i1, i892).
rassertion(arole(hasChild), i1, i891).
rassertion(arole(hasChild), i1, i890).
rassertion(arole(hasChild), i1, i889).
rassertion(arole(hasChild), i1, i888).
rassertion(arole(hasChild), i1, i887).
rassertion(arole(hasChild), i1, i886).
rassertion(arole(hasChild), i1, i885).
rassertion(arole(hasChild), i1, i884).
rassertion(arole(hasChild), i1, i883).
rassertion(arole(hasChild), i1, i882).
rassertion(arole(hasChild), i1, i881).
rassertion(arole(hasChild), i1, i880).
rassertion(arole(hasChild), i1, i879).
rassertion(arole(hasChild), i1, i878).
rassertion(arole(hasChild), i1, i877).
rassertion(arole(hasChild), i1, i876).
rassertion(arole(hasChild), i1, i875).
rassertion(arole(hasChild), i1, i874).
rassertion(arole(hasChild), i1, i873).
rassertion(arole(hasChild), i1, i872).
rassertion(arole(hasChild), i1, i871).
rassertion(arole(hasChild), i1, i870).
rassertion(arole(hasChild), i1, i869).
rassertion(arole(hasChild), i1, i868).
rassertion(arole(hasChild), i1, i867).
rassertion(arole(hasChild), i1, i866).
rassertion(arole(hasChild), i1, i865).
rassertion(arole(hasChild), i1, i864).
rassertion(arole(hasChild), i1, i863).
rassertion(arole(hasChild), i1, i862).
rassertion(arole(hasChild), i1, i861).
rassertion(arole(hasChild), i1, i860).
rassertion(arole(hasChild), i1, i859).
rassertion(arole(hasChild), i1, i858).
rassertion(arole(hasChild), i1, i857).
rassertion(arole(hasChild), i1, i856).
rassertion(arole(hasChild), i1, i855).
rassertion(arole(hasChild), i1, i854).
rassertion(arole(hasChild), i1, i853).
rassertion(arole(hasChild), i1, i852).
rassertion(arole(hasChild), i1, i851).
rassertion(arole(hasChild), i1, i850).
rassertion(arole(hasChild), i1, i849).
rassertion(arole(hasChild), i1, i848).
rassertion(arole(hasChild), i1, i847).
rassertion(arole(hasChild), i1, i846).
rassertion(arole(hasChild), i1, i845).
rassertion(arole(hasChild), i1, i844).
rassertion(arole(hasChild), i1, i843).
rassertion(arole(hasChild), i1, i842).
rassertion(arole(hasChild), i1, i841).
rassertion(arole(hasChild), i1, i840).
rassertion(arole(hasChild), i1, i839).
rassertion(arole(hasChild), i1, i838).
rassertion(arole(hasChild), i1, i837).
rassertion(arole(hasChild), i1, i836).
rassertion(arole(hasChild), i1, i835).
rassertion(arole(hasChild), i1, i834).
rassertion(arole(hasChild), i1, i833).
rassertion(arole(hasChild), i1, i832).
rassertion(arole(hasChild), i1, i831).
rassertion(arole(hasChild), i1, i830).
rassertion(arole(hasChild), i1, i829).
rassertion(arole(hasChild), i1, i828).
rassertion(arole(hasChild), i1, i827).
rassertion(arole(hasChild), i1, i826).
rassertion(arole(hasChild), i1, i825).
rassertion(arole(hasChild), i1, i824).
rassertion(arole(hasChild), i1, i823).
rassertion(arole(hasChild), i1, i822).
rassertion(arole(hasChild), i1, i821).
rassertion(arole(hasChild), i1, i820).
rassertion(arole(hasChild), i1, i819).
rassertion(arole(hasChild), i1, i818).
rassertion(arole(hasChild), i1, i817).
rassertion(arole(hasChild), i1, i816).
rassertion(arole(hasChild), i1, i815).
rassertion(arole(hasChild), i1, i814).
rassertion(arole(hasChild), i1, i813).
rassertion(arole(hasChild), i1, i812).
rassertion(arole(hasChild), i1, i811).
rassertion(arole(hasChild), i1, i810).
rassertion(arole(hasChild), i1, i809).
rassertion(arole(hasChild), i1, i808).
rassertion(arole(hasChild), i1, i807).
rassertion(arole(hasChild), i1, i806).
rassertion(arole(hasChild), i1, i805).
rassertion(arole(hasChild), i1, i804).
rassertion(arole(hasChild), i1, i803).
rassertion(arole(hasChild), i1, i802).
rassertion(arole(hasChild), i1, i801).
rassertion(arole(hasChild), i1, i800).
rassertion(arole(hasChild), i1, i799).
rassertion(arole(hasChild), i1, i798).
rassertion(arole(hasChild), i1, i797).
rassertion(arole(hasChild), i1, i796).
rassertion(arole(hasChild), i1, i795).
rassertion(arole(hasChild), i1, i794).
rassertion(arole(hasChild), i1, i793).
rassertion(arole(hasChild), i1, i792).
rassertion(arole(hasChild), i1, i791).
rassertion(arole(hasChild), i1, i790).
rassertion(arole(hasChild), i1, i789).
rassertion(arole(hasChild), i1, i788).
rassertion(arole(hasChild), i1, i787).
rassertion(arole(hasChild), i1, i786).
rassertion(arole(hasChild), i1, i785).
rassertion(arole(hasChild), i1, i784).
rassertion(arole(hasChild), i1, i783).
rassertion(arole(hasChild), i1, i782).
rassertion(arole(hasChild), i1, i781).
rassertion(arole(hasChild), i1, i780).
rassertion(arole(hasChild), i1, i779).
rassertion(arole(hasChild), i1, i778).
rassertion(arole(hasChild), i1, i777).
rassertion(arole(hasChild), i1, i776).
rassertion(arole(hasChild), i1, i775).
rassertion(arole(hasChild), i1, i774).
rassertion(arole(hasChild), i1, i773).
rassertion(arole(hasChild), i1, i772).
rassertion(arole(hasChild), i1, i771).
rassertion(arole(hasChild), i1, i770).
rassertion(arole(hasChild), i1, i769).
rassertion(arole(hasChild), i1, i768).
rassertion(arole(hasChild), i1, i767).
rassertion(arole(hasChild), i1, i766).
rassertion(arole(hasChild), i1, i765).
rassertion(arole(hasChild), i1, i764).
rassertion(arole(hasChild), i1, i763).
rassertion(arole(hasChild), i1, i762).
rassertion(arole(hasChild), i1, i761).
rassertion(arole(hasChild), i1, i760).
rassertion(arole(hasChild), i1, i759).
rassertion(arole(hasChild), i1, i758).
rassertion(arole(hasChild), i1, i757).
rassertion(arole(hasChild), i1, i756).
rassertion(arole(hasChild), i1, i755).
rassertion(arole(hasChild), i1, i754).
rassertion(arole(hasChild), i1, i753).
rassertion(arole(hasChild), i1, i752).
rassertion(arole(hasChild), i1, i751).
rassertion(arole(hasChild), i1, i750).
rassertion(arole(hasChild), i1, i749).
rassertion(arole(hasChild), i1, i748).
rassertion(arole(hasChild), i1, i747).
rassertion(arole(hasChild), i1, i746).
rassertion(arole(hasChild), i1, i745).
rassertion(arole(hasChild), i1, i744).
rassertion(arole(hasChild), i1, i743).
rassertion(arole(hasChild), i1, i742).
rassertion(arole(hasChild), i1, i741).
rassertion(arole(hasChild), i1, i740).
rassertion(arole(hasChild), i1, i739).
rassertion(arole(hasChild), i1, i738).
rassertion(arole(hasChild), i1, i737).
rassertion(arole(hasChild), i1, i736).
rassertion(arole(hasChild), i1, i735).
rassertion(arole(hasChild), i1, i734).
rassertion(arole(hasChild), i1, i733).
rassertion(arole(hasChild), i1, i732).
rassertion(arole(hasChild), i1, i731).
rassertion(arole(hasChild), i1, i730).
rassertion(arole(hasChild), i1, i729).
rassertion(arole(hasChild), i1, i728).
rassertion(arole(hasChild), i1, i727).
rassertion(arole(hasChild), i1, i726).
rassertion(arole(hasChild), i1, i725).
rassertion(arole(hasChild), i1, i724).
rassertion(arole(hasChild), i1, i723).
rassertion(arole(hasChild), i1, i722).
rassertion(arole(hasChild), i1, i721).
rassertion(arole(hasChild), i1, i720).
rassertion(arole(hasChild), i1, i719).
rassertion(arole(hasChild), i1, i718).
rassertion(arole(hasChild), i1, i717).
rassertion(arole(hasChild), i1, i716).
rassertion(arole(hasChild), i1, i715).
rassertion(arole(hasChild), i1, i714).
rassertion(arole(hasChild), i1, i713).
rassertion(arole(hasChild), i1, i712).
rassertion(arole(hasChild), i1, i711).
rassertion(arole(hasChild), i1, i710).
rassertion(arole(hasChild), i1, i709).
rassertion(arole(hasChild), i1, i708).
rassertion(arole(hasChild), i1, i707).
rassertion(arole(hasChild), i1, i706).
rassertion(arole(hasChild), i1, i705).
rassertion(arole(hasChild), i1, i704).
rassertion(arole(hasChild), i1, i703).
rassertion(arole(hasChild), i1, i702).
rassertion(arole(hasChild), i1, i701).
rassertion(arole(hasChild), i1, i700).
rassertion(arole(hasChild), i1, i699).
rassertion(arole(hasChild), i1, i698).
rassertion(arole(hasChild), i1, i697).
rassertion(arole(hasChild), i1, i696).
rassertion(arole(hasChild), i1, i695).
rassertion(arole(hasChild), i1, i694).
rassertion(arole(hasChild), i1, i693).
rassertion(arole(hasChild), i1, i692).
rassertion(arole(hasChild), i1, i691).
rassertion(arole(hasChild), i1, i690).
rassertion(arole(hasChild), i1, i689).
rassertion(arole(hasChild), i1, i688).
rassertion(arole(hasChild), i1, i687).
rassertion(arole(hasChild), i1, i686).
rassertion(arole(hasChild), i1, i685).
rassertion(arole(hasChild), i1, i684).
rassertion(arole(hasChild), i1, i683).
rassertion(arole(hasChild), i1, i682).
rassertion(arole(hasChild), i1, i681).
rassertion(arole(hasChild), i1, i680).
rassertion(arole(hasChild), i1, i679).
rassertion(arole(hasChild), i1, i678).
rassertion(arole(hasChild), i1, i677).
rassertion(arole(hasChild), i1, i676).
rassertion(arole(hasChild), i1, i675).
rassertion(arole(hasChild), i1, i674).
rassertion(arole(hasChild), i1, i673).
rassertion(arole(hasChild), i1, i672).
rassertion(arole(hasChild), i1, i671).
rassertion(arole(hasChild), i1, i670).
rassertion(arole(hasChild), i1, i669).
rassertion(arole(hasChild), i1, i668).
rassertion(arole(hasChild), i1, i667).
rassertion(arole(hasChild), i1, i666).
rassertion(arole(hasChild), i1, i665).
rassertion(arole(hasChild), i1, i664).
rassertion(arole(hasChild), i1, i663).
rassertion(arole(hasChild), i1, i662).
rassertion(arole(hasChild), i1, i661).
rassertion(arole(hasChild), i1, i660).
rassertion(arole(hasChild), i1, i659).
rassertion(arole(hasChild), i1, i658).
rassertion(arole(hasChild), i1, i657).
rassertion(arole(hasChild), i1, i656).
rassertion(arole(hasChild), i1, i655).
rassertion(arole(hasChild), i1, i654).
rassertion(arole(hasChild), i1, i653).
rassertion(arole(hasChild), i1, i652).
rassertion(arole(hasChild), i1, i651).
rassertion(arole(hasChild), i1, i650).
rassertion(arole(hasChild), i1, i649).
rassertion(arole(hasChild), i1, i648).
rassertion(arole(hasChild), i1, i647).
rassertion(arole(hasChild), i1, i646).
rassertion(arole(hasChild), i1, i645).
rassertion(arole(hasChild), i1, i644).
rassertion(arole(hasChild), i1, i643).
rassertion(arole(hasChild), i1, i642).
rassertion(arole(hasChild), i1, i641).
rassertion(arole(hasChild), i1, i640).
rassertion(arole(hasChild), i1, i639).
rassertion(arole(hasChild), i1, i638).
rassertion(arole(hasChild), i1, i637).
rassertion(arole(hasChild), i1, i636).
rassertion(arole(hasChild), i1, i635).
rassertion(arole(hasChild), i1, i634).
rassertion(arole(hasChild), i1, i633).
rassertion(arole(hasChild), i1, i632).
rassertion(arole(hasChild), i1, i631).
rassertion(arole(hasChild), i1, i630).
rassertion(arole(hasChild), i1, i629).
rassertion(arole(hasChild), i1, i628).
rassertion(arole(hasChild), i1, i627).
rassertion(arole(hasChild), i1, i626).
rassertion(arole(hasChild), i1, i625).
rassertion(arole(hasChild), i1, i624).
rassertion(arole(hasChild), i1, i623).
rassertion(arole(hasChild), i1, i622).
rassertion(arole(hasChild), i1, i621).
rassertion(arole(hasChild), i1, i620).
rassertion(arole(hasChild), i1, i619).
rassertion(arole(hasChild), i1, i618).
rassertion(arole(hasChild), i1, i617).
rassertion(arole(hasChild), i1, i616).
rassertion(arole(hasChild), i1, i615).
rassertion(arole(hasChild), i1, i614).
rassertion(arole(hasChild), i1, i613).
rassertion(arole(hasChild), i1, i612).
rassertion(arole(hasChild), i1, i611).
rassertion(arole(hasChild), i1, i610).
rassertion(arole(hasChild), i1, i609).
rassertion(arole(hasChild), i1, i608).
rassertion(arole(hasChild), i1, i607).
rassertion(arole(hasChild), i1, i606).
rassertion(arole(hasChild), i1, i605).
rassertion(arole(hasChild), i1, i604).
rassertion(arole(hasChild), i1, i603).
rassertion(arole(hasChild), i1, i602).
rassertion(arole(hasChild), i1, i601).
rassertion(arole(hasChild), i1, i600).
rassertion(arole(hasChild), i1, i599).
rassertion(arole(hasChild), i1, i598).
rassertion(arole(hasChild), i1, i597).
rassertion(arole(hasChild), i1, i596).
rassertion(arole(hasChild), i1, i595).
rassertion(arole(hasChild), i1, i594).
rassertion(arole(hasChild), i1, i593).
rassertion(arole(hasChild), i1, i592).
rassertion(arole(hasChild), i1, i591).
rassertion(arole(hasChild), i1, i590).
rassertion(arole(hasChild), i1, i589).
rassertion(arole(hasChild), i1, i588).
rassertion(arole(hasChild), i1, i587).
rassertion(arole(hasChild), i1, i586).
rassertion(arole(hasChild), i1, i585).
rassertion(arole(hasChild), i1, i584).
rassertion(arole(hasChild), i1, i583).
rassertion(arole(hasChild), i1, i582).
rassertion(arole(hasChild), i1, i581).
rassertion(arole(hasChild), i1, i580).
rassertion(arole(hasChild), i1, i579).
rassertion(arole(hasChild), i1, i578).
rassertion(arole(hasChild), i1, i577).
rassertion(arole(hasChild), i1, i576).
rassertion(arole(hasChild), i1, i575).
rassertion(arole(hasChild), i1, i574).
rassertion(arole(hasChild), i1, i573).
rassertion(arole(hasChild), i1, i572).
rassertion(arole(hasChild), i1, i571).
rassertion(arole(hasChild), i1, i570).
rassertion(arole(hasChild), i1, i569).
rassertion(arole(hasChild), i1, i568).
rassertion(arole(hasChild), i1, i567).
rassertion(arole(hasChild), i1, i566).
rassertion(arole(hasChild), i1, i565).
rassertion(arole(hasChild), i1, i564).
rassertion(arole(hasChild), i1, i563).
rassertion(arole(hasChild), i1, i562).
rassertion(arole(hasChild), i1, i561).
rassertion(arole(hasChild), i1, i560).
rassertion(arole(hasChild), i1, i559).
rassertion(arole(hasChild), i1, i558).
rassertion(arole(hasChild), i1, i557).
rassertion(arole(hasChild), i1, i556).
rassertion(arole(hasChild), i1, i555).
rassertion(arole(hasChild), i1, i554).
rassertion(arole(hasChild), i1, i553).
rassertion(arole(hasChild), i1, i552).
rassertion(arole(hasChild), i1, i551).
rassertion(arole(hasChild), i1, i550).
rassertion(arole(hasChild), i1, i549).
rassertion(arole(hasChild), i1, i548).
rassertion(arole(hasChild), i1, i547).
rassertion(arole(hasChild), i1, i546).
rassertion(arole(hasChild), i1, i545).
rassertion(arole(hasChild), i1, i544).
rassertion(arole(hasChild), i1, i543).
rassertion(arole(hasChild), i1, i542).
rassertion(arole(hasChild), i1, i541).
rassertion(arole(hasChild), i1, i540).
rassertion(arole(hasChild), i1, i539).
rassertion(arole(hasChild), i1, i538).
rassertion(arole(hasChild), i1, i537).
rassertion(arole(hasChild), i1, i536).
rassertion(arole(hasChild), i1, i535).
rassertion(arole(hasChild), i1, i534).
rassertion(arole(hasChild), i1, i533).
rassertion(arole(hasChild), i1, i532).
rassertion(arole(hasChild), i1, i531).
rassertion(arole(hasChild), i1, i530).
rassertion(arole(hasChild), i1, i529).
rassertion(arole(hasChild), i1, i528).
rassertion(arole(hasChild), i1, i527).
rassertion(arole(hasChild), i1, i526).
rassertion(arole(hasChild), i1, i525).
rassertion(arole(hasChild), i1, i524).
rassertion(arole(hasChild), i1, i523).
rassertion(arole(hasChild), i1, i522).
rassertion(arole(hasChild), i1, i521).
rassertion(arole(hasChild), i1, i520).
rassertion(arole(hasChild), i1, i519).
rassertion(arole(hasChild), i1, i518).
rassertion(arole(hasChild), i1, i517).
rassertion(arole(hasChild), i1, i516).
rassertion(arole(hasChild), i1, i515).
rassertion(arole(hasChild), i1, i514).
rassertion(arole(hasChild), i1, i513).
rassertion(arole(hasChild), i1, i512).
rassertion(arole(hasChild), i1, i511).
rassertion(arole(hasChild), i1, i510).
rassertion(arole(hasChild), i1, i509).
rassertion(arole(hasChild), i1, i508).
rassertion(arole(hasChild), i1, i507).
rassertion(arole(hasChild), i1, i506).
rassertion(arole(hasChild), i1, i505).
rassertion(arole(hasChild), i1, i504).
rassertion(arole(hasChild), i1, i503).
rassertion(arole(hasChild), i1, i502).
rassertion(arole(hasChild), i1, i501).
rassertion(arole(hasChild), i1, i500).
rassertion(arole(hasChild), i1, i499).
rassertion(arole(hasChild), i1, i498).
rassertion(arole(hasChild), i1, i497).
rassertion(arole(hasChild), i1, i496).
rassertion(arole(hasChild), i1, i495).
rassertion(arole(hasChild), i1, i494).
rassertion(arole(hasChild), i1, i493).
rassertion(arole(hasChild), i1, i492).
rassertion(arole(hasChild), i1, i491).
rassertion(arole(hasChild), i1, i490).
rassertion(arole(hasChild), i1, i489).
rassertion(arole(hasChild), i1, i488).
rassertion(arole(hasChild), i1, i487).
rassertion(arole(hasChild), i1, i486).
rassertion(arole(hasChild), i1, i485).
rassertion(arole(hasChild), i1, i484).
rassertion(arole(hasChild), i1, i483).
rassertion(arole(hasChild), i1, i482).
rassertion(arole(hasChild), i1, i481).
rassertion(arole(hasChild), i1, i480).
rassertion(arole(hasChild), i1, i479).
rassertion(arole(hasChild), i1, i478).
rassertion(arole(hasChild), i1, i477).
rassertion(arole(hasChild), i1, i476).
rassertion(arole(hasChild), i1, i475).
rassertion(arole(hasChild), i1, i474).
rassertion(arole(hasChild), i1, i473).
rassertion(arole(hasChild), i1, i472).
rassertion(arole(hasChild), i1, i471).
rassertion(arole(hasChild), i1, i470).
rassertion(arole(hasChild), i1, i469).
rassertion(arole(hasChild), i1, i468).
rassertion(arole(hasChild), i1, i467).
rassertion(arole(hasChild), i1, i466).
rassertion(arole(hasChild), i1, i465).
rassertion(arole(hasChild), i1, i464).
rassertion(arole(hasChild), i1, i463).
rassertion(arole(hasChild), i1, i462).
rassertion(arole(hasChild), i1, i461).
rassertion(arole(hasChild), i1, i460).
rassertion(arole(hasChild), i1, i459).
rassertion(arole(hasChild), i1, i458).
rassertion(arole(hasChild), i1, i457).
rassertion(arole(hasChild), i1, i456).
rassertion(arole(hasChild), i1, i455).
rassertion(arole(hasChild), i1, i454).
rassertion(arole(hasChild), i1, i453).
rassertion(arole(hasChild), i1, i452).
rassertion(arole(hasChild), i1, i451).
rassertion(arole(hasChild), i1, i450).
rassertion(arole(hasChild), i1, i449).
rassertion(arole(hasChild), i1, i448).
rassertion(arole(hasChild), i1, i447).
rassertion(arole(hasChild), i1, i446).
rassertion(arole(hasChild), i1, i445).
rassertion(arole(hasChild), i1, i444).
rassertion(arole(hasChild), i1, i443).
rassertion(arole(hasChild), i1, i442).
rassertion(arole(hasChild), i1, i441).
rassertion(arole(hasChild), i1, i440).
rassertion(arole(hasChild), i1, i439).
rassertion(arole(hasChild), i1, i438).
rassertion(arole(hasChild), i1, i437).
rassertion(arole(hasChild), i1, i436).
rassertion(arole(hasChild), i1, i435).
rassertion(arole(hasChild), i1, i434).
rassertion(arole(hasChild), i1, i433).
rassertion(arole(hasChild), i1, i432).
rassertion(arole(hasChild), i1, i431).
rassertion(arole(hasChild), i1, i430).
rassertion(arole(hasChild), i1, i429).
rassertion(arole(hasChild), i1, i428).
rassertion(arole(hasChild), i1, i427).
rassertion(arole(hasChild), i1, i426).
rassertion(arole(hasChild), i1, i425).
rassertion(arole(hasChild), i1, i424).
rassertion(arole(hasChild), i1, i423).
rassertion(arole(hasChild), i1, i422).
rassertion(arole(hasChild), i1, i421).
rassertion(arole(hasChild), i1, i420).
rassertion(arole(hasChild), i1, i419).
rassertion(arole(hasChild), i1, i418).
rassertion(arole(hasChild), i1, i417).
rassertion(arole(hasChild), i1, i416).
rassertion(arole(hasChild), i1, i415).
rassertion(arole(hasChild), i1, i414).
rassertion(arole(hasChild), i1, i413).
rassertion(arole(hasChild), i1, i412).
rassertion(arole(hasChild), i1, i411).
rassertion(arole(hasChild), i1, i410).
rassertion(arole(hasChild), i1, i409).
rassertion(arole(hasChild), i1, i408).
rassertion(arole(hasChild), i1, i407).
rassertion(arole(hasChild), i1, i406).
rassertion(arole(hasChild), i1, i405).
rassertion(arole(hasChild), i1, i404).
rassertion(arole(hasChild), i1, i403).
rassertion(arole(hasChild), i1, i402).
rassertion(arole(hasChild), i1, i401).
rassertion(arole(hasChild), i1, i400).
rassertion(arole(hasChild), i1, i399).
rassertion(arole(hasChild), i1, i398).
rassertion(arole(hasChild), i1, i397).
rassertion(arole(hasChild), i1, i396).
rassertion(arole(hasChild), i1, i395).
rassertion(arole(hasChild), i1, i394).
rassertion(arole(hasChild), i1, i393).
rassertion(arole(hasChild), i1, i392).
rassertion(arole(hasChild), i1, i391).
rassertion(arole(hasChild), i1, i390).
rassertion(arole(hasChild), i1, i389).
rassertion(arole(hasChild), i1, i388).
rassertion(arole(hasChild), i1, i387).
rassertion(arole(hasChild), i1, i386).
rassertion(arole(hasChild), i1, i385).
rassertion(arole(hasChild), i1, i384).
rassertion(arole(hasChild), i1, i383).
rassertion(arole(hasChild), i1, i382).
rassertion(arole(hasChild), i1, i381).
rassertion(arole(hasChild), i1, i380).
rassertion(arole(hasChild), i1, i379).
rassertion(arole(hasChild), i1, i378).
rassertion(arole(hasChild), i1, i377).
rassertion(arole(hasChild), i1, i376).
rassertion(arole(hasChild), i1, i375).
rassertion(arole(hasChild), i1, i374).
rassertion(arole(hasChild), i1, i373).
rassertion(arole(hasChild), i1, i372).
rassertion(arole(hasChild), i1, i371).
rassertion(arole(hasChild), i1, i370).
rassertion(arole(hasChild), i1, i369).
rassertion(arole(hasChild), i1, i368).
rassertion(arole(hasChild), i1, i367).
rassertion(arole(hasChild), i1, i366).
rassertion(arole(hasChild), i1, i365).
rassertion(arole(hasChild), i1, i364).
rassertion(arole(hasChild), i1, i363).
rassertion(arole(hasChild), i1, i362).
rassertion(arole(hasChild), i1, i361).
rassertion(arole(hasChild), i1, i360).
rassertion(arole(hasChild), i1, i359).
rassertion(arole(hasChild), i1, i358).
rassertion(arole(hasChild), i1, i357).
rassertion(arole(hasChild), i1, i356).
rassertion(arole(hasChild), i1, i355).
rassertion(arole(hasChild), i1, i354).
rassertion(arole(hasChild), i1, i353).
rassertion(arole(hasChild), i1, i352).
rassertion(arole(hasChild), i1, i351).
rassertion(arole(hasChild), i1, i350).
rassertion(arole(hasChild), i1, i349).
rassertion(arole(hasChild), i1, i348).
rassertion(arole(hasChild), i1, i347).
rassertion(arole(hasChild), i1, i346).
rassertion(arole(hasChild), i1, i345).
rassertion(arole(hasChild), i1, i344).
rassertion(arole(hasChild), i1, i343).
rassertion(arole(hasChild), i1, i342).
rassertion(arole(hasChild), i1, i341).
rassertion(arole(hasChild), i1, i340).
rassertion(arole(hasChild), i1, i339).
rassertion(arole(hasChild), i1, i338).
rassertion(arole(hasChild), i1, i337).
rassertion(arole(hasChild), i1, i336).
rassertion(arole(hasChild), i1, i335).
rassertion(arole(hasChild), i1, i334).
rassertion(arole(hasChild), i1, i333).
rassertion(arole(hasChild), i1, i332).
rassertion(arole(hasChild), i1, i331).
rassertion(arole(hasChild), i1, i330).
rassertion(arole(hasChild), i1, i329).
rassertion(arole(hasChild), i1, i328).
rassertion(arole(hasChild), i1, i327).
rassertion(arole(hasChild), i1, i326).
rassertion(arole(hasChild), i1, i325).
rassertion(arole(hasChild), i1, i324).
rassertion(arole(hasChild), i1, i323).
rassertion(arole(hasChild), i1, i322).
rassertion(arole(hasChild), i1, i321).
rassertion(arole(hasChild), i1, i320).
rassertion(arole(hasChild), i1, i319).
rassertion(arole(hasChild), i1, i318).
rassertion(arole(hasChild), i1, i317).
rassertion(arole(hasChild), i1, i316).
rassertion(arole(hasChild), i1, i315).
rassertion(arole(hasChild), i1, i314).
rassertion(arole(hasChild), i1, i313).
rassertion(arole(hasChild), i1, i312).
rassertion(arole(hasChild), i1, i311).
rassertion(arole(hasChild), i1, i310).
rassertion(arole(hasChild), i1, i309).
rassertion(arole(hasChild), i1, i308).
rassertion(arole(hasChild), i1, i307).
rassertion(arole(hasChild), i1, i306).
rassertion(arole(hasChild), i1, i305).
rassertion(arole(hasChild), i1, i304).
rassertion(arole(hasChild), i1, i303).
rassertion(arole(hasChild), i1, i302).
rassertion(arole(hasChild), i1, i301).
rassertion(arole(hasChild), i1, i300).
rassertion(arole(hasChild), i1, i299).
rassertion(arole(hasChild), i1, i298).
rassertion(arole(hasChild), i1, i297).
rassertion(arole(hasChild), i1, i296).
rassertion(arole(hasChild), i1, i295).
rassertion(arole(hasChild), i1, i294).
rassertion(arole(hasChild), i1, i293).
rassertion(arole(hasChild), i1, i292).
rassertion(arole(hasChild), i1, i291).
rassertion(arole(hasChild), i1, i290).
rassertion(arole(hasChild), i1, i289).
rassertion(arole(hasChild), i1, i288).
rassertion(arole(hasChild), i1, i287).
rassertion(arole(hasChild), i1, i286).
rassertion(arole(hasChild), i1, i285).
rassertion(arole(hasChild), i1, i284).
rassertion(arole(hasChild), i1, i283).
rassertion(arole(hasChild), i1, i282).
rassertion(arole(hasChild), i1, i281).
rassertion(arole(hasChild), i1, i280).
rassertion(arole(hasChild), i1, i279).
rassertion(arole(hasChild), i1, i278).
rassertion(arole(hasChild), i1, i277).
rassertion(arole(hasChild), i1, i276).
rassertion(arole(hasChild), i1, i275).
rassertion(arole(hasChild), i1, i274).
rassertion(arole(hasChild), i1, i273).
rassertion(arole(hasChild), i1, i272).
rassertion(arole(hasChild), i1, i271).
rassertion(arole(hasChild), i1, i270).
rassertion(arole(hasChild), i1, i269).
rassertion(arole(hasChild), i1, i268).
rassertion(arole(hasChild), i1, i267).
rassertion(arole(hasChild), i1, i266).
rassertion(arole(hasChild), i1, i265).
rassertion(arole(hasChild), i1, i264).
rassertion(arole(hasChild), i1, i263).
rassertion(arole(hasChild), i1, i262).
rassertion(arole(hasChild), i1, i261).
rassertion(arole(hasChild), i1, i260).
rassertion(arole(hasChild), i1, i259).
rassertion(arole(hasChild), i1, i258).
rassertion(arole(hasChild), i1, i257).
rassertion(arole(hasChild), i1, i256).
rassertion(arole(hasChild), i1, i255).
rassertion(arole(hasChild), i1, i254).
rassertion(arole(hasChild), i1, i253).
rassertion(arole(hasChild), i1, i252).
rassertion(arole(hasChild), i1, i251).
rassertion(arole(hasChild), i1, i250).
rassertion(arole(hasChild), i1, i249).
rassertion(arole(hasChild), i1, i248).
rassertion(arole(hasChild), i1, i247).
rassertion(arole(hasChild), i1, i246).
rassertion(arole(hasChild), i1, i245).
rassertion(arole(hasChild), i1, i244).
rassertion(arole(hasChild), i1, i243).
rassertion(arole(hasChild), i1, i242).
rassertion(arole(hasChild), i1, i241).
rassertion(arole(hasChild), i1, i240).
rassertion(arole(hasChild), i1, i239).
rassertion(arole(hasChild), i1, i238).
rassertion(arole(hasChild), i1, i237).
rassertion(arole(hasChild), i1, i236).
rassertion(arole(hasChild), i1, i235).
rassertion(arole(hasChild), i1, i234).
rassertion(arole(hasChild), i1, i233).
rassertion(arole(hasChild), i1, i232).
rassertion(arole(hasChild), i1, i231).
rassertion(arole(hasChild), i1, i230).
rassertion(arole(hasChild), i1, i229).
rassertion(arole(hasChild), i1, i228).
rassertion(arole(hasChild), i1, i227).
rassertion(arole(hasChild), i1, i226).
rassertion(arole(hasChild), i1, i225).
rassertion(arole(hasChild), i1, i224).
rassertion(arole(hasChild), i1, i223).
rassertion(arole(hasChild), i1, i222).
rassertion(arole(hasChild), i1, i221).
rassertion(arole(hasChild), i1, i220).
rassertion(arole(hasChild), i1, i219).
rassertion(arole(hasChild), i1, i218).
rassertion(arole(hasChild), i1, i217).
rassertion(arole(hasChild), i1, i216).
rassertion(arole(hasChild), i1, i215).
rassertion(arole(hasChild), i1, i214).
rassertion(arole(hasChild), i1, i213).
rassertion(arole(hasChild), i1, i212).
rassertion(arole(hasChild), i1, i211).
rassertion(arole(hasChild), i1, i210).
rassertion(arole(hasChild), i1, i209).
rassertion(arole(hasChild), i1, i208).
rassertion(arole(hasChild), i1, i207).
rassertion(arole(hasChild), i1, i206).
rassertion(arole(hasChild), i1, i205).
rassertion(arole(hasChild), i1, i204).
rassertion(arole(hasChild), i1, i203).
rassertion(arole(hasChild), i1, i202).
rassertion(arole(hasChild), i1, i201).
rassertion(arole(hasChild), i1, i200).
rassertion(arole(hasChild), i1, i199).
rassertion(arole(hasChild), i1, i198).
rassertion(arole(hasChild), i1, i197).
rassertion(arole(hasChild), i1, i196).
rassertion(arole(hasChild), i1, i195).
rassertion(arole(hasChild), i1, i194).
rassertion(arole(hasChild), i1, i193).
rassertion(arole(hasChild), i1, i192).
rassertion(arole(hasChild), i1, i191).
rassertion(arole(hasChild), i1, i190).
rassertion(arole(hasChild), i1, i189).
rassertion(arole(hasChild), i1, i188).
rassertion(arole(hasChild), i1, i187).
rassertion(arole(hasChild), i1, i186).
rassertion(arole(hasChild), i1, i185).
rassertion(arole(hasChild), i1, i184).
rassertion(arole(hasChild), i1, i183).
rassertion(arole(hasChild), i1, i182).
rassertion(arole(hasChild), i1, i181).
rassertion(arole(hasChild), i1, i180).
rassertion(arole(hasChild), i1, i179).
rassertion(arole(hasChild), i1, i178).
rassertion(arole(hasChild), i1, i177).
rassertion(arole(hasChild), i1, i176).
rassertion(arole(hasChild), i1, i175).
rassertion(arole(hasChild), i1, i174).
rassertion(arole(hasChild), i1, i173).
rassertion(arole(hasChild), i1, i172).
rassertion(arole(hasChild), i1, i171).
rassertion(arole(hasChild), i1, i170).
rassertion(arole(hasChild), i1, i169).
rassertion(arole(hasChild), i1, i168).
rassertion(arole(hasChild), i1, i167).
rassertion(arole(hasChild), i1, i166).
rassertion(arole(hasChild), i1, i165).
rassertion(arole(hasChild), i1, i164).
rassertion(arole(hasChild), i1, i163).
rassertion(arole(hasChild), i1, i162).
rassertion(arole(hasChild), i1, i161).
rassertion(arole(hasChild), i1, i160).
rassertion(arole(hasChild), i1, i159).
rassertion(arole(hasChild), i1, i158).
rassertion(arole(hasChild), i1, i157).
rassertion(arole(hasChild), i1, i156).
rassertion(arole(hasChild), i1, i155).
rassertion(arole(hasChild), i1, i154).
rassertion(arole(hasChild), i1, i153).
rassertion(arole(hasChild), i1, i152).
rassertion(arole(hasChild), i1, i151).
rassertion(arole(hasChild), i1, i150).
rassertion(arole(hasChild), i1, i149).
rassertion(arole(hasChild), i1, i148).
rassertion(arole(hasChild), i1, i147).
rassertion(arole(hasChild), i1, i146).
rassertion(arole(hasChild), i1, i145).
rassertion(arole(hasChild), i1, i144).
rassertion(arole(hasChild), i1, i143).
rassertion(arole(hasChild), i1, i142).
rassertion(arole(hasChild), i1, i141).
rassertion(arole(hasChild), i1, i140).
rassertion(arole(hasChild), i1, i139).
rassertion(arole(hasChild), i1, i138).
rassertion(arole(hasChild), i1, i137).
rassertion(arole(hasChild), i1, i136).
rassertion(arole(hasChild), i1, i135).
rassertion(arole(hasChild), i1, i134).
rassertion(arole(hasChild), i1, i133).
rassertion(arole(hasChild), i1, i132).
rassertion(arole(hasChild), i1, i131).
rassertion(arole(hasChild), i1, i130).
rassertion(arole(hasChild), i1, i129).
rassertion(arole(hasChild), i1, i128).
rassertion(arole(hasChild), i1, i127).
rassertion(arole(hasChild), i1, i126).
rassertion(arole(hasChild), i1, i125).
rassertion(arole(hasChild), i1, i124).
rassertion(arole(hasChild), i1, i123).
rassertion(arole(hasChild), i1, i122).
rassertion(arole(hasChild), i1, i121).
rassertion(arole(hasChild), i1, i120).
rassertion(arole(hasChild), i1, i119).
rassertion(arole(hasChild), i1, i118).
rassertion(arole(hasChild), i1, i117).
rassertion(arole(hasChild), i1, i116).
rassertion(arole(hasChild), i1, i115).
rassertion(arole(hasChild), i1, i114).
rassertion(arole(hasChild), i1, i113).
rassertion(arole(hasChild), i1, i112).
rassertion(arole(hasChild), i1, i111).
rassertion(arole(hasChild), i1, i110).
rassertion(arole(hasChild), i1, i109).
rassertion(arole(hasChild), i1, i108).
rassertion(arole(hasChild), i1, i107).
rassertion(arole(hasChild), i1, i106).
rassertion(arole(hasChild), i1, i105).
rassertion(arole(hasChild), i1, i104).
rassertion(arole(hasChild), i1, i103).
rassertion(arole(hasChild), i1, i102).
rassertion(arole(hasChild), i1, i101).
rassertion(arole(hasChild), i1, i100).
rassertion(arole(hasChild), i1, i99).
rassertion(arole(hasChild), i1, i98).
rassertion(arole(hasChild), i1, i97).
rassertion(arole(hasChild), i1, i96).
rassertion(arole(hasChild), i1, i95).
rassertion(arole(hasChild), i1, i94).
rassertion(arole(hasChild), i1, i93).
rassertion(arole(hasChild), i1, i92).
rassertion(arole(hasChild), i1, i91).
rassertion(arole(hasChild), i1, i90).
rassertion(arole(hasChild), i1, i89).
rassertion(arole(hasChild), i1, i88).
rassertion(arole(hasChild), i1, i87).
rassertion(arole(hasChild), i1, i86).
rassertion(arole(hasChild), i1, i85).
rassertion(arole(hasChild), i1, i84).
rassertion(arole(hasChild), i1, i83).
rassertion(arole(hasChild), i1, i82).
rassertion(arole(hasChild), i1, i81).
rassertion(arole(hasChild), i1, i80).
rassertion(arole(hasChild), i1, i79).
rassertion(arole(hasChild), i1, i78).
rassertion(arole(hasChild), i1, i77).
rassertion(arole(hasChild), i1, i76).
rassertion(arole(hasChild), i1, i75).
rassertion(arole(hasChild), i1, i74).
rassertion(arole(hasChild), i1, i73).
rassertion(arole(hasChild), i1, i72).
rassertion(arole(hasChild), i1, i71).
rassertion(arole(hasChild), i1, i70).
rassertion(arole(hasChild), i1, i69).
rassertion(arole(hasChild), i1, i68).
rassertion(arole(hasChild), i1, i67).
rassertion(arole(hasChild), i1, i66).
rassertion(arole(hasChild), i1, i65).
rassertion(arole(hasChild), i1, i64).
rassertion(arole(hasChild), i1, i63).
rassertion(arole(hasChild), i1, i62).
rassertion(arole(hasChild), i1, i61).
rassertion(arole(hasChild), i1, i60).
rassertion(arole(hasChild), i1, i59).
rassertion(arole(hasChild), i1, i58).
rassertion(arole(hasChild), i1, i57).
rassertion(arole(hasChild), i1, i56).
rassertion(arole(hasChild), i1, i55).
rassertion(arole(hasChild), i1, i54).
rassertion(arole(hasChild), i1, i53).
rassertion(arole(hasChild), i1, i52).
rassertion(arole(hasChild), i1, i51).
rassertion(arole(hasChild), i1, i50).
rassertion(arole(hasChild), i1, i49).
rassertion(arole(hasChild), i1, i48).
rassertion(arole(hasChild), i1, i47).
rassertion(arole(hasChild), i1, i46).
rassertion(arole(hasChild), i1, i45).
rassertion(arole(hasChild), i1, i44).
rassertion(arole(hasChild), i1, i43).
rassertion(arole(hasChild), i1, i42).
rassertion(arole(hasChild), i1, i41).
rassertion(arole(hasChild), i1, i40).
rassertion(arole(hasChild), i1, i39).
rassertion(arole(hasChild), i1, i38).
rassertion(arole(hasChild), i1, i37).
rassertion(arole(hasChild), i1, i36).
rassertion(arole(hasChild), i1, i35).
rassertion(arole(hasChild), i1, i34).
rassertion(arole(hasChild), i1, i33).
rassertion(arole(hasChild), i1, i32).
rassertion(arole(hasChild), i1, i31).
rassertion(arole(hasChild), i1, i30).
rassertion(arole(hasChild), i1, i29).
rassertion(arole(hasChild), i1, i28).
rassertion(arole(hasChild), i1, i27).
rassertion(arole(hasChild), i1, i26).
rassertion(arole(hasChild), i1, i25).
rassertion(arole(hasChild), i1, i24).
rassertion(arole(hasChild), i1, i23).
rassertion(arole(hasChild), i1, i22).
rassertion(arole(hasChild), i1, i21).
rassertion(arole(hasChild), i1, i20).
rassertion(arole(hasChild), i1, i19).
rassertion(arole(hasChild), i1, i18).
rassertion(arole(hasChild), i1, i17).
rassertion(arole(hasChild), i1, i16).
rassertion(arole(hasChild), i1, i15).
rassertion(arole(hasChild), i1, i14).
rassertion(arole(hasChild), i1, i13).
rassertion(arole(hasChild), i1, i12).
rassertion(arole(hasChild), i1, i11).
rassertion(arole(hasChild), i1, i10).
rassertion(arole(hasChild), i1, i9).
rassertion(arole(hasChild), i1, i8).
rassertion(arole(hasChild), i1, i7).
rassertion(arole(hasChild), i1, i6).
rassertion(arole(hasChild), i1, i5).
rassertion(arole(hasChild), i1, i4).
rassertion(arole(hasChild), i1, i3).
rassertion(arole(hasChild), i1, i2).
|
8e28f10237c6c1f9e193a6a0bcf80462bc05df03 | 449d555969bfd7befe906877abab098c6e63a0e8 | /68/CH12/EX12.4/ex4.sce | efe078100f23cfbf25755c2038f2fca3e71d2c78 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 308 | sce | ex4.sce | // Example 12.4 To design tuned amplifier
cfg=-10; // Center frequency gain (V/V)
g_m=0.005; // (A/V)
r_o=10000; // (ohm)
f_o=1*10^6; // (Hz)
B=2*%pi*10^4; // Bandwidth
R=-cfg/g_m;
R_L=R*r_o/(r_o-R);
disp(R_L,"R_L (ohm)")
C=1/(R*B)
disp(C,"C (F)")
w_o=2*%pi*f_o;
L=1/(w_o^2*C);
disp(L,"L (H)") |
e7f73e6001bc28253f9395e287505056bb04e679 | 4bbc2bd7e905b75d38d36d8eefdf3e34ba805727 | /ee_scicoslab/installer.sce | 8e8add604768f581a14c3ebc4165ede857ee7dd4 | [] | no_license | mannychang/erika2_Scicos-FLEX | 397be88001bdef59c0515652a365dbd645d60240 | 12bb5aa162fa6b6fd6601e0dacc972d7b5f508ba | refs/heads/master | 2021-02-08T17:01:20.857172 | 2012-07-10T12:18:28 | 2012-07-10T12:18:28 | 244,174,890 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 41,712 | sce | installer.sce | // ***********************************************************
// * ScicosLab Pack Installer *
// * Requires: Scicoslab v4.4.1 *
// * Built/Tested On: XP, Windows 7 *
// * Description: Installation script of the Code generator *
// * for FLEX and EASYLAB boards *
// * Copyright (c) 2011 Evidence Srl *
// * Author: Dario Di Stefano, Evidence *
// ***********************************************************
// Set global variables
EE_DEBUG = 1;
MYDIR = get_absolute_file_path('installer.sce');
OLDDIR = pwd();
SCIDIR = strsubst(SCI,'/','\');
if exists('INSTALLER_BATCH_MODE')==0 & exists('ans_inst_dialog')==0
ans_inst_dialog = buttondialog("ScicosLab pack Setup utility.\nChoose if install or uninstall the toolbox. ","Install|Uninstall|Exit","question");
ans_inst_dialog_up = 1;
else
if exists('ans_inst_dialog')==0
ans_inst_dialog='1'; // Install by default...
end
end
if ans_inst_dialog=='3' | ans_inst_dialog=='0'
cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return;
end
// *********************************************************************************
// ************************* SCICOS_PACK UNINSTALLER *******************************
if ans_inst_dialog=='2'
// Uninstaller section: exec('unistaller.sce');
// TEST if user is Admin
cd(SCIDIR + '\contrib');
winId_wait =waitbar(" " + "\n" + ..
" EE Scicos pack Setup. " + "\n" + ..
" Uninstallation may take several seconds... " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" " );
cmd = 'dir > test.x';
unix(cmd);
[x,err] = fileinfo('test.x');
if err ~= 0
waitbar(" " + "\n" + ..
" # Uninstallation Error # " + "\n" + ..
" Access denied! Is not possible to delete the files. " + "\n" + ..
" Please, run ScicosLab with administrator privileges. " + "\n" + ..
" Uninstallation aborted! " + "\n" + ..
" ", winId_wait);
cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return;
else
cmd = 'del /Q test.x';
unix(cmd);
end
// Change working directory
cd(MYDIR);
// Load libraries
getf scicos_ee\utils\utils.sci
// Check .scilab file presence
res = grep(SCIHOME,'4.4.1');
if res==[]
cd(MYDIR+'scicos_ee\user\Scilab\4.4b7'); // 4.4b7
else
cd(MYDIR+'scicos_ee\user\ScicosLab\4.4.1'); // 4.4.1
end
[x,ierr]=fileinfo(SCIHOME+'\.scilab');
if ierr==0
txt=mgetl(SCIHOME+'\.scilab');
res_begin = grep(txt,'### Scicos EE ###');
res_end = grep(txt,'### Scicos EE - end ###');
if res_begin==[]
EE_debug_printf(' #warning: .scilab is already cleaned!', 0);
elseif res_end==[]
EE_debug_printf(' #error: .scilab file is corrupted!', 0);
waitbar(" " + "\n" + ..
" # Uninstallation Error # " + "\n" + ..
" .scilab file is corrupted! " + "\n" + ..
" (Please, delete or modify the file before to retry) " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return;
else
// To change '.scilab' file user should not be Admin
res = size(txt);
new_txt = [txt(1:res_begin-1);txt(res_end+1:res(1))];
mputl(new_txt, SCIHOME+'\.scilab');
EE_debug_printf(' #warning: .scilab was successfully restored!', 0);
end
else
EE_debug_printf(' #warning: .scilab file not found!.', 0);
end
// 50%
waitbar(0.5, winId_wait);
// Delete scicos_ee folder from contrib
waitbar(" " + "\n" + ..
" Deleting files... " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
EE_debug_printf(' Deleting files...', 0);
// Unlink DLLs
exec(MYDIR + 'scicos_ee\utils\unlink_dll.sce');
cd(SCIDIR + '\contrib');
// Removing ScicosLabPack_install.log
[loginfo,ierr]=fileinfo('ScicosLabPack_install.log');
if ierr==0
cmd = 'del /Q ScicosLabPack_install.log';
unix(cmd);
end
// Removing scicos_ee
res = isdir(SCIDIR+'\contrib\scicos_ee');
if res==%T
cmd = 'rmdir /s /q scicos_ee';
unix(cmd);
end
// 100%
waitbar(1, winId_wait);
waitbar(" " + "\n" + ..
" Uninstallation completed successfully! " + "\n" + ..
" Restart ScicosLab for the changes to take effect... " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
EE_debug_printf(' Uninstallation completed successfully!', 0);
EE_debug_printf(' Please, restart ScicosLab for the changes to take effect...', 0);
cd(home); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return;
end
// *********************************************************************************
// *************************** SCICOS_PACK INSTALLER *******************************
if ans_inst_dialog=='1'
// Initial message
winId_wait =waitbar(" " + "\n" + ..
" EE Scicos pack Setup. " + "\n" + ..
" Installation may take several seconds... " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" ");
// Change working directory
cd(MYDIR);
// Load libraries
getf scicos_ee\utils\utils.sci
else
cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return; // added only for completeness...
end
// Installation test
cd(SCIDIR + '\contrib');
cmd = 'dir > test.x';
unix(cmd);
[x,err] = fileinfo('test.x');
if err ~= 0
waitbar(" " + "\n" + ..
" # Installation Error # " + "\n" + ..
" Access denied! " + "\n" + ..
" Please, run ScicosLab with administrator privileges. " + "\n" + ..
" Installation aborted! " + "\n" + ..
" ", winId_wait);
cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return;
else
cmd = 'del /Q test.x';
unix(cmd);
end
cd(MYDIR);
// Installation log
[fd_log, err] = mopen(SCIDIR+'\contrib\ScicosLabPack_install.log', 'w');
if err ~= 0
waitbar(" " + "\n" + ..
" # Installation Error # " + "\n" + ..
" Access denied! Is not possible to create the log file. " + "\n" + ..
" Please, run ScicosLab with administrator privileges. " + "\n" + ..
" Installation aborted! " + "\n" + ..
" ", winId_wait);
cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return;
else
EE_debug_printf('### EE Scicoslab pack installer ###', fd_log);
end
// 10%
waitbar(0.1, winId_wait);
if exists('NO_APPS_CHECK')==0
// --- Check Cygwin presence ---
waitbar(" " + "\n" + ..
" Check Cygwin presence... " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
[x,ierr]=fileinfo('C:\cygwin\bin\bash.exe');
if ierr==0
waitbar(" " + "\n" + ..
" Check Cygwin presence...found! " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
else
waitbar(" " + "\n" + ..
" # Installation Warning # " + "\n" + ..
" Cygwin not found! " + "\n" + ..
" Cygwin should be installed in C:\ " + "\n" + ..
" if you plan to generate code for dsPIC. " + "\n" + ..
" ", winId_wait);
EE_debug_printf(' #Warning Cygwin not found!', fd_log);
end
// --- Create apps.list (installed applications list) ---
cd(MYDIR+'scicos_ee\utils');
cmd = 'installed_win_apps_list.bat > apps.list';
unix(cmd);
cd(MYDIR+'scicos_ee\utils');
txt=mgetl('apps.list');
// 20 %
waitbar(0.2, winId_wait);
// Check Visual C++ presence
waitbar(" " + "\n" + ..
" Check Visual C++ 2008 presence... " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
res = grep(txt,'Visual C++ 2008');
if res==[]
waitbar(" " + "\n" + ..
" # Installation Warning # " + "\n" + ..
" Visual C++ not found! " + "\n" + ..
" Installation of Visual C++ 2008 Express Edition " + "\n" + ..
" is required by the ScicosLab EE pack! " + "\n" + ..
" ", winId_wait);
EE_debug_printf(' #warning: Visual C++ 2008 not found!', fd_log);
EE_debug_printf(' #warning: Installation of Visual C++ 2008 Express Edition is required by the ScicosLab EE pack!', fd_log);
end
// Check Java presence
waitbar(" " + "\n" + ..
" Check Java presence... " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
res = grep(txt,'Java(TM)');
if res==[]
EE_debug_printf(' #warning: Java not found!', fd_log);
EE_debug_printf(' #warning: Installation of Java is required by the EE-ScicosLab code generator!', fd_log);
waitbar(" " + "\n" + ..
" # Installation Warning # " + "\n" + ..
" Java not found! " + "\n" + ..
" Java is required by the EE-ScicosLab code generator! " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
end
end
waitbar(" " + "\n" + ..
" Check Visual C++ 2008 settings... " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
VC_path_valid = %F;
if exists('visualc_path')==0
[x_x_x,vcpp_detect_err] = fileinfo(MYDIR + 'scicos_ee\utils\vcpp_detect.sce');
if vcpp_detect_err == 0
exec(MYDIR + 'scicos_ee\utils\vcpp_detect.sce');
else
visualc_path = 'C:\Programmi\Microsoft Visual Studio 9.0\VC';
end
end
while VC_path_valid==%F
if exists('INSTALLER_BATCH_MODE')==0 // in batch mode do not display the dialog window
visualc_path = x_dialog(['Enter Visual C++ directory path'],[visualc_path]);
visualc_path_up = 1;
else
if exists('INSTALLER_BATCH_MODE')==1
EE_debug_printf(' #warning: Installation in batch mode is using the default Visual C++ path!', fd_log);
end
end
if visualc_path == []
waitbar(" " + "\n" + ..
" # Installation Error # " + "\n" + ..
" Please, install a valid Visual C++ compiler " + "\n" + ..
" otherwise code generator will not work! " + "\n" + ..
" " + "\n" + ..
" Installation aborted! ", winId_wait);
EE_debug_printf(' Installation aborted!', fd_log);
EE_debug_printf('### END ###', fd_log);
mclose(fd_log);
cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return;
end
visualc_path = visualc_path(1); // to avoid problems in case of multi-string array.
visualc_path = strsubst(visualc_path,'/','\');
ind_slash = strindex(visualc_path,'\');
len_path = length(visualc_path);
if ind_slash(length(ind_slash)) == len_path
strs_temp = strsplit(visualc_path,[ind_slash(length(ind_slash))-1, ind_slash(length(ind_slash))-1]);
visualc_path = strs_temp(1);
end
[x,ierr]=fileinfo(visualc_path + '\bin\cl.exe');
if ierr<0 // path is wrong!!!
VC_path_valid = %F;
if exists('INSTALLER_BATCH_MODE')==0 & exists('vcansw_retry')==0
vcansw_retry = buttondialog("Inserted path is not valid! (Yes: to retry, No: to abort)","yes|no","question");
vcansw_retry_up = 1;
else
if exists('vcansw_retry')==0
vcansw_retry = '2'; // error in case of batch_mode - installer...
end
end
if vcansw_retry=='2'
waitbar(" " + "\n" + ..
" # Installation Error # " + "\n" + ..
" Please, install a valid Visual C++ compiler " + "\n" + ..
" otherwise code generator will not work! " + "\n" + ..
" path + /bin/cl.exe NOT FOUND! " + "\n" + ..
" Installation aborted! ", winId_wait);
EE_debug_printf(' Installation aborted!', fd_log);
EE_debug_printf('### END ###', fd_log);
mclose(fd_log);
cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return;
end
if vcansw_retry == '0'
VC_path_valid = %T; // ignore wrong paths...
end
else
VC_path_valid = %T; // path is OK...
end
if exists('vcansw_retry_up')==1
clear vcansw_retry vcansw_retry_up
end
end
[x,err] = fileinfo(MYDIR + "scicos_ee\bin\SMCube.exe");
if err == 0
// CONFIGURATION.INI file is created
[fd,err] = mopen(MYDIR+'scicos_ee\utils\configuration.ini', 'w');
if err ~= 0
waitbar(" " + "\n" + ..
" # Installation Error # " + "\n" + ..
" Access denied! Is not possible to create a pref file! " + "\n" + ..
" Please, run ScicosLab with administrator privileges. " + "\n" + ..
" Installation aborted! " + "\n" + ..
" ", winId_wait);
EE_debug_printf(' #error: Access denied! Is not possible to create a configuration file!', fd_log);
EE_debug_printf(' #error: Please, run ScicosLab with administrator privileges to install the toolbox', fd_log);
EE_debug_printf(' Installation aborted!', fd_log);
EE_debug_printf('### END ###', fd_log);
mclose(fd_log);
cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return;
end
mfprintf(fd,"##Compiler path, including the executable file name\n");
mfprintf(fd,"Compiler=");
mfprintf(fd, strsubst(visualc_path,'\','\\'));
mfprintf(fd,"\\bin\\cl.exe\n");
mclose(fd);
waitbar(" " + "\n" + ..
" Creating preferences file configuration.ini ... Done! " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
end
waitbar(" " + "\n" + ..
" C30 compiler settings: " + "\n" + ..
" - Recommended version: v3.30 or later " + "\n" + ..
" - Bad version: v3.25, sprintf_block cannot be compiled!" + "\n" + ..
" For further info visit: http://www.microchip.com/ " + "\n" + ..
" ", winId_wait);
if exists('INSTALLER_BATCH_MODE')==0 & exists('answ_c30')==0
answ_c30 = buttondialog("Code Generation for dsPIC DSC microcontroller requires a valid path for the Microchip C30 Compiler.\n" + ..
"Please answer yes if you plan to generate code for the target.\n" + ..
"If you are only installing the tool for simulation purposes, and not for code generation, you can safely answer No.","yes|no","question");
answ_c30_up = 1;
if answ_c30=='2' | answ_c30=='0'
waitbar(" " + "\n" + ..
" # Installation Warning # " + "\n" + ..
" C30 compiler not specified " + "\n" + ..
" Code generator will not work! " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
EE_debug_printf(' #warning: If C30 compiler is not specified, code generator is disabled!', fd_log);
end
else
if exists('answ_c30')==0
answ_c30 = '1';
end
end
// C30 path
CC_path_valid=%F; // path is non valid at the moment...
if exists('c30_asm30_paths')==0
[x_x_x,c30_detect_err] = fileinfo(MYDIR + 'scicos_ee\utils\c30_detect.sce');
if c30_detect_err == 0
exec(MYDIR + 'scicos_ee\utils\c30_detect.sce');
else
c30_asm30_paths = 'C:\Programmi\Microchip\MPLAB C30';
end
end
while CC_path_valid==%F
if exists('INSTALLER_BATCH_MODE')==0 & answ_c30=='1' // in batch mode do not display the dialog window
c30_asm30_paths = x_dialog(['Enter C30 installation directory path';..
'- Recommended version: v3.30 or later';..
'- Bad version: v3.25, sprintf_block cannot be compiled!';..
'For further info visit: http://www.microchip.com/'],[c30_asm30_paths]);
c30_asm30_paths_up = 1;
else
if exists('INSTALLER_BATCH_MODE')==1
EE_debug_printf(' #warning: Installation in batch mode is using the default C30 path!', fd_log);
end
end
if c30_asm30_paths==[]
[x_x_x,c30_detect_err] = fileinfo(MYDIR + 'scicos_ee\utils\c30_detect.sce');
if c30_detect_err == 0
exec(MYDIR + 'scicos_ee\utils\c30_detect.sce');
else
c30_asm30_paths = 'C:\Programmi\Microchip\MPLAB C30';
end
answ_c30 = buttondialog("Code Generation for dsPIC DSC microcontroller requires a valid path for the Microchip C30 Compiler.\n" + ..
"Please answer yes if you plan to generate code for the target.\n" + ..
"If you are only installing the tool for simulation purposes, and not for code generation, you can safely answer No.","yes|no","question");
answ_c30_up = 1;
if answ_c30=='2' | answ_c30=='0'
waitbar(" " + "\n" + ..
" # Installation Warning # " + "\n" + ..
" C30 compiler not specified " + "\n" + ..
" Code generator will not work! " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
EE_debug_printf(' #warning: If C30 compiler is not specified, code generator is disabled!', fd_log);
else
continue;
end
end
c30_asm30_paths = c30_asm30_paths(1); // to avoid problems in case of multi-string array.
c30_asm30_paths = strsubst(c30_asm30_paths,'\','/');
ind_slash = strindex(c30_asm30_paths,'/');
len_path = length(c30_asm30_paths);
if ind_slash(length(ind_slash)) == len_path
strs_temp = strsplit(c30_asm30_paths,[ind_slash(length(ind_slash))-1, ind_slash(length(ind_slash))-1]);
c30_asm30_paths = strs_temp(1);
end
[x,ierr]=fileinfo(c30_asm30_paths + '/bin/pic30-gcc.exe');
if ierr<0 & answ_c30=='1' // path is wrong!!!
CC_path_valid = %F;
if exists('INSTALLER_BATCH_MODE')==0 & exists('answ_retry')==0
answ_retry = buttondialog("Inserted path is not valid! (Yes: to retry, No: to abort)","yes|no","question");
answ_retry_up = 1;
else
if exists('answ_retry')==0
answ_retry = '2'; // error in case of batch_mode - installer...
end
end
if answ_retry=='2'
waitbar(" " + "\n" + ..
" # Installation Error # " + "\n" + ..
" Please, install a valid compiler " + "\n" + ..
" otherwise code generator will not work! " + "\n" + ..
" path + /bin/pic30-gcc.exe NOT FOUND! " + "\n" + ..
" Installation aborted! ", winId_wait);
EE_debug_printf(' Installation aborted!', fd_log);
EE_debug_printf('### END ###', fd_log);
mclose(fd_log);
cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return;
end
if answ_retry=='0'
CC_path_valid = %T; // ignore wrong paths...
end
else
CC_path_valid = %T; // path is OK...
end
if exists('answ_retry_up')==1
clear answ_retry answ_retry_up
end
end
// COMMON_OIL.PREF file is created
[fd,err] = mopen(MYDIR+'scicos_ee\utils\common_oil.pref', 'w');
if err ~= 0
waitbar(" " + "\n" + ..
" # Installation Error # " + "\n" + ..
" Access denied! Is not possible to create a pref file! " + "\n" + ..
" Please, run ScicosLab with administrator privileges. " + "\n" + ..
" Installation aborted! " + "\n" + ..
" ", winId_wait);
EE_debug_printf(' #error: Access denied! Is not possible to create a preferences file!', fd_log);
EE_debug_printf(' #error: Please, run ScicosLab with administrator privileges to install the toolbox', fd_log);
EE_debug_printf(' Installation aborted!', fd_log);
EE_debug_printf('### END ###', fd_log);
mclose(fd_log);
cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return;
end
mfprintf(fd,"# Path to the ASM30 Assembler\n");
mfprintf(fd,"# NOT the assembler distributed with the C30 Compiler!\n");
mfprintf(fd,"preference_pic30__path_for_asm_compiler = ");
//mfprintf(fd, strsubst(c30_asm30_paths,'\','\\\\') );
mfprintf(fd, c30_asm30_paths );
mfprintf(fd,"\n");
mfprintf(fd,"\n");
mfprintf(fd,"# Path to the C30 Assembler\n");
mfprintf(fd,"preference_pic30__path_for_gcc_compiler = ");
//mfprintf(fd, strsubst(c30_asm30_paths,'\','\\\\') );
mfprintf(fd, c30_asm30_paths );
mfprintf(fd,"\n");
mfprintf(fd,"\n");
mfprintf(fd,"# Erika Enterprise path\n");
mfprintf(fd,"erika_enterprise_location=${eclipse_home}/../ee\n");
mfprintf(fd,"\n");
mfprintf(fd,"\n");
mclose(fd);
waitbar(" " + "\n" + ..
" Creating preferences file common_oil.pref ... Done! " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
// 30%
waitbar(0.3, winId_wait);
// Check the existence of scicos_ee folder in contrib
res = isdir(SCIDIR+'\contrib\scicos_ee');
if res==%T
waitbar(" " + "\n" + ..
" # Installation Warning # " + "\n" + ..
" An old version of the ScicosLab pack was found! " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
EE_debug_printf(' An old version of the ScicosLab pack was found!', fd_log);
if exists('INSTALLER_BATCH_MODE')==0 & exists('ans_old_inst_rm')==0
ans_old_inst_rm = buttondialog("The old version of the ScicosLab pack will be removed.\nDo you want to continue? (Yes: to continue, No: to abort)","yes|no","question");
ans_old_inst_rm_up = 1;
else
if exists('ans_old_inst_rm')==0
ans_old_inst_rm = '1'; // remove old pack by default.
end
end
if ans_old_inst_rm=='1'
// UNINSTALLER: Delete scicos_ee folder from contrib
waitbar(" " + "\n" + ..
" Deleting files... " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
EE_debug_printf(' Deleting files...', fd_log);
// Unlink DLLs
exec(MYDIR + 'scicos_ee\utils\unlink_dll.sce');
// Removing scicos_ee
cd(SCIDIR+'\contrib');
cmd = 'rmdir /s /q scicos_ee';
unix(cmd);
else
waitbar(" " + "\n" + ..
" The installation was interrupted! " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
EE_debug_printf(' The installation was interrupted!', fd_log);
EE_debug_printf('### END ###', fd_log);
mclose(fd_log);
cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return;
end
end
// Ask if the user wants to proceed...
if exists('INSTALLER_BATCH_MODE')==0 & exists('ans_inst_go')==0
ans_inst_go = buttondialog("The ScicosLab pack will be installed.\nDo you want to continue? (Yes: to continue, No: to abort)","yes|no","question");
ans_inst_go_up = 1;
else
if exists('ans_inst_go')==0
ans_inst_go = '1'; // continue with the installation by dafault...
end
end
if ans_inst_go=='1'
waitbar(" " + "\n" + ..
" The ScicosLab pack for FLEX and Easylab " + "\n" + ..
" will be installed... " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
cd(SCIDIR+'\contrib');
EE_debug_printf(' EE Scicos pack will be installed...', fd_log);
cmd = 'mkdir scicos_ee';
unix(cmd);
cmd = 'start xcopy '+ascii(34)+MYDIR+'scicos_ee'+ascii(34)+' '+ascii(34)+SCIDIR+'\contrib\scicos_ee'+ascii(34)+' /s /e /y /i';
unix(cmd);
else
waitbar(" " + "\n" + ..
" The installation was interrupted! " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
EE_debug_printf(' The installation was interrupted!', fd_log);
EE_debug_printf('### END ###', fd_log);
mclose(fd_log);
cd(home); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return;
end
// 40%
waitbar(0.4, winId_wait);
// Check copy is finished
EE_debug_printf(' ...copying Scicos EE files...', fd_log);
EE_debug_printf(' Please, do not close the MSDOS window.', fd_log);
EE_debug_printf(' It will be closed automatically at the end of copy.', fd_log);
waitbar(" " + "\n" + ..
" Copying files... " + "\n" + ..
" (Copy may take several seconds!) " + "\n" + ..
" Please, do not close the MSDOS window. " + "\n" + ..
" It will be closed automatically at the end of copy. " + "\n" + ..
" ", winId_wait);
realtimeinit(1);
realtime(0);
// winId_prog=progressionbar('EE Scicos pack. Copying files...');
res_examples = %F;
res_RTD_conf = %F;
res_RTD_p2 = %F;
res_RTD_plugins = %F;
res_flex_dspic = %F;
res_flex_gw = %F;
res_flex_msvc = %F;
res_flex_rttemp = %F;
res_user = %F;
res_scicosee = isdir(SCIDIR+'\contrib\scicos_ee');
res_utils = isdir(SCIDIR+'\contrib\scicos_ee\utils');
i = 0;
if res_scicosee==%F
waitbar(" " + "\n" + ..
" # Installation Error # " + "\n" + ..
" Access denied! Is not possible to install the toolbox! " + "\n" + ..
" Please, run ScicosLab with administrator privileges. " + "\n" + ..
" Installation aborted! " + "\n" + ..
" ", winId_wait);
EE_debug_printf(' #error: Access denied! Is not possible to create the directories!', fd_log);
EE_debug_printf(' #error: Please, run ScicosLab with administrator privileges to install the toolbox', fd_log);
EE_debug_printf(' Installation aborted!', fd_log);
// winclose(winId_prog);
EE_debug_printf('### END ###', fd_log);
mclose(fd_log);
cd(home); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return;
end
while res_utils==%F,
res = 0.4;
res_examples = isdir(SCIDIR+'\contrib\scicos_ee\examples');
res = res + res_examples*0.02;
res_RTD_conf = isdir(SCIDIR+'\contrib\scicos_ee\RT-Druid\configuration');
res = res + res_RTD_conf*0.02;
res_RTD_p2 = isdir(SCIDIR+'\contrib\scicos_ee\RT-Druid\p2');
res = res + res_RTD_p2*0.04;
res_RTD_plugins = isdir(SCIDIR+'\contrib\scicos_ee\RT-Druid\plugins');
res = res + res_RTD_plugins*0.02;
res_flex_dspic = isdir(SCIDIR+'\contrib\scicos_ee\scicos_flex\dspic');
res = res + res_flex_dspic*0.2;
res_flex_gw = isdir(SCIDIR+'\contrib\scicos_ee\scicos_flex\flex_usb2udp_gateway');
res = res + res_flex_gw*0.05;
res_flex_rttemp = isdir(SCIDIR+'\contrib\scicos_ee\scicos_flex\RT_templates');
res = res + res_flex_rttemp*0.02;
res_user = isdir(SCIDIR+'\contrib\scicos_ee\user');
res = res + res_user*0.04;
res_utils = isdir(SCIDIR+'\contrib\scicos_ee\utils');
res = res + res_utils*0.02;
waitbar(res, winId_wait); // to increment the bar...
i = i+1;
realtime(i);
// progressionbar(winId_prog);
end
// winclose(winId_prog);
// 90%
waitbar(0.9, winId_wait);
// Check .scilab file presence
EE_debug_printf(' ', fd_log);
res = grep(SCIHOME,'4.4.1');
if res==[]
cd(MYDIR+'scicos_ee\user\Scilab\4.4b7'); // 4.4b7
else
cd(MYDIR+'scicos_ee\user\ScicosLab\4.4.1'); // 4.4.1
end
if exists('INSTALLER_BATCH_MODE')==1
//% batch installer write in the .scilab
[x,ierr]=fileinfo(SCIHOME+'\.scilab');
if ierr==0
waitbar(" " + "\n" + ..
" # Installation Warning # " + "\n" + ..
" The installation should modify the .scilab script " + "\n" + ..
" Please, if the .scilab file is open, " + "\n" + ..
" close it before proceeding... " + "\n" + ..
" ", winId_wait);
EE_debug_printf(' #warning: Please, if the .scilab file is open, close it before proceeding...', fd_log);
if exists('answ_dot_scilab')==0
answ_dot_scilab = '1'; // allow changes in .scilab by default...
end
// EE_debug_printf(' #warning: .scilab file found!', fd_log);
txt=mgetl(SCIHOME+'\.scilab');
else
// EE_debug_printf(' #warning: .scilab file not found!. The file will be created.', fd_log);
txt=[];
if exists('answ_dot_scilab')==0
answ_dot_scilab = '1'; // allow changes in .scilab by default...
end
end
if answ_dot_scilab=='1'
res = grep(txt,'### Scicos EE ###');
if res ~= [] // the string was found...
// UNINSTALLER: .scilab will be cleaned
// EE_debug_printf(' #warning: .scilab should be cleaned!', 0);
res_begin = grep(txt,'### Scicos EE ###');
res_end = grep(txt,'### Scicos EE - end ###');
if res_end==[]
waitbar(" " + "\n" + ..
" # Installation Error # " + "\n" + ..
" .scilab file is corrupted! " + "\n" + ..
" Please, delete the .scilab file and retry... " + "\n" + ..
" Installation aborted! " + "\n" + ..
" ", winId_wait);
EE_debug_printf(' #error: .scilab file is corrupted!', fd_log);
EE_debug_printf(' Installation aborted!', fd_log);
EE_debug_printf('### END ###', fd_log);
mclose(fd_log);
cd(home); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return;
else
// EE_debug_printf(' #warning: .scilab was successfully restored!', 0);
res = size(txt);
new_txt = [txt(1:res_begin-1);txt(res_end+1:res(1))];
mputl(new_txt, SCIHOME+'\.scilab');
end
end
[fd,err]=mopen(SCIHOME+'\.scilab', 'a');
txt=mgetl('.scilab');
res = size(txt);
mfprintf(fd,"\n");
mfprintf(fd,"\n");
mfprintf(fd,"// ### Scicos EE ###\n");
mfprintf(fd,"\n");
for i=1:res(1),
mfprintf(fd,"%s\n",txt(i));
end
mfprintf(fd,"\n");
mfprintf(fd,"// ### Scicos EE - end ###\n");
mfprintf(fd,"\n");
mclose(fd);
end
end
// 95%
waitbar(0.95, winId_wait);
// Build Scicos EE pack
waitbar(" " + "\n" + ..
" Building ScicosLab EE pack... " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
clc
EE_debug_printf(' Building ScicosLab EE pack...', fd_log);
cd(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic");
exec builder.sce
// Create and move Scicos EE pack palettes
waitbar(" " + "\n" + ..
" Creating ScicosLab Pack palettes... " + "\n" + ..
" (Depending on your installation, now ScicosLab " + "\n" + ..
" can generate many warnings, do not worry...) " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
EE_debug_printf(' Creating ScicosLab EE palettes...', fd_log);
create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\AMAZING");
create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\FLEX");
create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\FLEX-Communication");
create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\FLEX-DMB");
create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\FLEX-MTB");
create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\RT-Data-Exchange");
create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\EASYLAB");
create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\MISC");
create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\CG-Sources");
// SMCube palette
create_palette(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\flex_blocks\SMCube");
// Copy the palettes in the directory
cd(MYDIR+'scicos_ee\utils');
cmd = 'start cp_cosf.bat ' + ascii(34)+SCIDIR+ascii(34);
unix(cmd);
cmd = 'start xcopy '+ascii(34)+SCIDIR+'\contrib\scicos_ee\utils\common_oil.pref'+ascii(34)+' '+ascii(34)+SCIDIR+'\contrib\scicos_ee\RT-Druid\configuration'+ascii(34)+' /s /e /y /i';
unix(cmd);
[x,err] = fileinfo(SCIDIR + "\contrib\scicos_ee\utils\configuration.ini");
if err == 0
cmd = 'start xcopy '+ascii(34)+SCIDIR+'\contrib\scicos_ee\utils\configuration.ini'+ascii(34)+' '+ascii(34)+SCIDIR+'\contrib\scicos_ee\bin'+ascii(34)+' /s /e /y /i';
unix(cmd);
end
// Clear some unnecessary files..
if exists('NO_APPS_CHECK')==0
cmd = 'del apps.list';
unix(cmd);
end
[x,err] = fileinfo('common_oil.pref');
if err == 0
cmd = 'del common_oil.pref';
unix(cmd);
end
// Fixes: REGISTER
if exists('INSTALLER_BATCH_MODE')==0 & exists('ans_reg_fix')==0
ans_reg_fix = buttondialog("The Scicos pack will now install a fix to the REGISTER block," + ..
" which has been fixed after the release of scicosLab 4.4.1.\nIf you are using that version of scicosLab," + ..
" and you did not install the fix,\nplease answer yes to this question. (Yes: to continue, No: to skip)","yes|no","question");
ans_reg_fix_up = 1;
else
if exists('ans_reg_fix')==0
ans_reg_fix = '1'; // continue with the installation by dafault...
end
end
if ans_reg_fix == '1'
cd(MYDIR + 'scicos_ee\utils\fixes\register');
cmd = 'start fix.bat ' + ascii(34)+SCIDIR+ascii(34);
unix(cmd);
end
// 99%
waitbar(0.99, winId_wait);
if exists('INSTALLER_BATCH_MODE')==0
waitbar(" " + "\n" + ..
" Creating ScicosLab Pack Help... " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
clc
EE_debug_printf(' Building ScicosLab EE pack Help...', fd_log);
cd(SCIDIR+"\contrib\scicos_ee\scicos_flex\dspic\macros\man");
exec builder.sce
end
// End
// 100%
waitbar(1, winId_wait);
waitbar(" " + "\n" + ..
" Installation completed successfully! " + "\n" + ..
" Please, restart ScicosLab for the changes " + "\n" + ..
" to take effect... " + "\n" + ..
" " + "\n" + ..
" ", winId_wait);
EE_debug_printf(' Installation completed successfully!', fd_log);
EE_debug_printf(' Please, restart ScicosLab for the changes to take effect...', fd_log);
EE_debug_printf('### END ###', fd_log);
mclose(fd_log);
cd(OLDDIR); exec(MYDIR+'scicos_ee\utils\clear_inst_vars.sce'); return;
|
6cfe80cb49a1cd9d7427145af15281ec5baa5952 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1952/CH7/EX7.8/Ex7_8.sce | fdebed8138b005e33a96c9f4bf6bbd85fe23b76e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 882 | sce | Ex7_8.sce | // chapter 7 , Example 7.8 , pg 212
rho=2.12 //resistivity (in ohm*m)
T=300 //temperature (in K)
Un=0.36 //electron mobility (in m^2/(V*s))
Up=0.17 //hole mobility (in m^2/(V*s))
h=6.625*10^-34 //plancks constant (in m^2*Kg*S^-1)
k=1.38*10^-23 //Boltzmann constant (in J/K)
e=1.6*10^-19 //charge in electron (in C)
Me=9.11*10^-31 //mass of electron (in Kg)
Mn=0.5*Me //electron effective mass
Mp=0.37*Me //hole effective mass
ni=1/(rho*e*(Un+Up)) //intrinsic concentration (in m^-3)
Nc=2*((2*%pi*k*T)/h^2)^(3/2)*(Mn)^(3/2) //effective density of states in conduction band (in m^-3)
Nv=2*((2*%pi*k*T)/h^2)^(3/2)*(Mp)^(3/2) //effective density of states in valence band (in m^-3)
Eg=2*k*T*log(sqrt(Nc*Nv)/ni) //Forbidden energy gap
printf("Forbidden energy gap=")
printf("Eg=%.3f eV",Eg/e)
|
f3e2927eaccb10b1d87da23709654d95493c0366 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3866/CH2/EX2.6/Ex2_6.sce | 5cbe032cda92a4e1f4d9172d4308a0b5da2050af | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 261 | sce | Ex2_6.sce | clear; clc; close;
vgs=1.8;
vt=0.5;
cl=200*(10^(-9));
enln=6*(10^6)*cl;
eplp=24*(10^6)*cl;
vdsat1=((vgs-vt)*enln)/(vgs-vt+enln);
vdsat2=((vgs-vt)*eplp)/(vgs-vt+eplp);
disp(vdsat1,'Vdsat for NMOS(in volts)');
disp(vdsat2,'Vdsat for PMOS(in volts)');
|
c2b79b5401a15be11340c8261cbd0714b2f8eb5d | 449d555969bfd7befe906877abab098c6e63a0e8 | /548/CH2/EX2.4/2_4.sce | bb03bb34a07738262638367c7e48a66102262910 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 194 | sce | 2_4.sce | pathname=get_absolute_file_path('2_4.sce')
filename=pathname+filesep()+'2_4data.sci'
exec(filename)
printf("\Answer:\n")
printf("\n\Density of air at the given point: %f Kg/m^3\n\n",density) |
92a02dee2d77c366dad297f0cdf7a7a8e5795180 | cab1992a709a3eb977bef46f17eadab0c7bbbc5f | /modeling_simulation/ofc_reaching_task.sce | 22df6f4afe5a0b5c5ff23457058fdd424b1f7773 | [] | no_license | andreinakagawa/neuroscience | 80ab70cfc2c7df7d7891373cc9c889b4b8f83dd6 | 681125f0e1248269665749ed8bf17d5cfe6c2fda | refs/heads/master | 2021-06-07T09:37:51.810764 | 2017-10-05T11:32:03 | 2017-10-05T11:32:03 | 15,914,740 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,619 | sce | ofc_reaching_task.sce | //------------------------------------------------------------------------------
// FEDERAL UNIVERSITY OF UBERLANDIA
// Faculty of Electrical Engineering
// Biomedical Engineering Lab
// Uberlandia, Brazil
//------------------------------------------------------------------------------
// Author: Andrei Nakagawa, MSc
// Contact: andrei.ufu@gmail.com
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
clear;
clc;
//------------------------------------------------------------------------------
//Kalman filter
function [xplus,pplus] = kalman(F,G,H,Q,R,xk,pk,yk,uk)
//time update (prediction)
xminus = F*xk + G*uk;
pminus = F*pk*F' + G*Q*G';
//measurement update (correction)
measureError = yk - (H*xminus);
kalmanGain = pminus*H' * inv(H*pminus*H' + R);
//state estimate
xplus = xminus + kalmanGain * measureError;
//covariance
pplus = pminus - kalmanGain*H*pminus;
endfunction
//------------------------------------------------------------------------------
//States
//Position and velocity in X
//Position and velocity in Y
//Inputs
//Force in X and Y
function [Ac,Bc,Cc] = pointMassModel(m)
Ac = [0 1 0 0; 0 0 0 0; 0 0 0 1; 0 0 0 0];
Bc = [0 0; 1/m 0; 0 0; 0 1/m];
Cc = eye(size(Ac,1),size(Ac,2))
endfunction
//------------------------------------------------------------------------------
[A,B,C] = pointMassModel(1);
//------------------------------------------------------------------------------
//Simulation parameters
t0=0;
tf=3;
dt = 0.01;
t = t0:dt:tf;
//Continuous-time system
contSys = syslin('c',A,B,C);
//Discrete-time system
discSys = dscr(contSys,dt);
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//Weight matrices
Qd=diag([0.1,0.1,0.1,0.1]);
Rd=diag([0.01,0.01]);
//Discrete riccati
Ad = discSys(2); //A
Bd = discSys(3); //B
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//Differential Riccati Equation - Discrete-time
//Calculating the solution to riccati for each instant in time
//and then finding the time-varying gain for each time step
//------------------------------------------------------------------------------
Sdisc = [];
Kdisc = [];
S0 = diag([500,0,120,0]); //Estimate for the Riccati matrix
for k=1:length(t)
//Calculating the time-varying gain
K = inv(Bd'*S0*Bd + Rd)*(Bd'*S0*Ad);
//New riccati solution
S0 = Ad'*S0*Ad - Ad'*S0*Bd*((Rd + Bd'*S0*Bd)^-1)*Bd'*S0*Ad + Qd;
//Stores the riccati solution
Sdisc = [S0 Sdisc];
//Stores the gain
Kdisc = [Kdisc K];
end
//------------------------------------------------------------------------------
cont = 1;
//Desired setpoints or reference trajectory
xd = [0;0;5;0];
xint = []; //stores all the states during integration
uint = []; //stores all the inputs during integration
costQ = [0]; //cost of states
costR = [0]; //cost of control
x0 = [0;0;0;0]; //temporary variable for storing states
u0 = [0;0];
x = x0;
xint = [xint x0];
uint = [uint u0];
q = zeros(2,2);
r = eye(4,4);
x00=x0;
p0 = eye(4,4);
xp = [];
yk = [x0];
yn = [x0];
xpp=x0;
for k=1:length(t)-1
//Calculating the input
u = -Kdisc(:,cont:cont+3) * (xpp-xd);
//Calculating the new states
x = Ad*x + Bd*u;
//State estimation
ykk = discSys.C * x;
ynn = ykk + rand(1,'normal')/10;
[xpp,pp] = kalman(discSys.A,discSys.B,discSys.C,q,r,x00,p0,ynn,u);
yk = [yk ykk];
yn = [yn ynn];
xp = [xp xpp];
x00 = xpp;
p0 = pp;
//Storing the new states
xint = [xint x];
//Storing the new inputs
uint = [uint u];
//Stores the cost in this step
costQ = [costQ (x-xd)'*Qd*(x-xd)];
//Stores the cost in this step
costR = [costR u'*Rd*u];
//Increments the counter to loop through the gain matrix
cont = cont + 4;
end
//------------------------------------------------------------------------------
figure();
plot(xint(1,:),xint(3,:),'k');
plot(xint(1,$),xint(3,$),'k.');
plot(x0(1),x0(3),'b.');
plot(xd(1),xd(3),'r.');
ax=gca();
ax.data_bounds=[-1 -5; 1 5];
figure();
plot(t,xint(2,:),'r');
plot(t,xint(4,:),'g');
plot(t,uint(1,:),'k');
plot(t,uint(2,:),'k');
figure();
plot(t,costQ,'r');
plot(t,costR,'b');
figure();
plot(t,yn(3,:),'g');
plot(t,yk(3,:),'b');
plot(t,xint(3,:),'r.');
//------------------------------------------------------------------------------
|
f81a4b73e94e395a308030b1efcb304a9bb5ccd1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1061/CH8/EX8.7/Ex8_7.sce | 2f1f2d709bab4059fbd6825afa991e6a6b599ee9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 432 | sce | Ex8_7.sce | //Ex:8.7
clc;
clear;
close;
n=1.5;// refractive index
L=0.05;// crystal length in m
y=0.5*10^-6;// wavelength in m
c=3*10^8;// speed of light in m/s
q=2*n*L/y;// the number of longitudinal modes
df=c/(2*n*L);// frequency separation of the modes in Hz
Df=df/10^9;// frequency separation of the modes in GHz
printf("The number of longitudinal modes =%f", q);
printf("\n The frequency separation of the modes =%f GHz", Df); |
adc431018b29399cddd95613d5414b557d66fefd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3773/CH4/EX4.3/Ex4_3.sce | 2cba1573726fff09ab36f73130ddc8b6345aebdd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 373 | sce | Ex4_3.sce | //Chapter 4: Radiation
//Example 4-4.3
clc;
//Variable Initialization
c = 3e8 //Speed of light (m/s)
f = 3e9 //Frequency (Hz)
//Calculation
v = 0.6*c //60% of velocity of light (m/s)
w = 2*%pi*f //Angular frequency (rad/s)
r = v/w //Distance (m)
//Result
mprintf("The distance for the specified condition is %.6f m", r)
|
0aef7a12e94bb3c193e5175dfc4aacaf5604fe35 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1931/CH12/EX12.7/7.sce | f4a8f84908d262908fea899cbcbdbd819fd5012a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 316 | sce | 7.sce | clc
clear
//INPUT DATA
Hc=10^5//The critical field for vanadium at 8.58K in A/m
Ho=2*10^5//The critical field for vanadium at 0K in A/m
T=8.58//temperature for vanadium in K
//CALCULATION
Tc=(T/(sqrt(1-(Hc/Ho))))//The critical temperature in K
//OUTPUT
printf('The critical temperature is %3.3f K',Tc)
|
0139b3aa1f0161ff9b3b2f193b96804fa503d38a | 9cbb0181f0213b9ba6012353a85b932a35f875d8 | /Data_Processing/plot-2.sce | 13c07f867773a44b0df6cc3088a2a4f099bf49e2 | [] | no_license | bozhink/sandpile-pi4 | dfcd24c19f59c6170aef4ff2eeb298411b80518e | bd5f158ec9cb8cac2d4f7d66cdc661b672241c6b | refs/heads/master | 2021-01-10T14:21:27.477065 | 2014-03-01T17:05:47 | 2014-03-01T17:05:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,512 | sce | plot-2.sce |
// Graphics of DSM histograms
// Z=1 model
scf(0);clf();
a = get("current_axes");
a.x_label.font_size=4;
a.x_label.text="$\log_{10}t$";
a.y_label.font_size=4;
a.y_label.text="$\log_{10}P(t)$";
a.title.foreground=9;
a.title.font_size=4;
a.title.text="$\textrm{Time distribution probability in Z=1 model}$";
DIR='th/z01/';
t = read(DIR+'3000',-1,3); nt=max(size(t));
plot2d(log10(t(2:nt,1)), log10(t(2:nt,3)),[2]);
t = read(DIR+'2000',-1,3); nt=max(size(t));
plot2d(log10(t(2:nt,1)), log10(t(2:nt,3)),[3]);
t = read(DIR+'1000',-1,3); nt=max(size(t));
plot2d(log10(t(2:nt,1)), log10(t(2:nt,3)),[4]);
ht = legend(['$L=3000$', '$L=2000$', '$L=1000$']);
ht.font_size=3; ht.visible='on';
tname = "graphics/histograms/t-z1.png";
unix('rm '+tname);
xs2png(gcf(), tname);
scf(1);clf();
a = get("current_axes");
a.x_label.font_size=4;
a.x_label.text="$\log_{10}s$";
a.y_label.font_size=4;
a.y_label.text="$\log_{10}P(s)$";
a.title.foreground=9;
a.title.font_size=4;
a.title.text="$\textrm{Size distribution probability in Z=1 model}$";
DIR='sh/z01/';
t = read(DIR+'3000',-1,3); nt=max(size(t));
plot2d(log10(t(2:nt,1)), log10(t(2:nt,3)),[2]);
t = read(DIR+'2000',-1,3); nt=max(size(t));
plot2d(log10(t(2:nt,1)), log10(t(2:nt,3)),[3]);
t = read(DIR+'1000',-1,3); nt=max(size(t));
plot2d(log10(t(2:nt,1)), log10(t(2:nt,3)),[4]);
hs = legend(['$L=3000$','$L=2000$', '$L=1000$']);
hs.font_size=3; hs.visible='on';
sname = "graphics/histograms/s-z1.png";
unix('rm '+sname);
xs2png(gcf(), sname);
|
38f8ceca7d21858f4e580ce96e5b1ddd18dadbdc | 449d555969bfd7befe906877abab098c6e63a0e8 | /3755/CH12/EX12.4/Ex12_4.sce | bf6c51c568af62f0652437248b019a2b973d972f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 240 | sce | Ex12_4.sce | clear
//
//
//
//Variable declaration
P=10*10^-3; //power(W)
d=1.3*10^-3; //diameter(m)
//Calculation
I=4*P/(%pi*d^2); //intensity of beam(W/m^2)
//Result
printf("\n intensity of beam is %0.1f kW/m^2",I/10^3)
|
9ed7d79b23b921d68debd13dcef952141784da16 | 68e53df229b123d7681a4f7fa4db43b4982d5362 | /pole.sci | f1ef6afeb5c6abc1d233a929dd2678e2ff070d1a | [] | no_license | yeoleparesh/Control-system | 06c30e594d51fec7a8ffabc452a7866b38604a23 | dee7fbfd3c2c46cc1d4d0a3cb8af45d918da972b | refs/heads/master | 2021-01-17T12:38:05.661769 | 2019-01-03T12:03:53 | 2019-01-03T12:03:53 | 59,283,431 | 0 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 1,826 | sci | pole.sci | function [x]=pole(sys)
//Calling Sequence
// pole(sys)
//Description
//Compute poles of dynamic system
//
//pole(sys) computes the poles p of the SISO or MIMO dynamic system model sys.
//For state-space models, the poles are the eigenvalues of the A
//matrix
//Algorithm:- Used scilab's roots of denominator and converted SS into tf model.
// For MIMO and SISO array cell matrix is created and the poles of the corresponding tf is passed in the cell
//o/p will be a "cell array"
//in order to access the values convert it into matrix by cell2mat
//Examples
//s=poly(0,'s');sysa=syslin('c',(s+2)/(s^2+2*s+3));
//aa=pole(sysa)
//to access the values use:-
//aa=cell2mat(aa);
//aa(1)
//
//sys1=syslin('c',(s+8)/(s^8+3*s+4));
//sysm=[sysa sys1];
//r=pole(sysm);
//r(1) ---poles of sysm(1,1)
//r(2) ---poles of sysm(1,2)
//cell2mat(r(2)); ---to disp all the poles
//See also
// zeros,dcgain
//Authors
// Paresh Yeole
[lhs,rhs]=argn(0)
if rhs == 0 then
error(msprintf(gettext("Not enough input arguments")))
end
select typeof(sys)
case "rational" then
//x=roots(sys.den);
case "state-space" then
sys=ss2tf(sys)
else
error(97,1),
end;
if(ndims(sys)==3) then
x=cell(size(sys,'r'),size(sys,'c'),size(sys,3));
for i=1:size(sys,'r')
for j=1:size(sys,'c')
for k=1:size(sys,3)
x(i,j,k).entries=roots(sys(i,j,k).den);
end
end
end
elseif(ndims(sys)==2) then
x=cell(size(sys,'r'),size(sys,'c'));
for i=1:size(sys,'r')
for j=1:size(sys,'c')
x(i,j).entries=roots(sys(i,j).den);
end
end
else
x=roots(sys.den);
end
//x=cell2mat(x);
endfunction
|
b2b40f51f2e4931ed5127effebeedda77eb45c5b | 2c2dc93267283e4aebcffffd5bd76e19ddcf5cc7 | /output/C45-C.glass/Prob-result1.tst | c199cd0a87a545f458db62ca340a0bcacc1daf85 | [] | no_license | joseangeldiazg/probabilistic_keel | c9cf4ddc2cf750cbbeca88e6f84218084892ae1f | 6c5ddf8c98cc7431d523b291e521d1e8607dc662 | refs/heads/master | 2020-05-21T12:26:41.754863 | 2017-01-08T10:29:44 | 2017-01-08T10:29:44 | 55,733,275 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,097 | tst | Prob-result1.tst | True-Class 1 2 3 4 5 6 7
1 0.0 0.0 1.0 0.0 0.0 0.0 0.0
1 1.0 0.0 0.0 0.0 0.0 0.0 0.0
1 1.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.8333333333333334 0.16666666666666666 0.0 0.0 0.0 0.0 0.0
1 1.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.11363636363636363 0.8181818181818182 0.06818181818181818 0.0 0.0 0.0 0.0
1 1.0 0.0 0.0 0.0 0.0 0.0 0.0
2 0.0 0.6666666666666666 0.3333333333333333 0.0 0.0 0.0 0.0
2 0.11363636363636363 0.8181818181818182 0.06818181818181818 0.0 0.0 0.0 0.0
2 0.0 1.0 0.0 0.0 0.0 0.0 0.0
2 0.0 0.6666666666666666 0.3333333333333333 0.0 0.0 0.0 0.0
2 0.0 0.0 0.0 0.0 0.0 1.0 0.0
2 0.11363636363636363 0.8181818181818182 0.06818181818181818 0.0 0.0 0.0 0.0
2 0.11363636363636363 0.8181818181818182 0.06818181818181818 0.0 0.0 0.0 0.0
2 0.0 0.0 0.0 0.0 0.0 0.0 1.0
3 0.11363636363636363 0.8181818181818182 0.06818181818181818 0.0 0.0 0.0 0.0
3 0.0 0.6666666666666666 0.3333333333333333 0.0 0.0 0.0 0.0
5 0.0 0.0 0.0 0.0 0.0 0.0 1.0
5 0.0 0.75 0.0 0.0 0.25 0.0 0.0
6 0.0 0.0 0.0 0.0 0.0 1.0 0.0
7 0.0 1.0 0.0 0.0 0.0 0.0 0.0
7 0.0 0.0 0.0 0.0 0.0 0.0 1.0
7 0.0 0.0 0.0 0.0 0.0 0.0 1.0
|
2fbac623325bd7d6dac05f6e2e29118524e49233 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electrical_Power_Systems_A._Husain_1118.zip/Electrical_Power_Systems_A._Husain_1118/CH19/EX19.5/eg19_5.sce | 6bf94e042b37440e935b4ef377cc446179149cfc | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 171 | sce | eg19_5.sce | errcatch(-1,"stop");mode(2);;
//;
s1=500;
h1=4.6;
s2=1500;
s=100;
h2=3;
ke=s1*h1 + s2*h2;
H=ke/s;
printf("the inertia constants H is:%.0f MJ/MVA\n",H);
exit();
|
fc07d0ef7137cedac0ecdd2b4847ec9e2567cea4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /869/CH12/EX12.4/12_4.sce | 568d60dca8c974c0b22c67492a9f54ef73ba2356 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 280 | sce | 12_4.sce | clc
//initialisation of variables
st= 1200 //psi
sc= 100 //psi
h= 12 //in
b= 4 //in
//CALCULATIONS
I= b*h^3/12
P1= st*I/(b*12*(h/2))
P2= 2*sc*b*12/3
if (P1<P2)
printf ('Safe value of p= %.f lB',P1)
else
printf ('Safe value of p= %.f lB',P2)
end
|
9e05134d22e7cae3fcc60a11d2fc5ee06d6cf1fa | 13195192acc730725307108d600fa0c8521661a7 | /Gauss.sce | 993f7b6039d41b97023b03f9545458c57cbc4ea9 | [] | no_license | vsapiens/Numerical-Methods | 7c3fc223d60271786ee23e4ae489365c6e8ab781 | 4ec4facfe2eeb171ff0234e1c3f752115f7fb8a5 | refs/heads/master | 2020-04-25T05:21:00.798079 | 2019-04-25T16:15:31 | 2019-04-25T16:15:31 | 172,539,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,708 | sce | Gauss.sce |
////////////////////////////////////////////////////
// Gauss.sce
// El método Gauss Jordan para resolver matrices
//
// Erick González
// Victor Villarreal
// 26/2/2019 versión 1.0
////////////////////////////////////////////////////
////////////////////////////////////////////////////
// Gauss_Jordan
//La función recibe una matriz para resolver las
// incógnitas
//
//
// Parámetros:
// MAT matriz de entrada
//
// Retorno:
// X solución de la matriz en forma reducida
//
////////////////////////////////////////////////////
function X = Gauss_Jordan(MAT)
for( i = 1 : size(MAT,1))
//el pivote anterior es
pivote = MAT(i,i)
for ( j = 1 : size(MAT,2))
//divide cada parte de la columna entre el pivote
MAT(i,j) = MAT(i,j)/ pivote
end
for(k = 1 : size(MAT,1))
// mientras que sea diferente el renglón k de i entonces se modifica el factor
if(k <> i)
factor = -MAT(k,i)
// cada columna se añade la posición I,J por el factor de cambio anterior
for ( j = 1 : size(MAT,2))
MAT(k,j) = MAT(k,j) +factor*MAT(i,j)
end
end
end
end
X = MAT
endfunction
////////////////////////////////////////////////////
// Instrucciones del programa principal
////////////////////////////////////////////////////
// se llama para leer la entrada de la matriz
MAT = input("Da la Matriz")
//se llama la función principal para resolver la matriz
X = Gauss_Jordan(MAT)
// despliegar la solución de la matriz
disp(X)
|
d139a66ed4039a05f46448efd26d0d24ff71a6b9 | 156f726ab46174486e8c6bf129c56105465328b1 | /jury.sci | 81110539e12b6bee304608e3f77d901143e1215d | [] | no_license | taypi/jury | a2bd836a4cd91f8f65b308537e86a34849a6a522 | b36a620cb505330075f6eb97c010ba7da0e8244f | refs/heads/master | 2021-01-10T02:51:06.665253 | 2015-12-11T00:06:25 | 2015-12-11T00:06:25 | 47,794,768 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,202 | sci | jury.sci | function [estavel] = jury(poli)
estavel = 1;
inverse = coeff(poli);
vector = flipdim(inverse,2);
numOfRoots = 0;
hasAZero = 0;
disp("JURY: ");
if(find(vector==0) == [])
for i=1:length(vector)
disp(vector);
inverse = flipdim(vector,2);
disp(inverse);
disp("----------------------------------------");
alpha = -vector($)/vector(1);
vector = vector + alpha * inverse;
vector($) = [];
if(vector(1) <= 0) then
estavel = 0;
if(vector < 0) then
numOfRoots = numOfRoots + 1;
else
hasAZero = 1;
break;
end
end
end
else
disp("ERRO: Algum coeficente igual a zero!")
end
disp(roots(poli), "Raizes: ")
if (estavel) then
disp("Sistema estável.");
else
disp("Sistema instável.");
if (~hasAZero) then
disp(numOfRoots, "Numero de raizes fora do circulo unitario: ");
else
printf(" Contem a0 = 0, nao e possivel determinar quantidade de razies fora do circulo unitario.");
end
end
endfunction
disp("CAP 5 QUESTAO E")
//-----------------------------
p1 = z^2-1.5*z+0.9;
disp("p1 = z^2-1.5*z+0.9", "Polinomio:");
jury(p1);
//-----------------------------
p2 = z^3-3*z^2+2*z-0.5;
disp("p2 = z^3-3*z^2+2*z-0.5", "Polinomio:");
jury(p2);
//-----------------------------
p3 = z^3-2*z^2+2*z-0.5;
disp("p3 = z^3-2*z^2+2*z-0.5", "Polinomio:");
jury(p3);
//-----------------------------
p4 = z^3+5*z^2+0.25*z-1.25;
disp("p4 = z^3+5*z^2+0.25*z-1.25", "Polinomio:");
jury(p4);
//-----------------------------
p5 = z^3-1.7*z^2+1.7*z-0.7;
disp("z^3-1.7*z^2+1.7*z-0.7", "Polinomio:");
jury(p5);
//-----------------------------
p6 = z^3-1.7*z^2+1.7*z-0.7;
disp("z^3-1.7*z^2+1.7*z-0.7", "Polinomio:");
jury(p6);
//-----------------------------
disp("POLINOMIOS DA CABECA", "Polinomio:")
//-----------------------------
n1 = 10*z^6+5*z^5+z^4+z^3+2*z^2+3*z+4;
disp("10*z^6+5*z^5+z^4+z^3+2*z^2+3*z+4", "Polinomio:");
jury(n1);
//-----------------------------
|
ab889ab048c1bb170e7989287b2ced62759ba48c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2063/CH7/EX7.26/7_26.sce | 19183e330c330bf2c4a5fb6d9d025ec6f0a45773 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 924 | sce | 7_26.sce | clc
clear
//Input
F=10;//Quantity of fuel supplied during the trial of a diesel engine in kg/hr
CV=42500;//Calorific value of fuel in kJ/kg
r=20;//Air fuel ratio
T=20;//Ambient temperature in degrees celsius
mw=585;//Water circulated through the gas calorimeter in litres/hr
T1=35;//Temperature rise of water through the calorimeter in degrees celsius
T2=95;//Temperature of gases at exit from the calorimeter in degrees celsius
se=1.05;//Specific heat of exhaust gases in kJ/kgK
sw=4.186;//Specific heat of water in kJ/kgK
//Calculations
M=(F/60)*(r+1);//Mass of exhaust gases formed per minute
H=((mw/60)*sw*T1)+(M*se*(T2-T));//Heat carried away by the exhaust gases per minute in kJ/min
Hs=(F/60)*CV;//Heat supplied by fuel per minute in kJ/min
nh=(H/Hs)*100;//Percentage of heat carried away by the exhaust gas
//Output
printf('Percentage of heat carried away by exhaust gas is %3.2f percent',nh)
|
e7b299bff269c4a0e1033432f064d01d400a486b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2273/CH9/EX9.4/ex9_4.sce | 2a4f84a29cf216814f3ff40a97d8baf3a27c649b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 731 | sce | ex9_4.sce | //Find max electrostatic stresses and charging kVA
clear;
clc;
//soltion
//given
r=0.6;//cm
d=0.025;//m//Diameter of conductor
V=33000;//Volts
f=50;//Hz
l=3.4;//km
Er=3.1;//permitivity of the dielectric used
D=d+2*r*10^-2;//m//Internal diameter of sheath
gmax=2*V/(d*log(D/d));
printf("Maximum electrostatic stresses= %.1f*10^6 V/m\n",gmax/10^6);
C=0.024*Er*l*10^-6/(log10(D/d));
printf("Capacitance of cable= %.4f*10^-6 farad\n",C*10^6);
Ic=2*%pi*f*C*(V/sqrt(3));
printf("Charging current per phase per km length= %.2f A\n",Ic);
kVA=sqrt(3)*V*Ic*10^-3;
printf("Total Charging= %.2f kVAR",kVA);
//THERE ARE SOME CALCULATION ERRORS IN THE BOOK BECAUSE OF WHICH Ic=0.3078 A AND TOTAL CHARGING CURRENT= 17.57kVAR
|
da6544dbd293a2b220f3b057f6db989ed045aa47 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.16_13.tst | 4bff99fdf9c826a29f2c98044677b74a67a4c2f2 | [] | 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 | 587,381 | tst | 5.16_13.tst | 16 164:1 317:1 608:1 646:1 860:1 886:1 1010:1 1564:1 1738:1 1752:1 1789:1 1857:2 1978:1 2044:1 2150:1 2192:1 2288:1 2301:1 2414:1 2547:1 2632:1 2685:1 2764:1 2870:1 3035:1 3178:1 3218:1 3234:1 3345:1 3573:1 3642:1 3703:1 4058:1 4083:1 4208:1 4335:1 4358:1 4380:1 4386:1 4413:1 4511:1 4513:1 4516:1 4705:1 4844:1 5627:1 5661:2 5748:1 5780:1 5816:1 5817:1 5870:1 5957:1 5994:1 6101:142 6450:1 6480:1 6576:1 6705:1 6830:1 6867:1 6981:1 7319:1 7397:1 7450:1 7474:1 7476:1 7523:1 7555:1 7632:1 7671:1 7680:1 7733:1 7750:1 7751:1 8089:1 8097:1 8209:1 8225:1 8361:1 8599:1 8609:1 8894:1 8903:1 8980:1 9017:1 9158:1 9215:1 9280:1 9314:1 9402:2 9445:1 9706:1 9707:1 9747:1 9912:1 9980:1 9993:1 10018:1 10201:1 10426:1 10515:1 10714:1 10768:1 10962:1 11212:1 11303:1 11444:1 11446:1 11667:1 11729:1 11778:1 11781:1 11878:2 11983:1 12117:1 12202:1 12381:1 12559:1 12590:1 12592:1 12633:1 12823:1 12874:1 12887:1 12938:1 13362:1 13547:1 13552:1 13577:1 13582:1 13646:1 13715:1 13846:1 13855:1 13861:1 13874:1 13971:1 14104:1 14429:1 14488:1 14720:1 14872:1 15113:1 15141:1 15205:1 15281:1 15291:1 15337:1 15467:1 15601:1 15714:1 15723:1 16035:1 16048:1 16066:1 16269:1 16338:1 16464:1 16556:1 16735:1 16763:1 16930:1 17175:1 17208:1 17377:1 17442:1 17741:1 17744:1 17857:1 17941:1 18272:2 18287:1 18322:1 18385:1 18514:1 18592:1 18703:1 18723:1 18766:1 19004:1 19005:1 19007:1 19252:1 19663:1 19697:1 19790:1 19843:1 19977:1 20572:1 20740:1 20793:1 20916:1 20944:1 21022:1 21108:2 21171:1 21320:1 21361:1 21537:1 21603:1 21639:1 21711:1 21907:1 22276:1 22349:1 22352:1 22765:1 22964:1 22988:1 23034:1 23284:1 23496:1
16 164:1 317:1 384:1 413:1 507:1 608:1 646:2 838:1 860:1 886:2 904:1 1010:1 1190:1 1242:1 1366:1 1564:1 1738:1 1752:3 1789:1 1857:5 1978:1 2044:1 2045:1 2109:1 2150:1 2192:1 2288:1 2301:1 2414:1 2447:1 2483:1 2512:1 2547:1 2573:1 2625:1 2632:1 2658:1 2667:1 2685:1 2764:1 2773:1 2816:1 2870:1 2966:1 3035:2 3178:1 3218:1 3234:1 3264:1 3345:1 3559:1 3564:1 3573:2 3642:1 3703:1 3827:1 3854:1 4058:1 4083:1 4183:1 4208:2 4335:1 4358:1 4380:1 4386:1 4413:1 4511:2 4513:1 4516:1 4650:1 4705:1 4844:1 5161:1 5310:1 5383:1 5388:1 5430:1 5480:1 5521:1 5621:1 5627:1 5661:3 5748:1 5780:1 5816:1 5817:4 5870:2 5957:1 5994:1 6005:1 6066:1 6101:240 6210:1 6233:1 6273:1 6448:1 6450:1 6480:1 6576:1 6644:1 6705:1 6782:1 6830:1 6867:1 6981:2 7134:1 7319:1 7397:1 7408:1 7450:1 7474:1 7476:2 7523:2 7555:1 7582:1 7632:1 7638:1 7670:1 7671:1 7680:1 7719:1 7733:1 7750:3 7751:1 7817:1 8089:1 8091:1 8097:1 8168:1 8209:1 8225:3 8361:1 8520:1 8599:1 8609:1 8748:1 8769:1 8894:1 8903:1 8980:1 9017:1 9029:1 9048:1 9158:1 9208:1 9215:1 9280:1 9314:1 9402:2 9445:1 9598:1 9706:1 9707:1 9747:1 9751:1 9770:1 9848:1 9912:1 9919:1 9933:1 9980:1 9993:1 10018:1 10201:1 10282:1 10421:1 10426:1 10442:1 10515:1 10536:1 10590:1 10593:1 10714:1 10766:1 10768:1 10962:1 11049:1 11212:1 11303:1 11444:3 11446:1 11666:1 11667:3 11701:1 11729:1 11757:1 11778:1 11781:1 11822:1 11878:2 11932:1 11983:1 12034:1 12065:1 12117:1 12202:3 12229:1 12255:1 12364:1 12381:1 12559:1 12566:1 12590:1 12592:1 12633:1 12754:1 12791:1 12814:1 12823:1 12874:2 12887:1 12895:1 12938:2 13209:1 13221:1 13240:1 13362:1 13505:1 13547:1 13552:1 13557:1 13577:1 13582:1 13646:1 13672:1 13703:1 13715:2 13826:1 13846:1 13855:1 13861:1 13874:1 13971:1 14091:1 14096:1 14101:1 14104:1 14241:1 14429:1 14488:1 14531:1 14561:1 14720:1 14872:2 15113:3 15141:1 15205:1 15227:1 15281:1 15291:1 15337:3 15344:1 15459:1 15467:1 15601:1 15661:1 15714:1 15723:1 15766:1 15892:1 16035:2 16038:1 16048:1 16066:1 16269:1 16338:1 16464:1 16556:1 16589:1 16638:1 16640:1 16735:1 16763:1 16930:1 17102:1 17175:1 17187:1 17208:1 17377:1 17442:1 17546:1 17741:1 17744:1 17770:1 17794:1 17841:1 17857:1 17941:1 18090:1 18209:1 18240:1 18272:3 18287:1 18322:1 18334:1 18385:1 18514:1 18592:1 18703:2 18705:1 18723:1 18725:1 18766:1 18875:1 18883:1 19004:1 19005:1 19007:3 19252:1 19290:1 19397:1 19604:1 19631:1 19647:1 19663:1 19697:1 19712:1 19790:2 19796:1 19843:1 19970:1 19977:1 19978:1 20022:1 20572:1 20587:1 20653:1 20740:1 20754:1 20793:1 20916:1 20944:1 20956:1 21022:1 21108:2 21110:1 21128:1 21171:2 21243:1 21320:1 21361:1 21373:1 21391:1 21537:1 21603:1 21639:1 21711:1 21894:1 21907:1 22021:1 22276:1 22349:1 22352:1 22550:1 22675:1 22688:1 22765:1 22964:1 22985:1 22988:1 23034:1 23284:1 23496:1
16 164:1 317:1 384:1 413:2 507:1 608:1 646:2 838:1 860:1 886:2 904:1 1010:1 1190:1 1242:1 1366:1 1425:1 1564:1 1612:1 1679:1 1738:1 1752:4 1789:1 1857:6 1935:1 1978:1 2034:1 2044:1 2045:1 2109:1 2150:1 2192:1 2288:1 2301:1 2414:1 2447:1 2483:1 2512:1 2547:1 2573:1 2625:1 2632:1 2658:1 2667:1 2685:1 2764:1 2773:1 2816:1 2870:1 2895:1 2966:1 3035:3 3178:1 3218:1 3234:1 3264:1 3345:1 3559:1 3564:1 3573:3 3642:1 3703:1 3752:1 3827:1 3854:1 4006:1 4050:1 4058:1 4083:1 4183:1 4208:3 4262:1 4335:1 4358:1 4380:1 4386:1 4413:1 4511:3 4513:1 4516:1 4577:1 4650:2 4705:1 4781:1 4844:1 5161:2 5310:1 5383:1 5388:1 5430:1 5480:1 5521:1 5543:1 5619:1 5621:1 5627:1 5661:4 5710:1 5748:1 5780:1 5816:1 5817:5 5870:2 5957:1 5994:1 6005:2 6066:1 6101:318 6210:1 6232:1 6233:1 6273:2 6376:1 6448:1 6450:1 6480:1 6485:1 6495:1 6576:1 6644:2 6705:1 6782:1 6830:1 6867:1 6981:3 7134:1 7137:1 7319:1 7397:1 7408:1 7450:1 7474:1 7476:3 7520:1 7523:2 7555:1 7582:1 7632:1 7638:1 7670:1 7671:1 7680:1 7719:1 7733:1 7750:4 7751:1 7817:1 8089:1 8091:1 8097:1 8168:1 8209:1 8225:4 8361:1 8520:1 8599:1 8609:1 8748:1 8769:2 8791:1 8831:1 8894:1 8903:1 8980:1 9017:1 9029:1 9048:1 9158:1 9208:1 9215:1 9280:1 9314:1 9402:2 9445:1 9598:1 9706:1 9707:1 9747:1 9751:1 9770:2 9848:1 9912:1 9919:1 9933:1 9980:1 9993:1 10018:1 10201:1 10282:1 10392:1 10421:1 10426:1 10442:1 10515:1 10536:1 10590:1 10593:1 10634:1 10714:1 10766:1 10768:1 10962:1 11049:1 11212:1 11303:1 11310:1 11444:3 11446:1 11666:2 11667:4 11701:1 11729:1 11733:1 11757:1 11778:1 11781:1 11822:2 11878:2 11932:1 11983:1 12034:1 12065:1 12117:1 12202:3 12229:2 12255:1 12364:1 12381:1 12559:1 12566:1 12590:1 12592:1 12633:1 12754:1 12791:1 12814:1 12823:1 12874:2 12887:1 12895:1 12938:3 13060:1 13107:1 13209:1 13221:2 13240:1 13267:1 13346:1 13362:1 13505:1 13547:1 13552:1 13557:1 13573:1 13577:1 13582:1 13632:1 13646:1 13672:1 13703:1 13715:2 13826:1 13846:1 13855:1 13861:1 13874:1 13971:1 14091:1 14096:1 14101:1 14104:1 14241:1 14290:1 14429:1 14488:1 14531:1 14561:1 14612:1 14720:1 14872:2 15113:4 15141:1 15205:1 15227:1 15281:1 15291:1 15337:4 15344:1 15459:1 15467:1 15601:1 15661:1 15714:1 15723:1 15766:1 15892:1 16035:2 16038:2 16048:1 16066:1 16107:1 16269:1 16338:1 16464:1 16556:1 16589:2 16638:1 16640:1 16735:1 16763:1 16930:1 17102:1 17175:1 17187:1 17208:1 17377:1 17442:1 17546:1 17741:1 17744:1 17770:1 17794:1 17841:1 17857:1 17927:1 17941:1 18078:1 18090:2 18138:1 18209:1 18240:1 18272:4 18287:1 18322:1 18334:1 18385:1 18514:1 18592:1 18703:3 18705:1 18722:1 18723:1 18725:1 18766:1 18875:1 18883:2 19004:1 19005:1 19007:4 19252:1 19262:1 19290:1 19397:1 19604:1 19631:1 19647:1 19663:1 19697:1 19712:1 19790:2 19796:1 19843:1 19936:1 19970:1 19977:1 19978:1 20022:2 20420:1 20511:1 20572:1 20587:1 20590:1 20653:1 20740:1 20754:1 20793:1 20842:1 20916:1 20944:1 20956:1 20961:1 21022:1 21108:3 21110:1 21128:1 21171:2 21221:1 21243:1 21320:1 21361:1 21373:1 21391:1 21537:1 21603:1 21639:1 21711:1 21889:1 21894:1 21907:1 21930:1 22021:1 22276:1 22349:1 22352:1 22550:1 22675:1 22688:1 22765:1 22964:1 22985:1 22988:1 23034:1 23284:1 23496:1
16 164:1 317:1 384:1 413:2 507:1 596:1 608:2 646:2 838:1 860:1 886:2 904:1 1010:1 1190:1 1207:1 1242:2 1268:1 1366:1 1391:1 1425:1 1564:1 1612:1 1628:1 1647:1 1679:1 1738:1 1752:5 1789:1 1857:8 1935:1 1978:1 2034:1 2044:1 2045:1 2063:1 2109:1 2145:1 2150:1 2192:1 2288:1 2301:1 2414:1 2447:1 2483:1 2512:1 2547:1 2554:1 2573:1 2607:1 2625:1 2632:1 2658:1 2667:1 2671:1 2685:1 2764:1 2773:1 2798:1 2816:1 2870:1 2895:1 2966:2 3035:3 3177:1 3178:1 3218:1 3229:1 3234:1 3264:1 3345:1 3541:1 3546:1 3555:1 3559:1 3564:1 3573:3 3642:1 3703:1 3752:1 3827:1 3854:1 4006:1 4038:1 4050:1 4058:1 4083:1 4183:1 4208:3 4262:1 4335:2 4358:1 4380:1 4386:1 4413:1 4417:1 4511:3 4513:1 4516:1 4561:2 4577:1 4650:3 4705:1 4781:1 4844:1 5139:1 5161:2 5183:1 5310:1 5383:1 5388:1 5430:1 5454:1 5480:1 5521:1 5543:1 5619:1 5621:1 5627:1 5661:4 5710:1 5748:1 5780:1 5816:1 5817:7 5870:3 5957:1 5994:1 6005:3 6066:1 6090:1 6101:452 6210:1 6232:1 6233:1 6273:2 6376:1 6448:1 6450:1 6480:1 6485:1 6495:1 6576:1 6644:2 6705:1 6777:1 6782:1 6830:1 6867:1 6871:1 6888:1 6936:1 6956:1 6981:3 7134:1 7137:1 7319:1 7337:1 7376:1 7383:1 7397:1 7408:2 7450:1 7474:1 7476:3 7520:1 7523:2 7555:1 7582:1 7632:1 7638:1 7649:1 7670:1 7671:1 7680:1 7719:1 7733:1 7750:5 7751:1 7788:1 7817:1 8089:1 8091:2 8097:1 8168:1 8209:1 8225:5 8361:1 8520:1 8598:1 8599:1 8609:1 8748:2 8769:2 8791:1 8831:1 8894:1 8903:1 8930:1 8980:1 9017:1 9029:1 9048:1 9053:1 9158:1 9208:1 9215:1 9280:1 9314:1 9402:2 9445:1 9598:1 9706:1 9707:2 9747:2 9751:2 9770:3 9848:1 9912:1 9919:1 9933:1 9980:1 9993:1 10018:1 10147:1 10201:1 10282:1 10392:1 10421:2 10426:1 10442:1 10515:1 10536:1 10590:1 10593:1 10634:1 10714:1 10759:1 10766:1 10768:1 10828:1 10944:1 10962:1 11049:2 11212:1 11250:1 11303:1 11310:1 11311:1 11444:3 11446:1 11489:1 11593:1 11666:2 11667:5 11701:1 11729:1 11733:1 11757:1 11778:1 11781:1 11799:1 11822:2 11878:2 11932:1 11983:1 12034:1 12065:1 12117:2 12119:1 12202:4 12226:2 12229:3 12255:1 12364:1 12381:1 12559:1 12566:2 12590:1 12592:1 12633:1 12693:1 12754:1 12791:1 12814:1 12823:1 12874:2 12887:1 12895:1 12938:3 13060:1 13107:1 13124:1 13209:1 13221:3 13240:1 13267:1 13324:1 13346:1 13362:1 13505:1 13547:1 13552:1 13557:1 13562:1 13573:1 13577:1 13582:1 13632:1 13646:1 13672:1 13703:1 13715:3 13826:2 13846:1 13855:1 13861:1 13874:1 13971:1 13972:1 14091:1 14096:1 14101:1 14104:1 14152:1 14241:1 14290:1 14429:1 14488:1 14531:1 14561:1 14612:1 14720:1 14768:1 14872:2 14902:1 14929:1 15113:5 15141:1 15205:1 15227:1 15281:1 15291:1 15337:4 15344:1 15459:1 15467:1 15601:1 15661:1 15675:1 15714:1 15723:1 15766:2 15830:1 15892:1 16035:2 16038:2 16048:1 16066:1 16107:1 16269:1 16338:1 16464:1 16556:1 16589:2 16593:1 16636:1 16638:1 16640:1 16735:1 16763:1 16930:1 17102:1 17175:1 17187:1 17208:1 17377:1 17389:1 17442:1 17546:1 17741:1 17744:1 17770:1 17785:1 17794:1 17841:1 17857:1 17927:1 17941:1 18078:1 18090:2 18133:1 18138:1 18209:1 18240:1 18272:4 18287:1 18322:1 18334:1 18385:1 18514:1 18592:1 18703:3 18705:1 18722:1 18723:1 18725:1 18766:1 18875:1 18883:2 18929:1 18953:1 18964:1 19004:1 19005:1 19007:5 19252:1 19262:1 19290:1 19397:1 19604:1 19631:1 19647:1 19663:1 19697:1 19707:1 19712:1 19790:3 19796:1 19843:1 19936:1 19970:1 19977:1 19978:1 20022:2 20023:1 20420:1 20511:1 20522:1 20572:1 20587:1 20590:1 20653:1 20724:1 20740:1 20754:1 20793:1 20842:1 20916:1 20944:1 20956:1 20961:1 21022:1 21061:1 21099:1 21108:4 21110:1 21128:1 21171:2 21221:1 21243:1 21320:1 21361:1 21373:1 21381:1 21391:1 21537:1 21603:1 21634:1 21639:1 21711:1 21889:1 21894:1 21907:1 21930:1 21970:1 22021:1 22160:1 22169:1 22276:1 22347:1 22349:1 22352:1 22450:1 22457:1 22550:1 22675:1 22688:1 22765:1 22964:1 22985:1 22988:1 23034:1 23284:1 23348:1 23496:1 23504:1
16 164:1 165:1 317:1 384:1 413:2 507:1 596:1 608:2 626:1 646:2 838:1 860:1 886:2 902:1 904:1 1010:1 1098:1 1115:1 1190:1 1191:1 1194:1 1195:1 1207:1 1242:2 1268:1 1292:1 1366:1 1391:1 1425:1 1564:1 1580:1 1612:1 1628:1 1647:1 1679:1 1738:1 1752:7 1789:1 1829:1 1857:12 1935:1 1978:1 2003:1 2034:1 2044:1 2045:1 2063:2 2109:1 2145:1 2150:1 2192:1 2288:1 2301:1 2414:1 2447:1 2483:1 2512:1 2547:1 2554:1 2573:1 2607:1 2609:1 2625:1 2632:1 2639:1 2658:1 2667:1 2671:1 2685:1 2764:1 2773:1 2798:1 2816:1 2870:1 2895:1 2954:1 2966:2 2979:1 3035:3 3084:1 3177:1 3178:1 3218:1 3229:1 3234:1 3264:1 3272:1 3314:1 3345:1 3541:1 3546:1 3555:1 3559:1 3562:1 3564:1 3573:3 3576:1 3590:1 3642:1 3703:1 3752:1 3827:1 3854:1 3860:1 4006:1 4038:1 4050:1 4058:1 4083:1 4183:1 4208:3 4226:1 4262:1 4296:1 4335:2 4358:1 4380:1 4386:1 4413:1 4417:2 4488:1 4511:3 4513:2 4516:1 4561:2 4577:1 4589:1 4650:3 4705:1 4781:1 4786:1 4844:1 5139:1 5161:2 5183:1 5297:1 5310:1 5383:1 5388:1 5430:1 5454:1 5480:1 5521:1 5543:1 5619:1 5621:1 5627:1 5661:4 5710:1 5748:1 5780:1 5816:1 5817:10 5870:4 5876:1 5934:1 5957:1 5994:1 6005:3 6066:1 6090:1 6101:519 6179:1 6183:1 6210:1 6232:1 6233:1 6273:2 6376:1 6399:1 6448:1 6450:1 6480:1 6485:1 6495:1 6576:1 6581:1 6644:2 6705:2 6750:1 6777:1 6782:1 6830:2 6855:1 6867:1 6871:1 6888:1 6936:1 6956:1 6974:1 6981:3 7124:1 7134:1 7137:1 7319:1 7337:1 7376:1 7383:1 7397:1 7408:2 7450:1 7474:1 7476:3 7520:1 7523:3 7555:1 7582:1 7632:1 7635:1 7638:1 7649:1 7670:1 7671:1 7680:1 7686:1 7719:1 7733:1 7734:1 7750:7 7751:1 7788:1 7817:1 8089:1 8091:2 8097:1 8168:1 8209:1 8225:7 8234:1 8361:1 8464:1 8490:1 8520:1 8544:1 8578:1 8598:1 8599:1 8609:1 8748:2 8757:1 8769:2 8791:1 8831:1 8894:1 8900:1 8903:1 8930:1 8980:1 9017:1 9029:1 9048:1 9053:1 9158:1 9208:1 9215:1 9217:1 9280:1 9314:1 9402:2 9445:1 9598:1 9706:1 9707:2 9747:2 9751:2 9770:3 9848:1 9912:1 9919:1 9933:1 9980:1 9993:1 10018:1 10147:1 10201:1 10282:1 10392:1 10421:2 10426:1 10442:1 10515:1 10536:1 10582:1 10590:1 10593:1 10634:1 10714:1 10742:1 10759:1 10766:1 10768:2 10828:1 10944:1 10962:1 11049:2 11073:1 11212:2 11250:1 11303:1 11310:1 11311:1 11444:3 11446:1 11489:1 11546:1 11593:1 11606:1 11666:2 11667:7 11701:1 11729:1 11733:1 11757:1 11778:2 11781:1 11799:1 11822:2 11852:1 11878:2 11932:1 11977:1 11983:1 12034:1 12059:1 12065:1 12117:2 12119:1 12202:6 12226:2 12229:3 12255:1 12364:1 12370:1 12381:1 12559:1 12566:2 12590:1 12592:1 12633:1 12693:1 12754:1 12791:1 12814:1 12823:1 12874:2 12887:1 12895:1 12938:4 13060:1 13107:1 13124:1 13209:1 13221:3 13240:1 13267:1 13324:1 13346:1 13362:1 13405:1 13471:1 13505:1 13547:1 13552:1 13557:1 13562:1 13573:1 13577:1 13582:1 13606:1 13632:1 13646:1 13672:1 13703:1 13715:4 13826:2 13846:1 13855:1 13861:1 13874:1 13971:1 13972:1 13999:1 14091:1 14096:1 14101:1 14104:1 14152:1 14241:2 14290:1 14429:1 14488:1 14519:1 14531:1 14561:1 14612:1 14658:1 14673:1 14720:1 14768:1 14872:2 14902:1 14904:1 14929:1 15113:7 15141:1 15189:1 15205:1 15227:1 15281:1 15291:1 15337:4 15344:1 15348:1 15441:1 15459:1 15467:1 15477:1 15601:2 15661:1 15675:1 15680:1 15714:1 15723:1 15744:1 15766:2 15830:1 15892:1 16035:4 16038:2 16048:1 16066:1 16107:1 16269:1 16282:1 16338:1 16393:1 16464:1 16508:1 16556:1 16589:2 16593:1 16636:1 16638:1 16640:1 16735:1 16763:1 16930:1 16940:1 16992:1 17102:1 17175:1 17187:1 17208:2 17311:1 17377:1 17389:2 17437:1 17442:2 17528:1 17546:1 17741:1 17744:1 17770:1 17785:1 17794:1 17841:1 17853:1 17857:1 17862:1 17927:1 17941:1 18078:1 18090:2 18133:1 18134:1 18138:1 18209:1 18240:1 18272:4 18287:1 18322:1 18334:1 18385:1 18397:1 18514:1 18592:1 18703:3 18705:1 18722:1 18723:1 18725:1 18766:1 18815:1 18875:1 18883:2 18929:1 18953:1 18964:1 18974:1 19004:1 19005:1 19007:7 19252:1 19262:1 19290:1 19310:1 19397:1 19404:1 19597:1 19604:1 19631:1 19647:2 19663:1 19697:1 19707:1 19712:1 19790:4 19791:1 19796:1 19843:1 19936:1 19970:1 19977:1 19978:1 20022:2 20023:1 20214:1 20351:1 20420:1 20511:1 20522:1 20572:1 20587:1 20590:1 20653:1 20724:1 20740:1 20754:1 20793:1 20802:1 20819:1 20842:1 20916:1 20944:1 20956:1 20961:1 20987:1 21022:1 21061:1 21099:1 21108:5 21110:1 21128:1 21171:2 21221:1 21243:1 21320:1 21340:1 21361:1 21373:1 21381:1 21391:1 21459:1 21537:1 21603:1 21634:1 21639:1 21711:1 21779:1 21880:1 21889:1 21894:1 21907:1 21930:1 21970:1 22021:1 22107:1 22116:1 22160:1 22169:1 22276:1 22347:1 22349:1 22352:1 22450:1 22457:1 22550:1 22674:1 22675:1 22688:1 22765:1 22964:1 22985:2 22988:1 23034:1 23119:1 23284:1 23348:1 23359:1 23496:1 23504:1
16 138:1 164:1 165:1 204:1 317:1 384:1 413:2 416:1 464:1 507:1 514:1 527:1 539:1 596:1 608:2 626:1 646:2 786:1 803:2 838:1 854:1 860:1 886:3 902:1 904:1 993:1 1010:1 1086:1 1098:1 1115:1 1120:1 1133:1 1148:1 1190:1 1191:1 1194:1 1195:1 1207:1 1242:2 1268:1 1292:1 1348:1 1366:1 1391:2 1425:1 1451:1 1494:1 1564:1 1580:1 1612:1 1628:2 1647:1 1649:1 1679:1 1683:1 1738:1 1752:7 1789:1 1829:2 1857:13 1869:1 1890:1 1935:1 1978:1 2003:2 2034:1 2044:1 2045:1 2063:2 2109:1 2145:1 2150:1 2192:1 2288:1 2301:1 2310:1 2414:1 2447:1 2479:1 2483:1 2512:1 2547:1 2554:2 2573:1 2598:1 2607:1 2609:1 2625:1 2632:1 2639:2 2643:1 2658:1 2667:1 2671:1 2685:1 2702:1 2708:1 2764:1 2773:1 2798:1 2801:1 2816:1 2870:1 2895:1 2902:1 2926:1 2954:1 2966:3 2979:1 3012:1 3033:1 3035:4 3070:1 3084:1 3141:1 3153:1 3177:1 3178:1 3218:1 3229:1 3234:1 3264:1 3272:2 3314:1 3345:1 3541:2 3545:1 3546:1 3554:1 3555:1 3559:1 3562:1 3564:1 3573:4 3576:2 3590:1 3642:1 3703:1 3706:1 3752:1 3827:1 3854:1 3860:1 3892:1 3974:1 4006:1 4027:1 4038:1 4050:1 4058:1 4083:1 4117:1 4183:1 4208:4 4219:1 4226:1 4262:2 4281:1 4296:1 4317:1 4335:2 4358:1 4380:1 4386:1 4413:1 4417:2 4424:1 4488:1 4511:4 4513:2 4516:1 4561:2 4577:2 4589:1 4650:5 4671:1 4705:1 4781:1 4786:1 4807:1 4844:2 5060:1 5092:1 5139:1 5161:2 5170:1 5183:1 5226:1 5297:1 5310:1 5383:1 5388:1 5430:1 5454:1 5480:1 5521:1 5542:1 5543:1 5560:1 5565:1 5619:1 5621:1 5627:1 5661:4 5710:1 5748:1 5780:1 5816:1 5817:10 5820:1 5870:4 5876:1 5934:2 5953:1 5957:1 5961:1 5994:1 6005:3 6062:1 6066:1 6090:1 6101:738 6179:1 6183:1 6210:1 6232:1 6233:1 6273:3 6349:1 6376:1 6399:1 6448:1 6450:1 6480:1 6485:1 6495:1 6576:1 6581:1 6644:2 6705:2 6715:1 6748:1 6750:1 6777:1 6782:1 6802:1 6830:2 6855:1 6867:1 6871:1 6888:1 6936:1 6956:1 6974:1 6981:4 7124:1 7134:1 7137:1 7203:1 7319:1 7320:1 7337:1 7376:1 7383:1 7397:1 7408:2 7450:1 7474:1 7476:3 7507:2 7508:1 7520:1 7523:3 7555:1 7582:1 7632:1 7635:1 7638:1 7649:1 7670:1 7671:1 7680:1 7686:1 7702:1 7719:1 7733:2 7734:1 7750:7 7751:1 7788:1 7811:1 7817:1 7823:1 7871:1 8089:1 8091:3 8096:1 8097:1 8168:1 8209:1 8225:7 8234:1 8298:1 8326:1 8361:1 8435:1 8464:1 8490:1 8520:1 8544:1 8578:1 8598:1 8599:1 8609:1 8644:2 8713:1 8748:3 8757:1 8769:2 8791:1 8831:2 8856:1 8894:1 8900:1 8903:1 8930:1 8948:1 8980:1 9017:1 9029:1 9048:1 9053:2 9158:1 9169:1 9208:1 9215:1 9217:1 9218:1 9280:1 9314:1 9370:1 9402:2 9445:1 9598:1 9626:1 9706:1 9707:2 9747:2 9751:3 9770:3 9799:1 9848:1 9904:1 9912:1 9919:1 9933:1 9980:1 9993:1 10018:1 10125:1 10147:1 10150:1 10201:1 10282:1 10392:1 10421:2 10426:1 10442:1 10463:1 10515:1 10536:1 10582:1 10590:1 10593:1 10613:1 10634:1 10714:1 10742:1 10759:1 10766:1 10768:2 10780:1 10784:1 10828:1 10929:1 10944:1 10946:1 10962:1 10972:1 11049:2 11073:1 11203:1 11212:2 11230:1 11250:1 11303:1 11310:1 11311:1 11320:1 11444:3 11446:1 11489:1 11546:2 11593:1 11595:1 11606:1 11666:2 11667:7 11701:1 11729:1 11733:1 11757:1 11767:1 11778:2 11781:1 11799:1 11822:2 11852:2 11878:2 11932:1 11977:1 11983:1 12034:1 12059:1 12065:1 12083:1 12101:1 12117:2 12119:1 12140:1 12173:1 12202:10 12226:2 12229:5 12255:1 12295:1 12364:1 12370:1 12381:1 12529:1 12559:1 12566:3 12590:1 12592:1 12633:1 12673:1 12682:1 12693:1 12754:1 12791:1 12814:1 12823:1 12874:2 12887:1 12895:1 12938:4 13013:1 13060:1 13067:1 13107:1 13124:1 13177:1 13209:1 13221:3 13240:1 13267:1 13324:1 13346:1 13362:1 13405:1 13412:1 13417:2 13419:1 13471:1 13505:1 13547:1 13552:1 13557:1 13562:1 13573:1 13577:1 13579:1 13580:1 13581:1 13582:1 13606:1 13609:1 13632:1 13646:1 13661:1 13672:1 13703:1 13715:4 13826:2 13846:1 13852:1 13855:1 13861:1 13874:1 13935:1 13971:1 13972:1 13978:1 13999:1 14041:1 14091:1 14093:1 14096:1 14101:1 14104:1 14139:1 14152:1 14172:1 14193:1 14241:2 14290:1 14311:1 14429:1 14457:1 14474:1 14488:1 14519:1 14531:1 14561:1 14595:1 14612:1 14658:1 14673:1 14694:1 14719:1 14720:1 14768:2 14872:2 14902:1 14904:1 14924:1 14929:1 14982:1 15113:7 15141:1 15161:1 15189:1 15205:1 15227:1 15233:1 15281:1 15291:1 15324:1 15337:4 15344:1 15348:1 15441:3 15459:1 15467:1 15475:1 15477:1 15601:2 15661:1 15675:1 15680:1 15682:1 15714:1 15723:1 15744:1 15764:1 15766:2 15829:1 15830:1 15892:1 16035:4 16038:2 16048:1 16066:1 16080:1 16107:1 16133:1 16269:2 16282:1 16338:1 16393:1 16438:1 16464:1 16505:1 16508:1 16527:1 16556:1 16574:1 16589:2 16593:1 16602:1 16636:1 16638:1 16640:1 16728:1 16735:1 16749:1 16763:1 16782:2 16870:1 16872:1 16930:1 16937:1 16938:1 16940:1 16954:1 16992:1 17046:1 17048:1 17099:1 17102:1 17128:1 17162:1 17175:1 17187:1 17208:2 17222:2 17311:1 17377:2 17389:2 17437:1 17442:2 17501:1 17528:1 17530:1 17546:1 17670:1 17741:1 17744:1 17770:1 17785:1 17794:1 17841:1 17853:2 17857:1 17862:1 17894:1 17927:1 17941:1 18078:1 18090:2 18133:1 18134:1 18138:1 18205:1 18209:1 18240:1 18266:1 18272:4 18281:1 18287:1 18322:1 18334:1 18385:2 18397:1 18513:1 18514:1 18542:1 18592:1 18703:3 18705:1 18722:1 18723:1 18725:1 18766:1 18815:1 18875:1 18883:2 18929:1 18953:1 18964:1 18974:1 19004:1 19005:1 19007:7 19017:2 19164:1 19252:1 19260:1 19262:1 19290:1 19310:1 19397:1 19404:1 19481:1 19597:2 19604:1 19631:1 19647:2 19663:1 19697:1 19707:1 19712:1 19790:4 19791:1 19796:1 19843:1 19936:2 19970:1 19977:1 19978:1 20022:2 20023:1 20062:1 20079:1 20197:1 20214:1 20351:1 20420:1 20511:1 20522:1 20536:1 20572:1 20587:1 20590:1 20591:1 20653:1 20724:2 20740:1 20741:1 20754:1 20793:1 20794:1 20802:1 20819:1 20842:1 20916:1 20941:1 20944:1 20956:1 20961:1 20976:1 20987:1 21014:1 21022:1 21061:1 21096:1 21099:2 21108:8 21109:1 21110:1 21128:1 21171:2 21221:1 21242:1 21243:1 21292:1 21315:1 21320:1 21321:1 21340:1 21361:1 21373:1 21381:1 21391:1 21413:1 21459:1 21530:1 21537:1 21543:1 21603:1 21634:1 21639:1 21711:1 21779:1 21837:1 21880:1 21889:1 21894:1 21907:2 21930:1 21955:1 21970:1 21997:2 22021:1 22107:1 22116:1 22160:1 22169:1 22276:1 22347:2 22349:2 22352:1 22450:1 22457:1 22550:1 22649:1 22651:1 22674:1 22675:1 22688:1 22765:1 22796:1 22840:1 22938:1 22964:1 22977:1 22985:2 22988:1 23018:1 23034:1 23119:1 23142:1 23284:1 23286:1 23348:1 23359:1 23496:1 23504:1
16 3:1 138:1 164:2 165:1 204:1 296:1 317:1 384:1 413:2 416:1 440:1 464:1 507:1 514:1 527:1 539:1 596:1 607:1 608:2 626:1 646:2 786:1 803:2 831:1 838:1 854:1 860:1 886:3 902:1 904:1 993:1 1010:1 1071:2 1086:1 1098:1 1115:1 1120:1 1133:1 1148:1 1190:1 1191:1 1194:1 1195:1 1203:1 1207:1 1242:2 1268:1 1292:1 1348:1 1366:1 1391:2 1399:1 1425:1 1451:1 1494:1 1564:1 1579:1 1580:1 1612:1 1628:2 1647:1 1648:2 1649:1 1672:1 1679:1 1683:1 1738:1 1752:7 1789:1 1829:2 1857:13 1869:1 1890:1 1935:1 1943:1 1978:1 2003:2 2034:1 2042:1 2044:1 2045:1 2063:2 2109:1 2142:1 2145:1 2150:1 2192:1 2288:1 2301:1 2310:2 2414:1 2447:2 2450:1 2479:1 2483:1 2512:1 2547:1 2554:2 2573:1 2598:1 2607:1 2609:1 2625:1 2632:1 2639:2 2643:1 2658:1 2667:1 2671:1 2685:1 2702:1 2708:1 2716:1 2763:1 2764:1 2773:1 2798:1 2801:1 2810:1 2816:1 2870:1 2895:1 2902:1 2926:1 2954:1 2966:6 2979:1 2986:1 3012:1 3033:1 3035:4 3070:1 3084:1 3141:1 3153:1 3177:1 3178:1 3218:1 3229:1 3234:1 3264:1 3272:2 3314:1 3345:1 3519:1 3541:2 3545:1 3546:1 3554:1 3555:1 3556:1 3559:1 3562:1 3564:1 3573:4 3575:1 3576:2 3590:1 3642:1 3703:1 3706:2 3752:1 3812:1 3827:1 3854:1 3860:1 3892:2 3974:1 4006:1 4027:1 4038:1 4050:1 4052:1 4058:1 4083:1 4117:1 4183:1 4208:4 4219:1 4226:1 4262:2 4281:1 4296:1 4317:1 4335:2 4358:1 4380:1 4386:1 4413:1 4417:2 4424:1 4488:1 4511:4 4513:2 4516:1 4561:2 4577:3 4589:1 4631:1 4650:8 4671:1 4705:1 4781:1 4786:1 4807:1 4837:1 4844:2 5038:1 5060:1 5084:1 5092:1 5139:1 5161:2 5170:1 5183:1 5226:1 5297:1 5310:1 5383:1 5388:1 5430:1 5454:1 5467:1 5480:1 5521:1 5542:1 5543:1 5560:1 5565:1 5619:1 5621:1 5627:1 5661:4 5710:1 5748:1 5780:1 5816:1 5817:10 5820:1 5870:4 5876:1 5934:2 5953:1 5957:1 5961:1 5994:1 6005:3 6062:1 6066:1 6090:1 6101:853 6179:1 6183:1 6195:1 6210:1 6232:1 6233:1 6273:3 6349:1 6376:1 6399:1 6448:1 6450:1 6480:1 6485:2 6495:2 6576:1 6581:1 6644:2 6705:2 6715:2 6748:2 6750:1 6777:1 6782:1 6802:1 6830:2 6855:1 6867:1 6871:1 6888:1 6936:1 6956:1 6974:1 6981:4 7124:1 7134:1 7137:1 7203:1 7319:1 7320:1 7337:1 7340:1 7376:1 7383:1 7397:1 7408:2 7450:1 7474:1 7476:3 7507:4 7508:1 7520:1 7523:3 7555:1 7582:1 7632:1 7635:1 7638:1 7649:1 7670:1 7671:1 7680:1 7686:1 7702:1 7719:1 7732:1 7733:3 7734:1 7750:7 7751:1 7782:1 7788:1 7811:1 7817:1 7823:1 7871:1 8089:1 8091:6 8096:2 8097:2 8168:1 8209:1 8225:7 8234:1 8298:1 8326:1 8357:1 8361:1 8367:1 8435:1 8453:1 8464:1 8490:1 8520:1 8544:1 8578:1 8598:1 8599:1 8609:1 8644:2 8713:1 8748:6 8755:1 8757:1 8769:2 8789:1 8791:1 8831:2 8856:1 8894:1 8900:1 8903:1 8930:1 8948:1 8976:1 8980:1 9017:1 9029:1 9048:1 9053:2 9158:1 9169:1 9208:1 9215:1 9217:1 9218:1 9280:1 9314:1 9370:1 9374:1 9402:2 9445:1 9477:1 9598:1 9617:1 9626:1 9706:1 9707:2 9747:2 9751:5 9770:3 9779:1 9799:1 9848:1 9904:1 9912:1 9919:1 9933:1 9940:1 9980:1 9993:1 10018:2 10125:1 10147:1 10150:1 10201:1 10282:1 10392:1 10421:2 10424:2 10426:1 10442:1 10463:2 10510:1 10515:1 10536:1 10582:1 10590:1 10593:2 10613:1 10634:1 10714:1 10742:1 10759:1 10766:1 10768:2 10780:2 10784:1 10801:1 10828:1 10929:1 10944:1 10946:1 10962:1 10972:1 11049:2 11061:1 11073:1 11203:1 11212:2 11230:1 11250:1 11255:1 11269:1 11281:1 11303:1 11310:2 11311:1 11320:2 11351:1 11444:3 11446:1 11489:1 11546:2 11593:1 11595:2 11606:1 11666:2 11667:7 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:1 11799:1 11822:2 11852:2 11878:2 11906:1 11932:1 11977:1 11983:1 12017:1 12034:1 12059:1 12065:1 12083:1 12101:1 12117:2 12119:1 12140:1 12173:1 12202:12 12226:2 12229:7 12255:1 12295:1 12364:1 12370:1 12381:1 12518:1 12529:1 12551:1 12559:1 12566:7 12590:1 12592:1 12633:1 12673:1 12682:1 12693:1 12754:1 12783:1 12791:1 12814:1 12823:1 12839:1 12874:2 12887:1 12895:1 12938:4 12970:1 13013:1 13060:1 13067:1 13070:1 13107:1 13124:1 13177:1 13209:1 13221:3 13240:1 13267:1 13321:1 13324:1 13346:1 13362:1 13405:1 13412:1 13417:2 13419:1 13471:1 13505:1 13547:1 13552:1 13557:1 13562:1 13573:1 13577:1 13579:2 13580:1 13581:1 13582:1 13593:1 13597:1 13606:1 13609:1 13632:1 13646:1 13661:1 13672:1 13703:1 13715:4 13826:2 13846:1 13852:1 13855:1 13861:1 13874:1 13935:1 13971:1 13972:1 13978:1 13999:1 14041:1 14061:1 14091:1 14093:1 14096:1 14101:1 14104:1 14139:1 14152:1 14172:1 14193:1 14241:2 14290:1 14311:1 14364:1 14429:1 14457:2 14474:1 14488:1 14519:1 14531:1 14561:1 14595:1 14612:1 14622:1 14658:1 14673:1 14675:1 14694:1 14719:1 14720:1 14768:2 14784:1 14872:2 14902:1 14904:1 14924:1 14929:1 14975:1 14982:1 15113:7 15141:1 15161:1 15189:1 15193:1 15205:1 15215:1 15217:1 15227:1 15233:1 15281:1 15291:1 15295:1 15324:1 15337:5 15344:1 15348:1 15408:1 15441:3 15459:1 15467:1 15475:1 15477:1 15601:2 15661:1 15664:1 15675:1 15680:1 15682:1 15714:1 15723:1 15744:1 15757:1 15764:1 15766:2 15829:1 15830:1 15892:1 15980:1 16035:4 16038:2 16048:1 16066:1 16080:1 16107:1 16133:1 16269:2 16282:1 16338:1 16393:1 16438:1 16464:1 16505:1 16508:1 16527:1 16556:1 16574:1 16589:2 16593:1 16602:1 16614:1 16636:1 16638:1 16640:1 16670:1 16728:1 16735:1 16749:2 16763:1 16782:2 16870:1 16872:1 16881:1 16930:1 16937:1 16938:1 16940:1 16954:1 16992:1 17046:1 17048:1 17099:1 17102:1 17128:2 17162:1 17175:1 17187:1 17208:2 17222:2 17311:1 17377:2 17389:2 17424:1 17437:1 17442:2 17501:1 17528:1 17530:1 17546:1 17670:1 17741:1 17744:1 17770:1 17785:1 17794:1 17841:1 17853:3 17857:1 17862:1 17894:1 17927:1 17935:1 17941:1 17945:1 18078:1 18090:2 18133:1 18134:1 18138:1 18205:1 18209:1 18240:1 18257:1 18266:1 18272:4 18280:1 18281:1 18287:1 18292:1 18293:1 18322:1 18334:1 18385:2 18397:1 18491:1 18513:1 18514:1 18542:1 18586:1 18592:1 18703:3 18705:1 18722:1 18723:1 18724:1 18725:1 18739:1 18766:1 18815:1 18875:1 18883:2 18929:1 18953:1 18964:1 18965:1 18974:1 18993:1 19004:1 19005:1 19007:7 19017:2 19164:1 19252:1 19260:1 19262:1 19290:1 19310:1 19397:1 19404:1 19430:1 19481:1 19597:2 19604:1 19631:1 19647:2 19663:1 19697:1 19707:1 19712:1 19734:1 19790:4 19791:1 19796:1 19843:1 19936:3 19952:1 19970:1 19977:1 19978:1 20022:2 20023:1 20055:1 20062:1 20079:1 20197:1 20214:1 20351:1 20420:1 20511:2 20522:1 20536:1 20572:1 20587:1 20590:1 20591:1 20653:1 20724:2 20740:1 20741:1 20747:1 20754:1 20793:1 20794:1 20802:1 20819:1 20842:1 20916:1 20941:1 20944:2 20956:1 20961:1 20976:1 20987:1 21014:1 21022:1 21061:1 21075:1 21096:1 21099:2 21108:11 21109:1 21110:1 21121:1 21128:1 21171:3 21205:1 21221:1 21242:1 21243:1 21292:1 21315:1 21320:1 21321:1 21340:1 21361:1 21373:1 21381:1 21391:1 21413:1 21459:1 21530:1 21537:1 21540:1 21543:1 21603:1 21634:1 21639:1 21711:2 21722:1 21779:1 21782:1 21837:1 21880:1 21889:1 21894:1 21907:2 21930:1 21955:1 21970:1 21997:2 21998:1 22010:1 22021:1 22107:1 22116:1 22159:1 22160:1 22169:1 22276:1 22347:2 22349:2 22352:1 22450:1 22457:1 22550:1 22649:1 22651:2 22674:1 22675:1 22688:1 22765:1 22796:1 22840:1 22877:1 22938:1 22964:1 22977:1 22985:2 22988:1 23018:1 23034:1 23119:1 23142:1 23284:1 23286:1 23348:1 23359:1 23496:1 23504:1
16 3:1 138:1 164:3 165:1 204:1 296:1 317:1 384:1 413:2 416:1 440:1 464:1 467:1 507:1 511:1 514:1 527:1 539:1 596:1 607:1 608:2 626:1 646:2 786:1 803:2 805:1 831:1 838:1 854:1 860:1 886:3 902:2 904:1 993:1 1010:1 1048:1 1071:2 1086:1 1098:1 1115:1 1120:1 1131:2 1133:1 1148:1 1190:1 1191:1 1194:1 1195:1 1196:1 1203:1 1207:1 1242:2 1268:1 1292:1 1348:1 1366:1 1391:2 1399:1 1425:1 1451:1 1494:1 1564:1 1579:1 1580:1 1612:1 1628:2 1647:1 1648:2 1649:1 1672:1 1679:1 1683:1 1738:1 1752:7 1789:1 1829:2 1857:13 1869:1 1890:1 1935:1 1943:1 1978:1 2003:2 2034:1 2042:1 2044:1 2045:1 2063:2 2109:1 2142:1 2145:1 2150:1 2182:1 2192:1 2288:1 2297:1 2301:1 2310:2 2414:1 2447:2 2450:1 2479:1 2483:1 2512:1 2547:1 2554:2 2573:1 2598:1 2607:1 2609:1 2625:1 2632:1 2639:2 2643:1 2658:1 2667:1 2671:1 2685:1 2702:1 2708:1 2716:1 2763:1 2764:1 2773:1 2798:1 2801:1 2810:2 2816:1 2870:1 2895:1 2902:1 2914:1 2926:1 2954:1 2966:7 2979:1 2986:1 3012:1 3033:1 3035:4 3048:1 3070:1 3084:1 3141:1 3153:1 3177:1 3178:1 3218:1 3223:1 3229:1 3234:1 3264:1 3272:2 3314:1 3316:1 3345:1 3519:1 3541:2 3545:1 3546:1 3554:1 3555:1 3556:1 3559:1 3562:1 3564:1 3573:4 3575:1 3576:2 3590:1 3642:1 3703:1 3706:2 3726:1 3752:1 3812:1 3827:1 3854:1 3860:1 3892:2 3974:1 4006:1 4027:1 4038:1 4050:1 4052:1 4058:1 4083:1 4117:1 4183:1 4184:1 4208:4 4219:1 4226:1 4262:3 4281:1 4296:1 4317:1 4335:2 4358:1 4380:1 4386:1 4413:1 4417:2 4424:1 4488:1 4511:4 4513:2 4516:1 4561:3 4577:4 4589:1 4631:1 4650:9 4671:1 4699:1 4705:1 4781:1 4786:1 4807:1 4837:1 4844:2 4932:1 4966:1 5034:1 5038:1 5060:1 5084:1 5092:1 5139:1 5161:2 5170:1 5183:1 5226:1 5297:1 5310:1 5353:1 5383:1 5388:1 5430:1 5433:1 5454:1 5456:1 5467:1 5480:1 5517:1 5521:1 5542:1 5543:1 5560:1 5565:1 5619:1 5621:1 5627:1 5661:4 5710:1 5748:1 5780:1 5816:1 5817:10 5820:1 5870:4 5876:1 5934:2 5953:1 5957:1 5961:1 5994:1 6005:3 6062:1 6066:1 6090:1 6101:986 6117:1 6165:1 6179:1 6183:1 6195:1 6210:1 6232:1 6233:1 6273:3 6349:1 6376:1 6399:1 6407:1 6448:1 6450:1 6480:1 6485:2 6495:2 6576:1 6581:1 6644:2 6705:2 6715:2 6748:2 6750:1 6777:1 6782:1 6802:1 6830:2 6855:1 6867:1 6871:1 6888:1 6936:1 6956:1 6974:1 6981:4 7124:1 7134:1 7137:1 7203:1 7319:1 7320:1 7337:1 7340:1 7376:1 7383:1 7397:1 7405:1 7408:2 7415:1 7450:1 7474:1 7476:3 7507:4 7508:1 7520:1 7523:3 7555:1 7582:1 7632:1 7635:1 7638:1 7649:1 7670:1 7671:1 7680:1 7686:1 7702:1 7719:1 7732:1 7733:4 7734:1 7736:1 7750:7 7751:1 7782:1 7788:1 7811:1 7817:1 7823:1 7871:1 8065:1 8089:1 8091:7 8096:2 8097:2 8168:1 8209:1 8225:7 8234:1 8270:1 8298:1 8301:1 8326:1 8357:1 8361:1 8367:1 8372:1 8385:1 8435:1 8453:1 8464:1 8490:1 8520:1 8544:1 8578:1 8598:1 8599:1 8605:1 8609:1 8644:2 8713:1 8748:7 8755:1 8757:1 8769:2 8789:1 8791:1 8831:2 8838:1 8856:1 8894:1 8900:1 8903:1 8930:1 8948:1 8976:1 8980:1 9017:1 9029:1 9048:1 9053:2 9158:1 9169:1 9180:1 9208:1 9215:1 9217:1 9218:1 9253:1 9280:1 9314:1 9370:1 9374:1 9402:2 9445:1 9477:1 9598:1 9617:1 9626:1 9706:1 9707:2 9747:2 9751:5 9770:3 9778:1 9779:1 9799:1 9848:1 9904:1 9912:1 9917:1 9919:1 9929:1 9933:1 9940:1 9950:1 9980:1 9993:1 10018:2 10125:1 10147:1 10150:1 10201:1 10282:1 10289:1 10392:1 10421:2 10424:2 10426:1 10442:1 10463:2 10510:1 10515:1 10536:1 10576:1 10580:1 10582:1 10590:1 10593:2 10613:1 10634:1 10704:1 10714:1 10736:1 10742:1 10759:1 10766:1 10768:2 10780:2 10784:1 10801:1 10828:1 10929:1 10944:1 10946:1 10957:1 10962:1 10972:1 11049:2 11061:1 11067:1 11073:1 11203:1 11210:1 11212:2 11230:1 11250:1 11255:1 11264:1 11269:1 11281:1 11303:1 11310:2 11311:1 11320:2 11351:1 11444:3 11446:1 11489:1 11508:1 11546:2 11593:1 11595:2 11606:1 11644:1 11666:2 11667:7 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:1 11799:1 11811:1 11822:2 11852:2 11878:2 11906:1 11932:1 11942:1 11977:1 11983:1 12017:1 12034:1 12059:1 12065:1 12083:2 12101:1 12117:2 12119:1 12140:1 12173:1 12202:12 12226:3 12229:8 12255:1 12295:1 12364:1 12370:1 12381:1 12431:1 12518:1 12529:1 12551:1 12559:1 12566:8 12590:1 12592:1 12633:1 12673:1 12682:1 12693:1 12754:1 12783:1 12791:1 12814:1 12823:1 12839:1 12874:2 12887:1 12895:1 12938:4 12970:1 13013:1 13060:1 13067:1 13070:1 13107:1 13124:1 13177:1 13209:1 13221:3 13240:1 13267:1 13321:1 13324:1 13346:1 13362:1 13384:1 13405:1 13412:1 13417:2 13419:1 13471:1 13505:1 13529:1 13547:1 13552:1 13557:1 13562:1 13573:1 13577:1 13579:2 13580:1 13581:1 13582:1 13593:1 13597:1 13606:1 13609:1 13632:1 13646:1 13661:1 13672:1 13674:1 13703:2 13715:4 13826:2 13846:1 13852:1 13855:1 13861:1 13874:1 13935:1 13943:1 13971:1 13972:1 13978:1 13999:1 14041:1 14061:1 14091:1 14093:1 14096:1 14101:1 14104:1 14139:1 14152:1 14172:1 14193:1 14241:2 14290:1 14311:1 14312:1 14364:1 14429:1 14457:3 14474:2 14488:1 14493:1 14519:1 14531:1 14561:1 14595:1 14612:1 14622:1 14658:1 14673:1 14675:1 14694:1 14719:1 14720:1 14768:2 14784:1 14872:2 14902:1 14904:1 14924:1 14929:1 14953:1 14975:1 14982:1 15113:7 15141:1 15161:2 15189:1 15193:1 15205:1 15215:1 15217:2 15227:1 15233:1 15281:1 15291:1 15295:1 15324:1 15330:1 15337:5 15344:1 15348:1 15408:1 15441:3 15459:1 15467:1 15475:1 15477:1 15600:1 15601:2 15661:1 15664:1 15675:1 15680:1 15682:1 15698:1 15714:1 15723:1 15744:1 15757:1 15764:1 15766:2 15829:1 15830:1 15840:1 15892:1 15980:1 16035:4 16038:2 16048:1 16066:1 16080:1 16098:1 16107:1 16133:1 16178:1 16236:1 16269:2 16282:1 16338:1 16393:1 16438:1 16464:1 16505:1 16508:1 16527:1 16556:1 16574:1 16589:2 16593:1 16602:1 16614:1 16636:1 16638:1 16640:1 16670:1 16728:1 16735:1 16749:3 16763:1 16782:2 16870:1 16872:1 16881:1 16930:1 16937:1 16938:1 16940:1 16954:1 16992:2 17033:1 17046:1 17048:1 17089:1 17099:1 17102:1 17128:2 17162:1 17175:1 17187:1 17208:2 17222:2 17311:1 17377:2 17389:2 17424:1 17437:1 17442:2 17501:1 17528:1 17530:1 17546:1 17670:1 17741:1 17744:1 17770:1 17785:1 17794:1 17841:1 17853:3 17857:1 17862:1 17894:1 17927:1 17935:1 17941:1 17945:1 18078:1 18090:2 18133:1 18134:1 18138:1 18205:1 18209:1 18240:1 18257:1 18266:1 18272:4 18280:1 18281:1 18287:1 18292:1 18293:1 18322:1 18334:1 18385:2 18397:1 18491:1 18513:1 18514:1 18542:1 18586:1 18592:1 18703:3 18705:1 18722:1 18723:1 18724:1 18725:1 18739:1 18766:1 18815:1 18875:1 18883:2 18929:1 18953:1 18964:1 18965:1 18974:1 18993:1 19004:1 19005:1 19007:7 19017:2 19164:1 19252:1 19260:1 19262:1 19290:1 19310:1 19397:1 19404:1 19430:1 19481:1 19597:2 19604:1 19631:1 19647:2 19663:1 19697:1 19707:1 19712:1 19734:1 19790:4 19791:1 19796:1 19843:1 19936:4 19952:1 19963:1 19970:1 19977:1 19978:1 20022:2 20023:1 20055:1 20062:1 20071:1 20079:1 20197:1 20214:1 20351:1 20414:1 20420:1 20511:3 20522:1 20536:1 20572:1 20587:1 20590:1 20591:1 20653:1 20724:2 20740:1 20741:1 20747:1 20754:1 20767:1 20793:1 20794:1 20802:1 20819:1 20842:1 20916:1 20941:1 20944:2 20956:1 20961:1 20976:1 20987:1 21014:1 21015:1 21022:1 21061:1 21075:1 21096:1 21099:2 21102:1 21108:11 21109:1 21110:2 21121:1 21128:1 21143:1 21169:1 21171:3 21205:1 21221:1 21222:1 21242:1 21243:1 21292:1 21315:1 21320:1 21321:1 21340:1 21361:1 21373:1 21381:1 21391:1 21413:1 21459:1 21530:1 21535:1 21537:1 21540:1 21543:1 21603:1 21634:1 21639:1 21711:2 21722:1 21779:1 21782:1 21804:1 21837:1 21866:1 21880:1 21889:1 21894:1 21907:2 21930:1 21955:1 21970:1 21997:2 21998:2 22010:1 22021:1 22107:1 22116:1 22159:1 22160:1 22169:1 22276:1 22347:2 22349:2 22352:1 22450:1 22457:1 22550:1 22649:1 22651:3 22674:1 22675:1 22688:1 22765:1 22787:1 22796:2 22840:1 22877:1 22907:1 22938:1 22964:1 22977:1 22983:1 22985:2 22988:1 23018:1 23034:1 23081:1 23119:1 23142:1 23160:1 23284:1 23286:1 23348:1 23359:1 23496:1 23504:1
16 3:1 138:1 164:4 165:1 204:1 296:1 317:1 384:1 413:2 416:1 428:1 440:2 464:1 467:1 507:1 511:1 514:1 527:1 539:2 596:1 607:1 608:2 626:2 643:1 646:2 786:1 803:2 805:1 831:1 838:1 854:1 855:1 860:2 886:3 902:2 904:1 993:1 1010:1 1048:2 1071:4 1086:1 1098:1 1115:1 1120:1 1131:2 1133:1 1148:1 1190:1 1191:1 1194:1 1195:1 1196:1 1203:1 1207:1 1236:1 1242:2 1268:1 1292:1 1348:1 1366:1 1384:1 1391:2 1399:1 1425:1 1451:1 1494:1 1564:1 1579:1 1580:1 1612:1 1628:2 1647:1 1648:2 1649:1 1672:1 1679:1 1683:1 1738:1 1752:7 1789:1 1829:2 1857:17 1869:1 1890:1 1935:1 1943:1 1978:1 2003:2 2034:1 2042:1 2044:1 2045:1 2063:2 2109:1 2142:1 2145:1 2150:1 2182:1 2192:1 2288:1 2297:1 2301:1 2310:2 2414:1 2447:2 2450:1 2479:1 2483:1 2512:1 2547:1 2554:2 2573:1 2585:1 2598:1 2607:1 2609:1 2625:1 2632:1 2639:2 2643:1 2658:1 2667:1 2671:1 2685:1 2702:1 2708:1 2716:1 2763:1 2764:1 2773:1 2798:1 2801:1 2810:2 2816:1 2870:1 2895:2 2902:1 2914:1 2921:1 2926:1 2954:1 2966:7 2979:1 2986:1 3012:1 3014:1 3033:1 3035:4 3048:1 3070:1 3084:1 3141:1 3153:1 3177:1 3178:1 3218:1 3223:1 3229:1 3234:1 3264:1 3272:2 3314:1 3316:1 3345:1 3519:1 3541:2 3545:1 3546:1 3552:1 3554:1 3555:1 3556:1 3559:2 3562:1 3564:1 3573:4 3575:1 3576:2 3590:1 3642:1 3661:1 3703:1 3706:2 3726:1 3752:2 3812:1 3827:1 3854:1 3860:1 3892:2 3974:1 4006:1 4027:1 4038:1 4050:1 4052:2 4058:1 4083:1 4117:1 4182:1 4183:1 4184:1 4208:4 4219:1 4226:1 4262:3 4281:1 4296:1 4317:1 4335:2 4358:1 4380:1 4386:1 4413:1 4417:2 4424:1 4488:1 4511:4 4513:3 4516:1 4561:3 4577:5 4589:1 4631:1 4650:10 4671:1 4699:1 4705:1 4781:1 4786:1 4807:1 4837:1 4844:3 4932:1 4966:1 5034:2 5038:1 5060:1 5084:2 5092:1 5120:1 5139:1 5144:1 5161:2 5170:1 5183:1 5226:1 5227:1 5297:1 5310:1 5344:1 5353:1 5383:1 5388:1 5430:1 5433:1 5454:1 5456:1 5467:1 5480:1 5517:1 5521:1 5542:1 5543:1 5560:1 5565:1 5619:1 5621:1 5627:1 5661:5 5710:1 5748:1 5780:1 5816:1 5817:13 5820:1 5870:7 5873:1 5876:2 5896:1 5919:1 5934:2 5953:1 5957:1 5961:1 5994:1 6005:3 6062:1 6066:1 6090:1 6101:1150 6102:1 6117:1 6149:1 6165:1 6179:1 6183:1 6195:1 6210:1 6232:1 6233:1 6273:3 6349:1 6376:1 6399:1 6407:1 6448:1 6450:1 6480:1 6485:3 6495:3 6576:1 6581:1 6644:3 6698:1 6705:3 6715:2 6748:2 6750:1 6777:1 6782:1 6802:1 6830:2 6855:1 6867:1 6871:1 6888:1 6936:1 6956:1 6974:1 6981:4 7124:1 7134:1 7137:1 7203:2 7319:1 7320:1 7337:1 7340:1 7376:1 7383:1 7397:1 7405:1 7408:2 7415:1 7450:1 7474:1 7476:3 7507:6 7508:1 7520:1 7523:4 7555:1 7582:1 7632:1 7635:1 7638:1 7649:1 7670:1 7671:1 7680:1 7686:1 7702:1 7719:1 7732:1 7733:4 7734:1 7736:1 7750:7 7751:1 7782:1 7788:1 7811:1 7817:1 7823:1 7871:1 8065:1 8089:1 8091:7 8096:2 8097:2 8168:1 8209:1 8224:1 8225:7 8234:1 8270:1 8298:1 8301:1 8326:1 8357:1 8361:1 8367:1 8372:1 8385:1 8435:1 8453:2 8464:1 8490:1 8520:1 8544:1 8578:1 8598:1 8599:1 8605:1 8609:1 8644:2 8713:1 8746:1 8748:7 8755:1 8757:1 8769:2 8789:1 8791:1 8831:3 8838:1 8856:1 8894:1 8900:1 8903:1 8930:1 8948:1 8976:1 8980:1 9017:1 9029:1 9048:1 9053:2 9158:1 9169:1 9180:1 9208:1 9215:1 9217:1 9218:1 9253:1 9280:1 9314:1 9370:1 9374:1 9402:2 9416:1 9445:1 9477:1 9598:1 9617:1 9626:1 9687:1 9706:1 9707:2 9747:2 9751:5 9770:3 9778:1 9779:1 9799:1 9848:1 9904:1 9912:1 9917:1 9919:1 9929:2 9933:1 9940:2 9950:1 9980:1 9993:1 10018:3 10125:1 10147:1 10150:1 10201:1 10282:1 10288:1 10289:1 10392:2 10421:2 10424:2 10426:1 10442:1 10463:2 10510:1 10515:1 10536:1 10576:1 10580:1 10582:1 10590:1 10593:2 10613:1 10634:1 10704:1 10714:1 10736:1 10742:1 10759:1 10766:1 10768:3 10780:2 10784:1 10801:1 10828:1 10929:1 10944:1 10946:1 10957:2 10962:1 10972:1 11049:2 11061:1 11067:1 11073:2 11082:1 11203:1 11210:1 11212:3 11230:1 11250:1 11255:1 11264:1 11269:2 11281:1 11303:1 11310:4 11311:1 11320:2 11351:1 11444:3 11446:1 11489:1 11508:1 11546:2 11593:1 11595:2 11606:1 11644:1 11666:3 11667:7 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:1 11799:1 11811:1 11822:2 11852:2 11878:2 11906:2 11932:1 11942:1 11977:1 11983:1 12017:2 12034:1 12059:1 12065:1 12083:2 12101:1 12115:1 12117:2 12119:1 12140:1 12173:1 12202:14 12226:3 12229:9 12255:1 12295:1 12344:1 12364:1 12370:2 12381:1 12383:1 12431:1 12518:3 12529:1 12551:1 12559:1 12566:8 12590:1 12592:1 12593:1 12633:1 12653:1 12673:1 12682:1 12693:1 12754:1 12783:1 12791:1 12814:1 12823:1 12839:1 12874:2 12887:1 12895:1 12938:4 12970:1 13013:1 13060:1 13067:1 13070:1 13107:1 13124:1 13175:1 13177:1 13209:1 13221:3 13240:1 13267:1 13270:1 13321:1 13324:1 13346:1 13362:1 13363:1 13384:1 13405:1 13412:1 13417:2 13419:1 13471:1 13505:1 13529:1 13547:1 13552:1 13557:1 13562:1 13573:2 13577:1 13579:2 13580:1 13581:1 13582:1 13593:1 13597:1 13606:1 13609:1 13620:1 13632:1 13644:1 13646:1 13661:1 13672:1 13674:1 13703:2 13715:7 13826:2 13846:1 13851:1 13852:1 13855:1 13861:1 13874:1 13935:1 13943:1 13971:1 13972:1 13978:1 13999:1 14041:1 14061:1 14091:1 14093:1 14096:1 14101:1 14104:1 14139:1 14152:1 14172:1 14184:1 14193:1 14241:2 14290:1 14311:1 14312:1 14364:1 14429:1 14457:3 14474:2 14488:1 14493:1 14519:1 14531:1 14561:1 14591:1 14595:1 14612:1 14622:1 14658:1 14673:1 14675:1 14694:1 14719:1 14720:1 14768:2 14784:1 14872:2 14902:1 14904:1 14924:1 14929:1 14953:1 14975:1 14982:1 15113:7 15121:1 15141:1 15161:2 15189:2 15193:1 15205:1 15215:1 15217:2 15227:1 15233:1 15281:1 15291:1 15295:1 15324:1 15330:1 15337:7 15344:1 15348:1 15408:1 15441:3 15459:1 15467:1 15475:1 15477:2 15600:1 15601:2 15661:1 15664:1 15675:1 15680:1 15682:1 15689:1 15698:1 15714:1 15723:1 15744:1 15757:1 15759:1 15764:1 15766:2 15829:1 15830:1 15840:1 15892:1 15980:1 16035:4 16038:2 16048:1 16050:1 16066:1 16080:1 16098:1 16107:1 16133:1 16178:1 16236:1 16269:3 16282:1 16338:1 16393:1 16410:1 16438:1 16464:1 16505:1 16508:1 16527:1 16556:1 16574:1 16589:2 16593:1 16602:1 16614:1 16636:1 16638:1 16640:1 16670:1 16728:1 16735:1 16749:3 16763:1 16782:2 16870:1 16872:1 16881:1 16930:1 16937:1 16938:1 16940:1 16954:1 16992:2 17033:1 17046:2 17048:1 17059:1 17089:1 17099:1 17102:1 17128:2 17160:1 17162:1 17175:1 17187:1 17208:2 17222:2 17311:1 17377:2 17389:2 17424:1 17437:1 17442:2 17501:1 17528:1 17530:1 17546:1 17670:1 17741:1 17744:1 17770:1 17785:1 17794:1 17841:1 17853:3 17857:1 17862:1 17865:1 17894:1 17927:1 17935:1 17941:1 17945:1 18078:1 18090:3 18133:1 18134:1 18138:1 18205:1 18209:1 18240:1 18257:1 18266:1 18272:5 18280:3 18281:1 18287:1 18292:1 18293:3 18322:1 18334:1 18385:3 18397:1 18491:2 18513:1 18514:1 18542:1 18586:1 18592:1 18646:1 18703:3 18705:2 18722:1 18723:1 18724:2 18725:1 18739:1 18766:1 18815:1 18875:1 18883:2 18929:1 18953:1 18964:1 18965:1 18974:1 18993:1 19004:1 19005:1 19007:7 19017:2 19066:1 19089:1 19164:1 19252:1 19260:2 19262:1 19290:1 19310:1 19397:1 19404:1 19430:1 19481:1 19496:1 19597:2 19604:1 19631:1 19647:2 19663:1 19697:1 19707:1 19712:1 19734:1 19790:7 19791:1 19796:1 19843:1 19936:5 19952:1 19963:1 19970:1 19977:1 19978:1 20022:2 20023:1 20055:1 20062:1 20071:1 20079:1 20125:1 20139:1 20160:1 20197:1 20214:1 20299:1 20351:1 20414:1 20420:1 20511:3 20522:1 20536:1 20572:1 20587:1 20590:2 20591:1 20648:1 20653:1 20678:1 20724:2 20740:1 20741:1 20747:1 20754:1 20767:1 20793:1 20794:1 20802:1 20819:1 20842:1 20916:1 20941:1 20944:3 20956:1 20961:1 20976:1 20987:1 21014:1 21015:1 21022:1 21061:1 21075:1 21096:1 21099:2 21102:1 21108:12 21109:2 21110:2 21121:1 21128:1 21143:1 21169:1 21171:5 21205:1 21221:2 21222:1 21242:1 21243:1 21292:1 21315:1 21320:1 21321:1 21340:1 21361:1 21373:1 21381:1 21391:1 21413:1 21459:1 21530:1 21535:1 21537:1 21540:1 21543:1 21603:1 21634:1 21639:1 21711:3 21722:1 21779:1 21782:2 21804:1 21826:1 21837:1 21866:1 21880:1 21889:2 21894:1 21907:2 21930:1 21955:1 21970:1 21997:2 21998:2 22010:1 22021:1 22107:1 22116:1 22159:1 22160:1 22169:1 22183:1 22276:1 22347:2 22349:2 22352:1 22450:1 22457:1 22550:1 22649:1 22651:3 22672:1 22674:1 22675:1 22688:1 22765:1 22787:1 22796:2 22840:1 22877:1 22907:1 22938:1 22964:1 22977:1 22983:1 22985:2 22988:1 23018:1 23034:1 23081:1 23119:1 23142:2 23160:1 23284:1 23286:2 23348:1 23359:1 23444:1 23496:1 23504:1
16 3:1 138:1 164:4 165:1 204:1 224:1 280:1 296:1 317:1 384:1 413:2 416:1 428:1 440:4 464:1 467:1 507:1 511:1 514:1 527:1 539:2 596:1 607:1 608:2 626:2 643:1 646:2 739:1 786:1 803:2 805:1 831:1 835:1 838:1 854:1 855:1 860:2 886:3 902:2 904:1 967:1 993:1 1010:2 1048:2 1071:4 1086:1 1098:1 1115:1 1120:1 1131:2 1133:1 1148:1 1190:1 1191:1 1194:1 1195:1 1196:1 1203:1 1207:1 1236:1 1242:2 1268:2 1292:1 1348:1 1366:1 1384:1 1391:2 1399:2 1425:1 1451:1 1494:1 1564:1 1579:1 1580:1 1612:1 1628:2 1647:1 1648:2 1649:1 1672:1 1679:1 1682:1 1683:1 1738:1 1752:7 1789:1 1809:1 1829:2 1857:18 1869:1 1890:1 1935:1 1943:1 1978:1 1982:1 2001:1 2003:2 2034:1 2042:1 2044:1 2045:1 2063:2 2109:1 2142:1 2145:1 2150:1 2182:1 2192:1 2231:1 2288:1 2297:1 2301:1 2310:3 2414:1 2447:2 2450:1 2479:1 2483:1 2512:1 2547:1 2554:2 2573:1 2585:1 2598:1 2607:1 2609:1 2625:1 2632:1 2639:2 2643:1 2658:1 2667:1 2671:2 2685:1 2702:1 2705:1 2708:1 2716:1 2763:1 2764:1 2773:1 2798:1 2801:1 2810:2 2816:1 2870:1 2892:1 2895:2 2902:1 2914:1 2921:1 2926:1 2954:1 2966:7 2979:1 2986:1 3012:1 3014:1 3033:1 3035:4 3048:1 3070:1 3084:1 3141:1 3153:1 3177:1 3178:1 3218:1 3223:1 3229:1 3234:1 3264:1 3272:2 3302:1 3314:1 3316:1 3345:1 3409:1 3519:1 3541:2 3545:1 3546:1 3552:1 3554:1 3555:1 3556:1 3559:2 3562:1 3564:1 3573:4 3575:1 3576:2 3590:1 3642:1 3661:1 3698:1 3703:1 3706:2 3726:1 3740:1 3752:2 3812:1 3827:1 3854:1 3860:1 3892:2 3952:1 3974:1 4006:1 4027:1 4038:1 4050:1 4052:2 4058:1 4083:1 4089:1 4117:1 4182:1 4183:1 4184:1 4208:4 4219:1 4226:1 4262:3 4281:1 4296:1 4317:1 4335:2 4358:1 4380:1 4386:1 4413:1 4417:2 4424:1 4488:1 4511:4 4513:3 4516:1 4561:3 4577:5 4589:1 4631:1 4650:11 4671:1 4699:1 4705:1 4714:1 4781:1 4786:1 4807:1 4837:1 4844:3 4932:1 4966:1 5034:2 5038:1 5060:1 5084:4 5092:1 5120:2 5139:1 5144:1 5161:2 5170:1 5183:1 5226:1 5227:1 5297:1 5310:1 5344:1 5353:1 5383:1 5388:1 5430:1 5432:1 5433:1 5454:1 5456:1 5467:1 5480:1 5517:1 5521:1 5542:1 5543:1 5560:1 5565:1 5619:1 5621:1 5627:1 5661:5 5710:1 5748:1 5780:1 5816:1 5817:14 5820:1 5870:7 5873:1 5876:2 5896:1 5898:1 5919:1 5934:2 5953:1 5957:2 5961:1 5994:1 6005:3 6062:1 6066:1 6090:2 6101:1227 6102:1 6117:1 6149:1 6165:1 6179:1 6183:1 6195:1 6210:1 6232:1 6233:1 6273:3 6349:1 6376:2 6399:1 6407:1 6448:1 6450:1 6480:1 6485:3 6495:3 6576:1 6581:1 6644:3 6698:1 6705:3 6715:2 6748:2 6750:1 6777:1 6782:1 6792:1 6802:2 6830:2 6855:1 6867:1 6871:1 6888:1 6936:1 6956:1 6974:1 6981:4 7050:1 7124:1 7134:1 7137:1 7153:1 7203:2 7319:1 7320:1 7337:1 7340:1 7376:1 7377:1 7383:1 7397:2 7405:1 7408:2 7415:1 7450:1 7474:1 7476:4 7507:6 7508:1 7520:1 7523:4 7555:1 7581:1 7582:1 7632:1 7635:1 7638:1 7649:1 7670:1 7671:1 7680:1 7686:1 7702:1 7719:1 7732:1 7733:4 7734:1 7736:1 7750:7 7751:1 7782:1 7788:1 7811:1 7817:1 7823:1 7871:1 8065:1 8089:1 8091:7 8096:2 8097:3 8168:1 8209:1 8224:1 8225:7 8234:1 8270:1 8298:1 8301:1 8326:1 8357:1 8361:1 8367:1 8372:1 8373:1 8385:1 8435:1 8453:4 8464:1 8490:1 8520:1 8544:1 8578:1 8598:1 8599:1 8605:1 8609:1 8644:2 8713:1 8746:1 8748:7 8755:1 8757:1 8769:2 8780:1 8789:1 8791:1 8831:3 8838:1 8856:1 8894:1 8900:1 8903:1 8930:1 8948:1 8976:1 8980:1 9017:1 9029:1 9048:1 9053:2 9158:1 9169:1 9180:1 9208:2 9215:1 9217:1 9218:1 9231:1 9253:1 9280:1 9314:1 9370:1 9374:1 9402:3 9416:1 9445:1 9477:1 9598:1 9617:1 9626:1 9645:1 9687:1 9706:1 9707:2 9747:3 9751:5 9770:3 9778:1 9779:1 9799:1 9848:1 9904:1 9912:1 9917:1 9919:1 9929:2 9933:1 9940:2 9950:1 9980:1 9993:1 10018:3 10125:1 10147:1 10150:1 10201:1 10282:1 10288:1 10289:1 10350:1 10392:2 10421:2 10424:2 10426:1 10442:1 10463:2 10510:1 10515:1 10536:1 10576:1 10580:1 10582:1 10590:1 10593:2 10613:1 10634:1 10662:1 10704:1 10714:1 10736:1 10742:1 10751:1 10759:1 10766:1 10768:3 10780:2 10784:1 10801:1 10828:1 10870:1 10929:1 10936:1 10944:1 10946:1 10957:2 10962:2 10972:1 11049:2 11061:1 11067:1 11073:2 11082:1 11109:1 11203:1 11210:1 11212:3 11230:1 11250:1 11255:1 11264:1 11269:2 11281:1 11303:1 11310:4 11311:1 11320:2 11351:1 11444:3 11446:1 11489:1 11508:1 11546:2 11593:1 11595:2 11606:1 11644:1 11666:3 11667:7 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:1 11799:1 11811:1 11822:2 11852:2 11878:3 11906:2 11932:1 11942:1 11977:1 11983:1 12017:2 12034:1 12035:1 12059:1 12065:1 12083:2 12101:1 12115:1 12117:3 12119:1 12140:1 12173:1 12202:14 12226:3 12229:9 12255:1 12295:1 12344:1 12364:1 12370:2 12381:1 12383:1 12392:1 12431:1 12518:3 12529:1 12551:1 12559:1 12566:9 12590:1 12592:1 12593:1 12633:1 12653:1 12673:1 12682:1 12693:2 12754:1 12783:3 12791:1 12814:1 12823:1 12839:1 12874:2 12880:1 12887:1 12895:1 12938:4 12970:1 13013:1 13060:1 13067:1 13070:1 13107:1 13124:1 13175:1 13177:1 13209:1 13221:3 13240:1 13267:1 13270:1 13321:1 13324:1 13346:1 13362:1 13363:1 13384:1 13405:1 13412:2 13414:1 13417:2 13419:1 13471:1 13505:1 13526:1 13529:1 13547:1 13552:1 13557:1 13562:1 13573:2 13577:1 13579:2 13580:1 13581:1 13582:2 13593:1 13597:1 13606:1 13609:1 13620:1 13632:1 13644:1 13646:1 13661:1 13672:1 13674:1 13703:2 13715:7 13728:1 13786:1 13826:2 13846:1 13851:1 13852:1 13855:1 13861:1 13874:1 13935:1 13943:1 13971:1 13972:1 13978:1 13999:1 14041:1 14061:1 14091:1 14093:1 14096:1 14101:1 14104:1 14139:1 14152:1 14172:1 14184:1 14193:1 14241:2 14290:1 14311:1 14312:1 14360:1 14364:1 14429:1 14440:1 14457:3 14474:2 14488:1 14493:1 14519:1 14531:1 14561:1 14591:1 14595:1 14612:1 14622:1 14658:1 14673:1 14675:1 14694:1 14719:1 14720:1 14768:2 14784:1 14872:2 14902:1 14904:1 14924:1 14929:1 14953:1 14975:1 14982:1 15113:7 15121:1 15141:1 15161:2 15167:1 15189:2 15193:1 15205:2 15215:1 15217:2 15227:1 15233:1 15281:1 15291:1 15295:1 15324:1 15330:1 15337:9 15344:1 15348:1 15370:1 15401:1 15408:1 15413:1 15441:3 15444:1 15459:1 15467:1 15475:1 15477:2 15600:1 15601:2 15661:1 15664:1 15675:1 15678:1 15680:1 15682:1 15689:1 15698:1 15714:1 15723:1 15744:1 15757:1 15759:1 15764:1 15766:2 15825:1 15829:1 15830:1 15840:1 15892:1 15932:1 15980:1 16035:4 16038:2 16048:1 16050:1 16066:1 16080:1 16098:1 16107:1 16133:1 16178:1 16236:1 16246:1 16269:3 16282:1 16338:1 16393:1 16410:1 16438:1 16464:1 16505:2 16508:1 16527:1 16556:1 16574:1 16589:2 16593:1 16602:1 16614:1 16636:1 16638:1 16640:1 16670:1 16728:1 16735:1 16749:3 16763:1 16782:2 16870:1 16872:1 16881:1 16930:1 16937:1 16938:1 16940:1 16954:1 16992:2 17033:1 17046:2 17048:1 17059:1 17089:1 17099:1 17102:1 17128:2 17160:1 17162:1 17164:1 17175:1 17187:1 17208:2 17222:2 17284:1 17311:1 17377:2 17389:2 17424:1 17437:1 17442:2 17501:1 17528:1 17530:1 17546:1 17618:1 17670:1 17707:1 17741:1 17744:1 17770:1 17785:1 17794:1 17841:1 17853:3 17857:1 17862:1 17865:1 17894:1 17908:1 17927:1 17935:1 17941:1 17945:1 18025:1 18078:1 18090:3 18133:1 18134:1 18138:1 18205:1 18209:1 18240:1 18257:1 18266:1 18272:5 18280:3 18281:1 18287:1 18292:1 18293:3 18322:1 18334:1 18385:3 18397:1 18399:1 18491:4 18513:1 18514:1 18542:1 18574:1 18586:1 18592:1 18646:1 18703:4 18705:2 18722:1 18723:1 18724:4 18725:1 18739:1 18766:1 18815:1 18875:1 18883:2 18906:1 18929:1 18953:1 18964:1 18965:1 18974:1 18993:1 19004:1 19005:1 19007:7 19017:2 19066:1 19089:1 19164:1 19236:1 19252:1 19260:2 19262:1 19290:1 19310:1 19397:1 19404:1 19430:1 19439:1 19481:1 19496:1 19597:2 19604:1 19631:1 19640:1 19647:2 19663:1 19697:1 19707:1 19712:1 19734:1 19790:7 19791:1 19796:1 19834:1 19843:1 19936:5 19952:1 19963:1 19970:1 19977:1 19978:1 20022:2 20023:1 20046:1 20055:1 20062:1 20071:1 20079:1 20125:1 20139:1 20160:1 20197:1 20214:1 20299:1 20351:1 20414:1 20420:1 20511:3 20522:1 20536:1 20572:1 20587:1 20590:2 20591:1 20648:1 20653:1 20678:1 20724:2 20740:1 20741:1 20747:1 20754:1 20767:1 20793:1 20794:1 20802:1 20819:1 20842:1 20916:1 20941:1 20944:3 20956:1 20961:1 20976:1 20987:1 21014:1 21015:1 21022:1 21061:1 21075:1 21096:1 21099:2 21102:1 21108:12 21109:2 21110:2 21113:1 21119:1 21121:1 21128:1 21143:1 21169:1 21171:7 21205:1 21221:2 21222:1 21242:1 21243:1 21292:1 21315:1 21320:1 21321:1 21340:1 21361:1 21373:1 21381:1 21391:1 21413:1 21441:1 21459:1 21530:1 21535:1 21537:1 21540:1 21543:1 21575:1 21588:1 21603:1 21609:1 21634:2 21639:1 21711:3 21722:1 21779:1 21782:4 21804:1 21826:1 21837:1 21843:1 21866:1 21880:1 21889:2 21894:1 21907:2 21930:1 21955:1 21970:1 21997:2 21998:2 22010:1 22021:1 22048:1 22107:1 22116:1 22156:1 22159:1 22160:1 22169:1 22183:1 22276:1 22347:2 22349:2 22352:1 22360:1 22386:1 22450:1 22457:1 22550:1 22649:1 22651:3 22672:1 22674:1 22675:1 22688:1 22765:1 22787:1 22796:2 22829:1 22840:1 22877:1 22907:1 22911:1 22938:1 22964:1 22977:1 22983:1 22985:2 22988:1 23018:1 23034:1 23081:1 23119:1 23142:2 23160:1 23188:1 23284:1 23286:2 23348:1 23359:1 23444:1 23496:1 23504:1
16 3:1 138:1 164:4 165:1 204:1 224:1 280:1 296:1 317:1 384:1 406:1 413:2 416:1 428:1 440:4 464:1 467:1 507:1 511:1 514:1 527:1 539:2 596:1 607:1 608:2 626:2 643:1 646:2 739:1 786:1 803:2 805:1 831:1 835:1 838:1 854:1 855:1 860:2 886:3 902:2 904:1 967:1 993:1 1010:2 1048:2 1071:4 1086:1 1098:1 1115:1 1120:1 1131:2 1133:1 1148:1 1162:1 1190:1 1191:1 1194:1 1195:1 1196:1 1203:1 1207:1 1236:1 1242:2 1268:2 1292:1 1348:1 1366:1 1384:1 1391:2 1399:2 1425:1 1451:1 1494:1 1564:1 1579:1 1580:1 1612:1 1628:2 1647:1 1648:2 1649:1 1672:1 1679:1 1682:1 1683:1 1738:1 1752:7 1789:1 1802:1 1809:1 1829:2 1844:1 1857:18 1869:1 1890:1 1935:1 1943:1 1978:1 1982:1 2001:1 2003:2 2023:1 2034:1 2042:1 2044:1 2045:1 2063:2 2109:1 2142:1 2145:1 2150:1 2182:1 2192:1 2231:1 2288:1 2297:1 2301:1 2310:3 2414:1 2447:2 2450:1 2469:1 2479:1 2483:1 2512:1 2547:1 2554:2 2573:1 2585:1 2598:1 2607:1 2609:1 2625:1 2632:1 2639:2 2643:1 2658:1 2667:1 2671:2 2685:1 2702:1 2705:1 2708:1 2716:1 2763:1 2764:1 2773:1 2795:1 2798:1 2801:1 2810:2 2816:1 2870:1 2892:1 2895:2 2902:1 2914:1 2921:1 2926:1 2954:1 2966:7 2979:1 2986:1 3012:1 3014:1 3033:1 3035:4 3048:1 3052:1 3070:1 3084:1 3141:1 3153:1 3177:1 3178:1 3218:1 3223:1 3229:1 3234:1 3240:1 3264:1 3272:2 3302:1 3314:1 3316:1 3345:1 3409:1 3473:1 3519:1 3541:2 3545:1 3546:1 3552:1 3554:1 3555:1 3556:1 3559:2 3562:1 3564:1 3567:1 3573:4 3575:1 3576:2 3590:1 3622:1 3642:1 3652:1 3661:1 3673:1 3686:1 3698:1 3703:1 3706:2 3726:1 3740:1 3752:2 3812:1 3819:1 3827:1 3854:1 3860:1 3892:3 3952:1 3974:1 4006:1 4027:2 4038:1 4050:1 4052:2 4058:1 4059:1 4083:1 4089:1 4117:1 4150:1 4182:1 4183:1 4184:1 4208:4 4219:1 4226:1 4260:1 4262:3 4281:1 4296:1 4317:1 4335:2 4358:1 4380:1 4386:1 4393:1 4413:1 4417:3 4424:1 4488:1 4511:4 4513:3 4516:1 4560:1 4561:5 4577:5 4589:1 4631:1 4650:12 4671:1 4699:1 4705:1 4714:1 4781:1 4786:1 4807:1 4837:1 4844:3 4932:1 4966:1 5034:2 5038:1 5060:1 5084:4 5092:1 5120:2 5139:1 5144:1 5161:2 5170:1 5183:1 5226:1 5227:1 5253:1 5297:1 5310:1 5344:1 5353:2 5383:1 5388:1 5430:1 5432:1 5433:1 5454:1 5456:1 5467:1 5480:1 5517:1 5521:1 5542:1 5543:1 5560:1 5565:1 5619:1 5621:1 5627:1 5659:1 5661:5 5710:1 5748:1 5780:1 5816:1 5817:14 5820:1 5858:1 5870:7 5872:1 5873:1 5876:2 5896:1 5898:1 5919:1 5932:1 5934:2 5953:2 5957:2 5961:1 5994:2 6005:3 6062:1 6066:1 6090:2 6101:1323 6102:1 6117:1 6149:1 6165:1 6179:1 6183:1 6195:1 6210:1 6232:1 6233:1 6273:3 6349:2 6376:2 6399:1 6407:1 6448:1 6450:1 6480:1 6485:3 6495:3 6576:1 6581:1 6590:1 6644:3 6698:1 6705:3 6715:2 6748:2 6750:1 6777:1 6782:1 6792:1 6802:2 6830:2 6840:1 6855:1 6867:1 6871:1 6888:1 6936:1 6956:1 6974:1 6981:4 7050:1 7110:1 7124:1 7134:1 7137:1 7153:1 7203:2 7319:1 7320:1 7337:1 7340:1 7363:1 7376:1 7377:1 7383:1 7397:2 7405:1 7408:2 7415:1 7450:1 7474:1 7476:4 7507:6 7508:1 7520:1 7523:4 7555:1 7581:1 7582:1 7632:1 7635:1 7638:1 7649:1 7670:1 7671:1 7680:1 7686:1 7694:1 7696:1 7702:1 7719:1 7732:1 7733:4 7734:1 7736:1 7750:7 7751:1 7782:1 7788:1 7811:1 7817:1 7823:1 7871:1 7887:1 8065:1 8089:1 8091:7 8096:2 8097:3 8168:1 8209:1 8224:1 8225:7 8234:1 8270:1 8298:1 8301:1 8326:1 8357:1 8361:1 8367:1 8372:1 8373:1 8385:1 8435:1 8453:4 8464:1 8490:1 8520:1 8544:1 8578:1 8598:1 8599:1 8605:1 8609:1 8644:2 8713:1 8719:1 8746:1 8748:7 8755:1 8757:1 8769:2 8780:1 8789:1 8791:1 8831:4 8838:1 8856:1 8894:1 8900:1 8903:1 8930:1 8948:1 8976:1 8980:1 9017:1 9029:1 9048:1 9053:2 9065:1 9158:1 9169:1 9180:1 9208:2 9215:1 9217:1 9218:1 9231:1 9253:1 9280:1 9314:1 9370:1 9374:1 9402:3 9416:1 9445:1 9477:1 9598:1 9617:1 9626:1 9645:1 9687:1 9706:1 9707:2 9747:3 9751:5 9769:1 9770:3 9778:1 9779:1 9799:1 9809:1 9848:1 9904:1 9912:1 9917:1 9919:1 9929:2 9930:1 9933:1 9940:2 9950:1 9980:1 9993:1 10018:3 10032:2 10125:1 10147:1 10150:1 10183:1 10201:1 10282:1 10288:1 10289:1 10350:1 10373:1 10392:2 10421:2 10424:2 10426:1 10442:1 10463:2 10510:1 10515:1 10536:1 10542:1 10576:1 10580:1 10582:1 10590:1 10593:2 10613:1 10634:1 10662:1 10704:1 10714:1 10736:1 10742:1 10751:1 10759:1 10766:1 10768:3 10780:2 10784:1 10801:1 10817:1 10828:1 10861:1 10870:1 10929:1 10936:1 10944:1 10946:1 10957:2 10962:2 10972:1 10983:1 11042:1 11049:2 11061:1 11067:1 11073:2 11082:1 11109:1 11203:1 11210:1 11212:3 11220:1 11230:1 11248:1 11250:1 11255:1 11264:1 11269:2 11281:1 11303:1 11310:4 11311:1 11320:2 11351:1 11444:3 11446:1 11489:1 11508:1 11546:2 11577:1 11593:1 11595:2 11606:1 11644:1 11666:3 11667:7 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:1 11799:1 11811:1 11822:2 11852:3 11878:3 11906:2 11932:1 11942:1 11977:1 11983:1 12017:2 12034:1 12035:1 12059:1 12065:1 12083:2 12101:1 12115:1 12117:3 12119:1 12140:1 12173:1 12192:1 12202:14 12206:1 12209:1 12226:4 12229:9 12255:1 12295:2 12344:1 12364:1 12370:2 12381:1 12383:1 12392:1 12431:1 12518:3 12529:1 12551:1 12559:1 12566:9 12590:1 12592:1 12593:1 12633:1 12653:1 12673:1 12682:1 12693:2 12754:1 12783:3 12791:1 12814:1 12823:1 12839:1 12850:1 12874:2 12880:1 12887:1 12895:1 12938:4 12970:1 12986:1 13013:1 13047:1 13060:1 13067:1 13070:1 13084:1 13107:1 13124:1 13175:1 13177:2 13187:1 13209:1 13221:3 13240:1 13267:2 13270:1 13289:1 13321:1 13324:1 13346:1 13362:1 13363:1 13384:1 13405:1 13412:2 13414:1 13417:2 13419:1 13471:1 13505:1 13526:1 13529:1 13547:1 13552:1 13557:2 13562:1 13573:2 13577:1 13579:2 13580:1 13581:1 13582:2 13593:1 13597:1 13606:1 13609:1 13620:1 13632:1 13644:1 13646:1 13661:1 13672:1 13674:1 13703:2 13715:7 13728:1 13786:1 13826:2 13846:1 13851:1 13852:1 13855:1 13861:1 13874:1 13935:1 13943:1 13971:1 13972:1 13978:1 13984:1 13986:1 13999:1 14041:1 14061:1 14082:1 14091:1 14093:1 14096:1 14101:1 14104:2 14139:1 14152:1 14172:1 14176:1 14184:1 14193:1 14241:2 14290:1 14311:1 14312:1 14360:1 14364:1 14429:1 14440:1 14457:3 14474:2 14488:1 14493:1 14519:1 14531:1 14561:1 14591:1 14595:1 14612:1 14622:1 14658:1 14673:1 14675:1 14694:1 14719:1 14720:1 14768:2 14784:1 14872:2 14902:1 14904:1 14924:1 14929:1 14953:1 14975:1 14982:1 15113:7 15121:1 15141:1 15161:2 15167:1 15189:2 15193:1 15205:2 15215:1 15217:2 15227:1 15233:1 15235:1 15281:1 15291:1 15295:1 15324:1 15330:1 15337:9 15344:1 15348:1 15370:1 15401:1 15408:1 15413:1 15441:3 15444:1 15459:1 15460:1 15467:1 15475:1 15477:2 15600:1 15601:2 15661:1 15664:1 15675:1 15678:1 15680:1 15682:1 15689:1 15698:1 15714:1 15723:1 15744:1 15757:1 15759:1 15764:1 15766:2 15825:1 15829:2 15830:1 15840:1 15892:1 15932:1 15980:1 16035:4 16038:2 16046:1 16048:1 16050:1 16066:1 16080:1 16098:1 16107:1 16133:2 16178:1 16190:1 16236:1 16246:1 16269:3 16282:1 16338:1 16393:1 16410:3 16438:1 16464:1 16505:2 16508:1 16527:1 16556:1 16574:1 16589:2 16593:1 16602:2 16614:1 16636:2 16638:1 16640:1 16670:1 16728:1 16735:1 16749:3 16763:1 16782:2 16870:1 16872:1 16881:1 16930:1 16937:1 16938:1 16940:1 16954:1 16992:2 17033:2 17046:2 17048:1 17059:1 17089:1 17099:1 17102:1 17128:2 17160:1 17162:1 17164:1 17175:1 17187:1 17208:2 17211:1 17222:2 17284:1 17311:1 17377:2 17389:3 17424:1 17437:1 17442:2 17501:1 17528:1 17530:1 17546:1 17568:1 17618:1 17670:1 17707:1 17741:1 17744:1 17770:1 17785:1 17794:1 17811:1 17824:1 17841:1 17853:3 17857:1 17862:1 17865:1 17894:1 17908:1 17927:1 17935:1 17941:1 17945:1 18025:1 18031:1 18032:1 18064:1 18078:1 18090:3 18133:1 18134:1 18138:1 18205:1 18209:1 18240:1 18257:1 18266:1 18272:5 18280:3 18281:1 18287:1 18292:1 18293:3 18322:1 18334:1 18368:1 18385:3 18397:1 18399:1 18491:4 18513:1 18514:1 18542:1 18574:1 18586:1 18592:1 18646:1 18703:4 18705:2 18722:1 18723:1 18724:4 18725:1 18739:1 18766:1 18815:1 18875:1 18883:2 18906:1 18929:1 18953:1 18964:1 18965:1 18974:1 18993:1 19004:1 19005:1 19007:7 19017:3 19066:1 19089:1 19164:1 19236:1 19252:1 19260:3 19262:1 19290:1 19310:1 19397:1 19404:1 19430:1 19439:1 19481:1 19496:1 19498:1 19597:2 19604:1 19631:1 19640:1 19647:2 19663:1 19697:1 19707:1 19712:1 19734:1 19790:7 19791:1 19796:1 19834:1 19843:1 19936:5 19952:1 19963:1 19970:1 19977:1 19978:1 20022:2 20023:2 20038:1 20046:1 20055:1 20062:1 20071:1 20079:1 20106:1 20125:1 20139:1 20160:1 20190:1 20197:1 20214:1 20284:1 20285:1 20299:1 20351:1 20414:1 20420:1 20511:3 20522:1 20536:1 20572:1 20587:1 20590:2 20591:1 20648:1 20653:1 20678:1 20724:2 20740:1 20741:1 20747:1 20754:1 20767:1 20793:1 20794:1 20802:1 20819:1 20842:1 20916:1 20941:1 20944:3 20956:1 20961:1 20976:1 20987:1 21014:1 21015:1 21022:1 21029:3 21061:1 21075:1 21096:1 21099:2 21102:1 21108:12 21109:2 21110:2 21113:1 21119:1 21121:1 21128:1 21143:1 21145:1 21169:1 21171:7 21173:1 21205:1 21221:2 21222:1 21242:1 21243:1 21292:1 21315:1 21320:1 21321:1 21324:1 21340:1 21361:1 21373:1 21381:1 21391:1 21413:1 21441:1 21459:1 21470:1 21530:1 21535:1 21537:1 21540:1 21543:1 21575:1 21588:1 21603:1 21609:1 21634:2 21639:1 21640:1 21669:1 21711:3 21722:1 21778:1 21779:1 21782:4 21786:1 21804:1 21826:1 21837:1 21843:1 21866:1 21880:1 21881:1 21889:2 21894:1 21907:2 21930:1 21955:1 21970:1 21997:3 21998:2 22010:1 22021:1 22048:1 22107:1 22116:1 22156:1 22159:1 22160:1 22169:1 22183:1 22276:1 22347:2 22349:2 22352:1 22360:1 22386:1 22428:1 22450:1 22457:1 22550:1 22649:1 22651:3 22672:3 22674:1 22675:1 22688:1 22709:1 22765:1 22787:1 22794:1 22796:2 22829:1 22840:1 22877:1 22907:1 22911:1 22938:1 22964:1 22977:1 22983:1 22985:2 22988:1 22997:1 23018:1 23034:1 23081:1 23119:1 23142:2 23160:1 23188:1 23258:1 23284:1 23286:2 23348:1 23359:1 23371:1 23426:1 23444:1 23496:1 23504:1
16 3:1 51:1 110:1 126:1 138:1 164:4 165:1 204:1 224:1 280:1 296:1 317:1 384:1 406:1 413:2 416:1 428:1 440:4 463:1 464:1 467:1 507:1 511:1 514:1 527:1 539:2 596:1 606:1 607:1 608:2 626:2 643:1 646:2 739:1 786:1 803:2 805:1 831:1 835:1 838:1 854:1 855:1 860:2 886:3 902:2 904:1 967:1 993:1 1010:2 1048:2 1071:4 1078:1 1086:1 1098:1 1115:1 1120:1 1131:2 1133:1 1145:1 1148:1 1162:1 1190:1 1191:1 1194:1 1195:2 1196:1 1203:1 1207:1 1236:1 1242:2 1268:2 1292:1 1348:1 1366:1 1382:1 1384:1 1391:2 1399:3 1425:1 1451:1 1494:1 1564:1 1579:1 1580:1 1612:1 1628:2 1647:1 1648:2 1649:1 1672:1 1679:2 1682:1 1683:1 1686:1 1738:1 1752:7 1789:1 1802:1 1809:1 1829:2 1844:1 1857:19 1869:1 1890:1 1935:1 1943:1 1978:1 1982:1 2001:1 2003:2 2023:1 2034:1 2042:1 2044:1 2045:1 2047:1 2053:1 2063:2 2105:1 2109:1 2123:1 2142:1 2145:1 2150:1 2156:1 2182:1 2191:1 2192:1 2231:1 2234:1 2288:1 2297:1 2301:1 2310:3 2367:1 2414:1 2447:2 2450:1 2469:1 2479:1 2483:2 2512:1 2547:1 2554:2 2573:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:1 2639:2 2643:1 2658:1 2667:1 2671:2 2685:1 2702:1 2705:1 2708:1 2716:1 2763:1 2764:1 2773:1 2793:1 2795:1 2798:1 2801:1 2810:2 2816:2 2870:1 2892:1 2895:2 2902:1 2914:1 2921:1 2926:1 2927:1 2936:1 2954:1 2966:7 2979:1 2986:1 3004:1 3012:1 3014:1 3033:1 3035:4 3048:1 3052:1 3070:1 3084:1 3141:1 3153:1 3177:2 3178:1 3218:1 3223:2 3229:1 3234:1 3240:1 3264:1 3272:2 3274:1 3302:1 3314:1 3316:1 3345:1 3409:1 3462:1 3473:1 3519:1 3541:2 3545:1 3546:2 3552:1 3554:1 3555:1 3556:1 3559:3 3562:1 3564:1 3567:1 3573:4 3575:1 3576:2 3590:1 3622:1 3642:1 3652:1 3661:1 3673:1 3686:1 3698:1 3703:1 3706:2 3726:1 3740:1 3752:2 3812:1 3819:1 3827:1 3854:1 3860:1 3892:3 3952:1 3974:1 4004:1 4006:1 4027:3 4038:1 4050:1 4052:2 4058:1 4059:1 4083:1 4089:1 4117:1 4150:1 4182:1 4183:1 4184:1 4208:4 4219:1 4226:1 4260:1 4262:3 4281:1 4296:1 4317:1 4335:2 4358:1 4380:1 4386:1 4393:1 4413:1 4417:3 4424:1 4481:1 4488:1 4511:4 4513:3 4516:1 4560:1 4561:5 4577:5 4589:1 4631:1 4650:14 4671:1 4699:1 4705:1 4714:1 4781:1 4786:1 4807:2 4837:2 4844:3 4932:2 4966:1 5034:2 5038:1 5060:1 5084:4 5092:1 5120:3 5139:1 5144:1 5161:2 5170:1 5183:1 5226:1 5227:1 5253:2 5279:1 5297:1 5310:1 5344:1 5353:2 5383:1 5388:1 5428:1 5430:1 5432:1 5433:1 5454:1 5456:1 5467:1 5480:1 5517:1 5521:1 5542:1 5543:1 5560:1 5565:1 5619:1 5621:1 5627:1 5659:1 5661:5 5710:1 5748:1 5780:1 5816:1 5817:14 5820:1 5851:1 5855:1 5858:1 5870:7 5872:1 5873:1 5876:2 5896:1 5898:1 5919:1 5932:1 5934:2 5947:1 5953:3 5957:2 5961:1 5963:1 5994:2 6005:3 6014:1 6062:1 6066:1 6077:1 6084:1 6090:2 6101:1494 6102:1 6117:1 6140:1 6149:1 6165:1 6179:1 6183:1 6195:1 6198:1 6210:1 6232:1 6233:1 6273:3 6349:2 6376:2 6399:1 6407:1 6448:1 6450:1 6480:1 6485:3 6493:1 6495:3 6576:1 6581:1 6590:1 6644:3 6698:1 6705:3 6715:2 6748:2 6750:1 6777:1 6782:1 6784:1 6792:1 6802:2 6830:2 6840:1 6855:1 6863:1 6867:1 6871:1 6888:1 6936:1 6956:1 6974:1 6981:4 7050:1 7110:1 7124:1 7134:1 7137:1 7153:1 7203:2 7319:1 7320:1 7337:1 7340:1 7363:1 7376:1 7377:1 7383:1 7397:2 7405:1 7408:2 7415:1 7450:1 7474:1 7476:5 7507:6 7508:1 7520:1 7523:4 7555:1 7581:1 7582:1 7632:1 7635:1 7638:1 7649:1 7670:1 7671:1 7680:1 7684:1 7686:1 7694:1 7696:1 7702:1 7719:1 7732:1 7733:4 7734:1 7736:1 7750:7 7751:1 7753:1 7782:1 7788:1 7811:1 7817:1 7823:1 7871:1 7887:1 8065:1 8089:1 8091:7 8096:2 8097:3 8168:1 8209:1 8222:1 8224:1 8225:7 8234:2 8270:1 8298:1 8301:1 8326:1 8357:1 8361:1 8367:1 8372:1 8373:1 8385:1 8435:1 8437:1 8453:4 8464:1 8490:1 8520:1 8544:1 8578:1 8579:1 8598:1 8599:1 8605:1 8609:1 8624:1 8644:3 8709:1 8713:1 8719:1 8746:1 8748:7 8755:1 8757:1 8769:2 8780:1 8789:1 8791:1 8831:6 8838:1 8856:1 8894:1 8900:1 8903:1 8930:1 8948:1 8976:1 8980:1 9017:1 9029:1 9048:1 9053:2 9065:1 9158:1 9169:1 9180:1 9208:2 9215:1 9217:1 9218:1 9231:1 9253:1 9280:1 9314:1 9370:1 9374:1 9402:3 9416:1 9445:1 9477:1 9528:1 9541:1 9573:1 9598:1 9617:1 9625:1 9626:1 9645:1 9687:1 9706:1 9707:2 9747:3 9751:7 9769:1 9770:3 9778:1 9779:1 9799:1 9809:1 9848:1 9904:1 9912:1 9917:1 9919:2 9929:2 9930:1 9933:1 9940:2 9948:1 9950:1 9980:1 9993:1 10018:3 10032:2 10125:1 10147:1 10150:1 10183:1 10201:1 10223:1 10232:1 10282:1 10288:1 10289:1 10350:1 10373:1 10392:2 10421:2 10424:2 10426:1 10442:1 10463:2 10473:1 10510:1 10515:1 10536:1 10542:1 10576:1 10580:1 10582:1 10590:1 10593:2 10597:1 10613:1 10634:1 10662:1 10704:1 10714:1 10734:1 10736:1 10742:1 10751:1 10759:1 10766:1 10768:3 10780:2 10784:1 10801:1 10817:1 10828:2 10861:1 10870:1 10929:1 10936:1 10944:1 10946:1 10957:2 10962:2 10972:1 10983:1 11042:1 11049:2 11061:1 11067:1 11073:2 11082:1 11109:1 11203:1 11210:1 11212:3 11220:1 11229:1 11230:1 11248:1 11250:1 11255:1 11264:1 11269:2 11281:1 11303:1 11310:4 11311:1 11320:2 11351:1 11444:3 11446:1 11489:1 11508:1 11546:2 11577:1 11593:1 11595:2 11606:1 11644:1 11666:3 11667:7 11673:1 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:1 11799:1 11802:1 11811:1 11822:2 11852:3 11878:3 11906:2 11932:1 11942:1 11977:1 11983:1 12017:2 12034:1 12035:1 12059:1 12065:1 12083:2 12101:1 12115:1 12117:3 12119:1 12140:1 12173:1 12192:1 12202:15 12206:1 12209:1 12226:4 12229:11 12255:1 12295:3 12344:1 12364:1 12370:2 12381:1 12383:1 12392:1 12431:1 12518:3 12529:1 12551:1 12559:1 12566:9 12567:1 12590:1 12592:1 12593:1 12633:1 12653:1 12673:1 12682:1 12693:2 12754:1 12783:4 12791:1 12814:1 12823:1 12839:1 12850:1 12874:2 12880:1 12887:1 12895:1 12938:6 12966:1 12970:1 12986:1 13013:1 13047:1 13060:1 13067:1 13070:1 13084:1 13107:1 13124:1 13129:1 13175:1 13177:3 13186:1 13187:1 13209:1 13221:3 13240:1 13267:2 13270:1 13289:1 13321:1 13324:1 13346:1 13362:1 13363:1 13384:1 13387:1 13405:1 13412:2 13414:1 13417:2 13419:1 13471:1 13489:1 13505:1 13526:2 13529:1 13547:1 13552:1 13557:2 13562:1 13573:2 13577:1 13579:2 13580:1 13581:1 13582:2 13593:1 13597:1 13606:1 13609:1 13620:1 13632:1 13644:1 13646:1 13661:1 13672:1 13674:1 13703:2 13715:7 13728:2 13756:1 13786:1 13826:2 13846:1 13851:1 13852:1 13855:1 13861:1 13874:1 13935:1 13943:1 13971:1 13972:1 13978:1 13984:1 13986:1 13999:1 14041:1 14061:1 14082:1 14091:1 14093:1 14096:1 14101:1 14104:2 14139:2 14152:1 14172:1 14176:1 14184:1 14193:1 14241:2 14290:1 14311:1 14312:1 14336:1 14360:1 14364:1 14391:1 14396:1 14429:1 14440:1 14457:3 14474:2 14488:1 14493:1 14519:1 14531:1 14561:1 14591:1 14595:1 14612:1 14622:1 14643:1 14658:1 14673:1 14675:1 14694:1 14719:1 14720:1 14768:2 14784:1 14795:1 14872:2 14902:1 14904:1 14924:1 14929:1 14953:1 14975:1 14982:1 15018:1 15113:7 15121:1 15141:1 15161:2 15167:1 15189:2 15193:1 15204:1 15205:2 15215:1 15217:2 15227:1 15233:1 15235:1 15281:1 15291:1 15295:1 15324:1 15330:1 15337:9 15344:1 15348:1 15370:1 15401:1 15408:1 15413:1 15441:3 15444:1 15459:1 15460:1 15467:1 15475:1 15477:2 15600:1 15601:2 15660:1 15661:1 15664:1 15675:1 15678:1 15680:1 15682:1 15689:1 15698:1 15714:1 15723:1 15744:1 15757:1 15759:1 15764:1 15766:2 15825:1 15829:2 15830:1 15840:1 15892:2 15909:1 15932:1 15980:1 16035:4 16038:2 16046:1 16048:1 16050:1 16066:1 16080:1 16098:1 16107:1 16133:3 16172:1 16178:1 16190:2 16236:1 16246:1 16269:3 16282:1 16338:1 16393:1 16410:3 16438:1 16464:1 16505:2 16508:1 16527:1 16556:1 16574:1 16589:2 16593:1 16602:3 16614:1 16636:2 16638:1 16640:1 16670:1 16728:1 16735:1 16749:3 16763:1 16782:3 16870:2 16872:1 16881:1 16911:1 16930:1 16937:1 16938:1 16939:1 16940:1 16954:1 16992:2 17033:2 17046:3 17048:1 17059:1 17089:1 17099:1 17102:1 17128:2 17160:1 17162:1 17164:2 17175:1 17187:1 17208:2 17211:2 17222:2 17283:1 17284:1 17311:1 17377:2 17389:3 17424:1 17437:1 17442:2 17465:1 17501:1 17528:1 17530:1 17546:1 17568:1 17618:1 17670:2 17707:2 17709:1 17741:1 17744:1 17770:1 17785:1 17794:1 17811:1 17824:1 17841:1 17851:1 17853:3 17857:1 17862:1 17865:1 17894:1 17908:1 17927:1 17935:1 17941:1 17945:1 17983:1 18025:2 18031:1 18032:1 18064:1 18078:1 18090:3 18133:1 18134:1 18138:2 18205:1 18209:1 18240:1 18257:1 18266:1 18272:5 18280:3 18281:1 18287:1 18292:1 18293:3 18322:1 18334:1 18368:1 18385:3 18391:1 18397:1 18399:1 18470:1 18491:4 18513:1 18514:1 18542:1 18574:1 18586:1 18592:1 18623:1 18646:1 18703:4 18705:2 18722:2 18723:1 18724:4 18725:1 18739:1 18766:1 18815:1 18875:1 18883:2 18900:1 18906:1 18929:2 18953:1 18957:1 18964:1 18965:1 18974:1 18993:1 19004:1 19005:1 19007:7 19017:4 19066:1 19089:1 19164:1 19236:1 19240:1 19252:1 19260:3 19262:2 19290:1 19299:1 19310:1 19319:1 19397:1 19404:1 19430:1 19439:1 19481:1 19496:1 19498:1 19597:2 19604:1 19631:1 19640:1 19647:3 19663:1 19697:1 19707:1 19712:1 19734:1 19754:1 19790:7 19791:1 19796:1 19834:1 19843:1 19936:5 19952:1 19963:1 19970:1 19977:1 19978:1 20022:2 20023:2 20038:1 20046:1 20055:1 20062:1 20071:1 20079:1 20106:1 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:1 20284:1 20285:2 20299:1 20351:1 20378:1 20392:1 20414:1 20420:1 20511:3 20522:1 20536:1 20572:1 20587:1 20590:2 20591:1 20648:1 20653:1 20678:1 20696:1 20724:2 20740:1 20741:1 20747:1 20754:1 20767:1 20770:1 20793:1 20794:1 20802:1 20819:1 20842:1 20863:1 20916:1 20918:1 20941:1 20944:3 20956:1 20961:1 20976:1 20987:1 21014:1 21015:1 21022:1 21029:3 21035:1 21061:1 21075:1 21096:1 21099:2 21102:1 21108:12 21109:2 21110:2 21113:1 21119:1 21121:1 21128:1 21143:1 21145:1 21169:1 21171:7 21173:1 21201:1 21205:1 21221:2 21222:1 21242:1 21243:1 21292:1 21315:1 21320:1 21321:1 21324:1 21333:2 21340:1 21361:1 21373:1 21381:1 21391:1 21406:1 21413:1 21441:1 21459:1 21470:1 21530:1 21535:1 21537:1 21540:1 21543:1 21575:1 21588:1 21603:1 21609:1 21634:2 21639:1 21640:1 21669:1 21711:3 21722:1 21778:1 21779:1 21782:4 21786:1 21804:1 21826:1 21835:1 21837:1 21843:1 21866:1 21880:1 21881:1 21889:2 21894:1 21907:2 21930:1 21955:1 21970:1 21997:4 21998:2 22010:1 22021:1 22048:1 22107:1 22116:1 22151:1 22156:1 22159:1 22160:1 22169:1 22173:1 22183:1 22276:1 22347:2 22349:2 22352:1 22360:1 22386:1 22428:1 22450:1 22457:1 22550:1 22649:1 22651:3 22672:3 22674:1 22675:1 22688:1 22709:2 22765:1 22787:1 22794:1 22796:2 22829:1 22840:1 22877:1 22880:1 22901:1 22907:1 22911:1 22938:1 22964:1 22977:1 22983:1 22985:2 22988:1 22997:1 23003:1 23018:1 23034:1 23081:1 23114:1 23119:1 23142:3 23160:1 23188:1 23258:1 23263:1 23284:1 23286:2 23348:1 23359:1 23370:1 23371:1 23426:1 23444:1 23496:1 23504:2
16 3:1 51:1 110:1 126:1 138:1 164:4 165:1 204:1 224:1 262:1 280:1 296:1 317:1 384:1 406:1 413:2 416:1 428:1 440:4 463:1 464:1 467:1 470:1 507:1 511:1 514:1 527:1 539:2 596:1 606:1 607:1 608:2 626:2 643:1 646:2 739:1 786:1 803:2 805:1 831:1 835:1 838:1 854:1 855:1 860:2 886:3 902:2 904:1 947:1 967:2 993:1 1010:3 1048:2 1071:4 1078:1 1086:1 1098:1 1115:2 1120:1 1131:2 1133:1 1145:1 1148:1 1160:1 1162:1 1190:1 1191:1 1194:1 1195:2 1196:1 1203:1 1207:1 1236:1 1242:2 1268:2 1292:1 1348:1 1366:1 1382:1 1384:1 1391:2 1399:3 1425:1 1451:1 1494:1 1564:1 1573:1 1574:1 1579:1 1580:1 1612:1 1628:2 1647:1 1648:2 1649:1 1672:1 1679:2 1682:1 1683:1 1686:1 1738:1 1752:7 1789:1 1802:1 1809:1 1829:2 1844:1 1857:19 1869:1 1890:1 1930:1 1935:1 1943:1 1977:1 1978:1 1982:1 2001:1 2003:2 2023:1 2034:1 2042:1 2044:1 2045:1 2047:1 2053:1 2063:2 2105:1 2109:1 2123:1 2142:1 2145:1 2150:1 2156:1 2182:1 2191:1 2192:1 2231:1 2234:1 2288:1 2297:1 2301:1 2310:3 2343:1 2367:1 2414:1 2447:2 2450:1 2469:1 2479:1 2483:2 2512:1 2547:1 2554:2 2573:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:1 2639:2 2643:1 2658:1 2667:1 2671:2 2685:1 2702:1 2705:1 2708:1 2716:1 2763:1 2764:1 2773:1 2793:1 2795:1 2798:1 2801:1 2810:2 2816:2 2870:1 2892:1 2895:2 2902:1 2914:1 2921:1 2926:1 2927:1 2936:1 2954:1 2966:7 2970:1 2979:1 2986:1 3004:1 3012:1 3014:1 3033:1 3035:4 3048:1 3052:1 3070:1 3084:1 3136:1 3141:1 3153:1 3161:1 3168:1 3177:2 3178:1 3218:1 3223:2 3229:1 3234:1 3240:1 3264:1 3272:2 3274:1 3302:1 3314:1 3316:1 3345:1 3409:1 3462:1 3473:1 3519:1 3541:2 3545:2 3546:2 3552:1 3554:1 3555:1 3556:1 3559:3 3562:1 3564:1 3567:1 3573:4 3575:1 3576:2 3590:1 3622:1 3642:1 3652:1 3661:1 3673:1 3686:1 3698:1 3703:1 3705:1 3706:2 3726:1 3740:1 3752:3 3759:1 3812:1 3819:1 3827:1 3854:1 3860:1 3865:1 3892:3 3952:1 3974:1 4004:1 4006:1 4027:3 4038:1 4050:1 4052:2 4058:1 4059:1 4083:1 4089:1 4117:1 4150:1 4182:1 4183:1 4184:1 4208:4 4219:1 4226:1 4260:1 4262:3 4281:1 4296:1 4317:1 4335:2 4358:1 4380:1 4386:1 4393:1 4413:1 4417:3 4424:1 4481:2 4488:1 4511:4 4513:3 4516:1 4560:1 4561:5 4577:6 4589:1 4631:1 4650:15 4671:1 4675:1 4699:1 4705:1 4714:1 4735:1 4781:1 4786:1 4807:2 4837:2 4844:3 4932:2 4966:1 5034:2 5038:1 5060:1 5084:4 5092:1 5112:1 5120:3 5139:1 5144:1 5161:2 5170:1 5183:1 5199:1 5226:1 5227:1 5253:2 5279:1 5297:1 5310:1 5344:1 5353:2 5383:1 5388:1 5390:1 5398:1 5409:1 5428:1 5430:1 5432:1 5433:1 5447:1 5454:1 5456:1 5467:1 5480:1 5517:1 5521:1 5542:1 5543:1 5560:1 5565:1 5619:1 5621:1 5627:1 5659:1 5661:5 5710:1 5732:1 5748:1 5780:1 5816:1 5817:14 5820:1 5851:1 5855:1 5858:1 5870:7 5872:1 5873:1 5876:2 5896:1 5898:1 5919:1 5932:1 5934:2 5947:1 5953:3 5957:2 5961:1 5963:1 5994:2 6005:3 6014:1 6017:1 6062:1 6066:1 6077:1 6084:1 6090:2 6101:1605 6102:1 6117:1 6140:1 6149:1 6165:1 6179:1 6183:1 6195:1 6198:1 6205:1 6210:1 6232:1 6233:1 6273:3 6349:2 6376:2 6399:1 6407:1 6448:1 6450:1 6480:1 6485:3 6493:1 6495:3 6496:1 6500:1 6576:1 6581:1 6590:1 6644:3 6698:1 6705:3 6715:2 6748:2 6750:1 6777:1 6782:1 6784:1 6792:1 6802:2 6830:2 6840:1 6855:1 6863:1 6867:1 6871:1 6888:1 6936:1 6956:1 6974:2 6975:1 6981:4 7050:1 7110:1 7124:1 7134:1 7137:1 7153:1 7203:2 7319:1 7320:1 7337:1 7340:1 7348:1 7363:1 7376:1 7377:1 7383:1 7397:2 7405:1 7408:2 7415:1 7450:1 7474:1 7476:5 7488:1 7507:9 7508:1 7520:1 7523:4 7555:1 7581:1 7582:1 7632:1 7635:1 7638:1 7649:1 7670:1 7671:1 7680:1 7684:1 7686:1 7694:1 7696:1 7702:1 7719:1 7732:1 7733:4 7734:1 7736:1 7750:7 7751:1 7753:1 7758:1 7762:1 7782:1 7788:1 7811:1 7817:1 7823:1 7871:1 7887:1 7935:1 8065:1 8089:1 8091:7 8096:2 8097:3 8107:1 8108:2 8168:1 8187:1 8209:1 8222:1 8224:1 8225:7 8234:2 8270:1 8298:1 8301:1 8326:1 8357:1 8361:1 8367:1 8372:1 8373:1 8385:1 8435:1 8437:1 8453:4 8464:1 8490:2 8520:1 8525:1 8544:1 8573:1 8578:1 8579:1 8598:1 8599:1 8605:1 8609:1 8624:1 8644:4 8692:1 8709:1 8713:1 8719:1 8746:1 8748:7 8755:1 8757:1 8769:2 8780:1 8789:1 8791:1 8831:7 8838:1 8856:1 8894:1 8900:1 8903:1 8930:1 8948:1 8973:1 8976:1 8980:1 8985:1 9017:1 9029:1 9048:1 9053:2 9065:1 9139:1 9158:1 9169:1 9180:1 9208:2 9215:1 9217:1 9218:1 9231:1 9253:1 9280:1 9314:1 9370:1 9374:1 9402:3 9416:1 9445:1 9477:1 9528:1 9541:1 9573:1 9598:1 9611:1 9617:1 9625:1 9626:1 9645:1 9687:1 9706:1 9707:2 9747:3 9749:1 9751:8 9769:1 9770:3 9777:1 9778:1 9779:1 9799:1 9800:1 9809:1 9848:1 9904:1 9912:1 9917:1 9919:2 9926:1 9929:2 9930:1 9933:1 9940:2 9948:1 9950:1 9980:1 9993:1 10018:3 10027:1 10032:2 10095:1 10125:1 10147:1 10150:1 10183:1 10201:1 10208:1 10223:1 10232:1 10277:1 10282:1 10288:1 10289:1 10350:1 10373:1 10386:1 10392:2 10421:2 10424:2 10426:1 10442:1 10451:2 10463:2 10473:1 10510:2 10515:1 10536:1 10542:1 10576:1 10580:1 10582:1 10590:1 10593:2 10597:1 10613:1 10634:1 10662:1 10704:2 10714:1 10734:1 10736:1 10742:1 10751:1 10759:1 10766:1 10768:3 10780:2 10784:1 10801:1 10817:1 10828:2 10861:1 10870:1 10929:1 10936:1 10937:1 10944:1 10946:1 10957:2 10962:2 10972:1 10983:1 11042:1 11049:2 11061:1 11067:1 11068:1 11073:2 11082:1 11109:1 11203:1 11210:1 11212:3 11220:1 11229:1 11230:1 11248:1 11250:1 11255:1 11264:1 11269:2 11281:1 11303:1 11310:4 11311:1 11320:2 11351:1 11356:1 11396:1 11444:3 11446:1 11489:1 11508:1 11546:2 11577:1 11583:1 11593:1 11595:2 11606:1 11615:1 11644:1 11666:3 11667:7 11673:1 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:2 11799:1 11802:1 11811:1 11822:2 11852:3 11878:3 11906:2 11932:1 11942:1 11977:1 11983:1 12017:2 12034:1 12035:1 12059:1 12065:1 12083:2 12101:1 12115:1 12117:3 12119:2 12140:1 12141:1 12154:1 12173:1 12192:1 12202:16 12206:1 12209:1 12226:4 12229:12 12244:1 12255:1 12295:3 12344:1 12364:1 12370:2 12381:1 12383:1 12392:1 12431:1 12440:1 12518:4 12529:1 12543:1 12551:1 12559:1 12566:9 12567:1 12590:1 12592:1 12593:2 12606:1 12628:1 12633:1 12653:1 12673:1 12682:1 12693:2 12754:1 12783:4 12791:1 12814:1 12823:1 12839:1 12850:1 12874:2 12880:1 12887:1 12895:1 12938:6 12966:1 12970:1 12986:1 13013:1 13047:1 13060:1 13067:1 13070:1 13084:1 13107:1 13124:1 13129:1 13175:1 13177:3 13186:1 13187:1 13209:1 13221:3 13240:1 13267:2 13270:2 13289:1 13321:1 13324:1 13346:1 13362:1 13363:1 13384:1 13387:1 13392:1 13405:1 13412:2 13414:1 13417:2 13419:1 13471:1 13484:1 13489:1 13505:1 13506:1 13526:2 13529:1 13547:1 13552:1 13557:2 13562:1 13573:2 13577:1 13579:2 13580:1 13581:1 13582:2 13593:1 13597:2 13606:1 13609:1 13620:1 13632:1 13644:1 13646:1 13661:1 13672:1 13674:1 13703:2 13715:7 13728:2 13756:1 13786:1 13826:2 13846:1 13851:1 13852:1 13855:1 13861:1 13874:1 13935:1 13943:1 13971:1 13972:1 13978:1 13984:1 13986:1 13999:1 14007:1 14041:1 14061:1 14082:1 14091:1 14093:1 14096:1 14101:1 14104:3 14134:1 14139:2 14152:1 14172:1 14176:1 14184:1 14193:1 14241:2 14283:1 14290:1 14311:1 14312:1 14336:1 14360:1 14364:1 14391:1 14396:1 14429:1 14440:1 14457:3 14474:2 14488:1 14493:1 14519:1 14531:1 14561:1 14591:1 14595:1 14612:1 14622:1 14643:1 14658:1 14673:1 14675:1 14694:1 14719:1 14720:1 14768:2 14784:1 14795:1 14872:2 14902:1 14904:1 14924:1 14926:1 14929:1 14953:1 14970:1 14975:1 14982:1 15016:1 15018:1 15039:2 15113:7 15121:1 15141:1 15161:2 15167:1 15189:2 15193:1 15204:1 15205:2 15215:1 15217:2 15227:1 15233:1 15235:1 15266:1 15281:1 15291:1 15295:1 15324:1 15330:1 15337:9 15344:1 15348:1 15370:1 15401:1 15408:1 15413:1 15441:3 15444:1 15459:1 15460:1 15467:1 15475:1 15477:2 15499:1 15511:1 15600:1 15601:2 15660:1 15661:1 15664:1 15675:1 15678:1 15680:1 15682:1 15689:1 15698:1 15714:1 15723:1 15744:1 15757:1 15759:1 15764:1 15766:2 15825:1 15829:2 15830:1 15840:1 15892:2 15909:1 15932:1 15980:1 15981:1 15986:1 16035:4 16038:2 16046:1 16048:1 16050:1 16066:1 16080:1 16098:1 16107:1 16133:3 16172:1 16178:1 16190:2 16236:1 16246:1 16269:3 16282:1 16338:1 16393:1 16410:3 16438:1 16464:1 16505:2 16508:1 16527:1 16556:1 16574:1 16589:2 16593:1 16602:3 16614:1 16615:1 16636:2 16638:1 16640:1 16670:1 16728:1 16735:1 16749:3 16763:1 16774:1 16782:3 16870:2 16872:1 16881:1 16911:1 16930:1 16937:1 16938:2 16939:1 16940:1 16954:1 16975:1 16990:1 16992:2 17009:1 17033:2 17046:3 17048:1 17059:1 17089:1 17099:1 17102:1 17128:2 17151:1 17160:1 17162:1 17164:2 17175:1 17187:1 17208:2 17211:2 17222:2 17283:1 17284:1 17311:2 17347:1 17377:2 17389:3 17424:1 17437:1 17442:2 17465:1 17501:1 17528:1 17530:1 17546:1 17568:1 17618:1 17670:2 17707:2 17709:1 17741:1 17744:1 17770:1 17785:1 17794:1 17811:1 17821:1 17824:1 17841:1 17851:1 17853:3 17857:1 17862:1 17865:1 17894:1 17908:1 17927:1 17935:1 17941:1 17945:1 17966:1 17983:1 17995:1 18025:2 18031:1 18032:1 18064:1 18078:1 18090:3 18133:2 18134:1 18138:2 18205:1 18209:1 18240:1 18257:1 18265:1 18266:1 18272:5 18275:1 18280:4 18281:1 18287:1 18292:1 18293:4 18322:1 18334:1 18368:1 18385:3 18391:1 18397:1 18399:1 18470:1 18491:4 18513:1 18514:1 18542:1 18547:1 18574:1 18586:1 18592:1 18623:1 18646:1 18703:4 18705:2 18722:2 18723:1 18724:4 18725:1 18735:1 18739:1 18766:1 18815:2 18833:1 18875:1 18883:2 18900:1 18906:1 18929:2 18953:1 18957:1 18964:1 18965:1 18974:1 18993:1 19004:1 19005:1 19007:7 19017:4 19052:1 19066:1 19089:1 19164:1 19236:1 19240:1 19252:1 19260:4 19262:2 19290:1 19299:1 19310:1 19319:1 19397:1 19404:1 19430:1 19439:1 19481:1 19492:1 19496:1 19498:1 19597:2 19604:1 19631:1 19640:1 19647:3 19653:1 19663:1 19697:1 19707:1 19712:1 19734:1 19754:1 19790:7 19791:1 19794:1 19796:1 19834:1 19843:1 19936:6 19952:1 19963:1 19970:1 19977:1 19978:1 20022:2 20023:2 20038:1 20046:1 20055:1 20062:1 20071:1 20079:1 20106:1 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:1 20284:1 20285:2 20299:1 20351:1 20378:1 20392:1 20413:1 20414:1 20420:1 20511:3 20522:1 20536:1 20572:1 20587:1 20590:2 20591:1 20648:1 20653:1 20678:1 20696:1 20703:1 20724:2 20740:1 20741:1 20747:1 20754:1 20767:1 20770:1 20793:1 20794:1 20802:1 20819:1 20842:1 20863:1 20916:1 20918:1 20924:1 20941:1 20944:3 20956:1 20961:1 20976:1 20987:1 21014:1 21015:1 21022:1 21029:3 21035:1 21061:1 21075:1 21096:1 21099:2 21102:1 21108:13 21109:2 21110:2 21113:1 21119:1 21121:1 21128:1 21143:1 21145:1 21169:1 21171:7 21173:1 21201:1 21205:1 21221:2 21222:1 21223:1 21242:1 21243:1 21262:1 21292:1 21315:1 21320:1 21321:1 21324:1 21333:2 21340:1 21361:1 21373:1 21381:1 21391:2 21406:1 21413:1 21441:1 21459:2 21470:1 21530:1 21535:1 21537:1 21538:1 21540:1 21543:1 21575:1 21588:1 21603:1 21609:1 21622:1 21634:2 21639:1 21640:1 21669:1 21711:3 21722:1 21778:1 21779:1 21782:4 21786:1 21804:1 21826:1 21835:1 21837:1 21843:1 21845:1 21866:1 21880:1 21881:1 21889:2 21894:1 21907:2 21930:1 21955:1 21966:1 21970:1 21997:4 21998:2 22010:1 22021:1 22024:1 22048:1 22067:1 22107:1 22116:1 22151:1 22156:1 22159:1 22160:1 22169:1 22173:1 22183:1 22255:1 22276:1 22347:2 22349:2 22352:1 22360:1 22384:1 22386:1 22428:1 22450:1 22457:1 22550:1 22649:1 22651:3 22672:3 22674:1 22675:1 22688:1 22709:2 22725:1 22765:1 22787:1 22794:1 22796:2 22829:1 22840:1 22877:1 22880:1 22897:1 22901:1 22907:1 22911:1 22938:1 22964:1 22977:1 22983:1 22985:3 22988:1 22997:1 23003:1 23018:1 23034:1 23081:1 23114:1 23119:1 23142:3 23160:1 23188:1 23258:1 23263:1 23284:1 23286:2 23301:1 23348:1 23359:1 23370:1 23371:1 23426:1 23444:1 23466:1 23468:1 23496:1 23504:2
16 3:1 51:1 110:2 126:1 138:1 164:4 165:1 204:1 224:1 262:1 280:1 296:1 317:1 384:1 406:1 413:2 416:1 428:1 440:4 463:1 464:1 467:1 470:1 507:1 511:1 514:1 527:1 539:2 596:1 606:1 607:1 608:2 626:2 643:1 646:2 739:1 786:1 803:2 805:1 831:1 835:1 838:1 854:1 855:1 860:2 886:3 896:1 902:2 904:1 947:1 967:2 993:1 1010:3 1048:2 1049:1 1071:4 1078:1 1086:1 1098:1 1115:2 1120:1 1131:2 1133:1 1145:1 1148:1 1160:1 1162:1 1190:1 1191:1 1194:1 1195:3 1196:1 1203:1 1207:1 1236:1 1242:2 1268:2 1292:1 1348:1 1366:1 1382:1 1384:1 1391:2 1399:3 1425:1 1451:1 1494:1 1564:1 1573:1 1574:1 1579:1 1580:1 1612:1 1628:2 1647:1 1648:2 1649:1 1672:1 1679:2 1682:1 1683:1 1686:1 1738:1 1752:8 1789:1 1794:1 1802:1 1809:1 1829:2 1844:1 1857:22 1869:1 1890:1 1930:2 1935:1 1943:1 1977:2 1978:1 1982:1 2001:1 2003:2 2023:1 2034:1 2042:1 2044:1 2045:1 2047:1 2053:2 2063:2 2105:1 2109:1 2123:2 2142:1 2145:1 2150:1 2156:1 2182:1 2191:1 2192:1 2231:1 2234:1 2288:1 2297:1 2301:1 2310:3 2343:2 2367:2 2414:1 2447:2 2450:1 2469:1 2479:1 2483:2 2512:1 2547:1 2554:2 2573:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:1 2639:2 2642:1 2643:1 2658:1 2667:1 2671:2 2685:1 2702:1 2705:1 2708:1 2716:1 2763:1 2764:1 2773:1 2793:1 2795:1 2798:1 2801:1 2810:2 2816:2 2870:1 2892:1 2895:2 2902:1 2914:1 2921:1 2926:1 2927:1 2936:1 2954:1 2966:7 2970:1 2979:1 2986:1 3004:1 3012:1 3014:1 3033:1 3035:4 3048:1 3052:1 3070:1 3084:1 3136:1 3141:1 3153:1 3161:1 3168:2 3177:3 3178:1 3218:1 3223:3 3229:1 3234:1 3240:1 3264:1 3272:2 3274:1 3302:1 3314:1 3316:1 3345:1 3409:1 3462:1 3473:1 3519:1 3541:2 3545:2 3546:3 3552:1 3554:1 3555:1 3556:1 3559:3 3562:1 3564:1 3567:1 3573:4 3575:1 3576:2 3590:1 3622:1 3642:1 3652:1 3661:1 3673:1 3686:1 3698:1 3703:1 3705:1 3706:2 3726:1 3740:1 3752:3 3759:1 3812:1 3819:1 3827:1 3854:1 3860:1 3865:1 3892:3 3906:1 3952:1 3974:1 4004:1 4006:1 4027:3 4038:1 4050:1 4052:2 4058:1 4059:1 4083:1 4089:1 4105:1 4117:1 4150:1 4182:1 4183:1 4184:1 4208:4 4219:1 4226:1 4260:1 4262:4 4281:1 4296:1 4317:1 4335:2 4358:1 4380:1 4386:1 4393:1 4413:1 4417:3 4424:1 4481:2 4488:1 4511:4 4513:4 4516:1 4560:1 4561:5 4577:6 4589:1 4631:1 4650:16 4671:1 4675:1 4699:1 4705:1 4714:1 4735:1 4746:1 4781:1 4786:1 4807:2 4837:2 4844:3 4932:2 4966:1 5034:2 5038:1 5060:1 5084:4 5092:1 5112:1 5120:4 5139:1 5144:1 5161:2 5170:1 5183:1 5199:1 5226:1 5227:1 5253:2 5279:1 5297:1 5310:1 5344:1 5353:2 5383:1 5388:1 5390:1 5398:2 5409:1 5428:1 5430:1 5432:1 5433:1 5447:2 5454:1 5456:1 5467:1 5480:1 5517:1 5521:1 5542:1 5543:1 5560:1 5565:1 5619:1 5621:1 5627:1 5659:1 5661:5 5710:1 5732:1 5748:1 5780:1 5816:1 5817:15 5820:1 5851:2 5855:2 5858:1 5870:8 5872:1 5873:1 5876:3 5896:1 5898:1 5919:2 5932:1 5934:2 5939:1 5947:1 5953:3 5957:2 5961:1 5963:1 5994:2 6005:3 6014:1 6017:1 6062:1 6065:1 6066:1 6077:2 6084:1 6090:2 6101:1695 6102:1 6117:1 6140:1 6149:1 6165:1 6179:1 6183:1 6195:1 6198:1 6205:1 6210:1 6232:1 6233:1 6253:1 6273:3 6349:2 6376:2 6399:1 6407:1 6448:1 6450:1 6480:1 6485:3 6493:1 6495:3 6496:1 6500:1 6576:1 6581:1 6590:1 6644:3 6698:1 6705:4 6715:2 6748:2 6750:1 6777:1 6782:1 6784:1 6792:1 6802:2 6830:2 6840:1 6855:1 6863:1 6867:1 6871:1 6888:1 6936:1 6956:1 6974:2 6975:1 6981:4 7050:1 7104:1 7110:1 7124:1 7134:1 7137:1 7153:1 7203:2 7319:1 7320:1 7337:1 7340:1 7348:1 7363:1 7376:1 7377:1 7383:2 7397:2 7405:1 7408:2 7415:1 7450:1 7474:1 7476:5 7488:1 7507:9 7508:1 7520:1 7523:5 7555:1 7581:1 7582:1 7632:1 7635:1 7638:1 7649:1 7670:1 7671:1 7680:1 7684:1 7686:1 7694:1 7696:1 7702:1 7719:1 7732:1 7733:4 7734:1 7736:1 7750:8 7751:1 7753:1 7758:1 7762:1 7782:1 7788:1 7811:1 7817:1 7823:1 7871:1 7887:1 7935:1 7995:1 8065:1 8089:1 8091:7 8096:2 8097:3 8107:1 8108:4 8168:1 8187:1 8209:1 8222:1 8224:1 8225:8 8234:3 8270:1 8298:1 8301:1 8326:1 8357:1 8361:1 8367:1 8372:1 8373:1 8385:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8490:2 8520:1 8525:1 8544:1 8573:1 8578:1 8579:1 8598:1 8599:1 8605:1 8609:1 8624:2 8644:5 8692:1 8709:1 8713:1 8719:1 8746:1 8748:7 8755:1 8757:1 8769:2 8780:1 8789:1 8791:1 8831:8 8838:1 8856:1 8889:1 8894:1 8900:1 8903:1 8930:1 8948:1 8973:1 8976:1 8980:1 8985:1 9017:1 9029:1 9048:1 9053:2 9065:1 9139:1 9158:1 9169:1 9180:1 9208:2 9215:1 9217:1 9218:1 9231:1 9253:1 9280:1 9314:1 9370:1 9374:1 9402:3 9416:1 9445:1 9477:1 9528:1 9541:1 9547:1 9573:1 9598:1 9611:1 9617:1 9625:2 9626:1 9645:1 9687:2 9706:1 9707:2 9747:3 9749:1 9751:8 9769:1 9770:3 9777:1 9778:1 9779:1 9799:1 9800:1 9809:1 9848:1 9904:1 9912:1 9913:1 9917:1 9919:2 9926:1 9929:2 9930:1 9933:1 9940:2 9948:1 9950:1 9980:1 9993:1 10018:3 10027:1 10032:2 10095:1 10125:1 10147:1 10150:1 10183:1 10201:1 10208:1 10223:2 10232:1 10277:1 10282:1 10288:1 10289:1 10350:1 10373:1 10386:1 10392:2 10421:2 10424:2 10426:1 10442:1 10451:4 10459:1 10463:2 10473:1 10510:2 10515:1 10536:1 10542:1 10576:1 10580:1 10582:1 10590:1 10593:2 10597:1 10613:1 10634:1 10662:1 10704:2 10714:1 10734:1 10736:1 10742:1 10751:1 10759:1 10766:1 10768:4 10780:2 10784:1 10801:1 10817:1 10828:2 10861:1 10870:1 10929:1 10936:1 10937:1 10944:1 10946:1 10956:1 10957:2 10962:2 10972:1 10983:1 11042:1 11049:2 11061:1 11067:1 11068:2 11073:2 11082:1 11109:1 11203:1 11210:1 11212:4 11220:1 11229:1 11230:1 11248:1 11250:1 11255:1 11264:1 11269:2 11281:1 11303:1 11310:4 11311:1 11320:2 11351:1 11356:1 11396:1 11444:3 11446:1 11489:1 11508:1 11546:2 11577:1 11583:1 11593:1 11595:2 11606:1 11615:1 11644:1 11666:3 11667:8 11673:1 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:2 11799:1 11802:1 11811:1 11822:2 11852:3 11878:3 11906:2 11932:1 11942:1 11977:1 11983:1 12017:2 12034:1 12035:1 12059:1 12065:1 12083:2 12101:1 12115:1 12117:3 12119:2 12140:1 12141:1 12154:1 12173:1 12192:1 12202:17 12206:1 12209:1 12226:4 12229:13 12244:1 12255:1 12295:3 12344:1 12364:1 12370:3 12381:1 12383:1 12392:1 12431:1 12440:1 12518:4 12529:1 12543:1 12551:1 12559:1 12566:9 12567:2 12590:1 12592:1 12593:2 12606:1 12628:1 12633:1 12653:1 12673:1 12682:1 12693:2 12723:1 12754:1 12783:5 12791:1 12814:1 12823:1 12839:1 12850:1 12874:2 12880:1 12887:1 12895:1 12919:1 12938:7 12966:1 12970:1 12986:1 13013:1 13047:1 13060:1 13067:1 13070:1 13084:1 13107:1 13124:1 13129:2 13175:1 13177:3 13186:1 13187:1 13209:1 13221:3 13240:1 13267:2 13270:2 13289:1 13321:1 13324:1 13346:1 13362:1 13363:1 13384:1 13387:1 13392:1 13405:1 13412:2 13414:1 13417:2 13419:1 13471:1 13484:2 13489:1 13505:1 13506:1 13526:3 13529:1 13547:1 13552:1 13557:2 13562:1 13573:2 13577:1 13579:2 13580:1 13581:1 13582:2 13593:1 13597:2 13606:1 13609:1 13620:1 13632:1 13644:1 13646:1 13661:1 13672:1 13674:1 13703:2 13715:8 13728:2 13756:2 13786:1 13826:2 13846:1 13851:1 13852:1 13855:1 13861:1 13874:1 13935:1 13943:1 13971:1 13972:1 13978:1 13984:1 13986:1 13999:1 14007:1 14041:1 14061:1 14082:1 14091:1 14093:1 14096:1 14101:1 14104:3 14134:1 14137:1 14139:3 14152:1 14172:1 14176:1 14184:1 14193:1 14241:2 14283:1 14290:1 14311:1 14312:1 14336:1 14360:1 14364:1 14391:1 14396:1 14429:1 14440:1 14457:3 14474:2 14488:1 14493:1 14519:1 14531:1 14561:1 14591:1 14595:1 14612:1 14622:1 14643:1 14658:1 14673:1 14675:1 14694:1 14719:1 14720:1 14768:2 14777:1 14784:1 14795:1 14872:2 14902:1 14904:1 14924:1 14926:2 14929:1 14953:1 14970:1 14975:1 14982:1 15016:1 15018:1 15039:4 15113:8 15121:1 15141:1 15161:2 15164:1 15167:1 15189:3 15193:1 15204:1 15205:2 15215:1 15217:2 15227:1 15233:1 15235:1 15266:2 15281:1 15291:1 15295:1 15324:1 15330:1 15337:9 15344:1 15348:1 15370:1 15401:1 15408:1 15413:1 15441:3 15444:1 15459:1 15460:1 15467:1 15470:1 15475:1 15477:3 15499:1 15511:1 15600:1 15601:2 15660:1 15661:1 15664:1 15675:1 15678:1 15680:1 15682:1 15689:1 15698:1 15714:1 15723:1 15744:1 15757:1 15759:1 15764:1 15766:2 15825:1 15829:2 15830:1 15840:1 15892:2 15909:1 15932:1 15980:1 15981:1 15986:1 16035:4 16038:3 16046:1 16048:1 16050:1 16066:1 16080:1 16098:1 16107:1 16133:3 16172:2 16178:1 16190:2 16236:1 16246:1 16269:3 16282:1 16338:1 16393:1 16410:3 16438:1 16464:1 16505:2 16508:1 16527:1 16556:1 16574:1 16589:2 16593:1 16602:3 16614:1 16615:2 16636:2 16638:1 16640:1 16670:1 16728:1 16735:1 16749:3 16763:1 16774:1 16782:4 16870:2 16872:1 16881:1 16911:1 16930:1 16937:1 16938:2 16939:1 16940:1 16954:1 16975:1 16990:1 16992:2 17009:1 17033:2 17046:3 17048:1 17059:1 17089:1 17099:1 17102:1 17128:2 17151:1 17160:1 17162:1 17164:3 17175:1 17187:1 17208:2 17211:2 17222:2 17283:1 17284:1 17311:2 17347:1 17377:2 17389:3 17424:1 17437:1 17442:2 17465:2 17501:1 17528:1 17530:1 17546:1 17568:1 17618:1 17634:1 17670:2 17707:3 17709:1 17741:1 17744:1 17770:1 17785:1 17794:1 17811:1 17821:2 17824:1 17841:1 17851:1 17853:3 17857:1 17862:1 17865:1 17894:1 17908:1 17927:1 17935:1 17941:1 17945:1 17966:1 17983:1 17995:1 18004:1 18025:3 18031:1 18032:1 18047:1 18064:1 18078:1 18090:3 18123:1 18133:2 18134:1 18138:2 18205:1 18209:1 18240:1 18257:1 18265:1 18266:1 18272:5 18275:1 18280:4 18281:1 18287:1 18292:1 18293:4 18322:1 18334:1 18368:1 18385:3 18391:1 18397:1 18399:1 18470:1 18491:4 18509:1 18513:1 18514:1 18542:1 18547:1 18574:1 18586:1 18592:1 18623:1 18646:1 18703:4 18705:2 18722:2 18723:1 18724:4 18725:1 18735:1 18739:1 18766:1 18815:2 18833:1 18856:1 18875:1 18883:2 18900:1 18906:1 18922:1 18929:2 18953:1 18957:1 18964:1 18965:1 18967:1 18974:1 18993:1 19004:1 19005:1 19007:8 19017:4 19052:1 19066:1 19089:2 19164:1 19236:1 19240:1 19252:1 19260:5 19262:2 19290:1 19299:1 19310:1 19319:1 19397:1 19404:1 19430:1 19439:1 19481:1 19492:1 19496:1 19498:1 19502:1 19597:2 19604:1 19631:1 19640:1 19647:4 19653:1 19663:1 19697:1 19707:1 19712:1 19734:1 19754:1 19790:8 19791:1 19794:2 19796:1 19834:1 19843:1 19936:6 19952:1 19963:1 19970:1 19977:1 19978:1 20022:2 20023:2 20038:1 20041:1 20046:1 20055:1 20062:1 20071:1 20079:1 20106:1 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:1 20284:1 20285:2 20299:1 20351:1 20378:1 20392:1 20413:1 20414:1 20420:1 20511:3 20522:1 20536:1 20572:1 20587:1 20590:2 20591:1 20648:1 20653:1 20678:1 20696:1 20703:1 20724:2 20740:1 20741:1 20747:1 20754:1 20767:1 20770:1 20793:1 20794:1 20802:1 20819:1 20842:1 20863:1 20916:1 20918:1 20924:1 20941:1 20944:3 20956:1 20961:1 20976:1 20987:1 21014:1 21015:1 21022:1 21029:3 21035:1 21061:1 21075:1 21096:1 21099:2 21102:1 21108:13 21109:2 21110:2 21113:1 21119:1 21121:1 21128:1 21143:1 21145:1 21169:1 21171:7 21173:1 21201:2 21205:1 21221:2 21222:1 21223:1 21242:1 21243:1 21262:1 21276:1 21292:1 21315:1 21320:1 21321:1 21324:1 21333:3 21340:1 21361:1 21373:1 21381:1 21391:2 21406:1 21413:1 21441:1 21459:2 21470:1 21530:1 21535:1 21536:1 21537:1 21538:2 21540:1 21543:1 21575:1 21588:1 21603:1 21609:1 21622:1 21634:2 21635:1 21639:1 21640:1 21669:1 21711:3 21722:1 21778:1 21779:1 21782:4 21786:1 21804:1 21826:1 21835:1 21837:1 21843:1 21845:1 21866:1 21880:1 21881:1 21889:2 21894:1 21907:2 21930:1 21955:1 21966:1 21970:1 21997:4 21998:2 22010:1 22021:1 22024:1 22048:1 22067:2 22107:1 22116:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:1 22183:1 22255:2 22276:1 22347:2 22349:2 22352:1 22360:1 22384:2 22386:1 22428:1 22450:1 22457:1 22550:1 22649:1 22651:3 22672:3 22674:1 22675:1 22688:1 22709:2 22725:1 22765:1 22787:1 22794:1 22796:2 22829:1 22840:1 22877:1 22880:1 22897:1 22901:2 22907:1 22911:1 22938:1 22964:1 22977:1 22983:1 22985:3 22988:1 22997:1 23003:1 23018:1 23034:1 23081:1 23114:1 23119:1 23142:4 23160:1 23188:1 23258:1 23263:1 23284:1 23286:2 23301:1 23348:1 23359:1 23370:1 23371:1 23426:1 23444:1 23466:2 23468:1 23496:1 23504:2
16 1:1 3:1 51:1 64:1 110:2 126:1 138:1 164:4 165:1 204:1 224:1 229:1 262:1 280:1 296:1 317:1 384:1 406:1 413:2 416:1 428:1 440:4 463:1 464:1 467:1 470:1 507:1 511:1 514:1 516:1 527:1 539:2 596:1 606:1 607:1 608:2 626:3 643:1 646:2 735:1 739:1 759:1 786:1 803:2 805:1 831:1 835:1 838:1 854:1 855:1 860:2 886:3 896:1 902:2 904:1 947:1 967:2 993:1 1010:3 1048:2 1049:1 1071:4 1078:1 1086:1 1098:1 1115:2 1120:1 1131:3 1133:1 1145:1 1148:1 1160:1 1162:1 1190:1 1191:1 1194:1 1195:3 1196:1 1203:1 1207:1 1236:1 1242:2 1268:2 1292:1 1348:1 1366:1 1382:1 1384:1 1391:2 1399:3 1425:1 1451:1 1494:1 1564:1 1573:1 1574:1 1579:1 1580:1 1612:1 1628:3 1647:2 1648:2 1649:1 1672:1 1679:2 1682:1 1683:1 1686:1 1738:1 1752:9 1789:1 1792:1 1794:1 1802:1 1809:1 1829:2 1844:1 1857:24 1869:1 1890:2 1930:3 1935:1 1943:1 1977:2 1978:1 1982:1 2001:1 2003:2 2023:1 2034:1 2042:1 2044:1 2045:1 2047:1 2053:2 2063:2 2105:1 2109:1 2123:2 2124:1 2142:1 2145:1 2150:1 2156:1 2182:1 2191:1 2192:1 2231:1 2234:1 2288:1 2297:1 2301:1 2310:3 2343:2 2367:2 2414:1 2447:2 2450:1 2469:1 2479:1 2483:2 2512:1 2547:1 2554:2 2573:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:1 2639:2 2642:1 2643:1 2658:1 2667:1 2671:2 2685:1 2702:1 2705:1 2708:2 2716:1 2763:1 2764:1 2773:1 2793:1 2795:1 2798:1 2801:1 2810:2 2816:2 2870:1 2892:1 2895:2 2902:1 2914:1 2921:1 2926:1 2927:1 2936:1 2954:1 2966:7 2970:1 2979:1 2986:1 3004:1 3012:1 3014:1 3023:1 3033:1 3035:4 3048:1 3052:1 3070:1 3084:1 3136:1 3141:1 3153:1 3161:1 3168:2 3177:3 3178:1 3218:1 3219:1 3223:3 3229:1 3234:1 3240:1 3242:1 3264:1 3272:2 3274:1 3302:1 3314:1 3316:1 3345:1 3409:1 3462:1 3473:1 3519:1 3541:2 3545:2 3546:3 3552:1 3554:1 3555:1 3556:1 3559:3 3562:1 3564:1 3567:1 3573:4 3575:1 3576:3 3590:1 3622:1 3642:1 3652:1 3661:1 3673:1 3686:1 3698:1 3703:1 3705:1 3706:2 3726:1 3740:1 3746:1 3752:3 3759:1 3812:1 3819:1 3827:1 3854:1 3860:1 3865:1 3892:3 3906:1 3952:1 3974:1 4004:1 4006:1 4027:3 4038:1 4050:1 4052:2 4058:1 4059:1 4083:1 4089:1 4105:1 4117:1 4127:1 4150:1 4182:1 4183:1 4184:1 4208:4 4219:1 4226:1 4257:1 4260:1 4262:4 4281:1 4296:1 4317:1 4335:2 4358:1 4380:1 4386:1 4393:1 4413:1 4417:3 4424:1 4481:2 4488:1 4511:4 4513:5 4516:1 4560:1 4561:5 4577:6 4589:1 4631:1 4650:16 4671:1 4675:1 4699:1 4705:1 4714:1 4735:1 4746:1 4781:1 4786:1 4807:2 4818:1 4837:2 4844:3 4932:2 4966:1 5034:2 5038:1 5060:1 5084:4 5092:1 5112:1 5120:4 5139:1 5144:1 5161:2 5170:1 5183:1 5199:1 5226:1 5227:1 5253:3 5279:1 5297:1 5310:1 5344:1 5353:2 5383:1 5388:1 5390:1 5398:3 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5467:1 5480:1 5517:1 5521:1 5542:1 5543:1 5560:2 5565:1 5619:1 5621:1 5627:1 5659:1 5661:5 5710:1 5732:1 5748:1 5780:1 5816:1 5817:16 5820:1 5851:2 5855:3 5858:1 5870:9 5872:1 5873:1 5876:3 5896:1 5898:1 5919:3 5932:1 5934:2 5939:1 5947:1 5953:3 5957:2 5961:1 5963:1 5994:2 6005:3 6014:1 6017:1 6025:1 6055:1 6062:1 6065:1 6066:1 6077:2 6084:1 6090:2 6101:1819 6102:1 6117:1 6140:1 6149:1 6165:1 6179:1 6183:1 6195:1 6198:1 6205:1 6210:1 6232:1 6233:1 6253:1 6273:3 6349:2 6376:2 6399:1 6407:1 6448:1 6450:1 6480:1 6485:3 6493:1 6495:3 6496:1 6500:1 6576:1 6581:1 6590:1 6644:3 6698:1 6705:5 6715:2 6725:1 6748:2 6750:1 6777:1 6782:1 6784:1 6792:1 6802:2 6830:2 6840:1 6855:1 6863:1 6867:1 6871:1 6880:1 6888:1 6936:1 6956:1 6974:2 6975:1 6981:4 7050:1 7104:1 7110:1 7124:1 7134:1 7137:1 7153:1 7203:2 7319:1 7320:1 7337:1 7340:1 7348:1 7363:1 7376:1 7377:1 7383:2 7397:2 7405:1 7408:2 7415:1 7450:1 7474:1 7476:6 7488:1 7507:10 7508:1 7520:1 7523:6 7555:1 7581:1 7582:1 7632:1 7635:1 7638:1 7649:1 7670:1 7671:1 7680:1 7684:1 7686:1 7694:1 7696:1 7702:1 7719:1 7732:1 7733:4 7734:1 7736:1 7750:9 7751:1 7753:1 7758:1 7762:1 7782:1 7788:1 7811:1 7817:1 7823:1 7871:1 7887:1 7935:1 7995:1 8065:1 8089:1 8091:7 8096:2 8097:3 8107:1 8108:5 8168:1 8187:1 8209:1 8222:1 8224:1 8225:9 8234:3 8270:1 8298:1 8301:1 8326:1 8357:1 8361:1 8367:1 8372:1 8373:1 8385:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8490:2 8520:1 8525:1 8544:1 8573:1 8578:1 8579:1 8598:1 8599:1 8605:1 8609:1 8624:2 8644:5 8692:1 8709:1 8713:1 8719:1 8746:1 8748:7 8755:1 8757:1 8769:2 8771:1 8780:1 8789:1 8791:1 8831:8 8838:1 8856:1 8889:1 8894:1 8900:1 8903:1 8930:1 8937:1 8948:1 8973:1 8976:1 8980:1 8985:1 9017:1 9029:1 9048:1 9053:2 9065:1 9069:1 9139:1 9158:1 9169:1 9180:2 9208:2 9215:1 9217:1 9218:1 9231:1 9253:1 9280:1 9314:1 9370:1 9374:1 9402:3 9416:1 9445:1 9477:1 9528:1 9541:1 9547:1 9573:1 9598:1 9611:1 9617:1 9625:2 9626:1 9645:1 9687:3 9706:1 9707:2 9747:3 9749:1 9751:8 9769:1 9770:3 9777:1 9778:1 9779:1 9799:1 9800:1 9809:1 9848:1 9904:1 9908:1 9912:1 9913:1 9917:1 9919:2 9926:1 9929:2 9930:1 9933:1 9940:2 9948:1 9950:1 9980:1 9993:1 10018:3 10027:1 10032:2 10095:1 10125:1 10147:1 10150:1 10183:1 10201:1 10208:1 10223:2 10232:1 10277:1 10282:1 10288:1 10289:1 10350:1 10373:1 10386:1 10392:2 10421:2 10424:2 10426:1 10442:1 10451:5 10459:1 10463:2 10473:1 10510:2 10515:1 10536:1 10542:1 10576:1 10580:1 10582:1 10590:1 10593:2 10597:1 10613:1 10634:1 10662:1 10704:2 10714:1 10734:1 10736:1 10742:1 10751:1 10759:1 10766:1 10768:5 10780:2 10784:1 10801:1 10817:1 10828:2 10861:1 10870:1 10904:1 10929:1 10936:1 10937:1 10944:1 10946:1 10956:1 10957:2 10962:2 10972:1 10983:1 11042:1 11049:2 11061:1 11067:1 11068:2 11073:2 11082:1 11109:1 11203:1 11210:1 11212:5 11220:1 11229:1 11230:1 11248:1 11250:1 11255:1 11264:1 11269:2 11281:1 11303:1 11310:4 11311:1 11320:2 11351:1 11356:1 11367:1 11396:1 11444:3 11446:1 11489:1 11508:1 11546:2 11554:1 11577:1 11583:1 11593:1 11595:2 11606:1 11615:1 11644:1 11666:3 11667:9 11673:1 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:2 11799:1 11802:1 11811:1 11822:2 11834:1 11852:4 11878:3 11906:2 11932:1 11942:1 11977:1 11983:1 12017:2 12034:1 12035:1 12059:1 12065:1 12083:2 12101:1 12115:1 12117:3 12119:2 12140:1 12141:1 12154:1 12173:1 12192:1 12202:18 12206:1 12209:1 12226:4 12229:13 12244:1 12255:1 12295:3 12344:1 12364:1 12370:3 12381:1 12383:1 12392:1 12431:1 12440:1 12518:4 12529:1 12543:1 12551:1 12559:1 12566:9 12567:2 12590:1 12592:1 12593:2 12606:1 12628:1 12633:1 12653:1 12673:1 12682:1 12693:2 12723:1 12754:1 12783:5 12791:1 12814:1 12823:1 12839:1 12850:1 12874:2 12880:1 12887:1 12895:1 12919:1 12938:7 12966:1 12970:1 12986:1 13013:1 13047:1 13060:1 13067:1 13070:1 13084:1 13107:1 13124:1 13129:2 13175:1 13177:3 13186:1 13187:1 13209:1 13221:3 13229:1 13240:1 13267:2 13270:2 13289:1 13321:1 13324:1 13334:1 13346:1 13362:1 13363:1 13384:1 13387:1 13392:1 13405:1 13412:2 13414:1 13417:2 13419:1 13471:1 13484:3 13489:1 13505:1 13506:1 13526:3 13529:1 13547:1 13552:1 13557:2 13562:1 13573:2 13577:1 13579:2 13580:1 13581:2 13582:2 13593:1 13597:2 13606:1 13609:1 13619:1 13620:1 13632:1 13644:1 13646:1 13661:1 13672:1 13674:1 13683:1 13703:2 13715:9 13728:2 13756:2 13786:1 13826:2 13846:1 13851:1 13852:1 13854:1 13855:1 13861:1 13874:1 13935:1 13943:1 13971:1 13972:1 13978:1 13984:1 13986:1 13999:1 14007:1 14041:1 14061:1 14082:1 14091:1 14093:1 14096:1 14101:1 14104:3 14134:1 14137:1 14139:3 14152:1 14172:1 14176:1 14184:1 14193:1 14241:2 14280:1 14283:1 14290:1 14311:1 14312:1 14336:1 14360:1 14364:1 14391:1 14396:1 14429:1 14440:1 14457:3 14474:2 14488:1 14493:1 14519:1 14531:1 14561:1 14591:1 14595:1 14612:1 14622:1 14643:1 14658:1 14673:1 14675:1 14694:1 14719:1 14720:1 14768:2 14777:1 14784:1 14795:1 14872:2 14902:1 14904:1 14924:1 14926:2 14929:1 14953:1 14970:1 14975:1 14982:1 15016:1 15018:1 15039:5 15113:9 15121:1 15141:1 15151:1 15161:2 15164:1 15167:1 15189:3 15193:1 15204:1 15205:2 15215:1 15217:2 15227:1 15233:1 15235:1 15266:2 15281:1 15291:1 15295:1 15324:1 15330:1 15337:9 15344:1 15348:1 15370:1 15401:1 15408:1 15413:1 15441:3 15444:1 15459:1 15460:1 15467:1 15470:1 15475:1 15477:3 15499:1 15511:1 15600:1 15601:2 15660:2 15661:1 15664:1 15675:1 15678:1 15680:1 15682:1 15689:1 15698:1 15714:1 15723:1 15744:1 15757:1 15759:1 15764:1 15766:2 15825:1 15829:2 15830:1 15840:1 15877:1 15878:1 15892:2 15909:1 15932:1 15980:1 15981:1 15986:1 16035:5 16038:3 16046:1 16048:1 16050:1 16066:1 16080:1 16098:1 16107:1 16133:3 16172:2 16178:1 16190:2 16236:1 16246:1 16269:3 16282:1 16338:1 16393:1 16410:3 16428:1 16438:1 16460:1 16464:1 16468:1 16505:2 16508:1 16527:1 16556:1 16574:1 16589:2 16593:1 16602:3 16614:1 16615:2 16636:2 16638:1 16640:1 16670:1 16728:1 16735:1 16749:3 16763:1 16774:1 16782:4 16870:2 16872:2 16881:1 16911:1 16930:1 16937:1 16938:2 16939:1 16940:1 16954:1 16975:1 16990:1 16992:2 17009:1 17033:2 17046:3 17048:1 17059:1 17089:1 17099:1 17102:1 17128:2 17151:1 17160:1 17162:1 17164:3 17175:1 17187:1 17208:2 17211:3 17222:2 17283:1 17284:1 17311:2 17347:1 17377:2 17389:3 17424:1 17437:1 17442:2 17465:2 17501:1 17528:1 17530:1 17546:1 17568:1 17618:1 17634:1 17670:2 17707:3 17709:1 17741:1 17744:1 17770:1 17785:1 17794:1 17811:1 17821:2 17824:1 17841:1 17851:1 17853:3 17857:1 17862:1 17865:1 17894:1 17908:1 17927:1 17935:1 17941:1 17945:1 17966:1 17983:1 17995:1 18004:1 18025:3 18031:1 18032:1 18047:1 18064:1 18078:1 18090:3 18123:1 18133:2 18134:1 18138:2 18205:1 18209:1 18240:2 18257:1 18265:1 18266:1 18272:5 18275:1 18280:4 18281:1 18287:1 18292:1 18293:4 18303:1 18322:1 18334:2 18345:1 18368:1 18385:3 18391:1 18397:1 18399:1 18463:1 18470:1 18491:4 18509:1 18513:1 18514:1 18542:1 18547:1 18574:1 18586:1 18592:1 18623:1 18646:1 18703:4 18705:2 18722:2 18723:1 18724:4 18725:2 18735:1 18739:1 18766:1 18815:2 18833:1 18856:1 18875:1 18883:2 18900:1 18906:1 18922:1 18929:2 18953:1 18957:1 18964:1 18965:1 18967:1 18974:1 18993:1 19004:1 19005:1 19007:9 19017:4 19052:1 19066:1 19089:2 19164:1 19236:1 19240:1 19252:1 19260:5 19262:2 19290:1 19299:1 19310:1 19319:1 19397:1 19404:1 19430:1 19439:1 19481:1 19492:1 19496:1 19498:1 19502:1 19597:2 19604:1 19631:1 19640:1 19647:4 19653:1 19663:1 19697:1 19707:1 19712:1 19734:1 19754:1 19790:9 19791:1 19794:3 19796:1 19834:1 19843:1 19936:6 19952:1 19963:1 19970:1 19977:1 19978:1 20022:2 20023:2 20038:1 20041:1 20046:1 20055:1 20062:1 20071:1 20079:1 20106:1 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:1 20284:1 20285:2 20299:1 20351:1 20353:1 20378:1 20392:1 20413:1 20414:1 20420:1 20511:3 20522:1 20536:1 20572:1 20587:1 20590:2 20591:1 20648:1 20653:1 20678:1 20696:1 20703:1 20724:2 20740:1 20741:1 20747:1 20754:1 20767:1 20770:1 20793:1 20794:1 20802:1 20819:1 20842:1 20863:1 20916:1 20918:1 20924:1 20941:1 20944:3 20956:1 20961:1 20976:1 20987:1 21014:1 21015:1 21022:1 21029:3 21035:1 21061:1 21075:1 21096:1 21099:3 21102:1 21108:14 21109:2 21110:2 21113:1 21119:1 21121:1 21128:1 21143:1 21145:1 21169:1 21171:7 21173:1 21201:2 21205:1 21221:2 21222:1 21223:1 21242:1 21243:1 21262:1 21276:1 21292:2 21315:1 21320:1 21321:1 21324:1 21333:3 21340:1 21361:1 21373:1 21381:1 21391:2 21406:1 21413:1 21441:1 21459:2 21470:1 21530:1 21535:1 21536:1 21537:1 21538:2 21540:1 21543:1 21575:1 21588:1 21603:1 21609:1 21622:1 21634:2 21635:1 21639:1 21640:1 21669:1 21704:1 21711:3 21722:1 21778:2 21779:1 21782:4 21786:1 21804:1 21826:1 21835:1 21837:1 21843:1 21845:1 21866:1 21880:1 21881:1 21889:2 21894:1 21907:2 21930:1 21955:1 21966:1 21970:1 21997:4 21998:2 22010:1 22021:1 22024:1 22048:1 22067:3 22107:1 22108:1 22116:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:1 22183:1 22255:3 22276:1 22347:2 22349:2 22352:1 22360:1 22384:2 22386:1 22428:1 22450:1 22457:1 22550:1 22584:1 22649:1 22651:3 22672:3 22674:1 22675:1 22688:1 22709:2 22725:1 22765:1 22787:1 22794:1 22796:2 22829:1 22840:1 22877:1 22880:1 22897:1 22901:2 22907:1 22911:1 22938:1 22964:1 22977:1 22983:1 22985:3 22988:1 22997:1 23003:1 23018:1 23034:1 23081:1 23114:1 23119:1 23142:4 23160:1 23188:1 23258:1 23263:1 23284:1 23286:2 23301:1 23345:1 23348:1 23359:1 23370:1 23371:1 23426:1 23444:1 23466:2 23468:1 23496:1 23504:2
16 1:1 3:1 51:1 64:1 110:2 126:1 138:1 164:4 165:1 204:1 224:1 229:1 262:1 280:1 296:1 317:1 384:1 406:1 413:2 416:1 428:1 440:4 463:1 464:1 467:1 470:1 507:1 511:1 514:1 516:1 527:1 539:2 596:1 606:1 607:1 608:2 626:3 643:1 646:2 735:1 739:1 759:1 786:1 803:2 805:1 831:1 835:1 838:1 840:1 854:1 855:1 860:2 886:3 896:1 902:2 904:1 947:1 962:1 967:2 993:1 1010:3 1048:2 1049:1 1060:1 1071:4 1078:1 1086:1 1098:1 1115:2 1120:1 1131:4 1133:1 1145:1 1148:1 1160:1 1162:1 1190:1 1191:1 1194:1 1195:3 1196:1 1203:1 1207:1 1208:1 1236:1 1242:4 1268:2 1292:1 1348:1 1366:1 1382:1 1384:1 1391:2 1399:3 1425:1 1451:1 1494:1 1564:1 1573:1 1574:1 1579:1 1580:1 1612:1 1628:3 1647:2 1648:2 1649:1 1672:1 1679:2 1682:1 1683:1 1686:1 1738:1 1752:11 1789:1 1792:1 1794:1 1802:1 1809:1 1829:2 1844:1 1857:27 1869:1 1890:2 1930:3 1935:1 1943:1 1977:2 1978:1 1982:1 2001:1 2003:2 2023:1 2034:1 2042:1 2044:1 2045:1 2047:1 2053:2 2063:3 2105:1 2109:1 2123:2 2124:1 2142:1 2145:1 2150:1 2156:1 2182:1 2191:1 2192:1 2231:1 2234:1 2288:1 2297:1 2301:1 2310:3 2343:2 2367:2 2414:1 2447:2 2450:1 2469:1 2479:1 2483:2 2512:1 2547:1 2554:2 2573:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:1 2639:2 2642:1 2643:1 2658:1 2667:1 2671:2 2685:1 2702:1 2705:1 2708:2 2716:1 2763:1 2764:1 2773:1 2779:1 2793:1 2795:1 2798:1 2801:1 2810:2 2816:2 2870:1 2892:1 2895:2 2902:1 2914:1 2921:1 2926:1 2927:1 2936:1 2954:1 2966:7 2970:1 2979:1 2986:1 3004:1 3012:1 3014:1 3023:1 3033:1 3035:4 3048:1 3052:1 3070:1 3084:1 3136:1 3141:1 3153:1 3161:1 3168:2 3177:3 3178:1 3218:1 3219:1 3223:3 3229:1 3234:1 3240:1 3242:1 3264:1 3272:2 3274:1 3302:1 3314:1 3316:1 3345:1 3409:1 3462:1 3473:1 3519:1 3541:2 3545:2 3546:3 3552:1 3554:1 3555:1 3556:1 3559:3 3562:1 3564:1 3567:1 3573:4 3575:1 3576:3 3590:1 3622:1 3642:1 3652:1 3661:1 3673:1 3686:1 3698:1 3703:1 3705:1 3706:2 3726:1 3740:1 3746:1 3752:3 3759:1 3761:1 3812:1 3819:1 3827:1 3854:1 3860:1 3865:1 3892:3 3906:1 3952:1 3974:1 4004:1 4006:1 4027:3 4038:1 4050:1 4052:2 4058:1 4059:1 4083:1 4089:1 4105:1 4117:1 4127:1 4150:1 4182:1 4183:1 4184:1 4208:4 4219:1 4226:1 4257:1 4260:1 4262:4 4281:1 4296:1 4311:1 4317:1 4335:2 4358:1 4380:1 4386:1 4393:1 4413:1 4417:3 4424:1 4481:2 4488:1 4511:4 4513:5 4516:1 4560:1 4561:5 4577:6 4589:1 4631:1 4650:16 4671:1 4675:1 4699:1 4705:1 4714:1 4735:1 4746:1 4781:1 4786:1 4807:2 4818:1 4837:2 4844:3 4932:2 4966:1 5034:2 5038:1 5060:1 5084:4 5092:1 5112:1 5120:4 5132:1 5139:1 5144:1 5161:2 5170:1 5183:1 5199:1 5226:1 5227:1 5253:3 5279:1 5297:1 5310:1 5344:1 5353:2 5383:1 5388:1 5390:1 5398:3 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5467:1 5480:1 5517:1 5521:1 5542:1 5543:1 5560:2 5565:1 5619:1 5621:1 5627:1 5659:1 5661:5 5677:1 5710:1 5732:1 5748:1 5780:1 5816:1 5817:20 5820:1 5851:2 5855:3 5858:1 5870:10 5872:1 5873:1 5876:3 5896:1 5898:1 5919:3 5932:1 5934:2 5939:1 5947:1 5953:3 5957:2 5961:1 5963:1 5994:2 6005:3 6014:2 6017:1 6025:1 6055:1 6062:1 6065:1 6066:1 6077:2 6084:1 6090:2 6101:1861 6102:1 6117:1 6140:1 6149:1 6165:1 6179:1 6183:1 6195:1 6198:1 6205:1 6210:1 6232:1 6233:1 6253:1 6273:3 6349:2 6376:2 6399:1 6407:1 6448:1 6450:1 6480:1 6485:3 6493:1 6495:3 6496:1 6500:1 6576:1 6581:1 6590:1 6644:3 6698:1 6705:5 6715:2 6725:1 6748:2 6750:1 6777:1 6782:1 6784:1 6792:1 6802:2 6830:2 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6880:1 6888:1 6936:1 6956:1 6962:1 6974:2 6975:1 6981:4 7050:1 7104:1 7110:1 7124:1 7134:1 7137:1 7153:1 7203:2 7276:1 7319:1 7320:1 7337:1 7340:1 7348:1 7363:1 7376:1 7377:1 7383:2 7397:2 7405:1 7408:3 7415:1 7450:1 7452:1 7474:1 7476:6 7488:1 7507:10 7508:1 7520:1 7523:6 7555:1 7581:1 7582:1 7632:1 7635:1 7638:1 7649:1 7670:1 7671:1 7680:1 7684:1 7686:1 7694:1 7696:1 7702:1 7719:1 7732:1 7733:4 7734:1 7736:1 7750:11 7751:1 7753:1 7758:1 7762:1 7782:1 7788:1 7811:1 7817:1 7823:1 7871:1 7887:1 7935:1 7995:1 8065:1 8089:1 8091:7 8096:2 8097:3 8107:1 8108:5 8168:1 8187:1 8209:1 8222:1 8224:1 8225:11 8234:3 8270:1 8298:1 8301:1 8326:1 8351:1 8357:1 8361:1 8367:1 8372:1 8373:1 8385:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8490:2 8520:1 8525:1 8544:1 8573:1 8578:1 8579:1 8598:1 8599:1 8605:1 8609:1 8624:2 8644:5 8692:1 8709:1 8713:1 8719:1 8746:1 8748:7 8755:1 8757:1 8769:2 8771:1 8780:1 8789:1 8791:1 8831:8 8838:1 8856:1 8889:1 8894:1 8900:2 8903:1 8930:1 8937:1 8948:1 8973:1 8976:1 8980:1 8985:1 9017:1 9029:1 9048:1 9053:2 9065:1 9069:1 9139:1 9158:1 9169:1 9180:2 9208:2 9215:1 9217:2 9218:1 9231:1 9253:1 9280:1 9314:1 9370:1 9374:1 9402:3 9416:1 9445:1 9477:1 9528:1 9541:1 9547:1 9573:1 9598:1 9611:1 9617:1 9625:2 9626:1 9645:1 9687:3 9706:1 9707:2 9747:3 9749:1 9751:8 9769:1 9770:3 9777:1 9778:1 9779:1 9797:1 9799:1 9800:1 9809:1 9812:1 9848:1 9904:1 9906:1 9908:1 9912:1 9913:1 9917:1 9919:2 9926:1 9929:2 9930:1 9933:1 9940:2 9948:1 9950:1 9980:1 9993:1 10018:3 10027:1 10032:2 10095:1 10125:1 10147:1 10150:1 10183:1 10201:1 10208:1 10212:1 10223:2 10232:1 10277:1 10282:1 10288:1 10289:1 10350:1 10373:1 10386:1 10392:2 10421:4 10424:2 10426:1 10442:1 10451:5 10459:1 10463:2 10473:1 10489:1 10510:2 10515:1 10536:1 10542:1 10562:1 10576:1 10579:1 10580:1 10582:1 10590:1 10593:2 10597:1 10613:1 10634:1 10662:1 10704:2 10714:1 10734:1 10736:1 10742:1 10751:2 10759:1 10766:1 10768:5 10780:2 10784:1 10801:1 10817:1 10828:2 10861:1 10870:1 10904:1 10929:1 10936:1 10937:1 10944:1 10946:1 10956:1 10957:2 10962:2 10972:1 10983:1 11042:1 11049:4 11061:1 11067:1 11068:2 11073:2 11082:1 11109:1 11203:1 11210:1 11212:5 11220:1 11229:1 11230:1 11248:1 11250:1 11255:1 11264:1 11269:2 11281:1 11303:1 11310:5 11311:1 11320:2 11351:1 11356:1 11367:1 11396:1 11444:3 11446:1 11489:1 11508:1 11546:2 11554:1 11577:1 11583:1 11593:1 11595:2 11606:1 11615:1 11644:1 11666:3 11667:11 11673:1 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:2 11799:1 11802:1 11811:1 11822:2 11834:1 11852:4 11878:3 11906:2 11932:1 11942:1 11977:1 11983:1 12015:1 12017:2 12034:1 12035:1 12059:1 12065:1 12083:2 12101:1 12115:1 12117:3 12119:2 12140:1 12141:1 12154:1 12173:1 12192:1 12198:1 12202:18 12206:1 12209:1 12226:4 12229:13 12244:1 12255:1 12295:3 12344:1 12364:1 12370:3 12381:1 12383:1 12392:1 12431:1 12440:1 12518:4 12529:1 12543:1 12551:1 12553:1 12559:1 12566:9 12567:2 12590:1 12592:1 12593:2 12606:1 12628:1 12633:1 12653:1 12673:1 12682:1 12693:2 12723:1 12754:1 12783:5 12791:1 12814:2 12823:1 12839:1 12850:1 12874:2 12880:1 12887:1 12895:1 12919:1 12938:7 12966:1 12970:1 12986:1 13013:1 13047:1 13060:1 13067:1 13070:1 13071:1 13084:1 13107:1 13124:1 13129:2 13175:1 13177:3 13186:1 13187:1 13209:1 13221:3 13229:1 13240:1 13267:2 13270:2 13289:1 13298:1 13309:1 13321:1 13324:1 13334:1 13346:1 13362:1 13363:1 13384:1 13387:1 13392:1 13405:1 13412:2 13414:1 13417:2 13419:1 13471:1 13484:3 13489:1 13505:1 13506:1 13526:3 13529:1 13547:1 13552:1 13557:2 13562:1 13573:2 13577:1 13579:2 13580:1 13581:2 13582:2 13593:1 13597:2 13599:1 13606:1 13609:1 13619:1 13620:1 13632:1 13644:1 13646:1 13661:1 13672:1 13674:1 13683:1 13703:2 13715:10 13724:1 13728:2 13756:2 13786:1 13826:3 13846:1 13851:1 13852:1 13854:1 13855:1 13861:1 13874:1 13935:1 13943:1 13971:1 13972:1 13978:1 13984:1 13986:1 13999:2 14007:1 14041:1 14061:1 14082:1 14091:1 14093:1 14096:1 14101:1 14104:3 14134:1 14137:1 14139:3 14152:1 14172:1 14176:1 14184:1 14193:1 14241:2 14280:1 14283:1 14290:1 14311:1 14312:1 14336:1 14360:1 14364:1 14391:1 14396:1 14429:1 14440:1 14457:3 14474:2 14488:1 14493:1 14519:1 14531:1 14561:2 14591:1 14595:1 14612:1 14622:1 14643:1 14658:1 14673:1 14675:1 14694:1 14719:1 14720:1 14767:1 14768:2 14777:1 14784:1 14795:1 14872:2 14902:1 14904:1 14913:1 14924:1 14926:2 14929:1 14953:1 14970:1 14975:1 14982:1 15016:1 15018:1 15039:5 15113:11 15121:1 15141:1 15151:1 15161:2 15164:1 15167:1 15189:3 15193:1 15204:1 15205:2 15215:1 15217:2 15227:1 15233:1 15235:1 15266:2 15281:1 15291:1 15295:1 15324:1 15330:1 15337:9 15344:1 15348:1 15370:1 15401:1 15408:1 15413:1 15441:3 15444:1 15459:1 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15499:1 15511:1 15600:1 15601:2 15660:2 15661:1 15664:1 15675:1 15678:1 15680:1 15682:1 15689:1 15698:1 15714:1 15723:1 15744:1 15757:1 15759:1 15764:1 15766:3 15772:1 15776:1 15825:1 15829:2 15830:1 15840:1 15877:1 15878:1 15892:2 15909:1 15932:1 15980:1 15981:1 15986:1 16035:6 16038:3 16046:1 16048:1 16050:1 16066:1 16080:1 16098:1 16107:1 16133:3 16172:2 16178:1 16190:2 16236:1 16246:1 16269:3 16282:1 16338:1 16393:1 16410:3 16425:1 16428:1 16438:1 16460:1 16464:1 16468:1 16505:2 16508:1 16527:1 16556:1 16574:1 16589:2 16593:1 16602:3 16614:1 16615:2 16636:2 16638:1 16640:1 16670:1 16728:1 16735:1 16749:3 16763:1 16774:1 16782:4 16870:3 16872:2 16881:1 16911:1 16930:1 16937:1 16938:2 16939:1 16940:1 16954:1 16975:1 16990:1 16992:2 17009:1 17033:2 17046:3 17048:1 17059:1 17089:1 17099:1 17102:1 17128:2 17151:1 17160:1 17162:1 17164:3 17175:1 17185:1 17187:2 17208:2 17211:3 17222:2 17283:1 17284:1 17311:2 17324:1 17338:1 17347:1 17377:2 17389:3 17424:1 17437:1 17442:2 17465:2 17486:1 17501:1 17528:1 17530:1 17546:1 17568:1 17618:1 17634:1 17670:2 17707:3 17709:1 17741:1 17744:1 17770:1 17785:1 17794:1 17811:1 17821:2 17824:1 17841:1 17851:1 17853:3 17857:1 17862:1 17865:1 17894:1 17908:1 17927:1 17935:1 17941:1 17945:1 17966:1 17983:1 17995:1 18004:1 18025:3 18031:1 18032:1 18047:1 18064:1 18078:1 18090:3 18123:1 18133:2 18134:1 18138:2 18205:1 18209:1 18240:2 18257:1 18265:1 18266:1 18272:5 18275:1 18280:4 18281:1 18287:1 18292:1 18293:4 18303:1 18322:1 18334:2 18345:1 18368:1 18385:3 18391:1 18397:1 18399:1 18463:1 18470:1 18491:4 18509:1 18513:1 18514:1 18542:1 18547:1 18574:1 18586:1 18592:1 18623:1 18646:1 18703:4 18705:2 18722:2 18723:1 18724:4 18725:2 18735:1 18739:1 18766:1 18815:2 18833:1 18856:1 18875:1 18883:2 18900:1 18906:1 18922:1 18929:2 18953:1 18957:1 18964:1 18965:1 18967:1 18974:1 18993:1 19004:1 19005:1 19007:11 19017:4 19052:1 19066:1 19089:2 19164:1 19236:1 19240:1 19252:1 19260:5 19262:2 19290:1 19299:1 19310:1 19319:1 19397:1 19404:1 19430:1 19439:1 19481:1 19492:1 19496:1 19498:1 19502:1 19597:2 19604:1 19631:1 19640:1 19647:4 19653:1 19663:1 19697:1 19707:1 19712:1 19734:1 19754:1 19790:10 19791:1 19794:3 19796:1 19834:1 19843:1 19936:6 19952:1 19963:1 19970:1 19977:1 19978:1 20022:2 20023:2 20038:1 20041:1 20046:1 20055:1 20062:1 20071:1 20079:1 20106:1 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:2 20284:1 20285:2 20299:1 20351:1 20353:1 20378:1 20392:1 20413:1 20414:1 20420:1 20511:3 20522:1 20536:1 20572:1 20587:1 20590:2 20591:1 20648:1 20653:1 20678:1 20696:1 20703:1 20724:2 20740:1 20741:1 20747:1 20754:1 20767:1 20770:1 20793:1 20794:1 20802:1 20819:1 20842:1 20863:1 20916:1 20918:1 20924:1 20941:1 20944:3 20956:1 20961:1 20976:1 20987:2 21013:1 21014:1 21015:1 21022:1 21029:3 21035:1 21061:1 21075:1 21096:1 21099:3 21102:1 21108:15 21109:2 21110:2 21113:1 21119:1 21121:1 21128:1 21143:1 21145:1 21169:1 21171:7 21173:1 21201:2 21205:1 21221:2 21222:1 21223:1 21242:1 21243:1 21262:1 21276:1 21292:2 21315:1 21320:1 21321:1 21324:1 21333:3 21340:1 21361:1 21373:1 21381:1 21384:1 21391:2 21406:1 21413:1 21441:1 21459:2 21470:1 21530:1 21535:1 21536:1 21537:1 21538:2 21540:1 21543:1 21575:1 21588:1 21603:1 21609:1 21622:1 21634:2 21635:1 21639:1 21640:1 21669:1 21704:1 21711:3 21722:1 21778:2 21779:1 21782:4 21786:1 21804:1 21826:1 21835:1 21837:1 21843:1 21845:1 21866:1 21880:1 21881:1 21889:3 21894:1 21907:2 21930:1 21955:1 21966:1 21970:1 21997:4 21998:2 22010:1 22017:1 22021:2 22024:1 22048:1 22067:3 22107:1 22108:1 22116:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:1 22183:1 22255:3 22276:1 22347:2 22349:2 22352:1 22360:1 22384:2 22386:1 22428:1 22450:1 22457:1 22539:1 22550:1 22584:1 22648:1 22649:1 22651:3 22662:1 22672:3 22674:1 22675:1 22688:1 22709:2 22725:1 22765:1 22787:1 22794:1 22796:2 22829:1 22840:1 22877:1 22880:1 22897:1 22901:2 22907:1 22911:1 22938:1 22964:1 22977:1 22983:1 22985:3 22988:1 22997:1 23003:1 23018:1 23034:1 23081:1 23114:1 23119:1 23142:4 23160:1 23188:1 23258:1 23263:1 23284:1 23286:2 23301:1 23345:1 23348:1 23359:1 23370:1 23371:1 23376:1 23426:1 23444:1 23466:2 23468:1 23496:1 23504:2
16 1:1 3:1 5:1 51:1 64:1 110:2 126:1 138:1 164:4 165:1 204:1 224:1 229:1 262:1 280:1 286:1 296:1 317:1 384:1 403:1 406:1 413:2 416:1 428:1 440:4 463:1 464:1 467:1 470:1 507:1 511:1 514:1 516:1 527:1 539:2 596:1 606:1 607:1 608:2 626:3 643:1 646:2 735:2 739:1 744:1 759:1 786:1 803:2 805:1 831:1 835:1 838:1 840:1 854:1 855:1 860:2 886:3 896:1 898:1 902:2 904:1 947:1 962:1 967:2 993:1 1010:3 1048:2 1049:1 1060:1 1071:4 1078:1 1086:1 1098:1 1115:2 1120:1 1131:4 1133:1 1145:1 1148:1 1160:1 1162:1 1190:1 1191:1 1194:1 1195:3 1196:1 1203:1 1207:1 1208:1 1236:2 1242:4 1268:2 1292:1 1348:1 1366:1 1382:1 1384:1 1391:2 1399:3 1425:1 1451:1 1494:1 1564:1 1573:1 1574:1 1579:1 1580:1 1612:1 1628:3 1647:2 1648:2 1649:1 1672:1 1679:2 1682:1 1683:1 1686:1 1738:1 1752:11 1789:1 1792:1 1794:1 1802:1 1809:1 1829:2 1844:1 1857:28 1869:1 1890:3 1930:3 1935:1 1943:1 1977:2 1978:1 1982:1 2001:1 2003:2 2023:1 2034:1 2042:1 2044:1 2045:1 2047:1 2053:2 2063:3 2095:1 2105:1 2109:1 2123:2 2124:2 2142:1 2145:1 2150:1 2156:1 2182:1 2191:1 2192:1 2231:1 2234:1 2288:1 2297:1 2301:1 2310:3 2343:2 2354:1 2367:2 2414:1 2447:2 2450:1 2469:1 2479:1 2483:2 2512:1 2547:1 2554:2 2573:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:1 2639:2 2642:1 2643:1 2658:1 2667:1 2671:2 2685:1 2702:1 2705:1 2708:3 2716:1 2763:1 2764:1 2773:1 2779:1 2793:1 2795:1 2798:1 2801:1 2810:2 2816:2 2870:1 2892:1 2895:2 2902:1 2904:1 2914:1 2921:1 2926:1 2927:1 2936:1 2954:1 2966:7 2970:1 2979:1 2986:1 3004:1 3012:1 3014:1 3023:1 3033:1 3035:4 3048:1 3052:1 3070:1 3084:1 3136:1 3141:1 3153:1 3161:1 3168:2 3177:3 3178:1 3186:1 3218:1 3219:1 3223:3 3229:1 3234:1 3237:1 3240:1 3242:1 3264:1 3272:2 3274:1 3302:1 3314:1 3316:1 3345:1 3409:1 3462:1 3473:1 3519:1 3541:2 3545:2 3546:3 3552:1 3554:1 3555:1 3556:1 3559:3 3562:1 3564:1 3567:1 3573:4 3575:1 3576:3 3590:1 3606:1 3622:1 3642:1 3652:1 3661:1 3673:1 3686:1 3698:1 3703:1 3705:1 3706:2 3726:1 3740:1 3746:1 3752:3 3759:1 3761:1 3812:1 3819:1 3827:1 3854:1 3860:1 3865:1 3892:3 3906:1 3952:1 3974:1 4004:1 4006:1 4027:3 4038:1 4050:1 4052:2 4058:1 4059:1 4083:1 4089:1 4105:1 4117:1 4127:1 4150:1 4182:1 4183:1 4184:1 4208:4 4219:1 4226:1 4257:1 4260:1 4262:4 4281:1 4296:1 4311:1 4317:1 4335:2 4338:1 4343:1 4358:1 4380:1 4386:1 4393:1 4413:1 4417:3 4424:1 4481:2 4488:1 4511:4 4513:6 4516:1 4560:1 4561:5 4577:6 4589:1 4631:1 4650:16 4671:1 4675:1 4699:1 4705:1 4714:1 4735:1 4746:1 4781:1 4786:1 4807:2 4818:1 4837:2 4844:3 4932:2 4966:1 5034:2 5038:1 5060:1 5084:4 5092:1 5112:1 5120:5 5132:1 5139:1 5144:2 5161:2 5170:1 5183:1 5199:1 5226:1 5227:2 5253:3 5279:1 5297:1 5310:1 5344:1 5353:2 5383:1 5388:1 5390:1 5398:3 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5467:1 5480:1 5517:1 5521:1 5542:1 5543:1 5560:3 5565:1 5619:1 5621:1 5627:1 5659:1 5661:5 5677:1 5710:1 5732:1 5748:2 5779:1 5780:1 5809:1 5816:1 5817:20 5820:1 5851:2 5855:4 5858:1 5870:10 5872:2 5873:1 5876:3 5896:1 5898:1 5919:3 5932:1 5934:2 5939:1 5947:1 5953:3 5957:2 5961:1 5963:1 5994:2 6005:3 6014:2 6017:1 6025:1 6055:1 6062:1 6065:1 6066:1 6077:2 6084:1 6090:2 6101:1914 6102:1 6117:1 6140:1 6149:1 6165:1 6179:1 6183:1 6195:1 6198:1 6205:1 6210:1 6232:1 6233:1 6253:1 6273:3 6349:2 6376:2 6399:1 6407:1 6448:1 6450:1 6471:1 6480:1 6485:3 6493:1 6495:3 6496:1 6500:1 6559:1 6576:1 6581:1 6590:1 6644:3 6698:1 6705:6 6715:2 6725:1 6748:2 6750:1 6777:1 6782:1 6784:1 6792:1 6802:2 6817:1 6830:2 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6880:1 6888:1 6936:1 6956:1 6962:1 6974:2 6975:1 6981:4 7050:1 7104:1 7110:2 7124:1 7134:1 7137:1 7153:1 7157:1 7167:1 7203:2 7276:1 7319:1 7320:1 7337:1 7340:1 7348:1 7363:1 7376:1 7377:1 7383:2 7397:2 7405:1 7408:3 7415:1 7450:1 7452:1 7474:1 7476:6 7488:1 7507:10 7508:1 7520:1 7523:7 7555:1 7581:1 7582:1 7632:1 7635:1 7638:1 7649:1 7670:1 7671:1 7680:1 7684:1 7686:1 7693:1 7694:1 7696:1 7702:1 7719:1 7732:1 7733:4 7734:1 7736:1 7750:11 7751:1 7753:1 7758:1 7762:1 7782:1 7788:1 7811:1 7817:1 7823:1 7871:1 7887:1 7935:1 7995:1 8065:1 8089:1 8091:7 8096:2 8097:3 8107:1 8108:5 8168:1 8187:1 8209:1 8222:1 8224:1 8225:11 8234:3 8270:1 8298:1 8301:1 8326:1 8351:1 8357:1 8361:1 8367:1 8372:1 8373:1 8385:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8490:2 8520:1 8525:1 8544:1 8558:1 8573:1 8578:1 8579:1 8598:1 8599:1 8605:1 8609:1 8624:2 8644:5 8692:1 8709:1 8713:1 8719:1 8746:1 8748:7 8755:1 8757:1 8769:2 8771:1 8780:1 8789:1 8791:1 8831:8 8838:1 8856:1 8889:1 8894:1 8900:2 8903:1 8930:1 8937:2 8948:1 8973:1 8976:1 8980:1 8985:1 9017:1 9029:1 9048:1 9053:2 9065:1 9069:1 9139:1 9158:1 9169:1 9180:2 9208:2 9215:1 9217:2 9218:1 9231:1 9253:1 9280:1 9314:1 9370:1 9374:1 9402:4 9416:1 9445:1 9477:1 9528:1 9541:1 9547:1 9573:1 9598:1 9611:1 9617:1 9625:2 9626:1 9645:1 9687:3 9706:1 9707:2 9747:3 9749:1 9751:8 9769:1 9770:3 9777:1 9778:1 9779:1 9797:1 9799:1 9800:3 9809:1 9812:1 9848:1 9904:1 9906:1 9908:1 9912:1 9913:1 9917:1 9919:2 9920:1 9926:1 9929:2 9930:1 9933:1 9940:2 9948:1 9950:1 9980:1 9986:1 9993:1 10018:4 10027:1 10032:2 10095:1 10125:1 10129:1 10147:1 10150:1 10183:1 10201:1 10208:1 10212:1 10223:2 10232:1 10277:1 10282:1 10288:1 10289:1 10350:1 10373:1 10386:1 10392:2 10421:4 10424:2 10426:1 10442:1 10451:5 10459:1 10463:2 10473:1 10489:1 10510:2 10515:1 10536:1 10542:1 10562:1 10576:1 10579:1 10580:1 10582:1 10590:1 10593:2 10597:1 10613:1 10634:1 10662:1 10704:2 10714:1 10734:1 10736:1 10742:1 10751:2 10759:1 10766:1 10768:6 10780:2 10784:1 10801:1 10817:1 10828:2 10861:1 10870:1 10904:1 10929:1 10936:1 10937:1 10944:1 10946:1 10956:1 10957:2 10962:2 10972:1 10983:1 11042:1 11049:4 11061:1 11067:1 11068:2 11073:2 11082:1 11109:1 11203:1 11210:1 11212:5 11220:1 11229:1 11230:1 11248:1 11250:1 11255:1 11264:1 11269:2 11281:1 11303:1 11310:5 11311:1 11320:2 11351:1 11356:1 11367:1 11396:1 11444:3 11446:1 11489:1 11508:1 11546:2 11554:1 11577:1 11583:1 11593:1 11595:2 11606:1 11615:1 11644:1 11666:3 11667:11 11670:1 11673:1 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:2 11799:1 11802:1 11811:1 11822:2 11834:2 11847:1 11852:4 11878:3 11906:2 11932:1 11942:1 11977:1 11983:1 12015:1 12017:2 12034:1 12035:1 12059:1 12065:1 12083:2 12101:1 12115:1 12117:3 12119:2 12140:1 12141:1 12154:1 12173:1 12192:1 12198:1 12202:18 12206:1 12209:1 12226:4 12229:13 12244:1 12255:1 12295:3 12344:1 12364:1 12370:3 12381:1 12383:1 12392:1 12431:1 12440:1 12469:1 12515:1 12518:4 12529:1 12543:1 12551:1 12553:1 12559:1 12566:9 12567:2 12590:1 12592:1 12593:2 12606:1 12628:1 12633:1 12653:1 12673:1 12682:1 12693:2 12723:1 12754:1 12783:5 12791:1 12814:2 12823:1 12839:1 12850:1 12874:2 12880:1 12887:1 12895:1 12919:1 12938:7 12966:1 12970:1 12986:1 13013:1 13047:1 13060:1 13067:1 13070:1 13071:1 13084:1 13107:1 13124:1 13129:2 13175:1 13177:3 13186:1 13187:1 13209:1 13211:1 13221:3 13229:1 13240:1 13267:2 13270:2 13289:1 13298:1 13309:1 13321:1 13324:1 13334:2 13346:1 13362:1 13363:1 13384:1 13387:1 13392:1 13405:1 13412:2 13414:1 13417:2 13419:1 13459:1 13471:1 13484:3 13489:1 13505:1 13506:1 13526:3 13529:1 13547:1 13552:1 13557:2 13562:1 13573:2 13577:1 13579:2 13580:1 13581:2 13582:2 13593:1 13597:2 13599:1 13606:1 13609:1 13619:1 13620:1 13632:1 13644:1 13646:1 13661:1 13672:1 13674:1 13683:1 13703:2 13715:10 13724:1 13728:2 13756:2 13786:1 13826:3 13846:1 13851:1 13852:1 13854:1 13855:1 13861:1 13874:1 13935:1 13943:1 13971:1 13972:1 13978:1 13984:1 13986:1 13999:2 14007:1 14041:1 14061:1 14082:1 14091:1 14093:2 14096:1 14101:1 14104:3 14114:1 14134:1 14137:1 14139:3 14152:1 14172:1 14176:2 14184:1 14193:1 14241:2 14280:1 14283:1 14290:1 14311:1 14312:1 14336:1 14360:1 14364:1 14391:1 14396:1 14429:1 14440:1 14457:3 14474:2 14475:1 14488:1 14492:1 14493:1 14519:1 14531:1 14561:2 14591:1 14595:1 14612:1 14622:1 14643:1 14658:1 14673:1 14675:1 14694:1 14719:1 14720:1 14767:1 14768:2 14777:1 14784:1 14795:1 14809:1 14872:2 14902:1 14904:1 14907:1 14913:1 14924:1 14926:2 14929:1 14953:1 14970:1 14975:1 14982:1 15016:1 15018:1 15039:5 15113:11 15121:1 15141:1 15151:1 15161:2 15162:1 15164:1 15167:1 15189:3 15193:1 15204:1 15205:2 15215:1 15217:2 15227:1 15233:1 15235:1 15266:2 15280:1 15281:1 15291:1 15295:1 15324:1 15330:1 15337:9 15344:1 15348:1 15370:1 15401:1 15408:1 15413:1 15441:3 15444:1 15459:1 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15499:1 15511:1 15600:1 15601:2 15621:1 15622:1 15660:3 15661:1 15664:1 15671:1 15675:1 15678:1 15680:1 15682:1 15689:1 15698:1 15714:1 15723:1 15744:1 15757:1 15759:1 15764:1 15766:3 15772:1 15776:1 15825:1 15829:2 15830:1 15840:1 15877:1 15878:2 15892:2 15909:1 15932:1 15980:1 15981:1 15986:1 16035:6 16038:3 16046:1 16048:1 16050:1 16066:1 16080:1 16098:1 16107:1 16133:3 16172:2 16178:1 16190:2 16236:1 16246:1 16269:3 16282:1 16297:1 16338:1 16393:1 16410:3 16425:1 16428:1 16438:1 16460:1 16464:1 16468:1 16505:2 16508:1 16527:1 16556:1 16574:1 16589:2 16593:1 16602:3 16614:1 16615:4 16636:2 16638:1 16640:1 16670:1 16728:1 16735:1 16749:3 16763:1 16774:1 16782:4 16870:3 16872:3 16881:1 16911:1 16930:1 16937:1 16938:2 16939:1 16940:1 16954:1 16975:1 16990:1 16992:2 17009:1 17033:2 17046:4 17048:1 17059:1 17089:1 17099:1 17102:1 17128:2 17151:1 17160:2 17162:1 17164:3 17175:1 17185:1 17187:2 17208:2 17211:3 17222:2 17283:1 17284:1 17311:2 17324:1 17338:1 17347:1 17377:2 17389:3 17424:1 17437:1 17442:2 17465:2 17486:1 17501:1 17528:1 17530:1 17546:1 17568:1 17618:1 17634:1 17670:2 17707:3 17709:1 17741:1 17744:1 17770:1 17785:1 17794:1 17811:1 17821:2 17824:1 17841:1 17851:1 17853:3 17857:1 17862:1 17865:2 17894:1 17908:1 17927:1 17935:1 17939:1 17941:1 17945:1 17966:1 17983:1 17995:1 18004:1 18025:3 18031:1 18032:1 18047:1 18064:1 18078:1 18090:3 18104:1 18123:1 18133:2 18134:1 18138:2 18205:1 18209:1 18240:2 18241:1 18257:1 18265:1 18266:1 18272:5 18275:1 18280:4 18281:1 18287:1 18292:1 18293:4 18303:1 18322:1 18334:2 18345:1 18368:2 18385:3 18391:1 18397:1 18399:1 18463:1 18470:1 18482:1 18491:4 18509:1 18513:1 18514:1 18542:1 18547:1 18574:1 18586:1 18592:1 18623:1 18646:1 18703:4 18705:2 18722:2 18723:1 18724:4 18725:2 18735:1 18739:1 18766:1 18815:2 18833:1 18856:1 18875:1 18883:2 18900:1 18906:1 18922:1 18929:2 18953:1 18957:1 18964:1 18965:1 18967:1 18974:1 18993:1 19004:2 19005:2 19007:11 19017:4 19052:1 19066:1 19089:2 19164:1 19236:1 19240:1 19252:1 19260:5 19262:2 19290:1 19299:1 19310:1 19319:1 19397:1 19404:1 19430:1 19439:1 19481:1 19492:1 19496:1 19498:1 19502:1 19597:2 19604:1 19631:1 19640:1 19647:4 19653:1 19663:1 19697:1 19707:1 19712:1 19734:1 19754:1 19790:10 19791:1 19794:3 19796:1 19834:1 19843:1 19936:6 19952:1 19959:1 19963:1 19970:1 19977:2 19978:1 20022:2 20023:2 20032:1 20038:1 20041:1 20046:1 20055:1 20056:1 20062:1 20071:1 20079:1 20106:2 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:2 20237:1 20284:1 20285:2 20299:1 20351:1 20353:1 20378:1 20392:1 20413:1 20414:1 20420:1 20511:3 20522:1 20536:1 20572:1 20587:1 20590:2 20591:1 20648:1 20653:1 20678:1 20696:1 20703:1 20724:2 20740:1 20741:1 20747:1 20754:1 20767:1 20770:1 20793:1 20794:1 20802:1 20819:1 20842:1 20852:1 20859:1 20863:1 20916:1 20918:1 20924:1 20941:1 20944:3 20956:1 20961:1 20976:1 20987:2 21013:1 21014:1 21015:1 21022:1 21029:3 21035:1 21040:1 21061:1 21075:1 21096:1 21099:3 21102:1 21108:15 21109:2 21110:2 21113:1 21119:1 21121:1 21128:1 21143:1 21145:1 21169:1 21171:7 21173:1 21201:2 21205:1 21221:2 21222:1 21223:1 21242:1 21243:1 21262:1 21276:1 21292:3 21315:1 21320:1 21321:1 21324:2 21333:3 21340:1 21361:1 21373:1 21381:1 21384:1 21391:2 21406:1 21413:1 21441:1 21459:2 21470:2 21530:1 21535:1 21536:1 21537:1 21538:2 21540:1 21543:1 21575:1 21588:1 21603:1 21609:1 21622:1 21634:2 21635:1 21639:1 21640:1 21647:1 21669:1 21704:1 21711:4 21722:1 21778:2 21779:1 21782:4 21786:1 21804:1 21826:1 21831:1 21835:1 21837:1 21843:1 21845:1 21866:1 21880:1 21881:1 21889:3 21894:1 21907:2 21930:1 21955:1 21966:1 21970:1 21990:1 21997:4 21998:2 22010:1 22017:1 22021:2 22024:1 22048:1 22067:3 22090:1 22107:1 22108:1 22116:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:1 22183:1 22255:3 22276:1 22347:2 22349:2 22352:1 22360:1 22384:2 22386:1 22428:1 22450:1 22457:1 22539:1 22550:1 22584:1 22648:1 22649:1 22651:3 22662:1 22672:3 22674:1 22675:1 22688:1 22709:2 22725:1 22765:1 22783:1 22787:1 22794:1 22796:2 22829:1 22840:1 22877:1 22880:1 22897:1 22901:2 22907:1 22911:1 22938:1 22956:1 22964:1 22977:1 22983:1 22985:3 22988:1 22997:1 23003:1 23018:1 23034:1 23081:1 23114:1 23119:1 23142:4 23160:1 23188:1 23258:1 23263:1 23284:1 23286:2 23301:1 23345:1 23348:1 23359:1 23370:1 23371:1 23376:1 23426:1 23444:1 23466:2 23468:1 23496:2 23504:2
16 1:1 3:1 5:1 26:1 51:1 64:1 82:1 110:2 126:1 138:1 164:4 165:1 204:1 224:1 229:1 262:1 280:1 286:1 296:1 317:1 384:1 403:1 406:1 413:2 416:2 428:1 440:4 463:1 464:1 467:1 470:1 507:1 511:1 514:1 516:1 527:1 539:2 596:1 606:2 607:1 608:2 626:3 643:1 646:2 735:2 739:1 744:1 759:1 786:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:1 855:1 860:2 886:3 896:1 898:1 902:2 904:1 947:2 962:1 967:2 993:1 1010:3 1048:2 1049:1 1060:1 1071:4 1078:1 1086:1 1098:1 1115:2 1120:1 1131:4 1133:1 1145:1 1148:1 1160:1 1162:1 1190:1 1191:1 1194:1 1195:5 1196:1 1203:1 1207:1 1208:1 1236:2 1242:4 1268:2 1291:1 1292:1 1348:1 1366:1 1382:1 1384:1 1391:2 1399:3 1425:1 1450:1 1451:1 1494:1 1564:1 1573:1 1574:1 1579:1 1580:1 1612:1 1628:4 1647:2 1648:2 1649:1 1672:1 1679:2 1682:1 1683:1 1686:1 1738:1 1752:12 1789:1 1792:1 1794:1 1802:1 1809:1 1829:2 1844:1 1857:32 1869:1 1890:3 1930:3 1935:1 1943:1 1977:2 1978:1 1982:2 2001:1 2003:2 2023:1 2034:1 2042:1 2044:1 2045:1 2047:1 2053:2 2057:1 2063:3 2095:1 2105:1 2109:1 2123:2 2124:2 2142:1 2145:1 2150:1 2156:1 2182:1 2191:1 2192:1 2231:1 2234:1 2288:1 2297:1 2301:1 2310:3 2343:3 2354:1 2367:2 2414:1 2447:2 2450:1 2469:1 2479:1 2481:1 2483:2 2512:1 2547:1 2554:2 2573:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:1 2639:2 2642:1 2643:1 2658:1 2667:1 2671:2 2685:1 2702:1 2705:2 2708:3 2716:1 2763:1 2764:1 2773:1 2779:1 2793:1 2795:1 2798:1 2801:1 2810:2 2816:2 2870:1 2878:1 2892:1 2895:2 2902:1 2904:1 2914:1 2921:1 2926:1 2927:1 2936:1 2954:1 2966:7 2970:1 2979:1 2986:1 3004:1 3012:1 3014:1 3023:1 3033:1 3035:4 3048:1 3052:1 3070:2 3084:1 3136:1 3141:1 3153:1 3161:1 3168:2 3177:3 3178:1 3186:1 3218:1 3219:1 3221:1 3223:3 3229:1 3234:1 3237:2 3240:1 3242:1 3264:1 3272:2 3274:1 3293:1 3302:1 3314:1 3316:2 3345:1 3409:1 3462:1 3473:1 3519:1 3541:2 3542:1 3545:2 3546:3 3552:1 3554:1 3555:1 3556:1 3559:3 3562:1 3564:1 3567:1 3573:4 3575:1 3576:5 3590:1 3606:1 3622:1 3642:1 3652:1 3661:1 3673:1 3686:1 3698:1 3703:1 3705:1 3706:2 3726:1 3740:1 3746:1 3752:3 3759:1 3761:1 3812:1 3819:1 3827:1 3854:1 3860:3 3865:1 3892:3 3906:1 3952:1 3974:1 3990:1 4004:1 4006:1 4027:3 4038:1 4050:1 4052:2 4058:1 4059:1 4083:1 4089:1 4105:1 4117:2 4127:1 4150:1 4182:1 4183:1 4184:2 4208:4 4219:1 4226:3 4257:1 4260:1 4262:5 4281:1 4296:1 4311:1 4317:1 4335:2 4338:1 4343:1 4358:1 4380:1 4386:1 4393:1 4413:1 4417:4 4424:1 4481:2 4488:1 4490:1 4511:4 4513:8 4516:1 4560:1 4561:5 4577:6 4589:1 4631:1 4650:17 4671:1 4675:1 4699:1 4705:1 4714:1 4735:1 4746:1 4781:1 4786:1 4807:2 4818:1 4837:2 4844:3 4932:2 4966:1 5034:2 5038:1 5060:1 5084:4 5092:1 5112:1 5120:6 5132:1 5139:1 5144:2 5161:2 5170:1 5175:1 5183:1 5199:1 5226:1 5227:2 5253:3 5279:1 5297:1 5310:1 5344:1 5353:3 5366:1 5383:1 5388:1 5390:1 5398:3 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5467:1 5480:1 5517:1 5521:1 5542:1 5543:1 5560:3 5565:1 5619:1 5621:1 5627:1 5659:1 5661:5 5677:1 5710:1 5732:1 5748:2 5779:1 5780:1 5809:1 5816:1 5817:22 5820:1 5851:2 5855:6 5858:1 5870:12 5872:2 5873:1 5876:3 5896:1 5898:1 5919:3 5932:1 5934:2 5939:1 5947:1 5953:3 5957:2 5961:1 5963:1 5967:2 5994:2 6005:3 6014:2 6017:1 6025:1 6055:1 6062:1 6065:1 6066:2 6077:2 6084:1 6090:2 6101:1980 6102:1 6117:1 6140:1 6149:1 6165:1 6179:1 6183:1 6195:1 6198:1 6201:1 6205:1 6210:1 6232:1 6233:1 6253:1 6273:3 6349:3 6376:2 6399:1 6407:1 6448:1 6450:1 6471:1 6480:1 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6559:1 6576:1 6581:1 6590:1 6644:3 6698:1 6705:8 6715:2 6725:1 6748:2 6750:1 6777:1 6782:1 6784:1 6787:1 6792:2 6802:2 6817:1 6830:3 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6880:1 6888:1 6936:1 6956:1 6962:1 6974:2 6975:1 6981:4 7050:1 7104:1 7110:2 7124:1 7134:1 7137:1 7139:1 7153:1 7157:2 7167:1 7203:2 7276:1 7319:1 7320:1 7337:1 7340:1 7348:1 7363:2 7376:1 7377:2 7383:2 7397:2 7405:1 7408:3 7415:1 7450:1 7452:1 7474:1 7476:6 7488:1 7507:10 7508:1 7520:1 7523:9 7555:1 7581:1 7582:1 7632:1 7635:1 7638:1 7649:1 7670:1 7671:1 7680:1 7684:1 7686:1 7693:2 7694:1 7696:1 7702:1 7719:2 7732:1 7733:5 7734:1 7736:1 7740:1 7750:12 7751:1 7753:1 7758:1 7762:1 7782:1 7788:1 7811:1 7817:1 7823:2 7871:1 7887:1 7935:1 7995:1 8003:1 8065:1 8089:1 8091:7 8096:2 8097:3 8107:1 8108:5 8168:1 8187:1 8209:1 8222:1 8224:1 8225:12 8234:5 8270:1 8298:1 8301:1 8326:1 8351:1 8357:1 8361:1 8367:1 8372:1 8373:1 8385:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8490:2 8520:1 8525:1 8544:1 8558:1 8573:1 8578:1 8579:1 8598:1 8599:1 8605:1 8609:1 8624:2 8644:5 8692:1 8709:1 8713:1 8719:1 8746:1 8748:7 8755:1 8757:1 8769:2 8771:1 8780:1 8789:1 8791:1 8831:9 8838:1 8856:1 8889:1 8894:1 8900:2 8903:1 8930:1 8937:2 8948:1 8973:1 8976:1 8980:1 8985:1 9017:1 9029:1 9048:1 9053:2 9065:1 9069:1 9139:1 9158:1 9169:1 9180:2 9208:2 9215:1 9217:2 9218:1 9231:1 9253:1 9280:1 9314:1 9370:1 9374:1 9402:4 9416:1 9445:1 9477:1 9528:1 9541:1 9547:1 9573:1 9598:1 9611:1 9617:1 9625:2 9626:2 9645:1 9687:3 9706:1 9707:2 9721:1 9733:1 9747:3 9749:1 9751:8 9769:1 9770:3 9777:1 9778:1 9779:1 9797:1 9799:1 9800:4 9809:1 9812:1 9848:1 9901:1 9904:1 9906:1 9908:1 9912:1 9913:1 9917:1 9919:3 9920:1 9926:1 9929:2 9930:1 9933:1 9940:2 9948:1 9950:1 9980:1 9986:2 9993:1 10018:5 10027:1 10032:2 10095:1 10125:1 10129:1 10147:1 10150:1 10158:1 10173:1 10183:1 10201:1 10208:1 10212:1 10223:2 10232:1 10277:1 10282:1 10288:1 10289:1 10350:1 10373:1 10386:1 10392:2 10421:4 10424:2 10426:1 10442:1 10451:5 10459:1 10463:2 10473:1 10489:1 10510:2 10515:1 10536:1 10542:1 10562:1 10576:1 10579:1 10580:1 10582:1 10590:1 10593:2 10597:2 10613:1 10634:1 10662:1 10704:2 10714:1 10734:1 10736:1 10742:1 10751:2 10759:1 10766:1 10768:8 10780:2 10784:1 10801:1 10817:1 10828:2 10861:1 10870:2 10904:1 10929:1 10936:1 10937:1 10944:1 10946:1 10956:1 10957:2 10962:2 10972:1 10983:1 11042:1 11049:4 11061:1 11067:1 11068:2 11073:2 11082:1 11109:1 11203:2 11210:1 11212:7 11220:1 11229:1 11230:1 11248:1 11250:1 11255:1 11264:1 11269:2 11281:1 11303:1 11310:5 11311:1 11320:2 11351:1 11356:1 11367:1 11396:1 11444:3 11446:1 11489:1 11508:1 11546:2 11554:1 11577:1 11583:1 11593:1 11595:2 11606:1 11615:1 11644:1 11666:3 11667:12 11670:1 11673:1 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:2 11799:1 11802:2 11811:1 11822:2 11834:2 11847:1 11852:4 11878:3 11906:2 11932:1 11942:1 11977:1 11983:1 12015:1 12017:2 12034:1 12035:1 12059:1 12065:1 12083:2 12101:1 12115:1 12117:3 12119:2 12140:1 12141:1 12154:1 12173:1 12192:1 12198:1 12202:21 12206:1 12209:1 12215:1 12226:4 12229:14 12237:1 12244:1 12255:1 12295:3 12344:1 12364:1 12370:3 12381:1 12383:1 12392:1 12431:1 12440:1 12469:1 12515:1 12518:4 12529:1 12543:1 12551:1 12553:1 12559:1 12566:9 12567:2 12590:1 12592:1 12593:2 12606:1 12628:1 12633:1 12653:1 12673:1 12682:1 12693:2 12723:1 12754:1 12783:5 12791:1 12814:2 12823:1 12839:1 12850:1 12874:2 12880:1 12887:1 12895:1 12919:1 12938:8 12966:1 12970:1 12985:1 12986:1 13013:2 13047:1 13060:1 13067:1 13070:1 13071:1 13084:1 13107:1 13124:1 13129:2 13175:1 13177:3 13186:1 13187:1 13209:1 13211:1 13221:3 13229:1 13240:1 13267:2 13270:2 13289:1 13293:1 13298:1 13309:1 13321:1 13324:1 13334:2 13346:1 13362:1 13363:1 13384:1 13387:1 13392:1 13405:1 13412:2 13414:1 13417:2 13419:1 13459:1 13471:1 13484:3 13489:1 13505:1 13506:1 13526:4 13529:1 13547:1 13552:1 13557:2 13562:1 13573:2 13577:1 13579:2 13580:1 13581:2 13582:2 13593:1 13597:2 13599:1 13606:1 13609:1 13619:1 13620:1 13632:1 13644:1 13646:1 13661:2 13672:1 13674:1 13683:1 13703:2 13715:12 13724:1 13728:2 13756:2 13786:2 13826:3 13846:1 13851:1 13852:1 13854:1 13855:1 13861:1 13874:1 13881:1 13935:1 13943:1 13971:1 13972:1 13978:1 13984:1 13986:2 13999:2 14007:1 14041:1 14061:1 14082:1 14091:1 14093:2 14096:1 14101:1 14104:3 14114:1 14134:1 14137:1 14139:3 14152:1 14172:1 14176:2 14184:1 14193:1 14241:2 14280:1 14283:1 14290:1 14311:1 14312:1 14336:1 14360:1 14364:1 14391:1 14396:1 14429:1 14440:1 14457:3 14474:2 14475:1 14488:1 14492:2 14493:1 14519:1 14531:1 14561:2 14591:1 14595:1 14604:1 14612:1 14622:1 14643:1 14658:1 14673:1 14675:1 14694:1 14719:1 14720:1 14767:1 14768:2 14777:1 14784:1 14795:1 14809:1 14836:1 14872:2 14902:1 14904:1 14907:1 14913:1 14924:1 14926:2 14929:1 14953:1 14970:1 14975:1 14982:1 15016:1 15018:1 15039:5 15113:12 15121:1 15141:1 15151:1 15161:2 15162:3 15164:1 15167:1 15189:3 15193:1 15204:1 15205:2 15215:1 15217:2 15227:1 15233:1 15235:1 15266:2 15280:1 15281:1 15291:1 15295:1 15324:1 15330:1 15337:9 15344:1 15348:1 15370:1 15401:1 15408:1 15413:1 15441:3 15444:2 15459:1 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15499:1 15511:1 15600:1 15601:3 15621:1 15622:1 15660:5 15661:1 15664:1 15671:1 15675:1 15678:2 15680:1 15682:1 15689:1 15698:1 15714:1 15723:1 15744:1 15750:1 15757:1 15759:1 15764:1 15766:3 15772:1 15776:1 15825:1 15829:3 15830:1 15840:1 15877:1 15878:2 15892:2 15909:1 15932:2 15980:1 15981:1 15986:1 16035:7 16038:3 16046:1 16048:1 16050:1 16066:1 16080:1 16098:1 16107:1 16133:3 16172:2 16178:1 16190:2 16236:1 16246:1 16269:3 16282:1 16297:2 16338:1 16393:1 16410:3 16425:1 16428:1 16438:1 16460:1 16464:1 16468:1 16505:2 16508:3 16512:2 16527:1 16556:1 16574:2 16589:2 16593:1 16602:3 16614:1 16615:5 16636:3 16638:1 16640:1 16670:1 16703:1 16728:1 16735:1 16749:3 16763:1 16774:1 16782:4 16862:1 16870:4 16872:3 16881:1 16911:1 16930:1 16937:1 16938:2 16939:1 16940:1 16954:1 16975:1 16990:1 16992:2 17009:1 17033:3 17046:4 17048:1 17059:1 17089:1 17099:1 17102:1 17128:2 17151:1 17160:2 17162:1 17164:4 17175:1 17185:1 17187:2 17208:3 17211:3 17222:2 17281:1 17283:1 17284:1 17311:2 17324:1 17338:1 17347:1 17377:2 17389:4 17424:1 17437:2 17442:2 17465:2 17486:1 17501:1 17528:1 17530:1 17546:1 17568:1 17577:1 17618:1 17634:1 17670:2 17707:3 17709:1 17741:1 17744:1 17770:1 17785:1 17794:1 17811:1 17821:2 17824:1 17841:1 17851:1 17853:3 17857:1 17862:1 17865:2 17894:1 17908:1 17927:1 17935:1 17939:1 17941:1 17945:1 17966:1 17983:1 17995:2 18004:1 18025:4 18031:1 18032:1 18047:1 18064:1 18078:1 18090:3 18104:2 18123:1 18133:2 18134:1 18138:2 18205:1 18209:1 18240:2 18241:1 18257:1 18265:1 18266:1 18272:5 18275:1 18280:4 18281:1 18287:1 18292:1 18293:4 18303:1 18322:1 18334:2 18345:1 18368:2 18385:3 18391:1 18397:1 18399:1 18463:1 18470:1 18482:1 18491:4 18509:1 18513:1 18514:1 18542:1 18547:1 18574:1 18586:1 18592:1 18623:1 18646:1 18703:4 18705:2 18722:2 18723:1 18724:4 18725:2 18735:1 18739:1 18766:1 18815:2 18833:1 18856:1 18875:1 18883:2 18900:1 18906:1 18922:1 18929:2 18953:1 18957:1 18964:1 18965:1 18967:1 18974:1 18993:1 19004:2 19005:2 19007:12 19017:4 19052:1 19066:1 19089:2 19164:1 19236:1 19240:1 19252:1 19260:5 19262:2 19290:1 19299:1 19310:1 19319:1 19391:1 19397:1 19404:1 19430:1 19439:1 19456:1 19476:1 19481:1 19492:1 19496:1 19498:2 19502:1 19597:2 19604:1 19631:1 19640:1 19647:6 19653:1 19663:1 19697:1 19707:1 19712:1 19734:1 19754:1 19790:12 19791:1 19794:3 19796:1 19834:1 19843:1 19936:6 19952:1 19959:1 19963:1 19970:1 19977:2 19978:1 20022:2 20023:3 20032:1 20038:1 20041:1 20046:1 20055:1 20056:1 20062:1 20071:1 20079:1 20106:2 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:2 20237:1 20284:1 20285:2 20299:1 20311:1 20351:1 20353:1 20378:1 20392:1 20413:1 20414:1 20420:1 20511:3 20522:1 20536:1 20572:1 20587:1 20590:2 20591:1 20648:1 20653:1 20678:1 20696:1 20703:1 20724:2 20740:1 20741:1 20747:1 20754:1 20767:1 20770:1 20793:1 20794:1 20802:1 20819:1 20842:1 20852:1 20859:2 20863:1 20916:1 20918:1 20924:1 20941:2 20944:3 20956:1 20961:1 20976:1 20987:2 21013:1 21014:1 21015:1 21022:1 21029:3 21035:1 21040:2 21061:1 21075:1 21096:1 21099:4 21102:1 21104:1 21108:15 21109:2 21110:2 21113:1 21119:1 21121:1 21128:1 21143:1 21145:1 21169:1 21171:7 21173:1 21201:2 21205:1 21221:2 21222:1 21223:1 21224:1 21242:1 21243:1 21262:1 21276:1 21292:3 21315:1 21320:1 21321:1 21324:2 21333:3 21340:1 21361:1 21373:1 21374:1 21381:1 21384:1 21391:2 21406:1 21413:2 21441:1 21459:2 21470:2 21530:1 21535:1 21536:1 21537:1 21538:2 21540:1 21543:1 21575:1 21588:1 21603:1 21609:1 21622:1 21634:2 21635:1 21639:1 21640:1 21647:1 21668:1 21669:1 21704:1 21711:5 21722:1 21778:2 21779:1 21782:4 21786:1 21804:1 21826:1 21831:1 21835:1 21837:1 21843:1 21845:1 21866:1 21880:1 21881:1 21889:3 21894:1 21907:2 21930:1 21955:1 21966:1 21970:1 21990:2 21997:4 21998:2 22010:1 22017:1 22021:2 22024:1 22048:1 22067:3 22090:1 22107:1 22108:1 22116:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:1 22183:1 22255:3 22276:1 22347:2 22349:2 22352:1 22360:2 22384:2 22386:1 22428:1 22450:1 22457:1 22539:1 22550:1 22584:1 22648:1 22649:1 22651:3 22662:1 22672:3 22674:1 22675:1 22688:1 22709:2 22725:1 22765:1 22783:1 22787:1 22794:1 22796:3 22829:1 22840:1 22877:1 22880:1 22897:1 22901:2 22907:1 22911:1 22938:1 22956:1 22964:1 22977:1 22983:1 22985:3 22988:1 22997:1 23003:1 23018:2 23034:1 23081:1 23114:1 23119:1 23142:4 23160:1 23188:2 23258:1 23263:1 23284:1 23286:2 23301:1 23345:1 23348:1 23359:1 23370:1 23371:1 23376:1 23426:1 23444:1 23466:2 23468:1 23496:2 23504:2
16 1:1 3:1 5:1 7:1 26:1 51:1 64:1 82:1 110:2 126:1 138:1 154:1 164:4 165:1 171:1 193:1 204:1 224:1 229:1 262:1 279:1 280:1 286:1 296:1 317:1 384:1 403:1 406:1 413:2 416:2 428:1 440:4 463:1 464:1 467:1 470:1 507:1 511:1 514:1 516:1 527:1 539:2 596:1 606:2 607:1 608:2 613:1 626:3 643:1 646:2 735:3 739:1 744:1 759:1 786:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:1 855:1 860:2 886:3 896:1 898:1 902:2 904:1 947:2 962:1 967:2 993:1 1010:3 1048:2 1049:1 1060:1 1071:4 1078:1 1086:1 1098:1 1113:1 1115:2 1120:1 1131:4 1133:1 1145:1 1148:1 1160:1 1162:1 1188:1 1190:1 1191:1 1194:1 1195:5 1196:1 1203:1 1207:1 1208:1 1236:2 1242:4 1268:2 1291:1 1292:1 1325:1 1348:1 1366:1 1382:1 1384:1 1391:2 1399:3 1417:1 1425:1 1450:1 1451:1 1494:1 1537:1 1564:1 1573:2 1574:1 1579:1 1580:1 1612:1 1628:5 1647:2 1648:2 1649:1 1671:1 1672:1 1679:2 1682:1 1683:1 1686:1 1738:1 1752:13 1789:1 1792:1 1794:1 1802:1 1809:1 1829:2 1841:1 1844:1 1857:35 1869:1 1890:3 1930:3 1935:1 1943:1 1965:1 1977:2 1978:1 1982:2 2001:1 2003:3 2023:1 2034:1 2042:1 2044:1 2045:1 2047:1 2053:2 2057:1 2063:3 2095:1 2103:1 2105:1 2109:1 2123:2 2124:2 2142:1 2145:1 2150:1 2156:1 2158:1 2182:1 2191:1 2192:1 2231:1 2234:1 2236:1 2288:1 2297:1 2301:1 2310:3 2343:3 2354:1 2367:2 2368:1 2414:1 2447:2 2450:1 2469:1 2479:1 2481:1 2483:2 2512:1 2547:1 2554:2 2562:1 2573:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:1 2639:2 2642:1 2643:1 2658:1 2667:1 2671:2 2685:1 2702:1 2705:2 2708:3 2716:1 2763:1 2764:1 2773:1 2779:1 2793:2 2795:1 2798:1 2801:1 2810:2 2816:2 2870:1 2878:1 2892:1 2895:2 2902:1 2904:1 2914:1 2921:1 2926:1 2927:1 2936:1 2942:1 2954:1 2966:7 2970:1 2979:1 2986:1 3004:1 3012:1 3014:1 3023:1 3033:1 3035:4 3048:1 3052:1 3070:2 3084:1 3136:1 3141:1 3153:1 3161:1 3168:2 3177:3 3178:1 3186:1 3218:1 3219:1 3221:1 3223:3 3229:1 3234:1 3237:2 3240:1 3242:1 3264:1 3272:2 3274:1 3293:1 3302:1 3314:2 3316:2 3345:2 3409:1 3462:1 3473:1 3519:1 3541:2 3542:1 3545:2 3546:3 3552:1 3554:2 3555:1 3556:1 3559:3 3562:1 3564:1 3567:1 3573:4 3575:2 3576:5 3590:1 3606:1 3622:1 3642:1 3652:1 3661:1 3673:1 3686:1 3698:1 3703:1 3705:1 3706:2 3726:1 3740:1 3746:1 3752:3 3759:1 3761:1 3792:1 3812:1 3819:1 3827:1 3854:1 3860:3 3865:1 3892:3 3906:2 3952:1 3974:1 3990:1 4004:1 4006:1 4027:3 4038:1 4050:1 4052:2 4058:1 4059:1 4083:1 4089:1 4105:1 4117:2 4127:1 4150:1 4182:1 4183:1 4184:2 4208:4 4219:1 4226:3 4244:1 4257:1 4260:1 4262:5 4281:1 4296:1 4311:1 4317:1 4335:2 4338:3 4343:1 4358:1 4380:1 4386:1 4393:1 4413:1 4417:4 4424:1 4481:2 4488:1 4490:1 4511:4 4513:8 4516:1 4560:1 4561:6 4577:6 4589:1 4616:1 4631:1 4650:17 4671:1 4675:1 4699:1 4705:1 4714:1 4735:1 4746:1 4760:1 4781:1 4786:1 4807:2 4818:1 4837:2 4844:3 4932:2 4966:1 5034:2 5038:1 5060:1 5084:4 5092:1 5112:1 5120:6 5132:1 5139:1 5144:2 5159:1 5161:2 5170:1 5175:1 5183:1 5199:1 5226:1 5227:2 5234:1 5253:4 5279:1 5297:1 5310:1 5341:1 5344:1 5353:3 5365:1 5366:1 5383:1 5388:1 5390:1 5398:3 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5459:1 5467:1 5480:1 5517:1 5521:1 5542:1 5543:1 5560:3 5565:1 5619:1 5621:1 5623:1 5627:1 5659:1 5661:5 5677:1 5710:1 5732:1 5748:2 5779:1 5780:1 5809:1 5816:1 5817:24 5820:1 5851:2 5853:1 5855:6 5858:1 5870:12 5871:1 5872:2 5873:1 5876:3 5896:1 5898:2 5919:3 5932:1 5934:2 5939:2 5947:1 5953:3 5957:2 5961:1 5963:1 5967:2 5994:2 6005:3 6014:2 6017:1 6025:1 6055:1 6062:1 6065:1 6066:2 6077:2 6084:1 6090:2 6101:2137 6102:1 6117:1 6140:1 6149:1 6165:1 6179:1 6180:1 6183:1 6195:1 6198:1 6201:1 6205:1 6210:1 6232:1 6233:1 6253:1 6273:3 6313:1 6349:3 6376:2 6399:1 6407:1 6448:1 6450:1 6471:1 6480:1 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6559:1 6576:1 6577:1 6581:1 6590:1 6644:3 6698:1 6705:8 6715:2 6725:1 6748:2 6750:1 6777:1 6782:1 6784:1 6787:1 6792:2 6802:2 6817:1 6830:3 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6880:1 6888:1 6936:1 6956:1 6962:1 6974:2 6975:1 6981:4 7050:1 7097:1 7104:1 7110:2 7124:1 7134:1 7137:1 7139:1 7153:1 7157:2 7167:1 7203:2 7276:1 7319:1 7320:1 7337:1 7340:1 7348:2 7363:2 7376:1 7377:2 7383:2 7397:2 7405:1 7408:3 7415:1 7450:1 7452:1 7474:1 7476:6 7488:1 7507:10 7508:1 7520:1 7523:9 7555:1 7581:1 7582:1 7614:1 7632:1 7635:1 7638:1 7649:1 7670:1 7671:1 7680:1 7684:1 7686:1 7693:2 7694:1 7696:1 7702:1 7719:2 7732:1 7733:5 7734:1 7736:1 7740:2 7750:13 7751:1 7753:1 7758:1 7762:1 7765:1 7782:1 7788:2 7811:1 7817:1 7823:2 7871:1 7887:1 7935:1 7995:1 8003:1 8065:1 8089:1 8091:7 8096:2 8097:3 8107:1 8108:5 8168:1 8187:1 8209:1 8222:2 8224:1 8225:13 8234:5 8270:1 8298:1 8301:1 8326:1 8351:1 8357:1 8361:1 8367:1 8372:1 8373:1 8385:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8490:2 8491:1 8510:1 8520:1 8525:1 8544:1 8555:1 8558:1 8573:1 8578:1 8579:1 8598:1 8599:1 8605:1 8609:1 8624:2 8644:5 8692:1 8709:1 8713:1 8719:1 8746:1 8748:7 8755:1 8757:1 8769:2 8771:1 8780:1 8789:1 8791:1 8796:1 8802:1 8831:9 8838:1 8856:1 8889:1 8894:1 8900:2 8903:1 8930:1 8937:2 8948:1 8973:1 8976:1 8980:1 8985:1 9017:1 9029:1 9031:1 9048:1 9053:2 9065:1 9069:1 9139:1 9158:1 9169:1 9180:2 9208:2 9215:1 9217:2 9218:1 9231:1 9253:1 9280:1 9285:1 9314:1 9370:1 9374:1 9402:4 9416:1 9445:1 9477:1 9528:1 9541:1 9547:1 9573:1 9598:1 9611:1 9617:1 9625:2 9626:2 9645:1 9687:3 9706:1 9707:2 9710:1 9721:2 9733:1 9740:1 9747:3 9749:1 9751:8 9769:1 9770:3 9777:1 9778:1 9779:1 9797:1 9799:1 9800:4 9809:1 9812:1 9848:1 9901:1 9904:1 9906:1 9908:1 9912:1 9913:1 9917:1 9919:3 9920:1 9926:1 9929:2 9930:1 9933:1 9940:2 9948:1 9950:1 9980:1 9986:2 9993:1 10018:5 10027:1 10032:2 10095:1 10125:1 10129:1 10147:1 10150:1 10158:1 10173:1 10183:1 10201:1 10208:1 10212:1 10223:2 10232:1 10277:1 10282:1 10288:1 10289:1 10350:1 10362:1 10373:1 10386:1 10392:2 10420:1 10421:4 10424:2 10426:1 10442:1 10451:5 10454:1 10459:1 10463:2 10473:1 10489:1 10510:2 10515:1 10536:1 10542:1 10562:1 10576:1 10579:1 10580:1 10582:1 10590:1 10593:2 10597:2 10613:1 10634:1 10662:1 10704:2 10714:1 10734:1 10736:1 10742:1 10751:2 10759:1 10766:1 10768:8 10780:2 10784:1 10801:1 10817:1 10828:2 10861:1 10870:2 10873:1 10904:1 10929:1 10936:1 10937:1 10944:1 10946:1 10956:1 10957:2 10962:2 10972:1 10974:1 10983:1 11042:1 11049:4 11061:1 11067:1 11068:2 11073:2 11082:1 11109:1 11171:1 11184:1 11203:2 11210:1 11212:7 11220:2 11229:1 11230:1 11248:1 11250:1 11255:1 11264:1 11269:2 11281:1 11303:1 11310:5 11311:1 11320:2 11322:1 11351:1 11356:1 11367:1 11396:1 11444:4 11446:1 11489:1 11508:1 11546:2 11554:1 11577:1 11583:1 11593:1 11595:2 11606:1 11615:1 11644:1 11666:3 11667:13 11670:1 11673:1 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:2 11797:1 11799:1 11802:2 11811:1 11822:2 11834:2 11836:1 11847:1 11852:4 11878:3 11906:2 11932:1 11942:1 11977:1 11983:1 12004:1 12015:1 12017:2 12034:1 12035:1 12055:1 12059:1 12065:1 12083:3 12101:1 12115:1 12116:1 12117:3 12119:2 12140:1 12141:2 12154:1 12173:1 12192:1 12198:1 12202:23 12206:1 12209:1 12215:1 12226:5 12229:14 12237:1 12244:1 12255:1 12295:3 12296:1 12344:1 12364:1 12370:3 12381:1 12383:1 12392:1 12420:1 12431:1 12440:1 12469:1 12515:3 12518:4 12529:1 12543:1 12551:1 12553:1 12559:1 12566:9 12567:2 12590:1 12592:1 12593:2 12606:1 12628:1 12633:1 12653:1 12673:1 12682:1 12693:2 12723:1 12754:1 12783:5 12791:1 12814:3 12823:1 12839:1 12850:1 12874:2 12880:1 12887:1 12895:1 12904:1 12919:1 12938:8 12966:1 12970:1 12985:1 12986:1 13013:2 13047:1 13060:1 13067:1 13070:1 13071:1 13084:1 13086:1 13107:1 13124:1 13129:2 13175:1 13177:3 13186:1 13187:1 13209:1 13211:1 13221:3 13229:1 13240:1 13267:2 13270:2 13279:1 13289:1 13293:1 13296:1 13298:1 13309:1 13321:1 13324:1 13334:2 13346:1 13362:1 13363:1 13384:1 13387:1 13392:1 13405:1 13412:2 13414:2 13417:2 13419:1 13459:1 13471:1 13484:3 13489:1 13505:1 13506:1 13526:4 13529:1 13547:1 13552:1 13557:2 13562:1 13573:2 13577:1 13579:2 13580:1 13581:2 13582:2 13593:1 13597:2 13599:1 13606:1 13609:2 13619:1 13620:1 13632:1 13644:1 13646:1 13661:2 13672:1 13674:1 13683:1 13703:2 13715:12 13724:1 13728:2 13756:2 13786:2 13826:3 13846:1 13851:1 13852:1 13854:1 13855:1 13861:1 13874:1 13881:1 13935:1 13943:1 13971:1 13972:1 13978:1 13982:1 13984:1 13986:2 13999:2 14007:1 14041:1 14061:1 14082:1 14091:1 14093:2 14096:1 14101:1 14104:3 14114:1 14134:1 14137:1 14139:3 14152:1 14172:1 14176:2 14184:1 14193:2 14241:2 14280:2 14283:1 14290:1 14311:1 14312:1 14336:1 14360:1 14364:1 14391:1 14396:1 14429:1 14440:1 14457:3 14474:2 14475:2 14484:1 14488:1 14492:2 14493:1 14519:1 14531:1 14561:3 14591:1 14595:1 14604:1 14612:1 14622:1 14643:1 14658:1 14673:2 14675:1 14694:1 14719:1 14720:1 14767:1 14768:2 14777:1 14781:1 14784:1 14795:1 14809:3 14836:1 14872:2 14902:1 14904:1 14907:1 14913:1 14924:1 14926:2 14929:1 14953:1 14970:1 14975:1 14982:1 15016:1 15018:1 15039:5 15113:13 15121:1 15141:1 15148:1 15151:1 15161:2 15162:3 15164:1 15167:1 15189:3 15193:1 15204:1 15205:2 15215:1 15217:2 15227:1 15233:1 15235:1 15266:2 15280:1 15281:1 15291:1 15295:1 15324:1 15330:1 15337:10 15344:1 15348:1 15370:1 15401:1 15408:1 15413:1 15441:3 15444:2 15459:2 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15499:1 15511:1 15600:1 15601:3 15621:1 15622:1 15660:5 15661:1 15664:1 15671:1 15675:1 15678:2 15680:1 15682:1 15689:1 15698:1 15714:1 15723:1 15744:1 15750:1 15757:1 15759:1 15764:1 15766:3 15772:1 15774:1 15776:1 15825:1 15829:3 15830:1 15840:1 15877:1 15878:2 15892:2 15909:1 15932:2 15980:1 15981:1 15986:1 16035:7 16037:1 16038:4 16046:1 16048:1 16050:1 16066:1 16080:1 16098:1 16107:1 16133:3 16172:2 16178:1 16190:2 16197:1 16236:1 16246:1 16269:3 16282:1 16297:2 16338:1 16393:2 16410:3 16425:1 16428:1 16435:1 16438:1 16449:1 16460:1 16464:1 16468:1 16505:2 16508:3 16512:2 16527:1 16556:1 16574:2 16589:2 16593:1 16602:3 16614:1 16615:5 16629:1 16636:3 16638:1 16640:1 16670:1 16677:1 16703:1 16728:1 16735:1 16749:3 16763:1 16774:1 16782:4 16862:1 16870:4 16872:3 16881:1 16911:1 16930:1 16937:1 16938:2 16939:1 16940:1 16954:1 16975:1 16990:1 16992:2 17009:1 17033:3 17046:4 17048:1 17059:1 17089:1 17099:1 17102:1 17128:2 17151:1 17160:2 17162:1 17164:4 17175:1 17185:1 17186:1 17187:3 17208:3 17211:4 17222:2 17281:2 17283:1 17284:1 17311:2 17324:2 17338:1 17347:1 17377:2 17389:4 17424:1 17437:2 17442:2 17457:1 17465:2 17486:1 17501:1 17528:1 17530:1 17543:1 17546:1 17568:1 17577:1 17618:1 17632:1 17634:1 17670:2 17707:3 17709:1 17741:1 17744:1 17770:1 17785:1 17794:1 17811:1 17821:2 17824:1 17841:1 17851:1 17853:4 17857:1 17862:1 17865:2 17894:1 17908:1 17927:1 17935:1 17939:1 17941:1 17945:1 17966:1 17983:1 17995:2 18004:1 18011:1 18025:4 18031:1 18032:1 18047:1 18064:1 18078:1 18090:3 18104:2 18123:1 18133:3 18134:1 18138:2 18205:1 18209:1 18240:2 18241:1 18257:1 18265:1 18266:1 18272:5 18275:1 18280:4 18281:1 18287:1 18292:1 18293:4 18303:1 18322:1 18334:2 18345:1 18368:2 18385:3 18391:1 18397:1 18399:1 18463:1 18470:1 18482:1 18491:4 18509:2 18513:1 18514:1 18542:1 18547:1 18574:1 18586:1 18592:1 18623:1 18646:1 18679:1 18703:4 18705:2 18722:2 18723:1 18724:4 18725:2 18735:1 18739:1 18766:1 18815:2 18833:1 18856:1 18875:1 18883:2 18900:1 18906:1 18922:1 18929:2 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18974:1 18993:1 19004:2 19005:2 19007:13 19017:4 19052:1 19066:1 19089:2 19164:1 19207:1 19236:1 19240:1 19252:1 19260:5 19262:2 19290:1 19299:1 19310:1 19319:1 19391:1 19397:1 19404:1 19430:1 19439:1 19456:1 19476:1 19481:1 19492:1 19496:1 19498:2 19502:1 19597:2 19604:1 19631:1 19640:1 19647:6 19653:1 19663:1 19697:1 19707:1 19712:2 19734:1 19754:1 19790:12 19791:1 19794:3 19796:1 19834:1 19843:1 19936:6 19952:1 19959:1 19963:1 19970:1 19977:2 19978:1 20022:2 20023:3 20026:1 20032:1 20038:1 20041:1 20046:1 20055:1 20056:1 20062:1 20071:1 20079:1 20106:2 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:2 20237:1 20284:1 20285:2 20299:1 20311:1 20325:1 20351:1 20353:1 20378:1 20392:1 20413:1 20414:1 20420:1 20511:4 20522:1 20536:1 20572:1 20587:1 20590:2 20591:1 20648:1 20653:1 20678:1 20696:1 20703:1 20724:2 20740:1 20741:1 20747:1 20754:1 20767:1 20770:1 20793:1 20794:1 20802:1 20819:1 20842:1 20852:1 20859:2 20863:1 20916:1 20918:1 20924:1 20940:1 20941:2 20944:3 20956:1 20961:1 20976:1 20987:2 21013:1 21014:1 21015:1 21018:1 21022:1 21029:3 21035:1 21040:2 21061:1 21075:1 21096:1 21099:5 21102:1 21104:1 21108:15 21109:2 21110:2 21113:1 21119:2 21121:1 21128:1 21143:1 21145:1 21169:1 21171:8 21173:1 21201:2 21205:1 21221:2 21222:1 21223:1 21224:1 21242:1 21243:1 21262:1 21276:1 21292:3 21315:1 21320:1 21321:1 21324:2 21333:3 21340:1 21361:1 21373:1 21374:1 21381:1 21384:1 21391:2 21406:1 21413:2 21441:1 21459:2 21460:1 21470:2 21530:1 21535:1 21536:1 21537:1 21538:2 21540:1 21543:1 21575:1 21588:1 21603:1 21609:1 21622:1 21634:2 21635:1 21639:1 21640:1 21647:1 21668:1 21669:1 21704:1 21711:5 21722:1 21778:2 21779:1 21782:4 21786:1 21804:1 21826:1 21831:1 21835:1 21837:1 21843:1 21845:1 21866:1 21880:2 21881:1 21889:3 21894:1 21907:2 21930:1 21955:1 21966:1 21970:1 21985:1 21988:1 21990:2 21997:4 21998:2 22010:1 22017:2 22021:3 22024:1 22025:1 22048:1 22067:3 22090:1 22107:1 22108:1 22116:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:1 22183:1 22255:3 22276:1 22347:2 22349:2 22352:1 22360:2 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22550:1 22584:1 22648:1 22649:1 22651:3 22662:1 22672:3 22674:1 22675:1 22688:1 22709:2 22725:2 22765:1 22783:1 22787:1 22794:1 22796:3 22829:1 22840:1 22877:1 22880:1 22897:1 22901:2 22907:1 22911:1 22938:1 22956:1 22964:1 22977:1 22983:1 22985:3 22988:1 22997:1 23003:1 23018:2 23034:1 23081:1 23114:1 23119:1 23142:4 23160:1 23188:2 23258:1 23263:1 23274:1 23284:1 23286:2 23301:1 23345:1 23348:1 23359:1 23370:1 23371:1 23376:1 23426:1 23444:1 23466:2 23468:1 23496:2 23504:2
16 1:1 3:1 5:1 7:1 26:1 51:1 64:1 82:1 110:2 119:1 126:1 138:1 154:1 164:4 165:1 171:1 193:1 204:1 224:1 229:1 262:1 279:1 280:1 286:1 296:1 317:1 384:1 403:1 406:1 413:3 416:2 428:1 440:4 463:2 464:1 467:1 470:1 507:1 511:1 514:1 516:1 527:1 539:3 564:1 584:1 596:1 606:2 607:1 608:2 613:1 626:3 643:1 646:2 665:1 710:1 732:1 735:3 739:1 744:1 759:1 786:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:1 855:1 860:2 886:4 896:1 898:1 902:2 904:1 910:1 947:2 962:1 967:2 993:1 996:1 1010:3 1048:2 1049:1 1060:1 1071:4 1078:1 1086:1 1098:1 1113:1 1115:2 1118:1 1120:1 1131:4 1133:1 1145:1 1148:1 1160:1 1162:1 1172:1 1188:1 1190:1 1191:1 1194:1 1195:5 1196:1 1203:1 1207:1 1208:1 1236:2 1242:4 1268:2 1291:1 1292:1 1325:1 1348:1 1366:1 1382:1 1384:1 1391:2 1399:3 1417:1 1425:1 1450:1 1451:1 1488:1 1494:2 1537:2 1564:2 1573:3 1574:1 1579:1 1580:1 1581:1 1612:1 1628:5 1647:3 1648:2 1649:1 1671:1 1672:1 1679:2 1682:1 1683:1 1686:1 1738:1 1752:13 1789:1 1792:1 1794:1 1802:2 1809:1 1829:2 1841:1 1844:1 1857:35 1869:1 1890:3 1930:3 1935:1 1943:1 1965:1 1977:2 1978:1 1982:2 2001:1 2003:4 2023:1 2027:1 2034:1 2042:1 2044:1 2045:1 2047:1 2053:2 2057:1 2063:3 2095:1 2103:1 2105:1 2109:1 2112:1 2123:2 2124:2 2142:1 2145:1 2150:1 2156:1 2158:1 2182:1 2191:1 2192:1 2231:1 2234:1 2236:1 2288:1 2297:1 2301:1 2310:5 2343:3 2354:1 2367:2 2368:1 2402:1 2414:1 2435:1 2447:3 2450:1 2469:1 2479:2 2481:1 2483:2 2512:1 2547:1 2554:3 2562:1 2573:1 2581:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:1 2639:2 2642:1 2643:1 2658:1 2667:1 2671:2 2685:1 2701:1 2702:1 2705:2 2708:3 2716:1 2763:1 2764:1 2773:1 2778:1 2779:1 2793:2 2795:1 2798:1 2801:1 2810:2 2816:2 2870:1 2878:1 2892:1 2895:2 2896:1 2902:1 2904:1 2914:1 2921:1 2926:1 2927:1 2936:1 2942:1 2954:1 2966:8 2970:1 2979:1 2986:1 3004:1 3012:1 3014:1 3023:1 3033:1 3035:4 3048:1 3052:1 3070:2 3084:1 3136:1 3141:1 3153:1 3161:1 3168:2 3172:1 3177:3 3178:1 3186:1 3218:1 3219:1 3221:1 3223:3 3229:1 3234:1 3237:2 3240:1 3242:1 3255:1 3264:1 3268:1 3272:2 3274:1 3293:1 3302:1 3314:2 3316:2 3345:2 3409:1 3462:1 3473:1 3519:1 3538:1 3540:1 3541:2 3542:1 3545:2 3546:3 3552:1 3554:2 3555:1 3556:1 3559:3 3560:1 3562:1 3564:1 3567:1 3573:4 3575:3 3576:5 3590:1 3606:1 3622:1 3642:1 3652:1 3661:1 3673:1 3686:1 3698:1 3701:1 3703:1 3705:1 3706:3 3726:1 3740:1 3746:1 3752:3 3759:1 3761:1 3792:1 3812:1 3819:1 3827:1 3854:1 3860:3 3865:1 3892:4 3906:2 3946:1 3951:1 3952:1 3974:1 3990:1 4004:1 4006:1 4027:3 4038:1 4050:1 4052:2 4058:1 4059:1 4083:1 4089:1 4105:1 4117:2 4127:1 4150:1 4182:1 4183:1 4184:2 4208:4 4219:1 4226:3 4243:1 4244:1 4257:1 4260:1 4262:5 4281:1 4296:1 4311:1 4317:1 4335:2 4338:3 4343:1 4358:1 4380:1 4386:1 4393:1 4413:1 4414:1 4417:4 4424:1 4427:1 4480:1 4481:2 4488:1 4490:1 4511:4 4513:8 4516:1 4560:1 4561:6 4577:6 4589:1 4616:2 4631:1 4650:19 4671:1 4675:1 4699:1 4705:1 4714:1 4735:1 4746:1 4760:1 4781:1 4786:1 4807:2 4818:1 4837:2 4844:3 4932:2 4966:1 5034:2 5038:1 5060:1 5084:4 5092:1 5112:1 5120:6 5132:1 5139:1 5144:2 5159:1 5161:2 5170:1 5175:1 5183:1 5199:1 5226:1 5227:2 5234:1 5253:4 5279:1 5297:1 5310:1 5341:1 5344:1 5353:3 5365:1 5366:1 5383:1 5388:1 5390:1 5398:3 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5459:1 5467:1 5480:1 5517:1 5521:1 5542:1 5543:1 5560:3 5565:1 5619:1 5621:1 5623:1 5627:1 5633:1 5659:1 5661:5 5677:1 5710:1 5732:1 5748:3 5779:1 5780:1 5809:1 5816:1 5817:24 5820:1 5851:2 5853:1 5855:6 5858:1 5870:12 5871:1 5872:2 5873:1 5876:3 5896:1 5898:2 5919:3 5932:1 5934:2 5939:2 5947:1 5953:3 5957:2 5961:1 5963:1 5967:2 5994:2 6005:3 6014:2 6017:1 6025:1 6055:1 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6101:2320 6102:1 6107:1 6117:1 6140:2 6149:1 6165:1 6179:1 6180:1 6183:1 6195:1 6198:1 6201:1 6205:1 6210:1 6220:1 6232:1 6233:1 6253:1 6273:3 6313:1 6349:3 6376:2 6399:1 6407:1 6448:1 6450:1 6463:1 6471:1 6480:1 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6559:1 6576:1 6577:1 6581:1 6590:1 6644:3 6698:1 6705:8 6715:2 6725:1 6748:2 6750:1 6777:1 6782:1 6784:1 6787:1 6792:2 6798:1 6802:2 6817:1 6830:3 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6880:1 6888:1 6936:1 6956:1 6962:1 6974:2 6975:1 6981:4 7050:1 7080:1 7097:2 7104:1 7110:2 7124:1 7134:2 7137:1 7139:1 7153:1 7157:2 7167:1 7203:2 7208:1 7276:1 7319:1 7320:1 7337:1 7340:1 7348:2 7349:1 7363:2 7376:1 7377:2 7383:2 7397:2 7405:1 7408:3 7415:1 7450:1 7452:1 7474:1 7476:6 7488:1 7507:10 7508:1 7520:1 7523:9 7555:1 7581:1 7582:2 7591:1 7614:1 7632:1 7635:1 7638:1 7649:1 7663:1 7670:1 7671:1 7680:1 7684:1 7686:1 7693:2 7694:1 7696:2 7702:1 7719:2 7730:1 7732:1 7733:5 7734:1 7736:1 7740:2 7750:13 7751:1 7753:1 7758:1 7762:1 7765:3 7782:1 7788:2 7811:1 7817:1 7823:2 7871:1 7887:1 7935:1 7995:1 8003:1 8034:1 8065:1 8089:1 8091:8 8096:3 8097:3 8107:1 8108:5 8168:1 8187:1 8209:1 8222:2 8224:1 8225:13 8234:5 8254:1 8270:1 8298:1 8301:1 8325:1 8326:1 8351:1 8357:1 8361:1 8367:1 8372:1 8373:1 8385:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8490:2 8491:1 8510:1 8520:1 8525:1 8537:1 8544:1 8555:1 8558:1 8573:1 8578:1 8579:1 8598:1 8599:1 8605:1 8609:1 8624:2 8634:1 8644:6 8692:1 8709:1 8713:1 8719:1 8723:1 8746:1 8748:8 8755:1 8757:1 8769:2 8771:2 8780:2 8789:1 8791:1 8796:1 8802:1 8831:9 8838:1 8856:1 8889:1 8894:1 8900:2 8903:1 8930:1 8937:2 8948:1 8973:1 8976:1 8980:1 8985:1 9017:1 9024:1 9029:1 9031:1 9048:1 9053:2 9065:1 9069:1 9089:1 9139:1 9158:1 9169:1 9180:2 9208:3 9215:1 9217:2 9218:1 9231:1 9253:1 9280:1 9285:1 9314:1 9370:1 9374:1 9402:4 9416:1 9445:1 9477:1 9528:1 9529:1 9536:1 9541:1 9547:1 9573:1 9589:1 9598:1 9611:1 9612:1 9617:1 9625:2 9626:2 9645:1 9687:3 9706:1 9707:2 9710:1 9721:2 9733:1 9740:1 9747:3 9749:1 9751:9 9769:1 9770:3 9777:1 9778:1 9779:1 9797:1 9799:1 9800:4 9809:1 9812:1 9848:1 9901:1 9904:1 9906:1 9908:1 9912:1 9913:1 9917:2 9919:3 9920:1 9926:1 9929:2 9930:1 9933:1 9940:2 9948:1 9950:1 9980:1 9986:2 9993:1 10018:5 10027:1 10032:2 10095:1 10125:1 10129:1 10147:2 10150:1 10158:1 10173:1 10182:1 10183:1 10201:1 10208:1 10212:1 10223:2 10224:1 10232:1 10277:1 10282:1 10288:1 10289:1 10350:1 10362:1 10373:1 10386:1 10392:2 10420:1 10421:4 10424:2 10426:2 10442:1 10451:5 10454:1 10459:1 10463:3 10473:1 10489:1 10510:2 10515:1 10536:1 10542:1 10562:1 10576:1 10579:1 10580:1 10582:1 10590:1 10593:3 10597:2 10613:1 10634:1 10662:1 10704:2 10714:1 10734:1 10736:1 10742:1 10751:2 10759:1 10766:1 10768:9 10780:3 10784:1 10799:1 10801:1 10817:1 10828:2 10861:1 10870:2 10873:1 10904:1 10929:1 10936:1 10937:1 10944:1 10946:1 10956:1 10957:2 10962:2 10972:1 10974:1 10983:1 11042:1 11049:4 11061:1 11067:1 11068:2 11073:2 11082:1 11109:1 11171:1 11184:2 11203:2 11210:1 11212:7 11220:2 11229:1 11230:1 11248:1 11250:1 11255:1 11264:1 11269:2 11271:1 11281:1 11303:1 11310:5 11311:1 11316:2 11320:2 11322:1 11351:1 11356:1 11367:1 11396:1 11444:4 11446:1 11489:1 11508:1 11546:2 11554:1 11577:1 11583:1 11593:3 11595:2 11606:1 11615:1 11631:1 11644:1 11666:3 11667:13 11670:1 11673:1 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:3 11797:1 11799:1 11802:2 11811:1 11822:2 11834:2 11836:2 11847:1 11852:5 11878:3 11906:2 11932:1 11942:1 11968:1 11977:1 11983:1 12004:1 12015:1 12017:2 12034:1 12035:1 12055:2 12059:1 12065:1 12083:3 12101:1 12115:1 12116:3 12117:3 12119:2 12140:1 12141:2 12154:1 12173:1 12191:1 12192:1 12198:1 12202:27 12206:1 12209:1 12215:1 12226:5 12229:15 12237:1 12244:1 12255:1 12295:3 12296:1 12344:1 12364:1 12370:3 12381:1 12383:1 12392:1 12420:1 12431:1 12440:1 12469:1 12515:3 12518:4 12529:1 12543:1 12551:1 12553:1 12559:1 12566:10 12567:2 12590:1 12592:1 12593:2 12606:1 12628:1 12633:1 12653:1 12673:1 12682:1 12693:2 12723:1 12754:2 12783:5 12791:1 12814:3 12823:1 12839:1 12850:1 12852:1 12874:2 12880:1 12887:1 12895:1 12904:1 12919:1 12938:9 12966:1 12970:1 12985:1 12986:1 13013:2 13047:1 13060:1 13067:1 13070:1 13071:1 13084:1 13086:2 13107:1 13124:1 13129:2 13175:1 13177:3 13186:1 13187:1 13209:1 13211:1 13221:3 13229:1 13240:1 13267:2 13270:2 13279:1 13289:1 13293:1 13296:1 13298:1 13309:1 13321:1 13324:1 13334:2 13346:1 13362:1 13363:1 13379:1 13384:1 13387:1 13392:1 13405:1 13412:2 13414:2 13417:2 13419:1 13459:1 13471:1 13484:3 13489:1 13505:1 13506:1 13526:4 13529:1 13547:1 13552:1 13557:2 13562:1 13573:2 13577:1 13579:3 13580:1 13581:2 13582:2 13593:1 13597:2 13599:1 13606:1 13609:2 13619:1 13620:1 13632:1 13644:1 13646:1 13661:2 13672:1 13674:1 13683:1 13703:2 13715:12 13724:1 13728:2 13756:2 13786:2 13826:3 13846:1 13851:1 13852:1 13854:1 13855:1 13861:1 13874:1 13881:1 13935:1 13943:1 13971:1 13972:1 13978:1 13982:1 13984:1 13986:2 13995:1 13999:2 14007:1 14041:1 14061:1 14082:1 14091:1 14093:2 14096:1 14100:1 14101:1 14104:3 14114:1 14134:1 14137:1 14139:4 14152:1 14172:1 14176:2 14184:1 14193:2 14241:2 14280:2 14281:1 14283:1 14290:1 14311:1 14312:1 14336:1 14360:1 14364:1 14391:1 14396:1 14429:1 14440:1 14457:3 14474:2 14475:2 14484:1 14488:1 14492:2 14493:1 14519:1 14531:1 14561:3 14586:1 14591:1 14595:1 14604:1 14612:1 14622:1 14641:1 14643:1 14658:1 14673:2 14675:1 14694:1 14719:1 14720:1 14767:1 14768:3 14777:1 14781:1 14784:1 14795:1 14809:3 14836:1 14872:2 14902:1 14904:1 14907:1 14913:1 14924:1 14926:2 14929:1 14953:1 14955:1 14970:1 14975:1 14982:1 15016:1 15018:1 15039:5 15113:13 15121:1 15141:1 15148:1 15151:1 15161:2 15162:3 15164:1 15167:1 15189:3 15193:1 15204:1 15205:2 15215:1 15217:2 15227:1 15233:1 15235:1 15266:2 15280:1 15281:2 15291:1 15295:1 15324:1 15330:1 15337:11 15344:1 15348:1 15370:1 15401:1 15408:1 15413:1 15441:4 15444:2 15459:2 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15499:1 15511:1 15597:1 15600:1 15601:3 15621:1 15622:1 15660:5 15661:1 15664:1 15671:1 15675:1 15678:2 15680:1 15682:1 15689:1 15698:1 15714:1 15723:1 15744:1 15750:1 15757:1 15759:1 15764:1 15766:3 15772:1 15774:1 15776:1 15825:1 15829:3 15830:1 15840:1 15877:1 15878:2 15892:2 15909:1 15932:2 15967:1 15980:1 15981:2 15986:1 16035:7 16037:1 16038:4 16046:1 16048:1 16050:1 16066:1 16080:1 16098:1 16107:1 16133:3 16172:2 16178:1 16190:2 16197:1 16236:1 16246:1 16269:3 16282:1 16290:1 16297:2 16322:1 16338:1 16393:2 16410:3 16425:1 16428:1 16435:1 16438:1 16449:1 16460:1 16464:1 16468:1 16480:1 16505:2 16508:4 16512:2 16523:1 16527:1 16556:1 16557:1 16574:2 16589:2 16593:1 16602:3 16614:1 16615:5 16629:1 16636:3 16638:1 16640:1 16670:1 16674:1 16677:1 16703:1 16728:1 16735:1 16749:3 16763:2 16774:2 16782:5 16862:1 16865:1 16870:4 16872:3 16881:1 16911:1 16930:1 16937:1 16938:2 16939:1 16940:1 16954:1 16975:1 16990:1 16992:2 17009:1 17033:3 17046:4 17048:1 17059:1 17089:1 17099:1 17102:1 17109:1 17128:2 17151:1 17160:2 17162:1 17164:4 17175:1 17185:1 17186:1 17187:3 17208:3 17211:4 17222:2 17281:2 17283:1 17284:1 17311:2 17324:2 17338:1 17347:1 17377:2 17389:4 17424:1 17437:2 17442:2 17457:1 17465:2 17486:1 17501:1 17528:1 17530:1 17541:1 17543:1 17545:1 17546:1 17568:1 17577:1 17618:1 17623:1 17632:1 17634:1 17670:2 17707:3 17709:1 17741:1 17744:1 17770:1 17785:1 17794:1 17811:1 17821:2 17824:1 17841:1 17851:1 17853:4 17857:1 17862:1 17865:2 17894:1 17908:1 17927:1 17935:1 17939:1 17941:1 17945:1 17966:1 17983:1 17986:1 17995:2 18004:1 18011:1 18025:4 18031:1 18032:1 18047:1 18064:1 18078:1 18090:3 18104:2 18123:1 18133:3 18134:1 18138:2 18205:1 18209:1 18230:1 18240:2 18241:1 18257:1 18265:1 18266:1 18272:5 18275:1 18280:4 18281:1 18287:1 18292:1 18293:4 18303:1 18322:1 18334:2 18345:1 18368:2 18385:3 18391:1 18397:1 18399:2 18463:1 18470:1 18472:1 18482:1 18491:4 18509:2 18513:1 18514:1 18542:1 18547:1 18574:1 18586:1 18592:1 18623:1 18646:1 18679:2 18703:4 18705:2 18722:2 18723:1 18724:4 18725:2 18735:1 18739:1 18766:1 18815:2 18833:1 18856:1 18875:1 18883:2 18900:1 18906:2 18922:1 18929:2 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18974:1 18993:1 19004:3 19005:3 19007:13 19017:4 19052:1 19066:1 19089:2 19111:1 19164:1 19195:1 19207:1 19236:1 19240:1 19252:1 19260:5 19262:2 19271:1 19282:1 19290:1 19299:1 19310:1 19319:1 19391:1 19397:1 19404:1 19430:1 19439:1 19456:1 19476:1 19481:1 19492:1 19496:1 19498:2 19502:1 19597:2 19604:1 19631:1 19636:1 19640:1 19647:6 19653:1 19663:1 19697:1 19707:1 19712:2 19734:1 19754:1 19790:12 19791:1 19794:3 19796:1 19834:1 19843:1 19936:6 19952:1 19959:1 19963:1 19970:1 19974:2 19977:3 19978:1 20022:2 20023:3 20026:1 20032:1 20038:1 20041:1 20046:1 20055:1 20056:1 20062:1 20071:1 20079:1 20106:2 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:2 20237:1 20255:1 20284:1 20285:2 20299:1 20311:1 20325:1 20351:1 20353:1 20378:1 20392:1 20413:1 20414:1 20420:1 20438:1 20511:4 20522:1 20536:1 20572:1 20587:1 20590:2 20591:1 20638:1 20648:1 20653:1 20678:1 20696:1 20703:1 20724:2 20740:1 20741:1 20747:2 20754:1 20767:1 20770:2 20793:1 20794:1 20802:1 20819:1 20842:1 20852:1 20859:2 20863:2 20916:1 20918:1 20924:1 20940:1 20941:2 20944:3 20955:1 20956:2 20961:1 20976:1 20987:2 21013:1 21014:1 21015:1 21018:1 21022:1 21029:3 21035:1 21040:2 21061:1 21075:1 21096:1 21099:5 21102:1 21104:1 21108:16 21109:2 21110:2 21113:1 21119:3 21121:1 21125:1 21128:1 21143:1 21145:1 21169:1 21171:9 21173:1 21201:2 21205:1 21221:2 21222:1 21223:1 21224:1 21242:1 21243:1 21262:1 21276:1 21292:3 21315:1 21320:1 21321:1 21324:2 21333:3 21338:1 21340:1 21361:1 21373:1 21374:1 21375:1 21381:1 21384:1 21391:2 21406:2 21413:2 21415:1 21441:1 21459:2 21460:2 21470:2 21530:1 21535:1 21536:1 21537:1 21538:2 21540:1 21543:1 21575:1 21588:1 21603:1 21609:1 21611:1 21622:1 21634:2 21635:1 21639:1 21640:1 21641:1 21647:1 21668:1 21669:1 21703:1 21704:1 21711:5 21722:1 21778:2 21779:1 21782:4 21786:1 21795:1 21804:1 21826:1 21831:1 21835:1 21837:1 21843:1 21845:1 21866:1 21880:2 21881:1 21889:3 21894:1 21907:3 21930:1 21955:1 21966:1 21970:1 21985:1 21988:2 21990:2 21997:4 21998:2 22010:1 22017:2 22021:3 22024:1 22025:1 22048:1 22067:3 22090:1 22107:1 22108:1 22116:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:1 22183:1 22255:3 22276:1 22347:2 22349:2 22352:1 22360:2 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22550:1 22584:1 22636:1 22648:1 22649:1 22651:3 22662:1 22666:1 22672:3 22674:1 22675:1 22688:1 22709:2 22725:2 22765:1 22783:1 22787:1 22794:1 22796:3 22829:1 22840:1 22877:1 22880:1 22897:1 22901:2 22907:1 22911:1 22938:1 22956:1 22964:1 22975:1 22977:1 22983:1 22985:4 22988:1 22997:1 23003:2 23018:2 23034:1 23081:1 23114:1 23119:1 23142:4 23160:1 23188:2 23258:1 23263:1 23274:1 23284:1 23286:3 23301:1 23345:1 23348:1 23359:1 23370:1 23371:1 23376:1 23400:1 23426:1 23444:1 23466:2 23468:1 23496:3 23504:2
16 1:1 3:1 5:1 7:1 26:1 51:1 64:1 82:1 110:2 119:3 126:1 138:1 154:1 164:4 165:1 171:1 193:1 204:1 224:1 229:1 262:1 279:1 280:1 286:1 296:1 317:1 384:1 403:1 406:1 413:3 416:2 428:1 440:4 463:2 464:1 467:1 470:1 507:3 511:1 514:1 516:1 527:1 539:3 564:1 584:1 596:1 606:2 607:1 608:2 613:1 626:3 643:1 646:2 665:1 710:1 732:2 735:3 739:1 744:1 759:1 786:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:1 855:1 860:2 886:6 896:1 898:1 902:3 904:1 910:1 947:2 962:1 967:2 993:1 996:3 1010:3 1048:2 1049:1 1060:1 1071:4 1078:1 1086:1 1098:1 1113:1 1115:2 1118:1 1120:1 1131:4 1133:1 1145:1 1148:1 1160:1 1162:1 1172:1 1188:1 1190:2 1191:1 1194:1 1195:5 1196:1 1203:1 1207:1 1208:1 1236:2 1242:4 1268:2 1291:1 1292:1 1325:1 1348:1 1366:2 1376:1 1382:1 1384:1 1391:2 1399:3 1417:1 1425:1 1450:2 1451:1 1488:1 1494:2 1537:2 1564:2 1573:3 1574:1 1579:1 1580:2 1581:1 1612:1 1628:5 1647:3 1648:2 1649:1 1671:1 1672:1 1679:2 1682:1 1683:1 1686:1 1738:1 1752:14 1789:1 1792:1 1794:1 1802:2 1809:1 1829:2 1841:1 1844:1 1857:37 1869:1 1890:3 1930:3 1935:1 1943:1 1965:1 1977:2 1978:1 1982:2 2001:1 2003:4 2023:1 2027:1 2034:1 2042:1 2044:1 2045:2 2047:1 2053:2 2057:1 2063:3 2087:1 2095:1 2103:1 2105:1 2109:2 2112:1 2123:2 2124:2 2142:1 2145:1 2150:1 2156:1 2158:1 2182:1 2191:1 2192:1 2231:1 2234:1 2236:1 2288:1 2297:1 2301:1 2310:5 2343:3 2354:1 2367:2 2368:1 2384:1 2402:1 2414:1 2435:1 2447:5 2450:1 2469:1 2479:2 2481:1 2483:2 2512:3 2547:1 2554:3 2562:1 2573:1 2581:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:1 2639:2 2642:1 2643:1 2658:2 2667:3 2671:2 2685:1 2701:1 2702:1 2705:2 2708:3 2716:1 2718:1 2746:1 2763:1 2764:1 2773:3 2778:1 2779:1 2793:2 2795:1 2798:1 2801:1 2810:2 2816:2 2840:2 2870:1 2878:1 2892:1 2895:2 2896:1 2902:1 2904:1 2914:1 2921:1 2926:1 2927:1 2936:1 2942:1 2954:1 2966:8 2970:1 2979:1 2986:1 3004:1 3012:1 3014:1 3023:1 3033:1 3035:4 3048:1 3052:1 3066:1 3070:2 3084:1 3136:1 3141:1 3153:1 3161:1 3168:2 3172:2 3177:3 3178:1 3186:1 3218:1 3219:1 3221:1 3223:3 3229:1 3234:1 3237:2 3240:1 3242:1 3255:1 3264:3 3268:1 3272:2 3274:1 3293:1 3302:1 3314:2 3316:2 3345:3 3409:1 3462:1 3473:1 3519:1 3538:1 3540:1 3541:2 3542:1 3545:2 3546:3 3552:1 3554:2 3555:1 3556:1 3559:5 3560:1 3562:1 3564:1 3567:1 3573:4 3575:3 3576:5 3590:1 3606:1 3622:1 3642:1 3652:1 3661:1 3673:1 3686:1 3698:1 3701:1 3703:1 3705:1 3706:3 3726:1 3740:1 3746:1 3752:3 3759:1 3761:1 3792:1 3812:1 3819:1 3827:1 3854:2 3860:3 3865:1 3892:4 3906:2 3946:1 3951:1 3952:1 3974:1 3990:1 4004:1 4006:1 4027:3 4034:1 4038:1 4050:1 4052:2 4058:1 4059:1 4083:1 4089:1 4105:1 4117:2 4127:1 4150:1 4182:1 4183:2 4184:2 4208:4 4219:1 4226:3 4243:1 4244:1 4257:1 4260:1 4262:5 4281:1 4296:1 4311:1 4317:1 4335:2 4338:3 4343:1 4358:1 4380:1 4386:1 4393:1 4413:1 4414:1 4417:4 4424:1 4427:2 4480:1 4481:2 4488:1 4490:1 4511:4 4513:8 4516:1 4540:1 4560:1 4561:7 4577:6 4589:1 4616:2 4631:1 4650:19 4658:1 4671:1 4675:1 4699:1 4705:1 4714:1 4735:1 4746:1 4760:1 4781:1 4786:1 4807:2 4818:1 4837:2 4844:4 4932:2 4966:1 5034:2 5038:1 5060:1 5084:4 5092:1 5112:1 5120:6 5132:1 5139:1 5144:2 5159:1 5161:2 5170:1 5175:1 5183:1 5199:1 5226:1 5227:2 5234:1 5253:4 5279:1 5297:1 5310:1 5341:1 5344:1 5353:3 5365:1 5366:1 5383:3 5388:1 5390:1 5398:3 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5459:1 5467:1 5480:3 5517:1 5521:2 5542:1 5543:1 5560:3 5565:1 5601:1 5619:1 5621:3 5623:1 5627:1 5632:1 5633:1 5659:1 5661:6 5677:1 5710:1 5732:1 5748:3 5762:1 5779:1 5780:1 5809:1 5816:1 5817:26 5820:1 5851:2 5853:1 5855:6 5858:1 5870:13 5871:1 5872:2 5873:1 5876:3 5896:1 5898:2 5919:3 5932:1 5934:2 5939:2 5947:1 5953:3 5957:2 5961:1 5963:1 5967:2 5994:2 6005:3 6014:2 6017:1 6025:1 6055:1 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6101:2387 6102:1 6107:1 6117:1 6140:2 6149:1 6165:1 6179:1 6180:1 6183:1 6195:1 6198:1 6201:1 6205:1 6210:2 6220:1 6232:1 6233:3 6253:1 6273:3 6289:1 6313:1 6349:3 6376:2 6399:1 6407:1 6448:2 6450:1 6458:1 6463:1 6471:1 6480:1 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6559:1 6576:1 6577:1 6581:1 6590:1 6644:3 6698:1 6705:8 6715:2 6725:1 6748:2 6750:1 6777:1 6782:1 6784:1 6787:1 6792:2 6798:1 6802:2 6817:1 6830:3 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6880:1 6888:1 6936:1 6956:2 6962:1 6974:2 6975:1 6981:4 7050:1 7080:1 7097:2 7104:1 7110:2 7124:1 7134:2 7137:1 7139:1 7153:1 7157:2 7167:1 7203:2 7208:1 7276:1 7319:1 7320:1 7337:1 7340:1 7348:2 7349:1 7363:2 7376:1 7377:2 7383:2 7397:2 7405:1 7408:3 7415:1 7450:1 7452:1 7474:1 7476:8 7488:1 7507:10 7508:1 7520:1 7523:10 7555:1 7581:1 7582:3 7591:1 7614:1 7632:1 7635:1 7638:3 7649:1 7663:1 7670:3 7671:1 7680:1 7684:1 7686:1 7689:1 7693:2 7694:1 7696:3 7702:1 7719:2 7730:1 7732:1 7733:5 7734:1 7736:1 7740:2 7750:14 7751:1 7753:1 7758:1 7762:2 7765:3 7782:1 7788:2 7811:1 7814:1 7817:2 7823:2 7871:1 7883:1 7887:1 7935:1 7995:1 8003:1 8034:1 8065:1 8089:1 8091:8 8096:3 8097:3 8107:1 8108:5 8168:1 8187:1 8209:1 8222:2 8224:1 8225:14 8234:5 8254:1 8270:1 8298:1 8301:1 8325:1 8326:1 8351:1 8357:1 8361:1 8367:1 8372:1 8373:1 8385:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8490:2 8491:1 8510:1 8520:1 8525:1 8537:1 8544:1 8555:1 8558:1 8573:1 8578:1 8579:1 8598:1 8599:1 8605:1 8609:1 8624:2 8634:1 8644:6 8692:1 8709:1 8713:1 8719:1 8723:1 8746:1 8748:8 8755:1 8756:1 8757:1 8769:2 8771:2 8780:2 8789:1 8791:1 8796:1 8802:1 8831:9 8838:1 8856:1 8889:1 8894:1 8900:2 8903:1 8930:1 8937:2 8948:1 8973:1 8976:1 8980:1 8985:1 9017:1 9024:1 9029:1 9031:1 9048:1 9053:2 9065:1 9069:1 9089:3 9139:1 9158:2 9169:1 9180:2 9208:3 9215:1 9217:2 9218:1 9231:1 9253:1 9280:1 9285:1 9314:1 9370:1 9374:1 9393:1 9400:1 9402:4 9413:1 9416:1 9445:1 9477:1 9497:2 9528:1 9529:1 9536:1 9541:1 9547:1 9573:1 9589:1 9598:2 9611:1 9612:1 9617:1 9625:2 9626:2 9645:1 9687:3 9706:1 9707:2 9710:1 9721:2 9733:1 9740:1 9747:3 9749:1 9751:9 9769:1 9770:3 9777:1 9778:1 9779:1 9797:1 9799:1 9800:4 9809:1 9812:1 9848:3 9901:1 9904:1 9905:1 9906:1 9908:1 9910:1 9912:1 9913:1 9917:2 9919:3 9920:1 9926:1 9929:4 9930:1 9933:1 9940:2 9948:1 9950:1 9980:1 9986:2 9993:1 10018:5 10027:1 10032:2 10050:1 10095:1 10125:1 10129:1 10147:2 10150:1 10158:1 10165:1 10173:1 10182:3 10183:1 10201:1 10208:1 10212:1 10223:2 10224:1 10232:1 10277:1 10282:1 10288:1 10289:1 10350:1 10362:1 10373:1 10386:1 10392:2 10412:1 10420:1 10421:4 10424:2 10426:2 10442:3 10451:5 10454:1 10459:1 10463:3 10473:1 10489:1 10510:2 10515:1 10520:1 10536:1 10542:1 10562:1 10576:1 10579:1 10580:1 10581:1 10582:1 10590:1 10593:5 10597:2 10613:1 10634:1 10648:1 10662:1 10704:2 10714:1 10734:1 10736:1 10742:1 10751:2 10759:1 10766:1 10768:9 10780:3 10784:1 10794:1 10799:1 10801:1 10817:1 10828:2 10861:1 10870:2 10873:1 10904:1 10929:1 10936:1 10937:1 10941:2 10944:1 10946:1 10949:1 10956:1 10957:2 10962:2 10972:1 10974:1 10983:1 11042:1 11049:4 11061:1 11067:1 11068:2 11073:2 11082:1 11085:2 11109:1 11171:1 11184:2 11203:2 11210:1 11212:7 11220:2 11229:1 11230:1 11248:1 11250:1 11251:1 11255:1 11264:1 11269:2 11271:1 11281:1 11303:1 11310:5 11311:1 11316:2 11320:2 11322:1 11351:1 11356:2 11367:1 11396:1 11442:1 11444:4 11446:1 11489:1 11508:1 11546:2 11554:1 11577:1 11583:1 11593:3 11595:2 11606:1 11615:1 11631:1 11636:1 11644:1 11666:3 11667:14 11670:1 11673:1 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:3 11797:1 11799:1 11802:2 11811:1 11822:2 11834:2 11836:2 11847:1 11852:5 11878:3 11906:2 11907:2 11932:1 11942:1 11968:1 11977:1 11983:1 12004:1 12015:1 12017:2 12034:1 12035:1 12055:2 12059:1 12065:3 12083:3 12101:1 12115:1 12116:3 12117:3 12119:2 12140:1 12141:2 12154:1 12173:1 12191:1 12192:1 12198:1 12202:29 12206:1 12209:1 12215:1 12226:6 12229:15 12237:1 12244:1 12255:1 12295:3 12296:1 12344:1 12364:1 12370:3 12381:1 12383:1 12392:1 12420:1 12431:1 12440:1 12469:1 12515:3 12518:4 12529:1 12543:1 12551:1 12553:1 12559:1 12566:10 12567:2 12590:1 12592:1 12593:2 12606:1 12628:1 12633:1 12653:1 12673:1 12682:1 12693:2 12723:1 12754:2 12783:5 12791:3 12814:4 12823:1 12839:1 12850:1 12852:2 12874:2 12880:1 12887:1 12895:1 12904:1 12919:1 12938:11 12966:1 12970:1 12985:2 12986:1 13013:2 13047:1 13060:1 13067:1 13070:1 13071:1 13084:1 13086:2 13107:1 13124:1 13129:2 13175:1 13177:3 13186:1 13187:1 13209:1 13211:1 13221:3 13229:1 13240:2 13267:2 13270:2 13279:1 13289:1 13293:1 13296:1 13298:1 13309:1 13321:1 13324:1 13334:2 13346:1 13362:1 13363:1 13379:1 13384:1 13387:1 13392:1 13405:1 13412:2 13414:2 13417:2 13419:1 13459:1 13471:1 13484:3 13489:1 13505:3 13506:1 13526:4 13529:1 13547:1 13552:1 13553:1 13557:2 13562:1 13572:1 13573:2 13577:1 13579:3 13580:1 13581:2 13582:3 13593:1 13597:2 13599:1 13606:2 13609:2 13619:1 13620:1 13632:1 13644:1 13646:1 13661:2 13672:1 13674:1 13683:1 13703:3 13711:1 13715:13 13724:1 13728:2 13756:2 13786:2 13826:3 13846:1 13851:1 13852:1 13854:1 13855:1 13861:1 13874:1 13881:1 13935:1 13943:1 13971:1 13972:1 13978:1 13982:1 13984:1 13986:2 13995:1 13999:2 14007:1 14041:1 14061:1 14082:1 14091:3 14093:2 14096:3 14100:1 14101:2 14104:3 14114:1 14134:1 14137:1 14139:4 14152:1 14172:1 14176:2 14184:1 14193:2 14241:4 14280:2 14281:1 14283:1 14290:1 14311:1 14312:1 14336:1 14360:1 14364:1 14391:1 14396:1 14429:1 14440:1 14457:3 14474:2 14475:2 14484:1 14488:1 14492:2 14493:1 14519:1 14531:3 14555:1 14561:4 14586:1 14591:1 14595:1 14604:1 14612:1 14622:1 14641:1 14643:1 14658:1 14673:2 14675:1 14694:1 14719:1 14720:1 14767:1 14768:3 14777:1 14781:1 14784:1 14795:1 14809:3 14836:1 14872:2 14902:1 14904:1 14907:1 14913:1 14924:1 14926:2 14929:1 14953:1 14955:3 14970:1 14973:1 14975:1 14982:1 15016:1 15018:1 15039:5 15113:14 15121:1 15141:1 15148:1 15151:1 15161:2 15162:3 15164:1 15167:1 15189:3 15193:1 15204:1 15205:2 15215:1 15217:2 15227:3 15233:1 15235:1 15266:2 15280:1 15281:2 15291:1 15295:1 15324:1 15330:1 15337:11 15344:1 15348:1 15370:1 15401:1 15408:1 15413:1 15441:4 15444:2 15459:2 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15499:1 15511:1 15597:1 15600:1 15601:3 15621:1 15622:1 15660:5 15661:1 15664:1 15671:1 15675:2 15678:2 15680:1 15682:1 15689:1 15698:1 15708:2 15714:1 15718:1 15723:1 15732:1 15744:1 15750:1 15757:1 15759:1 15764:1 15766:3 15772:1 15774:1 15776:1 15825:1 15829:3 15830:1 15840:1 15852:2 15877:1 15878:2 15892:2 15909:1 15932:2 15967:1 15980:1 15981:2 15986:1 16035:8 16037:1 16038:4 16046:1 16048:1 16050:1 16066:1 16080:1 16098:1 16107:1 16109:1 16133:3 16172:2 16178:1 16190:2 16197:1 16199:1 16236:1 16246:1 16269:4 16282:1 16290:1 16297:2 16322:1 16338:1 16393:2 16410:3 16425:1 16428:1 16435:1 16438:1 16449:1 16460:1 16464:1 16468:1 16480:1 16505:2 16508:4 16512:2 16523:1 16527:1 16556:1 16557:1 16574:2 16589:2 16593:1 16602:3 16614:1 16615:5 16629:1 16636:3 16638:2 16640:2 16670:1 16674:1 16677:1 16703:1 16728:1 16735:1 16749:3 16763:2 16774:2 16782:5 16862:1 16865:1 16870:4 16872:3 16881:1 16911:1 16930:1 16937:1 16938:2 16939:1 16940:1 16954:1 16975:1 16990:1 16992:3 17009:1 17020:1 17033:3 17046:4 17048:1 17059:1 17089:1 17099:1 17102:1 17109:1 17128:2 17151:1 17160:2 17162:1 17164:4 17175:1 17185:1 17186:1 17187:4 17208:3 17211:4 17222:2 17281:2 17283:1 17284:1 17311:2 17324:3 17338:1 17347:1 17377:2 17389:4 17424:1 17437:2 17442:2 17457:1 17465:2 17486:1 17501:1 17528:1 17530:1 17541:1 17543:1 17545:1 17546:2 17568:1 17577:1 17618:1 17623:1 17632:1 17634:1 17670:2 17707:3 17709:1 17741:1 17744:1 17770:1 17785:1 17794:3 17811:1 17821:2 17824:1 17841:1 17851:1 17853:4 17857:1 17862:1 17865:2 17894:1 17908:1 17927:1 17935:1 17939:2 17941:1 17945:1 17966:1 17983:1 17986:1 17995:2 18004:1 18011:1 18025:4 18031:1 18032:1 18047:1 18064:1 18078:1 18090:3 18104:2 18123:1 18133:3 18134:1 18138:2 18205:1 18209:3 18230:3 18240:3 18241:1 18257:1 18265:1 18266:1 18272:6 18275:1 18280:4 18281:1 18287:1 18292:1 18293:4 18303:1 18322:1 18334:3 18345:1 18368:2 18385:4 18391:1 18397:1 18399:2 18463:1 18470:1 18472:1 18482:1 18491:4 18509:2 18513:1 18514:1 18542:1 18547:1 18574:1 18586:1 18592:1 18623:1 18646:1 18679:2 18703:4 18705:2 18722:2 18723:1 18724:4 18725:3 18729:1 18735:2 18739:1 18766:1 18815:2 18833:1 18856:1 18875:1 18883:2 18900:1 18906:2 18922:1 18929:2 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18974:1 18993:1 19004:3 19005:3 19007:14 19017:4 19052:1 19066:1 19089:2 19111:1 19164:1 19195:1 19207:1 19236:1 19240:1 19252:1 19260:5 19262:2 19271:1 19282:1 19290:1 19299:1 19310:1 19319:1 19391:2 19397:3 19404:1 19430:1 19439:1 19456:1 19476:2 19481:1 19492:1 19496:1 19498:2 19502:1 19597:2 19604:2 19631:3 19636:1 19640:1 19647:7 19653:1 19663:1 19697:1 19707:1 19712:2 19734:1 19754:1 19776:1 19790:13 19791:1 19794:3 19796:1 19834:1 19843:1 19936:6 19952:1 19959:1 19963:1 19970:2 19974:2 19977:3 19978:1 20022:2 20023:3 20026:1 20032:1 20038:1 20041:1 20046:1 20055:1 20056:1 20062:1 20071:1 20075:1 20079:1 20106:2 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:2 20237:1 20255:1 20284:1 20285:2 20299:1 20311:1 20325:1 20351:1 20353:1 20378:1 20392:1 20413:1 20414:1 20420:1 20438:3 20511:4 20522:1 20536:1 20572:1 20587:1 20590:2 20591:1 20638:3 20648:1 20653:3 20678:1 20681:1 20696:1 20703:1 20724:2 20740:1 20741:1 20747:2 20754:1 20767:1 20770:2 20793:1 20794:1 20802:1 20819:1 20842:1 20852:1 20859:2 20863:2 20916:1 20918:1 20924:1 20940:1 20941:2 20944:4 20955:1 20956:2 20961:1 20976:1 20987:2 21013:1 21014:1 21015:1 21018:1 21022:1 21029:3 21035:1 21040:2 21061:1 21075:1 21096:1 21099:5 21102:1 21104:1 21108:19 21109:2 21110:2 21113:2 21119:3 21121:1 21125:1 21128:1 21143:1 21145:1 21169:1 21171:9 21173:1 21201:2 21205:1 21221:2 21222:1 21223:1 21224:1 21242:1 21243:3 21262:1 21276:1 21292:3 21315:1 21320:1 21321:1 21324:2 21333:3 21338:1 21340:1 21361:1 21373:2 21374:1 21375:2 21381:1 21384:1 21391:4 21406:2 21413:2 21415:1 21441:1 21459:2 21460:2 21470:2 21530:1 21535:1 21536:1 21537:1 21538:2 21539:1 21540:1 21543:1 21575:1 21588:1 21603:1 21609:1 21611:1 21622:1 21634:2 21635:1 21639:1 21640:1 21641:1 21647:1 21668:1 21669:1 21703:1 21704:1 21711:5 21722:1 21778:2 21779:1 21782:4 21786:1 21795:1 21804:1 21826:1 21831:1 21835:1 21837:1 21843:1 21845:1 21866:1 21880:2 21881:1 21889:3 21894:3 21907:3 21930:1 21955:1 21966:1 21970:1 21985:1 21988:2 21990:2 21997:4 21998:2 22010:1 22017:3 22021:5 22024:1 22025:1 22048:1 22067:3 22071:2 22090:1 22107:1 22108:1 22116:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:1 22183:1 22190:1 22194:2 22255:3 22269:1 22276:1 22347:2 22349:2 22352:1 22360:2 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22550:1 22584:1 22636:1 22648:1 22649:1 22651:3 22662:1 22666:1 22672:3 22674:1 22675:1 22688:1 22709:2 22725:2 22765:1 22783:1 22787:1 22794:1 22796:3 22829:1 22840:1 22877:1 22880:1 22897:1 22901:2 22907:1 22911:1 22938:1 22956:1 22964:1 22975:1 22977:1 22983:1 22985:6 22988:1 22997:1 23003:2 23018:2 23034:1 23081:1 23114:1 23119:1 23142:4 23160:1 23188:2 23258:1 23263:1 23274:1 23284:1 23286:3 23301:1 23345:1 23348:1 23359:1 23370:1 23371:1 23376:1 23400:1 23426:1 23444:1 23466:2 23468:1 23496:3 23504:2
16 1:1 3:1 5:1 7:1 26:1 33:1 51:1 64:1 82:1 110:2 119:3 126:1 138:1 154:1 164:4 165:1 171:1 193:1 204:1 224:1 229:1 262:1 279:1 280:1 286:1 296:1 317:1 384:1 403:1 406:1 413:3 416:2 428:1 440:4 463:4 464:1 467:1 470:1 471:1 507:3 511:1 514:1 516:1 527:1 539:3 564:1 568:1 584:1 596:1 606:2 607:1 608:2 613:1 626:3 643:1 646:2 652:1 665:1 710:1 732:2 735:3 739:1 744:1 759:1 786:1 791:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:1 855:1 860:2 886:6 896:1 898:1 902:4 904:1 910:1 914:1 947:2 962:1 967:2 993:1 996:3 1010:3 1048:2 1049:1 1060:1 1071:4 1078:1 1086:1 1098:1 1113:1 1115:2 1118:1 1120:1 1131:4 1133:1 1145:1 1148:1 1160:1 1162:1 1172:1 1188:1 1190:3 1191:1 1194:1 1195:5 1196:1 1203:1 1207:1 1208:1 1236:2 1242:4 1268:2 1291:1 1292:1 1298:1 1325:1 1348:1 1366:2 1376:1 1382:1 1384:1 1391:2 1399:3 1417:1 1425:1 1450:2 1451:1 1488:1 1494:2 1537:2 1564:2 1573:3 1574:1 1579:1 1580:3 1581:2 1612:1 1628:6 1647:3 1648:2 1649:2 1671:1 1672:1 1679:2 1682:1 1683:1 1686:1 1714:1 1738:1 1752:14 1789:1 1792:1 1794:1 1802:2 1809:1 1829:2 1841:1 1844:1 1857:39 1869:1 1890:3 1930:3 1935:1 1943:1 1965:1 1977:2 1978:1 1982:2 2001:1 2003:4 2023:1 2027:1 2034:1 2042:1 2044:1 2045:3 2047:1 2053:2 2057:1 2063:3 2087:1 2095:1 2103:1 2105:1 2109:3 2112:1 2123:2 2124:2 2142:1 2145:1 2150:1 2156:1 2158:1 2182:2 2191:1 2192:1 2231:1 2234:1 2236:1 2288:1 2297:1 2301:1 2310:5 2343:3 2354:1 2358:1 2367:2 2368:1 2384:1 2402:1 2414:1 2435:1 2447:5 2450:1 2469:1 2479:2 2481:1 2483:2 2484:1 2494:1 2512:3 2547:1 2554:3 2562:1 2573:1 2581:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:1 2639:2 2642:1 2643:1 2658:3 2667:3 2671:2 2685:1 2701:1 2702:1 2705:3 2708:3 2716:1 2718:1 2740:1 2746:1 2763:1 2764:1 2773:3 2778:1 2779:1 2781:1 2793:2 2795:1 2798:1 2801:1 2810:2 2816:2 2840:3 2870:1 2878:1 2892:1 2895:2 2896:1 2902:1 2904:1 2914:1 2921:1 2926:1 2927:1 2936:1 2942:1 2954:1 2966:8 2970:1 2979:1 2986:1 3004:1 3012:1 3014:1 3023:1 3033:1 3035:4 3048:1 3052:1 3066:2 3070:2 3084:1 3098:1 3136:1 3141:1 3153:1 3161:1 3168:2 3172:2 3177:3 3178:1 3186:1 3218:1 3219:1 3221:1 3223:3 3229:2 3234:1 3237:2 3240:1 3242:1 3255:1 3264:3 3268:1 3272:2 3274:1 3293:1 3302:1 3314:2 3316:2 3345:3 3409:1 3462:1 3473:1 3519:1 3538:1 3540:1 3541:2 3542:1 3545:2 3546:3 3552:1 3553:1 3554:2 3555:1 3556:1 3559:5 3560:1 3562:2 3564:1 3567:1 3573:4 3575:3 3576:5 3590:1 3606:1 3622:1 3642:1 3644:1 3652:1 3661:1 3673:1 3686:1 3694:1 3698:1 3701:1 3703:1 3705:1 3706:3 3726:1 3740:1 3746:1 3752:3 3759:1 3761:1 3792:1 3812:1 3819:1 3827:1 3854:2 3860:3 3865:1 3871:1 3892:4 3906:2 3946:1 3951:1 3952:1 3974:1 3990:1 4004:1 4006:1 4027:3 4030:1 4034:1 4038:1 4050:1 4052:2 4058:1 4059:1 4083:1 4089:1 4105:1 4117:2 4127:1 4150:1 4182:1 4183:2 4184:2 4208:4 4219:1 4226:3 4243:1 4244:1 4257:1 4260:1 4262:5 4281:1 4296:2 4311:1 4317:1 4323:1 4335:2 4338:3 4342:1 4343:1 4358:1 4380:1 4386:1 4393:1 4413:1 4414:1 4417:4 4424:1 4427:2 4473:1 4480:1 4481:2 4488:2 4490:1 4511:4 4513:8 4516:1 4533:1 4540:1 4560:1 4561:8 4577:7 4589:1 4616:2 4631:1 4632:1 4650:19 4658:1 4671:1 4675:1 4699:1 4705:1 4714:1 4735:1 4746:1 4760:1 4781:1 4786:1 4807:2 4818:1 4837:2 4844:4 4932:3 4966:1 5034:2 5038:1 5060:1 5084:4 5092:1 5112:1 5120:7 5132:1 5139:1 5144:2 5159:1 5161:2 5170:1 5175:1 5183:1 5199:1 5226:1 5227:2 5234:1 5253:4 5279:1 5297:1 5310:1 5341:1 5344:1 5352:1 5353:3 5365:1 5366:1 5383:3 5388:1 5390:1 5398:3 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5459:1 5467:1 5480:3 5517:1 5521:2 5542:1 5543:1 5560:3 5565:1 5601:1 5619:1 5621:3 5623:1 5627:1 5632:1 5633:1 5659:1 5661:7 5668:1 5677:1 5690:1 5710:1 5732:1 5748:3 5762:1 5779:1 5780:1 5805:1 5809:1 5816:1 5817:27 5820:2 5851:2 5853:1 5855:6 5858:1 5861:1 5870:14 5871:1 5872:2 5873:1 5876:3 5896:1 5898:2 5919:3 5932:1 5934:2 5939:2 5947:1 5953:3 5957:2 5961:1 5963:1 5967:2 5994:2 6005:3 6014:2 6017:1 6025:1 6055:1 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6101:2516 6102:1 6107:1 6117:1 6133:1 6140:4 6149:2 6165:1 6179:1 6180:1 6183:1 6184:1 6195:1 6198:1 6201:1 6205:1 6210:3 6220:1 6232:1 6233:3 6253:1 6273:3 6289:1 6313:1 6349:3 6376:2 6399:1 6401:1 6407:1 6448:3 6450:1 6458:1 6463:1 6471:1 6480:1 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6547:1 6559:1 6576:1 6577:1 6581:1 6590:1 6640:1 6644:3 6666:1 6698:1 6705:8 6715:2 6725:1 6748:2 6750:1 6777:1 6782:1 6784:1 6787:1 6792:4 6798:1 6802:2 6817:1 6830:3 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6880:1 6888:1 6936:1 6956:2 6962:1 6974:2 6975:1 6981:4 7006:1 7050:1 7080:1 7097:2 7104:1 7110:2 7124:1 7134:2 7137:1 7139:1 7153:1 7157:2 7167:1 7203:2 7208:1 7238:1 7276:1 7319:1 7320:1 7337:1 7340:1 7348:2 7349:1 7363:2 7376:1 7377:3 7383:2 7397:2 7405:1 7408:3 7415:1 7450:1 7452:1 7474:1 7476:10 7488:1 7507:11 7508:1 7520:1 7523:11 7555:1 7581:1 7582:3 7591:1 7614:1 7632:1 7635:1 7638:3 7649:1 7663:1 7670:3 7671:1 7680:1 7684:1 7686:1 7689:1 7693:2 7694:1 7696:3 7702:1 7719:2 7730:1 7732:2 7733:5 7734:1 7736:1 7740:2 7750:14 7751:1 7753:1 7758:1 7762:2 7765:3 7782:1 7788:2 7811:1 7814:1 7817:2 7823:3 7871:1 7883:1 7887:1 7922:1 7935:1 7995:1 8003:1 8034:1 8065:1 8089:1 8091:8 8096:3 8097:3 8107:1 8108:5 8168:1 8187:1 8209:1 8222:2 8224:1 8225:14 8231:1 8234:5 8254:1 8270:1 8298:1 8301:1 8325:1 8326:1 8351:1 8357:1 8361:1 8367:1 8372:1 8373:1 8385:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8490:2 8491:1 8510:1 8520:1 8522:1 8525:1 8537:1 8544:1 8555:1 8558:1 8573:1 8578:1 8579:1 8598:1 8599:1 8605:1 8609:1 8624:2 8634:1 8644:6 8679:1 8692:1 8709:1 8713:1 8719:1 8723:1 8746:1 8748:8 8755:1 8756:1 8757:1 8769:2 8771:2 8780:2 8789:1 8791:1 8796:1 8802:1 8831:9 8838:1 8856:1 8889:1 8894:1 8900:2 8903:1 8930:1 8937:2 8948:1 8957:1 8973:1 8976:1 8980:1 8985:1 9017:1 9024:1 9029:1 9031:1 9048:1 9053:2 9065:1 9069:1 9083:1 9089:3 9139:1 9158:2 9169:1 9180:2 9208:3 9215:1 9217:2 9218:1 9231:1 9253:1 9280:1 9285:1 9314:1 9370:1 9374:1 9393:1 9400:1 9402:4 9413:1 9416:2 9445:1 9477:1 9497:2 9528:1 9529:1 9536:1 9541:1 9547:1 9573:1 9578:1 9589:1 9598:3 9610:1 9611:1 9612:1 9617:1 9625:2 9626:2 9645:1 9687:3 9706:1 9707:2 9710:1 9721:2 9733:1 9740:1 9747:3 9749:1 9751:9 9769:1 9770:3 9777:1 9778:1 9779:1 9797:2 9799:1 9800:4 9809:1 9812:1 9848:3 9866:1 9901:1 9904:1 9905:1 9906:1 9908:1 9910:1 9912:1 9913:1 9917:2 9919:3 9920:2 9926:1 9929:4 9930:1 9932:1 9933:1 9940:2 9948:1 9950:1 9980:1 9986:2 9993:1 10018:6 10027:1 10032:2 10039:1 10050:1 10095:1 10125:1 10129:1 10147:2 10150:1 10158:1 10165:1 10173:1 10182:3 10183:1 10201:1 10207:1 10208:1 10212:1 10223:2 10224:1 10232:1 10277:1 10282:1 10288:1 10289:1 10350:1 10362:1 10373:1 10386:1 10392:2 10412:1 10420:1 10421:4 10424:2 10426:2 10442:3 10451:5 10454:1 10459:1 10463:3 10473:1 10488:1 10489:1 10510:2 10515:1 10520:1 10536:1 10542:1 10562:1 10576:1 10579:1 10580:1 10581:1 10582:1 10590:1 10593:5 10597:2 10613:1 10634:1 10648:1 10662:1 10704:2 10708:1 10714:1 10734:1 10736:1 10742:1 10751:2 10759:1 10766:2 10768:9 10780:3 10784:1 10794:1 10799:1 10801:1 10811:1 10817:1 10828:2 10861:1 10870:3 10873:1 10904:1 10929:1 10936:1 10937:1 10941:2 10944:1 10946:1 10949:1 10956:1 10957:2 10962:2 10972:1 10974:1 10983:1 11042:1 11049:4 11061:1 11067:1 11068:2 11073:2 11082:1 11085:2 11109:1 11171:1 11184:2 11203:2 11210:1 11212:7 11220:2 11229:1 11230:1 11234:1 11248:2 11250:1 11251:1 11252:1 11255:1 11264:1 11269:2 11271:1 11281:1 11303:1 11310:5 11311:2 11316:2 11320:2 11322:1 11351:1 11356:2 11367:1 11396:1 11442:1 11444:4 11446:1 11489:1 11508:1 11546:2 11554:1 11577:1 11583:1 11593:4 11595:2 11606:1 11615:1 11631:1 11636:1 11644:1 11666:3 11667:14 11670:1 11673:1 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:3 11797:1 11799:2 11802:2 11811:1 11822:2 11834:2 11836:2 11847:1 11852:5 11878:3 11906:2 11907:2 11932:1 11942:1 11968:1 11977:1 11983:1 12004:1 12015:1 12017:2 12034:1 12035:1 12055:2 12059:1 12060:1 12065:3 12083:4 12101:1 12115:2 12116:4 12117:3 12119:2 12140:1 12141:2 12154:1 12173:1 12191:1 12192:1 12198:1 12202:30 12206:1 12209:1 12215:1 12226:7 12229:15 12237:1 12244:1 12255:1 12264:1 12295:3 12296:1 12344:1 12364:1 12370:3 12378:1 12381:1 12383:1 12392:1 12420:1 12431:2 12440:1 12469:1 12515:3 12518:5 12529:1 12543:1 12551:1 12553:1 12559:1 12566:10 12567:2 12590:1 12592:1 12593:3 12606:1 12628:1 12633:1 12653:1 12673:1 12682:1 12693:2 12723:1 12754:2 12783:5 12791:3 12814:5 12823:1 12839:1 12850:1 12852:2 12874:2 12879:1 12880:1 12887:1 12895:1 12904:1 12919:1 12938:12 12966:1 12970:1 12985:2 12986:1 13013:2 13047:1 13060:1 13067:1 13070:1 13071:1 13084:1 13086:2 13107:1 13124:1 13129:2 13175:1 13177:3 13186:1 13187:1 13209:1 13211:1 13221:3 13225:1 13229:1 13240:3 13253:1 13267:2 13270:2 13279:1 13289:1 13293:2 13296:1 13298:1 13309:1 13321:1 13324:2 13334:2 13346:1 13362:1 13363:2 13379:1 13384:1 13387:1 13392:1 13405:1 13412:2 13414:2 13417:2 13419:1 13459:1 13471:1 13484:3 13489:1 13505:3 13506:1 13526:5 13529:1 13542:1 13547:1 13552:1 13553:2 13557:2 13562:1 13572:1 13573:2 13577:1 13579:3 13580:1 13581:2 13582:3 13593:1 13597:2 13599:1 13606:2 13609:2 13619:2 13620:1 13632:1 13644:1 13646:1 13661:2 13672:1 13674:1 13683:1 13703:3 13711:1 13715:14 13724:1 13728:2 13756:2 13786:4 13826:3 13832:1 13846:1 13851:1 13852:1 13854:1 13855:1 13861:1 13874:1 13881:1 13935:1 13943:1 13971:1 13972:1 13978:1 13982:1 13984:1 13986:2 13995:1 13999:2 14007:1 14041:1 14061:1 14082:1 14091:3 14093:2 14096:3 14100:1 14101:2 14104:3 14114:2 14134:1 14137:1 14139:4 14152:1 14172:1 14176:2 14184:1 14193:2 14241:4 14280:2 14281:1 14283:1 14290:1 14311:2 14312:1 14336:1 14360:1 14364:1 14391:1 14396:1 14429:1 14440:1 14457:3 14474:2 14475:3 14484:1 14488:1 14490:1 14492:2 14493:1 14512:1 14519:1 14531:3 14555:1 14561:5 14586:1 14591:1 14595:1 14604:1 14612:1 14622:1 14641:1 14643:1 14656:1 14658:1 14673:2 14675:1 14694:1 14703:1 14719:1 14720:1 14767:1 14768:3 14777:1 14781:1 14784:1 14795:1 14809:3 14836:1 14872:2 14902:1 14904:1 14907:1 14913:1 14924:1 14926:2 14929:1 14953:1 14955:3 14970:1 14973:1 14975:1 14982:1 14986:1 15016:1 15018:1 15039:5 15113:14 15121:1 15141:1 15148:1 15151:1 15161:2 15162:4 15164:1 15167:1 15189:3 15193:1 15204:1 15205:2 15215:1 15217:2 15227:3 15233:1 15235:1 15266:2 15280:1 15281:2 15291:1 15295:1 15324:1 15330:2 15337:11 15344:1 15348:1 15370:1 15377:1 15401:1 15408:1 15413:1 15441:4 15444:4 15459:2 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15499:1 15511:1 15528:1 15597:1 15600:1 15601:3 15621:1 15622:1 15660:5 15661:1 15664:1 15671:1 15675:2 15678:3 15680:1 15682:1 15689:1 15698:1 15708:2 15714:1 15718:1 15723:1 15732:1 15744:1 15750:1 15757:1 15759:1 15764:1 15766:3 15772:1 15774:1 15776:1 15825:1 15829:3 15830:1 15840:1 15852:2 15877:1 15878:2 15892:2 15909:1 15932:4 15967:1 15980:1 15981:2 15986:1 16035:8 16037:1 16038:4 16046:1 16048:1 16050:1 16066:1 16080:1 16098:2 16107:1 16109:1 16133:3 16172:2 16178:1 16190:2 16197:1 16199:1 16236:1 16246:1 16269:4 16282:1 16290:1 16297:2 16322:1 16338:1 16393:2 16410:3 16425:1 16428:1 16435:1 16438:1 16449:1 16460:1 16464:1 16468:1 16480:1 16505:2 16508:4 16512:3 16523:1 16527:1 16556:1 16557:1 16574:2 16589:2 16593:2 16602:3 16614:1 16615:5 16629:1 16636:3 16638:2 16640:3 16670:1 16674:1 16677:1 16703:1 16728:1 16729:1 16735:1 16749:4 16763:2 16774:2 16782:5 16862:1 16865:1 16869:1 16870:4 16872:3 16881:1 16911:1 16930:1 16937:2 16938:2 16939:1 16940:1 16954:1 16975:1 16990:1 16992:4 17009:1 17020:1 17033:3 17046:4 17048:1 17059:1 17089:1 17099:1 17102:1 17109:1 17128:2 17151:1 17160:2 17162:1 17164:5 17175:1 17185:1 17186:1 17187:5 17208:3 17211:4 17222:2 17281:3 17283:1 17284:1 17311:2 17324:3 17336:1 17338:1 17347:1 17377:2 17389:4 17424:1 17437:2 17442:2 17457:1 17465:2 17486:1 17501:1 17528:1 17530:1 17541:1 17543:1 17545:1 17546:3 17568:1 17577:1 17618:1 17623:1 17632:1 17634:1 17667:1 17670:2 17707:3 17709:2 17741:1 17744:1 17770:1 17785:1 17794:3 17811:1 17821:2 17824:1 17841:1 17851:1 17853:5 17857:1 17862:1 17865:2 17894:1 17908:1 17927:1 17935:1 17939:2 17941:1 17945:1 17966:1 17983:1 17986:1 17995:2 18004:1 18011:1 18025:5 18031:1 18032:1 18037:1 18047:1 18064:1 18078:1 18090:3 18104:2 18123:1 18133:3 18134:1 18138:2 18205:1 18206:1 18209:3 18230:3 18240:4 18241:1 18257:1 18265:1 18266:1 18272:7 18275:1 18280:5 18281:1 18287:1 18292:1 18293:5 18303:1 18322:1 18334:4 18345:1 18368:2 18385:4 18391:1 18397:1 18399:2 18463:1 18470:1 18472:1 18482:1 18491:4 18509:3 18513:1 18514:1 18542:1 18547:1 18574:1 18586:1 18592:1 18623:1 18628:1 18646:1 18679:2 18703:5 18705:2 18722:2 18723:1 18724:4 18725:4 18729:1 18735:2 18739:1 18766:1 18815:2 18833:1 18855:1 18856:1 18875:1 18883:2 18896:1 18900:1 18906:2 18922:1 18929:2 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18974:1 18993:1 19004:3 19005:3 19007:14 19017:4 19052:1 19066:1 19089:2 19111:1 19164:1 19195:1 19207:1 19236:1 19240:1 19252:1 19260:5 19262:2 19271:1 19282:1 19290:1 19299:2 19310:1 19319:1 19357:1 19361:1 19391:2 19397:3 19404:1 19430:1 19439:1 19456:1 19476:2 19481:1 19492:1 19496:1 19498:2 19502:1 19595:1 19597:2 19604:3 19631:3 19636:1 19640:1 19647:8 19653:1 19663:1 19697:1 19707:1 19712:2 19734:1 19754:1 19776:1 19790:14 19791:1 19794:3 19796:1 19834:1 19843:1 19936:6 19952:1 19959:1 19963:1 19970:2 19974:2 19977:3 19978:1 20022:2 20023:3 20026:1 20032:2 20038:1 20041:1 20046:1 20055:1 20056:1 20062:1 20071:1 20075:1 20079:1 20106:2 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:2 20237:1 20255:1 20263:1 20284:1 20285:2 20291:1 20299:1 20311:1 20325:1 20351:1 20353:1 20378:1 20392:1 20413:1 20414:1 20420:1 20438:3 20511:5 20522:1 20536:1 20550:1 20572:1 20587:1 20590:2 20591:1 20638:3 20648:1 20653:3 20656:1 20678:1 20681:1 20696:1 20703:1 20724:2 20740:1 20741:1 20747:2 20754:1 20767:1 20770:3 20777:1 20793:1 20794:1 20802:1 20819:1 20842:1 20852:1 20853:1 20859:2 20863:4 20916:1 20918:1 20924:1 20940:1 20941:2 20944:5 20955:1 20956:2 20961:1 20976:1 20987:2 21013:1 21014:1 21015:1 21018:1 21022:1 21029:3 21035:1 21040:2 21061:1 21075:1 21096:1 21099:6 21102:1 21104:1 21108:19 21109:2 21110:2 21113:2 21119:3 21121:1 21125:1 21128:1 21143:1 21145:1 21169:1 21171:9 21173:1 21201:2 21205:1 21221:2 21222:1 21223:1 21224:1 21242:1 21243:3 21262:1 21276:1 21292:3 21315:1 21320:1 21321:1 21324:2 21333:3 21338:1 21340:1 21361:1 21373:2 21374:1 21375:2 21381:1 21384:1 21391:4 21403:1 21406:4 21413:2 21415:1 21441:1 21459:2 21460:3 21470:2 21514:1 21530:1 21535:1 21536:1 21537:1 21538:2 21539:1 21540:1 21543:1 21575:1 21588:1 21603:1 21609:1 21611:1 21622:1 21634:2 21635:1 21639:1 21640:1 21641:1 21647:1 21668:1 21669:1 21703:1 21704:1 21711:6 21722:1 21778:2 21779:1 21782:4 21786:1 21795:1 21804:1 21826:1 21831:1 21835:1 21837:1 21843:1 21845:1 21866:1 21880:2 21881:1 21889:3 21894:3 21907:3 21930:1 21955:1 21966:1 21970:1 21985:1 21988:2 21990:2 21997:4 21998:2 22010:1 22017:3 22021:6 22024:1 22025:1 22037:1 22048:1 22067:3 22071:2 22090:1 22107:1 22108:1 22116:1 22126:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:1 22183:1 22190:1 22194:2 22255:3 22269:1 22276:1 22347:2 22349:2 22352:1 22360:4 22372:1 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22550:1 22584:1 22636:1 22648:1 22649:1 22651:4 22662:1 22666:1 22672:3 22674:1 22675:1 22688:1 22709:2 22725:2 22765:1 22783:2 22787:1 22794:1 22796:3 22829:1 22840:1 22849:1 22877:1 22880:1 22897:1 22901:2 22907:1 22911:1 22938:1 22956:1 22964:1 22975:1 22977:1 22983:1 22985:6 22988:1 22997:1 23003:4 23018:2 23034:1 23076:1 23081:1 23114:1 23119:1 23142:4 23160:1 23188:3 23258:1 23263:1 23274:1 23284:1 23286:3 23301:1 23345:1 23348:1 23359:1 23369:1 23370:1 23371:1 23376:1 23400:2 23426:1 23444:1 23466:2 23468:1 23496:3 23504:2
16 1:1 3:1 5:1 7:1 26:1 33:1 51:1 64:1 82:1 110:2 119:3 126:1 138:1 154:1 161:1 164:4 165:1 171:1 193:1 204:1 224:1 229:1 262:1 279:1 280:1 286:1 296:1 317:1 344:1 384:1 403:1 406:1 413:3 416:2 428:1 440:4 463:4 464:1 467:1 470:1 471:1 507:3 511:1 514:1 516:1 527:1 539:3 564:1 568:1 578:1 584:1 596:1 606:2 607:1 608:2 613:1 626:3 640:1 643:1 646:2 652:1 657:1 665:1 710:1 719:1 732:2 735:3 739:1 744:1 759:1 786:1 791:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:1 855:1 860:2 886:7 896:1 898:1 902:5 904:1 910:1 914:1 947:2 962:1 967:2 993:1 996:3 1010:3 1032:1 1048:2 1049:1 1060:1 1071:4 1078:1 1086:1 1098:1 1113:1 1115:2 1117:1 1118:1 1120:1 1131:4 1133:1 1145:1 1148:1 1160:1 1162:1 1172:1 1188:1 1190:3 1191:1 1194:1 1195:5 1196:1 1203:1 1207:1 1208:1 1236:3 1242:4 1268:2 1291:1 1292:1 1298:1 1316:1 1325:1 1348:1 1363:1 1366:2 1376:1 1382:2 1384:1 1391:2 1399:3 1417:1 1425:1 1450:2 1451:1 1488:2 1494:2 1526:1 1537:2 1544:2 1564:2 1573:3 1574:1 1579:1 1580:4 1581:2 1612:1 1616:1 1628:7 1647:3 1648:2 1649:2 1671:1 1672:1 1679:2 1682:1 1683:1 1686:1 1714:1 1737:2 1738:1 1752:14 1789:1 1792:1 1794:1 1802:5 1809:1 1829:2 1841:1 1844:1 1857:40 1869:1 1890:3 1930:3 1935:1 1943:1 1965:1 1977:2 1978:1 1981:1 1982:2 2001:1 2003:4 2023:1 2027:1 2034:1 2042:1 2044:1 2045:3 2047:1 2053:2 2057:1 2063:3 2087:1 2095:1 2103:1 2105:1 2109:3 2112:1 2123:2 2124:2 2142:1 2145:1 2150:1 2156:1 2158:1 2174:1 2182:2 2191:1 2192:1 2231:1 2234:1 2236:1 2288:1 2297:1 2301:1 2310:5 2343:3 2354:1 2358:1 2367:2 2368:1 2379:1 2384:1 2402:1 2414:3 2435:1 2447:5 2450:1 2469:2 2479:2 2481:1 2483:2 2484:1 2494:1 2512:3 2547:1 2554:3 2562:1 2573:1 2581:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:1 2639:2 2642:1 2643:1 2658:3 2667:3 2671:2 2685:1 2701:1 2702:1 2705:3 2708:3 2716:1 2718:1 2740:1 2746:1 2749:1 2763:1 2764:1 2773:3 2778:1 2779:1 2781:1 2793:2 2795:1 2798:1 2801:1 2810:2 2814:1 2816:3 2828:1 2840:3 2870:1 2878:1 2892:1 2895:2 2896:1 2899:1 2902:1 2904:1 2914:1 2921:1 2926:1 2927:1 2936:1 2942:1 2954:1 2966:9 2970:1 2979:1 2986:1 2990:1 3004:1 3012:1 3014:1 3023:1 3027:1 3033:1 3035:4 3048:1 3052:1 3066:2 3070:2 3084:1 3098:1 3136:1 3141:1 3153:1 3161:1 3168:2 3172:2 3177:3 3178:1 3186:1 3218:1 3219:1 3221:1 3223:3 3229:2 3234:1 3237:2 3240:1 3242:1 3255:1 3264:3 3268:1 3272:2 3274:1 3293:1 3302:1 3311:1 3314:2 3316:2 3345:3 3409:1 3462:1 3473:1 3519:1 3538:1 3540:1 3541:2 3542:1 3545:2 3546:3 3552:1 3553:1 3554:2 3555:1 3556:1 3559:5 3560:1 3562:2 3564:1 3567:1 3573:4 3575:3 3576:5 3590:1 3606:1 3622:1 3642:1 3644:1 3652:2 3661:1 3673:1 3686:1 3694:1 3698:1 3701:1 3703:2 3705:1 3706:3 3711:1 3726:1 3740:1 3746:1 3752:3 3759:1 3761:1 3786:1 3792:1 3812:1 3819:1 3827:1 3854:2 3860:3 3865:1 3871:1 3892:4 3906:2 3946:1 3951:1 3952:1 3974:1 3990:1 4004:1 4006:1 4010:1 4027:3 4030:1 4034:1 4038:1 4050:1 4052:2 4058:1 4059:1 4072:1 4083:1 4089:1 4104:1 4105:1 4117:2 4127:1 4150:1 4182:1 4183:2 4184:2 4208:4 4219:1 4226:3 4243:1 4244:1 4257:1 4260:2 4262:6 4281:1 4296:2 4311:1 4317:1 4323:1 4335:2 4338:3 4342:1 4343:1 4358:1 4380:1 4386:1 4393:2 4413:1 4414:1 4417:4 4424:1 4427:2 4473:1 4480:1 4481:2 4488:2 4490:1 4511:4 4513:8 4516:1 4533:1 4540:1 4560:1 4561:8 4577:7 4589:1 4616:2 4631:1 4632:1 4650:20 4658:1 4671:1 4675:1 4699:1 4702:1 4705:1 4714:1 4720:1 4730:1 4735:1 4746:1 4760:1 4781:1 4786:1 4807:2 4818:1 4837:2 4844:4 4845:1 4902:1 4932:3 4937:1 4966:1 5034:2 5038:1 5060:1 5084:4 5092:1 5112:1 5120:8 5130:1 5132:1 5139:1 5144:2 5159:1 5161:2 5170:1 5175:1 5183:1 5199:1 5226:1 5227:3 5234:1 5253:5 5279:1 5297:1 5310:1 5341:1 5344:1 5352:1 5353:3 5365:1 5366:1 5383:3 5388:1 5390:1 5398:3 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5459:1 5465:1 5467:1 5480:3 5517:1 5521:2 5542:1 5543:1 5560:3 5565:1 5601:1 5619:1 5621:3 5623:1 5627:1 5632:1 5633:1 5659:1 5661:7 5667:1 5668:1 5677:1 5690:1 5710:1 5732:1 5748:3 5762:1 5779:1 5780:1 5805:1 5809:1 5816:1 5817:27 5820:2 5851:2 5853:1 5855:6 5858:1 5861:1 5869:1 5870:14 5871:1 5872:2 5873:1 5876:3 5896:1 5898:2 5919:3 5932:1 5934:3 5939:2 5947:1 5953:3 5957:2 5961:1 5963:1 5967:2 5994:2 6005:3 6014:2 6017:1 6025:1 6055:1 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6101:2665 6102:1 6107:1 6117:1 6133:1 6140:4 6149:2 6165:1 6179:1 6180:1 6183:1 6184:1 6195:1 6198:1 6201:1 6205:1 6210:3 6220:1 6232:1 6233:3 6253:1 6273:3 6289:1 6313:1 6349:3 6376:2 6399:1 6401:1 6407:2 6448:3 6450:1 6458:1 6463:1 6471:1 6480:1 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6547:1 6559:1 6576:1 6577:1 6581:1 6590:1 6640:1 6644:3 6666:1 6698:1 6705:8 6715:2 6725:1 6748:2 6750:1 6777:1 6782:1 6784:1 6787:1 6792:4 6798:1 6802:2 6817:1 6830:3 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6880:1 6888:1 6936:1 6956:2 6962:1 6974:2 6975:1 6981:4 7006:1 7050:1 7080:1 7097:2 7104:1 7110:2 7124:1 7134:3 7137:1 7139:1 7153:1 7157:3 7167:1 7203:2 7208:1 7238:1 7276:1 7305:1 7319:1 7320:1 7337:1 7340:1 7348:2 7349:1 7363:2 7376:1 7377:3 7383:2 7397:2 7405:1 7408:3 7415:1 7450:1 7452:1 7474:1 7476:10 7488:1 7507:11 7508:1 7519:1 7520:1 7523:11 7539:1 7555:2 7581:1 7582:3 7591:1 7614:1 7632:1 7635:1 7638:3 7649:1 7663:1 7670:3 7671:1 7680:1 7684:2 7686:1 7689:1 7693:3 7694:1 7696:3 7702:1 7719:2 7722:1 7730:2 7732:2 7733:5 7734:1 7736:1 7740:2 7750:14 7751:1 7753:1 7758:1 7762:2 7765:3 7773:1 7782:1 7788:2 7794:1 7811:1 7814:1 7817:2 7823:3 7871:1 7883:1 7887:1 7922:1 7935:1 7948:1 7995:1 8003:1 8034:1 8065:1 8089:1 8091:9 8096:3 8097:3 8107:1 8108:5 8168:1 8187:1 8209:1 8222:2 8224:1 8225:14 8231:1 8234:5 8254:1 8270:1 8298:2 8301:1 8325:1 8326:1 8351:1 8357:1 8361:1 8367:1 8372:1 8373:1 8385:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8490:2 8491:1 8510:1 8520:1 8522:1 8525:1 8537:1 8544:1 8555:1 8558:1 8569:1 8573:1 8578:1 8579:1 8598:1 8599:1 8605:1 8609:1 8624:2 8634:2 8644:6 8679:1 8684:1 8692:1 8709:1 8713:2 8719:1 8723:1 8746:1 8748:9 8755:1 8756:1 8757:1 8769:2 8771:2 8780:2 8789:1 8791:1 8796:1 8802:1 8831:9 8838:1 8856:1 8889:1 8894:1 8900:3 8903:1 8930:1 8937:2 8948:1 8957:1 8970:1 8973:1 8976:1 8980:1 8985:1 9017:1 9024:1 9029:1 9031:1 9048:1 9053:2 9065:1 9069:1 9083:1 9089:4 9091:1 9119:1 9139:1 9158:2 9169:1 9180:3 9208:3 9215:1 9217:3 9218:1 9231:1 9253:1 9280:1 9285:1 9314:2 9370:1 9374:1 9393:1 9400:1 9402:5 9413:1 9416:2 9445:1 9477:1 9497:2 9528:2 9529:1 9536:1 9541:1 9547:1 9573:1 9578:1 9589:1 9598:3 9610:1 9611:1 9612:1 9617:1 9625:2 9626:2 9645:1 9666:1 9687:3 9706:1 9707:2 9710:1 9721:2 9725:1 9733:1 9740:1 9747:3 9749:1 9751:9 9769:1 9770:3 9772:1 9777:1 9778:1 9779:1 9791:1 9797:2 9799:1 9800:4 9809:1 9812:1 9848:3 9866:1 9901:1 9904:1 9905:1 9906:1 9908:1 9910:1 9912:1 9913:2 9917:2 9918:1 9919:3 9920:2 9926:1 9929:4 9930:1 9932:1 9933:1 9940:2 9948:1 9950:1 9980:1 9986:2 9993:1 10018:6 10027:1 10032:2 10039:1 10050:1 10095:1 10105:1 10125:1 10129:1 10147:2 10150:1 10158:1 10165:1 10173:1 10182:3 10183:1 10193:1 10201:1 10207:1 10208:1 10212:1 10223:2 10224:1 10232:1 10277:1 10282:1 10288:1 10289:1 10350:1 10362:1 10373:1 10386:1 10392:2 10412:1 10420:1 10421:4 10424:2 10426:2 10442:3 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10510:2 10515:1 10520:1 10536:1 10542:1 10562:1 10576:1 10579:1 10580:1 10581:1 10582:1 10590:1 10593:5 10597:2 10613:1 10634:1 10648:1 10662:1 10704:2 10708:1 10714:1 10734:1 10736:1 10742:1 10751:2 10759:1 10766:2 10768:9 10780:3 10784:1 10793:1 10794:1 10799:1 10801:1 10811:1 10817:1 10828:2 10861:1 10870:3 10873:1 10881:1 10904:1 10929:1 10936:1 10937:1 10941:2 10944:1 10946:1 10949:1 10956:1 10957:2 10962:2 10972:1 10974:1 10983:1 11018:1 11042:1 11049:4 11061:1 11067:1 11068:2 11073:2 11082:1 11085:2 11109:1 11171:1 11184:2 11203:2 11210:1 11212:7 11220:2 11229:1 11230:1 11234:1 11248:2 11250:1 11251:1 11252:1 11255:1 11264:1 11269:2 11271:1 11281:1 11283:1 11303:1 11310:5 11311:2 11316:2 11320:2 11322:1 11351:1 11356:2 11367:1 11396:1 11442:1 11444:4 11446:1 11489:1 11508:1 11546:2 11554:1 11577:1 11583:1 11593:4 11595:2 11599:1 11606:1 11615:1 11631:1 11636:1 11644:1 11666:3 11667:14 11670:1 11673:1 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:3 11797:1 11799:2 11802:2 11811:1 11822:2 11834:2 11836:2 11847:1 11852:8 11878:3 11906:2 11907:2 11932:1 11942:1 11968:1 11977:1 11983:2 12004:1 12009:1 12015:1 12017:2 12034:1 12035:1 12055:2 12059:1 12060:1 12065:3 12083:5 12101:1 12115:2 12116:4 12117:3 12119:2 12140:1 12141:2 12143:2 12154:1 12173:1 12191:1 12192:1 12198:1 12202:30 12206:1 12209:1 12215:1 12226:7 12229:16 12237:1 12244:1 12255:1 12264:1 12295:3 12296:1 12344:1 12364:1 12370:3 12378:1 12381:1 12383:1 12392:1 12420:1 12431:2 12440:1 12469:1 12515:3 12518:5 12529:1 12543:1 12551:1 12553:1 12559:1 12566:11 12567:2 12590:1 12592:1 12593:3 12606:1 12628:1 12633:1 12653:1 12666:1 12673:1 12682:1 12691:1 12693:2 12703:1 12723:1 12754:3 12778:1 12783:5 12791:3 12814:5 12823:1 12839:1 12850:1 12852:2 12874:2 12879:1 12880:1 12887:1 12895:1 12904:1 12919:1 12921:1 12938:12 12966:1 12970:1 12985:2 12986:1 13013:2 13047:1 13060:1 13067:2 13070:1 13071:1 13084:2 13086:2 13107:1 13124:1 13129:2 13175:1 13177:3 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:1 13229:1 13240:3 13247:1 13253:1 13267:2 13270:2 13279:1 13289:1 13293:2 13296:1 13298:1 13309:1 13321:1 13324:2 13334:2 13346:1 13362:1 13363:2 13379:1 13384:1 13387:1 13392:1 13405:1 13412:2 13414:2 13417:3 13419:1 13459:1 13471:1 13484:3 13489:1 13505:3 13506:1 13526:5 13529:1 13542:1 13544:1 13547:1 13552:1 13553:2 13557:2 13562:1 13572:1 13573:2 13577:1 13579:3 13580:1 13581:2 13582:3 13587:1 13593:1 13597:2 13599:2 13606:2 13609:2 13619:2 13620:1 13632:1 13644:1 13646:1 13661:2 13672:1 13674:1 13683:1 13703:4 13711:1 13715:14 13724:1 13728:2 13756:2 13786:4 13826:3 13832:1 13846:1 13851:1 13852:1 13854:1 13855:1 13861:1 13874:1 13881:1 13935:2 13943:1 13971:1 13972:1 13978:1 13982:1 13984:1 13986:2 13995:1 13999:2 14007:1 14041:1 14061:1 14082:1 14091:3 14093:2 14096:3 14100:1 14101:2 14104:3 14114:2 14134:1 14137:1 14139:4 14152:1 14172:1 14176:2 14184:1 14193:2 14241:4 14280:2 14281:1 14283:1 14290:1 14311:2 14312:1 14336:1 14345:1 14360:1 14364:1 14391:1 14396:1 14429:1 14440:1 14457:3 14474:2 14475:3 14484:1 14488:1 14490:1 14492:2 14493:1 14512:1 14519:1 14529:1 14531:3 14548:1 14555:1 14561:5 14586:1 14591:1 14595:1 14604:1 14612:1 14622:1 14641:1 14643:1 14646:1 14656:1 14658:1 14673:3 14675:1 14694:1 14703:1 14719:1 14720:1 14767:1 14768:3 14775:1 14777:1 14781:1 14784:1 14794:1 14795:1 14809:3 14836:1 14870:1 14872:2 14902:1 14904:1 14907:1 14913:1 14924:1 14926:2 14929:1 14953:1 14955:3 14970:1 14973:1 14975:1 14982:1 14986:1 15016:1 15018:2 15039:5 15113:14 15121:1 15141:1 15148:1 15151:1 15161:2 15162:4 15164:1 15167:1 15189:3 15193:1 15204:1 15205:2 15215:1 15217:2 15227:3 15233:1 15235:2 15252:1 15266:2 15280:1 15281:2 15291:1 15295:1 15324:1 15330:2 15337:12 15344:1 15348:1 15367:1 15370:1 15377:1 15401:1 15408:1 15413:1 15441:4 15444:4 15459:2 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15499:1 15511:1 15528:1 15597:1 15600:1 15601:3 15621:1 15622:1 15660:5 15661:1 15664:1 15671:1 15675:2 15678:3 15680:1 15682:1 15689:1 15698:1 15708:2 15714:1 15718:1 15723:1 15732:1 15744:1 15750:1 15757:1 15759:1 15764:1 15766:3 15772:1 15774:1 15776:1 15786:1 15825:1 15829:3 15830:1 15840:1 15852:2 15877:1 15878:2 15892:3 15909:1 15932:4 15967:1 15980:1 15981:2 15986:1 16035:8 16037:1 16038:4 16046:1 16048:1 16050:1 16066:1 16080:1 16098:2 16107:1 16109:1 16133:3 16172:2 16178:1 16189:1 16190:2 16197:1 16199:1 16236:1 16246:1 16269:4 16282:1 16290:1 16297:3 16322:1 16338:1 16373:1 16393:2 16410:3 16425:1 16428:1 16435:1 16438:1 16449:1 16460:1 16464:1 16468:1 16480:1 16505:2 16508:4 16512:3 16523:1 16527:1 16556:1 16557:1 16574:2 16588:2 16589:2 16593:2 16602:3 16614:1 16615:5 16629:1 16636:3 16638:2 16640:3 16670:1 16674:1 16677:1 16703:2 16728:1 16729:1 16735:1 16749:4 16763:2 16774:2 16782:6 16862:1 16865:1 16869:1 16870:4 16872:3 16881:1 16911:1 16930:1 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16975:1 16990:1 16992:4 17009:1 17020:1 17033:3 17046:5 17048:1 17059:1 17089:1 17099:1 17102:1 17109:1 17128:2 17151:1 17160:2 17162:1 17164:5 17175:1 17185:1 17186:1 17187:5 17208:3 17211:5 17222:2 17281:3 17283:1 17284:1 17311:2 17324:3 17336:1 17338:1 17347:1 17377:3 17389:4 17424:1 17437:2 17442:2 17457:1 17465:2 17486:1 17501:2 17528:1 17530:1 17534:1 17541:1 17543:1 17545:1 17546:3 17568:1 17577:1 17596:1 17618:1 17623:1 17632:1 17634:1 17667:1 17670:2 17707:3 17709:2 17741:1 17744:1 17770:1 17785:1 17794:3 17811:1 17821:2 17824:1 17841:1 17851:1 17853:5 17857:1 17862:1 17865:2 17894:1 17906:1 17908:1 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17983:1 17986:1 17995:2 18004:1 18011:1 18025:5 18031:1 18032:1 18037:1 18047:1 18064:1 18078:1 18090:3 18104:3 18123:1 18133:3 18134:1 18138:2 18205:1 18206:1 18209:3 18230:3 18240:4 18241:1 18257:1 18265:1 18266:1 18272:7 18275:1 18280:5 18281:1 18287:1 18292:1 18293:5 18303:1 18322:1 18334:4 18345:1 18368:2 18385:4 18391:1 18397:1 18399:2 18463:1 18470:1 18472:1 18482:1 18491:4 18509:3 18510:1 18513:1 18514:1 18542:1 18547:1 18574:1 18586:1 18592:1 18623:1 18628:1 18646:1 18679:2 18703:5 18705:2 18713:1 18722:2 18723:1 18724:4 18725:4 18729:1 18735:2 18739:1 18766:2 18815:2 18833:1 18855:1 18856:1 18875:1 18883:2 18896:1 18900:1 18906:2 18922:1 18929:2 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18974:1 18993:1 19004:3 19005:3 19007:14 19017:4 19052:1 19066:1 19089:2 19111:1 19164:1 19195:1 19207:1 19236:1 19240:1 19252:1 19260:5 19262:2 19271:1 19282:1 19290:1 19299:2 19310:1 19312:1 19319:1 19357:1 19361:2 19373:1 19391:2 19397:3 19404:1 19430:1 19439:1 19456:1 19476:2 19481:1 19492:1 19496:1 19498:2 19502:1 19529:1 19595:1 19597:2 19604:3 19631:3 19636:1 19640:1 19647:8 19653:1 19663:1 19697:1 19707:1 19712:2 19734:1 19754:1 19774:1 19776:1 19790:14 19791:1 19794:3 19796:1 19834:1 19843:1 19936:6 19952:1 19959:1 19963:1 19970:2 19974:3 19977:3 19978:1 20022:2 20023:3 20026:1 20032:2 20038:1 20041:1 20046:1 20055:1 20056:1 20062:1 20071:1 20075:1 20079:1 20106:2 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:2 20217:1 20237:1 20250:1 20255:1 20256:1 20263:1 20284:1 20285:2 20291:1 20299:1 20311:1 20325:1 20351:1 20353:1 20378:1 20392:1 20413:1 20414:1 20420:1 20438:3 20511:5 20522:1 20536:1 20550:1 20572:1 20587:1 20590:2 20591:1 20638:3 20648:1 20653:3 20656:1 20669:1 20678:1 20681:1 20696:1 20703:1 20724:2 20740:1 20741:1 20747:2 20754:1 20767:1 20770:3 20777:1 20793:1 20794:1 20802:1 20819:1 20842:1 20852:1 20853:1 20859:2 20863:4 20916:1 20918:1 20924:1 20940:1 20941:2 20944:5 20955:1 20956:3 20961:1 20976:1 20987:2 21013:1 21014:2 21015:1 21018:1 21022:1 21029:4 21035:1 21040:3 21048:1 21061:1 21075:1 21096:1 21099:7 21102:1 21104:1 21108:21 21109:2 21110:2 21113:2 21119:3 21121:1 21125:1 21128:1 21133:2 21143:1 21145:1 21169:1 21171:10 21173:1 21201:2 21205:1 21221:2 21222:1 21223:1 21224:1 21242:1 21243:3 21262:1 21276:1 21292:3 21315:1 21320:1 21321:1 21324:2 21333:3 21338:1 21340:1 21361:1 21373:2 21374:1 21375:2 21381:1 21384:1 21391:4 21403:1 21406:4 21413:2 21415:1 21441:1 21459:2 21460:3 21470:2 21482:1 21514:1 21530:1 21535:1 21536:1 21537:1 21538:2 21539:1 21540:1 21543:1 21575:1 21588:1 21603:1 21609:1 21611:1 21622:1 21634:2 21635:1 21639:1 21640:1 21641:1 21647:2 21668:1 21669:1 21703:1 21704:1 21711:6 21722:1 21762:1 21778:2 21779:1 21782:4 21786:1 21795:1 21804:1 21808:1 21826:1 21831:1 21835:1 21837:1 21843:1 21845:1 21866:1 21880:2 21881:1 21889:3 21894:6 21907:3 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:3 21997:4 21998:2 22010:1 22017:3 22021:6 22024:1 22025:1 22037:1 22048:1 22067:3 22071:2 22090:1 22107:1 22108:1 22116:1 22126:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:1 22183:1 22190:1 22194:2 22255:3 22269:1 22276:1 22347:2 22349:3 22352:1 22360:4 22372:1 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22584:1 22589:1 22636:1 22648:1 22649:1 22651:4 22662:1 22666:1 22672:3 22674:1 22675:1 22688:1 22709:2 22725:2 22765:1 22783:2 22787:1 22794:1 22796:3 22829:1 22840:2 22849:1 22877:1 22880:1 22897:1 22901:2 22907:1 22911:1 22938:1 22943:1 22956:1 22964:1 22975:1 22977:1 22983:1 22985:6 22988:1 22997:1 23003:4 23018:2 23034:1 23076:1 23081:1 23114:1 23119:1 23142:4 23160:2 23188:3 23258:1 23263:1 23274:1 23284:1 23286:3 23301:1 23345:1 23348:1 23359:1 23369:1 23370:1 23371:1 23376:1 23400:2 23426:1 23444:1 23466:2 23468:1 23496:3 23504:2
16 1:1 3:1 5:1 7:1 26:1 33:1 51:1 64:1 82:1 110:2 119:3 126:1 138:1 154:1 161:1 164:4 165:1 171:1 193:1 204:1 224:1 229:1 262:1 279:1 280:1 282:1 286:1 294:1 296:1 317:1 337:1 344:1 384:1 403:1 406:1 413:3 416:2 428:1 435:1 440:4 463:4 464:1 467:1 470:1 471:1 488:1 507:3 511:1 514:1 516:1 518:1 522:1 527:1 539:3 564:1 568:1 578:1 584:1 596:1 606:2 607:1 608:2 613:1 626:3 640:1 643:1 646:2 652:1 657:1 660:1 665:1 710:1 719:1 732:2 735:3 739:1 744:1 759:1 786:1 791:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:1 855:1 860:2 886:7 896:1 898:1 902:6 904:1 910:1 914:1 947:2 962:1 967:2 993:1 996:3 1010:3 1032:1 1048:2 1049:1 1060:1 1071:4 1078:1 1086:1 1098:1 1113:1 1115:2 1117:1 1118:1 1120:1 1131:4 1133:1 1145:1 1148:1 1160:1 1162:1 1172:1 1188:1 1190:3 1191:1 1194:2 1195:5 1196:1 1203:1 1207:1 1208:1 1235:1 1236:4 1242:4 1268:2 1291:1 1292:1 1298:1 1316:1 1325:1 1348:1 1362:1 1363:1 1366:2 1376:1 1382:2 1384:1 1391:2 1399:3 1417:1 1425:1 1428:1 1450:2 1451:1 1488:2 1494:2 1526:1 1537:2 1544:2 1564:2 1573:3 1574:1 1579:1 1580:5 1581:2 1600:1 1612:1 1616:2 1628:7 1647:3 1648:2 1649:2 1671:1 1672:1 1679:2 1682:1 1683:1 1686:1 1714:1 1721:1 1737:2 1738:1 1752:14 1789:1 1792:1 1794:1 1802:5 1803:1 1807:1 1809:1 1829:2 1841:1 1844:1 1857:43 1869:1 1890:3 1930:3 1935:1 1943:1 1965:1 1977:2 1978:1 1980:1 1981:1 1982:2 2001:1 2003:4 2023:1 2027:1 2034:1 2035:1 2042:1 2044:2 2045:3 2047:1 2053:2 2057:1 2063:3 2087:1 2095:1 2103:1 2105:1 2109:3 2112:1 2123:2 2124:2 2142:1 2145:1 2150:1 2156:1 2158:1 2174:1 2182:2 2191:1 2192:1 2215:1 2231:1 2234:2 2236:1 2288:1 2297:1 2301:1 2310:5 2339:1 2343:3 2354:1 2358:1 2367:2 2368:1 2379:1 2384:1 2402:1 2414:5 2435:1 2447:5 2450:1 2469:2 2479:2 2481:1 2483:2 2484:1 2494:1 2512:3 2547:1 2554:3 2562:1 2573:1 2581:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:1 2639:2 2642:1 2643:1 2658:3 2667:3 2671:2 2685:1 2701:1 2702:1 2705:3 2708:3 2716:1 2718:1 2740:1 2746:1 2749:1 2763:1 2764:1 2773:3 2778:1 2779:1 2781:1 2793:2 2795:1 2798:1 2801:1 2810:2 2814:1 2816:3 2828:2 2840:3 2870:1 2878:1 2892:1 2895:2 2896:1 2899:1 2902:1 2904:1 2914:1 2921:1 2926:1 2927:1 2936:1 2942:1 2954:1 2966:9 2970:1 2979:1 2981:1 2986:1 2990:1 3004:1 3012:1 3014:1 3023:1 3027:1 3033:1 3035:4 3048:1 3052:1 3065:1 3066:2 3070:2 3084:1 3098:1 3136:1 3141:1 3153:1 3161:1 3168:2 3172:2 3177:3 3178:1 3186:1 3218:1 3219:1 3221:1 3223:3 3229:2 3234:1 3237:2 3240:1 3242:1 3255:1 3264:3 3266:1 3268:1 3272:2 3274:1 3293:1 3302:1 3311:1 3314:2 3316:2 3345:3 3382:1 3409:2 3437:1 3452:1 3462:1 3473:1 3483:1 3519:1 3538:1 3540:1 3541:2 3542:1 3545:2 3546:3 3552:1 3553:1 3554:2 3555:1 3556:1 3559:5 3560:1 3562:2 3564:1 3567:1 3573:4 3575:3 3576:5 3590:1 3606:1 3622:1 3642:1 3644:1 3652:2 3656:1 3661:1 3673:1 3686:1 3694:1 3698:1 3701:1 3703:2 3705:1 3706:3 3711:1 3726:1 3740:1 3746:1 3752:3 3759:1 3761:1 3786:1 3792:1 3812:1 3819:1 3827:1 3854:2 3860:3 3865:1 3871:1 3875:1 3892:4 3906:2 3936:1 3946:1 3951:1 3952:1 3974:1 3990:1 4004:1 4006:1 4010:1 4027:3 4030:1 4034:1 4038:1 4050:1 4052:2 4058:1 4059:1 4072:1 4083:1 4085:1 4089:2 4104:1 4105:1 4117:2 4127:1 4150:1 4154:1 4182:1 4183:2 4184:2 4208:4 4219:1 4226:3 4243:1 4244:1 4257:1 4260:2 4262:6 4281:1 4296:2 4311:1 4317:1 4323:1 4335:2 4338:3 4342:1 4343:1 4358:1 4380:1 4386:1 4393:2 4398:2 4413:1 4414:1 4417:4 4424:1 4427:2 4473:1 4480:1 4481:2 4488:2 4490:1 4511:4 4512:1 4513:8 4516:1 4533:1 4540:1 4560:1 4561:9 4577:7 4589:1 4616:2 4631:1 4632:1 4650:20 4658:1 4671:1 4675:1 4699:1 4701:1 4702:1 4705:1 4714:1 4720:1 4730:1 4735:1 4746:1 4760:1 4781:1 4786:1 4807:2 4818:1 4837:2 4844:4 4845:1 4860:1 4902:1 4932:3 4937:1 4966:1 4968:1 5034:2 5038:1 5047:1 5060:1 5084:4 5092:1 5099:1 5112:1 5120:9 5130:1 5132:1 5139:1 5144:2 5159:1 5161:2 5170:1 5175:1 5183:1 5199:1 5226:1 5227:3 5234:1 5253:5 5279:1 5297:1 5310:1 5341:1 5344:1 5352:1 5353:3 5365:1 5366:1 5383:3 5388:1 5390:1 5398:3 5405:1 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5459:1 5465:1 5466:1 5467:1 5480:3 5510:1 5517:1 5521:2 5542:1 5543:1 5560:3 5565:1 5601:1 5619:1 5621:3 5623:1 5627:1 5632:1 5633:1 5659:1 5661:7 5667:1 5668:1 5677:1 5690:1 5701:1 5710:1 5732:1 5748:3 5762:1 5779:1 5780:1 5805:1 5809:1 5816:2 5817:28 5820:2 5851:2 5853:1 5855:7 5858:1 5861:1 5869:1 5870:16 5871:1 5872:2 5873:1 5876:3 5896:1 5898:2 5919:3 5932:1 5934:3 5939:2 5947:1 5953:3 5957:2 5961:1 5963:1 5967:2 5994:3 6005:3 6014:2 6017:1 6025:1 6055:1 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6101:2835 6102:1 6107:1 6117:1 6133:1 6140:4 6149:2 6165:1 6179:1 6180:1 6183:1 6184:1 6195:1 6198:1 6201:1 6205:1 6210:3 6220:1 6232:1 6233:3 6253:1 6273:3 6289:1 6313:1 6349:3 6376:2 6399:2 6401:1 6407:2 6434:1 6448:3 6450:1 6458:1 6463:1 6471:1 6480:1 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6547:1 6559:1 6576:1 6577:1 6581:1 6590:1 6640:1 6644:3 6666:1 6698:1 6705:8 6715:2 6725:1 6748:2 6750:1 6777:1 6782:1 6784:1 6787:1 6792:4 6798:1 6802:2 6817:1 6830:3 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6880:1 6888:1 6936:1 6951:1 6956:2 6962:1 6974:2 6975:1 6981:4 7006:1 7050:1 7080:1 7097:2 7104:1 7110:2 7124:1 7134:3 7137:1 7139:1 7153:1 7157:3 7167:1 7203:2 7208:1 7238:1 7276:1 7305:1 7319:1 7320:1 7329:1 7337:1 7340:1 7348:2 7349:1 7363:2 7376:1 7377:3 7383:2 7397:2 7405:1 7408:3 7415:1 7450:1 7452:1 7474:1 7476:10 7488:1 7507:11 7508:1 7515:1 7516:1 7519:1 7520:1 7523:11 7529:1 7539:1 7555:2 7581:1 7582:3 7584:2 7591:1 7607:1 7614:1 7632:1 7635:1 7638:3 7649:1 7663:1 7670:3 7671:1 7680:1 7684:2 7686:1 7689:1 7693:3 7694:1 7696:4 7702:1 7719:2 7722:1 7730:2 7732:2 7733:5 7734:1 7736:1 7740:2 7742:1 7750:14 7751:1 7753:1 7758:1 7762:2 7765:3 7773:1 7782:1 7788:2 7794:1 7811:1 7814:1 7817:2 7823:3 7871:1 7883:1 7887:1 7922:1 7935:1 7948:1 7995:1 8003:1 8034:1 8065:1 8089:1 8091:9 8096:3 8097:3 8107:1 8108:5 8168:1 8187:1 8209:1 8222:2 8224:1 8225:14 8231:1 8234:5 8254:1 8270:1 8298:2 8301:1 8317:1 8325:1 8326:1 8351:1 8357:1 8361:1 8367:1 8372:1 8373:1 8385:1 8412:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8490:2 8491:1 8510:1 8520:1 8522:1 8525:1 8537:1 8544:1 8555:1 8558:1 8569:1 8573:2 8578:1 8579:1 8598:1 8599:1 8605:1 8609:1 8618:1 8624:2 8634:2 8644:6 8673:1 8679:1 8684:1 8692:1 8709:1 8713:2 8719:1 8723:1 8746:1 8748:9 8755:1 8756:1 8757:1 8769:2 8771:2 8780:2 8789:1 8791:1 8796:1 8802:1 8828:1 8831:9 8838:1 8856:1 8889:1 8894:1 8900:3 8903:1 8930:1 8937:2 8948:1 8957:1 8970:1 8973:1 8976:1 8980:1 8985:1 9017:1 9024:1 9029:1 9031:1 9048:1 9053:2 9065:1 9069:1 9083:1 9089:4 9091:1 9119:1 9139:1 9158:2 9169:1 9180:3 9208:4 9215:1 9217:3 9218:1 9227:1 9231:1 9253:1 9280:1 9285:1 9314:2 9370:1 9374:1 9393:1 9400:1 9402:5 9413:1 9416:2 9445:1 9477:1 9497:2 9509:1 9528:2 9529:1 9536:1 9541:1 9547:1 9573:1 9578:1 9589:1 9598:3 9610:1 9611:1 9612:1 9617:1 9625:2 9626:2 9645:1 9666:1 9687:3 9706:1 9707:2 9710:1 9721:2 9725:1 9733:1 9740:1 9747:3 9749:1 9751:9 9769:1 9770:3 9772:1 9777:1 9778:1 9779:1 9791:1 9792:1 9797:2 9799:1 9800:4 9809:1 9812:1 9848:3 9866:1 9901:2 9904:1 9905:1 9906:1 9908:1 9910:1 9912:1 9913:2 9917:2 9918:3 9919:3 9920:2 9926:1 9929:5 9930:1 9932:1 9933:1 9940:2 9948:1 9950:1 9980:1 9986:2 9993:1 10018:6 10027:1 10032:2 10039:1 10050:1 10095:1 10105:1 10125:1 10129:1 10147:2 10150:1 10153:1 10158:1 10165:1 10173:1 10182:3 10183:1 10193:1 10201:1 10207:1 10208:1 10212:1 10223:2 10224:1 10232:1 10277:1 10282:1 10288:1 10289:1 10313:1 10350:1 10362:1 10373:1 10386:1 10392:2 10412:1 10420:1 10421:4 10424:2 10426:2 10442:3 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10510:2 10515:1 10520:1 10536:2 10542:1 10562:1 10576:1 10579:1 10580:1 10581:1 10582:1 10590:1 10593:5 10597:2 10613:1 10618:1 10634:1 10648:1 10662:1 10677:1 10704:2 10708:1 10714:1 10734:1 10736:1 10737:1 10742:1 10749:1 10751:2 10759:1 10766:2 10768:9 10780:3 10784:1 10793:1 10794:1 10799:1 10801:1 10811:1 10817:1 10828:2 10861:1 10870:3 10873:1 10881:1 10904:1 10929:1 10936:1 10937:1 10941:2 10944:1 10946:1 10949:1 10956:1 10957:3 10962:2 10972:1 10974:1 10983:1 11018:1 11042:1 11049:4 11061:1 11067:1 11068:2 11073:2 11082:1 11085:2 11109:1 11171:1 11184:2 11203:2 11210:1 11211:1 11212:7 11215:1 11220:2 11229:1 11230:1 11234:1 11248:2 11250:1 11251:1 11252:1 11255:1 11264:1 11269:2 11271:1 11272:1 11281:1 11283:1 11303:1 11310:5 11311:2 11316:2 11320:2 11322:1 11351:1 11356:2 11367:1 11396:1 11442:1 11444:4 11446:1 11489:1 11508:1 11546:2 11554:1 11577:1 11583:1 11593:4 11595:2 11599:1 11606:1 11615:1 11631:1 11636:1 11644:1 11666:3 11667:14 11670:1 11673:1 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:3 11797:1 11799:2 11802:2 11811:1 11822:2 11834:2 11836:2 11847:1 11852:8 11878:3 11906:2 11907:2 11932:1 11942:1 11968:1 11977:1 11983:2 12004:1 12008:1 12009:1 12015:1 12017:2 12034:1 12035:1 12055:2 12059:1 12060:1 12065:3 12083:5 12101:1 12115:2 12116:4 12117:3 12119:2 12140:1 12141:2 12143:2 12154:1 12173:1 12191:1 12192:1 12198:1 12202:30 12206:1 12209:1 12215:1 12226:8 12229:16 12237:2 12244:1 12248:1 12255:1 12264:1 12295:3 12296:1 12344:1 12364:1 12370:3 12378:1 12381:1 12383:1 12392:1 12420:1 12431:2 12440:1 12469:1 12491:1 12515:3 12518:5 12523:1 12529:1 12543:1 12551:1 12553:1 12559:1 12566:11 12567:2 12590:1 12592:1 12593:3 12606:1 12628:1 12633:1 12653:1 12666:1 12673:1 12682:1 12691:1 12693:2 12703:1 12723:1 12754:3 12778:1 12783:5 12791:3 12814:5 12823:1 12839:1 12850:1 12852:2 12874:2 12879:1 12880:1 12887:1 12895:1 12904:1 12919:1 12921:1 12938:13 12966:1 12970:1 12976:1 12985:2 12986:1 13013:2 13047:1 13060:1 13067:2 13070:1 13071:1 13084:2 13086:2 13107:1 13109:1 13124:1 13129:2 13175:1 13176:1 13177:3 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:1 13229:1 13240:3 13247:1 13253:1 13267:2 13270:2 13279:1 13289:1 13293:2 13296:1 13298:1 13309:1 13321:1 13324:2 13334:2 13346:1 13362:1 13363:2 13379:1 13384:1 13387:1 13392:2 13405:1 13412:2 13414:2 13417:3 13419:1 13451:1 13459:1 13471:1 13484:3 13489:1 13505:3 13506:1 13526:5 13529:1 13537:1 13542:1 13544:1 13547:1 13552:1 13553:2 13557:2 13562:1 13572:1 13573:2 13577:1 13579:3 13580:1 13581:2 13582:3 13587:1 13593:1 13597:2 13599:2 13606:2 13609:2 13619:2 13620:1 13632:1 13644:1 13646:1 13661:2 13672:1 13674:1 13683:1 13703:4 13711:1 13715:16 13719:1 13724:1 13728:2 13756:2 13786:4 13826:3 13832:1 13846:1 13851:1 13852:1 13854:1 13855:1 13861:1 13874:1 13881:1 13935:2 13943:1 13971:1 13972:1 13978:1 13982:1 13984:1 13986:2 13995:1 13999:2 14007:1 14041:1 14061:1 14076:1 14082:1 14091:3 14093:2 14096:3 14099:1 14100:1 14101:2 14104:3 14114:2 14134:1 14137:1 14139:4 14152:1 14172:1 14176:2 14184:2 14193:2 14241:4 14280:2 14281:1 14283:1 14290:1 14311:2 14312:1 14336:1 14345:1 14360:1 14364:1 14391:1 14396:1 14429:1 14440:1 14457:3 14474:2 14475:3 14484:1 14488:1 14490:1 14492:2 14493:1 14512:1 14519:1 14529:1 14531:3 14548:1 14555:1 14561:5 14586:1 14591:2 14595:1 14604:1 14612:1 14622:1 14641:1 14643:1 14646:1 14656:1 14658:1 14673:3 14675:1 14694:1 14703:1 14719:1 14720:1 14767:1 14768:3 14775:1 14777:1 14781:1 14784:1 14794:1 14795:1 14809:3 14836:1 14870:1 14872:2 14900:1 14902:1 14904:1 14907:1 14913:1 14924:1 14926:2 14929:1 14953:1 14955:3 14970:1 14973:1 14975:1 14982:1 14986:1 15016:1 15018:2 15039:5 15113:14 15121:1 15141:1 15148:1 15151:1 15161:2 15162:4 15164:1 15167:2 15189:3 15193:1 15204:1 15205:2 15206:1 15215:1 15217:2 15227:3 15233:1 15235:2 15252:1 15266:2 15280:1 15281:2 15283:1 15291:1 15295:1 15319:1 15324:1 15330:2 15337:13 15344:1 15348:1 15367:1 15370:1 15377:1 15401:1 15408:1 15413:1 15441:4 15444:4 15454:1 15459:2 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15499:1 15511:1 15528:1 15597:1 15600:1 15601:3 15621:1 15622:1 15660:6 15661:1 15664:1 15671:1 15675:2 15678:3 15680:2 15682:1 15689:1 15698:1 15708:2 15714:2 15718:1 15723:1 15732:1 15744:1 15750:1 15757:1 15759:1 15764:1 15766:3 15772:1 15774:1 15776:1 15786:1 15825:1 15829:3 15830:1 15840:2 15844:1 15852:2 15877:1 15878:2 15892:3 15909:1 15932:4 15967:1 15980:1 15981:3 15986:1 16035:8 16037:1 16038:4 16046:1 16048:1 16050:1 16066:1 16080:1 16098:2 16107:1 16109:1 16133:3 16172:2 16178:1 16189:1 16190:2 16197:1 16199:1 16236:1 16246:1 16261:1 16269:4 16282:1 16290:1 16297:4 16322:1 16338:1 16373:1 16393:2 16410:3 16425:1 16428:1 16435:1 16438:1 16449:1 16460:1 16464:1 16468:1 16480:1 16505:2 16508:4 16512:3 16523:1 16527:1 16556:1 16557:1 16574:2 16588:2 16589:2 16593:2 16602:3 16607:1 16614:1 16615:5 16629:1 16636:3 16638:2 16640:3 16670:1 16674:1 16677:1 16702:1 16703:2 16728:1 16729:1 16735:1 16749:4 16763:2 16774:2 16782:6 16848:1 16862:1 16865:1 16869:1 16870:4 16872:3 16881:1 16911:1 16930:1 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16975:1 16990:1 16992:5 17008:1 17009:1 17020:1 17033:3 17046:5 17048:1 17059:1 17089:1 17099:1 17102:1 17109:1 17128:2 17151:1 17160:2 17162:1 17164:5 17175:1 17185:1 17186:1 17187:5 17208:3 17211:5 17222:2 17231:1 17281:3 17283:1 17284:1 17311:2 17324:3 17336:1 17338:1 17347:1 17377:3 17389:4 17395:1 17424:1 17437:2 17442:2 17457:1 17465:2 17486:1 17501:2 17528:1 17530:1 17534:1 17541:1 17543:1 17545:1 17546:3 17568:1 17577:1 17596:2 17618:1 17623:1 17632:1 17634:1 17667:1 17670:2 17681:1 17707:3 17709:2 17741:1 17744:1 17770:1 17785:1 17794:3 17811:1 17821:2 17824:1 17841:1 17851:1 17853:5 17857:1 17862:1 17865:2 17894:1 17906:1 17908:1 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17983:1 17986:1 17995:2 18004:1 18011:1 18025:5 18031:1 18032:1 18037:1 18047:1 18064:1 18078:1 18090:3 18104:3 18106:1 18123:1 18133:3 18134:1 18138:2 18205:1 18206:1 18209:3 18217:1 18230:3 18239:1 18240:4 18241:1 18257:1 18265:1 18266:1 18267:1 18272:7 18275:1 18280:5 18281:1 18287:1 18292:1 18293:5 18303:1 18322:1 18334:4 18345:1 18368:2 18385:4 18391:1 18397:1 18399:2 18446:1 18463:1 18470:1 18472:1 18482:1 18491:4 18509:3 18510:1 18513:1 18514:1 18525:1 18542:1 18547:1 18574:1 18586:1 18592:1 18623:1 18628:1 18646:1 18679:3 18703:5 18705:2 18713:1 18722:2 18723:1 18724:4 18725:4 18729:1 18735:2 18739:1 18766:2 18815:2 18833:1 18855:1 18856:1 18875:1 18883:2 18896:1 18900:1 18906:2 18922:1 18929:2 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18974:1 18993:1 19004:3 19005:3 19007:14 19017:4 19052:1 19066:1 19089:2 19111:1 19126:1 19164:1 19195:1 19207:1 19236:1 19240:1 19252:1 19260:5 19262:2 19271:1 19282:1 19290:1 19299:2 19310:1 19312:2 19319:1 19357:1 19361:2 19373:2 19391:2 19397:3 19404:1 19418:1 19430:1 19439:1 19456:1 19476:2 19481:1 19492:1 19496:1 19498:2 19502:1 19529:1 19595:1 19597:2 19604:3 19631:3 19636:1 19640:1 19647:8 19653:1 19663:1 19697:1 19707:1 19712:2 19734:1 19754:1 19774:1 19776:1 19790:16 19791:1 19794:3 19796:1 19807:1 19820:1 19834:1 19843:1 19880:1 19936:6 19952:1 19959:1 19963:1 19970:2 19974:3 19977:3 19978:1 20022:2 20023:3 20026:1 20032:2 20038:1 20041:1 20046:1 20055:1 20056:1 20062:1 20071:1 20075:1 20079:1 20106:2 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:2 20217:1 20237:1 20250:1 20255:1 20256:1 20263:1 20284:1 20285:2 20291:1 20299:1 20311:1 20325:1 20351:1 20353:1 20378:1 20379:1 20392:1 20413:1 20414:1 20420:1 20438:3 20511:6 20522:1 20536:1 20550:1 20572:1 20587:1 20590:2 20591:1 20638:3 20642:1 20648:1 20653:3 20656:1 20669:1 20678:1 20681:1 20696:1 20703:1 20724:2 20740:1 20741:1 20747:2 20754:1 20767:1 20770:3 20777:1 20793:1 20794:1 20802:2 20819:1 20842:1 20852:1 20853:1 20859:2 20863:4 20905:1 20916:1 20918:1 20924:1 20940:1 20941:2 20944:5 20955:1 20956:3 20961:1 20976:1 20987:2 21013:1 21014:2 21015:1 21018:1 21022:1 21029:4 21035:1 21040:3 21048:1 21061:1 21075:1 21077:1 21096:1 21099:7 21102:1 21104:1 21108:21 21109:2 21110:2 21113:2 21119:3 21121:1 21125:1 21128:1 21133:2 21143:1 21145:1 21169:1 21171:11 21173:1 21201:2 21205:1 21221:2 21222:1 21223:1 21224:1 21242:1 21243:3 21262:1 21276:1 21292:3 21315:1 21320:1 21321:1 21324:2 21333:4 21338:1 21340:1 21361:1 21373:2 21374:1 21375:2 21381:1 21384:1 21391:4 21403:1 21406:4 21413:2 21415:1 21441:1 21459:2 21460:3 21470:2 21482:1 21514:1 21530:1 21535:1 21536:1 21537:1 21538:2 21539:1 21540:1 21543:1 21575:1 21588:1 21603:1 21609:1 21611:1 21622:1 21634:2 21635:1 21639:1 21640:1 21641:1 21647:2 21668:1 21669:1 21703:1 21704:1 21711:6 21722:1 21750:1 21762:1 21778:2 21779:1 21782:4 21786:1 21795:1 21803:1 21804:1 21808:1 21826:1 21831:1 21835:1 21837:1 21843:1 21845:1 21866:1 21880:2 21881:1 21889:3 21894:7 21907:3 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:3 21997:4 21998:2 22010:1 22017:3 22021:6 22024:1 22025:1 22037:1 22048:1 22067:3 22071:2 22085:1 22090:1 22107:1 22108:1 22116:1 22119:1 22126:1 22135:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:3 22183:1 22190:1 22194:2 22237:1 22255:3 22269:1 22276:1 22347:2 22349:3 22352:1 22360:4 22372:1 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22584:1 22589:1 22636:1 22648:1 22649:1 22651:4 22662:1 22666:1 22672:3 22674:1 22675:1 22688:1 22690:1 22709:2 22717:1 22725:2 22731:1 22765:1 22783:2 22787:1 22794:1 22796:3 22829:1 22840:2 22849:1 22877:1 22880:1 22897:1 22901:2 22907:1 22911:1 22938:1 22943:1 22956:1 22964:1 22975:1 22977:1 22983:1 22985:6 22988:1 22997:1 23003:4 23018:2 23034:1 23068:2 23076:1 23081:1 23114:1 23119:1 23142:4 23160:2 23188:3 23258:1 23263:1 23274:1 23284:1 23286:3 23301:1 23345:1 23348:1 23359:1 23369:1 23370:1 23371:1 23376:1 23400:2 23426:1 23444:1 23466:2 23468:1 23496:3 23504:2
16 1:1 3:1 5:1 7:1 26:1 33:1 51:1 64:1 82:1 110:2 114:1 119:3 126:1 138:1 148:1 154:1 161:1 164:4 165:1 171:1 193:1 204:1 224:1 229:1 262:1 279:1 280:1 282:1 286:1 294:1 296:1 317:1 337:1 344:1 384:1 403:2 406:1 413:3 416:2 428:1 435:1 440:4 463:4 464:1 467:1 470:1 471:1 488:1 507:3 511:1 514:1 516:1 518:1 522:1 527:1 539:4 564:1 568:1 578:1 584:1 596:1 606:2 607:1 608:2 613:1 626:3 640:1 643:1 646:2 652:2 657:1 660:1 665:1 710:1 719:1 732:2 735:3 739:1 744:2 759:1 786:1 791:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:1 855:2 860:2 886:7 896:1 898:1 902:7 904:1 910:1 914:2 947:2 960:1 962:1 967:2 993:1 996:3 1010:3 1032:1 1048:2 1049:1 1060:1 1071:4 1078:1 1086:1 1098:1 1113:1 1115:2 1117:1 1118:1 1120:1 1131:4 1133:1 1145:1 1148:1 1160:1 1162:1 1172:1 1174:1 1188:1 1190:3 1191:1 1194:2 1195:5 1196:1 1203:1 1207:1 1208:1 1235:1 1236:5 1242:4 1268:2 1291:1 1292:1 1298:1 1316:1 1325:1 1348:1 1362:1 1363:1 1366:2 1376:1 1382:2 1384:1 1391:2 1399:3 1405:1 1417:1 1425:1 1428:1 1450:2 1451:1 1488:2 1494:2 1526:1 1537:2 1544:2 1564:2 1573:3 1574:1 1578:1 1579:1 1580:5 1581:2 1600:1 1612:1 1616:2 1628:7 1647:3 1648:2 1649:2 1671:1 1672:2 1674:1 1679:2 1682:1 1683:1 1686:1 1714:1 1721:1 1737:2 1738:1 1752:15 1789:1 1792:1 1794:1 1802:5 1803:1 1807:1 1809:1 1829:2 1841:1 1844:1 1857:46 1869:1 1890:3 1899:1 1930:3 1935:1 1943:1 1965:1 1977:2 1978:1 1980:1 1981:1 1982:2 2001:1 2003:4 2023:1 2027:1 2032:1 2034:2 2035:1 2036:1 2042:1 2044:2 2045:3 2047:1 2053:2 2057:1 2063:3 2087:1 2095:1 2103:1 2105:1 2109:3 2112:1 2123:2 2124:2 2142:1 2145:1 2150:1 2156:1 2158:1 2161:1 2174:1 2182:2 2191:1 2192:1 2215:1 2231:1 2234:2 2236:1 2288:1 2297:1 2301:1 2310:5 2339:1 2343:3 2345:1 2354:1 2358:1 2367:2 2368:1 2379:1 2384:1 2402:1 2414:6 2435:1 2447:5 2450:1 2469:2 2479:2 2481:1 2483:2 2484:1 2494:1 2512:3 2547:1 2554:5 2562:1 2573:1 2581:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:1 2639:2 2642:1 2643:1 2658:3 2667:3 2671:2 2685:1 2688:1 2701:1 2702:1 2705:4 2708:3 2716:1 2718:1 2740:1 2746:1 2749:1 2763:1 2764:2 2773:3 2774:1 2778:1 2779:1 2781:1 2793:2 2795:1 2798:1 2801:1 2810:2 2814:1 2816:3 2828:2 2840:3 2860:1 2870:1 2878:1 2892:1 2895:2 2896:1 2899:1 2902:1 2904:1 2914:1 2921:1 2926:1 2927:1 2936:1 2942:1 2954:1 2966:10 2970:1 2979:1 2981:1 2986:1 2990:1 3004:1 3012:1 3014:1 3023:1 3027:1 3033:1 3035:4 3043:1 3048:1 3052:1 3065:1 3066:2 3070:2 3084:1 3098:1 3136:1 3141:1 3153:1 3161:1 3168:2 3169:1 3172:2 3177:3 3178:1 3186:1 3218:1 3219:1 3221:1 3223:3 3229:2 3234:1 3237:2 3240:1 3242:1 3255:1 3260:1 3264:3 3266:1 3268:1 3272:2 3274:1 3293:1 3302:1 3311:1 3314:2 3316:2 3345:3 3382:1 3396:1 3409:2 3437:1 3452:1 3462:1 3468:1 3473:1 3483:1 3519:1 3538:1 3540:1 3541:2 3542:1 3545:2 3546:3 3552:1 3553:1 3554:3 3555:1 3556:1 3559:5 3560:1 3562:3 3564:1 3567:1 3573:4 3575:3 3576:5 3590:1 3606:1 3622:1 3642:1 3644:1 3652:2 3656:1 3661:1 3673:1 3686:1 3694:1 3698:1 3701:1 3703:2 3705:1 3706:3 3711:1 3726:1 3740:1 3746:1 3752:3 3759:1 3761:1 3786:1 3792:1 3812:1 3819:1 3827:1 3854:2 3860:3 3865:1 3871:1 3875:1 3892:4 3906:2 3936:1 3946:1 3951:1 3952:1 3974:1 3990:1 4004:1 4006:1 4010:1 4027:3 4030:1 4034:1 4038:1 4050:1 4052:2 4058:1 4059:1 4072:1 4083:2 4085:1 4089:2 4104:1 4105:1 4109:1 4117:2 4127:1 4146:1 4150:1 4154:1 4182:2 4183:2 4184:2 4208:4 4219:1 4226:3 4243:1 4244:1 4248:1 4255:1 4257:1 4260:2 4262:6 4281:1 4296:2 4311:1 4317:1 4323:1 4335:2 4338:3 4342:1 4343:2 4358:1 4380:1 4386:1 4393:2 4398:2 4413:1 4414:1 4417:4 4424:1 4427:2 4473:1 4480:1 4481:2 4488:2 4490:1 4511:4 4512:1 4513:8 4515:1 4516:1 4526:1 4533:1 4540:1 4560:1 4561:10 4577:7 4589:1 4616:2 4631:1 4632:1 4650:21 4658:1 4671:1 4675:1 4699:1 4701:1 4702:1 4705:1 4714:1 4720:1 4730:1 4735:2 4746:1 4760:1 4766:1 4781:1 4786:1 4807:2 4818:1 4837:2 4844:4 4845:1 4860:1 4902:1 4932:3 4937:1 4955:1 4966:1 4968:1 5034:3 5038:1 5047:1 5060:1 5084:4 5092:1 5099:1 5112:1 5120:10 5130:2 5132:1 5139:1 5144:3 5159:1 5161:2 5170:1 5175:1 5183:1 5196:1 5199:1 5226:1 5227:3 5234:1 5253:5 5279:1 5297:1 5310:1 5341:1 5344:1 5352:1 5353:3 5365:1 5366:1 5383:3 5388:1 5390:1 5398:3 5405:1 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5459:1 5465:1 5466:1 5467:1 5480:3 5510:1 5517:1 5521:2 5542:1 5543:1 5560:3 5565:1 5601:1 5619:1 5621:3 5623:1 5627:2 5632:1 5633:1 5659:1 5661:9 5667:1 5668:1 5677:1 5690:1 5701:1 5710:1 5732:1 5748:3 5762:1 5779:1 5780:1 5805:1 5809:1 5816:2 5817:30 5820:2 5851:2 5853:1 5855:7 5858:1 5861:1 5869:1 5870:16 5871:1 5872:2 5873:1 5876:4 5896:1 5898:2 5919:3 5932:1 5934:3 5939:2 5947:1 5953:3 5957:2 5961:1 5963:1 5967:2 5994:3 6005:3 6014:2 6017:1 6025:1 6055:1 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6101:2963 6102:1 6107:1 6117:1 6133:1 6140:4 6149:2 6165:1 6179:1 6180:1 6183:1 6184:1 6195:1 6198:1 6201:1 6205:1 6210:3 6220:1 6232:1 6233:3 6248:1 6253:1 6273:3 6289:1 6313:1 6349:3 6376:2 6399:2 6401:1 6407:2 6434:1 6448:3 6450:2 6458:1 6463:1 6471:2 6480:1 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6547:1 6559:1 6576:1 6577:1 6581:1 6590:1 6601:1 6640:1 6644:4 6666:1 6692:1 6698:1 6705:8 6715:2 6725:1 6748:2 6750:1 6777:1 6782:1 6784:1 6787:1 6792:5 6798:1 6802:2 6817:1 6830:3 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6880:1 6888:1 6936:1 6951:1 6956:2 6962:1 6974:2 6975:1 6981:4 7006:1 7050:1 7080:1 7097:2 7104:1 7110:2 7124:1 7134:3 7137:1 7139:1 7153:1 7157:3 7167:2 7203:2 7208:1 7238:1 7276:1 7305:1 7319:1 7320:1 7329:1 7337:1 7340:1 7348:2 7349:1 7363:2 7376:1 7377:4 7383:2 7397:2 7405:1 7408:3 7415:1 7444:1 7450:1 7452:1 7474:1 7476:10 7483:1 7488:1 7507:12 7508:1 7515:1 7516:1 7519:1 7520:1 7523:12 7529:1 7539:1 7555:2 7581:1 7582:3 7584:2 7591:1 7607:1 7614:1 7632:1 7635:1 7638:3 7649:1 7663:1 7670:3 7671:1 7680:1 7684:2 7686:2 7689:1 7693:3 7694:1 7696:4 7702:1 7719:2 7722:1 7730:2 7732:2 7733:5 7734:1 7736:1 7740:2 7742:1 7750:15 7751:1 7753:1 7758:1 7762:2 7765:3 7773:1 7782:1 7788:2 7794:1 7811:1 7814:1 7817:2 7823:3 7871:1 7883:1 7887:1 7922:1 7935:1 7948:1 7995:1 8003:1 8034:1 8052:1 8065:1 8089:1 8091:10 8096:3 8097:3 8107:1 8108:5 8168:1 8187:1 8209:1 8222:2 8224:1 8225:15 8231:1 8234:5 8254:1 8270:1 8298:2 8301:1 8317:1 8325:1 8326:1 8351:1 8357:1 8361:1 8367:2 8372:1 8373:1 8385:1 8412:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8469:1 8490:2 8491:1 8510:1 8520:1 8522:1 8525:1 8537:1 8544:1 8555:1 8558:1 8569:1 8573:2 8578:1 8579:1 8598:1 8599:1 8605:1 8609:1 8618:1 8624:2 8634:2 8644:6 8673:1 8674:1 8679:1 8684:1 8692:1 8709:1 8713:2 8719:1 8723:1 8746:1 8748:10 8755:1 8756:1 8757:1 8769:2 8771:2 8780:2 8789:1 8791:1 8796:1 8802:1 8828:1 8831:9 8838:1 8856:1 8889:1 8894:1 8900:3 8903:1 8930:1 8937:2 8948:1 8957:1 8970:1 8973:1 8976:1 8980:1 8985:1 9017:1 9024:1 9029:1 9031:1 9048:1 9053:2 9065:1 9069:1 9083:1 9089:4 9091:1 9119:1 9139:1 9158:2 9169:1 9180:3 9208:4 9215:1 9217:3 9218:1 9227:1 9231:1 9253:1 9280:1 9285:1 9314:2 9370:1 9374:1 9393:1 9400:1 9402:5 9413:1 9416:2 9419:1 9445:1 9477:1 9497:2 9509:1 9528:2 9529:1 9536:1 9539:1 9541:1 9547:1 9573:1 9578:1 9589:1 9598:3 9610:1 9611:1 9612:1 9617:1 9625:2 9626:2 9645:1 9666:1 9687:3 9706:1 9707:2 9710:1 9721:2 9725:1 9733:1 9740:1 9747:3 9749:1 9751:9 9759:1 9769:1 9770:3 9772:1 9777:1 9778:1 9779:1 9791:1 9792:1 9797:2 9799:1 9800:5 9809:1 9812:1 9848:3 9866:1 9901:2 9904:1 9905:1 9906:1 9908:1 9910:1 9912:2 9913:2 9917:2 9918:3 9919:3 9920:2 9926:2 9929:5 9930:1 9932:1 9933:2 9940:2 9948:1 9950:1 9980:1 9986:2 9993:1 10018:6 10027:1 10032:2 10039:1 10050:1 10095:1 10105:1 10125:1 10129:1 10130:1 10147:2 10150:1 10153:1 10158:1 10165:1 10173:1 10182:3 10183:1 10193:1 10201:1 10207:1 10208:1 10212:1 10223:2 10224:1 10232:1 10277:1 10282:1 10288:1 10289:1 10313:1 10350:1 10362:1 10373:1 10386:1 10392:2 10412:1 10420:1 10421:4 10424:2 10426:3 10442:3 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10510:2 10515:1 10520:1 10536:2 10542:1 10562:1 10576:1 10579:1 10580:1 10581:1 10582:1 10587:1 10590:1 10593:5 10597:2 10613:1 10618:1 10634:1 10648:1 10662:1 10677:1 10704:2 10708:1 10714:1 10734:1 10736:1 10737:1 10742:1 10749:1 10751:2 10759:1 10766:2 10768:10 10780:3 10784:1 10793:1 10794:1 10799:1 10801:1 10811:1 10817:1 10828:2 10840:1 10861:1 10870:4 10873:1 10881:1 10904:1 10929:1 10936:1 10937:2 10941:2 10944:1 10946:1 10949:1 10956:1 10957:3 10962:2 10972:1 10974:1 10983:1 11018:1 11042:1 11043:1 11049:4 11061:1 11067:1 11068:2 11073:2 11082:1 11085:2 11106:1 11109:1 11171:1 11184:2 11203:2 11210:1 11211:1 11212:7 11215:1 11220:2 11229:1 11230:1 11232:1 11234:1 11248:2 11250:1 11251:1 11252:1 11255:1 11264:1 11269:2 11271:1 11272:1 11281:1 11283:1 11303:1 11310:5 11311:2 11316:2 11320:2 11322:1 11351:1 11356:2 11367:1 11396:1 11423:1 11442:1 11444:4 11446:1 11489:1 11497:1 11508:1 11530:1 11546:2 11554:1 11577:1 11583:1 11593:4 11595:2 11599:1 11606:1 11615:1 11631:1 11636:1 11644:1 11666:4 11667:15 11670:1 11673:1 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:3 11797:1 11799:2 11802:2 11811:1 11813:1 11822:2 11834:2 11836:3 11847:1 11852:8 11878:3 11906:2 11907:2 11932:1 11942:1 11963:1 11968:1 11977:1 11983:2 12004:1 12008:1 12009:1 12015:1 12017:2 12034:1 12035:1 12055:2 12059:1 12060:1 12065:3 12083:6 12101:1 12115:2 12116:4 12117:3 12119:2 12140:1 12141:2 12143:2 12154:1 12173:1 12191:1 12192:1 12198:1 12202:32 12205:1 12206:1 12209:1 12215:1 12226:9 12229:17 12237:2 12244:1 12248:1 12255:1 12264:1 12288:1 12295:3 12296:1 12344:1 12364:1 12370:3 12378:1 12381:1 12383:1 12392:1 12420:1 12431:2 12440:1 12469:1 12491:1 12515:3 12518:5 12523:1 12529:1 12543:1 12551:1 12553:1 12559:1 12566:12 12567:2 12590:1 12592:1 12593:3 12606:1 12628:1 12633:1 12653:1 12666:1 12673:1 12682:1 12691:1 12693:2 12703:1 12709:1 12723:1 12754:3 12778:1 12783:5 12791:3 12814:5 12823:1 12839:1 12850:1 12852:2 12853:1 12874:2 12879:1 12880:1 12887:1 12895:1 12904:1 12919:1 12921:1 12938:15 12966:1 12970:1 12975:1 12976:1 12985:2 12986:1 13013:2 13047:1 13060:1 13064:1 13067:2 13070:1 13071:1 13084:2 13086:2 13107:1 13109:1 13124:1 13129:2 13175:1 13176:1 13177:3 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:1 13229:1 13240:3 13247:1 13253:1 13267:2 13270:2 13279:1 13289:1 13293:2 13296:1 13298:1 13309:1 13321:1 13324:2 13334:2 13346:1 13362:1 13363:2 13379:1 13384:1 13387:1 13392:2 13405:1 13412:2 13414:2 13417:3 13419:1 13451:1 13459:1 13471:1 13484:3 13489:1 13505:3 13506:1 13526:6 13529:1 13537:1 13542:1 13544:1 13547:1 13552:1 13553:2 13557:2 13562:1 13572:1 13573:2 13577:1 13579:3 13580:1 13581:2 13582:3 13587:1 13593:1 13597:2 13599:2 13606:3 13609:2 13619:2 13620:1 13632:1 13644:1 13646:1 13661:2 13672:1 13674:1 13682:1 13683:1 13703:4 13711:1 13715:17 13719:1 13724:1 13728:2 13756:2 13786:5 13826:3 13832:1 13846:1 13851:1 13852:1 13854:1 13855:1 13861:1 13874:1 13881:1 13935:2 13943:1 13971:1 13972:1 13978:1 13982:1 13984:1 13986:2 13995:1 13999:2 14004:1 14007:1 14041:1 14061:1 14076:1 14082:1 14091:3 14093:2 14096:3 14099:1 14100:1 14101:2 14104:3 14114:2 14134:1 14137:1 14139:4 14152:1 14155:1 14172:1 14176:2 14184:2 14193:2 14241:4 14280:2 14281:1 14283:1 14290:1 14311:2 14312:1 14336:1 14345:1 14360:1 14364:1 14381:1 14391:1 14396:1 14429:1 14440:1 14457:3 14474:2 14475:3 14484:1 14488:1 14490:1 14492:2 14493:1 14512:1 14519:1 14529:1 14531:3 14548:1 14555:1 14561:5 14586:1 14591:2 14595:1 14604:1 14605:1 14612:1 14622:1 14641:1 14643:1 14646:1 14656:1 14658:1 14673:3 14675:1 14694:1 14703:1 14719:1 14720:1 14767:1 14768:5 14775:1 14777:1 14781:1 14784:1 14794:1 14795:1 14809:3 14836:1 14870:1 14872:2 14900:1 14902:1 14904:1 14907:2 14913:1 14924:1 14926:2 14929:1 14953:1 14955:3 14970:1 14973:1 14975:1 14982:1 14986:1 15016:1 15018:2 15039:5 15113:15 15121:2 15141:1 15148:1 15151:1 15161:2 15162:4 15164:1 15167:2 15189:4 15193:1 15204:1 15205:2 15206:1 15215:1 15217:2 15227:3 15233:1 15235:2 15252:1 15266:2 15280:1 15281:2 15283:1 15291:1 15295:2 15319:1 15324:1 15330:2 15337:13 15344:1 15348:1 15367:1 15370:1 15377:2 15401:1 15403:1 15408:1 15413:1 15435:1 15441:4 15444:5 15454:1 15459:2 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15499:1 15511:1 15528:1 15597:1 15600:1 15601:3 15621:1 15622:1 15643:1 15660:6 15661:1 15664:2 15671:1 15675:2 15678:4 15680:2 15682:1 15689:1 15698:1 15708:2 15714:2 15718:1 15723:1 15732:1 15744:1 15750:1 15757:1 15759:1 15764:1 15766:3 15772:1 15774:1 15776:1 15786:1 15825:1 15829:3 15830:1 15840:2 15844:1 15852:2 15877:1 15878:2 15892:3 15909:1 15932:5 15967:1 15980:1 15981:3 15986:1 16035:9 16037:1 16038:4 16046:1 16048:1 16050:1 16066:1 16080:1 16098:2 16107:1 16109:1 16133:3 16172:2 16178:1 16189:1 16190:2 16197:1 16199:1 16236:1 16246:1 16261:1 16269:4 16282:1 16290:1 16297:4 16322:1 16338:1 16373:1 16393:2 16410:3 16425:1 16428:1 16435:1 16438:1 16449:1 16460:1 16464:1 16468:1 16480:1 16505:2 16508:4 16512:3 16523:1 16527:1 16556:1 16557:1 16574:2 16588:2 16589:2 16593:2 16602:3 16607:1 16614:1 16615:6 16629:1 16636:3 16638:3 16640:3 16670:1 16674:1 16677:1 16702:1 16703:2 16728:1 16729:1 16735:1 16749:4 16763:2 16774:2 16782:6 16848:1 16862:1 16865:1 16869:1 16870:4 16872:3 16881:1 16911:1 16930:1 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16975:1 16990:1 16992:5 17008:1 17009:1 17020:1 17026:1 17033:3 17046:5 17048:1 17059:1 17089:1 17099:1 17102:1 17109:1 17128:2 17151:1 17160:2 17162:1 17164:6 17175:1 17185:1 17186:1 17187:5 17208:3 17211:5 17222:2 17231:1 17281:4 17283:1 17284:1 17311:2 17324:3 17336:1 17338:1 17347:1 17377:3 17389:4 17395:1 17424:1 17437:2 17442:2 17457:1 17465:2 17486:1 17501:2 17528:1 17530:1 17534:1 17541:1 17543:1 17545:1 17546:3 17568:1 17577:1 17596:2 17618:1 17623:1 17632:1 17634:1 17667:1 17670:2 17681:1 17707:3 17709:2 17725:1 17741:1 17744:1 17770:1 17785:1 17794:3 17811:1 17821:2 17824:1 17829:1 17841:1 17851:1 17853:5 17857:1 17862:1 17865:2 17894:1 17906:1 17908:1 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17983:1 17986:1 17995:2 18004:1 18011:1 18025:6 18031:1 18032:1 18037:1 18047:1 18050:1 18057:1 18064:1 18078:1 18090:4 18104:3 18106:1 18123:1 18133:3 18134:1 18138:2 18205:1 18206:1 18209:3 18217:1 18230:3 18239:1 18240:4 18241:1 18257:1 18258:1 18265:1 18266:1 18267:1 18272:9 18275:1 18280:5 18281:1 18287:1 18292:1 18293:5 18303:1 18322:1 18334:4 18345:1 18368:2 18385:4 18391:1 18397:1 18399:2 18411:1 18446:1 18463:1 18470:1 18472:1 18482:1 18491:4 18509:3 18510:1 18513:1 18514:1 18525:1 18542:1 18547:2 18574:1 18586:1 18592:1 18623:1 18628:1 18646:1 18679:3 18703:5 18705:2 18713:1 18722:2 18723:1 18724:4 18725:4 18729:1 18735:2 18739:2 18766:2 18815:2 18833:1 18855:2 18856:1 18875:1 18883:3 18896:1 18900:1 18906:2 18922:1 18929:3 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18974:1 18980:1 18993:1 19004:3 19005:3 19007:15 19017:4 19052:1 19066:1 19089:2 19111:1 19126:1 19164:1 19195:1 19207:1 19236:1 19240:1 19252:1 19260:5 19262:2 19271:1 19281:1 19282:1 19290:1 19298:1 19299:2 19306:1 19310:1 19312:2 19319:1 19342:1 19357:1 19361:2 19373:2 19391:2 19397:3 19404:1 19418:1 19430:1 19439:1 19456:1 19476:2 19481:1 19492:1 19496:1 19498:2 19502:1 19512:1 19529:1 19595:1 19597:2 19604:3 19626:1 19631:3 19636:1 19640:1 19647:8 19653:1 19663:1 19697:1 19707:1 19712:2 19734:1 19754:1 19774:1 19776:1 19790:17 19791:1 19794:3 19796:1 19807:1 19820:1 19834:1 19843:1 19880:1 19936:6 19952:1 19959:1 19963:1 19969:1 19970:2 19974:3 19977:3 19978:1 20022:2 20023:3 20026:1 20032:2 20038:1 20041:1 20046:1 20055:1 20056:1 20062:1 20071:1 20075:1 20079:1 20106:2 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:2 20217:1 20237:1 20250:1 20255:1 20256:1 20263:1 20270:1 20284:1 20285:2 20291:1 20299:1 20311:1 20325:1 20351:1 20353:1 20378:1 20379:1 20392:1 20413:1 20414:1 20420:1 20438:3 20511:7 20522:1 20536:1 20550:2 20572:1 20587:1 20590:2 20591:1 20599:1 20638:3 20642:1 20648:1 20653:3 20656:1 20664:1 20669:1 20678:1 20681:1 20696:1 20703:1 20724:2 20740:1 20741:1 20747:2 20754:1 20767:1 20770:3 20777:1 20793:1 20794:1 20802:2 20819:1 20842:1 20852:1 20853:2 20859:2 20863:4 20905:1 20915:1 20916:1 20918:1 20924:1 20940:1 20941:2 20944:5 20955:1 20956:3 20961:1 20976:1 20987:2 21013:1 21014:3 21015:1 21018:1 21022:1 21029:4 21035:1 21040:3 21048:1 21061:1 21075:1 21077:1 21096:1 21099:7 21102:1 21104:1 21108:22 21109:2 21110:2 21113:2 21119:3 21121:1 21122:1 21125:1 21128:1 21133:2 21143:1 21145:1 21169:1 21171:11 21173:1 21201:2 21205:1 21209:1 21221:2 21222:1 21223:1 21224:1 21242:1 21243:3 21262:1 21276:1 21292:3 21315:1 21320:1 21321:1 21324:2 21333:5 21338:1 21340:1 21361:1 21373:2 21374:1 21375:2 21381:1 21384:1 21391:4 21403:1 21406:4 21413:2 21415:1 21441:1 21459:2 21460:3 21470:2 21478:1 21482:1 21514:1 21530:1 21535:1 21536:1 21537:1 21538:2 21539:1 21540:1 21543:1 21575:1 21588:1 21598:1 21603:1 21609:1 21611:1 21622:1 21634:2 21635:1 21639:1 21640:1 21641:1 21647:2 21651:1 21668:1 21669:1 21703:1 21704:1 21711:6 21722:1 21750:1 21762:1 21778:2 21779:1 21782:4 21786:1 21795:1 21803:1 21804:1 21808:1 21826:1 21831:2 21835:1 21837:1 21843:1 21845:1 21866:1 21877:1 21880:2 21881:1 21889:3 21894:7 21907:3 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:3 21997:4 21998:2 22010:1 22017:3 22021:6 22024:1 22025:1 22037:1 22048:1 22065:1 22067:3 22071:2 22085:1 22090:1 22107:1 22108:1 22116:1 22119:1 22126:2 22135:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:3 22183:1 22185:1 22190:1 22194:2 22237:1 22255:3 22269:1 22276:1 22325:1 22340:1 22347:2 22349:4 22352:1 22360:5 22372:1 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22584:1 22589:1 22599:1 22636:1 22648:1 22649:1 22651:4 22662:1 22666:1 22672:3 22674:1 22675:1 22688:1 22690:1 22709:2 22717:1 22725:2 22731:1 22765:1 22783:2 22787:1 22794:1 22796:3 22812:1 22829:1 22840:2 22849:1 22877:1 22880:1 22897:1 22901:2 22907:1 22911:1 22936:1 22938:1 22943:1 22956:2 22964:1 22975:1 22977:1 22983:1 22985:6 22988:1 22997:1 23003:4 23018:2 23034:1 23068:2 23070:1 23076:1 23081:1 23114:1 23119:1 23141:1 23142:4 23160:2 23188:4 23258:1 23263:1 23274:1 23284:1 23286:3 23301:1 23345:1 23348:1 23359:1 23369:1 23370:1 23371:1 23376:1 23400:2 23426:1 23444:1 23466:2 23468:1 23496:3 23504:3
16 1:1 3:1 5:1 7:1 26:1 33:1 51:1 64:1 82:1 110:2 114:1 119:3 126:1 138:1 148:1 154:1 161:1 164:4 165:1 171:1 193:1 204:1 224:1 229:1 262:1 279:1 280:1 282:1 286:1 294:1 296:1 317:1 337:1 344:1 384:1 403:2 406:1 413:3 416:2 428:1 435:1 440:4 463:4 464:1 467:1 470:1 471:1 488:1 507:3 511:1 514:1 516:1 518:1 522:1 527:1 539:4 564:1 568:1 578:1 584:1 596:1 606:2 607:1 608:2 613:1 626:3 640:2 643:1 646:2 652:2 657:1 660:1 665:1 710:1 719:1 732:2 735:3 739:1 744:2 759:1 786:1 791:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:1 855:2 860:3 886:7 896:1 898:1 902:7 904:1 910:1 914:2 947:2 960:1 962:1 967:2 993:1 996:3 1010:3 1032:1 1048:2 1049:1 1060:1 1071:4 1078:1 1086:1 1098:1 1113:1 1115:2 1117:1 1118:1 1120:1 1131:4 1133:1 1145:1 1148:1 1160:1 1162:1 1172:1 1174:1 1188:1 1190:3 1191:1 1194:2 1195:5 1196:1 1203:1 1207:1 1208:1 1235:1 1236:5 1242:4 1268:2 1291:1 1292:1 1298:1 1316:1 1325:1 1348:1 1362:1 1363:1 1366:2 1376:1 1382:2 1384:1 1391:2 1399:4 1405:1 1417:1 1425:1 1428:1 1450:2 1451:1 1488:2 1494:2 1526:2 1537:2 1544:2 1564:2 1573:3 1574:1 1578:1 1579:1 1580:5 1581:2 1600:1 1612:1 1616:2 1628:8 1644:1 1647:4 1648:2 1649:2 1671:1 1672:2 1674:1 1679:2 1682:1 1683:1 1686:1 1714:1 1721:1 1737:2 1738:1 1752:15 1789:1 1792:1 1794:1 1802:5 1803:1 1807:1 1809:1 1829:2 1841:1 1844:1 1857:46 1869:1 1890:3 1899:1 1930:3 1935:1 1943:1 1965:1 1968:1 1977:2 1978:1 1980:1 1981:1 1982:2 2001:1 2003:4 2023:1 2027:1 2032:1 2034:2 2035:1 2036:1 2042:1 2044:2 2045:3 2047:1 2053:2 2057:1 2063:3 2087:1 2095:1 2103:1 2105:1 2109:3 2112:1 2123:2 2124:2 2142:1 2145:1 2150:1 2156:1 2158:1 2161:1 2174:1 2182:2 2191:1 2192:1 2215:1 2231:1 2234:2 2236:1 2288:1 2297:1 2301:1 2310:5 2339:1 2343:3 2345:1 2354:1 2358:1 2367:2 2368:1 2379:1 2384:1 2402:1 2414:6 2435:1 2447:5 2450:1 2469:2 2479:2 2481:1 2483:2 2484:1 2494:1 2512:3 2547:1 2554:5 2562:1 2573:1 2581:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:2 2639:2 2642:1 2643:1 2658:3 2667:3 2671:2 2683:1 2685:1 2688:1 2701:1 2702:1 2705:4 2708:3 2716:1 2718:1 2740:1 2746:1 2749:1 2763:1 2764:2 2773:3 2774:1 2778:1 2779:1 2781:1 2793:2 2795:1 2798:1 2801:1 2810:2 2814:1 2816:3 2828:2 2840:3 2860:1 2870:1 2878:1 2892:1 2895:2 2896:1 2899:1 2902:1 2904:1 2914:1 2921:1 2926:1 2927:1 2936:1 2942:1 2954:1 2966:10 2970:1 2979:1 2981:1 2986:1 2990:1 3004:1 3012:1 3014:1 3017:1 3023:1 3027:1 3033:1 3035:4 3043:1 3048:1 3052:1 3065:1 3066:2 3070:2 3084:1 3098:1 3136:1 3141:1 3153:1 3161:1 3168:2 3169:1 3170:1 3172:2 3177:3 3178:1 3186:1 3218:2 3219:1 3221:1 3223:3 3229:2 3234:1 3237:2 3240:1 3242:1 3255:1 3260:1 3264:3 3266:1 3268:1 3272:2 3274:1 3293:1 3302:1 3311:1 3314:2 3316:2 3343:1 3345:3 3382:1 3396:1 3409:2 3437:1 3452:1 3462:1 3468:1 3473:1 3483:1 3519:1 3538:1 3540:1 3541:2 3542:1 3545:2 3546:4 3552:1 3553:1 3554:3 3555:1 3556:1 3559:5 3560:1 3562:3 3564:1 3567:1 3573:4 3575:3 3576:6 3590:1 3606:1 3622:1 3642:1 3644:1 3652:2 3656:1 3661:1 3673:1 3686:1 3694:1 3698:1 3701:1 3703:2 3705:1 3706:3 3711:1 3726:1 3740:1 3746:1 3752:3 3759:1 3761:1 3786:1 3792:1 3812:1 3819:1 3827:1 3854:2 3860:3 3865:1 3871:1 3875:1 3892:4 3906:2 3936:1 3946:1 3951:1 3952:1 3974:1 3990:1 4004:1 4006:1 4010:1 4027:3 4030:1 4034:1 4038:1 4050:1 4052:2 4058:1 4059:1 4072:1 4083:2 4085:1 4089:2 4104:1 4105:1 4109:1 4117:2 4127:1 4146:1 4150:1 4154:1 4182:2 4183:2 4184:2 4208:4 4219:1 4226:3 4243:1 4244:1 4248:1 4255:1 4257:1 4260:2 4262:6 4281:1 4296:2 4311:1 4317:1 4323:1 4335:2 4338:3 4342:1 4343:2 4358:1 4380:1 4386:1 4393:2 4398:2 4413:1 4414:1 4417:4 4424:1 4427:2 4473:1 4480:1 4481:2 4488:2 4490:1 4511:4 4512:1 4513:8 4515:1 4516:1 4526:1 4533:1 4540:1 4560:1 4561:10 4577:7 4589:1 4616:2 4631:1 4632:1 4650:21 4658:1 4671:1 4675:1 4699:1 4701:1 4702:1 4705:2 4714:1 4720:1 4730:1 4735:2 4741:1 4746:1 4760:1 4766:1 4781:1 4786:1 4807:2 4818:1 4837:2 4844:4 4845:1 4860:1 4902:1 4932:3 4937:1 4955:1 4966:1 4968:1 4984:1 4990:1 5034:3 5038:1 5047:1 5060:1 5084:4 5092:1 5099:1 5112:1 5120:10 5130:2 5132:1 5139:1 5144:3 5159:1 5161:2 5170:1 5175:1 5183:1 5196:1 5199:1 5226:1 5227:3 5234:1 5253:5 5279:1 5297:1 5310:1 5341:1 5344:1 5352:1 5353:3 5365:1 5366:1 5383:3 5388:1 5390:1 5398:3 5405:1 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5459:1 5465:1 5466:1 5467:1 5480:3 5510:1 5517:1 5521:2 5542:1 5543:1 5560:3 5565:1 5601:1 5619:1 5621:3 5623:1 5627:2 5632:1 5633:1 5659:1 5661:9 5667:1 5668:1 5677:1 5690:1 5701:1 5710:1 5732:1 5748:3 5762:1 5779:1 5780:1 5805:1 5809:1 5816:2 5817:30 5820:2 5851:2 5853:1 5855:7 5858:1 5861:1 5869:1 5870:16 5871:1 5872:2 5873:1 5876:4 5896:1 5898:2 5919:3 5932:1 5934:3 5939:2 5947:1 5953:3 5957:2 5961:1 5963:1 5967:2 5994:3 6005:3 6014:2 6017:1 6025:1 6055:1 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6101:3036 6102:1 6107:1 6117:1 6133:1 6140:4 6149:2 6165:1 6179:1 6180:1 6183:1 6184:1 6195:1 6198:1 6201:1 6205:1 6210:3 6220:1 6232:1 6233:3 6248:1 6253:1 6273:3 6289:1 6313:1 6349:3 6376:2 6379:1 6399:2 6401:1 6407:2 6434:1 6448:3 6450:2 6458:1 6463:1 6471:2 6480:1 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6547:1 6559:1 6576:1 6577:1 6581:1 6590:1 6601:1 6640:1 6644:4 6666:1 6692:1 6698:1 6705:8 6715:2 6725:1 6748:2 6750:1 6777:1 6782:1 6784:1 6787:1 6792:5 6798:1 6802:2 6817:1 6830:3 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6880:1 6888:1 6936:1 6951:1 6956:2 6962:1 6974:2 6975:1 6981:4 7006:1 7050:1 7080:1 7097:2 7104:1 7110:2 7124:1 7134:3 7137:1 7139:1 7153:1 7157:3 7167:2 7203:2 7208:1 7238:1 7276:1 7305:1 7319:1 7320:1 7329:1 7337:2 7340:1 7348:2 7349:1 7363:2 7376:1 7377:4 7383:2 7397:2 7405:1 7408:3 7415:1 7444:1 7450:1 7452:1 7474:1 7476:10 7483:1 7488:1 7507:12 7508:1 7515:1 7516:1 7519:1 7520:1 7523:12 7529:1 7539:1 7555:2 7581:1 7582:3 7584:2 7591:1 7607:1 7614:1 7632:1 7635:1 7638:3 7649:1 7663:1 7670:3 7671:2 7680:1 7684:2 7686:2 7689:1 7693:3 7694:1 7696:4 7702:1 7719:2 7722:1 7730:2 7732:2 7733:5 7734:1 7736:1 7740:2 7742:1 7750:15 7751:1 7753:1 7758:1 7762:2 7765:3 7773:1 7782:1 7788:3 7794:1 7811:1 7814:1 7817:2 7823:3 7871:1 7883:1 7887:1 7922:1 7935:1 7948:1 7995:1 8003:1 8034:1 8052:1 8065:1 8089:1 8091:10 8096:3 8097:3 8107:1 8108:5 8168:1 8187:1 8209:1 8222:2 8224:1 8225:15 8231:1 8234:5 8254:1 8270:1 8298:2 8301:1 8317:1 8325:1 8326:1 8351:1 8356:1 8357:1 8361:1 8367:2 8372:1 8373:1 8385:1 8412:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8469:1 8490:2 8491:1 8510:1 8520:1 8522:1 8525:1 8537:1 8544:1 8555:1 8558:1 8569:1 8573:2 8578:1 8579:1 8598:1 8599:1 8605:1 8609:1 8618:2 8624:2 8634:2 8644:6 8673:1 8674:1 8679:1 8684:1 8692:1 8709:1 8713:2 8719:1 8723:1 8746:1 8748:10 8755:1 8756:1 8757:1 8769:2 8771:2 8780:2 8789:1 8791:1 8796:1 8802:1 8828:1 8831:9 8838:1 8856:1 8889:1 8894:1 8900:3 8903:1 8930:1 8937:2 8948:1 8957:1 8970:1 8973:1 8976:1 8980:1 8985:1 9017:1 9024:1 9029:1 9031:1 9048:1 9053:2 9065:1 9069:1 9083:1 9089:4 9091:1 9119:1 9139:1 9158:2 9169:1 9180:3 9208:4 9215:1 9217:3 9218:1 9227:1 9231:1 9253:1 9280:1 9285:1 9314:2 9370:1 9374:1 9393:1 9400:1 9402:5 9413:1 9416:2 9419:1 9445:1 9477:1 9497:2 9509:1 9528:2 9529:1 9536:1 9539:1 9541:1 9547:1 9573:1 9578:1 9589:1 9598:3 9610:1 9611:1 9612:1 9617:1 9625:2 9626:2 9645:1 9666:1 9687:3 9706:1 9707:2 9710:1 9721:2 9725:1 9733:1 9740:1 9747:4 9749:1 9751:9 9759:1 9769:1 9770:3 9772:1 9777:1 9778:1 9779:1 9791:1 9792:1 9797:2 9799:1 9800:5 9809:1 9812:1 9848:3 9866:1 9901:2 9904:1 9905:1 9906:1 9908:1 9910:1 9912:2 9913:2 9917:2 9918:3 9919:3 9920:2 9926:2 9929:5 9930:1 9932:1 9933:2 9940:2 9948:1 9950:1 9980:1 9986:2 9993:1 10018:7 10027:1 10032:2 10039:1 10050:1 10095:1 10105:1 10125:1 10129:1 10130:1 10147:2 10150:1 10153:1 10158:1 10165:1 10173:1 10182:3 10183:1 10193:1 10201:1 10207:1 10208:1 10212:1 10223:2 10224:1 10232:1 10277:1 10282:1 10288:1 10289:1 10313:1 10350:1 10362:1 10373:1 10386:1 10392:2 10412:1 10420:1 10421:4 10424:2 10426:3 10442:3 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10510:2 10515:1 10520:1 10536:2 10542:1 10562:1 10576:1 10579:1 10580:1 10581:1 10582:1 10587:1 10590:1 10593:5 10597:2 10613:1 10618:1 10634:1 10648:1 10662:1 10677:1 10704:2 10708:1 10714:1 10734:1 10736:1 10737:1 10742:1 10749:1 10751:2 10759:1 10762:1 10766:2 10768:10 10780:3 10784:1 10793:1 10794:1 10799:1 10801:1 10811:1 10817:1 10828:2 10840:1 10861:1 10870:4 10873:1 10881:1 10904:1 10929:1 10936:2 10937:2 10941:2 10944:1 10946:1 10949:1 10956:1 10957:3 10962:2 10972:1 10974:1 10983:1 11018:1 11042:1 11043:1 11049:4 11061:1 11067:1 11068:2 11073:2 11082:1 11085:2 11106:1 11109:1 11171:1 11184:2 11203:2 11210:1 11211:1 11212:7 11215:1 11220:2 11229:1 11230:1 11232:1 11234:1 11248:2 11250:1 11251:1 11252:1 11255:1 11264:1 11269:2 11271:1 11272:1 11281:1 11283:1 11303:1 11310:5 11311:2 11316:2 11320:2 11322:1 11351:1 11356:2 11367:1 11396:1 11423:1 11442:1 11444:4 11446:1 11489:1 11497:1 11508:1 11530:1 11546:2 11554:1 11577:1 11583:1 11593:4 11595:2 11599:1 11606:1 11615:1 11631:1 11636:1 11644:1 11666:4 11667:15 11670:1 11673:1 11701:1 11729:1 11733:1 11747:1 11757:1 11767:1 11778:2 11781:3 11797:1 11799:2 11802:2 11811:1 11813:1 11822:2 11834:2 11836:4 11847:1 11852:8 11878:3 11906:2 11907:2 11932:1 11942:1 11963:1 11968:1 11977:1 11983:2 12004:1 12008:1 12009:1 12015:1 12017:2 12034:1 12035:1 12055:2 12059:1 12060:1 12065:3 12083:6 12101:1 12115:2 12116:4 12117:3 12119:2 12140:1 12141:2 12143:2 12154:1 12173:1 12191:1 12192:1 12198:1 12202:34 12205:1 12206:1 12209:1 12215:1 12226:9 12229:17 12237:2 12244:1 12248:1 12255:1 12264:1 12288:1 12295:3 12296:1 12344:1 12364:1 12370:3 12378:1 12381:1 12383:1 12392:1 12420:1 12431:2 12440:1 12469:1 12491:1 12515:3 12518:5 12523:1 12529:1 12543:1 12549:1 12551:1 12553:1 12559:1 12566:12 12567:2 12590:1 12592:1 12593:3 12606:1 12618:1 12628:1 12633:1 12653:1 12666:1 12673:1 12682:1 12691:1 12693:2 12703:1 12709:1 12723:1 12754:3 12778:1 12783:5 12791:3 12814:5 12823:2 12839:1 12850:1 12852:2 12853:1 12874:2 12879:1 12880:1 12887:1 12895:1 12904:1 12919:1 12921:1 12938:15 12966:1 12970:1 12975:1 12976:1 12985:2 12986:1 13013:2 13047:1 13060:1 13064:1 13067:2 13070:1 13071:1 13084:2 13086:2 13107:1 13109:1 13124:1 13129:2 13175:1 13176:1 13177:3 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:1 13229:1 13240:3 13247:1 13253:1 13267:2 13270:2 13279:1 13289:1 13293:2 13296:1 13298:1 13309:1 13321:1 13324:2 13334:2 13346:1 13362:1 13363:2 13379:1 13384:1 13387:1 13392:2 13405:1 13412:2 13414:2 13417:3 13419:1 13451:1 13459:1 13471:1 13484:3 13489:1 13505:3 13506:1 13526:6 13529:1 13537:1 13542:1 13544:1 13547:1 13552:1 13553:2 13557:2 13562:1 13572:1 13573:2 13577:1 13579:3 13580:1 13581:2 13582:3 13587:1 13593:1 13597:2 13599:2 13606:3 13609:2 13619:2 13620:1 13632:1 13644:1 13646:1 13661:2 13672:1 13674:1 13682:1 13683:1 13703:4 13711:1 13715:17 13719:1 13724:1 13728:2 13735:1 13756:2 13786:5 13826:3 13832:1 13846:1 13851:1 13852:1 13854:1 13855:1 13861:1 13874:1 13881:1 13935:2 13943:1 13971:1 13972:1 13978:1 13982:1 13984:1 13986:2 13995:1 13999:2 14004:1 14007:1 14041:1 14061:1 14076:1 14082:1 14091:3 14093:2 14096:3 14099:1 14100:1 14101:2 14104:3 14114:2 14134:1 14137:1 14139:4 14152:1 14155:1 14172:1 14176:2 14184:2 14193:2 14241:4 14280:2 14281:1 14283:1 14290:1 14311:2 14312:1 14336:1 14345:1 14360:1 14364:1 14381:1 14391:1 14396:1 14429:2 14440:1 14457:3 14474:2 14475:3 14484:1 14488:1 14490:1 14492:2 14493:1 14512:1 14519:1 14529:1 14531:3 14548:1 14555:1 14561:5 14586:2 14591:2 14595:1 14604:1 14605:1 14612:1 14622:1 14641:1 14643:1 14646:1 14656:1 14658:1 14673:3 14675:1 14694:1 14703:1 14719:1 14720:1 14767:1 14768:5 14775:1 14777:1 14781:1 14784:1 14794:1 14795:1 14809:3 14836:1 14870:1 14872:2 14900:1 14902:1 14904:1 14907:2 14913:1 14924:1 14926:2 14929:1 14953:1 14955:3 14970:1 14973:1 14975:1 14982:1 14986:1 15016:1 15018:2 15039:5 15113:15 15121:2 15137:1 15141:1 15148:1 15151:1 15161:2 15162:4 15164:1 15167:2 15189:4 15193:1 15204:1 15205:2 15206:1 15215:1 15217:2 15227:3 15233:1 15235:2 15252:1 15266:2 15280:1 15281:2 15283:1 15291:1 15295:2 15319:1 15324:1 15330:2 15337:13 15344:2 15348:1 15367:1 15370:1 15377:2 15401:1 15403:1 15408:1 15413:1 15435:1 15441:4 15444:5 15454:1 15459:2 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15482:1 15499:1 15511:1 15528:1 15597:2 15600:1 15601:3 15621:1 15622:1 15643:1 15660:6 15661:1 15664:2 15671:1 15675:2 15678:4 15680:2 15682:1 15689:1 15698:1 15708:2 15714:2 15718:1 15723:1 15732:1 15744:1 15750:1 15757:1 15759:1 15764:1 15766:3 15772:1 15774:1 15776:1 15786:1 15825:1 15829:3 15830:1 15840:2 15844:1 15852:2 15877:1 15878:2 15892:3 15909:1 15932:5 15967:1 15980:1 15981:3 15986:1 16035:9 16037:1 16038:4 16046:1 16048:1 16050:1 16066:1 16080:1 16098:2 16107:1 16109:1 16133:3 16164:1 16172:2 16178:1 16189:1 16190:2 16197:1 16199:1 16236:1 16246:1 16261:1 16269:4 16282:1 16290:1 16297:4 16322:1 16338:1 16373:1 16393:2 16410:3 16425:1 16428:1 16435:1 16438:1 16449:1 16460:1 16464:1 16468:1 16480:1 16505:2 16508:4 16512:3 16523:1 16527:1 16548:1 16556:1 16557:1 16574:2 16588:2 16589:2 16593:2 16602:3 16607:1 16614:1 16615:6 16629:1 16636:3 16638:3 16640:3 16670:1 16674:1 16677:1 16702:1 16703:2 16728:1 16729:1 16735:1 16749:4 16763:2 16774:2 16782:6 16848:1 16862:1 16865:1 16869:1 16870:4 16872:3 16881:1 16911:1 16930:1 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16975:1 16990:1 16992:5 17008:1 17009:1 17020:1 17026:1 17033:3 17046:5 17048:1 17059:1 17089:1 17099:1 17102:1 17109:1 17128:2 17151:1 17160:2 17162:1 17164:6 17175:1 17185:1 17186:1 17187:5 17208:3 17211:5 17222:2 17231:1 17281:4 17283:1 17284:1 17311:2 17324:3 17336:1 17338:1 17347:1 17377:3 17389:4 17395:1 17424:1 17437:2 17442:2 17457:1 17465:2 17486:1 17501:2 17528:1 17530:1 17534:1 17539:1 17541:1 17543:1 17545:1 17546:3 17568:1 17577:1 17596:2 17618:1 17623:1 17632:1 17634:1 17667:1 17670:2 17681:1 17707:3 17708:1 17709:2 17725:1 17741:1 17744:1 17770:1 17785:1 17794:3 17811:1 17821:2 17824:1 17829:1 17841:1 17851:1 17853:5 17857:1 17862:1 17865:2 17894:1 17906:1 17908:1 17922:1 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17983:1 17986:1 17995:2 18004:1 18011:1 18025:6 18031:1 18032:1 18037:1 18047:1 18050:1 18057:1 18064:1 18078:1 18090:4 18104:3 18106:1 18123:1 18133:3 18134:1 18138:2 18205:1 18206:1 18209:3 18217:1 18230:3 18239:1 18240:4 18241:1 18257:1 18258:1 18265:1 18266:1 18267:1 18272:9 18275:1 18280:5 18281:1 18287:1 18292:1 18293:5 18303:1 18322:1 18334:4 18345:1 18368:2 18385:4 18391:1 18397:1 18399:2 18411:1 18446:1 18463:1 18470:1 18472:1 18482:1 18491:4 18509:3 18510:1 18513:1 18514:2 18525:1 18542:1 18547:2 18574:1 18586:1 18592:1 18623:1 18628:1 18646:1 18679:3 18703:5 18705:2 18713:1 18722:2 18723:1 18724:4 18725:4 18729:1 18735:2 18739:2 18766:2 18815:2 18833:1 18855:2 18856:1 18875:1 18883:3 18896:1 18900:1 18906:2 18922:1 18929:3 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18974:1 18980:1 18993:1 19004:3 19005:3 19007:15 19017:4 19052:1 19066:1 19089:2 19111:1 19126:1 19164:1 19195:1 19207:1 19236:1 19240:1 19252:1 19260:5 19262:2 19271:1 19281:1 19282:1 19290:1 19298:1 19299:2 19306:1 19310:1 19312:2 19319:1 19342:1 19357:1 19361:2 19373:2 19391:2 19397:3 19404:1 19418:1 19430:1 19439:1 19456:1 19476:2 19481:1 19492:1 19496:1 19498:2 19502:1 19512:1 19529:1 19595:1 19597:2 19604:3 19626:1 19631:3 19636:1 19640:1 19647:8 19653:1 19663:1 19697:2 19707:1 19712:2 19734:1 19754:1 19774:1 19776:1 19790:17 19791:1 19794:3 19796:1 19807:1 19820:1 19834:1 19843:1 19880:1 19936:6 19952:1 19959:1 19963:1 19969:1 19970:2 19974:3 19977:3 19978:1 20022:2 20023:3 20026:1 20032:2 20038:1 20041:1 20046:1 20055:1 20056:1 20062:1 20071:1 20075:1 20079:1 20106:2 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:2 20217:1 20237:1 20250:1 20255:1 20256:1 20263:1 20270:1 20284:1 20285:2 20291:1 20299:1 20311:1 20325:1 20351:1 20353:1 20378:1 20379:1 20392:1 20413:1 20414:1 20420:1 20424:1 20438:3 20511:7 20522:1 20536:1 20550:2 20572:1 20587:1 20590:2 20591:1 20599:1 20638:3 20642:1 20648:1 20653:3 20656:1 20664:1 20669:1 20678:1 20681:1 20696:1 20703:1 20724:2 20740:1 20741:1 20742:1 20747:2 20754:1 20767:1 20770:3 20777:1 20793:1 20794:1 20802:2 20819:1 20842:1 20852:1 20853:2 20859:2 20863:4 20905:1 20915:1 20916:2 20918:1 20924:1 20940:1 20941:2 20944:6 20955:1 20956:3 20961:1 20976:1 20987:2 21013:1 21014:3 21015:1 21018:1 21022:1 21029:4 21035:1 21040:3 21048:1 21061:1 21075:1 21077:1 21096:1 21099:7 21102:1 21104:1 21108:22 21109:2 21110:2 21113:2 21119:3 21121:1 21122:1 21125:1 21128:1 21133:2 21143:1 21145:1 21169:1 21171:12 21173:1 21201:2 21205:1 21209:1 21221:2 21222:1 21223:1 21224:1 21242:1 21243:3 21262:1 21276:1 21292:3 21315:1 21320:1 21321:1 21324:2 21329:1 21333:5 21338:1 21340:1 21361:1 21373:2 21374:1 21375:2 21381:1 21384:1 21391:4 21403:1 21406:4 21413:2 21415:1 21441:1 21459:2 21460:3 21470:2 21478:1 21482:1 21514:1 21530:1 21535:1 21536:1 21537:1 21538:2 21539:1 21540:1 21543:1 21575:1 21588:1 21598:1 21603:1 21609:1 21611:1 21622:1 21634:2 21635:1 21639:1 21640:1 21641:1 21647:2 21651:1 21668:1 21669:1 21703:1 21704:1 21711:7 21722:1 21750:1 21762:1 21778:2 21779:1 21782:4 21786:1 21795:1 21803:1 21804:1 21808:1 21826:1 21831:2 21835:1 21837:1 21843:1 21845:1 21866:1 21877:1 21880:2 21881:1 21889:3 21894:7 21907:3 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:3 21997:4 21998:2 22010:1 22017:3 22021:6 22024:1 22025:1 22037:1 22048:1 22065:1 22067:3 22071:2 22085:1 22090:1 22107:1 22108:1 22116:1 22119:1 22126:2 22135:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:3 22183:1 22185:1 22186:1 22190:1 22194:2 22237:1 22255:3 22269:1 22276:2 22325:1 22327:1 22340:1 22347:2 22349:4 22352:1 22360:5 22372:1 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22584:1 22589:1 22599:1 22636:2 22648:1 22649:1 22651:4 22662:1 22666:1 22672:3 22674:1 22675:1 22688:1 22690:1 22709:2 22717:1 22725:2 22731:1 22765:1 22783:2 22787:1 22794:1 22796:3 22812:1 22829:1 22840:2 22849:1 22877:1 22880:1 22897:1 22901:2 22907:1 22911:1 22936:1 22938:1 22943:1 22956:2 22964:1 22975:1 22977:1 22983:1 22985:6 22988:1 22997:1 23003:4 23018:2 23034:1 23068:2 23070:1 23076:1 23081:1 23114:1 23119:1 23141:1 23142:4 23160:2 23188:4 23258:1 23263:1 23274:1 23284:1 23286:3 23301:1 23345:1 23348:1 23359:1 23369:1 23370:1 23371:1 23376:1 23400:2 23426:1 23444:1 23466:2 23468:1 23496:3 23504:3
16 1:1 3:1 5:1 7:1 26:1 33:1 51:1 64:1 82:1 110:2 114:1 119:3 126:1 138:1 148:1 154:1 161:1 164:4 165:2 171:1 193:1 204:1 224:1 229:1 262:1 279:1 280:1 282:1 286:1 294:1 296:1 317:1 337:1 344:1 384:1 403:2 406:1 413:3 416:3 428:1 435:1 440:4 463:4 464:1 467:1 470:1 471:1 488:1 507:3 511:1 514:1 516:1 518:1 522:1 527:1 539:4 564:1 568:1 578:1 584:1 596:1 606:2 607:1 608:2 613:1 626:3 640:2 643:1 646:2 652:2 657:1 660:1 665:1 710:1 719:1 732:2 735:3 739:1 744:2 759:1 786:1 791:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:1 855:2 860:3 886:8 896:1 898:1 902:7 904:1 910:1 914:3 947:2 960:1 962:2 967:2 993:1 996:3 1010:3 1032:1 1035:1 1048:2 1049:1 1060:1 1071:4 1078:1 1086:1 1098:1 1113:1 1115:2 1117:1 1118:1 1120:1 1131:4 1133:1 1145:2 1148:1 1160:1 1162:1 1172:1 1174:1 1178:1 1188:1 1190:3 1191:1 1194:2 1195:5 1196:1 1203:1 1207:1 1208:1 1235:1 1236:5 1242:4 1268:2 1291:1 1292:1 1298:1 1316:1 1325:1 1348:1 1362:1 1363:1 1366:2 1376:1 1382:2 1384:1 1391:2 1399:4 1405:1 1417:1 1425:1 1428:1 1450:2 1451:1 1488:2 1494:2 1526:2 1537:2 1544:2 1562:1 1564:2 1573:3 1574:1 1578:1 1579:2 1580:5 1581:2 1596:1 1600:1 1612:1 1616:2 1628:8 1644:1 1647:5 1648:2 1649:2 1671:1 1672:2 1674:1 1679:2 1682:1 1683:1 1686:1 1714:1 1721:1 1737:2 1738:1 1752:17 1789:1 1792:1 1794:1 1802:5 1803:1 1807:1 1809:1 1829:2 1841:1 1844:1 1857:50 1869:1 1890:3 1899:1 1930:3 1935:1 1943:1 1965:1 1968:1 1977:2 1978:1 1980:1 1981:1 1982:2 2001:1 2003:4 2023:1 2027:1 2032:1 2034:2 2035:1 2036:2 2042:1 2044:2 2045:3 2047:1 2053:2 2057:1 2063:3 2087:1 2095:1 2103:1 2105:1 2109:3 2112:1 2123:2 2124:2 2142:1 2145:1 2150:1 2156:1 2158:1 2161:1 2174:1 2182:2 2191:1 2192:1 2215:1 2231:1 2234:2 2236:1 2288:1 2297:1 2301:1 2310:5 2339:1 2343:3 2345:1 2354:1 2358:1 2367:2 2368:1 2379:1 2384:1 2402:1 2414:6 2435:1 2447:5 2450:1 2459:1 2469:2 2479:2 2481:1 2483:2 2484:1 2494:1 2499:1 2512:3 2547:1 2554:5 2562:1 2573:1 2581:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:2 2639:2 2642:1 2643:1 2658:3 2667:3 2671:2 2673:1 2683:1 2685:1 2688:1 2701:2 2702:1 2705:4 2708:3 2716:1 2718:1 2740:1 2746:1 2749:1 2763:1 2764:2 2773:3 2774:1 2778:1 2779:1 2781:1 2793:2 2795:1 2798:1 2801:1 2810:2 2814:1 2816:3 2828:2 2840:3 2860:1 2870:1 2878:1 2892:1 2895:2 2896:1 2899:1 2902:1 2904:1 2914:1 2921:1 2926:1 2927:1 2936:1 2942:1 2954:1 2966:10 2970:1 2979:1 2981:1 2986:1 2990:1 3004:1 3012:1 3014:1 3017:1 3023:1 3027:1 3033:1 3035:4 3043:1 3048:1 3052:1 3065:1 3066:2 3070:2 3084:1 3096:1 3098:1 3136:1 3141:1 3153:1 3156:1 3161:1 3168:2 3169:2 3170:1 3172:2 3177:3 3178:1 3186:1 3218:2 3219:1 3221:1 3223:3 3229:2 3234:1 3237:2 3240:1 3242:1 3255:1 3260:1 3264:3 3266:1 3268:1 3272:2 3274:1 3293:1 3302:1 3311:1 3314:2 3316:2 3343:1 3345:4 3382:1 3396:1 3409:2 3421:1 3437:1 3452:1 3462:1 3468:1 3473:2 3483:1 3519:1 3538:1 3540:1 3541:2 3542:1 3545:2 3546:4 3552:1 3553:1 3554:3 3555:1 3556:1 3559:5 3560:1 3562:3 3564:1 3567:1 3573:5 3575:3 3576:6 3590:1 3606:2 3622:1 3637:1 3642:1 3644:1 3652:2 3656:1 3661:2 3673:1 3686:2 3694:1 3698:1 3701:1 3703:2 3705:1 3706:3 3711:1 3726:1 3740:1 3746:1 3752:3 3759:1 3761:1 3786:1 3792:1 3812:1 3819:1 3827:2 3854:2 3860:3 3865:1 3871:1 3875:1 3892:4 3906:2 3936:1 3946:1 3951:1 3952:1 3974:1 3990:1 4004:1 4006:1 4010:1 4027:3 4030:1 4034:1 4038:1 4050:1 4052:2 4058:1 4059:1 4072:1 4083:2 4085:1 4089:2 4104:1 4105:1 4109:1 4117:2 4127:1 4134:1 4146:1 4150:1 4154:1 4182:2 4183:2 4184:2 4197:1 4208:4 4219:1 4226:3 4242:1 4243:1 4244:1 4248:1 4255:1 4257:1 4260:2 4262:7 4281:1 4283:1 4295:1 4296:2 4311:1 4317:1 4323:1 4335:2 4338:3 4342:1 4343:2 4358:1 4380:1 4386:1 4393:2 4398:2 4413:1 4414:1 4417:4 4424:1 4427:2 4473:1 4480:1 4481:2 4488:2 4490:1 4511:4 4512:1 4513:8 4515:1 4516:1 4526:1 4533:1 4540:1 4560:1 4561:10 4577:7 4589:1 4616:2 4631:1 4632:1 4650:22 4658:1 4671:1 4675:1 4699:1 4701:1 4702:1 4705:2 4714:2 4720:1 4730:1 4735:2 4741:1 4746:1 4760:1 4766:1 4769:1 4781:1 4786:1 4807:2 4812:1 4818:1 4837:2 4844:4 4845:1 4860:1 4902:1 4932:3 4937:1 4955:1 4966:1 4968:1 4984:1 4990:1 5034:3 5038:1 5047:1 5059:1 5060:1 5084:4 5092:1 5099:1 5112:1 5120:10 5130:2 5132:1 5139:1 5144:3 5159:1 5161:2 5170:1 5175:1 5183:1 5196:1 5199:1 5226:1 5227:3 5234:1 5253:5 5279:1 5297:1 5310:1 5341:1 5344:1 5352:1 5353:3 5365:1 5366:1 5383:3 5388:1 5390:1 5398:3 5405:1 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5459:1 5465:1 5466:1 5467:1 5480:3 5510:1 5517:1 5521:2 5525:1 5542:1 5543:1 5560:3 5565:1 5601:1 5619:1 5621:3 5623:1 5627:2 5632:1 5633:1 5659:1 5661:9 5667:1 5668:1 5677:1 5690:1 5701:1 5710:1 5724:1 5732:1 5748:3 5762:1 5779:1 5780:1 5805:1 5809:1 5816:2 5817:32 5820:2 5851:2 5853:1 5855:7 5858:1 5861:1 5869:1 5870:18 5871:1 5872:2 5873:1 5876:4 5896:1 5898:2 5919:3 5932:1 5934:3 5939:2 5947:1 5953:3 5957:2 5961:1 5963:1 5967:2 5970:1 5994:3 6003:1 6005:3 6014:2 6017:1 6018:1 6025:1 6055:1 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6095:1 6101:3177 6102:1 6107:1 6117:1 6133:1 6140:4 6149:2 6165:1 6179:1 6180:1 6183:1 6184:1 6193:1 6195:1 6198:1 6201:1 6205:1 6210:3 6220:1 6232:1 6233:3 6248:1 6253:1 6273:3 6289:1 6313:1 6349:3 6376:2 6379:1 6399:2 6401:1 6407:2 6434:1 6448:3 6450:2 6458:1 6463:1 6471:2 6480:1 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6547:1 6559:1 6576:1 6577:1 6581:1 6590:1 6601:1 6640:1 6644:4 6650:1 6666:1 6692:1 6698:1 6705:8 6715:2 6725:1 6748:2 6750:1 6777:1 6782:1 6784:1 6787:1 6792:5 6798:1 6802:2 6817:1 6830:4 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6880:1 6888:1 6936:1 6951:1 6956:2 6957:1 6962:1 6974:2 6975:1 6981:4 7006:1 7017:1 7050:1 7066:1 7080:1 7097:2 7104:1 7110:2 7124:1 7134:3 7137:1 7139:1 7153:1 7157:3 7167:2 7203:2 7208:1 7213:1 7238:1 7276:1 7305:1 7319:1 7320:1 7329:1 7337:2 7340:1 7348:2 7349:1 7363:2 7376:1 7377:4 7383:2 7397:2 7405:1 7408:3 7415:1 7444:1 7450:1 7452:1 7474:1 7476:10 7483:1 7488:1 7507:13 7508:1 7515:1 7516:1 7519:1 7520:1 7523:12 7529:1 7539:1 7555:2 7581:1 7582:3 7584:2 7591:1 7607:1 7614:1 7632:1 7635:1 7638:3 7649:1 7663:1 7670:3 7671:2 7680:1 7684:3 7686:2 7689:1 7693:3 7694:1 7696:4 7702:1 7719:2 7722:1 7730:2 7732:2 7733:6 7734:1 7735:1 7736:1 7740:2 7742:1 7750:17 7751:1 7753:1 7758:1 7762:2 7765:3 7773:1 7782:1 7788:3 7794:1 7811:1 7814:1 7817:2 7823:3 7871:1 7883:1 7887:1 7922:2 7935:1 7948:1 7995:1 8003:1 8034:1 8052:1 8065:1 8089:1 8091:10 8096:3 8097:3 8107:1 8108:5 8168:1 8177:1 8187:1 8209:1 8222:2 8224:1 8225:17 8231:1 8234:5 8254:1 8270:1 8298:2 8301:1 8314:1 8317:1 8325:1 8326:1 8351:1 8356:1 8357:1 8361:1 8367:2 8372:1 8373:1 8385:1 8412:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8469:1 8490:2 8491:1 8510:1 8520:1 8522:1 8525:1 8537:1 8544:1 8555:1 8558:1 8569:1 8573:2 8578:1 8579:2 8598:2 8599:1 8605:1 8609:1 8618:2 8624:2 8634:2 8644:6 8673:1 8674:1 8679:1 8684:1 8692:1 8709:1 8713:2 8719:1 8723:1 8746:1 8748:10 8755:1 8756:1 8757:1 8769:2 8771:2 8780:2 8789:1 8791:1 8796:1 8802:1 8828:1 8831:10 8838:1 8856:1 8889:1 8894:1 8900:3 8903:1 8930:1 8937:2 8948:1 8957:1 8970:1 8973:1 8976:1 8980:1 8985:1 9017:1 9024:1 9029:1 9031:1 9048:1 9053:2 9065:1 9069:1 9083:1 9089:4 9091:1 9119:1 9139:1 9158:2 9169:1 9180:3 9208:4 9215:1 9217:3 9218:1 9227:1 9231:2 9253:1 9280:1 9285:1 9292:1 9314:2 9370:1 9374:1 9393:1 9400:1 9402:5 9413:1 9416:2 9419:1 9445:1 9477:1 9497:2 9509:1 9514:1 9528:2 9529:1 9536:1 9539:1 9541:1 9547:1 9573:1 9578:2 9589:1 9598:3 9610:1 9611:1 9612:1 9617:1 9625:2 9626:2 9645:1 9666:1 9687:3 9706:1 9707:2 9710:1 9719:1 9721:2 9725:1 9733:1 9740:1 9747:5 9749:1 9751:9 9759:1 9769:1 9770:3 9772:1 9777:1 9778:1 9779:1 9791:1 9792:1 9797:2 9799:1 9800:5 9809:1 9812:1 9848:3 9854:1 9866:1 9901:2 9904:1 9905:1 9906:1 9908:1 9910:1 9912:2 9913:2 9917:2 9918:3 9919:3 9920:2 9926:2 9929:6 9930:1 9932:1 9933:2 9940:2 9948:1 9950:1 9980:1 9986:2 9993:1 10018:7 10025:1 10027:1 10032:2 10039:1 10050:1 10095:1 10105:1 10125:1 10129:1 10130:1 10147:2 10150:1 10153:1 10158:1 10165:1 10173:1 10182:3 10183:1 10193:1 10201:1 10207:1 10208:1 10212:1 10223:2 10224:1 10226:1 10232:1 10277:1 10282:1 10288:1 10289:1 10313:1 10350:1 10362:1 10373:1 10386:1 10392:2 10412:1 10420:1 10421:4 10424:2 10426:3 10442:3 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10510:2 10515:1 10520:1 10536:3 10542:1 10562:1 10576:1 10579:1 10580:1 10581:1 10582:1 10587:1 10590:1 10593:5 10597:2 10613:1 10618:1 10634:1 10648:1 10662:1 10677:1 10704:2 10708:1 10714:1 10734:1 10736:1 10737:1 10742:1 10749:1 10751:2 10759:1 10762:1 10766:2 10768:10 10780:3 10784:1 10793:1 10794:1 10799:1 10801:1 10811:1 10817:1 10828:2 10840:1 10842:1 10861:1 10870:4 10873:1 10881:1 10904:1 10929:1 10936:2 10937:2 10941:2 10944:1 10946:1 10949:1 10953:1 10956:1 10957:4 10962:2 10972:1 10974:1 10983:1 11018:1 11042:1 11043:1 11049:4 11061:1 11067:1 11068:2 11073:3 11082:1 11085:2 11106:1 11109:1 11171:1 11184:2 11203:3 11210:1 11211:1 11212:7 11215:1 11220:2 11229:1 11230:1 11232:1 11234:1 11248:2 11250:1 11251:1 11252:1 11255:1 11264:1 11269:2 11271:1 11272:1 11281:1 11283:1 11303:1 11310:5 11311:2 11316:2 11320:2 11322:1 11351:1 11356:2 11367:1 11396:1 11423:1 11442:1 11444:4 11446:1 11489:1 11497:1 11508:1 11530:1 11546:2 11554:1 11577:1 11583:1 11593:4 11595:2 11599:1 11606:1 11615:1 11631:1 11636:1 11644:1 11666:4 11667:17 11670:2 11673:1 11701:1 11729:1 11733:1 11747:1 11749:1 11757:1 11767:1 11778:2 11781:3 11797:1 11799:2 11802:2 11811:1 11813:1 11819:1 11822:2 11834:2 11836:4 11847:1 11852:8 11878:3 11906:2 11907:2 11932:1 11942:1 11963:1 11968:1 11977:1 11983:2 12004:1 12008:1 12009:1 12015:1 12017:2 12034:1 12035:1 12055:2 12059:1 12060:1 12065:3 12083:6 12101:1 12115:3 12116:4 12117:3 12119:2 12140:1 12141:2 12143:2 12154:1 12173:1 12191:1 12192:1 12198:1 12202:35 12205:1 12206:1 12209:1 12215:1 12226:9 12229:18 12237:2 12244:1 12248:1 12255:1 12259:1 12264:1 12288:1 12295:3 12296:1 12344:1 12364:1 12370:3 12378:1 12381:1 12383:1 12392:1 12420:1 12431:2 12440:1 12469:1 12491:1 12515:3 12518:5 12523:1 12529:1 12543:1 12549:1 12551:1 12553:1 12559:1 12566:12 12567:2 12584:1 12590:1 12592:1 12593:4 12606:1 12618:1 12628:1 12630:1 12633:1 12653:1 12666:1 12673:1 12682:1 12691:1 12693:2 12703:1 12709:1 12723:1 12731:1 12754:3 12778:1 12783:5 12791:3 12814:5 12823:2 12839:1 12850:1 12852:2 12853:1 12874:2 12879:1 12880:1 12887:1 12895:1 12904:1 12919:1 12921:1 12938:16 12966:1 12970:1 12975:1 12976:1 12985:2 12986:1 13013:2 13047:1 13060:1 13064:1 13067:2 13070:1 13071:1 13084:2 13086:2 13107:1 13109:1 13124:1 13129:2 13175:1 13176:1 13177:3 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:1 13229:1 13240:3 13247:1 13253:1 13267:2 13270:3 13279:1 13289:1 13293:2 13296:1 13298:1 13309:1 13321:1 13324:2 13334:2 13346:1 13362:1 13363:2 13379:1 13384:1 13386:1 13387:1 13392:2 13405:1 13412:2 13414:2 13417:3 13419:1 13451:1 13459:1 13471:1 13484:3 13489:1 13502:1 13505:3 13506:1 13526:6 13529:1 13537:1 13542:1 13544:1 13547:1 13552:1 13553:2 13557:2 13562:1 13572:1 13573:2 13577:1 13579:3 13580:1 13581:2 13582:4 13587:1 13593:1 13597:2 13599:2 13606:3 13609:2 13619:2 13620:1 13632:1 13644:1 13646:1 13661:2 13672:1 13674:1 13682:1 13683:1 13703:4 13711:1 13715:19 13719:1 13724:1 13728:2 13735:1 13756:2 13781:1 13786:5 13826:3 13832:1 13846:1 13851:1 13852:1 13854:1 13855:1 13861:1 13874:1 13881:1 13935:2 13943:1 13944:1 13971:1 13972:1 13978:1 13982:1 13984:1 13986:2 13995:1 13999:3 14004:1 14007:1 14041:1 14051:1 14061:1 14076:1 14082:1 14091:3 14093:2 14096:3 14099:1 14100:1 14101:2 14104:3 14114:2 14134:1 14137:1 14139:4 14152:1 14155:1 14172:1 14176:2 14184:2 14193:2 14241:4 14280:2 14281:1 14283:1 14290:1 14311:2 14312:1 14336:1 14345:1 14360:1 14364:1 14381:1 14386:1 14391:1 14396:1 14416:1 14429:2 14440:1 14457:3 14474:2 14475:3 14484:1 14488:1 14490:1 14492:2 14493:1 14512:1 14519:1 14529:1 14530:1 14531:3 14548:1 14555:1 14561:5 14586:2 14591:2 14595:1 14604:1 14605:1 14612:1 14622:1 14641:1 14643:1 14646:1 14656:1 14658:1 14673:3 14675:1 14694:1 14703:1 14719:1 14720:1 14759:1 14767:1 14768:5 14775:1 14777:1 14781:1 14784:1 14794:1 14795:1 14809:3 14836:1 14870:1 14872:2 14900:1 14902:1 14904:1 14907:2 14913:2 14924:1 14926:2 14929:1 14953:1 14955:3 14970:1 14973:1 14975:1 14982:1 14986:1 15016:1 15018:2 15039:5 15065:1 15113:17 15114:1 15121:2 15137:1 15141:1 15143:1 15148:1 15151:1 15161:2 15162:5 15164:1 15167:2 15189:4 15193:1 15204:1 15205:2 15206:1 15215:1 15217:2 15227:3 15233:1 15235:2 15252:1 15266:2 15280:1 15281:2 15283:1 15291:1 15295:2 15319:1 15324:1 15330:2 15337:13 15344:2 15348:1 15367:1 15370:1 15377:2 15401:1 15403:1 15408:1 15413:1 15435:1 15441:4 15444:5 15454:1 15459:2 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15482:1 15499:1 15511:1 15528:1 15597:2 15600:1 15601:3 15621:1 15622:2 15643:1 15660:6 15661:1 15664:2 15671:1 15675:2 15678:4 15680:2 15682:1 15689:1 15693:1 15698:1 15708:2 15714:2 15718:1 15723:1 15732:1 15744:1 15750:1 15757:1 15759:1 15764:1 15766:3 15772:1 15774:1 15776:1 15786:1 15822:1 15825:1 15829:3 15830:1 15840:3 15844:1 15852:2 15877:1 15878:2 15892:3 15898:1 15909:1 15932:5 15967:1 15980:1 15981:3 15986:1 16035:9 16037:1 16038:5 16046:1 16048:1 16050:1 16066:1 16080:1 16098:2 16107:1 16109:1 16133:3 16160:1 16164:1 16172:2 16178:1 16189:1 16190:2 16197:1 16199:1 16236:1 16246:1 16261:1 16269:4 16282:1 16290:1 16297:4 16317:1 16322:1 16338:1 16341:1 16373:1 16393:2 16410:3 16414:1 16425:1 16428:1 16435:1 16438:1 16449:1 16460:1 16464:1 16468:1 16480:1 16505:2 16508:4 16512:3 16523:1 16527:1 16548:1 16556:1 16557:1 16574:2 16588:2 16589:2 16593:2 16602:3 16607:1 16614:1 16615:6 16629:1 16636:3 16638:3 16640:3 16670:1 16674:1 16677:1 16702:1 16703:2 16728:1 16729:1 16735:1 16749:4 16763:2 16774:2 16782:6 16848:1 16862:1 16865:1 16869:1 16870:7 16872:3 16881:1 16911:1 16930:1 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16975:1 16990:1 16992:5 17008:1 17009:1 17020:1 17026:1 17033:3 17046:5 17048:1 17059:1 17089:1 17099:1 17102:1 17106:1 17109:1 17128:2 17151:1 17160:2 17162:1 17164:6 17175:1 17185:1 17186:1 17187:5 17208:3 17211:5 17222:2 17231:1 17237:1 17281:4 17283:1 17284:1 17311:2 17324:3 17336:1 17338:2 17347:1 17377:3 17389:4 17395:1 17424:1 17437:2 17442:2 17457:1 17465:2 17486:1 17501:2 17528:1 17530:1 17534:1 17539:1 17540:1 17541:1 17543:1 17545:1 17546:3 17568:1 17577:1 17596:2 17618:1 17623:1 17632:1 17634:1 17667:1 17670:2 17681:1 17707:4 17708:1 17709:2 17725:1 17741:1 17744:1 17770:1 17785:1 17794:3 17811:1 17818:1 17821:2 17824:1 17829:1 17841:1 17851:2 17852:1 17853:5 17857:1 17862:2 17865:2 17894:1 17906:1 17908:1 17922:1 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17983:1 17986:1 17995:2 18004:1 18011:1 18025:6 18031:2 18032:1 18037:1 18047:1 18050:1 18057:1 18064:1 18078:1 18087:1 18090:4 18104:3 18106:1 18123:1 18133:3 18134:1 18138:2 18197:1 18205:1 18206:1 18209:3 18217:1 18230:3 18239:1 18240:4 18241:1 18257:1 18258:1 18261:1 18265:1 18266:1 18267:1 18272:9 18275:1 18280:5 18281:1 18287:1 18292:1 18293:5 18303:1 18322:1 18334:4 18345:1 18348:1 18368:2 18385:5 18391:1 18397:1 18399:2 18411:1 18446:1 18463:1 18470:1 18472:1 18482:1 18491:4 18509:3 18510:1 18513:1 18514:2 18525:1 18542:1 18547:2 18574:1 18586:1 18592:1 18623:1 18628:1 18632:1 18646:1 18679:3 18703:5 18705:2 18713:1 18722:2 18723:1 18724:4 18725:4 18729:1 18735:2 18739:2 18766:2 18792:1 18815:2 18833:1 18855:3 18856:1 18875:1 18883:3 18896:1 18900:1 18906:2 18922:1 18929:3 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18974:2 18980:1 18993:1 19004:3 19005:3 19007:17 19017:4 19040:1 19052:1 19055:1 19066:1 19089:2 19111:1 19126:1 19134:1 19164:1 19195:1 19207:1 19236:1 19240:1 19252:1 19260:6 19262:2 19271:1 19281:1 19282:1 19290:1 19298:1 19299:2 19306:1 19310:1 19312:2 19319:1 19342:1 19357:1 19361:2 19373:2 19391:2 19397:3 19404:1 19418:1 19430:1 19439:1 19456:1 19476:2 19481:1 19492:1 19496:1 19498:2 19502:1 19512:1 19529:1 19595:1 19597:2 19604:3 19626:1 19631:3 19636:1 19640:1 19647:8 19653:1 19663:1 19697:2 19707:1 19712:2 19727:1 19734:1 19754:1 19774:1 19776:1 19790:19 19791:1 19794:3 19796:1 19807:1 19820:1 19834:1 19843:2 19855:1 19880:1 19936:6 19952:1 19959:1 19963:1 19969:1 19970:2 19974:3 19977:3 19978:1 20021:1 20022:2 20023:3 20026:1 20032:2 20038:2 20041:1 20046:1 20055:1 20056:1 20062:1 20071:1 20075:1 20079:1 20080:1 20106:2 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:2 20217:1 20237:1 20250:1 20255:1 20256:1 20263:1 20270:1 20284:1 20285:2 20291:1 20299:1 20311:1 20325:1 20351:2 20353:1 20378:1 20379:1 20392:1 20413:1 20414:1 20420:1 20424:1 20438:3 20511:7 20522:1 20536:1 20550:3 20572:1 20587:1 20590:2 20591:1 20599:1 20638:3 20642:1 20648:1 20653:3 20656:1 20664:1 20669:1 20678:1 20681:1 20696:1 20703:1 20724:2 20733:1 20740:1 20741:1 20742:1 20747:2 20754:1 20767:1 20770:3 20777:1 20793:1 20794:1 20802:2 20819:1 20842:1 20852:1 20853:3 20859:2 20863:4 20905:1 20915:1 20916:2 20918:1 20924:1 20940:1 20941:2 20944:6 20955:1 20956:3 20961:1 20976:1 20987:3 21013:1 21014:3 21015:1 21018:1 21022:1 21029:4 21035:1 21040:3 21048:1 21061:1 21066:1 21074:1 21075:1 21077:1 21096:1 21099:7 21102:1 21104:1 21108:23 21109:2 21110:2 21113:2 21119:4 21121:1 21122:1 21125:1 21128:1 21133:2 21143:1 21145:1 21146:1 21169:1 21171:12 21173:1 21201:2 21205:1 21209:1 21221:2 21222:1 21223:1 21224:1 21242:1 21243:3 21247:1 21262:1 21276:2 21292:3 21315:1 21320:1 21321:1 21324:2 21329:2 21333:5 21338:1 21340:2 21353:1 21361:1 21373:2 21374:1 21375:2 21381:1 21384:1 21391:4 21403:1 21406:4 21413:2 21415:1 21441:1 21459:2 21460:3 21470:2 21478:1 21482:1 21514:1 21528:1 21530:1 21535:1 21536:1 21537:1 21538:2 21539:1 21540:1 21543:1 21551:1 21570:1 21575:1 21588:1 21598:1 21603:1 21609:1 21611:1 21622:1 21634:2 21635:1 21639:1 21640:1 21641:1 21647:2 21651:1 21668:1 21669:1 21703:1 21704:1 21711:7 21712:1 21722:1 21750:1 21762:1 21778:2 21779:1 21782:4 21786:1 21795:1 21803:1 21804:1 21808:1 21826:1 21831:2 21835:1 21837:1 21843:1 21845:1 21866:1 21877:1 21880:2 21881:1 21889:4 21894:7 21907:3 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:3 21997:4 21998:2 22010:1 22017:3 22021:6 22024:1 22025:1 22037:1 22048:1 22065:1 22067:3 22070:1 22071:2 22085:1 22090:1 22107:1 22108:1 22116:1 22119:1 22126:2 22135:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:3 22183:1 22185:1 22186:2 22190:1 22194:2 22237:1 22255:3 22268:1 22269:1 22276:2 22325:1 22327:1 22340:1 22347:2 22349:4 22352:1 22360:5 22372:1 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22584:1 22589:1 22599:1 22601:1 22621:1 22636:2 22648:2 22649:1 22651:4 22662:1 22666:1 22672:3 22674:1 22675:1 22688:1 22690:1 22709:2 22717:1 22725:2 22731:1 22765:1 22783:2 22787:1 22794:1 22796:3 22812:1 22829:1 22840:2 22849:1 22877:1 22880:1 22897:1 22901:3 22907:1 22911:1 22936:1 22938:1 22943:1 22956:2 22964:1 22975:1 22977:1 22983:1 22985:6 22988:1 22997:1 23003:4 23018:2 23034:1 23061:1 23068:2 23070:1 23076:2 23081:1 23114:1 23119:1 23141:1 23142:4 23160:2 23188:4 23258:1 23263:1 23274:1 23284:1 23286:3 23301:1 23339:1 23345:1 23348:1 23359:1 23369:1 23370:1 23371:1 23376:1 23400:2 23426:1 23444:1 23449:1 23466:2 23468:1 23496:3 23504:3
16 1:1 3:1 5:1 7:1 26:1 33:1 51:1 64:1 82:1 110:2 114:1 119:3 126:1 138:1 148:1 154:1 161:1 164:4 165:2 171:1 193:1 204:1 224:1 229:1 262:1 279:1 280:1 282:1 286:1 294:1 296:1 317:1 337:1 344:1 347:1 384:1 403:2 406:1 413:3 416:3 428:1 435:1 440:4 463:4 464:1 467:1 470:1 471:1 488:1 507:4 511:1 514:1 516:1 518:1 522:1 527:1 539:4 564:1 568:1 578:1 584:1 596:1 606:2 607:1 608:2 613:1 626:3 640:2 643:1 646:2 652:2 657:1 660:1 665:1 710:1 719:1 732:2 735:3 739:1 744:2 759:1 786:1 791:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:1 855:2 860:3 863:1 886:8 896:1 898:1 902:8 904:1 910:1 914:3 947:2 960:1 962:2 967:2 993:1 996:3 1010:3 1032:1 1035:1 1048:2 1049:1 1060:1 1071:4 1078:1 1086:1 1098:1 1113:1 1115:2 1117:1 1118:1 1120:1 1131:4 1133:1 1145:2 1148:1 1157:1 1160:1 1162:1 1164:1 1172:1 1174:1 1178:1 1188:1 1190:4 1191:1 1194:2 1195:5 1196:1 1203:1 1207:1 1208:1 1235:1 1236:5 1242:4 1268:2 1291:1 1292:1 1298:1 1316:1 1325:1 1348:1 1362:1 1363:1 1366:2 1376:1 1382:2 1384:1 1391:2 1399:4 1405:1 1417:1 1425:1 1428:1 1450:2 1451:1 1488:2 1494:2 1526:2 1529:1 1537:2 1544:2 1559:1 1562:1 1564:2 1573:3 1574:1 1578:1 1579:3 1580:6 1581:2 1588:1 1596:1 1600:1 1612:1 1616:2 1628:8 1644:1 1647:6 1648:2 1649:2 1671:1 1672:2 1674:1 1679:2 1682:1 1683:1 1686:1 1714:1 1721:1 1737:2 1738:1 1752:17 1789:1 1792:1 1794:1 1802:5 1803:1 1807:1 1809:1 1829:2 1841:1 1844:1 1857:50 1869:1 1890:3 1899:1 1930:3 1935:1 1943:1 1965:1 1968:1 1977:2 1978:1 1980:1 1981:1 1982:2 2001:1 2003:4 2023:2 2027:1 2032:1 2034:2 2035:1 2036:2 2042:1 2044:2 2045:4 2047:1 2053:2 2057:1 2062:1 2063:3 2087:1 2095:1 2103:1 2105:1 2109:4 2112:1 2123:2 2124:2 2142:1 2145:1 2150:1 2156:1 2158:1 2161:1 2174:1 2182:2 2191:1 2192:1 2215:1 2231:1 2234:2 2236:1 2288:1 2297:1 2301:1 2310:5 2339:1 2343:3 2345:1 2354:1 2358:1 2363:1 2367:2 2368:1 2379:1 2384:1 2402:1 2414:6 2435:1 2447:6 2450:1 2459:1 2469:2 2479:2 2481:1 2483:2 2484:1 2494:1 2499:1 2512:4 2533:1 2547:1 2554:5 2562:1 2573:1 2581:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:2 2639:2 2642:1 2643:1 2658:4 2667:4 2671:2 2673:1 2683:1 2685:1 2688:1 2701:2 2702:1 2705:4 2708:3 2716:1 2718:1 2740:1 2746:1 2749:1 2763:1 2764:2 2773:4 2774:1 2778:1 2779:1 2781:1 2793:2 2795:1 2798:1 2801:1 2810:2 2814:1 2816:3 2828:2 2840:3 2860:1 2870:1 2878:1 2892:1 2895:2 2896:1 2899:1 2902:1 2904:1 2914:1 2921:1 2926:1 2927:1 2936:1 2942:1 2954:1 2966:10 2970:1 2979:1 2981:1 2986:1 2990:1 3002:1 3004:1 3012:1 3014:1 3017:1 3023:1 3027:1 3033:1 3035:4 3039:1 3043:1 3048:1 3052:1 3065:1 3066:3 3070:2 3084:1 3096:1 3098:1 3136:1 3141:1 3153:1 3156:1 3161:1 3168:2 3169:2 3170:1 3172:2 3177:3 3178:1 3186:1 3218:2 3219:1 3221:1 3223:3 3229:2 3234:1 3237:2 3240:1 3242:1 3255:1 3260:1 3264:3 3266:1 3268:1 3272:2 3274:1 3293:1 3302:1 3311:1 3314:2 3316:2 3343:1 3345:4 3359:1 3382:1 3396:1 3409:3 3421:1 3437:1 3452:1 3462:1 3468:1 3473:3 3483:1 3519:1 3538:1 3540:1 3541:2 3542:1 3545:2 3546:4 3552:1 3553:1 3554:4 3555:1 3556:1 3559:5 3560:1 3562:3 3564:1 3567:1 3573:5 3575:3 3576:6 3590:1 3597:1 3606:2 3622:1 3637:1 3642:1 3644:1 3652:2 3656:1 3661:2 3673:2 3686:2 3694:1 3698:1 3701:1 3703:2 3705:1 3706:3 3711:1 3726:1 3738:1 3740:1 3746:1 3752:3 3759:1 3761:1 3786:1 3792:1 3812:1 3819:1 3827:2 3854:2 3860:3 3865:1 3871:1 3875:1 3892:4 3906:2 3936:1 3946:1 3951:1 3952:1 3974:1 3990:1 4004:1 4006:1 4010:1 4027:4 4030:1 4034:1 4038:1 4050:1 4052:2 4058:1 4059:1 4072:1 4083:2 4085:1 4089:2 4104:1 4105:1 4109:1 4117:2 4127:1 4134:1 4146:1 4150:1 4154:1 4174:1 4182:2 4183:2 4184:2 4197:1 4208:4 4219:1 4226:3 4242:1 4243:2 4244:1 4248:1 4255:1 4257:1 4260:2 4262:7 4281:1 4283:1 4295:1 4296:2 4311:1 4317:1 4323:1 4335:2 4338:3 4342:1 4343:2 4358:1 4379:1 4380:1 4386:1 4393:2 4398:2 4413:1 4414:1 4417:4 4424:1 4427:2 4473:2 4480:1 4481:2 4488:2 4490:1 4511:4 4512:1 4513:8 4515:2 4516:1 4526:1 4533:1 4540:1 4560:1 4561:10 4577:7 4589:1 4616:2 4631:1 4632:1 4650:24 4658:1 4671:1 4675:1 4699:1 4701:1 4702:1 4705:2 4714:3 4720:1 4730:1 4735:2 4741:2 4746:1 4760:1 4766:1 4769:1 4781:1 4786:1 4807:2 4812:1 4818:1 4837:2 4844:4 4845:1 4860:1 4902:1 4932:3 4937:1 4955:1 4966:1 4968:1 4984:1 4990:1 5034:3 5038:1 5047:1 5048:1 5059:1 5060:1 5084:4 5092:1 5099:1 5112:1 5120:10 5130:2 5132:1 5139:1 5144:3 5159:1 5161:2 5170:1 5175:1 5183:1 5196:1 5199:1 5226:1 5227:3 5234:1 5253:6 5279:1 5297:1 5310:1 5341:1 5344:1 5352:1 5353:3 5365:1 5366:1 5383:4 5387:2 5388:1 5390:1 5398:3 5405:1 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5459:1 5465:1 5466:1 5467:1 5480:4 5510:1 5517:1 5521:3 5525:1 5542:1 5543:1 5560:3 5565:1 5601:1 5619:1 5621:3 5623:1 5627:2 5632:1 5633:1 5659:1 5661:9 5667:1 5668:1 5677:1 5690:1 5701:1 5710:1 5724:1 5732:1 5748:3 5762:1 5779:1 5780:1 5805:1 5809:1 5816:2 5817:32 5820:2 5851:2 5853:1 5855:7 5858:1 5861:1 5869:1 5870:18 5871:1 5872:2 5873:1 5876:4 5896:1 5898:2 5919:3 5932:2 5934:3 5939:2 5947:1 5953:4 5957:2 5961:1 5963:1 5967:2 5970:1 5981:1 5994:3 6003:1 6005:3 6014:2 6017:1 6018:1 6025:1 6055:1 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6095:1 6101:3304 6102:1 6107:1 6117:1 6133:2 6138:1 6140:4 6149:2 6165:1 6179:1 6180:1 6183:1 6184:1 6193:1 6195:1 6198:1 6201:1 6205:1 6210:4 6220:1 6232:1 6233:4 6248:1 6253:1 6273:3 6289:1 6313:1 6320:1 6349:3 6376:2 6379:1 6399:2 6401:1 6407:2 6434:1 6448:4 6450:2 6458:1 6463:1 6471:2 6480:1 6484:1 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6547:1 6559:1 6576:1 6577:1 6581:1 6590:1 6601:1 6640:1 6644:4 6650:1 6666:1 6692:1 6698:1 6705:8 6715:2 6725:1 6748:2 6750:1 6777:1 6782:1 6784:1 6787:1 6792:5 6798:1 6802:2 6817:1 6830:4 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6880:1 6888:1 6936:1 6951:1 6956:2 6957:1 6962:1 6974:2 6975:1 6981:4 7006:1 7017:1 7050:1 7066:1 7080:1 7097:2 7104:1 7110:2 7124:1 7134:3 7137:1 7139:1 7153:1 7157:3 7167:3 7203:2 7208:1 7213:1 7238:1 7276:1 7305:1 7319:1 7320:1 7329:1 7337:2 7340:1 7348:2 7349:1 7363:2 7376:1 7377:4 7383:2 7397:2 7405:1 7408:3 7415:1 7444:1 7450:1 7452:1 7474:1 7476:12 7483:1 7488:1 7507:13 7508:1 7515:1 7516:1 7519:1 7520:1 7523:14 7529:1 7539:1 7555:2 7581:1 7582:4 7584:2 7591:1 7607:1 7614:1 7632:1 7635:1 7638:4 7649:1 7663:1 7670:3 7671:2 7680:1 7684:3 7686:2 7689:1 7693:3 7694:1 7696:4 7702:1 7719:2 7722:1 7730:2 7732:2 7733:6 7734:1 7735:1 7736:1 7740:2 7742:1 7750:17 7751:1 7753:1 7758:1 7762:2 7765:3 7773:1 7782:1 7788:3 7794:1 7811:1 7814:1 7817:3 7823:3 7871:1 7883:1 7887:1 7922:2 7935:1 7948:1 7995:1 8003:1 8034:1 8047:1 8052:1 8065:1 8089:1 8091:10 8096:3 8097:3 8107:1 8108:5 8168:1 8177:1 8187:1 8209:1 8222:2 8224:1 8225:17 8231:1 8234:5 8254:1 8262:1 8270:1 8298:2 8301:1 8314:3 8317:1 8325:1 8326:1 8351:1 8356:1 8357:1 8361:1 8367:2 8372:1 8373:1 8385:1 8412:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8469:1 8490:2 8491:1 8510:1 8520:1 8522:1 8525:1 8537:1 8544:1 8555:1 8558:1 8569:1 8573:2 8578:1 8579:4 8598:2 8599:1 8605:1 8609:1 8618:2 8624:2 8634:2 8644:7 8673:1 8674:1 8679:1 8684:1 8692:1 8709:1 8713:2 8719:1 8723:1 8746:1 8748:11 8755:1 8756:1 8757:1 8769:2 8771:2 8780:2 8789:1 8791:1 8796:1 8802:1 8828:1 8831:11 8838:1 8856:1 8889:1 8894:1 8900:3 8903:1 8930:1 8937:2 8948:1 8957:1 8970:1 8973:1 8976:1 8980:1 8985:1 9017:1 9020:1 9024:1 9029:1 9031:1 9048:1 9053:2 9065:1 9069:1 9083:1 9089:4 9091:2 9119:1 9139:1 9158:2 9169:1 9180:3 9208:5 9215:1 9217:3 9218:1 9227:1 9231:3 9232:1 9253:1 9280:1 9285:1 9292:1 9302:1 9314:2 9370:1 9374:1 9393:1 9400:1 9402:5 9413:1 9416:2 9419:1 9445:1 9477:1 9497:2 9509:1 9514:1 9528:2 9529:1 9536:1 9539:1 9541:1 9547:1 9573:1 9578:2 9589:1 9598:4 9610:1 9611:1 9612:1 9617:1 9625:2 9626:2 9645:1 9666:1 9687:3 9706:1 9707:2 9710:1 9719:1 9721:2 9725:1 9733:1 9740:1 9747:5 9749:1 9751:10 9759:1 9769:1 9770:3 9772:1 9777:1 9778:1 9779:1 9791:1 9792:1 9797:2 9799:1 9800:5 9809:1 9812:1 9848:4 9854:1 9866:1 9901:2 9904:1 9905:1 9906:1 9908:1 9910:1 9912:2 9913:2 9917:2 9918:3 9919:3 9920:2 9926:2 9929:6 9930:1 9932:1 9933:2 9940:2 9948:1 9950:1 9980:1 9986:2 9993:1 10018:7 10025:1 10027:1 10032:2 10039:1 10050:1 10095:1 10105:1 10125:1 10129:1 10130:1 10147:2 10150:1 10153:1 10158:1 10165:1 10173:1 10182:3 10183:1 10193:1 10201:1 10207:1 10208:1 10212:1 10223:2 10224:1 10226:1 10232:1 10277:1 10282:1 10288:1 10289:1 10313:1 10350:1 10362:1 10373:1 10386:1 10392:2 10412:1 10420:1 10421:4 10424:2 10426:3 10442:4 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10510:2 10515:1 10520:1 10536:3 10542:1 10562:1 10576:1 10579:1 10580:1 10581:1 10582:1 10587:1 10590:1 10593:6 10597:2 10613:1 10618:1 10634:1 10648:1 10662:1 10677:1 10704:2 10708:1 10714:1 10734:1 10736:1 10737:1 10742:1 10749:1 10751:2 10759:1 10762:1 10766:3 10768:11 10780:3 10784:1 10793:1 10794:1 10799:1 10801:1 10811:1 10817:1 10828:2 10840:1 10842:1 10861:1 10870:4 10873:1 10881:1 10904:1 10929:1 10936:2 10937:2 10941:2 10944:1 10946:1 10949:1 10953:1 10956:1 10957:4 10962:2 10972:1 10974:1 10983:1 11004:1 11018:1 11042:1 11043:1 11049:4 11061:1 11067:1 11068:2 11073:3 11082:1 11085:2 11106:1 11109:2 11151:1 11171:1 11184:2 11203:3 11210:1 11211:1 11212:7 11215:1 11220:2 11229:1 11230:2 11232:1 11234:1 11248:2 11250:1 11251:1 11252:1 11255:1 11264:1 11269:2 11271:1 11272:1 11281:1 11283:1 11303:1 11310:5 11311:2 11316:2 11320:2 11322:1 11351:1 11356:2 11367:1 11396:1 11423:1 11442:1 11444:5 11446:1 11489:1 11497:1 11508:1 11530:1 11546:2 11554:1 11577:1 11583:1 11593:4 11595:2 11599:1 11606:1 11615:1 11631:1 11636:1 11644:1 11666:4 11667:17 11670:2 11673:1 11701:1 11729:1 11733:1 11747:1 11749:1 11757:1 11767:1 11778:2 11781:3 11797:1 11799:2 11802:2 11811:1 11813:1 11819:1 11822:2 11834:2 11836:4 11847:1 11852:8 11878:3 11906:2 11907:2 11932:2 11942:1 11963:1 11968:1 11971:1 11977:1 11983:2 12004:1 12008:1 12009:1 12015:1 12017:2 12034:1 12035:1 12055:2 12059:1 12060:1 12065:4 12083:6 12101:1 12115:3 12116:4 12117:3 12119:2 12140:1 12141:2 12143:2 12149:1 12154:1 12173:1 12191:1 12192:2 12198:1 12200:1 12202:36 12205:1 12206:1 12209:2 12215:1 12226:9 12229:20 12237:2 12244:1 12248:1 12255:1 12259:1 12264:1 12288:1 12295:4 12296:1 12344:1 12364:1 12370:3 12378:1 12381:1 12383:1 12392:1 12407:1 12420:1 12431:2 12440:1 12469:1 12491:1 12515:3 12518:5 12523:1 12529:1 12543:1 12549:1 12551:1 12553:1 12559:1 12566:12 12567:2 12584:1 12590:1 12592:1 12593:4 12606:2 12618:1 12628:1 12630:1 12633:1 12653:1 12666:1 12673:1 12682:1 12691:1 12693:2 12703:1 12709:1 12723:1 12731:1 12754:3 12778:1 12783:5 12791:3 12814:6 12823:2 12839:1 12850:1 12852:2 12853:1 12874:2 12879:1 12880:1 12887:1 12895:1 12904:1 12919:1 12921:1 12938:17 12966:1 12970:1 12975:1 12976:1 12985:2 12986:1 13013:2 13047:1 13060:1 13064:1 13067:2 13070:1 13071:1 13084:2 13086:2 13107:1 13109:1 13124:1 13129:2 13175:1 13176:1 13177:4 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:1 13229:1 13240:4 13247:1 13253:1 13267:2 13270:3 13279:1 13289:1 13293:2 13296:1 13298:1 13309:1 13321:1 13324:2 13334:2 13346:1 13362:1 13363:2 13379:1 13384:1 13386:1 13387:1 13392:2 13405:1 13412:2 13414:2 13417:3 13419:1 13451:1 13459:1 13471:1 13484:3 13489:1 13502:1 13505:3 13506:1 13526:6 13529:1 13537:1 13542:1 13544:1 13547:1 13552:1 13553:3 13557:2 13562:1 13565:1 13572:1 13573:2 13577:1 13579:3 13580:1 13581:2 13582:4 13587:1 13593:1 13597:2 13599:2 13606:3 13609:2 13619:2 13620:1 13632:1 13644:1 13646:1 13661:2 13672:1 13674:1 13682:1 13683:1 13703:4 13711:1 13715:19 13719:1 13724:1 13728:2 13735:1 13756:2 13781:1 13786:5 13826:3 13832:2 13846:1 13851:1 13852:1 13854:1 13855:1 13861:1 13874:1 13881:1 13935:2 13943:1 13944:1 13971:1 13972:1 13978:1 13982:1 13984:1 13986:2 13995:1 13999:3 14004:1 14007:1 14041:1 14051:1 14061:1 14076:1 14082:1 14091:4 14093:2 14096:4 14099:1 14100:1 14101:3 14104:3 14114:2 14134:1 14137:1 14139:4 14152:1 14155:1 14172:1 14176:2 14184:2 14193:2 14241:4 14280:2 14281:1 14283:1 14290:1 14311:2 14312:1 14336:1 14345:1 14360:1 14364:1 14381:1 14386:1 14391:1 14396:1 14416:1 14429:2 14440:1 14457:3 14474:2 14475:3 14484:1 14488:1 14490:1 14492:2 14493:1 14512:1 14519:1 14529:1 14530:1 14531:3 14548:1 14555:1 14561:6 14586:2 14591:2 14595:1 14604:1 14605:1 14612:1 14622:1 14641:1 14643:1 14646:1 14656:1 14658:1 14673:3 14675:1 14694:1 14703:1 14719:1 14720:1 14759:1 14767:1 14768:5 14775:1 14777:1 14781:1 14784:1 14794:1 14795:1 14809:3 14836:1 14870:1 14872:2 14900:1 14902:1 14904:1 14907:3 14913:2 14924:1 14926:2 14929:1 14953:1 14955:3 14970:1 14973:1 14975:1 14982:1 14986:2 15016:1 15018:2 15039:5 15065:1 15113:17 15114:1 15121:2 15137:1 15141:1 15143:1 15148:1 15151:1 15161:2 15162:5 15164:1 15167:2 15189:4 15193:1 15204:1 15205:2 15206:1 15215:1 15217:2 15227:3 15233:1 15235:2 15252:1 15266:2 15280:1 15281:2 15283:1 15291:1 15295:2 15319:1 15324:1 15330:2 15337:14 15344:2 15348:1 15367:1 15370:1 15377:2 15401:1 15403:1 15408:1 15413:1 15435:1 15441:4 15444:5 15454:1 15459:3 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15482:1 15499:1 15511:1 15528:1 15597:2 15600:1 15601:3 15621:1 15622:2 15643:1 15660:6 15661:1 15664:2 15671:1 15675:2 15678:4 15680:2 15682:1 15689:1 15693:1 15698:1 15708:2 15714:2 15718:1 15723:1 15732:1 15744:1 15750:1 15757:1 15759:1 15764:1 15766:3 15772:1 15774:1 15776:1 15786:1 15822:1 15825:1 15829:3 15830:1 15840:3 15844:1 15852:2 15877:1 15878:2 15892:3 15898:1 15909:1 15932:5 15967:1 15980:1 15981:3 15986:1 16005:1 16035:9 16037:1 16038:5 16046:1 16048:1 16050:1 16066:1 16080:1 16098:2 16107:1 16109:1 16133:4 16135:1 16160:1 16164:1 16172:2 16178:1 16189:1 16190:2 16197:1 16199:1 16236:1 16246:1 16261:1 16269:4 16282:1 16290:1 16297:4 16317:1 16322:1 16338:1 16341:1 16373:1 16393:2 16410:3 16414:1 16425:1 16428:1 16435:1 16438:2 16449:1 16460:1 16464:1 16468:1 16480:1 16505:2 16508:5 16512:3 16523:1 16527:1 16548:1 16556:1 16557:1 16574:2 16588:2 16589:2 16593:2 16602:4 16607:1 16614:1 16615:6 16629:1 16636:3 16637:1 16638:3 16640:4 16670:1 16674:1 16677:1 16702:1 16703:2 16728:1 16729:1 16735:1 16749:4 16763:2 16774:2 16782:7 16848:1 16862:1 16865:1 16869:1 16870:7 16872:3 16881:1 16911:1 16930:1 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16967:1 16975:1 16990:1 16992:6 17008:1 17009:1 17020:1 17026:1 17033:3 17046:5 17048:1 17059:1 17089:1 17099:1 17102:1 17106:1 17109:1 17128:2 17151:1 17160:2 17162:1 17164:6 17175:1 17185:1 17186:1 17187:6 17208:3 17211:6 17222:2 17231:1 17237:1 17240:1 17241:1 17281:4 17283:1 17284:1 17311:2 17324:3 17336:1 17338:2 17347:1 17377:3 17389:4 17395:1 17424:1 17437:2 17442:2 17457:1 17465:2 17469:1 17486:1 17501:2 17528:1 17530:1 17534:1 17539:1 17540:1 17541:1 17543:1 17545:1 17546:4 17568:1 17577:1 17596:2 17618:1 17623:1 17632:1 17634:1 17667:1 17670:2 17681:1 17707:4 17708:1 17709:2 17725:1 17741:1 17744:1 17770:1 17785:1 17794:3 17811:1 17818:1 17821:2 17824:1 17829:1 17841:1 17851:2 17852:1 17853:5 17857:1 17862:2 17865:2 17894:1 17906:1 17908:1 17922:1 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17983:1 17986:1 17995:2 18004:1 18011:1 18025:6 18031:3 18032:1 18037:1 18047:1 18050:1 18057:1 18064:2 18078:1 18087:1 18090:4 18104:3 18106:1 18123:1 18133:3 18134:1 18138:2 18197:1 18205:2 18206:1 18209:3 18217:1 18230:3 18239:1 18240:6 18241:1 18257:1 18258:1 18261:1 18265:1 18266:1 18267:1 18272:9 18275:1 18280:5 18281:1 18287:1 18292:1 18293:5 18303:1 18322:1 18334:6 18345:1 18348:1 18368:2 18385:5 18391:1 18397:1 18399:2 18411:1 18446:1 18463:1 18470:1 18472:1 18482:1 18491:4 18509:3 18510:1 18513:1 18514:2 18525:1 18542:1 18547:2 18574:1 18586:1 18592:1 18623:1 18628:1 18632:1 18646:1 18679:3 18703:5 18705:2 18713:1 18721:1 18722:2 18723:1 18724:4 18725:6 18729:1 18735:2 18739:2 18766:2 18792:1 18815:2 18833:1 18855:3 18856:1 18875:1 18883:3 18896:1 18900:1 18906:2 18922:1 18929:3 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18974:2 18980:1 18993:1 19004:3 19005:3 19007:17 19017:5 19031:1 19040:2 19052:1 19055:1 19066:1 19089:2 19111:1 19126:1 19134:1 19164:1 19195:1 19207:1 19236:1 19240:1 19252:1 19260:7 19262:2 19271:1 19281:1 19282:1 19290:1 19298:1 19299:2 19306:1 19310:1 19312:2 19319:1 19342:1 19357:1 19361:2 19373:2 19391:2 19397:3 19404:1 19418:1 19430:1 19439:1 19456:1 19476:2 19481:1 19492:1 19496:1 19498:2 19502:1 19512:1 19529:1 19584:1 19595:1 19597:2 19604:4 19626:1 19631:3 19636:1 19640:1 19647:9 19653:1 19663:1 19697:2 19698:1 19707:1 19712:3 19727:1 19734:1 19754:1 19774:1 19776:1 19790:19 19791:1 19794:3 19796:1 19807:1 19820:1 19834:1 19843:2 19855:1 19880:1 19936:6 19952:1 19956:1 19959:1 19963:1 19969:1 19970:2 19974:3 19977:3 19978:2 20017:1 20021:1 20022:2 20023:3 20026:1 20032:2 20038:2 20041:1 20046:1 20055:1 20056:1 20062:1 20071:1 20075:1 20079:1 20080:3 20106:2 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:2 20217:1 20237:1 20250:1 20255:1 20256:1 20263:1 20270:2 20284:1 20285:2 20291:1 20299:1 20311:1 20325:1 20351:2 20353:1 20378:1 20379:1 20392:1 20413:1 20414:1 20420:1 20424:1 20438:3 20511:7 20522:1 20536:1 20550:3 20572:1 20587:1 20590:2 20591:1 20599:1 20638:3 20642:1 20648:1 20653:3 20656:1 20664:1 20669:1 20678:1 20681:1 20696:1 20703:1 20724:2 20733:1 20740:1 20741:1 20742:1 20747:2 20754:1 20767:1 20770:3 20777:1 20793:2 20794:1 20802:2 20819:1 20842:1 20852:1 20853:3 20859:2 20863:4 20905:1 20915:1 20916:2 20918:1 20924:1 20940:1 20941:2 20944:6 20955:1 20956:3 20961:1 20976:1 20987:3 21013:1 21014:3 21015:1 21018:1 21022:1 21029:4 21035:1 21040:3 21048:1 21061:1 21066:1 21074:3 21075:1 21077:1 21096:1 21099:7 21102:1 21104:1 21108:24 21109:2 21110:2 21113:2 21119:4 21121:1 21122:1 21125:1 21128:1 21133:2 21143:1 21145:2 21146:1 21169:1 21171:13 21173:1 21201:2 21205:1 21209:1 21221:2 21222:1 21223:1 21224:1 21242:1 21243:4 21247:1 21262:1 21276:2 21292:3 21315:1 21320:1 21321:1 21324:2 21329:2 21333:6 21338:1 21340:2 21353:1 21361:1 21373:2 21374:1 21375:2 21381:1 21384:1 21391:4 21403:1 21406:4 21411:1 21413:2 21415:1 21441:1 21459:2 21460:3 21470:2 21478:1 21482:1 21487:1 21514:2 21528:1 21530:1 21535:1 21536:1 21537:1 21538:2 21539:1 21540:1 21543:1 21551:1 21570:1 21575:1 21588:1 21598:1 21603:1 21609:1 21611:1 21622:1 21634:2 21635:1 21639:1 21640:1 21641:1 21647:2 21651:1 21668:1 21669:1 21703:1 21704:1 21711:7 21712:1 21722:1 21750:1 21761:1 21762:1 21778:2 21779:1 21782:4 21786:1 21795:1 21803:1 21804:1 21808:1 21826:1 21831:2 21835:1 21837:1 21838:1 21843:1 21845:1 21866:1 21877:1 21880:2 21881:1 21889:4 21894:8 21907:3 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:3 21997:5 21998:2 22010:1 22017:3 22021:7 22024:1 22025:1 22034:1 22037:1 22048:1 22065:1 22067:3 22070:1 22071:2 22085:1 22090:1 22107:1 22108:1 22116:1 22119:1 22126:2 22135:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:3 22183:1 22185:1 22186:2 22190:1 22194:2 22237:1 22255:3 22268:1 22269:1 22276:2 22316:1 22325:1 22327:1 22340:1 22347:2 22349:4 22352:1 22360:5 22372:1 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22584:2 22589:1 22599:1 22601:1 22621:1 22636:2 22648:2 22649:1 22651:4 22662:1 22666:1 22672:3 22674:1 22675:1 22688:1 22690:1 22709:2 22717:1 22725:2 22731:1 22765:1 22783:2 22787:1 22794:1 22796:3 22812:1 22829:1 22840:2 22849:1 22877:1 22880:1 22897:1 22901:3 22907:1 22911:1 22936:1 22938:1 22943:1 22956:2 22964:1 22975:1 22977:1 22983:1 22985:6 22988:1 22997:1 23003:4 23018:2 23034:1 23061:1 23068:2 23070:1 23076:2 23081:1 23114:1 23119:1 23141:1 23142:4 23160:2 23188:4 23258:1 23263:1 23274:1 23284:1 23286:3 23301:1 23339:1 23345:1 23348:2 23359:1 23369:1 23370:1 23371:1 23376:1 23400:2 23426:1 23444:1 23449:1 23466:2 23468:1 23496:3 23498:1 23504:3
16 1:1 3:1 5:1 7:1 25:1 26:1 33:1 51:2 64:1 67:1 82:1 87:1 110:2 114:1 119:3 126:1 138:1 148:1 154:1 161:1 164:4 165:2 171:1 193:1 204:1 224:1 229:1 262:1 279:1 280:1 282:1 286:1 294:1 296:1 317:1 337:1 344:1 347:1 384:1 394:1 402:1 403:2 406:1 413:3 416:3 428:1 435:1 440:4 446:1 463:4 464:1 467:1 470:1 471:1 488:1 507:4 511:1 514:1 516:1 518:1 522:1 527:1 539:4 564:1 568:1 578:1 584:1 596:1 606:2 607:1 608:2 613:1 626:3 640:2 643:1 646:2 652:2 657:1 660:1 665:1 710:1 719:1 732:2 735:3 739:1 744:2 759:1 786:1 791:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:1 855:2 860:3 863:1 886:8 896:1 898:1 902:8 904:1 910:1 914:4 947:2 960:1 962:2 967:2 988:1 993:2 996:3 1010:3 1032:1 1035:1 1048:2 1049:1 1060:1 1071:4 1078:1 1086:1 1098:1 1113:1 1115:2 1117:1 1118:1 1120:1 1131:4 1133:1 1145:3 1148:1 1157:1 1160:1 1162:1 1164:2 1172:1 1174:2 1178:1 1188:1 1190:4 1191:1 1194:2 1195:6 1196:1 1203:2 1207:1 1208:1 1235:1 1236:5 1242:4 1268:2 1291:1 1292:1 1298:1 1316:1 1325:1 1348:1 1362:1 1363:1 1366:2 1376:1 1382:2 1383:1 1384:1 1391:2 1399:4 1405:1 1417:1 1425:1 1428:1 1450:2 1451:2 1467:1 1488:2 1494:2 1526:2 1529:1 1537:2 1544:2 1559:1 1562:1 1564:2 1573:3 1574:1 1578:1 1579:3 1580:6 1581:2 1588:1 1596:1 1600:1 1612:1 1616:2 1628:8 1644:1 1647:6 1648:2 1649:2 1671:1 1672:2 1674:1 1679:2 1682:1 1683:1 1686:2 1714:1 1721:1 1737:2 1738:1 1752:18 1789:1 1792:1 1794:1 1802:5 1803:1 1807:1 1809:1 1829:2 1841:1 1844:1 1857:52 1869:1 1890:3 1899:1 1930:3 1935:1 1943:1 1965:1 1968:1 1977:2 1978:1 1980:1 1981:1 1982:2 2001:1 2003:4 2023:2 2027:1 2032:1 2034:2 2035:1 2036:2 2042:1 2044:2 2045:4 2047:1 2053:2 2057:1 2062:1 2063:3 2087:1 2095:1 2103:1 2105:2 2109:4 2112:1 2123:4 2124:2 2125:1 2142:1 2145:1 2150:1 2156:1 2158:1 2161:1 2174:1 2182:3 2191:1 2192:1 2215:1 2231:1 2234:2 2236:1 2288:1 2297:1 2301:1 2310:5 2339:1 2343:3 2345:1 2354:1 2358:1 2363:1 2367:2 2368:2 2379:1 2384:1 2402:1 2414:6 2435:1 2447:6 2450:1 2459:1 2469:2 2479:2 2481:1 2483:3 2484:1 2494:1 2499:1 2512:4 2533:1 2547:1 2554:5 2562:1 2573:1 2581:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:2 2639:2 2642:1 2643:1 2658:4 2667:4 2671:2 2673:1 2683:1 2685:1 2688:1 2701:2 2702:1 2705:4 2708:3 2716:1 2718:1 2740:1 2746:1 2749:1 2763:1 2764:2 2773:4 2774:1 2778:1 2779:1 2781:1 2793:2 2795:1 2798:1 2801:1 2810:3 2814:1 2816:3 2828:2 2840:3 2860:1 2870:1 2878:1 2892:1 2895:2 2896:1 2899:1 2902:1 2904:1 2914:1 2921:1 2926:1 2927:1 2936:1 2942:1 2952:1 2954:1 2966:10 2970:1 2979:1 2981:1 2986:1 2990:1 2995:1 3002:1 3004:1 3012:1 3014:1 3017:1 3023:1 3027:1 3033:2 3035:4 3039:1 3043:1 3048:2 3052:1 3065:1 3066:3 3070:2 3084:1 3096:1 3098:1 3136:1 3141:1 3153:1 3156:1 3161:1 3168:2 3169:2 3170:1 3172:2 3177:3 3178:1 3186:1 3218:2 3219:1 3221:1 3223:3 3229:2 3234:1 3237:2 3240:1 3242:1 3255:1 3260:1 3264:3 3266:1 3268:1 3272:2 3274:1 3293:1 3302:1 3311:1 3314:2 3316:2 3343:2 3345:4 3359:1 3382:1 3396:1 3409:3 3421:1 3437:1 3452:1 3462:1 3468:1 3473:3 3483:1 3519:1 3538:1 3540:1 3541:2 3542:1 3545:2 3546:4 3552:1 3553:1 3554:5 3555:1 3556:1 3559:5 3560:1 3562:3 3564:1 3567:1 3573:5 3575:3 3576:6 3590:1 3597:1 3606:2 3616:1 3622:1 3637:1 3642:1 3644:1 3652:2 3656:1 3661:2 3673:2 3686:2 3694:1 3698:1 3701:1 3703:2 3705:1 3706:3 3711:1 3726:1 3731:1 3738:1 3740:1 3746:1 3752:3 3759:1 3761:1 3786:1 3792:1 3812:1 3819:1 3827:2 3854:2 3860:3 3865:1 3871:1 3875:1 3892:4 3906:2 3936:1 3946:1 3951:1 3952:1 3965:1 3974:1 3990:1 4004:1 4006:1 4010:1 4027:5 4030:1 4034:1 4038:1 4050:1 4052:2 4058:1 4059:1 4072:1 4082:1 4083:2 4085:1 4089:2 4104:1 4105:1 4109:1 4117:2 4127:1 4134:1 4146:1 4150:1 4154:1 4174:1 4182:2 4183:2 4184:2 4197:1 4208:4 4219:1 4226:3 4242:1 4243:2 4244:1 4248:1 4255:1 4257:1 4260:2 4262:7 4281:1 4283:1 4295:1 4296:2 4311:1 4317:1 4323:1 4335:2 4338:3 4342:1 4343:2 4358:1 4379:2 4380:1 4386:1 4393:2 4398:2 4413:1 4414:1 4417:4 4424:1 4427:2 4473:2 4480:1 4481:2 4488:2 4490:1 4511:4 4512:1 4513:9 4515:2 4516:1 4526:1 4533:1 4540:1 4560:1 4561:11 4577:7 4589:1 4616:2 4631:1 4632:1 4650:24 4658:1 4671:1 4675:1 4699:1 4701:1 4702:1 4705:2 4714:3 4720:1 4730:1 4735:2 4741:2 4746:1 4760:1 4766:1 4769:1 4781:1 4786:1 4803:1 4807:2 4812:1 4818:1 4837:3 4844:4 4845:2 4860:1 4902:1 4932:3 4937:1 4955:1 4966:1 4968:1 4970:1 4984:1 4990:1 5022:1 5034:3 5038:1 5047:1 5048:1 5059:1 5060:1 5084:4 5092:1 5099:1 5112:1 5120:10 5130:2 5132:1 5139:1 5144:3 5159:1 5161:2 5170:1 5175:1 5183:1 5196:1 5199:1 5226:1 5227:3 5234:1 5253:7 5279:2 5297:1 5310:1 5341:1 5344:1 5352:1 5353:4 5365:1 5366:1 5383:4 5387:2 5388:1 5390:1 5398:3 5405:1 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5459:2 5465:1 5466:1 5467:1 5480:4 5510:1 5517:1 5521:3 5525:1 5542:1 5543:1 5560:3 5565:1 5601:1 5619:1 5621:3 5623:1 5627:2 5632:1 5633:1 5659:1 5661:10 5667:1 5668:1 5677:1 5690:1 5701:1 5710:1 5724:1 5732:1 5748:3 5752:1 5762:1 5779:1 5780:1 5805:1 5809:1 5816:2 5817:34 5820:2 5851:2 5853:1 5855:7 5858:1 5861:1 5869:1 5870:19 5871:1 5872:2 5873:1 5876:4 5896:1 5898:2 5906:1 5919:3 5932:2 5934:3 5939:2 5947:1 5953:5 5957:2 5961:1 5963:1 5967:2 5970:1 5981:1 5994:3 6003:1 6005:3 6013:1 6014:2 6017:1 6018:1 6025:1 6055:1 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6095:1 6101:3444 6102:1 6107:1 6117:1 6133:2 6138:1 6140:4 6149:2 6165:1 6179:1 6180:1 6183:1 6184:1 6193:1 6195:1 6198:2 6201:1 6205:1 6210:4 6220:1 6232:1 6233:4 6248:1 6253:1 6273:3 6279:1 6289:1 6300:1 6313:1 6320:1 6349:3 6376:2 6379:1 6399:2 6401:1 6407:3 6417:1 6434:1 6448:4 6450:2 6458:1 6463:1 6471:2 6480:1 6484:2 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6547:1 6559:1 6576:1 6577:1 6581:1 6584:1 6590:1 6601:1 6640:1 6644:4 6650:1 6666:1 6677:1 6692:1 6698:1 6705:9 6715:2 6725:1 6748:2 6750:1 6777:1 6782:1 6784:2 6787:1 6792:5 6798:1 6802:2 6817:1 6830:5 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6874:1 6880:1 6888:1 6936:1 6951:1 6956:2 6957:1 6962:1 6974:2 6975:1 6981:4 7006:1 7017:1 7050:1 7066:2 7080:1 7097:2 7104:1 7110:2 7124:1 7134:3 7137:1 7139:1 7153:1 7157:3 7167:3 7171:1 7203:2 7208:1 7213:1 7238:1 7256:1 7276:1 7305:1 7319:1 7320:1 7329:1 7337:2 7340:1 7348:2 7349:1 7361:1 7363:2 7376:1 7377:4 7383:2 7397:2 7405:1 7408:3 7415:1 7444:1 7450:1 7452:1 7474:1 7476:14 7483:1 7488:1 7507:13 7508:1 7515:1 7516:1 7519:2 7520:1 7523:15 7529:1 7539:1 7555:2 7581:1 7582:4 7584:2 7591:1 7607:1 7614:2 7632:1 7635:1 7638:4 7649:1 7663:1 7670:3 7671:2 7680:1 7684:4 7686:2 7689:1 7693:3 7694:1 7696:4 7702:1 7719:2 7720:1 7722:1 7730:2 7732:2 7733:6 7734:1 7735:1 7736:1 7740:2 7742:1 7750:18 7751:1 7753:1 7758:1 7762:2 7765:3 7773:2 7782:1 7788:3 7794:1 7811:1 7814:1 7817:3 7823:3 7871:1 7883:1 7887:1 7902:1 7922:2 7935:1 7948:1 7995:1 8003:1 8034:1 8047:1 8052:1 8065:1 8089:1 8091:10 8096:3 8097:3 8107:1 8108:5 8168:1 8177:1 8187:1 8209:1 8222:2 8224:1 8225:18 8231:1 8234:6 8254:1 8262:1 8270:1 8298:2 8301:1 8314:3 8317:1 8321:1 8325:1 8326:1 8351:1 8356:1 8357:1 8361:1 8367:2 8372:1 8373:1 8385:1 8412:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8469:1 8490:2 8491:1 8510:1 8520:1 8522:1 8525:1 8537:1 8544:1 8555:1 8558:1 8569:1 8573:2 8578:1 8579:4 8598:2 8599:1 8605:2 8609:1 8618:2 8624:2 8634:2 8644:7 8673:1 8674:1 8679:1 8684:1 8692:1 8709:1 8713:2 8719:1 8723:1 8746:1 8748:11 8755:1 8756:1 8757:1 8769:2 8771:2 8780:2 8789:1 8791:1 8796:1 8802:1 8803:2 8828:1 8831:11 8834:1 8838:1 8856:1 8889:1 8894:1 8900:3 8903:1 8930:1 8937:2 8948:1 8957:1 8970:1 8973:1 8976:1 8980:1 8985:1 9017:1 9020:1 9024:1 9029:1 9031:1 9048:1 9053:2 9065:1 9066:1 9069:1 9083:1 9089:4 9090:1 9091:2 9119:1 9139:1 9158:2 9169:1 9180:3 9208:5 9215:1 9217:3 9218:1 9227:1 9231:3 9232:1 9253:1 9280:1 9285:1 9292:1 9302:1 9314:2 9370:1 9374:1 9393:1 9400:1 9402:6 9413:1 9416:2 9419:1 9445:1 9477:1 9497:2 9509:1 9514:1 9523:1 9528:2 9529:1 9536:1 9539:1 9541:1 9547:1 9573:1 9578:2 9589:1 9598:4 9610:1 9611:1 9612:1 9617:1 9625:2 9626:2 9645:1 9666:1 9687:3 9706:1 9707:2 9710:1 9719:1 9721:2 9725:1 9727:1 9733:1 9740:1 9747:5 9749:1 9751:11 9759:1 9769:1 9770:3 9772:1 9777:2 9778:1 9779:1 9791:1 9792:1 9797:2 9799:1 9800:5 9809:1 9812:1 9832:1 9848:4 9854:1 9866:1 9901:2 9904:1 9905:1 9906:1 9908:1 9910:1 9912:2 9913:2 9917:2 9918:3 9919:4 9920:2 9926:2 9928:1 9929:6 9930:1 9932:1 9933:2 9940:2 9948:1 9950:1 9980:1 9986:2 9993:1 10018:7 10025:2 10027:1 10032:2 10036:1 10039:1 10050:1 10095:1 10105:1 10125:1 10129:1 10130:1 10147:2 10150:1 10153:1 10158:1 10165:1 10173:1 10182:3 10183:1 10193:1 10201:1 10207:1 10208:1 10212:1 10223:2 10224:1 10226:1 10232:1 10277:1 10282:1 10288:1 10289:1 10313:1 10350:1 10362:1 10373:1 10386:1 10392:2 10412:1 10420:1 10421:4 10424:2 10426:3 10442:4 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10510:2 10515:1 10520:1 10536:3 10542:1 10562:1 10576:1 10579:1 10580:1 10581:1 10582:1 10587:1 10590:1 10593:6 10597:3 10613:1 10618:1 10634:1 10648:1 10662:1 10677:1 10704:2 10708:1 10714:1 10734:1 10736:1 10737:1 10742:1 10749:1 10751:2 10759:1 10762:1 10766:3 10768:12 10780:3 10784:1 10793:2 10794:1 10799:1 10801:1 10811:1 10817:3 10828:2 10837:1 10840:1 10842:1 10861:1 10870:5 10873:2 10881:1 10904:1 10929:1 10936:2 10937:2 10941:2 10944:1 10946:1 10949:1 10953:1 10956:1 10957:4 10962:2 10972:1 10974:1 10983:1 11004:1 11018:1 11042:1 11043:1 11049:4 11061:1 11067:1 11068:2 11073:3 11082:1 11085:2 11106:1 11109:2 11151:1 11171:1 11184:2 11203:3 11210:1 11211:1 11212:8 11215:1 11220:2 11229:1 11230:2 11232:1 11234:1 11248:2 11250:1 11251:1 11252:1 11255:1 11264:2 11269:2 11271:1 11272:1 11281:1 11283:1 11303:1 11310:5 11311:2 11316:2 11320:2 11322:1 11351:1 11356:2 11367:1 11396:1 11423:1 11442:1 11444:5 11446:1 11489:1 11497:1 11508:1 11530:1 11546:2 11554:1 11577:1 11583:1 11593:4 11595:2 11599:1 11606:1 11609:1 11615:1 11631:1 11636:1 11644:1 11666:4 11667:18 11670:2 11673:1 11701:1 11729:1 11733:1 11747:1 11749:1 11757:1 11767:1 11778:2 11781:3 11797:1 11799:2 11802:2 11811:1 11813:1 11819:1 11822:2 11834:2 11836:4 11847:1 11852:8 11878:3 11906:2 11907:2 11932:2 11942:1 11949:1 11963:1 11968:1 11971:1 11977:1 11983:2 12004:1 12008:1 12009:1 12015:1 12017:2 12034:1 12035:1 12055:2 12059:1 12060:1 12065:4 12083:9 12101:1 12115:3 12116:4 12117:3 12119:2 12140:1 12141:2 12143:2 12149:1 12154:1 12163:1 12173:1 12191:1 12192:2 12198:1 12200:1 12202:37 12205:1 12206:1 12209:2 12215:1 12226:10 12229:20 12237:2 12244:1 12248:1 12255:1 12259:1 12264:1 12266:1 12288:1 12295:5 12296:1 12344:1 12364:1 12370:3 12378:1 12381:1 12383:1 12392:1 12407:1 12420:1 12431:2 12440:1 12454:1 12469:1 12491:1 12506:1 12515:3 12518:5 12523:1 12529:1 12543:1 12549:1 12551:1 12553:1 12559:1 12566:12 12567:2 12584:1 12590:1 12592:1 12593:4 12606:2 12618:1 12628:1 12630:1 12633:1 12653:1 12666:1 12673:1 12682:2 12691:1 12693:2 12703:1 12709:1 12723:1 12731:1 12754:3 12778:1 12783:5 12791:3 12814:7 12823:2 12830:1 12839:1 12850:1 12852:2 12853:1 12874:2 12879:1 12880:1 12887:1 12895:1 12904:1 12919:1 12921:1 12938:17 12966:1 12970:1 12975:1 12976:1 12985:2 12986:1 13013:2 13015:1 13047:1 13053:1 13060:1 13064:1 13067:2 13070:1 13071:1 13084:2 13086:2 13107:1 13109:1 13124:1 13129:2 13175:1 13176:1 13177:5 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:1 13229:1 13240:4 13247:2 13253:1 13267:2 13270:3 13279:1 13289:1 13293:2 13296:1 13298:1 13309:1 13321:1 13324:2 13334:2 13346:1 13362:1 13363:2 13379:1 13384:1 13386:1 13387:1 13392:2 13405:1 13412:2 13414:2 13417:4 13419:1 13451:1 13459:1 13471:1 13484:3 13489:1 13502:1 13505:3 13506:2 13526:6 13529:1 13537:1 13542:1 13544:1 13547:1 13552:1 13553:3 13557:2 13562:1 13565:1 13572:1 13573:2 13577:1 13578:1 13579:3 13580:1 13581:2 13582:4 13587:1 13593:1 13597:2 13599:2 13606:3 13609:2 13619:2 13620:1 13632:1 13644:1 13646:1 13661:2 13672:1 13674:1 13682:1 13683:1 13703:4 13711:1 13715:20 13719:1 13724:1 13728:2 13735:1 13756:2 13781:1 13786:5 13826:3 13832:2 13846:1 13850:1 13851:1 13852:1 13854:1 13855:2 13861:1 13874:1 13881:1 13883:1 13935:2 13941:1 13943:1 13944:1 13971:1 13972:1 13978:1 13982:1 13984:1 13986:2 13995:1 13999:3 14004:1 14007:1 14041:1 14051:1 14061:1 14076:1 14082:1 14091:4 14093:2 14096:4 14099:1 14100:1 14101:3 14104:3 14108:1 14114:2 14134:1 14137:1 14139:4 14152:1 14155:1 14172:1 14176:2 14184:2 14193:2 14241:4 14280:2 14281:1 14283:1 14290:1 14311:2 14312:2 14336:1 14345:1 14360:1 14364:1 14381:1 14386:1 14391:1 14396:1 14416:1 14429:2 14440:1 14457:3 14474:2 14475:3 14484:1 14488:1 14490:1 14492:2 14493:1 14512:1 14519:1 14529:1 14530:1 14531:3 14548:1 14555:1 14561:7 14586:2 14591:2 14595:1 14604:1 14605:1 14612:1 14622:1 14641:1 14643:1 14646:1 14656:1 14658:1 14673:3 14675:1 14694:1 14703:1 14719:1 14720:1 14759:1 14767:1 14768:5 14775:1 14777:1 14781:1 14784:1 14794:1 14795:1 14809:3 14836:1 14846:1 14870:1 14872:2 14900:1 14902:1 14904:1 14907:3 14913:2 14924:1 14926:2 14929:1 14953:1 14955:3 14970:1 14973:1 14975:1 14982:1 14986:2 15016:1 15018:2 15038:1 15039:5 15065:1 15113:18 15114:1 15121:2 15137:1 15141:1 15143:1 15148:1 15151:1 15161:2 15162:5 15164:1 15167:2 15189:4 15193:1 15204:1 15205:2 15206:1 15215:1 15217:2 15227:3 15233:1 15235:2 15252:1 15266:2 15280:1 15281:2 15283:1 15291:1 15295:2 15319:1 15324:1 15330:2 15337:14 15344:2 15348:1 15367:1 15370:1 15377:2 15401:1 15403:1 15408:1 15413:1 15435:1 15441:4 15444:5 15454:1 15459:3 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15482:1 15499:1 15500:1 15511:1 15528:1 15552:1 15597:2 15600:1 15601:3 15621:1 15622:2 15643:1 15660:6 15661:1 15664:2 15671:1 15675:2 15678:4 15680:2 15682:1 15689:2 15693:1 15698:1 15708:2 15714:2 15718:1 15723:1 15731:1 15732:1 15744:1 15750:1 15757:1 15759:1 15764:1 15766:3 15772:1 15774:1 15776:1 15786:1 15822:1 15825:1 15829:3 15830:1 15840:3 15844:1 15852:2 15877:1 15878:2 15892:3 15898:1 15909:2 15932:5 15967:1 15980:1 15981:3 15986:1 16005:1 16035:10 16037:1 16038:5 16046:1 16048:1 16050:1 16066:1 16080:1 16098:2 16099:1 16107:1 16109:1 16133:5 16135:1 16160:1 16164:1 16172:2 16178:1 16189:1 16190:2 16197:1 16199:1 16208:1 16236:3 16246:1 16261:1 16269:4 16282:1 16290:1 16297:4 16317:1 16322:1 16338:1 16341:1 16345:1 16354:1 16373:1 16393:2 16410:4 16414:1 16425:1 16428:1 16435:1 16438:2 16449:2 16460:1 16464:1 16468:1 16480:1 16505:2 16508:6 16512:4 16523:1 16527:1 16548:1 16556:1 16557:1 16574:2 16588:2 16589:2 16593:2 16602:5 16607:1 16614:1 16615:6 16629:1 16636:3 16637:1 16638:3 16640:4 16670:1 16674:1 16677:1 16702:1 16703:2 16728:1 16729:1 16735:1 16749:4 16759:1 16763:2 16774:2 16782:7 16848:1 16862:1 16864:1 16865:1 16868:1 16869:1 16870:7 16872:3 16881:1 16911:1 16930:2 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16967:1 16975:1 16990:1 16992:6 16993:1 17008:1 17009:1 17020:1 17026:1 17033:4 17046:5 17048:1 17059:1 17080:1 17089:1 17099:1 17102:1 17106:1 17109:1 17128:2 17151:1 17160:2 17162:1 17164:6 17175:1 17185:1 17186:1 17187:7 17208:3 17211:7 17222:2 17231:2 17237:1 17240:1 17241:1 17255:1 17274:1 17281:4 17283:2 17284:1 17311:2 17324:3 17336:1 17338:2 17343:1 17347:2 17377:3 17389:4 17395:1 17424:1 17437:2 17442:2 17457:1 17465:2 17469:1 17486:1 17501:2 17528:1 17530:1 17534:1 17539:1 17540:1 17541:1 17543:1 17545:1 17546:4 17547:1 17568:1 17577:1 17596:2 17618:1 17623:1 17632:1 17634:1 17667:1 17670:2 17681:1 17707:4 17708:1 17709:3 17725:1 17741:1 17744:1 17770:1 17785:1 17794:3 17811:1 17818:1 17821:2 17824:1 17829:1 17841:1 17851:3 17852:1 17853:5 17857:1 17859:1 17862:2 17865:2 17894:1 17906:1 17908:1 17922:1 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17983:2 17986:1 17995:2 18004:1 18011:1 18025:6 18031:3 18032:1 18037:1 18047:1 18050:1 18057:1 18064:2 18078:1 18087:1 18090:4 18104:3 18106:1 18123:1 18133:3 18134:1 18138:2 18197:1 18205:2 18206:1 18209:3 18217:1 18230:3 18239:1 18240:7 18241:1 18257:1 18258:1 18261:1 18265:1 18266:1 18267:1 18272:10 18275:1 18280:5 18281:1 18287:1 18292:1 18293:5 18303:1 18322:1 18334:7 18345:1 18348:1 18368:2 18385:5 18391:1 18397:1 18399:2 18411:1 18446:1 18463:1 18470:1 18472:1 18482:1 18491:4 18509:3 18510:1 18513:1 18514:2 18525:1 18542:1 18547:2 18574:1 18586:1 18592:1 18623:1 18628:1 18632:2 18646:1 18679:3 18703:5 18705:2 18708:1 18713:1 18721:1 18722:2 18723:1 18724:4 18725:7 18729:1 18735:2 18739:2 18766:2 18792:2 18815:2 18833:1 18855:4 18856:1 18875:1 18883:3 18896:1 18900:1 18906:2 18922:1 18929:3 18937:1 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18974:2 18980:1 18993:1 19004:3 19005:3 19007:18 19017:6 19031:1 19040:2 19052:1 19055:1 19066:1 19089:2 19111:1 19126:1 19134:1 19164:1 19195:1 19207:1 19236:1 19240:1 19252:1 19260:7 19262:2 19271:1 19281:1 19282:1 19290:1 19298:1 19299:3 19306:1 19310:1 19312:2 19319:1 19342:1 19357:1 19361:2 19373:2 19391:2 19397:3 19404:1 19418:1 19430:1 19439:1 19456:1 19476:2 19481:1 19492:1 19496:1 19498:2 19502:1 19512:2 19529:1 19584:1 19595:1 19597:2 19604:4 19626:1 19631:3 19636:1 19640:1 19647:9 19653:1 19663:1 19697:2 19698:1 19707:1 19712:3 19727:1 19734:1 19749:1 19754:1 19774:1 19776:1 19790:20 19791:1 19794:3 19796:1 19807:1 19820:1 19834:1 19835:1 19843:3 19855:1 19880:1 19936:6 19952:1 19956:1 19959:1 19963:1 19969:1 19970:2 19974:3 19977:3 19978:2 20017:2 20021:1 20022:2 20023:3 20026:1 20032:2 20038:2 20041:1 20046:1 20055:1 20056:1 20062:1 20071:1 20075:1 20079:2 20080:3 20106:2 20125:1 20139:1 20160:1 20190:1 20191:1 20197:2 20214:2 20217:1 20237:1 20250:1 20255:1 20256:1 20263:1 20270:2 20284:1 20285:2 20291:1 20299:1 20311:1 20325:1 20351:2 20353:1 20378:1 20379:1 20392:1 20403:1 20413:1 20414:1 20420:1 20424:1 20438:3 20439:1 20511:7 20522:1 20536:1 20550:4 20572:1 20587:1 20590:2 20591:1 20599:1 20638:3 20642:1 20648:1 20653:3 20656:1 20664:1 20669:1 20678:1 20681:1 20696:1 20703:1 20724:2 20733:1 20740:1 20741:1 20742:1 20747:2 20754:1 20767:1 20770:3 20777:1 20793:2 20794:1 20802:2 20819:1 20842:1 20852:1 20853:4 20859:2 20863:4 20904:1 20905:1 20915:1 20916:2 20918:1 20924:1 20931:1 20940:1 20941:2 20944:6 20955:1 20956:3 20961:1 20976:1 20987:3 21013:1 21014:3 21015:1 21018:1 21022:1 21029:4 21035:1 21040:3 21048:1 21061:1 21066:1 21074:3 21075:1 21077:1 21096:1 21099:7 21102:1 21104:1 21108:24 21109:2 21110:2 21113:2 21119:4 21121:1 21122:1 21125:1 21128:1 21133:2 21143:1 21145:2 21146:1 21169:1 21171:13 21173:2 21201:2 21205:1 21209:1 21221:2 21222:1 21223:1 21224:1 21242:1 21243:4 21247:1 21256:1 21262:1 21276:2 21292:3 21315:1 21320:1 21321:1 21324:2 21329:2 21333:6 21338:1 21340:2 21353:1 21355:1 21361:1 21373:2 21374:1 21375:2 21377:1 21381:1 21384:1 21391:4 21403:1 21406:4 21411:1 21413:2 21415:1 21441:1 21459:2 21460:3 21470:2 21478:1 21482:1 21487:1 21514:2 21528:1 21530:1 21535:1 21536:1 21537:1 21538:2 21539:1 21540:1 21543:1 21551:1 21570:1 21575:1 21580:1 21588:1 21598:1 21603:1 21609:1 21611:1 21622:1 21634:2 21635:1 21639:1 21640:1 21641:1 21647:2 21651:1 21668:1 21669:1 21703:1 21704:1 21711:7 21712:1 21722:1 21750:1 21761:1 21762:1 21773:1 21778:2 21779:1 21782:4 21786:1 21795:1 21803:1 21804:1 21808:1 21826:1 21831:2 21835:1 21837:1 21838:2 21843:1 21845:2 21866:1 21877:1 21880:2 21881:1 21889:4 21894:8 21899:1 21907:3 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:3 21997:6 21998:2 22010:1 22017:3 22021:8 22024:1 22025:1 22034:1 22037:1 22048:1 22065:1 22067:3 22070:1 22071:2 22085:1 22090:1 22107:1 22108:1 22116:1 22119:1 22126:2 22135:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:3 22183:1 22185:1 22186:2 22190:1 22194:2 22237:1 22255:3 22268:1 22269:1 22276:2 22316:2 22325:1 22327:1 22340:1 22347:2 22349:4 22352:1 22360:5 22372:1 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22584:3 22589:1 22599:1 22601:1 22621:1 22636:2 22648:2 22649:1 22651:4 22662:1 22666:1 22672:4 22674:1 22675:1 22688:1 22690:1 22709:2 22717:1 22725:2 22726:1 22731:1 22765:1 22770:1 22783:2 22787:1 22794:1 22796:3 22812:1 22829:1 22840:2 22849:1 22877:1 22880:1 22897:1 22901:3 22907:1 22911:1 22936:1 22938:1 22943:1 22956:2 22964:1 22975:1 22977:1 22983:1 22985:6 22988:1 22997:1 23003:4 23018:2 23034:1 23061:1 23068:2 23070:1 23076:2 23081:1 23114:1 23119:1 23141:1 23142:4 23160:2 23165:1 23188:4 23258:1 23263:1 23274:1 23284:1 23286:3 23301:1 23339:1 23345:1 23348:2 23359:1 23369:1 23370:1 23371:1 23376:1 23400:2 23425:1 23426:1 23444:1 23449:1 23466:2 23468:1 23496:3 23498:1 23504:3
16 1:1 3:1 5:1 7:1 25:1 26:1 33:1 51:2 64:1 67:1 82:1 87:1 108:1 110:2 114:1 119:3 126:1 138:1 148:1 154:1 161:1 164:4 165:2 171:1 193:1 204:1 224:1 229:1 262:1 279:1 280:1 282:1 286:1 294:1 296:1 317:1 334:1 335:1 337:1 344:2 347:1 384:1 394:1 402:1 403:2 406:1 413:3 416:3 428:1 435:1 440:4 446:1 463:4 464:1 467:1 470:1 471:1 488:1 507:4 511:1 514:1 516:1 518:1 522:1 527:1 539:4 564:1 568:1 578:1 584:1 596:1 606:2 607:1 608:2 613:1 626:3 640:2 643:1 646:2 652:2 657:1 660:1 665:1 690:1 710:1 719:1 732:2 735:3 739:1 744:2 759:1 774:1 786:1 791:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:1 855:2 860:3 863:1 886:8 896:1 898:1 902:8 904:1 910:1 914:5 947:2 960:1 962:2 967:2 988:1 993:2 996:3 1010:3 1032:1 1035:1 1048:2 1049:1 1060:1 1061:1 1071:4 1078:1 1086:1 1098:1 1113:1 1114:1 1115:3 1117:1 1118:1 1120:1 1131:4 1133:1 1145:3 1148:1 1157:1 1160:1 1162:1 1164:2 1172:1 1174:2 1178:1 1188:1 1190:4 1191:1 1194:2 1195:6 1196:1 1203:2 1207:1 1208:1 1235:1 1236:5 1242:4 1255:2 1268:2 1288:1 1291:1 1292:1 1298:1 1316:1 1325:1 1348:1 1362:1 1363:1 1366:2 1376:1 1382:2 1383:1 1384:1 1391:2 1399:4 1405:1 1417:1 1425:1 1428:1 1450:2 1451:2 1467:1 1488:2 1494:2 1526:2 1529:1 1537:2 1544:2 1559:1 1562:1 1564:2 1573:3 1574:1 1578:1 1579:3 1580:6 1581:2 1588:1 1596:1 1600:1 1612:1 1616:2 1628:8 1644:1 1647:6 1648:2 1649:2 1671:1 1672:2 1674:1 1679:2 1682:1 1683:1 1686:2 1714:1 1721:1 1737:2 1738:1 1752:19 1789:1 1792:1 1794:1 1802:5 1803:1 1807:1 1809:1 1829:2 1841:1 1844:1 1857:54 1869:1 1890:3 1899:1 1930:3 1935:1 1940:1 1943:1 1965:1 1968:1 1977:2 1978:1 1980:1 1981:1 1982:2 2001:1 2003:4 2021:1 2023:2 2027:1 2032:1 2034:2 2035:1 2036:2 2042:1 2044:2 2045:4 2047:1 2053:2 2057:1 2062:1 2063:3 2087:1 2095:1 2103:1 2105:2 2109:4 2112:1 2123:4 2124:2 2125:1 2142:1 2145:1 2150:1 2156:1 2158:1 2161:1 2174:1 2178:1 2182:3 2191:1 2192:1 2215:1 2231:1 2234:2 2236:1 2288:1 2297:1 2301:1 2310:5 2339:1 2343:3 2345:1 2354:1 2358:1 2363:1 2367:2 2368:2 2379:1 2384:1 2402:1 2414:6 2435:1 2447:6 2450:1 2459:1 2469:2 2479:2 2481:1 2483:3 2484:1 2494:1 2499:1 2512:4 2533:1 2547:1 2554:5 2562:1 2573:1 2581:1 2585:1 2598:2 2607:1 2609:1 2625:1 2632:2 2639:2 2642:1 2643:1 2658:4 2667:4 2671:2 2673:1 2683:1 2685:1 2688:1 2701:2 2702:1 2705:4 2708:3 2716:1 2718:1 2740:1 2746:1 2749:1 2763:1 2764:2 2773:4 2774:1 2778:1 2779:1 2781:1 2793:2 2795:1 2798:1 2801:1 2810:3 2814:1 2816:3 2828:2 2840:3 2851:1 2860:1 2870:1 2878:1 2892:1 2895:2 2896:1 2899:1 2902:1 2904:1 2914:1 2921:1 2926:1 2927:1 2936:1 2942:1 2952:1 2954:1 2966:11 2970:1 2979:1 2981:1 2986:1 2990:1 2995:1 3002:1 3004:1 3012:1 3014:1 3017:1 3023:1 3027:1 3033:2 3035:4 3039:1 3043:1 3046:1 3048:2 3052:1 3065:1 3066:3 3070:2 3084:1 3096:1 3098:1 3136:1 3141:1 3153:1 3156:1 3161:1 3168:2 3169:2 3170:1 3172:2 3177:3 3178:1 3186:1 3218:2 3219:1 3221:1 3223:3 3229:2 3234:1 3237:2 3240:1 3242:1 3255:1 3260:1 3264:3 3266:1 3268:1 3272:2 3274:1 3293:1 3302:1 3311:1 3314:2 3316:2 3343:2 3345:4 3346:2 3359:1 3382:1 3396:1 3403:1 3408:1 3409:3 3421:1 3437:1 3452:1 3462:1 3468:1 3473:3 3483:1 3519:1 3538:1 3540:1 3541:2 3542:1 3545:2 3546:4 3552:1 3553:1 3554:5 3555:1 3556:1 3559:5 3560:1 3562:4 3564:1 3567:1 3573:5 3575:3 3576:6 3590:1 3597:1 3606:2 3610:1 3616:1 3622:1 3637:1 3642:1 3644:1 3652:2 3656:1 3661:3 3673:2 3686:2 3694:1 3698:1 3701:1 3703:2 3705:1 3706:3 3711:1 3726:1 3731:1 3738:1 3740:1 3746:1 3752:3 3759:1 3761:1 3786:1 3792:1 3812:1 3819:1 3827:2 3854:2 3860:3 3865:1 3871:1 3875:1 3892:4 3906:2 3936:1 3946:1 3951:1 3952:1 3965:1 3974:1 3980:1 3990:1 4004:1 4006:1 4010:1 4027:5 4030:1 4034:1 4038:1 4050:1 4052:2 4058:1 4059:1 4072:1 4082:1 4083:2 4085:1 4089:2 4104:1 4105:1 4109:1 4117:2 4127:1 4134:1 4146:1 4150:1 4154:1 4174:1 4182:2 4183:2 4184:2 4197:1 4208:4 4219:1 4226:3 4242:1 4243:2 4244:1 4248:1 4255:1 4257:1 4260:2 4262:9 4281:1 4283:1 4295:1 4296:2 4307:1 4311:1 4317:1 4323:1 4335:2 4338:3 4342:1 4343:2 4358:1 4379:2 4380:1 4386:1 4393:2 4398:2 4413:1 4414:1 4417:5 4424:1 4427:2 4473:2 4480:1 4481:2 4488:2 4490:1 4511:4 4512:1 4513:9 4515:2 4516:1 4526:1 4533:1 4540:1 4560:2 4561:11 4577:7 4589:1 4616:2 4631:1 4632:1 4650:27 4658:1 4671:1 4675:1 4699:1 4701:1 4702:1 4705:2 4714:3 4720:1 4730:1 4735:2 4741:2 4746:1 4760:1 4766:1 4769:2 4778:1 4781:1 4786:1 4803:1 4807:2 4812:1 4818:1 4837:3 4844:4 4845:2 4860:1 4902:1 4932:3 4937:1 4955:1 4966:1 4968:1 4970:1 4984:1 4990:1 5022:1 5034:3 5038:1 5047:1 5048:1 5059:1 5060:1 5084:4 5092:1 5099:1 5112:1 5120:10 5130:2 5132:1 5139:1 5144:3 5159:1 5161:2 5170:1 5175:1 5183:1 5196:1 5199:1 5226:1 5227:3 5234:1 5236:1 5253:7 5279:2 5291:1 5297:1 5310:1 5341:1 5344:1 5352:1 5353:4 5365:1 5366:1 5383:4 5387:2 5388:1 5390:1 5398:3 5405:1 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5459:2 5465:1 5466:1 5467:1 5480:4 5510:1 5517:1 5521:3 5525:1 5542:1 5543:1 5560:3 5565:1 5601:1 5609:1 5619:1 5621:3 5623:1 5627:2 5632:1 5633:1 5659:1 5661:10 5667:1 5668:1 5677:1 5690:1 5701:1 5710:1 5724:1 5732:1 5748:3 5752:1 5762:1 5779:1 5780:1 5805:1 5809:1 5816:2 5817:35 5820:2 5826:1 5851:2 5853:1 5855:7 5858:1 5861:1 5869:1 5870:20 5871:1 5872:2 5873:1 5876:4 5896:1 5898:2 5906:1 5919:3 5932:2 5934:3 5939:2 5947:1 5953:5 5957:2 5961:1 5963:1 5967:2 5970:1 5981:1 5994:3 6003:1 6005:3 6013:1 6014:2 6017:1 6018:1 6025:1 6055:1 6059:2 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6095:1 6101:3596 6102:1 6107:1 6117:1 6133:2 6138:1 6140:4 6149:2 6165:1 6179:1 6180:1 6183:1 6184:1 6193:1 6195:1 6198:2 6201:1 6205:1 6210:4 6220:1 6232:1 6233:4 6248:1 6253:1 6273:3 6279:1 6289:1 6300:1 6313:1 6320:1 6349:3 6375:1 6376:2 6379:1 6399:2 6401:1 6407:3 6417:1 6434:1 6448:4 6450:2 6458:1 6463:1 6471:2 6480:1 6484:2 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6547:1 6559:1 6576:1 6577:1 6581:1 6584:1 6590:1 6601:1 6640:1 6644:4 6650:1 6666:1 6677:1 6686:1 6692:1 6698:1 6702:1 6705:9 6715:2 6725:1 6748:2 6750:1 6777:1 6782:1 6784:2 6787:1 6792:5 6798:1 6802:2 6817:1 6830:6 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6874:1 6880:1 6888:1 6936:1 6951:1 6956:2 6957:1 6962:1 6974:2 6975:1 6981:4 7006:1 7017:1 7049:1 7050:1 7066:2 7080:1 7097:2 7104:1 7110:2 7124:1 7134:4 7137:1 7139:1 7153:1 7157:3 7167:3 7171:1 7203:3 7208:2 7213:1 7238:1 7256:1 7276:1 7305:1 7319:1 7320:1 7329:1 7337:2 7340:1 7348:2 7349:1 7361:1 7363:2 7376:2 7377:4 7383:2 7397:2 7405:1 7408:3 7415:1 7444:1 7450:1 7452:1 7474:1 7476:14 7483:1 7488:1 7507:14 7508:2 7515:1 7516:1 7519:2 7520:1 7523:15 7529:1 7539:2 7555:2 7581:1 7582:4 7584:2 7585:1 7591:1 7607:1 7614:2 7632:1 7635:1 7638:4 7649:1 7663:1 7670:3 7671:2 7680:1 7684:5 7686:2 7689:1 7693:3 7694:1 7696:4 7702:1 7719:2 7720:1 7722:1 7730:2 7732:2 7733:6 7734:1 7735:1 7736:1 7740:2 7742:1 7750:19 7751:1 7753:1 7758:1 7762:2 7765:3 7773:2 7782:1 7788:3 7794:1 7811:1 7814:1 7817:3 7823:3 7871:1 7883:1 7887:1 7902:1 7922:2 7935:1 7948:1 7995:1 8003:1 8034:1 8047:1 8052:1 8065:1 8089:1 8091:11 8096:3 8097:3 8107:1 8108:5 8168:1 8177:1 8187:1 8209:1 8222:2 8224:1 8225:19 8231:1 8234:6 8254:1 8262:1 8270:1 8298:2 8301:1 8314:3 8317:1 8321:1 8325:1 8326:1 8351:1 8356:1 8357:1 8361:1 8367:2 8372:1 8373:1 8385:1 8412:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8469:1 8490:3 8491:1 8510:1 8520:2 8522:1 8525:2 8537:1 8544:1 8555:1 8558:1 8569:1 8573:2 8578:1 8579:4 8581:1 8598:2 8599:1 8605:2 8609:1 8618:2 8624:2 8634:2 8644:7 8673:1 8674:1 8679:1 8684:1 8692:1 8709:1 8713:2 8719:1 8723:1 8746:1 8748:12 8755:1 8756:1 8757:1 8769:2 8771:2 8780:2 8789:1 8791:1 8796:1 8802:1 8803:2 8828:1 8831:13 8834:1 8838:1 8856:1 8889:1 8894:1 8900:3 8903:1 8930:1 8937:2 8948:1 8957:1 8970:1 8973:1 8976:1 8980:1 8985:1 9017:1 9018:1 9020:1 9024:1 9029:1 9031:1 9044:1 9048:1 9053:2 9065:1 9066:1 9069:1 9083:1 9089:4 9090:1 9091:2 9119:1 9139:1 9158:2 9169:1 9180:3 9208:5 9215:1 9217:3 9218:1 9227:1 9231:3 9232:1 9253:1 9280:1 9285:1 9292:1 9302:1 9314:2 9370:1 9374:1 9393:1 9400:1 9402:7 9413:1 9416:2 9419:1 9445:1 9452:1 9477:1 9497:2 9509:1 9514:1 9517:1 9523:1 9528:2 9529:1 9536:1 9539:1 9541:1 9547:1 9573:1 9578:2 9589:1 9598:4 9610:1 9611:1 9612:1 9617:1 9625:2 9626:2 9645:1 9666:1 9687:3 9706:1 9707:2 9710:1 9719:1 9721:2 9725:1 9727:1 9733:1 9740:1 9747:5 9749:1 9751:12 9759:1 9769:1 9770:3 9772:1 9777:3 9778:1 9779:1 9791:1 9792:1 9797:2 9799:1 9800:5 9809:1 9812:1 9832:1 9848:4 9854:1 9866:1 9901:3 9904:1 9905:1 9906:1 9908:1 9910:1 9912:2 9913:2 9917:2 9918:3 9919:4 9920:2 9923:1 9926:2 9928:1 9929:7 9930:1 9932:1 9933:2 9940:2 9948:1 9950:1 9980:1 9986:2 9993:1 10018:7 10025:3 10027:1 10032:2 10036:1 10039:1 10050:1 10095:1 10105:1 10125:1 10129:1 10130:1 10147:2 10150:1 10153:1 10158:1 10165:1 10173:1 10182:3 10183:1 10193:1 10199:1 10201:1 10207:1 10208:1 10212:1 10223:2 10224:1 10226:1 10232:1 10277:1 10282:1 10288:1 10289:1 10313:1 10350:1 10362:1 10373:1 10386:2 10392:2 10412:1 10420:1 10421:4 10424:2 10426:3 10442:4 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10510:2 10515:1 10520:1 10536:3 10542:1 10544:2 10552:1 10562:1 10576:1 10579:1 10580:1 10581:1 10582:1 10587:1 10590:1 10593:6 10597:3 10613:1 10618:1 10634:1 10648:1 10662:1 10677:1 10699:1 10704:2 10708:1 10714:1 10734:1 10736:1 10737:1 10742:1 10749:1 10751:2 10759:1 10762:1 10766:3 10768:12 10780:3 10784:1 10793:2 10794:1 10799:1 10801:1 10811:1 10817:3 10828:3 10837:1 10840:1 10842:1 10861:1 10870:5 10873:2 10881:1 10904:1 10929:1 10936:2 10937:2 10941:3 10944:1 10946:1 10949:1 10953:1 10956:1 10957:4 10962:2 10972:1 10974:1 10983:1 11004:1 11018:1 11042:1 11043:1 11049:4 11061:1 11067:1 11068:2 11073:3 11082:1 11085:2 11106:1 11109:2 11151:1 11171:1 11184:2 11203:3 11210:1 11211:1 11212:8 11215:2 11220:2 11229:1 11230:2 11232:1 11234:1 11248:2 11250:1 11251:1 11252:1 11255:1 11264:2 11269:2 11271:1 11272:1 11281:1 11283:1 11284:1 11303:1 11310:5 11311:2 11316:2 11320:2 11322:1 11331:1 11351:1 11356:2 11367:1 11396:1 11423:1 11442:1 11444:5 11446:1 11489:1 11497:1 11508:1 11515:1 11530:1 11546:2 11549:1 11554:1 11577:1 11583:1 11593:4 11595:2 11599:1 11606:1 11609:1 11615:1 11631:1 11636:1 11644:1 11654:1 11666:4 11667:19 11670:2 11673:1 11701:1 11729:1 11733:1 11747:1 11749:1 11757:1 11767:1 11778:2 11781:3 11797:1 11799:2 11802:2 11811:1 11813:1 11819:1 11822:2 11834:2 11836:4 11847:1 11852:8 11878:3 11906:2 11907:2 11932:2 11942:1 11949:1 11963:1 11968:1 11971:1 11977:1 11983:2 12004:1 12008:1 12009:1 12015:1 12017:2 12034:1 12035:1 12055:2 12059:1 12060:1 12065:4 12083:9 12101:1 12115:4 12116:4 12117:3 12119:2 12140:1 12141:3 12143:2 12149:1 12154:1 12163:1 12173:1 12191:1 12192:2 12198:1 12200:1 12202:38 12205:1 12206:1 12209:2 12215:1 12226:11 12229:23 12237:2 12244:1 12248:1 12255:1 12259:1 12264:1 12266:1 12288:1 12295:5 12296:1 12344:1 12364:1 12370:3 12378:1 12381:1 12383:1 12392:1 12407:1 12420:1 12431:2 12440:1 12454:1 12469:1 12491:1 12506:1 12515:3 12518:5 12523:1 12529:1 12543:1 12549:1 12551:1 12553:1 12559:2 12566:13 12567:2 12584:1 12590:1 12592:1 12593:5 12606:2 12618:1 12628:1 12630:1 12633:1 12653:2 12666:1 12673:1 12682:2 12691:1 12693:2 12703:1 12709:1 12723:1 12731:1 12754:3 12767:1 12778:1 12783:5 12791:3 12814:7 12823:2 12830:1 12839:1 12850:1 12852:2 12853:1 12874:2 12879:1 12880:1 12887:1 12895:1 12904:1 12919:1 12921:1 12938:17 12963:1 12966:1 12970:1 12975:1 12976:1 12985:2 12986:1 13013:2 13015:1 13047:1 13053:1 13060:1 13064:1 13067:2 13070:1 13071:1 13084:2 13086:2 13107:1 13109:1 13124:1 13129:2 13175:1 13176:1 13177:5 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:1 13229:1 13240:4 13247:2 13253:1 13267:2 13270:3 13279:1 13289:1 13293:2 13296:1 13298:1 13309:1 13321:1 13324:2 13334:2 13346:1 13362:1 13363:2 13379:1 13384:1 13386:1 13387:1 13392:2 13405:1 13412:2 13414:2 13417:4 13419:1 13443:1 13451:1 13459:1 13471:1 13484:3 13489:1 13502:1 13505:3 13506:3 13526:6 13529:1 13537:1 13542:1 13544:1 13547:1 13552:1 13553:3 13557:2 13562:1 13565:1 13572:1 13573:2 13577:1 13578:1 13579:3 13580:2 13581:2 13582:4 13587:1 13593:1 13597:2 13599:2 13606:3 13609:2 13619:2 13620:1 13632:1 13644:1 13646:1 13653:1 13661:2 13672:1 13674:1 13682:1 13683:1 13703:4 13711:1 13715:21 13719:1 13724:1 13728:2 13735:1 13756:2 13781:1 13786:5 13826:3 13832:2 13846:1 13850:1 13851:1 13852:1 13854:1 13855:2 13861:1 13874:1 13881:1 13883:1 13935:2 13941:1 13943:1 13944:1 13971:1 13972:1 13978:1 13981:1 13982:1 13984:1 13986:2 13995:1 13999:3 14004:1 14007:1 14041:1 14051:1 14061:1 14076:1 14082:1 14091:4 14093:2 14096:4 14099:1 14100:1 14101:3 14104:3 14108:1 14114:2 14134:2 14137:1 14139:4 14152:1 14155:1 14172:1 14176:2 14184:2 14193:2 14241:4 14280:2 14281:1 14283:1 14290:1 14311:2 14312:2 14336:1 14345:1 14360:1 14364:1 14381:1 14386:1 14391:1 14396:1 14416:1 14429:2 14439:1 14440:1 14457:3 14474:2 14475:3 14484:1 14488:1 14490:1 14492:2 14493:1 14512:1 14519:1 14529:1 14530:1 14531:3 14533:1 14548:1 14555:1 14561:7 14586:2 14591:3 14595:1 14604:1 14605:1 14612:1 14622:1 14632:1 14641:1 14643:1 14646:1 14656:1 14658:1 14673:3 14675:1 14694:1 14703:1 14719:1 14720:1 14759:1 14767:1 14768:5 14775:1 14777:1 14781:1 14784:1 14794:1 14795:1 14809:3 14836:1 14846:1 14870:1 14872:2 14900:1 14902:1 14904:1 14907:3 14913:2 14924:1 14926:2 14929:1 14953:1 14955:3 14970:1 14973:1 14975:1 14982:1 14986:2 15016:1 15018:2 15038:1 15039:5 15065:1 15113:19 15114:1 15121:2 15137:1 15141:1 15143:1 15148:1 15151:1 15161:2 15162:5 15164:1 15167:2 15189:4 15193:1 15204:1 15205:2 15206:1 15215:1 15217:2 15227:3 15233:1 15235:2 15252:1 15266:2 15280:1 15281:2 15283:1 15291:1 15295:2 15319:1 15324:1 15330:2 15337:14 15344:2 15348:1 15367:1 15370:1 15377:2 15401:1 15403:1 15408:1 15413:1 15435:1 15441:4 15444:5 15454:1 15459:3 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15482:1 15499:1 15500:1 15511:1 15528:1 15541:1 15547:1 15552:1 15553:1 15597:2 15600:1 15601:3 15621:1 15622:2 15643:1 15660:6 15661:1 15664:2 15671:1 15675:2 15678:4 15680:2 15682:1 15689:2 15693:1 15698:1 15708:2 15714:2 15718:1 15723:1 15731:1 15732:2 15744:1 15750:1 15757:1 15759:1 15764:1 15766:3 15772:1 15774:1 15776:1 15786:1 15820:1 15822:1 15825:1 15829:3 15830:1 15840:3 15844:1 15852:2 15877:1 15878:2 15892:3 15898:1 15909:2 15932:5 15967:1 15980:1 15981:3 15986:1 16005:1 16035:10 16037:1 16038:6 16046:1 16048:1 16050:1 16066:1 16080:1 16098:2 16099:1 16107:1 16109:1 16133:5 16135:1 16160:1 16164:1 16172:2 16178:1 16189:1 16190:2 16197:1 16199:1 16208:1 16236:3 16246:1 16261:1 16269:4 16282:1 16290:1 16297:4 16317:1 16322:1 16338:1 16341:1 16345:1 16354:1 16373:1 16393:2 16410:4 16414:1 16425:1 16428:1 16435:1 16438:3 16449:2 16460:1 16464:1 16468:1 16480:1 16505:2 16508:7 16512:4 16523:1 16527:1 16548:1 16556:1 16557:1 16574:2 16588:2 16589:2 16593:2 16602:5 16607:1 16614:1 16615:6 16629:1 16636:4 16637:1 16638:3 16640:4 16643:1 16670:1 16674:1 16677:1 16702:1 16703:3 16728:1 16729:1 16735:1 16749:4 16759:1 16763:2 16774:2 16782:7 16848:1 16862:1 16864:1 16865:1 16868:1 16869:1 16870:7 16872:3 16881:1 16911:1 16930:2 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16967:1 16975:1 16990:1 16992:6 16993:1 17008:1 17009:1 17020:1 17026:1 17033:4 17046:5 17048:1 17059:2 17080:1 17089:1 17099:1 17102:1 17106:1 17109:1 17128:2 17151:1 17160:2 17162:1 17164:6 17175:1 17185:1 17186:1 17187:7 17208:3 17211:7 17222:2 17231:2 17237:1 17240:1 17241:1 17255:1 17274:1 17281:4 17283:2 17284:1 17311:2 17324:3 17336:1 17338:2 17343:1 17347:3 17377:3 17389:5 17395:1 17424:1 17437:2 17442:2 17457:1 17465:2 17469:1 17486:1 17501:2 17528:1 17530:1 17534:1 17539:1 17540:1 17541:1 17543:1 17545:1 17546:4 17547:1 17568:1 17577:1 17596:2 17618:1 17623:1 17632:1 17634:1 17667:1 17670:2 17681:1 17707:4 17708:1 17709:3 17725:1 17741:1 17744:1 17770:1 17785:1 17794:3 17811:1 17818:1 17821:2 17824:1 17829:1 17841:1 17851:3 17852:1 17853:5 17857:1 17859:1 17862:2 17865:2 17894:1 17906:1 17908:1 17922:1 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17983:2 17986:1 17995:2 18004:1 18011:1 18025:6 18031:3 18032:1 18037:1 18047:1 18050:1 18057:1 18064:2 18078:1 18087:1 18090:4 18104:3 18106:1 18123:1 18131:2 18133:3 18134:1 18138:2 18153:1 18197:1 18205:3 18206:1 18209:3 18217:1 18230:3 18239:1 18240:7 18241:1 18257:1 18258:1 18261:1 18262:1 18265:1 18266:1 18267:1 18272:10 18275:1 18277:1 18280:5 18281:1 18287:1 18292:1 18293:5 18303:1 18322:1 18326:1 18334:7 18345:1 18348:1 18368:2 18385:5 18391:1 18397:1 18399:2 18411:1 18423:1 18446:1 18463:1 18470:1 18472:1 18482:1 18491:4 18509:3 18510:1 18513:1 18514:2 18525:1 18542:1 18547:2 18574:1 18586:1 18592:1 18623:1 18628:1 18632:2 18646:1 18656:2 18679:3 18703:5 18705:2 18708:1 18713:1 18721:1 18722:2 18723:1 18724:4 18725:7 18729:1 18735:2 18739:2 18766:2 18792:2 18815:2 18833:1 18855:5 18856:1 18875:1 18883:3 18896:1 18900:1 18906:2 18922:1 18929:3 18937:1 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18969:1 18974:2 18975:1 18980:1 18993:1 19004:3 19005:3 19007:19 19017:6 19031:1 19040:2 19047:1 19052:1 19055:1 19066:1 19089:2 19111:1 19126:1 19134:1 19164:1 19195:1 19207:1 19236:1 19240:1 19252:1 19260:9 19262:2 19271:1 19281:1 19282:1 19290:1 19298:1 19299:3 19306:1 19310:1 19312:2 19319:1 19342:1 19357:1 19361:2 19373:2 19391:2 19397:3 19404:1 19418:1 19430:1 19439:1 19456:1 19476:2 19481:1 19492:1 19496:2 19498:2 19502:1 19512:2 19529:1 19544:1 19584:1 19595:2 19597:2 19604:4 19626:1 19631:3 19636:1 19640:1 19647:9 19653:1 19663:1 19697:2 19698:1 19707:1 19712:3 19727:1 19734:1 19749:1 19754:1 19774:1 19776:1 19790:21 19791:1 19794:3 19796:1 19807:1 19820:1 19834:1 19835:1 19843:3 19855:1 19880:1 19936:6 19952:1 19956:1 19959:1 19963:1 19969:1 19970:2 19974:3 19977:3 19978:2 20017:2 20021:1 20022:2 20023:4 20026:1 20032:2 20038:2 20041:1 20046:1 20055:1 20056:1 20062:2 20071:1 20075:1 20079:2 20080:3 20106:2 20125:1 20139:1 20148:1 20160:2 20190:1 20191:1 20197:2 20214:2 20217:1 20237:1 20250:1 20255:1 20256:1 20263:1 20270:2 20284:1 20285:2 20291:1 20299:1 20311:1 20325:1 20351:2 20353:1 20378:1 20379:1 20392:1 20403:1 20413:1 20414:1 20420:1 20424:1 20438:3 20439:1 20511:7 20522:1 20536:1 20550:5 20572:1 20587:1 20590:2 20591:1 20599:1 20638:3 20642:1 20648:1 20653:3 20656:1 20664:1 20669:1 20678:2 20681:1 20696:1 20703:1 20724:2 20733:1 20740:1 20741:1 20742:1 20747:2 20754:1 20767:1 20770:3 20777:1 20793:2 20794:1 20802:2 20819:1 20842:1 20852:1 20853:5 20859:2 20863:4 20904:1 20905:1 20915:1 20916:2 20918:1 20924:2 20931:1 20940:1 20941:2 20944:6 20955:1 20956:4 20961:1 20976:1 20987:3 21013:1 21014:3 21015:1 21018:1 21022:1 21029:4 21035:1 21040:3 21048:1 21061:1 21066:1 21074:3 21075:1 21077:1 21096:1 21099:7 21102:1 21104:1 21108:25 21109:2 21110:2 21113:2 21119:4 21121:1 21122:1 21125:1 21128:1 21133:2 21143:1 21145:2 21146:1 21169:1 21171:13 21173:2 21201:2 21205:1 21209:1 21221:2 21222:1 21223:1 21224:1 21242:1 21243:4 21247:1 21256:1 21262:1 21276:2 21292:3 21315:1 21320:1 21321:1 21324:2 21329:2 21333:6 21338:1 21340:2 21353:1 21355:1 21361:1 21373:2 21374:2 21375:2 21377:1 21381:1 21384:1 21391:4 21403:1 21406:4 21411:1 21413:2 21415:2 21441:1 21459:2 21460:3 21470:2 21478:1 21482:1 21487:1 21509:1 21514:2 21528:1 21530:1 21535:1 21536:1 21537:1 21538:2 21539:1 21540:1 21543:1 21551:1 21570:1 21575:1 21580:1 21588:1 21598:1 21603:1 21609:1 21611:1 21622:1 21634:2 21635:1 21639:1 21640:1 21641:1 21646:1 21647:2 21651:1 21668:1 21669:1 21703:1 21704:1 21711:7 21712:1 21721:2 21722:1 21729:1 21750:1 21761:1 21762:1 21773:1 21778:2 21779:1 21782:4 21786:1 21795:1 21803:1 21804:1 21808:1 21826:1 21831:2 21835:1 21837:1 21838:2 21843:1 21845:2 21866:1 21877:1 21880:2 21881:1 21889:4 21894:8 21899:1 21907:3 21912:1 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:3 21997:6 21998:2 22010:1 22017:3 22021:8 22024:1 22025:1 22034:1 22037:1 22048:1 22065:1 22067:3 22070:2 22071:2 22085:1 22090:1 22107:1 22108:1 22116:1 22119:1 22126:2 22135:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:3 22183:2 22185:1 22186:2 22190:1 22194:2 22237:1 22255:3 22268:1 22269:1 22276:2 22316:2 22325:1 22327:1 22332:1 22340:1 22347:2 22349:4 22352:1 22360:5 22372:1 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22584:3 22589:1 22599:1 22601:1 22621:1 22629:1 22636:2 22648:2 22649:1 22651:4 22662:1 22666:1 22672:4 22674:1 22675:1 22688:1 22690:1 22709:2 22717:1 22725:2 22726:1 22731:1 22765:1 22770:1 22783:2 22787:1 22794:1 22796:3 22812:1 22829:1 22840:2 22849:1 22877:1 22880:1 22897:1 22901:3 22907:1 22911:1 22928:1 22936:1 22938:1 22943:1 22956:2 22964:1 22975:1 22977:1 22983:1 22985:6 22988:1 22997:1 23003:4 23018:2 23034:1 23061:1 23068:2 23070:1 23076:2 23081:1 23114:1 23119:1 23141:1 23142:5 23160:2 23165:1 23188:4 23258:1 23263:1 23274:1 23284:1 23286:5 23301:1 23339:1 23345:1 23348:2 23359:1 23369:1 23370:1 23371:1 23376:1 23400:2 23425:1 23426:1 23444:1 23449:1 23466:2 23468:1 23496:3 23498:1 23504:3
16 1:1 3:1 5:1 7:1 25:1 26:1 33:1 51:2 64:1 67:1 82:1 87:1 108:1 110:2 114:1 119:3 126:1 138:1 148:1 154:1 161:1 164:4 165:2 171:1 193:1 204:1 224:1 229:2 262:1 279:1 280:1 282:1 286:1 294:1 296:1 317:1 334:1 335:1 337:1 344:2 347:1 384:1 394:1 402:1 403:2 406:1 413:3 416:4 428:1 435:1 440:4 446:1 463:4 464:1 467:1 470:1 471:1 488:1 507:4 511:1 514:1 516:1 518:1 522:1 527:1 539:4 564:1 568:1 578:1 584:1 596:1 606:2 607:1 608:3 613:1 626:3 640:2 643:1 646:2 652:2 657:1 660:1 665:1 690:1 710:1 719:1 732:2 735:3 739:1 744:2 759:1 774:1 786:1 791:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:1 855:2 860:3 863:1 886:8 896:1 898:1 902:8 904:1 910:1 914:5 947:2 960:1 962:2 967:2 988:1 993:3 996:3 1010:3 1032:1 1035:1 1048:2 1049:1 1060:1 1061:1 1071:4 1078:1 1086:1 1098:1 1113:1 1114:1 1115:3 1117:1 1118:1 1120:1 1131:6 1133:1 1145:3 1148:1 1157:1 1160:1 1162:1 1164:2 1172:1 1174:2 1178:1 1188:1 1190:4 1191:1 1194:2 1195:6 1196:1 1203:2 1207:1 1208:1 1235:1 1236:6 1242:4 1255:2 1268:2 1288:1 1291:1 1292:1 1298:1 1316:1 1325:1 1348:1 1362:1 1363:1 1366:2 1376:1 1380:1 1382:2 1383:1 1384:1 1391:2 1399:5 1405:1 1417:1 1425:1 1428:1 1450:2 1451:2 1467:2 1488:2 1494:2 1526:2 1529:1 1537:2 1544:2 1559:1 1562:2 1564:2 1573:3 1574:1 1578:1 1579:3 1580:6 1581:2 1588:1 1596:1 1600:1 1609:1 1612:1 1616:3 1628:8 1643:1 1644:1 1647:6 1648:2 1649:2 1671:1 1672:2 1674:1 1679:2 1682:1 1683:1 1686:2 1714:1 1721:1 1737:2 1738:1 1752:19 1789:1 1792:1 1794:1 1802:5 1803:1 1807:1 1809:1 1829:2 1841:2 1844:1 1857:55 1869:1 1890:3 1899:1 1930:3 1935:1 1940:1 1943:1 1965:1 1968:1 1977:2 1978:1 1980:1 1981:1 1982:2 2001:1 2003:4 2021:1 2023:2 2027:1 2032:1 2034:2 2035:1 2036:2 2042:1 2044:2 2045:4 2047:1 2053:2 2057:1 2062:1 2063:3 2087:1 2095:1 2103:1 2105:2 2109:4 2112:1 2123:4 2124:2 2125:1 2142:1 2145:1 2150:1 2156:1 2158:1 2161:1 2174:1 2178:1 2182:3 2191:1 2192:1 2215:1 2231:1 2234:2 2236:1 2288:1 2297:1 2301:1 2310:5 2339:1 2343:3 2345:1 2354:1 2358:1 2363:1 2367:2 2368:2 2379:1 2384:1 2402:1 2414:6 2427:1 2435:1 2447:6 2450:1 2459:1 2469:2 2479:2 2481:1 2483:3 2484:1 2494:1 2499:1 2512:4 2533:1 2547:1 2549:1 2554:5 2562:1 2573:1 2581:1 2585:2 2598:2 2607:1 2609:1 2625:1 2632:2 2639:2 2642:1 2643:1 2658:4 2667:4 2671:2 2673:1 2683:1 2685:1 2688:1 2701:2 2702:1 2705:5 2708:3 2716:1 2718:1 2740:1 2746:1 2749:1 2763:1 2764:2 2773:4 2774:1 2778:1 2779:1 2781:1 2793:2 2795:1 2798:1 2801:1 2810:3 2814:1 2816:3 2828:2 2840:3 2851:1 2860:1 2870:1 2878:1 2892:1 2895:2 2896:1 2899:1 2902:1 2904:1 2914:1 2921:1 2926:1 2927:1 2936:1 2942:1 2952:1 2954:1 2964:1 2966:13 2970:1 2979:1 2981:1 2986:1 2989:1 2990:1 2995:1 3002:1 3004:1 3012:1 3014:1 3017:1 3023:1 3027:1 3033:2 3035:4 3039:1 3043:1 3046:1 3048:2 3052:1 3065:1 3066:3 3070:2 3074:1 3084:1 3096:1 3098:1 3103:1 3136:1 3141:1 3153:1 3156:1 3161:1 3168:2 3169:2 3170:1 3172:2 3177:3 3178:1 3186:1 3218:2 3219:1 3221:1 3223:3 3229:2 3234:1 3237:2 3240:1 3242:2 3255:1 3260:1 3264:3 3266:1 3268:1 3272:2 3274:1 3293:1 3302:1 3311:1 3314:2 3316:2 3343:2 3345:4 3346:2 3359:1 3382:2 3396:1 3403:1 3408:1 3409:3 3421:1 3437:1 3452:1 3462:1 3468:1 3473:3 3483:1 3519:1 3538:1 3540:1 3541:2 3542:1 3545:2 3546:4 3552:1 3553:1 3554:5 3555:1 3556:1 3559:5 3560:1 3562:4 3564:1 3567:1 3573:5 3575:3 3576:7 3590:1 3597:1 3605:1 3606:2 3610:1 3616:1 3622:1 3637:1 3642:1 3644:1 3652:2 3656:1 3661:3 3673:2 3686:2 3694:1 3698:1 3701:1 3703:2 3705:1 3706:3 3711:1 3714:1 3726:1 3731:1 3738:1 3740:1 3746:1 3752:3 3759:1 3761:1 3786:1 3792:1 3812:1 3819:1 3823:1 3827:2 3853:1 3854:2 3860:5 3865:1 3871:1 3875:1 3892:4 3906:2 3936:1 3946:1 3951:1 3952:1 3965:1 3973:1 3974:1 3980:1 3990:1 4004:1 4006:1 4010:1 4027:5 4030:1 4034:1 4038:1 4050:1 4052:2 4058:1 4059:1 4072:1 4082:1 4083:2 4085:1 4089:2 4104:1 4105:1 4109:1 4117:2 4127:1 4134:1 4146:1 4150:1 4154:1 4174:1 4182:2 4183:2 4184:2 4197:1 4208:4 4219:1 4226:4 4242:1 4243:2 4244:1 4248:1 4255:1 4257:1 4260:2 4262:10 4281:1 4283:1 4295:1 4296:2 4307:1 4311:1 4317:1 4323:1 4335:3 4338:3 4342:1 4343:2 4358:1 4379:2 4380:1 4386:1 4393:2 4398:2 4413:1 4414:1 4417:5 4424:1 4427:2 4473:3 4480:1 4481:2 4488:2 4490:1 4511:4 4512:1 4513:9 4515:2 4516:1 4526:1 4533:1 4540:1 4560:2 4561:11 4577:7 4589:1 4616:2 4631:1 4632:1 4650:29 4658:1 4671:2 4675:1 4699:1 4701:1 4702:1 4705:2 4714:3 4720:1 4730:1 4735:2 4741:2 4746:1 4760:1 4766:1 4769:2 4778:1 4781:1 4786:1 4803:1 4807:2 4812:1 4818:2 4837:4 4844:4 4845:2 4860:1 4900:1 4902:1 4932:3 4937:1 4955:1 4966:1 4968:1 4970:1 4984:1 4990:1 5022:1 5034:3 5038:1 5047:1 5048:1 5059:1 5060:1 5084:4 5092:1 5099:1 5112:1 5120:10 5130:2 5132:1 5139:1 5144:3 5159:1 5161:2 5170:1 5175:1 5183:1 5196:1 5199:1 5226:1 5227:3 5234:1 5236:1 5253:7 5279:2 5291:1 5297:2 5310:1 5341:1 5344:1 5348:1 5352:1 5353:4 5365:1 5366:1 5383:4 5387:2 5388:1 5390:1 5398:3 5405:1 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5459:2 5465:1 5466:1 5467:1 5480:4 5510:1 5517:1 5521:3 5525:1 5542:1 5543:1 5560:3 5565:1 5601:1 5609:1 5619:1 5621:3 5623:2 5627:2 5632:1 5633:1 5650:1 5659:1 5661:10 5667:1 5668:1 5677:1 5690:1 5701:1 5710:1 5724:1 5732:1 5748:3 5752:1 5762:1 5779:1 5780:1 5805:1 5809:1 5816:2 5817:35 5820:2 5826:1 5851:2 5853:1 5855:8 5858:1 5861:1 5869:1 5870:21 5871:1 5872:2 5873:1 5876:4 5896:1 5898:2 5906:1 5919:3 5932:2 5934:3 5939:2 5947:1 5953:5 5957:2 5961:1 5963:1 5967:2 5970:1 5981:1 5994:3 6003:2 6005:3 6013:1 6014:2 6017:1 6018:1 6025:1 6055:1 6059:2 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6095:1 6101:3722 6102:1 6107:1 6117:1 6133:2 6138:1 6140:4 6149:2 6165:1 6179:1 6180:1 6183:1 6184:1 6193:1 6195:1 6198:2 6201:1 6205:1 6210:4 6220:1 6232:1 6233:4 6248:1 6253:1 6273:3 6279:1 6289:1 6300:1 6313:1 6320:1 6349:3 6375:1 6376:2 6379:1 6399:2 6401:1 6407:3 6417:1 6434:1 6448:4 6450:2 6458:1 6463:1 6471:2 6480:1 6484:2 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6547:1 6559:1 6576:1 6577:1 6581:1 6584:1 6590:1 6601:1 6640:1 6644:4 6650:1 6666:1 6677:1 6686:1 6692:1 6698:1 6702:1 6705:9 6715:2 6725:1 6748:2 6750:1 6777:1 6782:1 6784:2 6787:1 6792:5 6798:1 6802:2 6817:1 6830:6 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6874:1 6880:1 6888:1 6936:1 6951:1 6956:2 6957:1 6962:1 6974:2 6975:1 6981:4 7006:1 7017:1 7049:1 7050:1 7066:2 7080:1 7097:2 7104:1 7110:2 7124:1 7134:4 7137:1 7139:2 7153:1 7157:3 7167:3 7171:1 7203:3 7208:2 7213:1 7238:1 7256:1 7276:1 7305:1 7319:1 7320:1 7329:1 7337:2 7340:1 7348:2 7349:1 7361:1 7363:2 7376:2 7377:4 7383:2 7397:2 7405:1 7408:3 7415:1 7444:1 7450:1 7452:1 7474:1 7476:14 7483:1 7488:1 7507:15 7508:2 7515:1 7516:1 7519:3 7520:1 7523:17 7529:1 7539:2 7555:2 7581:1 7582:5 7584:2 7585:1 7591:1 7607:1 7614:2 7632:1 7635:1 7638:4 7649:1 7663:1 7670:3 7671:2 7680:1 7684:6 7686:2 7689:1 7693:3 7694:1 7696:4 7702:1 7719:2 7720:1 7722:1 7730:2 7732:2 7733:7 7734:1 7735:1 7736:1 7739:1 7740:2 7742:1 7750:19 7751:1 7753:1 7758:1 7762:2 7765:3 7773:2 7782:1 7788:3 7794:1 7811:1 7814:1 7817:3 7823:3 7871:1 7883:1 7887:1 7902:1 7922:2 7935:1 7948:1 7995:1 8003:1 8034:1 8047:1 8052:1 8065:1 8089:1 8091:13 8096:3 8097:3 8107:1 8108:5 8168:1 8177:1 8187:1 8209:1 8222:2 8224:1 8225:19 8231:1 8234:6 8254:1 8262:1 8270:1 8298:2 8301:1 8314:3 8317:1 8321:1 8325:1 8326:1 8351:1 8356:1 8357:1 8361:1 8367:2 8372:1 8373:1 8385:1 8412:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8469:1 8490:3 8491:1 8510:1 8520:2 8522:1 8525:2 8537:1 8544:1 8555:1 8558:1 8569:1 8573:2 8578:1 8579:4 8581:1 8598:2 8599:1 8605:2 8609:1 8618:2 8624:2 8634:2 8644:7 8673:1 8674:1 8679:1 8684:1 8692:1 8709:1 8713:2 8719:1 8723:1 8746:1 8748:14 8755:1 8756:1 8757:1 8769:2 8771:2 8780:2 8789:1 8791:1 8796:1 8802:1 8803:2 8828:1 8831:13 8834:1 8838:1 8856:1 8889:1 8894:1 8900:3 8903:1 8930:1 8937:2 8948:1 8957:1 8970:1 8973:1 8976:1 8980:1 8985:1 9017:1 9018:1 9020:1 9024:1 9029:1 9031:1 9043:1 9044:1 9048:1 9053:2 9065:1 9066:1 9069:1 9083:1 9089:4 9090:1 9091:2 9119:1 9123:1 9139:1 9158:2 9169:1 9180:3 9208:5 9215:1 9217:3 9218:1 9227:1 9231:3 9232:1 9241:1 9253:1 9280:1 9285:1 9292:1 9302:1 9314:2 9348:1 9370:1 9374:1 9393:1 9400:2 9402:8 9413:1 9416:2 9419:1 9445:1 9450:1 9452:1 9477:1 9497:2 9509:1 9514:1 9517:1 9523:2 9528:2 9529:1 9536:1 9539:1 9541:1 9547:1 9573:1 9578:2 9589:1 9598:4 9610:1 9611:1 9612:1 9617:2 9625:2 9626:2 9645:1 9652:1 9666:1 9687:3 9706:1 9707:3 9710:1 9719:1 9721:2 9725:1 9727:1 9733:1 9740:1 9747:5 9749:1 9751:13 9759:1 9769:1 9770:3 9772:1 9777:4 9778:1 9779:1 9791:2 9792:1 9797:2 9799:1 9800:5 9809:1 9812:1 9832:1 9848:4 9854:1 9866:1 9867:1 9901:4 9904:2 9905:1 9906:1 9908:1 9910:1 9912:2 9913:2 9917:2 9918:3 9919:4 9920:2 9923:1 9926:2 9928:1 9929:7 9930:1 9932:1 9933:2 9940:2 9948:1 9950:1 9980:1 9986:2 9993:1 10018:7 10025:3 10027:1 10032:2 10036:1 10039:1 10050:1 10095:1 10105:1 10125:1 10129:1 10130:1 10147:2 10150:1 10153:1 10158:1 10165:1 10173:1 10178:1 10182:3 10183:1 10193:1 10199:1 10201:1 10207:1 10208:1 10212:1 10223:2 10224:1 10226:1 10232:1 10277:1 10282:1 10288:1 10289:1 10313:1 10350:1 10362:1 10373:1 10386:2 10392:2 10412:1 10420:1 10421:4 10424:2 10426:3 10442:4 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10509:1 10510:2 10515:1 10520:1 10536:3 10542:1 10544:2 10552:1 10562:1 10576:1 10579:1 10580:1 10581:1 10582:1 10587:1 10590:1 10593:6 10597:3 10613:1 10618:1 10623:1 10634:1 10648:1 10662:1 10677:1 10699:1 10700:1 10704:2 10708:1 10714:1 10734:1 10736:1 10737:1 10742:1 10749:1 10751:2 10759:1 10762:1 10766:4 10768:13 10780:3 10784:1 10793:2 10794:1 10799:1 10801:1 10805:1 10811:1 10817:3 10828:3 10837:1 10840:1 10842:1 10861:1 10870:5 10873:2 10881:1 10904:1 10929:1 10936:2 10937:2 10941:3 10944:1 10946:1 10949:1 10953:1 10956:1 10957:4 10962:2 10972:1 10974:1 10983:1 11004:1 11018:1 11042:1 11043:1 11049:4 11061:2 11067:1 11068:2 11073:3 11082:1 11085:2 11106:1 11109:2 11151:1 11171:1 11184:2 11203:4 11210:1 11211:1 11212:8 11215:2 11220:2 11229:1 11230:2 11232:1 11234:1 11248:2 11250:1 11251:1 11252:1 11255:1 11264:2 11269:2 11271:1 11272:1 11281:1 11283:1 11284:1 11303:1 11310:5 11311:2 11316:2 11320:2 11322:1 11331:1 11351:1 11356:2 11367:1 11396:1 11423:1 11442:1 11444:5 11446:1 11489:1 11497:1 11508:1 11515:1 11530:1 11546:2 11549:1 11554:1 11577:1 11583:1 11593:4 11595:2 11599:1 11606:1 11609:1 11615:1 11631:1 11636:1 11644:1 11654:1 11666:4 11667:19 11670:2 11673:1 11701:1 11729:1 11733:1 11747:1 11749:1 11757:1 11767:1 11778:2 11781:3 11797:1 11799:2 11802:2 11811:1 11813:1 11819:1 11822:2 11834:2 11836:4 11847:1 11852:8 11878:4 11906:2 11907:2 11932:2 11942:1 11949:1 11963:1 11968:1 11971:2 11977:1 11983:2 12004:1 12008:1 12009:1 12015:1 12017:2 12034:1 12035:1 12055:2 12059:1 12060:1 12065:4 12083:9 12101:1 12115:4 12116:5 12117:3 12119:2 12140:1 12141:3 12143:2 12149:1 12154:1 12163:1 12173:1 12191:1 12192:2 12198:1 12200:1 12202:39 12205:1 12206:1 12209:2 12215:1 12226:11 12229:25 12237:2 12244:1 12248:1 12255:1 12259:1 12264:1 12266:1 12288:1 12295:5 12296:1 12344:1 12364:1 12370:3 12378:1 12381:1 12383:1 12392:1 12407:1 12420:1 12431:2 12440:1 12454:1 12469:1 12491:1 12506:1 12515:3 12518:6 12523:1 12529:1 12543:1 12549:1 12551:1 12553:1 12559:2 12566:15 12567:2 12584:1 12590:1 12592:1 12593:5 12606:2 12618:1 12628:1 12630:1 12633:1 12653:2 12666:1 12673:1 12682:3 12691:1 12693:2 12703:1 12709:1 12723:1 12731:1 12754:3 12767:1 12778:1 12783:5 12791:3 12814:7 12823:2 12830:1 12839:1 12850:1 12852:2 12853:1 12874:2 12879:1 12880:1 12887:1 12895:1 12904:1 12919:1 12921:1 12938:17 12963:1 12966:1 12968:1 12970:1 12975:1 12976:1 12985:2 12986:1 13013:2 13015:1 13047:1 13053:1 13060:1 13064:1 13067:2 13070:1 13071:1 13084:2 13086:2 13097:1 13107:1 13109:1 13124:1 13129:2 13175:1 13176:1 13177:5 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:1 13229:1 13239:1 13240:4 13247:2 13253:1 13267:2 13270:3 13279:1 13289:1 13293:2 13296:1 13298:2 13309:1 13321:1 13324:2 13334:2 13346:1 13362:1 13363:2 13379:1 13384:1 13386:1 13387:1 13392:2 13405:1 13412:2 13414:2 13417:4 13419:1 13443:1 13451:1 13459:1 13471:1 13484:3 13489:1 13502:1 13505:3 13506:4 13514:1 13526:6 13529:1 13537:1 13542:1 13544:1 13547:1 13552:1 13553:3 13557:2 13562:1 13565:1 13572:1 13573:2 13577:1 13578:1 13579:3 13580:2 13581:2 13582:5 13587:1 13593:2 13597:2 13599:2 13606:3 13609:2 13619:2 13620:1 13632:1 13644:1 13646:1 13653:1 13661:2 13672:1 13674:1 13682:1 13683:1 13703:4 13711:1 13715:22 13719:1 13724:1 13728:2 13735:1 13747:1 13756:3 13781:1 13786:5 13826:3 13832:2 13846:1 13850:1 13851:1 13852:1 13854:1 13855:2 13861:1 13874:1 13881:1 13883:1 13935:3 13941:1 13943:2 13944:1 13971:1 13972:1 13978:1 13981:1 13982:1 13984:1 13986:2 13995:1 13999:3 14004:1 14007:1 14037:1 14041:1 14051:2 14061:1 14076:1 14082:1 14091:4 14093:2 14096:4 14099:1 14100:1 14101:4 14104:3 14108:1 14114:2 14134:2 14137:1 14139:4 14152:1 14155:1 14172:1 14176:2 14184:2 14193:2 14241:4 14280:2 14281:1 14283:1 14290:1 14311:2 14312:2 14336:1 14337:1 14345:1 14360:1 14364:1 14381:1 14386:1 14391:1 14396:1 14416:1 14429:2 14439:1 14440:1 14457:3 14474:2 14475:3 14484:1 14488:1 14490:1 14492:2 14493:1 14512:1 14519:2 14529:1 14530:1 14531:3 14533:1 14548:1 14555:1 14561:7 14586:2 14591:3 14595:1 14604:1 14605:1 14612:1 14622:1 14632:1 14641:1 14643:1 14646:1 14656:1 14658:1 14673:3 14675:1 14694:1 14703:1 14719:1 14720:1 14759:1 14767:1 14768:5 14775:1 14777:1 14781:1 14784:1 14794:1 14795:1 14809:3 14836:1 14846:1 14870:1 14872:2 14900:1 14902:1 14904:1 14907:3 14913:2 14924:1 14926:2 14929:1 14953:1 14955:3 14970:1 14973:1 14975:1 14982:1 14986:2 15016:1 15018:2 15038:1 15039:5 15065:1 15113:19 15114:1 15121:2 15137:1 15141:1 15143:1 15148:1 15151:1 15161:2 15162:5 15164:1 15167:2 15189:4 15193:1 15204:1 15205:2 15206:1 15215:1 15217:2 15227:3 15233:1 15235:2 15252:1 15266:2 15280:1 15281:2 15283:1 15291:1 15295:2 15304:1 15319:1 15324:1 15330:2 15337:14 15344:2 15348:1 15367:1 15369:2 15370:1 15377:2 15401:1 15403:1 15408:1 15413:1 15435:1 15441:4 15444:5 15454:1 15459:3 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15482:1 15499:1 15500:1 15511:1 15528:1 15541:1 15547:1 15552:1 15553:1 15567:1 15594:1 15597:2 15600:1 15601:3 15621:1 15622:2 15623:1 15643:1 15660:7 15661:1 15664:2 15671:1 15675:2 15678:4 15680:2 15682:1 15689:2 15693:1 15698:1 15708:2 15714:2 15718:1 15723:1 15731:1 15732:2 15744:1 15750:1 15757:1 15759:1 15764:1 15766:3 15772:1 15774:1 15776:1 15786:1 15820:1 15822:1 15825:1 15829:3 15830:1 15840:3 15844:1 15852:2 15877:1 15878:2 15892:3 15898:1 15909:2 15932:5 15967:1 15980:1 15981:3 15986:1 16005:1 16035:10 16037:1 16038:6 16046:1 16048:1 16050:1 16053:1 16066:1 16080:1 16098:2 16099:1 16107:1 16109:1 16133:5 16135:1 16160:1 16164:1 16172:2 16178:1 16189:1 16190:2 16197:1 16199:1 16208:2 16236:3 16246:1 16261:1 16269:4 16282:1 16290:1 16297:4 16317:1 16322:1 16338:1 16341:1 16345:1 16354:1 16373:1 16393:2 16410:4 16414:1 16425:1 16428:1 16435:1 16438:3 16449:2 16460:1 16464:1 16468:1 16480:1 16505:2 16508:7 16512:5 16523:1 16527:1 16548:1 16556:1 16557:1 16574:2 16588:2 16589:2 16593:2 16602:5 16607:1 16614:1 16615:6 16629:1 16636:4 16637:1 16638:3 16640:4 16643:1 16670:1 16674:1 16677:1 16702:1 16703:3 16728:1 16729:1 16735:1 16749:4 16759:1 16763:2 16774:2 16782:7 16848:1 16862:1 16864:1 16865:1 16868:1 16869:1 16870:8 16872:3 16881:1 16911:1 16930:3 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16967:1 16975:1 16990:1 16992:6 16993:1 17004:1 17008:1 17009:1 17020:1 17026:1 17033:4 17046:5 17048:1 17059:2 17080:1 17089:1 17099:1 17102:1 17106:1 17109:1 17128:2 17151:1 17160:2 17162:1 17164:6 17175:1 17185:1 17186:1 17187:7 17208:3 17211:7 17222:2 17231:2 17237:1 17240:1 17241:1 17255:1 17262:2 17274:1 17281:4 17283:2 17284:1 17311:2 17324:3 17336:1 17338:2 17343:1 17347:4 17377:3 17389:5 17395:1 17424:1 17437:2 17442:2 17451:1 17457:1 17465:2 17469:1 17486:1 17501:2 17528:1 17530:1 17534:1 17539:1 17540:1 17541:1 17543:1 17545:1 17546:4 17547:1 17568:1 17577:1 17596:2 17618:1 17623:1 17632:1 17634:1 17667:1 17670:2 17681:1 17707:4 17708:1 17709:3 17725:1 17741:1 17744:1 17770:1 17785:1 17794:3 17811:1 17818:1 17821:2 17824:1 17829:1 17841:1 17851:3 17852:1 17853:5 17857:1 17859:1 17862:2 17865:2 17894:1 17906:1 17908:1 17922:1 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17983:2 17986:1 17995:2 18004:1 18011:1 18025:6 18031:3 18032:1 18037:1 18047:1 18050:1 18057:1 18064:2 18078:1 18087:1 18090:4 18104:3 18106:1 18123:1 18131:2 18133:3 18134:1 18138:2 18153:1 18197:1 18205:3 18206:1 18209:3 18217:1 18230:3 18239:1 18240:7 18241:1 18257:1 18258:1 18261:1 18262:1 18265:1 18266:1 18267:1 18272:10 18275:1 18277:1 18280:6 18281:1 18287:1 18292:1 18293:6 18303:1 18322:1 18326:1 18334:7 18345:1 18348:1 18368:2 18385:5 18391:1 18397:1 18399:2 18411:1 18423:1 18446:1 18463:1 18470:1 18472:1 18482:1 18491:4 18509:3 18510:1 18513:1 18514:2 18525:1 18542:1 18547:2 18574:1 18586:1 18592:1 18623:1 18628:1 18632:2 18646:1 18656:2 18679:3 18703:5 18705:2 18708:1 18713:1 18721:1 18722:2 18723:1 18724:4 18725:7 18729:1 18735:2 18739:2 18766:2 18792:2 18815:2 18833:1 18855:5 18856:1 18875:1 18883:3 18896:1 18900:1 18906:2 18922:1 18929:3 18937:1 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18969:1 18974:2 18975:1 18980:1 18993:1 19004:3 19005:3 19007:19 19017:6 19031:1 19040:2 19047:1 19052:1 19055:1 19066:1 19089:2 19111:1 19126:1 19134:1 19164:2 19195:1 19207:1 19236:1 19240:1 19252:1 19260:9 19262:2 19271:1 19281:1 19282:1 19290:1 19298:1 19299:3 19306:1 19310:1 19312:2 19319:1 19342:1 19357:1 19361:2 19373:2 19391:2 19397:3 19404:1 19418:1 19430:1 19439:1 19456:1 19476:2 19481:1 19492:1 19496:2 19498:2 19502:1 19512:2 19529:2 19544:1 19584:1 19595:2 19597:2 19604:4 19626:1 19631:3 19636:1 19640:1 19647:9 19653:1 19663:1 19697:2 19698:1 19707:1 19712:3 19727:1 19734:1 19749:1 19754:1 19774:1 19776:1 19790:22 19791:1 19794:3 19796:1 19807:1 19820:1 19834:1 19835:1 19843:3 19855:1 19880:1 19882:1 19936:6 19951:1 19952:1 19956:1 19959:1 19963:1 19969:1 19970:2 19974:3 19977:3 19978:2 19983:1 19985:1 20017:2 20021:1 20022:2 20023:4 20026:1 20032:2 20038:2 20041:2 20046:1 20055:1 20056:1 20062:2 20071:1 20075:1 20079:2 20080:3 20106:2 20125:1 20139:1 20148:1 20160:2 20190:1 20191:1 20197:2 20214:2 20217:1 20237:1 20250:1 20255:1 20256:1 20263:1 20270:2 20284:1 20285:2 20291:1 20299:1 20311:1 20325:1 20351:2 20353:1 20378:1 20379:1 20392:1 20403:2 20413:1 20414:1 20420:1 20424:1 20438:3 20439:1 20511:7 20522:1 20536:1 20550:5 20572:1 20573:1 20587:1 20590:2 20591:1 20599:1 20638:3 20642:1 20648:1 20653:3 20656:1 20664:1 20669:1 20678:2 20681:1 20696:1 20703:1 20724:2 20733:1 20740:1 20741:1 20742:1 20747:2 20754:1 20767:1 20770:3 20777:1 20793:2 20794:1 20802:2 20819:1 20842:1 20852:1 20853:5 20859:2 20863:4 20904:1 20905:1 20915:1 20916:2 20918:1 20924:2 20931:1 20940:1 20941:2 20944:6 20955:1 20956:4 20961:1 20976:2 20987:3 21013:1 21014:3 21015:1 21018:1 21022:1 21029:4 21035:1 21040:3 21048:1 21061:1 21066:1 21074:3 21075:1 21077:1 21096:1 21099:7 21102:1 21104:1 21108:27 21109:2 21110:2 21113:2 21119:4 21121:1 21122:1 21125:1 21128:1 21133:2 21143:1 21145:2 21146:1 21169:1 21171:13 21173:2 21201:2 21205:1 21209:1 21221:2 21222:1 21223:1 21224:1 21242:1 21243:4 21247:1 21256:1 21262:1 21276:2 21292:3 21315:1 21320:1 21321:1 21324:2 21329:2 21333:6 21338:1 21340:2 21353:1 21355:2 21361:1 21373:2 21374:2 21375:2 21377:1 21381:1 21384:1 21391:4 21403:1 21406:4 21411:1 21413:2 21415:2 21441:1 21459:2 21460:3 21465:1 21470:2 21478:1 21482:1 21487:1 21509:1 21514:2 21528:1 21530:1 21535:1 21536:1 21537:1 21538:2 21539:1 21540:1 21543:1 21551:1 21570:1 21575:1 21580:1 21588:1 21598:1 21603:1 21609:1 21611:1 21622:1 21634:2 21635:1 21639:1 21640:1 21641:1 21646:1 21647:2 21651:1 21668:1 21669:1 21703:1 21704:1 21711:7 21712:1 21721:2 21722:1 21729:1 21750:1 21761:1 21762:1 21773:1 21778:2 21779:1 21782:4 21786:2 21795:1 21803:1 21804:1 21808:1 21826:1 21831:2 21835:1 21837:1 21838:2 21843:1 21845:2 21866:1 21877:1 21880:2 21881:1 21889:4 21894:8 21899:1 21907:3 21912:1 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:3 21997:6 21998:2 22010:1 22017:3 22021:8 22024:1 22025:1 22034:1 22037:1 22048:2 22065:1 22067:3 22070:2 22071:2 22085:1 22090:1 22107:1 22108:1 22116:2 22119:1 22126:2 22135:1 22151:2 22156:1 22159:1 22160:1 22169:1 22173:3 22183:2 22185:1 22186:2 22190:1 22194:2 22237:1 22255:3 22268:1 22269:1 22276:2 22316:2 22325:1 22327:1 22332:1 22340:1 22347:2 22349:4 22352:1 22360:5 22372:1 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22584:3 22589:1 22599:1 22601:1 22621:1 22629:1 22636:3 22648:2 22649:1 22651:4 22662:1 22666:1 22672:4 22674:1 22675:1 22688:1 22690:1 22709:2 22717:1 22725:2 22726:1 22731:1 22765:1 22770:1 22783:2 22787:1 22794:1 22796:3 22812:1 22829:1 22840:2 22849:1 22877:1 22880:1 22897:1 22901:3 22907:1 22911:1 22928:1 22936:1 22938:1 22943:1 22956:2 22964:1 22975:1 22977:1 22983:1 22985:6 22988:1 22997:1 23003:4 23018:2 23034:1 23061:1 23068:2 23070:1 23076:2 23081:1 23114:1 23119:1 23141:1 23142:5 23160:2 23165:1 23188:4 23258:1 23263:1 23274:1 23284:1 23286:5 23301:1 23318:1 23339:1 23345:1 23348:2 23359:1 23369:1 23370:1 23371:1 23376:1 23400:2 23425:1 23426:1 23444:1 23449:1 23466:2 23468:1 23496:3 23498:1 23504:3
16 1:1 3:1 5:1 7:1 25:1 26:1 33:1 51:2 64:2 67:1 82:1 87:1 108:1 110:2 114:1 119:3 126:1 138:1 148:1 154:1 161:1 164:4 165:2 171:1 176:1 193:1 204:1 224:1 229:2 262:1 279:1 280:1 282:1 286:1 294:1 296:1 317:1 334:1 335:1 337:1 344:2 347:1 384:1 394:1 402:1 403:2 406:1 413:3 416:4 428:1 435:1 440:4 446:1 463:4 464:1 467:1 470:1 471:1 488:1 507:4 511:1 514:1 516:1 518:1 522:1 527:1 539:4 564:1 568:1 578:1 584:1 596:1 606:2 607:1 608:3 613:1 626:3 640:2 643:1 646:2 652:2 657:1 660:1 665:1 690:1 710:1 719:1 732:2 735:3 739:2 744:2 759:1 774:1 786:1 791:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:1 855:2 860:3 863:1 886:8 896:1 898:1 902:8 904:1 910:1 914:5 947:2 960:1 962:2 967:2 988:1 993:3 996:3 1010:3 1032:1 1035:1 1048:2 1049:1 1060:1 1061:1 1071:4 1078:1 1086:1 1098:1 1113:1 1114:1 1115:3 1117:1 1118:1 1120:1 1131:6 1133:1 1145:3 1148:1 1157:1 1160:1 1162:1 1164:2 1172:1 1174:2 1178:1 1181:1 1188:1 1190:5 1191:1 1194:2 1195:7 1196:1 1203:2 1207:2 1208:1 1235:1 1236:6 1242:4 1255:2 1268:2 1288:1 1291:1 1292:1 1298:1 1316:1 1325:1 1348:1 1362:1 1363:1 1366:2 1376:1 1380:1 1382:2 1383:1 1384:1 1391:2 1399:5 1405:2 1417:1 1425:2 1428:1 1450:2 1451:2 1467:2 1488:2 1494:2 1519:1 1526:2 1529:1 1537:2 1544:2 1559:1 1562:2 1564:2 1573:3 1574:1 1578:1 1579:3 1580:6 1581:2 1588:2 1596:1 1600:1 1609:1 1612:1 1616:3 1628:8 1643:1 1644:1 1647:6 1648:2 1649:2 1671:1 1672:2 1674:1 1679:2 1682:1 1683:1 1686:4 1714:1 1721:1 1737:2 1738:1 1752:20 1758:1 1789:1 1792:1 1794:1 1802:5 1803:1 1807:1 1809:1 1829:2 1841:2 1844:1 1857:60 1869:2 1890:3 1899:1 1930:3 1935:1 1940:1 1943:1 1965:1 1968:1 1977:2 1978:1 1980:1 1981:1 1982:3 2001:1 2003:4 2021:1 2023:2 2027:1 2032:1 2034:2 2035:1 2036:2 2042:1 2044:2 2045:4 2047:1 2053:2 2057:1 2062:1 2063:3 2087:1 2095:1 2103:1 2105:2 2109:4 2112:1 2123:4 2124:2 2125:1 2142:1 2145:1 2150:1 2156:1 2158:1 2161:1 2174:1 2177:1 2178:1 2182:3 2191:1 2192:1 2215:1 2231:1 2234:2 2236:1 2288:1 2297:1 2301:1 2310:5 2339:1 2343:3 2345:1 2354:1 2358:1 2363:1 2367:2 2368:2 2379:1 2384:1 2402:1 2414:6 2427:1 2435:1 2447:6 2450:2 2459:1 2469:2 2479:2 2481:1 2483:3 2484:1 2494:1 2499:1 2512:4 2533:1 2547:1 2549:1 2554:5 2562:1 2573:1 2581:2 2585:2 2598:2 2607:1 2609:1 2625:1 2632:2 2639:2 2642:1 2643:1 2658:4 2667:4 2671:2 2673:1 2683:1 2685:1 2688:1 2701:2 2702:1 2705:5 2708:3 2716:1 2718:1 2740:1 2746:1 2749:1 2763:1 2764:2 2773:4 2774:1 2778:1 2779:1 2781:1 2793:2 2795:1 2798:1 2801:1 2810:3 2814:1 2816:3 2828:2 2840:3 2850:1 2851:1 2860:1 2870:1 2878:1 2892:1 2895:3 2896:1 2899:2 2902:1 2904:1 2912:1 2914:1 2921:1 2926:1 2927:1 2936:1 2942:1 2952:1 2954:3 2964:1 2966:13 2970:1 2979:1 2981:1 2986:1 2987:1 2989:1 2990:1 2995:1 3002:1 3004:1 3012:1 3014:1 3017:1 3023:1 3027:1 3033:2 3035:4 3039:1 3043:1 3046:1 3048:2 3052:1 3065:1 3066:3 3070:2 3074:1 3084:1 3096:1 3098:2 3103:1 3136:1 3141:1 3153:1 3156:1 3161:1 3168:2 3169:2 3170:1 3172:2 3177:3 3178:1 3186:2 3218:2 3219:1 3221:1 3223:3 3229:2 3234:1 3237:3 3240:1 3242:2 3255:1 3260:1 3264:3 3266:1 3268:1 3272:2 3273:1 3274:1 3293:1 3302:1 3311:1 3314:2 3316:2 3343:2 3345:4 3346:2 3359:1 3382:2 3396:1 3403:1 3408:1 3409:3 3421:1 3437:1 3452:1 3462:1 3468:1 3473:3 3483:1 3484:1 3486:1 3519:1 3528:1 3538:2 3540:1 3541:2 3542:1 3545:2 3546:4 3550:1 3552:1 3553:1 3554:5 3555:1 3556:1 3559:5 3560:1 3562:4 3564:1 3567:1 3571:1 3573:6 3575:3 3576:7 3590:2 3597:1 3605:1 3606:2 3610:1 3616:1 3622:1 3637:1 3642:1 3644:1 3652:2 3656:1 3661:3 3673:2 3686:2 3694:1 3698:1 3701:1 3703:2 3705:1 3706:3 3711:1 3714:1 3726:1 3731:1 3738:1 3740:1 3746:1 3752:3 3759:1 3761:2 3786:2 3792:1 3812:1 3819:1 3823:1 3827:2 3853:1 3854:2 3860:5 3865:1 3871:1 3875:1 3892:4 3906:2 3936:1 3946:1 3951:1 3952:1 3965:1 3973:1 3974:1 3980:1 3990:1 4004:1 4006:1 4010:1 4027:5 4030:1 4034:1 4038:1 4050:1 4052:2 4058:1 4059:1 4072:1 4082:1 4083:2 4085:1 4089:2 4104:1 4105:1 4109:1 4117:2 4127:1 4134:1 4146:1 4150:1 4154:1 4174:1 4182:2 4183:2 4184:2 4197:1 4208:4 4219:1 4226:4 4242:1 4243:2 4244:1 4248:1 4255:1 4257:1 4260:3 4262:10 4281:1 4283:1 4290:1 4295:1 4296:2 4307:1 4311:1 4317:1 4323:1 4335:3 4338:3 4342:1 4343:2 4358:1 4379:2 4380:1 4386:1 4393:2 4398:2 4413:1 4414:1 4417:5 4424:1 4427:2 4473:3 4480:1 4481:2 4488:2 4490:1 4511:4 4512:1 4513:11 4515:2 4516:1 4526:1 4533:1 4540:1 4560:2 4561:11 4577:7 4589:1 4616:2 4631:1 4632:1 4650:30 4658:1 4671:2 4675:1 4699:1 4701:1 4702:1 4705:2 4714:3 4720:1 4730:1 4735:2 4741:2 4746:1 4760:1 4766:1 4769:2 4778:1 4781:1 4786:1 4803:1 4807:2 4808:1 4812:1 4818:2 4837:4 4844:4 4845:2 4860:2 4900:1 4902:1 4932:3 4937:1 4955:1 4966:1 4968:1 4970:1 4984:1 4990:1 5022:1 5034:3 5038:1 5047:1 5048:1 5059:1 5060:1 5072:1 5084:4 5092:1 5097:1 5099:1 5112:1 5120:12 5130:2 5132:1 5139:1 5144:3 5159:1 5161:2 5170:1 5175:1 5183:1 5196:1 5199:1 5200:1 5204:1 5226:1 5227:3 5234:1 5236:1 5253:7 5279:4 5291:1 5297:2 5310:1 5341:1 5344:1 5348:1 5352:1 5353:4 5364:1 5365:1 5366:2 5383:4 5387:2 5388:1 5390:1 5398:3 5405:1 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5459:2 5465:1 5466:1 5467:1 5480:4 5510:1 5516:1 5517:1 5521:3 5525:1 5542:1 5543:1 5560:3 5564:1 5565:1 5601:1 5609:1 5619:1 5621:3 5623:2 5627:2 5632:1 5633:1 5650:1 5659:1 5661:10 5667:1 5668:1 5677:1 5690:1 5701:1 5710:1 5724:1 5732:1 5748:4 5752:1 5762:1 5779:1 5780:1 5805:1 5809:1 5816:2 5817:41 5820:2 5826:1 5851:2 5853:1 5855:9 5858:1 5861:1 5869:1 5870:23 5871:1 5872:2 5873:1 5876:4 5896:1 5898:2 5906:1 5919:3 5932:2 5934:3 5939:2 5947:1 5953:5 5957:2 5961:1 5963:1 5967:2 5970:1 5981:1 5994:3 6003:2 6005:3 6013:1 6014:2 6017:1 6018:1 6025:1 6055:1 6059:2 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6095:1 6101:3816 6102:1 6107:1 6117:1 6133:2 6138:1 6140:4 6149:2 6165:1 6179:1 6180:1 6183:1 6184:1 6193:1 6195:1 6198:2 6201:1 6205:1 6210:4 6220:1 6232:1 6233:4 6248:1 6253:1 6273:3 6279:1 6289:1 6300:1 6313:1 6320:1 6346:1 6349:3 6375:1 6376:2 6379:1 6399:2 6401:1 6407:3 6417:1 6434:1 6448:5 6450:2 6458:1 6463:1 6471:2 6480:1 6484:2 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6547:1 6559:2 6576:1 6577:1 6581:1 6584:1 6590:1 6601:1 6640:1 6644:5 6650:1 6656:1 6666:1 6677:1 6686:1 6692:1 6698:1 6702:1 6705:11 6715:2 6725:1 6741:1 6748:3 6750:1 6777:1 6782:1 6784:2 6787:1 6792:5 6798:1 6802:2 6817:2 6830:7 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6874:1 6880:1 6888:1 6936:1 6951:1 6956:2 6957:1 6962:1 6974:2 6975:1 6981:4 7006:1 7017:1 7049:1 7050:1 7057:1 7066:2 7080:1 7097:2 7104:1 7110:2 7124:1 7134:4 7137:1 7139:3 7153:1 7157:3 7167:3 7171:1 7203:3 7208:2 7213:1 7238:1 7256:1 7276:1 7305:1 7319:1 7320:1 7329:1 7337:2 7340:1 7348:2 7349:1 7361:1 7363:2 7376:2 7377:4 7383:2 7397:2 7405:1 7408:4 7415:1 7444:1 7450:1 7452:4 7474:1 7476:16 7483:1 7488:1 7507:15 7508:2 7515:1 7516:1 7519:3 7520:1 7523:20 7529:1 7539:2 7555:2 7581:1 7582:5 7584:2 7585:1 7591:1 7607:1 7614:2 7632:1 7635:1 7638:4 7649:1 7663:1 7670:3 7671:2 7680:1 7684:6 7686:2 7689:1 7693:3 7694:1 7696:4 7702:1 7719:2 7720:1 7722:1 7730:2 7732:3 7733:7 7734:1 7735:1 7736:1 7739:1 7740:2 7742:1 7750:20 7751:1 7753:1 7758:1 7762:2 7765:3 7773:2 7782:1 7788:3 7794:1 7811:1 7814:1 7817:3 7823:3 7871:1 7883:1 7887:1 7902:1 7922:2 7935:1 7948:1 7995:1 8003:1 8034:1 8047:1 8052:1 8065:1 8089:1 8091:13 8096:3 8097:3 8107:1 8108:5 8168:1 8177:1 8187:1 8209:1 8222:2 8224:1 8225:20 8231:1 8234:7 8254:1 8262:1 8270:1 8298:2 8301:1 8314:3 8317:1 8321:1 8325:1 8326:1 8351:1 8356:1 8357:1 8361:1 8367:3 8372:2 8373:1 8385:1 8412:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8469:1 8490:3 8491:1 8510:1 8520:2 8522:1 8525:3 8537:1 8544:1 8555:1 8558:1 8569:1 8573:2 8578:1 8579:4 8581:1 8598:2 8599:1 8605:2 8609:1 8611:1 8618:2 8624:2 8634:2 8644:7 8673:1 8674:1 8679:1 8684:1 8692:1 8709:1 8713:2 8719:1 8723:1 8746:2 8748:15 8755:1 8756:1 8757:1 8769:2 8771:2 8780:2 8789:1 8791:1 8796:1 8802:1 8803:2 8812:1 8828:1 8831:13 8834:1 8838:1 8856:1 8889:1 8894:1 8900:5 8903:1 8930:1 8937:2 8948:1 8957:2 8970:1 8973:1 8976:1 8980:1 8985:1 9017:1 9018:1 9020:1 9024:1 9029:1 9031:1 9043:1 9044:1 9048:1 9053:2 9065:1 9066:1 9069:1 9083:1 9089:4 9090:1 9091:2 9119:1 9123:1 9139:1 9158:2 9169:1 9180:3 9208:5 9215:1 9217:5 9218:1 9227:1 9231:3 9232:1 9241:1 9253:1 9280:1 9285:1 9292:1 9302:1 9314:2 9348:1 9370:1 9374:1 9393:1 9400:2 9402:8 9413:1 9416:2 9419:2 9445:1 9450:1 9452:1 9477:1 9497:2 9509:1 9514:1 9517:1 9523:2 9528:2 9529:1 9536:1 9539:1 9541:1 9547:1 9573:1 9578:2 9589:1 9598:4 9610:1 9611:1 9612:1 9617:2 9625:2 9626:2 9645:1 9652:1 9666:1 9687:3 9706:1 9707:3 9710:1 9719:1 9721:2 9725:1 9727:1 9732:1 9733:1 9740:1 9747:5 9749:1 9751:13 9759:1 9769:1 9770:3 9772:1 9777:5 9778:1 9779:1 9791:2 9792:1 9797:2 9799:1 9800:5 9809:1 9812:1 9832:1 9848:4 9854:1 9866:1 9867:1 9901:5 9904:2 9905:1 9906:1 9908:1 9910:1 9912:2 9913:2 9917:2 9918:3 9919:5 9920:2 9923:1 9926:2 9928:1 9929:7 9930:1 9932:1 9933:2 9940:2 9948:1 9950:1 9980:1 9986:2 9993:1 10018:8 10025:3 10027:1 10032:2 10036:1 10039:1 10050:1 10095:1 10105:1 10125:1 10129:1 10130:1 10147:2 10150:1 10153:1 10158:1 10165:1 10173:1 10178:1 10182:3 10183:1 10193:1 10199:1 10201:1 10207:2 10208:1 10212:1 10220:1 10223:2 10224:1 10226:1 10232:1 10277:1 10282:1 10288:2 10289:1 10313:1 10350:1 10362:1 10373:1 10386:3 10392:2 10412:1 10420:1 10421:4 10424:2 10426:3 10442:4 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10509:1 10510:2 10515:1 10520:1 10536:3 10542:1 10544:2 10552:1 10562:1 10576:1 10579:1 10580:1 10581:1 10582:1 10587:1 10590:2 10593:6 10597:3 10613:1 10618:1 10623:1 10634:1 10648:1 10662:1 10677:1 10690:1 10699:1 10700:2 10704:2 10708:2 10714:1 10734:1 10736:1 10737:1 10742:3 10749:1 10751:2 10759:1 10762:1 10766:4 10768:15 10780:3 10784:1 10793:2 10794:2 10799:1 10801:2 10805:1 10811:1 10817:3 10828:3 10837:1 10840:1 10842:1 10861:1 10870:5 10873:3 10881:1 10904:1 10929:1 10936:2 10937:2 10941:3 10944:1 10946:1 10949:1 10953:1 10956:1 10957:4 10962:2 10972:1 10974:1 10983:1 11004:1 11018:1 11042:1 11043:1 11049:4 11061:2 11067:1 11068:2 11073:3 11082:1 11085:2 11106:1 11109:2 11151:1 11171:1 11184:2 11203:4 11210:1 11211:1 11212:9 11215:2 11220:2 11229:1 11230:2 11232:1 11234:1 11248:2 11250:2 11251:1 11252:1 11255:1 11264:2 11269:2 11271:1 11272:1 11281:1 11283:1 11284:1 11303:1 11310:5 11311:2 11313:1 11316:2 11320:3 11322:1 11331:1 11351:1 11356:2 11367:1 11396:1 11423:1 11442:1 11444:5 11446:1 11489:1 11497:1 11508:1 11515:1 11530:1 11543:1 11546:2 11549:1 11554:1 11562:1 11577:1 11583:1 11593:4 11595:2 11599:1 11606:1 11609:1 11615:1 11631:1 11636:1 11644:1 11654:1 11666:5 11667:20 11670:2 11673:1 11701:1 11729:1 11733:1 11747:1 11749:1 11757:1 11767:1 11778:4 11781:3 11797:1 11799:2 11802:2 11811:1 11813:1 11819:1 11822:2 11834:2 11836:4 11847:1 11852:8 11878:4 11906:2 11907:2 11932:2 11942:1 11949:2 11963:1 11968:1 11971:2 11977:1 11983:2 12004:1 12008:1 12009:1 12015:1 12017:2 12034:1 12035:1 12055:2 12059:1 12060:1 12065:4 12083:10 12101:1 12115:4 12116:5 12117:4 12119:2 12140:1 12141:4 12143:2 12149:2 12154:1 12163:1 12173:1 12191:1 12192:2 12198:1 12200:1 12202:42 12205:1 12206:1 12209:2 12215:1 12226:11 12229:26 12237:2 12244:1 12248:1 12255:1 12259:1 12264:1 12266:1 12288:1 12295:5 12296:1 12344:1 12364:1 12370:3 12378:1 12381:1 12383:1 12391:1 12392:2 12407:1 12420:1 12431:2 12439:1 12440:1 12454:1 12469:1 12491:1 12506:1 12515:3 12518:6 12523:1 12529:1 12543:1 12549:1 12551:1 12553:1 12559:2 12566:15 12567:2 12584:1 12590:1 12592:1 12593:5 12606:2 12618:1 12628:1 12630:1 12633:1 12653:2 12666:1 12673:1 12682:3 12691:1 12693:2 12703:1 12709:1 12723:1 12731:1 12754:3 12767:1 12778:1 12783:5 12791:3 12814:7 12823:2 12830:1 12839:1 12850:1 12852:2 12853:1 12874:2 12879:1 12880:1 12887:2 12895:1 12904:1 12919:1 12921:1 12938:17 12963:1 12966:1 12968:1 12970:1 12975:1 12976:1 12985:2 12986:1 13013:2 13015:1 13047:1 13053:1 13060:1 13064:1 13067:2 13070:1 13071:1 13084:2 13086:2 13097:1 13107:1 13109:1 13124:1 13129:2 13155:1 13175:1 13176:1 13177:5 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:1 13229:1 13239:1 13240:4 13247:2 13253:1 13267:2 13270:3 13279:1 13289:1 13293:2 13296:1 13298:2 13309:1 13321:1 13324:2 13334:2 13346:1 13362:1 13363:2 13379:1 13384:1 13386:1 13387:1 13392:2 13405:1 13412:2 13414:2 13417:4 13419:1 13443:1 13451:1 13459:1 13471:1 13484:3 13489:1 13502:1 13505:3 13506:5 13514:1 13526:6 13529:1 13537:1 13542:1 13544:1 13547:1 13552:1 13553:3 13557:2 13562:1 13565:1 13572:1 13573:2 13577:1 13578:1 13579:3 13580:2 13581:2 13582:5 13587:1 13593:2 13597:2 13599:2 13606:3 13609:2 13619:2 13620:1 13632:1 13644:2 13646:1 13653:1 13661:2 13672:1 13674:1 13682:1 13683:1 13703:4 13711:1 13715:24 13719:1 13724:1 13728:2 13735:1 13747:1 13756:3 13781:1 13786:5 13826:4 13832:2 13846:1 13850:1 13851:1 13852:1 13854:1 13855:2 13861:1 13874:1 13881:1 13883:1 13935:3 13941:1 13943:2 13944:1 13971:1 13972:1 13978:1 13981:1 13982:1 13984:1 13986:3 13995:1 13999:3 14004:1 14007:1 14037:1 14041:1 14051:2 14061:1 14076:1 14082:1 14091:4 14093:2 14096:4 14099:1 14100:1 14101:4 14104:3 14108:1 14114:2 14134:3 14137:1 14139:4 14152:1 14155:1 14172:1 14176:2 14184:2 14193:2 14241:4 14280:2 14281:1 14283:1 14290:1 14311:2 14312:2 14336:1 14337:1 14345:1 14360:1 14364:1 14381:1 14386:1 14391:1 14396:1 14416:1 14429:2 14439:1 14440:1 14457:3 14474:2 14475:3 14484:1 14488:1 14490:1 14492:2 14493:1 14512:1 14519:2 14529:1 14530:1 14531:3 14533:1 14548:1 14554:1 14555:1 14561:7 14586:2 14591:3 14595:1 14604:1 14605:1 14612:1 14622:1 14632:1 14641:1 14643:1 14646:1 14656:1 14658:1 14673:3 14675:1 14694:1 14703:1 14704:1 14719:1 14720:1 14759:1 14767:1 14768:5 14775:1 14777:1 14781:1 14784:1 14794:1 14795:1 14802:1 14809:3 14836:1 14846:1 14870:1 14872:2 14900:1 14902:1 14904:1 14907:3 14913:2 14924:1 14926:2 14929:1 14953:1 14955:3 14970:1 14973:1 14975:2 14982:1 14986:2 15016:1 15018:3 15038:1 15039:5 15060:1 15065:1 15113:20 15114:1 15121:2 15137:1 15141:1 15143:1 15148:1 15151:1 15161:2 15162:5 15164:1 15167:2 15189:4 15193:1 15204:1 15205:2 15206:1 15215:2 15217:2 15227:3 15233:1 15235:2 15246:1 15252:1 15266:2 15280:2 15281:2 15283:1 15291:2 15295:2 15304:1 15319:1 15324:1 15330:2 15337:14 15344:2 15348:1 15367:1 15369:2 15370:1 15377:2 15401:1 15403:1 15408:1 15413:1 15435:1 15441:4 15444:5 15454:1 15459:3 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15482:1 15499:1 15500:1 15511:1 15516:1 15528:1 15541:1 15547:1 15552:1 15553:1 15567:1 15594:1 15597:2 15600:1 15601:3 15621:1 15622:2 15623:1 15643:1 15660:8 15661:1 15664:2 15671:1 15675:2 15678:4 15680:2 15682:1 15689:2 15693:1 15698:1 15708:2 15714:2 15718:1 15723:1 15731:1 15732:2 15744:1 15750:1 15757:1 15759:2 15764:1 15766:4 15772:4 15774:1 15776:1 15786:1 15820:1 15822:1 15825:1 15829:3 15830:1 15840:3 15844:1 15852:2 15877:1 15878:2 15892:3 15898:1 15909:2 15932:5 15967:1 15980:1 15981:3 15986:1 16005:1 16035:11 16037:1 16038:6 16046:1 16048:1 16050:1 16053:1 16066:1 16080:1 16098:2 16099:1 16107:1 16109:1 16133:5 16135:1 16160:1 16164:1 16172:2 16178:1 16189:1 16190:2 16197:1 16199:1 16208:2 16236:4 16246:1 16261:1 16269:4 16282:1 16287:1 16290:1 16297:4 16317:1 16322:1 16338:1 16341:1 16345:1 16354:1 16373:1 16393:2 16410:5 16414:1 16425:1 16428:1 16435:1 16438:4 16449:2 16460:1 16464:1 16468:1 16480:1 16505:2 16508:8 16512:6 16523:1 16527:1 16548:1 16556:1 16557:1 16574:2 16588:2 16589:2 16593:2 16602:5 16607:1 16614:1 16615:6 16629:1 16634:1 16636:4 16637:1 16638:3 16640:4 16643:1 16670:1 16674:1 16677:1 16702:1 16703:3 16728:1 16729:1 16735:1 16749:4 16759:1 16763:2 16774:2 16782:7 16848:1 16862:1 16864:1 16865:1 16868:1 16869:1 16870:8 16872:3 16881:1 16911:1 16930:3 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16967:1 16975:1 16990:1 16992:6 16993:1 17004:1 17008:1 17009:1 17020:1 17026:1 17033:4 17046:5 17048:2 17059:2 17080:1 17089:1 17099:1 17102:1 17106:1 17109:1 17128:2 17151:1 17160:2 17162:1 17164:6 17175:1 17185:1 17186:1 17187:7 17208:3 17211:7 17222:2 17231:2 17237:1 17240:1 17241:1 17255:1 17262:2 17274:1 17281:4 17283:2 17284:1 17311:2 17324:3 17336:1 17338:2 17343:1 17347:5 17367:1 17377:3 17389:5 17395:1 17422:1 17424:1 17425:1 17437:2 17442:4 17451:1 17457:1 17465:2 17469:1 17486:1 17501:2 17512:1 17528:1 17530:1 17534:1 17539:1 17540:1 17541:1 17543:1 17545:1 17546:4 17547:1 17568:1 17577:1 17596:2 17618:1 17623:1 17632:1 17634:1 17667:1 17670:2 17681:1 17702:1 17707:4 17708:1 17709:3 17722:2 17725:1 17741:1 17744:1 17770:1 17785:1 17794:3 17811:1 17818:1 17821:2 17824:1 17829:1 17841:1 17851:3 17852:1 17853:6 17857:1 17859:1 17862:2 17865:2 17894:1 17906:1 17908:1 17922:1 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17983:2 17986:1 17995:2 18004:1 18011:1 18025:6 18031:3 18032:1 18037:1 18047:1 18050:1 18057:1 18064:2 18078:1 18087:1 18090:5 18104:3 18106:1 18123:1 18131:2 18133:3 18134:1 18138:2 18153:1 18197:1 18205:3 18206:1 18209:3 18217:1 18230:3 18239:1 18240:9 18241:1 18257:1 18258:1 18261:1 18262:1 18265:1 18266:1 18267:1 18272:10 18275:1 18277:2 18280:6 18281:1 18287:1 18292:1 18293:6 18303:1 18322:1 18326:1 18334:9 18345:1 18348:1 18368:2 18385:5 18391:1 18397:1 18399:2 18409:1 18411:1 18423:1 18446:1 18463:1 18470:1 18472:1 18482:1 18491:4 18509:3 18510:1 18513:1 18514:2 18525:1 18542:1 18547:2 18574:1 18586:1 18592:1 18623:1 18628:1 18632:2 18646:1 18656:2 18679:3 18703:5 18705:2 18708:1 18713:1 18721:1 18722:2 18723:1 18724:4 18725:9 18729:1 18735:2 18739:2 18766:2 18792:2 18815:2 18833:1 18855:5 18856:1 18875:1 18883:4 18896:1 18900:1 18906:2 18922:1 18929:3 18937:1 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18969:1 18974:2 18975:1 18980:1 18993:1 19004:4 19005:4 19007:20 19017:6 19031:1 19040:2 19047:1 19052:1 19055:1 19066:2 19089:2 19111:1 19126:1 19134:1 19164:2 19195:1 19207:1 19236:1 19240:1 19252:1 19260:9 19262:2 19271:1 19281:1 19282:1 19290:1 19298:1 19299:3 19306:2 19310:1 19312:2 19319:1 19342:1 19357:1 19361:2 19373:2 19391:2 19397:3 19404:1 19418:1 19430:1 19439:1 19456:1 19476:2 19481:1 19492:1 19496:2 19498:2 19502:1 19512:2 19515:1 19529:2 19544:1 19584:1 19595:2 19597:2 19604:5 19626:1 19631:3 19636:1 19640:1 19647:9 19653:1 19663:1 19697:2 19698:1 19707:1 19712:3 19727:1 19734:1 19749:1 19754:1 19774:1 19776:1 19790:24 19791:1 19794:3 19796:1 19804:1 19807:1 19820:1 19834:1 19835:1 19843:4 19855:1 19880:1 19882:1 19936:6 19951:1 19952:1 19956:1 19959:1 19963:1 19969:1 19970:2 19974:3 19977:4 19978:2 19983:1 19985:1 20017:2 20021:1 20022:2 20023:4 20026:1 20032:2 20038:2 20041:2 20046:1 20055:1 20056:1 20062:3 20071:1 20075:1 20079:2 20080:3 20106:2 20125:1 20139:1 20148:1 20160:2 20190:1 20191:1 20197:2 20214:2 20217:1 20237:1 20250:1 20255:1 20256:1 20263:1 20270:2 20284:1 20285:2 20291:1 20299:2 20311:1 20325:1 20351:2 20353:1 20378:1 20379:1 20392:1 20403:2 20413:1 20414:1 20420:1 20421:1 20424:1 20438:3 20439:1 20511:9 20522:1 20536:1 20550:5 20572:1 20573:1 20587:1 20590:3 20591:1 20599:1 20638:3 20642:1 20648:1 20653:3 20656:1 20664:1 20669:1 20678:2 20681:1 20696:1 20703:2 20724:2 20733:1 20740:1 20741:1 20742:1 20747:2 20754:1 20767:1 20770:3 20777:1 20793:2 20794:1 20802:2 20811:1 20819:1 20823:1 20842:1 20852:1 20853:5 20859:2 20863:4 20904:1 20905:1 20915:1 20916:2 20918:1 20924:3 20931:1 20936:1 20940:1 20941:2 20944:7 20955:1 20956:4 20961:1 20976:2 20987:3 21013:1 21014:3 21015:1 21018:1 21022:2 21029:4 21035:1 21040:3 21048:1 21061:1 21066:1 21074:3 21075:1 21077:1 21096:1 21099:7 21102:1 21104:1 21108:27 21109:2 21110:2 21113:2 21119:4 21121:1 21122:1 21125:1 21128:1 21133:2 21143:1 21145:2 21146:1 21169:1 21171:13 21173:2 21201:2 21205:1 21209:1 21221:3 21222:1 21223:1 21224:1 21242:1 21243:4 21247:1 21256:1 21262:1 21276:2 21292:3 21315:1 21320:1 21321:1 21324:2 21329:2 21333:6 21338:1 21340:2 21353:1 21355:2 21361:1 21373:2 21374:2 21375:2 21377:1 21381:1 21384:3 21391:4 21403:1 21406:4 21411:1 21413:2 21415:2 21441:1 21459:2 21460:3 21465:1 21470:2 21478:1 21482:1 21487:1 21509:1 21514:2 21528:1 21530:1 21535:1 21536:1 21537:2 21538:2 21539:1 21540:2 21543:2 21551:1 21570:1 21575:1 21580:1 21588:1 21598:1 21603:1 21609:1 21611:1 21622:1 21634:2 21635:1 21639:1 21640:1 21641:1 21646:1 21647:2 21651:1 21668:1 21669:1 21703:1 21704:1 21711:8 21712:1 21721:2 21722:1 21729:1 21750:1 21761:1 21762:1 21773:1 21778:2 21779:1 21782:4 21786:2 21795:1 21803:1 21804:1 21808:1 21826:1 21831:2 21835:1 21837:1 21838:2 21843:1 21845:2 21866:1 21877:1 21880:2 21881:1 21889:5 21894:8 21899:1 21907:4 21912:1 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:3 21997:6 21998:2 22010:2 22017:3 22021:8 22024:1 22025:1 22034:1 22037:1 22048:2 22065:1 22067:3 22070:2 22071:2 22085:1 22090:1 22107:1 22108:1 22116:2 22119:1 22126:2 22135:1 22151:2 22156:1 22159:2 22160:1 22169:1 22173:3 22183:2 22185:1 22186:2 22190:1 22194:2 22237:1 22255:3 22268:1 22269:1 22276:2 22277:1 22316:2 22325:1 22327:1 22332:1 22340:1 22347:2 22349:5 22352:1 22360:5 22372:1 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22584:3 22589:1 22599:1 22601:1 22621:1 22629:1 22636:3 22648:2 22649:1 22651:4 22662:1 22666:1 22672:5 22674:1 22675:1 22688:1 22690:1 22709:2 22717:1 22725:2 22726:1 22731:1 22765:1 22770:1 22783:2 22787:1 22794:1 22796:3 22812:1 22829:1 22840:2 22849:1 22877:1 22880:1 22897:1 22901:3 22907:1 22911:1 22928:1 22936:1 22938:1 22943:1 22956:2 22964:1 22975:2 22977:1 22983:1 22985:6 22988:1 22997:1 23003:4 23018:2 23034:1 23061:1 23068:2 23070:1 23076:2 23081:1 23114:1 23119:1 23141:1 23142:5 23160:2 23165:1 23188:4 23258:1 23263:1 23266:1 23274:1 23284:1 23286:5 23301:1 23318:1 23339:1 23345:1 23348:2 23359:1 23369:1 23370:1 23371:1 23376:1 23400:2 23425:1 23426:1 23444:1 23449:1 23466:2 23468:1 23496:4 23498:1 23504:3
16 1:2 3:1 5:1 7:1 25:1 26:1 33:1 51:2 64:2 67:1 82:1 87:1 108:1 110:2 114:1 119:3 126:1 138:1 148:1 154:1 161:1 164:4 165:2 171:1 176:1 193:1 204:1 224:1 229:2 262:1 279:1 280:1 282:1 285:1 286:1 294:1 296:1 317:1 334:1 335:1 337:1 344:2 347:1 384:1 394:1 402:1 403:2 406:1 413:3 416:4 428:1 435:1 440:4 446:1 463:4 464:1 467:1 470:1 471:2 488:1 507:4 511:2 514:1 516:1 518:1 522:1 527:1 539:4 564:1 568:1 578:1 584:1 596:1 606:2 607:1 608:3 613:1 626:3 640:2 643:1 646:2 652:2 657:1 660:1 665:1 690:1 710:1 719:1 732:2 735:3 739:2 744:2 759:1 774:1 786:1 791:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:1 855:2 860:3 863:1 866:1 886:9 896:1 898:1 902:8 904:1 910:1 914:5 947:2 960:1 962:2 967:2 988:1 993:3 996:3 1010:3 1032:1 1035:1 1048:2 1049:1 1060:1 1061:1 1071:4 1078:1 1086:1 1098:1 1099:1 1113:1 1114:1 1115:3 1117:1 1118:1 1120:1 1131:6 1133:1 1145:3 1148:1 1157:1 1160:1 1162:1 1164:2 1172:1 1174:3 1178:1 1181:1 1188:1 1190:5 1191:1 1194:2 1195:7 1196:1 1203:2 1207:2 1208:1 1235:1 1236:6 1242:4 1255:2 1268:2 1288:1 1291:1 1292:1 1298:1 1316:1 1325:1 1348:1 1362:1 1363:1 1366:2 1376:1 1380:1 1382:2 1383:1 1384:1 1391:2 1399:6 1405:2 1417:1 1425:2 1428:1 1450:2 1451:2 1467:2 1488:2 1494:3 1519:1 1526:2 1529:1 1537:2 1544:2 1559:1 1562:2 1564:2 1573:3 1574:1 1578:1 1579:3 1580:6 1581:2 1588:2 1596:1 1600:1 1609:1 1612:2 1616:3 1628:8 1643:1 1644:1 1647:6 1648:2 1649:2 1671:1 1672:2 1674:1 1679:2 1682:1 1683:1 1686:4 1714:1 1721:1 1737:2 1738:1 1752:22 1758:1 1789:1 1792:1 1794:1 1802:5 1803:1 1807:1 1809:1 1829:2 1841:2 1844:1 1857:65 1869:2 1890:3 1899:1 1930:3 1935:1 1940:1 1943:1 1965:1 1968:1 1977:2 1978:1 1980:1 1981:1 1982:3 2001:1 2003:4 2021:1 2023:2 2027:1 2032:1 2034:2 2035:1 2036:2 2042:1 2044:2 2045:4 2047:1 2053:2 2057:2 2062:1 2063:3 2087:1 2095:1 2103:1 2105:2 2109:4 2112:1 2123:5 2124:2 2125:1 2142:1 2145:1 2150:1 2156:1 2158:1 2161:1 2174:1 2177:1 2178:1 2182:3 2191:1 2192:1 2215:1 2231:1 2234:2 2236:1 2288:1 2297:1 2301:1 2310:5 2339:1 2343:3 2345:1 2354:1 2358:1 2363:1 2367:2 2368:2 2379:1 2384:1 2402:1 2414:6 2427:1 2435:1 2447:6 2450:2 2459:1 2469:2 2479:2 2481:1 2483:3 2484:1 2494:1 2499:1 2512:4 2533:1 2547:1 2549:1 2554:5 2562:1 2573:1 2581:2 2585:2 2598:2 2607:1 2609:1 2625:1 2632:2 2639:2 2642:1 2643:1 2658:4 2667:4 2671:2 2673:1 2683:1 2685:1 2688:1 2701:2 2702:1 2705:5 2708:3 2716:1 2718:1 2740:1 2746:1 2749:2 2763:1 2764:2 2773:4 2774:1 2778:1 2779:1 2781:1 2793:2 2795:1 2797:1 2798:1 2801:1 2810:3 2814:1 2816:3 2828:2 2840:3 2850:1 2851:1 2860:1 2870:1 2878:1 2892:1 2895:3 2896:1 2899:2 2902:1 2904:1 2912:1 2914:1 2921:1 2926:1 2927:1 2936:1 2942:2 2952:1 2954:3 2964:1 2966:13 2970:1 2979:1 2981:1 2986:1 2987:1 2989:1 2990:1 2995:1 3002:1 3004:1 3012:1 3014:1 3017:1 3023:1 3027:1 3033:2 3035:4 3039:1 3043:1 3046:1 3048:2 3052:1 3065:1 3066:3 3070:2 3074:1 3084:1 3096:1 3098:2 3103:1 3136:1 3141:1 3153:1 3156:1 3161:1 3168:2 3169:2 3170:1 3172:2 3177:3 3178:1 3186:2 3218:2 3219:1 3221:1 3223:3 3229:2 3234:1 3237:3 3240:1 3242:2 3255:1 3260:1 3264:3 3266:1 3268:1 3272:2 3273:1 3274:1 3293:1 3302:1 3311:1 3314:2 3316:2 3343:2 3345:4 3346:2 3359:1 3382:2 3396:1 3403:1 3408:1 3409:3 3421:1 3437:1 3452:1 3462:1 3468:1 3473:3 3483:1 3484:1 3486:1 3519:1 3528:1 3538:2 3540:1 3541:2 3542:1 3545:2 3546:4 3550:1 3552:1 3553:1 3554:6 3555:1 3556:1 3559:5 3560:1 3562:4 3564:1 3567:1 3571:1 3573:6 3575:3 3576:7 3590:2 3597:1 3605:1 3606:2 3610:1 3616:1 3622:1 3637:1 3642:1 3644:1 3652:2 3656:1 3661:3 3673:2 3686:2 3694:1 3698:1 3701:1 3703:3 3705:1 3706:3 3711:1 3714:1 3726:1 3731:1 3738:1 3740:1 3746:1 3752:3 3759:1 3761:2 3786:2 3792:1 3812:1 3819:1 3823:1 3827:2 3853:1 3854:2 3860:5 3865:1 3871:1 3875:1 3892:4 3906:2 3936:1 3946:1 3951:1 3952:1 3965:1 3973:1 3974:1 3980:1 3990:1 4004:1 4006:1 4010:1 4027:5 4030:1 4034:1 4038:1 4050:1 4052:2 4058:1 4059:1 4072:1 4082:1 4083:2 4085:1 4089:2 4104:1 4105:1 4109:1 4117:2 4127:1 4134:1 4146:1 4150:1 4154:1 4174:1 4182:2 4183:2 4184:2 4197:1 4208:4 4219:1 4226:4 4242:1 4243:2 4244:1 4248:1 4255:1 4257:1 4260:3 4262:10 4281:1 4283:1 4290:1 4295:1 4296:2 4307:1 4311:1 4317:1 4323:1 4335:3 4338:3 4342:1 4343:2 4358:1 4379:2 4380:1 4386:1 4393:2 4398:3 4413:1 4414:1 4417:5 4424:1 4427:2 4473:3 4480:1 4481:2 4488:2 4490:2 4491:1 4511:4 4512:1 4513:13 4515:2 4516:1 4526:1 4533:1 4540:1 4560:2 4561:11 4577:7 4589:1 4616:2 4631:1 4632:1 4650:30 4658:1 4671:2 4675:1 4699:1 4701:1 4702:1 4705:2 4714:3 4720:1 4730:1 4735:2 4741:2 4746:1 4760:1 4766:1 4769:2 4778:1 4781:1 4786:1 4803:1 4807:2 4808:1 4812:1 4818:2 4837:4 4844:4 4845:2 4860:2 4900:1 4902:1 4932:3 4937:1 4955:1 4966:1 4968:1 4970:1 4984:1 4990:1 5022:1 5034:3 5038:1 5047:1 5048:1 5059:1 5060:1 5072:1 5084:4 5092:1 5097:1 5099:1 5112:1 5120:12 5124:1 5130:2 5132:1 5139:1 5144:3 5159:1 5161:2 5170:1 5175:1 5183:1 5196:1 5199:1 5200:1 5204:1 5226:1 5227:3 5234:1 5236:1 5253:7 5279:4 5291:1 5297:2 5310:1 5341:1 5344:1 5348:1 5352:1 5353:4 5364:1 5365:1 5366:2 5383:4 5387:2 5388:1 5390:1 5398:3 5405:1 5409:1 5428:1 5430:1 5432:1 5433:1 5447:3 5454:1 5456:1 5459:2 5465:1 5466:1 5467:1 5480:4 5510:1 5516:1 5517:1 5521:3 5525:1 5542:1 5543:1 5560:3 5564:1 5565:1 5601:1 5609:1 5619:1 5621:4 5623:2 5627:2 5632:1 5633:1 5650:2 5659:1 5661:10 5667:1 5668:1 5677:1 5690:1 5701:1 5710:1 5724:1 5732:1 5748:4 5752:1 5762:1 5779:1 5780:1 5805:1 5807:1 5809:1 5816:4 5817:43 5820:2 5826:1 5851:2 5853:1 5855:9 5858:1 5861:1 5869:1 5870:26 5871:1 5872:2 5873:1 5876:4 5896:1 5898:2 5906:2 5919:3 5932:2 5934:3 5939:2 5947:1 5953:5 5957:2 5961:1 5963:1 5967:2 5970:1 5981:1 5994:3 6003:2 6005:3 6013:1 6014:2 6017:1 6018:1 6025:1 6055:1 6059:2 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6095:1 6101:3944 6102:1 6107:1 6117:1 6133:2 6138:1 6140:4 6149:2 6165:1 6179:1 6180:2 6183:1 6184:1 6193:1 6195:1 6198:2 6201:1 6205:1 6210:4 6220:1 6232:2 6233:4 6248:1 6253:1 6273:3 6279:1 6289:1 6300:1 6313:1 6320:1 6346:1 6349:3 6375:1 6376:2 6379:1 6399:2 6401:1 6407:3 6417:1 6434:1 6448:5 6450:2 6458:1 6463:1 6471:2 6480:1 6484:2 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6547:1 6559:2 6576:1 6577:1 6581:1 6584:1 6590:1 6601:1 6640:1 6644:5 6650:1 6656:1 6666:1 6677:1 6686:1 6692:1 6698:1 6702:1 6705:13 6715:2 6725:1 6741:1 6748:3 6750:1 6777:1 6782:1 6784:2 6787:1 6792:5 6798:1 6802:2 6817:2 6830:7 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6874:1 6880:1 6888:1 6936:1 6951:1 6956:2 6957:1 6962:1 6974:2 6975:1 6981:4 7006:2 7017:1 7049:1 7050:1 7057:1 7066:2 7080:1 7097:2 7104:1 7110:2 7124:1 7134:4 7137:1 7139:4 7153:1 7157:3 7167:3 7171:1 7203:3 7208:2 7213:1 7238:1 7256:1 7276:1 7305:1 7319:1 7320:1 7329:1 7337:2 7340:1 7348:2 7349:1 7361:1 7363:2 7376:2 7377:4 7383:2 7397:2 7405:1 7408:4 7415:1 7444:1 7450:1 7452:4 7474:1 7476:16 7483:1 7488:1 7507:16 7508:2 7515:1 7516:1 7519:3 7520:1 7523:22 7529:1 7539:2 7555:2 7581:1 7582:5 7584:2 7585:1 7591:1 7607:1 7614:2 7618:1 7632:1 7635:1 7638:4 7649:1 7663:1 7670:3 7671:2 7680:1 7684:6 7686:2 7689:1 7693:3 7694:1 7696:4 7702:1 7719:2 7720:1 7722:1 7730:2 7732:3 7733:8 7734:1 7735:1 7736:1 7739:1 7740:2 7742:1 7750:22 7751:1 7753:1 7758:1 7762:2 7765:3 7773:2 7775:1 7782:1 7788:3 7794:1 7811:1 7814:1 7817:3 7823:3 7856:1 7871:1 7883:1 7887:1 7902:1 7922:2 7935:1 7948:1 7995:1 8003:1 8034:1 8047:1 8052:1 8065:1 8089:1 8091:13 8096:3 8097:3 8107:1 8108:5 8119:1 8168:1 8177:1 8187:1 8209:1 8222:2 8224:1 8225:22 8231:1 8234:7 8254:1 8262:1 8270:1 8298:2 8301:1 8314:3 8317:1 8321:1 8325:1 8326:1 8347:1 8351:1 8356:1 8357:1 8361:2 8367:3 8372:2 8373:1 8385:2 8412:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8469:1 8490:3 8491:1 8510:1 8520:2 8522:1 8525:3 8537:1 8544:1 8555:1 8558:1 8569:1 8573:2 8578:1 8579:5 8581:1 8598:2 8599:1 8605:2 8609:1 8611:1 8618:2 8624:2 8634:2 8644:7 8673:1 8674:1 8679:1 8684:1 8692:1 8709:1 8713:2 8719:1 8723:1 8746:3 8748:15 8755:1 8756:1 8757:1 8769:2 8771:2 8780:2 8789:1 8791:1 8796:1 8802:1 8803:2 8812:1 8828:1 8831:13 8834:1 8838:1 8856:1 8889:1 8894:1 8900:5 8903:1 8930:1 8937:2 8948:1 8957:2 8970:1 8973:1 8976:1 8980:1 8985:1 9017:1 9018:1 9020:1 9024:1 9029:1 9031:1 9043:1 9044:1 9048:1 9053:2 9065:1 9066:1 9069:1 9083:1 9089:4 9090:1 9091:2 9119:1 9123:1 9139:1 9158:2 9169:1 9180:3 9208:5 9215:1 9217:5 9218:1 9227:1 9231:3 9232:1 9241:1 9253:1 9280:1 9285:1 9292:1 9302:1 9314:2 9348:1 9370:1 9374:1 9393:1 9400:3 9402:8 9413:1 9416:2 9419:2 9445:1 9450:1 9452:1 9477:1 9497:2 9509:1 9514:1 9517:1 9523:2 9527:1 9528:2 9529:1 9536:1 9539:1 9541:1 9547:1 9573:1 9578:2 9589:1 9598:4 9610:1 9611:1 9612:1 9617:2 9625:2 9626:2 9645:1 9652:1 9666:1 9687:3 9706:1 9707:3 9710:1 9719:1 9721:2 9725:1 9727:1 9732:1 9733:1 9740:1 9747:5 9749:1 9751:13 9759:1 9769:1 9770:3 9772:1 9777:5 9778:1 9779:1 9791:3 9792:1 9797:2 9799:1 9800:5 9809:1 9812:1 9832:1 9848:4 9854:1 9866:1 9867:1 9901:6 9904:2 9905:1 9906:1 9908:1 9910:1 9912:2 9913:2 9917:2 9918:3 9919:5 9920:2 9923:1 9926:2 9928:1 9929:7 9930:1 9932:1 9933:2 9940:2 9948:1 9950:1 9980:1 9986:2 9993:1 10018:8 10025:3 10027:1 10032:2 10036:1 10039:1 10050:1 10092:1 10095:1 10105:1 10125:1 10129:1 10130:1 10147:2 10150:1 10153:1 10158:1 10165:1 10173:1 10178:1 10182:3 10183:1 10193:1 10199:1 10201:1 10207:2 10208:1 10212:1 10220:1 10223:2 10224:1 10226:1 10232:1 10277:1 10282:1 10288:2 10289:1 10313:1 10350:1 10362:1 10373:1 10386:3 10392:2 10412:1 10420:1 10421:4 10424:2 10426:3 10442:4 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10509:1 10510:2 10515:1 10520:1 10536:3 10542:1 10544:2 10552:1 10562:1 10567:1 10576:1 10579:1 10580:1 10581:1 10582:1 10587:1 10590:2 10593:6 10597:3 10613:1 10617:1 10618:1 10623:1 10634:1 10648:1 10649:1 10662:1 10677:1 10690:1 10699:1 10700:2 10704:2 10708:2 10714:1 10734:1 10736:1 10737:1 10742:3 10749:1 10751:2 10759:1 10762:1 10766:4 10768:17 10780:3 10784:1 10793:2 10794:2 10799:1 10801:2 10805:1 10811:1 10817:3 10828:3 10837:1 10840:1 10842:1 10861:1 10870:5 10873:3 10881:1 10904:1 10929:1 10936:2 10937:2 10941:3 10944:1 10946:1 10949:1 10953:1 10956:1 10957:4 10962:2 10972:1 10974:1 10983:1 11004:1 11018:1 11042:1 11043:1 11049:4 11061:2 11067:1 11068:2 11073:3 11082:1 11085:2 11106:1 11109:2 11151:1 11171:1 11184:2 11203:4 11210:2 11211:1 11212:11 11215:2 11220:2 11229:1 11230:2 11232:1 11234:1 11248:2 11250:2 11251:1 11252:1 11255:1 11264:2 11269:2 11271:1 11272:1 11281:1 11283:1 11284:1 11303:1 11310:5 11311:2 11313:1 11316:2 11320:3 11322:1 11331:1 11351:1 11356:2 11367:1 11396:1 11423:1 11442:1 11444:5 11446:1 11489:1 11497:1 11508:1 11515:1 11530:1 11543:1 11546:2 11549:1 11554:1 11562:1 11577:1 11583:1 11589:1 11593:4 11595:2 11599:1 11606:1 11609:1 11615:1 11631:1 11636:1 11644:1 11654:1 11666:5 11667:22 11670:2 11673:1 11701:1 11729:1 11733:1 11747:1 11749:1 11757:1 11767:1 11778:4 11781:3 11797:1 11799:2 11802:2 11811:1 11813:1 11819:1 11822:2 11834:2 11836:4 11847:1 11852:8 11878:4 11906:2 11907:2 11932:2 11942:1 11949:2 11963:1 11968:1 11971:2 11977:1 11983:2 12004:1 12008:1 12009:1 12015:1 12017:2 12034:1 12035:1 12055:2 12059:1 12060:1 12065:4 12083:10 12101:1 12115:4 12116:5 12117:4 12119:2 12140:1 12141:4 12143:2 12149:2 12154:1 12163:1 12173:1 12191:1 12192:2 12198:1 12200:1 12202:43 12205:1 12206:1 12209:2 12215:1 12226:11 12229:26 12237:2 12244:1 12248:1 12255:1 12259:1 12264:1 12266:1 12288:1 12295:5 12296:1 12344:1 12364:1 12370:3 12378:1 12381:1 12383:1 12391:1 12392:2 12407:1 12420:1 12431:2 12439:1 12440:1 12454:1 12469:1 12491:1 12506:1 12515:3 12518:7 12523:1 12529:1 12543:1 12549:1 12551:1 12553:1 12556:1 12559:2 12566:15 12567:2 12584:1 12590:1 12592:1 12593:5 12606:2 12618:1 12628:1 12630:1 12633:1 12653:2 12666:1 12673:1 12682:3 12687:1 12691:1 12693:2 12703:1 12709:1 12723:1 12731:1 12754:3 12767:1 12778:1 12783:5 12791:3 12814:7 12823:2 12830:1 12839:1 12850:1 12852:2 12853:1 12874:2 12879:1 12880:1 12887:2 12895:1 12904:1 12919:1 12921:1 12938:18 12963:1 12966:1 12968:1 12970:1 12975:1 12976:1 12985:2 12986:1 13013:2 13015:1 13047:1 13053:1 13060:1 13064:1 13067:2 13070:1 13071:1 13084:2 13086:2 13097:1 13107:1 13109:1 13124:1 13129:2 13155:1 13175:1 13176:1 13177:5 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:2 13229:1 13239:1 13240:4 13247:2 13253:1 13267:2 13270:4 13279:1 13289:1 13293:2 13296:1 13298:2 13309:1 13321:1 13324:2 13334:2 13346:1 13362:1 13363:2 13379:1 13384:1 13386:1 13387:1 13392:2 13405:1 13412:2 13414:2 13417:4 13419:1 13443:1 13451:1 13459:1 13471:1 13484:3 13489:1 13502:1 13505:3 13506:5 13514:1 13526:6 13529:1 13537:1 13542:1 13544:1 13547:1 13552:1 13553:3 13557:2 13562:1 13565:1 13572:1 13573:2 13577:1 13578:1 13579:3 13580:2 13581:2 13582:5 13587:1 13593:2 13597:2 13599:2 13606:3 13609:2 13619:2 13620:1 13632:1 13644:2 13646:1 13653:1 13661:2 13672:1 13674:1 13682:1 13683:1 13703:5 13711:1 13715:27 13719:1 13724:1 13728:2 13735:1 13747:2 13756:3 13781:1 13786:5 13826:5 13832:2 13846:1 13847:1 13850:1 13851:1 13852:1 13854:1 13855:2 13861:1 13874:1 13881:1 13883:1 13935:3 13941:1 13943:2 13944:1 13971:1 13972:1 13978:1 13981:1 13982:1 13984:1 13986:3 13995:1 13999:3 14004:1 14007:1 14037:1 14041:1 14051:2 14061:1 14076:1 14082:1 14091:4 14093:2 14096:4 14099:1 14100:1 14101:4 14104:3 14108:1 14114:2 14134:3 14137:1 14139:4 14152:1 14155:1 14172:1 14176:2 14184:2 14193:2 14219:1 14241:4 14280:2 14281:1 14283:1 14290:1 14311:2 14312:2 14336:1 14337:1 14345:1 14360:1 14364:1 14381:1 14386:1 14391:1 14396:1 14416:1 14429:2 14439:1 14440:1 14457:3 14474:2 14475:3 14484:1 14488:1 14490:1 14492:2 14493:1 14512:1 14519:2 14529:1 14530:1 14531:4 14533:1 14548:1 14554:1 14555:1 14561:7 14586:2 14591:3 14595:1 14604:1 14605:1 14612:1 14622:1 14632:1 14641:1 14643:1 14646:2 14656:1 14658:1 14673:3 14675:1 14694:1 14703:1 14704:1 14719:1 14720:1 14759:1 14767:1 14768:5 14775:1 14777:1 14781:1 14784:1 14794:1 14795:1 14802:1 14809:3 14836:2 14846:1 14870:1 14872:2 14900:1 14902:1 14904:1 14907:3 14913:2 14924:1 14926:2 14929:1 14933:1 14953:1 14955:3 14970:1 14973:1 14975:2 14982:1 14986:2 15016:1 15018:3 15038:1 15039:5 15060:1 15065:1 15113:22 15114:1 15121:2 15137:1 15141:1 15143:1 15148:1 15151:1 15161:2 15162:5 15164:1 15167:2 15189:4 15193:1 15204:1 15205:2 15206:1 15215:2 15217:2 15227:3 15233:1 15235:2 15239:1 15246:1 15252:1 15265:1 15266:2 15280:2 15281:2 15283:1 15291:2 15295:2 15304:1 15310:1 15319:1 15324:1 15330:2 15337:14 15344:2 15348:1 15367:1 15369:2 15370:1 15377:2 15401:1 15403:1 15408:1 15413:1 15435:1 15441:4 15444:5 15454:1 15459:3 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15482:1 15499:1 15500:1 15511:1 15516:1 15528:1 15541:1 15547:1 15552:1 15553:1 15567:1 15594:1 15597:2 15600:1 15601:3 15621:1 15622:2 15623:1 15643:1 15660:8 15661:1 15664:2 15671:1 15675:2 15678:4 15680:2 15682:1 15689:3 15693:1 15698:1 15708:2 15714:3 15718:1 15719:1 15723:1 15731:1 15732:2 15744:1 15750:1 15757:1 15759:2 15764:1 15766:4 15772:4 15774:1 15776:1 15786:1 15820:1 15822:1 15825:1 15829:3 15830:1 15840:3 15844:1 15852:2 15877:1 15878:2 15892:3 15898:1 15909:2 15932:5 15967:1 15980:1 15981:3 15986:1 16005:1 16035:12 16037:1 16038:6 16046:1 16048:1 16050:1 16053:1 16066:1 16080:1 16098:2 16099:1 16107:1 16109:1 16133:5 16135:1 16160:1 16164:1 16172:2 16178:1 16189:1 16190:2 16197:1 16199:1 16208:2 16236:4 16246:1 16261:2 16269:4 16282:1 16287:1 16290:1 16297:4 16317:1 16322:1 16338:1 16341:1 16345:1 16354:1 16373:1 16393:2 16410:5 16414:1 16425:1 16428:1 16435:1 16438:4 16449:2 16460:1 16464:1 16468:1 16480:1 16505:2 16508:8 16512:7 16522:1 16523:1 16527:1 16548:1 16556:1 16557:1 16574:2 16588:3 16589:2 16593:2 16602:5 16607:1 16614:1 16615:6 16629:1 16634:1 16636:4 16637:1 16638:3 16640:4 16643:1 16670:1 16674:1 16677:1 16702:1 16703:3 16728:1 16729:1 16735:1 16749:4 16759:1 16763:2 16774:2 16782:7 16848:1 16862:1 16864:1 16865:1 16868:1 16869:2 16870:8 16872:3 16881:1 16911:1 16930:3 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16967:1 16975:1 16990:1 16992:6 16993:1 17004:1 17008:1 17009:1 17020:1 17026:1 17033:4 17046:5 17048:2 17059:2 17080:1 17089:1 17099:1 17102:1 17106:1 17109:1 17128:2 17151:1 17160:2 17162:1 17164:6 17175:1 17183:1 17185:1 17186:1 17187:7 17208:4 17211:7 17222:2 17231:2 17237:1 17240:1 17241:1 17255:1 17262:2 17274:1 17281:4 17283:2 17284:1 17311:2 17324:3 17336:1 17338:2 17343:1 17347:5 17367:1 17377:3 17384:1 17389:5 17395:1 17422:1 17424:1 17425:1 17437:2 17442:4 17451:1 17457:1 17465:2 17469:1 17486:1 17501:2 17512:1 17528:1 17530:1 17534:1 17539:1 17540:1 17541:1 17543:1 17545:1 17546:4 17547:1 17568:1 17577:1 17596:2 17618:1 17623:1 17632:1 17634:1 17667:1 17670:2 17681:1 17702:1 17707:4 17708:1 17709:4 17722:2 17725:1 17741:1 17744:1 17770:1 17785:1 17794:4 17811:1 17818:1 17821:2 17824:1 17829:1 17841:1 17851:3 17852:1 17853:6 17857:1 17859:1 17862:2 17865:2 17881:1 17894:1 17906:1 17908:1 17922:1 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17983:2 17986:1 17995:2 18004:1 18011:1 18025:6 18031:3 18032:1 18037:1 18047:1 18050:1 18057:1 18064:2 18078:1 18087:1 18090:5 18104:3 18106:1 18123:1 18131:2 18133:3 18134:1 18138:2 18153:1 18197:1 18205:3 18206:1 18209:3 18217:1 18230:3 18239:1 18240:9 18241:1 18257:1 18258:1 18261:1 18262:1 18265:1 18266:1 18267:1 18272:10 18275:1 18277:3 18280:7 18281:1 18287:1 18292:1 18293:7 18303:1 18322:1 18326:1 18334:10 18345:1 18348:1 18368:2 18385:5 18391:1 18397:1 18399:2 18409:1 18411:1 18423:1 18446:1 18463:1 18470:1 18472:1 18482:1 18491:4 18509:3 18510:1 18513:1 18514:2 18525:1 18542:1 18547:2 18574:1 18586:1 18592:1 18623:1 18628:1 18632:2 18646:1 18656:2 18679:3 18703:5 18705:2 18708:1 18713:1 18721:1 18722:2 18723:1 18724:4 18725:9 18729:1 18735:2 18739:2 18766:2 18792:2 18815:2 18833:1 18855:5 18856:1 18875:1 18883:4 18896:1 18900:1 18906:2 18922:1 18929:3 18937:1 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18969:1 18974:2 18975:1 18979:1 18980:1 18993:1 19004:4 19005:4 19007:22 19017:6 19031:1 19040:2 19047:1 19052:1 19055:1 19066:2 19089:2 19111:1 19126:1 19134:1 19164:2 19195:1 19207:1 19236:1 19240:1 19252:1 19260:9 19262:2 19271:1 19281:1 19282:1 19290:1 19298:1 19299:4 19306:2 19310:1 19312:2 19319:1 19342:1 19357:1 19361:2 19373:2 19391:2 19397:3 19404:1 19418:1 19430:1 19439:1 19456:1 19476:2 19481:1 19492:1 19496:2 19498:2 19502:1 19512:2 19515:1 19529:2 19544:1 19584:1 19595:2 19597:2 19604:5 19626:1 19631:4 19636:1 19640:1 19647:9 19653:1 19663:1 19697:2 19698:1 19707:1 19712:3 19727:1 19734:1 19749:1 19754:1 19765:1 19774:1 19776:1 19790:27 19791:1 19794:3 19796:1 19804:1 19807:1 19820:1 19834:1 19835:1 19843:4 19845:1 19855:1 19880:1 19882:1 19936:6 19951:1 19952:1 19956:1 19959:1 19963:1 19969:1 19970:2 19974:3 19977:4 19978:2 19983:1 19985:1 20017:2 20021:1 20022:2 20023:4 20026:1 20032:2 20038:2 20041:2 20046:1 20055:1 20056:1 20062:3 20071:1 20075:1 20079:3 20080:3 20106:2 20125:1 20139:1 20148:1 20160:2 20190:1 20191:1 20197:2 20214:2 20217:1 20237:1 20250:1 20255:1 20256:1 20263:1 20270:2 20284:1 20285:2 20291:1 20299:2 20311:1 20325:1 20351:2 20353:1 20378:1 20379:1 20392:1 20403:2 20413:1 20414:1 20420:1 20421:1 20424:1 20438:3 20439:1 20511:9 20522:1 20536:1 20550:5 20553:1 20572:1 20573:1 20587:1 20590:3 20591:1 20599:1 20638:3 20642:1 20648:1 20653:3 20656:1 20664:1 20669:1 20678:2 20681:1 20696:1 20703:2 20724:2 20733:1 20740:1 20741:1 20742:1 20747:2 20754:1 20767:1 20770:3 20777:1 20793:2 20794:1 20802:2 20811:1 20819:1 20823:1 20842:1 20852:1 20853:5 20859:2 20863:4 20904:1 20905:1 20915:1 20916:2 20918:1 20924:3 20931:1 20936:1 20940:1 20941:2 20944:7 20955:1 20956:4 20961:1 20976:2 20987:3 21013:1 21014:3 21015:1 21018:1 21022:2 21029:4 21035:1 21040:3 21048:1 21061:1 21066:1 21074:3 21075:1 21077:1 21096:1 21099:7 21102:1 21104:1 21108:27 21109:2 21110:2 21113:2 21119:4 21121:1 21122:1 21125:1 21128:1 21133:3 21143:1 21145:2 21146:1 21169:1 21171:13 21173:2 21201:2 21205:1 21209:1 21221:3 21222:1 21223:1 21224:1 21242:1 21243:4 21247:1 21256:1 21262:1 21276:2 21292:3 21315:1 21320:1 21321:1 21324:2 21325:1 21329:2 21333:6 21338:1 21340:2 21353:1 21355:2 21361:1 21373:2 21374:2 21375:2 21377:1 21381:1 21384:3 21391:5 21403:1 21406:4 21411:1 21413:2 21415:2 21441:1 21459:2 21460:3 21465:1 21470:2 21478:1 21482:1 21487:1 21509:1 21514:2 21528:1 21530:1 21535:1 21536:1 21537:2 21538:2 21539:1 21540:2 21543:2 21551:1 21570:1 21575:1 21580:1 21588:1 21598:1 21603:1 21609:1 21611:1 21622:1 21634:2 21635:1 21639:1 21640:1 21641:1 21646:1 21647:2 21651:1 21668:1 21669:1 21703:1 21704:1 21711:8 21712:1 21721:2 21722:1 21729:1 21750:1 21761:1 21762:1 21773:1 21778:2 21779:1 21782:4 21786:2 21795:1 21803:1 21804:1 21808:1 21826:1 21831:2 21835:1 21837:1 21838:2 21843:1 21845:2 21866:1 21877:1 21880:2 21881:1 21889:5 21894:8 21899:1 21907:4 21912:1 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:3 21997:6 21998:2 22010:2 22017:3 22021:8 22024:1 22025:1 22034:1 22037:1 22048:2 22065:1 22067:3 22070:2 22071:2 22085:1 22090:1 22107:1 22108:1 22116:2 22119:1 22126:2 22135:1 22151:2 22156:1 22159:2 22160:1 22169:1 22173:3 22183:2 22185:1 22186:2 22190:1 22194:2 22237:1 22255:3 22268:1 22269:1 22276:2 22277:1 22316:2 22325:1 22327:1 22332:1 22340:2 22347:2 22349:5 22352:1 22360:5 22372:1 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22584:3 22589:2 22599:1 22601:1 22621:1 22629:1 22636:3 22648:2 22649:1 22651:4 22662:1 22666:1 22672:5 22674:1 22675:1 22688:1 22690:1 22709:2 22717:1 22725:2 22726:1 22731:1 22765:1 22770:1 22783:2 22787:1 22794:1 22796:3 22812:1 22829:1 22840:2 22849:1 22851:1 22877:1 22880:1 22897:1 22901:3 22907:1 22911:1 22928:1 22936:1 22938:1 22943:1 22956:2 22964:1 22975:2 22977:1 22983:1 22985:6 22988:1 22997:1 23003:4 23018:2 23034:1 23061:1 23068:3 23070:1 23076:2 23081:1 23114:1 23119:1 23141:1 23142:5 23160:2 23165:1 23188:4 23258:1 23263:1 23266:1 23274:1 23284:1 23286:5 23301:1 23318:1 23339:1 23345:1 23348:2 23359:1 23369:1 23370:1 23371:1 23376:1 23400:2 23425:1 23426:1 23444:1 23449:1 23466:2 23468:1 23496:4 23498:1 23504:3
16 1:2 3:1 5:1 7:1 25:1 26:1 33:1 51:2 64:2 67:1 82:1 87:1 108:1 110:2 114:1 119:3 126:1 138:1 148:1 154:1 161:1 164:5 165:2 171:1 176:1 193:1 204:1 224:1 229:2 262:1 279:1 280:1 282:1 285:1 286:1 294:1 296:1 317:1 334:1 335:1 337:1 344:2 347:1 384:1 394:1 402:1 403:2 406:1 413:3 416:4 428:1 435:1 440:4 446:1 463:4 464:1 467:1 470:1 471:2 488:1 507:4 511:2 514:1 516:1 518:1 522:1 527:1 539:4 564:1 568:1 578:1 584:1 596:1 606:2 607:1 608:3 613:1 626:3 640:2 643:1 646:2 652:2 657:1 660:1 665:1 690:1 710:1 719:1 732:2 735:3 739:2 744:2 759:1 767:1 774:1 786:1 791:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:2 855:2 860:3 863:1 866:1 886:9 896:1 898:1 902:8 904:1 910:1 914:5 947:2 960:1 962:2 967:2 988:1 993:3 996:3 999:1 1010:3 1032:1 1035:1 1048:3 1049:1 1060:1 1061:1 1071:4 1078:1 1086:1 1098:1 1099:1 1113:1 1114:1 1115:3 1117:1 1118:1 1120:1 1131:6 1133:1 1145:3 1146:1 1148:1 1157:1 1160:1 1162:1 1164:2 1172:1 1174:3 1178:1 1181:1 1188:1 1190:5 1191:1 1194:2 1195:7 1196:1 1203:2 1207:2 1208:1 1235:1 1236:6 1242:4 1255:2 1268:2 1288:1 1291:1 1292:1 1298:1 1316:1 1325:1 1348:1 1362:1 1363:1 1366:2 1376:1 1380:1 1382:2 1383:1 1384:1 1391:2 1399:6 1405:2 1417:1 1425:2 1428:1 1450:2 1451:2 1467:2 1488:2 1494:3 1519:1 1526:2 1529:1 1537:2 1544:2 1559:1 1562:2 1564:2 1573:3 1574:1 1578:1 1579:3 1580:6 1581:2 1588:2 1596:1 1600:1 1609:1 1612:2 1616:3 1626:1 1628:8 1643:1 1644:1 1647:6 1648:2 1649:2 1671:1 1672:2 1674:1 1679:2 1682:1 1683:1 1686:4 1714:1 1721:1 1737:2 1738:1 1752:23 1758:1 1789:1 1792:1 1794:1 1802:5 1803:1 1807:1 1809:1 1829:2 1841:2 1844:1 1857:66 1869:2 1890:3 1899:1 1930:3 1935:1 1940:1 1943:1 1965:1 1968:1 1977:2 1978:1 1980:1 1981:1 1982:3 2001:1 2003:4 2021:1 2023:2 2027:1 2032:1 2034:2 2035:1 2036:2 2042:1 2044:2 2045:4 2047:1 2053:2 2055:1 2057:2 2062:2 2063:3 2087:1 2095:1 2103:1 2105:2 2109:4 2112:1 2123:5 2124:2 2125:1 2142:1 2145:1 2150:1 2156:1 2158:1 2161:1 2174:1 2177:1 2178:1 2182:3 2191:1 2192:1 2215:1 2231:1 2234:2 2236:1 2263:1 2288:1 2294:1 2297:1 2301:1 2310:5 2339:1 2343:3 2345:1 2354:1 2358:1 2363:1 2367:2 2368:2 2379:2 2384:1 2402:1 2414:6 2427:1 2435:1 2447:6 2450:2 2459:1 2469:2 2479:2 2481:1 2483:3 2484:1 2494:1 2499:1 2505:1 2512:4 2533:1 2547:1 2549:1 2554:6 2562:1 2573:1 2581:2 2585:2 2598:2 2607:1 2609:1 2625:1 2632:2 2639:2 2642:1 2643:1 2658:4 2667:4 2671:2 2673:1 2683:1 2685:1 2688:1 2701:2 2702:1 2705:5 2708:3 2716:1 2718:1 2740:1 2746:1 2749:2 2763:1 2764:3 2773:4 2774:1 2778:1 2779:1 2781:1 2793:2 2795:1 2797:1 2798:1 2801:1 2810:3 2814:1 2816:3 2828:3 2840:3 2850:1 2851:1 2860:2 2870:1 2878:1 2892:1 2895:3 2896:1 2899:2 2901:1 2902:1 2904:1 2912:1 2914:1 2921:1 2926:1 2927:1 2936:1 2942:2 2952:1 2954:3 2964:1 2966:13 2970:1 2979:1 2981:1 2986:1 2987:1 2989:1 2990:1 2995:1 3002:1 3004:2 3012:1 3014:1 3017:1 3023:1 3027:1 3033:2 3035:4 3039:1 3043:1 3046:1 3048:2 3052:1 3065:1 3066:3 3070:2 3074:1 3084:1 3096:1 3098:2 3103:1 3136:1 3141:1 3153:1 3156:1 3161:1 3168:2 3169:2 3170:1 3172:2 3177:3 3178:1 3186:2 3218:2 3219:1 3221:1 3223:3 3229:2 3234:1 3237:3 3240:1 3242:2 3255:1 3260:1 3264:3 3266:1 3268:1 3272:2 3273:1 3274:1 3293:1 3302:1 3311:1 3314:2 3316:2 3343:2 3345:4 3346:2 3359:1 3382:2 3396:1 3403:1 3408:1 3409:3 3421:1 3437:1 3452:1 3462:1 3468:1 3473:3 3483:1 3484:1 3486:1 3502:1 3519:1 3528:1 3538:2 3540:1 3541:2 3542:1 3545:2 3546:4 3550:1 3551:1 3552:1 3553:1 3554:6 3555:1 3556:1 3559:5 3560:1 3562:4 3564:1 3567:1 3571:1 3573:6 3575:3 3576:7 3580:1 3581:1 3590:2 3597:1 3605:1 3606:2 3608:1 3610:1 3616:1 3622:1 3637:1 3642:1 3644:1 3652:2 3656:1 3661:3 3673:2 3686:2 3694:1 3698:1 3701:1 3703:3 3705:1 3706:3 3711:1 3714:1 3726:1 3731:1 3738:1 3740:1 3746:1 3752:3 3759:1 3761:2 3786:2 3792:1 3812:1 3819:1 3823:1 3827:2 3853:1 3854:2 3860:5 3865:1 3871:1 3875:1 3892:4 3893:2 3906:2 3936:1 3946:1 3951:1 3952:1 3965:1 3973:1 3974:1 3980:1 3990:1 4004:1 4006:1 4010:1 4027:5 4030:1 4034:1 4038:1 4050:1 4052:2 4054:1 4058:1 4059:1 4072:2 4082:1 4083:2 4085:1 4089:2 4104:1 4105:1 4109:1 4117:2 4127:1 4134:1 4146:1 4148:1 4150:1 4154:1 4174:1 4182:2 4183:2 4184:2 4197:1 4208:4 4219:1 4226:4 4242:1 4243:2 4244:1 4248:2 4255:1 4257:1 4260:3 4262:10 4281:1 4283:1 4290:1 4295:1 4296:2 4307:1 4311:1 4317:1 4323:1 4335:3 4338:3 4342:1 4343:2 4350:1 4358:1 4379:2 4380:1 4386:1 4393:2 4398:3 4413:1 4414:1 4417:5 4424:1 4427:4 4473:3 4480:1 4481:2 4488:2 4490:2 4491:1 4511:4 4512:1 4513:13 4515:2 4516:1 4526:1 4533:1 4540:1 4560:2 4561:12 4577:7 4589:1 4616:2 4631:1 4632:1 4650:30 4658:1 4671:2 4675:1 4699:1 4701:1 4702:1 4705:2 4714:3 4720:1 4730:1 4735:2 4741:2 4746:1 4760:1 4766:1 4769:2 4778:1 4781:1 4786:1 4803:1 4807:2 4808:1 4812:1 4818:2 4837:4 4844:4 4845:2 4860:2 4900:1 4902:1 4932:3 4937:1 4955:2 4966:1 4968:1 4970:1 4984:1 4990:1 5022:1 5034:3 5038:1 5047:1 5048:1 5059:1 5060:1 5072:1 5084:4 5092:1 5097:1 5099:1 5112:1 5120:12 5124:1 5130:2 5132:1 5139:1 5144:3 5152:1 5159:1 5161:2 5170:1 5175:1 5183:1 5196:2 5199:1 5200:1 5204:1 5226:1 5227:3 5234:1 5236:1 5253:7 5279:4 5286:1 5291:1 5297:2 5310:1 5341:1 5344:1 5348:1 5352:1 5353:4 5364:1 5365:1 5366:2 5383:4 5387:2 5388:1 5390:1 5398:3 5405:1 5409:1 5428:1 5430:2 5432:1 5433:1 5439:1 5447:3 5454:1 5456:1 5459:2 5465:1 5466:1 5467:1 5480:4 5510:1 5516:1 5517:1 5521:3 5525:1 5540:1 5542:1 5543:1 5560:3 5564:1 5565:1 5601:1 5609:1 5619:1 5621:4 5623:2 5627:2 5632:1 5633:1 5650:2 5659:1 5661:11 5667:1 5668:1 5677:1 5690:1 5701:1 5710:1 5724:1 5732:1 5748:4 5752:1 5762:1 5779:1 5780:1 5805:1 5807:1 5809:1 5816:4 5817:43 5820:2 5826:1 5851:2 5853:1 5855:9 5858:1 5861:1 5869:1 5870:26 5871:1 5872:2 5873:2 5876:4 5883:1 5896:1 5898:2 5906:2 5919:3 5932:2 5934:4 5939:2 5947:1 5953:5 5957:2 5961:1 5963:1 5967:2 5970:1 5981:1 5994:4 6003:2 6005:3 6013:1 6014:2 6017:1 6018:1 6025:1 6055:1 6059:2 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6095:1 6101:4119 6102:1 6107:1 6117:1 6130:1 6131:1 6133:2 6138:1 6140:4 6149:2 6165:1 6179:1 6180:2 6183:1 6184:1 6193:1 6195:1 6198:2 6201:1 6205:1 6210:4 6220:1 6232:2 6233:4 6248:1 6253:1 6273:3 6279:1 6289:1 6300:1 6313:1 6320:1 6346:1 6349:3 6375:1 6376:2 6379:1 6399:2 6401:1 6407:3 6417:1 6434:1 6448:5 6450:2 6458:1 6463:1 6471:2 6480:1 6484:2 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6547:1 6559:2 6576:1 6577:1 6581:1 6584:1 6590:1 6601:1 6640:1 6644:5 6650:1 6656:1 6666:1 6677:1 6686:1 6692:1 6698:1 6702:1 6705:13 6715:2 6725:1 6741:1 6748:3 6750:1 6777:1 6782:1 6784:2 6787:1 6792:5 6798:1 6802:2 6817:2 6830:7 6840:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6874:1 6880:1 6888:1 6936:1 6951:1 6956:2 6957:1 6962:1 6974:2 6975:1 6981:4 7006:2 7017:1 7049:1 7050:1 7057:1 7066:2 7080:1 7097:2 7104:1 7110:2 7124:1 7134:4 7137:1 7139:4 7153:1 7157:3 7167:4 7171:1 7203:3 7208:2 7213:1 7238:1 7256:1 7276:1 7305:1 7319:1 7320:1 7329:1 7337:2 7340:1 7348:2 7349:1 7361:1 7363:2 7376:2 7377:4 7383:2 7397:2 7405:1 7408:4 7415:1 7444:2 7450:1 7452:4 7474:1 7476:16 7483:1 7488:1 7507:17 7508:2 7515:1 7516:1 7519:3 7520:1 7523:22 7529:1 7539:2 7555:2 7581:1 7582:6 7584:2 7585:1 7591:1 7607:1 7614:2 7618:1 7632:1 7635:1 7638:4 7649:1 7663:1 7670:3 7671:2 7680:1 7684:6 7686:2 7689:1 7693:3 7694:1 7696:4 7702:1 7719:2 7720:1 7722:1 7730:2 7732:4 7733:8 7734:1 7735:1 7736:1 7739:1 7740:2 7742:1 7750:23 7751:1 7753:1 7758:1 7762:2 7765:3 7773:2 7775:1 7782:1 7788:3 7794:1 7811:1 7814:1 7817:3 7823:3 7856:2 7871:1 7883:1 7887:1 7902:1 7922:2 7935:1 7948:1 7995:1 8003:1 8034:1 8047:1 8052:1 8065:1 8089:1 8091:13 8096:3 8097:3 8107:1 8108:5 8119:1 8168:1 8177:1 8187:1 8209:1 8222:2 8224:1 8225:23 8231:1 8234:7 8254:1 8262:1 8270:1 8298:2 8301:1 8314:3 8317:1 8321:1 8325:1 8326:1 8347:1 8351:1 8356:1 8357:1 8361:2 8367:3 8372:2 8373:1 8385:2 8412:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8469:1 8490:3 8491:1 8510:1 8520:2 8522:1 8525:3 8537:1 8544:1 8555:1 8558:1 8569:1 8573:2 8578:1 8579:5 8581:1 8598:2 8599:1 8605:2 8609:1 8611:1 8618:2 8624:2 8634:2 8644:7 8673:1 8674:1 8679:1 8684:1 8692:1 8709:1 8713:2 8719:1 8723:1 8731:1 8746:3 8748:15 8755:1 8756:1 8757:1 8769:2 8771:3 8780:2 8789:1 8791:1 8796:1 8802:1 8803:2 8812:1 8828:1 8831:13 8834:1 8838:1 8856:1 8889:1 8894:1 8900:5 8903:1 8930:1 8937:2 8948:1 8957:2 8970:1 8973:1 8976:1 8980:1 8985:1 9017:1 9018:1 9020:1 9024:1 9029:1 9031:1 9043:1 9044:1 9048:1 9053:2 9065:1 9066:1 9069:1 9083:1 9089:4 9090:1 9091:2 9119:1 9123:1 9139:1 9158:2 9169:1 9180:3 9208:5 9215:1 9217:5 9218:1 9227:1 9231:3 9232:1 9241:1 9253:1 9259:1 9280:1 9285:1 9292:1 9302:1 9314:2 9348:1 9370:1 9374:1 9393:1 9400:3 9402:8 9413:1 9416:2 9419:2 9445:1 9450:1 9452:1 9477:1 9497:2 9509:1 9514:1 9517:1 9523:2 9527:1 9528:2 9529:1 9536:1 9539:1 9541:1 9547:1 9573:1 9578:2 9589:1 9598:4 9610:1 9611:1 9612:1 9617:2 9625:2 9626:2 9645:1 9647:1 9652:1 9666:1 9687:3 9706:1 9707:3 9710:1 9719:1 9721:2 9725:1 9727:1 9732:1 9733:1 9740:1 9747:5 9749:1 9751:13 9759:2 9769:1 9770:3 9772:1 9777:5 9778:1 9779:1 9791:3 9792:1 9797:2 9799:1 9800:5 9809:1 9812:1 9832:1 9848:4 9854:1 9866:1 9867:1 9901:6 9904:2 9905:1 9906:1 9908:1 9910:1 9912:2 9913:2 9917:2 9918:3 9919:5 9920:2 9923:1 9926:2 9928:1 9929:7 9930:1 9932:1 9933:2 9940:2 9948:1 9950:1 9980:1 9986:2 9993:1 10018:8 10025:3 10027:1 10032:2 10036:1 10039:1 10046:1 10050:1 10062:1 10092:2 10095:1 10105:1 10125:1 10129:1 10130:1 10147:2 10150:1 10153:1 10158:1 10165:1 10173:1 10178:1 10182:3 10183:1 10193:1 10199:1 10201:1 10207:2 10208:1 10212:1 10220:1 10223:2 10224:1 10226:1 10232:1 10277:1 10282:1 10288:2 10289:1 10313:1 10350:1 10362:1 10373:1 10386:3 10392:2 10410:1 10412:1 10420:1 10421:4 10424:2 10426:3 10442:4 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10509:1 10510:2 10515:1 10520:1 10536:3 10540:1 10542:1 10544:2 10552:1 10562:1 10567:2 10576:1 10579:1 10580:1 10581:1 10582:1 10587:1 10590:2 10593:6 10597:3 10613:1 10617:1 10618:1 10623:1 10634:1 10648:1 10649:1 10662:1 10677:1 10690:1 10699:1 10700:2 10704:2 10708:2 10714:2 10734:1 10736:1 10737:1 10742:3 10749:2 10751:2 10759:1 10762:1 10766:4 10768:17 10780:3 10784:1 10793:2 10794:2 10799:1 10801:2 10805:1 10811:1 10817:3 10828:3 10837:1 10840:1 10842:1 10861:1 10868:1 10870:5 10873:3 10881:1 10904:1 10929:1 10936:2 10937:2 10941:3 10944:1 10946:1 10949:1 10953:1 10956:1 10957:4 10962:2 10972:1 10974:1 10983:1 11004:1 11018:1 11042:1 11043:1 11049:4 11061:2 11067:1 11068:2 11073:3 11082:1 11085:2 11106:1 11109:2 11151:1 11171:1 11184:2 11203:4 11210:2 11211:1 11212:11 11215:3 11220:2 11229:1 11230:2 11232:1 11234:1 11248:2 11250:3 11251:1 11252:1 11255:1 11264:2 11269:2 11271:1 11272:2 11281:1 11283:1 11284:1 11303:1 11310:5 11311:2 11313:1 11316:2 11320:3 11322:1 11331:1 11351:1 11356:2 11367:1 11396:1 11423:1 11442:1 11444:5 11446:1 11489:1 11497:1 11508:1 11515:1 11530:1 11543:1 11546:2 11549:1 11554:1 11562:1 11577:1 11583:1 11589:1 11593:4 11595:2 11599:1 11606:1 11609:1 11615:1 11631:1 11636:1 11644:1 11654:1 11666:5 11667:23 11670:2 11673:1 11701:1 11729:1 11733:2 11747:1 11749:1 11757:1 11767:1 11778:4 11781:3 11797:1 11799:2 11802:2 11811:1 11813:1 11819:1 11822:2 11834:2 11836:4 11847:1 11852:8 11878:4 11906:2 11907:2 11932:2 11942:1 11949:2 11963:1 11968:1 11971:2 11977:1 11983:2 12004:1 12008:1 12009:1 12015:1 12017:2 12034:2 12035:1 12055:2 12059:1 12060:1 12065:4 12083:10 12101:1 12107:1 12115:4 12116:5 12117:4 12119:3 12136:1 12140:1 12141:4 12143:2 12149:2 12154:1 12163:1 12173:1 12191:1 12192:2 12198:1 12200:1 12202:46 12205:1 12206:1 12209:2 12215:1 12226:12 12229:26 12237:2 12244:1 12248:1 12255:1 12259:1 12264:1 12266:1 12288:1 12295:5 12296:1 12344:1 12364:1 12370:3 12378:1 12381:1 12383:1 12391:1 12392:2 12407:1 12420:1 12431:2 12439:1 12440:1 12454:1 12463:1 12469:1 12491:1 12506:1 12515:3 12518:7 12523:1 12529:1 12543:1 12549:1 12551:1 12553:1 12556:1 12559:2 12566:15 12567:2 12584:1 12590:1 12592:1 12593:5 12606:2 12618:1 12628:1 12630:1 12633:1 12653:2 12666:1 12673:1 12682:3 12687:1 12691:1 12693:2 12696:1 12703:1 12709:1 12723:1 12731:1 12754:3 12767:1 12778:1 12783:5 12791:3 12808:2 12814:7 12823:2 12830:1 12839:1 12850:1 12852:2 12853:1 12874:2 12879:1 12880:1 12887:2 12895:1 12904:1 12919:1 12921:1 12938:19 12963:1 12966:1 12968:1 12970:1 12975:1 12976:1 12985:2 12986:1 13013:2 13015:1 13047:1 13053:1 13060:1 13064:1 13067:2 13070:1 13071:1 13084:2 13086:2 13097:1 13107:1 13109:1 13124:1 13129:2 13155:1 13175:1 13176:1 13177:5 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:2 13229:1 13239:1 13240:4 13247:2 13253:1 13267:2 13270:4 13279:1 13289:1 13293:2 13296:1 13298:2 13304:1 13309:1 13321:1 13324:2 13334:2 13346:1 13362:1 13363:2 13379:1 13384:1 13386:1 13387:1 13392:2 13405:1 13412:2 13414:2 13417:4 13419:1 13443:1 13451:1 13459:1 13471:2 13484:3 13489:1 13502:1 13505:3 13506:5 13514:1 13526:6 13529:1 13537:1 13542:1 13544:1 13547:1 13552:1 13553:3 13557:2 13562:1 13565:1 13572:1 13573:2 13577:1 13578:1 13579:3 13580:2 13581:2 13582:5 13587:1 13589:1 13593:2 13597:2 13599:2 13606:3 13609:2 13614:1 13619:2 13620:1 13632:1 13644:2 13646:1 13653:1 13661:2 13672:1 13674:1 13682:1 13683:1 13703:5 13711:1 13715:27 13719:1 13724:1 13728:2 13735:1 13747:2 13756:3 13781:1 13786:5 13826:5 13832:2 13846:1 13847:1 13850:2 13851:1 13852:1 13854:1 13855:2 13861:1 13874:1 13881:1 13883:1 13935:3 13941:1 13943:2 13944:1 13971:1 13972:1 13978:1 13981:1 13982:1 13984:1 13986:3 13995:1 13999:3 14004:1 14007:1 14037:1 14041:1 14051:2 14061:1 14076:1 14082:1 14091:4 14093:2 14096:4 14099:1 14100:1 14101:4 14104:3 14108:1 14114:2 14134:3 14137:1 14139:4 14152:1 14155:1 14172:1 14176:2 14184:2 14193:2 14219:1 14241:4 14280:2 14281:1 14283:1 14290:1 14311:2 14312:2 14336:1 14337:1 14345:1 14360:1 14364:1 14381:1 14386:1 14391:1 14396:1 14416:1 14429:2 14439:1 14440:1 14457:3 14474:2 14475:3 14484:1 14488:2 14490:1 14492:2 14493:1 14512:1 14519:2 14529:1 14530:1 14531:4 14533:1 14548:1 14554:1 14555:1 14561:7 14586:2 14591:3 14595:1 14604:1 14605:1 14612:1 14622:1 14632:1 14641:1 14643:1 14646:2 14656:1 14658:1 14673:3 14675:1 14694:1 14703:1 14704:1 14719:2 14720:1 14759:1 14767:1 14768:6 14775:1 14777:1 14781:1 14784:1 14794:1 14795:1 14802:1 14809:3 14836:2 14846:1 14870:1 14872:2 14896:1 14900:1 14902:1 14904:1 14907:3 14913:2 14924:1 14926:2 14929:1 14933:1 14946:1 14953:1 14955:3 14970:1 14973:1 14975:2 14982:1 14986:2 15016:1 15018:3 15038:1 15039:5 15060:1 15065:1 15071:1 15113:23 15114:1 15121:2 15137:1 15141:1 15143:1 15148:1 15151:1 15161:2 15162:5 15164:1 15167:2 15189:4 15193:1 15204:1 15205:2 15206:1 15215:2 15217:2 15227:3 15233:1 15235:2 15239:1 15246:1 15252:1 15264:1 15265:1 15266:2 15280:2 15281:2 15283:1 15291:2 15295:2 15304:1 15310:1 15319:1 15324:1 15330:2 15337:14 15344:2 15348:1 15367:1 15369:2 15370:1 15377:2 15401:1 15403:1 15408:1 15413:1 15435:1 15441:4 15444:5 15454:1 15459:3 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15482:1 15499:1 15500:1 15511:1 15516:1 15528:1 15541:1 15547:1 15552:1 15553:1 15567:1 15594:1 15597:2 15600:1 15601:3 15621:1 15622:2 15623:1 15643:1 15660:8 15661:1 15664:2 15671:1 15675:2 15678:4 15680:2 15682:1 15689:3 15693:1 15698:1 15708:2 15714:3 15718:1 15719:1 15723:1 15731:1 15732:2 15744:1 15750:1 15757:1 15759:2 15764:1 15766:4 15772:4 15774:1 15776:1 15786:1 15820:1 15822:1 15825:1 15829:3 15830:1 15840:3 15844:1 15852:2 15877:1 15878:2 15892:3 15898:1 15909:2 15932:5 15967:1 15980:1 15981:3 15986:1 16005:1 16035:12 16037:1 16038:6 16046:1 16048:1 16050:1 16053:1 16066:1 16080:1 16098:2 16099:1 16107:1 16109:1 16133:5 16135:1 16160:1 16164:1 16172:2 16178:1 16189:1 16190:2 16197:1 16199:1 16208:2 16236:4 16246:1 16261:2 16269:4 16282:1 16287:1 16290:1 16297:4 16317:1 16322:1 16338:1 16341:1 16345:1 16354:1 16373:1 16393:2 16410:5 16414:1 16425:1 16428:1 16435:1 16438:4 16449:2 16460:1 16464:1 16468:1 16480:1 16505:2 16508:8 16511:1 16512:7 16522:1 16523:1 16527:1 16548:1 16556:1 16557:1 16574:2 16588:3 16589:2 16593:2 16602:5 16607:1 16614:1 16615:6 16629:1 16634:1 16636:4 16637:1 16638:3 16640:4 16643:1 16670:1 16674:1 16677:1 16702:1 16703:3 16728:1 16729:1 16735:1 16749:4 16759:1 16763:2 16774:2 16782:7 16848:1 16862:1 16864:1 16865:1 16868:1 16869:2 16870:8 16872:3 16881:1 16911:1 16930:3 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16967:1 16975:1 16990:1 16992:6 16993:1 17004:1 17008:1 17009:1 17020:1 17026:1 17033:4 17046:5 17048:2 17059:2 17080:1 17089:1 17099:1 17102:1 17106:1 17109:1 17128:2 17151:1 17160:2 17162:1 17164:6 17175:1 17183:1 17185:1 17186:1 17187:7 17208:4 17211:7 17222:2 17231:3 17237:1 17240:1 17241:1 17255:1 17262:2 17274:1 17281:4 17283:2 17284:1 17311:2 17324:3 17336:1 17338:2 17343:1 17347:5 17367:1 17377:3 17384:1 17389:5 17395:1 17422:1 17424:1 17425:1 17437:2 17442:4 17451:1 17457:1 17465:2 17469:1 17486:1 17501:2 17512:1 17528:1 17530:1 17534:1 17539:1 17540:1 17541:1 17543:1 17545:1 17546:4 17547:1 17568:1 17577:1 17596:2 17618:1 17623:1 17632:1 17634:1 17667:1 17670:2 17681:1 17702:1 17707:4 17708:1 17709:4 17722:2 17725:1 17741:1 17744:1 17770:1 17785:1 17794:4 17811:1 17818:1 17821:2 17824:1 17829:1 17841:1 17851:3 17852:1 17853:6 17857:1 17859:2 17862:2 17865:2 17881:1 17894:1 17906:1 17908:1 17922:1 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17983:2 17986:1 17995:2 18004:1 18011:1 18025:6 18031:3 18032:1 18037:1 18047:1 18050:1 18057:1 18064:2 18078:1 18087:1 18090:5 18102:1 18104:3 18106:1 18123:1 18131:2 18133:3 18134:2 18138:2 18153:1 18197:1 18205:3 18206:1 18209:3 18217:1 18230:3 18239:1 18240:9 18241:1 18257:1 18258:1 18261:1 18262:1 18265:1 18266:1 18267:1 18272:11 18275:1 18277:3 18278:1 18280:7 18281:1 18287:1 18292:1 18293:7 18303:1 18322:1 18326:1 18334:10 18345:1 18348:1 18368:2 18385:5 18391:1 18397:1 18399:2 18409:1 18411:1 18423:1 18446:1 18463:1 18470:1 18472:1 18482:1 18491:4 18509:3 18510:1 18513:1 18514:2 18525:1 18542:1 18547:2 18574:1 18576:1 18586:1 18592:1 18623:1 18628:1 18632:2 18646:1 18656:2 18675:1 18679:3 18703:5 18705:2 18708:1 18713:1 18721:1 18722:2 18723:1 18724:4 18725:9 18729:1 18735:2 18739:2 18766:2 18792:2 18815:2 18833:1 18855:5 18856:1 18875:1 18883:4 18896:1 18900:1 18906:2 18922:1 18929:3 18937:1 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18969:1 18974:2 18975:1 18979:1 18980:1 18993:1 19004:4 19005:4 19007:23 19017:6 19031:1 19039:1 19040:2 19047:1 19052:1 19055:1 19066:2 19089:2 19111:1 19126:1 19134:1 19164:2 19195:1 19198:1 19207:1 19236:1 19240:1 19252:1 19260:9 19262:2 19271:1 19281:1 19282:1 19290:1 19298:1 19299:4 19306:2 19310:1 19312:2 19319:1 19342:1 19357:1 19361:2 19373:2 19380:1 19391:2 19397:3 19404:1 19418:1 19430:1 19439:1 19456:1 19476:2 19481:1 19492:1 19496:2 19498:2 19502:1 19512:2 19515:1 19529:2 19544:1 19584:1 19595:2 19597:2 19604:5 19626:1 19631:4 19636:1 19640:1 19647:9 19653:1 19663:1 19697:2 19698:1 19707:1 19712:3 19727:1 19734:1 19749:1 19754:1 19765:1 19774:1 19776:1 19790:27 19791:1 19794:3 19796:1 19804:1 19807:1 19820:1 19834:1 19835:1 19843:5 19845:1 19855:1 19880:1 19882:1 19936:6 19951:1 19952:1 19956:1 19959:1 19963:1 19969:1 19970:2 19974:3 19977:4 19978:2 19983:1 19985:1 20017:2 20021:1 20022:2 20023:4 20026:1 20032:2 20038:2 20041:2 20044:2 20046:1 20055:1 20056:1 20062:3 20071:1 20075:1 20079:3 20080:3 20106:2 20125:1 20139:1 20148:1 20160:2 20190:1 20191:1 20197:2 20214:2 20217:1 20237:1 20250:1 20255:1 20256:1 20263:1 20270:2 20284:1 20285:2 20291:1 20299:2 20311:1 20325:1 20351:2 20353:1 20378:1 20379:1 20392:1 20397:1 20403:2 20413:1 20414:1 20420:1 20421:1 20424:1 20426:1 20438:3 20439:1 20473:1 20479:1 20511:9 20522:1 20536:1 20550:5 20553:1 20572:1 20573:1 20574:1 20587:1 20590:3 20591:1 20599:1 20638:3 20642:1 20648:1 20653:3 20656:1 20664:1 20669:1 20678:2 20681:1 20696:1 20703:2 20711:1 20724:2 20733:1 20740:1 20741:1 20742:1 20747:2 20754:1 20767:1 20770:3 20777:1 20793:2 20794:1 20802:2 20811:1 20819:1 20823:1 20842:1 20852:1 20853:5 20859:2 20863:4 20904:1 20905:1 20915:2 20916:2 20918:1 20924:3 20931:1 20936:1 20940:1 20941:2 20944:7 20955:1 20956:4 20961:1 20976:2 20987:3 21013:1 21014:3 21015:1 21018:1 21022:2 21029:4 21035:1 21040:3 21048:1 21061:1 21066:1 21074:3 21075:1 21077:1 21096:1 21099:7 21102:1 21104:1 21108:28 21109:2 21110:2 21113:3 21119:4 21121:1 21122:1 21125:1 21128:1 21133:3 21143:1 21145:2 21146:1 21169:1 21171:13 21173:2 21201:2 21205:1 21209:1 21221:3 21222:1 21223:1 21224:1 21242:1 21243:4 21247:1 21256:1 21262:1 21276:2 21292:3 21315:1 21320:1 21321:1 21324:2 21325:1 21329:2 21333:7 21338:1 21340:2 21353:1 21355:2 21361:1 21373:2 21374:2 21375:2 21376:1 21377:1 21381:1 21384:3 21391:6 21403:1 21406:4 21411:1 21413:2 21415:2 21441:1 21459:2 21460:3 21465:1 21470:2 21478:1 21482:1 21487:1 21509:1 21514:2 21528:1 21530:1 21535:1 21536:1 21537:2 21538:2 21539:1 21540:2 21543:2 21551:1 21570:1 21575:1 21576:1 21579:1 21580:1 21588:1 21597:1 21598:1 21603:1 21609:2 21611:1 21622:1 21634:2 21635:1 21639:1 21640:1 21641:1 21646:1 21647:2 21651:1 21668:1 21669:1 21703:1 21704:1 21711:8 21712:1 21721:2 21722:1 21729:1 21750:1 21761:1 21762:1 21773:1 21778:2 21779:1 21782:4 21786:2 21795:1 21803:1 21804:1 21808:1 21826:1 21831:2 21835:1 21837:1 21838:2 21843:1 21845:2 21866:1 21877:1 21880:2 21881:1 21889:5 21894:8 21899:1 21907:4 21912:1 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:3 21997:6 21998:2 22010:2 22017:3 22021:8 22024:1 22025:1 22034:1 22037:1 22048:2 22065:1 22067:3 22070:2 22071:2 22085:1 22090:1 22107:1 22108:1 22116:2 22119:1 22126:2 22135:1 22151:2 22156:1 22159:2 22160:1 22169:1 22173:3 22183:2 22185:1 22186:2 22190:1 22194:2 22237:1 22255:3 22268:1 22269:2 22276:2 22277:1 22316:2 22325:1 22327:1 22332:1 22340:2 22341:1 22347:2 22349:5 22352:1 22360:5 22372:1 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22584:3 22589:2 22599:1 22601:1 22621:1 22629:1 22636:3 22648:2 22649:1 22651:4 22662:1 22666:1 22672:5 22674:1 22675:1 22688:1 22690:1 22709:2 22717:1 22725:2 22726:1 22731:1 22765:1 22770:1 22783:2 22787:1 22794:1 22796:3 22812:1 22829:1 22840:2 22849:1 22851:1 22877:1 22880:1 22897:1 22901:3 22905:1 22907:1 22911:1 22915:1 22928:1 22936:1 22938:1 22943:1 22956:2 22964:1 22975:2 22977:1 22982:1 22983:1 22985:6 22988:1 22997:1 23003:4 23018:2 23034:2 23061:1 23068:3 23070:1 23076:2 23081:1 23114:1 23119:1 23141:1 23142:5 23160:2 23165:1 23188:4 23258:1 23263:1 23266:1 23274:1 23284:1 23286:5 23301:1 23318:1 23339:1 23345:1 23348:2 23359:1 23369:1 23370:1 23371:1 23376:1 23400:2 23425:1 23426:1 23444:1 23449:1 23466:2 23468:1 23496:4 23498:1 23504:3
16 1:2 3:1 5:1 7:1 25:1 26:1 33:1 51:2 64:2 67:1 73:1 82:1 87:1 108:1 110:2 114:1 119:3 126:1 138:1 148:1 154:1 161:1 163:1 164:5 165:2 171:1 176:1 193:1 204:1 224:1 229:2 262:1 279:1 280:2 282:1 285:1 286:1 294:1 296:1 317:2 334:1 335:1 337:1 344:2 347:1 384:1 394:1 402:2 403:2 406:1 413:3 416:4 428:1 435:1 440:4 446:1 463:4 464:1 467:1 470:1 471:2 488:1 507:5 511:2 514:1 516:1 518:1 522:1 527:1 539:4 564:1 568:1 578:1 584:1 596:1 606:2 607:1 608:3 613:1 626:4 640:2 643:1 646:2 652:2 657:1 660:1 665:1 690:1 710:1 719:1 732:2 735:3 739:2 744:2 759:1 767:1 774:1 786:1 791:1 803:2 805:1 831:1 835:1 838:1 840:1 846:1 854:2 855:2 860:3 863:1 866:1 886:9 896:1 898:1 902:8 904:1 910:1 914:5 947:2 960:1 962:2 967:2 988:1 993:3 996:3 999:1 1010:3 1032:1 1035:1 1048:3 1049:1 1060:1 1061:1 1071:4 1078:1 1086:1 1098:1 1099:1 1113:1 1114:1 1115:3 1117:1 1118:1 1120:1 1131:7 1133:1 1145:3 1146:1 1148:1 1157:1 1160:1 1162:1 1164:2 1172:1 1174:3 1178:1 1181:1 1188:1 1190:5 1191:1 1194:2 1195:7 1196:1 1203:2 1207:2 1208:1 1235:1 1236:6 1242:4 1255:2 1268:2 1288:1 1291:1 1292:1 1298:1 1316:1 1325:1 1348:1 1362:1 1363:1 1366:2 1371:1 1376:1 1380:1 1382:2 1383:1 1384:1 1391:2 1399:6 1405:3 1417:1 1425:2 1428:1 1433:1 1450:2 1451:2 1467:2 1488:2 1494:3 1519:1 1526:2 1529:1 1537:2 1544:2 1559:1 1562:2 1564:2 1573:3 1574:1 1578:1 1579:3 1580:6 1581:2 1588:2 1596:1 1600:1 1609:1 1612:2 1616:3 1626:1 1628:8 1643:1 1644:1 1647:6 1648:2 1649:2 1671:1 1672:3 1674:1 1679:2 1682:1 1683:1 1686:4 1714:1 1721:1 1737:2 1738:1 1752:24 1758:1 1789:1 1792:1 1794:1 1802:5 1803:1 1807:1 1809:1 1829:2 1841:2 1844:1 1857:70 1869:2 1890:3 1897:1 1899:1 1930:3 1935:1 1940:1 1943:1 1965:1 1968:1 1977:2 1978:1 1980:1 1981:1 1982:3 2001:1 2003:4 2021:1 2023:2 2027:1 2029:1 2032:1 2034:2 2035:1 2036:2 2038:1 2042:1 2044:3 2045:4 2047:1 2053:2 2055:1 2057:2 2062:2 2063:3 2071:1 2087:1 2095:1 2103:1 2105:2 2109:4 2112:1 2123:5 2124:2 2125:1 2142:1 2145:1 2150:1 2156:1 2158:1 2161:1 2174:1 2177:1 2178:1 2182:3 2191:1 2192:1 2215:1 2231:1 2234:2 2236:1 2263:1 2288:1 2294:1 2297:1 2301:1 2310:5 2339:1 2343:3 2345:1 2354:1 2358:1 2363:1 2367:2 2368:2 2379:3 2384:1 2402:1 2414:6 2427:1 2435:1 2447:6 2450:2 2459:1 2469:2 2479:2 2481:1 2483:3 2484:1 2494:1 2499:1 2505:1 2512:4 2533:1 2547:1 2549:1 2554:8 2562:1 2573:1 2581:3 2583:1 2584:1 2585:2 2598:2 2607:1 2609:1 2625:1 2632:2 2639:2 2642:1 2643:1 2658:4 2667:4 2671:2 2673:1 2683:1 2685:1 2688:1 2701:2 2702:1 2705:5 2708:3 2716:1 2718:1 2740:1 2746:1 2749:2 2763:1 2764:3 2773:4 2774:1 2778:1 2779:1 2781:1 2793:2 2795:1 2797:1 2798:1 2801:1 2810:3 2814:1 2816:3 2828:4 2829:1 2840:3 2850:1 2851:1 2860:3 2870:1 2878:1 2892:1 2895:3 2896:1 2899:2 2901:1 2902:1 2904:1 2912:1 2914:1 2921:1 2926:1 2927:1 2936:1 2942:2 2952:1 2954:3 2964:1 2966:13 2970:1 2979:1 2981:1 2986:1 2987:1 2989:1 2990:1 2995:2 3002:1 3004:3 3012:1 3014:1 3017:1 3023:1 3027:1 3033:2 3035:4 3039:1 3043:1 3046:1 3048:2 3052:1 3065:1 3066:3 3070:2 3074:1 3084:1 3096:1 3098:2 3103:1 3136:1 3141:1 3153:1 3156:1 3161:1 3168:2 3169:2 3170:1 3172:2 3177:3 3178:1 3186:2 3218:2 3219:1 3221:1 3223:3 3229:2 3234:1 3237:3 3240:1 3242:2 3255:1 3260:1 3264:3 3266:1 3268:1 3272:2 3273:1 3274:1 3293:1 3302:1 3306:1 3311:1 3314:2 3316:2 3343:2 3345:4 3346:2 3352:1 3359:1 3382:2 3396:1 3403:1 3408:1 3409:3 3421:1 3422:1 3437:1 3452:1 3462:1 3468:1 3473:3 3483:1 3484:1 3486:1 3502:1 3519:1 3528:1 3538:2 3540:1 3541:2 3542:1 3545:2 3546:4 3550:1 3551:2 3552:1 3553:1 3554:6 3555:1 3556:1 3559:5 3560:1 3562:4 3564:1 3567:1 3571:1 3573:6 3575:3 3576:7 3580:1 3581:1 3590:2 3597:1 3601:1 3605:1 3606:2 3608:1 3610:1 3616:1 3622:1 3637:1 3642:1 3644:1 3652:2 3656:1 3661:3 3673:2 3686:2 3688:1 3694:1 3698:1 3701:1 3703:3 3705:1 3706:3 3711:1 3714:1 3726:1 3731:1 3738:1 3740:1 3746:1 3752:3 3759:1 3761:2 3786:2 3792:1 3812:1 3819:1 3823:1 3827:2 3853:1 3854:2 3860:5 3865:1 3871:1 3875:1 3892:4 3893:2 3906:2 3936:1 3946:1 3951:1 3952:1 3965:1 3973:1 3974:1 3980:1 3990:1 4004:1 4006:1 4010:1 4027:5 4030:1 4034:1 4038:1 4050:1 4052:2 4054:2 4058:2 4059:1 4072:2 4082:1 4083:2 4085:1 4089:2 4104:1 4105:1 4109:1 4117:2 4127:1 4134:1 4146:1 4148:1 4150:1 4154:1 4165:1 4174:1 4182:2 4183:2 4184:2 4197:1 4208:4 4219:1 4226:4 4242:1 4243:2 4244:1 4248:2 4255:1 4257:1 4260:3 4262:10 4281:1 4283:1 4290:1 4295:1 4296:2 4307:1 4311:1 4317:1 4323:1 4335:3 4338:4 4342:1 4343:2 4350:1 4358:1 4379:2 4380:1 4386:1 4393:2 4398:3 4413:1 4414:1 4417:5 4424:1 4427:4 4473:3 4480:1 4481:2 4488:2 4490:2 4491:1 4511:4 4512:1 4513:14 4515:2 4516:1 4526:1 4533:1 4540:1 4545:1 4560:2 4561:13 4577:7 4589:1 4607:1 4616:2 4631:1 4632:1 4650:30 4658:1 4671:2 4675:1 4699:1 4701:1 4702:1 4705:2 4714:3 4720:1 4730:1 4735:2 4741:2 4746:1 4752:1 4760:1 4766:1 4769:2 4778:1 4781:1 4786:1 4803:1 4807:2 4808:1 4812:1 4818:2 4837:4 4844:4 4845:2 4860:2 4900:1 4902:1 4932:3 4937:1 4955:3 4966:1 4968:1 4970:1 4984:1 4990:1 5022:1 5034:3 5038:1 5047:1 5048:1 5058:1 5059:1 5060:1 5072:1 5084:4 5092:1 5097:1 5099:1 5112:1 5120:13 5124:1 5130:2 5132:1 5139:1 5144:3 5152:1 5159:1 5161:2 5170:1 5175:1 5183:1 5196:2 5199:1 5200:1 5204:1 5226:1 5227:4 5234:1 5236:1 5253:7 5279:4 5286:1 5291:1 5297:2 5310:1 5341:1 5344:1 5348:1 5352:1 5353:4 5364:1 5365:1 5366:2 5383:4 5387:2 5388:1 5390:1 5398:3 5405:1 5409:1 5428:1 5430:2 5432:1 5433:1 5439:2 5447:3 5454:1 5456:1 5459:2 5465:1 5466:1 5467:1 5480:4 5510:1 5516:1 5517:1 5521:3 5525:1 5540:1 5542:1 5543:1 5560:3 5564:1 5565:1 5601:1 5609:1 5619:1 5621:4 5623:2 5627:2 5631:1 5632:1 5633:1 5650:2 5659:1 5661:13 5667:1 5668:1 5677:1 5690:1 5701:1 5710:1 5724:1 5732:1 5748:4 5752:1 5762:1 5779:1 5780:1 5782:1 5805:1 5807:1 5809:1 5816:4 5817:44 5820:2 5826:1 5831:1 5851:2 5853:1 5855:9 5858:1 5861:1 5869:1 5870:27 5871:1 5872:2 5873:2 5876:6 5883:1 5896:1 5898:2 5906:2 5919:3 5932:2 5934:4 5939:2 5947:1 5953:5 5957:2 5961:1 5963:1 5967:2 5970:1 5981:1 5994:4 6003:2 6005:3 6013:1 6014:2 6017:1 6018:1 6025:1 6055:1 6059:2 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6095:1 6101:4206 6102:1 6107:1 6117:1 6130:1 6131:1 6133:2 6138:1 6140:4 6149:2 6165:1 6179:1 6180:2 6183:1 6184:1 6193:1 6195:1 6198:2 6201:1 6205:1 6210:4 6220:1 6232:2 6233:4 6248:1 6253:1 6273:3 6279:1 6289:1 6300:1 6313:1 6320:1 6337:1 6346:1 6349:3 6375:1 6376:2 6379:1 6399:2 6401:1 6407:3 6417:1 6434:1 6448:5 6450:2 6458:1 6463:1 6471:2 6480:1 6484:2 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6534:1 6547:1 6559:2 6576:1 6577:1 6581:1 6584:1 6590:1 6601:1 6640:1 6644:5 6650:1 6656:1 6666:1 6677:1 6686:1 6692:1 6698:1 6702:1 6705:14 6715:2 6725:1 6741:1 6748:3 6750:1 6777:1 6782:1 6784:2 6787:1 6792:5 6798:1 6802:2 6817:2 6830:7 6840:1 6846:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6874:1 6880:1 6888:1 6936:1 6951:1 6956:2 6957:1 6962:1 6974:2 6975:1 6981:4 7006:2 7017:1 7049:1 7050:1 7057:1 7066:2 7080:1 7097:2 7104:1 7110:2 7124:1 7134:4 7137:1 7139:4 7153:1 7157:3 7163:1 7167:4 7171:1 7203:3 7204:1 7208:2 7213:1 7221:1 7238:1 7256:1 7276:1 7305:1 7319:1 7320:1 7329:1 7337:2 7340:1 7348:2 7349:1 7361:1 7363:2 7376:2 7377:4 7383:2 7397:2 7405:1 7408:4 7415:1 7444:2 7450:1 7452:5 7474:1 7476:16 7483:1 7488:1 7507:17 7508:2 7515:1 7516:1 7519:3 7520:1 7523:23 7529:1 7539:2 7555:2 7581:1 7582:6 7584:2 7585:1 7591:1 7607:1 7614:2 7618:1 7632:1 7635:1 7638:5 7649:1 7663:1 7670:3 7671:2 7680:1 7684:6 7686:2 7689:1 7693:3 7694:1 7696:4 7702:1 7719:2 7720:1 7722:1 7730:2 7732:4 7733:8 7734:1 7735:1 7736:1 7739:1 7740:2 7742:1 7750:24 7751:1 7753:1 7758:1 7762:2 7765:3 7773:2 7775:1 7782:1 7788:3 7794:1 7811:1 7814:1 7817:3 7823:3 7856:2 7871:1 7883:1 7887:1 7893:1 7902:1 7922:2 7935:1 7948:1 7970:1 7995:1 8003:1 8034:1 8047:1 8052:1 8065:1 8089:1 8091:13 8096:3 8097:3 8107:1 8108:5 8119:1 8168:1 8170:1 8177:1 8187:1 8209:1 8222:2 8224:1 8225:24 8231:1 8234:7 8254:1 8262:1 8270:1 8298:2 8301:1 8313:1 8314:3 8317:1 8321:1 8325:1 8326:1 8347:1 8351:1 8356:1 8357:1 8361:2 8367:3 8372:2 8373:1 8385:2 8412:1 8433:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8469:1 8490:3 8491:1 8510:1 8520:2 8522:1 8525:3 8537:1 8544:1 8555:1 8558:1 8569:1 8573:2 8578:1 8579:5 8581:1 8598:2 8599:1 8605:2 8609:1 8611:1 8618:2 8624:2 8634:2 8644:7 8673:1 8674:1 8679:1 8684:1 8692:1 8709:1 8713:2 8719:1 8723:1 8731:1 8746:4 8748:15 8755:1 8756:1 8757:1 8769:2 8771:3 8780:2 8789:1 8791:1 8796:1 8802:1 8803:2 8812:1 8828:1 8831:13 8834:1 8838:1 8856:1 8889:1 8894:1 8900:5 8903:1 8930:1 8937:2 8948:1 8957:2 8970:1 8973:1 8976:1 8980:1 8985:1 9008:1 9017:1 9018:1 9020:1 9024:1 9029:1 9031:1 9043:1 9044:1 9048:1 9053:2 9065:1 9066:1 9069:1 9083:1 9089:4 9090:1 9091:2 9119:1 9123:1 9139:1 9158:2 9169:1 9180:3 9208:5 9215:1 9217:5 9218:1 9227:1 9231:3 9232:1 9241:1 9253:1 9259:1 9280:1 9285:1 9292:1 9302:1 9314:2 9348:1 9370:1 9374:1 9393:1 9400:3 9402:9 9413:1 9416:2 9419:2 9445:1 9450:1 9452:1 9477:1 9497:2 9509:1 9514:1 9517:1 9523:2 9527:1 9528:2 9529:1 9536:1 9539:1 9541:1 9547:1 9573:1 9575:1 9578:2 9589:1 9598:4 9610:1 9611:1 9612:1 9617:2 9625:2 9626:2 9645:1 9647:1 9652:1 9666:1 9687:3 9706:1 9707:3 9710:1 9719:1 9721:2 9725:1 9727:1 9732:1 9733:1 9740:1 9747:5 9749:1 9751:13 9759:2 9769:1 9770:3 9771:1 9772:1 9777:5 9778:1 9779:1 9791:3 9792:1 9797:2 9799:1 9800:5 9809:1 9812:1 9832:1 9848:4 9854:1 9866:1 9867:1 9901:6 9904:2 9905:1 9906:1 9908:1 9910:1 9912:2 9913:2 9917:2 9918:3 9919:5 9920:2 9923:1 9926:2 9928:1 9929:7 9930:1 9932:1 9933:3 9940:2 9948:1 9950:1 9967:1 9980:1 9986:2 9993:1 10018:8 10025:3 10027:1 10032:2 10036:1 10039:1 10046:1 10050:1 10062:1 10092:2 10095:1 10105:1 10125:1 10129:1 10130:1 10147:3 10150:1 10153:1 10158:1 10165:1 10173:1 10178:1 10182:3 10183:1 10193:1 10199:1 10201:1 10207:2 10208:1 10212:1 10220:1 10223:2 10224:1 10226:1 10232:1 10277:1 10282:1 10288:3 10289:1 10313:1 10350:1 10362:1 10373:1 10382:1 10386:3 10392:2 10410:1 10412:1 10420:1 10421:4 10424:2 10426:3 10442:4 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10509:1 10510:2 10515:1 10520:1 10536:3 10540:1 10542:1 10544:2 10552:1 10561:1 10562:1 10565:1 10567:2 10576:1 10579:1 10580:1 10581:1 10582:1 10587:1 10590:2 10593:6 10597:3 10613:1 10617:1 10618:1 10623:1 10634:1 10648:1 10649:1 10662:1 10677:1 10690:1 10696:1 10699:1 10700:2 10704:2 10708:2 10714:2 10734:1 10736:1 10737:1 10742:3 10749:3 10751:2 10759:1 10762:1 10766:4 10768:18 10780:3 10784:1 10793:2 10794:2 10799:1 10801:2 10805:1 10811:1 10817:4 10828:3 10837:1 10840:2 10842:1 10861:1 10868:1 10870:5 10873:3 10881:1 10904:1 10929:1 10936:2 10937:2 10941:3 10944:1 10946:1 10949:1 10953:1 10956:1 10957:4 10962:2 10972:1 10974:1 10983:1 11004:1 11018:1 11042:1 11043:1 11049:4 11061:2 11067:1 11068:2 11073:3 11082:1 11085:2 11106:1 11109:2 11151:1 11171:1 11184:2 11203:4 11210:2 11211:1 11212:12 11215:3 11220:2 11229:1 11230:2 11232:1 11234:1 11248:3 11250:3 11251:1 11252:1 11255:1 11264:2 11269:2 11271:1 11272:2 11281:1 11283:1 11284:1 11303:1 11310:5 11311:2 11313:1 11316:2 11320:3 11322:1 11325:1 11331:1 11351:1 11356:2 11367:1 11396:1 11423:1 11442:1 11444:5 11446:1 11489:1 11497:1 11508:1 11515:1 11530:1 11543:1 11546:2 11549:1 11554:1 11562:1 11577:1 11583:1 11589:1 11593:4 11595:2 11599:1 11606:1 11609:1 11615:1 11631:1 11636:1 11644:1 11654:1 11666:5 11667:24 11670:2 11673:1 11701:1 11729:1 11733:2 11747:1 11749:1 11757:1 11767:1 11778:4 11781:3 11797:1 11799:2 11802:2 11811:1 11813:1 11819:1 11822:2 11834:2 11836:4 11847:1 11852:8 11863:1 11878:4 11906:2 11907:2 11916:1 11932:2 11942:1 11949:2 11963:1 11968:1 11971:2 11977:1 11983:2 12004:1 12008:1 12009:1 12014:1 12015:1 12017:2 12034:2 12035:1 12055:2 12059:1 12060:1 12065:4 12083:10 12101:1 12107:1 12115:4 12116:5 12117:4 12119:3 12136:1 12140:1 12141:4 12143:2 12149:2 12154:1 12163:1 12173:1 12191:1 12192:2 12198:1 12200:1 12202:47 12205:1 12206:1 12209:2 12215:1 12226:13 12229:26 12237:2 12244:1 12248:1 12255:1 12259:1 12264:1 12266:1 12288:1 12295:5 12296:1 12344:1 12364:1 12370:3 12378:1 12381:1 12383:1 12391:1 12392:2 12407:1 12420:1 12431:3 12439:1 12440:1 12454:1 12463:1 12469:1 12491:1 12506:1 12515:4 12518:7 12523:1 12529:1 12543:1 12549:1 12551:1 12553:1 12556:1 12559:2 12566:15 12567:2 12584:1 12590:1 12592:1 12593:5 12603:1 12606:2 12618:1 12628:1 12630:1 12633:1 12653:2 12666:1 12673:1 12682:3 12687:1 12691:1 12693:2 12696:1 12703:1 12709:1 12723:1 12731:1 12754:3 12767:1 12778:1 12783:5 12791:3 12808:2 12814:7 12823:2 12830:1 12839:1 12850:1 12852:2 12853:1 12874:2 12879:1 12880:1 12887:2 12895:1 12904:1 12919:1 12921:1 12938:21 12955:1 12963:1 12966:1 12968:1 12970:1 12975:2 12976:1 12985:2 12986:1 13013:2 13015:1 13047:1 13053:1 13060:1 13064:1 13067:2 13070:1 13071:1 13084:2 13086:2 13097:1 13107:1 13109:1 13124:1 13129:2 13155:1 13175:1 13176:1 13177:5 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:2 13229:1 13239:1 13240:4 13247:3 13253:1 13267:2 13270:4 13279:1 13289:1 13293:2 13296:1 13298:2 13304:1 13309:1 13321:1 13324:2 13334:2 13346:1 13362:1 13363:2 13372:1 13379:1 13384:1 13386:1 13387:1 13392:2 13405:1 13412:2 13414:2 13417:4 13419:1 13443:1 13451:1 13459:1 13471:2 13484:3 13489:1 13502:1 13505:3 13506:5 13514:1 13526:6 13529:1 13537:1 13542:1 13544:1 13547:1 13552:1 13553:3 13557:2 13562:1 13565:1 13572:1 13573:2 13577:1 13578:1 13579:3 13580:2 13581:2 13582:5 13587:1 13589:1 13593:2 13597:2 13599:2 13606:3 13609:2 13614:1 13619:2 13620:1 13632:1 13644:3 13646:1 13653:1 13661:2 13672:1 13674:1 13682:1 13683:1 13703:5 13711:1 13715:29 13719:1 13724:2 13728:2 13735:1 13747:2 13756:3 13781:1 13786:5 13826:5 13832:2 13846:1 13847:1 13850:2 13851:1 13852:1 13854:1 13855:2 13861:1 13874:1 13881:1 13883:1 13935:3 13941:1 13943:2 13944:1 13971:1 13972:1 13978:1 13981:1 13982:1 13984:1 13986:3 13995:1 13999:3 14004:2 14007:1 14037:1 14041:1 14051:2 14061:1 14076:1 14082:1 14091:5 14093:2 14096:4 14099:1 14100:1 14101:4 14104:3 14108:1 14114:2 14134:3 14137:1 14139:4 14152:1 14155:1 14172:1 14176:2 14184:2 14193:2 14219:1 14241:4 14260:1 14280:2 14281:1 14283:1 14290:1 14311:2 14312:2 14336:1 14337:1 14345:1 14360:1 14364:1 14381:1 14386:1 14391:1 14396:1 14416:1 14429:2 14439:1 14440:1 14457:3 14474:2 14475:4 14484:1 14488:2 14490:1 14492:2 14493:1 14512:1 14519:2 14529:1 14530:1 14531:4 14533:1 14548:1 14554:1 14555:1 14561:7 14586:2 14591:3 14595:1 14604:1 14605:1 14612:1 14622:1 14632:1 14641:1 14643:1 14646:2 14656:1 14658:1 14673:3 14675:1 14694:1 14703:1 14704:1 14719:2 14720:1 14759:1 14767:1 14768:8 14775:1 14777:1 14781:1 14784:1 14794:1 14795:1 14802:1 14809:3 14836:2 14846:1 14855:1 14870:1 14872:2 14896:1 14900:1 14902:1 14904:1 14907:3 14913:2 14924:1 14926:2 14929:1 14933:1 14946:1 14953:1 14955:3 14970:1 14973:1 14975:2 14982:1 14986:2 15016:1 15018:3 15038:1 15039:5 15060:1 15065:1 15071:1 15113:24 15114:1 15121:2 15137:1 15141:1 15143:1 15148:1 15151:1 15161:2 15162:5 15164:1 15167:2 15189:6 15193:1 15204:1 15205:2 15206:1 15215:2 15217:2 15227:3 15233:1 15235:2 15239:1 15246:1 15252:1 15264:1 15265:1 15266:2 15280:2 15281:2 15283:1 15291:2 15295:3 15304:1 15310:1 15319:1 15324:1 15330:2 15337:14 15344:2 15348:1 15367:1 15369:2 15370:1 15377:2 15401:1 15403:1 15408:1 15413:1 15435:1 15441:4 15444:5 15454:1 15459:3 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15482:1 15499:1 15500:1 15511:1 15516:1 15528:1 15541:1 15547:1 15552:1 15553:1 15567:1 15594:1 15597:2 15600:1 15601:3 15621:1 15622:2 15623:1 15643:1 15660:8 15661:1 15664:3 15671:1 15675:2 15678:4 15680:2 15682:1 15689:3 15693:1 15698:1 15708:2 15714:3 15718:1 15719:1 15723:1 15731:1 15732:2 15744:1 15750:1 15757:1 15759:2 15764:1 15766:4 15772:5 15774:1 15776:1 15786:1 15820:1 15822:1 15825:1 15829:3 15830:1 15840:3 15844:1 15852:2 15877:1 15878:2 15892:3 15898:1 15909:2 15932:5 15967:1 15980:1 15981:3 15986:1 16005:1 16035:12 16037:1 16038:6 16046:1 16048:1 16050:1 16053:1 16066:1 16080:1 16098:2 16099:1 16107:1 16109:1 16133:5 16135:1 16160:1 16164:1 16172:2 16178:1 16189:1 16190:2 16197:1 16199:1 16208:2 16236:4 16246:1 16261:2 16269:4 16282:1 16287:1 16290:1 16297:4 16317:1 16322:1 16338:1 16341:1 16345:1 16354:1 16373:1 16393:2 16410:5 16414:1 16425:1 16428:1 16435:1 16438:4 16449:2 16460:1 16464:1 16468:1 16480:1 16505:2 16508:8 16511:1 16512:7 16522:1 16523:1 16527:1 16548:1 16556:1 16557:1 16574:2 16588:3 16589:2 16593:2 16602:5 16607:1 16614:1 16615:6 16616:1 16629:1 16634:1 16636:4 16637:1 16638:4 16640:4 16643:1 16670:1 16674:3 16677:1 16702:1 16703:3 16728:1 16729:1 16735:1 16749:4 16759:1 16763:2 16774:2 16782:7 16848:1 16862:1 16864:1 16865:1 16868:1 16869:2 16870:8 16872:3 16881:1 16911:1 16930:3 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16967:1 16975:1 16990:1 16992:6 16993:1 17004:1 17008:1 17009:1 17020:1 17026:1 17033:4 17046:6 17048:2 17059:2 17080:1 17089:1 17099:1 17102:1 17106:1 17109:1 17128:2 17135:1 17151:1 17160:3 17162:1 17164:6 17175:1 17183:1 17185:1 17186:1 17187:7 17208:4 17211:7 17222:2 17231:3 17237:1 17240:1 17241:1 17255:1 17262:2 17274:1 17281:4 17283:2 17284:1 17311:2 17324:3 17336:1 17338:2 17343:1 17347:5 17367:1 17377:3 17384:1 17389:5 17395:1 17422:1 17424:1 17425:1 17437:3 17442:4 17451:1 17457:1 17465:2 17469:1 17486:1 17501:2 17512:1 17528:1 17530:1 17534:1 17539:1 17540:1 17541:1 17543:1 17545:1 17546:4 17547:1 17568:1 17577:1 17596:2 17613:1 17618:1 17623:1 17632:1 17634:1 17667:1 17670:2 17681:1 17702:1 17707:4 17708:1 17709:4 17722:2 17725:1 17741:1 17744:1 17770:1 17785:1 17794:4 17811:1 17818:1 17821:2 17824:1 17829:1 17841:1 17851:3 17852:1 17853:6 17857:1 17859:2 17862:2 17865:3 17881:1 17894:1 17906:1 17908:1 17922:2 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17983:2 17986:1 17995:2 18004:1 18011:1 18025:6 18031:3 18032:1 18037:1 18047:1 18050:1 18057:1 18064:2 18078:1 18087:1 18090:5 18102:1 18104:3 18106:1 18123:1 18131:2 18133:3 18134:2 18138:2 18153:1 18197:1 18205:3 18206:1 18209:3 18217:1 18230:3 18239:1 18240:9 18241:1 18257:1 18258:1 18261:1 18262:1 18265:1 18266:1 18267:1 18272:13 18275:1 18277:3 18278:1 18280:7 18281:1 18287:1 18292:1 18293:7 18303:1 18322:1 18326:1 18334:10 18345:1 18348:1 18368:2 18385:5 18391:1 18397:1 18399:2 18409:1 18411:1 18423:1 18446:1 18463:1 18470:1 18472:1 18482:1 18491:4 18509:3 18510:1 18513:1 18514:2 18525:1 18542:1 18547:2 18574:1 18576:1 18586:1 18592:1 18623:1 18628:1 18632:2 18646:1 18656:2 18675:1 18679:3 18703:5 18705:2 18708:1 18713:1 18721:1 18722:2 18723:1 18724:4 18725:9 18729:1 18735:2 18739:2 18766:2 18792:2 18801:1 18815:2 18833:1 18855:5 18856:1 18875:1 18883:4 18896:1 18900:1 18906:2 18922:1 18929:3 18937:1 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18969:1 18974:2 18975:1 18979:1 18980:1 18993:1 19004:4 19005:4 19007:24 19017:6 19031:1 19039:2 19040:2 19047:1 19052:1 19055:1 19066:3 19089:2 19092:1 19111:1 19126:1 19134:1 19140:1 19164:2 19195:1 19198:1 19207:1 19236:1 19240:1 19252:1 19260:9 19262:2 19271:1 19281:1 19282:1 19290:1 19298:1 19299:4 19306:2 19310:1 19312:2 19319:1 19342:1 19357:1 19361:2 19373:2 19380:1 19391:2 19397:3 19404:1 19418:1 19430:1 19439:1 19456:1 19476:2 19481:1 19492:1 19496:2 19498:2 19502:1 19512:2 19515:1 19529:2 19544:1 19584:1 19595:2 19597:2 19604:5 19626:1 19631:4 19636:1 19640:1 19647:9 19653:1 19658:1 19663:1 19672:1 19697:2 19698:1 19707:1 19712:3 19727:1 19734:1 19749:1 19754:1 19765:1 19774:1 19776:1 19790:29 19791:1 19794:3 19796:1 19804:1 19807:1 19820:1 19834:1 19835:1 19843:5 19845:1 19855:1 19880:1 19882:1 19936:6 19951:1 19952:1 19956:1 19959:1 19963:1 19969:1 19970:2 19974:3 19977:4 19978:2 19983:1 19985:1 20017:2 20021:1 20022:2 20023:4 20026:1 20032:2 20038:2 20041:2 20044:2 20046:1 20055:1 20056:1 20062:3 20071:1 20075:1 20079:3 20080:3 20106:2 20125:1 20139:1 20148:1 20160:2 20190:1 20191:1 20197:2 20214:2 20217:1 20237:1 20250:1 20255:1 20256:1 20263:1 20270:2 20284:1 20285:2 20291:1 20299:3 20311:1 20325:1 20351:2 20353:1 20378:1 20379:1 20392:1 20397:2 20403:2 20413:1 20414:1 20420:1 20421:1 20424:1 20426:1 20438:3 20439:1 20473:1 20479:1 20511:11 20520:1 20522:1 20536:1 20550:5 20553:1 20572:1 20573:1 20574:1 20587:1 20590:3 20591:1 20599:1 20638:3 20642:1 20648:1 20653:3 20656:1 20664:1 20669:1 20678:2 20681:1 20696:1 20703:2 20711:1 20724:2 20733:1 20740:1 20741:1 20742:1 20747:2 20754:1 20767:1 20770:3 20777:1 20793:2 20794:1 20802:2 20807:1 20811:1 20819:1 20823:1 20842:1 20852:1 20853:5 20859:2 20863:4 20904:1 20905:1 20915:3 20916:2 20918:1 20924:3 20931:1 20936:1 20940:1 20941:2 20944:7 20948:1 20955:1 20956:4 20961:1 20976:2 20987:3 21013:1 21014:3 21015:1 21018:1 21022:2 21029:4 21035:1 21040:3 21048:1 21061:1 21066:1 21074:3 21075:1 21077:1 21096:1 21099:7 21102:1 21104:1 21108:28 21109:2 21110:2 21113:3 21119:4 21121:1 21122:1 21125:1 21128:1 21131:1 21133:3 21143:1 21145:2 21146:1 21169:1 21171:13 21173:2 21201:2 21205:1 21209:1 21221:3 21222:1 21223:1 21224:1 21242:1 21243:5 21247:1 21256:1 21262:1 21276:2 21292:3 21315:1 21320:1 21321:1 21324:2 21325:1 21329:2 21333:7 21338:1 21340:2 21353:1 21355:2 21361:1 21373:2 21374:2 21375:2 21376:1 21377:1 21381:1 21384:4 21391:6 21403:1 21406:4 21411:1 21413:2 21415:2 21441:1 21459:2 21460:3 21465:1 21470:2 21478:1 21482:1 21487:1 21509:1 21514:2 21528:1 21530:1 21535:1 21536:1 21537:2 21538:2 21539:1 21540:2 21543:2 21551:1 21570:1 21575:1 21576:1 21579:1 21580:1 21588:1 21597:1 21598:1 21603:1 21609:2 21611:1 21622:1 21634:2 21635:1 21639:1 21640:1 21641:1 21646:1 21647:3 21651:1 21668:1 21669:1 21703:1 21704:1 21711:8 21712:1 21721:2 21722:1 21729:1 21750:1 21761:1 21762:1 21773:1 21778:2 21779:1 21782:4 21786:2 21795:1 21803:1 21804:1 21808:1 21826:1 21831:2 21835:1 21837:1 21838:2 21843:1 21845:2 21866:1 21877:1 21880:2 21881:1 21889:5 21894:8 21899:1 21907:4 21912:1 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:3 21997:6 21998:2 22010:2 22017:3 22021:8 22024:1 22025:1 22034:1 22037:1 22048:2 22065:2 22067:3 22070:2 22071:2 22085:1 22090:1 22107:1 22108:1 22116:2 22119:1 22126:2 22135:1 22151:2 22156:1 22159:2 22160:1 22169:1 22173:3 22183:2 22185:1 22186:2 22190:1 22194:2 22237:1 22255:3 22268:1 22269:2 22276:2 22277:1 22316:2 22325:1 22327:1 22332:1 22340:2 22341:1 22347:2 22349:5 22352:1 22360:5 22372:1 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22560:1 22584:3 22589:2 22599:1 22601:1 22621:1 22629:1 22636:3 22648:2 22649:1 22651:4 22662:1 22666:1 22672:5 22674:1 22675:1 22688:1 22690:1 22709:2 22717:1 22725:2 22726:1 22731:1 22765:1 22770:1 22783:2 22787:1 22794:1 22796:3 22812:1 22829:1 22840:2 22849:1 22851:1 22877:1 22880:1 22897:1 22901:3 22905:1 22907:1 22911:1 22915:1 22928:1 22936:1 22938:1 22943:1 22956:2 22964:1 22975:2 22977:1 22982:1 22983:1 22985:6 22988:1 22997:1 23003:4 23018:2 23034:2 23061:1 23068:3 23070:1 23076:2 23081:1 23114:1 23119:1 23141:1 23142:5 23160:2 23165:1 23188:4 23258:1 23263:1 23266:1 23274:1 23284:1 23286:5 23301:1 23318:1 23339:1 23345:1 23348:2 23359:1 23369:1 23370:1 23371:1 23376:1 23400:2 23425:1 23426:1 23444:1 23449:1 23466:2 23468:1 23496:4 23498:1 23504:3
16 1:2 3:1 5:1 7:1 25:1 26:2 33:1 51:2 64:2 67:1 73:1 82:1 87:1 108:1 110:2 111:1 114:1 119:3 126:1 138:1 140:1 148:1 154:1 161:1 163:1 164:5 165:2 171:1 176:1 193:1 204:1 224:1 229:2 262:1 279:1 280:2 282:1 285:1 286:1 294:1 296:1 317:3 334:1 335:1 337:1 344:2 347:1 384:1 394:1 402:2 403:2 406:1 413:3 416:4 428:1 435:1 440:4 446:1 463:5 464:1 467:1 470:1 471:2 488:1 507:5 511:2 514:1 516:1 518:1 522:1 527:1 539:4 564:1 568:1 578:1 582:1 584:1 596:1 606:2 607:1 608:3 613:1 626:4 640:3 643:1 646:2 652:2 657:1 660:1 665:1 690:1 710:1 719:1 732:2 735:3 739:2 744:2 759:1 767:1 774:1 786:1 791:1 803:2 805:1 825:1 831:1 835:1 838:1 840:1 846:1 854:2 855:2 860:3 863:1 866:1 886:10 896:1 898:1 902:8 904:1 910:1 914:5 947:2 960:1 962:2 967:2 988:1 993:3 996:3 999:1 1010:3 1032:1 1035:1 1048:3 1049:1 1060:1 1061:1 1071:4 1078:1 1086:1 1098:1 1099:1 1113:1 1114:1 1115:3 1117:1 1118:1 1120:1 1131:7 1133:1 1145:3 1146:1 1148:1 1157:1 1160:1 1162:1 1164:2 1172:1 1174:3 1178:1 1181:1 1188:1 1190:5 1191:1 1194:2 1195:7 1196:1 1203:2 1207:2 1208:1 1235:1 1236:6 1242:4 1255:2 1268:2 1288:1 1291:1 1292:1 1298:1 1316:1 1325:1 1348:1 1362:1 1363:1 1366:2 1371:1 1376:1 1380:1 1382:2 1383:1 1384:1 1391:2 1399:6 1405:3 1417:1 1425:2 1428:1 1433:2 1450:2 1451:2 1467:2 1488:2 1494:3 1519:1 1526:2 1529:1 1537:2 1544:2 1559:1 1562:2 1564:2 1573:3 1574:1 1578:1 1579:3 1580:6 1581:2 1588:2 1596:1 1600:1 1609:1 1612:2 1616:3 1626:1 1628:8 1643:1 1644:1 1647:6 1648:2 1649:2 1671:1 1672:3 1674:1 1679:2 1682:1 1683:2 1686:4 1714:1 1721:1 1737:2 1738:1 1752:24 1758:1 1789:1 1792:1 1794:1 1802:6 1803:1 1807:1 1809:1 1829:2 1841:2 1844:1 1857:70 1869:2 1890:3 1894:1 1897:1 1899:1 1930:3 1935:1 1940:1 1943:1 1965:2 1968:1 1977:2 1978:1 1980:1 1981:1 1982:3 2001:1 2003:4 2021:1 2023:2 2027:1 2029:1 2030:1 2032:1 2034:2 2035:1 2036:2 2038:1 2042:1 2044:3 2045:4 2047:1 2053:3 2055:1 2057:2 2062:2 2063:3 2071:1 2087:1 2095:1 2103:1 2105:2 2109:4 2112:1 2123:6 2124:2 2125:1 2142:1 2145:1 2150:1 2156:2 2158:1 2161:1 2174:1 2177:1 2178:1 2182:3 2191:1 2192:1 2215:1 2231:1 2234:2 2236:1 2263:1 2288:1 2294:1 2297:1 2301:2 2310:5 2339:1 2343:3 2345:1 2354:1 2358:1 2363:1 2367:2 2368:2 2379:3 2384:1 2402:1 2414:6 2427:1 2435:1 2447:6 2450:2 2459:1 2462:1 2469:2 2479:2 2481:1 2483:4 2484:1 2494:1 2499:1 2505:1 2512:4 2533:1 2547:1 2549:1 2554:8 2562:1 2573:1 2581:3 2583:1 2584:1 2585:2 2598:2 2607:1 2609:1 2625:1 2632:2 2639:2 2642:1 2643:1 2658:4 2661:1 2667:4 2671:2 2673:1 2683:1 2685:1 2688:1 2695:1 2701:2 2702:1 2705:5 2708:3 2716:1 2718:1 2740:1 2746:1 2749:2 2763:1 2764:3 2773:4 2774:1 2778:1 2779:1 2781:1 2793:2 2795:1 2797:1 2798:1 2801:1 2810:4 2814:1 2816:3 2828:4 2829:1 2840:3 2850:1 2851:1 2860:3 2870:1 2878:1 2892:1 2895:3 2896:1 2899:2 2901:1 2902:1 2904:1 2912:1 2914:1 2921:1 2926:1 2927:1 2936:1 2941:2 2942:2 2952:1 2954:3 2964:1 2966:13 2970:1 2979:1 2981:1 2986:1 2987:1 2989:1 2990:1 2995:2 3002:1 3004:3 3012:1 3014:1 3017:1 3023:1 3027:1 3033:2 3035:4 3039:1 3043:1 3046:1 3048:2 3052:1 3065:1 3066:3 3070:2 3074:1 3084:1 3096:1 3098:3 3103:1 3136:1 3141:1 3153:1 3156:1 3161:1 3168:2 3169:2 3170:1 3172:2 3177:3 3178:1 3186:2 3218:2 3219:1 3221:1 3223:5 3229:2 3234:1 3237:3 3240:1 3242:2 3255:1 3260:1 3264:3 3266:1 3268:1 3272:2 3273:1 3274:1 3293:1 3302:1 3306:1 3311:1 3314:2 3316:2 3343:2 3345:4 3346:2 3352:1 3359:1 3382:2 3396:1 3403:1 3408:1 3409:3 3421:1 3422:1 3437:1 3452:1 3462:1 3468:1 3473:3 3483:1 3484:1 3486:1 3489:1 3502:1 3519:1 3528:1 3538:2 3540:1 3541:2 3542:1 3545:2 3546:4 3550:1 3551:2 3552:1 3553:1 3554:6 3555:1 3556:1 3559:5 3560:1 3562:4 3564:1 3567:1 3571:1 3573:6 3575:3 3576:7 3580:1 3581:1 3590:2 3597:1 3601:1 3605:1 3606:2 3608:1 3610:1 3616:1 3622:1 3637:1 3642:1 3644:1 3652:2 3656:1 3661:3 3673:2 3686:2 3688:1 3694:1 3698:1 3701:1 3703:3 3705:1 3706:3 3711:1 3714:1 3726:1 3731:1 3738:1 3740:1 3746:1 3752:3 3759:1 3761:2 3786:2 3792:1 3812:1 3819:1 3823:1 3827:2 3853:1 3854:2 3860:5 3865:1 3871:1 3875:1 3892:4 3893:2 3906:3 3936:1 3946:1 3951:1 3952:1 3965:1 3973:1 3974:1 3980:1 3990:1 4004:1 4006:1 4010:1 4027:6 4030:2 4034:1 4038:1 4050:1 4052:2 4054:2 4058:2 4059:1 4072:2 4082:1 4083:2 4085:1 4089:2 4104:1 4105:1 4109:1 4117:2 4127:1 4134:1 4146:1 4148:1 4150:1 4154:1 4165:1 4174:1 4182:2 4183:2 4184:2 4197:1 4208:4 4219:1 4226:4 4242:1 4243:2 4244:1 4248:2 4255:1 4257:1 4260:3 4262:12 4281:1 4283:1 4290:1 4295:1 4296:2 4307:1 4311:1 4317:1 4318:1 4323:1 4332:2 4335:3 4338:4 4342:1 4343:2 4350:1 4358:1 4379:2 4380:1 4386:1 4393:2 4398:3 4413:1 4414:1 4417:5 4424:1 4427:4 4473:3 4480:1 4481:2 4488:2 4490:2 4491:1 4511:4 4512:1 4513:14 4515:2 4516:1 4526:1 4533:1 4540:1 4545:1 4560:2 4561:14 4577:7 4589:1 4607:1 4616:2 4631:1 4632:1 4650:32 4658:1 4671:2 4675:1 4699:1 4701:1 4702:1 4705:2 4714:3 4720:1 4730:1 4735:2 4741:2 4746:1 4752:1 4760:1 4766:1 4769:2 4778:1 4781:1 4786:1 4803:1 4807:2 4808:1 4812:1 4813:1 4818:2 4837:4 4844:4 4845:2 4860:2 4900:2 4902:1 4932:3 4937:1 4955:3 4966:1 4968:1 4970:1 4984:1 4990:1 5022:1 5034:3 5038:1 5047:1 5048:1 5058:1 5059:1 5060:1 5072:1 5084:4 5092:1 5097:1 5099:1 5112:1 5120:13 5124:1 5130:2 5132:1 5139:1 5144:3 5152:1 5159:1 5161:2 5170:1 5175:1 5183:1 5196:2 5199:1 5200:1 5204:1 5226:1 5227:4 5234:1 5236:1 5250:1 5253:7 5279:4 5286:1 5291:1 5297:2 5310:1 5341:1 5344:1 5348:1 5352:1 5353:4 5364:1 5365:1 5366:2 5383:4 5387:3 5388:1 5390:1 5398:3 5402:1 5405:1 5409:1 5428:1 5430:2 5432:1 5433:1 5439:2 5447:3 5454:1 5456:1 5459:2 5465:1 5466:1 5467:1 5480:4 5510:1 5516:1 5517:1 5521:3 5525:1 5540:1 5542:1 5543:1 5560:3 5564:1 5565:1 5601:1 5609:1 5619:1 5621:4 5623:2 5627:2 5631:1 5632:1 5633:1 5650:2 5659:1 5661:14 5667:1 5668:1 5677:1 5690:1 5701:1 5710:1 5724:1 5732:1 5748:4 5752:1 5762:1 5779:1 5780:1 5782:1 5783:1 5805:1 5807:1 5809:1 5816:4 5817:44 5820:2 5826:1 5831:1 5851:2 5853:1 5855:9 5858:1 5861:1 5869:1 5870:27 5871:1 5872:2 5873:2 5876:6 5883:1 5896:1 5898:2 5906:2 5919:3 5932:3 5934:4 5939:3 5947:1 5953:6 5957:2 5961:1 5963:2 5967:2 5970:1 5981:1 5994:4 6003:2 6005:3 6013:1 6014:2 6017:1 6018:1 6025:1 6049:1 6055:1 6059:2 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6095:1 6101:4328 6102:1 6107:1 6117:1 6130:1 6131:1 6133:2 6138:1 6140:5 6149:2 6165:1 6179:1 6180:2 6183:1 6184:1 6193:1 6195:1 6198:2 6201:1 6205:1 6210:4 6220:1 6232:2 6233:4 6248:1 6253:1 6273:3 6279:1 6289:1 6300:1 6313:1 6320:1 6337:1 6346:1 6349:3 6375:1 6376:2 6379:1 6399:2 6401:1 6407:3 6417:1 6434:1 6448:5 6450:2 6458:1 6463:1 6471:2 6480:2 6484:2 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6534:1 6547:1 6559:2 6576:1 6577:1 6581:1 6584:1 6590:1 6601:1 6640:1 6644:5 6650:1 6656:1 6666:2 6677:1 6681:1 6686:1 6692:1 6698:1 6702:1 6705:14 6715:2 6725:1 6741:1 6748:3 6750:1 6777:1 6782:1 6784:2 6787:1 6792:5 6798:1 6802:2 6817:2 6830:7 6840:1 6846:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6874:1 6880:1 6888:1 6936:1 6951:1 6956:2 6957:1 6962:1 6964:1 6974:2 6975:1 6981:4 7006:2 7017:1 7049:1 7050:2 7057:1 7066:2 7080:1 7097:2 7104:1 7110:2 7124:1 7134:4 7137:1 7139:4 7153:1 7157:3 7163:1 7167:4 7171:1 7203:3 7204:1 7208:2 7213:1 7221:1 7233:1 7238:1 7256:1 7276:1 7305:1 7319:1 7320:1 7329:1 7337:2 7340:1 7348:2 7349:1 7361:1 7363:2 7376:2 7377:4 7383:2 7397:2 7405:1 7408:4 7415:1 7444:2 7450:1 7452:5 7474:1 7476:16 7483:1 7488:1 7507:17 7508:2 7515:1 7516:1 7519:3 7520:1 7523:23 7529:1 7539:2 7555:2 7581:1 7582:6 7584:2 7585:1 7591:1 7607:1 7614:2 7618:1 7632:1 7635:1 7638:5 7649:1 7663:1 7670:3 7671:2 7680:1 7684:6 7686:2 7689:1 7693:3 7694:1 7696:4 7702:1 7719:2 7720:1 7722:1 7730:2 7732:4 7733:8 7734:1 7735:1 7736:1 7739:1 7740:3 7742:1 7750:24 7751:1 7753:1 7758:1 7762:2 7765:3 7773:2 7775:1 7782:1 7788:3 7794:1 7811:1 7814:1 7817:3 7823:3 7834:1 7856:2 7871:1 7883:1 7887:1 7893:1 7902:1 7922:2 7935:1 7948:1 7970:1 7995:1 8003:1 8034:1 8047:1 8052:1 8065:1 8089:1 8091:13 8096:3 8097:3 8107:1 8108:5 8119:1 8168:1 8170:1 8177:1 8187:1 8209:1 8222:2 8224:1 8225:24 8231:1 8234:7 8254:1 8262:1 8270:1 8298:2 8301:1 8313:1 8314:3 8317:1 8321:1 8325:1 8326:1 8347:1 8351:1 8356:1 8357:1 8361:2 8367:3 8372:2 8373:1 8385:2 8412:1 8433:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8469:1 8490:3 8491:1 8510:1 8520:2 8522:1 8525:3 8537:1 8544:1 8555:1 8558:1 8569:1 8573:2 8578:1 8579:5 8581:1 8598:2 8599:1 8605:2 8609:1 8611:1 8618:2 8624:2 8634:2 8644:7 8673:1 8674:1 8679:1 8684:1 8692:1 8709:1 8713:2 8719:1 8723:1 8731:1 8746:4 8748:15 8755:1 8756:1 8757:1 8769:2 8771:3 8780:2 8789:1 8791:1 8796:1 8802:1 8803:2 8812:1 8828:1 8831:15 8834:1 8838:2 8856:1 8878:1 8889:1 8894:1 8900:5 8903:1 8930:1 8937:2 8948:1 8957:2 8970:1 8973:1 8976:1 8980:1 8985:1 9008:1 9017:1 9018:1 9020:1 9024:1 9027:1 9029:1 9031:1 9043:1 9044:1 9048:1 9053:2 9065:1 9066:1 9069:1 9083:1 9089:4 9090:1 9091:2 9119:1 9123:1 9139:1 9158:2 9169:1 9180:3 9208:5 9215:1 9217:5 9218:1 9223:1 9227:1 9231:3 9232:1 9241:2 9253:1 9259:1 9280:1 9285:1 9292:1 9302:1 9310:1 9314:2 9348:1 9370:1 9374:1 9393:1 9400:4 9402:9 9413:1 9416:2 9419:2 9436:1 9445:1 9450:1 9452:1 9477:1 9497:2 9509:1 9514:1 9517:1 9523:2 9527:1 9528:2 9529:1 9536:1 9539:1 9541:1 9547:1 9573:1 9575:1 9578:2 9589:1 9598:4 9610:1 9611:1 9612:1 9617:2 9625:2 9626:2 9645:1 9647:1 9652:1 9666:1 9684:1 9687:3 9706:1 9707:3 9710:1 9719:1 9721:2 9725:1 9727:1 9732:1 9733:1 9740:1 9747:5 9749:1 9751:14 9754:1 9759:2 9769:1 9770:3 9771:1 9772:1 9777:5 9778:1 9779:1 9791:3 9792:1 9797:2 9799:1 9800:5 9809:1 9812:1 9832:1 9848:4 9854:1 9866:1 9867:1 9901:6 9904:2 9905:1 9906:1 9908:1 9910:1 9912:2 9913:2 9917:2 9918:3 9919:5 9920:2 9923:1 9926:3 9928:1 9929:8 9930:1 9932:1 9933:3 9940:2 9948:1 9950:1 9967:1 9980:1 9986:2 9993:1 10018:8 10025:3 10027:1 10032:2 10036:1 10039:1 10046:1 10050:1 10062:1 10092:2 10095:1 10105:1 10125:1 10129:1 10130:1 10147:3 10150:1 10153:1 10158:1 10165:1 10173:1 10178:1 10182:3 10183:1 10193:1 10199:1 10201:1 10207:2 10208:1 10210:1 10212:1 10220:1 10223:2 10224:1 10226:1 10232:1 10277:1 10282:1 10288:3 10289:1 10313:1 10350:1 10362:1 10373:1 10382:1 10386:3 10392:2 10410:1 10412:1 10420:1 10421:4 10424:2 10426:3 10442:4 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10509:1 10510:2 10515:1 10520:1 10536:3 10540:1 10542:1 10544:2 10552:1 10561:1 10562:1 10565:1 10566:1 10567:2 10576:1 10579:1 10580:1 10581:1 10582:1 10587:1 10590:2 10593:6 10597:3 10613:1 10617:1 10618:1 10623:1 10634:1 10648:1 10649:1 10662:1 10677:1 10690:1 10696:1 10699:1 10700:2 10704:2 10708:3 10714:2 10734:1 10736:1 10737:1 10742:3 10749:3 10751:2 10759:1 10762:1 10766:4 10768:18 10780:3 10784:1 10793:2 10794:2 10799:1 10801:2 10805:1 10811:1 10817:4 10828:3 10837:1 10840:2 10842:1 10861:1 10866:1 10868:1 10870:5 10873:3 10881:1 10904:1 10910:1 10929:1 10936:2 10937:3 10939:1 10941:3 10944:1 10946:1 10949:1 10953:1 10956:1 10957:5 10962:2 10972:1 10974:1 10983:1 11004:1 11018:1 11042:1 11043:1 11049:4 11061:2 11067:1 11068:2 11073:3 11082:1 11085:2 11106:1 11109:2 11121:1 11151:1 11171:1 11184:2 11203:4 11210:2 11211:1 11212:12 11215:3 11220:2 11229:1 11230:2 11232:1 11234:1 11248:3 11249:2 11250:3 11251:1 11252:1 11254:1 11255:1 11259:1 11264:2 11269:2 11271:1 11272:2 11281:1 11283:1 11284:1 11303:1 11310:5 11311:2 11313:1 11316:2 11317:1 11320:3 11322:1 11325:1 11326:1 11331:1 11351:1 11356:2 11367:1 11396:1 11423:1 11442:1 11444:5 11446:1 11489:1 11497:1 11508:1 11515:1 11530:1 11543:1 11546:2 11549:1 11554:1 11562:1 11577:1 11583:1 11589:1 11593:4 11595:2 11599:1 11606:1 11609:1 11615:1 11631:1 11636:1 11644:1 11654:1 11666:5 11667:24 11670:2 11673:1 11701:1 11729:1 11733:2 11747:1 11749:1 11757:1 11767:1 11778:4 11780:1 11781:3 11797:1 11799:2 11802:2 11806:1 11811:1 11813:1 11819:1 11822:2 11834:2 11836:5 11847:1 11852:9 11863:1 11878:4 11906:2 11907:2 11916:1 11932:2 11942:1 11949:2 11963:1 11968:1 11971:2 11977:1 11983:2 12004:1 12008:1 12009:1 12014:1 12015:1 12017:2 12034:2 12035:1 12055:2 12059:1 12060:1 12065:4 12083:10 12101:1 12107:1 12115:4 12116:5 12117:4 12119:3 12136:1 12140:1 12141:4 12143:2 12144:1 12149:2 12154:1 12163:1 12173:1 12191:1 12192:2 12198:1 12200:1 12202:47 12205:1 12206:1 12209:2 12215:1 12226:14 12229:28 12237:2 12244:1 12248:1 12255:1 12259:1 12264:1 12266:1 12288:1 12295:6 12296:1 12344:1 12364:1 12370:3 12378:1 12381:1 12383:1 12391:1 12392:2 12407:1 12420:1 12431:3 12439:1 12440:1 12454:1 12463:1 12469:1 12491:1 12506:1 12512:1 12515:4 12518:7 12523:1 12529:1 12543:1 12549:1 12551:1 12553:1 12556:1 12559:2 12566:15 12567:2 12584:1 12590:1 12592:1 12593:5 12603:1 12606:2 12618:1 12628:1 12630:1 12633:1 12653:2 12666:1 12673:1 12682:3 12687:1 12691:1 12693:2 12696:1 12703:1 12709:1 12723:1 12731:1 12754:3 12767:1 12778:1 12783:5 12791:3 12808:2 12814:7 12823:2 12830:1 12839:1 12850:1 12852:2 12853:1 12874:2 12879:1 12880:1 12887:2 12895:1 12904:1 12919:1 12921:1 12938:23 12944:1 12955:1 12963:1 12966:1 12968:1 12970:1 12975:2 12976:1 12985:2 12986:1 13013:2 13015:1 13047:1 13053:1 13060:1 13064:1 13067:2 13070:1 13071:1 13084:2 13086:2 13097:1 13107:1 13109:1 13124:1 13129:2 13155:1 13175:1 13176:1 13177:6 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:2 13229:1 13239:1 13240:4 13247:3 13253:1 13267:2 13270:4 13279:1 13289:1 13293:2 13296:1 13298:2 13304:1 13309:1 13321:1 13324:2 13334:2 13346:1 13362:1 13363:2 13372:1 13379:1 13384:1 13386:1 13387:1 13392:2 13405:1 13412:2 13414:2 13417:4 13419:1 13421:1 13443:1 13451:1 13459:1 13471:2 13484:3 13489:1 13502:1 13505:3 13506:5 13514:1 13526:6 13529:1 13537:1 13542:1 13544:1 13547:1 13552:1 13553:3 13557:2 13562:1 13565:1 13572:1 13573:2 13577:1 13578:1 13579:3 13580:2 13581:2 13582:5 13587:1 13589:1 13593:2 13597:2 13599:2 13606:3 13609:2 13614:1 13619:2 13620:1 13632:1 13644:3 13646:1 13653:1 13661:2 13672:1 13674:1 13682:1 13683:1 13703:5 13711:1 13715:29 13719:1 13724:2 13728:2 13735:1 13747:2 13756:3 13781:1 13786:5 13826:5 13832:2 13846:1 13847:1 13850:2 13851:1 13852:1 13854:1 13855:2 13861:1 13874:1 13881:1 13883:1 13935:3 13941:1 13943:2 13944:1 13971:1 13972:1 13978:1 13981:1 13982:1 13984:1 13986:3 13995:1 13999:3 14004:2 14007:1 14037:1 14041:1 14051:2 14061:1 14076:1 14082:1 14091:5 14093:2 14096:4 14099:1 14100:1 14101:4 14104:3 14108:1 14114:2 14134:3 14137:1 14139:4 14152:1 14155:1 14172:1 14176:2 14184:2 14193:2 14219:1 14241:4 14260:1 14280:2 14281:1 14283:1 14290:1 14311:2 14312:2 14336:1 14337:1 14345:1 14360:1 14364:1 14381:1 14386:1 14391:1 14396:1 14416:1 14429:2 14439:1 14440:1 14457:3 14474:2 14475:4 14484:1 14488:2 14490:1 14492:2 14493:1 14512:1 14519:2 14529:1 14530:1 14531:4 14533:1 14548:1 14554:1 14555:1 14561:7 14586:2 14591:3 14595:1 14604:1 14605:1 14612:1 14622:1 14632:1 14641:1 14643:1 14646:2 14656:1 14658:1 14666:1 14673:3 14675:1 14694:1 14703:1 14704:1 14719:2 14720:1 14759:1 14767:1 14768:8 14775:1 14777:1 14781:1 14784:1 14794:1 14795:1 14802:1 14809:3 14836:2 14846:1 14849:1 14855:1 14870:1 14871:1 14872:2 14896:1 14900:1 14902:1 14904:1 14907:3 14913:2 14924:1 14926:2 14929:1 14933:1 14946:1 14953:1 14955:3 14970:1 14973:1 14975:2 14982:1 14986:2 15006:1 15016:1 15018:3 15038:1 15039:5 15060:1 15065:1 15071:1 15113:24 15114:1 15121:2 15137:1 15141:1 15143:1 15148:1 15151:1 15156:1 15161:3 15162:5 15164:1 15167:2 15189:6 15193:1 15204:1 15205:2 15206:1 15215:2 15217:3 15227:3 15233:1 15235:2 15239:1 15246:1 15252:1 15264:1 15265:1 15266:2 15280:2 15281:2 15283:1 15291:2 15295:3 15304:1 15310:1 15319:1 15324:1 15330:2 15337:14 15344:2 15348:1 15367:1 15369:2 15370:1 15377:2 15401:1 15403:1 15408:1 15413:1 15435:1 15441:4 15444:5 15454:1 15459:3 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15482:1 15499:1 15500:1 15511:1 15516:1 15528:1 15541:1 15547:1 15552:1 15553:1 15559:1 15567:1 15577:1 15594:1 15597:2 15600:1 15601:3 15621:1 15622:2 15623:1 15643:1 15660:8 15661:1 15664:3 15671:1 15675:2 15678:4 15680:2 15682:1 15689:3 15693:1 15698:1 15708:2 15714:3 15718:1 15719:1 15723:1 15731:1 15732:2 15744:1 15750:1 15757:1 15759:2 15764:1 15766:4 15772:5 15774:1 15776:1 15786:1 15820:1 15822:1 15825:1 15829:3 15830:1 15840:4 15844:1 15852:2 15877:1 15878:2 15892:3 15898:1 15909:2 15932:5 15967:1 15980:1 15981:3 15986:1 16005:1 16035:12 16037:1 16038:6 16046:1 16048:1 16050:1 16053:1 16066:1 16080:1 16098:2 16099:1 16107:1 16109:1 16133:6 16135:1 16160:1 16164:1 16172:2 16178:1 16189:1 16190:3 16197:1 16199:1 16208:2 16236:4 16246:1 16261:2 16269:4 16282:1 16287:1 16290:1 16297:4 16317:1 16322:1 16338:1 16341:1 16345:1 16354:1 16373:1 16393:2 16410:5 16414:1 16425:1 16428:1 16435:1 16438:4 16449:2 16460:1 16464:1 16468:1 16480:1 16505:3 16508:8 16511:1 16512:7 16522:1 16523:1 16527:1 16548:1 16556:1 16557:1 16574:2 16588:3 16589:2 16593:2 16602:6 16607:1 16614:1 16615:6 16616:1 16629:1 16634:1 16636:4 16637:1 16638:4 16640:4 16643:1 16670:1 16674:3 16677:1 16702:1 16703:3 16728:1 16729:1 16735:1 16749:4 16759:1 16763:2 16774:2 16782:7 16848:1 16862:1 16864:1 16865:1 16868:1 16869:2 16870:8 16872:3 16881:1 16888:1 16911:1 16930:3 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16967:1 16975:1 16990:1 16992:6 16993:1 17004:2 17008:1 17009:1 17020:1 17026:1 17033:4 17046:6 17048:2 17059:2 17080:1 17089:1 17099:2 17102:1 17106:1 17109:1 17128:2 17135:1 17151:1 17160:3 17162:1 17164:6 17175:1 17183:1 17185:1 17186:1 17187:7 17208:4 17211:7 17222:2 17231:3 17237:1 17240:1 17241:1 17255:1 17262:2 17274:1 17281:4 17283:2 17284:1 17311:2 17324:3 17336:1 17338:2 17343:1 17347:5 17367:1 17377:4 17384:1 17389:5 17395:1 17422:1 17424:1 17425:1 17437:4 17442:4 17451:1 17456:1 17457:1 17465:2 17469:1 17486:1 17501:2 17512:1 17528:1 17530:1 17534:1 17539:1 17540:1 17541:1 17543:1 17545:1 17546:4 17547:1 17568:1 17577:1 17596:2 17613:1 17618:1 17623:1 17632:1 17634:1 17667:1 17670:2 17681:1 17702:1 17707:4 17708:1 17709:4 17722:2 17725:1 17741:1 17744:1 17770:1 17785:1 17794:4 17811:1 17818:1 17821:2 17824:1 17829:1 17841:1 17851:3 17852:1 17853:6 17857:1 17859:2 17862:2 17865:3 17881:1 17894:1 17906:1 17908:1 17922:2 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17983:2 17986:1 17995:2 18004:1 18011:1 18025:6 18031:3 18032:1 18036:1 18037:1 18047:1 18050:1 18057:1 18064:3 18078:1 18087:1 18090:5 18102:1 18104:3 18106:1 18123:1 18131:2 18133:3 18134:2 18138:2 18153:1 18197:1 18205:3 18206:1 18209:3 18217:1 18230:3 18239:1 18240:9 18241:1 18257:1 18258:1 18261:1 18262:1 18265:1 18266:1 18267:1 18272:15 18275:1 18277:3 18278:1 18280:7 18281:1 18287:1 18292:1 18293:7 18303:1 18322:1 18326:1 18334:10 18345:1 18348:1 18368:2 18385:5 18391:2 18397:1 18399:2 18409:1 18411:1 18423:1 18446:1 18463:1 18470:1 18472:1 18482:1 18491:4 18509:3 18510:1 18513:1 18514:2 18525:1 18542:1 18547:2 18574:1 18576:1 18586:1 18592:1 18623:1 18628:1 18632:2 18646:1 18656:2 18675:1 18679:3 18703:5 18705:2 18708:1 18713:1 18721:1 18722:2 18723:1 18724:4 18725:9 18729:1 18735:2 18739:2 18766:2 18792:2 18801:1 18815:2 18833:1 18855:5 18856:1 18875:1 18883:4 18896:1 18900:1 18906:2 18922:1 18929:3 18937:1 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18969:1 18974:2 18975:1 18979:1 18980:1 18993:1 19004:4 19005:4 19007:24 19017:7 19031:1 19039:2 19040:2 19047:1 19052:2 19055:1 19066:3 19089:2 19092:1 19111:1 19126:1 19134:1 19140:1 19164:2 19195:1 19198:1 19207:1 19236:1 19240:3 19252:1 19260:9 19262:2 19271:1 19281:1 19282:1 19290:1 19298:1 19299:4 19306:2 19310:1 19312:2 19319:1 19342:1 19357:1 19361:3 19373:2 19380:1 19391:2 19397:3 19404:1 19418:1 19430:1 19439:1 19456:1 19476:2 19481:1 19492:1 19496:2 19498:2 19502:1 19512:2 19515:1 19529:2 19544:1 19565:1 19584:1 19595:2 19597:2 19603:1 19604:5 19626:1 19631:4 19636:1 19640:1 19647:9 19653:1 19658:1 19663:1 19672:1 19682:1 19697:2 19698:1 19707:1 19712:3 19727:1 19734:1 19749:1 19754:1 19765:1 19774:1 19776:1 19790:29 19791:1 19794:3 19796:1 19804:1 19807:1 19811:1 19820:1 19834:1 19835:1 19843:5 19845:1 19855:1 19873:1 19877:1 19880:1 19882:1 19936:6 19951:1 19952:1 19956:1 19959:1 19963:1 19969:1 19970:3 19974:3 19977:4 19978:2 19983:1 19985:1 20017:2 20021:1 20022:2 20023:4 20026:1 20032:2 20038:2 20041:2 20044:2 20046:1 20055:1 20056:1 20060:1 20062:3 20071:1 20075:1 20079:3 20080:3 20106:2 20125:1 20139:1 20148:1 20160:2 20190:1 20191:1 20197:2 20214:2 20217:1 20237:1 20250:1 20255:1 20256:1 20263:1 20270:2 20276:1 20284:1 20285:3 20291:1 20299:3 20311:1 20325:1 20351:2 20353:1 20378:2 20379:1 20392:1 20397:2 20398:2 20403:2 20413:1 20414:1 20420:1 20421:1 20424:1 20426:1 20438:3 20439:1 20473:1 20479:1 20511:12 20520:1 20522:1 20536:1 20550:5 20553:1 20572:1 20573:1 20574:1 20587:1 20590:3 20591:1 20599:1 20638:3 20642:1 20648:1 20653:3 20656:1 20664:1 20669:1 20678:2 20681:1 20696:1 20703:2 20711:1 20724:2 20733:1 20740:1 20741:1 20742:1 20747:2 20754:1 20767:1 20770:4 20777:1 20793:2 20794:1 20802:2 20807:1 20811:1 20819:1 20823:1 20842:1 20852:1 20853:5 20859:2 20863:5 20904:1 20905:1 20915:3 20916:2 20918:1 20924:3 20931:1 20936:1 20940:1 20941:2 20944:7 20948:1 20955:1 20956:4 20961:1 20976:2 20987:3 21013:1 21014:3 21015:1 21018:1 21022:2 21029:4 21035:1 21040:3 21048:1 21061:1 21066:1 21074:3 21075:1 21077:1 21096:1 21099:7 21102:1 21104:1 21108:28 21109:2 21110:2 21113:3 21119:4 21121:1 21122:1 21125:1 21128:1 21131:1 21133:3 21143:1 21145:2 21146:1 21169:1 21171:13 21173:2 21192:1 21201:2 21205:1 21209:1 21221:3 21222:1 21223:1 21224:1 21242:1 21243:5 21244:1 21247:1 21256:1 21262:1 21276:2 21292:3 21315:1 21320:1 21321:1 21324:2 21325:1 21329:2 21333:7 21338:1 21340:2 21353:1 21355:2 21361:1 21373:2 21374:2 21375:2 21376:1 21377:1 21381:1 21384:4 21391:6 21403:2 21406:5 21411:1 21413:2 21415:2 21441:1 21459:2 21460:3 21465:1 21470:2 21478:1 21482:1 21487:1 21509:1 21514:2 21528:1 21530:1 21535:1 21536:1 21537:2 21538:2 21539:1 21540:2 21543:2 21551:1 21570:1 21575:1 21576:1 21579:1 21580:1 21588:1 21597:1 21598:1 21603:1 21609:2 21611:1 21622:1 21634:2 21635:1 21639:1 21640:1 21641:1 21646:1 21647:3 21651:1 21668:1 21669:1 21703:2 21704:2 21711:8 21712:1 21721:2 21722:1 21729:1 21750:1 21761:1 21762:1 21773:1 21778:2 21779:1 21782:4 21786:2 21795:1 21803:1 21804:1 21808:1 21826:1 21831:2 21835:2 21837:1 21838:2 21843:1 21845:2 21866:1 21877:1 21880:2 21881:1 21889:5 21894:8 21899:1 21907:4 21912:1 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:3 21997:7 21998:3 22010:2 22017:3 22021:8 22024:1 22025:1 22034:1 22037:1 22048:2 22065:2 22067:3 22070:2 22071:2 22085:1 22090:1 22107:1 22108:2 22116:2 22119:1 22126:2 22135:1 22151:2 22156:1 22159:2 22160:1 22169:1 22173:3 22183:2 22185:1 22186:2 22190:1 22194:2 22200:1 22237:1 22255:3 22268:1 22269:2 22276:2 22277:1 22316:2 22325:1 22327:1 22332:1 22340:2 22341:1 22347:2 22349:5 22352:1 22360:5 22372:1 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22560:1 22584:3 22589:2 22599:1 22601:1 22602:1 22621:1 22629:1 22636:3 22648:2 22649:1 22651:4 22662:1 22666:1 22672:5 22674:1 22675:1 22686:1 22688:1 22690:1 22709:2 22717:1 22725:2 22726:1 22731:1 22765:1 22770:1 22783:2 22787:1 22794:1 22796:3 22812:1 22829:1 22840:2 22849:1 22851:1 22877:1 22880:2 22897:1 22901:3 22905:1 22907:1 22911:1 22915:1 22928:1 22936:2 22938:1 22943:1 22956:2 22964:1 22975:2 22977:1 22982:1 22983:1 22985:6 22988:1 22997:2 23003:5 23018:2 23034:2 23061:1 23068:3 23070:1 23076:2 23081:1 23114:1 23119:1 23141:1 23142:5 23160:2 23165:1 23188:4 23258:1 23263:1 23266:1 23274:1 23284:1 23286:5 23301:1 23318:1 23339:1 23345:1 23348:2 23359:1 23369:1 23370:1 23371:1 23376:1 23400:2 23425:1 23426:1 23444:1 23449:1 23466:2 23468:1 23496:4 23498:1 23504:3
16 1:2 3:1 5:1 7:1 25:1 26:2 33:1 51:3 64:2 67:1 73:1 82:1 87:1 108:1 110:2 111:1 114:1 119:4 126:1 138:1 140:1 148:1 154:1 161:1 163:1 164:5 165:2 171:1 176:1 193:1 204:1 224:1 229:2 262:1 279:1 280:3 282:1 285:1 286:1 294:1 296:1 317:4 334:1 335:1 337:1 344:2 347:1 384:1 394:1 402:3 403:2 406:1 413:3 416:4 428:1 435:1 440:4 446:1 463:5 464:1 467:1 470:1 471:2 488:1 507:6 511:2 514:1 516:1 518:1 522:1 527:1 539:4 564:1 568:1 578:1 582:1 584:1 596:1 606:2 607:1 608:3 613:1 626:4 640:3 643:1 646:2 652:2 657:1 660:1 665:1 690:1 710:1 719:1 732:2 735:3 739:2 744:2 759:1 767:1 774:1 786:1 791:1 803:2 805:1 825:1 831:1 835:1 838:1 840:1 846:1 854:2 855:2 860:3 863:1 866:1 886:11 896:1 898:1 902:8 904:1 910:1 914:5 947:2 960:1 962:2 967:2 988:1 993:3 996:4 999:1 1010:3 1032:1 1035:1 1048:3 1049:1 1060:1 1061:1 1071:4 1078:1 1086:1 1098:1 1099:1 1113:1 1114:1 1115:3 1117:1 1118:1 1120:1 1131:8 1133:1 1145:3 1146:1 1148:1 1157:1 1160:1 1162:1 1164:2 1172:1 1174:4 1178:1 1181:1 1188:1 1190:6 1191:1 1194:2 1195:7 1196:1 1203:2 1207:2 1208:1 1235:1 1236:6 1242:4 1255:2 1268:2 1288:1 1291:1 1292:1 1298:1 1316:1 1325:1 1348:1 1362:1 1363:1 1366:2 1371:2 1376:1 1380:1 1382:2 1383:1 1384:1 1391:2 1399:6 1405:4 1417:1 1425:3 1428:1 1433:2 1450:2 1451:2 1467:2 1488:2 1494:3 1519:1 1526:2 1529:1 1537:2 1544:2 1559:1 1562:2 1564:2 1573:3 1574:1 1578:1 1579:3 1580:6 1581:2 1588:2 1596:1 1600:1 1609:1 1612:2 1616:3 1626:1 1628:8 1643:1 1644:1 1647:6 1648:2 1649:2 1671:1 1672:3 1674:1 1679:2 1682:1 1683:2 1686:4 1714:1 1721:1 1737:2 1738:1 1752:24 1758:1 1789:1 1792:1 1794:1 1802:6 1803:1 1807:1 1809:1 1829:2 1841:2 1844:1 1857:70 1869:2 1890:3 1894:1 1897:2 1899:1 1930:3 1935:1 1940:1 1943:1 1965:2 1968:1 1977:2 1978:1 1980:1 1981:1 1982:3 2001:1 2003:4 2021:1 2023:2 2027:1 2029:1 2030:1 2032:1 2034:2 2035:1 2036:2 2038:2 2042:1 2044:3 2045:6 2047:1 2053:3 2055:1 2057:2 2062:2 2063:3 2071:2 2087:1 2095:1 2103:1 2105:2 2109:5 2112:1 2123:7 2124:2 2125:1 2142:1 2145:1 2150:1 2156:2 2158:1 2161:1 2174:1 2177:1 2178:1 2182:3 2191:1 2192:1 2215:1 2231:1 2234:2 2236:1 2263:1 2288:1 2294:1 2297:1 2301:2 2310:5 2339:1 2343:3 2345:1 2354:1 2358:1 2363:1 2367:2 2368:2 2379:4 2384:1 2402:1 2414:6 2427:1 2435:1 2447:7 2450:2 2459:1 2462:1 2469:2 2479:2 2481:1 2483:4 2484:1 2494:1 2499:1 2505:1 2512:5 2533:1 2547:1 2549:1 2554:9 2562:1 2573:1 2581:3 2583:2 2584:2 2585:2 2598:2 2607:1 2609:1 2625:1 2632:2 2639:2 2642:1 2643:1 2658:5 2661:1 2667:5 2671:2 2673:1 2683:1 2685:1 2688:1 2695:1 2701:2 2702:1 2705:5 2708:3 2716:1 2718:1 2740:1 2746:2 2749:2 2763:1 2764:3 2773:5 2774:1 2778:1 2779:1 2781:1 2793:2 2795:1 2797:1 2798:1 2801:1 2810:4 2814:1 2816:3 2828:5 2829:1 2840:3 2850:1 2851:1 2860:3 2870:1 2878:1 2892:1 2895:3 2896:1 2899:2 2901:1 2902:1 2904:1 2912:1 2914:1 2921:1 2926:1 2927:1 2936:1 2941:2 2942:2 2952:1 2954:3 2964:1 2966:13 2970:1 2979:1 2981:1 2986:1 2987:1 2989:1 2990:1 2995:2 3002:1 3004:4 3012:1 3014:1 3017:2 3023:1 3027:1 3033:2 3035:4 3039:1 3043:1 3046:1 3048:2 3052:1 3065:1 3066:4 3070:2 3074:1 3084:1 3096:1 3098:3 3103:1 3136:1 3141:1 3153:1 3156:1 3161:1 3168:2 3169:2 3170:2 3172:2 3177:3 3178:1 3186:2 3218:2 3219:1 3221:1 3223:5 3229:2 3234:1 3237:3 3240:1 3242:2 3255:1 3260:1 3264:4 3266:1 3268:1 3272:2 3273:1 3274:1 3293:1 3302:1 3306:1 3311:1 3314:2 3316:2 3343:2 3345:4 3346:2 3352:2 3359:1 3382:2 3396:1 3403:1 3408:1 3409:3 3421:1 3422:1 3437:1 3452:1 3462:1 3468:1 3473:3 3483:1 3484:1 3486:1 3489:1 3502:1 3510:1 3519:1 3528:1 3538:2 3540:1 3541:2 3542:1 3545:2 3546:5 3550:1 3551:3 3552:1 3553:1 3554:6 3555:1 3556:1 3559:6 3560:1 3562:4 3564:2 3567:1 3571:1 3573:6 3575:3 3576:7 3580:1 3581:1 3590:2 3597:1 3601:2 3605:1 3606:2 3608:1 3610:1 3616:1 3622:1 3637:1 3642:1 3644:1 3652:2 3656:1 3661:3 3673:2 3686:2 3688:1 3694:1 3698:1 3701:1 3703:3 3705:1 3706:3 3711:1 3714:1 3726:1 3731:1 3738:1 3740:1 3746:1 3752:3 3759:1 3761:2 3786:2 3792:1 3812:1 3819:1 3823:1 3827:2 3853:1 3854:3 3860:5 3865:1 3871:1 3875:1 3892:4 3893:2 3906:4 3936:1 3946:1 3951:1 3952:1 3965:1 3973:1 3974:1 3980:1 3990:1 4004:1 4006:1 4010:1 4027:6 4030:2 4034:2 4038:1 4050:1 4052:2 4054:3 4058:3 4059:1 4072:2 4082:1 4083:2 4085:1 4089:2 4104:1 4105:1 4109:1 4117:2 4127:1 4134:1 4146:1 4148:1 4150:1 4154:1 4165:1 4174:1 4182:2 4183:3 4184:2 4197:1 4208:4 4219:1 4226:4 4242:1 4243:2 4244:1 4248:2 4255:1 4257:1 4260:3 4262:12 4281:1 4283:1 4290:1 4295:1 4296:2 4307:1 4311:1 4317:1 4318:1 4323:1 4332:2 4335:3 4338:4 4342:1 4343:2 4350:1 4358:1 4379:2 4380:1 4386:1 4393:2 4398:3 4413:1 4414:1 4417:5 4424:1 4427:4 4473:3 4480:1 4481:2 4488:2 4490:2 4491:1 4502:1 4511:4 4512:1 4513:14 4515:2 4516:1 4526:1 4533:1 4540:2 4545:1 4560:2 4561:16 4577:7 4589:1 4607:1 4616:2 4631:1 4632:1 4650:32 4658:2 4671:2 4675:1 4699:1 4701:1 4702:1 4705:2 4714:3 4720:1 4730:1 4735:2 4741:2 4746:1 4752:1 4760:1 4766:1 4769:2 4778:1 4781:1 4786:1 4803:1 4807:2 4808:1 4812:1 4813:1 4818:2 4837:4 4844:4 4845:2 4860:2 4900:2 4902:1 4932:3 4937:1 4955:3 4966:1 4968:1 4970:1 4984:1 4990:1 5022:1 5034:3 5038:1 5047:1 5048:1 5058:2 5059:1 5060:1 5072:1 5084:4 5092:1 5097:2 5099:1 5112:1 5120:13 5124:1 5130:2 5132:1 5139:1 5144:3 5152:1 5159:1 5161:2 5170:1 5175:1 5183:1 5196:2 5199:1 5200:1 5204:2 5226:1 5227:4 5234:1 5236:1 5250:1 5253:7 5279:4 5286:1 5291:1 5297:2 5310:1 5341:1 5344:1 5348:1 5352:1 5353:4 5364:1 5365:1 5366:2 5383:5 5387:3 5388:1 5390:1 5398:3 5402:1 5405:1 5409:1 5428:1 5430:2 5432:1 5433:1 5439:3 5447:3 5454:1 5456:1 5459:2 5465:1 5466:1 5467:1 5480:5 5510:1 5516:1 5517:1 5521:3 5525:1 5540:1 5542:1 5543:1 5560:3 5564:1 5565:1 5601:1 5609:1 5619:1 5621:5 5623:2 5627:2 5631:2 5632:2 5633:1 5650:2 5659:1 5661:17 5667:1 5668:1 5677:1 5690:1 5701:1 5710:1 5724:1 5732:1 5748:4 5752:1 5762:1 5779:1 5780:1 5782:1 5783:1 5805:1 5807:1 5809:1 5816:4 5817:44 5820:2 5826:1 5831:2 5851:2 5853:1 5855:9 5858:1 5861:1 5869:1 5870:27 5871:1 5872:2 5873:2 5876:6 5883:1 5896:1 5898:2 5906:2 5919:3 5932:3 5934:4 5939:4 5947:1 5953:6 5957:2 5961:1 5963:2 5967:2 5970:1 5981:1 5994:4 6003:2 6005:3 6013:1 6014:2 6017:1 6018:1 6025:1 6049:1 6055:1 6059:2 6062:1 6065:1 6066:3 6077:2 6084:1 6090:2 6095:1 6101:4420 6102:1 6107:1 6117:1 6130:1 6131:1 6133:2 6138:1 6140:5 6149:2 6165:1 6179:1 6180:2 6183:1 6184:1 6193:1 6195:1 6198:2 6201:1 6205:1 6210:5 6220:1 6232:2 6233:5 6248:1 6253:1 6273:3 6279:2 6289:2 6300:1 6313:1 6320:1 6337:1 6346:1 6349:3 6375:1 6376:2 6379:1 6399:2 6401:1 6407:3 6417:1 6434:1 6448:6 6450:2 6458:1 6463:1 6471:2 6480:2 6484:2 6485:3 6493:1 6495:3 6496:1 6500:1 6532:1 6534:1 6547:1 6559:2 6576:1 6577:1 6580:1 6581:1 6584:1 6587:1 6590:1 6601:1 6640:1 6644:5 6650:1 6656:1 6666:2 6677:1 6681:2 6686:1 6692:1 6698:1 6702:1 6705:14 6715:2 6725:1 6741:1 6748:3 6750:1 6777:1 6782:1 6784:2 6787:1 6792:5 6798:1 6802:2 6817:2 6830:7 6840:1 6846:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6874:1 6880:1 6887:1 6888:1 6936:1 6951:1 6956:2 6957:1 6962:1 6964:1 6974:2 6975:1 6981:4 7006:2 7017:1 7049:1 7050:2 7057:2 7066:2 7080:1 7097:2 7104:1 7110:2 7124:1 7134:4 7137:1 7139:4 7153:1 7157:3 7163:1 7167:4 7171:1 7203:3 7204:1 7208:2 7213:1 7221:1 7233:1 7238:1 7256:1 7276:1 7305:1 7319:1 7320:1 7329:1 7337:2 7340:1 7348:2 7349:1 7361:1 7363:2 7376:2 7377:4 7383:2 7397:2 7405:1 7408:4 7415:1 7444:2 7448:1 7450:1 7452:5 7474:1 7476:18 7483:1 7488:1 7507:17 7508:2 7515:1 7516:1 7519:3 7520:1 7523:24 7529:1 7539:2 7555:2 7581:1 7582:6 7584:2 7585:1 7591:1 7607:1 7614:2 7618:1 7632:1 7635:1 7638:6 7649:1 7663:1 7670:4 7671:2 7680:1 7684:6 7686:2 7689:1 7693:3 7694:1 7696:4 7702:1 7719:2 7720:1 7722:1 7730:2 7732:4 7733:8 7734:1 7735:1 7736:2 7739:1 7740:3 7742:1 7750:24 7751:1 7753:1 7758:1 7762:2 7765:3 7773:2 7775:1 7782:1 7788:3 7794:1 7811:1 7814:2 7817:3 7823:3 7834:1 7856:2 7871:1 7883:1 7887:1 7893:2 7902:1 7922:2 7935:1 7948:1 7970:2 7995:1 8003:1 8034:1 8047:1 8052:1 8065:1 8089:1 8091:13 8096:3 8097:3 8107:1 8108:5 8119:1 8168:1 8170:2 8177:1 8187:1 8209:1 8222:2 8224:1 8225:24 8231:1 8234:7 8254:1 8262:1 8270:1 8298:2 8301:1 8313:1 8314:3 8317:1 8321:1 8325:1 8326:1 8347:1 8351:1 8356:1 8357:1 8361:2 8367:3 8372:2 8373:1 8385:2 8412:1 8433:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8469:1 8490:3 8491:1 8510:1 8520:2 8522:1 8525:3 8537:1 8544:1 8555:1 8558:1 8568:1 8569:1 8573:2 8578:1 8579:5 8581:1 8598:2 8599:1 8605:2 8609:1 8611:1 8618:2 8624:2 8634:2 8644:8 8673:1 8674:1 8679:1 8684:1 8692:1 8709:1 8713:2 8719:1 8723:1 8731:1 8746:4 8748:15 8755:1 8756:2 8757:1 8769:2 8771:3 8780:2 8789:1 8791:1 8796:1 8802:1 8803:2 8812:1 8828:1 8831:15 8834:1 8838:2 8856:1 8878:1 8889:1 8894:1 8900:5 8903:1 8930:1 8937:2 8948:1 8957:2 8968:1 8970:1 8973:1 8976:1 8980:1 8985:1 9008:1 9017:1 9018:1 9020:1 9024:1 9027:1 9029:1 9031:1 9043:1 9044:1 9048:1 9053:2 9065:1 9066:1 9069:1 9083:1 9089:5 9090:1 9091:2 9119:1 9123:1 9139:1 9158:2 9169:1 9180:3 9208:5 9215:1 9217:5 9218:1 9223:1 9227:1 9231:3 9232:1 9241:2 9253:1 9259:1 9280:1 9285:1 9292:1 9302:1 9310:1 9314:2 9348:1 9370:1 9374:1 9393:1 9400:4 9402:9 9413:1 9416:2 9419:2 9436:1 9445:1 9450:1 9452:1 9477:1 9497:3 9509:1 9514:1 9517:1 9523:2 9527:1 9528:2 9529:1 9536:1 9539:1 9541:1 9547:1 9573:1 9575:1 9578:2 9589:1 9598:5 9610:1 9611:1 9612:1 9617:2 9625:2 9626:2 9645:1 9647:1 9652:1 9666:1 9684:1 9687:3 9706:1 9707:3 9710:1 9719:2 9721:2 9725:1 9727:1 9732:1 9733:1 9740:1 9747:5 9749:1 9751:14 9754:1 9759:2 9761:1 9769:1 9770:3 9771:1 9772:1 9777:5 9778:1 9779:1 9791:3 9792:1 9797:2 9799:1 9800:5 9809:1 9812:1 9832:1 9848:5 9854:1 9866:1 9867:1 9901:6 9904:2 9905:2 9906:1 9908:1 9910:1 9912:2 9913:2 9917:2 9918:3 9919:5 9920:2 9923:1 9926:3 9928:1 9929:8 9930:1 9932:1 9933:4 9940:2 9948:1 9950:1 9967:2 9980:1 9986:2 9993:1 10018:8 10025:3 10027:1 10032:2 10036:1 10039:1 10046:1 10050:2 10062:1 10092:2 10095:1 10105:1 10125:1 10129:1 10130:1 10147:3 10150:1 10153:1 10158:1 10165:1 10173:1 10178:1 10182:4 10183:1 10193:1 10199:1 10201:1 10203:1 10207:2 10208:1 10210:1 10212:1 10220:1 10223:2 10224:1 10226:1 10232:1 10277:1 10282:1 10288:3 10289:1 10313:1 10350:1 10362:1 10373:1 10382:2 10386:4 10392:2 10410:1 10412:1 10420:1 10421:4 10424:2 10426:3 10442:5 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10509:1 10510:2 10515:1 10520:2 10536:3 10540:1 10542:1 10544:2 10552:1 10561:1 10562:1 10565:2 10566:1 10567:2 10576:1 10579:1 10580:1 10581:1 10582:1 10587:1 10590:2 10593:7 10597:3 10613:1 10617:1 10618:1 10623:1 10634:1 10648:1 10649:1 10662:1 10677:1 10690:1 10696:1 10699:1 10700:2 10704:2 10708:3 10714:2 10734:1 10736:1 10737:1 10742:3 10749:3 10751:2 10759:1 10762:1 10766:4 10768:18 10779:1 10780:3 10784:1 10793:2 10794:3 10799:1 10801:2 10805:1 10811:1 10817:5 10828:3 10837:1 10840:3 10842:1 10861:1 10866:1 10868:1 10870:5 10873:3 10881:1 10904:1 10910:1 10929:1 10936:2 10937:3 10939:1 10941:3 10944:1 10946:1 10949:1 10953:1 10956:1 10957:5 10962:2 10972:1 10974:1 10983:1 11004:1 11018:1 11042:1 11043:1 11049:4 11061:2 11067:1 11068:2 11073:3 11082:1 11085:3 11106:1 11109:2 11121:1 11151:1 11171:1 11184:2 11203:4 11210:2 11211:1 11212:12 11215:3 11220:2 11229:1 11230:2 11232:1 11234:1 11248:4 11249:2 11250:3 11251:2 11252:1 11254:1 11255:1 11259:1 11264:2 11269:2 11271:1 11272:2 11281:1 11283:1 11284:1 11303:1 11310:5 11311:2 11313:1 11316:2 11317:1 11320:3 11322:1 11325:1 11326:1 11331:1 11351:1 11356:2 11367:1 11396:1 11423:1 11442:2 11444:5 11446:1 11489:1 11497:1 11508:1 11515:1 11530:1 11543:1 11546:2 11549:1 11554:1 11562:1 11577:1 11583:1 11589:1 11593:4 11595:2 11599:1 11606:1 11609:1 11615:1 11631:1 11636:2 11644:1 11654:1 11666:5 11667:24 11670:2 11673:1 11701:1 11729:1 11733:2 11747:1 11749:1 11757:1 11767:1 11778:4 11780:1 11781:4 11797:1 11799:2 11802:2 11806:1 11811:1 11813:1 11819:1 11822:2 11834:2 11836:5 11847:1 11852:9 11863:1 11878:4 11906:2 11907:2 11916:2 11932:2 11933:1 11942:1 11949:2 11963:2 11968:1 11971:2 11977:1 11983:2 12004:1 12008:1 12009:1 12014:2 12015:1 12017:2 12027:1 12034:2 12035:1 12055:2 12059:1 12060:1 12065:5 12083:10 12101:1 12107:1 12115:4 12116:5 12117:4 12119:3 12136:1 12140:1 12141:4 12143:2 12144:1 12149:2 12154:1 12157:1 12163:1 12173:1 12191:1 12192:2 12198:1 12200:1 12202:50 12205:1 12206:1 12209:2 12215:1 12226:16 12229:28 12237:2 12244:1 12248:1 12255:1 12259:1 12264:1 12266:1 12288:1 12295:6 12296:1 12344:1 12364:1 12370:3 12378:1 12381:1 12383:1 12391:1 12392:2 12407:1 12420:1 12431:4 12439:2 12440:1 12454:1 12463:1 12469:1 12491:1 12506:1 12512:1 12515:4 12518:7 12523:1 12529:1 12543:1 12549:1 12551:1 12553:1 12556:1 12559:2 12566:15 12567:2 12584:1 12590:1 12592:1 12593:5 12603:2 12606:2 12618:1 12628:1 12630:1 12633:1 12653:2 12656:1 12666:1 12673:1 12682:3 12687:1 12691:1 12693:2 12696:1 12703:1 12709:1 12723:1 12731:1 12754:3 12767:1 12778:1 12783:5 12791:4 12795:1 12808:2 12814:8 12823:2 12830:1 12839:1 12850:1 12852:2 12853:1 12874:2 12879:1 12880:1 12887:2 12895:1 12904:1 12919:1 12921:1 12938:25 12944:1 12947:1 12955:1 12963:1 12966:1 12968:1 12970:1 12975:2 12976:1 12985:2 12986:1 13013:2 13015:1 13047:1 13053:1 13060:1 13064:1 13067:2 13070:1 13071:1 13084:2 13086:2 13097:1 13107:1 13109:1 13124:1 13129:2 13155:1 13175:1 13176:1 13177:6 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:2 13229:1 13239:1 13240:5 13247:3 13253:1 13267:2 13270:4 13279:1 13289:1 13293:2 13296:1 13298:2 13304:1 13309:1 13321:1 13324:2 13334:2 13346:1 13362:2 13363:2 13372:1 13379:1 13384:1 13386:1 13387:1 13392:2 13405:1 13412:2 13414:2 13417:4 13419:1 13421:1 13443:1 13451:1 13459:1 13471:2 13484:3 13489:1 13502:1 13505:4 13506:5 13514:1 13526:6 13529:1 13537:1 13542:1 13544:1 13547:1 13552:1 13553:4 13557:3 13562:1 13565:1 13572:1 13573:2 13577:1 13578:1 13579:3 13580:2 13581:2 13582:5 13587:1 13589:1 13593:2 13597:2 13599:2 13606:3 13609:2 13614:1 13619:2 13620:1 13632:1 13644:3 13646:1 13653:1 13661:2 13672:1 13674:1 13682:1 13683:1 13703:5 13711:1 13715:29 13719:1 13724:3 13728:2 13735:1 13747:2 13756:3 13781:1 13786:5 13826:5 13832:2 13846:1 13847:1 13850:2 13851:1 13852:1 13854:1 13855:2 13861:1 13874:1 13881:1 13883:1 13935:3 13941:1 13943:2 13944:1 13971:1 13972:1 13978:1 13981:1 13982:1 13984:1 13986:3 13995:1 13999:3 14004:2 14007:1 14009:1 14037:1 14041:1 14051:2 14061:1 14076:1 14082:1 14091:6 14093:2 14096:5 14099:1 14100:1 14101:4 14104:3 14108:1 14114:2 14134:3 14137:1 14139:5 14152:1 14155:1 14172:1 14176:2 14184:3 14193:2 14198:1 14219:1 14241:6 14260:2 14280:3 14281:1 14283:1 14290:1 14311:2 14312:2 14336:1 14337:1 14345:1 14360:1 14364:1 14381:1 14386:1 14391:1 14396:1 14416:1 14429:2 14439:1 14440:1 14457:3 14474:2 14475:4 14484:1 14488:2 14490:1 14492:2 14493:1 14512:1 14519:2 14529:1 14530:1 14531:5 14533:1 14548:1 14554:1 14555:1 14561:8 14586:2 14591:3 14595:1 14604:1 14605:1 14612:1 14622:1 14632:1 14641:1 14643:1 14646:2 14656:1 14658:1 14666:1 14673:3 14675:1 14694:1 14703:1 14704:1 14719:2 14720:1 14759:1 14767:1 14768:9 14775:1 14777:1 14781:1 14784:1 14794:1 14795:1 14802:1 14809:3 14836:2 14846:1 14849:1 14855:1 14870:1 14871:1 14872:2 14896:1 14900:1 14902:1 14904:1 14907:3 14913:2 14924:1 14926:2 14929:1 14933:1 14946:1 14953:1 14955:4 14970:1 14973:1 14975:2 14982:1 14986:2 15006:1 15016:1 15018:3 15038:1 15039:5 15060:1 15065:1 15071:1 15113:24 15114:1 15121:2 15137:1 15141:1 15143:1 15148:1 15151:1 15156:1 15161:3 15162:5 15164:1 15167:2 15189:6 15193:1 15204:1 15205:2 15206:1 15215:2 15217:3 15227:4 15233:1 15235:2 15239:1 15246:2 15252:1 15264:1 15265:1 15266:2 15280:2 15281:2 15283:1 15291:2 15295:3 15304:1 15310:1 15319:1 15324:1 15330:2 15337:14 15344:2 15348:1 15363:1 15367:1 15369:2 15370:1 15377:2 15401:1 15403:1 15408:1 15413:1 15435:1 15441:4 15444:5 15454:1 15459:3 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15482:1 15499:1 15500:1 15511:1 15516:1 15528:1 15541:1 15547:1 15552:1 15553:1 15559:1 15567:1 15577:3 15594:1 15597:2 15600:1 15601:3 15621:1 15622:2 15623:1 15643:1 15660:8 15661:1 15664:3 15671:1 15675:2 15678:4 15680:2 15682:1 15689:3 15693:1 15698:1 15708:3 15714:3 15718:1 15719:1 15723:1 15731:1 15732:2 15744:1 15750:1 15757:1 15759:2 15764:1 15766:4 15772:5 15774:1 15776:1 15786:1 15820:1 15822:1 15825:1 15829:3 15830:1 15840:4 15844:1 15852:2 15877:1 15878:2 15892:3 15898:1 15909:2 15932:5 15967:1 15971:1 15980:1 15981:3 15986:1 16005:1 16035:12 16037:1 16038:6 16046:1 16048:1 16050:1 16053:1 16066:1 16080:1 16096:1 16098:2 16099:1 16107:1 16109:1 16114:1 16133:6 16135:1 16160:1 16164:1 16172:2 16178:1 16189:1 16190:3 16197:1 16199:1 16208:2 16236:4 16246:1 16261:2 16269:4 16282:1 16287:2 16290:1 16297:4 16317:1 16322:1 16338:1 16341:1 16345:1 16354:1 16373:1 16393:2 16410:6 16414:1 16425:1 16428:1 16435:1 16438:4 16449:2 16460:1 16464:1 16468:1 16480:1 16505:3 16508:8 16511:1 16512:7 16522:1 16523:1 16527:1 16548:1 16556:1 16557:1 16571:1 16574:2 16588:3 16589:2 16593:2 16602:6 16607:1 16614:1 16615:6 16616:2 16629:1 16634:1 16636:4 16637:1 16638:6 16640:5 16643:1 16670:1 16674:4 16677:1 16702:1 16703:3 16728:1 16729:1 16735:1 16749:4 16759:1 16763:3 16774:2 16780:1 16782:8 16848:1 16862:1 16864:1 16865:1 16868:1 16869:2 16870:8 16872:3 16881:1 16888:1 16911:1 16930:3 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16967:1 16975:1 16990:1 16992:6 16993:1 17004:2 17008:1 17009:1 17020:1 17026:1 17033:4 17046:7 17048:2 17059:2 17080:1 17089:1 17099:2 17102:1 17106:1 17109:1 17128:2 17135:2 17151:1 17160:3 17162:1 17164:6 17175:1 17183:1 17185:1 17186:1 17187:8 17208:4 17211:7 17222:2 17231:3 17237:1 17240:1 17241:1 17255:1 17262:2 17274:1 17281:4 17283:2 17284:1 17311:2 17324:3 17336:1 17338:2 17343:1 17347:5 17367:2 17377:4 17384:1 17389:5 17395:1 17422:1 17424:1 17425:1 17437:4 17442:4 17451:1 17456:1 17457:1 17465:2 17469:1 17486:1 17501:2 17512:1 17528:1 17530:1 17534:1 17539:1 17540:1 17541:1 17543:1 17545:1 17546:5 17547:1 17568:1 17577:1 17596:2 17613:2 17618:1 17623:1 17632:1 17634:1 17667:1 17670:2 17681:1 17702:1 17707:4 17708:1 17709:4 17722:2 17725:1 17741:1 17744:1 17770:1 17785:1 17794:5 17811:1 17818:1 17821:2 17824:1 17829:1 17841:1 17851:3 17852:1 17853:6 17857:1 17859:2 17862:2 17865:3 17868:1 17881:1 17894:1 17906:1 17908:1 17922:2 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17983:2 17986:1 17995:2 18004:1 18011:1 18025:6 18031:3 18032:1 18036:1 18037:1 18047:1 18050:1 18057:1 18064:3 18078:1 18087:1 18090:5 18102:1 18104:3 18106:1 18123:1 18131:2 18133:3 18134:2 18138:2 18153:1 18170:1 18197:1 18205:3 18206:2 18209:4 18217:1 18230:4 18239:1 18240:10 18241:1 18257:1 18258:1 18261:1 18262:1 18265:1 18266:1 18267:1 18272:18 18275:1 18277:3 18278:1 18280:7 18281:1 18287:1 18292:1 18293:7 18303:1 18322:1 18326:1 18334:11 18345:1 18348:1 18368:2 18385:5 18391:2 18397:1 18399:2 18409:1 18411:1 18423:1 18446:1 18463:1 18470:1 18472:1 18482:1 18491:4 18509:3 18510:1 18513:1 18514:2 18525:1 18542:1 18547:2 18574:1 18576:1 18586:1 18587:1 18592:1 18623:1 18628:1 18632:2 18646:1 18656:2 18675:1 18679:3 18703:5 18705:2 18708:1 18713:1 18721:1 18722:2 18723:1 18724:4 18725:10 18729:2 18735:2 18739:2 18766:2 18792:2 18799:1 18801:1 18815:2 18833:1 18855:5 18856:1 18875:1 18883:4 18896:1 18900:1 18906:2 18922:1 18929:3 18937:1 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18969:1 18974:2 18975:1 18979:1 18980:1 18993:1 19004:4 19005:4 19007:24 19017:7 19031:1 19039:3 19040:2 19047:1 19052:2 19055:1 19066:3 19089:2 19092:2 19111:1 19126:1 19134:1 19140:2 19164:2 19195:1 19198:1 19207:1 19236:1 19240:3 19252:1 19260:9 19262:2 19271:1 19281:1 19282:1 19290:1 19298:1 19299:4 19306:2 19310:1 19312:2 19319:1 19342:1 19357:1 19361:3 19373:2 19380:1 19391:2 19397:4 19404:1 19418:1 19430:1 19439:1 19456:1 19476:2 19481:1 19492:1 19496:2 19498:2 19502:1 19512:2 19515:1 19529:2 19544:1 19565:1 19584:1 19595:2 19597:2 19603:1 19604:6 19626:1 19631:5 19636:1 19640:1 19647:10 19653:1 19658:2 19663:1 19672:1 19682:1 19697:2 19698:1 19707:1 19712:3 19727:1 19734:1 19749:1 19754:1 19765:1 19774:1 19776:1 19790:29 19791:1 19794:3 19796:1 19804:2 19807:1 19811:1 19820:1 19834:1 19835:1 19843:5 19845:1 19855:1 19873:2 19877:1 19880:1 19882:1 19936:6 19951:1 19952:1 19956:1 19959:1 19963:1 19969:1 19970:3 19974:3 19977:4 19978:2 19983:1 19985:1 20017:2 20021:1 20022:2 20023:4 20026:1 20032:2 20038:2 20041:2 20044:2 20046:1 20055:1 20056:1 20060:1 20062:3 20071:1 20075:2 20079:3 20080:3 20106:2 20125:1 20139:1 20148:1 20160:2 20190:1 20191:1 20197:2 20214:2 20217:1 20237:1 20250:2 20255:1 20256:1 20263:1 20270:2 20276:1 20284:1 20285:3 20291:1 20299:3 20311:1 20325:1 20351:2 20353:1 20378:2 20379:1 20392:1 20397:3 20398:2 20403:2 20413:1 20414:1 20420:1 20421:2 20424:1 20426:1 20438:4 20439:1 20473:1 20479:1 20502:1 20511:14 20520:1 20522:1 20536:1 20550:5 20553:1 20572:1 20573:1 20574:1 20587:1 20590:3 20591:1 20599:1 20638:4 20642:1 20648:1 20653:4 20656:1 20664:1 20669:1 20678:2 20681:2 20696:1 20703:3 20711:1 20724:2 20733:1 20740:1 20741:1 20742:1 20747:2 20754:1 20767:1 20770:4 20777:1 20793:2 20794:1 20802:2 20807:1 20811:1 20819:1 20823:1 20842:1 20852:1 20853:5 20859:2 20863:5 20904:1 20905:1 20915:3 20916:2 20918:1 20924:3 20931:1 20936:1 20940:1 20941:2 20944:8 20948:2 20955:1 20956:4 20961:1 20976:2 20987:3 21013:1 21014:3 21015:1 21018:1 21022:2 21029:4 21035:1 21040:3 21048:1 21061:1 21066:1 21074:3 21075:1 21077:1 21096:1 21099:7 21102:1 21104:1 21108:28 21109:2 21110:2 21113:3 21119:4 21121:1 21122:1 21125:1 21128:1 21131:1 21133:3 21143:1 21145:2 21146:1 21169:1 21171:13 21173:2 21192:1 21201:2 21205:1 21207:1 21209:1 21221:3 21222:1 21223:1 21224:1 21242:2 21243:6 21244:1 21247:1 21256:1 21262:1 21276:2 21292:3 21315:1 21320:1 21321:1 21324:2 21325:1 21329:2 21333:7 21338:1 21340:2 21353:1 21355:2 21361:1 21373:3 21374:2 21375:2 21376:1 21377:1 21381:1 21384:4 21391:7 21403:2 21406:5 21411:1 21413:2 21415:2 21441:1 21459:2 21460:3 21465:1 21470:2 21478:1 21482:1 21487:1 21509:1 21514:2 21528:1 21530:1 21535:1 21536:1 21537:2 21538:2 21539:1 21540:2 21543:2 21551:1 21570:1 21575:1 21576:1 21579:1 21580:1 21588:1 21597:1 21598:1 21603:1 21609:2 21611:1 21622:1 21634:2 21635:1 21639:1 21640:2 21641:1 21646:1 21647:3 21651:1 21668:1 21669:1 21703:2 21704:2 21711:8 21712:1 21721:2 21722:1 21729:1 21750:1 21761:1 21762:1 21773:1 21778:2 21779:1 21782:4 21786:2 21795:1 21803:1 21804:1 21808:1 21826:1 21831:2 21835:2 21837:1 21838:2 21843:1 21845:2 21866:1 21877:1 21880:2 21881:1 21889:5 21894:10 21899:1 21907:4 21912:1 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:3 21997:7 21998:3 22010:2 22017:3 22021:9 22024:2 22025:1 22034:1 22037:1 22048:2 22065:2 22067:3 22070:2 22071:3 22085:1 22090:1 22107:1 22108:2 22116:2 22119:1 22126:2 22135:1 22151:2 22156:1 22159:2 22160:1 22169:1 22173:3 22183:2 22185:1 22186:2 22190:1 22194:2 22200:1 22237:1 22255:3 22268:1 22269:2 22276:2 22277:1 22316:2 22325:1 22327:2 22332:1 22340:2 22341:1 22347:2 22349:5 22352:1 22360:5 22372:1 22384:2 22386:1 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22560:2 22584:3 22589:2 22599:1 22601:1 22602:1 22621:1 22629:1 22636:3 22648:2 22649:1 22651:4 22662:1 22666:1 22672:5 22674:1 22675:1 22686:1 22688:1 22690:1 22709:2 22717:1 22725:2 22726:1 22731:1 22765:1 22770:1 22783:2 22787:1 22794:1 22796:3 22812:1 22829:1 22840:2 22849:1 22851:1 22877:1 22880:2 22897:1 22901:3 22905:1 22907:1 22911:1 22915:1 22928:1 22936:2 22938:1 22943:1 22956:2 22964:1 22975:2 22977:1 22982:1 22983:1 22985:8 22988:1 22997:2 23003:5 23018:2 23034:2 23061:1 23068:3 23070:1 23076:2 23081:1 23114:1 23119:1 23141:1 23142:5 23160:2 23165:1 23188:4 23258:1 23263:1 23266:1 23274:1 23284:1 23286:5 23301:1 23318:1 23339:1 23345:1 23348:2 23359:1 23369:1 23370:1 23371:1 23376:1 23400:2 23425:1 23426:1 23444:1 23449:1 23466:2 23468:1 23496:4 23498:1 23504:3
16 1:2 3:1 5:1 7:1 25:1 26:2 33:1 51:3 64:2 67:1 73:1 82:1 87:1 108:1 110:2 111:1 114:1 119:4 126:1 138:1 140:1 148:1 154:1 161:1 163:1 164:5 165:2 171:1 176:1 193:1 204:1 224:1 229:2 262:1 263:1 279:1 280:3 282:1 285:1 286:1 294:1 296:1 317:4 334:1 335:1 337:1 344:2 347:1 384:1 394:2 402:3 403:2 406:1 413:3 416:4 427:1 428:1 435:1 440:4 446:1 463:5 464:1 467:1 470:1 471:2 488:1 507:6 511:2 514:1 516:1 518:1 522:1 527:1 539:4 564:1 568:1 578:1 582:1 584:1 596:1 606:3 607:1 608:3 613:1 626:4 640:3 643:2 646:2 652:2 657:1 660:1 665:1 690:1 710:1 719:1 732:2 735:3 739:2 744:2 759:1 765:1 767:1 774:1 786:1 791:1 803:2 805:1 825:1 831:1 835:1 838:1 840:1 841:1 846:1 854:2 855:2 860:4 863:1 866:1 886:11 896:1 898:1 902:8 904:1 910:1 914:5 947:2 960:1 962:2 967:2 988:1 993:3 996:4 999:1 1010:4 1032:1 1035:1 1044:1 1048:3 1049:1 1060:2 1061:1 1071:4 1078:1 1086:1 1098:1 1099:1 1102:1 1113:1 1114:1 1115:3 1117:1 1118:1 1120:1 1131:8 1133:1 1145:3 1146:1 1148:1 1157:1 1160:1 1162:1 1164:2 1172:1 1174:4 1178:1 1181:1 1188:1 1190:6 1191:1 1194:2 1195:8 1196:1 1203:2 1207:2 1208:1 1235:1 1236:6 1242:4 1255:2 1268:2 1288:1 1291:1 1292:1 1298:2 1316:1 1325:1 1348:1 1362:1 1363:1 1366:2 1371:2 1376:1 1380:1 1382:2 1383:2 1384:1 1391:2 1399:6 1405:4 1417:1 1419:1 1425:3 1428:1 1433:2 1450:2 1451:2 1467:2 1488:2 1494:3 1519:1 1526:2 1529:1 1537:2 1544:2 1559:1 1562:2 1564:2 1573:3 1574:1 1578:1 1579:3 1580:6 1581:2 1588:2 1596:1 1600:1 1609:1 1612:2 1616:3 1626:1 1628:8 1643:1 1644:1 1647:6 1648:2 1649:2 1671:1 1672:3 1673:1 1674:1 1679:2 1682:1 1683:2 1686:4 1714:1 1721:2 1737:2 1738:1 1752:24 1758:1 1789:1 1792:1 1794:1 1802:6 1803:1 1807:1 1809:2 1829:2 1841:2 1844:1 1857:70 1869:2 1890:3 1894:1 1897:2 1899:1 1928:1 1930:3 1935:1 1940:1 1943:1 1965:2 1968:1 1977:2 1978:1 1980:1 1981:1 1982:3 2001:1 2003:4 2021:1 2023:2 2027:1 2029:1 2030:1 2032:2 2034:2 2035:1 2036:2 2038:2 2042:1 2044:3 2045:6 2047:1 2053:3 2055:1 2057:2 2062:2 2063:3 2071:2 2087:1 2095:1 2103:1 2105:2 2109:5 2112:1 2123:7 2124:2 2125:1 2142:1 2145:1 2150:1 2156:2 2158:1 2161:1 2174:2 2177:1 2178:1 2182:4 2191:1 2192:1 2215:1 2231:1 2234:2 2236:1 2263:1 2288:1 2294:1 2297:1 2301:2 2310:5 2339:1 2343:3 2345:1 2354:1 2358:1 2363:1 2367:2 2368:2 2379:4 2384:1 2402:1 2414:6 2427:1 2435:1 2447:8 2450:2 2459:1 2462:1 2469:2 2479:2 2481:1 2483:4 2484:1 2494:1 2499:1 2505:1 2512:5 2527:1 2533:1 2547:1 2549:1 2554:10 2562:1 2573:1 2581:3 2583:2 2584:2 2585:2 2591:1 2598:2 2607:1 2609:1 2625:1 2628:1 2632:3 2639:2 2642:1 2643:1 2653:1 2658:5 2661:1 2667:5 2671:2 2673:1 2683:1 2685:2 2688:1 2695:1 2701:2 2702:1 2705:5 2708:3 2716:1 2718:1 2740:1 2746:2 2749:2 2763:1 2764:3 2773:5 2774:1 2778:1 2779:1 2781:1 2793:2 2795:1 2797:1 2798:1 2801:1 2810:4 2814:2 2816:3 2819:1 2828:5 2829:1 2840:3 2850:1 2851:1 2860:3 2870:1 2878:1 2892:1 2895:3 2896:1 2899:2 2901:1 2902:1 2904:1 2912:1 2914:1 2921:1 2926:1 2927:1 2936:1 2941:2 2942:2 2952:1 2954:3 2964:1 2966:13 2970:1 2979:1 2981:1 2986:1 2987:1 2989:1 2990:1 2995:2 3002:1 3004:4 3012:1 3014:1 3017:2 3023:1 3027:1 3033:2 3035:4 3039:1 3043:1 3046:1 3048:2 3052:1 3065:1 3066:4 3070:2 3074:1 3084:1 3096:1 3098:3 3103:1 3136:1 3141:1 3153:1 3156:1 3161:1 3168:2 3169:2 3170:2 3172:2 3177:3 3178:1 3186:2 3196:1 3218:3 3219:1 3221:1 3223:5 3229:2 3234:1 3237:3 3240:1 3242:2 3255:1 3260:1 3264:4 3266:1 3268:1 3272:2 3273:1 3274:1 3293:1 3302:1 3306:1 3311:1 3314:2 3316:2 3343:2 3345:4 3346:2 3352:2 3359:1 3382:2 3396:1 3403:1 3408:1 3409:3 3421:1 3422:1 3437:1 3452:1 3462:1 3464:1 3468:1 3473:3 3483:1 3484:1 3486:1 3489:1 3502:1 3510:1 3519:1 3528:1 3538:2 3540:1 3541:2 3542:1 3545:2 3546:5 3550:1 3551:3 3552:1 3553:1 3554:6 3555:1 3556:1 3559:6 3560:1 3562:4 3564:2 3567:1 3571:1 3573:6 3575:3 3576:8 3580:1 3581:1 3590:2 3597:1 3601:2 3605:1 3606:2 3608:1 3610:1 3616:1 3622:1 3637:1 3642:1 3644:1 3652:2 3656:1 3661:3 3666:1 3673:2 3685:1 3686:2 3688:1 3691:1 3694:1 3698:1 3701:1 3703:3 3704:1 3705:1 3706:3 3711:1 3714:1 3726:1 3731:1 3738:1 3740:1 3746:1 3752:3 3759:1 3761:2 3786:2 3792:1 3812:1 3819:1 3823:1 3827:2 3853:1 3854:3 3860:6 3865:2 3871:1 3875:1 3892:4 3893:2 3906:4 3936:1 3946:1 3951:1 3952:1 3965:1 3973:1 3974:1 3980:1 3990:1 4004:1 4006:1 4010:1 4027:7 4030:2 4033:1 4034:2 4038:1 4039:1 4050:1 4052:2 4054:3 4058:3 4059:1 4072:2 4082:1 4083:2 4085:1 4089:2 4104:1 4105:1 4109:1 4117:2 4127:1 4134:1 4146:1 4148:1 4150:1 4154:1 4165:1 4174:1 4182:2 4183:3 4184:2 4197:1 4208:4 4219:1 4226:5 4242:1 4243:2 4244:1 4248:2 4255:1 4257:1 4260:3 4262:12 4281:1 4283:1 4290:1 4295:1 4296:3 4307:1 4311:1 4317:1 4318:1 4323:1 4332:2 4335:3 4338:4 4342:1 4343:2 4350:1 4357:1 4358:1 4379:2 4380:1 4381:1 4386:1 4393:2 4398:3 4413:1 4414:1 4417:5 4424:1 4427:4 4473:3 4480:1 4481:2 4488:2 4490:2 4491:1 4502:1 4511:4 4512:1 4513:14 4514:1 4515:2 4516:1 4526:1 4533:1 4534:1 4540:2 4545:1 4560:2 4561:16 4576:1 4577:7 4589:1 4607:1 4616:2 4631:1 4632:1 4650:32 4658:2 4666:1 4671:2 4675:1 4699:1 4701:1 4702:1 4705:2 4714:3 4720:1 4730:1 4735:2 4741:2 4746:1 4752:1 4760:1 4766:1 4769:2 4778:1 4781:1 4786:1 4803:1 4807:2 4808:1 4812:1 4813:1 4818:2 4837:4 4844:4 4845:2 4860:2 4900:2 4902:1 4932:3 4937:1 4955:3 4966:1 4968:1 4970:1 4984:1 4990:1 5022:1 5034:3 5038:2 5047:1 5048:1 5058:2 5059:1 5060:1 5072:1 5084:4 5092:1 5097:2 5099:1 5112:1 5120:13 5124:1 5130:2 5132:1 5139:1 5144:3 5152:1 5159:1 5161:2 5170:1 5175:1 5183:1 5196:2 5199:1 5200:1 5204:2 5220:1 5226:1 5227:4 5234:1 5236:1 5250:1 5253:7 5279:4 5286:1 5291:1 5297:2 5310:1 5330:1 5341:1 5344:1 5348:1 5352:1 5353:4 5364:1 5365:1 5366:2 5383:5 5387:3 5388:1 5390:1 5398:3 5402:1 5405:1 5409:1 5428:1 5430:2 5432:1 5433:1 5439:3 5447:3 5454:1 5456:1 5459:2 5465:1 5466:1 5467:1 5480:5 5510:1 5516:1 5517:1 5521:3 5525:1 5540:1 5542:1 5543:1 5560:3 5564:1 5565:1 5572:1 5601:1 5609:1 5619:1 5621:5 5623:2 5627:2 5631:2 5632:2 5633:1 5650:2 5659:1 5661:18 5667:1 5668:1 5677:1 5690:3 5701:1 5710:1 5724:1 5732:1 5748:4 5752:1 5762:1 5779:1 5780:1 5782:1 5783:1 5805:1 5807:1 5808:1 5809:1 5816:4 5817:44 5820:2 5826:1 5831:2 5847:1 5851:2 5853:1 5855:9 5858:1 5861:1 5869:1 5870:27 5871:1 5872:2 5873:2 5876:6 5883:1 5896:1 5898:2 5906:2 5919:4 5923:1 5932:3 5934:4 5939:4 5947:1 5953:7 5957:2 5961:1 5963:2 5967:2 5970:1 5981:1 5994:4 6003:2 6005:3 6013:1 6014:2 6017:1 6018:1 6025:1 6029:2 6049:1 6055:1 6059:2 6062:1 6065:1 6066:3 6077:3 6084:1 6090:2 6095:1 6101:4574 6102:1 6107:1 6117:1 6130:1 6131:1 6133:2 6138:1 6140:5 6149:2 6165:1 6179:1 6180:2 6183:1 6184:1 6193:1 6195:2 6198:2 6201:1 6205:1 6210:5 6220:1 6232:2 6233:5 6248:1 6253:1 6273:3 6279:2 6289:2 6300:1 6313:1 6320:1 6337:1 6346:1 6349:3 6350:1 6375:1 6376:2 6379:1 6399:2 6401:1 6407:3 6417:1 6434:1 6448:6 6450:2 6458:1 6463:1 6471:2 6480:2 6484:2 6485:3 6493:1 6495:3 6496:1 6500:1 6501:1 6532:1 6534:1 6547:1 6559:2 6576:1 6577:1 6580:1 6581:1 6584:1 6587:1 6590:1 6601:1 6640:1 6644:5 6650:1 6656:1 6666:2 6677:1 6681:2 6686:1 6692:1 6698:1 6702:1 6705:14 6715:2 6725:1 6737:1 6741:1 6748:3 6750:1 6777:1 6782:1 6784:3 6787:1 6792:5 6798:1 6802:2 6817:2 6830:7 6840:1 6846:1 6855:1 6863:1 6865:1 6867:1 6871:1 6872:1 6874:1 6880:1 6884:1 6887:1 6888:1 6936:1 6951:1 6956:2 6957:1 6962:1 6964:1 6974:2 6975:1 6981:4 7006:2 7017:1 7049:1 7050:2 7057:2 7064:1 7066:3 7080:1 7093:1 7096:1 7097:2 7104:1 7110:2 7124:1 7134:4 7137:1 7139:5 7153:1 7157:4 7163:1 7167:4 7171:1 7203:3 7204:1 7208:2 7213:1 7221:1 7233:1 7238:1 7256:1 7276:1 7305:1 7319:1 7320:1 7329:1 7337:2 7340:1 7348:2 7349:1 7361:1 7363:2 7376:2 7377:4 7383:2 7397:2 7405:1 7408:4 7415:1 7444:2 7448:1 7450:1 7452:5 7453:1 7474:1 7476:19 7483:1 7488:1 7507:17 7508:3 7515:1 7516:1 7519:3 7520:1 7523:25 7529:1 7539:2 7555:2 7581:1 7582:6 7584:2 7585:1 7591:1 7607:1 7614:2 7618:1 7632:1 7635:1 7638:6 7649:1 7663:1 7670:4 7671:3 7680:1 7684:6 7686:2 7689:1 7693:4 7694:1 7696:5 7702:1 7719:2 7720:1 7722:1 7730:2 7732:4 7733:8 7734:1 7735:1 7736:2 7739:1 7740:3 7742:1 7750:24 7751:1 7753:1 7758:1 7762:2 7765:3 7773:2 7775:1 7782:2 7788:3 7794:1 7801:1 7811:1 7814:2 7817:3 7823:3 7834:1 7856:2 7871:1 7883:1 7887:1 7893:2 7902:1 7922:2 7935:1 7948:1 7970:2 7995:1 8003:1 8034:1 8047:1 8052:1 8065:1 8089:1 8091:13 8096:3 8097:3 8106:1 8107:1 8108:5 8119:1 8168:2 8170:2 8177:1 8187:1 8209:1 8222:2 8224:1 8225:24 8231:1 8234:8 8254:1 8262:1 8270:1 8298:2 8301:1 8313:1 8314:3 8317:1 8321:1 8325:1 8326:1 8347:1 8351:1 8356:1 8357:1 8361:2 8367:3 8372:2 8373:1 8385:2 8412:1 8433:1 8435:1 8437:1 8453:4 8460:1 8464:1 8467:1 8469:1 8490:3 8491:1 8510:1 8520:2 8522:1 8525:3 8537:1 8544:1 8555:1 8558:1 8568:1 8569:1 8573:2 8578:1 8579:5 8581:1 8598:2 8599:1 8605:2 8609:1 8611:1 8618:2 8624:2 8634:2 8641:1 8644:8 8673:1 8674:1 8679:1 8684:1 8692:1 8709:1 8713:2 8719:1 8723:1 8731:1 8746:4 8748:15 8755:1 8756:2 8757:1 8769:2 8771:3 8780:2 8789:1 8791:1 8796:1 8802:1 8803:2 8812:1 8828:1 8831:15 8834:1 8838:2 8856:1 8878:1 8889:1 8894:1 8900:5 8903:1 8930:1 8937:2 8948:2 8957:2 8961:1 8968:1 8970:1 8973:1 8976:1 8980:1 8985:1 9008:1 9017:1 9018:1 9020:1 9024:1 9027:1 9029:1 9031:1 9043:2 9044:1 9048:1 9053:2 9065:1 9066:1 9069:1 9077:1 9083:1 9089:5 9090:1 9091:2 9119:1 9123:1 9139:1 9158:2 9169:1 9180:3 9208:5 9215:1 9217:5 9218:1 9223:1 9227:1 9231:3 9232:1 9241:2 9253:1 9259:1 9280:1 9285:1 9292:1 9302:1 9310:1 9314:2 9348:1 9358:1 9370:1 9374:2 9393:1 9400:5 9402:10 9413:1 9416:2 9419:2 9436:1 9445:1 9450:1 9452:1 9477:1 9497:3 9509:1 9514:1 9517:1 9523:2 9527:1 9528:2 9529:1 9536:1 9539:1 9541:1 9547:1 9573:1 9575:1 9578:2 9589:1 9598:5 9610:1 9611:1 9612:1 9617:2 9618:1 9625:2 9626:2 9645:1 9647:1 9652:1 9666:1 9684:1 9687:4 9697:1 9706:1 9707:3 9710:1 9719:2 9721:2 9725:1 9727:1 9732:2 9733:1 9740:1 9747:6 9749:1 9751:14 9754:1 9759:2 9761:1 9762:2 9769:1 9770:3 9771:1 9772:1 9777:5 9778:1 9779:1 9791:3 9792:1 9797:3 9799:1 9800:5 9809:1 9812:1 9832:1 9848:5 9854:1 9866:1 9867:1 9875:1 9901:7 9904:2 9905:2 9906:1 9908:1 9910:1 9912:3 9913:2 9917:2 9918:3 9919:5 9920:2 9923:1 9926:3 9928:1 9929:8 9930:1 9932:1 9933:4 9940:2 9948:1 9950:1 9967:2 9980:1 9986:2 9993:1 10018:10 10025:3 10027:1 10032:2 10036:1 10039:1 10041:1 10046:1 10050:2 10062:1 10092:2 10095:1 10105:1 10122:1 10125:1 10129:1 10130:1 10139:1 10147:3 10150:1 10151:1 10153:1 10158:1 10165:1 10167:1 10173:1 10178:1 10182:4 10183:1 10193:1 10199:1 10201:1 10203:1 10207:2 10208:1 10210:1 10212:1 10220:1 10223:2 10224:1 10226:1 10232:1 10277:1 10282:1 10288:3 10289:1 10313:1 10350:1 10362:1 10373:1 10382:2 10386:4 10392:2 10410:1 10412:1 10420:1 10421:4 10424:2 10426:4 10442:5 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10509:1 10510:2 10515:1 10520:2 10524:1 10536:3 10540:1 10542:1 10544:2 10552:1 10561:1 10562:1 10565:2 10566:1 10567:2 10576:1 10579:1 10580:1 10581:1 10582:1 10587:1 10590:2 10592:1 10593:8 10597:3 10613:1 10617:1 10618:1 10623:1 10634:1 10648:1 10649:1 10662:1 10677:1 10690:1 10696:1 10699:1 10700:2 10704:2 10708:3 10714:2 10734:1 10736:1 10737:1 10742:3 10749:3 10751:2 10759:1 10762:1 10766:4 10768:19 10779:1 10780:3 10784:1 10793:2 10794:3 10799:1 10801:2 10805:1 10811:1 10817:5 10828:3 10837:1 10840:3 10842:1 10861:1 10866:1 10868:1 10870:5 10873:3 10881:1 10904:1 10910:1 10929:1 10936:2 10937:3 10939:1 10941:3 10944:1 10946:1 10949:1 10953:1 10956:1 10957:5 10962:2 10972:1 10974:1 10983:1 11004:1 11012:1 11018:1 11042:1 11043:1 11049:4 11061:2 11067:1 11068:2 11073:3 11082:1 11085:3 11106:1 11109:2 11121:1 11151:1 11171:1 11177:1 11184:2 11203:4 11210:2 11211:1 11212:12 11215:3 11220:2 11229:1 11230:2 11232:1 11234:1 11248:4 11249:2 11250:3 11251:2 11252:1 11254:1 11255:1 11259:1 11264:2 11269:2 11270:1 11271:1 11272:2 11281:1 11283:1 11284:1 11303:1 11310:5 11311:2 11313:1 11316:2 11317:1 11320:3 11322:1 11325:1 11326:1 11331:1 11350:1 11351:1 11356:2 11367:1 11396:1 11423:1 11442:2 11444:5 11446:1 11489:1 11497:1 11508:1 11515:1 11530:1 11540:1 11543:1 11546:2 11547:1 11549:1 11554:1 11562:1 11577:1 11583:1 11589:1 11593:4 11595:2 11599:1 11606:1 11609:1 11615:1 11631:1 11636:2 11644:1 11654:1 11666:5 11667:24 11670:2 11673:1 11691:1 11701:1 11729:1 11733:2 11747:1 11749:1 11757:1 11767:1 11778:4 11780:1 11781:4 11797:1 11799:2 11802:2 11806:1 11811:1 11813:1 11819:1 11822:2 11834:2 11836:5 11844:1 11847:1 11852:9 11863:1 11878:4 11898:1 11906:2 11907:2 11916:2 11932:2 11933:1 11942:1 11949:2 11963:2 11968:1 11971:2 11977:1 11983:2 12004:1 12008:1 12009:1 12014:2 12015:2 12017:2 12027:1 12034:2 12035:1 12055:2 12057:1 12059:1 12060:1 12065:5 12083:12 12101:1 12107:1 12115:4 12116:6 12117:4 12119:3 12136:1 12140:1 12141:4 12143:2 12144:1 12149:2 12154:1 12157:1 12163:1 12173:1 12191:1 12192:2 12198:1 12200:1 12202:51 12205:1 12206:1 12209:2 12215:1 12226:16 12228:1 12229:28 12237:2 12243:1 12244:1 12248:1 12255:1 12259:1 12264:1 12266:1 12288:1 12295:7 12296:1 12344:1 12345:1 12355:1 12356:1 12364:1 12370:3 12378:1 12381:1 12383:1 12391:1 12392:2 12407:1 12420:1 12431:4 12439:2 12440:1 12454:1 12463:1 12469:1 12491:1 12506:1 12512:1 12515:4 12518:7 12523:1 12529:1 12543:1 12549:1 12551:1 12553:1 12556:1 12559:2 12566:15 12567:2 12584:1 12590:1 12592:1 12593:5 12603:2 12606:2 12609:1 12618:1 12628:1 12630:1 12633:1 12653:2 12656:1 12666:1 12673:1 12682:3 12687:1 12691:1 12693:2 12696:1 12703:1 12709:1 12723:1 12731:1 12754:3 12767:1 12778:1 12783:5 12791:4 12795:1 12808:2 12814:8 12823:3 12830:1 12839:1 12850:1 12852:2 12853:1 12874:2 12879:1 12880:1 12887:2 12895:1 12904:1 12919:1 12921:1 12938:25 12944:1 12947:1 12955:1 12963:1 12966:1 12968:1 12970:1 12975:2 12976:1 12985:2 12986:1 12990:1 12998:1 13013:2 13015:1 13027:1 13047:1 13053:1 13060:1 13064:1 13067:2 13070:1 13071:1 13084:2 13086:2 13088:1 13097:1 13107:1 13109:1 13124:1 13129:2 13155:1 13175:1 13176:1 13177:7 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:2 13229:1 13239:1 13240:5 13247:3 13253:1 13267:2 13270:4 13279:1 13289:1 13293:2 13296:1 13298:2 13304:1 13309:1 13315:1 13321:1 13324:2 13334:2 13346:1 13362:2 13363:2 13372:1 13379:1 13384:1 13386:1 13387:1 13392:2 13405:1 13412:2 13414:2 13415:1 13417:4 13419:1 13421:1 13443:1 13451:1 13459:1 13471:2 13484:3 13489:1 13502:1 13505:4 13506:5 13514:1 13526:6 13529:1 13537:1 13542:1 13544:1 13547:1 13552:1 13553:4 13557:3 13562:1 13565:1 13572:1 13573:2 13577:1 13578:1 13579:3 13580:2 13581:2 13582:5 13587:2 13589:1 13593:2 13597:2 13599:2 13606:3 13609:2 13614:1 13619:3 13620:1 13632:1 13644:3 13646:1 13653:1 13661:2 13672:1 13674:1 13682:1 13683:1 13686:1 13703:6 13711:1 13715:29 13719:1 13724:5 13728:2 13735:1 13747:2 13756:3 13781:1 13786:5 13802:1 13826:6 13832:2 13846:1 13847:1 13850:2 13851:1 13852:1 13854:1 13855:2 13861:1 13874:1 13881:1 13883:1 13911:1 13919:1 13935:3 13941:1 13943:2 13944:1 13971:1 13972:1 13978:1 13981:1 13982:1 13984:1 13986:3 13995:1 13999:3 14002:1 14004:2 14007:1 14009:1 14037:1 14041:1 14051:2 14061:1 14076:2 14082:1 14091:6 14093:2 14096:5 14099:1 14100:1 14101:4 14104:3 14108:1 14114:2 14134:3 14137:1 14139:5 14152:1 14155:1 14172:1 14176:2 14184:3 14193:2 14198:1 14219:1 14241:6 14260:2 14280:3 14281:1 14283:1 14290:1 14311:2 14312:2 14336:1 14337:1 14345:1 14360:1 14364:1 14381:1 14386:1 14391:1 14396:1 14402:1 14416:1 14429:3 14439:1 14440:1 14457:3 14474:2 14475:4 14484:1 14488:2 14490:1 14492:2 14493:1 14512:1 14519:2 14529:1 14530:1 14531:5 14533:1 14548:1 14554:1 14555:1 14561:8 14565:1 14586:2 14591:3 14595:1 14604:1 14605:1 14612:1 14622:1 14632:1 14641:1 14643:1 14646:2 14656:1 14658:1 14666:1 14673:3 14675:1 14694:1 14703:1 14704:1 14719:2 14720:1 14759:1 14767:1 14768:10 14775:1 14777:1 14781:1 14784:1 14794:1 14795:1 14802:1 14809:3 14836:2 14846:1 14849:1 14855:1 14870:1 14871:1 14872:2 14896:1 14900:1 14902:1 14904:1 14907:3 14913:2 14924:1 14926:2 14929:1 14933:1 14946:1 14953:1 14955:4 14970:1 14973:1 14975:2 14982:1 14986:2 15006:1 15016:1 15018:3 15038:1 15039:5 15060:1 15065:1 15071:1 15099:1 15113:24 15114:1 15121:2 15137:1 15141:1 15143:1 15148:1 15151:1 15156:1 15161:3 15162:5 15164:1 15167:2 15189:6 15193:1 15204:1 15205:2 15206:1 15215:2 15217:3 15227:4 15233:1 15235:2 15239:1 15246:2 15252:1 15257:1 15264:1 15265:1 15266:2 15280:2 15281:2 15283:1 15291:2 15295:3 15304:1 15310:1 15319:1 15324:1 15330:2 15337:14 15344:2 15348:1 15363:1 15367:1 15369:2 15370:1 15377:2 15401:1 15403:1 15408:1 15413:1 15435:1 15441:4 15444:5 15454:1 15459:3 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15482:1 15499:1 15500:1 15511:1 15516:1 15528:1 15541:1 15547:1 15549:1 15552:1 15553:1 15559:1 15567:1 15568:1 15577:3 15594:1 15597:2 15600:1 15601:3 15621:1 15622:2 15623:1 15643:1 15660:8 15661:2 15664:3 15671:1 15675:2 15678:4 15680:2 15682:1 15689:3 15693:1 15698:1 15708:3 15714:3 15718:1 15719:1 15723:1 15731:1 15732:2 15744:1 15750:1 15757:1 15759:2 15764:1 15766:4 15772:5 15774:1 15776:1 15786:1 15820:1 15822:1 15825:1 15829:3 15830:1 15840:4 15844:1 15852:2 15877:1 15878:2 15892:3 15898:1 15909:2 15932:5 15967:1 15971:1 15980:1 15981:3 15986:1 16005:1 16035:12 16037:1 16038:6 16046:1 16048:1 16050:1 16053:1 16066:1 16080:1 16096:1 16098:2 16099:1 16107:1 16109:1 16114:1 16133:7 16135:1 16160:1 16164:1 16172:2 16178:1 16189:1 16190:3 16197:1 16199:1 16208:2 16229:1 16236:4 16245:1 16246:1 16261:2 16269:4 16282:1 16287:2 16290:1 16297:5 16317:1 16322:1 16338:1 16341:1 16345:1 16354:2 16373:1 16393:2 16410:6 16414:1 16425:1 16428:1 16435:1 16438:4 16449:2 16460:1 16464:1 16468:1 16480:1 16505:3 16508:9 16511:1 16512:7 16522:1 16523:1 16527:1 16548:1 16556:1 16557:1 16569:1 16571:1 16574:2 16588:3 16589:3 16593:2 16602:7 16607:1 16614:1 16615:6 16616:2 16625:1 16629:1 16634:1 16636:4 16637:1 16638:6 16640:5 16643:1 16663:1 16670:1 16674:4 16677:1 16702:1 16703:3 16710:1 16728:1 16729:1 16735:1 16749:4 16759:1 16763:3 16774:2 16780:1 16782:8 16838:1 16848:1 16862:1 16864:1 16865:1 16868:1 16869:3 16870:8 16872:3 16881:1 16888:1 16911:1 16930:4 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16967:1 16975:2 16990:1 16992:6 16993:1 17004:2 17008:2 17009:1 17020:1 17026:1 17033:4 17046:7 17048:2 17059:2 17080:1 17088:1 17089:1 17099:2 17102:1 17106:1 17109:1 17128:2 17135:2 17151:1 17160:3 17162:1 17164:6 17175:1 17183:2 17185:2 17186:1 17187:8 17208:4 17211:7 17222:2 17231:4 17237:1 17240:1 17241:1 17255:1 17262:2 17274:1 17281:4 17283:2 17284:1 17302:1 17311:2 17324:4 17336:1 17338:2 17343:1 17347:5 17367:2 17377:4 17384:1 17389:5 17395:1 17422:1 17424:1 17425:1 17437:4 17442:4 17451:1 17456:1 17457:1 17464:1 17465:2 17469:1 17486:2 17501:2 17512:1 17528:1 17530:1 17534:1 17539:1 17540:1 17541:1 17543:1 17545:1 17546:5 17547:1 17568:1 17577:1 17596:2 17613:2 17618:1 17623:1 17632:1 17634:1 17637:1 17667:1 17670:2 17681:1 17702:1 17707:4 17708:1 17709:4 17722:2 17725:1 17741:1 17744:1 17770:1 17785:1 17794:5 17811:1 17818:1 17821:2 17824:1 17829:1 17841:1 17851:3 17852:1 17853:6 17857:1 17859:3 17862:2 17865:3 17868:1 17881:1 17894:1 17906:1 17908:1 17922:3 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17968:1 17983:2 17986:1 17995:2 18004:1 18011:1 18025:6 18031:3 18032:1 18036:1 18037:1 18042:1 18044:1 18047:1 18050:1 18057:1 18064:3 18078:1 18087:1 18090:5 18102:1 18104:4 18106:1 18123:1 18131:2 18133:3 18134:2 18138:2 18150:1 18153:1 18170:1 18197:1 18205:3 18206:2 18209:4 18217:1 18230:4 18239:1 18240:10 18241:1 18257:1 18258:1 18261:1 18262:1 18265:1 18266:1 18267:1 18272:19 18275:1 18277:3 18278:1 18280:7 18281:1 18287:1 18292:1 18293:7 18303:1 18322:1 18326:1 18334:11 18341:1 18345:1 18348:1 18368:2 18385:5 18391:2 18397:1 18399:2 18409:1 18411:1 18423:1 18446:1 18463:1 18470:1 18472:1 18482:1 18491:4 18509:5 18510:1 18513:1 18514:3 18525:1 18542:1 18547:2 18574:1 18576:1 18586:1 18587:1 18592:1 18623:1 18628:1 18632:3 18646:1 18656:2 18675:1 18679:3 18703:5 18705:2 18708:1 18710:1 18713:1 18721:1 18722:2 18723:1 18724:4 18725:10 18729:2 18735:2 18739:2 18766:2 18792:3 18799:1 18801:1 18815:2 18833:1 18855:5 18856:1 18868:1 18875:1 18883:4 18896:1 18900:1 18906:3 18922:1 18929:4 18937:1 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18969:1 18974:2 18975:1 18979:1 18980:1 18993:1 19004:4 19005:4 19007:24 19017:8 19031:1 19039:3 19040:2 19047:1 19052:2 19055:1 19066:3 19089:3 19092:2 19094:1 19111:1 19126:1 19134:1 19140:2 19164:2 19195:1 19198:1 19207:1 19236:1 19240:3 19252:1 19260:9 19262:2 19271:1 19281:1 19282:1 19290:1 19298:1 19299:4 19306:2 19310:1 19312:2 19319:1 19342:1 19357:1 19361:3 19364:1 19373:2 19380:1 19391:2 19397:4 19404:1 19418:1 19430:1 19431:1 19439:1 19456:1 19476:2 19481:1 19482:1 19492:1 19496:2 19498:2 19502:1 19512:4 19515:1 19529:2 19544:1 19565:1 19584:1 19595:2 19597:2 19603:1 19604:6 19626:1 19631:5 19636:1 19640:1 19647:10 19653:1 19658:2 19663:1 19672:1 19682:1 19697:2 19698:1 19707:1 19712:3 19727:1 19734:1 19749:1 19754:1 19765:1 19774:1 19776:1 19790:29 19791:1 19794:3 19796:1 19804:2 19807:1 19811:1 19820:1 19834:1 19835:1 19843:5 19845:1 19855:1 19873:2 19877:1 19880:1 19882:1 19888:1 19936:6 19951:1 19952:1 19956:1 19959:1 19963:1 19969:1 19970:3 19974:3 19977:4 19978:2 19983:1 19985:1 20017:2 20021:1 20022:2 20023:4 20026:1 20032:2 20038:3 20041:2 20044:2 20046:1 20055:1 20056:1 20060:1 20062:3 20071:1 20075:2 20079:3 20080:3 20086:1 20106:2 20123:1 20125:1 20139:1 20148:1 20160:2 20190:1 20191:1 20197:2 20214:2 20217:1 20219:1 20237:1 20250:2 20255:1 20256:1 20263:1 20270:2 20276:1 20284:1 20285:3 20291:1 20299:3 20311:1 20325:1 20351:2 20353:1 20378:2 20379:1 20392:1 20397:3 20398:2 20403:2 20413:1 20414:1 20420:1 20421:2 20424:1 20426:1 20438:4 20439:1 20473:1 20479:1 20502:1 20511:15 20520:1 20522:1 20536:1 20550:5 20553:1 20572:1 20573:1 20574:1 20587:1 20590:3 20591:1 20599:1 20633:1 20638:4 20642:1 20648:1 20653:4 20656:1 20664:1 20669:1 20678:2 20681:2 20696:1 20703:3 20711:1 20724:2 20733:1 20740:1 20741:1 20742:2 20747:2 20754:1 20767:1 20770:4 20777:1 20791:1 20793:2 20794:1 20802:2 20807:1 20811:2 20819:1 20823:1 20842:1 20852:1 20853:5 20859:2 20863:5 20904:1 20905:1 20915:3 20916:3 20918:1 20924:3 20931:1 20936:1 20940:1 20941:2 20944:9 20948:2 20955:1 20956:4 20961:1 20968:1 20976:2 20987:3 21013:1 21014:3 21015:1 21018:1 21022:2 21029:4 21035:1 21038:1 21040:4 21048:1 21061:1 21066:1 21074:3 21075:1 21077:1 21096:1 21099:7 21102:1 21104:1 21108:29 21109:2 21110:2 21112:1 21113:3 21119:4 21121:1 21122:1 21125:1 21128:1 21131:1 21133:3 21143:1 21145:2 21146:1 21169:1 21171:13 21173:2 21192:1 21201:2 21205:1 21207:1 21209:1 21221:3 21222:1 21223:1 21224:1 21242:2 21243:6 21244:1 21247:1 21256:1 21262:1 21276:2 21292:3 21315:1 21320:1 21321:1 21324:2 21325:1 21329:2 21333:7 21338:1 21340:2 21353:1 21355:2 21361:1 21373:3 21374:2 21375:2 21376:1 21377:1 21381:1 21384:4 21391:7 21403:3 21406:5 21411:1 21413:2 21415:2 21441:1 21459:2 21460:4 21465:1 21470:2 21478:1 21482:1 21487:1 21509:1 21514:2 21528:1 21530:1 21535:1 21536:1 21537:2 21538:2 21539:1 21540:2 21543:2 21551:1 21570:1 21575:1 21576:1 21579:1 21580:2 21586:1 21588:1 21597:1 21598:1 21603:1 21609:2 21611:1 21622:1 21627:1 21634:2 21635:1 21639:1 21640:2 21641:1 21646:1 21647:3 21651:1 21668:1 21669:1 21703:2 21704:2 21711:9 21712:1 21721:2 21722:1 21729:1 21750:1 21761:1 21762:1 21773:1 21778:2 21779:1 21782:4 21786:3 21795:1 21803:1 21804:1 21808:1 21826:1 21831:2 21835:2 21837:1 21838:2 21843:1 21845:2 21866:1 21877:1 21880:2 21881:1 21889:5 21894:10 21899:1 21907:4 21912:1 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:4 21997:8 21998:3 22010:2 22014:1 22017:4 22021:9 22024:2 22025:1 22034:1 22037:1 22048:2 22065:2 22067:3 22070:2 22071:3 22085:1 22090:1 22107:1 22108:2 22116:2 22119:1 22126:2 22135:1 22151:2 22156:1 22159:2 22160:1 22163:1 22169:1 22173:3 22183:2 22185:1 22186:2 22190:1 22194:2 22200:1 22237:1 22255:3 22268:1 22269:2 22276:3 22277:1 22309:1 22316:2 22325:1 22327:2 22332:1 22340:2 22341:1 22347:2 22349:5 22352:1 22360:5 22372:1 22384:2 22386:2 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22560:2 22584:3 22589:2 22599:1 22601:1 22602:1 22621:1 22629:1 22636:3 22648:2 22649:1 22651:4 22662:1 22666:1 22672:5 22674:1 22675:1 22686:1 22688:1 22690:1 22709:2 22717:1 22725:2 22726:1 22731:1 22765:1 22770:1 22783:2 22787:1 22794:1 22796:3 22812:1 22829:1 22840:2 22849:1 22851:1 22877:1 22880:2 22897:1 22901:3 22905:1 22907:1 22911:1 22915:1 22928:1 22936:2 22938:1 22943:1 22956:2 22964:1 22975:2 22977:1 22982:1 22983:1 22985:8 22988:1 22997:2 23003:5 23018:2 23034:2 23061:1 23068:3 23070:2 23076:2 23081:1 23105:1 23114:1 23119:1 23141:1 23142:5 23160:2 23165:1 23188:4 23218:1 23220:1 23258:1 23263:1 23266:1 23274:1 23284:1 23286:5 23301:1 23318:1 23339:1 23345:1 23348:2 23359:1 23369:1 23370:1 23371:2 23376:1 23400:2 23425:1 23426:1 23444:1 23449:1 23466:2 23468:1 23491:1 23492:1 23496:4 23498:1 23504:4
16 1:2 3:1 5:1 7:1 25:1 26:2 33:1 51:3 64:2 67:1 73:1 80:1 82:1 87:1 108:1 110:2 111:1 114:1 119:4 126:1 138:1 140:1 148:1 154:1 161:1 163:1 164:5 165:2 171:1 176:1 193:1 204:1 209:1 218:1 224:1 229:2 230:1 262:1 263:1 279:1 280:3 282:1 285:1 286:1 294:1 296:1 317:5 334:1 335:1 337:1 344:2 347:1 384:1 394:2 402:4 403:2 406:1 413:3 416:4 427:1 428:1 435:1 440:4 446:1 463:5 464:1 467:1 470:1 471:2 488:1 507:6 511:2 514:1 516:1 518:1 522:1 527:1 539:4 564:1 568:1 578:1 582:1 584:1 596:1 606:3 607:1 608:3 613:1 626:4 640:3 641:1 643:2 646:2 652:2 657:1 660:1 665:1 690:1 710:1 719:1 732:2 735:3 739:2 744:2 759:1 765:1 767:1 774:1 786:1 791:1 803:2 805:1 825:1 831:1 835:1 838:1 840:1 841:1 846:1 854:2 855:2 860:4 863:1 866:1 886:11 896:1 898:1 902:8 904:1 910:1 914:5 947:2 960:1 962:2 967:2 988:1 993:4 996:4 999:1 1010:4 1032:1 1035:1 1044:1 1048:3 1049:1 1060:2 1061:1 1071:4 1078:1 1086:1 1098:1 1099:1 1102:1 1113:1 1114:1 1115:3 1117:1 1118:1 1120:1 1131:8 1133:1 1145:3 1146:1 1148:1 1157:1 1160:1 1162:1 1164:2 1172:1 1174:4 1178:1 1181:1 1188:1 1190:6 1191:1 1194:3 1195:9 1196:1 1203:2 1207:2 1208:1 1217:1 1235:1 1236:6 1242:4 1255:2 1268:2 1288:1 1291:1 1292:1 1298:2 1316:1 1325:1 1348:1 1362:1 1363:2 1366:2 1371:2 1376:1 1380:1 1382:2 1383:2 1384:1 1391:2 1399:6 1405:5 1417:1 1419:1 1425:3 1428:2 1433:2 1441:1 1450:2 1451:2 1467:2 1487:1 1488:2 1494:3 1519:1 1526:3 1529:1 1537:2 1544:2 1555:1 1559:1 1562:2 1564:2 1573:3 1574:1 1578:1 1579:3 1580:6 1581:2 1588:2 1595:1 1596:1 1600:1 1609:1 1612:2 1616:3 1626:1 1628:9 1643:1 1644:1 1647:6 1648:2 1649:2 1671:1 1672:4 1673:1 1674:1 1679:2 1682:1 1683:2 1686:4 1714:1 1721:2 1737:2 1738:1 1752:25 1758:1 1789:1 1792:1 1794:1 1802:6 1803:1 1807:1 1809:2 1829:2 1841:2 1844:1 1857:74 1869:2 1890:3 1894:1 1897:2 1899:1 1928:1 1930:3 1935:1 1940:1 1943:2 1965:2 1968:1 1977:2 1978:1 1980:1 1981:1 1982:3 2001:1 2003:4 2021:1 2023:2 2026:1 2027:1 2029:1 2030:1 2032:2 2034:2 2035:1 2036:2 2038:2 2042:1 2044:3 2045:6 2047:1 2051:1 2053:4 2055:1 2057:2 2062:2 2063:3 2071:2 2087:1 2095:1 2103:1 2105:2 2109:5 2112:1 2123:7 2124:2 2125:1 2126:1 2142:1 2145:1 2150:1 2156:2 2158:1 2161:1 2174:2 2177:1 2178:1 2182:4 2191:1 2192:1 2215:1 2231:1 2234:2 2236:1 2263:1 2282:1 2288:1 2291:1 2294:1 2297:1 2301:2 2310:5 2339:1 2343:3 2345:1 2354:1 2358:1 2363:1 2367:2 2368:2 2379:5 2383:1 2384:1 2402:1 2414:7 2427:1 2435:1 2447:8 2450:2 2459:1 2462:1 2469:3 2479:2 2481:1 2483:4 2484:1 2494:1 2499:1 2505:1 2509:1 2512:5 2527:1 2533:1 2547:1 2549:1 2554:10 2562:1 2573:1 2581:3 2583:2 2584:2 2585:2 2591:1 2598:2 2607:1 2609:1 2625:1 2628:1 2632:3 2639:2 2642:1 2643:1 2653:1 2654:1 2658:5 2661:1 2667:5 2671:2 2673:1 2683:1 2685:2 2688:2 2695:1 2701:2 2702:1 2705:5 2708:3 2716:1 2718:1 2740:1 2746:2 2749:2 2763:1 2764:4 2773:5 2774:1 2778:1 2779:1 2781:1 2793:2 2795:1 2797:1 2798:1 2801:1 2810:4 2814:3 2816:3 2819:1 2828:6 2829:1 2840:3 2850:1 2851:1 2860:3 2870:1 2878:1 2892:1 2895:3 2896:1 2899:2 2901:1 2902:1 2904:1 2912:1 2914:1 2921:1 2926:1 2927:1 2936:1 2941:2 2942:2 2952:1 2954:3 2964:1 2966:13 2970:1 2979:1 2981:1 2986:1 2987:1 2989:1 2990:1 2995:2 3002:1 3004:4 3012:1 3014:1 3017:2 3023:1 3027:1 3033:2 3035:5 3039:1 3043:1 3046:1 3048:2 3052:1 3065:1 3066:4 3070:2 3074:1 3084:1 3096:1 3098:3 3103:1 3136:1 3141:1 3150:1 3153:1 3156:1 3161:1 3168:2 3169:2 3170:2 3172:2 3177:3 3178:1 3186:2 3196:1 3218:3 3219:1 3221:1 3223:5 3229:2 3234:1 3237:3 3240:1 3241:1 3242:2 3255:1 3260:1 3264:4 3266:1 3268:1 3272:2 3273:1 3274:1 3293:1 3302:1 3305:1 3306:1 3311:1 3314:2 3316:2 3343:2 3345:4 3346:2 3352:2 3359:1 3382:2 3396:1 3403:1 3406:1 3408:1 3409:3 3421:1 3422:1 3437:1 3452:1 3462:1 3464:1 3468:1 3473:3 3483:1 3484:1 3486:1 3489:1 3502:1 3510:1 3519:1 3528:2 3538:2 3540:1 3541:2 3542:1 3545:2 3546:5 3550:1 3551:3 3552:1 3553:1 3554:6 3555:1 3556:1 3559:6 3560:1 3562:4 3564:2 3567:1 3571:1 3573:7 3575:3 3576:8 3580:1 3581:1 3590:2 3597:1 3601:2 3605:1 3606:2 3608:1 3610:1 3615:1 3616:1 3622:1 3637:1 3642:1 3644:1 3652:2 3656:1 3661:3 3666:1 3673:2 3685:1 3686:2 3688:1 3691:1 3694:1 3698:1 3701:1 3703:3 3704:1 3705:1 3706:3 3711:1 3714:1 3726:1 3731:1 3738:1 3740:1 3746:1 3752:3 3759:1 3761:2 3786:2 3792:1 3797:1 3811:1 3812:1 3819:1 3823:1 3827:2 3853:1 3854:3 3860:6 3865:2 3871:1 3875:1 3892:4 3893:2 3906:4 3936:1 3946:1 3951:1 3952:1 3965:1 3973:1 3974:1 3980:1 3990:1 4004:1 4006:1 4010:1 4027:7 4030:3 4033:1 4034:2 4038:1 4039:1 4050:1 4052:2 4054:4 4058:3 4059:1 4069:1 4072:2 4077:1 4082:2 4083:3 4085:1 4089:2 4104:1 4105:1 4109:1 4117:2 4127:1 4134:1 4146:1 4148:1 4150:1 4154:1 4165:1 4174:1 4182:2 4183:3 4184:2 4197:1 4208:5 4219:1 4226:5 4242:1 4243:2 4244:1 4248:2 4255:1 4257:1 4260:3 4262:12 4281:1 4283:1 4290:2 4295:1 4296:3 4302:1 4307:1 4311:1 4317:1 4318:1 4323:1 4332:2 4335:3 4338:4 4342:1 4343:2 4350:1 4357:1 4358:1 4379:2 4380:1 4381:1 4386:1 4389:1 4393:2 4398:3 4413:2 4414:1 4417:5 4424:1 4427:4 4473:3 4480:1 4481:2 4488:2 4490:2 4491:1 4502:1 4511:5 4512:1 4513:15 4514:1 4515:2 4516:1 4526:1 4533:1 4534:1 4540:2 4545:1 4560:2 4561:16 4576:1 4577:7 4589:1 4607:1 4616:2 4631:1 4632:1 4650:32 4658:2 4666:1 4671:2 4675:1 4699:1 4701:1 4702:1 4705:2 4714:3 4720:1 4730:1 4735:2 4741:2 4746:1 4752:1 4760:1 4766:1 4769:2 4778:1 4781:1 4786:1 4803:1 4807:2 4808:1 4812:1 4813:1 4818:2 4837:4 4844:4 4845:2 4860:2 4900:2 4902:1 4932:3 4937:1 4955:3 4966:1 4968:1 4970:1 4984:1 4990:1 5022:1 5034:3 5038:2 5047:1 5048:1 5058:2 5059:1 5060:1 5072:1 5084:4 5092:1 5097:2 5099:1 5112:1 5120:13 5124:1 5130:2 5132:1 5139:2 5144:3 5152:1 5159:1 5161:2 5170:1 5175:1 5183:1 5196:2 5199:1 5200:1 5204:2 5220:1 5226:1 5227:4 5234:1 5236:1 5250:1 5253:7 5279:4 5286:1 5291:1 5297:2 5310:1 5330:1 5341:1 5344:1 5348:1 5352:1 5353:4 5364:1 5365:1 5366:2 5383:5 5387:4 5388:1 5390:1 5398:3 5402:1 5405:1 5409:1 5428:1 5430:2 5432:1 5433:1 5439:4 5447:3 5454:1 5456:1 5459:2 5465:1 5466:1 5467:1 5480:5 5510:1 5516:1 5517:1 5521:3 5525:1 5540:1 5542:1 5543:1 5560:3 5564:1 5565:1 5572:1 5601:1 5609:1 5619:1 5621:5 5623:2 5627:3 5631:2 5632:2 5633:1 5650:2 5659:1 5661:22 5667:1 5668:1 5677:1 5680:1 5690:3 5701:1 5710:1 5724:1 5732:1 5748:4 5752:1 5760:1 5762:1 5779:1 5780:1 5782:1 5783:1 5805:1 5807:1 5808:1 5809:1 5816:4 5817:47 5820:2 5826:1 5831:2 5847:1 5851:2 5853:1 5855:9 5858:1 5861:1 5869:1 5870:30 5871:1 5872:2 5873:2 5876:7 5883:1 5896:1 5898:2 5906:2 5919:4 5923:1 5932:3 5934:4 5939:4 5947:1 5953:7 5957:2 5961:1 5963:2 5967:2 5970:1 5981:1 5994:4 6003:2 6005:3 6013:1 6014:2 6017:1 6018:1 6025:1 6029:2 6049:1 6055:1 6059:2 6062:1 6065:1 6066:3 6077:3 6084:1 6090:2 6095:1 6101:4685 6102:1 6107:1 6117:1 6130:1 6131:1 6133:2 6138:1 6140:5 6149:2 6165:1 6179:1 6180:2 6183:1 6184:1 6193:1 6195:2 6198:2 6201:1 6205:1 6210:5 6220:1 6232:2 6233:5 6248:1 6253:1 6270:1 6273:3 6279:2 6289:2 6300:1 6313:1 6320:1 6337:1 6346:1 6349:3 6350:1 6352:1 6375:1 6376:2 6379:1 6399:2 6401:1 6407:3 6417:1 6434:1 6448:6 6450:2 6458:1 6463:1 6471:2 6480:2 6484:2 6485:3 6493:1 6495:3 6496:1 6500:1 6501:1 6532:1 6534:1 6547:1 6559:2 6576:1 6577:1 6580:1 6581:1 6584:1 6587:1 6590:1 6601:1 6640:1 6644:5 6650:1 6656:1 6666:2 6677:1 6681:2 6686:1 6692:1 6698:1 6702:1 6705:15 6715:2 6725:1 6726:1 6737:1 6741:1 6748:3 6750:1 6777:1 6782:1 6784:3 6787:1 6792:5 6798:1 6802:2 6817:2 6830:7 6840:1 6846:1 6855:1 6863:2 6865:1 6867:1 6871:1 6872:1 6874:1 6880:1 6884:1 6887:1 6888:1 6936:1 6951:1 6956:2 6957:1 6962:1 6964:1 6974:2 6975:1 6981:5 7006:2 7017:1 7049:1 7050:2 7057:2 7064:1 7066:3 7080:1 7093:1 7096:1 7097:2 7104:1 7110:2 7124:1 7134:4 7137:2 7139:5 7153:1 7157:5 7163:1 7167:4 7171:1 7193:1 7203:3 7204:1 7208:2 7213:1 7221:1 7233:1 7238:1 7256:1 7276:1 7305:1 7319:1 7320:1 7329:1 7337:2 7340:1 7348:2 7349:1 7361:1 7363:2 7376:2 7377:4 7383:2 7397:2 7405:1 7408:4 7415:1 7444:2 7448:1 7450:1 7452:5 7453:1 7474:1 7476:19 7480:1 7483:1 7488:1 7507:17 7508:3 7509:1 7515:1 7516:1 7519:3 7520:1 7523:26 7529:1 7539:2 7555:3 7571:1 7581:1 7582:6 7584:2 7585:1 7591:1 7607:1 7614:2 7618:1 7632:1 7635:1 7638:6 7649:1 7663:1 7670:4 7671:3 7680:1 7682:1 7684:6 7686:2 7689:1 7693:5 7694:1 7696:5 7702:1 7719:2 7720:1 7722:1 7730:2 7732:4 7733:8 7734:1 7735:1 7736:2 7739:1 7740:3 7742:1 7750:25 7751:1 7753:1 7758:1 7762:2 7765:3 7773:2 7775:1 7782:2 7788:3 7794:1 7801:1 7811:1 7814:2 7817:3 7823:3 7834:1 7856:2 7871:1 7883:1 7887:1 7893:2 7902:1 7922:2 7935:1 7948:1 7970:2 7995:1 8003:1 8034:1 8047:1 8052:1 8065:1 8089:1 8091:13 8096:3 8097:3 8106:1 8107:1 8108:5 8119:1 8156:1 8168:2 8170:2 8177:1 8187:1 8209:1 8217:1 8222:2 8224:2 8225:25 8231:1 8234:8 8254:1 8262:1 8270:1 8298:2 8301:1 8313:1 8314:3 8317:1 8321:1 8325:1 8326:1 8347:1 8351:1 8356:1 8357:1 8361:2 8367:4 8372:2 8373:1 8385:2 8412:1 8433:1 8435:1 8437:1 8446:1 8453:4 8460:1 8464:1 8467:1 8469:1 8490:3 8491:1 8510:1 8520:2 8522:1 8525:3 8537:1 8544:1 8555:1 8558:1 8568:2 8569:1 8573:3 8578:1 8579:5 8581:1 8598:2 8599:1 8605:2 8609:1 8611:1 8618:2 8624:2 8634:2 8641:1 8644:8 8648:1 8673:1 8674:1 8679:1 8684:1 8692:1 8709:1 8713:2 8719:1 8723:1 8731:1 8746:4 8748:15 8755:1 8756:2 8757:1 8769:2 8771:3 8780:2 8789:1 8791:1 8796:1 8802:1 8803:2 8812:1 8828:1 8831:15 8834:1 8838:2 8856:1 8878:1 8889:1 8894:1 8900:5 8903:1 8904:1 8930:1 8937:2 8948:2 8957:2 8961:1 8968:1 8970:1 8973:1 8976:1 8980:1 8985:1 9008:1 9017:1 9018:1 9020:1 9024:1 9027:1 9029:1 9031:1 9043:2 9044:1 9048:1 9053:2 9065:1 9066:1 9069:1 9077:1 9083:1 9089:5 9090:1 9091:2 9119:1 9123:1 9139:1 9158:2 9169:1 9180:3 9208:5 9215:1 9217:5 9218:1 9223:1 9227:1 9231:3 9232:1 9241:2 9253:1 9259:1 9280:1 9285:1 9292:1 9302:1 9310:1 9314:2 9348:1 9358:1 9370:1 9374:2 9393:1 9400:5 9402:11 9413:1 9416:2 9419:3 9436:1 9445:1 9450:1 9452:1 9477:1 9492:1 9497:3 9509:1 9514:1 9517:1 9523:2 9527:1 9528:2 9529:1 9536:1 9539:1 9541:1 9547:1 9573:1 9575:1 9578:3 9589:1 9598:5 9610:1 9611:1 9612:1 9617:2 9618:1 9625:2 9626:2 9645:1 9647:1 9652:1 9666:1 9684:1 9687:4 9697:1 9706:1 9707:3 9710:1 9719:2 9721:2 9725:1 9727:1 9732:2 9733:1 9740:1 9747:6 9749:1 9751:14 9754:1 9759:2 9761:1 9762:2 9769:1 9770:3 9771:1 9772:1 9777:5 9778:1 9779:1 9791:3 9792:1 9797:3 9799:1 9800:5 9809:1 9812:1 9832:1 9848:5 9854:1 9866:1 9867:1 9875:1 9901:7 9904:2 9905:2 9906:1 9908:1 9910:1 9912:3 9913:2 9917:2 9918:3 9919:5 9920:2 9923:1 9926:3 9928:1 9929:8 9930:1 9932:2 9933:5 9940:2 9948:1 9950:1 9967:3 9980:1 9986:2 9993:1 10018:10 10025:3 10027:1 10032:2 10036:1 10039:1 10041:1 10043:1 10046:1 10050:2 10062:1 10092:2 10094:1 10095:1 10105:1 10122:1 10125:1 10129:1 10130:1 10139:1 10147:3 10150:1 10151:1 10153:1 10158:1 10165:1 10167:1 10173:1 10178:1 10182:4 10183:1 10193:1 10199:1 10201:1 10203:1 10207:2 10208:1 10210:1 10212:1 10220:1 10223:2 10224:1 10226:1 10232:1 10277:1 10282:1 10288:3 10289:1 10313:1 10350:1 10362:1 10373:1 10382:2 10386:4 10392:2 10410:2 10412:1 10420:2 10421:4 10424:2 10426:4 10442:5 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10509:1 10510:2 10515:1 10520:2 10524:1 10536:3 10540:1 10542:1 10544:2 10552:1 10561:1 10562:1 10565:2 10566:1 10567:2 10576:1 10579:1 10580:1 10581:1 10582:1 10587:1 10590:2 10592:1 10593:8 10597:3 10613:1 10617:1 10618:1 10623:1 10634:1 10648:1 10649:1 10660:1 10662:1 10677:1 10690:1 10696:1 10699:1 10700:2 10703:1 10704:2 10708:3 10714:2 10734:1 10736:1 10737:1 10742:3 10749:3 10751:2 10759:1 10762:1 10766:4 10768:20 10779:1 10780:3 10784:1 10793:2 10794:3 10799:1 10801:2 10805:1 10811:1 10817:6 10828:3 10837:1 10840:4 10842:2 10861:1 10866:1 10868:1 10870:5 10873:3 10881:1 10904:1 10910:1 10929:1 10936:2 10937:3 10939:1 10941:3 10944:1 10946:1 10949:1 10953:1 10956:1 10957:5 10962:2 10972:1 10974:1 10983:1 11004:1 11012:1 11018:1 11042:1 11043:1 11049:4 11061:2 11067:1 11068:2 11073:3 11082:1 11085:3 11106:1 11109:2 11121:1 11151:1 11171:1 11177:1 11184:2 11203:4 11210:2 11211:1 11212:13 11215:3 11220:2 11229:1 11230:3 11232:1 11234:1 11248:4 11249:2 11250:3 11251:2 11252:1 11254:1 11255:1 11259:1 11264:2 11269:2 11270:1 11271:1 11272:2 11281:1 11283:2 11284:1 11303:1 11310:5 11311:2 11313:2 11316:2 11317:1 11320:3 11322:1 11325:1 11326:1 11331:1 11350:1 11351:1 11356:2 11367:1 11396:1 11423:1 11442:2 11444:5 11446:1 11489:1 11497:1 11508:1 11515:1 11530:1 11540:1 11543:1 11546:2 11547:1 11549:1 11554:1 11562:1 11577:1 11583:1 11589:1 11593:5 11595:2 11599:1 11606:1 11609:1 11615:1 11631:1 11636:2 11644:1 11653:1 11654:1 11666:5 11667:25 11670:2 11673:1 11691:1 11701:1 11729:1 11733:2 11747:1 11749:1 11757:1 11767:1 11778:5 11780:1 11781:4 11797:1 11799:2 11802:2 11806:1 11811:1 11813:1 11819:1 11822:2 11834:2 11836:5 11844:1 11847:1 11852:9 11863:1 11865:1 11878:4 11898:1 11901:1 11906:2 11907:2 11916:2 11932:2 11933:1 11942:1 11949:2 11963:2 11968:1 11971:2 11977:1 11983:2 12004:1 12008:1 12009:1 12014:3 12015:2 12017:2 12027:1 12034:2 12035:1 12055:2 12057:1 12059:1 12060:1 12065:5 12083:12 12101:1 12107:1 12115:4 12116:6 12117:4 12119:3 12136:1 12140:1 12141:4 12143:2 12144:1 12149:2 12154:1 12157:1 12163:1 12173:1 12191:1 12192:2 12198:1 12200:1 12202:52 12205:1 12206:1 12209:2 12215:1 12226:16 12228:1 12229:28 12237:2 12243:1 12244:1 12248:1 12255:1 12259:1 12264:1 12266:1 12288:1 12295:7 12296:1 12344:1 12345:1 12355:1 12356:1 12364:1 12370:3 12378:1 12381:1 12383:1 12391:1 12392:2 12407:1 12420:1 12431:4 12439:2 12440:1 12454:1 12463:1 12469:1 12491:1 12506:1 12512:1 12515:4 12518:7 12523:1 12529:1 12543:1 12549:1 12551:1 12553:1 12556:1 12559:2 12566:15 12567:2 12584:1 12590:1 12592:1 12593:5 12603:2 12606:2 12609:1 12618:1 12628:1 12630:1 12633:1 12653:2 12656:1 12666:1 12673:1 12682:4 12687:1 12691:1 12693:2 12696:1 12703:1 12709:1 12723:1 12731:1 12754:3 12767:1 12778:1 12783:5 12791:4 12795:1 12808:2 12814:8 12821:1 12823:3 12830:1 12839:1 12850:1 12852:2 12853:1 12874:2 12879:1 12880:1 12887:2 12895:1 12904:1 12919:1 12921:1 12938:27 12944:1 12947:1 12955:1 12963:1 12966:1 12968:1 12970:1 12975:2 12976:1 12985:2 12986:1 12990:1 12998:1 13013:2 13015:1 13027:1 13047:1 13053:1 13060:1 13064:1 13067:2 13070:1 13071:1 13084:2 13086:2 13088:1 13097:1 13107:1 13109:1 13124:1 13129:2 13155:1 13175:1 13176:1 13177:7 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:2 13229:1 13239:1 13240:5 13247:3 13253:1 13267:2 13270:4 13279:1 13286:1 13289:1 13293:2 13296:1 13298:2 13304:1 13309:1 13315:1 13321:1 13324:2 13334:2 13346:1 13359:1 13362:2 13363:2 13366:1 13369:1 13372:1 13379:1 13384:1 13386:1 13387:1 13392:2 13405:1 13412:2 13414:2 13415:1 13417:4 13419:1 13421:1 13443:1 13451:1 13459:1 13471:2 13484:3 13489:1 13502:1 13505:4 13506:5 13514:2 13526:6 13529:1 13537:1 13542:1 13544:2 13547:1 13552:1 13553:4 13557:3 13562:1 13565:1 13572:1 13573:2 13577:1 13578:1 13579:3 13580:2 13581:2 13582:5 13587:2 13589:1 13593:2 13597:2 13599:2 13606:3 13609:2 13614:1 13619:3 13620:1 13632:1 13644:3 13646:1 13653:1 13661:2 13672:1 13674:1 13682:1 13683:1 13686:1 13703:6 13711:1 13715:32 13719:1 13724:6 13728:2 13735:1 13747:2 13756:3 13781:1 13786:5 13802:1 13826:6 13832:2 13846:1 13847:1 13850:2 13851:1 13852:1 13854:1 13855:2 13861:1 13874:1 13881:1 13883:1 13911:1 13919:1 13935:3 13941:1 13943:2 13944:1 13971:1 13972:2 13978:1 13981:1 13982:1 13984:1 13986:3 13995:1 13999:3 14002:1 14004:2 14007:1 14009:1 14010:1 14037:1 14041:1 14051:2 14061:1 14076:2 14082:1 14091:6 14093:2 14096:5 14099:1 14100:1 14101:4 14104:3 14108:1 14114:3 14116:1 14134:3 14137:1 14139:5 14152:1 14155:1 14172:1 14176:2 14184:3 14193:2 14198:1 14219:1 14241:6 14260:2 14280:3 14281:1 14283:1 14290:1 14311:2 14312:2 14336:1 14337:1 14345:1 14360:1 14364:1 14381:1 14386:1 14391:1 14396:1 14402:1 14416:1 14429:3 14439:1 14440:1 14457:3 14473:1 14474:2 14475:4 14484:1 14488:2 14490:1 14492:2 14493:1 14512:1 14519:2 14529:1 14530:1 14531:5 14533:2 14548:1 14554:2 14555:1 14561:8 14565:1 14586:2 14591:3 14595:1 14604:1 14605:1 14612:1 14622:1 14632:1 14641:1 14643:1 14646:2 14656:1 14658:1 14666:1 14673:3 14675:1 14694:1 14703:1 14704:2 14719:2 14720:1 14759:1 14767:1 14768:10 14775:2 14777:1 14781:1 14784:1 14794:1 14795:1 14802:2 14809:3 14836:2 14846:1 14849:1 14855:1 14870:1 14871:1 14872:2 14896:1 14900:1 14902:1 14904:1 14907:3 14913:2 14924:1 14926:2 14929:1 14933:1 14946:1 14953:1 14955:4 14970:1 14973:1 14975:2 14982:1 14986:2 14993:1 15006:1 15016:1 15018:3 15038:1 15039:5 15060:1 15065:1 15071:1 15099:1 15113:25 15114:1 15121:2 15137:1 15141:1 15143:1 15148:1 15151:1 15156:1 15161:3 15162:5 15164:1 15167:2 15175:1 15189:7 15193:1 15204:1 15205:2 15206:1 15215:2 15217:3 15227:4 15233:1 15235:2 15239:1 15246:2 15252:1 15257:1 15264:1 15265:1 15266:2 15280:2 15281:2 15283:1 15291:2 15295:4 15304:1 15310:1 15319:1 15324:1 15330:2 15337:14 15344:2 15348:1 15363:1 15367:1 15369:2 15370:1 15377:3 15401:1 15403:1 15408:1 15413:1 15435:1 15441:4 15444:5 15454:1 15459:3 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15482:1 15499:1 15500:1 15511:1 15516:1 15528:1 15535:1 15541:1 15547:1 15549:1 15552:1 15553:1 15559:1 15567:1 15568:1 15577:3 15594:1 15597:2 15600:1 15601:3 15621:1 15622:2 15623:1 15643:2 15660:8 15661:2 15664:4 15671:1 15675:3 15678:4 15680:2 15682:1 15689:3 15693:1 15694:1 15698:1 15708:3 15714:3 15718:1 15719:1 15723:1 15731:1 15732:2 15744:1 15750:1 15757:1 15759:2 15764:1 15766:4 15772:5 15774:1 15776:1 15786:1 15820:1 15822:1 15825:1 15829:3 15830:1 15840:4 15844:1 15852:2 15877:1 15878:2 15892:3 15898:1 15909:2 15932:5 15967:1 15971:1 15980:1 15981:3 15986:1 16001:1 16005:1 16035:13 16037:1 16038:6 16046:1 16048:1 16050:1 16053:1 16066:1 16080:1 16096:1 16098:2 16099:1 16107:1 16109:1 16114:1 16133:7 16135:1 16160:1 16164:1 16172:2 16178:1 16186:1 16189:1 16190:3 16197:1 16199:1 16208:2 16229:1 16236:4 16245:1 16246:1 16261:2 16269:4 16282:1 16287:2 16290:1 16297:6 16317:1 16322:1 16338:1 16341:1 16345:1 16354:2 16359:1 16373:1 16393:2 16410:6 16414:1 16425:1 16428:1 16435:1 16438:4 16449:2 16460:2 16464:1 16468:1 16480:1 16502:1 16505:3 16508:9 16511:1 16512:7 16522:1 16523:1 16527:1 16548:1 16556:1 16557:1 16569:1 16571:1 16574:2 16588:3 16589:3 16593:2 16602:7 16607:1 16614:1 16615:6 16616:2 16625:1 16629:1 16634:1 16636:4 16637:1 16638:7 16640:5 16643:1 16663:1 16670:1 16674:4 16677:1 16702:1 16703:3 16710:1 16728:1 16729:1 16735:1 16749:4 16759:2 16763:3 16774:2 16780:1 16782:8 16783:1 16802:1 16838:1 16848:1 16862:1 16864:1 16865:1 16868:1 16869:3 16870:8 16872:3 16881:1 16888:1 16911:1 16930:5 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16967:1 16975:2 16988:1 16990:1 16992:6 16993:2 17004:2 17008:2 17009:1 17020:1 17026:1 17033:4 17046:7 17048:2 17059:3 17080:1 17088:1 17089:1 17096:1 17099:2 17102:1 17106:1 17109:1 17128:2 17135:3 17151:1 17160:3 17162:1 17164:6 17168:1 17175:1 17183:2 17185:2 17186:1 17187:8 17208:4 17211:7 17222:2 17231:4 17237:1 17240:1 17241:1 17255:1 17262:2 17274:1 17281:4 17283:2 17284:1 17302:1 17311:2 17324:4 17336:1 17338:2 17343:1 17347:5 17367:2 17377:4 17384:1 17389:5 17395:1 17422:2 17424:1 17425:1 17437:4 17442:5 17451:1 17456:1 17457:1 17464:1 17465:2 17469:1 17486:2 17501:2 17512:1 17528:1 17530:1 17534:1 17539:1 17540:1 17541:1 17543:1 17545:1 17546:5 17547:1 17568:1 17577:1 17596:2 17613:2 17618:1 17623:1 17632:1 17634:1 17637:1 17667:1 17670:2 17681:1 17702:1 17707:4 17708:1 17709:4 17722:2 17725:1 17741:1 17744:1 17770:1 17785:1 17794:5 17811:1 17818:1 17821:2 17824:1 17829:1 17841:1 17851:3 17852:1 17853:7 17857:1 17859:3 17862:2 17865:3 17868:1 17881:1 17894:1 17906:1 17908:1 17922:3 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17968:1 17983:2 17986:1 17995:2 18004:1 18011:1 18025:6 18031:3 18032:1 18036:1 18037:1 18042:1 18044:1 18047:1 18050:1 18057:1 18064:3 18078:1 18087:1 18090:5 18102:1 18104:5 18106:1 18123:1 18131:2 18133:3 18134:2 18138:2 18150:1 18153:1 18170:1 18197:1 18205:3 18206:2 18209:4 18210:1 18217:1 18230:4 18239:1 18240:10 18241:1 18257:1 18258:1 18261:1 18262:1 18265:1 18266:1 18267:1 18272:23 18275:1 18277:3 18278:1 18280:7 18281:1 18287:1 18292:1 18293:7 18303:2 18322:2 18326:1 18334:11 18341:1 18345:1 18348:1 18368:2 18385:5 18391:2 18397:1 18399:2 18409:1 18411:1 18423:1 18446:1 18463:1 18470:1 18472:1 18482:1 18491:4 18509:5 18510:1 18513:1 18514:3 18525:1 18536:1 18542:1 18547:2 18574:1 18576:1 18586:1 18587:1 18592:1 18623:1 18628:1 18632:3 18646:1 18656:2 18675:1 18679:3 18703:5 18705:2 18708:1 18710:1 18713:1 18721:1 18722:2 18723:1 18724:4 18725:10 18729:2 18735:2 18739:2 18741:1 18766:2 18792:3 18799:1 18801:1 18815:2 18833:1 18855:5 18856:1 18868:1 18875:1 18883:4 18896:1 18900:1 18906:3 18922:1 18929:4 18937:1 18939:1 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18969:1 18974:2 18975:1 18979:1 18980:1 18993:1 19004:4 19005:4 19007:25 19017:8 19018:1 19031:1 19039:4 19040:2 19047:1 19052:2 19055:1 19066:3 19089:3 19092:2 19094:1 19111:1 19126:1 19134:1 19140:3 19164:2 19195:1 19198:1 19207:1 19236:1 19240:3 19252:1 19260:9 19262:2 19271:1 19281:1 19282:1 19290:1 19298:1 19299:4 19306:3 19310:1 19312:2 19319:1 19342:2 19357:1 19361:3 19364:1 19373:2 19380:1 19391:2 19397:4 19404:1 19418:1 19430:1 19431:1 19439:1 19456:1 19476:2 19481:1 19482:1 19492:1 19496:2 19498:2 19502:1 19512:4 19515:1 19529:2 19544:1 19565:1 19584:1 19595:2 19597:2 19603:1 19604:6 19626:1 19631:5 19636:1 19640:1 19647:10 19653:1 19658:2 19663:1 19672:1 19682:1 19697:2 19698:1 19707:1 19712:3 19727:1 19734:1 19749:1 19754:1 19765:1 19774:1 19776:1 19790:32 19791:1 19794:3 19796:1 19804:2 19807:1 19811:1 19820:1 19834:1 19835:1 19843:6 19845:1 19855:1 19873:2 19877:1 19880:1 19882:1 19888:1 19913:1 19936:6 19951:1 19952:1 19956:1 19959:1 19963:1 19969:1 19970:3 19974:3 19977:4 19978:2 19983:1 19985:1 20017:2 20021:1 20022:2 20023:4 20026:1 20032:2 20038:3 20041:2 20044:2 20046:1 20055:1 20056:1 20060:1 20062:3 20071:1 20075:2 20079:3 20080:3 20086:1 20106:2 20123:1 20125:1 20139:1 20148:1 20160:2 20190:1 20191:1 20197:2 20214:2 20217:1 20219:1 20237:1 20250:2 20255:1 20256:1 20263:1 20270:2 20276:1 20284:1 20285:3 20291:1 20299:3 20311:1 20325:1 20351:2 20353:1 20378:2 20379:1 20392:1 20397:3 20398:2 20403:2 20413:1 20414:1 20420:1 20421:2 20424:1 20426:1 20438:4 20439:1 20473:1 20479:1 20502:1 20511:16 20518:1 20520:1 20522:1 20536:1 20550:5 20553:1 20567:1 20572:1 20573:1 20574:1 20587:1 20590:3 20591:1 20599:1 20633:1 20634:1 20638:4 20642:1 20648:1 20653:4 20656:1 20664:1 20669:1 20678:2 20681:2 20696:1 20703:3 20711:1 20724:2 20733:1 20740:1 20741:1 20742:2 20747:2 20754:1 20767:1 20770:4 20777:1 20791:1 20793:2 20794:1 20802:2 20807:1 20811:2 20819:1 20823:2 20842:1 20852:1 20853:5 20859:2 20863:5 20904:1 20905:1 20915:3 20916:3 20918:1 20924:3 20931:1 20936:1 20940:1 20941:2 20944:9 20948:2 20955:1 20956:4 20961:1 20964:1 20968:1 20976:2 20987:3 21013:1 21014:3 21015:1 21018:1 21022:2 21029:4 21035:1 21038:1 21040:5 21048:1 21061:1 21066:1 21074:3 21075:1 21077:2 21096:1 21099:8 21102:1 21104:1 21108:29 21109:2 21110:2 21112:1 21113:3 21119:4 21121:1 21122:1 21125:1 21128:1 21131:1 21133:3 21143:1 21145:2 21146:1 21169:1 21171:13 21173:2 21192:1 21201:2 21205:1 21207:1 21209:1 21216:1 21221:3 21222:1 21223:1 21224:1 21242:2 21243:6 21244:1 21247:1 21256:1 21262:1 21276:2 21292:3 21315:1 21320:1 21321:1 21324:2 21325:1 21329:2 21333:7 21338:1 21340:2 21353:1 21355:3 21361:1 21373:3 21374:2 21375:2 21376:1 21377:1 21381:1 21384:4 21391:7 21403:3 21406:5 21411:1 21413:2 21415:2 21441:1 21459:2 21460:4 21465:1 21470:2 21478:1 21482:1 21487:1 21509:2 21514:2 21527:1 21528:1 21530:1 21535:1 21536:1 21537:2 21538:2 21539:1 21540:2 21543:2 21551:1 21570:1 21572:1 21575:1 21576:1 21579:1 21580:2 21586:1 21588:1 21597:1 21598:1 21603:1 21609:2 21611:1 21622:1 21627:1 21634:2 21635:1 21639:1 21640:2 21641:1 21646:1 21647:3 21651:1 21668:1 21669:1 21703:2 21704:2 21711:9 21712:1 21721:2 21722:1 21729:1 21750:1 21761:1 21762:1 21773:1 21778:2 21779:1 21782:4 21786:3 21795:1 21803:1 21804:1 21808:1 21826:1 21831:2 21835:2 21837:1 21838:2 21843:1 21845:2 21866:1 21877:1 21880:2 21881:1 21889:5 21894:11 21899:1 21907:4 21912:1 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:5 21997:8 21998:3 22010:2 22014:1 22017:4 22021:9 22024:2 22025:1 22034:1 22037:1 22048:2 22065:2 22067:3 22070:2 22071:3 22085:1 22087:1 22090:1 22107:1 22108:2 22116:2 22119:1 22126:2 22135:1 22151:2 22156:1 22159:2 22160:1 22163:1 22169:1 22173:3 22183:2 22185:1 22186:2 22190:1 22194:2 22200:1 22237:1 22255:3 22268:1 22269:2 22276:3 22277:1 22309:1 22316:2 22325:1 22327:2 22330:1 22332:1 22340:2 22341:1 22347:2 22349:5 22352:1 22353:1 22360:5 22372:1 22384:2 22386:2 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22560:2 22584:3 22589:2 22599:1 22601:1 22602:1 22621:1 22629:1 22636:3 22648:2 22649:1 22651:4 22662:1 22666:1 22672:5 22674:1 22675:1 22686:1 22688:1 22690:1 22709:2 22717:1 22725:2 22726:1 22731:1 22765:1 22770:1 22783:3 22787:1 22794:1 22796:3 22812:1 22829:1 22840:2 22849:1 22851:1 22877:1 22880:2 22897:1 22901:3 22905:1 22907:1 22911:1 22915:1 22928:1 22936:2 22938:1 22943:2 22956:2 22964:2 22975:2 22977:1 22982:1 22983:1 22985:8 22988:1 22997:2 23003:5 23018:2 23034:2 23061:1 23068:3 23070:2 23076:2 23081:1 23105:1 23114:1 23119:1 23141:1 23142:5 23160:2 23165:1 23188:4 23218:1 23220:1 23258:1 23263:2 23266:1 23271:1 23274:1 23284:1 23286:5 23301:1 23318:1 23339:1 23345:1 23348:2 23359:1 23369:1 23370:1 23371:2 23376:1 23400:2 23425:1 23426:1 23444:1 23449:1 23466:2 23468:1 23491:1 23492:1 23496:4 23498:1 23504:4
16 1:2 3:1 5:1 7:1 25:2 26:2 33:1 51:3 64:2 67:1 73:1 80:1 82:1 87:1 108:1 110:2 111:1 114:1 119:4 126:1 138:1 140:1 148:1 154:1 156:1 161:1 163:1 164:5 165:2 171:1 176:1 193:1 204:1 209:1 218:1 224:1 229:2 230:1 262:1 263:1 279:1 280:3 282:1 285:1 286:1 294:1 296:1 317:5 334:1 335:1 337:1 344:2 347:1 384:1 394:2 402:4 403:2 406:1 413:3 416:4 427:1 428:1 435:1 440:4 446:1 463:5 464:1 467:1 470:1 471:2 488:1 507:7 511:2 514:1 516:1 518:1 522:1 527:1 539:4 564:1 568:1 578:1 582:1 584:1 596:1 606:3 607:1 608:3 613:1 626:4 640:3 641:1 643:2 646:2 652:2 657:1 660:1 665:1 690:1 710:1 719:1 732:2 735:3 739:2 744:2 759:1 765:1 767:1 774:2 786:1 791:2 803:2 805:1 825:1 831:1 835:1 838:1 840:1 841:1 846:1 854:2 855:2 860:4 863:2 866:1 886:12 896:1 898:1 902:8 904:1 910:1 914:5 946:1 947:2 960:1 962:2 967:2 988:1 993:4 996:4 999:1 1010:4 1032:1 1035:1 1044:1 1048:3 1049:1 1060:2 1061:1 1071:4 1078:1 1086:1 1098:1 1099:1 1102:1 1113:1 1114:1 1115:3 1117:1 1118:1 1120:1 1131:8 1133:1 1145:3 1146:1 1148:1 1157:1 1160:1 1162:1 1164:2 1171:1 1172:1 1174:4 1178:1 1181:1 1188:1 1190:7 1191:1 1194:3 1195:9 1196:1 1203:2 1207:2 1208:1 1217:1 1235:1 1236:6 1242:4 1255:2 1268:2 1288:1 1291:1 1292:1 1298:2 1316:1 1325:3 1348:1 1362:1 1363:2 1366:2 1371:2 1376:1 1380:1 1382:2 1383:2 1384:1 1391:2 1399:6 1405:5 1417:1 1419:1 1425:3 1428:2 1433:2 1441:1 1450:2 1451:2 1467:2 1487:1 1488:2 1494:3 1519:1 1526:3 1529:1 1537:2 1544:2 1555:1 1559:2 1562:2 1564:2 1573:3 1574:1 1578:1 1579:3 1580:6 1581:2 1588:2 1595:1 1596:1 1600:1 1609:1 1612:2 1616:3 1626:1 1628:9 1643:1 1644:1 1647:6 1648:2 1649:2 1656:1 1671:1 1672:4 1673:1 1674:1 1679:2 1682:1 1683:2 1686:4 1714:1 1721:2 1726:1 1737:2 1738:1 1752:25 1758:1 1789:1 1792:1 1794:1 1802:6 1803:1 1807:1 1809:2 1829:2 1841:2 1844:1 1857:74 1869:2 1890:3 1894:1 1897:2 1899:1 1926:1 1928:1 1930:3 1935:1 1940:1 1943:2 1965:2 1968:1 1977:2 1978:1 1980:1 1981:1 1982:3 2001:1 2003:4 2021:1 2023:2 2026:1 2027:1 2029:1 2030:1 2031:1 2032:2 2034:2 2035:1 2036:2 2038:2 2042:1 2044:3 2045:7 2047:1 2051:1 2053:4 2055:1 2057:2 2062:3 2063:3 2071:2 2087:1 2095:1 2103:1 2105:2 2109:6 2112:1 2123:8 2124:2 2125:1 2126:1 2142:1 2145:1 2150:1 2156:2 2158:1 2161:1 2174:2 2177:1 2178:1 2181:1 2182:4 2184:1 2191:1 2192:1 2215:1 2231:1 2234:2 2236:1 2263:1 2282:2 2288:1 2291:1 2294:1 2297:1 2301:2 2310:5 2339:1 2343:3 2345:1 2354:1 2358:1 2363:1 2367:2 2368:2 2379:5 2383:1 2384:1 2402:1 2414:7 2427:1 2435:1 2447:9 2450:2 2459:1 2462:1 2469:3 2479:2 2481:1 2483:4 2484:1 2494:1 2499:1 2505:1 2509:1 2512:6 2527:1 2533:1 2547:1 2549:1 2552:1 2554:10 2562:1 2573:1 2581:3 2583:2 2584:2 2585:2 2591:1 2598:2 2607:1 2609:1 2625:1 2628:1 2632:3 2639:2 2640:1 2642:1 2643:1 2653:1 2654:1 2658:6 2661:1 2667:6 2671:2 2673:1 2683:1 2685:2 2688:2 2695:1 2701:2 2702:1 2705:5 2708:3 2716:1 2718:1 2740:1 2746:2 2749:2 2763:1 2764:4 2773:6 2774:1 2778:1 2779:1 2781:1 2793:2 2795:1 2797:1 2798:1 2801:1 2810:4 2814:3 2816:3 2819:1 2828:6 2829:1 2840:3 2850:1 2851:1 2854:1 2860:3 2870:1 2878:1 2892:1 2895:3 2896:1 2899:2 2901:1 2902:1 2904:1 2912:1 2914:1 2921:1 2926:1 2927:1 2936:1 2941:2 2942:2 2952:1 2954:3 2964:1 2966:13 2970:1 2979:1 2981:1 2986:1 2987:1 2989:1 2990:1 2995:2 3002:1 3004:4 3012:1 3014:1 3017:2 3023:1 3027:1 3033:2 3035:5 3039:1 3043:1 3046:1 3048:2 3052:1 3065:1 3066:5 3070:2 3074:1 3084:1 3096:1 3098:3 3103:1 3136:1 3141:1 3150:1 3153:1 3156:1 3161:1 3168:2 3169:2 3170:2 3172:2 3177:3 3178:1 3186:2 3191:1 3196:1 3218:3 3219:1 3221:1 3223:5 3229:2 3234:1 3237:3 3240:1 3241:1 3242:2 3255:1 3260:1 3264:4 3266:1 3268:1 3272:2 3273:1 3274:1 3293:1 3302:1 3305:1 3306:1 3311:1 3314:2 3316:2 3343:2 3345:4 3346:2 3352:2 3359:1 3382:2 3396:1 3403:1 3406:1 3408:1 3409:3 3421:1 3422:1 3437:1 3452:1 3462:1 3464:1 3468:1 3473:3 3483:1 3484:1 3486:1 3489:1 3502:2 3508:1 3510:1 3519:1 3528:2 3538:2 3540:1 3541:2 3542:1 3545:2 3546:6 3550:1 3551:3 3552:1 3553:1 3554:6 3555:2 3556:1 3559:6 3560:1 3562:5 3564:2 3567:1 3571:1 3573:7 3575:3 3576:8 3580:1 3581:1 3590:2 3597:1 3601:2 3605:1 3606:2 3608:1 3610:1 3615:1 3616:1 3622:1 3637:1 3642:1 3644:1 3652:2 3656:1 3661:3 3666:1 3673:2 3685:1 3686:2 3688:1 3691:1 3694:1 3698:1 3701:1 3703:3 3704:1 3705:1 3706:3 3711:1 3714:1 3721:1 3724:1 3726:1 3731:1 3738:1 3740:1 3746:1 3752:3 3759:1 3761:2 3786:2 3790:1 3792:1 3797:1 3811:1 3812:1 3819:1 3823:1 3827:2 3846:1 3853:1 3854:3 3860:6 3865:2 3871:1 3875:1 3892:4 3893:2 3906:4 3936:1 3946:1 3951:1 3952:1 3965:1 3973:1 3974:1 3980:1 3990:1 4004:1 4006:1 4010:1 4027:7 4030:3 4033:1 4034:2 4038:1 4039:1 4050:1 4052:2 4054:4 4058:3 4059:1 4069:1 4072:2 4077:1 4082:2 4083:3 4085:1 4089:2 4097:1 4104:1 4105:1 4109:1 4117:2 4127:1 4134:1 4146:1 4148:1 4150:1 4154:1 4158:1 4165:1 4167:1 4174:1 4182:2 4183:4 4184:2 4197:1 4208:5 4219:1 4226:5 4242:1 4243:2 4244:1 4248:2 4255:1 4257:1 4260:3 4262:12 4281:1 4283:1 4290:2 4295:1 4296:3 4302:1 4307:2 4311:1 4317:1 4318:1 4323:1 4332:2 4335:3 4338:4 4342:1 4343:2 4350:1 4357:1 4358:1 4379:2 4380:1 4381:1 4386:1 4389:1 4393:2 4398:3 4413:2 4414:1 4417:5 4424:1 4425:1 4427:4 4473:4 4480:1 4481:2 4488:2 4490:2 4491:1 4502:1 4511:5 4512:1 4513:15 4514:1 4515:2 4516:1 4526:1 4533:1 4534:1 4540:2 4545:1 4560:2 4561:16 4576:1 4577:7 4589:1 4607:1 4616:2 4631:1 4632:1 4650:32 4658:2 4666:1 4671:2 4672:1 4675:1 4699:1 4701:1 4702:1 4705:2 4714:4 4720:1 4730:1 4735:2 4741:2 4746:1 4752:1 4760:1 4766:1 4769:2 4778:1 4781:1 4786:1 4803:1 4807:2 4808:1 4812:1 4813:1 4818:2 4837:4 4844:4 4845:2 4860:2 4900:2 4902:1 4932:3 4937:1 4955:3 4966:1 4968:1 4970:1 4984:1 4990:1 4994:1 5022:1 5034:3 5038:2 5047:1 5048:1 5058:2 5059:1 5060:1 5072:1 5084:4 5092:1 5097:2 5099:1 5112:1 5120:13 5124:1 5130:2 5132:1 5139:2 5144:3 5152:1 5159:1 5161:2 5170:1 5175:1 5183:1 5195:1 5196:2 5199:1 5200:1 5204:2 5220:1 5226:1 5227:4 5234:1 5236:1 5250:1 5253:7 5279:4 5286:1 5291:1 5297:2 5310:1 5330:1 5341:1 5344:1 5348:1 5352:1 5353:4 5364:1 5365:1 5366:2 5383:6 5387:4 5388:1 5390:1 5398:3 5402:1 5405:1 5409:1 5428:1 5430:3 5432:1 5433:1 5439:4 5447:3 5454:1 5456:1 5459:2 5465:1 5466:1 5467:1 5480:6 5510:1 5516:1 5517:1 5521:3 5525:1 5540:1 5542:1 5543:1 5560:3 5564:1 5565:1 5572:1 5601:1 5609:1 5619:1 5621:5 5623:2 5627:3 5631:2 5632:2 5633:1 5650:2 5655:1 5659:1 5661:23 5667:1 5668:1 5677:1 5680:1 5690:3 5701:1 5710:1 5724:1 5732:1 5748:4 5752:1 5760:1 5762:1 5779:1 5780:1 5782:1 5783:1 5805:1 5807:1 5808:1 5809:1 5816:4 5817:48 5820:2 5826:1 5831:2 5847:1 5851:2 5853:1 5855:9 5858:1 5861:1 5869:1 5870:30 5871:1 5872:2 5873:2 5876:7 5883:1 5896:1 5898:2 5906:2 5919:4 5923:1 5932:3 5934:4 5939:4 5947:1 5953:7 5957:2 5961:1 5963:2 5967:2 5970:1 5981:1 5994:4 6003:2 6005:3 6013:1 6014:2 6017:1 6018:1 6025:1 6029:2 6049:1 6055:1 6059:2 6062:1 6065:1 6066:3 6077:3 6084:1 6090:2 6095:1 6101:4807 6102:1 6107:1 6110:1 6117:1 6130:1 6131:1 6133:3 6138:1 6140:5 6149:2 6165:1 6179:1 6180:2 6183:1 6184:1 6193:1 6195:2 6198:2 6201:1 6205:1 6210:6 6220:1 6232:2 6233:6 6248:1 6253:1 6270:1 6273:3 6279:2 6289:2 6300:1 6313:1 6320:1 6337:1 6346:1 6349:3 6350:1 6352:1 6375:1 6376:2 6379:1 6399:2 6401:1 6407:3 6417:1 6434:1 6448:7 6450:2 6458:1 6463:1 6471:2 6480:2 6484:2 6485:3 6493:1 6495:3 6496:1 6500:1 6501:1 6532:1 6534:1 6547:1 6559:2 6576:1 6577:1 6580:1 6581:1 6584:1 6587:1 6590:1 6601:1 6640:1 6644:5 6650:1 6656:1 6666:2 6677:1 6681:2 6686:1 6692:1 6698:1 6702:1 6705:15 6715:2 6720:1 6725:1 6726:1 6737:1 6741:1 6748:3 6750:1 6777:1 6782:1 6784:3 6787:1 6792:5 6798:1 6802:2 6817:2 6830:7 6840:1 6846:1 6855:1 6863:2 6865:1 6867:1 6871:1 6872:1 6874:1 6880:1 6884:1 6887:1 6888:1 6932:1 6933:1 6936:1 6951:1 6956:2 6957:1 6962:1 6964:1 6974:2 6975:1 6981:5 7006:2 7017:1 7049:1 7050:2 7057:2 7064:1 7066:3 7080:1 7093:1 7096:1 7097:2 7104:1 7110:2 7124:1 7134:5 7137:2 7139:5 7153:1 7157:6 7163:1 7167:4 7171:1 7193:1 7203:3 7204:1 7208:3 7213:1 7221:1 7233:1 7238:1 7256:1 7272:1 7276:1 7305:1 7319:1 7320:1 7329:1 7337:2 7340:1 7348:2 7349:1 7361:1 7363:2 7376:2 7377:4 7383:2 7397:2 7405:1 7408:4 7415:1 7444:2 7448:1 7450:1 7452:5 7453:1 7474:1 7476:20 7480:1 7483:1 7488:1 7507:19 7508:3 7509:1 7511:1 7515:1 7516:1 7519:3 7520:1 7523:27 7529:1 7539:2 7555:3 7571:1 7581:1 7582:6 7584:2 7585:1 7591:1 7607:1 7614:2 7618:1 7632:1 7635:1 7638:7 7649:1 7663:1 7670:4 7671:3 7680:1 7682:1 7684:6 7686:2 7689:1 7693:6 7694:1 7696:5 7698:1 7702:1 7719:2 7720:1 7722:1 7730:2 7732:4 7733:8 7734:1 7735:1 7736:2 7739:1 7740:3 7742:1 7750:25 7751:1 7753:1 7758:1 7762:2 7765:3 7773:2 7775:1 7782:2 7788:3 7794:1 7801:1 7811:1 7814:2 7817:3 7823:3 7834:1 7856:2 7867:1 7871:1 7883:1 7887:1 7893:2 7902:1 7922:2 7935:2 7948:1 7970:2 7995:1 8003:1 8034:1 8047:1 8052:1 8065:1 8089:1 8091:13 8096:3 8097:3 8106:1 8107:1 8108:5 8119:1 8156:1 8168:2 8170:2 8177:1 8187:1 8209:1 8217:1 8222:2 8224:2 8225:25 8231:1 8234:8 8254:1 8262:1 8270:1 8298:2 8301:1 8313:1 8314:3 8317:1 8321:1 8325:1 8326:1 8347:1 8351:1 8356:1 8357:1 8361:2 8367:4 8372:2 8373:1 8385:3 8412:1 8433:1 8435:1 8437:1 8446:1 8453:4 8457:1 8460:1 8464:1 8467:1 8469:1 8490:3 8491:1 8510:1 8520:2 8522:1 8525:3 8528:1 8537:1 8544:1 8555:1 8558:1 8568:2 8569:1 8573:3 8578:1 8579:5 8581:1 8598:2 8599:1 8605:2 8609:1 8611:1 8618:2 8624:2 8634:2 8641:1 8644:8 8648:1 8658:1 8673:1 8674:1 8679:1 8684:1 8692:1 8709:1 8711:1 8713:2 8719:1 8723:1 8731:1 8746:4 8748:15 8755:1 8756:2 8757:1 8769:2 8771:3 8780:2 8789:1 8791:1 8796:1 8802:1 8803:2 8812:1 8828:1 8831:15 8834:1 8838:2 8856:1 8878:1 8889:1 8894:1 8900:5 8903:1 8904:1 8930:1 8937:2 8948:2 8957:2 8961:1 8968:1 8970:1 8973:1 8976:1 8980:1 8985:1 9008:1 9017:1 9018:1 9020:1 9024:1 9027:1 9029:1 9031:1 9043:2 9044:1 9048:1 9053:2 9065:1 9066:1 9069:1 9077:1 9083:1 9089:5 9090:1 9091:2 9119:1 9123:1 9139:1 9158:2 9169:1 9180:3 9208:6 9215:1 9216:1 9217:5 9218:1 9223:1 9227:1 9231:4 9232:1 9241:2 9253:1 9259:1 9280:1 9285:1 9292:1 9302:1 9310:1 9314:2 9348:1 9358:1 9370:1 9374:2 9393:1 9400:5 9402:11 9413:1 9416:2 9419:3 9436:1 9445:1 9450:1 9452:1 9477:1 9492:1 9497:3 9509:1 9514:1 9517:1 9523:2 9527:1 9528:2 9529:1 9536:1 9539:1 9541:1 9547:1 9564:1 9573:1 9575:1 9578:3 9589:1 9598:6 9610:1 9611:1 9612:1 9617:2 9618:1 9625:2 9626:2 9645:1 9647:1 9652:1 9666:1 9684:1 9687:4 9697:1 9706:1 9707:3 9710:1 9719:2 9721:2 9725:1 9727:1 9732:2 9733:1 9740:1 9747:6 9749:1 9751:14 9754:1 9759:2 9761:1 9762:2 9769:1 9770:3 9771:1 9772:1 9777:5 9778:1 9779:1 9791:3 9792:1 9797:3 9799:1 9800:5 9809:1 9812:1 9832:1 9848:6 9854:1 9866:1 9867:1 9875:1 9901:7 9904:2 9905:2 9906:1 9908:1 9910:2 9912:3 9913:2 9917:2 9918:3 9919:5 9920:2 9923:1 9926:4 9928:1 9929:8 9930:1 9932:2 9933:5 9940:2 9948:1 9950:1 9967:3 9980:1 9986:2 9993:1 10018:10 10025:3 10026:1 10027:1 10032:2 10036:1 10039:1 10041:1 10043:1 10046:1 10050:2 10062:1 10092:2 10094:1 10095:1 10105:1 10122:1 10125:1 10129:1 10130:1 10139:1 10147:3 10150:1 10151:1 10153:1 10158:1 10165:1 10167:1 10173:1 10178:1 10182:4 10183:1 10193:1 10199:1 10201:1 10203:1 10207:2 10208:1 10210:1 10212:1 10219:1 10220:1 10223:2 10224:1 10226:1 10232:1 10277:1 10282:1 10288:3 10289:1 10313:1 10350:1 10362:1 10370:1 10373:1 10382:2 10386:4 10392:2 10404:1 10410:2 10412:1 10420:2 10421:4 10424:2 10426:4 10442:6 10451:5 10454:1 10458:1 10459:1 10463:3 10473:1 10481:1 10488:1 10489:1 10509:1 10510:2 10515:1 10520:2 10524:1 10536:3 10540:1 10542:1 10544:2 10552:1 10561:1 10562:1 10565:2 10566:1 10567:2 10576:1 10579:1 10580:1 10581:1 10582:1 10587:1 10588:1 10590:2 10592:1 10593:9 10597:3 10613:1 10617:1 10618:1 10623:1 10634:1 10648:1 10649:1 10660:1 10662:1 10677:1 10690:1 10696:1 10699:1 10700:2 10703:1 10704:2 10708:3 10714:2 10734:1 10736:1 10737:1 10742:3 10749:3 10751:2 10759:1 10762:1 10766:5 10768:20 10779:1 10780:3 10784:1 10793:2 10794:3 10799:1 10801:2 10805:1 10811:1 10817:7 10819:1 10828:3 10837:1 10840:4 10842:2 10861:1 10866:1 10868:1 10870:5 10873:3 10881:1 10904:1 10910:1 10929:1 10934:1 10936:2 10937:3 10939:1 10941:3 10944:1 10946:1 10949:1 10953:1 10956:1 10957:5 10962:2 10972:1 10974:1 10983:1 11004:1 11012:1 11018:1 11042:1 11043:1 11049:4 11061:2 11067:1 11068:2 11073:3 11082:1 11085:3 11091:1 11106:1 11109:2 11121:1 11131:1 11151:2 11171:1 11177:1 11184:2 11190:1 11203:4 11210:2 11211:1 11212:13 11215:3 11220:2 11229:1 11230:3 11232:1 11234:1 11248:4 11249:2 11250:3 11251:2 11252:1 11254:1 11255:1 11259:1 11264:2 11269:2 11270:1 11271:1 11272:2 11281:1 11283:2 11284:1 11303:1 11310:6 11311:2 11313:2 11316:2 11317:1 11320:3 11322:1 11325:1 11326:1 11331:1 11350:1 11351:1 11356:2 11367:1 11396:1 11423:1 11442:2 11444:5 11446:1 11489:1 11497:1 11508:1 11515:1 11530:1 11540:1 11543:1 11546:2 11547:1 11549:1 11554:1 11562:1 11577:1 11583:1 11589:1 11593:6 11595:2 11599:1 11606:1 11609:1 11615:1 11631:1 11636:2 11644:1 11653:1 11654:1 11666:5 11667:25 11670:2 11673:1 11691:1 11701:1 11729:1 11733:2 11747:1 11749:1 11757:1 11767:1 11778:6 11780:1 11781:4 11797:1 11799:2 11802:2 11806:1 11811:1 11813:1 11819:1 11822:2 11834:2 11836:5 11844:1 11847:1 11852:9 11863:1 11865:1 11878:4 11898:1 11901:2 11906:2 11907:2 11916:2 11932:2 11933:1 11942:1 11949:2 11963:2 11968:1 11971:2 11977:1 11983:2 12004:1 12008:1 12009:1 12014:3 12015:2 12017:2 12027:1 12034:3 12035:1 12055:2 12057:1 12059:1 12060:1 12065:6 12083:13 12101:1 12107:1 12115:4 12116:6 12117:4 12119:3 12136:2 12140:1 12141:4 12143:2 12144:1 12149:2 12154:1 12157:1 12163:1 12173:1 12191:1 12192:2 12198:1 12200:1 12202:56 12205:1 12206:1 12209:2 12215:1 12226:16 12228:1 12229:28 12237:2 12243:1 12244:1 12248:1 12255:1 12259:1 12264:1 12266:1 12288:1 12295:7 12296:1 12344:1 12345:1 12355:1 12356:1 12364:1 12370:3 12378:1 12381:1 12383:1 12391:1 12392:2 12407:1 12420:1 12431:4 12439:2 12440:1 12454:1 12463:1 12469:1 12491:1 12506:1 12512:1 12515:4 12518:8 12523:1 12529:2 12543:1 12549:1 12551:1 12553:1 12556:1 12559:2 12566:15 12567:2 12584:1 12590:1 12592:1 12593:5 12602:1 12603:2 12606:2 12609:1 12618:1 12628:1 12630:1 12633:1 12653:2 12656:1 12666:1 12673:1 12682:4 12687:1 12691:1 12693:2 12696:1 12703:1 12709:1 12723:1 12731:1 12754:4 12767:1 12778:1 12783:5 12791:4 12795:1 12808:2 12814:9 12821:1 12823:3 12830:1 12839:1 12850:1 12852:2 12853:1 12874:2 12879:1 12880:1 12887:2 12895:1 12904:1 12919:1 12921:1 12938:28 12944:1 12947:1 12955:1 12963:1 12966:1 12968:1 12970:1 12975:2 12976:1 12985:2 12986:1 12990:1 12998:1 13013:2 13015:1 13027:1 13047:1 13053:1 13060:1 13064:1 13067:2 13070:1 13071:1 13084:2 13086:2 13088:1 13097:1 13107:1 13109:1 13124:1 13129:2 13155:1 13175:1 13176:1 13177:7 13186:1 13187:1 13193:1 13209:1 13211:1 13221:3 13225:2 13229:1 13239:1 13240:6 13247:3 13253:1 13267:2 13270:4 13279:1 13286:1 13289:1 13293:2 13296:1 13298:2 13304:1 13309:1 13315:1 13321:1 13324:2 13334:2 13346:1 13359:1 13362:2 13363:2 13366:1 13369:1 13372:1 13379:1 13384:1 13386:1 13387:1 13392:2 13405:1 13407:1 13412:2 13414:2 13415:1 13417:4 13419:1 13421:1 13443:1 13446:1 13451:1 13459:1 13468:1 13471:2 13484:3 13489:1 13502:1 13505:4 13506:5 13514:2 13526:6 13529:1 13537:1 13542:1 13544:2 13547:1 13552:1 13553:5 13557:3 13562:1 13565:2 13572:2 13573:2 13577:1 13578:1 13579:3 13580:2 13581:2 13582:5 13587:2 13589:1 13593:2 13597:2 13599:2 13606:3 13609:2 13614:1 13619:3 13620:1 13632:1 13638:1 13644:3 13646:1 13653:1 13661:2 13672:1 13674:1 13682:1 13683:1 13686:1 13703:6 13711:1 13715:32 13719:1 13724:6 13728:2 13735:1 13747:2 13756:3 13773:1 13781:1 13786:5 13802:1 13826:6 13832:2 13846:1 13847:1 13850:2 13851:1 13852:1 13854:1 13855:2 13861:1 13874:1 13881:1 13883:1 13911:1 13919:1 13935:3 13941:1 13943:2 13944:1 13971:1 13972:2 13978:1 13981:1 13982:1 13984:1 13986:3 13995:1 13999:3 14002:1 14004:2 14007:1 14009:1 14010:1 14037:1 14041:1 14051:2 14061:1 14076:2 14082:1 14091:7 14093:2 14096:6 14099:1 14100:1 14101:4 14104:3 14108:1 14114:3 14116:1 14134:3 14137:1 14139:5 14152:1 14155:1 14172:1 14176:2 14184:3 14193:2 14198:1 14219:1 14223:1 14241:6 14260:2 14262:1 14280:3 14281:1 14283:1 14290:1 14311:2 14312:2 14336:1 14337:1 14345:1 14360:1 14364:1 14381:1 14386:1 14391:1 14396:1 14402:1 14416:1 14429:3 14439:1 14440:1 14457:3 14473:1 14474:2 14475:4 14484:1 14488:2 14490:1 14492:2 14493:1 14512:1 14519:2 14529:1 14530:1 14531:5 14533:2 14548:1 14554:2 14555:1 14561:9 14565:1 14586:2 14591:3 14595:1 14604:1 14605:1 14612:3 14622:1 14623:1 14632:1 14641:1 14643:1 14646:2 14656:1 14658:1 14666:1 14673:3 14675:1 14694:1 14703:1 14704:2 14719:2 14720:1 14759:1 14767:1 14768:10 14769:1 14775:2 14777:1 14781:1 14784:1 14794:1 14795:1 14802:2 14809:3 14836:2 14846:1 14849:1 14855:1 14870:1 14871:1 14872:2 14896:1 14900:1 14902:1 14904:1 14907:3 14913:2 14924:1 14926:2 14929:1 14933:1 14946:1 14953:1 14955:4 14970:1 14973:1 14975:2 14982:1 14986:2 14993:1 15006:1 15016:1 15018:3 15038:1 15039:5 15060:1 15065:1 15071:1 15099:1 15113:25 15114:1 15121:2 15137:1 15141:1 15143:2 15148:1 15151:1 15156:1 15161:3 15162:5 15164:1 15167:2 15175:1 15189:7 15193:1 15204:1 15205:2 15206:1 15215:2 15217:3 15227:5 15232:1 15233:1 15235:2 15239:1 15246:2 15252:1 15257:1 15264:1 15265:1 15266:2 15280:2 15281:2 15283:1 15291:2 15295:4 15304:1 15310:1 15319:1 15324:1 15330:2 15337:14 15344:2 15348:1 15363:1 15367:1 15369:2 15370:1 15377:3 15394:1 15401:1 15403:1 15408:1 15413:1 15414:1 15435:1 15441:4 15444:5 15454:1 15459:3 15460:1 15467:1 15468:1 15470:1 15475:1 15477:3 15479:1 15480:1 15482:1 15499:1 15500:1 15511:1 15516:1 15528:1 15535:1 15541:1 15547:1 15549:1 15552:1 15553:1 15559:1 15567:1 15568:1 15577:3 15594:1 15597:2 15600:1 15601:3 15621:1 15622:2 15623:1 15643:2 15660:8 15661:2 15664:4 15671:1 15675:3 15678:4 15680:2 15682:1 15689:3 15693:1 15694:1 15698:1 15708:3 15714:3 15718:1 15719:1 15723:1 15731:1 15732:2 15744:1 15750:1 15757:1 15759:2 15764:1 15766:4 15768:1 15772:5 15774:1 15776:1 15786:1 15820:1 15822:1 15825:1 15829:3 15830:1 15840:4 15844:1 15852:2 15877:1 15878:2 15892:3 15898:1 15909:2 15932:5 15967:1 15971:1 15980:1 15981:4 15986:1 16001:1 16005:1 16035:13 16037:1 16038:6 16046:1 16048:1 16050:1 16053:1 16066:1 16080:1 16096:1 16098:2 16099:1 16107:1 16109:1 16114:1 16133:7 16135:1 16160:1 16164:1 16172:2 16178:1 16186:1 16189:1 16190:3 16197:2 16199:1 16205:1 16208:2 16214:1 16229:1 16236:4 16245:1 16246:1 16261:2 16269:4 16282:1 16287:2 16290:1 16297:7 16317:1 16322:1 16338:1 16341:1 16345:1 16354:2 16359:1 16373:1 16378:1 16393:2 16410:6 16414:1 16425:1 16428:1 16435:3 16438:4 16449:2 16460:2 16464:1 16468:1 16480:1 16502:1 16505:3 16508:11 16511:1 16512:7 16522:1 16523:1 16527:1 16548:1 16556:1 16557:1 16569:1 16571:1 16574:2 16588:3 16589:3 16593:2 16602:7 16607:1 16614:1 16615:6 16616:2 16625:1 16629:1 16634:1 16636:4 16637:1 16638:8 16640:6 16643:1 16663:1 16670:1 16674:4 16677:1 16702:1 16703:3 16710:1 16728:1 16729:1 16735:2 16749:4 16759:2 16763:3 16774:2 16780:1 16782:9 16783:1 16802:2 16838:1 16848:1 16862:1 16864:1 16865:1 16868:1 16869:3 16870:8 16872:3 16881:1 16888:1 16911:1 16930:5 16936:1 16937:2 16938:2 16939:1 16940:2 16954:1 16967:1 16975:2 16988:1 16990:1 16992:6 16993:2 16997:1 17004:2 17008:2 17009:1 17020:1 17026:1 17033:4 17046:7 17048:2 17059:3 17080:1 17088:1 17089:1 17096:1 17099:2 17102:1 17106:1 17109:1 17128:2 17135:3 17151:1 17160:3 17162:1 17164:6 17168:1 17175:1 17183:2 17185:2 17186:1 17187:9 17208:4 17211:7 17222:2 17231:4 17237:1 17240:1 17241:1 17255:1 17262:2 17274:1 17281:4 17283:2 17284:1 17302:1 17311:2 17320:1 17324:4 17336:1 17338:2 17343:1 17347:5 17353:1 17367:2 17377:4 17384:1 17389:5 17395:1 17422:2 17424:1 17425:1 17437:4 17442:6 17451:1 17456:1 17457:1 17464:1 17465:2 17469:1 17486:2 17501:2 17512:1 17528:1 17530:1 17534:1 17539:1 17540:1 17541:1 17543:1 17545:1 17546:6 17547:1 17568:1 17577:1 17596:2 17613:2 17618:1 17623:1 17632:1 17634:1 17637:1 17667:1 17670:2 17681:1 17702:1 17707:4 17708:1 17709:4 17722:2 17725:1 17729:1 17741:1 17744:1 17750:1 17770:1 17785:1 17794:5 17811:1 17818:1 17821:2 17824:1 17829:1 17841:1 17851:3 17852:1 17853:7 17857:1 17859:3 17862:2 17865:3 17868:1 17881:1 17894:1 17906:1 17908:1 17922:3 17927:1 17935:1 17939:2 17941:1 17945:1 17952:1 17966:1 17968:1 17983:2 17985:1 17986:1 17995:2 18004:1 18011:1 18025:6 18031:3 18032:1 18036:1 18037:1 18042:1 18044:1 18047:1 18050:1 18057:1 18064:3 18078:1 18087:1 18090:5 18102:2 18104:6 18106:1 18123:1 18131:2 18133:3 18134:2 18138:2 18150:1 18153:1 18170:1 18197:1 18205:3 18206:2 18209:4 18210:1 18217:1 18230:4 18239:1 18240:11 18241:1 18257:2 18258:1 18261:1 18262:1 18265:1 18266:1 18267:1 18272:24 18275:1 18277:3 18278:1 18280:8 18281:1 18287:1 18292:1 18293:8 18303:2 18322:2 18326:1 18334:12 18341:1 18345:1 18348:1 18368:2 18385:5 18391:2 18397:1 18399:2 18409:1 18411:1 18423:1 18446:1 18463:1 18470:1 18472:1 18482:1 18491:4 18509:5 18510:1 18513:2 18514:3 18525:1 18536:1 18542:1 18547:2 18574:1 18576:1 18586:1 18587:1 18592:1 18623:1 18628:1 18632:3 18646:1 18656:2 18675:2 18679:3 18696:1 18703:5 18705:2 18708:1 18710:1 18713:1 18721:1 18722:2 18723:1 18724:4 18725:11 18729:2 18735:2 18739:2 18741:1 18766:2 18792:3 18799:1 18801:1 18815:2 18833:1 18855:5 18856:1 18868:1 18875:1 18883:4 18896:1 18900:1 18906:3 18922:1 18929:4 18937:1 18939:3 18953:1 18957:1 18959:1 18964:1 18965:1 18967:1 18969:1 18974:2 18975:1 18979:1 18980:1 18993:1 19004:4 19005:4 19007:25 19017:8 19018:1 19031:1 19039:4 19040:2 19047:1 19052:2 19055:1 19066:3 19089:3 19092:2 19094:1 19111:1 19126:1 19134:1 19140:3 19164:2 19195:1 19198:1 19207:1 19236:1 19240:3 19252:1 19260:9 19262:2 19263:1 19271:1 19281:1 19282:1 19290:1 19298:1 19299:4 19306:3 19310:1 19312:2 19319:1 19342:2 19357:1 19361:3 19364:1 19373:2 19380:1 19391:2 19397:4 19404:1 19418:1 19430:1 19431:1 19439:1 19456:1 19476:2 19481:1 19482:1 19492:1 19496:2 19498:2 19502:1 19512:4 19515:1 19529:2 19544:1 19565:1 19584:1 19595:2 19597:2 19603:1 19604:7 19626:1 19631:5 19636:1 19640:1 19647:12 19653:1 19658:2 19663:1 19664:1 19672:1 19682:1 19697:2 19698:1 19707:1 19712:3 19727:1 19734:1 19749:1 19754:1 19765:1 19774:1 19776:1 19790:32 19791:1 19794:3 19796:1 19804:2 19807:1 19811:1 19820:1 19834:1 19835:1 19843:6 19845:1 19855:1 19873:2 19877:1 19880:1 19882:1 19888:1 19913:1 19936:6 19951:1 19952:1 19956:1 19959:1 19963:1 19969:1 19970:3 19974:3 19977:4 19978:2 19983:1 19985:1 19990:1 20017:2 20021:1 20022:2 20023:4 20026:1 20032:2 20038:3 20041:2 20044:2 20046:1 20055:1 20056:1 20060:1 20062:3 20071:1 20075:2 20079:3 20080:3 20086:1 20106:2 20123:1 20125:1 20139:1 20148:1 20160:2 20190:1 20191:1 20197:2 20214:2 20217:1 20219:1 20237:1 20250:2 20255:1 20256:1 20263:1 20270:2 20276:1 20284:1 20285:3 20291:1 20299:3 20304:1 20311:1 20325:1 20351:2 20353:1 20378:2 20379:1 20392:1 20397:3 20398:2 20403:2 20413:1 20414:1 20420:1 20421:2 20424:1 20426:1 20438:4 20439:1 20473:1 20479:1 20502:1 20511:16 20518:1 20520:1 20522:1 20536:1 20550:5 20553:1 20567:1 20572:1 20573:1 20574:1 20587:1 20590:3 20591:1 20599:1 20633:1 20634:1 20638:4 20642:1 20648:1 20653:4 20656:1 20664:1 20669:1 20678:2 20681:2 20696:1 20703:3 20711:2 20724:2 20733:1 20740:1 20741:1 20742:2 20747:2 20754:1 20767:1 20770:4 20777:1 20791:1 20793:3 20794:1 20802:2 20807:1 20811:2 20819:1 20823:2 20842:3 20852:1 20853:5 20859:2 20863:5 20904:1 20905:1 20915:3 20916:3 20918:1 20924:3 20931:1 20936:1 20940:1 20941:2 20944:9 20948:2 20955:1 20956:5 20961:1 20964:1 20968:1 20976:2 20987:3 21013:1 21014:4 21015:1 21018:1 21022:2 21029:4 21035:1 21038:1 21040:5 21048:1 21061:1 21066:1 21071:1 21074:3 21075:1 21077:2 21096:1 21099:8 21102:1 21104:1 21108:31 21109:2 21110:2 21112:1 21113:3 21119:4 21121:1 21122:1 21125:1 21128:1 21131:1 21133:3 21143:1 21145:2 21146:1 21169:1 21171:13 21173:2 21192:1 21201:2 21205:1 21207:1 21209:1 21216:1 21221:3 21222:1 21223:1 21224:1 21242:2 21243:7 21244:1 21247:1 21256:1 21262:1 21267:1 21276:2 21292:3 21315:1 21320:1 21321:1 21324:2 21325:1 21329:2 21333:7 21338:1 21340:2 21344:1 21353:1 21355:3 21361:1 21373:4 21374:2 21375:2 21376:1 21377:1 21381:1 21384:4 21391:7 21403:3 21406:5 21411:1 21413:2 21415:2 21441:1 21459:2 21460:4 21465:1 21470:2 21478:1 21482:1 21487:1 21509:2 21514:2 21527:1 21528:1 21530:1 21534:1 21535:1 21536:1 21537:2 21538:2 21539:1 21540:2 21543:2 21551:1 21570:1 21572:1 21575:1 21576:1 21579:1 21580:2 21586:1 21588:1 21597:1 21598:1 21603:1 21609:2 21611:1 21622:1 21627:1 21634:2 21635:1 21639:1 21640:2 21641:1 21646:1 21647:3 21651:1 21668:1 21669:1 21703:2 21704:2 21711:9 21712:1 21721:2 21722:1 21729:1 21731:1 21750:1 21761:1 21762:1 21773:1 21778:2 21779:1 21782:4 21786:3 21795:1 21803:1 21804:2 21808:1 21826:1 21831:2 21835:2 21837:1 21838:2 21843:1 21845:2 21866:1 21877:1 21880:2 21881:1 21889:5 21894:12 21899:1 21901:1 21907:4 21912:1 21930:1 21955:1 21966:1 21970:1 21983:1 21985:1 21988:2 21990:6 21997:8 21998:3 22010:2 22014:1 22017:4 22021:10 22024:2 22025:1 22034:1 22037:1 22048:2 22065:2 22067:3 22070:2 22071:3 22085:1 22087:1 22090:1 22107:1 22108:2 22116:2 22119:1 22126:2 22135:1 22151:2 22156:1 22159:2 22160:1 22163:1 22169:1 22173:3 22183:2 22185:1 22186:2 22190:1 22194:2 22200:1 22237:1 22255:3 22268:1 22269:2 22276:3 22277:1 22309:1 22316:2 22325:1 22327:2 22330:1 22331:1 22332:1 22340:2 22341:1 22347:2 22349:5 22352:1 22353:1 22357:1 22360:5 22372:1 22384:2 22386:2 22410:1 22428:1 22437:1 22450:1 22457:1 22507:1 22539:1 22547:1 22550:1 22560:2 22584:3 22589:2 22599:1 22601:1 22602:1 22620:1 22621:1 22629:1 22636:3 22648:2 22649:1 22651:4 22662:1 22666:1 22672:5 22674:1 22675:1 22686:1 22688:1 22690:1 22709:2 22717:1 22725:2 22726:1 22731:1 22765:1 22770:1 22783:3 22787:1 22794:1 22796:3 22812:1 22829:1 22840:2 22849:1 22851:1 22877:1 22880:2 22897:1 22901:3 22905:1 22907:1 22911:1 22915:1 22928:1 22936:2 22938:1 22943:2 22956:2 22964:2 22975:2 22977:1 22982:1 22983:1 22985:8 22988:1 22997:2 23003:5 23018:2 23034:2 23061:1 23068:3 23070:2 23076:2 23081:1 23105:1 23114:1 23119:1 23141:1 23142:5 23160:2 23165:1 23188:4 23218:1 23220:1 23258:1 23263:2 23266:1 23270:1 23271:1 23274:1 23284:1 23286:6 23301:1 23306:1 23318:1 23339:1 23345:1 23348:2 23359:1 23369:1 23370:1 23371:2 23376:1 23400:2 23425:1 23426:1 23444:1 23449:1 23466:2 23468:1 23491:1 23492:1 23496:4 23498:1 23504:4
|
8a88d93a314083b5fe46240b322138c02a6619a1 | 9c1679fe9e7e3791831c4b8371a70002356d26e3 | /exp5_crl_limit_thrm.sce | 726ca88e3a236e2a511868479fb59ac5639b1eaa | [] | no_license | prajakta98/OSTC | a5947113b6ffe9da1ea3301ab3d70bb34ec3d88d | 153cf64155d1e33c54271e711c49c4c945fbe6e6 | refs/heads/master | 2020-03-24T22:49:35.118555 | 2018-10-23T04:20:18 | 2018-10-23T04:20:18 | 143,104,662 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 809 | sce | exp5_crl_limit_thrm.sce | clc ;
n = 0:0.01:1;
x = zeros ( length ( n) ,1) ;
i = 1:50; // length of Uniform random variable 1
x ( i ) = 2;
subplot (3 ,3 ,1) ;
plot (n ,x, 'bo-.')
xlabel ('PDF') ;
ylabel ('PDF of RV 1');
title ('PDF of RV 1');
y = zeros ( length ( n) ,1) ;
j = 1:50;
y ( j ) = 1*2; // length of Uniform random variable 2
subplot (3 ,3 ,2) ;
plot (n ,y, 'r-d')
xlabel ('PDF') ;
ylabel ('PDF of RV 2');
title ('PDF of RV 2');
z1 = convol (x , y ) ;
subplot (3 ,3 ,3)
plot ( z1 )
xlabel ('RV Value') ;
ylabel ('PDF')
title ('Joint PDF of RV 1 and RV 2') ;
for i = 4:9 // adding random variable 9 times
subplot (3 ,3 , i )
z1 = convol ( z1 , y );
plot ( z1 )
xlabel ('RV Value') ;
ylabel ('PDF')
title ('Joint PDF') ;
end
|
97f76edee462f8f5511f318918188755ac8ac869 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2276/CH10/EX10.1/chapter10_ex1.sce | 6588f74272d68455dfc611dc059501d92426d1a1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 435 | sce | chapter10_ex1.sce | clc
clear
//input
p=4;//number of poles of an alternator
w=50*%pi;//angular velocity in rad/sec
b=0.015;//sinusoidal flux per pole in weber
phi=10*(%pi/180);//pole pitch in radians
kf=1.11;//form factor
//calculations
f=(w*(p/2))/(2*%pi);//frequency in hertz
e=2*kf*b*f;//e.m.f. per conductor in volts
E=2*e*cos(phi/2);//total e.m.f. in volts
//ouput
mprintf('the e.m.f. between the ends of the coil is %3.1f V',E)
|
f5d78e629fc2ff6d725cc56cc89062e5bc3b7ff6 | a88bc351c907b9f0e662e251314c78a075880265 | /Scilab/Equacao de Regressao Multipla.sce | f3294f8c95804098b035bf30bc45743548072dfe | [] | no_license | decospdl/Exercise | 2ff1161f101a892ac511c62e1dce67a07606107a | 14d61a9553aab9af259edc8af504fdaa8568ec8f | refs/heads/master | 2020-05-26T15:22:22.243902 | 2019-06-13T22:55:10 | 2019-06-13T22:55:10 | 188,279,547 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 789 | sce | Equacao de Regressao Multipla.sce | clc;
clear;
close;
x1 = [-1 0 1 2 4 5 5 6]
x2 = [-2 -1 0 1 1 2 3 4]
y = [13 11 9 4 11 9 1 -1]
n = size(x1,'c')
sumX1 = sum(x1,'c')
sumX2 = sum(x2,'c')
sumX1X2 = sum(x1.*x2,'c')
sumX12 = sum(x1^2,'c')
sumX22 = sum(x2^2,'c')
sumY = sum(y,'c')
sumYX1 = sum(y.*x1,'c')
sumYX2 = sum(y.*x2,'c')
A = [n sumX1 sumX2; sumX1 sumX12 sumX1X2; sumX2 sumX1X2, sumX22]
B = [sumY; sumYX1; sumYX2]
disp(A)
disp(B)
C = A\B
disp(C)
P = poly(C,'x','coeff')
disp(P)
//inicio = -2
//fim = 6
//passo = 0.1
//index = 1
//
//for i = inicio : passo : fim
// xNovo(index) = i
// yNovo(index) = C(1)+C(2)*i+C(3)*i^2
// index = index + 1
//end
for i = 1 : n
newY(i) = C(1)+C(2)*x1(i)+C(3)*x2(i)
end
cima = sum((y - newY')^2,'c')
baixo = sum((y - mean(y))^2,'c')
R = 1 - (cima / baixo)
disp(R)
|
6521e9b114dc2b3c16ce6850dc6a6c626482e145 | 449d555969bfd7befe906877abab098c6e63a0e8 | /848/CH4/EX4.1/Example4_1.sce | 8f5b871a7b624c51a890960653403ad93b5a0371 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 651 | sce | Example4_1.sce | //clear//
//Caption: Program to find intrinsic carrier concentration
//Example4.1
//page136
clear;
close;
clc;
m = 9.11e-31; //Electron rest mass in kg
me = 0.068*m; //Effective electron mass kg
mh = 0.56*m; //Effective hole mass in kg
Eg = 1.42*1.60218e-19;//band-gap energy in volts
kB = 1.38054e-23;//Boltzma's constant
T = 300; //room temperature in kelvin
h = 6.6256e-34;//Planck's constant
K = 2*((2*%pi*kB*T/(h^2))^1.5)*((me*mh)^0.75);//characteristic constant of material
ni = K*%e^(-Eg/(2*kB*T));
disp(ni,'intrinsic carrier concentration in cubic meter')
//Result
//intrinsic carrier concentration in cube meter 2.551D+12
|
62a34cfa4c05ea20e02b90047d9501c6cd564478 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3685/CH12/EX12.8/Ex12_8.sce | 60add71441ce4e00b79c580e2afed6ac340c8d78 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 3,011 | sce | Ex12_8.sce | clc
// Part (a)
h1 = 2758 // Enthalpy at state 1 in kJ/kg
h2 = 1817 // Enthalpy at state 2 in kJ/kg
h3 = 192 // Enthalpy at state 3 in kJ/kg
h4 = 200// Enthalpy at state 4 in kJ/kg
Wt = h1-h2 // turbine work
Wp = h4-h3 // Pump work
Q1 = h1-h4 // Heat addition
Wnet = Wt-Wp // Net work doen
n1 = Wnet/Q1 // First law efficiency
WR = Wnet/Wt // Work ratio
Q1_ = 100 // Heat addition rate in MW
PO = n1*Q1_ // power output
cpg = 1000 // Specific heat capacity in J/kg
wg = (Q1_/(833-450)) // mass flow rate of gas
EIR = wg*cpg*((833-300)-300*(log(833/300)))/1000 // Exergy input
n2 = PO/EIR // Second law efficiency
printf("\n Example 12.8\n")
printf("\n Part (a)")
printf("\n The first law efficiency n1 is %f",n1*100)
printf("\n The second law efficiency n2 is %f",n2*100)
printf("\n The work ratio is %f",WR)
// Part (b)
h1b = 3398 // Enthalpy at state 1 in kJ/kg
h2b = 2130 // Enthalpy at state 2 in kJ/kg
h3b = 192 // Enthalpy at state 3 in kJ/kg
h4b = 200// Enthalpy at state 4 in kJ/kg
Wtb = 1268 // turbine work in kJ/kg
Wpb = 8 // Pump work in kJ/kg
Q1b = 3198// Heat addition rate in kW
n1b = (Wtb-Wpb)/Q1b //first law efficiency
WRb = (Wtb-Wpb)/Wtb // WOrk ratio
EIRb = 59.3 // Exergy input rate in MW
Wnetb = Q1_*n1b // net work done
n2b = Wnetb/EIRb // Second law efficiency
printf("\n Part (b)")
printf("\n The first law efficiency n1 is %f",n1b*100)
printf("\n The second law efficiency n2 is %f",n2b*100)
printf("\n The work ration is %f",WRb)
// Part (c)
h1c = 3398 // Enthalpy at state 1 in kJ/kg
h2c = 2761 // Enthalpy at state 2 in kJ/kg
h3c = 3482 // Enthalpy at state 3 in kJ/kg
h4c = 2522 // Enthalpy at state 4 in kJ/kg
h5c = 192 // Enthalpy at state 5 in kJ/kg
h6c = 200// Enthalpy at state 6 in kJ/kg
Wt1 = 637 // Turbine work in kJ/kg
Wt2 = 960 // Turbine work in kJ/kg
Wtc = Wt1+Wt2 // Net turbine work in kJ/kg
Wp = 8 // Pump work in kJ/kg
Wnetc = Wtc-Wp // net work done
Q1c = 3198+721 // Heat addition
n1c = Wnetc/Q1c// First law efficiency
WRc = Wnetc/Wtc// Work ratio
POc = Q1_*n1c// Power output
EIRc = 59.3// Exergy input in MW
n2c = POc/EIRc // Second law efficiency
printf("\n Part (c)")
printf("\n The first law efficiency n1 is %f",n1c*100)
printf("\n The second law efficiency n2 is %f",n2c*100)
printf("\n The work ration is %f",WRc)
// Part (d)
T3 = 45.8 // saturation temperature at 0.1 bar in degree celsius
T1 = 295 // saturation temperature at 80 bar in degree celsius
n1d = 1-((T3+273)/(T1+273)) // First law efficiency
Q1d = 2758-1316 // Heat addition
Wnet = Q1d*n1d // Net work output
Wpd = 8 // Pump work in kJ/kg
Wtd = 641// Turbine work in kJ/kg
WRd = (Wt-Wp)/Wt // Work ratio
POd = Q1_*0.439// Power output
EIRd = (Q1_/(833-593))*cpg*((833-300)-300*(log(833/300)))/1000 //Exergy Input rate in MW
n2d = POd/EIRd // Second law efficiency
printf("\n Part (d)")
printf("\n The first law efficiency n1 is %f",n1d*100)
printf("\n The second law efficiency n2 is %f",n2d*100)
printf("\n The work ration is %f",WRd)
//The answers vary due to round off error
|
e438a7af6f4fe3541fbe3e9b36c25a3594493c72 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1448/CH11/EX11.2.i/I11_2.sce | 5fb958456e7342e70107e8eacd58b0b974532a49 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 347 | sce | I11_2.sce | clc
//Initialization of variables
F16bP=1.9*10^-5 //mmol/L
ADP=1.3*10^-3 //mmol/L
ATP=11.4*10^-3 //mmol/L
F6P=8.9*10^-5 //mmol/L
k=1.2*10^3
//calculations
Q=F16bP*ADP/(F6P*ATP)
if(Q<k)
printf("The reaction step is far from equilibrium and Q= %.3f",Q)
else
printf("The reaction step is at equilibrium and Q= %.3f",Q)
end
|
5f079ca8aef151c9b39cc8421caeb099f3fe3d83 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2087/CH8/EX8.15/example8_15.sce | 4323818a9e71fe73785be02782ef978ac748510b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,585 | sce | example8_15.sce |
//example 8.15
//Check the stability and determine sliding factor and shear factor
clc; funcprot(0);
//Given
c=1;
miu=0.75; //coefficient of friction
H=90; //heigth of dam
wb=73.1; //width of base
Bt=7; //width of top of dam
hw=89; //heigth of water in reservior
Hs1=28; //heigth of slope on upstream side
Hs2=83; //heigth of slope on downstream side
Cm=0.735;
alphah=0.1;
gamma_m=23.5; //unit weigth of concrete
gamma_w=9.81; //unit weigth of water
theta=atan(8/28);
fi=atan(0.7);
//self weigth of dam
W1=(Hs1*8*gamma_m)/2,
W2=(Bt*H*gamma_m),
W3=(Hs2^2*0.7*gamma_m)/2,
//weigth of superimposed water
W4=(Hs1*8*gamma_w)/2,
W5=(hw-Hs1)*8*gamma_w,
U=hw*wb*2*gamma_w/6; //uplift force
wp=hw^2*gamma_w/2; //water pressure
hp=0.726*Cm*alphah*gamma_w*hw^2; //hydrodynamic pressure
Mhp=0.299*Cm*alphah*gamma_w*hw^3; //moment due to hydrodynamic pressure
//inertial load due to horizontal acceleration
I1=W2/10;
I2=W3/10;
I3=W1/10;
SumV=W1+W2+W3+W4+W5-U;
SumH=wp+hp+I1+I2+I3;
L1=(wb-8)+8/3,
L2=(0.7*Hs2)+(Bt/2),
L3=(2*Hs2*0.7)/3,
L4=(wb-8)+(2*8)/3,
L5=(wb-8)+(8/2),
L6=hw/3;
L7=2*wb/3;
M1=W1*L1,M2=W2*L2,M3=W3*L3,M4=W4*L4;
M5=W5*L5;
M6=wp*L6;
M7=U*L7;
M8=I1*45;
M9=I2*83/3;
M10=I3*28/3;
Mplus=M1+M2+M3+M4+M5;
Mminus=M6+M7+M8+M9+M10+Mhp;
SumM=Mplus-Mminus;
x=SumM/SumV;
e=wb/2-x;
pnt=(SumV/wb)*(1+(6*e/wb));
pnh=(SumV/wb)*(1-(6*e/wb));
sigmat=pnt*sec(fi)^2;
p=hw*gamma_w;
pe=Cm*alphah*gamma_w*hw;
sigmah=pnh*sec(theta)^2-(p+pe)*tan(theta)^2;
taut=pnt*tan(fi);
tauh=-(-pnh-(p+pe))*tan(theta);
mprintf("Normal stress at toe=%i kN/square.m.",pnt);
mprintf("\nNormal stress at heel=%i kN/square.m.",pnh);
mprintf("\nPrincipal stress at toe=%i kN/square.m.",sigmat);
mprintf("\nPrincipal stress at heel=%i kN/square.m.",sigmah);
mprintf("\nShear stress at toe=%i kN/square.m.",taut);
mprintf("\nShear stress at heel=%i kN/square.m.",tauh);
FOS=miu*SumV/SumH;
SFF=(miu*SumV+wb*1400)/SumH;
FOO=Mplus/Mminus;
Ffi=1.2;Fc=2.4;
F=(miu*SumV/Ffi+1400*wb/Fc)/SumH;
FOS=round(FOS*100)/100;
F=round(F*100)/100;
SFF=round(SFF*100)/100;
FOO=round(FOO*100)/100;
mprintf("\n\nFactor of safety against sliding as per IS:6512-1972=%f. <1.5",FOS);
mprintf("\nFactor of safety against sliding as per IS:6512-1984=%f. >1",F);
mprintf("\nShear friction factor=%f. <6",SFF);
mprintf("\nFactor of safety against overturning=%f. <1.5",FOO);
mprintf("\n\nDam is unsafe for given loading conditions");
|
5ffd2b68a4347327807b9f80a9cb4ffc88d4c03a | 449d555969bfd7befe906877abab098c6e63a0e8 | /29/DEPENDENCIES/series.sce | 0f9ff15bd4ea6eaf1469cc330591a7ef3fa13c72 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 62 | sce | series.sce | function [y] = series (sys1,sys2)
y = sys1*sys2
endfunction |
20944426a63ee8e9b46f0d3ba5b14ec1eda383a6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /42/CH8/EX8.1/sadiku_8_1.sce | 2d37b2dfe58ec5b7c8a860ade3cbd91a0dee9372 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 190 | sce | sadiku_8_1.sce | clear;
clc;
m=2,q=3,v=[4 0 3],E=[12 10 0],t=1;
disp(q*E/m,'Acceleration ofthe particle= ');
u=[22 15 3];
modofu=sqrt(22*22+15*15+3*3);
KE=.5*m*(modofu)^2;
disp(KE, 'Kinetic energy= ') |
5336ea66858a22e098f7f0727f3f4613a378eedb | 449d555969bfd7befe906877abab098c6e63a0e8 | /3751/CH7/EX7.10/Ex7_10.sce | 283f7c48a6daa894fd92aa36636ff220eba1c92c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 691 | sce | Ex7_10.sce | //Fluid Systems- By Shiv Kumar
//Chapter 7- Performance of Water Turbine
//Example 7.10
// To Calculate Speed and Power Developed by the Prototype when working Under a Head of 8 m.
clc
clear
//Given:-
Lr=1/5; //Scale Ratio
DmbyDp=Lr;
//For Prototype
Hp=8; //Head, m
//For Model
Pm=5; //Power, kW
Hm=2; //Head, m
Nm=600; //rpm
//Computations
Np=Nm*DmbyDp*(Hp/Hm)^(1/2); //rpm
Pp=Pm*(Np/Nm)^3/(DmbyDp^5); //KW
//Results
printf("For the Prototype (Working Under a Head of 8 m:\n")
printf(" Speed, Np=%.f rpm\n Power Developed, Pp=%.f kW",Np,Pp)
|
07e2e6b68dca1a5e6868de6536131fb7c2dd82bb | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/GFS-GCCL-C/results/GFS-GCCL-C.abalone-10-1tra/result0s0.tst | f4fbf7c42c487c24df39a85edef806124ed42be2 | [] | no_license | nickgreenquist/Intro_To_Intelligent_Systems | 964cad20de7099b8e5808ddee199e3e3343cf7d5 | 7ad43577b3cbbc0b620740205a14c406d96a2517 | refs/heads/master | 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,542 | tst | result0s0.tst | @relation abalone
@attribute Sex{M,F,I}
@attribute Length real[0.075,0.815]
@attribute Diameter real[0.055,0.65]
@attribute Height real[0.0,1.13]
@attribute Whole_weight real[0.002,2.8255]
@attribute Shucked_weight real[0.001,1.488]
@attribute Viscera_weight real[5.0E-4,0.76]
@attribute Shell_weight real[0.0015,1.005]
@attribute Rings{15,7,9,10,8,20,16,19,14,11,12,18,13,5,4,6,21,17,22,1,3,26,23,29,2,27,25,24}
@inputs Sex,Length,Diameter,Height,Whole_weight,Shucked_weight,Viscera_weight,Shell_weight
@outputs Rings
@data
19 9
9 9
10 10
15 10
7 8
6 6
14 10
15 10
15 9
10 9
9 8
14 9
4 4
13 9
8 9
5 6
14 9
9 9
10 9
9 7
11 9
6 6
9 8
14 9
6 6
6 9
10 8
14 9
8 8
5 6
11 9
5 6
7 6
12 8
14 10
14 9
22 9
20 11
13 11
18 11
17 11
16 11
20 11
11 10
10 9
7 8
16 10
13 9
12 10
21 10
11 10
23 10
10 8
11 8
17 9
13 9
4 7
13 10
9 9
7 6
18 10
19 9
8 7
15 9
5 6
6 6
15 9
11 8
12 9
8 7
10 8
6 6
6 6
7 9
7 7
7 9
8 8
8 9
10 9
9 9
12 9
11 10
10 11
5 6
7 6
6 7
6 8
8 9
8 8
7 9
9 9
8 9
8 9
11 9
9 9
9 10
12 11
3 7
4 6
5 6
7 8
7 8
6 8
8 9
8 9
9 9
8 9
8 9
9 9
8 10
10 10
10 10
11 10
12 11
10 11
7 6
9 9
6 8
9 8
7 8
9 9
9 9
9 9
8 9
10 9
10 10
9 10
10 9
10 10
10 10
12 10
10 10
10 11
7 8
8 9
8 9
9 11
9 9
9 9
10 9
9 10
11 11
11 10
10 10
10 11
6 7
7 9
8 8
7 8
8 8
8 8
7 8
9 8
10 8
11 9
9 9
8 9
8 9
7 10
12 10
12 10
9 10
10 10
10 10
12 10
9 10
14 11
11 10
13 10
10 11
11 11
10 11
12 11
8 9
8 9
11 10
10 10
5 4
7 8
8 8
7 8
8 8
8 8
9 8
8 9
8 9
8 9
9 9
7 9
10 9
13 9
10 9
10 9
11 9
9 9
10 9
9 9
11 10
10 10
11 10
10 10
9 10
10 11
10 10
5 7
6 6
7 6
6 7
8 8
10 9
8 8
7 8
8 8
11 10
9 9
10 11
10 9
7 8
27 11
7 9
10 9
19 11
9 9
6 4
9 8
15 10
13 10
8 8
16 10
13 9
13 10
11 10
13 11
14 9
13 10
8 9
10 8
10 9
12 9
9 8
17 9
12 8
11 8
14 9
15 9
11 9
16 9
12 9
8 9
15 9
7 8
6 8
8 8
9 9
6 9
6 9
6 8
8 8
10 10
9 11
11 10
7 8
8 9
9 9
9 9
9 10
10 10
9 10
10 10
9 10
7 7
8 9
8 9
6 8
7 8
11 8
11 10
8 8
11 11
12 11
10 11
4 6
7 6
8 8
9 9
9 9
8 9
10 9
11 10
9 10
13 10
12 11
9 8
13 10
9 9
9 10
9 8
8 8
11 9
11 9
9 9
11 9
10 9
12 9
9 10
9 10
7 9
6 7
11 9
18 9
17 10
17 10
10 10
12 8
12 10
14 10
15 11
15 10
9 9
12 10
11 8
16 9
16 8
12 9
17 9
10 8
10 8
13 8
13 9
18 9
9 9
13 8
8 9
6 8
9 9
11 10
4 6
9 10
11 11
11 11
7 8
7 8
8 9
8 9
9 9
10 10
11 11
7 7
8 8
8 9
11 10
10 10
11 10
12 11
7 8
10 10
6 6
5 6
6 9
9 9
9 9
9 9
10 10
11 10
11 10
7 6
7 9
10 9
9 10
5 6
8 8
9 9
11 10
11 11
13 11
9 8
12 10
8 6
10 11
12 11
14 8
7 8
8 9
9 9
6 9
9 8
9 6
16 10
12 9
11 9
10 9
13 9
15 9
14 9
13 9
9 11
4 6
6 9
10 10
11 11
5 6
10 9
9 9
8 10
10 9
11 9
12 9
10 11
8 8
11 9
11 10
9 9
11 9
11 10
13 10
7 9
10 8
8 9
|
11ae897906032939cb365033d3179fb95baabedd | 449d555969bfd7befe906877abab098c6e63a0e8 | /2081/CH12/EX12.12/Ex12_12.sce | 0d4fe6050260916cf5677ede5a1c4fdbb2be9d2a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 140 | sce | Ex12_12.sce | N=(2^42-1)
TDR=19200//transmission data rate
t=N/TDR;
printf('time taken to transit the complete long code= %.2f years',(t/(60*60*24*365)))
|
503f03aecd8267ffe4a144b7e1312bdc9573a220 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3751/CH17/EX17.18/Ex17_18.sce | 9a53a4acf99e670ea774eb9bd7eb030cd8296eee | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,387 | sce | Ex17_18.sce | //Fluid Systems - By Shiv Kumar
//Chapter 17- Dimensional and Model Analysis
//Example 17.18
//To Find the Velocity and Rate of Flow in the Model.
clc
clear
//Given:-
//For Model ( Working Fluid is Water),
Dm=150; //Diameter of Pipe, mm
mu_m=0.01; //Viscosity of Water, Poise
//For Prototype ( Working Fluid is Oil),
Dp=1.5; //Diameter, m
Sp=0.9; //Specific Gravity of Oil
mu_p=3*10^-2; //Viscosity of Oil, Poise
Qp=3000; //Discharge of Oil, Litres/sec
//Data Required:-
rho_m=1000; //Density of Water, Kg/m^3
//Computations:-
Dm=Dm/1000; //m
Qp=Qp/1000; //m^3/s
Ap=(%pi/4)*Dp^2; //m^2
Am= (%pi/4)*Dm^2 ; //m^2
Vp=Qp/Ap; //m/s
rho_p=Sp*rho_m; //Kg/m^3
//From Reynold's Law of Similarity,
Vm=Vp*(Dp/Dm)*(mu_m/mu_p)*(rho_p/rho_m); //Velocity of Water in Model, m/s
Qm=Am*Vm*1000; //Rate of Flow in Model, Litres/sec
//Results:-
printf("The Velocity in the Model, Vm=%.3f m/s\n",Vm) //The Answer Vary due to Round off Error
printf("The Rate of Flow in the Model, Qm=%.2f Litres/sec\n",Qm) //The Answer Vary due to Round off Error
|
fc2efd75a90e948cb37ec0c06623b766e33d0423 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2777/CH4/EX4.10/Ex4_10.sce | 359b3c93cc7643d898f65d86405ded772bee8390 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,365 | sce | Ex4_10.sce |
// ELECTRICAL MACHINES
// R.K.Srivastava
// First Impression 2011
// CENGAGE LEARNING INDIA PVT. LTD
// CHAPTER : 4 : DIRECT CURRENT MACHINES
// EXAMPLE : 4.10
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
p = 6; // Number of the Poles
P = 100 * 10 ^ 3; // Power rating of the DC machine in KiloWatts
V = 440; // Voltage rating of the DC machine in Volts
Z = 500; // Total number of the Armature Conductor
Ig = 1.0 * 10 ^ -2; // Interpolar Air gap in Meter
Bi = 0.28; // Interpolar Flux Densist in Weber per Meter-Square
mue_0 = 4*%pi*10^ -7; // Permeability of the air in Henry/Meter
// CALCULATIONS
Ia = P/V; // Full load current in Amphere
a = p; // Number of the Parallel path (Equal to p because LAP WINDING)
ATi = (Z*Ia)/(2*a*p)+((Bi*Ig)/mue_0); // Amphere turns for each Interpole
Nc = ATi/Ia; // Number of turns per pole of interpole
// DISPLAY RESULTS
disp("EXAMPLE : 4.10 : SOLUTION :-") ;
printf("\n (a) Amphere turns for each Interpole, ATi = %.2f AT \n",ATi);
printf("\n (b) Number of turns per pole of interpole, Nc = %.2f turns per pole nearly %.f turns per pole \n",Nc,Nc);
|
d52be0aba7208ef578e8cdad96dc0f581894b03e | 449d555969bfd7befe906877abab098c6e63a0e8 | /48/CH1/EX1.2/eg_1_2.sce | 5f876c25049f55f20a2c0bbea7fd201a582f68c5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,265 | sce | eg_1_2.sce | clc;//clears the command window
clear;//clears all the variables
i=1;w=1;
bin=1101.01;//Given binary number which we need to be convert into decimal
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 decimal digit in vector for convenience
q(w)=modulo(temp2,2);
temp2=(temp2/10);
temp2=floor(temp2);
w=w+1;
end
temp1=0;//flag bit
for i=1:length(p)//checking whether it is a binary number or not
if(p(i)>1) then
disp('not a binary number');
abort;
end
end
for i=1:length(p)
//multipliying bits of integer part with their position values and adding
temp1=temp1+(p(i)*2^(i-1));
end
temp2=0;//flag bit
for z=1:length(q)
//multipliying 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.
disp(temp);//displaying the output
|
d3816ffe432969c58116ee60d89d2d466f725015 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1859/CH3/EX3.11/exa_3_11.sce | 369c3364e78d9a49f84cbb2da2212b9e0575ad4d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 815 | sce | exa_3_11.sce | // Exa 3.11
clc;
clear;
close;
// Given data
Rm= 40;// in ohm
Im= 1;// in mA
// For switch at position 1 (lowest range of 10 mA)
I=10;// in mA
N1= I/Im;
R1= Rm/(N1-1);// in ohm
// For switch at position 2 (range of 20 mA)
I=20;// in mA
N2= I/Im;
R2= (R1+Rm)/N2;// in ohm
// For switch at position 3 (range of 30 mA)
I=30;// in mA
N3= I/Im;
R3= (R1+Rm)/N3;// in ohm
// For switch at position 4 (range of 40 mA)
I=40;// in mA
N4= I/Im;
R4= (R1+Rm)/N4;// in ohm
// For switch at position 5 (range of 50 mA)
I=50;// in mA
N5= I/Im;
R5= (R1+Rm)/N5;// in ohm
r1= R1-R2;// in ohm
r2= R2-R3;// in ohm
r3= R3-R4;// in ohm
r4= R4-R5;// in ohm
r5= R5;// in ohm
disp("Resistance of the various sections of the Ayrtons shunt in ohm are: ")
disp(r1);
disp(r2);
disp(r3);
disp(r4);
disp(r5);
|
87d46c61b40850cf9a98cd4b99bb90f6a4e13904 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3831/CH3/EX3.3/Ex3_3.sce | ec925fed786781b86bb1d81233341ca209474eb9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 335 | sce | Ex3_3.sce | // Example 3_3
clc;funcprot(0);
// Given data
u=82.77;// The specific internal energy in kJ/kg
v=0.0009928;// The specific volume of liquid water in m^3/kg
T=20.0;// °C
P=20.0;// MPa
// Solution
h=u+(P*10^3*v);// The specific enthalpy of the water in kJ/kg
printf('\n The specific enthalpy of the water,h=%3.0f kJ/kg',h);
|
55c67f44353ea32c1dfad32737e39f9d5473ea83 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2471/CH11/EX11.4/Ex11_4.sce | 4fd2252ae4ce1acf3040fb195d9c27e6b0e7ab78 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 410 | sce | Ex11_4.sce | clear ;
clc;
// Example 11.4
printf('Example 11.4\n\n');
printf('Page No. 316\n\n');
//given
Cm_S = 10000;// Company saving in Pound per annum
S = Cm_S/12;// Saving in Pound per months
Ca_C = 10500;// Capital cost in Pound
Ins_C = 7500;// Installation cost in Pound
T_C = Ca_C + Ins_C;// Total cost in Pound
T = T_C/S;// pay-back time in months
printf('The pay-back period was %.0f months\n',T)
|
aa2bda53297041bc2587ee5b71badfdc58e430a8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2282/CH5/EX5.5/ex5_5.sce | 66a2a8d4ff4f7b3becfe578738e12a88da3e8219 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 395 | sce | ex5_5.sce | // Example 5.5, page no-190
clear
clc
//comparing given equation with stanard equation
m=6 //Modulation Index
wc=7.8*10^8 //unmodulated carrier frequency
wm=1450 //Modulating frequency
fc=wc/(2*%pi)
fm=wm/(2*%pi)
printf("Unmodulated carrier frequency, fc = %.2f MHz \n The modulation index m = %d \n Modulating frequency, fm = %.2f Hz",fc/10^6,m,fm)
|
0b1357da80439f1c8f208683be7402d337103f81 | c8e1f3497e421ab8171304b956b541392620b46c | /intlinprog-optimization-algorithm/Example1.sce | 12eedd89261fe7aaca5ddf25b9d9105c9a5488f6 | [] | no_license | Prankurtiwari/Optimization-FOSSEE-project | 73ef60cb45aa1084cd0f22d14fdbd181299b3a1a | b5f0f39542e70aacdf361bdb98ceff75861b70d3 | refs/heads/master | 2022-06-24T11:57:53.047101 | 2020-05-05T14:42:26 | 2020-05-05T14:42:26 | 261,466,839 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,848 | sce | Example1.sce | //Problem to test intlinprog
//Problem taken from Higher Engineering Mathematics by B.S.Grewal 43rd Edition 2015
//A firm making castings uses electric furnace to melt iron with the following : Carbon(min=3.2%,max=3.4%),Silicon(min=2.25%,max=2.35%)
//Specifications and costs of various raw materials used for this purpose are: Steel scrap(Carbon(0.4%),Silicon(0.15%),Cost(Rs.850/tonne)),Cast Iron Scrap(Carbon(3.8%),Silicon(2.4%),Cost(Rs. 900/tonne),Remelt from foundry(carbon(3.5%),Silicon(2.3%),Cost(Rs. 500/tonne))....If the total charge of iron metal required is 4 tonnes,find the weight in kg of each raw material that can be used in the optimal mix of minimum cost.
//CODE TO TEST THE FUNCTION
clc()
//FIrst,user is asked to enter number of variables(nbVar) and number of constraints(nbCon)
nbvar=input("Enter the number of variables")
mprintf("Enter the coefficient of the variables")
for i=1:nbvar
c(i)=mscanf("%f");
end
//c=[0.85 0.9 0.5]';
nbcon=input("Enter the number of inequality constraint")
for i=1:nbcon
mprintf("Enter the coefficient of the variables for %0.1f constraint",i)
for j=1:nbvar
A(i,j)=mscanf("%f")
end
end
//A=[-0.4,-3.8,-3.5;0.4,3.8,3.5;-0.15,-2.41,-2.35;0.15,2.41,2.35];
mprintf("Enter the right side of the inequalities")
for i=1:nbcon
b(i)=mscanf("%f")
end
//b=[128*100,136*10,90*100,94*100];
lb=repmat(0,1,3);
ub=[];
nbecon=input("Enter the number of equality constraint")
for i=1:nbecon
mprintf("Enter the coefficient of the variables for %0.1f constraint",i)
for j=1:nbvar
A(i,j)=mscanf("%f")
end
end
//Aeq = [1,1,1];
mprintf("Enter the right side of the equalities\n")
for i=1:nbecon
beq(i)=mscanf("%f")
end
//beq=[40*100];
intcon = [1,2,3];
[x,f,status,output] = intlinprog(c',intcon,A,b,Aeq,beq,lb,ub)
mprintf("THE OPTIMAL VALUE OF Xs IS:")
disp(x);
mprintf("THE OPTIMAL VALUE OF OBJECTIVE FUNCTION AT THOSE X IS:")
disp(f);
//OUTPUT
//Enter the number of variables3
//Enter the coefficient of the variables
//-->0.85
//-->0.9
//-->0.5
//Enter the number of inequality constraint4
//Enter the coefficient of the variables for 1.0 constraint
//-->-0.4
//-->-3.8
//-->-3.5
//Enter the coefficient of the variables for 2.0 constraint
//-->0.4
//-->3.8
//-->3.5
//Enter the coefficient of the variables for 3.0 constraint
//-->-0.15
//-->-2.41
//-->-2.35
//Enter the coefficient of the variables for 4.0 constraint
//-->0.15
//-->2.41
//-->2.35
//Enter the right side of the inequalities
//-->12800
//-->13600
//-->9000
//-->9400
//Enter the number of equality constraint1
//Enter the coefficient of the variables for 1.0 constraint
//-->1
//-->1
//-->1
//Enter the right side of the equalities
//-->4000
//THE OPTIMAL VALUE OF Xs IS:
// 130.
// 0.
// 3870.
//THE OPTIMAL VALUE OF OBJECTIVE FUNCTION AT THOSE X IS:
// 2045.5
|
fa3adb67e84cb5bbd67d734c48db25df02c45a5e | 8b33899f15bd0509e32f6c06319b7b1557c745f5 | /c15.sci | c5b202496a519cd6d8c440c0e7a04017a2175d1b | [] | no_license | c00kiemon5ter/NumericalAnalysis | fd162663f6a9a4cc6c648e41a1412fa71e83a75c | 1ff51ff805017100ebb87a98b5fef7acca3d0692 | refs/heads/master | 2021-01-01T19:15:21.559444 | 2014-06-25T09:39:25 | 2014-06-25T09:39:25 | 8,290,126 | 1 | 1 | null | 2014-06-25T09:39:25 | 2013-02-19T12:51:16 | Scilab | UTF-8 | Scilab | false | false | 2,719 | sci | c15.sci | // Exercise C15
// ------------
// For the function f(x)= sin(x) find the following splines
// 1) linear set by the points (4, f(4) and (6, f(6))
// 2) linear set by the points (4.5, f(4.5) and (5.5, f(5.5))
// 3) cubic set by the points (4, f (4), (4.5, f(4.5),(5.5, f(5.5)) and (6, f(6))
// 4) the hermite polynomial in the points (4, f(4)), (4, f′(4)), (6, f(6)) and (6, f′(6))
// 5) the hermite polynomial in the points (4.5, f(4.5)), (4.5, f′(4.5)), (5.5, f(5.5)) and (5.5, f ′(5.5))
// for each of those calculate the error for x=5 for the space [4.6]
// ---------------------------------------------------------
function y = linearA(x)
y = f(4) + (f(6) - f(4)/(6-4))*(x - 4);
endfunction
// ---------------------------------------------------------
function y = linearB(x)
y = f(4.5) + (f(5.5) - f(4.5)/(5.5-4.5))*(x - 4.5);
endfunction
// ---------------------------------------------------------
function y = f(x)
y = sin(x);
endfunction
// ---------------------------------------------------------
function y = def(x) //the derivative of f
y = cos(x);
endfunction
// ---------------------------------------------------------
function ci=cubicinterpolation(x)
ci= -0.7568025 - 0.4414552*(x-4)+0,47563*((x^2)-8.5*x+18)-0.0443951*((x^3)-14*(x^2)+18*x-52.25);
endfunction
// ---------------------------------------------------------
function hp=hermite1(x)
//p= f(4.5)*(1+2*(x-4.5))*(x^2-9*x+(4.5)^2) + def(4.5)*(x-4.5)*(x^2-9*x+(4.5)^2) + f(5.5)*(1-2*(x-5.5))*(x^2-11*x+(5.5)^2) + def(5.5)*(x-5.5)*(x^2-11*x+(5.5)^2) ;
for i=1:length(x) // for all the spots of the polynomial calculate the result of the hermite polynomial
h01=(1-(x(i)-4))*((x(i)^2 - 8*x(i)+16)/4); //calculate the Hi1 and Hi2
h02=(x(i)-4)*((x(i)^2-8*x(i)+16)/4);
h12=(1-(x(i)-6))*((x(i)^2-12*x(i)+36)/4);
h22=(x(i)-6)*((x(i)^2-12*x(i)+36)/4);
hp(i)=f(4)*h01 + def(4)*h02+ f(6)*h12 + def(6)*h22;
end
endfunction
// ---------------------------------------------------------
function p=hermite2(x)
for i=1:length(x)
h01=(1-2*(x(i)-4.5))*(x(i)^2-9*x(i)+(4.5)^2);
h02=(x(i)-4.5)*(x(i)^2-9*x(i)+(4.5)^2);
h12=(1-2*(x(i)-5.5))*(x(i)^2-11*x(i)+(5.5)^2);
h22=(x(i)-5.5)*(x(i)^2-11*x(i)+(5.5)^2);
p(i)= f(4.5)*h01 + def(4.5)*h02 + f(5.5)*h12 + def(5.5)*h22 ;
end
endfunction
// ---------------------------------------------------------
// Results:
// For each function the error is Q(x)= Sin(x)- P(x) where P(x) is
// the polynomial that approaches it's true value. So the max error is
// calculated from the derivative of Q(x).
// The max errors are:
// 1) 0.2794155
// 2) 0.3567225
// 3) 1.3602974
// 4) 2.0017846
// 5) 8.4472365
|
e3bb564ebe413d9bdfd71a8fc9727c99ab6afc5f | 449d555969bfd7befe906877abab098c6e63a0e8 | /62/CH5/EX5.43/ex_5_43.sce | 483b1582c5c76b1f1e4c203e4a3a88f88996b5b8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 616 | sce | ex_5_43.sce | clear;
clc;
close;
a=.5;
t=-10:0.1:10;
x=exp(-a*t.*t);
disp("guassian pulse signal x(t)=exp(-a*t^2)");
disp("X(w)=integral(exp(-a*t^2)*exp(-%i*w*t)) w.r.t dt");
disp("d(X(w))/dw=-%i*w/(2*a)*integral(exp(-a*t^2)*exp(-%i*w*t))");
disp("d(X(w))/dw=-w*X(w)/2a");
disp("solving this we get X(w)=A*exp(-w^2/4a)")
disp("A=sqrt(%pi/a)");
d=gca()
plot(t,x);
poly1=d.children.children;
poly1.thickness=3;
poly1.foreground=2;
xtitle('x(t)','t')
A=sqrt(%pi/a);
w=t;
Xw=A*exp(-w.*w/(4*a));
figure
d=gca()
plot(w,Xw);
poly1=d.children.children;
poly1.thickness=3;
poly1.foreground=2;
xtitle('X(w)','w') |
e73d7c40d6fe98aa73f3fbf981aec349781fb12c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2609/CH6/EX6.5/Ex6_5.sce | 6d4288587549eafdf882cc96742265ccbe648ef4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 515 | sce | Ex6_5.sce | //Ex 6.5
clc;
clear;
close;
format('v',5);
f0=2;//kHz//Oscillating Frequency
disp("Various design parameters are :-");
C=0.05;//micro F//Chosen for the design
disp(C,"Capacitance(micro F)");
R=1/(2*%pi*f0*1000*C*10^-6);//ohm
R=R/1000;//kohm
disp(R,"Resistance R(kohm)");
format('v',5);
Ri=3*R/2;//kohm//Ri>=3*R/2
format('v',4);
disp(Ri,"Resistance Ri(kohm)");
disp("We can use Ri=2.2 kohm for design purpose.")
Rf=2*Ri;//kohm
disp(Rf,"Resistance Rf(kohm)");
disp("We should use 5k pot for Rf.")
|
bc2dd2d82c38162a3725583c2cadf1e08dbb4c52 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1163/CH6/EX6.4/example_6_4.sce | 5dad02fda6e817d88697e64e6fd47c0566bd2755 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 480 | sce | example_6_4.sce | clear;
clc;
disp("--------------Example 6.4---------------")
band= 25*10^6; // each band is 25 MHz
bandwidth= 30 *10^3; // Each user has a bandwidth of 30 kHz in each direction.
control_channels=42; // 42 channels are used for control
channels=floor((band/bandwidth)-1); // number of channels
user_channels=channels-control_channels; // number of channels available for users
printf("%d channels are available for cellular phone users.",user_channels); // display result
|
114a1b69add5d03140018068b0dc202154c292d7 | 8aec1c6ba51a46c88d134402e560bedd178060ba | /MRI_mTBI/PVSAT.sce | 6e3a9e5e99ce6d32b058f8e5cab11b84aefaa56b | [] | no_license | phildean/PVSAT | 23f6c33e61c4a2a85b1f7939444492d14ef27189 | f37380fca2fca35ca3cfc2a67d0b8d1c4285c32e | refs/heads/master | 2020-04-04T17:49:59.346471 | 2018-11-05T11:23:43 | 2018-11-05T11:23:43 | 156,137,895 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,406 | sce | PVSAT.sce | scenario = "PVSAT_25/04/08";
pcl_file = "PVSAT_Main.pcl";
response_matching = simple_matching;
default_font_size = 48;
default_font = "Arial";
default_background_color = 0,0,0;
default_text_color = 150,150,150;
active_buttons = 5;
button_codes = 1,2,3,4,5;
write_codes = true;
pulse_width = 20;
stimulus_properties = trial_code, string, number, string, is_target, string;
event_code_delimiter = ",";
begin;
#PVSAT Introduction Screens
text{caption = "Paced Serial Visual Addition Task\n\nYou will be presented with a series of numbers.\nYour task is to add the number currently presented\nwith the number presented immediately prior to it.\n\nIf this sum equals an amount specified at the beginning of\nthe block, then you are asked to press the target button,\notherwise press the non-target button\n\nThe numbers will be presented at either\n1, 1.5, 2 or 2.5 second intervals"; font_size =20; } IntroScreen;
text{caption = "If the target sum was 10, then a sequence:\n\n[5 > 7]\n\nadded together equals 12. This is not the target\nsum, so respond using the non-target button\n\nHowever as the sequence continues:\n\n5 > [7 > 3]\n\nthe next addition equals 10,\nso respond using the target button."; font_size =20; } IntroScreen2;
#PVSAT Block Descriptions
text{caption = "Numbers will be presented every\n\n1 Second\n\nPress the target button when the sum is"; font_size = 25;}BeginBlock_1_Second;
text{caption = "Numbers will be presented every\n\n1.5 Seconds\n\nPress the target button when the sum is"; font_size = 25;}BeginBlock_1_5_Second;
text{caption = "Numbers will be presented every\n\n2 Seconds\n\nPress the target button when the sum is"; font_size = 25;}BeginBlock_2_Second;
text{caption = "Numbers will be presented every\n\n2.5 Seconds\n\nPress the target button when the sum is"; font_size = 25;}BeginBlock_2_5_Second;
text{caption = "<num>"; font_size = 30;}Target_Sum;
text{caption = "Press a button to continue"; font_size = 25;}Press_Button;
text{caption = "The first number presented is a non-target"; font_size = 25;} First_Number;
#Second start screen
text{caption = "1 Second\n\nTarget Sum:"; font_size = 30;}Start1Sec;
text{caption = "1.5 Seconds\n\nTarget Sum:"; font_size = 30;}Start1_5Sec;
text{caption = "2 Seconds\n\nTarget Sum:"; font_size = 30;}Start2Sec;
text{caption = "2.5 Seconds\n\nTarget Sum:"; font_size = 30;}Start2_5Sec;
text{caption = "<num>"; font_size = 35;}StartPVSAT2;
text{caption = "Press a button to start"; font_size = 30;}StartPVSAT3;
# Reminder in top right corner of screen as experiment runs
text{caption = "Target: 9"; font_size = 15;}Info9PVSAT;
text{caption = "Target: 10"; font_size = 15;}Info10PVSAT;
text{caption = "Target: 11"; font_size = 15;}Info11PVSAT;
#blank screen with crosshairs
text{caption = "+"; font_size = 48; }Crosshair;
#General Text for Running Experiment
text{caption = "Please keep your eyes fixed\non the centre of the screen"; font_size = 25;}Pretrial;
text{caption = "!! Please take a break !!\nExperiment has been paused by the experimenter"; font_size = 25;}Pause; # T 50
text{caption = "When you are ready to continue press a button"; font_size = 25; }Continue;
text{caption = "End of Block:"; font_size = 25;}Block; # T 60
text{caption = "<num>"; font_size = 25;}BlockNumber; # The <num> is overwritten by PCL
text{caption = "Percent correct:"; font_size = 25;}PercentText;
text{caption = "<num>"; font_size = 25;}PercentCorrect; # The <num> is overwritten by PCL
# Blank Screen
trial{
trial_duration = 20000;
all_responses = false;
picture {
text Crosshair;
x = 0; y = 0;
};
deltat = 25;
duration = 19975;
code = "Blank Screen";
} BlankScreen;
# Resume trial
trial{
trial_duration = forever;
trial_type = first_response;
all_responses = true;
picture {
text Continue;
x = 0; y = 0;
};
code = "Cont";
}ResumeTrial;
# Pause trial
trial{
trial_duration = forever;
trial_type = first_response;
all_responses = true;
picture {
text Pause;
x = 0; y = 0;
};
deltat = 25;
code = "Pause";
port_code = 50;
}PauseTrial;
# End of block trial
trial{
trial_duration = forever;
trial_type = first_response;
all_responses = true;
picture {
text Block;
x = 0; y = 100;
text BlockNumber;
x = 0; y = 50;
text PercentText;
x = 0; y = 0;
text PercentCorrect;
x = 0; y = -50;
text Continue;
x = 0; y = -100;
};
deltat = 25;
code = "EndBl";
port_code = 60;
}EndTrial;
#Introduction Code
TEMPLATE "PreIntroScreen.tem" {
stext scode IntroName;
IntroScreen "Pre Intro Screen" PreIntro1;
IntroScreen2 "Pre Intro Screen 2" PreIntro2;
};
TEMPLATE "IntroScreen.tem" {
stext scont scode IntroName;
IntroScreen Press_Button "Intro Screen" Intro1;
IntroScreen2 Press_Button "Intro Screen 2" Intro2;
};
TEMPLATE "StartScreen.tem" {
stext scode IntroName;
Start1Sec "Start 1 Sec" Start1Second;
Start1_5Sec "Start 1.5 Sec" Start1_5Second;
Start2Sec "Start 2 Sec" Start2Second;
Start2_5Sec "Start 2.5 Sec" Start2_5Second;
};
# Beginning of Block
TEMPLATE "PreBeginBlock.tem" {
sbeginblock scodebeginblock PreIntroEvent eventbeginblock;
BeginBlock_1_Second "Pre Intro 1 PVSAT" PreBegin1SecEvent PreBlock1;
BeginBlock_1_5_Second "Pre Intro 1.5 PVSAT" PreBegin1_5SecEvent PreBlock1_5;
BeginBlock_2_Second "Pre Intro 2 PVSAT" PreBegin2SecEvent PreBlock2;
BeginBlock_2_5_Second "Pre Intro 2.5 PVSAT" PreBegin2_5SecEvent PreBlock2_5;
};
TEMPLATE "BeginBlock.tem" {
sbeginblock scodebeginblock eventbeginblock;
BeginBlock_1_Second "Intro 1 PVSAT" Block1;
BeginBlock_1_5_Second "Intro 1.5 PVSAT" Block1_5;
BeginBlock_2_Second "Intro 2 PVSAT" Block2;
BeginBlock_2_5_Second "Intro 2.5 PVSAT" Block2_5;
};
# Arrays for 9, 10 and 11 trials
array {
text { caption = "1"; description = "1"; } one;
text { caption = "2"; description = "2"; };
text { caption = "3"; description = "3"; };
text { caption = "4"; description = "4"; };
text { caption = "5"; description = "5"; };
text { caption = "6"; description = "6"; };
text { caption = "7"; description = "7"; };
text { caption = "8"; description = "8"; };
text { caption = "9"; description = "9"; };
} numbers;
array {
text { caption = "1"; description = "1"; } no_nine;
text { caption = "2"; description = "2"; };
text { caption = "3"; description = "3"; };
text { caption = "4"; description = "4"; };
text { caption = "5"; description = "5"; };
text { caption = "6"; description = "6"; };
text { caption = "7"; description = "7"; };
text { caption = "8"; description = "8"; };
} numbers_no_nine;
array {
text { caption = "2"; description = "2"; }no_one;
text { caption = "3"; description = "3"; };
text { caption = "4"; description = "4"; };
text { caption = "5"; description = "5"; };
text { caption = "6"; description = "6"; };
text { caption = "7"; description = "7"; };
text { caption = "8"; description = "8"; };
text { caption = "9"; description = "9"; };
} numbers_no_one;
# Trial Code
TEMPLATE "Trial.tem" {
strialduration info stext pic trialportcode event main_trial;
1000 Info9PVSAT no_nine PVSAT_1_pic_target_nonine 31 PVSAT_1_event_target_nonine PVSAT_1_trial_target_nonine; # 1 second: target 9
1000 Info10PVSAT one PVSAT_1_pic_target 32 PVSAT_1_event_target PVSAT_1_trial_target; # 1 second: target 10
1000 Info11PVSAT no_one PVSAT_1_pic_target_noone 33 PVSAT_1_event_target_noone PVSAT_1_trial_target_noone; # 1 second: target 11
1500 Info9PVSAT no_nine PVSAT_1_5_pic_target_nonine 34 PVSAT_1_5_event_target_nonine PVSAT_1_5_trial_target_nonine; # 1.5 second: target 9
1500 Info10PVSAT one PVSAT_1_5_pic_target 35 PVSAT_1_5_event_target PVSAT_1_5_trial_target; # 1.5 second: target 10
1500 Info11PVSAT no_one PVSAT_1_5_pic_target_noone 36 PVSAT_1_5_event_target_noone PVSAT_1_5_trial_target_noone; # 1.5 second: target 11
2000 Info9PVSAT no_nine PVSAT_2_pic_target_nonine 37 PVSAT_2_event_target_nonine PVSAT_2_trial_target_nonine; # 2 second: target 9
2000 Info10PVSAT one PVSAT_2_pic_target 38 PVSAT_2_event_target PVSAT_2_trial_target; # 2 second: target 10
2000 Info11PVSAT no_one PVSAT_2_pic_target_noone 39 PVSAT_2_event_target_noone PVSAT_2_trial_target_noone; # 2 second: target 11
2500 Info9PVSAT no_nine PVSAT_2_5_pic_target_nonine 40 PVSAT_2_5_event_target_nonine PVSAT_2_5_trial_target_nonine; # 2.5 second: target 9
2500 Info10PVSAT one PVSAT_2_5_pic_target 41 PVSAT_2_5_event_target PVSAT_2_5_trial_target; # 2.5 second: target 10
2500 Info11PVSAT no_one PVSAT_2_5_pic_target_noone 42 PVSAT_2_5_event_target_noone PVSAT_2_5_trial_target_noone; # 2.5 second: target 11
};
TEMPLATE "Trial_NonTarget.tem" {
strialduration info stext pic trialportcode event main_trial;
1000 Info9PVSAT no_nine PVSAT_1_pic_normal_nonine 11 PVSAT_1_event_normal_nonine PVSAT_1_trial_normal_nonine; # 1 second: target 9
1000 Info10PVSAT one PVSAT_1_pic_normal 12 PVSAT_1_event_normal PVSAT_1_trial_normal; # 1 second: target 10
1000 Info11PVSAT no_one PVSAT_1_pic_normal_noone 13 PVSAT_1_event_normal_noone PVSAT_1_trial_normal_noone; # 1 second: target 11
1500 Info9PVSAT no_nine PVSAT_1_5_pic_normal_nonine 14 PVSAT_1_5_event_normal_nonine PVSAT_1_5_trial_normal_nonine; # 1.5 second: target 9
1500 Info10PVSAT one PVSAT_1_5_pic_normal 15 PVSAT_1_5_event_normal PVSAT_1_5_trial_normal; # 1.5 second: target 10
1500 Info11PVSAT no_one PVSAT_1_5_pic_normal_noone 16 PVSAT_1_5_event_normal_noone PVSAT_1_5_trial_normal_noone; # 1.5 second: target 11
2000 Info9PVSAT no_nine PVSAT_2_pic_normal_nonine 17 PVSAT_2_event_normal_nonine PVSAT_2_trial_normal_nonine; # 2 second: target 9
2000 Info10PVSAT one PVSAT_2_pic_normal 18 PVSAT_2_event_normal PVSAT_2_trial_normal; # 2 second: target 10
2000 Info11PVSAT no_one PVSAT_2_pic_normal_noone 19 PVSAT_2_event_normal_noone PVSAT_2_trial_normal_noone; # 2 second: target 11
2500 Info9PVSAT no_nine PVSAT_2_5_pic_normal_nonine 20 PVSAT_2_5_event_normal_nonine PVSAT_2_5_trial_normal_nonine; # 2.5 second: target 9
2500 Info10PVSAT one PVSAT_2_5_pic_normal 21 PVSAT_2_5_event_normal PVSAT_2_5_trial_normal; # 2.5 second: target 10
2500 Info11PVSAT no_one PVSAT_2_5_pic_normal_noone 22 PVSAT_2_5_event_normal_noone PVSAT_2_5_trial_normal_noone; # 2.5 second: target 11
}; |
392da3688b6d3aa8c644ea3531d059832e9187c7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1727/CH7/EX7.9/7_9.sce | 55778e060df3be3bec92f02c25a4535ed4885819 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 333 | sce | 7_9.sce | clc
//Initialization of variables
g=9.81 //m/s^2
rho=10^3 //kg/m^3
d=0.3 //m
per=25/100
Q=0.1 //m^3/s
k0=0.025*10^-2 //m
nu=0.000001
year=10
//calculations
V=Q/(%pi/4 *d^2)
RN=V*d/nu
e1=k0/d
f1=0.019
f2=(1+per)*f1
e2=0.002
k2=e2*d
rate = (k2-k0)*100/year
//results
printf("Rate of increase =%.4f cm/year",rate)
|
374dda9ded97775bcbf693658c3c2206ac6f5c37 | 449d555969bfd7befe906877abab098c6e63a0e8 | /536/CH13/EX13.3/Example_13_3.sce | b321eb529a8959e81ef45b97894cb0af33380d2a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 799 | sce | Example_13_3.sce | clc;
clear;
printf("\n Example 13.3\n");
T=310; //Temperature of moist air
T_w=300; //Wet bulb tempeature
L=2440e3; //Latent heat of vapourisation of water at 300 K
P=105e3; //Given total pressure
P_wo1=3.6e3; //Vapour pressure of water vapour at 300 K
P_wo2=6.33e3; //Vapour pressure of water vapour at 310 K
M_w=18; //Molecular weight of water
M_a=29; //Molecular weight of air
H_w=(P_wo1/(P-P_wo1))*(M_w/M_a); //The humidity of air saturated at the wet-bulb temperature
//Therefore, taking (h/hD*rho*A) as 1.0 kJ/kg K, in equation 13.8:
H=H_w-(1e3/L)*(T-T_w);
printf("\n The humidity of the air = %.3f kg/kg",H);
//In equation 13.2:
x=poly([0],'x');
P_w=roots(H*(P-x)*M_a-M_w*x);
RH=P_w/P_wo2*100;
printf("\n The percentage relative humidity (RH)= %.1f per cent",RH);
|
1cad24f0bc60a21d5828c826ad5b41f8f3acfc39 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH34/EX34.3/34Ex3.sce | 7091b9f61f8a99afe7c9a72950b129dc808e3a4b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 331 | sce | 34Ex3.sce | //Chapter 34 Ex 3
clc;
clear;
close;
theta1=(60*%pi)/180; theta2=(30*%pi)/180; //converted into radian
//forming the equations from given condition and solving them we get (h/tan(theta2))-(h/tan(theta1))=24 and solving we get
h=24/((1/tan(theta2))-(1/tan(theta1)));
mprintf("The height of the tower is %.2f meters",h);
|
337428172a61c961c61e88eb5430833bbb5cc3b0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3784/CH1/EX1.24/Ex1_24.sce | 512646cdb03dc38ce4505cca4ce0253855461412 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 921 | sce | Ex1_24.sce | clc
// Variable Initialization
Vm=230//Supply Voltage in Volts
Ra=0.25//Combined Field and Armature circuit resistance in Ohm
N=1000//Motor speed in Rpm
V=210//Rated voltage of motor in Volts
a=30//firing angle in Degree
Kaf=0.03 //Constant in N-m/A^2
Kres=0.075 //Constant in V-s/Rad
//Solution
//For Full-converter controlled Dc Drive
W=(2*%pi*N)/60 //angular speed in Rad/sec
Ia=(((2*Vm*1.414)/%pi)*(cosd(a))-(Kres*W))*(1/(Ra+Kaf*W))//Armature current in Amp
T=Kaf*(Ia)^2//Torque in N-m
Va=(2*Vm*1.414)*(cosd(a))*(1/%pi)//Average voltage in Volts
//Input Power if losses are neglected
Ps=Va*Ia //Power loss in Watt
Pi=Vm*Ia//power input in watt
Pf=(Ps/Pi)//Power Factor in Lag
//Results
printf('\n\n The motor Current =%0.1f Amp \n\n',Ia)
printf('\n\n The motor Torque =%0.1f N-m \n\n',T)
printf('\n\n The Supply Power Factor =%0.1f Lag \n\n',Pf)//The answers vary due to round off error
|
62c5dff3df76260d3a3f71ce6dbb159f920fd413 | 449d555969bfd7befe906877abab098c6e63a0e8 | /275/CH3/EX3.3.72/Ch3_3_72.sce | 08b7c91296d7809986ebfc9ebda5124306561e5f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 602 | sce | Ch3_3_72.sce | clc
disp("Example 3.72")
printf("\n")
disp("Draw a DC load line for Voltage divider circuit")
printf("Given\n")
//given
Vcc=15
Rc=2.7*10^3
Re=2.2*10^3
R1=22*10^3
R2=12*10^3
Vbe=0.7
//base voltage
Vb=(Vcc*R2)/(R1+R2)
//emitter voltage
Ve=Vb-Vbe
//emitter current
Ie=Ve/Re
//collector current
Icq=Ie
//collector to emitter voltage
Vceq=Vcc-(Icq*(Rc+Re));
Vce=[Vcc Vceq 0];
//collector voltage
Vc=Vce+Ve
//to draw DC load line
Ic1=Vcc/(Rc+Re)
Ic=[0 Icq Ic1]
printf("Q(%f volt,%f ampere)\n",Vceq,Icq)
plot2d(Vce, Ic)
xlabel("Vce in volt")
ylabel("Ic in ampere")
xtitle("DC load line for base bias circuit") |
fef5a40a29b8bbcb293657d273a87bf9a367ce11 | 717ddeb7e700373742c617a95e25a2376565112c | /806/DEPENDENCIES/279.sci | 21b370ec84c0aaabe38ceabf02bfa7546c64964c | [] | 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 | 91 | sci | 279.sci | p=9000//N/m^3(Weight density of the liquid)
w=2//m(Width of the gate)
h=2//m(Water level) |
9221fb172ef7fe7eb13a01d751489b7cba1380f1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3802/CH14/EX14.4/Ex14_4.sce | 564dfa4e4b333e6f84b953e8143c600940017c0a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 616 | sce | Ex14_4.sce | //Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014
//Ex14_4.sce.
clc;
clear;
max_demand=75; //in kilowatt
time_duration=24*365; //in hour
load_factor=0.45;
tariff1=650;
tariff2=1.30;
annual_energy_consump=max_demand*time_duration*load_factor;
Ce=tariff2*annual_energy_consump;
Cf=tariff1*max_demand;
total_annualcharge=Ce+Cf;
overall_costperkwhr=total_annualcharge/annual_energy_consump;
printf(" \n Overall cost per kWh= %1.2f rupees \n",overall_costperkwhr)
|
2f4c868fe6315aaecfb3116009ee181ce82f522b | 07caba0784869e2ef1ea9e69ffb15df79295dc13 | /02/FullAdder.tst | 474cb4e5b754a45f89b5230152489934cd2025a8 | [] | no_license | diskkid/nand2tetris | 330f133c8810dbf10e3eb13cd208ed1953422c25 | 6224836a2a94b80de204fac3fbc6cac86ff579b6 | refs/heads/master | 2016-09-11T02:43:00.044025 | 2015-04-12T14:50:44 | 2015-04-12T14:50:44 | 33,446,727 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 453 | tst | FullAdder.tst | load FullAdder.hdl,
output-file FullAdder.out,
output-list a b c carry sum;
set a %B0,
set b %B0,
set c %B0,
eval, output;
set a %B0,
set b %B0,
set c %B1,
eval, output;
set a %B0,
set b %B1,
set c %B0,
eval, output;
set a %B0,
set b %B1,
set c %B1,
eval, output;
set a %B1,
set b %B0,
set c %B0,
eval, output;
set a %B1,
set b %B0,
set c %B1,
eval, output;
set a %B1,
set b %B1,
set c %B0,
eval, output;
set a %B1,
set b %B1,
set c %B1,
eval, output;
|
cf982c31b2519d1ef49f3254d84dd0025f98027b | 717ddeb7e700373742c617a95e25a2376565112c | /3044/CH14/EX14.8/Ex14_8.sce | 9b6cf8086de6ece88892122b6c4fdf87c42ba063 | [] | 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 | 434 | sce | Ex14_8.sce | // Variable declaration
alpha = 0.05 // level of significance
x = [2.4,4.4,4.8,6.2,14.8,19.5,23.1,25.0,28.2,28.7]
n = 10
l = []
// Calculation
A_sq = 0
for i = 1:10
l(i) = (x(i)/30)
end
for i = 1:10
A_sq = A_sq + (2*i-1)*(log(l(i)) + log(1 - l(n-i+1)))
end
A_sq = (-A_sq)/n - n
// Result
printf ( "A square value: %.4f",A_sq)
printf ( "As A_sq is large, We can not reject Null hypothesis")
|
b25c016c7048632e547b58d1591dab29eb7c65a5 | 717ddeb7e700373742c617a95e25a2376565112c | /1658/CH19/EX19.8/Ex19_8.sce | 4415d52cbf22e18867c46c15a464bd3eecaa665d | [] | 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 | 537 | sce | Ex19_8.sce | clc;
//e.g 19.8
Vcc=20;
Rc=5.7*10**3;
Re=1*10**3;
R1=100*10**3;
R2=10*10**3;
Rs=100;
beta1=100;
Vbe=0.7;
Vth=(Vcc*R2)/(R1+R2);
disp('V',Vth*1,"Vth=");
Rth=(R1*R2)/(R1+R2);
disp('Kohm',Rth*10**-3,"Rth=");
Ie=(Vth-Vbe)/(Re+(Rth/beta1));
disp('mA',Ie*10**3,"Ie=");
re=25/(Ie*10**3);
disp('ohm',re*1,"re=");
Ri=beta1*re;
Ris=(Rth*Ri)/(Rth+Ri);
disp('ohm',Ris*1,"Ris=");
rl=Rc;
Av=rl/re;
disp(Av);
Vin=(Vs*Ris)/(Ris+Rs);
disp('mV',Vin*1,"Vin=");
V0=Av*Vin;
disp('V',V0*10**-3,"V0=");
Avs=(Av*Vin)/Vs;
disp(Avs);
|
5efcf8a07e2f134e6708cce4628d7b95c23c92a2 | 978b15852ad0d9219e0cd69e9da3a9140b84aa97 | /TPs_CN/Exo2.sce | 57e7ac5c3fef76864136a3d5815ea2a32bfd046a | [] | no_license | nadine867/TP_CN | cd2acc700471c7f595ada5f2b799b43ca44590ce | fcf09074e27723ca3e9b1eec870386c848b190f9 | refs/heads/master | 2023-02-03T04:07:38.525606 | 2020-12-18T20:23:55 | 2020-12-18T20:23:55 | 316,060,516 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 298 | sce | Exo2.sce | function jouet(m)
A=rand(m , m)
xex=rand(m, 1)
b=A*xex;
x=A\b;
frelres=norm(x-xex)/norm(xex)
brelres=norm(b-A*x)/norm(b)
disp("frelres=",frelres);
disp("brelres=",brelres);
cap = cond(A);
disp("cap=",cap);
disp("born",cap*brelres);
endfunction
|
2f69688b3ab2b1721044673647915ab176d85e2f | 28a8d47c4d79b231f8bebc28925792a290f67e9f | /dsl/others/sql/test_dsl_html_table.tst | 2c2733b2e05cd928f55519e4e06b1914cdcebf2f | [] | 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 | 2,093 | tst | test_dsl_html_table.tst | PL/SQL Developer Test script 3.0
77
-- Created on 21.04.2015 by ZHURAVOV_VB
declare
l_entries xxdoo.xxdoo_edu_entries_typ;
-- Local variables here
function get_html(p_ctx xxdoo.xxdoo_edu_entries_typ) return clob is
l_result clob;
----------------
procedure append(p_str clob) is
begin
if p_str is not null then
dbms_lob.append(l_result, p_str);
end if;
end;
----------------
function condition_54(p_ctx xxdoo.xxdoo_edu_entries_typ) return boolean is
l_result boolean := false;
begin
if p_ctx is not null then
if p_ctx.count > 0 then
l_result := true;
end if;
end if;
return l_result;
end condition_54;
----------------
begin
dbms_lob.createtemporary(l_result, true);
append('<div class="table">');
if condition_54(p_ctx) then
append('<table>');
append('<thead>');
append('<tr>');
append('<th>Column1</th>');
append('<th>Column2</th>');
append('</tr>');
append('</thead>');
append('<tbody>');
for id55 in 1 .. p_ctx.count loop
append('<tr></tr>');
append('<td>');
append('<div>');
append('<p>test</p>');
append('</div>');
append('</td>');
append('<td>');
append('<div>');
append('<p>test2</p>');
append('</div>');
append('</td>');
end loop;
append('</tbody>');
append('<caption>TEST</caption>');
append('</table>');
else
append('<div class="empty">');
append('<div>');
append('<p>Collection is empty</p>');
append('</div>');
append('</div>');
end if;
append('</div>');
----------------
return l_result;
----------------
exception
when others then
xxdoo.xxdoo_utl_pkg.fix_exception;
raise;
end get_html;
begin
-- Test statements here
l_entries := xxdoo.xxdoo_edu_entries_typ();
--select value(e) bulk collect into l_entries from xxdoo.xxdoo_edu_entries_v e;
--
dbms_output.put_line(get_html(l_entries));
end;
0
0
|
8ed965a1c99e5614a223539db265631c09f52573 | 449d555969bfd7befe906877abab098c6e63a0e8 | /167/CH5/EX5.3/ex3.sce | 10e2794aea48d688de7ed7199b53b1a0d1c29b24 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,238 | sce | ex3.sce | //example 3
//energy transport by mass
clear
clc
vf=0.001053 //specific volume of saturated liquid water in m3/kg
vg=1.1594 //specific volume of water vapour in m3/kg
ug=2519.2 //specific internal energy of water vapour kJ/kg
hg=2693.1 //specific enthalpy of water vapour kJ/kg
disp('Saturation conditions exist in a pressure cooker at all times after the steady operating conditions are established')
disp(' Therefore, the liquid has the properties of saturated liquid and the exiting steam has the properties of saturated vapor at the operating pressure.')
m=0.6/(vf*1000) //reduction in mass of liquid in pressure cooker in kg
M=m/(40*60) //mass flow rate of steam in kg/s
A=8*10^-6 //exit area in m^2
V=M*vg/A //exit velocity in m/s
e=hg-ug //flow energy of steam in kJ/kg
TE=hg //total nergy of steam in kJ/kg
E=M*hg //energy flow rate of steam leaving cooker in kW
printf("\n Hence,The mass flow rate of the steam is = %.6f kg/s. \n",M);
printf("\n The exit velocity is = %.1f m/s. \n",V);
printf("\n The total energy of the steam is = %.1f kJ/kf. \n",TE);
printf("\n The flow energy of the steam is = %.1f kJ/kg. \n",e);
printf("\n The rate at which energy leaves the cooker by steam is = %.3f kW. \n",E); |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.