blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
315e12a5633fee6a6986c889715cf9eae20c3d88 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2102/CH3/EX3.13/exa_3_13.sce | 47846731c1518846eeba6636b69df6e13e96a179 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 330 | sce | exa_3_13.sce | // Exa 3.13
clc;
clear;
close;
// Given data
V_F= 0.2;// in V
T=300;// in K
V_T= T/11600;// in volt
Io= 1;// in micro amp
Io=Io*10^-6;// in amp
Id= Io*(%e^(V_F/V_T)-1)
I_F=Id;
r_dc= V_F/I_F;// in ohm
disp(r_dc,"Dynamic resistance in ohm is : ")
r_ac= .026/I_F;// in ohm
disp(r_ac,"Static resistance in ohm is : ")
|
7efffb52a45a040fd1f4ab5ef0b69e521099db4c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1871/CH4/EX4.12/Ch04Ex12.sce | 98d486a4a2880e75b5c313ae536701130f900e7f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,084 | sce | Ch04Ex12.sce | // Scilab code Ex4.12: Pg:149 (2008)
clc;clear;
Lambda = 6500e-007; // Wavelength of light, mm
Lambda_prime = 5200e-007; // New wavelength of light, mm
n = 3; // Order of bright fringe
D = 1200; // Distance between the source and the slits, mm
d = 2/2; // Separation between teh slits, mm
x3 = n*Lambda*D/(2*d); // The distance of the third bright fringe from the central maximum, mm
n = 5; // Minimum value of n
m = Lambda_prime/Lambda*n; // Minimum value of m
x4 = m*Lambda*D/(2*d); // The least distance from the central maximum at which bright fringes duw to both the wavelengths coincide, mm
printf("\nThe distance of the third bright fringe from the central maximum = %4.2f mm", x3);
printf("\nThe least distance from the central maximum at which bright fringes duw to both the wavelengths coincide = %5.3f cm", x4/10);
// Result
// The distance of the third bright fringe from the central maximum = 1.17 mm
// The least distance from the central maximum at which bright fringes duw to both the wavelengths coincide = 0.156 cm |
b8a0f919b7b752504f5f33a95af5f02f667e743f | bdf572464541387fa0028a1ff861ceb55e81938e | /Numerical Integration/simpsons1.sci | f7e3c3346d1b4e77dc029d7c0f3f0a8b7f74a703 | [] | no_license | akarshsomani/Scilab-programs | 20c4a52a51e5689d12d491218988aa037f09a21a | 18199a7f424e3711765965e3d3b12e149a5d497a | refs/heads/master | 2020-03-14T10:00:36.585002 | 2018-04-30T04:59:39 | 2018-04-30T04:59:39 | 131,557,212 | 0 | 1 | null | 2018-10-31T14:52:07 | 2018-04-30T04:55:36 | Scilab | UTF-8 | Scilab | false | false | 231 | sci | simpsons1.sci | function [e] = sim1(x0,xn,n)
deff("y=f(x)","y=sqrt(x^2+1)")
h=(xn-x0)/n
s=0
while x0<xn
s=s+(h/3)*(f(x0)+4*f(x0+h)+f(x0+2*h))
x0=x0+2*h
end
e=(abs(s-1.147)/1.147)*100
disp(s)
endfunction
|
1ff46ede20918ef19f77abfeaac0b5fcac9565d5 | 2875b7a7a87e6280e5aac1fb50dc04dfbcc23d3f | /lec/mdyn/scilab/vib-tr.sce | 28dbcb1d16dd7b4d739e03817846915cfaee0ab0 | [] | no_license | ktysd/ktysd.github.io | eb8946c877a6cb209960be57bfbcc1fe429abedd | 1e29a628e63ea476b4891da5c12276d1ae11c4a7 | refs/heads/master | 2021-04-26T15:07:02.322758 | 2020-11-02T07:33:51 | 2020-11-02T07:33:51 | 123,993,111 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 360 | sce | vib-tr.sce | //
// "vib-tr.sce"
//
clear; clf();
function dx = model(t,x)
om=1.6;
dx(1) = x(2);
dx(2) = -0.2*x(2) - x(1) + cos(om*t);
endfunction
x0 = [0; 0.3]; tt = linspace(0, 100, 800);
xx = ode(x0, 0, tt, model);
g=gca(); g.data_bounds=[0,-1.5;100,1.5]; //座標軸の設定
plot(tt,xx(1,:),"-");
xtitle("x(t)=a(t)+b(t)"); xgrid();
xlabel("t"); ylabel("x(t)"); |
67f58131445598975807a22366f51c049afa307a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2078/CH4/EX4.8/Example4_8.sce | 0678e22048fb52d1a8aa358d12573ef4cd139322 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 210 | sce | Example4_8.sce | //Exa 4.8
clc;
clear;
close;
//Given data :
r=(20/2)/10;//cm
d1=4*100;//cm
d2=5*100;//cm
d3=6*100;//cm
rdash=0.7788*r;//cm
L=0.2*log((d1*d2*d3)^(1/3)/rdash);//mH
disp(L,"Inductance per phase(mH)");
|
02161e0810b2800e7acb1dba3e2edd77fab00011 | ed81f401dcd2ce0399cec3a99b6e5851e62e74ca | /data/github.com/JOfTheAncientGermanSpear/Simple-Time-Stretcher-Scilab/638360ea04ee4951f9a4e550d45fcea0bc01c867/src/scilab/timeStretch.sci | 891ea6970768ad99e57d01b3695652c5d45c2cc0 | [
"MIT"
] | permissive | smola/language-dataset | 9e2a35340d48b497cd9820fa2673bb5d482a13f7 | 4d1827d1018b922e03a48a5de5cb921a6762dda3 | refs/heads/master | 2023-03-10T12:42:04.396308 | 2022-07-15T18:05:05 | 2022-07-15T18:05:05 | 143,737,125 | 18 | 3 | MIT | 2023-03-06T05:01:14 | 2018-08-06T14:05:52 | Python | UTF-8 | Scilab | false | false | 1,773 | sci | timeStretch.sci | function timeStretchedSignal = timeStretch(timeSignal, timeStretchFactor, ftLength)
// timeStretchedSignal = timeStretch(timeSignal, timeStretchFactor, ftLength) Time-stretch a signal to timeStretchFactor times longer with phase vocoder
// timeSignal is an input sound. ftLength is the FT size, defaults to 1024.
// Calculate the 25%-overlapped STFT, squeeze it by a factor of 1/timeStretchFactor,
// inverse spegram.
// as timeStretchFactor factor increases, resultant signal length increases
// also as timeStretchFactor increases, the sound has to be played at a higher Fs to be same time length
// hence the sound will be at a higher pitch even though it will be the same time-length
// was originally Dan Ellis' pvoc.m from http://www.ee.columbia.edu/~dpwe/resources/matlab/pvoc/
[numOutputs, numInputs] = argn(0);
if numInputs < 3
ftLength = 1024;
end
// With hann windowing on both input and output,
// we need 25% window overlap for smooth reconstruction
hop = ftLength/4;
// Effect of hanns at both ends is a cumulated cos^2 window (for
// pitchChange = 1 anyway); need to scale magnitudes by 2/3 for
// identity input/output
//scf = 2/3;
// 2011-02-07: this factor is now included in istft.m
scaleFactor = 1.0;
// Calculate the basic STFT, magnitude scaled
origSTFT = scaleFactor * stft(timeSignal', ftLength, ftLength, hop);
// Calculate the new timebase samples
[rows, numberOfFTs] = size(origSTFT);
t = 0:1/timeStretchFactor:(numberOfFTs-2);
// Have to stay two cols off end because (a) counting from zero, and
// (b) need col n AND col n+1 to interpolate
// Generate the new spectrogram
shiftedSTFT = stftInterpolate(origSTFT, t, hop);
// Invert to a waveform
timeStretchedSignal = istft(shiftedSTFT, ftLength, hop)';
endfunction |
6b9f37c3baecb10390aaa1044698688f7fd3cdb4 | 207c864c3f938783d617dca78232e70445ae21e6 | /Ch8_II.sce | 757580d069bff3abe8d4dbf53d6684a96421c3fb | [] | no_license | raresica/CalculNumeric | a211a57fd4851e546c0b5eb866b3b228534a982c | 5564822ff9f5dab745208898ef9162322b28bff2 | refs/heads/master | 2021-02-11T05:03:13.720791 | 2020-04-15T10:42:58 | 2020-04-15T10:42:58 | 244,457,154 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 729 | sce | Ch8_II.sce | --> A=[3,4,7,-2;5,4,9,3;1,-1,0,3;1,-1,0,0]
A =
3. 4. 7. -2.
5. 4. 9. 3.
1. -1. 0. 3.
1. -1. 0. 0.
-->
--> [Q,R]=qr(A)
Q =
-0.5 0.5 -0.7071068 6.245D-17
-0.8333333 -0.0555556 0.5499719 -3.932D-17
-0.1666667 -0.6111111 -0.3142697 -0.7071068
-0.1666667 -0.6111111 -0.3142697 0.7071068
R =
-6. -5. -11. -2.
0. 3. 3. -3.
0. 0. 6.280D-16 2.1213203
0. 0. 0. -2.1213203
--> Q*R-A
ans =
0. 1.776D-15 0. 0.
0. 1.776D-15 0. -4.441D-16
0. 5.551D-16 -2.467D-17 0.
0. 5.551D-16 -2.467D-17 -5.056D-16
|
53b914e9def182b3b012451288b623cc52a419bd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3843/CH8/EX8.13/Ex8_13.sce | 3cb81d748300ef344bc847f3faa0f57f93648f01 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 823 | sce | Ex8_13.sce | // Example 8_13
clc;funcprot(0);
// Given data
T_1=-10;// °C
P_3=0.9;// MPa
Q_C=300;// kW
C=0.07;// $/kWh
C_n=0.50;// The cost of operating a furnace in $/therm
q=100000;// kJ/therm
// Calculation
// (a)
// From appendix D we find,
h_1=183.1;// kJ/kg
s_1=0.7014;// kJ/kg.K
s_2=s_1;// kJ/kg.K
h_3=71.9;// kJ/kg
h_4=h_3;// kJ/kg
h_2=(((0.7014-0.6982)/(0.7131-0.6982))*(211.8-204.2))+204.2;// kJ/kg
mdot=Q_C/(h_2-h_3);// The refrigerant mass flux in kg/s
W_in=mdot*(h_2-h_1);// The compressor power in kW
COP=Q_C/W_in;// The coefficient of performance
// (b)
Coe=W_in*C;// The cost of electricity in $/h
// (c)
Cog=((Q_C*3600)/q)*C_n;// The cost of gas in $/h
printf("\n(a)The coefficient of performance,COP=%1.2f \n(b)The cost of electricity=$%1.2f/h \n(c)The cost of gas=$%1.2f/h",COP,Coe,Cog);
|
08e13a10187165ba5ec2a92494199ea15c6b252f | 449d555969bfd7befe906877abab098c6e63a0e8 | /557/CH6/EX6.3/3.sce | 0fd6e0b686e57e010f98cc9934cf3d3f2c07f4f0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 555 | sce | 3.sce | clc;funcprot(0); //Example 6.3
//Initializing the variables
d1 = 0.25; //Pipeline diameter
d2 = 0.10; //Throat diameter
h =0.63; //Difference in height
rho = 1000; //Density of water
g = 9.81 //Acceleration due to gravity
//Calculations
rho_Hg = 13.6*rho;
rho_Oil = 0.9*rho;
A1 = (%pi*d1^2)/4; // Area at entry
m = (d1/d2)^2; //Area ratio
Q = (A1/sqrt(m^2-1))*sqrt(2*g*h*(rho_Hg/rho_Oil -1));
disp(Q,"Thepretical Volume flow rate (m3/s ):"); |
6d99de34b4d436d4027fd766437d6d49a66f508f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3176/CH3/EX3.15/Ex3_15.sce | 3167b1db166b78241475f90cf5016a234a7ccc7e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,419 | sce | Ex3_15.sce | //Ex3_15
// Image Sharpning using Laplacian
// Version : Scilab 5.4.1
// Operating System : Window-xp, Window-7
//Toolbox: Image Processing Design 8.3.1-1
//Toolbox: SIVP 0.5.3.1-2
//Reference book name : Digital Image Processing
//book author: Rafael C. Gonzalez and Richard E. Woods
clc;
close;
clear;
xdel(winsid())//to close all currently open figure(s).
a=imread('Ex3_15.tif');
[M N]=size(a);
figure,ShowImage(a,'Original Image');
title('Original Image','color','blue','fontsize',4);
/////////////////////////// Laplacian Filtering /////////////////////////
F=fspecial('laplacian',0);
Image1=imfilter(a,F);
figure,ShowImage(Image1,'Original Image');
title('Filtered Image with Laplacian Mask','color','blue','fontsize',4);
/////////////////////////// Laplacian Filtering /////////////////////////
F=[1 1 1;1 -8 1;1 1 1];
Image2=imfilter(a,F);
figure,ShowImage(Image2,'Original Image');
title('Filtered Image with Laplacian Mask','color','blue','fontsize',4);
/////////////////////////// Laplacian Filtering /////////////////////////
b=a-(1*Image1);
figure,ShowImage(b,'Original Image');
title('Filtered Image with Laplacian Mask','color','blue','fontsize',4);
/////////////////////////// Laplacian Filtering /////////////////////////
b=a-(1*Image2);
figure,ShowImage(b,'Original Image');
title('Filtered Image with Laplacian Mask','color','blue','fontsize',4);
|
eb86a4d57b14faf9cd62180a0bbdef595c1f7f30 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3542/CH9/EX9.6/Ex9_6.sce | 856823f85b979bef019f010b7218e0f1b048c382 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 926 | sce | Ex9_6.sce | // Example no 9.6
// To determine the maximum throughput using ALOHA and slotted ALOHA
// Page no. 466
clc;
clear all;
//The maximum throughput using ALOHA
Rmax=1/2; //Maximum rate of arrival calculated by equating ALOHA throughput formula derivative to zero
T=Rmax*exp(-1); //The maximum throughput using ALOHA
// Displaying the result in command window
printf('\n The maximum throughput using ALOHA = %0.4f',T);
//The maximum throughput using slotted ALOHA
Rmax=1; //Maximum rate of arrival calculated by equating slotted ALOHA throughput formula derivative to zero
T=Rmax*exp(-1); //The maximum throughput using slotted ALOHA
// Displaying the result in command window
printf('\n The maximum throughput using slotted ALOHA = %0.4f',T);
|
9e46bbfddc289a955663ed6bed7cae0f5190a065 | 449d555969bfd7befe906877abab098c6e63a0e8 | /331/DEPENDENCIES/stand_students_t_VarUnkn.sci | d86c20f32d497b5a0d22006a875915539c010267 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 185 | sci | stand_students_t_VarUnkn.sci | function [t_alpha] = stand_students_t_VarUnkn(alpha)
if (alpha ==0.05) then
t_alpha = 1.645;
elseif (alpha==0.01) then
t_alpha = 2.326;
end
endfunction |
ea73853909e69ecfd3ff9192b86b0c5002e2d2fa | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH31/EX31.5/31Ex5.sce | eae78e476a54d5f802cfa6db86d10dea6ecf88ce | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 400 | sce | 31Ex5.sce | //chapter 31 Ex 5
clc;
clear;
close;
totalBalls=10; white=6; Black=4; random=2;
sizeS= factorial(totalBalls)/(factorial(totalBalls-random)*factorial(random));
sizeE=(factorial(white)/(factorial(white-random)*factorial(random)))+(factorial(Black)/(factorial(Black-random)*factorial(random)));
prob=sizeE/sizeS;
printf("The probability of getting both balls of same color is %0.2f",prob);
|
52a889209a64a82faf3d23f269cd074d0ac57845 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1697/CH1/EX1.14/Exa1_14.sce | 12510c1b73f30a63bd8f8e925b60306e8e28c577 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 305 | sce | Exa1_14.sce | //Exa 1.14
clc;
clear;
close;
//given data :
Irms=30;//in A
f=1;//in MHz
Erms=10;//in mV/m
Erms=Erms*10^-3;//in V/m
r=50;//in Km
r=r*10^3;//in m
c=3*10^8;//speed of light i m/s
lambda=c/(f*10^6);//in m
le=Erms*lambda*r/(120*%pi*Irms);//in m
disp(le,"Effetive height of Antenna in meter : "); |
42336e9b1b535f3b8a8fac577cdcdef3490384e2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH2/EX2.43/Ex2_43.sce | 44090eb66812ae97b2472fefc39b172eb443f82c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 699 | sce | Ex2_43.sce | //CHAPTER 2- STEADY-STATE ANALYSIS OF SINGLE-PHASE A.C. CIRCUIT
//Example 43 // read it as example 42 in the book on page 2.102
clc;
disp("CHAPTER 2");
disp("EXAMPLE 43");
//VARIABLE INITIALIZATION
I=5; // max amplitude of wave in Amp
f=50; //Hz
//wave for is to be obtained by adding the two waves
//i=5+5.sin(wt)=5+5.sin(theta)
//
//SOLUTION
Iav=(1/(2*%pi))*integrate('5+5*sin(th)', 'th',0,2*%pi);
Ims=(1/(2*%pi))*integrate('(5+5*sin(th))^2', 'th',0,2*%pi);
//
disp(sprintf("The average value of resultant current is %f Amp", Iav));
disp(sprintf("The RMS value of resultant current is %f Amp", sqrt(Ims)));
disp(" ");
//
//END
|
50f716c54fe2dff32cfdc8a6456fe50e34673836 | 8277b4cef8c96ff5b520fc43b2200dc67ea6b2ed | /Exp8.sce | 45b28b99fa700239d2dbc9bcc4b7b203ea79a1bc | [] | no_license | divyashah98/OST | 5f7f3acf268fb9ab7e4ae889229e87d9ad31e6be | 214ee78db4e98e6387fca13cbe889054f3d9c298 | refs/heads/master | 2020-03-24T20:12:02.774742 | 2018-09-25T05:08:32 | 2018-09-25T05:08:32 | 142,964,900 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,234 | sce | Exp8.sce | clc;
clear all;
ap = 3; //
as = 15; //
wp = 2; // Analog Passband Edge
ws = 4.828; // Analog Stopband Edge
// Low Pass Filter
// Order of filter
n = 0.5*(log((10^((0.1)*(as)) - 1)/(10^((0.1)*(ap)) - 1)));
N = n/(log(ws/wp));
N = ceil(N)
disp(N, "Order of filter = ")
// Cut-off Frequency
wc = wp/((10^(0.1*ap) - 1)^(1/2*N))
disp (wc, "Cut-off frequency = ")
//Transfer Function
s = %s;
H = 1/(s^2 + 1.414*s +1); //normal T.F.
disp(H, "Transfer function of normal LPF = ")
h = horner(H, s/wc); //designed T.F.
disp(h, "Transfer function of designed LPF = ")
// High Pass Filter
//Order of Filter
n1 = 0.5*(log((10^((0.1)*(as)) - 1)/(10^((0.1)*(ap)) - 1)));
N1 = n1/(log(wp/ws));
N1 = ceil(abs(N1))
disp(N1, "Order of HPF Filter = ")
//Cut-off Frequency
wc1 = ws/((10^(0.1*ap) - 1)^(1/2*N1))
disp (wc1, "Cut-off frequency = ")
//Transfer Function
s1 = %s;
H1 = 1/(s1^2 + 1.414*s1 +1); //normal T.F.
disp(H1, "Transfer function of normal HPF = ")
h1 = horner(H1, wc1/s1); //designed T.F.
disp(h1, "Transfer function of designed HPF = ")
|
21b7fa02b83c850b32c46d55a889cde7639fb901 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1187/CH5/EX5.3/3.sce | 66edf88c58ab2d8cd0008e24bbce6f3989690aaf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 709 | sce | 3.sce | clc
u_p=10; // m/s
scale=1/25; // l_m/l_p
L=125; // m
meu=1.235*10^(-6); // m^2/s
meu_p=1.188*10^(-6); // m^2/s
rho_p=1025; // kg/m^3
rho_m=1000; // kg/m^3
A=3500; // wetted surface in m^2
u_m=u_p*sqrt(scale);
d=L*scale;
Re=d*u_m/meu; // Reynolds no.
C_F=0.075/(log10(Re)-2)^2; // Skin friction coefficient
res_skin=rho_m/2*u_m^2*(A*scale^2)*C_F;
res_tot=54.2; // N
F_resid_m=res_tot-res_skin;
F_resid_p=F_resid_m*rho_p/rho_m/scale^3;
Re_p=u_p*L/meu_p;
C_F_p=0.075/(log10(Re_p)-2)^2+0.0004;
C_F_pnew=1.45*C_F_p;
res_friction=rho_p/2*u_p^2*A*C_F_pnew;
Resistance=F_resid_p+res_friction;
disp("The total resistance of the prototype =")
disp(Resistance)
disp("N")
|
7cde31dfa9bac5225e9a719f7082c70881b58623 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set14/s_Materials_Science_R._S._Khurmi_And_R._S._Sedha_2153.zip/Materials_Science_R._S._Khurmi_And_R._S._Sedha_2153/CH2/EX2.5/ex_2_5.sce | 72e58e8f2b21fead9a29eef7ad1a8c51f8daa445 | [] | 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 | 178 | sce | ex_2_5.sce | errcatch(-1,"stop");mode(2);//Example 2.5 : velocity
;
;
//given data :
n=1;
Z=1;
k=6.56*10^15; // k is constant
fn=k*(Z^2/n^3);
disp(fn,"orbital frequency,fn(Hz) = ")
exit();
|
7905f16d6ccbb5bab9c73c5add5831e82f46631e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3701/CH4/EX4.5/Ex4_5.sce | 2aab8b7183bec4e65de5759f911d55c60ee48f47 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 329 | sce | Ex4_5.sce | ////Given
m=1.672*10**-27 //mass of neutron in kg
h=6.60*10**-34 //Js
v=1.0*10**-10 //de broglie wavelength in m
//Calculation
K=(h**2/(2.0*m*v**2))/(1.6*10**-19)
//Result
printf("\n Kinetic energy of a neutron is %0.2f *10**-2 ev",K*10**2)
|
2f0102be1122c9251112dd76ec732addeeeb308b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3886/CH16/EX16.11/16_11.sce | 4c37ae884dd8b8fa19abe0a4dd124c587cdd009f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 259 | sce | 16_11.sce | //Two bodies hung to rope
//refer fig. 16.15 (a) and (b)
s=(450+300)*(4*4-2*2)/(2*9.81*150) //m
//Let T be the tension in the string
//apply work energy principle
T=((450*3.058)-((450*12)/(2*9.81)))/3.058 //N
printf("\nT=%.0f N\ns=%.3f m",T,s)
|
97d60cbfccc9957342fcacee205bed238f698c00 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH3/EX3.2/3_2.sce | efc0f09c556d070e2590e724133061e384e017c3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 500 | sce | 3_2.sce | //ques-3.2
//Calculating number of molecules of ethene in sample and number of molecues of polyethene produced
clc
m=28;//mass of ethene (in g)
deg=1000;//average degree of polymerisation
//Part (i)
n1=(m/28)*6.023;//number of molecules of ethene (x10^23)
printf("The number of molecules of ethene in sample are %.3f x 10^23.\n",n1);
//Part (ii)
n2=n1/deg;//number of molecules of polyethene (x10^23)
printf(" The number of polyethene molecules produced are %.3f x 10^20.",n2*1000);
|
245f3d0ee46933df04e5f403d69886bec0eba9b0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /998/CH29/EX29.4/Ex4.sce | 39e7b7d2bc405422e42eebf1fd51b7273d6bf190 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 294 | sce | Ex4.sce | //Ex:4
clc;
clear;
close;
h_p=1000;//perigee height in km
h_a=4000;//apogee height in km
R_E=6378.14;// radius of earth in km
a=(2*R_E+h_p+h_a)/2;//Semi major axis in km
u=3.986*10^5//km^3 per sec^2
T_P=(4*%pi^2*a^3/u)^(1/2);//Orbit period in sec
printf("Orbital period =%f sec",T_P); |
9949b01116e3c8b4863b978873261409e4330ff1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2204/CH5/EX5.6/ex5_6.sce | b866fe18d2320755797c327c0d5992c13bb2ab28 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 538 | sce | ex5_6.sce | // Exa 5.6
clc;
clear;
close;
// Given data
f_c = 2;// in kHz
f_c = f_c * 10^3;// in Hz
C2 = 0.033;// in µF
C2 = C2 * 10^-6;// in F
C3 = C2;// in F
C = C2;// in F
R2 = 1/(2*%pi*f_c*C);// in ohm
R2 = R2 * 10^-3;// in k ohm
R3=R2;// in kohm
disp(R2,"The value of R2 and R3 in kΩ is : ");
//R_F= 0.586*R1
R1= 2*R2*(1+0.586)/0.586;// in k ohm
disp(R1,"The value of R1 in kΩ is : ")
R1= 15;// in k ohm
R_F = 0.586 * R1;// in k ohm
disp(R_F,"The value of R_F in kΩ is : ");
disp("R_F may be taken as a pot of 10 kΩ")
|
600cdb36a7fb70935e760f2f2b9286120435194b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2021/CH13/EX13.2/EX13_2.sce | 2523477a8bbd9497a356f1ba7d28699aff2bcf3c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 390 | sce | EX13_2.sce | //Finding of Boundary layer thickness , Drag Force
//Given
x=1;
L=1.5;
b=1.2;
vs=0.25;
mu=0.001;
rho=1000;
x2=1.2;
L2=1.2;
//To Find
A=L*b;
R=(rho*vs*x)/mu;
t=(5.477*x)/sqrt(R);
tau=(0.365*mu*vs*sqrt(R))/x;
R1=(rho*vs*L)/mu;
Cd=1.46/sqrt(R1);
Fd=(1/2)*Cd*rho*(vs)^2*A;
disp("Boundary Layer Thickness ="+string(t)+" meter");
disp("Drag Force ="+string(Fd)+" Newtons");
|
1707736aa3f1c833403204cfc005c25906a485bb | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH5/EX5.4/5_4.sce | 2abbf2796aa6c9580304f07d17a36602853b0729 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 445 | sce | 5_4.sce | //Eg-5.4
//pg-219
clear
clc
exec graf.sci
clc
A=[1 2 4;3 1 2;4 2 5];
a1=zeros(3,1);
a1(1)=trace(A);
A1=A;
for k=2:3
A2=A*(A1-a1(k-1)*eye(3,3));
a1(k)=trace(A2)/k;
A1=A2;
end
C=[1; -a1];
for(i = 1:4)
c(i) = C(5-i);
end
ce = poly(c,'x','c');
printf('\nThe expression of the characteristic equation is \n')
disp(ce)
printf('\n')
for(i = 1:4)
G(1,i) = c(5-i);
end
q = graf(G,0.001); |
2ee5aa703c51d9194ac67cd6dfe2203f2a0a764f | ad617742f184bf6d4cceb3e9c99232d8bd52b862 | /tests/bfp-004-cvttolog.tst | 7ac6b7abbd347d212ec73360fddf4adfba7bf6ed | [
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-other-permissive",
"BSD-2-Clause"
] | permissive | 9track/hyperion | d621343e7eea27c45db49c7c284dd1680491c82c | 9ceed2cc7261820eef01c55dac9b9a6ae47636b2 | refs/heads/master | 2022-09-15T12:19:09.059528 | 2020-05-28T03:05:29 | 2020-05-28T03:05:29 | 268,044,749 | 3 | 1 | NOASSERTION | 2020-05-30T09:03:56 | 2020-05-30T09:03:55 | null | UTF-8 | Scilab | false | false | 23,185 | tst | bfp-004-cvttolog.tst | *Testcase bfp-004-cvttolog.tst: CLFEBR, CLFDBR, CLFXBR
#Testcase bfp-004-cvttolog.tst: IEEE Convert To Logical
#..Includes CONVERT TO LOGICAL 32 (3). Tests traps, exceptions,
#..rounding modes, and NaN propagation.
sysclear
archmode esame
#
# Following suppresses logging of program checks. This test program, as part
# of its normal operation, generates 17program check messages that have no
# value in the validation process. (The messages, not the program checks.)
#
ostailor quiet
loadcore "$(testpath)/bfp-004-cvttolog.core"
runtest 1.0
ostailor default # restore messages for subsequent tests
# BFP short inputs converted to uint-32 test results
*Compare
r 1000.10
*Want "CLFEBR result pairs 1-2" 00000001 00000001 00000002 00000002
r 1010.10
*Want "CLFEBR result pairs 3-4" 00000004 00000004 00000000 00000000
r 1020.10
*Want "CLFEBR result pairs 5-6" 00000000 00000000 FFFFFFFF 00000000
r 1030.10
*Want "CLFEBR result pairs 7-8" FFFFFF00 FFFFFF00 00000001 00000001
r 1040.08
*Want "CLFEBR result pair 9" 00000000 00000000
# BFP short inputs converted to uint-32 FPCR contents, cc
*Compare
r 1100.10
*Want "CLFEBR FPC pairs 1-2" 00000002 F8000002 00000002 F8000002
r 1110.10
*Want "CLFEBR FPC pairs 3-4" 00000002 F8000002 00880003 F8008000
r 1120.10
*Want "CLFEBR FPC pairs 5-6" 00880003 F8008000 00880003 F8008000
r 1130.10
*Want "CLFEBR FPC pairs 7-8" 00000002 F8000002 00080002 F8000C02
r 1140.08
*Want "CLFEBR FPC pair 9" 00080002 F8000802
# rounding mode tests - short BFP - results from rounding
*Compare
r 1200.10 # RZ, RP, RM, RFS
*Want "CLFEBR -1.5 FPC modes 1-3, 7" 00000000 00000000 00000000 00000000
r 1210.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR -1.5 M3 modes 1, 3-5" 00000000 00000000 00000000 00000000
r 1220.08 # RP, RM
*Want "CLFEBR -1.5 M3 modes 6, 7" 00000000 00000000
r 1230.10 # RZ, RP, RM, RFS
*Want "CLFEBR -0.5 FPC modes 1-3, 7" 00000000 00000000 00000000 00000000
r 1240.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR -0.5 M3 modes 1, 3-5" 00000000 00000000 00000000 00000000
r 1250.08 # RP, RM
*Want "CLFEBR -0.5 M3 modes 6, 7" 00000000 00000000
r 1260.10 # RZ, RP, RM, RFS
*Want "CLFEBR 0.5 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 1270.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR 0.5 M3 modes 1, 3-5" 00000001 00000001 00000000 00000000
r 1280.08 # RP, RM
*Want "CLFEBR 0.5 M3 modes 6, 7" 00000001 00000000
r 1290.10 # RZ, RP, RM, RFS
*Want "CLFEBR 1.5 FPC modes 1-3, 7" 00000001 00000002 00000001 00000001
r 12A0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR 1.5 M3 modes 1, 3-5" 00000002 00000001 00000002 00000001
r 12B0.08 # RP, RM
*Want "CLFEBR 1.5 M3 modes 6, 7" 00000002 00000001
r 12C0.10 # RZ, RP, RM, RFS
*Want "CLFEBR 2.5 FPC modes 1-3, 7" 00000002 00000003 00000002 00000003
r 12D0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR 2.5 M3 modes 1, 3-5" 00000003 00000003 00000002 00000002
r 12E0.08 # RP, RM
*Want "CLFEBR 2.5 M3 modes 6, 7" 00000003 00000002
r 12F0.10 # RZ, RP, RM, RFS
*Want "CLFEBR 5.5 FPC modes 1-3, 7" 00000005 00000006 00000005 00000005
r 1300.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR 5.5 M3 modes 1, 3-5" 00000006 00000005 00000006 00000005
r 1310.08 # RP, RM
*Want "CLFEBR 5.5 M3 modes 6, 7" 00000006 00000005
r 1320.10 # RZ, RP, RM, RFS
*Want "CLFEBR 9.5 FPC modes 1-3, 7" 00000009 0000000A 00000009 00000009
r 1330.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR 9.5 M3 modes 1, 3-5" 0000000A 00000009 0000000A 00000009
r 1340.08 # RP, RM
*Want "CLFEBR 9.5 M3 modes 6, 7" 0000000A 00000009
r 1350.10 # RZ, RP, RM, RFS
*Want "CLFEBR max FPC modes 1-3, 7" FFFFFF00 FFFFFF00 FFFFFF00 FFFFFF00
r 1360.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR max M3 modes 1, 3-5" FFFFFF00 FFFFFF00 FFFFFF00 FFFFFF00
r 1370.08 # RP, RM
*Want "CLFEBR max M3 modes 6, 7" FFFFFF00 FFFFFF00
r 1380.10 # RZ, RP, RM, RFS
*Want "CLFEBR 0.75 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 1390.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR 0.75 M3 modes 1, 3-5" 00000001 00000001 00000001 00000000
r 13A0.08 # RP, RM
*Want "CLFEBR 0.75 M3 modes 6, 7" 00000001 00000000
r 13B0.10 # RZ, RP, RM, RFS
*Want "CLFEBR 0.25 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 13C0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR 0.25 M3 modes 1, 3-5" 00000000 00000001 00000000 00000000
r 13D0.08 # RP, RM
*Want "CLFEBR 0.25 M3 modes 6, 7" 00000001 00000000
# rounding mode tests - short BFP - FPCR contents with cc in last byte
*Compare
r 1600.10
*Want "CLFEBR -1.5 FPC modes 1-3, 7 FPCR" 00800003 00800003 00800003 00800003
r 1610.10
*Want "CLFEBR -1.5 M3 modes 1, 3-5 FPCR" 00880003 00880003 00880003 00880003
r 1620.08
*Want "CLFEBR -1.5 M3 modes 6, 7 FPCR" 00880003 00880003
r 1630.10
*Want "CLFEBR -0.5 FPC modes 1-3, 7 FPCR" 00000001 00000001 00800003 00800003
r 1640.10
*Want "CLFEBR -0.5 M3 modes 1, 3-5 FPCR" 00880003 00880003 00080001 00080001
r 1650.08
*Want "CLFEBR -0.5 M3 modes 6, 7 FPCR" 00080001 00880003
r 1660.10
*Want "CLFEBR +0.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 1670.10
*Want "CLFEBR +0.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 1680.08
*Want "CLFEBR +0.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 1690.10
*Want "CLFEBR +1.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 16A0.10
*Want "CLFEBR +1.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 16B0.08
*Want "CLFEBR +1.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 16C0.10
*Want "CLFEBR +2.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 16D0.10
*Want "CLFEBR +2.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 16E0.08
*Want "CLFEBR +2.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 16F0.10
*Want "CLFEBR +5.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 1700.10
*Want "CLFEBR +5.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 1710.08
*Want "CLFEBR +5.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 1720.10
*Want "CLFEBR +9.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 1730.10
*Want "CLFEBR +9.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 1740.08
*Want "CLFEBR +9.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 1750.10
*Want "CLFEBR max FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 1760.10
*Want "CLFEBR max M3 modes 1, 3-5 FPCR" 00000002 00000002 00000002 00000002
r 1770.08
*Want "CLFEBR max M3 modes 5-7" 00000002 00000002
r 1780.10 # RZ, RP, RM, RFS
*Want "CLFEBR +0.75 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 1790.10 # RNTA, RFS, RNTE, RZ
*Want "CLFEBR +0.75 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 17A0.08 # RP, RM
*Want "CLFEBR +0.75 M3 modes 6, 7 FPCR" 00080002 00080002
r 17B0.10
*Want "CLFEBR +0.25 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 17C0.10
*Want "CLFEBR +0.25 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 17D0.08
*Want "CLFEBR +0.25 M3 modes 6, 7 FPCR" 00080002 00080002
# BFP short inputs converted to uint-32 test results
*Compare
r 2000.10
*Want "CLFDBR result pairs 1-2" 00000001 00000001 00000002 00000002
r 2010.10
*Want "CLFDBR result pairs 3-4" 00000004 00000004 00000000 00000000
r 2020.10
*Want "CLFDBR result pairs 5-6" 00000000 00000000 FFFFFFFF 00000000
r 2030.10
*Want "CLFDBR result pairs 7-8" FFFFFFFF FFFFFFFF 00000001 00000001
r 2040.08
*Want "CLFDBR result pair 9" 00000000 00000000
# BFP long inputs converted to uint-32 FPCR contents, cc
*Compare
r 2100.10
*Want "CLFDBR FPC pairs 1-2" 00000002 F8000002 00000002 F8000002
r 2110.10
*Want "CLFDBR FPC pairs 3-4" 00000002 F8000002 00880003 F8008000
r 2120.10
*Want "CLFDBR FPC pairs 5-6" 00880003 F8008000 00880003 F8008000
r 2130.10
*Want "CLFDBR FPC pairs 7-8" 00080002 F8000802 00080002 F8000C02
r 2140.08
*Want "CLFDBR FPC pair 9" 00080002 F8000802
# rounding mode tests - long BFP - results from rounding
*Compare
r 2200.10 # RZ, RP, RM, RFS
*Want "CLFDBR -1.5 FPC modes 1-3, 7" 00000000 00000000 00000000 00000000
r 2210.10 # RNTA, FS, RNTE, RZ
*Want "CLFDBR -1.5 M3 modes 1, 3-5" 00000000 00000000 00000000 00000000
r 2220.08 # RP, RM
*Want "CLFDBR -1.5 M3 modes 6, 7" 00000000 00000000
r 2230.10 # RZ, RP, RM, RFS
*Want "CLFDBR -0.5 FPC modes 1-3, 7" 00000000 00000000 00000000 00000000
r 2240.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR -0.5 M3 modes 1, 3-5" 00000000 00000000 00000000 00000000
r 2250.08 # RP, RM
*Want "CLFDBR -0.5 M3 modes 6, 7" 00000000 00000000
r 2260.10 # RZ, RP, RM, RFS
*Want "CLFDBR 0.5 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 2270.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR 0.5 M3 modes 1, 3-5" 00000001 00000001 00000000 00000000
r 2280.08 # RP, RM
*Want "CLFDBR 0.5 M3 modes 6, 7" 00000001 00000000
r 2290.10 # RZ, RP, RM, RFS
*Want "CLFDBR 1.5 FPC modes 1-3, 7" 00000001 00000002 00000001 00000001
r 22A0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR 1.5 M3 modes 1, 3-5" 00000002 00000001 00000002 00000001
r 22B0.08 # RP, RM
*Want "CLFDBR 1.5 M3 modes 6, 7" 00000002 00000001
r 22C0.10 # RZ, RP, RM, RFS
*Want "CLFDBR 2.5 FPC modes 1-3, 7" 00000002 00000003 00000002 00000003
r 22D0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR 2.5 M3 modes 1, 3-5" 00000003 00000003 00000002 00000002
r 22E0.08 # RP, RM
*Want "CLFDBR 2.5 M3 modes 6, 7" 00000003 00000002
r 22F0.10 # RZ, RP, RM, RFS
*Want "CLFDBR 5.5 FPC modes 1-3, 7" 00000005 00000006 00000005 00000005
r 2300.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR 5.5 M3 modes 1, 3-5" 00000006 00000005 00000006 00000005
r 2310.08 # RP, RM
*Want "CLFDBR 5.5 M3 modes 6, 7" 00000006 00000005
r 2320.10 # RZ, RP, RM, RFS
*Want "CLFDBR 9.5 FPC modes 1-3, 7" 00000009 0000000A 00000009 00000009
r 2330.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR 9.5 M3 modes 1, 3-5" 0000000A 00000009 0000000A 00000009
r 2340.08 # RP, RM
*Want "CLFDBR 9.5 M3 modes 6, 7" 0000000A 00000009
r 2350.10 # RZ, RP, RM, RFS
*Want "CLFDBR max FPC modes 1-3, 7" FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF
r 2360.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR max M3 modes 1, 3-5" FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF
r 2370.08 # RP, RM
*Want "CLFDBR max M3 modes 6, 7" FFFFFFFF FFFFFFFF
r 2380.10 # RZ, RP, RM, RFS
*Want "CLFDBR 0.75 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 2390.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR 0.75 M3 modes 1, 3-5" 00000001 00000001 00000001 00000000
r 23A0.08 # RP, RM
*Want "CLFDBR 0.75 M3 modes 6, 7" 00000001 00000000
r 23B0.10 # RZ, RP, RM, RFS
*Want "CLFDBR 0.25 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 23C0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFDBR 0.25 M3 modes 1, 3-5" 00000000 00000001 00000000 00000000
r 23D0.08 # RP, RM
*Want "CLFDBR 0.25 M3 modes 6, 7" 00000001 00000000
# rounding mode tests - long BFP - FPCR contents with cc in last byte
*Compare
r 2600.10
*Want "CLFDBR -1.5 FPC modes 1-3, 7 FPCR" 00800003 00800003 00800003 00800003
r 2610.10
*Want "CLFDBR -1.5 M3 modes 1, 3-5 FPCR" 00880003 00880003 00880003 00880003
r 2620.08
*Want "CLFDBR -1.5 M3 modes 6, 7 FPCR" 00880003 00880003
r 2630.10
*Want "CLFDBR -0.5 FPC modes 1-3, 7 FPCR" 00000001 00000001 00800003 00800003
r 2640.10
*Want "CLFDBR -0.5 M3 modes 1, 3-5 FPCR" 00880003 00880003 00080001 00080001
r 2650.08
*Want "CLFDBR -0.5 M3 modes 6, 7 FPCR" 00080001 00880003
r 2660.10
*Want "CLFDBR +0.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 2670.10
*Want "CLFDBR +0.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 2680.08
*Want "CLFDBR +0.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 2690.10
*Want "CLFDBR +1.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 26A0.10
*Want "CLFDBR +1.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 26B0.08
*Want "CLFDBR +1.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 26C0.10
*Want "CLFDBR +2.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 26D0.10
*Want "CLFDBR +2.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 26E0.08
*Want "CLFDBR +2.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 26F0.10
*Want "CLFDBR +5.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 2700.10
*Want "CLFDBR +5.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 2710.08
*Want "CLFDBR +5.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 2720.10
*Want "CLFDBR +9.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 2730.10
*Want "CLFDBR +9.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 2740.08
*Want "CLFDBR +9.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 2750.10
*Want "CLFDBR max FPC modes 1-3, 7 FPCR" 00000002 00800003 00000002 00000002
r 2760.10
*Want "CLFDBR max M3 modes 1, 3-5 FPCR" 00880003 00080002 00880003 00080002
r 2770.08
*Want "CLFDBR max M3 modes 6, 7 FPCR" 00880003 00080002
r 2780.10
*Want "CLFDBR +0.75 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 2790.10
*Want "CLFDBR +0.75 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 27A0.08
*Want "CLFDBR +0.75 M3 modes 6, 7 FPCR" 00080002 00080002
r 27B0.10
*Want "CLFDBR +0.25 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 27C0.10
*Want "CLFDBR +0.25 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 27D0.08
*Want "CLFDBR +0.25 M3 modes 6, 7 FPCR" 00080002 00080002
# BFP extended inputs converted to uint-32 test results
*Compare
r 3000.10
*Want "CLFXBR result pairs 1-2" 00000001 00000001 00000002 00000002
r 3010.10
*Want "CLFXBR result pairs 3-4" 00000004 00000004 00000000 00000000
r 3020.10
*Want "CLFXBR result pairs 5-6" 00000000 00000000 FFFFFFFF 00000000
r 3030.10
*Want "CLFXBR result pairs 7-8" FFFFFFFF FFFFFFFF 00000001 00000001
r 3040.08
*Want "CLFXBR result pair 9" 00000000 00000000
# BFP extended inputs converted to uint-32 FPCR contents, cc
*Compare
r 3100.10
*Want "CLFXBR FPC pairs 1-2" 00000002 F8000002 00000002 F8000002
r 3110.10
*Want "CLFXBR FPC pairs 3-4" 00000002 F8000002 00880003 F8008000
r 3120.10
*Want "CLFXBR FPC pairs 5-6" 00880003 F8008000 00880003 F8008000
r 3130.10
*Want "CLFXBR FPC pairs 7-8" 00080002 F8000802 00080002 F8000C02
r 3140.08
*Want "CLFXBR FPC pair 9" 00080002 F8000802
# rounding mode tests - extended BFP - results from rounding
*Compare
r 3200.10 # RZ, RP, RM, RFS
*Want "CLFXBR -1.5 FPC modes 1-3, 7" 00000000 00000000 00000000 00000000
r 3210.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR -1.5 M3 modes 1, 3-5" 00000000 00000000 00000000 00000000
r 3220.08 # RP, RM
*Want "CLFXBR -1.5 M3 modes 6, 7" 00000000 00000000
r 3230.10 # RZ, RP, RM, RFS
*Want "CLFXBR -0.5 FPC modes 1-3, 7" 00000000 00000000 00000000 00000000
r 3240.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR -0.5 M3 modes 1, 3-5" 00000000 00000000 00000000 00000000
r 3250.08 # RP, RM
*Want "CLFXBR -0.5 M3 modes 6, 7" 00000000 00000000
r 3260.10 # RZ, RP, RM, RFS
*Want "CLFXBR 0.5 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 3270.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR 0.5 M3 modes 1, 3-5" 00000001 00000001 00000000 00000000
r 3280.08 # RP, RM
*Want "CLFXBR 0.5 M3 modes 6, 7" 00000001 00000000
r 3290.10 # RZ, RP, RM, RFS
*Want "CLFXBR 1.5 FPC modes 1-3, 7" 00000001 00000002 00000001 00000001
r 32A0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR 1.5 M3 modes 1, 3-5" 00000002 00000001 00000002 00000001
r 32B0.08 # RP, RM
*Want "CLFXBR 1.5 M3 modes 6, 7" 00000002 00000001
r 32C0.10 # RZ, RP, RM, RFS
*Want "CLFXBR 2.5 FPC modes 1-3, 7" 00000002 00000003 00000002 00000003
r 32D0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR 2.5 M3 modes 1, 3-5" 00000003 00000003 00000002 00000002
r 32E0.08 # RP, RM
*Want "CLFXBR 2.5 M3 modes 6, 7" 00000003 00000002
r 32F0.10 # RZ, RP, RM, RFS
*Want "CLFXBR 5.5 FPC modes 1-3, 7" 00000005 00000006 00000005 00000005
r 3300.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR 5.5 M3 modes 1, 3-5" 00000006 00000005 00000006 00000005
r 3310.08 # RP, RM
*Want "CLFXBR 5.5 M3 modes 6, 7" 00000006 00000005
r 3320.10 # RZ, RP, RM, RFS
*Want "CLFXBR 9.5 FPC modes 1-3, 7" 00000009 0000000A 00000009 00000009
r 3330.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR 9.5 M3 modes 1, 3-5" 0000000A 00000009 0000000A 00000009
r 3340.08 # RP, RM
*Want "CLFXBR 9.5 M3 modes 6, 7" 0000000A 00000009
r 3350.10 # RZ, RP, RM, RFS
*Want "CLFXBR max FPC modes 1-3, 7" FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF
r 3360.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR max M3 modes 1, 3-5" FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF
r 3370.08 # RP, RM
*Want "CLFXBR max M3 modes 6, 7" FFFFFFFF FFFFFFFF
r 3380.10 # RZ, RP, RM, RFS
*Want "CLFXBR 0.75 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 3390.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR 0.75 M3 modes 1, 3-5" 00000001 00000001 00000001 00000000
r 33A0.08 # RP, RM
*Want "CLFXBR 0.75 M3 modes 6, 7" 00000001 00000000
r 33B0.10 # RZ, RP, RM, RFS
*Want "CLFXBR 0.25 FPC modes 1-3, 7" 00000000 00000001 00000000 00000001
r 33C0.10 # RNTA, RFS, RNTE, RZ
*Want "CLFXBR 0.25 M3 modes 1, 3-5" 00000000 00000001 00000000 00000000
r 33D0.08 # RP, RM
*Want "CLFXBR 0.25 M3 modes 6, 7" 00000001 00000000
r 3600.10
*Want "CLFXBR -1.5 FPC modes 1-3, 7 FPCR" 00800003 00800003 00800003 00800003
r 3610.10
*Want "CLFXBR -1.5 M3 modes 1, 3-5 FPCR" 00880003 00880003 00880003 00880003
r 3620.08
*Want "CLFXBR -1.5 M3 modes 6, 7 FPCR" 00880003 00880003
r 3630.10
*Want "CLFXBR -0.5 FPC modes 1-3, 7 FPCR" 00000001 00000001 00800003 00800003
r 3640.10
*Want "CLFXBR -0.5 M3 modes 1, 3-5 FPCR" 00880003 00880003 00080001 00080001
r 3650.08
*Want "CLFXBR -0.5 M3 modes 6, 7 FPCR" 00080001 00880003
r 3660.10
*Want "CLFXBR +0.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 3670.10
*Want "CLFXBR +0.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 3680.08
*Want "CLFXBR +0.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 3690.10
*Want "CLFXBR +1.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 36A0.10
*Want "CLFXBR +1.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 36B0.08
*Want "CLFXBR +1.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 36C0.10
*Want "CLFXBR +2.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 36D0.10
*Want "CLFXBR +2.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 36E0.08
*Want "CLFXBR +2.5 M3 modes 5-7" 00080002 00080002
r 36F0.10
*Want "CLFXBR +5.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 3700.10
*Want "CLFXBR +5.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 3710.08
*Want "CLFXBR +5.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 3720.10
*Want "CLFXBR +9.5 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 3730.10
*Want "CLFXBR +9.5 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 3740.08
*Want "CLFXBR +9.5 M3 modes 6, 7 FPCR" 00080002 00080002
r 3750.10
*Want "CLFXBR max FPC modes 1-3, 7 FPCR" 00000002 00800003 00000002 00000002
r 3760.10
*Want "CLFXBR max M3 modes 1, 3-5 FPCR" 00880003 00080002 00880003 00080002
r 3770.08
*Want "CLFXBR max M3 modes 6, 7 FPCR" 00880003 00080002
r 3780.10
*Want "CLFXBR +0.75 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 3790.10
*Want "CLFXBR +0.75 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 37A0.08
*Want "CLFXBR +0.75 M3 modes 6, 7 FPCR" 00080002 00080002
r 37B0.10
*Want "CLFXBR +0.25 FPC modes 1-3, 7 FPCR" 00000002 00000002 00000002 00000002
r 37C0.10
*Want "CLFXBR +0.25 M3 modes 1, 3-5 FPCR" 00080002 00080002 00080002 00080002
r 37D0.08
*Want "CLFXBR +0.25 M3 modes 6, 7 FPCR" 00080002 00080002
*Done
|
9c846e8a0886190866a6e2a0c2dc8acc3826f142 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1286/CH5/EX5.1/5_1.sce | f03200d86f04bb64885d7574c63b400c59a0cc02 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 170 | sce | 5_1.sce | clc
//initialisations
h=50//m
g=9.8//m/sec2
l=1000
j=4.2//j/cal
//calculations
q=h*g/j
t=q/l
//results
printf(' difference in temperature of water= % 1f C',t)
|
f5051ebc40994b5ffd17ba1ddb184542341f1bd2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /797/CH5/EX5.15.s/5_15_solution.sce | d5a86bef1192acf1c87796355d2e71bfbc268fef | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 5_15_solution.sce | //Solution 5-15
WD=get_absolute_file_path('5_15_solution.sce');
datafile=WD+filesep()+'5_15_example.sci';
clc;
exec(datafile)
Wdot_shaft = Wdot_shaft * 1000;
Wdot_pump = eta_pump * Wdot_shaft / 100;
mdot = Wdot_pump / (g * (z_2 + h_L)); //energy equation
Vdot = mdot / rho;
printf("Discharge rate of water is %1.4e m^3/s i.e %1.4f L/s", Vdot, Vdot * 1000);
deltaP = Wdot_pump / Vdot;
printf("\nPressure difference across the pump is %1.2f kPa", deltaP / 1000); |
9cddba800f6c5aaaa52a366fa7b58dd842fc7653 | 449d555969bfd7befe906877abab098c6e63a0e8 | /991/CH14/EX14.6/Example14_6.sce | 14060871f0ba483d34ff2e02f2705a5ddd5a47b7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 386 | sce | Example14_6.sce | //Example 14.6.
clc
format(6)
Ai=1+80
disp(Ai," Ai = 1 + hfe =")
Ri=(5*10^3)+((1+80)*(2*10^3)) //in ohm
x1=Ri*10^-3 //in k-ohm
disp(x1," Ri(k-ohm) = hie + (1+hfe)*RL =")
Av=(81*2*10^3)/(167*10^3)
disp(Av," Av = Ai*RL / Ri =")
Ro=(5000+600)/(1+80) // in ohm
disp(Ro," Ro(ohm) = hie+Rs / 1+hfe =")
Rof=(69.13*2000)/(2069.13) //in ohm
disp(Rof," Rof(ohm) = Ro || RL =") |
ad5ac219fe8afe24795160cb5f33fc9fe6cefff1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1019/CH6/EX6.6/Example_6_6.sce | 19903ccaa1184299fb5ca31dd43cafc064fa933c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 507 | sce | Example_6_6.sce | //Example 6.6
clear;
clc;
//Given
delHfus=6.0;//heatoffusion of water in kJ mol^-1
T=298;//temperature in K
k=1.38*(10^(-23));//in J K^-1
N=10;//number of molecules
//To calculate the probabilty that 10 molecules will be found in half of the container
delS=N*k*log(0.5);//entropy change in J mol^-1 K^-1
w=delS/(2.303*k);//w=log10(W)
W=10^(w);//probabilty that 10 molecules will be found in half of the container
mprintf('probabilty that 10 molecules will be found in half of the container = %f',W);
//end |
56996ce8a4d2b5ebbb84bd599f67aa3ee766417d | 952f05b9b2293792559cddaf7ee402ccc22b0b8d | /icclim/test-cases/test-cases-read-the-docs/read-the-docs-example-10.tst | f6c66748a900f3098b0670b5fabfe61669152272 | [
"Apache-2.0"
] | permissive | ptrgast/icclim | a5c768bde9f5ce0562ef8250262ca1d70213c461 | 1c43cc7fc5d779f04fb72361a80bde3b232a9580 | refs/heads/master | 2020-05-18T18:44:15.153378 | 2020-02-04T07:46:40 | 2020-02-04T07:46:40 | 184,594,303 | 0 | 0 | NOASSERTION | 2020-02-04T07:46:41 | 2019-05-02T14:19:16 | Python | UTF-8 | Scilab | false | false | 531 | tst | read-the-docs-example-10.tst | [Read-the-docs-example-10] # Read the docs - example 10
user_indice: {'indice_name': 'my_indice', 'calc_operation': 'nb_events', 'calc_operation': 'max_nb_consecutive_events', 'logical_operation': 'gt', 'thresh': 'p85', 'var_type': 'p'}
in_files: ['pr_day_CNRM-CM5_historical_r1i1p1_19700101-19741231.nc','pr_day_CNRM-CM5_historical_r1i1p1_19750101-19791231.nc','pr_day_CNRM-CM5_historical_r1i1p1_19800101-19841231.nc']
base_dt1: 1970-01-01
base_dt2: 1975-12-31
slice_mode: year
out_unit: days
callback: callback.defaultCallback2
|
c443f29413a6e0bcb3494ed2b48ca0180d866e92 | 449d555969bfd7befe906877abab098c6e63a0e8 | /343/CH2/EX2.47/ex2_47.sce | 89d8b1b07dabd6a406cf4636562b12f80e7161e4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 166 | sce | ex2_47.sce | clc
Vr=10; //Assigning values to parameters
Vl=15;
Vc=10;
V=sqrt(Vr^2+(Vl-Vc)^2);
V=10+%i*0+0+%i*15+0-%i*10;
[r,t]=polar(V);
disp("Volts",r,"Voltage"); |
face725ab9bd072d07abd5a23cf08f232ed0ccde | 448b934390596180e5965efadbcbe8e13809ab8c | /macros/pkgQuit.sci | 55803004b5359c87854873bc9d5464e6c9f905f4 | [] | no_license | pirpyn/pkg-scilab | 3834d8b5e5e7cbb71e2d2cff14ea763d32259bf0 | b3ac0d499c9b446d02159f29068616fcf2a57f56 | refs/heads/master | 2021-01-19T17:36:20.707736 | 2017-12-11T21:31:23 | 2017-12-11T21:31:23 | 101,072,162 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 208 | sci | pkgQuit.sci | function pkgQuit()
f = pkgGetRootHandle(gcbo)
btn = messagebox('All modification will be lost.','Exit','warning',['Continue','Cancel'],'modal')
if btn==1 then
xdel(f.figure_id)
end
endfunction
|
91baa5daad529bf4741063f41b2b55202280ed5b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2873/CH7/EX7.15/Ex7_15.sce | 328ec97a47c01d81c25c052429b7eda2ee7c87bd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 303 | sce | Ex7_15.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Engineering Thermodynamics by Onkar Singh Chapter 7 Example 15")
disp("In question no. 15 prove for ideal gas satisfies the cyclic relation is done which cannot be solve using scilab software.")
|
b9ef52bfadbf811322b154287e9dead692d1d53d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1151/CH1/EX1.4/example4.sce | 9d0c9a78d17fa0f85ae589301f1b89429f04846d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 153 | sce | example4.sce | //find transfer function of lag network
printf("syms R1 R2 C\n ei=(R1+R2+(1/C)*s);\n eo=(R2+(1/C)*s);\n G=eo/ei;\n transfer function Eo(s)/Ei(s)is:G")
|
b49fce51bef04fb763d7a30f769927ed9b6d5fef | 449d555969bfd7befe906877abab098c6e63a0e8 | /3648/CH5/EX5.16/Ex5_16.sce | 23bb7ca26424652a0847b7fcd5118e560eef0129 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 297 | sce | Ex5_16.sce | //Example 5_16
clc();
clear;
//To find IMA AMA and Efficiency of the system
si=3
so=1
IMA=si/so
Fo=2000 //units in Newtons
Fi=800 //units in Newtons
AMA=Fo/Fi
effi=AMA/IMA*100
printf("IMA=%.2f\n",IMA)
printf("AMA=%.2f\n",AMA)
printf("Percentage of efficiency is %d percent",effi)
|
4e0baa472202545ebec2576db1f23e1045529794 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1319/CH5/EX5.16/5_16.sce | 4a4144ca67181acfa30fc58ca2cee299222f7ea9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 597 | sce | 5_16.sce | // Determine primary and secondary voltages and current
clc;
clear;
R1=100;
R2=40;
P=2; // Power
r=sqrt(R2/R1); // n2/n1 Turns ratio
if(r<1)
printf(' The turns ratio is 1 : %g \n',(1/r));
else
printf('The turns ratio is %g : 1 \n',r);
end
V1=sqrt(P*(R1));
V2=sqrt(P*(R2));
I1=V1/R1;
I2=V2/R2;
printf('\n Voltages are as follows \n')
printf('The primary voltage = %g V \n',V1)
printf('The secondary voltage = %g V \n',V2)
printf('\n Currents are as follows \n')
printf('The primary current = %g A \n',I1)
printf('The secondary current = %g A \n',I2)
|
05b21dee4e9dedb5dd24125c403ce7c75bdb0ae5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH11/EX11.13/11_13.sce | 17382d5c3f0f786d72826ca00afcd780f83d817f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 221 | sce | 11_13.sce |
Xs=8
Ia=40
V=600
Vt=V/sqrt(3)
Ef=V
delta=acos((1-(Xs*Ia/V)^2+(Vt/V)^2)/2/Vt*V)
theta=-atan((cos(delta)-Vt/V)/sin(delta))
pf=cos(theta)
Pout=sqrt(3)*V*pf*Ia
disp(Pout)
theta=-theta
Pin=Pout
disp(Pout)
|
e5e974da4e679fcc7af95709bcccee36ccd914d8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2384/CH10/EX10.14/ex10_14.sce | e7186d6d0f1a146dd619677ec222b217d1d05b4a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 339 | sce | ex10_14.sce | // Exa 10.14
clc;
clear;
close;
format('v',7)
// Given data
P = 4;
slots = 144;
phi = 20;// in mWb
phi = phi * 10^-3;// in Wb
N = 720;// in rpm
A = 4;
P =4;
n1 = 2;// in coil/slot
n2 = 2;// in turns/coil
Z = slots*n1*n2;// total number of conductor
Eg = (N*P*phi*Z)/(60*A);// in V
disp(Eg,"The induced voltage in V is");
|
de84024ee432ef324a73efd76c446142182175d8 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.3.1/macros/auto/statgain.sci | b40550281c15d7fe0ed81d2cf4c2994a8a81c3c5 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 633 | sci | statgain.sci | function st=statgain(sl)
//-compat type(sl)<>15 retained for list/tlist compatibility
if type(sl)<>15&type(sl)<>16 then error(97,1),end
flag=sl(1);
select flag(1)
case 'lss'
dom=sl(7);
[m,p]=size(sl(2));
if dom='c' then
if rank(sl(2)) <> m then error('singular A matrix'),end
st=sl(5)-sl(4)*inv(sl(2))*sl(3);
else
if rank(eye(m,m)-sl(2))<>m then error('singular eye-a matrix'),end
st=sl(5)+sl(4)*inv(eye(m,m)-sl(2))*sl(3);
end;
case 'r' then
dom=sl(4)
if dom='c' then
st=freq(sl(2),sl(3),0)
else
st=freq(sl(2),sl(3),1)
end;
else error(97,1)
end;
|
c3b2c70b595708e814e10216363980eaeb33502e | 449d555969bfd7befe906877abab098c6e63a0e8 | /476/CH7/EX7.13/Example_7_13.sce | fd43fecd18b176e1fbc97567b3a21a0c98a86086 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 941 | sce | Example_7_13.sce | //A Textbook of Chemical Engineering Thermodynamics
//Chapter 7
//Properties of Solutions
//Example 13
clear;
clc;
//Given:
P = 20; //pressure in bar
//Function for fugacity of component 1
function [y] = f1(x1);
y = (50*x1)-(80*x1^2)+(40*x1^3)
endfunction
//To determine fugacity fugacity coeffecient Henry's Law constant and activity coeffecient
//(a)
//Fugacity of component in solution becomes fugacity of pure component when mole fraction approaches 1 i.e.
x1 = 1;
f1_pure = f1(x1);
mprintf('(a). Fugacity f1 of pure component 1 is %i bar',f1_pure);
//(b)
phi = f1_pure/P;
mprintf('\n (b). Fugacity coeffecient is %f',phi);
//(c)
//Henry's Law constant is lim (f1/x1)and x1 tends to 0
x1 = 0;
K1 = 50 - (80*x1) + (40*x1^2);
mprintf('\n (c). Henrys Law constant is %i bar',K1);
//(d)
mprintf('\n (d). This subpart is theoretical and does not involve any numerical computation');
//end |
ffe96cc8846496ee5a68bb2d6d4f84713aae3601 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1301/CH9/EX9.7/ex9_7.sce | 89b25bf620fc279abf29504e56710f7d4d4d2ce8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 338 | sce | ex9_7.sce | clc;
Q=200; //heat in Btu(British Thermal Unit)
m=50; //mass in lb
c=0.5; //specific heat capacity inBtu/lb.F
delT=Q/(m*c); //calculating change in temperatur using Q=mc(del T)
disp(delT,"Change in Temperature in Farenheit = "); //displaying result.
disp(25-delT,"Final Temperature in Farenheit = "); //displaying result. |
79ceb8677f59c0111319b0db3c8c28528f717bb6 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electrical_Measurements_And_Measuring_Instruments_N._V._Suryanarayana_1376.zip/Electrical_Measurements_And_Measuring_Instruments_N._V._Suryanarayana_1376/CH3/EX3.8/3_8.sci | dd9201ea2b3b18adefa1498e4cdfd982fc567975 | [] | 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 | 214 | sci | 3_8.sci | errcatch(-1,"stop");mode(2);//3.8
;
Sp_constant=10.5*10^-6*%pi/180;
deflection=83;
Td=Sp_constant*deflection;
I1=10;
K=0.078;
I2=(Td/(K*I1))*10^6;
printf("Current in the voltage coil=%.2f uA",I2)
exit();
|
ea1fdb4ea676a1f16d5853c747cfc49af8fde9f5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1184/CH5/EX5.2/Ex5_2.sce | e92c504f05ad979d12f71aafc29320a8e065a0df | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 168 | sce | Ex5_2.sce | //Example 5-2, Page No - 160
clear
clc
max_deviation = 25*10^3
fm =15*10^3
mf =max_deviation/fm
printf('The deviation ratio of the TV sound is %.3f',mf)
|
ec1c3c71caa15c75ea8a466e0ca75effb8f5e264 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1862/CH19/EX19.4/C19P4.sce | acd8929582c87ce8118cddd894b8068dd0d62592 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 922 | sce | C19P4.sce | clear
clc
//to find speed of sound
// GIVEN:
//refer figure 19-8 from page no. 436
//frequeny
f = 1080//in Hz
//distances of water level at resonance
x1 = 6.5//in cm
x2 = 22.2//in cm
x3 = 37.7//in cm
// SOLUTION
//using equation of sound wave for resonance
//from first two resonances
half_lambda = x2-x1//in cm
//from second and third resonance
halflambda = x3-x2//in cm
//average of both lambda values
half_lambda1 = (half_lambda+halflambda)/2//in cm
//wavelength of sound wave
lambda = 2*(half_lambda1)//in cm
//speed of sound
v = (lambda*10^-2)*f//in m/s //taking lambda in meters
v = round(v)
printf ("\n\n From first two resonances half_lambda = \n\n %.1f cm ",half_lambda)
printf ("\n\n From second and third resonance halflambda = \n\n %.1f cm ",halflambda)
printf ("\n\n Wavelength of sound wave lambda = \n\n %.1f cm ",lambda)
printf ("\n\n Speed of sound v = \n\n %3i m/s ",v)
|
55c9116ded5bcb3972259a5a840446c97ac56083 | 337f9a673603d008cbd1b3cef9500ae806fef452 | /ruidos/Aula_02_Ex8Uniforme.sce | 5056ea452cf3aa48801a4ec50e66d5b4a20f01fd | [] | no_license | Gervaes/PDI | 6608e3ce8dcde1373512429039e3e51de32de2d1 | 912a9f1b6e40facdbef75d8c298a52127f5403e7 | refs/heads/master | 2021-04-12T04:31:13.241166 | 2018-06-21T14:01:39 | 2018-06-21T14:01:39 | 125,973,311 | 0 | 2 | null | 2018-03-29T19:52:56 | 2018-03-20T06:48:59 | Scilab | UTF-8 | Scilab | false | false | 2,051 | sce | Aula_02_Ex8Uniforme.sce | //Lendo imagens
a = imread('a.jpg');
b = imread('b.jpg');
c = imread('c.jpg');
d = imread('d.jpg');
e = imread('e.jpg');
//Transformando imagem pra matriz de double
a=im2double(a);
b=im2double(b);
c=im2double(c);
d=im2double(d);
e=im2double(e);
a=matrix(a(:), size(a));
b=matrix(b(:), size(b));
c=matrix(c(:), size(c));
d=matrix(d(:), size(d));
e=matrix(e(:), size(e));
//Distribuição padrão 10%
dist = 0.10;
old_rand_gen=rand('info');
rand('uniform');
//Aplicando ruído pra imagem a
prob=rand(a);
rand(old_rand_gen);
asp=a;
asp(prob < dist/2) = 0;
asp(prob >=dist/2 & prob < dist) = 1;
//Aplicando ruído pra imagem b
prob=rand(b);
rand(old_rand_gen);
bsp=b;
bsp(prob < dist/2) = 0;
bsp(prob >=dist/2 & prob < dist) = 1;
//Aplicando ruído pra imagem c
prob=rand(c);
rand(old_rand_gen);
csp=c;
csp(prob < dist/2) = 0;
csp(prob >=dist/2 & prob < dist) = 1;
//Aplicando ruído pra imagem d
prob=rand(d);
rand(old_rand_gen);
dsp=d;
dsp(prob < dist/2) = 0;
dsp(prob >=dist/2 & prob < dist) = 1;
//Aplicando ruído pra imagem e
prob=rand(e);
rand(old_rand_gen);
esp=e;
esp(prob < dist/2) = 0;
esp(prob >=dist/2 & prob < dist) = 1;
//Criando histogramas das imagens com ruído
for k=1:256
ah(k) = 0;
bh(k) = 0;
ch(k) = 0;
dh(k) = 0;
eh(k) = 0;
end
for i=1:256
for j=1:256
indice = double(asp(i,j)) + 1;
ah(indice) = ah(indice) + 1;
indice = double(bsp(i,j)) + 1;
bh(indice) = bh(indice) + 1;
indice = double(csp(i,j)) + 1;
ch(indice) = ch(indice) + 1;
indice = double(dsp(i,j)) + 1;
dh(indice) = dh(indice) + 1;
indice = double(esp(i,j)) + 1;
eh(indice) = eh(indice) + 1;
end
end
//Printando imagens
figure; imshow(a);
figure; imshow(asp);
figure; bar(ah);
figure; imshow(b);
figure; imshow(bsp);
figure; bar(bh);
figure; imshow(c);
figure; imshow(csp);
figure; bar(ch);
figure; imshow(d);
figure; imshow(dsp);
figure; bar(dh);
figure; imshow(e);
figure; imshow(esp);
figure; bar(eh);
|
d6e491d929520fae2141c83efa0c31688ef79f2e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3669/CH14/EX14.3/3.sce | 2f038f744273f95c0fcc5ca8f4abee508ee94d34 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 391 | sce | 3.sce |
//Variable declaration
mew=1.33; //refractive index of soap
t=5000*10**-10; //thickness(m)
n0=0;
n1=1;
n2=2;
n3=3;
//Calculation
x=4*mew*t;
lamda1=x/((2*n0)+1); //for n=0
lamda2=x/((2*n1)+1); //for n=1
lamda3=x/((2*n2)+1); //for n=2
lamda4=x/((2*n3)+1); //for n=3
//Result
printf('%0.3f angstrom lies in the visible region', lamda3*10**10) |
4ac2926578fab9f0e74e9935104a24ba9e5bd127 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1022/CH2/EX2.2/2_2.sce | c10d42868fafbc1f8a9c050f38a3c1301d945982 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 158 | sce | 2_2.sce | clc
//initialisation of variables
F= 1 //Pouunda
m= 1 //lbm
g= 1 //fts^-2
//CALCULATIONS
gc= m*g/F
//RESULTS
printf ('gc= %.2f lbm ft/poundal^2',gc)
|
fe3c62797b3172bd713cfa36330fffb8ea1d3825 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3793/CH5/EX5.3/exp_5_3.sce | c59f887235a3cd1a22580da9842e199e539b7535 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,157 | sce | exp_5_3.sce | clear;
clc;
function [Ecom,Emag]=vcurves(Prtd,Xs,Vt,Phi,K);
index=1;
if index==1;
X= input('percentage load');
Pg=X*Prtd;
Vt=Vt/sqrt(3);
pfang=Phi*%pi/180;
x=pfang:-.005:-pfang;
Pg=Pg*ones(1,length(x));
Ia=Pg./(3*abs(Vt)*cos(x));
Iacom=Ia.*(cos(x)+%i*sin(x));
Ecom=Vt+%i*Xs*Iacom;
Emag=abs(Ecom);
Ifld=Emag*1000/K;
plot(Ifld,Ia,'k');
set(gca(),"auto_clear","off");
return;
plot(Ifld,Ia,'k-');
return;
plot(Ifld,Ia,'k-.');
return;
plot(Ifld,Ia,'k.');
return;
set(gca(),"auto_clear","on");
else
end
endfunction
Prtd=36;
Vt=33;
Xs=10;
Phi=70;
K=1500;
[Ecom,Emag]=vcurves(Prtd,Xs,Vt,Phi,K);
[Ecom,Emag]=vcurves(Prtd,Xs,Vt,Phi,K);
[Ecom,Emag]=vcurves(Prtd,Xs,Vt,Phi,K);
[Ecom,Emag]=vcurves(Prtd,Xs,Vt,Phi,K);
index=0;
xlabel('Field current in amperes');
ylabel('Armature current in amp');
title('Plot of V-curves of a Synchronous machine');
|
6d883c34634a4b27e6c5af8079a54f39a8d8c381 | 4bbc2bd7e905b75d38d36d8eefdf3e34ba805727 | /ee_scicoslab/scicos_flex/dspic/NativeInteger/InterfaceLoader.sci | a7082caa63a985e109711ee7352c3fd08ed7a579 | [] | 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 | 165 | sci | InterfaceLoader.sci | //** ... a very crude temp solution ...
exec(EESCI_DSPIC_PATH + "/NativeInteger/NAT_GAINBLK.sci");
exec(EESCI_DSPIC_PATH + "/NativeInteger/NAT_SUMMATION.sci");
|
ef07c2de73aac7aa82231aaa93995dea88937eb3 | 35c34f73b38e0f9c1ed58f49101cc122232b172e | /qtcreator/brass.tst | 92c2562269c8cb66f4c505e5d7a209cd0a443c80 | [] | no_license | kanhar/X_Monotone_Longest_Path | 7dca1199b2ce77f42f9eb0e3ec59d867651be294 | c6b7cbf4fc42a2c97bec2e6d45cdbf40e26d5572 | refs/heads/master | 2021-06-25T03:31:38.515583 | 2021-01-19T03:31:30 | 2021-01-19T03:31:30 | 5,651,981 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 134 | tst | brass.tst | [0,600]x[0,400]
S (20,40) (100,50)
S (50,30) (100,200)
S (10,100) (200,70)
S (10,300) (300,370)
S (50,5) (70,290)
S (60,390) (80,100)
|
cd829b8864876f8cf340bebe32f7f9e0912fee0e | 449d555969bfd7befe906877abab098c6e63a0e8 | /32/CH5/EX5.05/5_05.sce | 1ace4a6e237ef1983935b984e656ff0b3579d08b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 519 | sce | 5_05.sce | //pathname=get_absolute_file_path('5.05.sce')
//filename=pathname+filesep()+'5.05-data.sci'
//exec(filename)
//Mass of the block(in kg):
m=1
//Temperature of the block(in K):
T=27+273
//Height(in m):
h=200
//Heat capacity for copper(in kJ/kg.K):
s=0.393
//Acceleration due to gravity(in m/s^2):
g=9.81
//Change in potential energy(in J):
PE=m*g*h
//In this case:
Q=PE
//Change in entropy of universe(in J/kg.K):
dSu=Q/T
printf("\nRESULT\n")
printf("\nChange in entropy of universe = %f J/kg.K",dSu) |
ef083790d4911ba3e50607ff1e4c2e201b9c405b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2666/CH11/EX11.4/11_4.sce | bd882afb1ef2c60727bd69897fafe726be4f4b54 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 292 | sce | 11_4.sce | clc
//initialisation of variables
h=300//cu ft
p1=14.2//psia
p2=150//psia
w1=74//percent
w2=88//percent
q=33000//ft
g=144//ft
t1=0.74//ft
t2=0.88//ft
//CALCULATIONS
I=(-g)*p1*h*log(p2/p1)/q//hp
P1=I/t1//hp
P2=P1/t2//hp
//RESULTS
printf('the isothermal horsepower=% f hp',P2)
|
7b3639bb80041164e3344a0158567550253ec701 | 449d555969bfd7befe906877abab098c6e63a0e8 | /615/CH8/EX8.20/8_20.sce | 07adaede78f64473f5673bde9109345e68580a08 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 530 | sce | 8_20.sce | //Fuels and Combustion//
//Example 8.20//
w=1080;//quantity of water taken in grams//
W=150;//Water equivalent of calorimeter in grams//
m=0.681;//weight of coal taken or mass of fuel in grams//
dt=3.61;//rise in temperature of water in degree C//
AC=50;//Acid correction in calories//
FC=5;//Fuse wire correction in calories//
CC=0.05;//cooling correction in calories//
GCV=((w+W)*(dt+CC)-(AC+FC))/m;//Gross calorific value of the sample in cal per grams//
printf('Gross Calorific value of the fuel=GCV=%fcal/g',GCV);
|
25edb7d154c45a88ce211fbbc9c0eeb2a8879fa5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3630/CH8/EX8.8/Ex8_8.sce | 7c9c6bd57dc000545e67cfc6da829346c51c6e9f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 56 | sce | Ex8_8.sce | clc;
ApdB=3;
Ap=10^(ApdB/10);
disp(' ',Ap,"Ap=");
|
5b16a0395f45f14750fbd840faa242ee65cb33b1 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/PV1.prev.tst | f4e105521cc7d1dfe70aed65259c94f339dba442 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 47 | tst | PV1.prev.tst | [m^2-n^2,2*m*n,m^2+n^2].powerSum(2, 2, 1) = 0
|
7062bd582b848d4f6f743588cfabb98636194a1a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3428/CH10/EX5.10.7/Ex5_10_7.sce | 9734ed9f922c3fcd2a31393fc02524efbc422960 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 300 | sce | Ex5_10_7.sce | //Section-5,Example-8,Page no.-D.8
//To calculate rate constant and time taken to complete 80% of the reaction.
clc;
//k=2.303/t log( r_0/r_t)
k=(2.303/50) *log10(1/0.6)
disp(k,'Rate constant(min^-1)')
t=(2.303/k)*(log10(1/0.2))
disp(t,'Time required when the reaction is 80% complete(min)')
|
a850f211a376feef755f20ef637bc7b2ed011b8d | c247bce84b3facd1a13b48e7417327c40c8b3898 | /FOPID/fod.sci | adabd1c0c855c93d1913b8fe6f62fdeb503eeb72 | [] | no_license | AstroSayan/FuzzyFOPID | 9de9fa761301da6ae1f5dfe7b8e7e8214f3b472b | ea0e31e8fa0b36e407de9dfa466cf46b583e4103 | refs/heads/main | 2023-04-26T19:18:30.590337 | 2021-05-13T18:27:32 | 2021-05-13T18:27:32 | 367,137,779 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 665 | sci | fod.sci | function G=fod(alpha,f,N,w)
wl=w(1); wh=w(2);
if f=='o' then
exec('C:\Users\SAYAN\Documents\FuzzyFOPID\oustaloup.sci');
G=oustaloup(alpha,N,wl,wh);
elseif f=='r' then
exec('C:\Users\SAYAN\Documents\FuzzyFOPID\refOustaloup.sci');
G=refOustaloup(alpha,N,wl,wh);
elseif f=='m' then
exec('C:\Users\SAYAN\Documents\FuzzyFOPID\matsuda.sci');
G=matsuda(alpha,N,wl,wh);
elseif f=='cf1' then
exec('C:\Users\SAYAN\Documents\FuzzyFOPID\curFit1.sci');
G=curFit1(alpha,N,wl,wh);
elseif f=='cf2' then
exec('C:\Users\SAYAN\Documents\FuzzyFOPID\curFit2.sci');
G=curFit2(alpha,N,wl,wh);
else
disp('Check the name of the approximation function')
end
endfunction
|
d891ba9a3c3269a14b7ebad6a895128c855ba6f4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /788/CH4/EX4.8.a/4_8_data.sci | 702964b7d710a0ea30b62b639de00aae0ef6cb74 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 220 | sci | 4_8_data.sci | // Aim:Refer Example 4-8 for Problem Description
// Given:
// Kinematic viscosity of oil:
nu=100; //cS
// Diameter of steel pipe:
D=1; //in
// flow rate:
Q=30; //gpm
// Diameter of wide open globe valve:
D_l=1; //in
|
bccd5c101d2cf07a9623eb63a02e2c43e79c80c4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /572/CH8/EX8.6/c8_6.sce | 87ec5c1a5ed6716a96ca330b6d3d340f753e2e18 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 6,227 | sce | c8_6.sce | //(8.6) Consider a reheat–regenerative vapor power cycle with two feedwater heaters, a closed feedwater heater and an open feedwater heater. Steam enters the first turbine at 8.0 MPa, 480C and expands to 0.7 MPa. The steam is reheated to 440C before entering the second turbine, where it expands to the condenser pressure of 0.008 MPa. Steam is extracted from the first turbine at 2 MPa and fed to the closed feedwater heater. Feedwater leaves the closed heater at 205C and 8.0 MPa, and condensate exits as saturated liquid at 2 MPa. The condensate is trapped into the open feedwater heater. Steam extracted from the second turbine at 0.3 MPa is also fed into the open feedwater heater, which operates at 0.3 MPa. The stream exiting the open feedwater heater is saturated liquid at 0.3 MPa. The net power output of the cycle is 100 MW. There is no stray heat transfer from any component to its surroundings. If the working fluid experiences no irreversibilities as it passes through the turbines, pumps, steam generator, reheater, and condenser, determine (a) the thermal efficiency, (b) the mass flow rate of the steam entering the first turbine, in kg/h.
//solution
//analysis
//State 1 is the same as in Example 8.3, so
h1 = 3348.4 //in kj/kg
s1 = 6.6586 //in kj/kg.k
//State 2 is fixed by p2 2.0 MPa and the specific entropy s2, which is the same as that of state 1. Interpolating in Table A-4, we get
h2 = 2963.5 //in kj/kg
//The state at the exit of the first turbine is the same as at the exit of the first turbine of Example 8.3, so
h3 = 2741.8 //in kj/kg
//State 4 is superheated vapor at 0.7 MPa, 440C. From Table A-4,
h4 = 3353.3 //in kj/kg
s4 = 7.7571 //in kj/kg.k
//interpolating in table A-4 at p5 = .3MPa and s5 = s4, the enthalpy at state 5 is
h5 = 3101.5 //in kj/kg
//Using s6 = s4, the quality at state 6 is found to be
x6 = .9382
//using steam tables, for state 6
hf = 173.88 //in kj/kg
hfg = 2403.1 //in kj/kg
h6 = hf + x6*hfg
//at the condenser exit, we have
h7 = 173.88 //in kj/kg
v7 = 1.0084e-3 //in m^3/kg
p8 = .3 //in MPa
p7 = .008 //in MPa
h8 = h7 + v7*(p8-p7)*10^6*10^-3 //The specific enthalpy at the exit of the first pump in kj/kg
//The liquid leaving the open feedwater heater at state 9 is saturated liquid at 0.3 MPa. The specific enthalpy is
h9 = 561.47 //in kj/kg
//for the exit of the second pump,
v9 = 1.0732e-3 //in m^3/kg
p10 = 8 //in MPa
p9 = .3 //in MPa
h10 = h9 + v9*(p10-p9)*10^6*10^-3 //The specific enthalpy at the exit of the second pump in kj/kg
//The condensate leaving the closed heater is saturated at 2 MPa. From Table A-3,
h12 = 908.79 //in kj/kg
h13 = h12 //since The fluid passing through the trap undergoes a throttling process
//for the feedwater exiting the closed heater
hf = 875.1 //in kj/kg
vf = 1.1646e-3 //in m^3/kg
p11 = 8 //in MPa
psat = 1.73 //in MPa
h11 = hf + vf*(p11-psat)*10^6*10^-3 //in kj/kg
ydash = (h11-h10)/(h2-h12) //the fraction of the total flow diverted to the closed heater
ydashdash = ((1-ydash)*h8+ydash*h13-h9)/(h8-h5) //the fraction of the total flow diverted to the open heater
//part(a)
wt1dot = (h1-h2) + (1-ydash)*(h2-h3) //The work developed by the first turbine per unit of mass entering in kj/kg
wt2dot = (1-ydash)*(h4-h5) + (1-ydash-ydashdash)*(h5-h6) //The work developed by the second turbine per unit of mass in kj/kg
wp1dot = (1-ydash-ydashdash)*(h8-h7) //The work for the first pump per unit of mass in kj/kg
wp2dot = h10-h9 //The work for the second pump per unit of mass in kj/kg
qindot = (h1-h11) + (1-ydash)*(h4-h3) //The total heat added expressed on the basis of a unit of mass entering the first turbine
eta = (wt1dot+wt2dot-wp1dot-wp2dot)/qindot //thermal efficiency
printf('the thermal efficiency is: %f',eta)
//part(b)
Wcycledot = 100 //the net power output of the cycle in MW
m1dot = (Wcycledot*3600*10^3)/(wt1dot+wt2dot-wp1dot-wp2dot)
printf('\nthe mass flow rate of the steam entering the first turbine, in kg/h is: %e',m1dot)
|
9797ce24ecd241d6ead3beaee4dc79e8c0d2a388 | 449d555969bfd7befe906877abab098c6e63a0e8 | /536/CH10/EX10.2/Example_10_2.sce | 5f223922ad903de08d0f207b4f8ea008088472b7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example_10_2.sce | clear;
clc;
printf("Example 10.2\n");
th=[0 0 3 7 22 32 46 55 80 106]; //Time in hours
tm=[0 26 5 36 16 38 50 25 22 25]; //Time in min
//Conversion to kilo seconds
for i=1:10
tm(i)=tm(i)*60;
th(i)=th(i)*3600;
tim(i)=(tm(i)+th(i))/1000;
end
L=[0 2.5 12.9 23.2 43.9 54.7 67.0 73.8 90.3 104.8]; //in mm
Lo=L(1);
//Calculations are done as indicated in the procedure
//To obtain the values of x and y as below
//For plotting x and t axis of graph
x=L-Lo;
y(1)=0;
for j=2:10
y(j)=tim(j)/(L(j)-Lo);
end
plot2d(x,y);
plot(x,y,'+');
xtitle('t/(L-L0) vs (L-L0)','(L-L0) in mm','t/(L-L0) in ks/mm^2');
//Calculation of slope
s=(y(4)-y(3))/(x(4)-x(3))*10^3*10^6;
printf("\nSlope is %.2e sec/m^2\n",s);
Vl=22.4; //Molar volume in litres
den=1540; //Density in kg/m^3
T0=273;
T=321;
vp=37.6; //vapour pressure in kPa
P0=101.3; //PRessue in kPa
M=154;
Ct=T0/(Vl*T);
Ca=(vp*Ct)/P0;
Cb1=Ct;
Cb2=(P0-vp)*Ct/P0;
Cbm=(Cb1-Cb2)/log(Cb1/Cb2);
//Diffusivity calculation
D=den*Cbm/(2*M*Ca*Ct*s);
printf("\nDiffusivity is %.2e m^2/s\n",D);
//End
|
ebd320d6bb0b0670e6a1c9f94dacc364650c8524 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1949/CH6/EX6.5/Ex6_5.sce | 9237a298f41122898425719d3251cd3aa6d0e16e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 367 | sce | Ex6_5.sce | //Chapter-6,Example 6_5,Page 6-27
clc()
//Given Values:
B=10.9*10^-5 //Horizontal component of B in wb/m^2
u0=4*%pi*10^-7 //Permeability in free space
H=B/u0 //Horizontal component of magnetic field
printf('Horizontal component of magnetic field is =%.1f Ampere/meter \n',H)
printf(' (Print mistake in unit in book)')
|
a8a86bd74d3c27fd9a757fb5034a3b88c4184b30 | 449d555969bfd7befe906877abab098c6e63a0e8 | /278/CH6/EX6.6/ex_6_6.sce | b507fe2295e30b2897822b75d0043608af6f65be | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex_6_6.sce | syms d
Wmax=500
Wmin=200
sigmau=900
sigmae=700
FSu=3.5
FSe=4
Kf=1.65
A=(%pi/4)*d^2
Wm=(Wmax+Wmin)/2
sigmam=(Wm*10^3)/A
disp(sigmam,"Mean stress=")
Wv=(Wmax-Wmin)/2
sigmav=(Wv*10^3)/A
disp(sigmav,"Variable stress=")
0=1-((sigmam*Kf)/(sigmau/FSu))-(sigmav/(sigmae/FSe))//according to Soderberg's relation
d=sqrt(3960)
disp(d,"d=")
|
cd23a810aa138065f7cc6cbc162b23347bc9e0bb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2699/CH13/EX13.3/Ex13_3.sce | af85e7b46939bed2704524e8697af4bf8d8d14e5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 225 | sce | Ex13_3.sce | //EX13_3 PG-13.3
clc
clear
disp("representation of the number 567 in power of 8")
disp("N=(5*8^2)+(6*8^1)+(7*8^0)=375")
printf(" Therefore decimal equivalent of 567 is: ")
N=(5*8^2)+(6*8^1)+(7*8^0)
printf("%.0f",N)
|
1cd707ab336610862d585507197371092a315069 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1118/CH26/EX26.9/eg26_9.sce | 39ee43ebe989d894dd37e20e01ac26f1e9ab5d4f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 403 | sce | eg26_9.sce | clear;
//clc();
s=15;
sa=complex(s,0);
s1=40;
sb1=complex(s1*0.6,s1*0.8);
sb=conj(sb1);
s2=25;
sc1=complex(s2*0.8,s2*0.6);
sc=conj(sc1);
st=sa + sb + sc;
t_kvar=sqrt((real(st)^2) + (imag(st)^2));
printf("The kVA is:%.2f kVA\n",t_kvar);
pf=real(st)/t_kvar;
printf("The power factor is:%.4f lagging\n",pf);
cap=-imag(st);
printf("The capacitance is:%.0f kVAr leading\n",cap);
|
c9911d08d7fcfebe7eec93ee431a88bf6d59ec75 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/form-split/GOLD-TEST/mao.tst | cff93607341061772ad578c201b51b37f06dd22d | [] | no_license | davidgu13/Lemma-vs-Form-Splits | c154f1c0c7b84ba5b325b17507012d41b9ad5cfe | 3cce087f756420523f5a14234d02482452a7bfa5 | refs/heads/master | 2023-08-01T16:15:52.417307 | 2021-09-14T20:19:28 | 2021-09-14T20:19:28 | 395,023,433 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 825 | tst | mao.tst | mahara mahara V;ACT
tahi tahia V;PASS
mahara maharatia V;PASS
whāngai whāngai V;ACT
momotu motukia V;PASS
hiki hiki V;ACT
mutu mutua V;PASS
aroha aroha V;ACT
mihi mihi V;ACT
tomo tomokia V;PASS
kī kī V;ACT
ako ako V;ACT
pātai pātaitia V;PASS
tūtaki tūtakitia V;PASS
motu motukia V;PASS
eke eke V;ACT
hora hora V;ACT
tuhituhi tuhituhi V;ACT
oho ohokia V;PASS
manaaki manaakitia V;PASS
rongo rongo V;ACT
hemo hemo V;ACT
parai parai V;ACT
keri keria V;PASS
ruruku rurukutia V;PASS
hoe hoea V;PASS
tunu tunua V;PASS
pā pā V;ACT
ruku rukuhia V;PASS
titiro tirohia V;PASS
kau kau V;ACT
tupu tupuria V;PASS
kutētē kutētētia V;PASS
pīrangi pīrangi V;ACT
hiahia hiahiatia V;PASS
pī pīhia V;PASS
tahu tahuna V;PASS
hīkoi hīkoitia V;PASS
hono hono V;ACT
hamu hamua V;PASS
paki paki V;ACT
wareware warewaretia V;PASS
|
577d4d42f84f5c17f52d329265f8870f9316e367 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/PD2.prev.tst | ed795f7839560afa248cc08c273d23c4e6cad35b | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | gfis/ramath | 498adfc7a6d353d4775b33020fdf992628e3fbff | b09b48639ddd4709ffb1c729e33f6a4b9ef676b5 | refs/heads/master | 2023-08-17T00:10:37.092379 | 2023-08-04T07:48:00 | 2023-08-04T07:48:00 | 30,116,803 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 46 | tst | PD2.prev.tst | (3).degree() = 0
(3).degree(false) = 0
|
0f38c228727e6fa964eaba26b53af5c15bded19c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3772/CH3/EX3.1/Ex3_1.sce | 745356751f0fa54a70111ea29698de5795d1b8fc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 328 | sce | Ex3_1.sce | // Problem 3.1,Page no.54
clc;clear;
close;
P=40 //mm //Force applied to stretch a tape
L=30 //m //Length of steel tape
A=6*1 //mm //Cross section area
E=200*10**9*10**-6 //KN/m**2 //Modulus of Elasticity
//Calculations
sigma_L=(P*L*10**3)*(A*E)**-1 //mm
//Result
printf("The Elongation of steel tape is %.1f mm",sigma_L)
|
6c5b7340de9d47a48c498caf47ba81429d53d9a3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1430/CH6/EX6.9/exa6_9.sce | 81df6c32db005edfcc54af38e8e1c5587891dad2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 957 | sce | exa6_9.sce | // Example 6.9
// AC Network With a Controlled Source
// Form figure 6.22(b)
V_m=20; // Voltage phasor magnitude
phase_v=0; // voltage phasor phase
omega=1000; // Radian frequency (rad/s)
Z_R1=6;
Z_R2=12;
C=250*10^-6; // Farad
L=8*10^-3; // Henry
Z_C=1/(%i*omega*C);
Z_L=%i*omega*L;
// Using Proportionality Method
I_2=complex(1,0); // Assumption
V_x=Z_L*I_2; // Ohm's law in phasor form
V_1=(Z_L+Z_R2)*I_2; // Ohm's law in phasor form
I_1=V_1/Z_C;
I_assumed=I_1+I_2; // KCL
V_assumed=Z_R1*I_assumed-3*V_x+V_1
// Hence input impedance
Z=V_assumed/I_assumed;
V=complex(V_m,0); // Actual Voltage phasor
I=V/Z;
I_1_actual=(I_1/I_assumed)*I;
I_1_actual_m=abs(I_1_actual);
phase_i_1_actual=atan(imag(I_1_actual),real(I_1_actual)); // Phase in radian
t=0:0.1:10;
plot(t,I_1_actual_m*cos(omega*t+phase_i_1_actual))
xlabel("t")
ylabel("i_1(t)")
title('Current Waveform')
disp(I_1_actual,"Current phasor in rectangular form(Amps)=")
|
7db94561aed452fbd28cef52ba0874cd2c4eae6b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2444/CH6/EX6.9/ex6_9.sce | e37bff8fc568f3a2b9742cd42f6793cdcf5440af | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 369 | sce | ex6_9.sce | // Exa 6.9
clc;
clear;
close;
format('v',7)
// Given data
Vout = 12.5;// in V
Vin = 0.25;// in V
Av = Vout/Vin;// unit less
disp(Av,"The voltage gain without feed back is ");
Vin = 1.5;// in V
Avf = round(Vout/Vin);// unit less
// Avf = Av/(1+(Beta*Av));
Beta = ((Av/Avf)-1)/Av;// unit less
Beta = Beta*100;// in %
disp(Beta,"The value of ß in % is");
|
ad63f4d8f5f2855afda35280f9e54c8c3523d863 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1892/CH1/EX1.11/Example1_11.sce | e36796b3e3eafa077c7026c9fa29d48370e30fbc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 483 | sce | Example1_11.sce | // Example 1.11
clear; clc; close;
format('v',8);
// Given data
f=50;//in Hz
P=4;//no. of poles
Pin=50;//in kW
N=1440;//in rpm
StatorLoss=1000;//in watts
FrictionalLoss=650;//in watts
//Calculations
Ns=120*f/P;//in rpm
S=(Ns-N)/Ns;//Slip
N=Ns*(1-S);//in rpm
P2=Pin-StatorLoss/1000;//in KW
//formula-: P2:Pc:Pm=1:S:1-S
Pc=S*P2;//in KW
Pm=P2-Pc;//in KW
Pout=Pm-FrictionalLoss/1000;//in KW
Eff=Pout/Pin*100;//in %
disp(Eff,"Full load efficiency in % : ");
|
f87880f647650ab52af382d94dfe29631c819c3c | 449d555969bfd7befe906877abab098c6e63a0e8 | /758/CH6/EX6.10/Ex_6_10.sce | ea79fa40f702e8bb571b364d73c7e284ab618159 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 445 | sce | Ex_6_10.sce | //Example 6.10
clc;clear;close;
x=[1 1 2 2 3 3];
//Calculation of DFT
X=fft(x,-1);
X=clean(X);
disp(x,'Given Sequence is x(n): ');
disp(X,'DFT of the Sequence is X(k): ');
subplot(3,1,1);
plot2d3(x);
title('Given Seqence x[n]:');ylabel('Amplitude-->');xlabel('n-->');
subplot(3,1,2);
plot2d3(abs(X));
title('Magnitude Spectrum |X(k)|');xlabel('k-->');
subplot(3,1,3);
plot2d3(atan(X));
title('Phase Spectrum /_X(k)');xlabel('k-->'); |
cdc264687a29ab1a7cd916aeb68be0f78e2d1044 | 17d775a544e47ac1d2faf88f26b86d08afdcdf7c | /Rubik's Cube/rubixSolver/layouts/solved_layout_cube.tst | c7f7b5aa65ec1eb296a7b9c8273c9ab368921e30 | [] | no_license | PlenipotentSS/Python-Testing | fbe20bf9574b445da11b1abe844a402c7e51e2a0 | 3dcb029e08b751d38b799881bdff1135e236cb43 | refs/heads/master | 2021-01-23T03:53:24.574975 | 2014-03-16T20:30:15 | 2014-03-16T20:30:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 262 | tst | solved_layout_cube.tst | ###TStar Version 05 Tree Description File
###USER=Unknown
###TIME=Sat Nov 28 21:46:28 2009
n=0;h=0;d=2;
v:op=12;n=1;h=0;d=2;
^
v:op=12;n=2;h=0;d=2;
v:op=0;n=3;h=0;d=2;
^
^
v:op=12;n=4;h=0;d=2;
v:op=0;n=5;h=0;d=2;
v:op=2;n=6;h=0;d=2;
v:op=2;n=7;h=0;d=2;
^
^
^
^
^ |
29f6955102a7a9f244d28a21660a9b07d6f2af1d | 449d555969bfd7befe906877abab098c6e63a0e8 | /317/CH10/EX10.8/example8.sce | a98d2ea226287b7f259edc0c9b0847d2626e9611 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 916 | sce | example8.sce | // calculate output across load resistor
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 10-8, page 333
clear;clc; close;
// Given data
B=200;
re=180;// in ohms
R1=10*10^3;// in ohms
R2=2.2*10^3;// in ohms
Rc=3.6*10^3;// in ohms
Vg=1*10^-3;// in volts
Vcc=10;// in volts
Rg=600;// internal resistance in ohms
// Calculations
zinbase=B*re;// input impedance of base in ohms
zinstage_=(1/R1)+(1/R2)+(1/zinbase);// input impedance of base in ohms
zinstage=zinstage_^-1;
vin=(zinstage/(Rg+zinstage))*Vg;// input voltage in volts
rc1=Rc*zinstage/(Rc+zinstage);//in ohms
Av1=rc1/re;// voltage gain
vc=Av1*vin;// output voltage across load resistor in volts
rc2=2.65*10^3;// in ohms
Av2=rc2/re;// voltage gain
vout=Av2*vc;// outout voltage in volts
disp("Volts",vout,"Output voltage")
// Results
// output voltage across load resistor is 70 mVolts
|
7d205d4d94a33d762ef97bcbc974b06eee20fbe5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1052/CH12/EX12.2/122.sce | dbfab1d9f071a126e3a4167ea74ee95f5c741c9b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 457 | sce | 122.sce | clc;
//Example 12.2
//page no 125
printf("Example 12.2 page no 125\n\n");
//to calculate reynolds number
L=2.54//diameter of tube in cm
rho=1.50//density of liquid in gm/cm^3
v=20//velocity of flow in cm/s
meu=0.78e-2//viscosity of liquid in g/cm*s
printf("\n diameter of tube L=%f cm\n density rho=%f gm/cm^3\n velocity v=%f cm/s\n viscosity meu=%f g/cm*s",L,rho,v,meu);
R_e=L*rho*v/meu//reynolds number
printf("\n Reynolds no. R_e=%f ",R_e);
|
2b0cd1eafbd0fd5cecafd46c212e4737b98e5d48 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3834/CH5/EX5.3.2/Ex5_3_2.sce | d54ccf725929ea62f64c965d83fca19df0cb8b52 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 699 | sce | Ex5_3_2.sce | //Fiber Optics Communication Technology, by Djafer K. Mynbaev and Lovell L.scheiner
//Windows 8
//Scilab version- 6.0.0
//Example 5.3.2
clc;
clear ;
//given
lambda=1550;//operating wavelength in nm
deltalambda=1;//wavelength in nm
L=1;//length of fiber in km
Dmatlambda=20;//material dispersion in ps/nm.km
Dwglambda=5;//waveguide dispersion in ps/nm.km
deltatmat=Dmatlambda*deltalambda*L;//Pulse spreading caused by material dispersion in ps
deltatwg=Dwglambda*deltalambda*L;//Pulse spreading caused by waveguide dispersion in ps
mprintf("Pulse spread caused by material dispersion=%.0f ps",deltatmat);
mprintf("\nPulse spread caused by waveguide dispersion=%.0f ps",deltatwg);
|
268972d36c187651783081f5717a4f1b9a3c93ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /2510/CH16/EX16.5/Ex16_5.sce | cdda6437eb0f44bba8750910ffa2ea33a5a02d79 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,433 | sce | Ex16_5.sce | //Variable declaration:
//From figure 16.13, for ideal countercurrent heat exchanger:
T1 = 150.0 //Inlet temperature of hot fluid ( F)
T2 = 100.0 //Outet temperature of hot fluid ( F)
t1 = 50.0 //Inlet temperature of cold fluid ( F)
t2 = 80.0 //Outet temperature of hot fluid ( F)
//From figure 16.14, for shell and tube exchanger:
T_1 = 50.0 //Inlet temperature of cold fluid ( F)
T_2 = 80.0 //Outet temperature of hot fluid ( F)
t_1 = 150.0 //Inlet temperature of hot fluid ( F)
t_2 = 100.0 //Outet temperature of hot fluid ( F)
//Calculation:
DT1 = T1 - t2 //Temperature driving force 1 ( F)
DT2 = T2 - t1 //Temperature driving force 1 ( F)
DTlm1 = ((DT1-DT2)/log(DT1/DT2)) //Log mean temperature driving force for ideal countercurrent heat exchanger ( F)
P = (t2-t1)/(T1 - t1) //Dimensionless ratio P
R = (T1-T2)/(t2-t1) //Dimensionless ratio R
//From figure 16.7:
F = 0.925 //Correction Factor
DTlm2 = F*DTlm1 //Log mean temperature driving force for shell and tube exchanger ( F)
//Result:
printf("The log mean temperature difference for ideal system is : %.1f F.",DTlm1)
printf("The log mean temperature difference for real system is : %.2f F.",DTlm2)
|
62485bdf50002a55d95b574bc154766d9934eec1 | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /ppppStrafer6ShooterInvincible.sce | a1aa46575bff2b387fb45cb05f200666fcbef262 | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 219,035 | sce | ppppStrafer6ShooterInvincible.sce | Name=ppppStrafer6ShooterInvincible
PlayerCharacters=6Shooter
BotCharacters=Quaker Bot Fast Strafes.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=6Shooter
AddedBots=Quaker Bot Fast Strafes.bot
PlayerMaxLives=0
BotMaxLives=0
PlayerTeam=2
BotTeams=1
MapName=cataIC.map
MapScale=3.8125
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=true
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=3.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=true
ScoreMultKillEfficiency=false
GameTag=FPS
WeaponHeroTag=Six Shooter
DifficultyTag=4
AuthorsTag=PPPP
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=Low Pressure low fire-rate tracking, Damage Efficiency Scoring headshots most important.
GameVersion=2.0.0.2
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
[Aim Profile]
Name=At Feet
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Low Skill At Feet
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Low Skill
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=Quaker Bot Fast Strafes
DodgeProfileNames=Short Strafes;MidStrafes;MidStrafes2
DodgeProfileWeights=1.0;1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=QuakeMini
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Character Profile]
Name=6Shooter
MaxHealth=100.0
WeaponProfileNames=Six Shooter;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=1000.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=QuakeMini
MaxHealth=250.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=1000.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=250.0
MainBBRadius=35.0
MainBBHasHead=true
MainBBHeadRadius=25.0
MainBBHeadOffset=-20.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Dodge Profile]
Name=Short Strafes
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.1
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
[Dodge Profile]
Name=MidStrafes
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.32
MaxLRTimeChange=0.35
MinFBTimeChange=0.25
MaxFBTimeChange=0.6
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.2
DamageReactionMinimumDelay=0.13
DamageReactionMaximumDelay=0.16
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.2
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Oppose
TargetStrafeMinDelay=0.13
TargetStrafeMaxDelay=0.18
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.1
MaxCrouchTime=0.1
MinJumpTime=0.0
MaxJumpTime=0.0
LeftStrafeTimeMult=0.9
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
[Dodge Profile]
Name=MidStrafes2
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.45
MaxLRTimeChange=0.45
MinFBTimeChange=0.4
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.15
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.2
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.1
TargetStrafeMaxDelay=0.16
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.1
MaxCrouchTime=0.1
MinJumpTime=0.0
MaxJumpTime=0.0
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=0.8
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
[Weapon Profile]
Name=Six Shooter
Type=Hitscan
ShotsPerClick=1
DamagePerShot=70.0
KnockbackFactor=0.1
TimeBetweenShots=0.5
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.5
DamageFalloffStartDistance=2200.0
DamageFalloffStopDistance=4500.0
DamageAtMaxRange=20.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.5
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Quake/Source
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=5.0
MinRecoilUp=5.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera score
Float sky.timeOfDay 13.000000
Float sky.skyAngle 210.000000
ColourXRGB32 sky.skyTopColor ff020302
ColourXRGB32 sky.skyHorizonColor ff000800
ColourXRGB32 sky.skyBottomColor ff020e03
ColourXRGB32 sky.sunColor ff3e4a51
Float sky.sunIntensitySize 8.000000
Float sky.sunSharpness 8.000000
ColourXRGB32 sky.horizonColor ff9fc3a9
Float sky.horizonIntensity 0.300000
Float sky.horizonHaloExponentSun 8.000000
Float sky.horizonLine 0.150000
Float sky.starsIntensity 4.000000
ColourXRGB32 sky.cloudsColor ffffffff
Float sky.cloudsCoverage 0.500000
Float sky.cloudsCoverageMultiplier 24.000000
Float sky.cloudsRoughness 0.400000
ColourXRGB32 fogColor ff5b6577
Float fogDistanceEnd 4500.000000
Float fogHeightTop 200.000000
Float fogHeightBottom -2000.000000
String256 title The Catalyst
String256 ownerString tehace & promEUs
Bool8 mode1v1 1
Bool8 mode2v2 1
brush
vertices
1120.000000 248.000000 128.000000
1136.000000 248.000000 128.000000
1136.000000 248.000000 124.000000
1120.000000 248.000000 124.000000
1120.000000 200.000000 128.000000
1136.000000 200.000000 128.000000
1136.000000 200.000000 124.000000
1120.000000 200.000000 124.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1136.000000 240.000000 128.000000
1152.000000 240.000000 128.000000
1152.000000 240.000000 124.000000
1136.000000 240.000000 124.000000
1136.000000 200.000000 128.000000
1152.000000 200.000000 128.000000
1152.000000 200.000000 124.000000
1136.000000 200.000000 124.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1152.000000 232.000000 128.000000
1168.000000 232.000000 128.000000
1168.000000 232.000000 124.000000
1152.000000 232.000000 124.000000
1152.000000 200.000000 128.000000
1168.000000 200.000000 128.000000
1168.000000 200.000000 124.000000
1152.000000 200.000000 124.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1168.000000 224.000000 128.000000
1184.000000 224.000000 128.000000
1184.000000 224.000000 124.000000
1168.000000 224.000000 124.000000
1168.000000 200.000000 128.000000
1184.000000 200.000000 128.000000
1184.000000 200.000000 124.000000
1168.000000 200.000000 124.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1184.000000 216.000000 128.000000
1200.000000 216.000000 128.000000
1200.000000 216.000000 124.000000
1184.000000 216.000000 124.000000
1184.000000 200.000000 128.000000
1200.000000 200.000000 128.000000
1200.000000 200.000000 124.000000
1184.000000 200.000000 124.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1200.000000 208.000000 128.000000
1216.000000 208.000000 128.000000
1216.000000 208.000000 124.000000
1200.000000 208.000000 124.000000
1200.000000 200.000000 128.000000
1216.000000 200.000000 128.000000
1216.000000 200.000000 124.000000
1200.000000 200.000000 124.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1088.000000 255.000000 -252.000000
1276.000000 255.000000 -252.000000
1276.000000 255.000000 -256.000000
1088.000000 255.000000 -256.000000
1088.000000 225.000000 -252.000000
1276.000000 225.000000 -252.000000
1276.000000 225.000000 -256.000000
1088.000000 225.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1480.000000 512.000000 176.000000
1504.000000 512.000000 176.000000
1504.000000 512.000000 -160.000000
1480.000000 512.000000 -160.000000
1480.000000 448.000000 176.000000
1504.000000 448.000000 176.000000
1504.000000 448.000000 -160.000000
1480.000000 448.000000 -160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_nogrid_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff000000 common/materials/stone/stone
brush
vertices
960.000000 255.000000 -128.000000
960.000000 255.000000 -124.000000
1092.000000 255.000000 -256.000000
960.000000 225.000000 -124.000000
1088.000000 255.000000 -256.000000
1088.000000 225.000000 -256.000000
960.000000 225.000000 -128.000000
1092.000000 225.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff3f3f3f common/materials/stone/stone
brush
vertices
1020.000000 -32.000000 304.000000
1184.000000 -32.000000 304.000000
1184.000000 -32.000000 288.000000
1020.000000 -32.000000 288.000000
1020.000000 -84.000000 304.000000
1184.000000 -84.000000 304.000000
1184.000000 -84.000000 288.000000
1020.000000 -84.000000 288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1020.000000 -40.000000 288.000000
1184.000000 -40.000000 288.000000
1184.000000 -40.000000 272.000000
1020.000000 -40.000000 272.000000
1020.000000 -80.000000 288.000000
1184.000000 -80.000000 288.000000
1184.000000 -80.000000 272.000000
1020.000000 -80.000000 272.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
964.000000 512.000000 508.000000
1320.000000 512.000000 508.000000
1320.000000 512.000000 352.000000
964.000000 512.000000 352.000000
964.000000 448.000000 508.000000
1320.000000 448.000000 508.000000
1320.000000 448.000000 352.000000
964.000000 448.000000 352.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_nogrid_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff000000 common/materials/stone/stone
brush
vertices
1276.000000 -1.000000 100.000000
1348.000000 -1.000000 100.000000
1348.000000 -1.000000 28.000000
1276.000000 -1.000000 28.000000
1276.000000 -80.000000 100.000000
1348.000000 -80.000000 100.000000
1348.000000 -80.000000 28.000000
1276.000000 -80.000000 28.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1280.000000 0.000000 96.000000
1344.000000 0.000000 96.000000
1344.000000 0.000000 32.000000
1280.000000 0.000000 32.000000
1280.000000 -1.000000 96.000000
1344.000000 -1.000000 96.000000
1344.000000 -1.000000 32.000000
1280.000000 -1.000000 32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_nogrid_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff000000 common/materials/stone/stone
brush
vertices
1280.000000 97.000000 96.000000
1344.000000 97.000000 96.000000
1344.000000 97.000000 32.000000
1280.000000 97.000000 32.000000
1280.000000 96.000000 96.000000
1344.000000 96.000000 96.000000
1344.000000 96.000000 32.000000
1280.000000 96.000000 32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_nogrid_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff000000 common/materials/stone/stone
brush
vertices
1276.000000 160.000000 100.000000
1348.000000 160.000000 100.000000
1348.000000 160.000000 28.000000
1276.000000 160.000000 28.000000
1276.000000 97.000000 100.000000
1348.000000 97.000000 100.000000
1348.000000 97.000000 28.000000
1276.000000 97.000000 28.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1024.000000 0.000000 96.000000
1088.000000 0.000000 96.000000
1088.000000 0.000000 32.000000
1024.000000 0.000000 32.000000
1024.000000 -1.000000 96.000000
1088.000000 -1.000000 96.000000
1088.000000 -1.000000 32.000000
1024.000000 -1.000000 32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff000000 common/materials/stone/stone
brush
vertices
1024.000000 97.000000 96.000000
1088.000000 97.000000 96.000000
1088.000000 97.000000 32.000000
1024.000000 97.000000 32.000000
1024.000000 96.000000 96.000000
1088.000000 96.000000 96.000000
1088.000000 96.000000 32.000000
1024.000000 96.000000 32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_nogrid_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff000000 common/materials/stone/stone
brush
vertices
1020.000000 160.000000 100.000000
1092.000000 160.000000 100.000000
1092.000000 160.000000 28.000000
1020.000000 160.000000 28.000000
1020.000000 97.000000 100.000000
1092.000000 97.000000 100.000000
1092.000000 97.000000 28.000000
1020.000000 97.000000 28.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1148.000000 -1.000000 100.000000
1220.000000 -1.000000 100.000000
1220.000000 -1.000000 28.000000
1148.000000 -1.000000 28.000000
1148.000000 -80.000000 100.000000
1220.000000 -80.000000 100.000000
1220.000000 -80.000000 28.000000
1148.000000 -80.000000 28.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1152.000000 0.000000 96.000000
1216.000000 0.000000 96.000000
1216.000000 0.000000 32.000000
1152.000000 0.000000 32.000000
1152.000000 -1.000000 96.000000
1216.000000 -1.000000 96.000000
1216.000000 -1.000000 32.000000
1152.000000 -1.000000 32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff000000 common/materials/stone/stone
brush
vertices
1152.000000 129.000000 96.000000
1216.000000 129.000000 96.000000
1216.000000 129.000000 32.000000
1152.000000 129.000000 32.000000
1152.000000 128.000000 96.000000
1216.000000 128.000000 96.000000
1216.000000 128.000000 32.000000
1152.000000 128.000000 32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_nogrid_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff000000 common/materials/stone/stone
brush
vertices
1148.000000 160.000000 100.000000
1220.000000 160.000000 100.000000
1220.000000 160.000000 28.000000
1148.000000 160.000000 28.000000
1148.000000 129.000000 100.000000
1220.000000 129.000000 100.000000
1220.000000 129.000000 28.000000
1148.000000 129.000000 28.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1212.000000 448.000000 -412.000000
1276.000000 448.000000 -412.000000
1276.000000 448.000000 -640.000000
1212.000000 448.000000 -640.000000
1212.000000 264.000000 -412.000000
1276.000000 264.000000 -412.000000
1276.000000 264.000000 -640.000000
1212.000000 264.000000 -640.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1408.000000 544.000000 508.000000
1504.000000 544.000000 508.000000
1504.000000 544.000000 176.000000
1408.000000 544.000000 176.000000
1408.000000 448.000000 508.000000
1504.000000 448.000000 508.000000
1504.000000 448.000000 176.000000
1408.000000 448.000000 176.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/synthetic/plastic
brush
vertices
1408.000000 544.000000 176.000000
1504.000000 544.000000 176.000000
1504.000000 544.000000 -160.000000
1408.000000 544.000000 -160.000000
1408.000000 512.000000 176.000000
1504.000000 512.000000 176.000000
1504.000000 512.000000 -160.000000
1408.000000 512.000000 -160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff5c5c5c common/materials/stone/stone
brush
vertices
724.000000 496.000000 507.999969
748.000000 496.000000 507.999969
748.000000 496.000000 -244.000000
748.000000 448.000000 507.999969
724.000000 496.000000 -244.000000
724.000000 448.000000 -252.000000
724.000000 448.000000 507.999969
748.000000 448.000000 -252.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff3f3f3f common/materials/stone/stone
brush
vertices
748.000000 496.000000 508.000000
868.000000 496.000000 508.000000
868.000000 496.000000 356.000000
748.000000 496.000000 356.000000
748.000000 448.000000 508.000000
868.000000 448.000000 508.000000
868.000000 448.000000 356.000000
748.000000 448.000000 356.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
748.000000 496.000000 356.000000
868.000000 496.000000 356.000000
868.000000 496.000000 236.000000
748.000000 496.000000 236.000000
748.000000 472.000000 356.000000
868.000000 472.000000 356.000000
868.000000 472.000000 236.000000
748.000000 472.000000 236.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
744.000000 472.000000 352.000000
752.000000 472.000000 360.000000
872.000000 472.000000 240.000000
864.000000 460.000000 232.000000
864.000000 472.000000 232.000000
752.000000 460.000000 360.000000
872.000000 460.000000 240.000000
744.000000 460.000000 352.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
864.000000 472.000000 359.999939
871.999939 472.000000 352.000122
751.999939 472.000000 232.000031
743.999939 460.000000 240.000031
743.999939 472.000000 240.000031
871.999939 460.000000 352.000122
751.999939 460.000000 232.000031
864.000000 460.000000 359.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1564.000000 412.000000 380.000000
1884.000000 412.000000 380.000000
1884.000000 412.000000 -704.000000
1564.000000 412.000000 -704.000000
1564.000000 264.000000 380.000000
1884.000000 264.000000 380.000000
1884.000000 264.000000 -704.000000
1564.000000 264.000000 -704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1168.000000 -52.000000 -32.000000
1380.000000 -52.000000 -32.000000
1380.000000 -52.000000 -192.000000
1168.000000 -52.000000 -192.000000
1168.000000 -80.000000 -32.000000
1380.000000 -80.000000 -32.000000
1380.000000 -80.000000 -192.000000
1168.000000 -80.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
1380.000000 -52.000000 100.000000
1536.000000 -52.000000 100.000000
1536.000000 -52.000000 -256.000000
1536.000000 -80.000000 100.000000
1380.000000 -52.000000 -416.000000
1380.000000 -80.000000 -416.000000
1380.000000 -80.000000 100.000000
1536.000000 -80.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1348.000000 -52.000000 132.000000
1380.000000 -52.000000 256.000000
1536.000000 -52.000000 100.000000
1380.000000 -80.000000 100.000000
1380.000000 -52.000000 100.000000
1380.000000 -80.000000 256.000000
1536.000000 -80.000000 100.000000
1348.000000 -80.000000 132.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1024.000000 -52.000000 256.000000
1380.000000 -52.000000 256.000000
1348.000000 -52.000000 132.000000
1024.000000 -80.000000 132.000000
1024.000000 -52.000000 132.000000
1380.000000 -80.000000 256.000000
1348.000000 -80.000000 132.000000
1024.000000 -80.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1600.000000 -52.000000 -320.000000
1788.000000 -52.000000 -320.000000
1788.000000 -52.000000 -480.000000
1440.000000 -80.000000 -480.000000
1440.000000 -52.000000 -480.000000
1788.000000 -80.000000 -320.000000
1788.000000 -80.000000 -480.000000
1600.000000 -80.000000 -320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1536.000000 -52.000000 -256.000000
1600.000000 -52.000000 -320.000000
1440.000000 -52.000000 -480.000000
1380.000000 -80.000000 -416.000000
1380.000000 -52.000000 -416.000000
1600.000000 -80.000000 -320.000000
1440.000000 -80.000000 -480.000000
1536.000000 -80.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1376.000000 -48.000000 -192.000000
1380.000000 -48.000000 -192.000000
1380.000000 -48.000000 -416.000000
1376.000000 -48.000000 -416.000000
1376.000000 -80.000000 -192.000000
1380.000000 -80.000000 -192.000000
1380.000000 -80.000000 -416.000000
1376.000000 -80.000000 -416.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffffa000 common/materials/effects/glow2
brush
vertices
1168.000000 -48.000000 -28.000000
1376.000000 -48.000000 -28.000000
1376.000000 -48.000000 -32.000000
1168.000000 -48.000000 -32.000000
1168.000000 -80.000000 -28.000000
1376.000000 -80.000000 -28.000000
1376.000000 -80.000000 -32.000000
1168.000000 -80.000000 -32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1168.000000 -48.000000 -32.000000
1184.000000 -48.000000 -32.000000
1184.000000 -48.000000 -192.000000
1168.000000 -48.000000 -192.000000
1168.000000 -52.000000 -32.000000
1184.000000 -52.000000 -32.000000
1184.000000 -52.000000 -192.000000
1168.000000 -52.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1376.000000 -48.000000 100.000000
1380.000000 -48.000000 100.000000
1380.000000 -48.000000 -32.000000
1376.000000 -48.000000 -32.000000
1376.000000 -80.000000 100.000000
1380.000000 -80.000000 100.000000
1380.000000 -80.000000 -32.000000
1376.000000 -80.000000 -32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1348.000000 -48.000000 132.000000
1380.000000 -48.000000 100.000000
1376.000000 -48.000000 100.000000
1380.000000 -80.000000 100.000000
1348.000000 -48.000000 128.000000
1348.000000 -80.000000 128.000000
1348.000000 -80.000000 132.000000
1376.000000 -80.000000 100.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff3f3f3f common/materials/stone/stone
brush
vertices
1024.000000 -48.000000 132.000000
1348.000000 -48.000000 132.000000
1348.000000 -48.000000 128.000000
1024.000000 -48.000000 128.000000
1024.000000 -80.000000 132.000000
1348.000000 -80.000000 132.000000
1348.000000 -80.000000 128.000000
1024.000000 -80.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffffa000 common/materials/effects/glow2
brush
vertices
1020.000000 -48.000000 272.000000
1024.000000 -48.000000 272.000000
1024.000000 -48.000000 128.000000
1020.000000 -48.000000 128.000000
1020.000000 -80.000000 272.000000
1024.000000 -80.000000 272.000000
1024.000000 -80.000000 128.000000
1020.000000 -80.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1184.000000 -48.000000 260.000000
1380.000000 -48.000000 260.000000
1380.000000 -48.000000 256.000000
1184.000000 -48.000000 256.000000
1184.000000 -80.000000 260.000000
1380.000000 -80.000000 260.000000
1380.000000 -80.000000 256.000000
1184.000000 -80.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1180.000000 -48.000000 272.000000
1184.000000 -48.000000 272.000000
1184.000000 -48.000000 256.000000
1180.000000 -48.000000 256.000000
1180.000000 -84.000000 272.000000
1184.000000 -84.000000 272.000000
1184.000000 -84.000000 256.000000
1180.000000 -84.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1380.000000 -48.000000 260.000000
1540.000000 -48.000000 100.000000
1536.000000 -48.000000 100.000000
1540.000000 -80.000000 100.000000
1380.000000 -48.000000 256.000000
1380.000000 -80.000000 256.000000
1380.000000 -80.000000 260.000000
1536.000000 -80.000000 100.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff3f3f3f common/materials/stone/stone
brush
vertices
1536.000000 -48.000000 100.000000
1540.000000 -48.000000 100.000000
1540.000000 -48.000000 -256.000000
1536.000000 -48.000000 -256.000000
1536.000000 -80.000000 100.000000
1540.000000 -80.000000 100.000000
1540.000000 -80.000000 -256.000000
1536.000000 -80.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1536.000000 -48.000000 -256.000000
1540.000000 -48.000000 -256.000000
1600.000000 -48.000000 -316.000000
1600.000000 -80.000000 -320.000000
1600.000000 -48.000000 -320.000000
1540.000000 -80.000000 -256.000000
1600.000000 -80.000000 -316.000000
1536.000000 -80.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff3f3f3f common/materials/stone/stone
brush
vertices
1600.000000 -48.000000 -316.000000
1788.000000 -48.000000 -316.000000
1788.000000 -48.000000 -320.000000
1600.000000 -48.000000 -320.000000
1600.000000 -80.000000 -316.000000
1788.000000 -80.000000 -316.000000
1788.000000 -80.000000 -320.000000
1600.000000 -80.000000 -320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1440.000000 -48.000000 -480.000000
1788.000000 -48.000000 -480.000000
1788.000000 -48.000000 -484.000000
1440.000000 -48.000000 -484.000000
1440.000000 -80.000000 -480.000000
1788.000000 -80.000000 -480.000000
1788.000000 -80.000000 -484.000000
1440.000000 -80.000000 -484.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffffa000 common/materials/effects/glow2
brush
vertices
1376.000000 -48.000000 -416.000000
1380.000000 -48.000000 -416.000000
1440.000000 -48.000000 -480.000000
1380.000000 -80.000000 -416.000000
1440.000000 -48.000000 -484.000000
1440.000000 -80.000000 -484.000000
1376.000000 -80.000000 -416.000000
1440.000000 -80.000000 -480.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff3f3f3f common/materials/stone/stone
brush
vertices
1324.000000 262.000000 352.000000
1328.000000 262.000000 368.000000
1370.000000 262.000000 320.000000
1328.000000 260.000000 368.000000
1354.000000 262.000000 320.000000
1354.000000 260.000000 320.000000
1324.000000 260.000000 352.000000
1370.000000 260.000000 320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
1088.000000 262.000000 320.000000
1370.000000 262.000000 320.000000
1384.000000 262.000000 304.000000
1088.000000 260.000000 304.000000
1088.000000 262.000000 304.000000
1370.000000 260.000000 320.000000
1384.000000 260.000000 304.000000
1088.000000 260.000000 320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
1088.000000 262.000000 304.000000
1104.000000 262.000000 304.000000
1104.000000 262.000000 160.000000
1088.000000 262.000000 160.000000
1088.000000 260.000000 304.000000
1104.000000 260.000000 304.000000
1104.000000 260.000000 160.000000
1088.000000 260.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
1072.000000 260.000000 160.000000
1088.000000 262.000000 176.000000
1088.000000 262.000000 160.000000
1088.000000 260.000000 176.000000
1088.000000 260.000000 160.000000
1072.000000 262.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
980.000000 262.000000 160.000000
1104.000000 262.000000 160.000000
1104.000000 262.000000 144.000000
980.000000 262.000000 144.000000
980.000000 260.000000 160.000000
1104.000000 260.000000 160.000000
1104.000000 260.000000 144.000000
980.000000 260.000000 144.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
996.000000 262.000000 176.000000
996.000000 260.000000 160.000000
1012.000000 262.000000 160.000000
996.000000 260.000000 176.000000
1012.000000 260.000000 160.000000
996.000000 262.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
756.000000 262.000000 -240.000000
892.000000 262.000000 -380.000000
888.000000 262.000000 -396.000000
892.000000 260.000000 -380.000000
740.000000 262.000000 -244.000000
740.000000 260.000000 -244.000000
756.000000 260.000000 -240.000000
888.000000 260.000000 -396.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
860.000000 262.000000 -148.000000
956.000000 262.000000 -148.000000
952.000000 262.000000 -164.000000
860.000000 260.000000 -164.000000
860.000000 262.000000 -164.000000
956.000000 260.000000 -148.000000
952.000000 260.000000 -164.000000
860.000000 260.000000 -148.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
956.000000 262.000000 -148.000000
1080.000000 262.000000 -272.000000
1076.000000 262.000000 -288.000000
952.000000 260.000000 -164.000000
952.000000 262.000000 -164.000000
1080.000000 260.000000 -272.000000
1076.000000 260.000000 -288.000000
956.000000 260.000000 -148.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
1080.000000 262.000000 -272.000000
1260.000000 262.000000 -272.000000
1260.000000 262.000000 -288.000000
1076.000000 260.000000 -288.000000
1076.000000 262.000000 -288.000000
1260.000000 260.000000 -272.000000
1260.000000 260.000000 -288.000000
1080.000000 260.000000 -272.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
1228.000000 262.000000 -288.000000
1244.000000 262.000000 -288.000000
1244.000000 262.000000 -304.000000
1228.000000 260.000000 -288.000000
1244.000000 260.000000 -304.000000
1244.000000 260.000000 -288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 1 5 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
1244.000000 262.000000 -288.000000
1260.000000 262.000000 -288.000000
1260.000000 262.000000 -340.000000
1244.000000 260.000000 -336.000000
1244.000000 262.000000 -336.000000
1260.000000 260.000000 -288.000000
1260.000000 260.000000 -340.000000
1244.000000 260.000000 -288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
1244.000000 262.000000 -336.000000
1260.000000 262.000000 -340.000000
1220.000000 262.000000 -380.000000
1260.000000 260.000000 -340.000000
1200.000000 262.000000 -380.000000
1200.000000 260.000000 -380.000000
1244.000000 260.000000 -336.000000
1220.000000 260.000000 -380.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
892.000000 262.000000 -380.000000
1220.000000 262.000000 -380.000000
1204.000000 262.000000 -396.000000
888.000000 260.000000 -396.000000
888.000000 262.000000 -396.000000
1220.000000 260.000000 -380.000000
1204.000000 260.000000 -396.000000
892.000000 260.000000 -380.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xffa3a3a3 common/materials/metal/aluminum
brush
vertices
1144.000000 261.000000 -288.000000
1160.000000 261.000000 -288.000000
1160.000000 261.000000 -380.000000
1144.000000 261.000000 -380.000000
1144.000000 260.000000 -288.000000
1160.000000 260.000000 -288.000000
1160.000000 260.000000 -380.000000
1144.000000 260.000000 -380.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1176.000000 261.000000 -288.000000
1192.000000 261.000000 -288.000000
1192.000000 261.000000 -380.000000
1176.000000 261.000000 -380.000000
1176.000000 260.000000 -288.000000
1192.000000 260.000000 -288.000000
1192.000000 260.000000 -380.000000
1176.000000 260.000000 -380.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1112.000000 261.000000 -288.000000
1128.000000 261.000000 -288.000000
1128.000000 261.000000 -380.000000
1112.000000 261.000000 -380.000000
1112.000000 260.000000 -288.000000
1128.000000 260.000000 -288.000000
1128.000000 260.000000 -380.000000
1112.000000 260.000000 -380.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1080.000000 261.000000 -288.000000
1096.000000 261.000000 -288.000000
1096.000000 261.000000 -380.000000
1080.000000 261.000000 -380.000000
1080.000000 260.000000 -288.000000
1096.000000 260.000000 -288.000000
1096.000000 260.000000 -380.000000
1080.000000 260.000000 -380.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
732.000000 260.000000 -320.000000
932.000000 260.000000 -320.000000
932.000000 260.000000 -704.000000
732.000000 260.000000 -704.000000
732.000000 244.000000 -320.000000
932.000000 244.000000 -320.000000
932.000000 244.000000 -704.000000
732.000000 244.000000 -704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
932.000000 260.000000 -323.000000
964.000000 260.000000 -323.000000
964.000000 260.000000 -704.000000
932.000000 260.000000 -704.000000
932.000000 224.000000 -323.000000
964.000000 224.000000 -323.000000
964.000000 224.000000 -704.000000
932.000000 224.000000 -704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
888.000000 244.000000 -352.000061
895.999939 244.000000 -359.999878
775.999939 244.000000 -479.999969
767.999939 232.000000 -471.999969
767.999939 244.000000 -471.999969
895.999939 232.000000 -359.999878
775.999939 232.000000 -479.999969
888.000000 232.000000 -352.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
768.000000 244.000000 -360.000000
776.000000 244.000000 -352.000000
896.000000 244.000000 -472.000000
888.000000 232.000000 -480.000000
888.000000 244.000000 -480.000000
776.000000 232.000000 -352.000000
896.000000 232.000000 -472.000000
768.000000 232.000000 -360.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
732.000000 244.000000 -344.000000
932.000000 244.000000 -344.000000
932.000000 244.000000 -360.000000
732.000000 244.000000 -360.000000
732.000000 228.000000 -344.000000
932.000000 228.000000 -344.000000
932.000000 228.000000 -360.000000
732.000000 228.000000 -360.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
732.000000 244.000000 -472.000000
932.000000 244.000000 -472.000000
932.000000 244.000000 -488.000000
732.000000 244.000000 -488.000000
732.000000 228.000000 -472.000000
932.000000 228.000000 -472.000000
932.000000 228.000000 -488.000000
732.000000 228.000000 -488.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
888.000000 244.000000 -480.000061
895.999939 244.000000 -487.999878
775.999939 244.000000 -608.000000
767.999939 232.000000 -600.000000
767.999939 244.000000 -600.000000
895.999939 232.000000 -487.999878
775.999939 232.000000 -608.000000
888.000000 232.000000 -480.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
768.000000 244.000000 -488.000000
776.000000 244.000000 -480.000000
896.000000 244.000000 -600.000000
888.000000 232.000000 -608.000000
888.000000 244.000000 -608.000000
776.000000 232.000000 -480.000000
896.000000 232.000000 -600.000000
768.000000 232.000000 -488.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
732.000000 244.000000 -600.000000
932.000000 244.000000 -600.000000
932.000000 244.000000 -616.000000
732.000000 244.000000 -616.000000
732.000000 228.000000 -600.000000
932.000000 228.000000 -600.000000
932.000000 228.000000 -616.000000
732.000000 228.000000 -616.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
919.000000 192.000000 -531.000000
923.000000 192.000000 -531.000000
923.000000 192.000000 -535.000000
919.000000 192.000000 -535.000000
919.000000 64.000000 -531.000000
923.000000 64.000000 -531.000000
923.000000 64.000000 -535.000000
919.000000 64.000000 -535.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
928.000000 172.000000 -568.000000
932.000000 172.000000 -568.000000
932.000000 172.000000 -616.000000
928.000000 172.000000 -616.000000
928.000000 64.000000 -568.000000
932.000000 64.000000 -568.000000
932.000000 64.000000 -616.000000
928.000000 64.000000 -616.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
932.000000 224.000000 -508.000000
964.000000 224.000000 -508.000000
964.000000 224.000000 -524.000000
932.000000 176.000000 -524.000000
932.000000 224.000000 -524.000000
964.000000 200.000000 -508.000000
964.000000 176.000000 -524.000000
932.000000 200.000000 -508.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff3f3f3f common/materials/stone/stone
brush
vertices
964.000000 -12.000000 -32.000000
1120.000000 -12.000000 -32.000000
1120.000000 -12.000000 -256.000000
964.000000 -12.000000 -256.000000
964.000000 -88.000000 -32.000000
1120.000000 -88.000000 -32.000000
1120.000000 -88.000000 -256.000000
964.000000 -88.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
964.000000 -8.000000 -48.000000
980.000000 -8.000000 -48.000000
980.000000 -8.000000 -176.000000
964.000000 -8.000000 -176.000000
964.000000 -12.000000 -48.000000
980.000000 -12.000000 -48.000000
980.000000 -12.000000 -176.000000
964.000000 -12.000000 -176.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
964.000000 -8.000000 -176.000000
1120.000000 -8.000000 -176.000000
1120.000000 -8.000000 -256.000000
964.000000 -8.000000 -256.000000
964.000000 -12.000000 -176.000000
1120.000000 -12.000000 -176.000000
1120.000000 -12.000000 -256.000000
964.000000 -12.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffffa000 common/materials/effects/glow2
brush
vertices
964.000000 -8.000000 -32.000000
1120.000000 -8.000000 -32.000000
1120.000000 -8.000000 -48.000000
964.000000 -8.000000 -48.000000
964.000000 -12.000000 -32.000000
1120.000000 -12.000000 -32.000000
1120.000000 -12.000000 -48.000000
964.000000 -12.000000 -48.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
1318.000000 96.000000 88.000000
1326.000000 96.000000 88.000000
1326.000000 96.000000 40.000000
1318.000000 96.000000 40.000000
1318.000000 0.000000 88.000000
1326.000000 0.000000 88.000000
1326.000000 0.000000 40.000000
1318.000000 0.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1328.000000 96.000000 88.000000
1336.000000 96.000000 88.000000
1336.000000 96.000000 40.000000
1328.000000 96.000000 40.000000
1328.000000 0.000000 88.000000
1336.000000 0.000000 88.000000
1336.000000 0.000000 40.000000
1328.000000 0.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1298.000000 96.000000 88.000000
1306.000000 96.000000 88.000000
1306.000000 96.000000 40.000000
1298.000000 96.000000 40.000000
1298.000000 0.000000 88.000000
1306.000000 0.000000 88.000000
1306.000000 0.000000 40.000000
1298.000000 0.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1288.000000 96.000000 88.000000
1296.000000 96.000000 88.000000
1296.000000 96.000000 40.000000
1288.000000 96.000000 40.000000
1288.000000 0.000000 88.000000
1296.000000 0.000000 88.000000
1296.000000 0.000000 40.000000
1288.000000 0.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1160.000000 128.000000 88.000000
1168.000000 128.000000 88.000000
1168.000000 128.000000 40.000000
1160.000000 128.000000 40.000000
1160.000000 0.000000 88.000000
1168.000000 0.000000 88.000000
1168.000000 0.000000 40.000000
1160.000000 0.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1170.000000 128.000000 88.000000
1178.000000 128.000000 88.000000
1178.000000 128.000000 40.000000
1170.000000 128.000000 40.000000
1170.000000 0.000000 88.000000
1178.000000 0.000000 88.000000
1178.000000 0.000000 40.000000
1170.000000 0.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1200.000000 128.000000 88.000000
1208.000000 128.000000 88.000000
1208.000000 128.000000 40.000000
1200.000000 128.000000 40.000000
1200.000000 0.000000 88.000000
1208.000000 0.000000 88.000000
1208.000000 0.000000 40.000000
1200.000000 0.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1190.000000 128.000000 88.000000
1198.000000 128.000000 88.000000
1198.000000 128.000000 40.000000
1190.000000 128.000000 40.000000
1190.000000 0.000000 88.000000
1198.000000 0.000000 88.000000
1198.000000 0.000000 40.000000
1190.000000 0.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1042.000000 96.000000 88.000000
1050.000000 96.000000 88.000000
1050.000000 96.000000 40.000000
1042.000000 96.000000 40.000000
1042.000000 0.000000 88.000000
1050.000000 0.000000 88.000000
1050.000000 0.000000 40.000000
1042.000000 0.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1032.000000 96.000000 88.000000
1040.000000 96.000000 88.000000
1040.000000 96.000000 40.000000
1032.000000 96.000000 40.000000
1032.000000 0.000000 88.000000
1040.000000 0.000000 88.000000
1040.000000 0.000000 40.000000
1032.000000 0.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1062.000000 96.000000 88.000000
1070.000000 96.000000 88.000000
1070.000000 96.000000 40.000000
1062.000000 96.000000 40.000000
1062.000000 0.000000 88.000000
1070.000000 0.000000 88.000000
1070.000000 0.000000 40.000000
1062.000000 0.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1072.000000 96.000000 88.000000
1080.000000 96.000000 88.000000
1080.000000 96.000000 40.000000
1072.000000 96.000000 40.000000
1072.000000 0.000000 88.000000
1080.000000 0.000000 88.000000
1080.000000 0.000000 40.000000
1072.000000 0.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1052.000000 96.000000 88.000000
1060.000000 96.000000 88.000000
1060.000000 96.000000 40.000000
1052.000000 96.000000 40.000000
1052.000000 0.000000 88.000000
1060.000000 0.000000 88.000000
1060.000000 0.000000 40.000000
1052.000000 0.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
1308.000000 96.000000 88.000000
1316.000000 96.000000 88.000000
1316.000000 96.000000 40.000000
1308.000000 96.000000 40.000000
1308.000000 0.000000 88.000000
1316.000000 0.000000 88.000000
1316.000000 0.000000 40.000000
1308.000000 0.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
888.000000 264.000000 -148.000000
956.000000 264.000000 -148.000000
1080.000000 264.000000 -272.000000
956.000000 260.000000 -148.000000
888.000000 264.000000 -272.000000
888.000000 260.000000 -272.000000
888.000000 260.000000 -148.000000
1080.000000 260.000000 -272.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
1468.000000 -42.000000 256.000000
1596.000000 -42.000000 256.000000
1596.000000 -42.000000 188.000000
1536.000000 -80.000000 188.000000
1536.000000 -42.000000 188.000000
1596.000000 -80.000000 256.000000
1596.000000 -80.000000 188.000000
1468.000000 -80.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 structural/dev/dev_nogrid_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 structural/dev/dev_nogrid_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_nogrid_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 structural/dev/dev_nogrid_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 structural/dev/dev_nogrid_grey64
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 structural/dev/dev_nogrid_grey64
brush
vertices
953.000000 16.000000 -260.000000
1276.000000 16.000000 -260.000000
1276.000000 16.000000 -704.000000
953.000000 16.000000 -704.000000
953.000000 -80.000000 -260.000000
1276.000000 -80.000000 -260.000000
1276.000000 -80.000000 -704.000000
953.000000 -80.000000 -704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
953.000000 28.000000 -256.000000
1276.000000 28.000000 -256.000000
1276.000000 28.000000 -704.000000
953.000000 28.000000 -704.000000
953.000000 16.000000 -256.000000
1276.000000 16.000000 -256.000000
1276.000000 16.000000 -704.000000
953.000000 16.000000 -704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
1472.000000 -36.000000 316.000000
1536.000000 -36.000000 316.000000
1536.000000 -36.000000 192.000000
1472.000000 -42.000000 256.000000
1472.000000 -36.000000 256.000000
1536.000000 -42.000000 316.000000
1536.000000 -42.000000 192.000000
1472.000000 -42.000000 316.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1536.000000 -36.000000 316.000000
1596.000000 -36.000000 316.000000
1596.000000 -36.000000 192.000000
1536.000000 -36.000000 192.000000
1536.000000 -42.000000 316.000000
1596.000000 -42.000000 316.000000
1596.000000 -42.000000 192.000000
1536.000000 -42.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
1472.000000 -32.000000 300.000000
1472.000000 -32.000000 326.000000
1580.000000 -32.000000 325.999878
1580.000000 -32.000000 299.999878
1472.000000 -36.000000 300.000000
1472.000000 -36.000000 326.000000
1580.000000 -36.000000 325.999878
1580.000000 -36.000000 299.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
1580.000000 -32.000000 316.000000
1606.000000 -32.000000 316.000000
1606.000000 -32.000000 192.000000
1580.000000 -32.000000 192.000000
1580.000000 -36.000000 316.000000
1606.000000 -36.000000 316.000000
1606.000000 -36.000000 192.000000
1580.000000 -36.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
1540.000000 -32.000000 208.000000
1580.000000 -32.000000 208.000000
1580.000000 -32.000000 192.000000
1536.000000 -36.000000 192.000000
1536.000000 -32.000000 192.000000
1580.000000 -36.000000 208.000000
1580.000000 -36.000000 192.000000
1540.000000 -36.000000 208.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1472.000000 -32.000000 256.000000
1540.000000 -32.000000 208.000000
1536.000000 -32.000000 192.000000
1488.000000 -36.000000 260.000000
1488.000000 -32.000000 260.000000
1540.000000 -36.000000 208.000000
1536.000000 -36.000000 192.000000
1472.000000 -36.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 0 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 3 5 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 3 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1472.000000 -32.000000 256.000000
1472.000000 -32.000000 300.000000
1487.999878 -32.000000 299.999756
1472.000000 -36.000000 300.000000
1488.000000 -32.000000 260.000000
1488.000000 -36.000000 260.000000
1472.000000 -36.000000 256.000000
1487.999878 -36.000000 299.999756
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1588.000000 160.000000 316.000000
1604.000000 160.000000 316.000000
1604.000000 160.000000 184.000000
1588.000000 160.000000 184.000000
1588.000000 96.000000 316.000000
1604.000000 96.000000 316.000000
1604.000000 96.000000 184.000000
1588.000000 96.000000 184.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
1540.000000 160.000000 192.000000
1588.000000 160.000000 192.000000
1588.000000 160.000000 184.000000
1536.000000 96.000000 184.000000
1536.000000 160.000000 184.000000
1588.000000 96.000000 192.000000
1588.000000 96.000000 184.000000
1540.000000 96.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1464.000000 160.000000 256.000000
1472.000000 160.000000 260.000000
1536.000000 160.000000 184.000000
1472.000000 96.000000 260.000000
1540.000000 160.000000 192.000000
1540.000000 96.000000 192.000000
1464.000000 96.000000 256.000000
1536.000000 96.000000 184.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 4 1 3 5 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 5 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 0 2 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 3 6 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1472.000000 160.000000 308.000000
1501.000000 160.000000 308.000000
1501.000000 160.000000 231.000000
1472.000000 98.000000 260.000000
1472.000000 160.000000 260.000000
1501.000000 98.000000 308.000000
1501.000000 98.000000 231.000000
1472.000000 98.000000 308.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff3f3f3f common/materials/stone/stone
brush
vertices
1511.000000 160.000000 221.000000
1588.000000 160.000000 221.000000
1588.000000 160.000000 192.000000
1540.000000 98.000000 192.000000
1540.000000 160.000000 192.000000
1588.000000 98.000000 221.000000
1588.000000 98.000000 192.000000
1511.000000 98.000000 221.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff3f3f3f common/materials/stone/stone
brush
vertices
1464.000000 160.000000 324.000000
1588.000000 160.000000 324.000000
1588.000000 160.000000 308.000000
1464.000000 160.000000 308.000000
1464.000000 96.000000 324.000000
1588.000000 96.000000 324.000000
1588.000000 96.000000 308.000000
1464.000000 96.000000 308.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
1464.000000 160.000000 308.000000
1472.000000 160.000000 308.000000
1472.000000 160.000000 260.000000
1464.000000 96.000000 256.000000
1464.000000 160.000000 256.000000
1472.000000 96.000000 308.000000
1472.000000 96.000000 260.000000
1464.000000 96.000000 308.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1472.000000 100.000000 308.000000
1588.000000 100.000000 308.000000
1588.000000 100.000000 260.000000
1472.000000 100.000000 260.000000
1472.000000 96.000000 308.000000
1588.000000 96.000000 308.000000
1588.000000 96.000000 260.000000
1472.000000 96.000000 260.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
1472.000000 100.000000 260.000000
1588.000000 100.000000 260.000000
1588.000000 100.000000 192.000000
1540.000000 96.000000 192.000000
1540.000000 100.000000 192.000000
1588.000000 96.000000 260.000000
1588.000000 96.000000 192.000000
1472.000000 96.000000 260.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
1540.000000 -32.000000 300.000000
1580.000000 -32.000000 300.000000
1580.000000 -32.000000 208.000000
1540.000000 -32.000000 208.000000
1540.000000 -36.000000 300.000000
1580.000000 -36.000000 300.000000
1580.000000 -36.000000 208.000000
1540.000000 -36.000000 208.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
1488.000000 -32.000000 300.000000
1540.000000 -32.000000 300.000000
1540.000000 -32.000000 208.000000
1488.000000 -36.000000 260.000000
1488.000000 -32.000000 260.000000
1540.000000 -36.000000 300.000000
1540.000000 -36.000000 208.000000
1488.000000 -36.000000 300.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
732.000000 228.000000 -320.000000
932.000000 228.000000 -320.000000
932.000000 228.000000 -508.000000
732.000000 228.000000 -508.000000
732.000000 224.000000 -320.000000
932.000000 224.000000 -320.000000
932.000000 224.000000 -508.000000
732.000000 224.000000 -508.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
1772.000000 112.000000 -260.000000
1780.000000 104.000000 -260.000000
1780.000000 104.000000 -316.000000
1780.000000 -80.000000 -260.000000
1772.000000 -80.000000 -260.000000
1772.000000 112.000000 -316.000000
1772.000000 -80.000000 -316.000000
1780.000000 -80.000000 -316.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 5 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0xff3f3f3f common/materials/stone/stone
brush
vertices
1772.000000 112.000000 -484.000000
1780.000000 104.000000 -484.000000
1780.000000 104.000000 -540.000000
1780.000000 -80.000000 -484.000000
1772.000000 -80.000000 -484.000000
1772.000000 112.000000 -540.000000
1772.000000 -80.000000 -540.000000
1780.000000 -80.000000 -540.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 5 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0xff3f3f3f common/materials/stone/stone
brush
vertices
964.000000 -20.000000 320.000000
1024.000000 -20.000000 320.000000
1024.000000 -20.000000 316.000000
964.000000 -20.000000 316.000000
964.000000 -79.000000 320.000000
1024.000000 -79.000000 320.000000
1024.000000 -79.000000 316.000000
964.000000 -79.000000 316.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/synthetic/plastic
brush
vertices
964.000000 -20.000000 -28.000000
1120.000000 -20.000000 -28.000000
1120.000000 -20.000000 -32.000000
964.000000 -20.000000 -32.000000
964.000000 -80.000000 -28.000000
1120.000000 -80.000000 -28.000000
1120.000000 -80.000000 -32.000000
964.000000 -80.000000 -32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1776.000000 -48.000000 -320.000000
1864.000000 -48.000000 -320.000000
1864.000000 -48.000000 -480.000000
1776.000000 -48.000000 -480.000000
1776.000000 -52.000000 -320.000000
1864.000000 -52.000000 -320.000000
1864.000000 -52.000000 -480.000000
1776.000000 -52.000000 -480.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
964.000000 -72.000000 316.000000
1788.000000 -72.000000 316.000000
1788.000000 -72.000000 -540.000000
964.000000 -72.000000 -540.000000
964.000000 -80.000000 316.000000
1788.000000 -80.000000 316.000000
1788.000000 -80.000000 -540.000000
964.000000 -80.000000 -540.000000
faces
0.000000 0.000000 1.000000 1.000000 270.000000 0 1 2 3 0xffa81903 environment/liquids/lava/lava
0.000000 0.000000 1.000000 1.000000 270.000000 6 5 4 7 0xffa81903 environment/liquids/lava/lava
0.000000 0.000000 1.000000 1.000000 270.000000 2 1 5 6 0xffa81903 environment/liquids/lava/lava
0.000000 0.000000 1.000000 1.000000 270.000000 0 3 7 4 0xffa81903 environment/liquids/lava/lava
0.000000 0.000000 1.000000 1.000000 270.000000 3 2 6 7 0xffa81903 environment/liquids/lava/lava
0.000000 0.000000 1.000000 1.000000 270.000000 1 0 4 5 0xffa81903 environment/liquids/lava/lava
brush
vertices
1508.000000 168.000000 380.000000
1884.000000 168.000000 380.000000
1884.000000 168.000000 -252.000000
1508.000000 168.000000 -252.000000
1508.000000 160.000000 380.000000
1884.000000 160.000000 380.000000
1884.000000 160.000000 -252.000000
1508.000000 160.000000 -252.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1500.000000 168.000000 380.000000
1508.000000 168.000000 380.000000
1508.000000 168.000000 4.000000
1500.000000 168.000000 4.000000
1500.000000 160.000000 380.000000
1508.000000 160.000000 380.000000
1508.000000 160.000000 4.000000
1500.000000 160.000000 4.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1500.000000 168.000000 -188.000000
1508.000000 168.000000 -192.000000
1440.000000 168.000000 -260.000000
1508.000000 160.000000 -192.000000
1436.000000 168.000000 -252.000000
1436.000000 160.000000 -252.000000
1500.000000 160.000000 -188.000000
1440.000000 160.000000 -260.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff9f9f9f common/materials/stone/stone
brush
vertices
1448.000000 160.000000 -252.000000
1508.000000 168.000000 -192.000000
1508.000000 168.000000 -252.000000
1508.000000 160.000000 -192.000000
1508.000000 160.000000 -252.000000
1448.000000 168.000000 -252.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
963.000000 192.000000 324.000000
1500.000000 192.000000 324.000000
1500.000000 192.000000 4.000002
963.000000 192.000000 4.000002
963.000000 160.000000 324.000000
1500.000000 160.000000 324.000000
1500.000000 160.000000 4.000002
963.000000 160.000000 4.000002
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
963.000000 192.000000 4.000000
1500.000000 192.000000 4.000000
1500.000000 192.000000 -3.999998
963.000000 192.000000 -3.999998
963.000000 168.000000 4.000000
1500.000000 168.000000 4.000000
1500.000000 168.000000 -3.999998
963.000000 168.000000 -3.999998
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
963.000000 168.000000 4.000000
1500.000000 168.000000 4.000000
1500.000000 168.000000 -3.999998
963.000000 168.000000 -3.999998
963.000000 160.000000 4.000000
1500.000000 160.000000 4.000000
1500.000000 160.000000 -3.999998
963.000000 160.000000 -3.999998
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff9f9f9f common/materials/stone/stone
brush
vertices
1500.000000 168.000000 -172.000000
1508.000000 168.000000 -172.000000
1508.000000 168.000000 -192.000000
1500.000000 160.000000 -188.000000
1500.000000 168.000000 -188.000000
1508.000000 160.000000 -172.000000
1508.000000 160.000000 -192.000000
1500.000000 160.000000 -172.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff9f9f9f common/materials/stone/stone
brush
vertices
1312.000000 192.000000 316.000000
1308.000000 196.000000 320.000000
1467.999878 196.000000 320.001556
1464.000000 192.000000 316.000000
1312.000000 132.000000 316.000000
1308.000000 128.000000 320.000000
1467.999878 128.000000 320.001556
1464.000000 132.000000 316.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 2 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 7 6 0xff3f3f3f common/materials/stone/stone
brush
vertices
1308.000000 160.000000 320.000000
1308.000000 160.000000 324.000000
1467.999878 160.000000 324.001556
1467.999756 160.000000 320.001434
1308.000000 128.000000 320.000000
1308.000000 128.000000 324.000000
1467.999878 128.000000 324.001556
1467.999756 128.000000 320.001434
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1104.000000 -8.000000 -48.000000
1120.000000 -8.000000 -48.000000
1120.000000 -8.000000 -176.000000
1104.000000 -8.000000 -176.000000
1104.000000 -12.000000 -48.000000
1120.000000 -12.000000 -48.000000
1120.000000 -12.000000 -176.000000
1104.000000 -12.000000 -176.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
1332.000000 456.000000 380.000000
1500.000000 456.000000 380.000000
1500.000000 456.000000 188.000000
1332.000000 200.000000 380.000000
1500.000000 200.000000 380.000000
1500.000000 200.000000 188.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 5 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1500.000000 456.000000 380.000000
1884.000000 456.000000 380.000000
1884.000000 456.000000 -252.000000
1500.000000 456.000000 -252.000000
1500.000000 168.000000 380.000000
1884.000000 168.000000 380.000000
1884.000000 168.000000 -252.000000
1500.000000 168.000000 -252.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
892.000000 448.000000 508.000000
1340.000000 448.000000 508.000000
1340.000000 448.000000 380.000000
892.000000 448.000000 380.000000
892.000000 264.000000 508.000000
1340.000000 264.000000 508.000000
1340.000000 264.000000 380.000000
892.000000 264.000000 380.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1436.000000 168.000000 -252.000000
1500.000000 448.000000 -188.000000
1500.000000 448.000000 -252.000000
1500.000000 168.000000 -188.000000
1500.000000 168.000000 -252.000000
1436.000000 448.000000 -252.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
892.000000 448.000000 228.000000
964.000000 448.000000 228.000000
964.000000 448.000000 -132.000000
892.000000 448.000000 -132.000000
892.000000 -76.000000 228.000000
964.000000 -76.000000 228.000000
964.000000 -76.000000 -132.000000
892.000000 -76.000000 -132.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
724.000000 448.000000 -100.000000
892.000000 448.000000 -100.000000
892.000000 448.000000 -132.000000
724.000000 448.000000 -132.000000
724.000000 264.000000 -100.000000
892.000000 264.000000 -100.000000
892.000000 264.000000 -132.000000
724.000000 264.000000 -132.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
724.000000 264.000000 -132.000000
964.000000 264.000000 -132.000000
956.000000 264.000000 -148.000000
724.000000 260.000000 -148.000000
724.000000 264.000000 -148.000000
964.000000 260.000000 -132.000000
956.000000 260.000000 -148.000000
724.000000 260.000000 -132.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
896.000000 264.000000 380.000000
1120.000000 264.000000 380.000000
1120.000000 264.000000 124.000000
896.000000 264.000000 124.000000
896.000000 256.000000 380.000000
1120.000000 256.000000 380.000000
1120.000000 256.000000 124.000000
896.000000 256.000000 124.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
964.000000 256.000000 128.000000
1120.000000 256.000000 128.000000
1120.000000 256.000000 124.000000
964.000000 256.000000 124.000000
964.000000 200.000000 128.000000
1120.000000 200.000000 128.000000
1120.000000 200.000000 124.000000
964.000000 200.000000 124.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1120.000000 264.000000 380.000000
1424.000000 264.000000 380.000000
1424.000000 264.000000 288.000000
1120.000000 264.000000 288.000000
1120.000000 256.000000 380.000000
1424.000000 256.000000 380.000000
1424.000000 256.000000 288.000000
1120.000000 256.000000 288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1060.000000 198.000000 -596.000000
1212.000000 198.000000 -596.000000
1212.000000 198.000000 -620.000000
1060.000000 198.000000 -620.000000
1060.000000 30.000000 -596.000000
1212.000000 30.000000 -596.000000
1212.000000 30.000000 -620.000000
1060.000000 30.000000 -620.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
964.000000 224.000000 -508.000000
1276.000000 224.000000 -508.000000
1276.000000 224.000000 -704.000000
964.000000 224.000000 -704.000000
964.000000 198.000000 -508.000000
1276.000000 198.000000 -508.000000
1276.000000 198.000000 -704.000000
964.000000 198.000000 -704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff777777 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
956.000000 224.000000 -132.000000
964.000000 224.000000 -132.000000
964.000000 224.000000 -511.000000
956.000000 224.000000 -511.000000
956.000000 -12.000000 -132.000000
964.000000 -12.000000 -132.000000
964.000000 -12.000000 -511.000000
956.000000 -12.000000 -511.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
964.000000 198.000000 -508.000000
1060.000000 198.000000 -508.000000
1060.000000 198.000000 -596.000000
964.000000 198.000000 -596.000000
964.000000 28.000000 -508.000000
1060.000000 28.000000 -508.000000
1060.000000 28.000000 -596.000000
964.000000 28.000000 -596.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1212.000000 198.000000 -508.000000
1276.000000 198.000000 -508.000000
1276.000000 198.000000 -596.000000
1212.000000 198.000000 -596.000000
1212.000000 28.000000 -508.000000
1276.000000 28.000000 -508.000000
1276.000000 28.000000 -596.000000
1212.000000 28.000000 -596.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff9f9f9f common/materials/stone/stone
brush
vertices
1168.000000 -48.000000 -192.000000
1376.000000 -48.000000 -192.000000
1376.000000 -48.000000 -196.000000
1168.000000 -48.000000 -196.000000
1168.000000 -80.000000 -192.000000
1376.000000 -80.000000 -192.000000
1376.000000 -80.000000 -196.000000
1168.000000 -80.000000 -196.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffffa000 common/materials/effects/glow2
brush
vertices
1152.000000 -40.000000 -28.000000
1168.000000 -40.000000 -28.000000
1168.000000 -40.000000 -196.000000
1152.000000 -40.000000 -196.000000
1152.000000 -80.000000 -28.000000
1168.000000 -80.000000 -28.000000
1168.000000 -80.000000 -196.000000
1152.000000 -80.000000 -196.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1136.000000 -32.000000 -28.000000
1152.000000 -32.000000 -28.000000
1152.000000 -32.000000 -196.000000
1136.000000 -32.000000 -196.000000
1136.000000 -80.000000 -28.000000
1152.000000 -80.000000 -28.000000
1152.000000 -80.000000 -196.000000
1136.000000 -80.000000 -196.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1120.000000 -24.000000 -28.000000
1136.000000 -24.000000 -28.000000
1136.000000 -24.000000 -196.000000
1120.000000 -24.000000 -196.000000
1120.000000 -80.000000 -28.000000
1136.000000 -80.000000 -28.000000
1136.000000 -80.000000 -196.000000
1120.000000 -80.000000 -196.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1356.000000 168.000000 -252.000000
1360.000000 168.000000 -252.000000
1360.000000 168.000000 -540.000000
1356.000000 168.000000 -540.000000
1356.000000 -80.000000 -252.000000
1360.000000 -80.000000 -252.000000
1360.000000 -80.000000 -540.000000
1356.000000 -80.000000 -540.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
1360.000000 168.000000 -252.000000
1436.000000 168.000000 -252.000000
1440.000000 168.000000 -260.000000
1360.000000 160.000000 -260.000000
1360.000000 168.000000 -260.000000
1436.000000 160.000000 -252.000000
1440.000000 160.000000 -260.000000
1360.000000 160.000000 -252.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff9f9f9f common/materials/stone/stone
brush
vertices
1772.000000 168.000000 -260.000000
1780.000000 168.000000 -260.000000
1780.000000 168.000000 -540.000000
1772.000000 112.000000 -540.000000
1772.000000 168.000000 -540.000000
1780.000000 104.000000 -260.000000
1780.000000 104.000000 -540.000000
1772.000000 112.000000 -260.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff3f3f3f common/materials/stone/stone
brush
vertices
1276.000000 448.000000 -252.000000
1356.000000 448.000000 -252.000000
1356.000000 448.000000 -508.000000
1276.000000 448.000000 -508.000000
1276.000000 -92.000000 -252.000000
1356.000000 -92.000000 -252.000000
1356.000000 -92.000000 -508.000000
1276.000000 -92.000000 -508.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff9f9f9f common/materials/stone/stone
brush
vertices
964.000000 512.000000 352.000000
1320.000000 512.000000 352.000000
1320.000000 512.000000 280.000000
964.000000 448.000000 344.000000
964.000000 512.000000 280.000000
1320.000000 448.000000 352.000000
1320.000000 448.000000 344.000000
964.000000 448.000000 352.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff5c5c5c common/materials/stone/stone
brush
vertices
1408.000000 512.000000 176.000000
1480.000000 512.000000 176.000000
1480.000000 512.000000 -160.000000
1472.000000 448.000000 -160.000000
1408.000000 512.000000 -160.000000
1480.000000 448.000000 176.000000
1480.000000 448.000000 -160.000000
1472.000000 448.000000 176.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff5c5c5c common/materials/stone/stone
brush
vertices
1408.000000 544.000000 -160.000000
1628.000000 544.000000 -160.000000
1628.000000 544.000000 -380.000000
1408.000000 544.000000 -380.000000
1408.000000 448.000000 -160.000000
1628.000000 448.000000 -160.000000
1628.000000 448.000000 -380.000000
1408.000000 448.000000 -380.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
748.000000 452.000000 356.000000
892.000000 452.000000 356.000000
892.000000 452.000000 -132.000000
748.000000 452.000000 -132.000000
748.000000 448.000000 356.000000
892.000000 448.000000 356.000000
892.000000 448.000000 -132.000000
748.000000 448.000000 -132.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
748.000000 496.000000 -132.000000
892.000000 496.000000 -132.000000
892.000000 496.000000 -252.000000
748.000000 496.000000 -252.000000
748.000000 448.000000 -132.000000
892.000000 448.000000 -132.000000
892.000000 448.000000 -252.000000
748.000000 448.000000 -252.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1212.000000 264.000000 -412.000000
1276.000000 448.000000 -348.000000
1276.000000 448.000000 -412.000000
1276.000000 264.000000 -348.000000
1276.000000 264.000000 -412.000000
1212.000000 448.000000 -412.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
700.000000 448.000000 -132.000000
724.000000 448.000000 -132.000000
724.000000 448.000000 -252.000000
700.000000 448.000000 -252.000000
700.000000 252.000000 -132.000000
724.000000 252.000000 -132.000000
724.000000 252.000000 -252.000000
700.000000 252.000000 -252.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
884.000000 448.000000 -412.000000
1212.000000 448.000000 -412.000000
1212.000000 448.000000 -420.000000
884.000000 448.000000 -420.000000
884.000000 264.000000 -412.000000
1212.000000 264.000000 -412.000000
1212.000000 264.000000 -420.000000
884.000000 264.000000 -420.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
964.000000 260.000000 -319.000000
1276.000000 260.000000 -319.000000
1276.000000 260.000000 -704.000000
964.000000 260.000000 -704.000000
964.000000 224.000000 -319.000000
1276.000000 224.000000 -319.000000
1276.000000 224.000000 -704.000000
964.000000 224.000000 -704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
888.000000 264.000000 -272.000000
1276.000000 264.000000 -272.000000
1276.000000 264.000000 -412.000000
888.000000 264.000000 -412.000000
888.000000 260.000000 -272.000000
1276.000000 260.000000 -272.000000
1276.000000 260.000000 -412.000000
888.000000 260.000000 -412.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
724.000000 264.000000 -148.000000
888.000000 264.000000 -148.000000
888.000000 264.000000 -412.000000
724.000000 264.000000 -412.000000
724.000000 260.000000 -148.000000
888.000000 260.000000 -148.000000
888.000000 260.000000 -412.000000
724.000000 260.000000 -412.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
892.000000 544.000000 507.999969
964.000000 544.000000 507.999969
964.000000 544.000000 -252.000000
892.000000 448.000000 -252.000000
892.000000 544.000000 -252.000000
964.000000 448.000000 507.999969
964.000000 448.000000 -252.000000
892.000000 448.000000 507.999969
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1216.000000 208.000000 284.000000
1232.000000 208.000000 284.000000
1232.000000 208.000000 128.000000
1216.000000 208.000000 128.000000
1216.000000 200.000000 284.000000
1232.000000 200.000000 284.000000
1232.000000 200.000000 128.000000
1216.000000 200.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1200.000000 216.000000 284.000000
1216.000000 216.000000 284.000000
1216.000000 216.000000 128.000000
1200.000000 216.000000 128.000000
1200.000000 200.000000 284.000000
1216.000000 200.000000 284.000000
1216.000000 200.000000 128.000000
1200.000000 200.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1184.000000 224.000000 284.000000
1200.000000 224.000000 284.000000
1200.000000 224.000000 128.000000
1184.000000 224.000000 128.000000
1184.000000 200.000000 284.000000
1200.000000 200.000000 284.000000
1200.000000 200.000000 128.000000
1184.000000 200.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1120.000000 256.000000 288.000000
1416.000000 256.000000 288.000000
1416.000000 256.000000 284.000000
1416.000000 196.000000 288.000000
1120.000000 256.000000 284.000000
1120.000000 196.000000 284.000000
1120.000000 196.000000 288.000000
1416.000000 196.000000 284.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff3f3f3f common/materials/stone/stone
brush
vertices
1168.000000 232.000000 284.000000
1184.000000 232.000000 284.000000
1184.000000 232.000000 128.000000
1168.000000 232.000000 128.000000
1168.000000 200.000000 284.000000
1184.000000 200.000000 284.000000
1184.000000 200.000000 128.000000
1168.000000 200.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1152.000000 240.000000 284.000000
1168.000000 240.000000 284.000000
1168.000000 240.000000 128.000000
1152.000000 240.000000 128.000000
1152.000000 200.000000 284.000000
1168.000000 200.000000 284.000000
1168.000000 200.000000 128.000000
1152.000000 200.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1136.000000 248.000000 284.000000
1152.000000 248.000000 284.000000
1152.000000 248.000000 128.000000
1136.000000 248.000000 128.000000
1136.000000 200.000000 284.000000
1152.000000 200.000000 284.000000
1152.000000 200.000000 128.000000
1136.000000 200.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1120.000000 256.000000 284.000000
1136.000000 256.000000 284.000000
1136.000000 256.000000 128.000000
1120.000000 256.000000 128.000000
1120.000000 200.000000 284.000000
1136.000000 200.000000 284.000000
1136.000000 200.000000 128.000000
1120.000000 200.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1320.000000 544.000000 508.000000
1408.000000 544.000000 508.000000
1408.000000 544.000000 176.000000
1408.000000 448.000000 508.000000
1320.000000 544.000000 280.000000
1320.000000 448.000000 280.000000
1320.000000 448.000000 508.000000
1408.000000 448.000000 176.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff3f3f3f common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xff3f3f3f common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xff3f3f3f common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
964.000000 544.000000 508.000000
1320.000000 544.000000 508.000000
1320.000000 544.000000 280.000000
964.000000 544.000000 280.000000
964.000000 512.000000 508.000000
1320.000000 512.000000 508.000000
1320.000000 512.000000 280.000000
964.000000 512.000000 280.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff000000 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff5c5c5c common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff5c5c5c common/materials/stone/stone
brush
vertices
960.000000 24.000000 -240.000000
1120.000000 24.000000 -240.000000
1120.000000 24.000000 -256.000000
960.000000 24.000000 -256.000000
960.000000 -8.000000 -240.000000
1120.000000 -8.000000 -240.000000
1120.000000 -8.000000 -256.000000
960.000000 -8.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
960.000000 16.000000 -224.000000
1120.000000 16.000000 -224.000000
1120.000000 16.000000 -240.000000
960.000000 16.000000 -240.000000
960.000000 -8.000000 -224.000000
1120.000000 -8.000000 -224.000000
1120.000000 -8.000000 -240.000000
960.000000 -8.000000 -240.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
960.000000 8.000000 -208.000000
1120.000000 8.000000 -208.000000
1120.000000 8.000000 -224.000000
960.000000 8.000000 -224.000000
960.000000 -8.000000 -208.000000
1120.000000 -8.000000 -208.000000
1120.000000 -8.000000 -224.000000
960.000000 -8.000000 -224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
960.000000 0.000000 -192.000000
1120.000000 0.000000 -192.000000
1120.000000 0.000000 -208.000000
960.000000 0.000000 -208.000000
960.000000 -8.000000 -192.000000
1120.000000 -8.000000 -192.000000
1120.000000 -8.000000 -208.000000
960.000000 -8.000000 -208.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1020.000000 -1.000000 100.000000
1092.000000 -1.000000 100.000000
1092.000000 -1.000000 28.000000
1020.000000 -1.000000 28.000000
1020.000000 -80.000000 100.000000
1092.000000 -80.000000 100.000000
1092.000000 -80.000000 28.000000
1020.000000 -80.000000 28.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1120.000000 -16.000000 -32.000000
1136.000000 -16.000000 -32.000000
1136.000000 -16.000000 -192.000000
1120.000000 -16.000000 -192.000000
1120.000000 -24.000000 -32.000000
1136.000000 -24.000000 -32.000000
1136.000000 -24.000000 -192.000000
1120.000000 -24.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1136.000000 -24.000000 -32.000000
1152.000000 -24.000000 -32.000000
1152.000000 -24.000000 -192.000000
1136.000000 -24.000000 -192.000000
1136.000000 -32.000000 -32.000000
1152.000000 -32.000000 -32.000000
1152.000000 -32.000000 -192.000000
1136.000000 -32.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1152.000000 -32.000000 -32.000000
1168.000000 -32.000000 -32.000000
1168.000000 -32.000000 -192.000000
1152.000000 -32.000000 -192.000000
1152.000000 -40.000000 -32.000000
1168.000000 -40.000000 -32.000000
1168.000000 -40.000000 -192.000000
1152.000000 -40.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1168.000000 -40.000000 -32.000000
1184.000000 -40.000000 -32.000000
1184.000000 -40.000000 -192.000000
1168.000000 -40.000000 -192.000000
1168.000000 -48.000000 -32.000000
1184.000000 -48.000000 -32.000000
1184.000000 -48.000000 -192.000000
1168.000000 -48.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1024.000000 -40.000000 272.000000
1180.000000 -40.000000 272.000000
1180.000000 -40.000000 256.000000
1024.000000 -40.000000 256.000000
1024.000000 -80.000000 272.000000
1180.000000 -80.000000 272.000000
1180.000000 -80.000000 256.000000
1024.000000 -80.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1024.000000 -32.000000 288.000000
1180.000000 -32.000000 288.000000
1180.000000 -32.000000 272.000000
1024.000000 -32.000000 272.000000
1024.000000 -40.000000 288.000000
1180.000000 -40.000000 288.000000
1180.000000 -40.000000 272.000000
1024.000000 -40.000000 272.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1024.000000 -24.000000 304.000000
1180.000000 -24.000000 304.000000
1180.000000 -24.000000 288.000000
1024.000000 -24.000000 288.000000
1024.000000 -32.000000 304.000000
1180.000000 -32.000000 304.000000
1180.000000 -32.000000 288.000000
1024.000000 -32.000000 288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1024.000000 -16.000000 320.000000
1180.000000 -16.000000 320.000000
1180.000000 -16.000000 304.000000
1024.000000 -16.000000 304.000000
1024.000000 -24.000000 320.000000
1180.000000 -24.000000 320.000000
1180.000000 -24.000000 304.000000
1024.000000 -24.000000 304.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xffa3a3a3 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xffd0d0d0 common/materials/synthetic/plastic
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffd0d0d0 common/materials/synthetic/plastic
brush
vertices
1308.000000 169.000015 -540.000000
1788.000000 169.000015 -540.000000
1788.000000 169.000015 -544.000000
1308.000000 169.000015 -544.000000
1308.000000 -171.000000 -540.000000
1788.000000 -171.000000 -540.000000
1788.000000 -171.000000 -544.000000
1308.000000 -171.000000 -544.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1780.000000 160.000000 -260.000000
1796.000000 160.000000 -260.000000
1796.000000 160.000000 -540.000000
1780.000000 160.000000 -540.000000
1780.000000 -49.000000 -260.000000
1796.000000 -49.000000 -260.000000
1796.000000 -49.000000 -540.000000
1780.000000 -49.000000 -540.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 common/materials/metal/aluminum
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 common/materials/metal/aluminum
brush
vertices
1356.000000 448.000000 -252.000000
1884.000000 448.000000 -252.000000
1884.000000 448.000000 -704.000000
1356.000000 448.000000 -704.000000
1356.000000 168.000000 -252.000000
1884.000000 168.000000 -252.000000
1884.000000 168.000000 -704.000000
1356.000000 168.000000 -704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1448.000000 168.000000 -252.000000
1884.000000 168.000000 -252.000000
1884.000000 168.000000 -260.000000
1440.000000 160.000000 -260.000000
1440.000000 168.000000 -260.000000
1884.000000 160.000000 -252.000000
1884.000000 160.000000 -260.000000
1448.000000 160.000000 -252.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1668.000000 160.000000 -252.000000
1772.000000 160.000000 -252.000000
1772.000000 160.000000 -260.000000
1668.000000 160.000000 -260.000000
1668.000000 -72.000000 -252.000000
1772.000000 -72.000000 -252.000000
1772.000000 -72.000000 -260.000000
1668.000000 -72.000000 -260.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
1604.000000 160.000000 -197.000000
1668.000000 160.000000 -252.000000
1668.000000 160.000000 -260.000000
1668.000000 -80.000000 -252.000000
1596.000000 160.000000 -197.000000
1596.000000 -80.000000 -197.000000
1604.000000 -80.000000 -197.000000
1668.000000 -80.000000 -260.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 7 5 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff3f3f3f common/materials/stone/stone
brush
vertices
1596.000000 160.000000 316.000000
1604.000000 160.000000 316.000000
1604.000000 160.000000 -197.000000
1596.000000 160.000000 -197.000000
1596.000000 -72.000000 316.000000
1604.000000 -72.000000 316.000000
1604.000000 -72.000000 -197.000000
1596.000000 -72.000000 -197.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
1500.000000 168.000000 4.000000
1508.000000 168.000000 4.000000
1508.000000 168.000000 -172.000000
1500.000000 168.000000 -172.000000
1500.000000 160.000000 4.000000
1508.000000 160.000000 4.000000
1508.000000 160.000000 -172.000000
1500.000000 160.000000 -172.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff9f9f9f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff9f9f9f common/materials/stone/stone
brush
vertices
964.000000 160.000000 340.000000
1180.000000 160.000000 340.000000
1180.000000 160.000000 320.000000
964.000000 160.000000 320.000000
964.000000 -12.000000 340.000000
1180.000000 -12.000000 340.000000
1180.000000 -12.000000 320.000000
964.000000 -12.000000 320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xffffa000 common/materials/effects/glow2
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xffffa000 common/materials/effects/glow2
brush
vertices
960.000000 160.000000 320.000000
964.000000 160.000000 320.000000
964.000000 160.000000 228.000000
960.000000 160.000000 228.000000
960.000000 -76.000000 320.000000
964.000000 -76.000000 320.000000
964.000000 -76.000000 228.000000
960.000000 -76.000000 228.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
960.000000 -12.000000 332.000000
1180.000000 -12.000000 332.000000
1180.000000 -12.000000 320.000000
960.000000 -12.000000 320.000000
960.000000 -104.000000 332.000000
1180.000000 -104.000000 332.000000
1180.000000 -104.000000 320.000000
960.000000 -104.000000 320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
1180.000000 160.000000 316.000000
1180.000000 160.000000 324.000000
1596.000000 160.000000 324.000000
1596.000244 160.000000 316.000000
1180.000000 -80.000000 316.000000
1180.000000 -80.000000 324.000000
1596.000000 -80.000000 324.000000
1596.000244 -80.000000 316.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
1468.000000 -42.000000 316.000000
1472.000000 -42.000000 316.000000
1472.000000 -42.000000 256.000000
1468.000000 -42.000000 256.000000
1468.000000 -76.000000 316.000000
1472.000000 -76.000000 316.000000
1472.000000 -76.000000 256.000000
1468.000000 -76.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
1180.000000 128.000000 88.000000
1188.000000 128.000000 88.000000
1188.000000 128.000000 40.000000
1180.000000 128.000000 40.000000
1180.000000 0.000000 88.000000
1188.000000 0.000000 88.000000
1188.000000 0.000000 40.000000
1180.000000 0.000000 40.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
963.000000 448.000000 4.000000
1500.000000 448.000000 4.000000
1500.000000 448.000000 -3.999998
963.000000 448.000000 -3.999998
963.000000 192.000000 4.000000
1500.000000 192.000000 4.000000
1500.000000 192.000000 -3.999998
963.000000 192.000000 -3.999998
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff770000 internal/editor/textures/editor_clip
brush
vertices
964.000000 448.000000 -116.000000
1088.000000 448.000000 -240.000000
1080.000000 448.000000 -256.000000
1088.000000 264.000000 -240.000000
956.000000 448.000000 -132.000000
956.000000 264.000000 -132.000000
964.000000 264.000000 -116.000000
1080.000000 264.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff770000 internal/editor/textures/editor_clip
brush
vertices
1088.000000 448.000000 -240.000000
1276.000000 448.000000 -240.000000
1276.000000 448.000000 -256.000000
1080.000000 264.000000 -256.000000
1080.000000 448.000000 -256.000000
1276.000000 264.000000 -240.000000
1276.000000 264.000000 -256.000000
1088.000000 264.000000 -240.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff770000 internal/editor/textures/editor_clip
brush
vertices
964.000000 452.000000 380.000000
1500.000000 452.000000 380.000000
1500.000000 452.000000 -252.000000
964.000000 452.000000 -252.000000
964.000000 448.000000 380.000000
1500.000000 448.000000 380.000000
1500.000000 448.000000 -252.000000
964.000000 448.000000 -252.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff770000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff770000 internal/editor/textures/editor_clip
brush
vertices
963.000000 256.000000 -256.000000
1276.000000 256.000000 -256.000000
1276.000000 256.000000 -319.000000
963.000000 256.000000 -319.000000
963.000000 224.000000 -256.000000
1276.000000 224.000000 -256.000000
1276.000000 224.000000 -319.000000
963.000000 224.000000 -319.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
960.000000 256.000000 -128.000000
960.000000 224.000000 -256.000000
1088.000000 256.000000 -256.000000
960.000000 224.000000 -128.000000
1088.000000 224.000000 -256.000000
960.000000 256.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0xff6d6d6d common/materials/stone/stone
brush
vertices
964.000000 264.000000 -132.000000
1088.000000 264.000000 -256.000000
1080.000000 264.000000 -272.000000
1088.000000 256.000000 -256.000000
956.000000 264.000000 -148.000000
956.000000 256.000000 -148.000000
964.000000 256.000000 -132.000000
1080.000000 256.000000 -272.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
1088.000000 264.000000 -256.000000
1276.000000 264.000000 -256.000000
1276.000000 264.000000 -272.000000
1080.000000 256.000000 -272.000000
1080.000000 264.000000 -272.000000
1276.000000 256.000000 -256.000000
1276.000000 256.000000 -272.000000
1088.000000 256.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0xff6d6d6d common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0xff6d6d6d common/materials/stone/stone
brush
vertices
964.000000 200.000000 284.000000
1500.000000 200.000000 284.000000
1500.000000 200.000000 0.000000
964.000000 200.000000 0.000000
964.000000 192.000000 284.000000
1500.000000 192.000000 284.000000
1500.000000 192.000000 0.000000
964.000000 192.000000 0.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
724.000000 544.000000 -252.000000
1408.000000 544.000000 -252.000000
1408.000000 544.000000 -412.000000
724.000000 544.000000 -412.000000
724.000000 448.000000 -252.000000
1408.000000 448.000000 -252.000000
1408.000000 448.000000 -412.000000
724.000000 448.000000 -412.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
724.000000 448.000000 -252.000000
724.000000 264.000000 -412.000000
884.000000 448.000000 -412.000000
724.000000 264.000000 -252.000000
884.000000 264.000000 -412.000000
724.000000 448.000000 -412.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0xff3f3f3f common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0xff3f3f3f common/materials/stone/stone
brush
vertices
864.000000 448.000000 380.000000
936.000000 448.000000 380.000000
936.000000 448.000000 228.000000
864.000000 448.000000 228.000000
864.000000 264.000000 380.000000
936.000000 264.000000 380.000000
936.000000 264.000000 228.000000
864.000000 264.000000 228.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
784.000000 448.000000 -132.000000
964.000000 448.000000 -132.000000
788.000000 448.000000 -316.000000
784.000000 264.000000 -316.000000
784.000000 448.000000 -316.000000
964.000000 264.000000 -132.000000
788.000000 264.000000 -316.000000
784.000000 264.000000 -132.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
entity
type PlayerSpawn
Vector3 position 828.000000 268.000000 -312.000000
Vector3 angles 45.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
entity
type CameraPath
UInt32 entityIdAttachedTo 700
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type Teleporter
String32 target tp2a
brush
vertices
1772.000000 112.000000 -316.000000
1780.000000 112.000000 -316.000000
1780.000000 112.000000 -484.000000
1772.000000 112.000000 -484.000000
1772.000000 -48.000000 -316.000000
1780.000000 -48.000000 -316.000000
1780.000000 -48.000000 -484.000000
1772.000000 -48.000000 -484.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
entity
type Teleporter
String32 target tp1
brush
vertices
1060.000000 200.000000 -592.000000
1212.000000 200.000000 -592.000000
1212.000000 200.000000 -596.000000
1060.000000 200.000000 -596.000000
1060.000000 28.000000 -592.000000
1212.000000 28.000000 -592.000000
1212.000000 28.000000 -596.000000
1060.000000 28.000000 -596.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
entity
type Target
Vector3 position 1440.000000 200.000000 160.000000
Vector3 angles -90.000000 0.000000 0.000000
String32 name tp1
entity
type PlayerSpawn
Vector3 position 1020.000000 196.000000 64.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 1452.000000 196.000000 80.000000
Vector3 angles 225.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 1020.000000 260.000000 336.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 1308.000000 260.000000 336.000000
Vector3 angles 200.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 1388.000000 196.000000 208.000000
Vector3 angles 200.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 1196.000000 268.000000 -360.000000
Bool8 teamA 0
Bool8 initialSpawn 0
entity
type PlayerSpawn
Vector3 position 1068.000000 268.000000 -376.000000
Vector3 angles 10.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
entity
type PlayerSpawn
Vector3 position 908.000000 268.000000 -360.000000
Vector3 angles 35.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
entity
type PlayerSpawn
Vector3 position 988.000000 268.000000 -376.000000
Vector3 angles 20.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
|
8759533e8e387cc2d2dd580a08d5ae6566e85a71 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.12_18.tst | f713fba1f3728a370ea41f09709ec0c53291fb5a | [] | 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 | 393,465 | tst | 5.12_18.tst | 12 363:1 398:1 451:1 835:1 923:1 3642:1 4504:1 4509:1 4844:1 6388:1 6962:1 7071:1 7870:1 8029:1 8050:1 8108:1 8408:1 8598:1 9765:1 12149:1 12356:1 13681:1 13930:1 14020:1 14300:1 15892:1 17069:1 17449:1 18244:1 18295:1 18342:1 19214:24 20074:1 22598:1 22733:1 23013:1 23090:1 23897:1 24419:1 24775:1 26345:1 27929:1 28738:1 29249:1
12 363:1 398:1 451:2 835:1 905:1 923:1 1016:1 1303:1 1353:1 1593:1 1895:1 2115:1 2307:1 2394:1 2403:1 2573:1 2665:1 2860:1 3295:1 3572:1 3642:1 4369:1 4504:1 4509:1 4844:1 5138:1 5376:1 5487:1 5498:2 5579:1 5682:1 6388:1 6440:1 6526:1 6605:1 6629:1 6630:1 6914:1 6962:1 7071:1 7762:1 7870:1 7883:1 7952:1 7954:1 7971:1 8029:2 8050:1 8108:1 8142:1 8164:1 8408:1 8598:1 9426:1 9517:1 9765:1 10234:1 10372:1 10652:1 11001:1 11012:1 11400:1 11954:1 12089:1 12149:1 12208:1 12356:1 12529:1 13681:2 13930:1 13969:1 14020:1 14062:1 14300:1 14341:1 14553:1 14712:1 14870:1 15142:1 15439:1 15730:1 15892:1 16078:1 16158:1 16304:1 16315:1 16421:1 16659:1 16800:1 17069:1 17449:1 18010:1 18150:1 18244:1 18295:1 18342:1 18965:1 19201:1 19214:106 20016:1 20074:1 20321:1 20528:1 20596:1 20660:1 20829:1 21030:1 21164:1 21386:1 21883:1 22182:1 22191:1 22347:1 22598:1 22700:1 22733:1 23013:2 23090:1 23185:1 23534:1 23610:1 23813:1 23882:1 23897:1 24236:1 24243:1 24350:1 24419:1 24679:1 24775:1 24888:1 24927:1 25088:1 25134:1 25643:1 25799:1 26345:1 26751:1 26757:1 26932:1 26948:1 27082:1 27528:1 27559:1 27647:1 27763:1 27790:1 27833:1 27882:1 27929:1 28243:1 28352:1 28442:1 28684:1 28720:1 28738:1 29073:1 29130:1 29249:2 29822:1
12 363:1 398:1 451:2 473:1 835:1 905:1 923:1 1016:1 1303:1 1353:1 1474:1 1593:1 1895:1 2115:1 2307:1 2394:1 2403:1 2573:1 2665:1 2860:1 3295:1 3572:1 3642:1 4132:1 4369:1 4504:1 4509:1 4844:1 5138:2 5376:1 5469:1 5487:1 5498:2 5532:1 5579:3 5682:1 6008:1 6388:1 6440:1 6526:1 6530:1 6605:1 6629:1 6630:1 6914:1 6962:1 7071:1 7762:1 7870:1 7883:1 7952:1 7954:1 7971:1 8029:2 8050:1 8108:1 8142:1 8164:1 8408:1 8598:1 9426:1 9517:1 9765:1 10234:1 10372:1 10652:1 11001:1 11012:1 11295:1 11400:1 11536:1 11954:1 12089:1 12149:1 12208:1 12356:1 12529:1 13111:1 13494:1 13681:2 13930:1 13969:1 14020:1 14062:1 14300:1 14341:1 14553:1 14712:1 14870:1 15142:1 15439:1 15725:1 15728:1 15730:1 15892:1 15920:1 16078:1 16121:1 16158:1 16304:1 16315:1 16421:1 16659:1 16800:1 17069:1 17449:1 18010:1 18150:1 18244:1 18295:1 18323:1 18342:1 18369:1 18965:1 19037:1 19201:1 19214:136 19282:1 20016:1 20074:1 20321:1 20528:1 20596:1 20660:1 20829:1 21030:1 21164:1 21386:1 21883:1 22182:1 22191:1 22347:1 22598:1 22700:1 22733:1 23013:2 23090:1 23185:1 23319:1 23534:1 23610:1 23813:1 23882:1 23897:1 24236:1 24243:1 24350:1 24419:1 24667:1 24679:1 24775:1 24888:1 24927:1 25088:1 25134:1 25643:1 25799:1 26345:1 26751:1 26757:1 26932:1 26948:1 27082:1 27425:1 27528:1 27559:1 27647:1 27763:1 27790:1 27833:1 27882:1 27929:1 28243:1 28352:1 28442:1 28684:1 28720:1 28738:1 28983:1 29073:1 29130:1 29249:2 29822:2
12 363:1 398:1 451:2 473:1 835:1 905:1 923:1 1016:1 1221:1 1258:1 1303:1 1353:1 1474:1 1593:1 1812:1 1860:1 1880:1 1895:1 1898:1 2115:1 2250:1 2307:1 2312:1 2394:1 2403:1 2573:1 2665:1 2670:1 2860:1 3295:1 3388:1 3402:1 3572:1 3642:1 4010:1 4042:1 4076:1 4132:1 4369:1 4504:1 4509:1 4593:1 4744:1 4844:1 5028:1 5138:3 5376:2 5469:1 5487:1 5498:2 5532:1 5579:4 5682:1 6008:1 6312:1 6388:1 6440:1 6526:1 6530:1 6605:1 6629:1 6630:2 6914:1 6962:1 7071:1 7134:1 7762:1 7870:1 7883:1 7952:1 7954:1 7971:1 8029:3 8050:1 8108:1 8142:1 8164:1 8408:1 8598:1 8945:1 9054:1 9351:1 9426:1 9517:1 9702:1 9765:1 9862:1 10234:2 10372:1 10519:1 10576:1 10652:1 11001:1 11012:1 11289:1 11295:2 11311:1 11348:1 11400:1 11418:1 11473:1 11536:1 11707:1 11739:1 11760:1 11909:1 11954:1 12089:1 12149:1 12208:1 12356:1 12365:1 12529:1 13111:1 13188:1 13494:1 13681:2 13930:1 13969:1 14020:1 14062:1 14300:1 14341:1 14490:1 14553:1 14678:1 14712:1 14852:1 14870:1 15137:1 15142:3 15178:1 15410:1 15439:1 15588:1 15725:1 15728:1 15730:1 15892:1 15920:1 16078:1 16121:1 16158:2 16304:1 16315:1 16421:1 16659:1 16800:1 16805:1 17048:1 17069:1 17384:1 17449:1 17572:1 17730:1 18010:1 18150:1 18244:1 18290:1 18295:1 18323:1 18342:1 18345:1 18369:1 18965:1 18975:1 19037:1 19201:1 19214:210 19282:1 19543:1 20016:1 20074:1 20321:1 20528:1 20596:1 20639:1 20660:1 20740:1 20829:1 20961:1 21030:1 21133:1 21164:1 21282:1 21373:1 21386:1 21883:1 22161:1 22182:1 22191:2 22252:1 22347:1 22598:1 22669:1 22700:1 22733:1 23013:2 23090:1 23185:1 23199:1 23211:1 23319:1 23534:1 23610:1 23813:1 23882:1 23897:1 24236:1 24243:1 24350:1 24419:1 24483:1 24667:1 24679:1 24775:1 24888:1 24927:1 25088:1 25134:1 25140:1 25423:1 25643:1 25799:1 25934:1 26345:1 26605:1 26668:1 26751:1 26757:1 26824:1 26932:1 26948:3 27082:1 27425:1 27474:1 27528:1 27559:1 27580:1 27647:1 27763:1 27790:1 27833:1 27882:1 27929:1 28243:1 28352:1 28404:1 28411:1 28442:1 28539:1 28684:1 28720:1 28738:1 28756:1 28983:1 29073:1 29130:1 29187:1 29249:2 29603:1 29667:2 29822:3
12 137:1 363:1 398:1 417:1 451:2 473:1 768:1 835:1 905:1 910:1 923:1 1016:1 1118:1 1208:1 1221:1 1258:1 1303:1 1353:1 1474:1 1593:1 1707:1 1812:1 1827:1 1860:1 1880:1 1895:1 1898:1 2115:1 2250:1 2252:1 2307:1 2312:1 2314:1 2394:1 2403:1 2573:1 2665:1 2670:1 2860:1 3049:1 3295:1 3388:1 3402:1 3572:1 3600:1 3642:1 4010:2 4042:2 4076:1 4132:1 4369:1 4504:1 4509:1 4593:1 4744:1 4844:1 5028:1 5138:3 5376:2 5469:1 5487:1 5498:2 5532:1 5579:5 5682:1 6008:1 6312:1 6388:1 6440:1 6526:1 6530:1 6605:1 6629:1 6630:2 6785:1 6914:1 6962:1 7071:1 7134:1 7762:1 7870:1 7883:1 7952:1 7954:1 7971:1 8029:4 8050:1 8108:1 8142:1 8164:1 8408:1 8598:1 8761:1 8945:2 9054:1 9351:1 9426:1 9517:1 9613:1 9702:1 9765:1 9862:1 9950:1 9957:1 10234:2 10372:1 10519:1 10576:1 10652:1 10659:1 11001:1 11012:2 11289:1 11295:2 11311:1 11348:1 11400:1 11418:2 11473:1 11536:1 11707:1 11739:1 11760:1 11909:1 11954:1 12089:1 12149:1 12208:1 12282:1 12356:1 12365:1 12529:1 13111:1 13188:1 13391:1 13494:1 13681:2 13843:1 13930:1 13969:1 13984:1 14020:1 14062:1 14300:1 14341:1 14490:1 14553:1 14661:1 14678:1 14712:1 14844:1 14852:1 14870:1 15092:1 15137:1 15142:3 15178:1 15410:1 15439:1 15588:1 15717:1 15725:1 15728:1 15730:1 15892:1 15920:1 16078:1 16121:1 16158:2 16304:1 16315:1 16421:1 16570:1 16659:1 16800:1 16805:1 17048:1 17069:1 17384:1 17449:1 17572:1 17730:1 18010:1 18150:1 18235:1 18244:1 18290:1 18295:1 18323:1 18342:1 18345:1 18369:1 18965:1 18975:1 19037:1 19201:1 19214:250 19282:1 19293:1 19543:1 20016:1 20074:1 20321:1 20413:1 20528:1 20596:1 20639:1 20660:1 20701:1 20740:1 20829:1 20961:1 21030:1 21053:1 21133:1 21164:1 21282:1 21373:1 21386:1 21883:1 22161:2 22182:1 22191:2 22252:1 22347:1 22598:1 22669:1 22700:1 22733:1 22791:1 23013:2 23089:1 23090:1 23185:1 23199:1 23211:1 23319:1 23534:1 23610:1 23813:1 23882:1 23897:1 24071:1 24236:1 24243:1 24350:1 24419:1 24483:1 24667:1 24679:1 24775:1 24888:1 24927:1 25088:1 25134:1 25140:1 25423:1 25641:1 25643:1 25799:1 25807:1 25834:1 25934:1 26282:1 26345:1 26444:1 26605:1 26668:1 26751:1 26757:1 26824:1 26932:1 26948:3 27082:1 27425:1 27474:1 27528:1 27559:1 27580:1 27647:1 27763:1 27790:1 27830:1 27833:1 27836:1 27882:1 27929:1 28097:1 28243:1 28284:1 28352:1 28404:1 28411:1 28442:1 28539:1 28684:1 28720:2 28738:1 28756:1 28798:1 28983:1 29073:1 29130:1 29187:1 29249:2 29603:1 29667:2 29822:3
12 137:1 179:1 239:1 363:1 398:1 417:1 451:2 473:1 592:1 622:1 768:1 835:1 905:1 910:1 923:1 928:2 1016:1 1118:1 1208:1 1221:1 1258:1 1303:1 1353:1 1474:1 1593:1 1671:1 1707:1 1812:1 1827:1 1860:1 1880:1 1895:1 1898:1 1929:1 2039:1 2115:1 2239:1 2250:2 2252:1 2301:1 2307:1 2312:1 2314:1 2324:1 2394:1 2403:1 2573:1 2665:1 2670:1 2848:1 2860:1 3049:1 3052:1 3295:1 3376:1 3388:1 3402:1 3572:1 3600:1 3642:1 3683:1 3787:1 4010:2 4042:2 4076:1 4132:1 4369:1 4390:1 4504:1 4509:1 4593:1 4744:1 4844:1 5028:1 5138:3 5153:1 5161:1 5376:2 5469:1 5487:1 5498:2 5532:2 5579:6 5644:1 5682:1 6008:1 6223:1 6303:1 6312:1 6316:1 6388:1 6440:1 6519:1 6526:1 6530:1 6605:1 6621:1 6629:1 6630:2 6785:1 6914:1 6962:1 7071:1 7097:1 7134:1 7208:1 7762:1 7870:1 7883:1 7952:2 7954:1 7971:1 8029:6 8050:1 8054:1 8108:1 8142:1 8164:1 8408:1 8513:1 8598:1 8761:1 8887:1 8945:2 9054:1 9148:1 9324:1 9351:1 9417:1 9426:1 9458:1 9517:1 9613:1 9702:1 9765:1 9862:1 9950:1 9957:1 10175:2 10234:2 10372:1 10519:1 10576:1 10652:1 10659:1 11001:1 11012:2 11289:1 11295:2 11311:1 11317:1 11348:1 11400:1 11418:2 11473:1 11536:1 11707:1 11733:1 11739:1 11760:1 11769:1 11909:2 11954:1 12089:1 12121:1 12149:1 12208:1 12282:1 12356:1 12365:1 12479:1 12529:1 12857:1 13111:1 13114:1 13188:1 13391:1 13494:1 13539:1 13681:2 13843:1 13930:1 13969:2 13984:1 14020:1 14062:1 14166:1 14300:1 14341:1 14490:1 14491:1 14553:1 14661:1 14678:1 14679:1 14712:1 14844:1 14852:1 14870:1 15092:1 15137:1 15142:3 15178:1 15393:1 15410:1 15435:1 15439:1 15490:1 15498:1 15588:1 15675:1 15717:1 15725:1 15728:1 15730:1 15892:1 15920:1 15931:1 16078:2 16094:1 16097:1 16121:1 16129:1 16158:2 16304:1 16315:1 16421:1 16509:1 16570:2 16659:1 16682:1 16800:1 16805:1 17008:1 17048:1 17069:1 17384:1 17449:1 17572:1 17730:1 18010:1 18150:1 18221:1 18235:1 18244:1 18290:1 18295:1 18323:1 18342:1 18343:1 18345:1 18369:1 18394:1 18965:1 18975:1 19023:1 19037:1 19201:1 19214:321 19282:1 19293:1 19543:1 20016:2 20074:1 20202:1 20233:1 20321:1 20407:1 20413:1 20524:1 20528:1 20596:2 20639:1 20660:1 20701:1 20740:1 20829:1 20961:1 21030:1 21053:1 21133:1 21164:1 21282:1 21373:1 21386:1 21414:1 21883:1 21951:1 22161:2 22182:1 22191:2 22218:1 22252:1 22347:1 22389:1 22598:1 22669:1 22700:1 22733:1 22791:2 23013:2 23089:1 23090:1 23185:1 23199:1 23211:1 23313:1 23317:1 23319:1 23534:1 23610:1 23813:1 23830:1 23882:1 23897:1 24044:1 24071:1 24236:1 24243:1 24350:1 24419:1 24483:1 24643:1 24667:1 24679:1 24733:1 24775:1 24888:2 24927:1 25011:1 25088:1 25134:1 25140:1 25423:1 25534:1 25579:1 25592:1 25641:1 25643:1 25799:2 25807:2 25834:1 25905:1 25934:1 25959:1 26054:1 26282:1 26345:1 26444:1 26605:1 26668:1 26751:1 26757:1 26824:1 26932:2 26948:3 27017:1 27082:1 27425:1 27474:1 27505:1 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27763:1 27790:1 27830:1 27833:1 27836:1 27882:1 27915:1 27929:1 27962:1 28097:1 28232:1 28243:1 28284:1 28352:1 28404:1 28411:1 28442:1 28516:1 28539:1 28569:1 28684:2 28720:3 28738:1 28756:1 28798:1 28942:1 28983:1 29073:1 29130:1 29187:1 29243:1 29249:2 29581:1 29591:1 29603:1 29667:2 29822:3
12 137:1 179:1 239:2 363:1 398:1 417:1 451:2 473:1 592:1 622:1 768:1 835:1 905:1 910:1 923:1 928:2 1016:1 1083:1 1118:1 1208:1 1221:1 1258:1 1303:1 1353:1 1422:1 1474:1 1593:1 1671:1 1707:1 1812:1 1827:1 1860:1 1880:1 1895:1 1898:1 1929:1 2039:1 2115:1 2239:1 2250:2 2252:1 2301:1 2307:1 2312:1 2314:1 2324:1 2394:1 2403:1 2573:1 2604:1 2665:1 2670:1 2848:2 2860:1 3033:1 3049:1 3052:1 3295:1 3376:1 3388:1 3402:1 3572:1 3600:1 3642:1 3683:1 3787:1 3905:1 4010:2 4042:2 4076:1 4132:1 4369:1 4390:1 4421:1 4504:1 4509:1 4593:1 4744:1 4844:1 4911:1 5028:1 5138:3 5153:1 5154:1 5161:1 5209:1 5376:2 5469:1 5487:1 5498:2 5532:3 5579:6 5614:1 5644:1 5682:1 5829:1 5968:1 6008:1 6223:1 6303:1 6312:1 6316:1 6388:1 6440:1 6519:1 6526:1 6530:1 6605:1 6621:1 6629:1 6630:2 6785:1 6914:1 6962:1 7055:1 7071:1 7097:2 7134:1 7208:1 7331:1 7706:1 7762:1 7870:1 7883:1 7952:2 7954:1 7971:1 8029:6 8050:1 8054:1 8108:1 8142:1 8164:1 8408:1 8513:1 8552:1 8598:1 8761:1 8887:1 8945:2 8961:1 9054:1 9148:1 9324:1 9351:1 9417:1 9426:1 9458:1 9517:1 9613:1 9702:1 9765:1 9862:1 9950:1 9957:1 9997:1 10175:2 10234:2 10372:1 10427:1 10519:1 10576:1 10652:1 10659:1 10891:1 10989:1 11001:1 11012:2 11289:1 11295:2 11311:1 11317:1 11348:1 11400:1 11418:2 11473:1 11536:1 11609:1 11707:1 11733:1 11739:1 11760:1 11769:1 11882:1 11909:2 11954:1 12089:1 12121:1 12149:1 12208:1 12282:1 12356:1 12365:1 12479:1 12529:1 12546:1 12857:1 12937:1 13087:1 13089:1 13111:1 13114:1 13122:1 13188:1 13391:1 13494:1 13539:1 13681:2 13792:1 13843:1 13930:1 13969:2 13984:1 14020:1 14062:1 14166:1 14300:1 14341:1 14490:1 14491:1 14553:1 14661:1 14678:1 14679:1 14712:1 14777:1 14844:1 14852:1 14870:1 15065:1 15092:1 15137:1 15142:3 15178:1 15393:1 15410:1 15435:1 15439:1 15490:1 15498:1 15588:1 15675:1 15717:1 15725:1 15728:1 15730:1 15892:1 15920:1 15931:1 16078:2 16094:1 16097:1 16118:1 16121:1 16129:1 16158:2 16304:1 16315:1 16421:1 16481:1 16509:1 16570:2 16659:1 16682:1 16800:1 16805:1 16981:1 17008:1 17048:1 17069:1 17384:1 17449:1 17572:1 17730:1 17763:1 18010:1 18150:1 18221:1 18235:1 18244:1 18290:1 18295:1 18323:1 18342:1 18343:1 18345:1 18369:1 18394:1 18629:1 18965:1 18975:1 19023:1 19037:1 19201:1 19214:365 19282:1 19293:1 19524:1 19543:1 20016:2 20074:1 20202:2 20233:2 20321:1 20407:1 20413:1 20524:1 20528:1 20596:2 20639:1 20660:1 20701:1 20704:1 20740:1 20829:1 20961:1 21030:1 21053:1 21133:1 21164:1 21282:1 21328:1 21373:1 21386:1 21411:1 21414:2 21471:1 21883:1 21951:1 22161:2 22182:1 22191:2 22218:1 22252:1 22347:1 22389:1 22392:1 22598:1 22669:1 22700:1 22733:1 22791:2 22943:1 23013:2 23089:1 23090:1 23106:1 23185:1 23199:1 23211:1 23313:1 23317:1 23319:1 23534:1 23610:1 23694:1 23813:1 23830:1 23882:1 23897:1 24044:1 24071:1 24236:1 24243:1 24257:1 24350:1 24419:1 24483:1 24489:1 24643:1 24667:1 24679:1 24733:1 24775:1 24888:2 24927:1 25011:2 25088:1 25134:1 25140:1 25423:1 25534:1 25579:1 25592:1 25641:1 25643:1 25799:2 25807:2 25834:1 25905:1 25934:1 25959:1 26054:1 26170:1 26282:1 26345:1 26350:1 26415:1 26444:2 26605:1 26668:1 26751:1 26757:1 26824:1 26855:1 26932:2 26948:3 27017:1 27082:1 27191:1 27383:1 27425:1 27474:1 27505:1 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27763:1 27790:1 27821:1 27830:1 27833:1 27836:1 27882:1 27915:1 27929:1 27962:1 28097:1 28232:1 28243:1 28284:1 28352:1 28404:1 28411:1 28442:1 28516:1 28539:1 28549:1 28569:1 28599:1 28618:1 28684:2 28720:3 28738:1 28756:1 28798:1 28942:1 28983:1 29073:1 29130:1 29187:1 29243:1 29249:2 29297:1 29477:1 29581:1 29591:1 29603:1 29667:2 29822:3
12 51:1 137:1 179:1 239:2 363:1 398:1 417:1 451:3 473:1 592:1 622:1 768:1 835:1 905:1 910:1 923:1 928:2 1016:1 1038:1 1083:1 1118:1 1208:1 1221:1 1258:1 1303:1 1353:1 1422:1 1474:1 1593:1 1671:1 1703:1 1707:1 1812:1 1827:1 1860:1 1880:1 1895:1 1898:1 1929:1 2037:1 2039:1 2115:1 2239:1 2250:2 2252:1 2301:1 2304:1 2307:1 2312:1 2314:1 2324:1 2370:1 2394:1 2403:1 2573:1 2604:1 2665:1 2670:1 2787:3 2848:2 2860:1 3033:1 3049:1 3052:1 3295:1 3317:1 3340:1 3376:1 3388:1 3402:1 3572:1 3600:1 3642:1 3683:1 3787:1 3905:1 4010:2 4042:2 4076:1 4132:1 4136:1 4369:1 4390:1 4421:1 4504:1 4509:1 4593:1 4744:1 4844:1 4911:1 5028:1 5138:3 5153:1 5154:1 5161:1 5175:1 5209:1 5376:2 5469:1 5487:1 5498:2 5532:3 5579:6 5614:1 5644:1 5682:1 5765:1 5788:1 5829:1 5968:1 6008:1 6223:1 6303:1 6312:1 6316:1 6388:1 6440:1 6519:1 6526:1 6530:1 6605:1 6621:1 6629:1 6630:2 6729:1 6785:1 6914:1 6962:1 7001:1 7055:1 7071:1 7097:2 7134:1 7169:1 7208:1 7331:1 7407:2 7509:1 7537:1 7706:1 7762:1 7817:1 7870:1 7883:1 7952:2 7954:1 7971:1 8029:6 8050:1 8054:1 8061:1 8098:1 8108:1 8142:2 8164:1 8408:1 8513:1 8552:1 8561:1 8598:1 8761:1 8884:1 8887:1 8900:1 8945:2 8961:1 9030:1 9054:1 9148:1 9200:1 9324:1 9351:1 9417:1 9426:1 9458:1 9480:3 9510:1 9517:1 9594:1 9613:1 9702:1 9765:1 9832:1 9862:1 9950:1 9957:1 9997:1 10175:2 10234:2 10372:1 10427:1 10444:1 10519:1 10576:1 10652:1 10659:1 10816:1 10891:1 10989:1 11001:1 11012:2 11019:1 11289:1 11295:2 11311:1 11317:1 11348:1 11400:1 11418:2 11460:1 11473:1 11536:1 11609:1 11707:1 11733:1 11739:1 11760:1 11769:1 11807:1 11882:1 11909:2 11954:1 12089:1 12121:1 12149:1 12208:1 12282:1 12356:1 12365:1 12479:1 12529:1 12546:1 12623:1 12818:1 12857:1 12937:1 12951:1 13081:1 13084:1 13087:1 13089:1 13111:1 13114:1 13122:1 13188:1 13328:1 13391:1 13494:1 13498:1 13514:1 13539:1 13681:2 13792:1 13843:1 13930:1 13969:2 13984:1 14020:1 14038:1 14062:1 14138:1 14166:1 14252:1 14300:1 14321:2 14341:1 14490:1 14491:1 14495:1 14553:1 14661:1 14678:1 14679:1 14712:1 14777:1 14844:1 14852:1 14870:1 14884:1 14945:1 15065:1 15092:1 15137:1 15142:3 15178:1 15393:1 15410:1 15435:1 15439:1 15490:1 15498:1 15588:1 15603:1 15675:1 15717:1 15725:1 15728:1 15730:1 15892:1 15920:1 15931:1 16078:2 16094:1 16097:1 16118:1 16121:1 16129:1 16145:1 16158:2 16304:1 16315:1 16363:1 16421:1 16480:1 16481:1 16509:1 16570:2 16656:1 16659:1 16673:1 16682:1 16780:1 16800:1 16805:1 16930:1 16948:1 16981:1 17008:1 17048:1 17069:1 17254:1 17384:1 17449:1 17509:1 17570:1 17572:1 17730:1 17763:1 17946:1 17957:1 18010:1 18150:1 18221:1 18235:1 18244:1 18290:1 18295:1 18323:1 18342:1 18343:1 18345:1 18369:1 18394:1 18629:1 18631:1 18965:1 18975:2 18988:1 19023:1 19037:1 19123:1 19201:1 19214:436 19282:1 19293:1 19524:1 19543:1 20016:2 20074:1 20202:2 20233:2 20267:1 20321:1 20407:1 20413:1 20524:1 20528:1 20596:2 20639:1 20660:1 20701:1 20704:1 20740:1 20829:1 20961:1 21030:1 21053:1 21133:1 21164:1 21282:1 21328:1 21373:1 21386:1 21411:1 21414:2 21471:1 21563:1 21883:1 21951:1 22161:2 22182:1 22191:2 22218:1 22252:1 22347:1 22389:1 22392:1 22577:1 22598:1 22640:1 22669:1 22700:1 22733:1 22791:2 22943:1 23013:3 23028:1 23089:1 23090:1 23106:1 23166:1 23185:1 23199:1 23211:1 23313:1 23317:1 23319:1 23534:1 23610:1 23694:1 23813:1 23830:1 23875:1 23882:1 23897:1 23937:1 23992:1 24044:1 24066:1 24071:1 24236:1 24243:1 24257:1 24350:1 24419:1 24483:1 24489:1 24615:3 24643:1 24667:1 24679:1 24733:1 24775:1 24852:1 24888:2 24927:1 25011:2 25088:1 25134:1 25140:1 25423:1 25534:1 25579:1 25592:1 25641:1 25643:1 25799:2 25807:2 25834:1 25848:1 25905:1 25934:1 25959:1 26054:1 26064:1 26170:1 26282:2 26345:1 26350:1 26415:1 26444:2 26605:2 26668:1 26751:1 26757:1 26824:1 26855:1 26932:2 26948:3 27017:1 27082:1 27191:1 27383:1 27425:1 27474:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27763:1 27790:1 27821:1 27830:1 27833:1 27836:1 27882:1 27915:1 27929:1 27962:1 28049:1 28097:1 28232:1 28243:1 28284:1 28352:1 28356:3 28404:1 28411:1 28442:1 28516:3 28539:1 28549:1 28569:1 28599:1 28618:1 28684:2 28720:3 28738:1 28756:1 28798:1 28942:1 28983:1 29060:1 29062:1 29073:1 29130:1 29187:1 29243:1 29249:2 29297:1 29477:1 29581:1 29591:1 29603:1 29667:2 29822:3
12 39:1 51:1 137:1 179:1 239:2 325:1 363:1 398:2 417:1 451:3 473:1 565:1 592:1 622:1 768:1 835:1 905:1 910:1 923:1 928:2 933:1 944:1 1016:1 1038:1 1083:1 1118:1 1208:1 1221:1 1258:1 1303:1 1353:1 1422:3 1474:1 1593:1 1671:1 1703:1 1707:1 1812:1 1827:1 1860:2 1880:1 1895:1 1898:1 1929:1 2037:1 2039:1 2115:1 2239:1 2250:2 2252:1 2301:1 2304:1 2307:1 2312:1 2314:1 2324:1 2370:1 2394:1 2403:1 2419:1 2527:1 2573:1 2604:1 2665:1 2670:1 2787:3 2848:2 2860:1 3033:1 3049:1 3052:1 3295:1 3317:1 3340:1 3376:1 3388:1 3402:1 3570:1 3572:1 3600:1 3642:2 3683:1 3787:1 3905:1 3941:1 4010:2 4042:2 4076:1 4132:1 4136:1 4209:1 4369:1 4390:1 4421:1 4504:1 4509:1 4593:1 4744:1 4844:1 4911:1 5028:2 5138:3 5153:1 5154:1 5161:1 5175:1 5209:1 5376:2 5469:1 5487:1 5498:2 5532:4 5579:6 5614:1 5644:1 5682:1 5765:1 5788:1 5805:1 5829:1 5968:1 6008:1 6182:1 6223:1 6281:1 6282:2 6303:1 6305:1 6312:1 6316:1 6334:1 6388:1 6440:1 6519:1 6526:1 6530:1 6605:1 6621:1 6629:1 6630:2 6729:1 6785:2 6914:1 6962:2 7001:1 7055:1 7071:1 7097:3 7134:1 7169:1 7208:1 7331:1 7407:2 7509:1 7537:1 7706:1 7747:1 7762:1 7801:1 7817:1 7870:1 7883:1 7952:2 7954:1 7968:1 7971:1 7975:1 8029:6 8050:2 8054:1 8061:1 8098:1 8108:2 8142:2 8164:1 8408:1 8490:1 8513:1 8552:1 8561:1 8598:1 8729:1 8761:1 8884:1 8887:1 8900:1 8945:2 8961:1 9030:1 9054:1 9148:1 9200:1 9209:1 9312:1 9324:1 9351:1 9417:1 9426:1 9458:1 9480:3 9510:1 9517:1 9594:1 9613:2 9681:1 9702:1 9765:1 9832:1 9862:1 9925:1 9950:1 9957:1 9997:1 10175:2 10234:2 10372:1 10427:1 10444:1 10519:1 10576:1 10652:1 10659:2 10816:1 10891:2 10989:1 11001:1 11012:2 11019:1 11289:1 11295:2 11311:1 11315:1 11317:1 11348:1 11400:1 11418:3 11460:1 11473:1 11536:1 11560:1 11609:1 11707:1 11733:1 11739:1 11760:1 11769:1 11807:1 11882:1 11909:2 11954:1 12002:1 12070:1 12089:1 12121:1 12149:1 12208:1 12282:1 12356:1 12365:1 12479:1 12522:1 12529:1 12546:1 12623:1 12683:1 12818:1 12857:1 12937:1 12951:1 13081:1 13084:1 13087:1 13089:1 13111:1 13114:1 13122:1 13188:1 13301:1 13328:1 13391:1 13494:1 13498:1 13514:1 13539:1 13681:2 13792:1 13804:1 13843:1 13876:1 13930:1 13969:2 13984:1 14013:1 14020:1 14038:1 14062:1 14138:1 14166:1 14252:1 14282:1 14300:1 14321:2 14341:1 14490:1 14491:1 14495:1 14553:1 14661:1 14678:1 14679:1 14712:1 14777:1 14844:1 14852:1 14870:1 14884:1 14945:1 15065:1 15092:2 15137:1 15142:3 15178:1 15269:1 15393:1 15410:1 15435:1 15439:1 15490:1 15498:1 15588:1 15603:1 15675:1 15708:1 15717:1 15725:1 15726:1 15728:1 15730:1 15892:1 15920:1 15931:2 16078:2 16094:1 16097:1 16118:1 16121:1 16129:1 16145:1 16158:2 16304:1 16315:1 16363:1 16421:1 16480:1 16481:1 16509:1 16570:2 16656:1 16659:1 16673:1 16682:1 16780:1 16800:1 16805:1 16930:1 16948:1 16981:1 17008:1 17035:1 17048:1 17069:1 17110:1 17254:1 17384:1 17449:1 17509:1 17570:1 17572:1 17730:1 17763:1 17946:1 17957:1 17983:1 18010:1 18127:1 18150:1 18221:1 18235:1 18244:2 18288:1 18290:1 18295:1 18297:1 18323:1 18342:1 18343:1 18345:1 18369:1 18394:1 18448:1 18613:1 18629:1 18631:1 18965:1 18975:2 18988:1 19023:1 19034:1 19037:1 19059:1 19123:1 19201:1 19214:481 19243:1 19282:1 19293:1 19524:1 19543:1 20016:2 20074:1 20108:1 20202:2 20233:2 20267:1 20321:1 20341:1 20407:1 20413:1 20524:1 20528:1 20596:2 20639:1 20660:1 20701:1 20704:1 20740:1 20752:1 20829:1 20848:1 20864:1 20961:1 21030:1 21053:1 21133:1 21164:1 21235:1 21282:1 21328:1 21373:1 21386:1 21411:2 21414:2 21471:1 21563:1 21680:1 21883:1 21951:1 22161:2 22182:1 22191:2 22218:1 22252:1 22347:1 22364:1 22389:1 22392:1 22565:1 22577:1 22598:2 22640:1 22669:1 22700:1 22733:1 22791:2 22807:1 22826:1 22943:1 23013:3 23028:1 23089:1 23090:1 23106:1 23117:1 23166:1 23185:1 23199:1 23211:1 23313:1 23317:1 23319:1 23534:1 23610:1 23694:1 23813:1 23830:1 23875:1 23882:1 23897:1 23937:1 23992:1 24044:1 24066:1 24071:2 24115:1 24236:1 24243:1 24257:1 24350:1 24419:1 24483:1 24489:1 24615:3 24643:1 24667:1 24679:1 24733:1 24775:1 24852:1 24855:1 24888:2 24927:1 25011:2 25088:1 25134:1 25137:1 25140:1 25156:1 25289:1 25423:1 25534:1 25538:1 25579:1 25592:1 25641:1 25643:1 25799:2 25807:2 25834:1 25844:1 25848:1 25879:1 25905:1 25907:1 25934:1 25959:1 26054:1 26064:1 26170:1 26282:2 26345:1 26350:1 26415:1 26444:2 26605:2 26668:1 26751:1 26757:1 26824:1 26855:1 26932:2 26948:3 27017:1 27057:1 27082:1 27191:1 27383:1 27425:1 27474:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27687:1 27714:1 27763:1 27790:1 27821:1 27830:1 27833:1 27836:1 27882:1 27915:1 27929:1 27962:1 28049:1 28097:1 28232:1 28243:1 28284:1 28352:1 28356:3 28404:1 28411:1 28442:1 28502:1 28516:3 28524:1 28539:1 28549:1 28569:1 28599:1 28618:1 28684:2 28720:3 28738:2 28756:1 28798:1 28942:1 28957:1 28983:1 29050:1 29060:1 29062:1 29073:1 29130:1 29187:1 29243:1 29249:2 29297:1 29477:1 29581:1 29591:1 29603:1 29606:1 29667:2 29822:3
12 39:1 51:1 137:1 179:1 239:2 325:1 363:1 398:2 417:1 451:3 473:1 565:1 592:1 622:1 768:1 835:1 905:1 910:1 923:1 928:2 933:1 944:1 1010:1 1016:1 1038:1 1083:1 1118:1 1208:1 1220:1 1221:1 1258:1 1293:1 1303:1 1318:1 1353:1 1422:3 1474:1 1593:1 1671:1 1703:1 1707:1 1812:1 1827:1 1860:2 1880:1 1895:1 1898:1 1929:1 1935:1 1950:1 2037:1 2039:1 2115:1 2239:1 2250:2 2252:1 2261:1 2301:1 2304:1 2307:1 2308:1 2312:1 2314:1 2324:2 2325:1 2338:1 2370:1 2394:1 2403:1 2419:1 2527:1 2573:1 2604:1 2665:1 2670:1 2787:3 2848:2 2860:1 3033:1 3049:1 3052:1 3075:1 3081:1 3261:1 3295:1 3317:1 3340:2 3376:1 3388:1 3402:1 3570:1 3572:1 3600:1 3642:2 3683:1 3787:1 3886:1 3905:1 3941:1 4010:2 4042:2 4047:1 4076:1 4132:1 4136:1 4140:1 4209:1 4369:1 4390:1 4421:1 4504:1 4509:1 4593:1 4608:1 4609:1 4744:1 4775:1 4844:1 4911:1 5028:2 5138:3 5153:1 5154:1 5161:1 5175:1 5209:1 5376:2 5469:1 5487:1 5498:2 5532:4 5579:6 5614:1 5644:1 5682:1 5765:1 5788:2 5805:1 5829:1 5854:1 5968:1 5992:1 6008:1 6182:1 6223:1 6281:1 6282:2 6303:1 6305:1 6312:1 6316:1 6334:1 6388:1 6440:1 6519:1 6526:1 6530:1 6602:1 6605:1 6621:1 6629:2 6630:2 6729:1 6770:1 6785:2 6914:1 6962:2 7001:1 7055:1 7071:2 7097:3 7134:1 7169:1 7208:1 7331:1 7407:2 7509:1 7520:1 7537:1 7706:1 7747:1 7762:2 7801:1 7817:1 7870:1 7883:1 7952:3 7954:2 7968:1 7971:1 7975:1 8029:9 8050:2 8054:1 8061:1 8098:1 8108:2 8142:2 8164:1 8354:1 8408:1 8490:1 8513:1 8552:1 8561:1 8598:1 8729:1 8735:1 8761:1 8884:1 8887:1 8900:1 8945:2 8961:1 9030:1 9054:1 9067:1 9148:1 9200:1 9209:1 9312:1 9324:1 9351:1 9417:1 9426:1 9458:1 9480:3 9510:1 9517:1 9594:1 9610:1 9613:2 9681:1 9702:1 9765:1 9798:1 9832:2 9862:1 9925:1 9950:1 9957:1 9997:2 10175:2 10234:2 10239:1 10283:1 10372:1 10427:1 10444:1 10519:1 10576:1 10652:1 10659:2 10816:1 10891:2 10989:1 11001:1 11012:3 11019:1 11048:1 11289:1 11295:2 11311:1 11315:1 11317:1 11348:1 11400:1 11418:3 11460:1 11473:1 11536:1 11560:1 11609:1 11707:1 11733:1 11739:1 11760:1 11769:1 11807:1 11882:1 11909:2 11954:1 11969:1 12002:1 12070:1 12089:1 12121:1 12149:1 12208:1 12282:1 12356:1 12365:1 12479:1 12522:1 12529:1 12546:1 12583:1 12623:2 12683:1 12812:1 12818:1 12857:1 12937:1 12951:1 13081:2 13084:1 13087:1 13089:1 13111:1 13114:1 13122:1 13188:1 13301:1 13328:1 13391:1 13492:1 13494:1 13498:1 13514:1 13539:1 13656:1 13681:2 13792:1 13804:1 13843:1 13876:1 13930:1 13969:2 13984:1 14013:1 14020:1 14038:1 14062:1 14138:1 14166:1 14252:1 14282:1 14300:1 14321:2 14340:1 14341:1 14490:1 14491:1 14495:2 14553:1 14562:1 14661:1 14678:1 14679:1 14682:1 14712:1 14777:1 14808:1 14844:1 14852:1 14870:1 14884:1 14945:1 15065:1 15092:2 15137:1 15142:3 15178:1 15269:1 15393:1 15410:1 15423:1 15435:1 15439:1 15490:1 15498:1 15588:1 15603:1 15675:1 15708:1 15717:1 15725:1 15726:1 15728:1 15730:1 15807:1 15892:1 15920:1 15931:2 16078:2 16094:1 16097:1 16118:1 16121:1 16129:1 16145:1 16158:2 16304:2 16315:1 16363:1 16421:1 16480:1 16481:1 16508:1 16509:1 16570:2 16656:1 16659:1 16673:2 16682:1 16780:1 16800:1 16805:1 16900:1 16930:1 16948:1 16981:1 17008:1 17035:1 17048:1 17069:1 17110:1 17112:1 17254:1 17293:1 17384:1 17441:1 17449:1 17509:1 17570:1 17572:1 17730:1 17763:1 17946:1 17948:1 17957:1 17962:1 17983:1 18010:1 18127:1 18150:1 18221:1 18235:1 18244:2 18288:1 18290:1 18295:1 18297:1 18323:1 18342:1 18343:1 18345:1 18369:1 18394:1 18448:1 18600:1 18613:1 18629:1 18631:1 18754:1 18965:1 18975:2 18988:1 19023:1 19034:1 19037:1 19059:1 19118:1 19123:1 19201:1 19214:521 19243:1 19260:1 19282:1 19293:1 19524:1 19543:1 19734:1 19821:1 20016:2 20074:1 20108:1 20126:1 20202:2 20233:2 20267:1 20321:1 20341:1 20407:1 20413:1 20524:1 20528:1 20596:2 20639:1 20660:1 20701:1 20704:1 20740:1 20752:1 20829:1 20848:1 20864:1 20961:1 21030:1 21053:1 21133:1 21164:1 21235:1 21282:1 21328:1 21360:1 21373:1 21386:1 21411:2 21414:2 21471:1 21563:1 21680:1 21883:1 21951:1 22161:2 22169:1 22182:1 22191:2 22218:1 22252:1 22347:1 22364:1 22389:1 22392:1 22565:1 22577:1 22598:2 22640:1 22669:1 22700:1 22733:1 22791:2 22804:1 22807:1 22826:1 22943:1 22993:1 23013:3 23028:1 23089:1 23090:1 23106:1 23117:1 23166:1 23185:1 23199:1 23211:1 23313:1 23317:1 23319:1 23444:1 23534:1 23610:2 23694:1 23813:1 23830:1 23836:1 23875:1 23882:1 23897:1 23937:1 23992:1 24044:1 24066:1 24071:2 24093:1 24115:1 24236:1 24243:1 24257:1 24350:1 24419:1 24483:1 24489:1 24588:1 24615:3 24643:1 24667:1 24679:1 24733:1 24775:1 24848:1 24852:1 24855:1 24888:3 24927:1 25011:2 25088:1 25134:1 25137:1 25140:1 25156:1 25253:1 25289:1 25423:1 25506:1 25534:1 25538:1 25579:2 25592:1 25641:1 25643:1 25799:2 25807:2 25827:1 25834:1 25844:1 25848:1 25879:1 25905:1 25907:1 25934:1 25959:1 26054:1 26064:1 26170:1 26282:2 26345:1 26350:1 26415:1 26444:2 26475:1 26605:2 26668:1 26736:1 26751:1 26757:1 26824:1 26855:1 26887:1 26932:2 26948:3 27017:1 27057:1 27082:1 27088:1 27191:1 27383:1 27425:1 27474:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27687:1 27714:1 27763:2 27790:1 27821:1 27830:1 27833:1 27836:1 27858:1 27882:1 27915:1 27929:1 27962:1 28049:2 28097:1 28116:1 28232:1 28243:1 28284:1 28352:1 28356:3 28404:1 28411:1 28442:1 28502:1 28516:3 28524:1 28539:1 28549:1 28569:1 28599:1 28618:1 28684:3 28720:4 28738:2 28756:1 28798:1 28942:1 28957:1 28983:1 29050:1 29060:1 29062:1 29073:1 29130:1 29187:1 29214:1 29243:1 29249:2 29297:1 29477:1 29581:1 29591:1 29603:1 29606:1 29667:2 29816:1 29822:3
12 39:1 51:1 137:1 179:1 239:2 325:1 363:1 398:2 417:1 451:3 473:1 565:1 592:1 622:1 768:1 835:1 905:1 910:1 923:1 928:2 933:1 944:1 1010:1 1016:1 1038:1 1083:1 1118:1 1208:1 1220:1 1221:1 1258:1 1293:1 1303:1 1318:1 1353:1 1422:3 1474:1 1593:1 1671:1 1703:1 1707:1 1812:1 1827:1 1860:2 1880:1 1895:1 1898:1 1929:1 1935:1 1950:1 2037:1 2039:1 2115:1 2239:2 2250:2 2252:1 2261:1 2301:1 2304:1 2307:1 2308:1 2312:1 2314:1 2324:2 2325:1 2338:1 2370:1 2394:1 2403:1 2419:1 2527:1 2573:1 2604:1 2665:1 2670:1 2787:3 2848:2 2860:1 3033:1 3049:1 3052:1 3075:1 3081:1 3261:1 3295:1 3317:1 3340:2 3376:1 3388:1 3402:1 3418:1 3570:1 3572:1 3600:1 3642:2 3683:1 3787:1 3886:1 3905:1 3941:1 4010:2 4042:2 4047:1 4076:1 4132:1 4136:1 4140:1 4209:1 4369:1 4390:2 4421:1 4504:1 4509:1 4593:1 4608:1 4609:1 4744:1 4775:1 4844:1 4911:1 5028:2 5138:3 5153:1 5154:1 5161:1 5175:1 5209:1 5376:2 5469:1 5487:1 5498:2 5532:4 5579:6 5614:1 5644:1 5682:1 5765:1 5788:2 5805:1 5829:1 5854:1 5968:1 5992:1 6008:1 6182:1 6223:1 6281:1 6282:2 6303:1 6305:1 6312:1 6316:1 6334:1 6388:1 6440:1 6519:1 6526:1 6530:1 6602:1 6605:1 6621:1 6629:2 6630:2 6729:1 6770:1 6785:2 6914:1 6962:2 7001:1 7055:1 7071:2 7097:3 7134:1 7169:1 7208:1 7331:1 7407:2 7509:1 7520:1 7537:1 7706:1 7747:1 7762:2 7801:1 7817:1 7870:1 7883:1 7952:3 7954:2 7968:1 7971:1 7975:1 8029:9 8050:2 8054:1 8061:1 8098:1 8108:2 8142:2 8164:1 8354:1 8408:1 8490:1 8513:1 8552:1 8561:1 8598:1 8729:1 8735:1 8761:1 8884:1 8887:1 8900:1 8945:2 8961:1 9030:1 9054:1 9067:1 9148:1 9200:1 9209:1 9312:1 9324:1 9351:1 9417:1 9426:1 9458:1 9480:3 9510:1 9517:1 9594:1 9610:1 9613:2 9681:1 9702:1 9765:1 9798:1 9832:2 9862:1 9925:1 9950:1 9957:1 9997:2 10175:2 10234:2 10239:1 10283:1 10372:1 10427:1 10444:1 10519:1 10576:1 10652:1 10659:2 10816:1 10884:1 10891:2 10989:1 11001:1 11012:3 11019:1 11048:1 11289:1 11295:2 11311:1 11315:1 11317:1 11348:1 11400:1 11418:3 11460:1 11473:1 11536:1 11560:1 11609:1 11707:1 11733:1 11739:1 11760:1 11769:1 11807:1 11882:1 11909:2 11954:1 11969:1 12002:1 12070:1 12089:1 12121:1 12149:1 12208:1 12282:1 12356:1 12365:1 12479:2 12522:2 12529:1 12546:1 12583:1 12623:2 12683:1 12812:1 12818:1 12857:1 12862:1 12937:1 12951:1 13081:2 13084:1 13087:1 13089:1 13111:1 13114:1 13122:1 13188:1 13301:1 13328:1 13391:1 13416:1 13492:1 13494:1 13498:1 13514:1 13539:1 13656:1 13681:2 13783:1 13792:1 13804:1 13843:1 13876:1 13930:1 13969:2 13984:1 14013:1 14016:1 14020:1 14038:1 14062:1 14138:1 14166:1 14252:1 14282:1 14300:1 14321:2 14340:1 14341:1 14490:1 14491:1 14495:2 14553:1 14562:1 14661:1 14678:1 14679:1 14682:1 14712:1 14777:1 14808:1 14844:1 14852:1 14870:1 14884:1 14945:1 15065:1 15092:2 15137:1 15142:3 15178:1 15269:1 15393:1 15410:1 15423:1 15435:1 15439:1 15490:1 15498:1 15588:1 15603:1 15675:1 15708:1 15717:1 15725:1 15726:1 15728:1 15730:1 15807:1 15892:1 15920:1 15931:2 16078:2 16094:1 16097:1 16118:1 16121:1 16129:1 16145:1 16158:2 16166:1 16304:2 16315:1 16363:1 16421:1 16480:1 16481:1 16508:1 16509:1 16570:2 16656:1 16659:1 16673:2 16682:1 16780:1 16800:1 16805:1 16900:1 16930:1 16948:1 16981:1 17008:1 17035:1 17048:1 17069:1 17110:1 17112:1 17254:1 17293:1 17384:1 17441:1 17449:1 17481:1 17509:1 17570:1 17572:1 17730:1 17763:1 17946:1 17948:1 17957:1 17962:1 17983:1 18010:1 18127:1 18150:1 18174:1 18221:1 18235:1 18244:2 18288:1 18290:1 18295:1 18297:1 18323:1 18342:1 18343:1 18345:1 18369:1 18394:1 18448:1 18600:1 18613:1 18629:1 18631:1 18754:1 18965:1 18975:2 18988:1 19023:1 19034:1 19037:1 19059:1 19118:1 19123:1 19201:1 19214:580 19243:1 19260:1 19282:1 19293:1 19524:1 19543:1 19734:1 19821:1 20016:3 20074:1 20108:1 20126:1 20202:2 20233:2 20267:1 20321:1 20341:1 20407:1 20413:1 20524:1 20528:1 20596:2 20639:1 20660:1 20701:1 20704:1 20740:1 20752:1 20829:1 20848:1 20864:1 20961:1 21030:1 21053:1 21133:1 21164:1 21235:1 21282:1 21328:1 21360:1 21373:1 21386:1 21411:2 21414:2 21471:1 21563:2 21680:1 21883:1 21951:1 22161:2 22169:1 22182:1 22191:2 22218:1 22252:1 22347:1 22364:1 22389:1 22392:1 22565:1 22577:1 22598:2 22640:1 22669:1 22700:1 22733:1 22791:2 22804:1 22807:1 22826:1 22943:1 22993:1 23013:3 23028:1 23089:1 23090:1 23106:1 23117:1 23166:1 23185:1 23199:1 23211:1 23313:2 23317:1 23319:1 23444:1 23534:1 23610:2 23694:1 23813:1 23830:1 23836:1 23875:1 23882:1 23897:1 23937:1 23992:1 24044:1 24066:1 24071:2 24093:1 24115:1 24236:1 24243:1 24257:1 24350:1 24419:1 24483:1 24489:1 24588:1 24615:3 24643:1 24667:1 24679:1 24733:1 24775:1 24831:1 24848:1 24852:1 24855:1 24888:3 24927:1 25011:2 25088:1 25134:1 25137:1 25140:1 25156:1 25253:1 25289:1 25423:1 25506:1 25534:1 25538:1 25579:2 25592:1 25641:1 25643:1 25799:2 25807:2 25827:1 25834:1 25844:1 25848:1 25879:1 25905:1 25907:1 25932:1 25934:1 25959:1 26054:1 26064:1 26170:1 26282:2 26345:1 26350:1 26415:1 26444:2 26475:1 26605:2 26668:1 26736:1 26751:1 26757:1 26824:1 26855:1 26887:1 26932:2 26948:3 27017:1 27057:1 27082:1 27088:1 27191:1 27383:1 27425:1 27474:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27676:1 27687:1 27714:1 27763:2 27770:1 27790:1 27821:1 27830:1 27833:1 27836:1 27858:1 27882:1 27915:1 27929:1 27962:1 28049:2 28097:1 28116:1 28232:1 28243:1 28284:1 28352:1 28356:3 28404:1 28411:1 28442:1 28502:1 28516:3 28524:1 28539:1 28549:1 28569:2 28599:1 28618:1 28684:3 28720:4 28738:2 28756:1 28789:1 28798:1 28942:1 28957:1 28983:1 29050:1 29060:1 29062:1 29073:1 29130:1 29187:1 29214:1 29243:1 29249:2 29297:1 29477:1 29581:2 29591:1 29603:1 29606:1 29667:2 29816:1 29822:3
12 39:1 51:1 137:1 179:1 239:2 325:1 363:1 398:2 417:2 451:3 473:1 565:1 592:1 622:1 768:1 835:1 905:1 910:1 923:1 928:2 933:1 944:1 1010:1 1016:1 1038:1 1083:1 1118:1 1208:1 1220:1 1221:1 1258:1 1293:2 1303:1 1318:1 1353:1 1422:4 1470:1 1473:1 1474:1 1557:1 1593:1 1599:1 1671:1 1703:1 1707:1 1716:1 1737:1 1812:1 1827:1 1860:2 1869:1 1880:1 1895:1 1898:1 1920:1 1929:1 1935:1 1950:1 2037:1 2039:2 2041:1 2081:1 2115:1 2239:2 2250:2 2252:1 2261:1 2297:1 2301:2 2304:2 2307:1 2308:1 2312:1 2314:1 2324:2 2325:1 2338:1 2370:1 2394:2 2403:1 2419:1 2432:1 2440:1 2527:1 2573:1 2604:1 2665:1 2670:1 2787:3 2848:2 2860:1 2956:1 3033:1 3049:1 3052:1 3075:1 3081:1 3261:1 3295:1 3317:1 3340:2 3376:1 3388:1 3402:1 3418:1 3479:1 3532:1 3570:1 3572:1 3600:1 3642:2 3683:1 3787:1 3886:1 3905:1 3941:1 4010:2 4042:2 4047:1 4076:1 4132:1 4136:1 4140:1 4209:1 4321:2 4369:1 4390:2 4421:1 4504:1 4509:1 4593:1 4608:1 4609:1 4744:1 4775:1 4844:1 4911:1 5028:4 5056:1 5099:1 5138:3 5153:1 5154:1 5161:1 5175:1 5209:1 5376:2 5469:1 5487:1 5498:2 5532:4 5579:7 5614:1 5644:1 5682:1 5765:1 5788:2 5805:1 5829:1 5854:1 5968:1 5992:1 6008:1 6182:1 6223:1 6281:1 6282:2 6303:1 6305:1 6312:1 6316:1 6334:1 6388:1 6440:1 6519:1 6526:1 6530:1 6602:1 6605:1 6621:1 6622:1 6629:2 6630:2 6729:1 6770:1 6785:2 6914:1 6962:2 7001:1 7055:1 7071:2 7097:3 7134:1 7169:1 7208:1 7331:1 7407:2 7501:1 7509:1 7520:1 7537:1 7706:1 7747:2 7753:1 7762:2 7801:1 7817:1 7870:1 7883:1 7914:1 7952:3 7954:2 7968:1 7971:1 7975:1 8029:11 8043:1 8050:2 8054:1 8061:1 8098:1 8108:2 8142:2 8164:1 8221:1 8298:1 8354:2 8408:1 8490:1 8513:1 8552:1 8561:1 8598:1 8729:1 8735:1 8761:1 8884:1 8887:1 8900:1 8945:2 8961:1 9030:1 9054:1 9067:1 9148:1 9200:1 9209:1 9312:1 9324:1 9351:1 9417:1 9426:1 9458:1 9480:3 9510:1 9517:1 9594:1 9610:1 9613:2 9657:1 9681:1 9702:1 9765:1 9798:1 9820:1 9832:2 9862:1 9925:1 9950:1 9957:1 9962:1 9997:2 10175:2 10234:2 10239:1 10283:1 10372:1 10427:1 10444:1 10519:1 10576:1 10652:1 10659:2 10816:1 10884:1 10891:3 10989:1 11001:1 11012:3 11019:1 11048:1 11289:1 11295:2 11311:1 11315:1 11317:1 11348:1 11400:1 11418:3 11460:1 11473:1 11536:1 11560:1 11609:1 11707:1 11733:1 11739:1 11760:1 11769:1 11807:1 11881:1 11882:1 11909:2 11954:1 11969:1 12002:1 12055:1 12067:1 12070:1 12074:1 12089:1 12121:1 12149:1 12208:1 12282:1 12356:1 12365:1 12479:2 12522:2 12529:1 12546:1 12583:1 12623:2 12683:1 12812:1 12818:1 12857:1 12862:1 12937:1 12951:1 13081:2 13084:1 13087:1 13089:1 13111:1 13114:1 13122:1 13188:1 13301:1 13328:1 13360:1 13391:1 13416:1 13492:1 13494:1 13498:1 13514:1 13539:1 13656:1 13665:1 13681:2 13783:1 13792:1 13804:1 13843:1 13876:1 13930:1 13969:2 13984:1 14013:1 14016:1 14020:1 14038:1 14062:1 14138:1 14166:1 14252:1 14282:1 14300:1 14321:2 14340:1 14341:1 14490:1 14491:1 14495:2 14553:1 14562:1 14661:1 14678:1 14679:1 14682:1 14712:1 14777:1 14808:1 14844:1 14852:1 14863:1 14870:1 14884:1 14945:1 15065:1 15092:2 15137:1 15142:3 15178:1 15269:1 15393:1 15410:1 15423:1 15435:1 15439:1 15490:1 15498:1 15588:1 15603:1 15675:1 15708:1 15717:1 15725:1 15726:1 15728:1 15730:1 15807:1 15892:1 15920:1 15931:2 16010:1 16078:2 16094:1 16097:1 16118:1 16121:1 16129:1 16145:1 16158:2 16166:1 16234:1 16304:2 16315:1 16363:1 16421:1 16480:1 16481:1 16508:1 16509:1 16559:1 16570:2 16656:1 16659:1 16673:2 16682:1 16780:1 16800:1 16805:1 16900:1 16930:1 16948:1 16981:1 17008:1 17035:1 17048:1 17069:1 17110:1 17112:1 17254:1 17293:1 17384:1 17441:1 17449:1 17481:1 17509:1 17570:1 17572:1 17730:1 17763:1 17946:1 17948:1 17957:1 17962:1 17983:1 18010:1 18127:1 18150:1 18174:1 18221:1 18235:1 18244:2 18288:1 18290:1 18295:1 18297:1 18323:1 18342:1 18343:1 18345:1 18369:1 18394:1 18448:1 18600:1 18613:1 18629:1 18631:1 18754:1 18965:1 18975:2 18988:1 19023:1 19034:1 19037:1 19059:1 19118:1 19123:1 19201:1 19214:634 19243:1 19260:1 19282:1 19293:1 19524:1 19543:1 19734:1 19821:1 20016:3 20074:1 20108:1 20126:1 20202:2 20233:2 20267:1 20321:1 20341:1 20407:1 20413:1 20524:1 20528:1 20596:2 20605:1 20639:1 20660:1 20701:1 20704:1 20740:1 20752:1 20815:1 20829:1 20848:1 20864:1 20961:1 21030:1 21053:1 21133:1 21164:2 21235:1 21282:1 21328:1 21360:1 21373:1 21386:1 21411:2 21414:2 21471:1 21563:2 21680:1 21790:1 21883:1 21951:1 21992:1 22161:2 22169:1 22182:1 22191:2 22192:1 22218:1 22252:1 22347:1 22364:1 22389:1 22392:1 22565:1 22577:1 22598:2 22640:1 22669:1 22700:1 22733:1 22791:2 22804:1 22807:1 22826:1 22943:1 22993:2 23013:3 23028:1 23089:1 23090:1 23106:1 23117:1 23166:1 23173:1 23185:1 23199:1 23211:1 23313:2 23317:1 23319:1 23444:1 23534:1 23610:3 23694:1 23813:1 23830:1 23836:1 23875:1 23882:1 23897:1 23937:1 23992:1 24044:1 24066:1 24071:2 24093:1 24115:1 24236:1 24243:1 24257:1 24350:1 24419:1 24483:1 24489:1 24588:1 24615:3 24643:1 24667:1 24679:1 24733:1 24775:1 24831:1 24848:1 24852:1 24855:1 24888:3 24927:1 25011:2 25088:1 25134:1 25137:1 25140:1 25156:1 25253:1 25289:1 25423:1 25506:1 25534:1 25538:1 25579:2 25592:1 25602:1 25641:1 25643:1 25799:2 25807:2 25812:1 25827:1 25834:1 25844:1 25848:1 25879:1 25905:1 25907:1 25932:1 25934:1 25959:1 26008:1 26054:1 26064:1 26170:1 26282:3 26345:1 26350:1 26415:1 26444:2 26450:1 26456:1 26475:1 26605:2 26668:1 26736:1 26751:1 26757:1 26824:1 26855:1 26887:1 26932:2 26948:3 27017:1 27057:1 27082:1 27088:1 27191:1 27383:1 27425:1 27474:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27676:1 27687:1 27697:1 27714:1 27763:2 27770:1 27790:1 27812:1 27821:1 27830:1 27833:1 27836:1 27858:1 27882:1 27915:1 27929:1 27962:1 28049:2 28097:1 28116:1 28232:1 28243:1 28284:1 28352:1 28356:3 28404:1 28411:1 28442:1 28502:1 28516:3 28524:1 28539:1 28549:1 28569:2 28599:1 28618:1 28684:3 28720:4 28738:2 28756:1 28789:1 28798:1 28942:1 28957:1 28983:1 29050:1 29060:1 29062:1 29073:1 29130:1 29150:1 29187:1 29214:1 29243:1 29249:2 29297:1 29477:1 29581:2 29591:1 29603:1 29606:1 29667:2 29816:1 29822:3
12 39:1 51:1 137:1 179:1 239:2 325:1 363:1 398:2 417:2 451:3 473:1 565:1 592:1 622:1 768:1 835:1 905:1 910:1 923:1 928:2 933:1 944:1 1010:1 1016:1 1038:1 1083:1 1105:1 1118:1 1208:1 1220:1 1221:1 1258:1 1293:2 1303:1 1318:1 1353:2 1422:4 1470:1 1473:2 1474:1 1557:1 1593:1 1599:1 1671:1 1703:1 1707:1 1716:1 1737:1 1812:1 1827:1 1860:2 1869:1 1880:1 1895:1 1898:1 1920:1 1929:1 1935:1 1950:2 2037:1 2039:2 2041:1 2081:1 2115:1 2239:2 2250:2 2252:1 2261:1 2297:1 2301:2 2304:2 2307:1 2308:1 2312:1 2314:1 2324:2 2325:1 2338:1 2370:1 2394:2 2403:1 2419:1 2432:1 2440:1 2527:1 2534:1 2573:1 2604:2 2665:1 2670:1 2787:3 2848:2 2860:1 2956:1 3033:1 3049:1 3052:1 3075:1 3081:1 3128:1 3141:1 3172:1 3261:1 3295:1 3317:1 3340:2 3376:1 3388:1 3402:1 3418:1 3479:1 3532:1 3570:1 3572:1 3600:1 3606:1 3642:2 3683:1 3787:1 3886:1 3905:1 3941:1 4010:2 4042:2 4047:1 4076:1 4132:1 4136:1 4140:2 4186:1 4209:1 4321:2 4369:1 4390:2 4421:1 4504:1 4509:1 4593:1 4608:1 4609:1 4744:1 4775:1 4844:1 4911:1 5010:1 5028:4 5056:1 5099:1 5138:3 5153:1 5154:1 5161:1 5175:1 5209:1 5376:2 5469:1 5487:1 5498:2 5532:5 5579:7 5614:1 5644:1 5682:1 5765:1 5788:2 5805:1 5829:1 5854:1 5968:1 5992:1 6008:1 6182:1 6223:1 6281:1 6282:2 6303:1 6305:1 6312:1 6316:1 6334:1 6388:1 6392:1 6440:1 6519:1 6526:1 6530:1 6602:1 6605:1 6621:1 6622:1 6629:2 6630:2 6633:1 6650:1 6729:1 6770:1 6785:2 6914:1 6962:2 7001:1 7055:1 7071:2 7097:3 7134:1 7169:1 7208:1 7331:1 7404:1 7407:2 7501:1 7509:1 7520:1 7537:1 7706:1 7747:2 7753:1 7762:2 7801:1 7817:1 7870:1 7883:1 7914:1 7952:3 7954:2 7960:1 7968:1 7971:1 7975:1 8029:11 8043:1 8050:2 8054:1 8061:1 8098:1 8108:2 8142:2 8164:1 8221:1 8298:1 8354:2 8408:1 8490:1 8513:1 8552:1 8561:1 8598:1 8614:1 8729:1 8735:1 8761:1 8884:1 8887:1 8900:1 8945:2 8961:1 9030:1 9054:1 9067:1 9148:1 9200:1 9209:1 9312:1 9324:1 9351:1 9400:1 9417:1 9426:1 9458:1 9480:3 9510:1 9517:1 9539:1 9565:1 9594:1 9610:1 9613:2 9657:1 9681:1 9702:1 9765:1 9798:1 9820:1 9832:2 9862:1 9881:1 9884:2 9904:1 9925:1 9950:1 9957:1 9962:1 9966:1 9997:3 10018:1 10175:2 10234:2 10239:1 10283:1 10372:1 10381:1 10427:1 10444:1 10519:1 10576:1 10652:1 10659:2 10816:1 10884:1 10891:3 10904:1 10989:1 11001:1 11012:3 11019:1 11048:1 11289:1 11295:2 11311:1 11315:1 11317:1 11348:1 11400:1 11418:3 11460:1 11473:1 11536:1 11560:1 11599:1 11609:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:1 11807:1 11881:1 11882:1 11909:2 11954:1 11969:1 11982:1 12002:1 12055:1 12067:1 12070:1 12074:1 12089:1 12121:1 12149:1 12168:1 12201:1 12208:1 12264:1 12282:1 12356:1 12365:1 12479:2 12522:2 12529:1 12546:1 12583:1 12623:2 12683:1 12812:1 12818:1 12857:1 12862:1 12937:1 12951:1 13081:2 13084:1 13087:1 13089:1 13111:1 13112:1 13114:1 13122:1 13188:1 13301:1 13328:1 13360:1 13391:1 13416:1 13492:1 13494:1 13498:1 13514:1 13539:1 13582:1 13656:1 13665:1 13681:2 13783:1 13792:1 13804:1 13843:1 13876:1 13930:1 13969:2 13984:1 14013:1 14016:1 14020:1 14038:1 14062:1 14138:1 14166:1 14252:1 14282:1 14300:1 14321:2 14340:1 14341:1 14490:1 14491:1 14495:2 14553:1 14562:1 14661:1 14678:1 14679:1 14682:1 14712:1 14777:1 14808:1 14844:1 14852:1 14863:1 14870:1 14884:1 14945:1 15065:1 15092:2 15137:1 15142:3 15178:1 15269:1 15393:1 15410:1 15423:1 15435:1 15439:1 15490:1 15498:1 15588:1 15603:1 15652:1 15675:1 15708:1 15717:1 15725:1 15726:1 15728:1 15730:1 15807:1 15892:1 15920:1 15931:2 16010:1 16078:2 16094:1 16097:1 16117:1 16118:1 16121:1 16129:1 16145:1 16158:2 16166:1 16234:1 16304:2 16315:1 16363:1 16421:1 16480:1 16481:1 16492:1 16508:1 16509:1 16559:1 16570:2 16656:1 16659:1 16673:2 16682:1 16780:1 16798:1 16800:1 16805:1 16900:1 16930:1 16948:1 16981:1 17008:1 17035:1 17048:1 17069:1 17110:1 17112:2 17254:1 17293:1 17368:1 17384:1 17441:1 17449:1 17481:1 17509:1 17570:1 17572:1 17627:1 17730:1 17763:1 17894:1 17946:1 17948:1 17957:1 17962:1 17983:1 17986:1 18010:1 18127:1 18150:1 18151:1 18174:1 18221:1 18235:1 18244:2 18288:1 18290:1 18295:1 18297:1 18323:1 18342:1 18343:1 18345:1 18369:1 18394:1 18448:1 18600:2 18613:1 18629:1 18631:1 18754:1 18965:1 18975:3 18988:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19201:1 19208:1 19214:680 19243:1 19260:1 19282:1 19293:1 19524:1 19543:1 19734:1 19821:1 20016:4 20074:1 20108:1 20126:2 20202:2 20233:2 20267:1 20321:1 20341:1 20407:1 20413:1 20524:1 20528:1 20596:2 20605:1 20639:1 20660:1 20667:1 20701:1 20704:1 20740:1 20752:1 20799:1 20810:1 20815:1 20829:1 20848:1 20864:1 20961:1 21030:1 21053:1 21133:1 21164:2 21235:1 21282:1 21328:1 21360:1 21373:1 21386:1 21411:2 21414:2 21471:1 21563:2 21680:1 21790:1 21883:1 21951:1 21992:1 22136:1 22161:2 22169:1 22182:1 22191:2 22192:1 22218:1 22252:1 22347:1 22364:1 22389:1 22392:1 22565:1 22577:1 22598:2 22640:1 22669:1 22700:1 22733:1 22791:2 22804:1 22807:1 22826:1 22943:1 22993:2 23013:3 23028:1 23089:1 23090:1 23106:1 23117:1 23166:1 23173:1 23185:1 23199:1 23211:1 23313:2 23317:1 23319:1 23444:1 23534:1 23610:4 23635:1 23694:1 23813:1 23830:1 23836:1 23875:1 23882:1 23897:1 23937:1 23992:1 24044:1 24066:1 24071:2 24093:1 24115:1 24236:1 24243:1 24257:1 24350:1 24419:1 24483:1 24489:1 24588:1 24615:3 24643:1 24667:1 24677:1 24679:1 24733:1 24775:1 24831:1 24848:1 24852:1 24855:1 24888:3 24927:1 25011:2 25088:1 25134:1 25137:1 25140:1 25156:1 25253:2 25289:1 25423:1 25506:1 25534:1 25538:1 25579:2 25592:1 25602:1 25641:1 25643:1 25660:1 25799:2 25807:2 25812:1 25827:1 25834:1 25844:1 25848:1 25879:1 25905:1 25907:1 25932:1 25934:1 25959:1 26008:1 26054:1 26064:1 26170:1 26282:4 26345:1 26350:1 26415:1 26444:2 26450:1 26454:1 26456:1 26475:1 26605:3 26646:1 26668:1 26736:1 26751:1 26757:1 26824:1 26855:1 26887:1 26932:2 26948:3 27017:1 27057:1 27082:1 27088:1 27151:1 27191:1 27281:1 27310:1 27383:1 27425:1 27474:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27650:1 27676:1 27687:1 27697:1 27714:1 27763:2 27770:1 27783:1 27790:1 27812:1 27821:2 27822:1 27830:1 27833:1 27836:1 27849:1 27858:1 27882:1 27915:1 27923:1 27929:1 27962:1 28049:2 28075:1 28097:1 28100:1 28116:1 28232:1 28243:1 28284:1 28352:1 28356:3 28404:1 28411:1 28437:1 28442:1 28502:1 28516:3 28524:1 28539:1 28549:2 28569:2 28599:1 28618:1 28684:3 28720:4 28738:2 28756:1 28789:1 28798:1 28942:1 28957:1 28983:1 29050:1 29060:1 29062:1 29073:1 29130:1 29150:1 29187:1 29214:1 29243:1 29249:2 29297:1 29477:1 29581:2 29591:1 29603:1 29606:1 29626:1 29667:2 29816:1 29822:3
12 39:1 51:1 137:1 179:1 239:2 325:1 363:1 398:2 417:2 448:1 451:3 473:1 559:1 565:1 592:1 622:1 768:1 835:1 905:2 910:1 923:1 928:2 933:1 944:1 1010:1 1016:1 1038:1 1083:1 1105:1 1118:1 1153:1 1208:1 1220:1 1221:1 1258:1 1293:2 1303:1 1318:1 1353:2 1422:4 1470:1 1473:2 1474:1 1536:1 1557:1 1593:2 1599:1 1671:1 1703:1 1707:1 1716:1 1737:1 1785:1 1812:1 1827:1 1860:2 1869:1 1880:1 1895:1 1898:1 1920:1 1929:1 1935:1 1950:2 1969:1 2037:1 2039:2 2041:1 2081:1 2115:1 2239:2 2250:2 2252:1 2261:1 2295:1 2296:1 2297:1 2301:2 2304:2 2307:1 2308:1 2312:1 2314:1 2324:2 2325:1 2338:1 2370:1 2394:2 2403:2 2419:1 2432:1 2440:1 2527:1 2534:1 2573:1 2604:2 2665:1 2670:1 2787:3 2848:2 2860:1 2956:2 3033:1 3049:1 3052:1 3075:1 3081:1 3128:1 3141:1 3172:1 3207:1 3261:1 3295:1 3317:1 3340:2 3361:1 3376:1 3388:1 3402:1 3418:1 3479:1 3532:1 3570:1 3572:1 3600:1 3606:1 3642:2 3683:1 3717:1 3787:1 3886:1 3905:1 3941:1 4004:1 4010:2 4042:2 4047:1 4076:1 4132:1 4136:1 4140:2 4186:1 4209:1 4321:2 4369:1 4390:2 4421:1 4504:1 4509:1 4593:1 4608:1 4609:1 4744:1 4775:1 4789:1 4844:1 4911:1 5010:1 5028:4 5056:1 5099:1 5138:4 5153:1 5154:1 5161:1 5169:1 5175:1 5209:1 5221:1 5376:2 5469:1 5487:1 5498:2 5532:5 5579:7 5614:1 5644:1 5682:1 5765:1 5788:2 5805:1 5829:1 5854:1 5922:1 5968:1 5992:1 6008:2 6182:1 6223:1 6281:1 6282:2 6303:1 6305:1 6312:1 6316:1 6334:1 6388:1 6392:1 6440:1 6519:1 6526:1 6530:1 6602:1 6605:1 6609:1 6621:1 6622:1 6629:2 6630:3 6633:1 6650:1 6729:1 6770:1 6785:2 6827:1 6914:1 6962:2 7001:1 7049:1 7055:1 7071:2 7097:3 7123:1 7134:1 7169:1 7208:1 7331:1 7404:1 7407:2 7501:1 7509:1 7520:1 7537:1 7706:1 7747:2 7753:1 7762:2 7801:1 7817:1 7870:1 7883:1 7914:1 7952:3 7954:2 7960:1 7968:1 7971:1 7975:1 8029:13 8043:2 8050:2 8054:1 8061:1 8098:1 8108:2 8109:2 8142:2 8164:1 8221:1 8298:1 8354:2 8408:1 8490:1 8513:1 8552:1 8561:1 8598:1 8614:1 8729:1 8735:1 8761:1 8804:1 8884:1 8887:1 8900:1 8940:1 8945:2 8961:1 8992:1 9030:1 9054:1 9067:1 9148:1 9200:1 9209:1 9312:1 9324:1 9351:1 9400:1 9417:1 9426:1 9458:1 9480:3 9510:1 9517:1 9539:1 9565:1 9594:1 9610:1 9613:2 9657:1 9681:1 9702:1 9707:1 9765:1 9798:1 9820:1 9832:2 9862:1 9881:1 9884:2 9904:1 9925:1 9950:1 9957:1 9962:1 9966:1 9997:3 10018:1 10175:2 10234:2 10235:1 10239:1 10283:1 10372:1 10381:1 10393:1 10427:1 10439:1 10444:1 10519:1 10576:1 10652:1 10659:2 10761:1 10816:1 10884:1 10891:3 10904:1 10989:1 11001:1 11012:5 11019:1 11048:1 11289:1 11295:2 11311:1 11315:1 11317:1 11340:1 11348:1 11400:1 11418:3 11460:1 11469:1 11473:1 11536:1 11560:1 11599:1 11609:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:1 11807:1 11881:1 11882:1 11895:1 11909:2 11954:1 11969:1 11982:1 12002:1 12055:1 12067:1 12070:1 12074:1 12089:1 12121:1 12149:1 12168:1 12201:1 12208:1 12264:1 12282:1 12356:1 12365:1 12479:2 12522:2 12529:2 12546:1 12583:1 12623:2 12683:1 12812:1 12818:1 12857:1 12862:1 12937:1 12951:1 13081:2 13084:1 13087:1 13089:1 13111:1 13112:1 13114:1 13122:1 13163:1 13188:1 13301:1 13328:1 13360:1 13391:1 13416:1 13492:1 13494:1 13498:1 13514:1 13539:1 13551:1 13582:1 13656:1 13665:1 13681:2 13783:1 13792:1 13804:1 13843:1 13876:1 13930:1 13969:2 13984:1 14013:1 14016:1 14020:1 14038:1 14062:1 14138:1 14166:1 14252:1 14262:2 14282:1 14300:1 14321:2 14340:1 14341:1 14347:1 14490:1 14491:1 14495:2 14553:1 14562:1 14661:1 14678:1 14679:1 14682:1 14704:1 14712:1 14777:1 14808:1 14844:1 14852:1 14863:1 14870:1 14884:1 14945:1 15065:1 15090:1 15092:2 15137:1 15142:3 15178:1 15269:1 15393:1 15410:1 15423:1 15435:1 15439:1 15490:1 15498:1 15588:1 15603:1 15652:1 15675:1 15708:1 15717:1 15725:1 15726:1 15728:1 15730:1 15807:1 15892:1 15920:1 15931:2 15968:1 15993:1 16010:1 16078:2 16094:1 16097:1 16117:1 16118:1 16121:1 16129:1 16145:1 16158:2 16166:1 16234:1 16259:1 16304:2 16315:1 16363:1 16421:1 16480:1 16481:1 16492:1 16508:1 16509:1 16559:1 16570:2 16656:1 16659:1 16673:2 16682:1 16715:1 16780:1 16798:1 16800:1 16805:1 16900:1 16930:1 16948:1 16981:1 17008:1 17035:1 17048:1 17069:1 17110:1 17112:2 17254:1 17293:1 17368:1 17384:1 17441:1 17449:1 17481:1 17509:1 17570:1 17572:1 17597:1 17627:1 17730:1 17734:1 17763:1 17774:1 17894:1 17946:1 17948:1 17957:1 17962:1 17983:1 17986:1 18010:1 18127:1 18150:1 18151:1 18174:1 18221:1 18235:1 18244:2 18288:1 18290:1 18295:1 18297:1 18323:1 18342:1 18343:1 18345:1 18369:1 18393:1 18394:1 18422:1 18448:1 18517:1 18600:2 18613:1 18629:1 18631:1 18754:1 18965:1 18975:4 18988:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19184:1 19201:1 19208:1 19214:764 19221:1 19243:1 19260:1 19282:1 19293:1 19524:1 19543:1 19734:1 19821:1 20016:4 20074:1 20108:1 20126:2 20202:2 20233:2 20267:1 20321:1 20327:1 20341:2 20407:1 20413:1 20524:1 20528:1 20596:2 20605:1 20639:1 20660:1 20667:1 20672:1 20701:1 20704:1 20740:1 20752:1 20799:1 20810:1 20815:1 20829:1 20848:1 20864:1 20961:1 21030:1 21053:1 21133:1 21164:2 21235:1 21282:1 21286:1 21328:1 21360:1 21373:1 21386:1 21411:2 21414:2 21471:1 21563:2 21680:1 21790:1 21883:1 21895:1 21927:1 21951:1 21971:1 21992:1 22136:1 22161:2 22169:1 22182:1 22191:3 22192:1 22218:1 22252:1 22347:2 22364:1 22389:1 22392:1 22405:1 22407:1 22565:1 22577:1 22598:2 22640:1 22669:1 22700:1 22733:1 22791:2 22804:1 22807:1 22826:1 22888:1 22943:1 22993:2 23013:3 23028:1 23089:1 23090:1 23106:1 23117:1 23166:1 23173:1 23185:1 23199:1 23211:1 23313:2 23317:1 23319:1 23367:1 23444:1 23534:2 23610:4 23635:1 23694:1 23813:1 23830:1 23836:1 23858:1 23875:1 23882:1 23897:1 23937:1 23992:1 24044:1 24062:1 24066:1 24071:2 24093:1 24115:1 24236:1 24243:1 24257:1 24350:1 24419:1 24478:1 24483:1 24489:1 24586:1 24588:1 24615:3 24643:1 24667:1 24677:1 24679:1 24722:1 24733:1 24775:1 24831:1 24848:1 24852:1 24855:1 24888:3 24927:1 24982:1 24995:1 25011:2 25088:1 25134:1 25137:1 25140:1 25156:1 25253:2 25289:1 25423:1 25506:1 25534:1 25538:1 25579:2 25592:1 25602:1 25641:1 25643:1 25660:1 25706:1 25799:2 25807:2 25812:1 25827:1 25834:1 25844:1 25848:1 25861:1 25879:1 25905:1 25907:1 25932:1 25934:1 25959:1 26008:1 26054:1 26064:1 26170:1 26282:4 26345:1 26350:1 26382:1 26415:1 26444:2 26450:1 26454:1 26456:1 26475:1 26529:1 26605:4 26646:1 26668:1 26736:1 26751:1 26757:1 26824:1 26855:1 26887:1 26932:2 26948:3 27017:1 27057:1 27082:1 27088:1 27151:1 27191:1 27281:1 27308:2 27310:1 27370:1 27383:1 27425:1 27474:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27650:1 27676:1 27687:1 27697:1 27714:1 27763:2 27770:1 27783:1 27790:1 27812:1 27821:2 27822:1 27830:1 27833:1 27836:1 27849:1 27858:1 27882:1 27915:1 27923:1 27929:1 27962:1 28049:2 28075:1 28097:1 28100:1 28116:1 28232:1 28243:1 28284:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28502:1 28516:3 28524:1 28539:1 28549:2 28569:2 28599:1 28618:1 28684:3 28720:4 28738:2 28756:1 28789:1 28798:1 28814:1 28942:1 28957:1 28983:1 29050:1 29060:1 29062:1 29073:1 29130:1 29150:1 29187:1 29214:1 29243:1 29249:2 29297:1 29347:1 29477:1 29581:2 29591:1 29603:1 29606:1 29626:1 29645:1 29667:2 29816:1 29822:4 29854:1
12 39:1 51:1 65:1 137:1 179:1 239:2 325:1 363:1 398:2 405:1 417:2 448:1 451:3 473:1 559:1 565:1 592:1 622:1 650:1 768:1 832:1 835:1 905:2 910:1 923:1 928:2 933:1 944:1 986:1 1010:1 1016:1 1038:1 1083:1 1105:1 1118:1 1153:1 1208:1 1220:2 1221:1 1258:1 1293:2 1303:1 1318:1 1353:2 1422:4 1465:1 1470:1 1473:3 1474:1 1536:1 1557:1 1593:2 1599:1 1671:1 1703:1 1707:1 1716:4 1737:1 1785:1 1812:1 1827:1 1860:2 1869:1 1880:1 1895:1 1898:1 1920:1 1929:1 1935:1 1950:2 1969:1 2037:1 2039:2 2041:1 2081:1 2115:1 2239:2 2250:2 2252:1 2261:1 2287:1 2295:1 2296:1 2297:1 2301:3 2304:2 2307:1 2308:1 2312:1 2314:1 2324:3 2325:1 2338:1 2370:1 2394:2 2403:2 2419:1 2432:1 2440:1 2527:1 2534:1 2573:1 2604:2 2665:1 2670:1 2787:3 2848:2 2860:1 2871:1 2956:3 3033:1 3037:1 3040:1 3049:1 3052:1 3075:1 3081:1 3128:1 3141:1 3172:1 3207:1 3261:1 3295:1 3317:1 3340:2 3361:1 3376:1 3388:1 3402:1 3418:1 3479:1 3532:1 3570:1 3572:1 3600:1 3606:1 3642:2 3683:1 3713:1 3717:1 3766:1 3787:1 3886:1 3905:1 3941:1 4004:1 4010:2 4042:2 4047:1 4076:1 4132:1 4136:1 4140:2 4186:1 4209:1 4321:5 4329:1 4369:1 4390:2 4421:1 4504:1 4509:1 4563:1 4593:1 4608:1 4609:1 4630:1 4675:1 4744:1 4775:1 4789:1 4844:1 4911:1 5010:1 5028:4 5056:1 5099:1 5138:4 5153:2 5154:1 5161:1 5169:1 5175:1 5209:1 5221:1 5376:2 5469:1 5487:1 5498:2 5532:5 5579:7 5614:1 5644:1 5682:1 5765:1 5788:2 5805:1 5829:1 5854:1 5922:1 5968:1 5992:1 6008:2 6182:1 6223:1 6281:1 6282:2 6303:1 6305:1 6312:1 6316:1 6334:1 6388:1 6392:1 6440:1 6519:1 6526:1 6530:1 6537:1 6602:1 6605:1 6609:1 6621:1 6622:1 6629:2 6630:3 6633:1 6650:1 6729:1 6770:1 6785:2 6827:1 6914:1 6962:2 6974:1 7001:1 7046:1 7049:1 7055:1 7071:2 7097:3 7123:1 7134:1 7169:1 7208:1 7331:1 7404:1 7407:2 7501:1 7509:1 7520:1 7537:1 7706:1 7747:2 7753:1 7762:2 7801:1 7817:1 7829:1 7870:2 7883:1 7914:1 7917:1 7952:4 7954:3 7960:1 7968:1 7971:1 7975:1 8029:15 8043:3 8050:2 8054:1 8061:1 8098:1 8108:2 8109:2 8142:2 8164:1 8221:1 8298:1 8354:2 8408:1 8490:1 8513:3 8548:1 8552:1 8561:1 8598:1 8614:1 8729:1 8735:1 8761:1 8804:1 8884:1 8885:1 8887:1 8899:1 8900:1 8940:1 8945:2 8961:1 8992:2 9030:1 9054:1 9067:1 9148:1 9200:1 9209:1 9312:1 9324:1 9351:1 9400:1 9417:1 9426:1 9458:1 9480:3 9510:1 9517:1 9539:1 9565:1 9594:1 9610:1 9613:2 9657:1 9681:1 9702:1 9707:1 9765:2 9798:1 9820:1 9832:2 9862:1 9881:1 9884:2 9904:1 9925:1 9950:1 9957:1 9962:1 9966:1 9997:3 10018:1 10175:2 10234:2 10235:1 10239:1 10283:1 10372:1 10381:1 10393:1 10427:1 10439:1 10444:1 10519:1 10576:1 10652:1 10659:2 10761:1 10816:2 10847:1 10884:1 10891:3 10904:1 10989:1 11001:1 11012:5 11019:1 11048:1 11289:1 11295:2 11311:1 11315:1 11317:1 11340:1 11348:1 11372:1 11400:1 11418:3 11460:1 11469:1 11473:1 11496:1 11501:1 11536:1 11560:1 11599:1 11609:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:1 11807:1 11881:1 11882:1 11895:1 11909:2 11954:1 11969:1 11982:1 12002:1 12055:1 12067:1 12070:1 12074:1 12089:1 12121:1 12149:1 12168:1 12201:1 12208:1 12264:1 12282:1 12356:1 12365:1 12479:2 12522:2 12529:2 12546:1 12583:1 12605:1 12623:2 12683:1 12812:1 12818:1 12857:1 12862:1 12937:1 12951:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:1 13122:1 13163:1 13188:1 13301:1 13328:1 13360:1 13391:1 13416:1 13492:2 13494:2 13498:1 13514:1 13539:1 13551:1 13582:1 13656:1 13658:1 13665:1 13681:2 13708:1 13783:1 13792:1 13804:1 13843:1 13876:1 13930:1 13969:2 13984:1 14013:1 14016:1 14020:2 14038:1 14062:1 14138:1 14166:1 14252:1 14262:2 14282:1 14300:2 14321:2 14340:1 14341:1 14347:1 14385:1 14456:1 14490:1 14491:1 14495:2 14553:1 14562:1 14661:1 14678:1 14679:1 14682:1 14704:1 14712:1 14777:1 14808:1 14844:1 14852:1 14863:1 14870:1 14873:1 14884:1 14945:1 15065:1 15067:1 15090:1 15092:2 15137:1 15142:3 15178:1 15269:1 15271:1 15393:1 15410:1 15423:1 15435:1 15439:1 15490:1 15498:1 15588:1 15603:1 15652:1 15675:1 15708:1 15717:1 15725:1 15726:1 15728:1 15730:1 15807:1 15892:1 15920:1 15931:2 15968:1 15993:1 16010:1 16078:2 16094:1 16097:2 16117:1 16118:1 16121:1 16129:1 16145:1 16158:2 16166:1 16234:1 16259:2 16304:2 16315:1 16363:1 16391:1 16421:1 16480:1 16481:1 16492:1 16508:1 16509:1 16559:1 16570:2 16656:1 16659:1 16673:2 16682:2 16697:1 16715:1 16763:1 16780:1 16798:1 16800:1 16805:1 16900:1 16930:1 16948:1 16981:1 17008:1 17035:2 17048:1 17069:1 17088:1 17110:1 17112:2 17254:1 17293:1 17368:1 17384:1 17441:1 17449:1 17481:1 17509:1 17570:1 17572:1 17597:1 17627:1 17730:1 17734:1 17763:1 17774:1 17894:1 17946:1 17948:1 17957:1 17962:1 17983:1 17986:1 18010:1 18120:1 18127:1 18141:1 18150:1 18151:1 18174:1 18221:1 18235:1 18244:2 18288:1 18290:1 18295:1 18297:1 18323:1 18342:2 18343:1 18345:1 18369:1 18393:1 18394:1 18422:1 18448:1 18517:1 18600:2 18613:1 18629:1 18631:1 18675:1 18754:1 18965:1 18975:4 18988:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19184:1 19201:1 19208:1 19214:839 19221:1 19243:1 19260:1 19282:1 19293:1 19524:1 19543:1 19734:1 19821:1 20016:4 20074:1 20108:1 20126:2 20202:2 20233:2 20267:1 20321:1 20327:1 20341:2 20359:1 20407:1 20413:1 20504:1 20524:1 20528:1 20596:2 20605:1 20639:1 20660:1 20667:2 20672:1 20701:1 20704:1 20740:1 20752:1 20799:1 20810:1 20815:1 20829:1 20848:1 20864:1 20961:1 21030:1 21036:1 21053:1 21133:1 21164:2 21235:1 21282:1 21286:1 21289:1 21295:1 21328:1 21360:1 21373:1 21386:1 21411:2 21414:2 21471:1 21520:1 21563:2 21674:1 21680:1 21790:1 21883:1 21895:1 21898:1 21927:1 21951:1 21971:1 21992:1 22136:1 22161:2 22169:1 22182:1 22191:3 22192:1 22218:1 22252:1 22347:2 22364:1 22389:2 22392:1 22404:1 22405:1 22407:1 22565:1 22577:1 22598:2 22640:1 22669:1 22700:1 22733:1 22791:2 22804:1 22807:1 22826:1 22864:1 22888:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:1 23089:1 23090:1 23106:1 23117:1 23166:1 23173:1 23185:1 23199:1 23211:1 23313:2 23317:1 23319:1 23367:1 23444:1 23466:1 23534:2 23610:4 23635:1 23694:1 23813:1 23819:1 23830:1 23836:1 23858:1 23874:1 23875:1 23882:1 23897:1 23937:1 23992:1 24044:1 24062:1 24066:1 24071:2 24093:1 24109:1 24115:1 24160:1 24236:1 24243:1 24257:1 24350:1 24419:1 24478:1 24483:1 24489:1 24586:1 24588:1 24615:3 24643:1 24667:1 24677:1 24679:1 24686:1 24722:1 24733:1 24775:1 24831:1 24848:1 24852:1 24855:1 24888:3 24927:1 24982:1 24995:1 25011:2 25088:1 25134:1 25137:1 25140:1 25156:1 25253:2 25289:1 25423:1 25506:1 25532:1 25534:1 25538:1 25579:2 25592:1 25602:1 25641:1 25643:1 25660:1 25678:1 25706:1 25799:2 25807:2 25812:1 25827:1 25832:1 25834:1 25844:1 25848:1 25861:1 25879:1 25905:1 25907:1 25932:1 25934:1 25959:1 26008:1 26054:1 26064:1 26129:1 26170:1 26282:4 26286:1 26345:1 26350:1 26382:1 26415:1 26444:2 26450:1 26454:1 26456:1 26475:1 26529:1 26605:4 26646:1 26668:1 26736:1 26751:1 26757:1 26824:1 26855:1 26887:1 26932:2 26948:3 27017:1 27057:1 27082:1 27088:1 27151:1 27191:1 27281:1 27308:2 27310:1 27370:1 27383:1 27406:1 27425:1 27474:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27650:1 27676:1 27687:1 27697:1 27714:1 27763:2 27770:1 27783:1 27790:1 27812:1 27821:2 27822:1 27830:1 27833:1 27836:1 27841:1 27849:1 27858:1 27882:1 27915:1 27923:1 27929:2 27962:1 28049:2 28075:1 28097:1 28100:1 28116:1 28227:1 28232:1 28243:1 28284:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28502:1 28516:5 28524:1 28539:1 28549:2 28569:2 28599:1 28618:1 28678:1 28684:3 28720:5 28738:2 28756:1 28789:1 28798:1 28814:1 28942:1 28957:1 28983:1 29050:1 29060:1 29062:1 29073:1 29130:1 29150:1 29187:1 29214:1 29243:1 29249:2 29297:2 29306:1 29347:1 29477:1 29536:1 29581:2 29591:1 29603:1 29606:1 29626:1 29645:1 29667:2 29816:1 29822:4 29854:1
12 39:1 51:1 65:2 137:1 179:1 211:1 239:2 247:1 325:1 363:1 398:2 405:1 417:2 424:1 448:1 451:3 473:1 559:1 565:1 592:1 622:1 650:1 722:1 768:1 832:1 835:1 905:2 910:1 923:1 928:2 933:1 944:1 986:1 1010:1 1016:1 1038:1 1040:1 1083:1 1105:1 1118:1 1153:1 1208:1 1220:2 1221:1 1258:1 1293:2 1303:1 1318:1 1342:1 1353:2 1422:4 1465:1 1470:1 1473:3 1474:1 1536:1 1557:1 1593:2 1599:1 1671:1 1703:1 1707:1 1716:4 1737:1 1785:1 1812:1 1827:1 1860:2 1869:1 1880:1 1895:1 1898:1 1920:1 1929:1 1935:1 1950:2 1969:1 2037:1 2039:2 2041:1 2081:1 2115:1 2239:2 2250:2 2252:1 2261:1 2287:1 2295:1 2296:1 2297:1 2301:3 2304:2 2307:1 2308:1 2312:1 2314:1 2324:3 2325:1 2338:2 2370:1 2394:2 2403:2 2419:1 2432:1 2440:1 2478:1 2527:1 2534:1 2573:1 2604:3 2657:1 2665:1 2670:1 2787:3 2848:2 2860:1 2871:1 2956:3 2967:1 3033:1 3037:1 3040:1 3049:1 3052:1 3075:1 3081:1 3128:1 3141:1 3172:1 3175:1 3207:1 3261:1 3295:1 3317:1 3340:2 3361:1 3376:1 3388:1 3402:1 3418:1 3479:1 3532:1 3570:1 3572:1 3600:1 3606:1 3642:2 3683:1 3713:1 3717:1 3766:1 3787:1 3886:1 3905:1 3941:1 4004:1 4010:2 4042:2 4047:1 4076:1 4132:1 4136:1 4140:2 4186:1 4209:1 4238:1 4321:5 4329:1 4369:1 4390:2 4421:1 4504:1 4509:1 4563:1 4593:1 4608:1 4609:1 4630:1 4675:1 4744:1 4775:1 4789:1 4844:2 4911:1 5010:1 5028:4 5056:1 5099:1 5138:4 5153:2 5154:1 5156:1 5161:1 5169:1 5175:1 5209:1 5221:1 5376:2 5457:1 5469:1 5487:1 5498:2 5532:5 5579:7 5614:1 5644:1 5682:1 5765:1 5788:2 5805:1 5829:1 5854:1 5922:1 5959:1 5968:1 5992:1 6008:2 6182:1 6223:1 6281:1 6282:2 6303:1 6305:1 6312:1 6316:1 6334:1 6388:1 6392:1 6440:1 6519:1 6526:1 6530:1 6537:1 6602:1 6605:1 6609:1 6613:1 6621:1 6622:1 6629:2 6630:5 6633:1 6650:1 6729:1 6770:1 6785:2 6827:1 6914:1 6962:2 6974:1 7001:1 7046:1 7049:1 7055:1 7071:2 7097:3 7123:1 7134:1 7169:1 7208:1 7331:1 7404:1 7407:2 7463:1 7501:1 7509:1 7519:1 7520:1 7537:1 7706:2 7747:2 7753:1 7762:2 7801:1 7817:1 7829:1 7870:2 7883:1 7914:1 7917:1 7952:5 7954:4 7960:1 7968:1 7971:1 7975:1 8011:1 8029:15 8043:3 8050:2 8054:1 8061:1 8098:1 8108:2 8109:2 8142:2 8164:1 8221:1 8298:1 8354:2 8408:1 8490:1 8513:3 8548:1 8552:1 8561:1 8598:1 8614:1 8729:1 8735:1 8761:1 8804:1 8884:1 8885:1 8887:1 8899:1 8900:1 8940:1 8945:2 8961:1 8992:2 9030:1 9054:1 9067:1 9148:1 9200:1 9209:1 9312:1 9324:1 9351:1 9372:1 9400:1 9417:1 9426:1 9458:1 9480:3 9510:1 9517:1 9539:1 9565:1 9594:1 9610:1 9613:2 9657:1 9681:1 9702:1 9707:1 9765:2 9798:1 9820:1 9832:2 9862:1 9881:1 9884:2 9904:2 9925:1 9950:1 9957:1 9962:1 9966:1 9997:3 10018:2 10132:1 10175:2 10233:1 10234:3 10235:1 10239:1 10283:1 10372:1 10381:1 10393:1 10427:1 10439:1 10444:1 10519:1 10572:1 10576:1 10652:1 10659:2 10761:1 10816:2 10847:1 10884:1 10891:3 10904:1 10989:1 11001:1 11012:5 11019:1 11048:1 11289:1 11295:2 11311:1 11315:1 11317:1 11340:1 11348:1 11372:1 11400:1 11418:3 11460:1 11469:1 11473:1 11496:1 11501:1 11536:1 11560:1 11599:1 11609:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:1 11807:1 11881:1 11882:1 11895:1 11909:2 11954:1 11969:1 11982:1 12002:1 12055:1 12067:1 12070:1 12074:1 12089:1 12121:1 12149:1 12168:1 12201:1 12208:1 12264:1 12282:1 12331:1 12356:1 12365:1 12479:2 12522:2 12529:2 12546:1 12565:1 12583:1 12605:1 12623:2 12683:1 12791:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:1 12951:1 12993:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:1 13122:1 13163:1 13183:1 13188:1 13261:1 13301:1 13328:1 13360:1 13389:1 13391:1 13416:1 13492:2 13494:2 13498:2 13514:1 13539:1 13551:1 13582:1 13647:1 13656:1 13658:1 13665:1 13681:2 13708:1 13783:1 13792:1 13804:1 13843:1 13876:1 13930:1 13969:2 13984:1 14013:1 14016:1 14020:2 14038:1 14062:1 14138:1 14166:1 14252:1 14262:2 14282:1 14300:2 14321:2 14340:2 14341:1 14347:1 14385:1 14456:1 14490:1 14491:1 14495:2 14553:1 14562:1 14661:1 14678:1 14679:1 14682:1 14704:1 14712:1 14735:1 14777:1 14808:1 14844:1 14852:1 14863:1 14870:1 14873:1 14884:1 14945:1 15065:1 15067:1 15090:1 15092:2 15137:1 15142:3 15178:1 15269:1 15271:1 15393:1 15410:1 15423:1 15435:1 15439:1 15490:1 15498:1 15588:1 15603:1 15652:1 15675:1 15708:1 15717:1 15725:1 15726:1 15728:1 15730:1 15807:1 15892:1 15920:1 15931:2 15968:1 15993:1 16010:1 16034:1 16078:2 16094:1 16097:2 16117:1 16118:1 16121:1 16129:1 16145:1 16158:2 16166:1 16234:1 16259:2 16304:2 16315:1 16325:1 16363:1 16389:1 16391:1 16421:1 16480:1 16481:1 16492:1 16508:2 16509:1 16559:1 16570:2 16656:1 16659:1 16673:2 16682:2 16697:1 16715:1 16763:1 16780:1 16798:1 16800:1 16805:1 16900:1 16930:1 16948:1 16981:1 17008:1 17026:1 17035:3 17048:1 17069:1 17088:1 17110:1 17112:2 17254:1 17293:1 17368:1 17384:1 17441:1 17449:1 17481:1 17509:1 17544:1 17570:1 17572:1 17597:1 17627:1 17730:1 17734:1 17763:1 17774:1 17894:1 17946:1 17948:1 17957:1 17962:1 17983:1 17986:1 18010:1 18120:1 18127:1 18141:1 18150:1 18151:1 18166:1 18174:1 18221:1 18235:1 18244:2 18288:1 18290:1 18295:1 18297:1 18323:1 18342:2 18343:1 18345:1 18369:1 18393:1 18394:1 18422:1 18441:1 18448:1 18517:1 18600:2 18613:1 18629:1 18631:1 18668:1 18675:1 18754:1 18965:1 18975:4 18988:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19184:1 19201:1 19208:1 19214:888 19221:1 19243:1 19260:1 19282:1 19293:1 19524:1 19543:1 19734:1 19821:1 20016:4 20074:1 20108:1 20126:2 20202:2 20233:2 20267:1 20321:1 20327:1 20341:2 20359:1 20405:1 20407:1 20413:1 20504:1 20524:1 20528:1 20596:2 20605:1 20639:1 20660:1 20667:2 20672:1 20701:1 20704:1 20740:1 20752:1 20799:1 20810:1 20815:1 20829:1 20848:1 20864:1 20957:1 20961:1 21012:1 21030:1 21036:1 21053:1 21133:1 21164:2 21235:1 21253:1 21282:1 21286:1 21289:1 21295:1 21328:1 21360:1 21373:1 21386:1 21411:2 21414:2 21471:1 21474:1 21520:1 21545:1 21563:2 21674:1 21680:1 21724:1 21790:1 21850:1 21883:1 21895:1 21898:1 21927:1 21951:1 21971:1 21992:1 22003:1 22136:1 22161:2 22169:1 22182:1 22191:5 22192:1 22218:1 22252:1 22347:2 22364:1 22389:2 22392:1 22404:1 22405:1 22407:1 22531:1 22565:1 22577:1 22598:2 22640:1 22669:1 22700:1 22733:1 22791:2 22804:2 22807:1 22820:1 22826:1 22864:1 22888:1 22926:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23089:1 23090:1 23106:1 23117:1 23166:1 23173:1 23185:1 23199:1 23211:1 23313:2 23317:1 23319:1 23367:1 23444:1 23466:1 23534:2 23610:4 23635:1 23694:1 23813:1 23819:1 23830:1 23836:1 23858:1 23874:1 23875:1 23882:1 23897:1 23937:1 23992:1 24019:1 24044:1 24062:1 24066:1 24071:2 24093:1 24109:1 24115:1 24160:1 24236:1 24243:1 24257:1 24350:1 24419:1 24478:1 24483:1 24489:1 24586:1 24588:1 24615:3 24643:1 24667:1 24677:1 24679:1 24686:1 24722:1 24733:1 24775:1 24783:1 24831:1 24848:1 24852:1 24855:1 24888:5 24927:1 24982:1 24988:1 24995:1 25011:2 25088:1 25134:1 25137:1 25140:1 25156:1 25253:2 25289:1 25423:1 25506:1 25532:1 25534:1 25538:1 25579:2 25592:1 25602:1 25641:1 25643:1 25660:1 25678:1 25706:1 25796:1 25799:2 25807:2 25812:1 25827:1 25832:1 25834:1 25844:1 25848:1 25861:1 25879:1 25905:1 25907:1 25932:1 25934:1 25959:1 26008:1 26041:1 26054:1 26064:1 26129:1 26170:1 26279:1 26282:4 26286:1 26345:1 26350:1 26382:1 26415:1 26444:2 26450:1 26454:1 26456:1 26475:2 26529:1 26605:4 26646:1 26652:1 26668:1 26736:1 26751:1 26757:1 26824:1 26855:1 26887:1 26932:2 26948:3 27017:1 27057:1 27082:1 27088:1 27151:1 27191:1 27281:1 27308:2 27310:1 27370:1 27383:1 27406:1 27425:1 27474:1 27493:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27650:1 27676:1 27687:1 27697:1 27714:1 27763:2 27770:1 27783:1 27790:1 27812:1 27821:2 27822:1 27830:1 27833:1 27836:1 27841:1 27849:1 27858:1 27882:1 27915:1 27923:1 27929:2 27962:1 28049:2 28075:1 28097:1 28100:1 28116:1 28227:1 28232:1 28243:1 28284:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28502:1 28516:5 28524:1 28539:1 28549:2 28569:2 28599:1 28618:1 28678:1 28684:4 28720:6 28738:2 28756:1 28789:1 28798:1 28814:1 28942:1 28957:1 28983:1 29050:1 29060:1 29062:1 29067:1 29073:1 29103:1 29130:1 29150:1 29187:1 29214:1 29229:1 29243:1 29249:2 29297:2 29306:1 29347:1 29463:1 29477:1 29536:1 29581:2 29591:1 29603:1 29606:1 29616:1 29626:1 29645:1 29667:2 29816:1 29822:4 29854:1
12 39:1 51:1 65:2 137:1 179:1 211:1 239:2 247:1 313:1 325:1 363:1 398:2 405:1 417:2 424:1 448:1 451:3 473:2 559:1 565:1 592:1 622:1 650:1 722:1 768:1 832:1 835:1 905:2 910:1 923:1 928:3 933:1 944:1 976:1 986:1 1010:1 1016:1 1038:1 1040:1 1083:1 1105:1 1118:1 1153:1 1208:1 1220:2 1221:1 1247:1 1258:1 1293:2 1303:1 1318:1 1342:1 1353:2 1422:4 1465:1 1467:1 1470:1 1473:3 1474:1 1536:1 1557:1 1593:2 1599:1 1671:1 1703:1 1707:1 1716:4 1737:1 1785:1 1812:1 1827:1 1860:2 1869:1 1880:1 1895:1 1898:1 1920:1 1929:1 1935:1 1950:2 1969:1 2037:1 2039:2 2041:1 2066:1 2081:1 2115:1 2239:2 2250:2 2252:1 2261:1 2287:1 2295:1 2296:2 2297:1 2301:3 2304:2 2307:1 2308:1 2312:1 2314:1 2316:1 2324:3 2325:1 2338:2 2370:1 2394:3 2403:2 2419:1 2432:1 2440:1 2478:1 2527:1 2534:1 2573:1 2604:3 2623:1 2657:1 2665:1 2670:1 2787:3 2795:1 2824:1 2848:2 2860:1 2871:1 2911:1 2956:3 2967:1 3033:1 3037:1 3040:1 3049:1 3052:1 3075:1 3081:1 3121:1 3128:1 3141:1 3172:1 3175:1 3207:1 3261:1 3295:1 3317:1 3340:2 3361:1 3376:1 3388:1 3402:1 3418:1 3479:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3683:1 3698:1 3713:1 3717:1 3766:1 3787:1 3858:1 3886:1 3905:1 3941:1 4004:1 4010:2 4042:2 4047:1 4076:1 4132:1 4136:1 4140:2 4186:1 4209:1 4238:1 4321:5 4329:2 4369:1 4390:2 4421:1 4480:1 4504:1 4509:1 4563:1 4593:1 4608:1 4609:1 4630:1 4675:1 4744:1 4775:1 4789:1 4844:2 4911:1 5010:1 5028:4 5056:1 5099:1 5138:4 5153:3 5154:2 5156:1 5161:1 5169:2 5175:1 5209:1 5221:1 5376:2 5457:1 5469:1 5487:1 5498:2 5532:5 5579:7 5614:1 5644:1 5682:1 5765:1 5788:2 5805:1 5829:1 5854:1 5922:1 5959:1 5960:1 5968:1 5992:1 6008:2 6011:1 6144:1 6171:1 6182:1 6223:1 6281:1 6282:2 6303:1 6305:1 6312:1 6316:1 6334:1 6388:1 6392:1 6440:1 6519:1 6526:1 6530:1 6537:1 6602:1 6605:1 6609:1 6612:1 6613:1 6621:1 6622:1 6629:2 6630:5 6633:1 6650:1 6729:1 6770:1 6780:1 6785:2 6827:1 6914:1 6962:2 6974:1 6980:1 7001:1 7046:1 7049:1 7055:1 7071:2 7097:3 7123:1 7134:1 7169:1 7208:1 7331:1 7404:1 7407:2 7463:1 7501:1 7509:1 7519:1 7520:1 7537:1 7706:2 7747:2 7753:1 7762:3 7801:1 7817:1 7829:1 7870:2 7883:1 7914:1 7917:1 7952:7 7954:5 7960:1 7968:1 7971:1 7975:1 8011:1 8029:16 8043:3 8050:2 8054:1 8061:1 8098:1 8108:2 8109:2 8142:2 8164:1 8221:1 8298:1 8354:2 8408:1 8490:1 8513:3 8548:1 8552:1 8561:1 8598:1 8614:1 8729:1 8735:1 8761:1 8804:1 8884:1 8885:1 8887:1 8899:1 8900:1 8927:1 8940:1 8945:2 8961:1 8992:2 9030:1 9054:1 9067:1 9148:1 9200:1 9209:1 9312:1 9313:1 9324:1 9351:1 9372:1 9400:2 9417:1 9426:1 9458:1 9480:3 9510:1 9517:1 9539:1 9565:1 9567:1 9594:1 9610:1 9613:2 9657:1 9681:1 9702:1 9707:1 9765:3 9798:1 9820:1 9832:2 9844:1 9862:1 9881:1 9884:2 9904:2 9925:1 9950:1 9957:1 9962:1 9966:1 9997:3 10018:2 10132:1 10175:2 10233:1 10234:3 10235:1 10239:1 10283:1 10372:1 10381:1 10393:1 10427:1 10439:1 10444:1 10519:1 10572:1 10576:1 10623:1 10652:1 10659:2 10761:1 10816:2 10847:1 10884:1 10891:3 10904:1 10989:1 11001:1 11012:5 11019:1 11048:1 11079:1 11289:1 11295:2 11311:1 11315:1 11317:1 11340:1 11348:1 11372:1 11400:1 11418:3 11460:1 11469:1 11473:1 11496:1 11501:1 11536:1 11560:1 11599:1 11609:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:1 11807:1 11874:1 11881:1 11882:1 11895:1 11909:2 11954:1 11969:1 11982:1 12002:1 12055:1 12067:1 12070:1 12074:1 12089:1 12121:1 12149:1 12168:1 12201:1 12208:1 12209:1 12264:1 12282:1 12331:1 12356:1 12365:1 12479:2 12522:2 12529:2 12546:1 12565:1 12583:1 12605:1 12623:2 12683:1 12791:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:1 12951:1 12993:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13163:1 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13416:1 13492:2 13494:2 13498:2 13514:1 13520:1 13539:1 13551:1 13582:1 13647:1 13656:1 13658:1 13665:1 13681:2 13708:2 13783:1 13792:1 13804:1 13843:1 13876:1 13930:1 13969:2 13984:1 14013:1 14016:1 14020:3 14038:1 14062:1 14138:1 14166:1 14170:1 14252:1 14262:2 14282:1 14300:2 14305:1 14321:2 14340:2 14341:1 14347:1 14385:1 14456:1 14490:1 14491:1 14495:2 14553:1 14562:1 14661:1 14678:1 14679:1 14682:1 14704:1 14712:1 14735:1 14777:1 14808:1 14836:1 14844:1 14852:1 14863:1 14870:1 14873:1 14884:1 14945:1 15016:1 15065:1 15067:1 15090:1 15092:2 15137:1 15142:3 15178:1 15267:1 15269:2 15271:1 15393:1 15410:1 15416:1 15423:1 15435:1 15439:1 15490:1 15498:1 15588:1 15603:1 15652:1 15675:1 15708:1 15717:1 15725:1 15726:1 15728:1 15730:1 15767:1 15807:1 15892:1 15920:1 15931:2 15968:1 15993:1 16010:1 16034:1 16078:2 16094:1 16097:3 16117:1 16118:1 16121:1 16129:2 16145:1 16158:2 16166:1 16183:1 16234:1 16259:2 16304:2 16315:1 16325:1 16363:1 16389:1 16391:2 16421:1 16480:1 16481:1 16492:1 16508:2 16509:1 16519:1 16559:1 16570:2 16656:1 16659:1 16673:2 16682:2 16697:1 16715:1 16763:1 16780:1 16798:1 16800:1 16805:1 16900:1 16930:1 16948:1 16981:1 17008:1 17026:1 17035:3 17048:1 17069:1 17088:1 17110:1 17112:2 17254:1 17293:1 17351:1 17368:1 17370:1 17384:1 17441:1 17449:1 17481:1 17509:1 17544:1 17570:1 17572:1 17597:1 17627:1 17730:1 17734:1 17763:1 17774:2 17894:1 17946:1 17948:1 17957:1 17962:1 17983:1 17986:1 18010:1 18120:1 18127:1 18141:1 18150:1 18151:1 18166:1 18174:1 18221:2 18235:1 18244:2 18288:1 18290:1 18295:1 18297:1 18323:1 18342:2 18343:1 18345:1 18369:1 18393:1 18394:1 18422:1 18441:1 18448:1 18517:1 18600:2 18613:2 18629:1 18631:1 18668:1 18675:1 18754:1 18789:1 18965:1 18975:4 18988:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19184:1 19201:1 19208:1 19214:934 19221:1 19243:1 19260:1 19282:1 19293:1 19524:1 19543:1 19734:1 19821:1 19892:1 20016:4 20074:1 20108:1 20126:2 20135:1 20202:2 20233:2 20267:1 20276:1 20282:1 20321:1 20327:1 20341:2 20359:1 20387:1 20405:1 20407:2 20413:1 20504:1 20524:1 20528:1 20596:2 20605:1 20639:1 20660:1 20667:2 20672:1 20701:1 20704:1 20740:1 20752:1 20799:1 20810:1 20815:1 20829:1 20848:1 20864:1 20957:1 20961:1 21012:1 21030:1 21036:1 21053:1 21133:1 21164:2 21235:1 21253:1 21282:1 21286:1 21289:1 21295:1 21328:1 21360:1 21373:1 21386:1 21411:2 21414:2 21471:1 21474:1 21520:1 21545:1 21563:2 21674:1 21680:1 21724:1 21790:1 21845:1 21850:1 21883:1 21895:1 21898:1 21927:1 21951:1 21971:1 21992:1 22003:1 22136:1 22161:2 22169:1 22182:1 22191:5 22192:1 22218:1 22242:1 22252:1 22347:2 22352:1 22364:1 22389:3 22392:1 22404:1 22405:1 22407:1 22520:1 22531:1 22565:1 22577:1 22598:2 22616:1 22640:1 22669:1 22700:1 22733:1 22791:2 22804:2 22807:1 22820:1 22826:1 22864:1 22883:1 22888:1 22926:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23089:1 23090:1 23106:1 23117:1 23133:1 23166:1 23173:1 23181:1 23185:1 23199:1 23211:1 23313:2 23317:1 23319:1 23367:1 23444:1 23466:1 23534:2 23610:4 23635:1 23694:1 23813:1 23819:1 23830:1 23836:1 23858:1 23874:1 23875:1 23882:1 23897:1 23937:1 23992:1 24019:1 24044:1 24062:1 24066:1 24071:2 24093:1 24109:1 24115:1 24160:1 24236:1 24243:1 24257:1 24350:1 24389:1 24419:1 24478:1 24483:1 24489:1 24586:1 24588:1 24615:3 24643:1 24667:1 24677:1 24679:1 24686:1 24722:1 24733:1 24775:1 24783:1 24831:1 24848:1 24852:1 24855:1 24888:6 24927:1 24982:1 24988:1 24995:1 25006:1 25011:2 25088:1 25092:1 25134:1 25137:1 25140:1 25156:1 25253:2 25289:1 25423:1 25506:1 25532:1 25534:1 25538:1 25543:1 25579:2 25592:1 25602:1 25613:1 25641:1 25643:1 25660:1 25678:1 25706:1 25796:1 25799:3 25807:2 25812:1 25827:1 25832:1 25834:1 25844:1 25848:1 25861:1 25879:1 25905:1 25907:2 25932:1 25934:1 25959:1 26008:1 26041:1 26054:1 26064:1 26129:1 26145:1 26170:1 26279:1 26282:4 26286:1 26345:1 26350:1 26382:1 26415:1 26444:2 26450:1 26454:1 26456:1 26475:2 26529:1 26605:4 26646:1 26652:1 26668:1 26688:1 26736:1 26751:1 26757:1 26824:1 26855:1 26887:1 26932:2 26948:3 27017:1 27057:1 27082:1 27088:1 27151:1 27191:1 27245:1 27281:1 27308:2 27310:1 27370:1 27383:1 27406:1 27425:1 27474:1 27493:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27650:1 27676:1 27687:2 27697:1 27714:1 27763:2 27770:1 27783:1 27790:1 27812:1 27815:1 27821:2 27822:1 27830:1 27833:1 27836:1 27841:1 27849:1 27858:1 27882:1 27915:2 27923:1 27929:2 27962:1 28049:2 28075:1 28097:1 28100:1 28116:1 28227:1 28232:1 28243:1 28284:1 28321:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28502:1 28516:5 28524:1 28539:1 28549:2 28569:2 28599:1 28618:1 28648:1 28678:1 28684:5 28720:7 28727:1 28738:2 28756:1 28789:1 28798:1 28814:1 28942:1 28957:1 28983:1 28998:1 29050:1 29060:1 29062:1 29067:1 29073:1 29103:1 29130:1 29150:1 29187:1 29214:1 29229:1 29243:1 29249:2 29297:2 29306:1 29347:1 29463:1 29477:2 29536:1 29581:2 29591:1 29603:1 29606:1 29616:1 29626:1 29645:1 29667:2 29816:1 29822:4 29854:1
12 39:1 51:1 65:2 137:1 179:1 211:1 239:2 247:1 313:1 325:1 363:1 398:2 405:2 417:2 424:1 448:1 451:3 473:2 559:1 565:1 592:1 622:1 650:1 722:1 768:1 832:1 835:1 905:2 910:1 923:1 928:3 933:1 944:1 976:1 986:1 1010:1 1016:1 1038:1 1040:1 1083:1 1105:1 1118:1 1153:1 1208:1 1220:2 1221:1 1247:1 1258:2 1293:2 1303:1 1318:1 1342:1 1353:2 1384:1 1422:4 1465:1 1467:1 1470:1 1473:3 1474:1 1536:1 1557:1 1593:2 1599:1 1671:1 1703:1 1707:1 1716:4 1737:1 1785:1 1812:1 1827:1 1860:2 1869:1 1880:1 1895:1 1898:1 1920:1 1929:1 1935:1 1950:2 1969:1 2037:1 2039:2 2041:1 2066:1 2081:1 2115:1 2239:3 2250:2 2252:1 2261:1 2287:1 2295:1 2296:2 2297:1 2301:3 2304:2 2307:1 2308:1 2312:1 2314:1 2316:1 2324:3 2325:1 2338:2 2370:1 2394:3 2403:2 2419:1 2432:1 2440:1 2478:1 2527:1 2534:1 2562:1 2573:1 2604:3 2623:1 2657:1 2665:1 2670:1 2787:3 2795:1 2824:1 2848:2 2860:1 2871:1 2911:1 2956:3 2967:1 3033:1 3037:1 3040:1 3049:1 3052:1 3060:1 3075:1 3081:1 3121:1 3128:1 3141:1 3172:1 3175:1 3207:1 3261:1 3295:1 3317:1 3340:2 3361:1 3376:1 3388:2 3402:1 3418:1 3479:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3683:1 3698:1 3713:1 3717:1 3766:1 3787:1 3829:1 3858:1 3886:1 3905:1 3923:1 3941:1 4004:1 4010:2 4042:2 4047:1 4076:1 4132:1 4136:1 4140:2 4186:1 4209:1 4238:1 4321:5 4329:2 4335:1 4369:1 4390:3 4416:1 4421:1 4428:1 4480:1 4504:1 4509:1 4563:1 4593:1 4608:1 4609:1 4630:1 4675:1 4744:1 4775:1 4789:1 4844:2 4911:1 5010:1 5028:6 5056:1 5099:1 5138:4 5153:3 5154:2 5156:1 5161:1 5169:2 5175:1 5183:1 5209:1 5221:1 5376:2 5457:1 5469:1 5487:1 5498:2 5532:5 5579:7 5614:1 5644:1 5682:1 5765:1 5788:2 5805:1 5829:1 5854:1 5922:1 5944:1 5959:1 5960:1 5968:1 5992:1 6008:2 6011:1 6144:1 6171:1 6182:1 6223:1 6281:1 6282:3 6303:1 6305:1 6312:1 6316:1 6334:1 6388:1 6392:1 6440:1 6519:1 6526:1 6530:1 6537:1 6602:1 6605:1 6609:1 6612:1 6613:1 6621:1 6622:1 6629:2 6630:6 6633:1 6650:1 6683:1 6729:1 6770:1 6780:1 6785:2 6827:1 6914:1 6962:2 6974:1 6980:1 7001:1 7046:1 7049:1 7055:1 7071:2 7097:3 7123:1 7134:1 7169:1 7208:1 7331:1 7404:1 7407:2 7463:1 7501:1 7509:1 7519:1 7520:1 7537:1 7706:2 7747:2 7753:1 7762:3 7801:1 7817:1 7829:1 7870:2 7883:1 7914:1 7917:1 7952:7 7954:5 7960:1 7968:1 7971:1 7975:1 8011:1 8029:16 8043:3 8050:2 8054:1 8061:1 8098:1 8108:2 8109:2 8142:2 8164:1 8221:1 8237:1 8298:1 8354:2 8408:1 8429:1 8490:1 8513:3 8548:1 8552:1 8561:1 8598:1 8614:1 8666:1 8729:1 8735:1 8761:1 8798:1 8804:1 8842:1 8884:1 8885:1 8887:1 8899:1 8900:1 8927:1 8940:1 8945:2 8961:1 8992:2 9030:1 9054:1 9067:1 9148:1 9200:1 9209:1 9312:1 9313:1 9324:1 9351:1 9372:1 9400:2 9417:1 9426:1 9458:1 9480:3 9510:1 9517:1 9539:1 9565:1 9567:1 9594:1 9610:1 9613:2 9657:1 9681:1 9702:1 9707:1 9765:3 9798:1 9820:1 9832:2 9844:1 9862:1 9881:1 9884:2 9904:2 9925:1 9950:1 9957:1 9961:1 9962:1 9966:1 9997:3 10018:2 10132:1 10175:2 10233:1 10234:3 10235:1 10239:1 10283:1 10288:1 10372:1 10381:1 10393:1 10427:1 10439:1 10444:1 10519:1 10572:1 10576:1 10623:1 10652:1 10659:2 10761:1 10816:2 10847:1 10884:1 10891:3 10904:1 10989:1 11001:1 11012:5 11019:1 11048:1 11079:1 11289:1 11295:2 11311:1 11315:1 11317:1 11340:1 11348:1 11372:1 11400:1 11418:3 11460:1 11469:1 11473:1 11496:1 11501:1 11536:1 11550:1 11560:1 11599:1 11609:1 11705:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:1 11807:1 11874:1 11881:1 11882:1 11895:1 11909:2 11954:1 11969:1 11982:1 12002:1 12055:1 12067:1 12069:1 12070:1 12074:1 12089:1 12121:1 12149:1 12168:1 12201:1 12208:1 12209:1 12264:1 12282:1 12331:1 12356:1 12365:1 12479:3 12522:2 12529:2 12543:1 12546:1 12565:1 12583:1 12605:1 12623:2 12683:1 12791:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:1 12951:1 12993:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13163:1 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13416:1 13492:2 13494:2 13498:2 13514:1 13520:1 13539:1 13551:1 13582:1 13647:1 13656:1 13658:1 13665:1 13681:2 13708:2 13783:1 13792:1 13804:1 13843:1 13876:1 13930:1 13969:3 13984:1 14013:1 14016:2 14020:3 14038:1 14062:1 14138:1 14166:2 14170:1 14252:1 14262:2 14282:1 14300:2 14305:1 14321:2 14340:2 14341:1 14347:1 14385:1 14456:1 14490:1 14491:2 14495:2 14553:1 14562:1 14661:1 14678:1 14679:1 14682:1 14704:1 14712:1 14735:1 14777:1 14808:1 14836:1 14844:1 14852:1 14863:1 14870:1 14873:1 14884:1 14945:1 15016:1 15065:1 15067:1 15090:1 15092:2 15137:1 15142:3 15178:1 15267:1 15269:2 15271:1 15393:1 15410:1 15416:1 15423:1 15435:1 15439:1 15490:1 15498:1 15588:1 15603:1 15652:1 15675:1 15708:1 15717:1 15725:1 15726:1 15728:1 15730:1 15767:1 15807:1 15892:1 15920:1 15931:2 15968:1 15993:1 16010:1 16034:1 16078:3 16094:1 16097:3 16117:1 16118:1 16121:1 16129:2 16145:1 16158:2 16166:1 16183:1 16234:1 16259:2 16304:2 16315:1 16325:1 16363:1 16389:1 16391:2 16421:1 16480:1 16481:1 16492:1 16508:2 16509:1 16519:1 16559:1 16570:2 16656:1 16659:1 16673:2 16682:2 16697:1 16715:1 16763:1 16780:1 16798:1 16800:1 16805:1 16900:1 16930:1 16948:1 16981:1 17008:1 17026:1 17035:3 17048:1 17069:1 17088:1 17110:1 17112:2 17254:1 17293:1 17351:1 17368:1 17370:1 17384:1 17441:1 17449:1 17481:1 17509:1 17544:1 17570:1 17572:1 17597:1 17627:1 17637:1 17730:1 17734:1 17763:1 17774:2 17894:1 17946:1 17948:1 17957:1 17962:1 17983:1 17986:1 18010:1 18120:1 18127:1 18141:1 18150:1 18151:1 18166:1 18174:1 18221:2 18235:1 18244:2 18288:1 18290:1 18295:1 18297:1 18318:1 18323:1 18342:2 18343:1 18345:1 18369:1 18393:1 18394:1 18422:1 18441:1 18448:1 18517:1 18600:2 18613:2 18629:1 18631:1 18668:1 18675:1 18754:1 18789:1 18862:1 18965:1 18975:4 18988:1 18998:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19184:1 19201:1 19208:1 19214:1041 19221:1 19243:1 19260:1 19282:1 19293:1 19524:1 19543:1 19590:1 19734:1 19821:1 19892:1 19924:1 20016:5 20074:1 20108:1 20126:2 20135:1 20202:2 20233:2 20252:1 20267:1 20276:1 20282:1 20321:1 20327:1 20341:2 20359:1 20387:1 20405:1 20407:2 20413:1 20504:1 20524:1 20528:1 20596:3 20605:1 20639:1 20660:1 20667:2 20672:1 20701:1 20704:1 20740:1 20752:1 20799:1 20810:1 20815:1 20829:1 20848:1 20864:1 20957:1 20961:1 21012:1 21030:1 21036:1 21053:1 21133:1 21164:2 21235:1 21253:1 21282:1 21286:1 21289:1 21295:1 21328:1 21360:1 21373:1 21386:2 21387:1 21411:2 21414:2 21471:1 21474:1 21520:1 21545:1 21563:2 21674:1 21680:1 21724:1 21790:2 21845:1 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21951:1 21971:1 21992:1 22003:1 22136:1 22161:2 22169:1 22182:1 22191:5 22192:1 22206:1 22218:1 22242:1 22252:1 22347:2 22352:1 22364:1 22389:3 22392:1 22404:1 22405:1 22407:1 22520:1 22531:1 22565:1 22577:1 22598:2 22604:1 22616:1 22640:1 22669:1 22700:1 22722:1 22733:1 22791:2 22800:1 22804:2 22807:1 22820:1 22826:1 22864:1 22883:1 22888:1 22926:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23089:1 23090:1 23106:1 23117:1 23133:1 23166:1 23173:1 23181:1 23185:1 23199:1 23211:1 23313:3 23317:1 23319:1 23367:1 23444:1 23466:1 23534:2 23593:1 23610:4 23635:1 23694:1 23813:1 23819:1 23830:2 23836:1 23858:1 23874:1 23875:1 23882:1 23897:1 23937:1 23967:1 23992:1 24019:1 24044:1 24062:1 24066:1 24071:2 24093:1 24109:1 24115:1 24160:1 24236:1 24243:1 24257:1 24350:1 24389:1 24419:1 24478:1 24483:1 24489:1 24586:1 24588:1 24615:3 24643:1 24667:1 24677:1 24679:1 24686:1 24722:1 24733:1 24775:1 24783:1 24831:1 24848:2 24852:1 24855:2 24888:6 24927:1 24982:1 24988:1 24995:1 25006:1 25011:2 25088:1 25092:1 25134:1 25137:1 25140:1 25156:1 25253:2 25289:1 25299:1 25423:1 25506:1 25532:1 25534:1 25538:1 25543:1 25579:2 25592:1 25602:1 25613:1 25641:1 25643:1 25660:1 25678:1 25706:1 25796:1 25799:3 25807:2 25812:1 25827:1 25832:1 25834:1 25843:1 25844:1 25848:1 25861:1 25879:1 25905:1 25907:2 25932:1 25934:1 25959:1 26008:1 26041:1 26054:1 26064:1 26129:1 26145:1 26170:1 26279:1 26282:4 26286:1 26323:1 26345:1 26350:1 26382:1 26415:1 26444:2 26450:1 26454:1 26456:1 26475:2 26529:1 26605:4 26646:1 26652:1 26668:1 26688:1 26736:1 26751:1 26757:1 26824:1 26855:1 26887:1 26932:3 26948:3 27017:1 27057:1 27082:1 27088:1 27151:1 27191:1 27245:1 27281:1 27308:2 27310:1 27370:1 27383:1 27406:1 27425:1 27474:1 27493:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27650:1 27676:1 27687:2 27697:1 27714:1 27763:2 27770:1 27778:1 27783:1 27790:1 27812:1 27815:1 27821:2 27822:1 27830:1 27833:1 27836:1 27841:1 27849:1 27858:1 27882:1 27915:2 27923:1 27929:2 27962:1 28049:2 28075:1 28097:1 28100:1 28116:2 28227:1 28232:1 28243:1 28284:1 28321:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28502:1 28516:5 28524:1 28539:1 28549:2 28569:3 28599:1 28618:1 28648:1 28659:1 28678:1 28684:5 28720:7 28727:1 28730:1 28738:2 28756:1 28789:1 28798:1 28814:1 28857:1 28942:1 28957:1 28983:1 28994:1 28998:1 29050:1 29060:1 29062:1 29067:1 29073:1 29103:1 29130:1 29150:1 29187:1 29214:1 29229:1 29243:1 29249:2 29297:2 29306:1 29347:1 29463:1 29473:1 29477:2 29536:1 29581:3 29591:1 29603:1 29606:1 29616:1 29626:1 29645:1 29667:2 29816:1 29822:4 29854:1
12 39:1 51:1 65:2 137:1 179:1 211:1 239:2 247:1 313:1 325:1 363:1 398:2 405:2 417:2 424:1 448:1 451:3 473:2 559:1 565:1 592:1 622:1 650:1 722:1 768:1 832:1 835:1 905:2 910:1 923:1 928:3 933:1 944:1 976:1 986:1 1010:1 1016:1 1038:1 1040:1 1083:1 1105:1 1118:1 1153:1 1208:1 1220:2 1221:1 1247:1 1258:2 1293:2 1303:1 1318:1 1342:1 1353:2 1384:1 1422:4 1465:1 1467:1 1470:1 1473:3 1474:1 1536:1 1557:1 1593:2 1599:1 1671:1 1703:1 1707:1 1716:4 1737:1 1785:1 1812:1 1827:1 1860:2 1869:1 1880:1 1895:1 1898:1 1920:1 1929:1 1935:1 1950:2 1969:1 2037:1 2039:2 2041:1 2066:1 2081:1 2115:1 2239:3 2250:2 2252:1 2261:1 2287:1 2295:1 2296:2 2297:1 2301:3 2304:2 2307:1 2308:1 2312:1 2314:1 2316:1 2324:3 2325:1 2335:1 2338:2 2370:1 2394:3 2403:2 2419:1 2432:1 2440:1 2478:1 2527:1 2534:1 2562:1 2573:1 2601:1 2604:3 2623:1 2657:1 2665:1 2670:1 2731:1 2787:3 2795:1 2824:1 2848:2 2860:1 2871:1 2911:1 2956:3 2967:1 3033:1 3037:1 3040:1 3049:1 3052:1 3060:1 3075:1 3081:1 3121:1 3128:1 3141:1 3172:1 3175:1 3207:1 3261:1 3295:1 3317:1 3340:2 3361:1 3376:1 3388:2 3402:1 3418:1 3479:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3683:1 3698:1 3713:1 3717:1 3766:1 3787:1 3829:1 3858:1 3886:1 3905:1 3923:1 3941:1 4004:1 4010:2 4042:2 4047:1 4076:1 4132:1 4136:1 4140:2 4186:1 4209:1 4238:1 4321:5 4329:2 4335:1 4369:1 4390:3 4416:1 4421:1 4428:1 4480:2 4504:1 4509:1 4563:1 4593:1 4608:1 4609:1 4630:1 4670:1 4675:1 4744:1 4775:1 4789:1 4814:1 4844:2 4911:1 5010:1 5028:6 5056:1 5099:1 5138:4 5153:3 5154:2 5156:1 5161:1 5169:2 5175:1 5183:1 5209:1 5221:1 5376:2 5457:1 5469:1 5487:1 5498:2 5532:5 5579:7 5614:1 5644:1 5682:1 5765:1 5788:2 5805:1 5829:1 5854:1 5922:1 5944:1 5952:1 5959:1 5960:1 5968:1 5992:1 6008:2 6011:1 6144:1 6171:1 6182:1 6223:1 6281:1 6282:3 6303:1 6305:1 6312:1 6316:1 6334:1 6388:1 6392:1 6440:1 6519:1 6526:1 6530:1 6537:1 6602:1 6605:1 6609:1 6612:1 6613:1 6621:1 6622:1 6629:2 6630:6 6633:1 6650:1 6683:1 6729:1 6770:1 6780:1 6785:2 6827:1 6914:1 6927:1 6962:2 6974:1 6980:1 7001:1 7046:1 7049:1 7055:1 7071:2 7097:3 7123:1 7134:1 7169:1 7208:1 7331:1 7404:1 7407:2 7463:1 7501:1 7509:1 7519:1 7520:1 7537:1 7706:2 7747:2 7753:1 7762:3 7801:1 7817:1 7829:1 7870:2 7883:1 7914:1 7917:1 7952:7 7954:5 7960:1 7968:1 7971:1 7975:1 8011:1 8029:17 8043:3 8050:2 8054:1 8061:1 8098:1 8108:2 8109:2 8142:2 8164:1 8221:1 8237:1 8298:1 8354:2 8408:1 8429:1 8490:1 8513:3 8548:1 8552:1 8561:1 8598:1 8614:1 8666:1 8729:1 8735:1 8761:1 8791:1 8798:1 8804:1 8842:1 8884:1 8885:1 8887:1 8899:1 8900:1 8927:1 8940:1 8945:2 8961:1 8992:2 8997:1 9030:1 9054:1 9067:1 9148:1 9200:1 9209:1 9212:1 9312:1 9313:1 9324:1 9351:1 9372:1 9400:2 9417:1 9426:1 9458:1 9480:3 9510:1 9517:1 9536:1 9539:1 9565:1 9567:1 9594:1 9610:1 9613:2 9657:1 9681:1 9702:1 9707:1 9765:3 9798:1 9820:1 9832:2 9844:1 9862:1 9881:1 9884:2 9904:2 9925:1 9950:1 9957:1 9961:1 9962:1 9966:1 9997:3 10018:2 10132:1 10175:2 10233:1 10234:3 10235:1 10239:1 10283:1 10288:1 10372:1 10381:1 10393:1 10427:1 10439:1 10444:1 10519:1 10572:1 10576:1 10623:1 10652:1 10659:2 10761:1 10816:2 10847:1 10884:1 10891:3 10904:1 10989:1 11001:1 11012:5 11019:1 11048:1 11077:1 11079:1 11120:1 11289:1 11295:2 11311:1 11315:1 11317:1 11340:1 11348:1 11372:1 11400:1 11418:3 11460:1 11469:1 11473:1 11496:1 11501:1 11536:1 11550:1 11560:1 11599:1 11609:2 11705:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:1 11807:1 11874:2 11881:1 11882:1 11895:1 11909:2 11954:1 11969:1 11982:1 12002:1 12055:1 12064:1 12067:1 12069:1 12070:1 12074:1 12089:1 12121:1 12149:1 12168:1 12201:1 12208:1 12209:1 12264:1 12282:1 12331:1 12356:1 12365:1 12479:3 12522:2 12529:2 12543:1 12546:1 12565:1 12583:1 12605:1 12623:2 12683:1 12791:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12993:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13163:1 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13416:1 13492:2 13494:2 13498:2 13514:1 13520:1 13522:1 13539:1 13551:1 13582:1 13647:1 13656:1 13658:1 13665:1 13681:2 13708:2 13783:1 13792:1 13804:1 13843:1 13876:1 13930:1 13969:3 13984:1 14013:1 14016:2 14020:3 14038:1 14062:1 14138:1 14166:2 14170:1 14252:1 14262:2 14282:1 14300:2 14305:1 14321:2 14340:2 14341:1 14347:1 14385:1 14456:1 14490:1 14491:2 14495:2 14553:1 14562:1 14661:1 14678:1 14679:1 14682:1 14704:1 14712:1 14735:1 14777:1 14808:1 14836:2 14844:1 14852:1 14863:1 14870:1 14873:1 14884:1 14945:1 15016:1 15065:1 15067:1 15090:1 15092:2 15137:1 15142:3 15178:1 15267:1 15269:2 15271:1 15393:1 15410:1 15416:1 15423:1 15435:1 15439:1 15490:1 15498:1 15588:1 15603:1 15652:1 15675:1 15708:1 15717:1 15725:1 15726:1 15728:1 15730:1 15767:1 15807:1 15892:1 15920:1 15931:2 15968:1 15993:1 16010:1 16034:1 16078:3 16094:1 16097:3 16117:1 16118:1 16121:1 16129:2 16145:1 16158:2 16166:1 16183:1 16234:1 16259:2 16304:2 16315:1 16325:1 16363:1 16389:1 16391:2 16421:1 16480:1 16481:1 16492:1 16508:2 16509:1 16519:1 16559:1 16570:2 16656:1 16659:1 16673:2 16682:2 16697:1 16715:1 16763:1 16780:1 16798:1 16800:1 16805:2 16900:1 16930:1 16948:1 16981:1 17008:1 17026:1 17035:3 17048:1 17069:1 17088:1 17110:1 17112:2 17254:1 17293:1 17351:1 17368:1 17370:1 17384:1 17441:1 17449:1 17481:1 17509:1 17544:1 17570:1 17572:1 17597:1 17627:1 17637:1 17730:1 17734:1 17763:1 17774:2 17894:1 17946:1 17948:1 17957:1 17962:1 17983:1 17986:1 18010:1 18120:1 18127:1 18141:1 18150:1 18151:1 18166:1 18174:1 18221:2 18235:1 18244:2 18251:1 18288:1 18290:1 18295:1 18297:1 18318:1 18323:1 18342:2 18343:1 18345:1 18369:1 18372:1 18393:1 18394:1 18422:1 18441:1 18448:1 18517:1 18600:2 18613:2 18629:1 18631:1 18668:1 18675:1 18754:1 18789:1 18862:1 18965:1 18975:4 18988:1 18998:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19184:1 19201:1 19208:1 19214:1074 19221:1 19243:1 19260:1 19282:1 19293:1 19524:1 19543:1 19590:1 19734:1 19821:1 19892:1 19924:1 20016:5 20074:1 20108:1 20126:2 20135:1 20202:2 20223:1 20233:2 20247:1 20252:1 20267:1 20276:2 20282:1 20321:1 20327:1 20341:2 20359:1 20387:1 20405:1 20407:2 20413:1 20504:1 20524:1 20528:1 20596:3 20605:1 20639:1 20660:1 20667:2 20672:1 20701:1 20704:1 20740:1 20752:1 20799:1 20810:1 20815:1 20829:1 20848:1 20864:1 20954:1 20957:1 20961:1 21012:1 21030:1 21036:1 21053:1 21133:1 21164:2 21235:1 21253:1 21282:1 21286:1 21289:1 21295:1 21328:1 21360:1 21373:1 21386:2 21387:1 21411:2 21414:2 21471:1 21474:1 21520:1 21545:1 21563:2 21674:1 21680:1 21724:1 21790:2 21845:1 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21951:1 21971:1 21992:1 22003:1 22136:1 22161:2 22169:1 22182:1 22191:5 22192:1 22206:1 22218:1 22242:2 22252:1 22347:2 22352:1 22364:1 22389:3 22392:1 22404:1 22405:1 22407:1 22520:1 22531:1 22565:1 22577:1 22598:2 22604:1 22616:1 22640:1 22669:1 22700:1 22722:1 22733:1 22791:2 22800:1 22804:2 22807:1 22820:1 22826:1 22864:1 22883:1 22888:1 22926:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23080:1 23089:1 23090:1 23106:1 23117:1 23133:1 23166:1 23173:1 23181:1 23185:1 23199:1 23211:1 23313:3 23317:1 23319:1 23367:1 23444:1 23466:1 23482:1 23534:2 23593:1 23610:4 23635:1 23694:1 23813:1 23819:1 23830:2 23836:1 23858:1 23874:1 23875:1 23882:1 23897:1 23937:1 23967:1 23992:1 24019:1 24044:1 24062:1 24066:1 24071:2 24090:1 24093:1 24109:1 24115:1 24160:1 24236:1 24243:1 24257:1 24350:1 24389:1 24419:1 24478:1 24483:1 24489:1 24586:1 24588:1 24615:3 24643:1 24667:1 24677:1 24679:1 24686:1 24722:1 24733:1 24767:1 24775:1 24783:1 24831:1 24848:2 24852:1 24855:2 24888:6 24927:1 24982:1 24988:1 24995:1 25006:1 25011:2 25088:1 25092:1 25116:1 25134:1 25137:1 25140:1 25156:1 25253:2 25289:1 25292:1 25299:1 25423:1 25506:1 25532:1 25534:1 25538:1 25543:1 25579:3 25592:1 25602:1 25613:1 25641:1 25643:1 25660:1 25678:1 25706:1 25796:1 25799:3 25807:2 25812:1 25827:1 25832:1 25834:1 25843:1 25844:1 25848:1 25861:1 25879:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 26008:1 26041:1 26054:1 26064:1 26081:1 26129:1 26145:1 26170:1 26279:1 26282:4 26286:1 26323:1 26345:1 26350:1 26382:1 26415:1 26444:2 26450:1 26454:1 26456:1 26475:2 26529:1 26540:1 26605:4 26646:1 26652:1 26668:1 26688:1 26736:1 26751:1 26757:1 26824:1 26855:1 26887:1 26932:3 26948:3 26980:1 26987:1 27017:1 27057:1 27082:1 27088:1 27151:1 27191:1 27245:1 27281:1 27308:2 27310:1 27324:1 27370:1 27383:1 27406:1 27425:1 27474:1 27493:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27650:1 27676:1 27687:2 27697:1 27714:1 27763:2 27770:1 27778:1 27783:1 27790:1 27812:1 27815:1 27821:2 27822:1 27830:1 27833:1 27836:1 27841:1 27849:1 27858:1 27882:1 27915:3 27923:1 27929:2 27962:1 28049:2 28075:1 28097:1 28100:1 28116:2 28227:1 28232:1 28243:1 28284:1 28321:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28502:1 28516:5 28524:1 28539:1 28549:2 28569:3 28599:1 28618:1 28648:1 28659:1 28678:1 28684:5 28720:7 28727:1 28730:1 28738:2 28756:1 28789:1 28798:1 28814:1 28857:1 28942:1 28957:1 28983:1 28994:1 28998:1 29050:1 29060:1 29062:1 29067:1 29073:1 29103:1 29130:1 29150:1 29187:1 29214:1 29229:1 29243:1 29249:2 29297:2 29306:1 29347:1 29463:1 29473:1 29477:2 29536:1 29581:3 29591:1 29603:1 29606:1 29616:1 29626:1 29645:1 29667:2 29766:1 29816:1 29822:4 29854:1
12 39:1 51:1 65:2 120:1 137:1 179:1 211:1 239:2 247:1 313:1 325:1 363:2 398:2 405:2 417:2 424:1 448:1 451:3 473:2 559:1 565:1 592:1 622:1 650:1 722:1 768:1 832:1 835:1 905:2 910:1 923:1 928:3 933:1 944:1 976:1 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1083:1 1105:1 1118:1 1153:1 1208:1 1220:2 1221:1 1247:1 1258:2 1293:2 1303:1 1318:1 1342:1 1353:3 1384:1 1422:4 1465:1 1467:1 1470:1 1473:3 1474:1 1536:1 1557:1 1593:2 1599:1 1671:1 1703:1 1707:1 1716:4 1737:1 1785:1 1812:1 1827:1 1860:2 1869:1 1880:1 1895:2 1898:1 1920:1 1929:1 1935:1 1950:2 1969:1 2037:1 2039:2 2041:1 2066:1 2081:1 2115:1 2239:4 2250:2 2252:1 2261:1 2287:1 2295:1 2296:2 2297:1 2301:3 2304:2 2307:2 2308:1 2312:1 2314:1 2316:1 2324:3 2325:1 2335:1 2338:2 2370:1 2394:4 2403:2 2419:1 2432:1 2440:1 2478:1 2527:1 2534:1 2562:1 2573:1 2601:1 2604:3 2623:1 2657:1 2665:1 2670:1 2731:1 2787:3 2795:1 2824:1 2848:2 2860:1 2871:1 2911:1 2956:3 2967:1 3033:1 3037:1 3040:1 3049:1 3052:1 3060:1 3075:1 3081:1 3121:1 3128:1 3141:1 3172:1 3175:1 3204:1 3207:1 3261:1 3272:1 3295:1 3317:1 3340:2 3361:1 3376:1 3388:2 3402:1 3418:1 3479:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3683:1 3698:1 3713:1 3717:1 3766:1 3787:1 3829:1 3858:1 3886:1 3905:1 3923:1 3941:1 4004:1 4010:2 4042:2 4047:1 4076:1 4132:1 4136:1 4140:2 4186:1 4209:1 4238:1 4321:5 4329:2 4335:1 4369:1 4390:4 4416:1 4421:1 4428:1 4480:2 4504:1 4509:1 4563:1 4593:1 4608:1 4609:1 4630:1 4670:1 4675:1 4689:1 4744:1 4775:1 4789:1 4814:1 4844:2 4911:1 5010:1 5028:6 5056:1 5099:1 5138:4 5153:3 5154:2 5156:1 5161:1 5169:2 5175:2 5183:1 5209:1 5221:1 5376:2 5457:1 5469:1 5487:1 5498:3 5532:5 5579:7 5614:1 5644:1 5682:1 5765:1 5788:2 5805:1 5829:1 5854:1 5904:1 5922:1 5944:1 5952:1 5959:1 5960:1 5968:1 5992:1 6008:2 6011:1 6144:1 6171:1 6182:1 6223:1 6281:1 6282:3 6303:1 6305:1 6312:1 6316:1 6334:1 6388:1 6392:1 6440:1 6487:1 6519:1 6526:1 6530:1 6537:1 6602:1 6605:1 6609:1 6612:1 6613:1 6621:1 6622:1 6629:2 6630:6 6633:1 6650:1 6683:1 6729:1 6770:1 6780:1 6785:2 6827:1 6914:1 6927:1 6962:2 6974:1 6980:1 7001:1 7046:1 7049:1 7055:1 7071:2 7097:3 7123:1 7134:1 7169:1 7208:1 7331:1 7404:1 7407:2 7463:1 7501:1 7509:1 7519:1 7520:1 7537:1 7706:2 7723:1 7747:3 7753:1 7762:3 7801:1 7817:1 7829:1 7870:2 7883:1 7914:1 7917:1 7952:7 7954:5 7960:1 7968:1 7971:1 7975:1 7987:1 8011:1 8029:18 8043:3 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8142:2 8164:1 8221:1 8237:1 8298:1 8354:2 8408:1 8429:1 8490:2 8513:3 8548:1 8552:1 8561:1 8598:1 8614:1 8666:1 8729:1 8735:1 8761:1 8791:1 8798:1 8804:1 8842:1 8884:1 8885:1 8887:1 8899:1 8900:1 8927:1 8940:1 8945:2 8961:1 8992:2 8997:1 9030:1 9054:1 9067:1 9148:1 9200:1 9209:1 9212:1 9312:1 9313:1 9324:2 9351:1 9372:1 9400:2 9417:1 9426:1 9458:1 9480:3 9510:1 9517:2 9536:1 9539:1 9565:1 9567:1 9594:1 9610:1 9613:2 9654:1 9657:1 9681:1 9702:1 9707:1 9725:1 9765:3 9798:1 9820:1 9832:2 9844:1 9862:1 9881:1 9884:2 9904:2 9925:1 9950:1 9957:1 9961:1 9962:1 9966:1 9997:3 10018:3 10132:1 10175:2 10233:1 10234:3 10235:1 10239:1 10283:1 10288:1 10372:1 10381:1 10393:1 10427:1 10439:1 10444:1 10519:1 10572:1 10576:1 10623:1 10652:1 10659:2 10761:1 10816:2 10847:1 10884:1 10891:3 10904:1 10989:1 11001:1 11012:5 11019:1 11048:1 11077:1 11079:1 11120:1 11289:1 11295:2 11311:1 11315:1 11317:1 11340:1 11348:1 11372:1 11400:1 11418:3 11460:1 11469:1 11473:1 11496:1 11501:1 11536:1 11550:1 11560:1 11599:1 11609:2 11705:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:1 11807:1 11874:2 11881:1 11882:1 11895:1 11909:2 11954:1 11969:1 11982:1 12002:2 12055:1 12064:1 12067:1 12069:1 12070:1 12074:1 12089:1 12121:1 12125:1 12144:1 12149:1 12168:1 12201:1 12208:1 12209:1 12264:1 12282:1 12331:1 12356:1 12365:1 12479:4 12522:2 12529:2 12543:1 12546:1 12565:1 12583:1 12605:1 12623:2 12683:1 12791:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12993:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13163:1 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13416:1 13492:2 13494:3 13498:2 13514:1 13520:1 13522:1 13539:1 13551:1 13582:1 13647:1 13656:1 13658:1 13665:1 13681:2 13708:2 13783:1 13792:1 13804:1 13843:1 13876:1 13886:1 13930:1 13969:3 13984:1 14013:1 14016:2 14020:3 14038:1 14062:1 14101:1 14138:1 14165:1 14166:2 14170:1 14252:1 14262:2 14282:1 14300:2 14305:1 14321:2 14340:2 14341:1 14347:1 14385:1 14456:1 14458:1 14490:1 14491:2 14495:2 14553:2 14562:1 14661:1 14678:1 14679:1 14682:1 14704:1 14712:1 14735:1 14777:1 14808:1 14836:2 14844:1 14852:1 14863:1 14870:1 14873:1 14884:1 14945:1 15016:1 15065:1 15067:1 15090:1 15092:2 15137:1 15142:3 15178:1 15267:1 15269:2 15271:1 15393:1 15410:1 15416:1 15423:1 15435:1 15439:1 15490:1 15498:1 15588:1 15603:1 15652:1 15675:1 15708:2 15717:1 15725:1 15726:1 15728:1 15730:1 15767:1 15807:1 15892:1 15920:1 15931:2 15968:1 15993:1 16010:1 16034:1 16048:1 16078:3 16094:1 16097:3 16117:1 16118:1 16121:1 16129:2 16145:1 16158:2 16166:1 16183:1 16234:1 16259:2 16304:2 16315:1 16325:1 16363:1 16389:1 16391:2 16421:1 16480:1 16481:1 16492:1 16508:2 16509:1 16519:1 16559:1 16570:2 16656:1 16659:1 16673:2 16682:2 16697:1 16715:1 16763:1 16780:1 16798:1 16800:2 16805:2 16900:1 16930:1 16948:1 16981:1 17008:1 17026:1 17035:3 17048:1 17069:1 17088:1 17110:1 17112:2 17254:1 17293:1 17351:1 17368:1 17370:1 17384:1 17441:1 17449:1 17481:1 17509:1 17544:1 17570:1 17572:1 17597:1 17627:1 17637:1 17663:1 17730:1 17734:1 17763:1 17774:2 17894:1 17946:1 17948:1 17957:1 17962:1 17965:1 17983:1 17986:1 18010:1 18120:1 18127:1 18141:1 18150:1 18151:1 18166:1 18174:1 18221:2 18235:1 18244:2 18251:1 18286:1 18288:1 18290:1 18295:1 18297:1 18318:1 18323:1 18342:2 18343:1 18345:1 18369:1 18372:1 18393:1 18394:1 18422:1 18441:1 18448:1 18503:1 18517:1 18600:2 18613:2 18629:1 18631:1 18668:1 18675:1 18754:1 18789:1 18862:1 18965:1 18975:4 18988:1 18990:1 18998:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19184:1 19201:1 19208:1 19214:1115 19221:1 19243:1 19260:1 19270:1 19282:1 19293:1 19524:1 19543:1 19590:1 19734:1 19766:1 19792:1 19821:1 19892:1 19924:1 20016:6 20074:1 20108:1 20126:2 20135:1 20202:2 20223:1 20233:2 20247:1 20252:1 20267:1 20276:2 20282:1 20321:1 20327:1 20341:2 20359:1 20387:1 20405:1 20407:2 20413:1 20483:1 20504:1 20524:1 20528:1 20596:3 20605:1 20639:1 20660:1 20667:2 20672:1 20701:1 20704:1 20740:1 20742:1 20752:1 20760:1 20799:1 20810:1 20815:1 20829:2 20848:1 20864:1 20954:1 20957:1 20961:1 21012:1 21030:1 21036:1 21053:1 21133:1 21164:2 21235:1 21239:1 21253:1 21282:1 21286:1 21289:1 21295:1 21328:1 21360:1 21373:1 21386:2 21387:1 21411:2 21414:2 21471:1 21474:1 21520:1 21545:1 21563:2 21674:1 21680:1 21724:1 21790:2 21845:1 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21951:1 21971:1 21992:1 22003:1 22136:1 22161:2 22169:1 22182:1 22191:5 22192:1 22206:1 22218:1 22242:2 22252:1 22342:1 22347:3 22352:1 22364:1 22387:1 22389:3 22392:1 22404:1 22405:1 22407:1 22436:1 22520:1 22531:1 22565:1 22577:1 22598:2 22604:1 22616:1 22640:1 22669:1 22700:1 22722:1 22733:1 22791:2 22800:1 22804:2 22807:1 22820:1 22826:1 22864:1 22883:1 22888:1 22926:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23080:1 23089:1 23090:1 23106:1 23117:1 23133:1 23166:1 23173:1 23181:1 23185:1 23199:1 23211:1 23313:4 23317:1 23319:1 23367:1 23444:1 23466:1 23482:1 23534:2 23559:1 23593:1 23610:4 23635:1 23694:1 23767:1 23813:1 23819:1 23830:2 23836:1 23858:1 23874:1 23875:1 23882:1 23897:1 23937:1 23967:1 23992:1 24019:1 24044:1 24062:1 24066:2 24071:2 24090:1 24093:1 24109:1 24115:1 24160:1 24236:1 24243:1 24257:1 24289:1 24350:1 24389:1 24419:1 24478:1 24483:1 24489:1 24586:1 24588:1 24615:3 24624:1 24643:1 24667:1 24677:1 24679:1 24686:1 24722:1 24733:1 24767:1 24775:2 24783:1 24831:1 24848:2 24852:1 24855:2 24888:6 24927:1 24982:1 24988:1 24995:1 25006:1 25011:2 25088:1 25092:1 25116:1 25134:1 25137:1 25140:1 25156:1 25253:2 25289:1 25292:1 25299:1 25423:1 25506:1 25532:1 25534:1 25538:2 25543:1 25579:3 25592:1 25602:1 25613:1 25641:1 25643:1 25660:1 25678:1 25706:1 25796:1 25799:3 25807:2 25812:1 25827:1 25832:1 25834:1 25843:1 25844:1 25848:1 25861:1 25879:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 26008:1 26041:1 26054:1 26064:1 26081:1 26129:1 26145:1 26170:1 26279:1 26282:4 26286:1 26323:1 26345:1 26350:1 26382:1 26415:1 26444:2 26450:1 26454:1 26456:1 26475:2 26529:2 26540:1 26605:4 26646:1 26652:1 26668:1 26688:1 26736:1 26751:1 26757:1 26824:1 26855:1 26887:1 26932:3 26948:3 26980:1 26987:1 27017:1 27057:1 27082:1 27088:1 27151:1 27161:1 27191:1 27245:1 27281:1 27308:2 27310:1 27324:1 27370:1 27383:1 27406:1 27425:1 27432:1 27474:1 27493:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27650:1 27676:1 27687:2 27697:1 27713:1 27714:1 27763:2 27770:1 27778:1 27783:1 27790:1 27812:2 27815:1 27821:2 27822:1 27830:1 27833:1 27836:1 27841:1 27849:1 27858:1 27882:2 27915:4 27923:1 27929:2 27962:1 28049:2 28075:1 28097:1 28100:1 28116:2 28227:1 28232:1 28243:1 28284:1 28321:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28502:1 28516:5 28524:1 28539:1 28549:2 28569:4 28599:1 28618:1 28648:1 28659:1 28678:1 28684:5 28720:7 28727:1 28730:1 28738:2 28756:1 28789:1 28798:1 28814:1 28857:1 28942:1 28957:1 28983:1 28994:1 28998:1 29050:1 29060:1 29062:1 29067:1 29073:1 29103:1 29130:2 29150:1 29187:1 29214:1 29229:1 29243:1 29249:2 29297:2 29306:1 29347:1 29463:1 29472:1 29473:1 29477:2 29536:1 29581:4 29591:2 29603:1 29606:1 29616:1 29626:1 29645:1 29667:2 29766:1 29816:1 29822:4 29854:1 29874:1
12 39:1 51:1 65:2 120:1 137:1 179:1 211:1 239:2 247:1 313:1 325:1 363:2 398:2 405:2 417:2 424:1 448:1 451:3 473:2 490:1 559:1 565:1 592:1 622:1 650:1 722:1 768:1 832:1 835:1 905:2 910:1 923:1 928:3 933:1 944:1 976:1 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1083:1 1105:1 1118:1 1153:1 1208:1 1220:2 1221:1 1247:1 1258:2 1293:2 1303:1 1318:1 1342:1 1353:3 1384:1 1422:4 1465:1 1467:1 1470:1 1473:3 1474:1 1536:1 1557:1 1593:2 1599:1 1671:1 1703:1 1707:1 1716:4 1737:1 1785:1 1812:1 1827:1 1860:2 1869:1 1880:1 1895:2 1898:1 1920:1 1929:1 1935:1 1950:2 1969:1 2037:1 2039:2 2041:1 2066:1 2081:1 2115:1 2239:4 2250:2 2252:1 2261:1 2287:1 2295:1 2296:2 2297:1 2301:3 2304:2 2307:2 2308:1 2312:1 2314:1 2316:1 2324:3 2325:1 2335:1 2338:2 2370:1 2394:4 2403:2 2405:1 2419:1 2432:1 2440:1 2478:1 2527:1 2534:1 2562:1 2573:1 2601:1 2604:3 2623:1 2657:1 2665:1 2670:1 2731:1 2787:3 2795:1 2824:1 2848:2 2860:1 2871:1 2911:1 2956:3 2967:1 3033:1 3037:1 3040:1 3049:1 3052:1 3060:1 3075:1 3081:1 3121:1 3128:1 3141:1 3172:1 3175:1 3204:1 3207:1 3261:1 3272:1 3295:1 3317:1 3340:2 3361:1 3376:1 3388:2 3402:1 3418:1 3479:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3683:1 3698:1 3713:1 3717:1 3757:1 3766:1 3780:1 3787:1 3829:1 3858:1 3886:1 3896:1 3901:1 3905:1 3923:1 3941:1 4004:1 4010:2 4042:2 4047:1 4076:1 4132:1 4136:1 4140:2 4186:1 4209:1 4238:1 4321:5 4329:2 4335:1 4369:1 4390:4 4416:1 4421:1 4428:1 4454:1 4480:2 4504:1 4509:1 4563:1 4593:1 4608:1 4609:1 4630:1 4670:1 4675:1 4689:1 4691:1 4744:1 4775:1 4789:1 4814:1 4844:2 4911:1 5010:1 5028:6 5056:1 5099:1 5138:4 5153:3 5154:2 5156:1 5161:1 5169:2 5175:2 5183:1 5209:1 5221:1 5376:2 5457:1 5469:1 5487:1 5498:3 5532:5 5579:8 5614:1 5644:1 5682:1 5765:1 5788:2 5805:1 5829:1 5854:1 5904:1 5922:1 5944:1 5952:1 5959:1 5960:1 5968:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:1 6282:3 6303:1 6305:1 6311:1 6312:1 6316:1 6334:1 6388:1 6392:1 6440:1 6487:1 6519:1 6526:1 6530:1 6537:1 6602:1 6605:1 6609:1 6612:1 6613:1 6621:1 6622:1 6629:2 6630:6 6633:1 6650:1 6683:1 6729:1 6770:1 6780:1 6785:2 6827:1 6914:1 6927:1 6962:2 6969:1 6974:1 6980:1 7001:1 7046:1 7049:1 7055:1 7071:2 7097:3 7123:1 7134:1 7169:1 7208:1 7331:1 7404:1 7407:2 7463:1 7501:1 7509:1 7519:1 7520:1 7537:1 7706:2 7723:1 7747:3 7753:1 7762:3 7801:1 7817:1 7829:1 7870:2 7883:1 7914:1 7917:1 7952:7 7954:5 7960:1 7968:1 7971:1 7975:1 7987:1 8011:1 8029:18 8043:3 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8142:2 8164:1 8221:1 8237:1 8298:1 8354:2 8408:1 8429:1 8490:2 8513:3 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8658:1 8666:1 8729:1 8735:1 8761:1 8791:1 8798:1 8804:1 8842:1 8884:1 8885:1 8887:1 8899:1 8900:1 8927:1 8940:1 8945:2 8961:1 8992:2 8997:1 9030:1 9054:1 9067:1 9148:1 9200:2 9209:1 9212:1 9312:1 9313:1 9324:2 9351:1 9372:1 9400:2 9417:1 9426:1 9458:1 9480:3 9510:1 9517:2 9536:1 9539:1 9565:1 9567:1 9594:1 9610:1 9613:2 9654:1 9657:1 9681:1 9702:1 9704:1 9707:1 9725:1 9765:3 9798:1 9820:1 9832:2 9844:1 9862:2 9881:1 9884:2 9904:2 9925:1 9950:1 9957:1 9961:1 9962:1 9966:1 9997:3 10018:3 10132:1 10175:3 10233:1 10234:3 10235:1 10239:1 10283:1 10288:1 10372:1 10379:1 10380:1 10381:1 10393:1 10427:1 10439:1 10444:1 10519:1 10572:1 10576:1 10623:1 10652:1 10659:2 10757:1 10761:1 10816:2 10847:1 10884:1 10891:3 10904:1 10957:1 10989:1 11001:1 11012:5 11019:1 11048:1 11077:1 11079:1 11120:1 11289:1 11295:2 11311:1 11315:1 11317:1 11340:1 11348:1 11372:1 11400:1 11418:3 11460:1 11469:1 11473:1 11496:1 11501:1 11536:1 11550:1 11560:1 11599:1 11609:2 11705:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:1 11807:1 11874:2 11881:1 11882:1 11895:1 11909:2 11954:1 11969:1 11982:1 12002:2 12055:1 12064:1 12067:1 12069:1 12070:1 12074:1 12089:1 12121:1 12125:1 12144:1 12149:1 12168:1 12201:1 12208:1 12209:1 12264:1 12282:1 12331:1 12356:1 12365:1 12479:4 12507:1 12508:1 12522:2 12529:2 12543:1 12546:1 12565:1 12583:1 12605:1 12623:2 12683:1 12791:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12993:1 13000:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13163:1 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13416:1 13492:2 13494:3 13498:2 13514:1 13520:1 13522:1 13539:1 13551:1 13582:1 13647:1 13656:1 13658:1 13665:1 13681:2 13708:2 13783:1 13792:1 13804:1 13843:1 13876:1 13886:1 13930:1 13969:3 13984:1 14013:1 14016:2 14020:3 14038:1 14062:1 14101:1 14138:1 14151:1 14165:1 14166:2 14170:1 14252:1 14262:2 14282:1 14300:2 14305:1 14321:2 14340:2 14341:1 14347:1 14385:1 14456:1 14458:1 14490:1 14491:2 14495:2 14553:2 14562:1 14661:1 14678:1 14679:1 14682:1 14704:1 14712:1 14735:1 14777:1 14808:1 14836:2 14844:1 14852:1 14863:1 14870:1 14873:1 14881:1 14884:1 14899:1 14945:1 14959:1 15016:1 15065:1 15067:1 15090:1 15092:2 15137:1 15142:3 15146:1 15178:1 15254:1 15267:1 15269:2 15271:1 15393:1 15410:1 15416:1 15423:1 15435:1 15439:1 15490:1 15498:1 15560:1 15588:1 15603:1 15615:1 15652:1 15675:1 15708:2 15717:1 15725:1 15726:1 15728:1 15730:1 15767:1 15807:1 15892:1 15920:1 15931:2 15968:1 15993:1 16010:1 16034:1 16048:1 16078:3 16094:1 16097:3 16117:1 16118:1 16121:1 16129:2 16145:1 16158:2 16166:1 16183:1 16234:1 16259:2 16304:2 16315:1 16325:1 16363:1 16389:1 16391:2 16421:1 16480:1 16481:1 16492:1 16508:2 16509:1 16519:1 16559:1 16570:2 16656:1 16659:1 16673:2 16682:2 16697:1 16715:1 16763:1 16780:1 16798:1 16800:2 16805:2 16821:1 16900:1 16919:1 16930:1 16948:1 16981:1 17008:1 17026:1 17035:3 17048:1 17069:1 17088:1 17110:1 17112:2 17254:1 17293:1 17351:1 17368:1 17370:1 17384:1 17441:1 17449:1 17481:1 17509:1 17544:1 17570:1 17572:1 17597:1 17627:1 17637:1 17663:1 17730:1 17734:1 17763:1 17774:2 17894:1 17946:1 17948:1 17957:1 17962:1 17965:1 17983:1 17986:1 18010:1 18120:1 18127:1 18141:1 18150:1 18151:1 18166:1 18174:1 18221:2 18235:1 18244:2 18251:1 18286:1 18288:1 18290:1 18295:1 18297:1 18318:1 18323:1 18342:2 18343:1 18345:1 18369:1 18372:1 18392:1 18393:1 18394:1 18422:1 18441:1 18448:1 18503:1 18517:1 18600:2 18613:2 18629:1 18631:1 18668:1 18675:1 18754:1 18789:1 18805:1 18862:1 18965:1 18975:4 18988:1 18990:1 18998:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19184:1 19201:1 19208:1 19214:1179 19221:1 19243:1 19260:1 19270:1 19282:1 19293:1 19524:1 19543:1 19590:1 19734:1 19766:1 19792:1 19821:1 19845:1 19892:1 19924:1 20016:6 20074:1 20108:1 20126:2 20135:1 20202:2 20223:1 20233:2 20247:1 20252:1 20267:1 20276:2 20282:1 20321:1 20327:1 20341:2 20359:1 20387:1 20405:1 20407:2 20413:1 20483:1 20504:1 20524:1 20528:1 20596:3 20605:1 20639:1 20660:1 20667:2 20672:1 20701:1 20704:1 20740:1 20742:1 20752:1 20760:1 20761:1 20799:1 20810:1 20815:1 20829:2 20848:1 20864:1 20954:1 20957:1 20961:1 21012:1 21030:1 21036:1 21037:1 21053:1 21133:1 21164:2 21235:1 21239:1 21253:1 21282:1 21286:1 21289:1 21295:1 21328:2 21360:1 21373:1 21386:2 21387:1 21411:2 21414:2 21471:1 21474:1 21520:1 21545:1 21563:2 21674:1 21680:1 21724:1 21790:2 21845:1 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21951:1 21971:1 21992:1 22003:1 22136:1 22161:2 22169:1 22182:1 22191:5 22192:1 22206:1 22218:1 22242:2 22252:1 22342:1 22347:3 22352:1 22364:1 22387:1 22389:3 22392:1 22404:1 22405:1 22407:1 22436:1 22520:1 22531:1 22565:1 22577:1 22598:2 22604:1 22616:1 22640:1 22669:1 22700:1 22722:1 22733:1 22791:2 22800:1 22804:2 22807:1 22820:1 22826:1 22864:1 22883:1 22888:1 22926:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23080:1 23089:1 23090:1 23106:1 23117:1 23133:1 23166:1 23173:1 23181:1 23185:1 23199:1 23211:1 23313:4 23317:1 23319:1 23367:1 23444:1 23466:2 23482:1 23534:2 23559:1 23593:1 23610:4 23635:1 23694:1 23767:1 23813:1 23819:1 23830:2 23836:1 23858:1 23874:1 23875:1 23882:1 23897:1 23937:1 23967:1 23992:1 24019:1 24044:1 24062:1 24066:2 24071:2 24090:1 24093:1 24109:1 24115:1 24160:1 24190:1 24236:1 24243:1 24257:1 24289:1 24350:1 24389:1 24419:1 24478:1 24483:1 24489:1 24586:1 24588:1 24615:3 24624:1 24643:1 24667:1 24677:1 24679:1 24686:1 24722:1 24733:1 24767:1 24775:2 24783:1 24831:1 24848:2 24852:1 24855:2 24888:6 24927:1 24982:1 24988:1 24995:1 25006:1 25011:2 25088:1 25092:1 25116:1 25134:1 25137:1 25140:1 25156:1 25253:2 25289:1 25292:1 25299:1 25423:1 25506:1 25532:1 25534:1 25538:2 25543:1 25579:3 25592:1 25602:1 25613:1 25641:1 25643:1 25660:1 25678:1 25706:1 25715:1 25796:1 25799:3 25807:2 25812:1 25827:1 25832:1 25834:1 25843:1 25844:1 25848:2 25861:1 25879:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 26008:1 26041:1 26054:1 26064:1 26081:1 26129:1 26145:1 26170:1 26230:1 26279:1 26282:4 26286:1 26323:1 26345:1 26350:1 26382:1 26415:1 26444:2 26450:1 26454:1 26456:1 26475:2 26529:2 26540:1 26605:4 26646:1 26652:1 26668:1 26688:1 26736:1 26751:1 26757:1 26824:1 26855:1 26887:1 26932:3 26948:3 26980:1 26987:1 27017:1 27057:1 27082:1 27088:1 27151:1 27161:1 27191:1 27245:1 27281:1 27308:2 27310:1 27324:1 27370:1 27383:1 27406:1 27425:1 27432:1 27474:1 27493:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27650:1 27676:1 27687:2 27697:1 27713:1 27714:1 27763:2 27766:1 27770:1 27778:1 27783:1 27790:1 27812:3 27815:1 27821:2 27822:1 27830:1 27833:1 27836:1 27841:1 27849:1 27858:1 27882:2 27915:4 27923:1 27929:2 27962:1 28049:2 28075:1 28097:1 28100:1 28116:2 28227:1 28232:1 28243:1 28284:1 28321:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28489:1 28502:1 28516:5 28524:1 28539:1 28549:2 28569:4 28599:1 28618:1 28648:1 28659:1 28678:1 28684:5 28720:7 28727:1 28730:1 28738:2 28756:1 28789:1 28798:1 28801:1 28814:1 28857:1 28942:1 28957:1 28983:1 28994:1 28998:1 29050:1 29060:1 29062:1 29067:1 29073:1 29103:1 29130:2 29150:1 29167:1 29187:1 29214:1 29229:1 29243:1 29249:2 29297:2 29306:1 29347:1 29463:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:4 29591:2 29603:1 29606:1 29616:1 29626:1 29645:1 29667:2 29766:1 29816:1 29822:4 29854:1 29874:1
12 2:1 39:1 51:1 65:2 120:1 137:1 179:1 211:1 239:2 247:1 313:1 325:1 363:2 398:2 405:2 417:2 424:1 448:1 451:3 473:2 490:1 559:1 565:1 592:1 622:1 650:1 722:1 768:1 832:1 835:1 905:3 910:1 923:1 928:3 933:1 944:1 976:1 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1083:1 1105:1 1118:1 1129:1 1153:1 1208:1 1220:2 1221:1 1247:1 1258:2 1293:2 1303:1 1318:1 1322:1 1342:1 1353:3 1384:1 1422:4 1465:1 1467:1 1470:1 1473:3 1474:1 1536:1 1557:1 1593:2 1599:1 1671:1 1703:1 1707:1 1716:4 1737:1 1785:1 1812:1 1827:1 1830:1 1860:2 1869:1 1880:1 1895:2 1898:1 1920:1 1929:1 1935:1 1950:2 1969:1 2037:1 2039:2 2041:1 2066:1 2081:1 2115:1 2239:4 2250:2 2252:1 2261:1 2287:1 2295:1 2296:2 2297:1 2301:3 2304:2 2307:2 2308:1 2312:1 2314:1 2316:1 2324:4 2325:1 2335:1 2338:2 2370:1 2394:4 2403:2 2405:1 2419:1 2432:1 2440:1 2478:1 2527:1 2534:1 2562:1 2573:1 2589:1 2601:1 2604:3 2623:1 2657:1 2665:1 2670:1 2731:1 2755:1 2787:3 2795:1 2824:1 2848:2 2860:1 2871:1 2911:1 2956:4 2967:1 3033:1 3037:1 3040:1 3049:1 3052:1 3060:1 3075:1 3081:1 3121:1 3128:1 3141:1 3172:1 3175:1 3204:1 3207:1 3261:1 3272:1 3295:1 3317:1 3340:2 3361:1 3376:1 3388:2 3402:1 3418:1 3479:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3683:1 3698:1 3713:1 3717:1 3746:1 3757:2 3766:1 3780:1 3787:1 3829:1 3858:1 3886:1 3896:1 3901:1 3905:1 3923:1 3941:1 3960:1 4004:1 4010:2 4042:2 4047:1 4076:1 4132:1 4136:1 4140:2 4186:1 4209:1 4238:2 4321:5 4329:2 4335:1 4369:1 4390:4 4416:1 4421:1 4428:1 4454:1 4480:2 4504:1 4509:1 4563:1 4593:1 4608:1 4609:1 4630:1 4670:1 4675:1 4689:1 4691:1 4744:1 4775:2 4789:1 4814:1 4844:3 4911:1 5010:1 5028:6 5056:1 5067:1 5099:1 5138:5 5153:3 5154:2 5156:1 5161:1 5169:2 5175:2 5183:1 5209:1 5221:1 5376:2 5457:1 5469:1 5487:1 5498:3 5522:1 5532:5 5579:8 5614:1 5644:1 5682:1 5765:1 5788:2 5805:1 5829:1 5854:1 5904:1 5922:1 5944:1 5952:1 5959:1 5960:1 5968:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:1 6282:4 6303:1 6305:1 6311:1 6312:1 6316:1 6334:1 6388:1 6392:1 6428:1 6440:2 6487:1 6519:1 6526:1 6530:1 6537:1 6585:1 6602:3 6605:1 6609:1 6612:1 6613:1 6621:1 6622:1 6629:2 6630:6 6633:1 6650:1 6683:1 6729:1 6770:1 6780:1 6785:2 6827:1 6914:1 6927:1 6962:2 6969:1 6974:1 6980:1 7001:1 7046:1 7049:1 7055:1 7071:2 7097:3 7123:1 7134:1 7169:1 7208:1 7237:1 7331:1 7404:1 7407:2 7463:1 7501:1 7509:1 7519:1 7520:1 7537:1 7706:2 7723:1 7747:3 7753:2 7762:3 7801:1 7817:1 7829:1 7870:2 7883:1 7914:1 7917:1 7952:7 7954:5 7960:1 7968:1 7971:1 7975:1 7987:1 8011:1 8029:19 8043:4 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8142:2 8164:1 8221:1 8237:1 8298:1 8354:2 8407:1 8408:1 8429:1 8490:2 8513:3 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8658:1 8666:1 8729:1 8735:1 8761:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:1 8885:1 8887:1 8899:1 8900:1 8927:1 8940:1 8945:2 8961:1 8964:1 8990:1 8992:2 8997:1 9030:1 9054:1 9067:1 9148:1 9200:2 9209:1 9212:1 9312:1 9313:1 9324:2 9351:1 9372:1 9400:2 9405:1 9417:1 9426:1 9458:1 9480:3 9510:1 9517:2 9536:1 9539:1 9565:2 9567:2 9594:1 9610:1 9613:2 9654:1 9657:1 9681:1 9702:1 9704:1 9707:1 9725:1 9741:1 9765:3 9798:1 9820:1 9832:2 9844:1 9862:2 9881:1 9884:2 9893:1 9904:2 9925:1 9950:1 9957:1 9961:1 9962:1 9966:1 9997:3 10018:3 10132:1 10175:3 10233:1 10234:3 10235:1 10239:1 10283:1 10288:1 10372:1 10379:2 10380:1 10381:1 10393:1 10427:1 10439:1 10444:1 10519:1 10549:1 10572:1 10576:1 10577:1 10623:1 10652:2 10659:2 10757:1 10761:2 10762:1 10816:2 10847:1 10884:1 10891:3 10895:1 10904:1 10957:1 10989:1 11001:1 11012:5 11019:1 11021:1 11048:1 11077:1 11079:1 11082:1 11120:1 11284:1 11289:1 11295:2 11311:1 11315:1 11317:1 11340:1 11348:1 11372:1 11400:1 11418:3 11460:1 11469:1 11473:1 11496:1 11501:1 11536:1 11550:1 11560:1 11599:1 11609:2 11705:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:1 11807:3 11874:2 11881:1 11882:1 11895:1 11909:2 11954:1 11966:1 11969:1 11982:1 11987:1 12002:2 12055:1 12064:1 12067:1 12069:1 12070:1 12074:1 12089:1 12121:1 12125:1 12144:1 12149:1 12168:1 12201:1 12208:1 12209:1 12264:1 12282:1 12301:1 12331:1 12356:1 12365:1 12479:4 12507:1 12508:1 12522:2 12529:2 12540:1 12543:1 12546:1 12565:1 12583:1 12605:1 12610:1 12623:2 12683:1 12791:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12993:1 13000:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13163:1 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13416:1 13492:2 13494:3 13498:2 13514:1 13520:1 13522:1 13539:1 13551:1 13582:1 13647:1 13656:2 13658:1 13665:1 13681:2 13708:2 13783:1 13792:1 13804:1 13843:1 13876:1 13886:1 13930:1 13962:1 13969:3 13984:1 14013:1 14016:2 14020:3 14038:2 14062:1 14101:1 14111:1 14138:1 14151:1 14158:1 14165:1 14166:2 14170:1 14252:1 14262:2 14282:1 14300:2 14305:1 14321:2 14340:2 14341:1 14347:1 14385:1 14456:1 14458:1 14490:1 14491:2 14495:2 14535:1 14553:2 14562:1 14661:1 14678:1 14679:1 14682:1 14704:1 14712:1 14735:1 14767:1 14777:1 14808:1 14836:2 14844:1 14852:1 14863:1 14870:1 14873:1 14881:1 14884:1 14899:1 14945:1 14959:2 15016:1 15065:1 15067:1 15090:1 15092:2 15121:1 15137:1 15142:3 15146:1 15178:1 15254:1 15267:1 15269:2 15271:1 15393:1 15410:1 15416:2 15423:1 15435:1 15439:1 15490:1 15498:1 15560:1 15588:1 15603:1 15615:1 15652:1 15675:1 15708:2 15717:1 15725:1 15726:1 15728:1 15730:1 15767:1 15807:1 15892:1 15920:1 15931:2 15968:1 15993:1 16010:1 16034:1 16048:1 16078:3 16094:1 16097:3 16110:1 16117:1 16118:1 16121:1 16129:2 16145:1 16158:3 16166:1 16183:1 16234:1 16259:2 16304:2 16315:1 16325:1 16363:1 16389:1 16391:2 16421:2 16480:1 16481:1 16492:1 16508:2 16509:1 16519:1 16559:1 16570:2 16656:1 16659:1 16673:2 16682:2 16697:1 16715:1 16738:1 16763:1 16780:1 16798:1 16800:2 16805:2 16821:1 16900:1 16919:2 16930:1 16948:1 16981:1 17008:1 17026:1 17035:3 17048:1 17069:1 17088:1 17110:1 17112:2 17254:1 17293:1 17351:1 17355:1 17368:1 17370:1 17384:1 17441:1 17449:1 17481:1 17509:1 17544:1 17570:1 17572:1 17597:1 17627:1 17637:1 17663:1 17730:1 17734:1 17763:1 17774:2 17887:1 17894:1 17946:1 17948:1 17957:1 17962:1 17965:1 17983:1 17986:1 18010:2 18120:1 18127:1 18141:1 18150:1 18151:1 18166:1 18174:1 18221:2 18226:1 18235:1 18244:2 18251:1 18286:1 18288:1 18290:1 18295:1 18297:1 18318:1 18323:1 18342:2 18343:1 18345:1 18369:1 18372:1 18392:1 18393:1 18394:1 18422:1 18441:1 18447:1 18448:1 18503:1 18517:1 18600:2 18613:2 18629:1 18631:1 18668:1 18675:1 18754:1 18789:1 18805:2 18862:1 18965:1 18975:4 18988:1 18990:1 18998:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19184:1 19201:1 19208:1 19214:1243 19221:1 19243:1 19260:1 19270:1 19282:1 19293:1 19416:1 19524:1 19543:1 19566:1 19590:1 19734:2 19757:1 19766:1 19792:1 19821:1 19837:1 19845:2 19892:1 19924:1 20016:6 20074:1 20108:1 20126:2 20135:1 20202:2 20223:1 20233:2 20247:1 20252:1 20267:1 20276:2 20282:1 20321:2 20327:1 20341:2 20359:1 20387:1 20405:1 20407:2 20413:1 20483:1 20504:1 20524:1 20528:1 20596:3 20605:1 20639:1 20660:2 20667:2 20672:1 20674:1 20701:1 20704:1 20740:1 20742:1 20752:1 20757:1 20760:1 20761:1 20799:1 20810:1 20815:1 20829:2 20848:1 20864:1 20954:1 20957:1 20961:1 21012:1 21030:1 21036:1 21037:1 21053:1 21133:1 21164:2 21235:1 21239:1 21253:1 21282:1 21286:1 21289:1 21295:1 21328:2 21360:2 21373:1 21386:2 21387:1 21411:2 21414:2 21471:1 21474:1 21520:1 21545:1 21563:2 21674:1 21680:1 21724:1 21790:2 21845:1 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21951:1 21971:1 21992:1 22003:1 22136:1 22161:2 22169:1 22182:1 22191:5 22192:1 22206:1 22218:1 22242:2 22252:1 22302:1 22342:1 22347:3 22352:1 22364:1 22387:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22520:1 22531:1 22565:1 22577:1 22598:2 22604:1 22616:1 22640:1 22669:1 22700:2 22722:1 22733:1 22774:1 22791:2 22800:1 22804:2 22807:1 22813:1 22820:1 22826:1 22854:1 22864:1 22883:1 22888:1 22926:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23080:1 23089:1 23090:1 23106:1 23109:1 23117:1 23133:1 23162:1 23166:1 23173:1 23181:1 23185:1 23199:1 23211:1 23313:4 23317:1 23319:1 23367:1 23384:1 23401:2 23444:2 23466:2 23482:1 23534:2 23559:1 23593:1 23610:4 23635:1 23694:1 23767:1 23813:1 23819:1 23830:2 23836:1 23858:1 23874:1 23875:1 23882:1 23897:1 23937:1 23967:1 23992:1 24019:1 24044:1 24062:1 24066:2 24071:2 24090:1 24093:1 24109:1 24115:2 24160:1 24190:1 24236:1 24243:1 24257:1 24289:1 24350:1 24389:1 24419:1 24478:1 24483:1 24489:1 24586:1 24588:1 24615:3 24624:1 24643:1 24667:1 24677:1 24679:1 24686:1 24722:1 24733:1 24767:1 24775:2 24783:1 24831:1 24848:2 24852:1 24855:2 24888:6 24927:1 24982:1 24988:1 24995:1 25006:1 25011:2 25088:1 25092:1 25114:1 25116:1 25134:2 25137:1 25140:1 25156:1 25253:2 25261:1 25289:1 25292:1 25299:1 25423:1 25506:1 25532:1 25534:1 25538:2 25543:1 25579:3 25592:1 25602:1 25613:1 25641:1 25643:1 25660:1 25678:1 25706:1 25715:1 25796:1 25799:3 25807:2 25812:1 25826:1 25827:1 25832:1 25834:1 25843:2 25844:1 25848:2 25861:1 25879:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 26008:1 26041:1 26054:1 26064:1 26081:1 26129:1 26145:1 26170:1 26198:1 26230:1 26279:1 26282:4 26286:1 26323:1 26345:1 26350:1 26382:1 26415:1 26444:2 26450:1 26454:1 26456:1 26475:2 26529:2 26540:1 26605:4 26646:1 26652:2 26668:1 26688:1 26736:1 26751:1 26757:1 26824:1 26855:1 26887:1 26932:3 26948:3 26980:1 26987:1 27011:1 27017:1 27057:1 27082:2 27088:2 27151:1 27161:1 27185:1 27191:1 27245:1 27281:1 27308:2 27310:1 27324:1 27370:1 27383:1 27406:1 27425:1 27432:1 27474:1 27493:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27650:1 27676:1 27687:2 27697:1 27713:1 27714:1 27763:2 27766:1 27770:1 27777:1 27778:1 27783:1 27790:1 27812:3 27815:1 27821:2 27822:1 27830:1 27833:1 27836:1 27841:1 27849:1 27858:1 27882:2 27915:4 27923:1 27927:1 27929:2 27930:1 27962:1 28049:2 28075:1 28097:2 28100:1 28116:2 28227:1 28232:1 28243:1 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28489:1 28502:1 28516:5 28524:1 28539:1 28549:2 28569:4 28599:1 28618:1 28625:1 28648:1 28659:1 28661:1 28678:1 28684:5 28720:8 28727:1 28730:1 28738:2 28756:1 28789:1 28798:1 28801:1 28814:1 28857:1 28942:1 28957:1 28983:1 28994:1 28998:1 29050:1 29060:1 29062:1 29067:1 29073:1 29103:1 29130:2 29150:1 29167:1 29187:1 29214:1 29229:1 29243:1 29249:2 29297:2 29306:1 29347:1 29463:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:4 29591:2 29603:1 29606:1 29616:1 29626:1 29645:1 29667:2 29732:1 29759:1 29766:1 29816:1 29822:4 29854:1 29874:1 29883:1
12 2:1 39:1 40:1 51:1 65:2 120:1 137:1 179:1 211:1 230:1 239:2 247:1 313:1 325:1 363:2 398:2 405:2 417:2 424:1 448:1 451:3 461:1 473:2 490:1 559:1 565:1 592:1 622:2 650:1 666:1 722:1 768:1 832:1 835:1 837:1 905:3 910:1 923:1 928:4 933:1 944:1 976:1 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1083:1 1105:1 1118:1 1129:1 1153:1 1208:1 1220:2 1221:1 1247:1 1258:2 1293:2 1303:1 1318:1 1322:1 1342:1 1353:3 1384:1 1422:4 1465:1 1467:1 1470:1 1473:4 1474:1 1536:1 1557:1 1586:1 1593:2 1599:1 1669:1 1671:1 1703:1 1707:1 1716:4 1737:1 1785:1 1812:1 1827:1 1830:1 1860:2 1869:1 1880:1 1895:2 1898:1 1920:1 1929:1 1935:1 1950:2 1969:1 2037:1 2039:2 2041:1 2066:1 2081:1 2115:1 2239:4 2250:2 2252:1 2261:1 2263:1 2287:1 2295:1 2296:2 2297:2 2301:3 2304:2 2307:2 2308:1 2312:1 2314:1 2316:1 2324:4 2325:1 2328:1 2335:1 2338:2 2370:1 2394:4 2403:2 2405:1 2419:1 2432:1 2440:1 2478:1 2527:1 2534:1 2562:1 2573:1 2589:1 2601:1 2604:3 2623:1 2657:1 2665:1 2670:1 2731:1 2755:1 2787:3 2795:1 2824:1 2848:2 2860:2 2871:1 2911:1 2921:1 2956:4 2967:1 3033:1 3037:1 3040:1 3049:1 3052:1 3060:1 3075:1 3081:1 3095:1 3121:1 3128:1 3141:1 3172:1 3175:1 3204:1 3207:1 3261:1 3272:1 3295:1 3317:1 3340:2 3361:1 3376:1 3388:2 3402:1 3418:1 3479:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3683:1 3698:1 3713:1 3717:1 3746:1 3757:3 3766:1 3780:1 3787:1 3829:1 3858:1 3886:1 3896:1 3901:2 3905:1 3923:1 3941:1 3960:1 4004:1 4010:2 4031:1 4042:2 4047:1 4076:1 4113:1 4132:1 4136:1 4140:2 4186:1 4209:1 4238:2 4321:5 4329:2 4335:1 4369:1 4390:4 4416:1 4421:1 4428:1 4454:1 4471:1 4480:2 4504:1 4509:1 4563:1 4593:1 4608:1 4609:1 4630:1 4670:1 4675:1 4689:1 4691:2 4744:1 4775:2 4789:1 4814:1 4844:3 4911:1 5010:1 5028:6 5031:1 5056:1 5067:1 5099:1 5138:5 5153:3 5154:2 5156:1 5161:1 5169:2 5175:2 5183:1 5185:1 5186:1 5209:1 5221:1 5376:2 5457:1 5469:1 5483:2 5487:1 5498:3 5522:1 5532:5 5579:8 5614:1 5644:1 5682:1 5765:1 5788:2 5805:1 5829:1 5845:1 5854:1 5904:1 5922:1 5944:1 5952:1 5959:1 5960:1 5968:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:1 6282:5 6303:1 6305:1 6311:1 6312:1 6316:1 6334:1 6388:1 6392:1 6428:1 6440:2 6487:1 6519:2 6526:1 6530:1 6537:1 6585:1 6602:3 6605:1 6609:1 6612:1 6613:1 6621:1 6622:1 6629:3 6630:7 6633:1 6650:1 6673:1 6683:2 6729:1 6770:1 6780:1 6785:2 6827:1 6914:1 6927:1 6949:1 6962:2 6969:1 6974:1 6980:1 7001:1 7046:1 7049:1 7052:1 7055:1 7071:2 7097:3 7123:1 7134:1 7169:1 7208:1 7237:1 7270:1 7331:1 7404:1 7407:2 7463:1 7501:1 7509:1 7519:1 7520:1 7537:1 7706:2 7723:1 7747:3 7753:2 7762:3 7801:1 7817:1 7829:1 7870:2 7883:1 7911:1 7914:1 7917:1 7952:7 7954:6 7960:1 7968:1 7971:1 7975:1 7987:1 8011:1 8029:21 8043:4 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8142:2 8164:1 8212:1 8221:1 8237:1 8298:1 8354:2 8407:1 8408:1 8429:1 8490:2 8513:3 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8658:1 8666:1 8729:1 8735:1 8761:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:1 8885:1 8887:1 8896:1 8899:1 8900:1 8927:1 8940:1 8945:2 8961:1 8964:1 8990:1 8992:2 8997:1 9030:1 9054:1 9067:1 9148:1 9200:2 9209:1 9212:1 9312:1 9313:1 9324:2 9351:1 9372:1 9399:1 9400:2 9405:1 9417:1 9426:1 9434:1 9458:1 9480:3 9510:1 9517:2 9536:1 9539:1 9565:2 9567:2 9570:1 9594:1 9610:1 9613:2 9654:1 9657:1 9681:1 9702:1 9704:1 9707:1 9725:1 9741:1 9765:4 9798:1 9799:1 9820:1 9832:2 9844:1 9862:2 9881:1 9884:2 9893:1 9904:2 9925:1 9950:1 9957:1 9961:1 9962:2 9966:1 9997:3 10018:3 10026:1 10132:1 10175:3 10233:1 10234:3 10235:1 10239:1 10283:1 10288:2 10372:1 10379:3 10380:1 10381:1 10393:1 10427:1 10439:1 10444:1 10519:1 10549:1 10572:1 10576:1 10577:1 10623:1 10652:2 10659:2 10757:1 10761:2 10762:1 10816:2 10847:1 10884:1 10891:3 10895:1 10904:1 10957:1 10989:1 11001:1 11012:5 11019:1 11021:1 11048:1 11077:1 11079:1 11082:1 11120:1 11284:1 11289:1 11295:2 11311:1 11315:1 11317:1 11340:1 11348:1 11372:1 11400:1 11418:3 11430:1 11460:1 11469:1 11473:1 11496:1 11501:1 11536:1 11550:1 11559:1 11560:1 11599:1 11608:1 11609:2 11692:1 11705:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:1 11807:4 11845:1 11874:2 11881:1 11882:1 11895:1 11909:2 11954:1 11966:1 11969:1 11982:1 11987:1 12002:3 12055:1 12064:1 12067:1 12069:1 12070:1 12074:1 12089:2 12121:1 12125:1 12144:1 12149:1 12168:1 12201:1 12208:1 12209:1 12264:1 12279:1 12282:1 12301:1 12331:1 12339:1 12356:1 12365:1 12479:4 12507:1 12508:1 12522:2 12529:2 12540:1 12543:1 12546:1 12565:1 12583:1 12605:1 12610:1 12623:2 12676:1 12683:1 12791:1 12808:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13163:1 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13416:1 13492:2 13494:3 13498:2 13514:1 13520:1 13522:1 13539:1 13551:1 13582:1 13647:1 13656:2 13658:1 13665:1 13681:2 13708:2 13720:1 13783:1 13792:1 13804:1 13843:1 13876:1 13886:1 13930:1 13962:1 13969:3 13984:1 14013:1 14016:2 14020:4 14038:2 14062:1 14083:1 14101:1 14111:1 14138:1 14151:2 14158:1 14165:1 14166:2 14170:1 14174:1 14252:1 14262:2 14273:1 14275:1 14282:1 14300:3 14305:1 14321:2 14340:2 14341:1 14347:1 14368:1 14385:1 14414:1 14456:1 14458:1 14490:1 14491:2 14495:2 14535:1 14553:2 14562:1 14661:1 14663:1 14678:1 14679:1 14682:1 14704:1 14712:1 14735:1 14767:1 14777:1 14808:1 14836:2 14844:1 14852:1 14863:1 14870:1 14873:1 14881:1 14884:1 14899:1 14945:1 14959:3 15016:1 15065:1 15067:1 15090:1 15092:2 15121:1 15137:1 15142:3 15146:1 15156:1 15178:1 15232:1 15254:1 15267:1 15269:2 15271:1 15393:1 15410:1 15416:2 15423:1 15435:1 15439:1 15490:1 15498:1 15503:1 15560:1 15577:1 15588:1 15603:1 15615:1 15652:1 15675:1 15708:2 15717:1 15725:1 15726:1 15728:1 15730:1 15767:1 15807:1 15892:1 15920:1 15931:2 15968:1 15993:1 16010:1 16034:1 16048:1 16078:3 16094:1 16097:3 16104:1 16110:1 16117:1 16118:1 16121:1 16129:3 16145:2 16158:3 16166:1 16183:1 16234:1 16259:2 16304:2 16315:1 16325:1 16363:1 16389:1 16391:2 16421:2 16480:1 16481:1 16492:1 16508:2 16509:1 16519:1 16559:1 16570:2 16656:1 16659:1 16673:2 16682:2 16697:1 16715:1 16738:1 16763:1 16780:1 16798:1 16800:2 16805:2 16821:1 16884:1 16900:1 16919:3 16930:1 16948:1 16981:1 17008:1 17026:1 17035:3 17048:1 17069:1 17088:1 17110:1 17112:2 17254:1 17293:1 17351:1 17355:1 17368:1 17370:1 17384:1 17441:1 17449:1 17481:1 17509:1 17544:1 17570:1 17572:1 17597:1 17627:1 17637:1 17663:1 17730:1 17734:1 17763:1 17774:2 17887:1 17894:1 17897:1 17946:1 17948:1 17957:1 17962:1 17965:1 17983:1 17986:1 18010:2 18120:1 18127:1 18141:1 18150:1 18151:1 18166:1 18174:1 18213:1 18221:2 18226:1 18235:1 18244:2 18251:1 18286:1 18288:1 18290:1 18295:1 18297:1 18318:1 18323:1 18342:2 18343:1 18345:1 18369:1 18372:1 18389:1 18392:1 18393:1 18394:1 18422:1 18441:1 18447:1 18448:1 18503:1 18517:1 18600:2 18613:2 18629:1 18631:1 18668:1 18675:1 18754:1 18789:1 18805:3 18862:1 18965:1 18975:4 18988:1 18990:1 18998:1 19007:1 19011:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19184:1 19201:1 19208:1 19214:1306 19221:1 19243:1 19260:1 19270:1 19282:1 19293:1 19416:1 19524:1 19543:1 19566:1 19590:1 19720:1 19734:2 19757:1 19766:1 19792:1 19821:1 19837:1 19845:3 19892:1 19924:1 20016:6 20074:1 20108:1 20126:2 20135:1 20202:2 20223:1 20233:2 20247:1 20252:1 20267:1 20276:2 20282:1 20286:1 20290:1 20321:2 20327:1 20341:2 20359:1 20387:1 20405:1 20407:3 20413:1 20483:1 20504:1 20524:1 20528:1 20596:3 20605:1 20639:1 20660:2 20667:3 20672:1 20674:1 20701:1 20704:1 20740:2 20742:1 20752:1 20757:1 20760:1 20761:1 20799:1 20810:1 20815:1 20829:2 20848:1 20864:1 20954:1 20957:2 20961:1 21012:1 21030:1 21036:1 21037:1 21053:1 21133:1 21164:2 21235:1 21239:1 21253:1 21282:1 21286:1 21289:1 21295:1 21328:2 21360:2 21373:1 21386:2 21387:1 21411:2 21414:2 21471:1 21474:1 21520:1 21545:1 21563:2 21674:1 21680:1 21724:1 21790:2 21845:1 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21951:1 21971:1 21992:1 22003:1 22136:1 22161:2 22169:1 22178:1 22182:1 22191:5 22192:1 22206:2 22218:1 22242:2 22252:1 22302:1 22342:1 22347:3 22352:1 22364:1 22369:1 22387:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22520:1 22531:1 22565:1 22576:1 22577:1 22598:2 22604:1 22616:1 22623:1 22640:1 22669:1 22700:2 22722:1 22733:1 22774:1 22791:2 22800:1 22804:2 22807:2 22813:1 22820:1 22826:1 22833:1 22854:1 22864:1 22883:1 22888:1 22926:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23037:1 23080:1 23089:1 23090:1 23106:1 23109:1 23117:1 23133:1 23162:1 23166:1 23173:1 23181:1 23185:1 23199:1 23211:1 23313:4 23317:1 23319:1 23367:1 23384:1 23401:2 23444:2 23466:2 23482:1 23534:2 23559:1 23593:1 23610:4 23630:1 23635:1 23694:1 23767:1 23807:2 23813:1 23819:1 23830:2 23836:1 23858:1 23874:1 23875:1 23882:1 23897:1 23937:1 23967:1 23992:1 24019:1 24044:1 24062:1 24066:2 24071:2 24090:1 24093:1 24109:1 24115:2 24160:1 24190:1 24236:1 24243:1 24257:1 24289:1 24350:1 24389:1 24419:1 24478:1 24483:1 24489:1 24586:1 24588:1 24615:3 24624:1 24643:1 24665:1 24667:1 24677:1 24679:1 24686:1 24722:1 24733:1 24767:1 24775:2 24783:1 24831:1 24848:2 24852:1 24855:2 24888:6 24927:1 24982:1 24988:1 24995:1 25006:1 25011:2 25074:1 25088:1 25092:1 25095:1 25114:1 25116:1 25134:2 25137:1 25140:1 25156:1 25253:2 25261:1 25289:1 25292:1 25299:1 25423:1 25506:1 25532:1 25534:1 25538:3 25543:1 25579:4 25592:1 25602:1 25613:1 25641:1 25643:1 25660:1 25678:1 25706:1 25715:1 25749:1 25796:1 25799:3 25807:2 25812:1 25826:1 25827:1 25832:1 25834:1 25843:2 25844:1 25848:2 25861:1 25879:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 25968:1 26008:1 26041:1 26054:1 26064:1 26081:1 26129:1 26145:1 26170:1 26198:1 26230:1 26279:1 26282:4 26286:1 26323:1 26345:1 26350:1 26382:1 26415:1 26444:2 26450:1 26454:1 26456:1 26475:2 26529:2 26540:1 26605:4 26646:1 26652:2 26668:1 26688:1 26736:1 26751:1 26757:1 26824:1 26855:1 26887:1 26932:3 26948:3 26980:1 26987:1 27011:1 27017:1 27057:1 27082:2 27088:2 27151:1 27161:1 27185:1 27191:1 27245:1 27281:1 27308:2 27310:1 27324:1 27370:1 27383:1 27398:1 27406:1 27425:1 27432:1 27474:1 27493:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27650:1 27676:1 27687:2 27697:1 27713:1 27714:1 27763:2 27766:1 27770:1 27777:1 27778:1 27783:1 27790:1 27812:3 27815:1 27821:2 27822:1 27830:1 27833:1 27836:1 27841:1 27849:1 27858:1 27882:2 27915:4 27923:1 27927:1 27929:2 27930:1 27962:1 28049:2 28075:1 28097:2 28100:1 28101:1 28116:2 28190:1 28227:1 28232:1 28243:1 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28489:1 28502:1 28516:6 28524:1 28539:1 28549:2 28569:4 28599:1 28618:1 28625:1 28648:1 28659:1 28661:1 28678:2 28684:5 28720:8 28727:1 28730:1 28733:1 28738:2 28756:1 28789:1 28798:1 28801:2 28814:1 28857:1 28860:1 28942:1 28957:1 28983:1 28994:1 28998:1 29050:1 29060:1 29062:1 29067:1 29073:1 29103:1 29130:2 29150:1 29164:1 29167:1 29187:1 29214:1 29229:1 29243:1 29249:2 29297:2 29306:1 29341:1 29347:1 29463:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:4 29591:2 29603:1 29606:1 29616:1 29626:1 29645:1 29667:2 29685:1 29732:1 29740:1 29752:1 29759:2 29766:1 29816:1 29822:4 29854:1 29874:1 29883:1
12 2:1 39:1 40:1 51:1 65:2 110:1 120:1 137:1 179:1 211:1 230:1 239:2 247:1 313:1 325:1 363:2 398:2 405:2 417:2 424:1 448:1 451:3 461:1 473:2 490:1 559:1 565:1 592:1 622:2 650:1 666:1 722:1 768:1 832:1 835:1 837:1 905:4 910:1 923:1 928:4 933:1 944:1 976:1 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1054:1 1083:1 1105:1 1118:1 1129:1 1153:1 1163:1 1208:1 1220:2 1221:1 1247:1 1258:2 1293:2 1303:1 1318:1 1322:1 1342:1 1353:3 1384:1 1422:4 1465:1 1467:1 1470:1 1473:4 1474:1 1496:1 1536:1 1557:1 1558:1 1586:1 1593:2 1599:1 1669:1 1671:1 1703:2 1707:1 1716:4 1737:1 1738:1 1785:1 1812:1 1827:1 1830:1 1856:1 1860:2 1865:1 1869:1 1880:1 1895:2 1898:1 1900:1 1920:1 1929:1 1935:1 1950:2 1969:1 2037:1 2039:2 2041:1 2066:1 2081:1 2115:1 2239:4 2250:2 2252:1 2261:1 2263:1 2287:1 2295:1 2296:2 2297:2 2301:3 2304:2 2307:2 2308:1 2312:1 2314:1 2316:1 2324:4 2325:1 2328:1 2335:1 2338:2 2370:1 2394:4 2403:2 2405:1 2419:1 2432:1 2440:1 2478:1 2527:1 2534:1 2562:1 2573:1 2589:1 2601:1 2604:4 2623:1 2657:1 2665:1 2670:1 2731:1 2755:1 2787:4 2795:1 2824:1 2848:2 2860:2 2871:1 2911:1 2921:1 2956:4 2967:1 3033:1 3037:1 3040:1 3049:1 3052:1 3060:1 3075:1 3081:1 3095:1 3121:1 3128:1 3141:1 3172:1 3175:1 3204:1 3207:1 3261:1 3272:1 3295:1 3317:1 3335:1 3340:2 3361:1 3376:1 3388:2 3402:2 3411:1 3418:1 3479:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3683:1 3689:1 3698:1 3713:1 3717:1 3746:1 3757:4 3766:1 3780:1 3787:1 3829:2 3858:1 3877:1 3886:1 3896:1 3901:3 3905:1 3923:1 3941:1 3960:1 4004:1 4010:2 4031:1 4042:2 4047:1 4076:1 4090:1 4113:1 4132:1 4136:1 4140:2 4186:1 4209:1 4238:2 4321:5 4329:2 4335:1 4369:1 4390:4 4416:1 4421:1 4428:1 4454:1 4471:1 4480:2 4504:1 4509:1 4563:1 4593:1 4608:1 4609:1 4630:1 4667:1 4670:1 4675:1 4689:1 4691:2 4744:1 4775:2 4789:1 4814:1 4844:3 4911:1 5010:1 5028:6 5031:1 5056:1 5067:1 5099:1 5138:5 5153:3 5154:2 5156:1 5161:1 5169:2 5175:2 5183:1 5185:1 5186:1 5209:1 5221:1 5376:2 5457:1 5469:1 5483:2 5487:1 5498:3 5522:1 5532:6 5579:8 5614:1 5644:1 5682:1 5765:1 5788:2 5805:1 5829:1 5845:1 5854:1 5904:1 5922:1 5944:1 5952:1 5959:1 5960:1 5968:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:1 6282:5 6303:1 6305:1 6311:1 6312:1 6316:1 6319:1 6334:1 6388:1 6392:1 6428:1 6440:2 6458:1 6487:1 6519:2 6526:1 6530:1 6537:1 6585:1 6602:3 6605:1 6609:1 6612:1 6613:1 6621:1 6622:1 6629:3 6630:7 6633:2 6650:1 6673:1 6683:2 6729:1 6770:2 6780:1 6785:2 6827:1 6914:1 6927:1 6939:1 6949:1 6962:2 6969:1 6974:1 6980:1 7001:1 7046:1 7049:1 7052:1 7055:1 7071:2 7097:3 7123:1 7127:1 7134:1 7169:1 7208:1 7237:1 7270:1 7293:1 7331:1 7404:2 7407:2 7432:1 7463:1 7501:1 7509:1 7519:1 7520:2 7537:1 7706:2 7723:1 7747:3 7753:2 7762:3 7801:1 7817:1 7829:1 7870:2 7883:1 7911:1 7914:1 7917:1 7952:7 7954:6 7960:1 7968:1 7971:1 7975:1 7987:1 8011:1 8029:21 8043:4 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8113:1 8142:2 8164:1 8212:1 8221:1 8237:1 8298:1 8354:2 8407:1 8408:1 8429:1 8490:2 8513:4 8523:1 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8658:1 8666:1 8729:1 8735:1 8761:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:1 8885:1 8887:1 8892:1 8896:1 8899:1 8900:1 8927:1 8940:1 8945:2 8961:1 8964:1 8990:1 8992:2 8997:1 9018:2 9030:1 9054:1 9067:1 9148:1 9200:2 9209:1 9212:1 9312:1 9313:1 9324:2 9351:1 9372:1 9399:1 9400:2 9405:1 9417:1 9426:1 9434:1 9458:1 9480:4 9510:1 9517:2 9523:1 9536:1 9539:1 9565:2 9567:2 9570:1 9594:1 9610:1 9613:2 9635:1 9654:1 9657:1 9681:1 9702:1 9704:1 9707:1 9717:1 9725:1 9741:1 9765:4 9798:1 9799:1 9820:1 9832:2 9844:1 9862:2 9881:1 9884:2 9893:1 9904:2 9925:1 9950:1 9957:1 9961:1 9962:2 9966:1 9997:5 10018:3 10026:1 10031:1 10060:1 10132:1 10175:3 10233:1 10234:3 10235:1 10239:1 10246:1 10283:1 10288:2 10372:1 10379:4 10380:1 10381:1 10393:1 10427:1 10439:1 10444:1 10519:1 10549:1 10572:1 10576:1 10577:1 10623:1 10652:2 10659:2 10757:1 10761:2 10762:1 10816:2 10847:1 10884:1 10891:3 10895:1 10904:2 10957:1 10989:1 11001:1 11012:5 11019:1 11021:1 11048:2 11077:1 11079:1 11082:1 11120:1 11284:2 11289:2 11295:2 11311:1 11315:1 11317:1 11340:1 11348:1 11372:1 11400:1 11418:3 11430:1 11460:1 11469:1 11473:1 11496:1 11501:1 11536:1 11550:1 11559:1 11560:1 11599:1 11608:1 11609:2 11692:1 11705:1 11706:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:1 11807:4 11845:1 11874:2 11881:1 11882:1 11895:1 11909:2 11954:1 11966:1 11969:1 11982:1 11987:1 12002:3 12050:1 12055:1 12064:1 12067:1 12069:1 12070:1 12074:1 12089:2 12121:1 12125:1 12144:1 12149:1 12156:1 12168:1 12201:1 12208:1 12209:1 12264:2 12279:1 12282:1 12301:1 12331:1 12339:1 12356:1 12365:1 12479:4 12507:1 12508:1 12522:2 12529:2 12540:2 12543:1 12546:1 12565:1 12583:2 12598:1 12605:1 12610:1 12623:2 12676:1 12683:1 12791:1 12808:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13163:1 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13416:1 13481:1 13492:2 13494:3 13498:2 13514:1 13520:1 13522:1 13539:1 13551:1 13582:1 13647:1 13656:2 13658:1 13665:1 13681:2 13708:2 13720:1 13783:1 13792:1 13804:1 13843:1 13876:1 13886:1 13930:1 13962:1 13969:3 13984:1 14013:1 14016:2 14020:4 14038:2 14040:1 14062:1 14083:1 14101:1 14111:1 14138:1 14151:3 14158:2 14165:1 14166:2 14170:1 14174:1 14252:1 14262:2 14273:1 14275:1 14282:1 14300:3 14305:1 14321:3 14340:2 14341:1 14347:1 14368:1 14385:1 14414:1 14456:1 14458:1 14490:1 14491:2 14495:2 14535:1 14553:2 14562:1 14661:1 14663:1 14678:1 14679:1 14682:1 14704:1 14712:1 14735:1 14767:1 14777:1 14808:1 14836:2 14844:1 14852:1 14863:1 14870:1 14873:1 14881:1 14884:1 14899:1 14918:1 14945:1 14959:4 15016:1 15065:1 15067:1 15090:1 15092:2 15121:1 15137:1 15142:3 15146:1 15156:1 15178:1 15232:1 15254:1 15267:1 15269:2 15271:1 15310:1 15393:1 15410:1 15416:2 15423:2 15435:1 15439:1 15490:1 15498:1 15503:1 15560:1 15577:1 15588:1 15603:1 15615:1 15652:1 15675:1 15708:2 15717:1 15725:1 15726:1 15728:1 15730:1 15741:1 15767:1 15807:2 15892:1 15920:1 15931:2 15968:1 15993:1 16010:1 16034:1 16048:1 16078:3 16094:1 16097:3 16104:1 16110:1 16117:1 16118:1 16121:1 16129:3 16138:1 16145:2 16158:4 16166:1 16183:1 16234:1 16259:2 16304:2 16315:1 16325:1 16363:1 16389:1 16391:2 16421:2 16480:1 16481:1 16492:1 16508:2 16509:1 16515:1 16519:1 16552:1 16559:1 16570:2 16656:1 16659:1 16673:2 16680:1 16682:2 16697:1 16715:1 16738:1 16763:1 16780:1 16798:1 16800:2 16805:2 16821:1 16884:1 16900:2 16919:4 16930:1 16948:1 16981:1 17008:1 17026:1 17035:3 17048:1 17069:1 17088:1 17110:1 17112:2 17254:1 17293:1 17319:1 17351:1 17355:1 17368:1 17370:1 17384:1 17441:1 17449:1 17481:1 17509:1 17544:1 17570:1 17572:1 17597:1 17627:1 17637:1 17663:1 17730:1 17734:2 17763:1 17774:2 17887:1 17894:1 17897:1 17917:1 17946:1 17948:2 17957:1 17962:1 17965:1 17983:1 17986:1 18010:2 18048:1 18120:1 18127:1 18141:1 18150:1 18151:1 18166:1 18174:1 18213:1 18221:2 18226:1 18235:1 18244:2 18251:1 18286:1 18288:1 18290:1 18295:1 18297:1 18318:1 18323:1 18342:2 18343:1 18345:1 18369:1 18372:1 18389:1 18392:1 18393:1 18394:1 18422:1 18441:1 18447:1 18448:1 18503:1 18517:1 18556:1 18582:1 18600:2 18613:2 18629:1 18631:1 18668:1 18675:1 18754:2 18787:1 18789:1 18805:4 18862:1 18965:1 18975:5 18988:1 18990:1 18998:1 19007:1 19011:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19184:1 19201:1 19208:1 19214:1379 19221:1 19243:1 19260:1 19270:1 19279:1 19282:1 19293:1 19416:1 19524:1 19543:1 19566:1 19590:1 19720:1 19734:2 19757:1 19766:1 19792:1 19821:2 19837:1 19843:1 19845:4 19892:1 19921:1 19924:1 19947:1 20016:6 20074:1 20108:1 20126:2 20135:1 20202:2 20223:1 20233:2 20247:1 20252:1 20267:1 20276:2 20282:1 20286:1 20290:1 20307:1 20321:2 20327:1 20341:2 20359:1 20387:1 20405:1 20407:3 20413:1 20483:1 20504:1 20524:1 20528:1 20596:3 20605:1 20639:1 20660:3 20667:3 20672:1 20674:1 20701:1 20704:1 20740:2 20742:1 20752:1 20757:1 20760:1 20761:1 20799:1 20810:1 20815:1 20829:2 20848:1 20864:1 20873:1 20954:1 20957:2 20961:1 21012:1 21030:1 21036:1 21037:1 21053:1 21133:1 21164:2 21235:1 21239:1 21253:1 21282:1 21286:1 21289:1 21295:1 21328:2 21360:2 21373:1 21386:2 21387:1 21411:2 21414:2 21471:1 21474:1 21520:1 21545:1 21563:2 21674:1 21680:1 21724:1 21790:2 21845:1 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21951:1 21971:1 21988:1 21992:1 22003:1 22136:2 22161:2 22169:1 22178:1 22182:1 22191:5 22192:1 22206:2 22218:1 22241:1 22242:2 22246:1 22250:1 22252:1 22302:2 22342:1 22347:3 22352:1 22364:1 22369:1 22387:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22520:1 22531:1 22565:1 22576:1 22577:1 22598:2 22604:1 22616:1 22623:1 22640:1 22669:1 22700:2 22722:1 22733:1 22738:1 22774:1 22791:2 22800:1 22804:2 22807:2 22813:1 22820:1 22826:1 22833:1 22854:1 22864:1 22883:1 22888:1 22926:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23037:1 23080:1 23089:1 23090:1 23106:1 23109:1 23117:1 23133:1 23162:1 23166:1 23173:1 23181:1 23185:1 23199:1 23211:1 23313:4 23317:1 23319:1 23326:1 23367:1 23384:1 23401:2 23444:2 23466:2 23476:1 23482:1 23534:2 23559:1 23593:1 23610:4 23630:1 23635:1 23694:1 23767:1 23807:2 23813:1 23819:1 23830:2 23836:2 23858:1 23874:1 23875:1 23882:1 23897:1 23937:1 23967:1 23992:1 24019:1 24025:1 24044:1 24062:1 24066:2 24071:2 24090:1 24093:1 24109:1 24115:2 24160:1 24190:1 24236:1 24243:1 24257:1 24289:1 24332:1 24350:1 24389:1 24419:1 24478:1 24483:1 24489:1 24586:1 24588:1 24615:3 24624:1 24643:1 24653:1 24665:1 24667:1 24677:1 24679:1 24686:1 24722:1 24733:1 24767:1 24775:2 24783:1 24831:1 24848:2 24852:1 24855:2 24888:6 24927:1 24982:1 24988:1 24995:1 25006:1 25011:2 25074:1 25088:1 25092:1 25095:1 25114:1 25116:1 25134:2 25137:1 25140:1 25156:1 25253:2 25261:1 25289:1 25292:1 25299:1 25423:1 25506:2 25532:1 25534:1 25538:3 25543:1 25579:4 25592:1 25602:1 25613:2 25641:1 25643:1 25660:1 25678:1 25706:1 25715:1 25749:1 25796:1 25799:3 25807:2 25812:1 25826:1 25827:1 25832:1 25834:1 25843:2 25844:1 25848:2 25861:2 25879:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 25968:1 26008:1 26041:1 26054:1 26064:1 26081:1 26129:1 26131:1 26145:1 26170:1 26198:1 26230:1 26276:1 26279:1 26282:4 26286:1 26323:1 26345:1 26350:1 26382:1 26415:1 26444:2 26450:1 26454:1 26456:1 26475:2 26501:1 26529:2 26540:1 26605:5 26646:1 26652:2 26668:1 26684:1 26688:1 26736:2 26751:1 26757:1 26824:1 26855:1 26878:1 26887:1 26932:3 26948:3 26980:1 26987:1 27011:1 27017:1 27032:1 27057:1 27082:2 27088:2 27151:1 27161:1 27185:2 27191:1 27245:1 27281:1 27308:2 27310:1 27324:1 27370:1 27383:1 27398:1 27406:1 27425:1 27432:1 27474:1 27493:1 27499:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27650:1 27653:1 27676:1 27687:2 27697:1 27713:1 27714:1 27763:2 27766:1 27770:1 27777:1 27778:1 27783:1 27790:1 27812:3 27815:1 27821:3 27822:1 27830:1 27833:1 27836:1 27841:1 27849:1 27858:1 27882:2 27915:4 27923:1 27927:1 27929:2 27930:1 27962:1 28049:2 28075:1 28097:2 28100:1 28101:1 28116:2 28190:1 28227:1 28232:1 28243:1 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28481:1 28489:1 28502:1 28516:7 28524:1 28539:1 28549:4 28569:4 28599:1 28618:1 28625:1 28648:1 28659:1 28661:1 28678:2 28684:5 28720:8 28727:1 28730:1 28733:1 28738:2 28756:1 28789:1 28798:1 28801:2 28814:1 28857:1 28860:1 28929:1 28942:1 28953:1 28957:1 28983:1 28994:1 28998:1 29050:1 29060:1 29062:1 29067:1 29073:1 29103:1 29107:1 29130:2 29150:1 29164:1 29167:1 29187:1 29214:1 29229:1 29243:1 29249:2 29297:2 29306:1 29341:1 29347:1 29463:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:4 29586:1 29591:2 29603:1 29606:1 29616:1 29626:1 29645:1 29667:2 29685:1 29732:1 29740:1 29752:1 29759:2 29766:1 29816:1 29822:4 29831:1 29854:1 29874:1 29883:1
12 2:1 39:1 40:1 51:1 65:2 110:2 120:1 137:1 179:1 211:1 230:1 239:2 247:1 313:1 325:1 343:1 363:2 398:2 405:2 417:2 418:1 424:1 448:1 451:3 461:1 473:2 490:1 559:1 565:1 592:1 622:2 650:1 666:1 711:1 722:1 768:1 832:1 835:1 837:1 905:4 910:1 923:1 928:4 933:1 944:1 947:1 976:1 982:1 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1054:1 1083:1 1101:1 1105:1 1118:1 1129:1 1153:1 1163:1 1208:1 1209:1 1220:2 1221:1 1247:1 1258:2 1293:2 1303:1 1318:1 1322:1 1342:1 1353:3 1384:1 1422:4 1465:1 1467:1 1470:1 1473:5 1474:1 1496:1 1536:1 1557:1 1558:1 1580:1 1586:1 1593:2 1599:1 1669:2 1671:1 1703:2 1707:1 1716:4 1727:1 1737:1 1738:1 1785:1 1812:1 1827:1 1830:1 1856:1 1860:2 1865:1 1869:2 1880:1 1895:2 1898:1 1900:1 1920:1 1929:2 1935:1 1950:2 1969:1 2037:1 2039:2 2041:1 2066:1 2081:1 2115:1 2162:1 2239:4 2250:2 2252:1 2261:1 2263:1 2287:1 2295:1 2296:2 2297:2 2301:3 2304:2 2307:2 2308:1 2312:1 2314:1 2316:1 2324:5 2325:1 2328:1 2331:1 2335:1 2338:2 2370:1 2394:4 2403:2 2405:1 2419:1 2432:1 2440:1 2478:1 2527:1 2534:1 2562:1 2573:1 2589:1 2601:1 2604:4 2623:1 2657:1 2665:1 2670:1 2731:1 2755:1 2787:4 2795:1 2824:1 2826:1 2848:2 2860:2 2871:1 2911:1 2921:1 2956:4 2967:1 3033:1 3037:1 3040:1 3049:1 3052:2 3060:1 3075:1 3081:1 3095:1 3121:1 3128:1 3141:1 3172:1 3175:1 3204:1 3207:1 3261:1 3272:1 3287:1 3295:1 3317:1 3335:1 3340:2 3361:1 3376:1 3388:2 3402:3 3411:1 3418:1 3479:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3679:1 3683:1 3689:1 3698:1 3713:1 3717:1 3728:1 3746:1 3757:4 3766:1 3780:1 3787:1 3829:2 3858:1 3877:1 3886:1 3896:1 3901:3 3905:1 3923:1 3941:1 3960:1 4004:1 4010:2 4024:1 4031:1 4042:2 4047:1 4076:1 4090:1 4113:1 4132:1 4136:2 4140:2 4186:1 4209:1 4238:2 4321:5 4329:2 4335:1 4369:1 4390:4 4416:1 4421:1 4428:1 4454:1 4471:1 4480:2 4504:1 4509:1 4563:1 4593:1 4607:1 4608:1 4609:1 4630:1 4667:1 4670:1 4675:1 4689:1 4691:2 4744:1 4775:2 4789:1 4814:1 4844:3 4876:1 4911:1 5010:1 5028:6 5031:1 5056:2 5067:1 5099:1 5138:5 5153:3 5154:2 5156:1 5161:1 5169:2 5175:2 5181:1 5183:1 5185:1 5186:1 5209:1 5221:1 5376:2 5457:1 5469:1 5483:2 5487:1 5498:3 5522:1 5532:6 5579:8 5614:1 5644:1 5682:1 5765:1 5788:2 5805:1 5829:1 5845:1 5854:1 5904:1 5922:1 5944:1 5950:1 5952:1 5959:1 5960:1 5968:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:1 6282:5 6303:1 6305:1 6311:1 6312:1 6316:1 6319:1 6334:1 6388:1 6392:1 6428:1 6440:2 6458:1 6487:1 6519:2 6526:1 6530:1 6537:1 6585:1 6602:4 6605:1 6609:1 6612:1 6613:1 6621:1 6622:1 6629:3 6630:7 6633:2 6650:1 6673:1 6683:2 6729:1 6770:2 6780:1 6785:2 6827:1 6914:1 6927:1 6939:1 6949:1 6962:2 6969:1 6974:1 6980:1 7001:1 7046:1 7049:1 7052:1 7055:1 7071:2 7097:3 7123:1 7127:1 7134:1 7169:1 7208:1 7237:1 7270:1 7293:1 7331:1 7404:2 7407:2 7432:1 7463:1 7501:1 7509:1 7519:1 7520:2 7537:1 7616:1 7706:2 7723:1 7747:3 7753:2 7762:3 7801:1 7817:1 7829:1 7831:1 7870:2 7883:1 7911:1 7914:1 7917:1 7952:7 7954:6 7960:1 7968:1 7971:1 7975:1 7987:1 8011:1 8029:23 8043:4 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8113:1 8142:2 8164:1 8212:1 8221:1 8237:1 8298:1 8354:2 8407:1 8408:1 8429:1 8490:2 8513:4 8523:1 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8658:1 8666:1 8729:1 8735:1 8761:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:1 8885:1 8887:1 8892:1 8896:1 8899:1 8900:1 8901:1 8927:1 8940:1 8945:2 8961:1 8964:1 8990:1 8992:2 8997:1 9018:2 9030:1 9054:1 9067:1 9148:1 9200:2 9209:1 9212:1 9308:1 9312:1 9313:1 9324:2 9351:1 9372:1 9380:1 9399:1 9400:2 9405:1 9417:1 9426:1 9434:1 9458:1 9480:4 9510:1 9517:2 9523:1 9536:1 9539:1 9565:2 9567:3 9570:1 9594:1 9607:1 9610:1 9613:2 9635:1 9636:1 9654:1 9657:2 9681:1 9702:1 9704:1 9707:1 9717:1 9725:1 9741:1 9765:4 9798:1 9799:1 9820:1 9832:2 9844:1 9862:2 9881:1 9884:2 9893:1 9904:2 9925:1 9950:1 9957:1 9961:1 9962:2 9966:1 9971:1 9997:5 10018:3 10024:1 10026:1 10031:1 10060:1 10132:1 10175:3 10233:1 10234:3 10235:1 10239:1 10246:1 10283:1 10288:2 10372:1 10379:4 10380:1 10381:1 10393:1 10427:1 10439:1 10444:1 10517:1 10519:1 10544:1 10549:1 10572:1 10576:1 10577:1 10623:1 10652:2 10659:2 10757:1 10761:2 10762:1 10816:2 10847:1 10869:1 10884:1 10891:3 10895:1 10904:2 10957:1 10989:1 11001:1 11012:5 11019:1 11021:1 11048:2 11077:1 11079:1 11082:1 11120:1 11284:2 11289:3 11295:2 11311:1 11315:1 11317:1 11340:1 11348:1 11372:1 11400:1 11418:3 11430:1 11460:1 11469:1 11473:1 11496:1 11501:1 11536:1 11550:1 11559:1 11560:1 11599:1 11608:1 11609:2 11692:1 11705:1 11706:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:1 11807:5 11845:1 11874:2 11881:1 11882:1 11895:1 11909:2 11954:1 11966:1 11969:1 11976:1 11982:1 11987:1 12002:4 12050:1 12055:1 12064:1 12067:1 12069:1 12070:1 12074:1 12089:2 12121:1 12125:1 12144:1 12149:1 12156:1 12168:1 12201:1 12208:1 12209:1 12264:2 12279:1 12282:1 12301:1 12331:1 12339:1 12356:1 12365:1 12461:1 12479:4 12504:1 12507:1 12508:1 12522:2 12529:2 12540:2 12543:1 12546:1 12565:1 12583:2 12598:1 12605:1 12610:1 12623:2 12676:1 12683:1 12791:1 12808:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13145:1 13163:1 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13416:1 13481:1 13482:1 13492:2 13494:3 13498:2 13514:1 13520:1 13522:1 13539:1 13551:1 13582:1 13645:1 13647:1 13656:2 13658:1 13665:1 13681:2 13708:2 13720:1 13727:1 13783:1 13792:1 13804:1 13843:1 13876:1 13886:1 13930:1 13962:1 13969:4 13984:1 14013:1 14016:2 14020:4 14038:2 14040:1 14062:1 14083:1 14101:1 14111:1 14138:1 14151:3 14158:2 14165:1 14166:2 14170:1 14174:1 14222:1 14252:1 14262:2 14273:1 14275:1 14282:1 14300:3 14305:1 14321:3 14340:2 14341:1 14347:1 14368:1 14376:1 14385:1 14414:1 14456:1 14458:1 14490:1 14491:2 14495:2 14535:1 14553:2 14562:1 14661:1 14663:1 14678:1 14679:1 14682:1 14704:1 14712:1 14735:1 14767:1 14777:1 14808:1 14836:2 14844:1 14852:1 14863:2 14870:1 14873:1 14881:1 14884:1 14899:1 14918:2 14945:1 14959:4 15016:1 15055:1 15065:1 15067:1 15090:1 15092:2 15121:1 15137:1 15142:3 15146:1 15149:1 15156:1 15178:1 15232:1 15254:1 15267:1 15269:2 15271:1 15310:1 15393:1 15410:1 15416:2 15423:2 15435:1 15439:1 15490:1 15498:1 15503:1 15560:1 15577:1 15588:1 15603:2 15615:1 15652:1 15675:1 15682:1 15708:2 15717:1 15725:1 15726:1 15728:1 15730:1 15741:1 15767:1 15807:2 15820:1 15892:1 15920:1 15931:2 15968:1 15993:1 16010:1 16034:1 16048:1 16078:4 16085:1 16091:1 16094:1 16097:3 16104:1 16110:1 16117:1 16118:1 16121:1 16129:3 16138:1 16145:2 16158:4 16166:1 16183:1 16234:2 16259:2 16304:2 16315:1 16325:1 16363:1 16389:1 16391:2 16421:2 16480:1 16481:1 16492:1 16508:2 16509:1 16515:1 16519:1 16552:1 16559:1 16570:2 16620:1 16656:1 16659:1 16673:2 16680:1 16682:2 16697:1 16715:1 16738:1 16763:1 16780:1 16798:1 16800:2 16805:2 16821:1 16884:1 16900:2 16919:4 16930:1 16948:1 16981:1 17008:1 17026:1 17035:3 17048:1 17067:1 17069:1 17088:1 17110:1 17112:2 17254:1 17293:1 17319:1 17351:1 17355:1 17357:1 17368:1 17370:1 17384:1 17441:1 17449:1 17481:1 17509:1 17544:1 17570:1 17572:1 17597:1 17627:1 17637:1 17663:1 17730:1 17734:2 17763:1 17774:2 17887:1 17889:1 17894:1 17897:1 17917:1 17946:1 17948:2 17957:1 17962:1 17965:1 17983:1 17986:1 18010:2 18048:1 18120:1 18127:1 18141:1 18150:1 18151:1 18166:1 18174:1 18213:1 18221:2 18226:1 18235:1 18244:2 18251:1 18286:1 18288:1 18290:1 18295:1 18297:1 18318:1 18323:1 18329:1 18342:2 18343:1 18345:1 18369:1 18372:1 18389:1 18392:1 18393:1 18394:1 18422:1 18441:1 18447:1 18448:1 18484:1 18503:1 18517:1 18556:1 18582:1 18600:2 18613:2 18629:1 18631:1 18668:1 18675:1 18754:2 18787:1 18789:1 18805:4 18862:1 18965:1 18971:1 18975:5 18988:1 18990:1 18998:1 19007:1 19011:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19184:1 19201:1 19208:1 19214:1493 19221:1 19243:1 19260:1 19270:1 19279:1 19282:1 19293:1 19416:1 19524:1 19543:1 19566:1 19590:1 19720:1 19734:2 19757:1 19766:1 19778:1 19792:1 19821:2 19837:1 19843:1 19845:4 19892:1 19921:1 19924:1 19947:1 20016:6 20074:1 20108:1 20126:2 20135:1 20202:2 20223:1 20233:2 20247:1 20252:1 20267:1 20276:2 20282:1 20286:1 20290:1 20307:1 20321:2 20327:1 20341:2 20359:1 20387:1 20405:1 20407:3 20413:1 20483:1 20504:1 20524:1 20528:1 20596:4 20605:1 20639:1 20660:3 20667:3 20672:1 20674:1 20701:1 20704:1 20709:1 20740:2 20742:1 20752:1 20757:1 20760:1 20761:1 20769:1 20793:1 20799:1 20810:1 20815:1 20829:2 20848:1 20864:1 20873:1 20954:1 20957:2 20961:1 21001:1 21012:1 21030:1 21036:1 21037:1 21053:1 21133:1 21164:2 21235:1 21239:1 21253:1 21264:1 21282:1 21286:1 21289:1 21295:1 21328:2 21360:2 21373:1 21386:2 21387:1 21404:1 21411:2 21414:2 21471:1 21474:1 21489:1 21520:1 21545:1 21555:1 21563:2 21637:1 21674:1 21680:1 21724:1 21790:2 21845:1 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21951:1 21971:1 21988:1 21992:1 22003:1 22136:2 22161:2 22169:1 22178:1 22182:1 22191:5 22192:1 22206:2 22218:1 22241:1 22242:2 22246:1 22250:1 22252:1 22302:2 22342:1 22347:3 22352:1 22364:1 22369:1 22387:1 22388:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22520:1 22531:1 22565:1 22576:1 22577:1 22598:2 22604:1 22616:1 22623:1 22640:1 22669:1 22700:2 22722:1 22733:1 22738:1 22774:1 22791:2 22800:1 22804:2 22807:2 22813:1 22820:1 22826:1 22833:1 22854:1 22864:1 22883:1 22888:1 22926:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23037:1 23080:1 23089:1 23090:1 23106:1 23109:1 23117:1 23133:1 23162:1 23166:1 23173:1 23181:1 23185:1 23199:1 23211:1 23313:4 23317:1 23319:1 23326:1 23367:1 23384:1 23401:2 23444:2 23466:2 23476:1 23482:1 23534:2 23559:1 23593:1 23610:4 23630:1 23635:1 23694:1 23767:1 23807:2 23813:1 23819:1 23822:1 23830:2 23836:2 23858:1 23874:1 23875:1 23882:1 23897:1 23937:2 23967:1 23992:1 24019:1 24025:1 24044:1 24062:1 24066:2 24071:2 24090:1 24093:1 24109:1 24115:2 24160:1 24190:1 24236:1 24243:1 24257:1 24289:1 24332:1 24350:1 24389:1 24419:1 24478:3 24483:1 24489:1 24519:1 24534:1 24586:1 24588:1 24615:3 24624:1 24643:1 24653:1 24665:1 24667:1 24677:1 24679:1 24686:1 24722:1 24733:1 24767:1 24775:2 24783:1 24831:1 24848:2 24852:1 24855:2 24888:6 24927:1 24982:1 24988:1 24995:1 25006:1 25011:2 25024:1 25056:1 25074:1 25088:1 25092:1 25095:1 25114:1 25116:1 25122:1 25134:2 25137:1 25140:1 25156:1 25171:1 25253:2 25261:1 25289:1 25292:1 25299:1 25423:1 25506:2 25532:1 25534:1 25538:3 25543:1 25579:4 25592:1 25602:1 25613:2 25641:1 25643:1 25660:1 25678:1 25706:1 25715:1 25749:1 25796:1 25799:3 25807:2 25812:1 25826:1 25827:1 25832:1 25834:1 25843:2 25844:1 25848:2 25861:2 25879:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 25968:1 26008:1 26041:1 26054:1 26064:1 26081:1 26129:1 26131:1 26145:1 26170:1 26198:1 26230:1 26276:1 26279:1 26282:4 26286:1 26323:1 26345:1 26350:1 26382:1 26415:1 26444:2 26450:1 26454:1 26456:1 26475:2 26501:1 26529:2 26540:1 26582:1 26605:5 26646:1 26652:2 26668:1 26684:1 26688:1 26736:2 26751:1 26757:1 26824:1 26855:1 26878:1 26887:1 26932:4 26948:3 26980:1 26987:1 27011:1 27017:1 27032:1 27057:1 27082:2 27088:2 27151:1 27161:1 27185:2 27191:1 27245:1 27281:1 27308:2 27310:1 27324:1 27370:1 27383:1 27398:1 27406:1 27425:1 27432:1 27474:1 27493:1 27499:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27650:1 27653:1 27676:1 27687:2 27697:1 27713:1 27714:1 27763:2 27766:1 27770:1 27777:1 27778:1 27783:1 27790:1 27812:3 27815:1 27821:3 27822:1 27828:1 27830:1 27833:1 27836:1 27841:1 27849:1 27858:1 27882:2 27898:1 27915:4 27923:1 27927:1 27929:2 27930:1 27962:1 27972:1 28049:2 28075:1 28097:2 28100:1 28101:1 28116:2 28184:1 28190:1 28227:1 28232:1 28243:1 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28467:1 28481:1 28489:1 28502:1 28516:7 28524:1 28539:1 28549:4 28569:4 28599:1 28618:1 28625:1 28648:1 28659:1 28661:1 28678:2 28684:5 28720:8 28727:1 28730:1 28733:1 28738:2 28756:1 28789:1 28798:1 28801:2 28814:1 28857:1 28860:1 28920:1 28929:1 28942:1 28953:1 28957:1 28983:1 28994:1 28998:1 29042:1 29050:1 29060:1 29062:1 29067:2 29073:1 29103:1 29107:1 29130:2 29150:1 29164:1 29167:1 29187:1 29214:1 29229:1 29243:1 29249:2 29297:2 29306:1 29341:1 29347:1 29390:1 29463:1 29471:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:4 29586:1 29591:2 29603:1 29606:1 29616:1 29626:1 29645:1 29667:2 29685:2 29732:1 29740:1 29752:2 29759:2 29766:1 29768:1 29816:1 29822:4 29831:1 29854:1 29874:1 29883:1 29885:1
12 2:1 39:1 40:1 51:1 65:2 110:2 120:1 137:1 179:1 211:1 230:1 239:2 247:1 313:1 323:1 325:1 343:1 363:2 398:2 405:2 417:2 418:1 424:1 448:1 451:3 461:1 473:2 490:1 559:1 565:1 592:1 622:2 650:1 666:1 711:1 722:1 768:1 832:1 835:1 837:1 905:4 910:1 923:1 928:4 933:1 944:1 947:1 957:1 976:1 982:2 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1054:1 1083:1 1101:1 1105:1 1118:1 1129:1 1153:1 1163:1 1208:1 1209:1 1220:2 1221:1 1247:1 1258:2 1293:2 1303:1 1318:1 1322:1 1342:2 1353:3 1384:1 1422:4 1465:1 1467:1 1468:1 1470:1 1473:5 1474:1 1475:1 1496:1 1536:1 1557:1 1558:1 1580:1 1586:1 1593:2 1599:1 1669:2 1671:1 1703:2 1707:1 1716:4 1727:1 1737:1 1738:1 1785:1 1812:1 1827:1 1830:1 1856:1 1860:2 1865:1 1869:2 1880:1 1895:2 1898:1 1900:1 1920:1 1929:2 1935:1 1940:1 1950:2 1969:1 2037:1 2039:2 2041:1 2066:1 2081:1 2115:1 2134:1 2162:1 2239:4 2250:2 2252:1 2261:1 2263:2 2287:1 2295:2 2296:2 2297:2 2301:3 2304:2 2307:2 2308:1 2312:1 2314:1 2316:1 2324:5 2325:1 2328:1 2331:1 2335:1 2338:2 2370:1 2394:4 2403:2 2405:1 2419:1 2432:1 2440:1 2478:2 2527:1 2534:1 2562:1 2573:1 2589:1 2601:1 2604:4 2623:1 2657:1 2665:1 2670:1 2731:1 2755:1 2787:4 2795:1 2824:1 2826:1 2848:2 2860:2 2871:1 2911:1 2921:1 2930:1 2956:4 2962:1 2967:1 3017:1 3033:1 3037:1 3040:1 3049:1 3052:2 3060:1 3075:1 3081:1 3095:1 3121:1 3128:1 3141:1 3172:1 3175:1 3204:1 3207:1 3261:1 3272:1 3287:1 3295:1 3317:1 3335:1 3340:2 3361:1 3376:1 3388:2 3402:3 3411:1 3418:1 3479:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3679:1 3683:1 3689:1 3698:1 3713:1 3717:1 3728:1 3746:1 3757:4 3766:1 3780:1 3787:1 3829:2 3858:2 3877:1 3886:1 3896:1 3901:3 3905:1 3923:1 3941:1 3960:1 4004:1 4010:2 4024:1 4031:1 4042:2 4047:1 4076:1 4090:1 4113:1 4132:1 4136:2 4140:2 4186:1 4209:1 4238:2 4292:1 4321:5 4329:2 4335:1 4369:1 4390:4 4416:1 4421:1 4428:1 4454:1 4471:1 4480:2 4504:1 4509:1 4563:1 4593:1 4607:1 4608:1 4609:1 4630:1 4667:1 4670:1 4675:1 4689:1 4691:2 4744:1 4775:2 4789:1 4814:1 4844:3 4876:1 4877:1 4911:1 5010:1 5028:7 5031:1 5056:2 5067:1 5099:1 5138:5 5153:3 5154:2 5156:1 5161:1 5164:1 5168:1 5169:2 5175:2 5181:1 5183:1 5185:1 5186:1 5209:1 5221:1 5253:1 5376:2 5457:1 5469:1 5483:2 5487:1 5498:3 5522:1 5532:6 5579:8 5614:1 5644:1 5682:1 5765:1 5788:2 5805:1 5829:1 5845:1 5854:1 5873:1 5904:1 5922:1 5944:1 5950:1 5952:1 5959:1 5960:1 5968:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:1 6282:5 6303:1 6305:1 6311:1 6312:1 6316:2 6319:1 6334:1 6388:1 6392:2 6428:1 6440:2 6458:1 6487:1 6519:2 6526:1 6530:1 6537:1 6585:1 6602:4 6605:1 6609:1 6612:1 6613:1 6621:1 6622:1 6629:3 6630:7 6633:2 6650:1 6673:1 6683:2 6729:1 6770:2 6780:1 6785:2 6827:1 6914:1 6927:1 6939:1 6949:1 6962:2 6969:1 6974:1 6980:1 7001:1 7046:1 7049:1 7052:1 7055:1 7071:2 7097:3 7123:1 7127:1 7134:1 7169:1 7208:1 7237:1 7270:1 7293:1 7331:1 7404:2 7407:2 7432:1 7463:1 7501:1 7509:1 7519:1 7520:2 7537:1 7616:1 7706:3 7723:1 7747:3 7753:2 7762:3 7801:1 7817:1 7829:1 7831:1 7870:2 7883:1 7911:1 7914:1 7917:1 7952:7 7954:6 7960:1 7968:1 7971:1 7975:1 7987:1 8011:2 8029:25 8043:5 8044:1 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8113:1 8142:2 8164:1 8212:1 8221:2 8237:1 8298:1 8303:1 8354:2 8407:1 8408:1 8429:1 8490:2 8513:4 8523:1 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8658:1 8666:1 8729:1 8735:1 8761:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:1 8885:1 8887:1 8892:1 8896:1 8899:1 8900:1 8901:1 8927:1 8940:1 8945:2 8961:1 8964:1 8990:1 8992:2 8997:1 9018:2 9030:1 9033:1 9054:1 9067:1 9148:1 9200:2 9209:1 9212:1 9255:1 9308:1 9312:1 9313:1 9324:2 9351:1 9372:1 9380:1 9399:1 9400:2 9405:1 9417:1 9426:1 9434:1 9458:1 9480:4 9491:1 9510:1 9517:2 9523:1 9536:1 9539:1 9565:3 9567:3 9570:1 9594:1 9607:1 9610:1 9613:2 9627:1 9635:1 9636:1 9637:1 9642:1 9654:1 9657:2 9681:1 9702:1 9704:1 9707:1 9717:1 9725:1 9741:1 9765:5 9798:1 9799:1 9820:1 9832:2 9844:1 9862:2 9881:1 9884:2 9893:1 9904:2 9925:1 9950:1 9957:1 9961:1 9962:2 9966:1 9971:1 9997:5 10018:3 10024:1 10026:1 10031:1 10060:1 10132:1 10175:4 10233:1 10234:3 10235:1 10239:1 10246:1 10283:1 10288:2 10372:1 10379:4 10380:1 10381:2 10393:1 10427:1 10439:1 10444:1 10517:1 10519:1 10544:1 10549:1 10572:1 10576:1 10577:1 10623:1 10652:2 10659:2 10757:1 10761:2 10762:1 10816:2 10847:1 10869:1 10884:1 10891:3 10895:1 10904:2 10957:1 10989:1 11001:1 11012:5 11019:1 11021:1 11048:2 11077:1 11079:1 11082:1 11120:1 11284:2 11289:3 11295:2 11311:1 11315:1 11317:1 11340:1 11348:1 11372:1 11400:1 11418:3 11430:1 11460:1 11469:1 11473:1 11496:1 11501:1 11536:1 11550:1 11559:1 11560:1 11599:1 11608:1 11609:2 11692:1 11705:1 11706:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:2 11807:5 11845:1 11874:2 11881:1 11882:1 11888:1 11895:1 11909:2 11954:1 11966:1 11969:1 11976:1 11982:1 11987:1 12002:4 12050:1 12055:1 12064:1 12067:2 12069:1 12070:1 12074:2 12089:2 12121:1 12125:1 12144:1 12149:1 12156:1 12168:1 12201:1 12208:1 12209:1 12264:2 12269:1 12279:1 12282:1 12301:1 12331:1 12339:1 12356:1 12365:1 12461:1 12478:1 12479:5 12504:1 12507:1 12508:1 12522:2 12529:2 12540:2 12543:1 12546:1 12565:1 12583:2 12598:1 12605:1 12610:1 12623:2 12656:1 12676:1 12683:1 12773:1 12791:1 12808:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13145:1 13163:1 13174:1 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13411:1 13416:1 13481:1 13482:1 13492:2 13494:3 13498:2 13514:1 13520:1 13522:1 13539:1 13543:1 13551:1 13582:1 13645:1 13647:1 13656:2 13658:1 13665:1 13681:2 13708:2 13720:1 13727:1 13783:1 13792:1 13804:1 13843:1 13876:1 13886:1 13930:1 13962:1 13969:4 13984:1 14013:1 14016:2 14020:5 14021:1 14038:2 14040:1 14062:1 14083:1 14101:1 14111:1 14138:1 14151:3 14158:2 14165:1 14166:3 14170:1 14174:1 14222:1 14234:1 14252:1 14262:2 14273:1 14275:1 14282:1 14300:4 14305:1 14321:3 14340:2 14341:1 14347:1 14368:1 14376:1 14385:1 14414:1 14431:1 14456:1 14458:1 14490:1 14491:2 14495:2 14535:1 14553:2 14562:1 14661:1 14663:1 14678:1 14679:2 14682:1 14704:1 14712:1 14735:1 14767:1 14777:1 14808:1 14833:1 14836:2 14844:1 14852:1 14863:2 14870:1 14873:1 14881:1 14884:1 14899:1 14918:2 14945:1 14959:4 15016:1 15055:1 15065:1 15067:1 15090:1 15092:2 15121:1 15137:1 15142:3 15146:1 15149:1 15156:1 15178:1 15232:1 15254:1 15267:1 15269:2 15271:1 15279:1 15310:1 15393:1 15410:1 15416:2 15423:2 15435:1 15439:1 15490:1 15498:1 15503:1 15560:1 15577:1 15588:1 15603:2 15615:1 15652:1 15675:1 15682:1 15708:2 15717:1 15725:1 15726:1 15728:1 15730:1 15741:1 15767:1 15807:2 15820:1 15892:1 15920:1 15931:2 15968:1 15981:1 15993:1 16010:1 16034:1 16048:1 16078:4 16085:1 16091:1 16094:1 16097:3 16104:1 16110:1 16117:1 16118:1 16121:1 16129:3 16138:1 16145:2 16158:4 16166:1 16183:1 16234:2 16259:2 16304:2 16315:1 16325:1 16363:1 16389:1 16391:2 16421:2 16480:1 16481:1 16492:1 16508:2 16509:1 16515:1 16519:1 16552:1 16559:1 16570:2 16620:1 16656:1 16659:1 16673:2 16680:1 16682:2 16697:1 16715:1 16738:1 16763:1 16780:1 16798:1 16800:2 16805:2 16821:1 16884:1 16900:2 16919:4 16930:1 16948:1 16981:1 17008:1 17026:1 17035:3 17048:1 17067:1 17069:1 17088:1 17110:1 17112:2 17254:1 17293:1 17319:1 17351:1 17355:1 17357:1 17368:1 17370:1 17384:1 17441:1 17449:1 17478:1 17481:1 17509:1 17544:1 17570:1 17572:1 17597:1 17615:1 17627:1 17637:1 17663:1 17730:1 17734:2 17763:1 17774:2 17866:1 17887:1 17889:1 17894:1 17897:1 17917:1 17946:1 17948:2 17957:1 17962:1 17965:1 17983:1 17986:1 18010:2 18048:1 18120:1 18127:1 18141:1 18150:1 18151:1 18166:1 18174:1 18213:1 18221:2 18226:1 18235:1 18244:2 18251:1 18286:1 18288:1 18290:1 18295:1 18297:1 18318:1 18323:1 18329:1 18342:2 18343:1 18345:1 18369:1 18372:1 18389:1 18392:1 18393:1 18394:1 18422:1 18441:1 18447:1 18448:1 18484:1 18503:1 18517:1 18556:1 18582:1 18600:2 18613:2 18629:1 18631:1 18668:1 18675:1 18695:1 18697:1 18736:1 18754:2 18787:1 18789:1 18805:4 18836:1 18862:1 18965:1 18971:1 18975:5 18988:1 18990:1 18998:1 19007:1 19011:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19184:1 19201:1 19208:1 19214:1584 19221:1 19243:1 19260:1 19270:1 19279:1 19282:1 19293:1 19416:1 19524:1 19543:1 19566:1 19590:1 19720:1 19734:2 19757:1 19766:1 19778:1 19792:1 19821:2 19837:1 19843:1 19845:4 19892:1 19921:1 19924:1 19947:1 20016:7 20074:1 20108:1 20126:2 20135:1 20202:2 20223:1 20233:2 20247:1 20252:1 20267:1 20276:2 20282:1 20286:1 20290:1 20307:1 20321:2 20327:1 20329:1 20341:2 20359:1 20387:1 20405:1 20407:3 20413:1 20483:1 20504:1 20524:2 20528:1 20596:4 20605:1 20639:1 20660:3 20667:3 20672:1 20674:1 20701:1 20704:1 20709:1 20740:2 20742:1 20752:1 20757:1 20760:1 20761:1 20769:1 20793:1 20799:1 20810:1 20815:1 20829:2 20832:1 20848:1 20864:1 20873:1 20954:1 20957:2 20961:1 21001:1 21012:1 21028:1 21030:1 21036:1 21037:1 21053:1 21133:1 21164:2 21235:1 21239:1 21253:1 21264:1 21282:1 21286:1 21289:1 21295:1 21328:2 21360:2 21367:1 21373:1 21386:2 21387:1 21404:1 21411:2 21414:2 21471:1 21474:1 21489:1 21520:1 21545:1 21555:1 21563:2 21637:1 21674:1 21680:1 21724:1 21790:2 21823:1 21845:1 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21951:1 21971:1 21988:1 21992:1 22003:1 22136:2 22161:2 22169:1 22178:1 22182:1 22191:5 22192:1 22206:2 22218:1 22241:1 22242:2 22246:1 22250:1 22252:1 22302:2 22342:1 22347:3 22352:1 22364:1 22369:1 22387:1 22388:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22506:1 22520:1 22531:1 22565:1 22576:1 22577:1 22598:2 22604:1 22616:1 22623:1 22640:1 22669:1 22676:1 22700:2 22722:1 22727:1 22733:1 22738:1 22774:1 22777:1 22791:2 22800:1 22804:2 22807:2 22813:1 22820:1 22826:1 22833:1 22854:1 22864:1 22883:1 22888:1 22926:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23037:1 23080:1 23089:1 23090:1 23106:1 23109:1 23117:1 23129:1 23133:1 23162:1 23166:1 23173:1 23181:1 23185:1 23199:1 23211:1 23313:5 23317:1 23319:1 23326:1 23367:1 23384:1 23401:2 23444:2 23466:2 23476:1 23482:1 23492:1 23534:2 23559:1 23593:1 23610:4 23630:1 23635:1 23694:1 23767:1 23807:2 23813:1 23819:1 23822:1 23830:2 23836:2 23858:1 23874:1 23875:1 23882:1 23897:1 23937:2 23967:1 23992:1 24019:1 24025:1 24044:1 24062:1 24066:2 24071:2 24090:1 24093:1 24109:1 24115:2 24160:1 24190:1 24236:1 24243:1 24257:1 24289:1 24332:1 24350:1 24389:1 24419:1 24478:3 24483:1 24489:1 24519:1 24534:1 24573:1 24586:1 24588:1 24615:3 24624:1 24643:1 24653:1 24665:1 24667:1 24677:1 24679:1 24682:1 24686:1 24722:1 24733:1 24767:1 24775:2 24783:1 24831:1 24848:2 24852:1 24855:2 24888:6 24927:1 24982:1 24988:1 24995:1 25006:1 25011:2 25024:1 25056:1 25074:1 25088:1 25092:1 25095:1 25114:1 25116:1 25122:1 25134:2 25137:1 25140:1 25156:1 25171:1 25253:2 25261:1 25289:1 25292:1 25299:1 25423:1 25506:2 25532:1 25534:1 25538:3 25543:1 25579:4 25592:1 25602:1 25613:2 25641:1 25643:1 25660:1 25678:1 25706:1 25715:1 25748:1 25749:1 25796:1 25799:3 25807:2 25812:1 25826:1 25827:1 25832:1 25834:1 25843:2 25844:1 25848:2 25861:2 25879:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 25968:1 26008:1 26009:1 26041:1 26054:1 26064:1 26081:1 26129:1 26131:1 26145:1 26170:1 26198:1 26230:1 26276:1 26279:1 26282:4 26286:1 26323:1 26345:1 26350:1 26382:1 26415:1 26444:2 26450:1 26454:1 26456:1 26475:2 26501:1 26529:2 26540:1 26582:1 26605:5 26646:1 26652:2 26668:1 26684:1 26688:1 26736:2 26751:1 26757:1 26783:1 26824:1 26855:1 26878:1 26887:1 26932:4 26948:3 26956:1 26980:1 26987:1 27011:1 27017:1 27032:1 27057:1 27082:2 27088:2 27151:1 27161:1 27185:2 27191:1 27245:1 27281:2 27308:2 27310:2 27324:1 27370:1 27383:1 27398:1 27406:1 27425:1 27432:1 27474:1 27493:1 27499:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:1 27647:1 27650:1 27653:1 27676:1 27687:3 27697:1 27713:1 27714:1 27763:2 27766:1 27770:1 27777:1 27778:1 27783:2 27790:1 27812:3 27815:1 27821:3 27822:1 27828:1 27830:1 27833:1 27836:1 27841:1 27849:1 27858:1 27882:2 27898:1 27915:4 27923:1 27927:1 27929:2 27930:1 27962:1 27972:1 28049:2 28075:1 28097:2 28100:1 28101:1 28116:2 28184:1 28190:1 28227:1 28232:1 28243:1 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28455:1 28467:1 28481:1 28489:1 28502:1 28516:7 28524:1 28539:1 28549:4 28569:5 28599:1 28618:1 28625:1 28648:1 28656:1 28659:1 28661:1 28678:2 28684:5 28720:8 28727:1 28730:1 28733:1 28738:2 28756:1 28789:1 28798:1 28801:2 28814:1 28838:1 28857:1 28860:1 28920:1 28929:1 28942:1 28953:1 28957:1 28983:1 28994:1 28998:1 29042:1 29050:1 29060:1 29062:1 29067:2 29073:1 29103:1 29107:1 29130:2 29150:1 29164:1 29167:1 29187:1 29214:1 29229:1 29243:1 29249:2 29297:2 29306:1 29341:1 29347:1 29380:1 29390:1 29463:1 29471:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:4 29586:1 29591:2 29603:1 29606:1 29616:1 29626:1 29645:1 29667:2 29685:2 29732:1 29740:1 29752:2 29759:2 29766:1 29768:1 29816:1 29822:4 29831:1 29854:1 29874:1 29883:1 29885:2
12 2:1 39:1 40:1 51:1 65:2 110:2 120:1 137:1 179:1 211:1 230:1 239:2 247:1 313:1 323:1 325:1 343:1 363:3 398:2 405:3 417:2 418:1 424:1 448:1 451:3 461:1 473:2 490:1 559:1 565:1 592:1 622:2 650:1 666:1 711:1 722:1 768:1 832:1 835:1 837:1 861:1 905:4 910:1 923:1 928:4 933:1 944:1 947:1 957:1 976:2 982:2 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1054:1 1083:1 1099:1 1101:1 1105:1 1118:1 1129:1 1153:1 1163:1 1208:1 1209:1 1220:2 1221:1 1235:1 1247:1 1258:2 1293:2 1303:1 1318:1 1322:1 1342:2 1353:3 1384:1 1422:4 1465:1 1467:1 1468:1 1470:1 1473:5 1474:1 1475:1 1496:1 1531:1 1536:1 1557:1 1558:2 1577:1 1580:1 1586:1 1593:2 1599:1 1669:2 1671:1 1703:2 1707:1 1716:4 1727:1 1737:1 1738:1 1785:1 1812:1 1827:1 1830:1 1856:1 1860:2 1865:1 1869:2 1880:1 1895:2 1898:1 1900:1 1920:1 1929:2 1935:1 1940:1 1950:2 1969:1 2037:1 2039:3 2041:1 2066:1 2081:1 2115:1 2122:1 2134:1 2162:1 2239:4 2250:2 2252:1 2261:1 2263:2 2287:1 2295:2 2296:2 2297:2 2301:4 2304:2 2307:2 2308:1 2312:1 2314:1 2316:2 2324:5 2325:1 2328:1 2331:1 2335:1 2338:2 2370:1 2394:4 2403:2 2405:1 2419:1 2432:1 2440:1 2478:2 2527:1 2534:1 2562:1 2573:1 2589:1 2601:1 2604:4 2623:1 2657:1 2665:1 2670:1 2731:1 2755:1 2787:4 2795:1 2802:1 2824:1 2826:1 2848:2 2860:3 2871:1 2911:1 2921:1 2930:1 2956:4 2962:1 2967:1 3017:1 3033:1 3037:1 3040:1 3049:1 3052:2 3060:1 3075:1 3081:1 3095:1 3111:1 3121:1 3128:1 3141:1 3172:1 3175:1 3204:1 3207:1 3261:1 3272:1 3287:1 3295:1 3317:1 3335:1 3340:2 3361:1 3376:1 3388:2 3402:3 3411:1 3418:1 3479:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3679:1 3683:1 3689:1 3698:1 3713:1 3717:1 3728:1 3746:1 3757:4 3766:1 3780:1 3787:1 3829:2 3858:2 3877:1 3886:1 3896:1 3901:3 3905:1 3923:1 3941:1 3960:1 4004:1 4010:2 4024:1 4031:1 4042:2 4047:1 4076:1 4090:1 4113:1 4122:1 4132:1 4136:2 4140:3 4186:1 4209:1 4238:2 4292:1 4321:5 4329:2 4335:1 4369:1 4390:4 4396:1 4416:1 4421:1 4428:1 4454:1 4471:1 4480:2 4504:1 4509:1 4563:1 4593:1 4607:1 4608:1 4609:1 4630:1 4667:1 4670:1 4675:1 4689:1 4691:2 4744:1 4775:2 4789:1 4814:1 4844:3 4876:1 4877:1 4911:1 5010:1 5028:7 5031:1 5056:2 5067:1 5099:1 5138:5 5153:3 5154:2 5156:1 5161:1 5164:1 5168:1 5169:2 5175:2 5181:1 5183:1 5185:1 5186:1 5209:1 5221:1 5253:1 5376:2 5389:1 5457:1 5469:1 5483:2 5487:1 5498:3 5522:1 5532:6 5579:8 5614:1 5644:1 5682:1 5765:1 5779:1 5788:2 5805:1 5829:1 5845:1 5854:1 5873:1 5904:1 5922:1 5944:2 5950:1 5952:1 5959:1 5960:1 5968:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:1 6282:5 6303:1 6305:1 6311:1 6312:1 6316:2 6319:1 6334:1 6388:1 6392:2 6428:1 6440:2 6458:1 6487:1 6519:2 6526:1 6530:1 6537:1 6585:1 6602:4 6605:1 6609:1 6612:2 6613:1 6621:1 6622:1 6629:3 6630:7 6633:2 6650:1 6673:1 6683:2 6729:1 6770:2 6780:1 6785:2 6827:1 6914:1 6927:1 6939:1 6949:1 6962:2 6969:1 6974:1 6980:1 7001:1 7046:1 7049:1 7052:1 7055:1 7071:2 7097:3 7123:1 7127:1 7134:1 7169:1 7208:1 7237:1 7270:1 7293:1 7331:1 7404:2 7407:2 7432:1 7463:1 7501:1 7509:1 7519:1 7520:2 7537:1 7616:1 7682:1 7706:3 7723:1 7747:3 7753:2 7762:3 7801:1 7817:1 7829:1 7831:1 7870:2 7883:1 7911:1 7914:1 7917:1 7952:7 7954:6 7960:1 7968:1 7971:1 7975:1 7987:1 8011:2 8029:27 8043:5 8044:1 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8113:1 8142:2 8164:1 8212:1 8221:2 8237:1 8248:1 8298:1 8303:1 8354:2 8407:1 8408:1 8429:1 8490:2 8513:4 8523:1 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8658:1 8666:1 8729:1 8735:1 8761:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:1 8885:1 8887:1 8892:1 8896:1 8899:1 8900:1 8901:1 8927:1 8940:1 8945:2 8961:1 8964:1 8990:1 8992:2 8997:1 9018:2 9030:1 9033:1 9054:1 9067:1 9148:1 9200:2 9209:1 9212:1 9227:1 9255:1 9308:1 9312:1 9313:1 9324:2 9351:1 9372:1 9380:1 9399:1 9400:2 9405:1 9417:1 9426:1 9434:1 9458:1 9480:4 9491:1 9510:1 9517:2 9518:1 9521:1 9523:1 9536:1 9539:1 9565:3 9567:3 9570:1 9594:1 9607:1 9610:1 9613:2 9627:1 9635:1 9636:1 9637:1 9642:1 9654:1 9657:2 9681:1 9702:1 9704:1 9707:1 9717:1 9725:1 9741:1 9765:6 9798:1 9799:1 9820:1 9832:2 9844:1 9862:2 9881:1 9884:2 9893:1 9904:2 9925:1 9950:1 9957:1 9961:1 9962:2 9966:1 9971:1 9997:5 10018:3 10024:1 10026:1 10031:1 10060:1 10132:1 10175:4 10233:1 10234:3 10235:1 10239:1 10246:1 10283:1 10288:2 10372:1 10379:4 10380:1 10381:2 10393:1 10427:1 10439:1 10444:1 10517:1 10519:1 10544:1 10549:1 10572:1 10576:1 10577:1 10623:1 10652:2 10659:2 10757:1 10761:2 10762:1 10816:2 10847:1 10869:1 10884:1 10889:1 10891:3 10895:1 10904:2 10957:1 10989:1 11001:1 11012:5 11019:1 11021:1 11048:2 11077:1 11079:1 11082:1 11120:1 11284:2 11289:3 11295:2 11311:1 11315:1 11317:1 11331:1 11340:1 11348:1 11372:1 11400:1 11418:3 11430:1 11460:1 11469:1 11473:1 11496:1 11501:1 11536:1 11550:1 11559:1 11560:1 11599:1 11608:1 11609:2 11692:1 11705:1 11706:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:2 11807:5 11845:1 11874:2 11881:1 11882:1 11888:1 11895:1 11909:2 11922:1 11954:1 11966:1 11969:1 11976:1 11982:1 11987:2 12002:4 12050:1 12055:1 12064:1 12067:2 12069:1 12070:1 12074:2 12089:2 12121:1 12125:1 12136:1 12144:1 12149:1 12156:1 12168:1 12201:1 12208:1 12209:1 12264:2 12269:1 12279:1 12282:1 12301:1 12331:1 12339:1 12356:1 12365:1 12374:1 12461:1 12478:1 12479:5 12504:1 12507:1 12508:1 12522:2 12529:2 12540:2 12543:1 12546:1 12565:1 12583:2 12598:1 12605:1 12610:1 12623:2 12656:1 12676:1 12683:1 12773:1 12791:1 12808:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13145:1 13163:1 13174:1 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13411:1 13416:1 13481:1 13482:1 13492:2 13494:3 13498:2 13514:1 13520:1 13522:1 13539:1 13543:1 13551:1 13582:1 13619:1 13645:1 13647:1 13656:2 13658:1 13665:1 13681:2 13708:2 13720:1 13727:1 13783:1 13792:1 13804:1 13843:1 13876:1 13886:1 13930:1 13962:1 13969:4 13984:1 14013:1 14016:2 14020:6 14021:1 14038:2 14040:1 14062:1 14083:1 14101:1 14111:1 14138:1 14151:3 14158:2 14165:1 14166:3 14170:1 14174:1 14222:1 14223:1 14234:1 14252:1 14262:2 14273:1 14275:1 14282:1 14300:5 14305:1 14321:3 14340:2 14341:1 14347:1 14368:1 14376:1 14385:1 14414:1 14431:1 14456:1 14458:1 14490:1 14491:2 14495:2 14535:1 14553:2 14562:1 14612:1 14661:1 14663:1 14678:1 14679:2 14682:1 14704:1 14712:1 14735:1 14767:1 14777:1 14808:1 14833:1 14836:2 14844:1 14852:1 14863:2 14870:1 14873:1 14881:1 14884:1 14899:1 14918:2 14945:1 14959:4 15016:1 15055:1 15065:1 15067:1 15070:1 15090:1 15092:2 15121:1 15137:1 15142:3 15146:1 15149:1 15156:1 15178:1 15232:1 15254:1 15267:1 15269:2 15271:1 15279:1 15310:1 15393:1 15410:1 15411:1 15416:2 15423:2 15435:1 15439:1 15490:1 15498:1 15503:1 15537:1 15560:1 15577:1 15588:1 15603:2 15615:1 15652:1 15675:1 15682:1 15708:2 15717:1 15725:1 15726:1 15728:1 15730:1 15741:1 15767:1 15807:2 15820:1 15892:1 15920:1 15931:2 15968:1 15981:1 15993:1 16010:1 16034:1 16048:1 16078:4 16085:1 16091:1 16094:1 16097:3 16104:1 16110:1 16117:1 16118:1 16121:1 16129:3 16138:1 16145:2 16158:4 16166:1 16183:1 16224:1 16234:2 16259:2 16304:2 16315:1 16325:1 16363:1 16389:1 16391:2 16421:2 16479:1 16480:1 16481:1 16492:1 16508:2 16509:1 16515:1 16519:1 16552:1 16559:1 16570:2 16620:1 16656:1 16659:1 16673:2 16680:1 16682:2 16697:1 16715:1 16738:1 16763:1 16780:1 16798:1 16800:2 16805:2 16821:1 16884:1 16900:2 16919:4 16930:1 16948:1 16969:1 16981:1 17008:1 17026:1 17035:3 17048:1 17067:1 17069:1 17088:1 17110:1 17112:2 17254:1 17293:2 17319:1 17351:1 17355:1 17357:1 17368:1 17370:1 17384:1 17441:1 17449:1 17478:1 17481:1 17509:1 17544:1 17560:1 17570:1 17572:1 17597:1 17615:1 17627:1 17637:1 17663:1 17666:1 17730:1 17734:3 17763:1 17774:2 17866:1 17887:1 17889:1 17894:1 17897:1 17900:1 17917:1 17946:1 17948:2 17957:1 17962:1 17965:1 17983:1 17986:1 18010:2 18048:1 18120:1 18127:1 18141:1 18150:1 18151:1 18166:1 18174:1 18213:1 18221:2 18226:1 18235:1 18242:1 18244:2 18251:1 18274:1 18286:1 18288:1 18290:1 18295:1 18297:1 18318:1 18323:1 18329:1 18342:2 18343:2 18345:1 18369:1 18372:1 18389:1 18392:1 18393:1 18394:1 18422:1 18441:1 18447:1 18448:1 18484:1 18503:1 18517:1 18556:1 18582:1 18600:3 18613:2 18629:1 18631:1 18668:1 18675:1 18695:1 18697:1 18736:1 18754:2 18787:1 18789:1 18805:4 18836:1 18862:1 18965:1 18971:1 18975:6 18988:1 18990:1 18998:1 19007:1 19011:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19157:1 19164:1 19184:1 19201:1 19208:1 19214:1658 19221:1 19243:1 19260:1 19270:1 19279:1 19282:1 19293:1 19416:1 19524:1 19543:1 19566:1 19590:1 19720:1 19734:2 19757:1 19766:1 19778:1 19792:1 19821:2 19837:1 19843:1 19845:4 19892:1 19921:1 19924:1 19947:1 20016:7 20074:1 20108:1 20126:3 20135:1 20202:2 20223:1 20233:2 20247:1 20252:2 20267:1 20276:2 20282:1 20286:1 20290:1 20307:1 20321:2 20327:1 20329:1 20341:2 20359:1 20387:1 20405:1 20407:3 20413:1 20430:1 20483:1 20504:1 20524:2 20528:1 20596:4 20605:1 20639:1 20660:3 20667:3 20672:1 20674:1 20701:1 20704:1 20709:1 20740:2 20742:1 20752:1 20757:1 20760:1 20761:1 20769:1 20793:1 20799:1 20810:1 20815:1 20829:2 20832:1 20848:1 20864:1 20873:1 20954:1 20957:2 20961:1 21001:1 21012:1 21028:1 21030:1 21036:1 21037:1 21053:1 21133:1 21164:2 21235:1 21239:1 21253:1 21264:1 21282:1 21286:1 21289:1 21295:1 21328:2 21345:1 21360:2 21367:1 21373:1 21386:2 21387:1 21404:1 21411:2 21414:2 21471:1 21474:1 21489:1 21520:1 21545:1 21555:1 21563:2 21637:1 21674:1 21680:1 21724:1 21790:2 21823:1 21845:2 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21951:1 21971:1 21988:1 21992:1 22003:1 22136:2 22161:2 22169:1 22178:1 22182:1 22191:5 22192:1 22206:2 22218:1 22241:1 22242:2 22246:1 22247:1 22250:1 22252:1 22302:2 22342:1 22347:3 22352:1 22364:1 22369:1 22387:1 22388:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22506:1 22520:1 22531:1 22565:1 22576:1 22577:1 22598:2 22604:1 22616:1 22623:1 22640:1 22669:1 22676:1 22700:2 22722:1 22727:1 22733:1 22738:1 22774:1 22777:1 22791:2 22800:1 22804:2 22807:2 22813:1 22820:1 22826:1 22833:1 22854:1 22864:1 22883:1 22888:1 22926:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23037:1 23080:1 23089:1 23090:1 23106:1 23109:1 23117:1 23129:1 23133:1 23162:1 23166:1 23173:1 23181:1 23185:1 23199:2 23211:1 23313:5 23317:1 23319:1 23326:1 23332:1 23335:1 23367:1 23384:1 23401:2 23444:2 23466:2 23476:1 23482:1 23492:1 23534:2 23559:1 23593:1 23610:5 23630:1 23635:1 23694:1 23767:1 23807:2 23813:1 23819:1 23822:1 23830:2 23836:2 23858:1 23874:1 23875:1 23882:1 23897:2 23937:2 23967:1 23992:1 24019:1 24025:1 24044:1 24058:1 24062:1 24066:3 24071:2 24090:1 24093:1 24109:1 24115:2 24160:1 24190:1 24236:1 24243:1 24257:1 24289:1 24332:1 24350:1 24389:1 24419:1 24478:3 24483:1 24489:1 24519:1 24534:1 24573:1 24586:2 24588:1 24615:3 24624:1 24643:1 24653:1 24665:1 24667:1 24677:1 24679:1 24682:1 24686:1 24722:1 24733:1 24767:1 24775:2 24783:1 24831:1 24843:1 24848:2 24852:1 24855:2 24888:6 24927:1 24962:1 24982:1 24988:1 24995:1 25006:1 25011:2 25024:1 25056:1 25074:1 25088:1 25092:1 25095:1 25114:1 25116:1 25120:1 25122:1 25134:2 25137:1 25140:1 25156:1 25171:1 25253:2 25261:1 25289:1 25292:1 25299:1 25423:1 25506:2 25532:1 25534:1 25538:3 25543:1 25579:4 25592:2 25602:1 25613:2 25641:1 25643:1 25660:1 25678:1 25706:1 25715:1 25736:1 25748:1 25749:1 25796:1 25799:3 25807:2 25812:1 25826:1 25827:1 25832:1 25834:1 25843:2 25844:1 25848:2 25861:3 25879:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 25968:1 26008:1 26009:1 26041:1 26054:1 26064:1 26081:1 26129:1 26131:1 26145:1 26170:1 26198:1 26230:1 26263:1 26276:1 26279:1 26282:4 26286:1 26323:1 26345:2 26350:1 26382:1 26415:1 26444:2 26450:1 26454:1 26456:1 26463:1 26475:2 26501:1 26529:2 26540:1 26582:1 26605:6 26646:1 26652:2 26668:1 26684:1 26688:1 26736:2 26751:1 26757:1 26783:1 26824:1 26855:1 26878:1 26887:1 26932:4 26948:3 26956:1 26980:1 26987:1 27007:1 27011:1 27017:1 27032:1 27057:1 27082:2 27088:2 27151:1 27161:1 27185:2 27191:1 27245:1 27281:2 27308:2 27310:2 27324:1 27370:1 27383:1 27398:1 27406:1 27425:1 27432:1 27474:1 27493:1 27499:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:2 27647:1 27650:1 27653:1 27676:1 27687:3 27697:1 27713:1 27714:1 27763:2 27766:1 27770:1 27777:1 27778:1 27783:2 27790:1 27812:3 27815:1 27821:3 27822:1 27827:1 27828:1 27830:1 27833:1 27836:1 27841:1 27849:1 27858:1 27882:2 27898:1 27915:4 27923:1 27927:1 27929:2 27930:1 27962:1 27972:1 28049:2 28075:1 28097:2 28100:2 28101:1 28116:2 28184:1 28190:1 28227:1 28232:1 28243:1 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28455:1 28467:1 28481:1 28489:1 28502:1 28516:7 28524:1 28539:1 28549:4 28569:5 28599:1 28618:1 28625:1 28648:1 28656:1 28659:1 28661:1 28678:2 28684:5 28720:8 28727:1 28730:1 28733:1 28738:2 28756:1 28789:1 28798:1 28801:2 28814:1 28838:1 28857:1 28858:1 28860:1 28920:1 28929:1 28942:1 28953:1 28957:1 28983:1 28994:1 28998:1 29042:1 29050:1 29060:1 29062:1 29067:2 29073:1 29103:1 29107:1 29130:2 29150:1 29164:1 29167:1 29187:1 29214:1 29229:1 29243:1 29249:2 29297:2 29306:1 29341:1 29347:1 29380:1 29390:1 29463:1 29471:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:4 29586:1 29591:2 29603:1 29606:1 29616:1 29626:1 29645:1 29667:2 29685:2 29732:1 29740:1 29752:2 29759:2 29766:1 29768:1 29816:1 29822:4 29831:1 29854:1 29874:1 29883:1 29885:2
12 2:1 39:1 40:1 51:1 65:2 110:2 120:1 137:1 179:1 211:1 230:1 239:2 247:1 313:1 323:1 325:1 343:1 363:3 398:2 405:3 417:2 418:1 424:1 448:1 451:3 461:1 473:2 490:1 559:1 565:1 592:1 622:2 628:1 650:1 666:1 711:1 722:2 724:1 768:1 780:1 832:1 835:1 837:1 861:1 905:4 910:1 914:1 923:1 928:4 933:1 944:1 947:1 957:1 976:2 982:2 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1054:1 1083:1 1099:1 1101:1 1105:1 1118:1 1129:1 1153:1 1163:1 1173:1 1208:1 1209:1 1220:2 1221:1 1229:1 1235:1 1247:1 1258:2 1293:2 1303:1 1318:1 1322:1 1342:2 1353:3 1384:1 1422:5 1465:1 1467:1 1468:1 1470:1 1473:5 1474:1 1475:1 1496:1 1531:1 1536:1 1557:1 1558:2 1577:1 1580:1 1586:1 1593:2 1599:1 1669:2 1671:1 1703:2 1707:1 1716:4 1727:2 1737:1 1738:1 1785:1 1812:1 1827:1 1830:1 1856:1 1860:2 1865:1 1869:2 1880:1 1895:2 1898:1 1900:1 1920:1 1929:2 1935:1 1940:1 1950:2 1969:1 2037:1 2039:3 2041:1 2066:1 2081:1 2115:1 2122:1 2134:1 2162:1 2239:4 2250:2 2252:1 2261:1 2263:2 2287:1 2295:2 2296:2 2297:2 2301:4 2302:1 2304:2 2307:2 2308:1 2312:1 2314:1 2316:2 2318:1 2323:1 2324:5 2325:1 2328:1 2331:1 2335:1 2338:2 2370:1 2394:4 2403:2 2405:1 2419:1 2432:1 2440:1 2478:2 2527:1 2534:1 2562:1 2573:1 2589:1 2601:1 2604:4 2623:1 2657:1 2665:1 2670:1 2731:1 2755:1 2787:4 2795:1 2802:1 2824:1 2826:1 2848:2 2860:3 2871:1 2911:1 2921:1 2930:1 2956:5 2962:1 2967:1 3017:1 3033:1 3037:1 3040:1 3049:1 3052:2 3060:1 3075:1 3081:1 3095:1 3111:1 3121:1 3128:1 3141:1 3172:1 3175:1 3189:1 3204:1 3207:1 3261:1 3272:1 3287:1 3295:1 3317:1 3335:1 3340:2 3361:1 3376:1 3388:2 3402:3 3411:1 3418:1 3479:1 3500:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3679:1 3683:1 3689:1 3698:1 3713:1 3717:1 3728:1 3746:1 3757:4 3766:1 3780:1 3787:1 3829:2 3858:2 3877:1 3886:1 3896:1 3901:3 3905:1 3923:1 3941:1 3960:1 4004:1 4010:2 4024:1 4031:1 4042:2 4047:1 4076:1 4090:1 4113:1 4122:1 4132:1 4136:2 4140:3 4186:1 4209:1 4238:2 4292:1 4321:5 4329:2 4335:1 4369:1 4390:4 4396:1 4416:1 4421:1 4428:1 4454:1 4471:1 4480:2 4504:1 4509:1 4563:1 4593:1 4607:1 4608:1 4609:1 4630:1 4667:1 4670:1 4675:1 4689:1 4691:2 4744:1 4775:2 4789:1 4814:1 4844:3 4876:1 4877:1 4911:1 5010:1 5028:7 5031:1 5056:2 5067:1 5099:1 5138:5 5153:3 5154:2 5156:1 5160:1 5161:1 5164:1 5168:1 5169:2 5175:2 5181:1 5183:1 5185:1 5186:1 5209:1 5221:1 5253:1 5273:1 5376:2 5389:1 5457:1 5469:1 5483:2 5487:1 5498:3 5522:1 5532:6 5579:8 5614:1 5644:1 5682:1 5765:1 5779:1 5788:2 5805:1 5824:1 5829:1 5845:1 5854:1 5873:1 5904:1 5922:1 5944:2 5950:1 5952:1 5959:1 5960:1 5968:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:1 6282:5 6303:1 6305:1 6311:1 6312:1 6316:2 6319:1 6334:1 6388:1 6392:2 6428:1 6440:2 6458:1 6487:1 6519:2 6526:1 6530:1 6537:1 6585:1 6602:4 6605:1 6609:1 6612:2 6613:1 6621:1 6622:1 6629:3 6630:7 6633:2 6650:1 6673:1 6683:2 6729:1 6770:2 6780:1 6785:2 6827:1 6914:1 6927:1 6939:1 6949:1 6962:2 6969:1 6974:1 6980:1 7001:1 7046:1 7049:1 7052:1 7055:1 7071:2 7097:3 7123:1 7127:1 7131:1 7134:1 7169:1 7208:1 7237:1 7270:1 7293:1 7331:1 7404:2 7407:2 7432:1 7463:2 7501:1 7509:1 7519:1 7520:2 7537:1 7616:1 7682:1 7706:3 7723:1 7747:3 7753:2 7762:3 7801:1 7817:1 7829:1 7831:1 7870:2 7883:1 7911:1 7914:1 7917:1 7952:7 7954:6 7960:1 7968:1 7970:1 7971:1 7975:1 7987:1 8011:2 8029:28 8043:6 8044:1 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8113:1 8142:2 8164:1 8212:1 8221:2 8237:1 8248:1 8298:1 8303:1 8354:2 8407:1 8408:1 8429:1 8490:2 8513:4 8523:1 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8658:1 8666:1 8729:1 8735:1 8761:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:1 8885:1 8887:1 8892:1 8896:1 8899:1 8900:1 8901:1 8927:1 8940:1 8945:2 8961:1 8964:1 8979:1 8990:1 8992:2 8997:1 9018:2 9030:1 9033:1 9054:1 9067:1 9148:1 9200:2 9209:1 9212:1 9227:1 9255:1 9308:1 9312:1 9313:1 9324:2 9351:1 9372:1 9380:1 9399:1 9400:2 9405:1 9417:1 9426:1 9434:1 9441:1 9458:1 9480:4 9491:1 9510:1 9517:2 9518:1 9521:1 9523:1 9536:1 9539:2 9565:3 9567:3 9570:1 9594:1 9607:1 9610:1 9613:2 9627:1 9635:1 9636:1 9637:1 9642:1 9654:1 9657:2 9681:1 9702:1 9704:1 9707:1 9717:1 9725:1 9741:1 9765:6 9798:1 9799:1 9820:1 9832:2 9844:1 9862:2 9881:1 9884:2 9893:1 9904:2 9925:1 9950:1 9957:1 9961:1 9962:3 9966:1 9971:1 9997:5 10018:3 10024:1 10026:1 10031:1 10060:1 10132:1 10175:4 10233:1 10234:3 10235:1 10239:1 10246:1 10283:1 10288:2 10372:1 10379:4 10380:1 10381:2 10393:1 10427:1 10439:1 10444:1 10517:1 10519:1 10544:1 10549:1 10572:1 10576:1 10577:1 10622:1 10623:1 10652:2 10659:2 10757:1 10761:2 10762:1 10816:2 10847:1 10853:1 10869:2 10884:1 10889:1 10891:4 10893:1 10895:1 10904:2 10957:1 10989:1 11001:1 11012:6 11019:1 11021:1 11048:2 11077:1 11079:1 11082:1 11120:1 11172:1 11284:2 11289:3 11295:2 11311:1 11315:1 11317:1 11331:1 11340:1 11348:1 11372:1 11400:1 11418:3 11430:1 11460:1 11469:1 11473:1 11496:1 11501:1 11536:1 11550:1 11559:1 11560:1 11599:1 11608:1 11609:2 11692:1 11705:1 11706:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:2 11807:5 11845:1 11874:2 11881:1 11882:1 11888:1 11895:1 11909:2 11922:1 11954:1 11966:1 11969:1 11976:1 11982:1 11987:2 12002:4 12050:1 12055:1 12064:1 12067:2 12069:1 12070:1 12074:2 12089:2 12121:1 12125:1 12136:1 12144:1 12149:1 12156:1 12168:1 12201:1 12208:1 12209:1 12264:2 12269:1 12279:1 12282:1 12301:1 12331:1 12339:1 12356:1 12365:1 12374:1 12461:1 12478:1 12479:5 12504:1 12507:1 12508:1 12522:2 12529:2 12540:2 12543:1 12546:1 12565:1 12583:2 12598:1 12605:1 12610:1 12623:2 12656:1 12676:1 12683:1 12773:1 12791:1 12808:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13145:1 13163:1 13174:1 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13411:1 13416:1 13481:1 13482:1 13492:2 13494:3 13498:2 13514:1 13520:1 13522:1 13539:1 13543:1 13551:1 13582:2 13619:1 13645:1 13647:1 13656:2 13658:1 13665:1 13681:2 13708:2 13720:1 13727:2 13783:1 13792:1 13804:1 13843:1 13876:1 13886:1 13930:1 13962:1 13969:4 13984:1 14013:1 14016:2 14020:6 14021:1 14038:2 14040:1 14062:1 14083:1 14101:1 14111:1 14138:1 14151:3 14158:2 14165:1 14166:3 14170:1 14174:1 14222:1 14223:1 14234:1 14252:1 14262:2 14273:1 14275:1 14282:1 14300:5 14305:1 14321:3 14340:2 14341:1 14347:1 14360:1 14368:1 14376:1 14385:1 14414:1 14431:1 14456:1 14458:1 14490:1 14491:2 14495:2 14535:1 14553:2 14562:1 14612:1 14661:1 14663:1 14678:1 14679:2 14682:1 14704:2 14712:1 14729:1 14735:1 14767:1 14777:1 14797:1 14808:1 14833:1 14836:2 14844:1 14852:1 14863:2 14870:1 14873:1 14881:1 14884:1 14899:1 14918:2 14945:1 14959:4 15016:1 15055:1 15065:1 15067:1 15070:1 15090:1 15092:2 15121:1 15137:1 15142:3 15146:1 15149:1 15156:1 15178:1 15232:1 15254:1 15267:1 15269:2 15271:1 15279:1 15310:1 15393:1 15410:1 15411:1 15416:2 15423:2 15435:1 15439:1 15456:1 15490:1 15498:1 15503:1 15537:1 15560:1 15577:1 15588:1 15603:2 15615:1 15628:1 15652:1 15675:1 15682:1 15706:1 15708:2 15717:1 15725:1 15726:1 15728:1 15730:1 15741:1 15767:1 15807:2 15820:1 15892:1 15920:1 15931:2 15968:1 15981:1 15993:1 16010:1 16034:1 16048:1 16078:4 16085:1 16089:1 16091:1 16094:1 16097:3 16104:1 16110:1 16117:1 16118:1 16121:1 16129:3 16138:1 16145:2 16158:4 16166:1 16183:1 16224:1 16234:2 16259:2 16304:2 16315:1 16325:1 16363:1 16389:1 16391:2 16421:2 16479:1 16480:1 16481:1 16492:1 16508:2 16509:1 16515:1 16519:1 16552:1 16559:1 16570:2 16620:1 16656:1 16659:1 16673:2 16680:1 16682:2 16697:1 16715:1 16738:1 16763:1 16780:1 16798:1 16800:2 16805:2 16821:1 16884:1 16900:2 16919:4 16930:1 16948:1 16969:1 16981:1 17008:1 17026:1 17035:3 17048:1 17067:1 17069:1 17088:1 17110:1 17112:2 17254:1 17293:2 17319:1 17351:1 17355:1 17357:1 17368:1 17370:1 17384:1 17441:1 17449:1 17478:1 17481:1 17509:1 17544:1 17560:1 17570:1 17572:1 17597:1 17615:1 17627:1 17637:1 17647:1 17663:1 17666:1 17730:1 17734:3 17763:1 17774:2 17866:1 17887:1 17889:1 17894:1 17897:1 17900:1 17917:1 17946:1 17948:2 17957:1 17962:1 17965:1 17983:1 17986:1 18010:2 18048:1 18120:1 18127:1 18141:1 18147:1 18150:1 18151:1 18166:1 18174:1 18213:1 18221:2 18226:1 18235:1 18242:1 18244:2 18251:1 18274:1 18286:1 18288:1 18290:1 18295:1 18297:1 18318:1 18323:1 18329:1 18342:2 18343:2 18345:1 18369:1 18372:1 18389:1 18392:1 18393:1 18394:1 18422:1 18441:1 18447:1 18448:1 18484:1 18503:1 18517:1 18556:1 18582:1 18600:3 18613:2 18629:1 18631:1 18668:2 18675:1 18695:1 18697:1 18736:1 18754:2 18787:1 18789:1 18805:4 18836:1 18862:1 18965:1 18971:1 18975:6 18988:1 18990:1 18998:1 19007:1 19011:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19157:1 19164:1 19184:1 19201:1 19208:1 19214:1701 19221:1 19243:1 19260:1 19269:1 19270:1 19279:1 19282:1 19293:1 19416:1 19443:1 19524:1 19543:1 19566:1 19590:1 19720:1 19734:2 19757:1 19766:1 19778:1 19792:1 19821:2 19837:1 19843:1 19845:4 19892:1 19921:1 19924:1 19947:1 19997:1 20016:7 20074:1 20108:1 20126:3 20135:1 20202:2 20223:1 20233:2 20247:1 20252:2 20267:1 20276:2 20282:1 20286:1 20290:1 20307:1 20321:2 20327:1 20329:1 20341:2 20359:1 20387:1 20405:1 20407:3 20413:1 20430:1 20483:1 20504:1 20524:2 20528:1 20596:4 20605:1 20639:1 20660:3 20667:3 20672:1 20674:1 20677:1 20701:2 20704:1 20709:1 20740:2 20742:1 20752:1 20757:1 20760:1 20761:1 20769:1 20793:1 20799:1 20810:1 20815:1 20829:2 20832:1 20848:1 20864:1 20873:1 20954:1 20957:2 20961:1 21001:1 21004:2 21012:1 21028:1 21030:1 21036:1 21037:1 21053:1 21133:1 21164:2 21235:1 21239:1 21253:1 21264:1 21282:1 21286:1 21289:1 21295:1 21328:2 21345:1 21360:2 21367:1 21373:1 21386:2 21387:1 21404:2 21411:2 21414:2 21471:1 21474:1 21489:1 21520:1 21545:1 21555:1 21563:2 21637:1 21674:1 21680:1 21724:2 21790:2 21823:1 21845:2 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21946:1 21951:1 21971:1 21988:1 21992:1 22003:1 22136:2 22161:2 22169:1 22178:1 22182:1 22191:5 22192:1 22206:2 22218:1 22241:1 22242:2 22246:1 22247:1 22250:1 22252:1 22302:2 22342:1 22347:3 22352:1 22364:1 22369:1 22374:1 22387:1 22388:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22506:1 22520:1 22531:1 22565:1 22576:1 22577:1 22598:2 22604:1 22616:1 22623:1 22640:1 22669:1 22676:1 22700:2 22722:1 22727:1 22733:1 22738:1 22757:1 22774:1 22777:1 22791:2 22800:1 22804:2 22807:2 22813:1 22820:1 22826:1 22833:1 22854:1 22864:1 22883:1 22888:2 22926:1 22939:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23037:1 23080:1 23089:1 23090:1 23106:1 23109:1 23117:1 23129:1 23133:1 23162:1 23166:1 23173:1 23181:1 23185:1 23199:2 23211:1 23313:5 23317:1 23319:1 23326:1 23332:1 23335:1 23367:1 23384:1 23401:2 23444:2 23466:2 23476:1 23482:1 23492:1 23534:2 23559:1 23593:1 23610:5 23630:1 23635:1 23694:1 23767:1 23807:2 23813:1 23819:1 23822:1 23830:2 23833:1 23836:2 23858:2 23874:1 23875:1 23882:1 23897:2 23937:2 23967:1 23992:1 24019:1 24025:1 24044:1 24058:1 24062:1 24066:3 24071:2 24090:1 24093:1 24109:1 24115:2 24160:1 24190:1 24236:1 24243:1 24257:1 24289:1 24332:1 24350:1 24389:1 24394:1 24419:1 24478:3 24483:1 24489:1 24519:1 24534:2 24573:1 24586:2 24588:1 24615:3 24624:1 24643:1 24653:1 24665:1 24667:1 24677:1 24679:1 24682:1 24686:1 24722:1 24733:1 24767:1 24775:2 24783:1 24831:1 24843:1 24848:2 24852:1 24855:2 24888:6 24927:1 24962:1 24982:1 24988:1 24995:1 25006:1 25011:2 25024:1 25056:1 25074:1 25088:1 25092:1 25095:1 25114:1 25116:1 25120:1 25122:1 25134:2 25137:1 25140:1 25156:1 25171:1 25253:2 25261:1 25289:1 25292:1 25299:1 25403:1 25423:1 25506:2 25532:1 25534:1 25538:3 25543:1 25579:4 25592:2 25602:1 25613:2 25641:1 25643:1 25660:1 25678:1 25706:1 25715:1 25736:1 25748:1 25749:1 25796:1 25799:3 25807:2 25812:1 25826:1 25827:1 25832:1 25834:1 25843:2 25844:1 25848:2 25861:3 25879:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 25968:1 26008:1 26009:1 26041:1 26054:1 26064:1 26081:1 26129:1 26131:1 26142:1 26145:1 26170:1 26198:1 26230:1 26263:1 26276:1 26279:1 26282:4 26286:1 26323:1 26345:2 26350:1 26356:1 26382:1 26415:1 26437:1 26444:2 26446:1 26450:1 26454:1 26456:1 26463:1 26475:2 26501:1 26529:3 26540:1 26582:1 26605:6 26646:1 26652:2 26668:1 26684:1 26688:1 26736:2 26751:1 26757:1 26783:1 26824:1 26855:1 26878:1 26887:1 26932:4 26948:3 26956:1 26980:1 26987:1 27007:1 27011:1 27017:1 27032:1 27057:1 27082:2 27088:2 27151:1 27161:1 27185:2 27191:1 27245:1 27281:2 27308:2 27310:2 27324:1 27370:1 27383:1 27398:1 27406:1 27425:1 27432:1 27474:1 27493:1 27499:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:2 27647:1 27650:1 27653:1 27676:1 27687:3 27697:1 27713:1 27714:1 27763:2 27766:1 27770:1 27777:1 27778:1 27783:2 27790:1 27812:3 27815:1 27821:3 27822:1 27827:1 27828:1 27830:1 27833:1 27836:1 27841:1 27849:1 27858:1 27882:2 27898:1 27915:4 27923:1 27927:1 27929:2 27930:1 27951:1 27962:1 27972:1 28049:2 28075:1 28097:2 28100:2 28101:1 28116:2 28184:1 28190:1 28227:1 28232:1 28243:1 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28455:1 28467:1 28481:1 28489:1 28502:1 28516:7 28524:1 28539:1 28549:4 28569:5 28599:1 28618:1 28625:1 28648:1 28656:1 28659:1 28661:1 28678:2 28684:5 28720:8 28727:1 28730:1 28733:1 28738:2 28756:1 28789:1 28798:1 28801:2 28814:1 28838:1 28857:1 28858:1 28860:1 28920:1 28929:1 28942:1 28953:1 28957:1 28983:1 28994:1 28998:1 28999:1 29042:1 29050:1 29060:1 29062:1 29067:2 29073:1 29103:1 29107:1 29130:2 29150:1 29164:1 29167:1 29187:1 29214:1 29229:1 29243:1 29249:2 29297:2 29306:1 29341:1 29347:1 29380:1 29390:2 29463:1 29471:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:4 29586:1 29591:2 29603:1 29606:1 29616:1 29626:1 29645:1 29667:2 29685:2 29732:1 29740:1 29752:2 29759:2 29766:1 29768:1 29816:1 29822:4 29831:1 29854:1 29874:1 29883:1 29885:2
12 2:1 39:1 40:1 51:1 65:2 110:2 120:1 137:1 179:1 211:1 230:1 239:2 247:1 313:1 323:1 325:1 343:1 363:4 398:2 405:3 417:2 418:1 424:1 448:1 451:3 461:1 473:2 490:1 559:1 565:1 592:1 622:2 628:1 650:1 666:1 711:1 713:1 722:2 724:1 768:1 780:1 832:1 835:1 837:1 861:1 905:4 910:1 914:1 923:1 928:4 933:1 944:1 947:1 957:1 976:2 982:2 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1046:1 1054:1 1083:1 1099:1 1101:1 1105:1 1118:1 1129:1 1153:1 1163:1 1173:1 1208:1 1209:1 1220:2 1221:1 1229:2 1235:1 1245:1 1247:1 1258:2 1293:2 1303:1 1318:1 1322:1 1342:2 1353:3 1384:1 1422:5 1465:1 1467:1 1468:1 1470:1 1473:5 1474:1 1475:1 1496:1 1531:1 1536:1 1557:1 1558:2 1577:1 1580:1 1586:1 1593:2 1599:1 1669:2 1671:1 1703:2 1707:1 1716:4 1727:2 1737:1 1738:1 1785:1 1812:1 1827:1 1830:1 1856:1 1860:2 1865:1 1869:2 1880:1 1895:2 1898:1 1900:1 1920:1 1929:2 1935:1 1940:1 1950:2 1969:1 2037:1 2039:3 2041:1 2066:1 2081:1 2115:1 2122:1 2134:1 2162:2 2239:4 2250:2 2252:1 2261:1 2263:2 2287:1 2295:2 2296:2 2297:2 2301:4 2302:1 2304:2 2307:2 2308:1 2312:1 2314:1 2316:2 2318:1 2323:1 2324:5 2325:1 2328:1 2331:1 2335:1 2338:2 2370:1 2394:4 2403:2 2405:1 2419:1 2432:1 2440:1 2478:2 2527:1 2528:1 2534:1 2562:1 2573:1 2589:1 2601:1 2604:4 2623:1 2657:1 2665:1 2670:1 2731:1 2755:1 2787:4 2795:1 2802:1 2824:1 2826:1 2848:2 2860:3 2871:1 2911:1 2921:1 2930:1 2956:5 2962:1 2967:1 3017:1 3033:1 3037:1 3040:1 3049:1 3052:2 3060:1 3075:1 3081:1 3095:1 3111:1 3121:1 3128:1 3141:1 3172:1 3175:1 3189:1 3204:1 3207:1 3261:1 3272:1 3287:1 3295:1 3317:1 3335:1 3340:2 3361:1 3376:1 3388:2 3402:3 3411:1 3418:1 3479:1 3500:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3679:1 3683:1 3689:1 3698:1 3713:1 3717:1 3728:1 3746:1 3757:4 3766:1 3780:1 3787:1 3829:2 3858:2 3877:1 3886:1 3896:1 3901:3 3905:1 3923:1 3941:1 3960:1 4004:1 4010:2 4024:1 4031:1 4042:2 4047:1 4076:1 4090:1 4113:1 4122:1 4132:1 4136:2 4140:3 4186:1 4209:1 4238:2 4292:1 4321:5 4329:2 4335:1 4369:1 4390:4 4396:1 4416:1 4421:1 4428:1 4454:1 4471:1 4480:2 4504:1 4509:1 4563:1 4593:1 4607:1 4608:1 4609:1 4630:1 4667:1 4670:1 4675:1 4689:1 4691:2 4744:1 4775:2 4789:1 4814:1 4844:3 4876:1 4877:1 4911:1 5010:1 5028:7 5031:1 5056:2 5067:1 5099:1 5138:5 5153:3 5154:2 5156:1 5160:1 5161:1 5164:1 5168:1 5169:2 5175:2 5181:1 5183:2 5185:1 5186:1 5209:1 5221:1 5253:1 5273:1 5376:2 5389:1 5457:1 5469:1 5483:2 5487:1 5498:3 5522:1 5532:6 5579:8 5614:1 5644:1 5682:1 5765:1 5779:1 5788:2 5805:1 5824:1 5829:1 5845:1 5854:1 5873:1 5904:1 5922:1 5944:2 5950:1 5952:1 5959:1 5960:1 5968:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:1 6282:5 6303:1 6305:1 6311:1 6312:1 6316:2 6319:1 6334:1 6388:1 6392:2 6428:1 6440:2 6458:1 6487:1 6519:2 6526:1 6530:1 6537:1 6585:1 6602:4 6605:1 6609:1 6612:3 6613:1 6621:1 6622:1 6629:3 6630:7 6633:2 6650:1 6673:1 6683:2 6729:1 6770:2 6780:1 6785:2 6827:1 6914:1 6927:1 6939:1 6949:1 6962:2 6969:1 6974:1 6980:1 7001:1 7046:1 7049:1 7052:1 7055:1 7071:2 7097:3 7123:1 7127:1 7131:1 7134:1 7169:1 7208:1 7237:1 7270:1 7293:1 7331:1 7404:2 7407:2 7432:1 7463:2 7501:1 7509:1 7519:1 7520:2 7537:1 7616:1 7682:1 7706:3 7723:1 7747:3 7753:2 7762:3 7801:1 7817:1 7829:1 7831:1 7870:2 7883:1 7911:1 7914:1 7917:1 7952:7 7954:6 7960:1 7968:1 7970:1 7971:1 7975:1 7987:1 8011:2 8029:28 8043:6 8044:1 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8113:1 8142:2 8164:1 8212:1 8221:2 8237:1 8248:1 8298:1 8303:1 8354:2 8407:1 8408:1 8429:1 8490:2 8513:4 8523:1 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8658:1 8666:1 8729:1 8735:1 8761:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:1 8885:1 8887:1 8892:1 8896:1 8899:1 8900:1 8901:1 8927:1 8940:1 8945:2 8961:1 8964:1 8979:1 8990:1 8992:2 8997:1 9018:2 9030:1 9033:1 9054:1 9067:1 9148:1 9200:2 9209:1 9212:1 9227:1 9255:1 9308:1 9312:1 9313:1 9324:2 9351:1 9372:1 9380:1 9399:1 9400:2 9405:1 9417:1 9426:1 9434:1 9441:1 9458:1 9480:4 9491:1 9510:1 9517:2 9518:1 9521:1 9523:1 9536:1 9539:2 9565:3 9567:3 9570:1 9594:1 9607:1 9610:1 9613:2 9627:1 9635:1 9636:1 9637:1 9642:1 9654:1 9657:2 9681:1 9702:1 9704:1 9707:1 9717:1 9725:1 9741:1 9765:6 9798:1 9799:1 9820:1 9832:2 9844:1 9862:2 9881:1 9884:2 9893:1 9904:2 9925:1 9950:1 9957:1 9961:1 9962:3 9966:1 9971:1 9997:5 10018:3 10024:1 10026:1 10031:1 10060:1 10132:1 10175:4 10233:1 10234:3 10235:1 10239:1 10246:1 10270:1 10283:1 10288:2 10372:1 10379:4 10380:1 10381:2 10393:1 10427:1 10439:1 10444:1 10517:1 10519:1 10544:1 10549:1 10572:1 10576:1 10577:1 10622:1 10623:1 10652:2 10659:2 10757:1 10761:3 10762:1 10816:2 10847:1 10853:1 10869:2 10884:1 10889:1 10891:4 10893:1 10895:1 10904:2 10957:1 10989:1 11001:1 11012:6 11019:1 11021:1 11048:2 11077:1 11079:1 11082:1 11120:1 11172:1 11284:2 11289:3 11295:2 11311:1 11315:1 11317:1 11331:1 11340:1 11348:1 11372:1 11400:1 11418:3 11430:1 11460:1 11469:1 11473:1 11496:1 11501:1 11536:1 11550:1 11559:1 11560:1 11599:1 11608:1 11609:2 11692:1 11705:1 11706:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:2 11807:5 11845:1 11874:2 11881:1 11882:1 11888:1 11895:1 11909:2 11922:1 11954:1 11966:1 11969:1 11976:1 11982:1 11987:2 12002:4 12050:1 12055:1 12064:1 12067:2 12069:1 12070:1 12074:2 12089:2 12121:1 12125:1 12136:1 12144:1 12149:1 12156:1 12168:1 12201:1 12208:1 12209:1 12264:2 12269:1 12279:1 12282:1 12301:1 12331:1 12339:1 12356:1 12365:1 12374:1 12461:1 12478:1 12479:5 12504:1 12507:1 12508:1 12522:2 12529:2 12540:2 12543:1 12546:1 12565:1 12583:2 12598:1 12605:1 12610:1 12623:2 12656:1 12676:1 12683:1 12773:1 12791:1 12808:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13145:1 13163:1 13174:1 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13411:1 13416:1 13481:1 13482:1 13492:2 13494:3 13498:2 13514:1 13520:1 13522:1 13539:1 13543:1 13551:1 13582:2 13619:1 13645:1 13647:1 13656:2 13658:1 13665:1 13681:2 13708:2 13720:1 13727:2 13783:1 13792:1 13804:1 13843:1 13876:1 13886:1 13930:1 13962:1 13969:4 13984:1 14013:1 14016:2 14020:6 14021:1 14038:2 14040:1 14062:1 14083:1 14101:1 14111:2 14138:1 14151:3 14158:2 14165:1 14166:3 14170:1 14174:1 14222:1 14223:1 14234:1 14252:1 14262:2 14273:1 14275:1 14282:1 14300:5 14305:1 14321:3 14340:2 14341:1 14347:1 14360:1 14368:1 14376:1 14385:1 14414:1 14431:1 14456:1 14458:1 14490:1 14491:2 14495:2 14535:1 14553:2 14562:1 14612:1 14661:1 14663:1 14678:1 14679:2 14682:1 14704:2 14712:1 14729:1 14735:1 14767:1 14777:1 14797:1 14808:1 14833:1 14836:2 14844:1 14852:1 14863:2 14870:1 14873:1 14881:1 14884:1 14899:1 14918:2 14945:1 14959:4 15016:1 15055:1 15065:1 15067:1 15070:1 15090:1 15092:2 15121:1 15137:1 15142:3 15146:1 15149:1 15156:1 15178:1 15232:1 15240:2 15254:1 15267:1 15269:2 15271:1 15279:1 15310:1 15393:1 15410:1 15411:1 15416:3 15423:2 15435:1 15439:1 15456:1 15490:1 15498:1 15503:1 15537:1 15560:1 15577:1 15588:1 15603:2 15615:1 15628:1 15652:1 15675:1 15682:1 15706:1 15708:2 15717:1 15725:1 15726:1 15728:1 15730:1 15741:1 15767:1 15807:2 15820:1 15892:1 15920:1 15931:2 15968:1 15981:1 15993:1 16010:1 16034:1 16048:1 16078:4 16085:1 16089:1 16091:1 16094:1 16097:3 16104:1 16110:1 16117:1 16118:1 16121:1 16129:3 16138:1 16145:2 16158:4 16166:1 16183:1 16224:1 16234:2 16259:2 16304:2 16315:1 16325:1 16363:1 16389:1 16391:2 16421:2 16479:1 16480:1 16481:1 16492:1 16508:2 16509:1 16515:1 16518:1 16519:1 16552:1 16559:1 16570:2 16620:1 16656:1 16659:1 16673:2 16680:1 16682:2 16697:1 16715:1 16738:1 16763:1 16780:1 16798:1 16800:2 16805:2 16821:1 16884:1 16900:2 16919:4 16930:1 16948:1 16969:1 16981:1 17008:1 17026:1 17035:3 17048:1 17067:1 17069:1 17088:1 17110:1 17112:2 17254:1 17293:2 17319:1 17351:1 17355:1 17357:1 17368:1 17370:1 17384:1 17441:1 17449:1 17478:1 17481:1 17509:1 17544:2 17560:1 17570:1 17572:1 17597:1 17615:1 17627:1 17637:1 17647:1 17663:1 17666:1 17730:1 17734:3 17763:1 17774:2 17866:1 17887:1 17889:1 17894:1 17897:1 17900:1 17917:1 17946:1 17948:2 17957:1 17962:1 17965:1 17983:1 17986:1 18010:2 18048:1 18120:1 18127:1 18141:1 18147:1 18150:1 18151:1 18166:1 18174:1 18213:1 18221:2 18226:1 18235:1 18242:1 18244:2 18251:1 18274:1 18286:1 18288:1 18290:1 18295:1 18297:1 18318:1 18323:1 18329:1 18330:1 18342:2 18343:2 18345:1 18369:1 18372:1 18389:1 18392:1 18393:1 18394:1 18422:1 18441:1 18447:1 18448:1 18484:1 18503:1 18517:1 18556:1 18582:1 18600:3 18613:2 18629:1 18631:1 18668:2 18675:1 18695:1 18697:1 18736:1 18754:2 18787:1 18789:1 18805:4 18836:1 18862:1 18965:1 18971:1 18975:6 18988:1 18990:1 18998:1 19000:1 19007:1 19011:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19157:1 19164:1 19184:1 19201:1 19208:1 19214:1708 19221:1 19243:1 19260:1 19269:1 19270:1 19279:1 19282:1 19293:1 19416:1 19443:1 19524:1 19543:1 19566:1 19590:1 19720:1 19734:2 19757:1 19766:1 19778:1 19792:1 19821:2 19837:1 19843:1 19845:4 19892:1 19921:1 19924:1 19947:1 19997:1 20016:7 20074:1 20108:1 20126:3 20135:1 20166:2 20202:2 20223:1 20233:2 20247:1 20252:2 20267:1 20276:2 20282:1 20286:1 20290:1 20307:1 20321:2 20327:1 20329:1 20341:2 20359:1 20387:1 20405:1 20407:3 20413:1 20430:1 20483:1 20504:1 20524:2 20528:1 20596:4 20605:1 20639:1 20660:3 20667:3 20672:1 20674:1 20677:1 20701:2 20704:1 20709:1 20740:2 20742:1 20752:1 20757:1 20760:1 20761:1 20769:1 20793:1 20799:1 20810:1 20815:1 20829:2 20832:1 20848:1 20864:1 20873:1 20954:1 20957:2 20961:1 21001:2 21004:2 21012:1 21028:1 21030:1 21036:1 21037:1 21053:1 21133:1 21164:2 21235:1 21239:1 21251:1 21253:1 21264:1 21282:1 21286:1 21289:1 21295:1 21328:2 21345:1 21360:2 21367:1 21373:1 21386:2 21387:1 21404:2 21411:2 21414:2 21471:1 21474:1 21489:1 21520:1 21545:1 21555:1 21563:2 21637:1 21674:1 21680:1 21724:2 21790:2 21823:1 21842:1 21845:2 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21946:1 21951:1 21971:1 21988:1 21992:1 22003:1 22136:2 22161:2 22169:1 22178:1 22182:1 22191:5 22192:1 22206:2 22218:1 22241:1 22242:2 22246:1 22247:1 22250:1 22252:1 22302:2 22335:1 22342:1 22347:3 22352:1 22364:1 22369:1 22374:1 22387:1 22388:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22487:2 22506:1 22520:1 22531:1 22565:1 22576:1 22577:1 22598:2 22604:2 22616:1 22623:1 22640:1 22669:1 22676:1 22700:2 22722:1 22727:1 22733:1 22738:1 22757:1 22774:1 22777:1 22791:2 22800:1 22804:2 22807:2 22813:1 22820:1 22826:1 22833:1 22854:1 22864:1 22883:1 22888:2 22926:2 22939:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23037:1 23080:1 23089:1 23090:1 23106:1 23109:2 23117:1 23129:1 23133:1 23162:1 23166:1 23173:1 23181:1 23185:1 23199:2 23211:1 23313:5 23317:1 23319:1 23320:1 23326:1 23332:1 23335:1 23367:1 23384:1 23401:2 23444:2 23466:2 23476:1 23482:1 23492:1 23534:2 23559:1 23593:2 23610:5 23630:1 23635:1 23694:1 23767:1 23807:2 23813:1 23819:1 23822:1 23830:2 23833:1 23836:2 23858:2 23874:1 23875:1 23882:1 23897:2 23937:2 23967:1 23992:1 24019:1 24025:1 24044:1 24058:1 24062:1 24066:3 24071:2 24090:1 24093:1 24109:1 24115:2 24160:1 24190:1 24236:1 24243:1 24257:1 24289:1 24332:1 24350:1 24389:1 24394:1 24419:1 24478:3 24483:1 24489:1 24519:1 24534:2 24573:1 24586:2 24588:1 24615:3 24624:1 24643:1 24653:1 24665:1 24667:1 24677:1 24679:1 24682:1 24686:1 24722:1 24733:1 24767:1 24775:2 24783:1 24831:1 24843:1 24848:2 24852:1 24855:2 24888:6 24927:1 24962:1 24982:1 24988:1 24995:1 25006:1 25010:1 25011:2 25024:1 25056:1 25074:1 25088:1 25092:1 25095:1 25113:1 25114:1 25116:1 25120:1 25122:1 25134:2 25137:1 25140:1 25156:1 25171:1 25253:2 25261:1 25289:1 25292:1 25299:1 25403:1 25423:1 25506:2 25532:1 25534:1 25538:3 25543:1 25579:4 25592:2 25602:1 25613:2 25641:1 25643:1 25660:1 25678:1 25706:1 25715:1 25736:1 25748:1 25749:1 25796:1 25799:3 25807:2 25812:1 25826:1 25827:1 25832:1 25834:1 25843:2 25844:1 25848:2 25861:3 25879:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 25968:1 26008:1 26009:1 26041:1 26054:1 26064:1 26081:1 26129:1 26131:1 26142:1 26145:1 26170:1 26198:1 26230:1 26263:1 26276:1 26279:1 26282:4 26286:1 26323:1 26345:2 26350:1 26356:1 26382:1 26387:1 26415:1 26437:1 26444:2 26446:1 26450:1 26454:1 26456:1 26463:1 26475:2 26501:1 26529:3 26540:1 26582:1 26605:6 26646:1 26652:2 26668:1 26684:1 26688:1 26736:2 26751:1 26757:1 26783:1 26824:1 26855:1 26878:1 26887:1 26932:4 26948:3 26956:1 26980:1 26987:1 27007:1 27011:1 27017:1 27032:1 27057:1 27082:2 27088:2 27151:1 27161:1 27185:2 27191:1 27245:1 27281:2 27308:2 27310:2 27324:1 27370:1 27383:1 27398:1 27406:1 27425:1 27432:1 27474:1 27493:1 27499:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:2 27647:1 27650:1 27653:1 27676:1 27687:3 27697:1 27713:1 27714:1 27763:2 27766:1 27770:1 27777:1 27778:1 27783:2 27790:1 27812:3 27815:1 27821:3 27822:1 27827:1 27828:1 27830:1 27833:1 27836:1 27841:1 27849:1 27858:1 27882:2 27898:1 27915:4 27923:1 27927:1 27929:2 27930:1 27951:1 27962:1 27972:1 28049:2 28075:1 28097:2 28100:2 28101:1 28116:2 28184:1 28190:1 28227:1 28232:1 28243:1 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28455:1 28467:1 28481:1 28489:1 28502:1 28516:7 28524:1 28539:1 28549:4 28569:5 28599:1 28618:1 28625:1 28648:1 28656:1 28659:1 28661:1 28678:2 28684:5 28720:8 28727:1 28730:1 28733:1 28738:2 28756:1 28789:1 28798:1 28801:2 28814:1 28838:1 28857:1 28858:1 28860:1 28920:1 28929:1 28942:1 28953:1 28957:1 28983:1 28994:1 28998:1 28999:1 29042:1 29050:1 29060:1 29062:1 29067:2 29073:1 29086:1 29103:1 29107:1 29130:2 29150:1 29164:1 29167:1 29187:1 29214:1 29229:1 29243:1 29249:2 29297:2 29306:1 29341:1 29347:1 29380:1 29390:2 29463:1 29471:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:4 29586:1 29591:2 29603:1 29606:1 29616:1 29626:1 29645:1 29667:2 29685:2 29732:2 29740:1 29752:2 29759:2 29766:1 29768:1 29816:1 29822:4 29831:1 29854:1 29874:1 29883:1 29885:2
12 2:1 39:1 40:1 51:1 65:2 110:3 120:1 137:1 179:1 211:1 230:1 239:2 247:1 313:1 323:1 325:1 343:1 363:4 398:2 405:3 417:2 418:1 424:1 448:1 451:3 455:1 461:1 473:2 490:1 559:1 565:1 592:1 622:2 628:1 650:1 666:1 711:1 713:1 722:2 724:1 768:1 780:1 832:1 835:1 837:1 861:1 905:4 910:1 914:1 923:1 928:4 933:1 944:2 947:1 957:1 976:2 982:2 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1046:1 1054:1 1083:1 1099:1 1101:1 1105:1 1118:1 1129:1 1153:1 1163:1 1173:1 1208:1 1209:1 1220:2 1221:1 1229:2 1235:1 1245:1 1247:1 1258:2 1293:2 1303:1 1318:1 1322:1 1342:2 1353:3 1384:1 1422:5 1465:1 1467:1 1468:1 1470:1 1473:5 1474:1 1475:1 1496:1 1531:1 1536:1 1557:1 1558:2 1561:1 1577:1 1580:1 1586:1 1593:2 1599:1 1669:2 1671:1 1703:2 1707:1 1716:4 1727:2 1737:1 1738:1 1779:1 1785:1 1812:1 1827:1 1830:1 1856:1 1860:2 1865:1 1869:2 1876:1 1880:1 1895:2 1898:1 1900:1 1907:1 1920:1 1929:2 1935:1 1940:1 1950:2 1969:1 2037:1 2039:3 2041:1 2066:1 2081:1 2115:1 2122:1 2134:1 2162:2 2212:1 2239:4 2250:2 2252:1 2261:1 2263:2 2287:1 2295:2 2296:2 2297:2 2301:4 2302:1 2304:2 2307:2 2308:2 2312:1 2314:1 2316:2 2318:1 2323:1 2324:5 2325:1 2328:1 2331:1 2335:1 2338:2 2370:1 2394:4 2403:2 2405:1 2419:1 2432:1 2440:1 2478:2 2527:1 2528:1 2534:1 2562:1 2573:1 2589:1 2601:1 2604:4 2623:1 2657:1 2665:1 2670:1 2731:1 2755:1 2759:1 2787:4 2795:1 2802:1 2824:1 2826:1 2848:2 2860:3 2871:1 2911:1 2921:1 2930:1 2941:1 2956:5 2962:1 2967:1 3017:1 3033:1 3037:1 3040:1 3049:1 3052:2 3060:1 3075:1 3081:1 3095:1 3096:1 3111:1 3121:1 3128:1 3141:1 3172:1 3175:1 3189:1 3204:1 3207:1 3261:1 3272:1 3287:1 3295:1 3317:1 3335:1 3340:2 3361:1 3376:1 3388:2 3402:5 3411:1 3418:1 3479:1 3500:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3644:1 3671:1 3679:1 3683:1 3689:1 3698:1 3713:1 3717:1 3728:1 3746:1 3757:4 3766:1 3780:1 3787:1 3829:3 3858:2 3877:1 3886:1 3896:1 3901:3 3905:1 3923:1 3941:1 3960:1 4004:1 4010:2 4024:1 4031:1 4042:2 4047:1 4076:1 4090:1 4113:1 4122:1 4132:1 4136:2 4140:3 4186:1 4209:1 4238:2 4292:1 4321:5 4329:2 4335:1 4344:1 4369:1 4390:4 4396:1 4416:1 4421:1 4428:1 4454:1 4471:1 4480:2 4504:1 4509:1 4563:1 4593:1 4607:1 4608:1 4609:1 4630:1 4642:1 4667:1 4670:1 4675:1 4689:1 4691:2 4744:1 4775:2 4789:1 4814:1 4844:3 4876:1 4877:1 4911:1 5010:1 5028:7 5031:2 5056:2 5067:1 5099:1 5138:6 5153:3 5154:2 5156:1 5160:1 5161:1 5164:1 5166:1 5168:1 5169:2 5175:2 5181:1 5183:2 5185:1 5186:1 5209:1 5221:1 5253:3 5268:1 5273:1 5289:1 5376:2 5389:1 5455:1 5457:1 5469:1 5483:2 5487:1 5498:3 5522:1 5532:6 5579:8 5614:1 5644:1 5682:1 5765:1 5779:1 5788:2 5805:1 5816:1 5824:1 5829:1 5845:1 5854:1 5873:1 5904:1 5922:1 5943:1 5944:3 5949:1 5950:1 5952:1 5959:1 5960:1 5968:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:1 6282:5 6303:1 6305:1 6311:1 6312:1 6316:2 6319:1 6334:1 6388:1 6392:2 6428:1 6440:2 6458:1 6487:1 6519:2 6526:1 6530:1 6537:1 6585:1 6602:4 6605:1 6609:1 6612:3 6613:1 6621:1 6622:1 6628:1 6629:3 6630:9 6632:1 6633:2 6650:1 6673:1 6683:2 6729:1 6770:2 6780:1 6785:2 6827:1 6869:1 6914:1 6927:1 6939:1 6949:1 6962:2 6969:1 6974:1 6980:1 7001:1 7046:1 7049:1 7052:1 7055:1 7071:2 7097:3 7123:1 7127:1 7131:1 7134:1 7169:1 7208:1 7237:1 7270:1 7293:1 7331:1 7404:2 7407:2 7432:1 7463:2 7501:1 7509:1 7515:1 7519:1 7520:2 7537:1 7616:1 7682:1 7706:3 7723:1 7747:3 7753:2 7762:3 7801:1 7817:1 7829:1 7831:1 7870:2 7883:1 7911:1 7914:1 7917:1 7952:7 7954:6 7960:1 7968:1 7970:1 7971:1 7975:2 7987:1 8011:2 8029:29 8043:6 8044:1 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8113:1 8142:2 8164:1 8212:1 8221:2 8237:1 8248:1 8298:1 8303:1 8354:2 8407:1 8408:1 8429:1 8490:2 8509:1 8513:4 8523:1 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8658:1 8659:1 8666:1 8682:1 8729:1 8735:1 8761:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:1 8885:1 8887:1 8892:1 8896:1 8899:1 8900:1 8901:1 8927:1 8940:1 8945:2 8961:1 8964:1 8979:1 8990:1 8992:2 8997:1 9018:2 9030:1 9033:1 9054:1 9067:1 9148:1 9200:2 9209:1 9212:1 9227:1 9255:1 9308:1 9312:1 9313:1 9324:2 9351:1 9372:1 9380:1 9399:1 9400:2 9405:1 9417:1 9426:1 9434:1 9441:1 9458:1 9480:4 9491:1 9510:1 9517:2 9518:1 9521:1 9523:1 9536:1 9539:2 9544:1 9565:3 9567:3 9570:1 9594:1 9607:1 9610:1 9613:2 9627:1 9635:1 9636:1 9637:2 9642:1 9647:1 9654:1 9657:2 9681:1 9702:1 9704:1 9707:1 9717:1 9725:1 9741:1 9765:6 9794:1 9798:1 9799:1 9820:1 9832:2 9844:1 9845:1 9862:2 9881:1 9884:2 9893:1 9904:2 9925:1 9950:1 9957:1 9961:1 9962:3 9966:1 9971:1 9997:5 10018:3 10024:1 10026:1 10031:1 10060:1 10132:1 10175:4 10217:1 10233:1 10234:4 10235:1 10239:1 10246:1 10247:1 10270:1 10283:1 10288:3 10372:1 10379:4 10380:1 10381:2 10393:1 10427:1 10439:1 10444:1 10517:1 10519:1 10544:1 10549:1 10572:1 10576:1 10577:1 10622:1 10623:1 10652:2 10659:2 10672:1 10757:1 10761:3 10762:1 10816:2 10847:1 10853:1 10869:2 10884:1 10889:1 10891:4 10893:1 10895:1 10904:2 10957:1 10989:1 11001:1 11012:6 11019:1 11021:1 11048:2 11077:1 11079:1 11082:1 11120:1 11172:1 11284:2 11289:4 11295:2 11311:1 11315:1 11317:1 11331:1 11340:1 11348:1 11372:1 11400:1 11418:3 11430:1 11460:1 11469:1 11473:1 11496:1 11501:1 11515:1 11536:1 11550:1 11559:1 11560:1 11599:1 11608:1 11609:2 11692:1 11705:1 11706:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:2 11797:1 11807:5 11845:1 11874:2 11881:1 11882:1 11888:1 11895:1 11909:2 11922:1 11954:1 11966:1 11969:1 11976:1 11982:1 11987:2 12002:4 12050:1 12055:1 12064:1 12067:2 12069:1 12070:1 12074:2 12081:1 12089:2 12121:1 12125:2 12136:1 12144:1 12149:1 12156:1 12168:1 12201:1 12208:1 12209:1 12264:2 12269:1 12279:1 12282:1 12301:1 12331:1 12339:1 12356:1 12365:1 12374:1 12396:1 12461:1 12478:1 12479:5 12504:1 12507:1 12508:1 12522:2 12529:2 12535:1 12540:2 12543:1 12546:1 12565:1 12583:2 12598:1 12605:1 12610:1 12623:2 12656:1 12676:1 12683:1 12773:1 12791:1 12808:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13145:1 13163:1 13174:1 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13411:1 13416:1 13481:1 13482:1 13492:2 13494:3 13498:2 13514:1 13520:1 13522:1 13539:1 13543:1 13551:1 13582:2 13619:1 13645:1 13647:1 13656:2 13658:1 13665:1 13681:2 13708:2 13720:1 13727:2 13783:1 13792:1 13804:1 13843:1 13852:1 13876:1 13886:1 13930:1 13962:1 13969:4 13984:1 14013:1 14016:2 14020:6 14021:1 14038:2 14040:1 14062:2 14083:1 14100:1 14101:1 14111:2 14138:1 14145:1 14151:3 14158:2 14165:1 14166:3 14170:1 14174:1 14222:1 14223:1 14234:1 14252:1 14262:2 14273:1 14275:1 14282:1 14300:5 14305:1 14321:3 14340:2 14341:1 14347:1 14360:1 14368:1 14376:1 14385:1 14414:1 14431:1 14456:1 14458:1 14490:1 14491:2 14495:2 14535:1 14553:2 14562:1 14612:1 14661:1 14663:1 14678:1 14679:2 14682:1 14704:2 14712:1 14729:1 14735:1 14767:1 14777:1 14797:1 14808:1 14833:1 14836:2 14844:1 14852:1 14863:2 14870:1 14873:1 14881:1 14884:1 14899:1 14918:3 14945:1 14959:4 15016:1 15055:1 15065:1 15067:1 15070:1 15090:1 15092:2 15121:1 15137:1 15142:3 15146:1 15149:1 15156:1 15178:1 15218:1 15232:1 15240:2 15253:1 15254:1 15267:1 15269:2 15271:1 15279:1 15310:1 15393:1 15410:1 15411:1 15416:3 15423:2 15432:1 15435:1 15439:1 15456:1 15490:1 15498:1 15503:1 15537:1 15560:1 15577:1 15588:1 15603:2 15615:1 15628:1 15652:1 15675:1 15682:1 15706:1 15708:2 15717:1 15725:1 15726:1 15728:1 15730:1 15741:1 15767:1 15807:2 15820:1 15831:1 15892:1 15920:1 15931:2 15968:1 15981:1 15993:1 16010:1 16034:1 16048:1 16078:4 16085:1 16089:1 16091:1 16094:1 16097:3 16104:1 16110:1 16117:1 16118:1 16121:1 16129:3 16138:1 16145:2 16158:4 16166:1 16180:1 16183:1 16210:1 16224:1 16234:2 16259:2 16304:2 16315:1 16325:1 16363:1 16389:1 16391:2 16421:2 16479:1 16480:1 16481:1 16492:1 16508:2 16509:1 16515:1 16518:1 16519:1 16552:2 16559:1 16570:2 16620:1 16656:1 16659:1 16673:2 16680:1 16682:2 16697:1 16715:1 16738:1 16763:1 16780:1 16798:1 16800:2 16805:2 16821:1 16852:1 16884:1 16900:2 16919:4 16930:1 16948:1 16969:1 16981:1 17008:1 17026:1 17035:3 17048:1 17067:1 17069:1 17088:1 17110:1 17112:2 17187:1 17254:1 17293:2 17305:1 17319:1 17351:1 17355:1 17357:1 17368:1 17370:1 17384:1 17441:1 17449:1 17478:1 17481:1 17509:1 17544:2 17560:1 17570:1 17572:1 17597:1 17615:1 17627:1 17637:1 17647:1 17663:1 17666:1 17730:1 17734:3 17763:1 17774:2 17866:1 17887:1 17889:1 17894:1 17897:1 17900:1 17917:1 17946:1 17948:2 17957:1 17962:1 17965:1 17983:1 17986:1 18010:2 18048:1 18120:1 18127:1 18141:1 18147:1 18150:1 18151:1 18166:1 18174:1 18213:1 18221:2 18226:1 18235:1 18242:1 18244:2 18251:1 18274:1 18286:2 18288:1 18290:1 18295:1 18297:1 18314:1 18318:1 18323:1 18329:1 18330:1 18342:2 18343:2 18345:1 18348:1 18369:1 18372:1 18389:1 18392:1 18393:1 18394:1 18422:1 18441:1 18447:1 18448:1 18484:1 18492:1 18503:1 18517:1 18556:1 18582:1 18600:3 18613:2 18629:1 18631:1 18668:2 18675:1 18695:1 18697:3 18736:1 18754:2 18759:1 18787:1 18789:1 18805:4 18836:1 18862:1 18965:1 18971:1 18975:6 18988:1 18990:1 18998:1 19000:1 19007:1 19011:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19157:1 19164:1 19184:1 19201:1 19208:1 19214:1754 19221:1 19243:1 19260:1 19269:1 19270:1 19279:1 19282:1 19293:1 19416:1 19443:1 19524:1 19543:1 19566:1 19590:1 19720:1 19734:2 19757:1 19766:1 19778:1 19792:1 19821:2 19837:1 19843:1 19845:4 19892:1 19921:1 19924:1 19947:1 19997:1 20016:7 20074:1 20108:1 20126:3 20135:1 20166:3 20202:2 20223:1 20233:2 20247:1 20252:2 20267:1 20276:2 20282:1 20286:1 20290:1 20307:1 20321:2 20327:1 20329:1 20341:2 20359:1 20387:1 20405:1 20407:3 20413:1 20430:1 20483:1 20504:1 20524:2 20528:1 20596:4 20605:1 20639:1 20660:3 20667:3 20672:1 20674:1 20677:1 20701:2 20704:1 20709:1 20740:2 20742:1 20752:1 20757:1 20760:1 20761:1 20769:1 20793:1 20799:1 20810:1 20815:1 20829:2 20832:1 20848:1 20864:1 20873:1 20954:1 20957:2 20961:1 21001:2 21004:2 21012:1 21028:1 21030:1 21036:1 21037:1 21053:1 21133:1 21164:2 21231:1 21235:1 21239:1 21251:1 21253:1 21264:1 21282:1 21286:1 21289:1 21295:1 21328:2 21345:1 21360:2 21367:1 21373:1 21386:2 21387:1 21404:2 21411:2 21414:2 21471:1 21474:1 21489:1 21520:1 21545:1 21555:1 21563:2 21637:1 21674:1 21680:1 21724:2 21763:1 21790:2 21823:1 21842:1 21845:2 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21946:1 21951:1 21971:1 21988:1 21992:1 22003:1 22136:2 22161:2 22169:1 22178:1 22182:1 22191:6 22192:1 22206:3 22218:1 22241:1 22242:2 22246:1 22247:1 22250:1 22252:1 22302:2 22335:1 22342:1 22347:3 22352:1 22364:1 22369:1 22374:1 22387:1 22388:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22487:2 22506:1 22520:1 22531:1 22532:1 22558:1 22565:1 22576:1 22577:1 22598:2 22604:2 22616:1 22623:1 22640:1 22669:1 22676:1 22700:2 22706:1 22715:1 22722:1 22727:1 22733:1 22738:1 22757:1 22774:1 22777:3 22791:2 22800:1 22804:2 22807:2 22813:1 22820:1 22826:1 22833:1 22854:1 22864:1 22883:1 22888:2 22926:2 22939:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23037:1 23080:1 23089:1 23090:1 23106:1 23109:2 23117:1 23129:1 23133:1 23162:1 23166:1 23173:1 23181:1 23185:1 23199:2 23211:1 23313:5 23317:1 23319:1 23320:1 23326:1 23332:1 23335:1 23367:1 23384:1 23401:2 23444:2 23466:2 23476:1 23482:1 23492:1 23534:2 23559:1 23593:2 23610:5 23630:1 23635:1 23694:1 23749:1 23767:1 23807:2 23813:1 23819:1 23822:1 23830:2 23833:1 23836:2 23858:2 23874:1 23875:1 23882:1 23897:2 23937:2 23967:1 23992:1 24019:1 24025:1 24044:1 24058:1 24062:1 24066:3 24071:2 24090:1 24093:1 24109:1 24115:2 24160:1 24190:1 24236:1 24243:1 24257:1 24289:1 24300:1 24332:1 24350:1 24389:1 24394:1 24419:1 24478:3 24480:1 24483:1 24489:1 24519:1 24534:2 24573:1 24586:2 24588:1 24615:3 24624:1 24643:1 24653:1 24665:1 24667:1 24677:1 24679:1 24682:3 24686:1 24722:1 24733:1 24767:1 24775:2 24783:1 24831:1 24843:1 24848:2 24852:1 24855:2 24888:6 24927:1 24947:1 24962:1 24982:1 24988:1 24995:1 25006:1 25010:1 25011:2 25020:1 25024:1 25042:1 25056:1 25074:1 25088:1 25092:1 25095:1 25113:1 25114:1 25116:1 25120:1 25122:1 25130:1 25134:3 25137:1 25140:1 25156:1 25171:1 25253:2 25261:1 25289:1 25292:1 25299:1 25403:1 25423:1 25506:2 25532:1 25534:1 25538:3 25543:1 25579:4 25592:2 25602:1 25613:2 25641:1 25643:1 25660:1 25678:1 25706:1 25715:1 25736:1 25748:1 25749:1 25796:1 25799:3 25807:2 25812:1 25826:1 25827:1 25832:1 25834:1 25843:2 25844:1 25848:2 25861:3 25862:1 25879:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 25968:1 26008:1 26009:1 26041:1 26054:1 26064:1 26081:1 26129:1 26131:1 26142:1 26145:1 26170:1 26198:1 26230:1 26263:1 26276:1 26279:1 26282:4 26286:1 26323:1 26345:2 26350:1 26356:1 26382:1 26387:1 26415:1 26437:1 26444:2 26446:1 26450:1 26454:1 26456:1 26463:1 26475:2 26501:1 26529:3 26540:1 26564:1 26582:1 26605:6 26646:1 26652:2 26668:1 26684:1 26688:1 26736:2 26751:1 26757:1 26783:1 26824:1 26855:1 26878:1 26887:1 26932:4 26948:3 26956:1 26980:1 26987:1 27007:1 27011:1 27017:1 27032:1 27057:1 27082:2 27088:2 27151:1 27161:1 27185:2 27191:1 27245:1 27281:2 27308:2 27310:2 27324:1 27370:1 27380:1 27383:1 27398:1 27406:1 27425:1 27432:1 27474:1 27493:1 27499:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:2 27647:1 27650:1 27653:1 27676:1 27687:3 27697:1 27713:1 27714:1 27732:1 27763:2 27766:1 27770:1 27777:1 27778:1 27783:2 27790:1 27812:3 27815:1 27816:1 27821:3 27822:1 27827:1 27828:1 27830:1 27833:1 27836:2 27841:1 27849:1 27858:1 27882:2 27898:1 27915:4 27923:1 27927:1 27929:2 27930:1 27951:1 27962:1 27972:1 28049:2 28075:1 28085:1 28097:2 28100:2 28101:1 28116:2 28184:1 28190:1 28227:1 28232:1 28243:1 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28455:1 28467:1 28481:1 28489:1 28502:1 28516:7 28524:1 28539:1 28549:4 28569:5 28599:1 28618:1 28625:1 28648:1 28656:1 28659:1 28661:1 28678:2 28684:5 28720:8 28727:1 28730:1 28733:1 28738:2 28756:1 28789:1 28798:1 28801:2 28814:1 28838:1 28857:1 28858:1 28860:1 28913:1 28920:1 28929:1 28942:1 28953:1 28957:1 28983:1 28994:1 28998:1 28999:1 29042:1 29050:1 29060:1 29062:1 29067:2 29073:1 29086:1 29103:1 29107:1 29130:2 29150:1 29164:1 29167:1 29187:1 29214:1 29229:1 29243:1 29249:2 29297:2 29306:1 29318:1 29341:1 29347:1 29380:1 29390:2 29463:1 29471:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:4 29586:1 29591:2 29603:1 29606:1 29616:1 29626:1 29645:1 29667:2 29685:2 29732:2 29740:1 29752:2 29759:2 29766:1 29768:1 29816:1 29822:4 29831:1 29854:1 29874:1 29883:1 29885:2
12 2:1 39:1 40:1 51:1 65:2 110:3 120:1 137:1 179:1 211:1 230:1 239:2 247:1 313:1 323:1 325:1 343:1 363:4 398:2 405:3 417:2 418:1 424:1 448:1 451:3 455:1 461:1 473:2 490:1 559:1 565:1 592:1 622:2 628:1 650:1 666:1 711:1 713:1 722:2 724:1 768:1 780:1 832:1 835:1 837:1 861:1 905:4 910:1 914:1 923:1 928:4 933:1 944:2 947:1 957:1 976:2 982:2 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1046:1 1054:1 1083:1 1099:1 1101:1 1105:1 1118:1 1129:1 1153:1 1163:1 1173:1 1208:1 1209:1 1220:2 1221:1 1229:2 1235:1 1245:1 1247:1 1258:2 1293:2 1303:1 1318:1 1322:1 1342:2 1353:3 1384:1 1422:5 1465:1 1467:1 1468:2 1470:1 1473:5 1474:1 1475:1 1496:1 1531:1 1536:1 1557:1 1558:2 1561:1 1577:1 1580:1 1586:1 1593:2 1599:1 1669:2 1671:1 1703:2 1707:1 1716:4 1727:2 1737:2 1738:1 1779:1 1785:1 1812:1 1827:1 1830:1 1856:1 1860:2 1865:1 1869:3 1876:1 1880:1 1895:2 1898:1 1900:1 1907:1 1920:1 1929:2 1935:1 1940:1 1950:2 1969:1 2037:1 2039:3 2041:1 2066:1 2081:1 2115:1 2122:1 2134:1 2162:2 2212:1 2239:4 2250:2 2252:1 2261:1 2263:2 2287:1 2295:2 2296:2 2297:2 2301:4 2302:1 2304:2 2307:2 2308:2 2312:1 2314:1 2316:2 2318:1 2323:1 2324:5 2325:1 2328:1 2331:1 2335:1 2338:2 2370:1 2394:4 2403:2 2405:1 2419:1 2432:1 2440:1 2478:2 2527:1 2528:1 2534:1 2562:1 2573:1 2589:1 2601:1 2604:4 2623:1 2656:1 2657:1 2665:1 2670:1 2731:1 2755:1 2759:1 2787:4 2795:1 2802:1 2824:1 2826:1 2848:2 2860:3 2871:1 2911:1 2921:1 2930:1 2941:1 2956:5 2962:1 2967:1 3017:1 3033:1 3037:1 3040:1 3049:1 3052:2 3060:1 3075:1 3081:1 3088:1 3095:1 3096:1 3111:1 3121:1 3128:1 3141:1 3172:1 3175:1 3189:1 3204:1 3207:1 3208:1 3261:1 3272:1 3287:1 3295:1 3317:1 3335:1 3340:2 3361:1 3376:1 3388:2 3402:5 3411:1 3418:1 3479:1 3500:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3644:1 3671:1 3679:1 3683:1 3689:1 3698:1 3713:1 3717:1 3728:1 3746:1 3757:4 3766:1 3769:1 3780:1 3787:1 3829:3 3858:2 3877:1 3886:1 3896:1 3901:3 3905:1 3923:1 3941:1 3960:1 4004:1 4010:2 4024:1 4031:1 4042:2 4047:1 4076:1 4090:1 4113:1 4122:1 4132:1 4136:2 4140:3 4186:1 4209:1 4238:2 4292:1 4321:5 4329:2 4335:1 4344:1 4369:1 4390:4 4393:1 4396:1 4416:1 4421:1 4428:1 4454:1 4471:2 4480:2 4504:1 4509:1 4563:1 4593:1 4607:1 4608:1 4609:1 4630:1 4642:1 4667:1 4670:1 4675:2 4689:1 4691:2 4744:1 4775:2 4789:1 4814:1 4844:3 4876:1 4877:1 4911:1 5010:1 5028:7 5031:2 5056:2 5067:1 5099:1 5138:6 5153:3 5154:2 5156:1 5160:1 5161:1 5164:1 5166:1 5168:1 5169:2 5175:2 5181:1 5183:2 5185:2 5186:1 5209:1 5221:1 5253:3 5268:1 5273:1 5289:1 5376:2 5389:1 5436:1 5455:1 5457:1 5469:1 5483:2 5487:1 5498:3 5522:1 5532:6 5579:8 5614:1 5644:1 5682:1 5765:1 5779:1 5788:2 5805:1 5816:1 5824:1 5829:1 5845:1 5854:1 5873:1 5904:1 5922:1 5943:1 5944:3 5949:1 5950:1 5952:1 5959:1 5960:1 5968:1 5982:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:1 6282:6 6303:1 6305:1 6311:1 6312:1 6316:2 6319:1 6334:1 6388:1 6392:2 6428:1 6440:2 6458:1 6487:1 6519:2 6526:1 6530:1 6537:1 6585:2 6602:4 6605:1 6609:1 6612:3 6613:1 6621:1 6622:1 6628:1 6629:3 6630:9 6632:1 6633:2 6650:1 6673:1 6683:2 6729:1 6770:2 6780:1 6785:2 6827:1 6869:1 6914:1 6927:1 6939:1 6949:1 6962:2 6969:1 6974:1 6980:1 7001:1 7046:1 7049:1 7052:1 7055:1 7071:2 7089:1 7097:3 7123:1 7127:1 7131:1 7134:1 7169:1 7208:1 7237:1 7270:1 7293:1 7306:1 7331:1 7404:4 7407:2 7417:1 7432:1 7463:2 7501:1 7509:1 7515:1 7519:1 7520:2 7537:1 7616:1 7682:1 7706:3 7723:1 7747:3 7753:2 7762:3 7801:1 7817:1 7829:1 7831:1 7870:2 7883:1 7911:2 7914:1 7917:1 7952:7 7954:6 7960:1 7968:1 7970:1 7971:1 7975:2 7987:1 8011:2 8029:29 8043:6 8044:1 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8113:1 8142:2 8164:1 8198:1 8212:1 8221:2 8237:1 8248:1 8298:1 8303:1 8354:2 8407:1 8408:1 8429:1 8490:2 8509:1 8513:4 8523:1 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8658:1 8659:1 8666:1 8682:1 8729:1 8735:1 8761:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:1 8885:2 8887:1 8892:1 8896:1 8899:1 8900:1 8901:1 8927:1 8940:1 8945:2 8961:1 8964:1 8979:1 8990:1 8992:2 8997:1 9018:2 9030:1 9033:1 9054:1 9067:1 9148:1 9200:2 9209:1 9212:1 9227:1 9255:1 9308:1 9312:1 9313:1 9324:2 9351:1 9372:1 9380:1 9399:1 9400:2 9405:1 9417:1 9426:1 9430:1 9434:1 9441:1 9458:1 9480:4 9491:1 9510:1 9517:2 9518:1 9521:1 9523:1 9536:1 9539:2 9544:1 9552:1 9565:3 9567:3 9570:1 9594:1 9607:1 9610:1 9613:2 9627:1 9635:1 9636:1 9637:2 9642:1 9647:1 9654:1 9657:2 9681:1 9694:1 9702:1 9704:1 9707:1 9717:1 9725:1 9741:1 9765:6 9794:2 9798:1 9799:1 9816:1 9820:1 9832:3 9844:1 9845:1 9862:2 9881:1 9884:2 9893:1 9904:2 9925:1 9950:1 9957:1 9961:1 9962:3 9966:1 9971:1 9997:6 10018:3 10024:1 10026:1 10031:1 10060:1 10132:1 10175:4 10217:1 10233:1 10234:4 10235:1 10239:1 10246:1 10247:1 10270:1 10283:1 10288:3 10372:1 10379:4 10380:1 10381:2 10393:1 10427:1 10439:1 10444:1 10517:1 10519:1 10544:1 10549:1 10572:1 10576:1 10577:1 10622:1 10623:1 10652:2 10659:2 10672:1 10687:1 10757:1 10761:3 10762:1 10816:3 10847:1 10853:1 10869:2 10884:1 10889:1 10891:4 10893:1 10895:1 10904:2 10957:1 10989:1 11001:1 11012:6 11019:1 11021:1 11048:2 11077:1 11079:1 11082:1 11120:1 11172:1 11284:2 11289:4 11295:2 11311:1 11315:1 11317:1 11331:1 11340:1 11348:1 11372:2 11400:1 11418:3 11430:1 11460:1 11469:1 11473:1 11496:1 11501:1 11515:1 11536:1 11550:1 11559:1 11560:1 11599:1 11608:1 11609:2 11692:1 11705:1 11706:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:2 11797:1 11807:5 11845:1 11874:2 11881:1 11882:1 11888:1 11895:1 11909:2 11922:1 11954:1 11966:1 11969:1 11976:1 11982:1 11987:2 11992:1 12002:4 12050:1 12055:1 12064:1 12067:2 12069:1 12070:1 12074:2 12081:1 12089:2 12121:1 12125:2 12136:1 12144:1 12149:1 12156:1 12168:1 12201:1 12208:1 12209:1 12264:2 12269:1 12279:1 12282:1 12301:1 12331:1 12339:1 12356:1 12365:1 12374:1 12396:1 12461:1 12478:1 12479:5 12504:1 12507:1 12508:1 12522:2 12529:2 12535:1 12540:2 12543:1 12546:1 12565:1 12583:2 12598:1 12605:1 12610:1 12623:4 12656:1 12676:1 12683:1 12726:1 12773:1 12791:1 12808:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13145:1 13163:1 13174:2 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13411:1 13416:1 13481:1 13482:1 13492:2 13494:3 13498:2 13514:1 13520:1 13522:1 13539:1 13543:2 13551:1 13582:2 13619:1 13645:1 13647:1 13656:2 13658:1 13665:1 13681:2 13708:3 13720:1 13727:2 13783:1 13792:1 13804:1 13843:1 13852:1 13876:1 13886:1 13930:1 13962:1 13969:4 13984:1 14013:1 14016:2 14020:6 14021:1 14022:1 14038:2 14040:1 14062:2 14083:2 14100:1 14101:1 14111:2 14138:1 14145:1 14151:3 14158:2 14165:1 14166:3 14170:1 14174:1 14222:1 14223:1 14234:1 14252:1 14262:2 14273:2 14275:1 14282:1 14300:5 14305:1 14321:3 14340:2 14341:1 14347:1 14360:1 14368:1 14376:2 14384:1 14385:1 14414:1 14431:1 14456:1 14458:1 14490:1 14491:2 14495:4 14535:1 14553:2 14562:1 14612:1 14661:1 14663:1 14678:1 14679:2 14682:1 14704:2 14712:1 14729:1 14735:1 14767:1 14777:1 14797:1 14808:1 14833:1 14836:2 14844:1 14852:1 14863:2 14870:1 14873:1 14881:1 14884:1 14899:1 14918:3 14945:1 14959:4 15016:1 15032:1 15055:1 15065:1 15067:1 15070:1 15090:1 15092:2 15121:1 15137:1 15142:3 15146:1 15149:1 15156:1 15178:1 15218:1 15232:1 15240:2 15253:1 15254:1 15267:1 15269:2 15271:1 15279:1 15310:1 15393:1 15410:1 15411:1 15416:3 15423:2 15432:1 15435:1 15439:1 15456:1 15490:1 15498:1 15503:1 15537:1 15560:1 15577:1 15588:1 15603:2 15615:1 15628:1 15652:1 15675:1 15682:1 15706:1 15708:2 15717:1 15725:1 15726:1 15728:2 15730:1 15741:1 15767:1 15807:2 15820:1 15831:1 15892:1 15911:1 15920:1 15931:2 15968:1 15981:1 15993:1 16010:1 16034:1 16048:1 16078:4 16085:1 16089:1 16091:1 16094:1 16097:3 16104:1 16110:1 16117:1 16118:1 16121:1 16129:3 16138:1 16145:2 16158:4 16166:1 16180:1 16183:1 16210:1 16224:1 16234:2 16259:2 16304:2 16315:1 16325:1 16363:1 16389:1 16391:3 16421:2 16458:1 16479:1 16480:1 16481:1 16492:1 16505:1 16508:2 16509:1 16515:1 16518:1 16519:1 16552:2 16559:1 16570:2 16620:1 16656:1 16659:1 16673:2 16680:1 16682:2 16697:1 16715:1 16738:1 16763:1 16780:1 16798:1 16800:2 16805:2 16821:1 16852:1 16884:1 16885:1 16900:2 16919:4 16930:1 16948:1 16969:1 16981:1 17008:1 17026:1 17035:3 17048:1 17067:1 17069:1 17088:1 17110:1 17112:2 17187:1 17254:1 17293:2 17305:1 17319:1 17351:1 17355:1 17357:1 17368:1 17370:1 17384:1 17441:1 17449:1 17478:1 17481:1 17509:1 17544:2 17560:1 17570:1 17572:1 17597:1 17615:1 17627:1 17637:1 17647:1 17663:1 17666:1 17730:1 17734:3 17763:1 17774:2 17866:1 17887:1 17889:1 17894:1 17897:1 17900:1 17917:1 17946:1 17948:2 17957:1 17962:1 17965:1 17983:1 17986:1 18010:2 18048:2 18120:1 18127:1 18141:1 18147:1 18150:1 18151:1 18166:1 18174:1 18199:1 18213:1 18221:2 18226:1 18235:1 18242:1 18244:2 18251:1 18274:1 18286:2 18288:1 18290:1 18295:1 18297:1 18314:1 18318:1 18323:1 18329:1 18330:1 18342:2 18343:2 18345:1 18348:1 18369:2 18372:1 18389:1 18392:1 18393:1 18394:1 18400:1 18422:1 18441:1 18447:1 18448:1 18484:1 18492:1 18503:1 18517:1 18556:1 18563:1 18582:1 18600:3 18613:2 18629:1 18631:1 18668:2 18675:1 18695:1 18697:3 18736:1 18754:2 18759:1 18787:1 18789:1 18805:4 18836:2 18862:1 18965:1 18971:1 18975:6 18988:1 18990:1 18998:1 19000:1 19007:1 19011:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19157:1 19164:1 19184:1 19201:1 19208:1 19214:1847 19221:1 19243:1 19260:1 19269:1 19270:1 19279:1 19282:1 19293:1 19416:1 19441:1 19443:1 19524:1 19543:1 19566:1 19581:1 19590:1 19720:1 19734:2 19757:1 19766:1 19778:1 19792:1 19821:2 19837:1 19843:1 19845:4 19892:1 19921:1 19924:1 19947:1 19997:1 20016:7 20074:1 20108:1 20126:3 20135:1 20151:1 20166:3 20202:2 20223:1 20233:2 20247:1 20252:2 20267:1 20276:2 20282:1 20286:1 20290:1 20307:1 20321:2 20327:1 20329:1 20340:1 20341:2 20359:1 20387:1 20405:1 20407:3 20413:1 20430:1 20483:1 20504:1 20524:2 20528:1 20596:4 20605:1 20639:1 20660:3 20667:3 20672:1 20674:1 20677:1 20701:2 20704:1 20709:1 20740:2 20742:1 20752:1 20757:1 20760:1 20761:1 20769:1 20793:1 20799:1 20808:1 20810:1 20815:2 20829:2 20832:1 20848:1 20864:1 20873:1 20954:1 20957:2 20961:1 20964:1 21001:2 21004:2 21012:1 21028:1 21030:1 21036:1 21037:1 21053:1 21133:1 21164:2 21231:1 21235:1 21239:1 21251:1 21253:1 21264:1 21282:1 21286:1 21289:1 21295:1 21328:2 21345:1 21360:2 21366:1 21367:1 21373:1 21386:2 21387:1 21404:2 21411:2 21414:2 21471:1 21474:1 21489:1 21508:1 21520:1 21545:1 21555:1 21563:2 21637:1 21674:1 21680:1 21724:2 21763:1 21790:2 21823:1 21842:1 21845:2 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21946:1 21951:1 21971:1 21988:1 21992:1 22003:1 22136:2 22161:2 22169:1 22171:1 22178:1 22182:1 22191:6 22192:1 22206:3 22218:1 22241:1 22242:2 22246:1 22247:1 22250:1 22252:1 22302:2 22335:1 22342:1 22347:3 22352:1 22364:1 22369:1 22374:1 22387:1 22388:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22487:2 22506:1 22520:1 22531:1 22532:1 22558:1 22565:1 22576:2 22577:1 22598:2 22604:2 22616:1 22623:1 22640:1 22669:1 22676:1 22700:2 22706:1 22715:1 22722:1 22727:1 22733:1 22738:1 22757:1 22774:1 22777:3 22791:2 22800:1 22802:1 22804:2 22807:2 22813:1 22820:1 22826:1 22833:1 22854:1 22864:1 22883:1 22888:2 22926:2 22939:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23037:1 23080:1 23089:1 23090:1 23106:1 23109:2 23117:1 23129:1 23133:1 23162:1 23166:1 23173:1 23181:1 23185:1 23199:2 23211:1 23313:5 23317:1 23319:1 23320:1 23326:1 23332:1 23335:1 23367:1 23384:1 23401:2 23444:2 23466:2 23476:1 23482:1 23492:1 23534:2 23559:1 23593:2 23610:5 23630:1 23632:1 23635:1 23694:1 23749:1 23767:1 23794:1 23807:2 23813:1 23819:1 23822:1 23830:2 23833:1 23836:2 23858:2 23874:1 23875:1 23882:1 23897:2 23937:2 23967:1 23992:1 24019:1 24025:1 24044:1 24058:1 24062:1 24066:3 24071:2 24090:1 24093:1 24109:1 24115:2 24160:1 24190:1 24224:1 24236:1 24243:1 24257:1 24289:1 24294:1 24300:1 24332:1 24350:1 24389:1 24394:1 24419:1 24478:3 24480:1 24483:1 24489:1 24519:1 24534:2 24573:1 24586:2 24588:1 24615:3 24624:1 24643:1 24653:1 24665:1 24667:1 24677:1 24679:1 24682:3 24686:1 24722:1 24733:1 24767:1 24775:2 24783:1 24831:1 24843:1 24848:3 24852:1 24855:2 24874:1 24888:6 24927:1 24947:1 24962:1 24982:1 24988:1 24995:1 25006:1 25010:1 25011:2 25020:1 25024:1 25042:1 25056:1 25074:1 25088:1 25092:1 25095:1 25113:1 25114:1 25116:1 25120:1 25122:1 25130:1 25134:3 25137:1 25140:1 25156:1 25171:1 25253:2 25261:1 25289:1 25292:1 25299:1 25403:1 25423:1 25506:2 25532:1 25534:1 25538:3 25543:1 25579:4 25592:2 25602:1 25613:2 25641:1 25643:1 25660:1 25678:1 25706:1 25715:1 25736:1 25748:1 25749:1 25796:1 25799:3 25807:2 25812:2 25826:1 25827:1 25832:1 25834:1 25843:2 25844:1 25848:2 25861:3 25862:1 25879:1 25893:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 25968:1 26008:1 26009:2 26041:1 26054:1 26064:1 26081:1 26129:1 26131:1 26142:1 26145:1 26170:1 26198:1 26230:1 26263:1 26276:1 26279:1 26282:4 26286:1 26323:1 26345:2 26350:1 26356:1 26382:1 26387:1 26415:1 26437:1 26444:2 26446:1 26450:1 26454:1 26456:1 26463:1 26475:2 26501:1 26529:3 26540:1 26564:1 26582:1 26605:6 26646:1 26652:2 26668:1 26684:1 26688:1 26736:2 26751:1 26757:1 26783:1 26824:1 26855:1 26878:1 26887:1 26894:1 26932:4 26948:3 26956:1 26980:1 26987:1 27007:1 27011:1 27017:1 27032:1 27057:1 27082:2 27088:2 27151:1 27161:1 27185:2 27191:1 27245:1 27281:2 27308:2 27310:2 27324:1 27370:1 27380:1 27383:1 27398:1 27406:1 27425:1 27432:1 27474:1 27483:1 27493:1 27499:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:2 27647:1 27650:1 27653:1 27676:1 27687:3 27697:1 27713:1 27714:1 27732:1 27763:2 27766:1 27770:1 27777:1 27778:1 27783:2 27790:1 27812:3 27815:1 27816:1 27821:3 27822:1 27827:1 27828:1 27830:1 27833:1 27836:2 27841:1 27849:1 27858:1 27882:2 27898:1 27915:4 27923:1 27927:1 27929:2 27930:1 27951:1 27962:1 27972:1 28049:2 28075:1 28085:1 28097:2 28100:2 28101:1 28116:2 28184:1 28190:1 28227:1 28232:1 28243:1 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:2 28455:1 28467:1 28481:1 28489:1 28502:1 28516:8 28524:1 28539:1 28549:5 28569:5 28599:1 28618:1 28625:1 28648:1 28656:2 28659:1 28661:1 28678:2 28684:5 28720:8 28727:1 28730:1 28733:1 28738:2 28756:1 28789:1 28798:1 28801:2 28814:1 28838:1 28857:1 28858:1 28860:1 28913:1 28920:1 28929:1 28942:1 28953:1 28957:1 28983:1 28994:1 28998:1 28999:1 29042:1 29050:1 29060:1 29062:1 29067:2 29073:1 29086:1 29103:1 29107:1 29130:2 29150:1 29164:1 29167:1 29187:1 29214:1 29229:1 29243:1 29249:2 29297:2 29306:1 29318:1 29341:1 29347:1 29380:1 29390:2 29463:1 29471:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:4 29586:1 29591:2 29603:1 29606:1 29616:1 29626:1 29645:1 29667:2 29685:3 29732:2 29740:1 29752:2 29759:3 29766:1 29768:1 29816:1 29822:4 29831:1 29854:1 29874:1 29883:1 29885:2
12 2:1 39:1 40:1 51:1 65:2 110:3 120:1 137:1 179:1 211:1 230:1 239:2 247:1 313:1 323:1 325:1 343:1 363:4 398:2 405:3 417:2 418:1 424:1 448:1 451:3 455:1 461:1 473:2 490:1 559:1 565:1 592:1 622:2 628:1 650:1 666:1 686:1 711:1 713:1 722:2 724:1 768:1 780:1 832:1 835:1 837:1 861:1 905:5 910:1 914:1 923:1 928:4 933:1 944:2 947:2 957:1 976:2 982:2 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1046:1 1054:1 1083:1 1099:1 1101:1 1105:1 1118:1 1129:1 1153:1 1163:1 1173:1 1187:1 1208:1 1209:1 1220:2 1221:1 1229:2 1235:1 1245:1 1247:1 1258:2 1293:2 1303:1 1318:1 1322:1 1342:2 1353:3 1384:1 1422:5 1465:1 1467:1 1468:2 1470:1 1473:5 1474:1 1475:1 1493:1 1496:1 1517:1 1531:1 1536:1 1557:1 1558:2 1561:1 1577:1 1580:1 1586:1 1593:2 1599:1 1669:2 1671:1 1703:2 1707:1 1716:4 1727:2 1737:2 1738:1 1779:1 1785:1 1812:1 1827:1 1830:1 1856:1 1860:2 1865:1 1869:3 1876:1 1880:1 1895:2 1898:1 1900:1 1907:1 1920:1 1929:2 1935:1 1940:1 1950:2 1969:1 2005:1 2037:1 2039:3 2041:1 2066:1 2081:1 2115:1 2122:1 2134:1 2162:2 2212:1 2239:5 2250:2 2252:1 2261:1 2263:2 2287:1 2295:2 2296:2 2297:2 2299:1 2301:4 2302:1 2304:2 2307:2 2308:2 2312:1 2314:1 2316:2 2318:1 2323:1 2324:5 2325:1 2328:1 2331:1 2335:1 2338:2 2370:1 2394:4 2403:2 2405:1 2419:1 2432:1 2440:1 2478:2 2527:1 2528:1 2534:1 2562:1 2573:1 2589:2 2601:1 2604:4 2623:1 2627:1 2656:1 2657:1 2665:1 2670:1 2731:1 2755:1 2759:1 2787:4 2795:1 2802:1 2824:1 2826:1 2848:2 2860:4 2871:1 2911:1 2921:1 2930:1 2941:1 2956:5 2962:1 2967:1 3017:1 3033:1 3037:1 3040:1 3049:1 3052:2 3060:1 3075:1 3081:1 3088:1 3095:1 3096:1 3111:1 3121:1 3128:1 3141:1 3172:1 3175:1 3189:1 3204:1 3207:1 3208:1 3261:1 3272:1 3287:1 3295:1 3302:1 3317:1 3335:1 3340:2 3361:1 3376:1 3388:2 3402:6 3411:1 3418:1 3479:1 3500:1 3507:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3644:1 3671:1 3679:1 3683:1 3689:1 3698:1 3713:1 3717:1 3728:1 3746:1 3757:4 3763:1 3766:1 3769:1 3780:1 3787:1 3829:3 3858:2 3877:1 3886:1 3896:1 3901:3 3905:1 3923:1 3941:1 3942:1 3960:1 4004:1 4010:2 4024:1 4031:1 4042:2 4047:1 4076:1 4090:1 4113:1 4122:1 4132:1 4136:2 4140:3 4186:1 4209:1 4238:2 4292:1 4321:5 4329:2 4335:1 4344:1 4369:1 4390:5 4393:1 4396:1 4416:1 4421:1 4428:1 4454:1 4471:2 4480:2 4504:1 4509:1 4563:1 4593:1 4607:1 4608:1 4609:1 4630:1 4642:1 4667:1 4670:1 4675:2 4689:1 4691:2 4744:1 4775:2 4789:1 4814:1 4844:3 4876:1 4877:1 4911:1 5010:1 5028:8 5031:2 5043:1 5056:2 5067:1 5099:1 5138:6 5153:3 5154:2 5156:1 5160:1 5161:1 5164:1 5166:1 5168:1 5169:2 5175:2 5181:1 5183:2 5185:2 5186:1 5209:1 5217:1 5221:1 5253:3 5268:1 5273:1 5289:1 5376:2 5389:1 5436:1 5455:1 5457:1 5469:1 5483:2 5487:1 5498:3 5522:1 5532:6 5579:8 5614:1 5644:1 5682:1 5765:1 5779:1 5788:2 5805:1 5816:1 5824:1 5829:1 5845:1 5854:1 5873:1 5904:1 5922:1 5943:1 5944:3 5949:1 5950:1 5952:1 5953:1 5959:1 5960:1 5968:1 5982:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:1 6282:6 6303:1 6305:1 6311:1 6312:1 6316:2 6319:1 6334:1 6388:1 6392:2 6428:1 6440:2 6458:1 6487:1 6519:2 6526:1 6530:1 6537:1 6585:2 6602:4 6605:2 6609:1 6612:3 6613:1 6620:1 6621:1 6622:1 6628:1 6629:3 6630:9 6632:1 6633:2 6650:1 6673:1 6683:2 6729:1 6770:2 6780:1 6785:2 6827:1 6860:1 6869:1 6914:1 6927:1 6939:1 6949:1 6962:2 6969:1 6974:1 6980:1 7001:1 7046:1 7049:1 7052:1 7055:1 7071:2 7089:1 7097:3 7123:1 7127:1 7131:1 7134:1 7169:1 7204:1 7208:1 7237:1 7270:1 7293:1 7306:1 7331:1 7404:4 7407:2 7417:1 7432:1 7463:2 7501:1 7509:1 7515:1 7519:1 7520:2 7537:1 7553:1 7616:1 7682:1 7706:3 7723:1 7747:3 7753:2 7762:3 7801:1 7817:1 7829:1 7831:1 7870:2 7883:1 7911:2 7914:1 7917:1 7952:7 7954:6 7960:1 7968:1 7970:1 7971:1 7975:2 7987:1 8011:2 8029:30 8043:6 8044:1 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8113:1 8142:2 8164:1 8198:1 8212:1 8221:2 8237:1 8240:1 8248:1 8298:1 8303:1 8354:2 8403:1 8407:1 8408:1 8429:1 8490:2 8509:1 8513:5 8523:1 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8658:1 8659:1 8666:1 8682:1 8729:1 8735:1 8761:1 8773:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:2 8885:2 8887:1 8892:1 8896:1 8899:1 8900:1 8901:1 8927:1 8940:1 8945:2 8961:1 8964:1 8979:1 8990:1 8992:2 8997:1 9018:2 9030:1 9033:1 9054:1 9067:1 9148:1 9169:1 9200:2 9209:1 9212:1 9227:1 9255:1 9308:1 9312:1 9313:1 9324:2 9351:1 9372:1 9380:1 9399:1 9400:2 9405:1 9417:1 9426:1 9430:1 9434:1 9441:1 9458:1 9480:4 9481:1 9491:1 9510:1 9517:2 9518:1 9521:1 9523:1 9536:1 9539:2 9544:1 9552:1 9565:3 9567:3 9570:1 9594:1 9607:1 9610:1 9613:2 9627:1 9635:1 9636:1 9637:2 9642:1 9647:1 9654:1 9657:2 9681:1 9694:1 9702:1 9704:1 9707:1 9717:1 9725:1 9741:1 9765:7 9778:1 9794:2 9798:1 9799:1 9816:1 9820:1 9832:3 9844:1 9845:1 9857:1 9862:2 9881:1 9884:2 9893:1 9904:2 9925:1 9950:1 9957:1 9961:1 9962:3 9966:1 9971:1 9997:6 10018:3 10024:1 10026:1 10031:1 10060:1 10132:1 10175:4 10217:1 10233:1 10234:4 10235:1 10239:1 10246:1 10247:1 10270:1 10283:1 10288:3 10372:1 10379:4 10380:1 10381:2 10393:1 10427:1 10439:1 10444:1 10502:1 10517:1 10519:1 10544:1 10549:1 10572:1 10576:1 10577:1 10622:1 10623:1 10652:2 10659:2 10672:1 10687:1 10757:1 10761:3 10762:1 10816:3 10847:1 10853:1 10869:2 10884:1 10889:1 10891:4 10893:1 10895:1 10904:2 10957:1 10989:1 11001:1 11012:6 11019:1 11021:1 11048:2 11061:1 11077:1 11079:1 11082:1 11120:1 11172:1 11254:1 11284:2 11289:4 11295:2 11311:1 11315:1 11317:1 11331:1 11340:1 11348:1 11372:2 11400:1 11418:3 11430:1 11460:1 11469:1 11473:1 11496:1 11501:1 11515:1 11536:1 11550:1 11553:1 11559:1 11560:1 11599:1 11608:1 11609:2 11692:2 11705:1 11706:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:2 11797:1 11807:5 11845:1 11874:2 11881:1 11882:1 11888:1 11895:1 11909:2 11922:1 11954:1 11966:1 11969:1 11976:1 11982:1 11987:2 11992:1 12002:4 12045:1 12050:1 12055:1 12064:1 12067:2 12069:1 12070:1 12074:2 12081:1 12089:3 12121:1 12125:2 12136:1 12144:1 12149:2 12156:1 12168:1 12201:1 12208:1 12209:1 12264:2 12268:1 12269:1 12279:1 12282:1 12301:1 12331:1 12339:1 12356:1 12365:1 12374:1 12396:1 12461:1 12478:1 12479:6 12504:1 12507:1 12508:1 12522:3 12529:2 12535:1 12540:2 12543:1 12546:1 12565:1 12583:2 12598:1 12605:1 12610:1 12623:4 12656:1 12676:2 12683:1 12726:1 12773:1 12791:1 12808:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13145:1 13163:1 13174:2 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13411:1 13416:1 13481:1 13482:1 13492:2 13494:3 13498:2 13514:1 13520:1 13522:1 13539:1 13543:2 13551:1 13582:2 13619:1 13645:1 13647:1 13656:2 13658:1 13665:1 13681:2 13708:3 13720:1 13727:2 13752:1 13783:1 13792:1 13804:1 13843:1 13852:1 13876:1 13886:1 13930:1 13962:1 13969:4 13984:1 14008:1 14013:1 14016:2 14020:7 14021:1 14022:1 14038:2 14040:1 14062:2 14083:2 14100:1 14101:1 14111:2 14138:1 14145:1 14151:3 14158:2 14165:1 14166:4 14170:1 14174:1 14222:1 14223:1 14234:1 14252:1 14262:2 14273:2 14275:1 14282:1 14300:6 14305:1 14321:3 14334:1 14340:2 14341:1 14347:1 14360:1 14368:1 14376:2 14384:1 14385:1 14414:1 14431:1 14456:1 14458:1 14490:1 14491:2 14492:1 14495:4 14535:1 14553:2 14562:1 14612:1 14661:1 14663:1 14678:1 14679:2 14682:1 14686:1 14704:2 14712:1 14716:1 14729:1 14735:1 14767:1 14777:1 14797:1 14808:1 14833:1 14836:2 14844:1 14852:1 14863:2 14870:2 14873:1 14881:1 14884:1 14899:1 14918:3 14945:1 14951:1 14959:4 15016:1 15032:1 15055:1 15065:1 15067:1 15070:1 15090:1 15092:2 15121:1 15137:1 15142:3 15146:1 15149:1 15156:1 15178:1 15218:1 15232:1 15240:3 15253:1 15254:1 15267:1 15269:2 15271:1 15279:1 15310:1 15385:1 15393:1 15410:1 15411:2 15416:3 15423:2 15432:1 15435:1 15439:1 15456:1 15490:1 15498:1 15503:1 15537:1 15560:1 15577:1 15588:1 15603:2 15615:1 15628:1 15652:1 15675:1 15682:1 15706:1 15708:2 15710:1 15717:1 15725:1 15726:1 15728:2 15730:1 15741:1 15767:1 15807:2 15820:1 15831:1 15892:1 15911:1 15920:1 15931:2 15968:1 15981:1 15993:1 16010:1 16034:1 16048:1 16078:4 16085:1 16089:1 16091:1 16094:1 16097:3 16104:1 16110:1 16117:2 16118:1 16121:1 16129:3 16138:1 16145:2 16158:4 16166:1 16180:1 16183:2 16210:1 16224:1 16234:2 16259:2 16304:2 16315:1 16325:1 16344:1 16363:1 16389:1 16391:3 16421:2 16455:1 16458:1 16479:1 16480:1 16481:1 16492:1 16505:1 16508:2 16509:1 16515:1 16518:1 16519:1 16552:2 16559:1 16570:2 16620:1 16656:1 16659:1 16673:2 16680:1 16682:2 16695:1 16697:1 16715:1 16738:1 16763:1 16780:1 16798:1 16800:2 16805:2 16821:1 16852:1 16884:1 16885:1 16900:2 16919:4 16930:1 16948:1 16969:1 16981:1 17008:1 17026:1 17035:3 17048:1 17067:1 17069:1 17083:1 17088:1 17110:1 17112:2 17187:1 17254:1 17270:1 17293:2 17305:1 17319:1 17351:1 17355:1 17357:1 17368:1 17370:1 17384:1 17441:1 17449:1 17478:1 17481:1 17509:1 17544:2 17560:1 17570:1 17572:1 17597:1 17615:1 17627:1 17637:1 17647:1 17663:1 17666:1 17730:1 17734:3 17763:1 17774:3 17866:2 17887:1 17889:1 17894:1 17897:1 17900:1 17917:1 17946:1 17948:2 17957:1 17962:1 17965:1 17983:1 17986:1 18010:2 18048:2 18120:1 18127:1 18141:1 18147:1 18150:1 18151:1 18166:1 18174:1 18199:1 18213:1 18221:2 18226:1 18235:1 18242:1 18244:2 18251:1 18274:1 18286:2 18288:1 18290:1 18295:1 18297:1 18314:1 18318:1 18323:1 18329:1 18330:1 18342:2 18343:2 18345:1 18348:1 18359:1 18369:2 18371:1 18372:1 18389:1 18392:1 18393:1 18394:1 18400:1 18422:1 18441:1 18447:1 18448:1 18460:1 18484:1 18492:1 18503:1 18517:1 18556:1 18563:1 18582:1 18600:3 18613:2 18629:1 18631:1 18668:2 18675:1 18692:1 18695:1 18697:3 18736:1 18754:2 18759:1 18787:1 18789:1 18805:4 18836:2 18862:1 18965:1 18971:1 18975:6 18988:1 18990:1 18998:1 19000:1 19007:1 19011:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19157:1 19164:1 19184:1 19201:1 19208:1 19214:1955 19221:1 19243:1 19260:1 19269:1 19270:1 19279:1 19282:1 19293:1 19416:1 19441:1 19443:1 19524:1 19543:1 19566:1 19581:1 19590:1 19651:1 19720:1 19734:2 19757:1 19766:1 19778:1 19792:1 19821:2 19837:1 19843:1 19845:4 19892:1 19921:1 19924:1 19947:2 19979:1 19997:1 20016:8 20018:1 20074:1 20108:1 20126:3 20135:1 20151:1 20166:4 20197:1 20202:2 20223:1 20233:2 20247:1 20252:2 20267:1 20276:2 20282:1 20286:1 20290:1 20307:1 20321:2 20325:1 20327:1 20329:1 20340:1 20341:2 20359:1 20387:1 20405:1 20407:3 20412:1 20413:1 20430:1 20483:1 20504:1 20524:2 20528:2 20596:4 20605:1 20639:1 20660:3 20667:3 20672:1 20674:1 20677:1 20701:2 20704:1 20709:1 20740:2 20742:1 20749:1 20752:1 20757:1 20760:1 20761:1 20769:1 20793:1 20799:1 20808:1 20810:1 20815:2 20829:2 20832:1 20848:1 20864:1 20873:1 20954:1 20957:2 20961:1 20964:1 21001:2 21004:2 21012:1 21028:1 21030:1 21036:1 21037:1 21053:1 21133:1 21164:2 21202:1 21231:1 21235:1 21239:1 21251:1 21253:1 21264:1 21282:1 21286:1 21289:1 21295:1 21328:2 21345:1 21360:2 21366:1 21367:1 21372:1 21373:1 21386:2 21387:1 21404:2 21411:2 21414:2 21471:1 21474:1 21489:1 21508:1 21519:1 21520:1 21545:1 21555:1 21563:2 21637:1 21674:1 21680:1 21724:2 21763:1 21790:2 21823:1 21828:1 21842:1 21845:2 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21946:1 21951:1 21956:1 21958:1 21971:1 21988:1 21992:1 22003:1 22104:1 22136:2 22139:1 22161:2 22169:1 22171:1 22178:1 22182:1 22191:6 22192:1 22206:3 22218:1 22241:1 22242:2 22246:1 22247:1 22250:1 22252:1 22302:2 22335:1 22342:1 22347:3 22352:1 22364:1 22369:1 22374:1 22387:1 22388:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22454:1 22487:2 22506:1 22520:1 22531:1 22532:1 22558:1 22565:1 22576:2 22577:1 22598:2 22604:2 22616:1 22623:1 22640:1 22669:1 22676:1 22700:2 22706:1 22715:1 22722:1 22727:1 22733:1 22738:1 22757:1 22774:1 22777:3 22791:2 22800:1 22802:2 22804:2 22807:2 22813:1 22820:1 22826:1 22833:1 22854:1 22864:1 22883:1 22888:2 22926:2 22939:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23037:1 23064:1 23080:1 23089:1 23090:1 23106:1 23109:2 23117:1 23129:1 23133:1 23140:1 23162:1 23166:1 23173:1 23181:1 23185:1 23199:2 23211:1 23313:6 23317:1 23319:1 23320:1 23326:1 23332:1 23334:1 23335:1 23367:1 23384:1 23401:2 23444:2 23466:2 23476:1 23480:1 23482:1 23492:1 23534:2 23559:1 23593:2 23610:5 23630:1 23632:1 23635:1 23694:1 23749:1 23767:1 23794:1 23807:2 23813:1 23819:1 23822:1 23830:2 23833:1 23836:2 23858:2 23874:1 23875:1 23882:1 23893:1 23897:2 23937:2 23959:1 23967:2 23992:1 24019:1 24025:1 24044:1 24049:1 24058:1 24062:1 24066:3 24071:2 24090:1 24093:1 24109:1 24115:2 24160:1 24190:1 24224:1 24236:2 24243:1 24257:1 24289:1 24294:1 24300:1 24332:1 24350:1 24389:1 24394:1 24419:1 24478:3 24480:1 24483:1 24489:1 24519:1 24534:2 24573:1 24586:2 24588:1 24615:3 24624:1 24643:1 24653:1 24665:1 24667:1 24677:1 24679:1 24682:3 24686:1 24722:1 24733:1 24767:1 24775:2 24783:1 24831:1 24843:1 24848:4 24852:1 24855:2 24874:1 24888:6 24927:1 24947:1 24962:1 24982:1 24988:1 24993:1 24995:1 25006:1 25010:1 25011:2 25020:1 25024:1 25042:1 25053:1 25056:1 25057:1 25074:1 25088:1 25092:1 25095:1 25113:1 25114:1 25116:1 25120:1 25122:1 25130:1 25134:3 25137:1 25140:1 25154:1 25156:1 25171:1 25253:2 25261:1 25289:1 25292:1 25299:1 25321:1 25403:1 25423:1 25506:2 25532:1 25534:1 25538:3 25543:1 25579:4 25592:2 25602:1 25613:2 25641:1 25643:1 25654:1 25660:1 25678:1 25706:1 25715:1 25736:1 25748:1 25749:1 25796:1 25799:3 25807:2 25812:2 25826:1 25827:1 25832:1 25834:1 25843:2 25844:1 25848:2 25861:3 25862:1 25879:1 25893:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 25968:1 26008:1 26009:2 26041:1 26054:1 26064:1 26081:1 26129:1 26131:1 26142:1 26145:1 26170:1 26198:1 26230:1 26263:1 26276:1 26279:1 26282:4 26286:1 26323:1 26345:2 26350:1 26356:1 26382:1 26387:1 26415:1 26437:1 26444:2 26446:1 26450:1 26454:1 26456:1 26463:1 26475:2 26501:1 26529:3 26540:1 26564:1 26582:1 26605:6 26646:1 26652:2 26668:1 26684:1 26688:1 26736:2 26751:1 26755:1 26757:1 26783:1 26824:1 26855:1 26877:1 26878:1 26885:1 26887:1 26894:1 26932:4 26948:3 26953:1 26956:1 26980:1 26987:1 27007:1 27011:1 27017:1 27032:1 27057:1 27082:2 27088:2 27151:1 27161:1 27185:2 27191:1 27245:1 27281:2 27308:2 27310:2 27324:1 27370:1 27380:1 27383:1 27398:1 27406:1 27425:1 27432:1 27474:1 27483:1 27493:1 27499:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:2 27647:1 27650:1 27653:1 27676:1 27687:3 27697:1 27713:1 27714:1 27732:1 27763:2 27766:1 27770:1 27775:1 27777:1 27778:1 27783:2 27790:1 27812:3 27815:1 27816:1 27821:3 27822:1 27827:1 27828:1 27830:1 27833:1 27836:2 27841:1 27849:1 27858:1 27882:2 27898:1 27915:4 27923:1 27927:1 27929:2 27930:1 27951:1 27962:1 27972:1 28049:2 28075:1 28085:1 28097:2 28100:2 28101:1 28116:2 28184:1 28190:1 28227:1 28232:1 28243:1 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28411:1 28428:1 28437:1 28442:3 28455:1 28467:1 28481:1 28489:1 28502:2 28516:9 28524:1 28539:1 28549:5 28569:6 28573:1 28599:1 28618:1 28625:1 28648:1 28656:2 28659:1 28661:1 28678:2 28684:5 28715:1 28720:8 28727:1 28730:1 28733:1 28738:2 28756:1 28789:1 28798:1 28801:2 28814:1 28826:1 28838:1 28857:1 28858:1 28860:1 28913:2 28920:1 28929:1 28942:1 28953:1 28957:1 28983:1 28994:1 28998:1 28999:1 29042:1 29050:1 29060:1 29062:2 29067:2 29073:1 29086:1 29103:1 29107:1 29130:2 29150:1 29164:1 29167:1 29187:1 29214:1 29229:1 29243:1 29249:2 29297:2 29306:1 29318:1 29341:1 29347:1 29380:1 29390:2 29463:1 29471:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:5 29586:1 29591:2 29603:1 29606:1 29616:1 29626:1 29645:1 29667:2 29685:3 29732:2 29740:1 29752:2 29759:3 29766:1 29768:1 29802:1 29816:1 29822:4 29831:1 29854:1 29874:1 29883:1 29885:2
12 2:1 39:1 40:1 51:1 65:2 110:4 120:1 137:1 179:1 211:1 230:2 239:2 247:1 313:1 323:1 325:1 343:1 363:4 398:2 405:3 417:2 418:1 424:1 448:1 451:3 455:1 461:1 473:2 490:1 559:1 565:1 592:1 622:3 628:1 650:1 666:1 686:1 711:1 713:1 722:2 724:1 768:1 780:1 832:1 835:1 837:1 861:1 905:5 910:1 914:1 923:1 928:4 933:1 944:2 947:2 957:1 976:2 982:2 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1046:1 1054:1 1083:1 1099:1 1101:1 1105:1 1118:1 1129:1 1153:1 1163:1 1173:1 1187:1 1208:1 1209:1 1220:2 1221:1 1229:2 1235:1 1245:1 1247:1 1258:2 1293:2 1303:1 1318:1 1322:1 1342:2 1353:3 1384:1 1422:5 1465:1 1467:1 1468:3 1470:1 1473:5 1474:1 1475:1 1493:1 1496:1 1517:1 1531:1 1536:1 1557:1 1558:2 1561:1 1577:1 1580:1 1586:1 1593:2 1599:1 1669:2 1671:2 1703:2 1707:1 1716:4 1727:2 1737:2 1738:1 1779:2 1785:1 1812:1 1827:1 1830:1 1856:1 1860:2 1865:1 1869:3 1876:1 1880:1 1895:2 1898:1 1900:1 1907:1 1920:1 1929:2 1935:1 1940:1 1950:2 1969:1 2005:1 2037:1 2039:3 2041:1 2066:1 2081:1 2084:1 2115:1 2122:1 2134:1 2162:2 2212:1 2239:5 2250:2 2252:1 2261:1 2263:2 2287:1 2295:2 2296:2 2297:2 2299:1 2301:4 2302:1 2304:2 2307:2 2308:2 2312:1 2314:1 2316:2 2318:1 2323:1 2324:5 2325:1 2328:1 2331:1 2335:1 2338:2 2370:1 2394:5 2403:2 2405:1 2419:1 2432:1 2440:1 2478:2 2527:1 2528:1 2534:1 2562:1 2573:1 2589:2 2601:1 2604:4 2623:1 2627:1 2656:1 2657:1 2665:1 2670:1 2731:1 2755:1 2759:1 2787:4 2795:1 2802:1 2824:1 2826:1 2848:2 2860:4 2871:1 2911:1 2921:1 2930:1 2941:1 2956:5 2962:1 2967:1 3017:1 3033:1 3037:1 3040:1 3049:1 3052:2 3060:1 3075:1 3081:1 3088:1 3095:1 3096:1 3111:1 3121:1 3128:1 3141:1 3172:1 3175:1 3189:1 3204:1 3207:1 3208:2 3261:1 3272:1 3287:1 3295:1 3302:1 3317:1 3324:1 3335:1 3340:2 3361:1 3376:1 3388:2 3402:6 3411:1 3418:1 3472:1 3479:1 3500:1 3507:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3644:1 3671:1 3679:1 3683:1 3689:1 3698:1 3713:1 3717:1 3728:1 3746:1 3757:4 3763:1 3766:1 3769:1 3773:1 3780:1 3784:1 3787:1 3829:4 3858:2 3877:1 3886:1 3896:1 3901:3 3905:1 3923:1 3941:1 3942:1 3960:1 4004:1 4010:2 4024:1 4031:1 4042:2 4047:1 4076:1 4078:1 4090:1 4113:1 4122:1 4132:1 4136:2 4140:3 4186:1 4209:1 4238:2 4292:1 4321:5 4329:2 4335:1 4344:1 4369:1 4390:5 4393:1 4396:1 4416:1 4421:1 4428:1 4454:1 4471:2 4480:2 4504:1 4509:1 4563:1 4593:1 4607:1 4608:1 4609:1 4630:1 4642:2 4667:1 4670:1 4675:2 4689:1 4691:2 4744:1 4775:2 4789:1 4801:1 4814:1 4844:3 4876:1 4877:1 4910:1 4911:1 5010:1 5028:8 5031:2 5043:1 5056:2 5067:1 5099:1 5138:6 5153:3 5154:2 5156:1 5160:1 5161:1 5164:1 5166:1 5168:1 5169:2 5175:2 5181:1 5183:2 5185:2 5186:1 5209:1 5217:1 5221:1 5253:3 5268:1 5273:1 5289:1 5376:2 5389:1 5436:1 5455:1 5457:1 5469:1 5483:2 5487:1 5498:3 5522:1 5532:6 5579:8 5614:1 5644:1 5682:1 5752:1 5765:1 5779:1 5788:2 5805:1 5816:1 5824:1 5829:1 5845:1 5854:1 5873:1 5890:1 5904:1 5922:1 5943:1 5944:3 5949:1 5950:1 5952:2 5953:1 5959:1 5960:1 5968:1 5982:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:2 6282:6 6303:1 6305:1 6311:1 6312:1 6316:2 6319:1 6334:1 6388:1 6392:2 6428:1 6430:1 6440:2 6458:1 6487:1 6519:3 6526:1 6530:1 6537:1 6585:2 6602:4 6605:2 6609:1 6612:3 6613:1 6620:1 6621:1 6622:1 6628:1 6629:3 6630:9 6632:1 6633:2 6650:1 6673:1 6683:2 6729:1 6752:1 6770:2 6780:1 6785:2 6827:1 6860:1 6869:1 6914:1 6927:1 6939:1 6949:1 6962:2 6969:1 6974:1 6980:1 7001:1 7046:1 7049:1 7052:1 7055:1 7071:2 7089:1 7097:3 7123:1 7127:1 7129:1 7131:1 7134:1 7168:1 7169:1 7204:1 7208:1 7237:1 7270:1 7293:1 7306:1 7319:1 7331:1 7404:6 7407:2 7417:1 7432:1 7463:2 7501:1 7509:2 7515:1 7519:1 7520:2 7537:1 7553:1 7616:1 7682:1 7706:3 7721:1 7723:1 7747:4 7753:2 7762:3 7801:1 7817:1 7829:1 7831:1 7870:2 7883:1 7911:2 7914:1 7917:1 7952:7 7954:6 7960:1 7968:1 7970:1 7971:1 7975:2 7979:1 7987:1 8011:2 8029:31 8043:6 8044:1 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8113:1 8142:2 8164:1 8198:2 8212:1 8221:2 8237:1 8240:1 8248:1 8298:1 8303:1 8338:1 8354:2 8403:1 8407:1 8408:1 8429:1 8490:2 8500:1 8509:1 8513:5 8523:1 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8658:1 8659:1 8666:1 8682:1 8688:1 8729:1 8735:1 8754:1 8761:1 8773:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:3 8885:2 8887:1 8892:1 8896:1 8899:1 8900:1 8901:1 8927:1 8940:1 8945:2 8961:1 8964:1 8979:1 8990:1 8992:2 8997:1 9018:2 9030:1 9033:1 9054:1 9067:1 9148:1 9169:1 9200:2 9209:1 9212:1 9227:1 9255:1 9308:1 9312:1 9313:1 9324:2 9351:1 9372:1 9380:1 9399:1 9400:2 9405:1 9417:1 9426:1 9430:1 9434:1 9441:1 9458:1 9480:4 9481:1 9491:1 9510:1 9517:2 9518:1 9521:1 9523:1 9536:1 9539:2 9544:1 9552:1 9563:1 9565:3 9567:3 9570:1 9572:1 9594:1 9607:1 9610:1 9613:2 9627:1 9635:1 9636:1 9637:2 9642:1 9647:1 9654:1 9657:2 9681:1 9694:1 9702:1 9704:1 9707:1 9717:1 9725:1 9741:1 9765:7 9778:1 9794:2 9798:1 9799:1 9816:1 9820:1 9832:3 9844:1 9845:1 9857:1 9862:2 9881:1 9884:2 9893:1 9904:2 9925:1 9950:1 9957:1 9961:1 9962:3 9966:1 9971:1 9997:6 10018:3 10024:1 10026:1 10031:1 10060:1 10132:1 10175:4 10198:1 10217:1 10233:1 10234:4 10235:1 10239:1 10246:1 10247:1 10270:1 10283:1 10288:3 10372:1 10379:4 10380:1 10381:2 10393:1 10427:1 10439:1 10444:1 10502:1 10517:1 10519:1 10544:1 10549:1 10572:1 10576:1 10577:1 10622:1 10623:1 10652:2 10659:2 10672:1 10687:1 10757:1 10761:3 10762:1 10816:3 10847:1 10853:1 10869:2 10871:1 10884:1 10889:1 10891:4 10893:1 10895:1 10904:2 10957:1 10989:1 11001:1 11012:6 11019:1 11021:1 11048:2 11061:1 11077:1 11079:1 11082:1 11120:1 11172:1 11254:1 11284:2 11287:1 11289:4 11295:2 11311:1 11315:1 11317:1 11331:1 11340:1 11348:1 11372:2 11400:1 11402:1 11418:3 11427:1 11430:1 11460:1 11469:1 11473:1 11496:1 11501:1 11515:1 11536:1 11550:1 11553:1 11559:1 11560:1 11599:1 11608:1 11609:2 11692:2 11705:1 11706:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:2 11797:1 11807:5 11845:1 11874:2 11881:1 11882:1 11888:1 11895:1 11909:2 11922:1 11954:1 11966:1 11969:1 11976:1 11982:1 11987:2 11992:1 12002:4 12045:1 12050:1 12055:1 12064:1 12067:2 12069:1 12070:1 12074:2 12081:1 12089:3 12121:1 12125:2 12136:1 12144:1 12149:2 12156:1 12168:1 12201:1 12208:1 12209:1 12264:2 12268:1 12269:1 12279:1 12282:1 12301:1 12331:1 12339:1 12341:1 12356:1 12365:1 12374:1 12396:1 12461:1 12478:1 12479:6 12504:1 12507:1 12508:1 12522:3 12529:2 12535:1 12540:2 12543:2 12546:1 12565:1 12583:2 12598:1 12605:1 12610:1 12623:4 12656:1 12676:2 12683:1 12726:2 12773:1 12791:1 12808:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13001:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13145:1 13163:1 13174:3 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13411:1 13416:1 13481:1 13482:1 13492:2 13494:3 13498:2 13514:1 13520:1 13522:1 13539:1 13543:3 13551:1 13582:2 13619:1 13645:1 13647:1 13656:2 13658:1 13665:1 13681:2 13708:3 13720:1 13727:2 13752:1 13783:1 13792:1 13804:1 13843:1 13852:1 13876:1 13886:1 13930:1 13962:1 13969:4 13984:1 14008:1 14013:1 14016:2 14020:7 14021:1 14022:1 14038:2 14040:1 14062:2 14083:2 14100:1 14101:1 14111:2 14138:1 14145:1 14151:3 14158:2 14165:1 14166:4 14170:1 14174:1 14222:1 14223:1 14234:1 14252:1 14262:2 14273:2 14275:1 14282:1 14300:6 14305:1 14321:3 14334:1 14340:2 14341:1 14347:1 14360:1 14368:1 14376:2 14384:1 14385:1 14414:1 14431:1 14456:1 14458:1 14490:1 14491:2 14492:1 14495:4 14527:1 14535:1 14553:2 14562:1 14612:1 14661:1 14663:1 14678:1 14679:2 14682:1 14686:1 14704:2 14712:1 14716:1 14729:1 14735:1 14767:1 14777:1 14797:1 14808:1 14833:1 14836:2 14844:1 14852:1 14863:2 14870:2 14873:1 14881:1 14884:1 14899:1 14918:4 14933:1 14945:1 14951:1 14959:4 15016:1 15032:1 15055:1 15065:1 15067:1 15070:1 15090:1 15092:2 15121:1 15137:1 15142:4 15146:1 15149:1 15156:1 15178:1 15218:1 15232:1 15240:3 15253:1 15254:1 15267:1 15269:2 15271:1 15279:1 15310:1 15385:1 15393:1 15410:1 15411:2 15416:3 15423:2 15432:1 15435:1 15439:1 15456:1 15490:1 15498:1 15503:1 15537:1 15560:1 15577:1 15588:1 15603:2 15615:1 15628:1 15652:1 15675:1 15682:1 15706:1 15708:2 15710:1 15717:1 15725:1 15726:1 15728:2 15730:1 15741:1 15767:1 15807:2 15820:1 15831:1 15892:1 15911:1 15920:1 15931:2 15968:1 15981:1 15993:1 16010:1 16034:1 16048:1 16078:4 16085:1 16089:1 16091:1 16094:1 16097:3 16104:1 16110:1 16117:2 16118:1 16121:1 16129:3 16138:1 16145:2 16158:4 16166:1 16180:1 16183:2 16210:1 16224:1 16234:2 16259:2 16304:2 16315:1 16325:1 16344:1 16363:1 16389:1 16391:3 16421:2 16455:1 16458:1 16479:1 16480:1 16481:1 16492:1 16505:1 16508:2 16509:1 16515:1 16518:1 16519:1 16552:3 16559:1 16570:2 16620:1 16656:1 16659:1 16673:2 16680:1 16682:2 16695:1 16697:1 16715:1 16738:1 16763:1 16780:1 16798:1 16800:2 16805:2 16821:1 16852:1 16884:1 16885:1 16900:2 16919:4 16930:1 16948:1 16969:1 16981:1 17008:1 17026:1 17035:3 17048:1 17067:1 17069:1 17083:1 17088:1 17110:1 17112:2 17187:1 17254:1 17270:1 17293:2 17305:1 17319:1 17351:1 17355:1 17357:1 17368:1 17370:1 17384:1 17441:1 17449:1 17478:1 17481:1 17509:1 17544:2 17560:1 17570:1 17572:1 17597:1 17615:1 17627:1 17637:1 17647:1 17663:1 17666:1 17727:1 17730:1 17734:3 17763:1 17774:3 17866:2 17887:1 17889:1 17894:1 17897:1 17900:1 17917:1 17946:1 17948:2 17957:1 17962:1 17965:1 17983:1 17986:1 18010:2 18048:3 18073:1 18120:1 18127:1 18141:1 18147:1 18150:1 18151:1 18166:1 18174:1 18199:1 18213:1 18221:2 18226:1 18235:1 18242:1 18244:2 18251:1 18274:1 18286:2 18288:1 18290:1 18295:1 18297:1 18314:1 18318:1 18323:1 18329:1 18330:1 18342:2 18343:2 18345:1 18348:1 18359:1 18364:1 18369:2 18371:1 18372:1 18389:1 18392:1 18393:1 18394:1 18400:1 18422:1 18441:1 18447:1 18448:1 18460:1 18484:1 18492:1 18503:1 18517:1 18556:2 18563:1 18582:1 18600:3 18613:2 18629:1 18631:1 18668:2 18675:1 18692:1 18695:1 18697:3 18736:1 18754:2 18759:1 18787:1 18789:1 18805:4 18836:3 18862:1 18965:1 18971:1 18975:6 18988:1 18990:1 18998:1 19000:1 19007:1 19011:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19157:1 19164:1 19184:1 19201:1 19208:1 19214:2030 19221:1 19243:1 19260:1 19269:1 19270:1 19279:1 19282:1 19293:1 19416:1 19441:1 19443:1 19524:1 19543:1 19566:1 19581:1 19590:1 19651:1 19720:1 19734:2 19757:1 19766:1 19778:1 19792:1 19821:2 19837:1 19843:1 19845:4 19892:1 19921:1 19924:1 19947:2 19959:1 19970:1 19979:1 19997:1 20016:8 20018:1 20074:1 20108:1 20126:3 20135:1 20151:1 20166:4 20197:1 20202:2 20223:1 20233:2 20247:1 20252:2 20267:2 20276:2 20282:1 20286:1 20290:1 20307:1 20321:2 20325:1 20327:1 20329:1 20340:1 20341:2 20359:1 20387:1 20405:1 20407:3 20412:1 20413:1 20430:1 20483:1 20504:1 20524:2 20528:2 20596:4 20605:1 20639:1 20660:3 20667:3 20672:1 20674:1 20677:1 20701:2 20704:1 20709:1 20740:2 20742:1 20749:1 20752:1 20757:1 20760:1 20761:1 20769:1 20793:1 20799:1 20808:1 20810:1 20815:2 20829:2 20832:1 20848:1 20864:1 20873:1 20954:1 20957:2 20961:1 20964:1 21001:2 21004:2 21012:1 21028:1 21030:1 21036:1 21037:1 21053:1 21133:1 21164:2 21202:1 21231:1 21235:1 21239:1 21251:1 21253:1 21264:1 21282:1 21286:1 21289:1 21295:1 21328:2 21345:1 21360:2 21366:1 21367:1 21372:1 21373:1 21386:2 21387:1 21404:2 21411:2 21414:2 21471:1 21474:1 21489:1 21508:1 21519:1 21520:1 21545:1 21555:1 21563:2 21637:1 21674:1 21680:1 21724:2 21763:1 21790:2 21823:1 21828:1 21842:1 21845:2 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21946:1 21951:1 21956:1 21958:1 21971:1 21988:1 21992:1 22003:1 22104:1 22136:2 22139:1 22161:2 22169:1 22171:1 22178:1 22182:1 22191:6 22192:1 22206:3 22218:1 22241:1 22242:2 22246:1 22247:1 22250:1 22252:1 22302:2 22323:1 22335:1 22342:1 22347:3 22352:1 22364:1 22369:1 22374:1 22387:1 22388:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22454:1 22487:2 22506:1 22520:1 22531:1 22532:1 22558:1 22565:1 22576:2 22577:1 22598:2 22604:2 22616:1 22623:1 22640:1 22669:1 22676:1 22700:2 22706:1 22715:1 22722:1 22727:1 22733:1 22738:1 22757:1 22774:1 22777:3 22791:2 22800:1 22802:2 22804:2 22807:2 22813:1 22820:1 22826:1 22833:1 22850:1 22854:1 22864:1 22883:1 22888:2 22926:2 22939:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23037:1 23064:1 23080:1 23089:1 23090:1 23106:1 23109:2 23117:1 23129:1 23133:1 23140:1 23162:1 23166:1 23173:1 23181:1 23182:1 23185:1 23199:2 23211:1 23313:6 23317:1 23319:1 23320:1 23326:1 23332:1 23334:1 23335:1 23367:1 23384:1 23401:2 23444:2 23466:2 23476:1 23480:1 23482:1 23492:1 23534:2 23559:1 23593:2 23610:5 23630:1 23632:2 23635:1 23694:1 23749:1 23767:1 23794:1 23807:2 23813:1 23819:1 23822:1 23830:2 23833:1 23836:2 23858:2 23874:1 23875:1 23882:1 23893:1 23897:2 23937:2 23959:1 23967:2 23992:1 24019:1 24025:1 24044:1 24049:1 24058:1 24062:1 24066:3 24071:2 24090:1 24093:1 24109:1 24115:2 24160:2 24190:1 24224:1 24236:2 24243:1 24257:1 24289:1 24294:1 24300:1 24332:1 24350:1 24389:1 24394:1 24419:1 24478:3 24480:1 24483:1 24489:1 24519:1 24534:2 24573:1 24586:2 24588:1 24615:3 24624:1 24643:1 24653:1 24665:1 24667:1 24677:1 24679:1 24682:3 24686:1 24722:1 24733:1 24767:1 24775:2 24783:1 24831:1 24843:2 24848:4 24852:1 24855:2 24874:1 24888:6 24927:1 24947:1 24962:1 24982:1 24988:1 24993:1 24995:1 25006:1 25010:1 25011:2 25020:1 25024:1 25042:1 25053:1 25056:1 25057:1 25074:1 25088:1 25092:1 25095:1 25113:1 25114:1 25116:1 25120:1 25122:1 25130:1 25134:3 25137:1 25140:1 25154:1 25156:1 25171:1 25253:2 25261:1 25289:1 25292:1 25299:1 25321:1 25403:1 25423:1 25506:2 25532:1 25534:1 25538:3 25543:1 25579:4 25592:2 25602:1 25613:2 25641:1 25643:1 25654:1 25660:1 25678:1 25706:1 25715:1 25736:1 25748:1 25749:1 25796:1 25799:3 25807:2 25812:2 25826:1 25827:1 25832:1 25834:1 25843:2 25844:1 25848:2 25861:3 25862:1 25879:1 25893:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 25968:1 26008:1 26009:3 26041:1 26054:1 26064:1 26081:1 26129:1 26131:1 26142:1 26145:1 26170:1 26198:1 26230:1 26263:1 26276:1 26279:1 26282:4 26286:1 26323:1 26345:2 26350:1 26356:1 26382:1 26387:1 26415:1 26437:1 26444:2 26446:1 26450:1 26454:1 26456:1 26463:1 26475:2 26501:1 26529:3 26540:1 26564:2 26582:1 26605:6 26646:1 26652:2 26668:1 26684:1 26688:1 26736:2 26751:1 26755:1 26757:1 26783:1 26790:1 26824:1 26855:1 26877:1 26878:1 26885:1 26887:1 26894:1 26932:4 26948:3 26953:1 26956:1 26980:1 26987:1 27007:1 27011:1 27017:1 27032:1 27057:1 27082:2 27088:2 27125:1 27151:1 27161:1 27185:2 27191:1 27245:1 27281:2 27308:2 27310:2 27324:1 27370:1 27380:1 27383:1 27398:1 27406:1 27425:1 27432:1 27474:1 27483:2 27493:1 27499:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:2 27647:1 27650:1 27653:1 27676:1 27687:3 27697:1 27713:1 27714:1 27732:1 27763:2 27766:1 27770:1 27775:1 27777:1 27778:1 27783:2 27790:1 27812:4 27815:1 27816:1 27821:3 27822:1 27827:1 27828:1 27830:1 27833:1 27836:2 27841:1 27849:1 27858:1 27882:2 27898:1 27915:4 27923:1 27927:1 27929:2 27930:1 27951:1 27962:1 27972:1 28049:2 28075:1 28085:1 28097:2 28100:2 28101:1 28116:2 28184:1 28190:1 28227:1 28232:1 28243:1 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28407:1 28411:1 28428:1 28429:1 28437:1 28442:3 28455:1 28467:1 28471:1 28481:1 28489:1 28502:2 28516:10 28524:1 28539:1 28549:5 28569:6 28573:1 28599:1 28618:1 28625:1 28648:1 28656:3 28659:1 28661:1 28678:2 28684:5 28715:1 28720:8 28727:1 28730:1 28733:1 28738:2 28755:1 28756:1 28789:1 28798:1 28801:2 28814:1 28826:1 28838:1 28857:1 28858:1 28860:1 28913:2 28920:1 28929:1 28942:1 28953:1 28957:1 28983:1 28994:1 28998:1 28999:1 29036:1 29042:1 29050:1 29060:1 29062:2 29067:2 29073:1 29086:1 29103:1 29107:1 29130:2 29150:1 29164:1 29167:1 29187:1 29214:1 29229:1 29243:1 29249:2 29294:1 29297:2 29306:1 29318:1 29341:1 29347:1 29369:1 29380:1 29390:2 29463:1 29471:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:5 29586:1 29591:2 29603:1 29606:1 29616:1 29626:2 29645:1 29667:2 29685:3 29732:2 29740:1 29752:2 29759:3 29766:1 29768:1 29802:1 29816:1 29822:4 29831:1 29854:1 29874:1 29883:1 29885:2
12 2:1 39:1 40:1 51:1 65:2 110:4 120:1 137:1 179:1 211:1 230:2 239:2 247:1 313:1 323:1 325:1 343:1 363:4 398:2 405:3 417:2 418:1 424:1 448:1 451:3 455:1 461:1 473:2 490:1 559:1 565:1 592:1 622:3 628:1 650:1 666:1 686:1 711:1 713:1 722:2 724:1 768:1 780:1 832:1 835:1 837:1 861:1 905:5 910:1 914:1 923:1 928:4 933:1 944:2 947:2 957:1 976:2 982:2 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1046:1 1054:1 1083:1 1099:1 1101:1 1105:1 1118:1 1129:1 1153:1 1163:1 1173:1 1187:1 1208:1 1209:1 1220:2 1221:1 1229:2 1235:1 1245:1 1247:1 1258:2 1293:2 1303:1 1318:1 1322:1 1342:2 1353:3 1384:1 1422:5 1465:1 1467:1 1468:3 1470:1 1473:5 1474:1 1475:1 1493:1 1496:1 1517:1 1531:1 1536:1 1557:1 1558:2 1561:1 1571:1 1577:1 1580:1 1586:1 1593:2 1599:1 1669:2 1671:2 1703:2 1707:1 1716:4 1727:2 1737:2 1738:1 1779:2 1785:1 1812:1 1827:1 1830:1 1856:1 1860:2 1865:1 1869:3 1876:1 1880:1 1895:2 1898:1 1900:1 1907:1 1920:1 1929:2 1935:1 1940:1 1950:2 1969:1 1976:1 2005:1 2037:1 2039:3 2041:1 2066:1 2081:1 2084:2 2115:1 2122:1 2134:1 2162:2 2212:1 2239:5 2250:2 2252:1 2261:1 2263:2 2274:1 2287:1 2295:2 2296:2 2297:2 2299:1 2301:4 2302:2 2304:2 2307:2 2308:2 2312:1 2314:1 2316:2 2318:1 2323:1 2324:5 2325:1 2328:1 2331:1 2335:1 2338:2 2370:1 2394:5 2403:2 2405:1 2419:1 2432:1 2440:1 2478:2 2527:1 2528:1 2534:1 2562:1 2573:1 2589:2 2601:1 2604:4 2623:1 2627:1 2656:1 2657:1 2665:1 2670:1 2731:1 2755:1 2759:1 2787:4 2795:1 2802:1 2824:1 2826:1 2848:2 2860:4 2871:1 2911:1 2921:1 2930:1 2941:1 2956:5 2962:1 2967:1 3017:1 3033:1 3037:1 3040:1 3049:1 3052:2 3060:1 3075:1 3081:1 3088:1 3095:1 3096:1 3111:1 3121:1 3128:1 3141:1 3172:1 3175:1 3189:1 3204:1 3207:1 3208:3 3261:1 3272:1 3287:1 3295:1 3302:1 3317:1 3324:1 3335:1 3340:2 3361:1 3376:1 3388:2 3402:6 3411:1 3418:1 3472:1 3479:1 3500:1 3507:1 3532:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3644:1 3671:1 3679:1 3683:1 3689:1 3698:1 3710:1 3713:1 3717:1 3728:1 3746:1 3757:4 3763:1 3766:1 3769:1 3773:1 3780:1 3784:1 3787:1 3829:4 3858:2 3877:1 3886:1 3896:1 3901:3 3905:1 3923:1 3941:1 3942:1 3960:1 4004:1 4010:3 4013:1 4024:1 4031:1 4042:3 4047:1 4076:1 4078:1 4090:1 4113:1 4122:1 4132:1 4136:2 4140:3 4186:1 4209:1 4238:2 4292:1 4321:5 4329:3 4335:1 4344:1 4369:1 4390:5 4393:1 4396:1 4416:1 4421:1 4428:1 4454:1 4471:2 4480:2 4504:1 4509:1 4563:1 4593:1 4607:1 4608:1 4609:1 4630:1 4642:2 4667:1 4670:1 4675:2 4689:1 4691:2 4744:1 4775:2 4789:1 4801:1 4814:1 4844:3 4876:1 4877:1 4910:1 4911:1 5010:1 5028:8 5031:2 5043:1 5056:2 5067:1 5099:1 5138:6 5153:3 5154:2 5156:1 5160:1 5161:1 5164:1 5166:1 5168:1 5169:2 5175:2 5181:1 5183:2 5185:2 5186:1 5209:1 5217:1 5221:1 5253:3 5268:1 5273:1 5289:1 5376:2 5389:1 5436:1 5455:1 5457:1 5469:1 5483:2 5487:1 5498:3 5522:1 5532:6 5579:8 5614:1 5644:1 5682:1 5752:1 5765:1 5779:1 5788:2 5805:1 5816:1 5824:1 5829:1 5845:1 5854:1 5873:1 5890:1 5904:1 5922:1 5943:1 5944:3 5949:1 5950:1 5952:2 5953:1 5959:1 5960:1 5968:1 5982:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:2 6282:6 6303:1 6305:1 6311:1 6312:1 6316:2 6319:1 6334:1 6388:1 6392:2 6428:1 6430:1 6440:2 6458:1 6487:1 6519:3 6526:1 6530:1 6537:1 6585:2 6602:4 6605:2 6609:2 6612:3 6613:1 6620:1 6621:1 6622:1 6628:1 6629:3 6630:9 6632:1 6633:2 6650:1 6673:1 6683:2 6729:1 6752:1 6770:2 6780:1 6785:2 6827:1 6860:1 6869:1 6914:1 6927:1 6939:1 6949:1 6962:2 6969:1 6974:1 6980:1 7001:1 7046:1 7049:1 7052:1 7055:1 7071:2 7089:1 7097:3 7123:1 7127:1 7129:1 7131:1 7134:1 7168:1 7169:1 7204:1 7208:1 7237:1 7270:1 7293:1 7306:1 7319:1 7331:1 7404:6 7407:2 7417:1 7432:1 7463:2 7501:1 7509:2 7515:1 7519:1 7520:2 7537:1 7553:1 7616:1 7682:1 7706:3 7721:2 7723:1 7747:4 7753:2 7762:3 7801:1 7817:1 7829:1 7831:1 7870:2 7883:1 7911:2 7914:1 7915:1 7917:1 7952:7 7954:6 7960:1 7968:1 7970:1 7971:1 7975:2 7979:1 7987:1 8011:2 8029:32 8043:6 8044:1 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8113:1 8142:2 8164:1 8198:2 8212:1 8221:2 8237:1 8240:1 8248:1 8298:1 8303:1 8338:1 8354:2 8403:1 8407:1 8408:1 8429:1 8490:2 8500:1 8509:1 8513:5 8523:1 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8658:1 8659:1 8666:1 8682:1 8688:1 8729:1 8735:1 8754:2 8761:1 8773:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:3 8885:2 8887:1 8892:1 8896:1 8899:1 8900:1 8901:1 8927:1 8940:1 8945:3 8961:1 8964:1 8979:1 8990:1 8992:2 8997:1 9018:2 9030:1 9033:1 9054:1 9067:1 9148:1 9169:1 9200:2 9209:1 9212:1 9227:1 9255:1 9308:1 9312:1 9313:1 9324:2 9351:1 9372:1 9380:1 9399:1 9400:2 9405:1 9417:1 9426:1 9430:1 9434:1 9441:1 9458:1 9480:4 9481:1 9491:1 9510:1 9517:2 9518:1 9521:1 9523:1 9536:1 9539:2 9544:1 9552:1 9563:1 9565:3 9567:3 9570:1 9572:1 9594:1 9607:1 9610:1 9613:2 9627:1 9635:1 9636:1 9637:2 9642:1 9647:1 9654:1 9657:2 9681:1 9694:1 9702:1 9704:1 9707:1 9717:1 9725:1 9741:1 9765:7 9778:1 9794:2 9798:1 9799:2 9816:1 9820:1 9832:3 9844:1 9845:1 9857:1 9862:2 9881:1 9884:2 9893:1 9904:2 9925:1 9950:1 9957:1 9961:1 9962:3 9966:1 9971:1 9997:6 10018:3 10024:1 10026:1 10031:1 10060:1 10132:1 10175:4 10198:1 10217:1 10233:1 10234:4 10235:1 10239:1 10246:1 10247:1 10270:1 10283:1 10288:3 10372:1 10379:4 10380:1 10381:2 10393:1 10427:1 10439:1 10444:1 10502:1 10517:1 10519:1 10544:1 10549:1 10572:1 10576:1 10577:1 10622:1 10623:1 10652:2 10659:2 10672:1 10687:1 10757:1 10761:3 10762:1 10811:1 10816:3 10847:1 10853:1 10869:2 10871:2 10884:1 10889:1 10891:4 10893:1 10895:1 10904:2 10957:1 10989:1 11001:1 11012:7 11019:1 11021:1 11048:2 11061:1 11077:1 11079:1 11082:2 11120:1 11172:1 11254:1 11284:2 11287:1 11289:4 11295:2 11311:1 11315:1 11317:1 11331:1 11340:1 11348:1 11372:2 11400:1 11402:1 11418:3 11427:1 11430:1 11460:1 11469:1 11473:1 11496:1 11501:1 11515:1 11536:1 11550:1 11553:1 11559:1 11560:1 11599:1 11608:1 11609:2 11692:2 11705:1 11706:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:2 11780:1 11797:1 11807:5 11845:1 11874:2 11881:1 11882:1 11888:1 11895:1 11909:2 11922:1 11954:1 11966:1 11969:1 11976:1 11982:1 11987:2 11992:1 12002:4 12045:1 12050:1 12055:1 12064:1 12067:2 12069:1 12070:1 12074:2 12081:1 12089:3 12121:1 12125:2 12136:1 12144:1 12149:2 12156:1 12168:1 12201:1 12208:1 12209:1 12264:2 12268:1 12269:1 12279:1 12282:1 12301:1 12331:1 12339:1 12341:1 12356:1 12365:1 12374:1 12396:1 12461:1 12478:1 12479:6 12504:1 12507:1 12508:1 12522:3 12529:2 12535:1 12540:2 12543:2 12546:1 12565:1 12583:2 12598:1 12605:1 12610:1 12623:4 12656:1 12676:2 12683:1 12721:1 12726:2 12773:1 12791:1 12808:1 12812:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13001:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13145:1 13163:1 13174:3 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13411:1 13416:1 13481:1 13482:1 13492:2 13494:3 13498:2 13514:1 13520:1 13522:1 13539:1 13543:3 13551:1 13582:2 13619:1 13645:1 13647:1 13656:2 13658:1 13665:1 13681:2 13708:3 13720:1 13727:2 13752:1 13783:1 13792:1 13804:1 13843:1 13852:1 13876:1 13886:1 13930:1 13962:1 13969:4 13984:1 14008:1 14013:1 14016:2 14020:7 14021:1 14022:1 14038:2 14040:1 14062:2 14083:2 14100:1 14101:1 14111:2 14115:1 14138:1 14145:1 14151:3 14158:2 14165:1 14166:4 14170:1 14174:1 14222:1 14223:1 14234:1 14252:1 14262:2 14273:2 14275:1 14282:1 14300:6 14305:1 14321:3 14334:1 14340:2 14341:1 14347:1 14360:1 14368:1 14376:2 14384:1 14385:1 14414:1 14431:1 14456:1 14458:1 14490:1 14491:2 14492:1 14494:1 14495:4 14527:1 14535:1 14553:2 14562:1 14612:1 14661:1 14663:1 14678:1 14679:2 14682:1 14686:1 14704:2 14712:1 14716:1 14729:1 14735:1 14767:1 14769:1 14777:1 14797:1 14808:1 14833:1 14836:2 14844:1 14852:1 14863:2 14870:2 14873:1 14881:1 14884:1 14899:1 14918:4 14933:1 14945:1 14951:1 14959:4 15016:1 15032:1 15055:1 15065:1 15067:1 15070:1 15090:1 15092:2 15121:1 15137:1 15142:4 15146:1 15149:1 15156:1 15178:1 15218:1 15232:1 15240:3 15253:1 15254:1 15267:1 15269:2 15271:1 15279:1 15310:1 15385:1 15393:1 15410:1 15411:2 15416:3 15423:2 15432:1 15435:1 15439:1 15456:1 15490:1 15498:1 15503:2 15537:1 15560:1 15577:1 15588:1 15603:2 15615:1 15628:1 15652:1 15675:1 15682:1 15706:1 15708:2 15710:1 15717:1 15725:1 15726:1 15728:2 15730:1 15741:1 15767:1 15807:2 15820:1 15823:1 15831:1 15892:1 15911:1 15920:1 15931:2 15968:1 15981:1 15993:1 16010:1 16034:1 16048:1 16078:4 16085:1 16089:1 16091:1 16094:1 16097:3 16104:1 16110:1 16117:2 16118:1 16121:1 16129:3 16138:1 16145:2 16158:4 16166:1 16180:1 16183:2 16210:1 16224:1 16234:2 16259:2 16304:2 16315:1 16325:1 16344:1 16363:1 16389:1 16391:3 16421:2 16455:1 16458:1 16479:1 16480:1 16481:1 16492:1 16505:1 16508:2 16509:1 16515:1 16518:1 16519:1 16552:3 16559:1 16570:2 16620:1 16656:1 16659:1 16673:2 16680:1 16682:2 16695:1 16697:1 16715:1 16738:1 16763:1 16780:1 16798:1 16800:2 16805:2 16821:1 16852:1 16884:1 16885:1 16900:2 16919:4 16930:1 16948:1 16969:1 16981:1 17008:1 17026:1 17035:3 17048:1 17067:1 17069:1 17083:1 17088:1 17110:1 17112:2 17187:1 17254:1 17270:1 17293:2 17305:1 17319:1 17351:1 17355:1 17357:1 17368:1 17370:1 17384:1 17441:1 17449:1 17478:1 17481:1 17509:1 17544:2 17560:1 17570:1 17572:1 17597:1 17615:1 17627:1 17637:1 17647:1 17663:1 17666:1 17673:1 17727:1 17730:1 17734:3 17763:1 17774:3 17866:2 17887:1 17889:1 17894:1 17897:1 17900:1 17917:1 17946:1 17948:2 17957:1 17962:1 17965:1 17983:1 17986:1 18010:2 18048:4 18073:1 18103:1 18120:1 18127:1 18141:1 18147:1 18150:1 18151:1 18166:1 18174:1 18196:1 18199:1 18213:1 18221:2 18226:1 18235:1 18242:1 18244:2 18251:1 18274:1 18286:2 18288:1 18290:1 18295:1 18297:1 18314:1 18318:1 18323:1 18329:1 18330:1 18342:2 18343:2 18345:1 18348:1 18359:1 18364:1 18369:2 18371:1 18372:1 18389:1 18392:1 18393:1 18394:1 18400:1 18422:1 18441:1 18447:1 18448:1 18460:1 18484:2 18492:1 18503:1 18517:1 18556:2 18563:1 18582:1 18600:3 18613:2 18629:1 18631:1 18668:2 18675:1 18692:1 18695:1 18697:3 18736:1 18754:2 18759:1 18787:1 18789:1 18805:4 18836:3 18862:1 18965:1 18971:1 18975:6 18988:1 18990:1 18998:1 19000:1 19007:1 19011:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:1 19118:1 19123:1 19157:1 19164:1 19184:1 19201:1 19208:1 19214:2079 19221:1 19243:1 19260:1 19269:1 19270:1 19279:1 19282:1 19293:1 19416:1 19441:1 19443:1 19524:1 19543:1 19566:1 19581:1 19590:1 19651:1 19720:1 19734:2 19757:1 19766:1 19778:1 19792:1 19821:2 19837:1 19843:1 19845:4 19863:1 19892:1 19921:1 19924:1 19947:2 19959:1 19970:1 19979:1 19997:1 20016:8 20018:1 20074:1 20108:1 20126:3 20135:1 20151:1 20166:4 20197:1 20202:2 20223:1 20233:2 20247:1 20252:2 20267:2 20276:2 20282:1 20286:1 20290:1 20307:1 20321:2 20325:1 20327:1 20329:1 20340:1 20341:2 20359:1 20387:1 20405:1 20407:3 20412:1 20413:1 20430:1 20483:1 20504:1 20524:2 20528:2 20596:4 20605:1 20639:1 20660:3 20667:3 20672:1 20674:1 20677:1 20701:2 20704:1 20709:1 20740:2 20742:1 20749:1 20752:1 20757:1 20760:1 20761:1 20769:1 20793:1 20799:1 20808:1 20810:1 20815:2 20829:2 20832:1 20848:1 20864:1 20873:1 20954:1 20957:2 20961:1 20964:1 21001:2 21004:2 21012:1 21028:1 21030:1 21036:1 21037:1 21053:1 21133:1 21164:2 21202:1 21231:1 21235:1 21239:1 21251:1 21253:1 21264:1 21282:1 21286:1 21289:1 21295:1 21328:2 21345:1 21360:2 21366:1 21367:1 21372:1 21373:1 21386:2 21387:1 21404:2 21411:2 21414:2 21471:1 21474:1 21489:1 21508:1 21519:1 21520:1 21545:1 21555:1 21563:2 21637:1 21674:1 21680:1 21724:2 21763:1 21790:2 21823:1 21828:1 21842:1 21845:2 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21946:1 21951:1 21956:1 21958:1 21971:1 21988:1 21992:1 22003:1 22104:1 22136:2 22139:1 22161:3 22169:1 22171:1 22178:1 22182:1 22191:6 22192:1 22206:3 22218:1 22241:1 22242:2 22246:1 22247:1 22250:1 22252:1 22302:2 22323:1 22335:1 22342:1 22347:3 22352:1 22364:1 22369:1 22374:1 22387:1 22388:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22454:1 22484:1 22487:2 22506:1 22520:1 22531:1 22532:1 22533:1 22558:1 22565:1 22576:2 22577:1 22598:2 22604:2 22616:1 22623:1 22640:1 22669:1 22676:1 22700:2 22706:1 22715:1 22722:1 22727:1 22733:1 22738:1 22757:1 22774:1 22777:3 22791:2 22800:1 22802:2 22804:2 22807:2 22813:1 22820:1 22826:1 22833:1 22850:1 22854:1 22864:1 22883:1 22888:2 22926:2 22939:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23037:1 23064:1 23080:1 23089:1 23090:1 23106:1 23109:2 23117:1 23129:1 23133:1 23140:1 23162:1 23166:1 23173:1 23181:1 23182:1 23185:1 23199:2 23211:1 23313:6 23317:1 23319:1 23320:1 23326:1 23332:1 23334:1 23335:1 23367:1 23384:1 23401:2 23444:2 23466:2 23476:1 23480:1 23482:1 23492:1 23534:2 23559:1 23593:2 23610:5 23630:1 23632:3 23635:1 23694:1 23749:1 23767:1 23794:1 23807:2 23813:1 23819:1 23822:1 23830:2 23833:1 23836:2 23858:2 23874:1 23875:1 23882:1 23893:1 23897:2 23937:2 23959:1 23967:2 23992:1 24019:1 24025:1 24044:1 24049:1 24058:1 24062:1 24066:3 24071:2 24090:1 24093:1 24109:1 24115:2 24160:2 24190:1 24224:1 24236:2 24243:1 24257:1 24289:1 24294:1 24300:1 24332:1 24350:1 24389:1 24394:1 24419:1 24478:3 24480:1 24483:1 24489:1 24519:1 24534:2 24573:1 24586:2 24588:1 24615:3 24624:1 24643:1 24653:1 24665:1 24667:1 24677:1 24679:1 24682:3 24686:1 24722:1 24733:1 24767:1 24775:2 24783:1 24831:1 24843:2 24848:4 24852:1 24855:2 24874:1 24888:6 24927:1 24947:1 24962:1 24982:1 24988:1 24993:1 24995:1 25006:1 25010:1 25011:2 25020:1 25024:1 25042:1 25053:1 25056:1 25057:1 25074:1 25088:1 25092:1 25095:1 25113:1 25114:1 25116:1 25120:1 25122:1 25130:1 25134:3 25137:1 25140:1 25154:1 25156:1 25171:1 25253:2 25261:1 25289:1 25292:1 25299:1 25321:1 25403:1 25423:1 25506:2 25532:1 25534:1 25538:3 25543:1 25579:4 25592:2 25602:1 25613:2 25641:1 25643:1 25654:1 25660:1 25678:1 25706:1 25715:1 25736:1 25748:1 25749:1 25796:1 25799:3 25807:2 25812:2 25826:1 25827:1 25832:1 25834:1 25843:2 25844:1 25848:2 25861:3 25862:1 25879:1 25893:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 25968:1 26008:1 26009:3 26041:1 26054:1 26064:1 26081:1 26129:1 26131:1 26142:1 26145:1 26170:1 26198:1 26208:1 26230:1 26263:1 26276:1 26279:1 26282:4 26286:1 26323:1 26345:2 26350:1 26356:1 26382:1 26387:1 26415:1 26437:1 26444:2 26446:1 26450:1 26454:1 26456:1 26463:1 26475:2 26501:1 26529:3 26540:1 26564:2 26582:1 26605:6 26646:1 26652:2 26668:1 26684:1 26688:1 26736:2 26751:1 26755:1 26757:1 26783:1 26790:1 26824:1 26855:1 26877:1 26878:1 26885:1 26887:1 26894:1 26932:4 26948:3 26953:1 26956:1 26980:1 26987:1 27007:1 27011:1 27017:1 27032:1 27057:1 27082:2 27088:2 27113:1 27125:1 27151:1 27161:1 27185:2 27191:1 27245:1 27281:2 27308:2 27310:2 27324:1 27370:1 27380:1 27383:1 27398:1 27406:1 27425:1 27432:1 27474:1 27483:3 27493:1 27499:1 27505:2 27528:1 27559:1 27580:1 27582:1 27586:2 27647:1 27650:1 27653:1 27676:1 27687:3 27697:1 27713:1 27714:1 27732:1 27763:2 27766:1 27770:1 27775:1 27777:1 27778:1 27783:2 27790:1 27812:4 27815:1 27816:1 27821:3 27822:1 27827:1 27828:1 27830:1 27833:1 27836:2 27841:1 27849:1 27858:1 27882:2 27898:1 27915:4 27923:1 27927:1 27929:2 27930:1 27951:1 27962:1 27972:1 28049:2 28075:1 28085:1 28097:2 28100:2 28101:1 28116:2 28184:1 28190:1 28227:1 28232:1 28243:1 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28407:1 28411:1 28428:1 28429:1 28437:1 28442:3 28455:1 28467:1 28471:1 28481:1 28489:1 28502:2 28516:10 28524:1 28539:1 28549:5 28569:6 28573:1 28599:1 28618:1 28625:1 28648:1 28656:3 28659:1 28661:1 28678:2 28684:5 28715:1 28720:8 28727:1 28730:1 28733:1 28738:2 28755:1 28756:1 28789:1 28798:1 28801:2 28814:1 28826:1 28838:1 28857:1 28858:1 28860:1 28913:2 28920:1 28929:1 28942:1 28953:1 28957:1 28983:1 28994:1 28998:1 28999:1 29036:1 29042:1 29050:1 29060:1 29062:2 29067:2 29073:1 29086:1 29103:1 29107:1 29130:2 29150:1 29164:1 29167:1 29187:1 29214:1 29229:1 29243:1 29249:2 29294:1 29297:2 29306:1 29318:1 29341:1 29347:1 29369:1 29380:1 29390:2 29463:1 29471:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:5 29586:1 29591:2 29603:1 29606:1 29616:1 29626:2 29645:1 29667:2 29685:3 29732:2 29740:1 29752:2 29759:3 29766:1 29768:2 29802:1 29816:1 29822:4 29831:1 29854:1 29874:1 29883:1 29885:2
12 2:1 37:1 39:1 40:1 51:1 65:2 110:4 120:1 137:1 179:1 211:1 230:2 235:1 239:2 247:1 313:1 323:1 325:1 343:1 363:4 398:2 405:3 417:2 418:1 424:1 448:1 451:3 455:1 461:1 473:2 490:1 559:1 565:1 581:1 592:1 622:3 628:1 650:1 666:1 686:1 711:1 713:1 722:2 724:2 768:1 780:1 832:1 835:1 837:1 861:1 905:5 910:1 914:1 923:1 928:4 933:1 944:2 947:2 957:1 976:2 982:2 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1046:1 1054:1 1083:1 1092:1 1099:1 1101:1 1105:1 1118:1 1129:1 1153:1 1163:1 1173:1 1187:1 1208:1 1209:1 1220:2 1221:1 1229:3 1235:1 1245:1 1247:1 1258:2 1293:2 1303:1 1318:1 1322:1 1342:2 1353:3 1384:1 1422:5 1465:1 1467:1 1468:3 1470:1 1473:5 1474:1 1475:1 1493:1 1496:1 1517:1 1531:1 1536:1 1557:1 1558:2 1561:1 1571:1 1577:1 1580:1 1586:1 1593:2 1599:1 1669:2 1671:2 1703:2 1707:1 1716:4 1727:2 1737:2 1738:1 1779:2 1785:1 1812:1 1827:1 1830:1 1845:1 1856:1 1860:2 1865:1 1869:3 1876:1 1880:1 1895:2 1898:1 1900:1 1907:1 1920:1 1929:2 1935:1 1940:1 1950:2 1969:1 1976:1 2005:1 2037:1 2039:3 2041:1 2066:1 2081:1 2084:2 2115:1 2122:1 2134:1 2162:3 2212:1 2239:5 2250:2 2252:1 2261:1 2263:2 2274:1 2287:1 2295:2 2296:2 2297:2 2299:1 2301:4 2302:2 2304:2 2307:2 2308:2 2312:1 2314:1 2316:2 2318:1 2323:1 2324:5 2325:1 2328:1 2331:1 2335:1 2338:2 2370:1 2394:5 2403:2 2405:1 2419:1 2432:1 2440:1 2478:2 2483:1 2527:1 2528:1 2534:1 2562:1 2573:1 2589:2 2601:1 2604:4 2623:1 2627:1 2656:1 2657:1 2665:1 2670:1 2731:1 2755:1 2759:1 2787:4 2795:1 2802:1 2824:1 2826:1 2848:2 2860:4 2871:2 2911:1 2921:1 2930:1 2941:1 2956:5 2962:1 2967:1 3017:1 3033:1 3037:1 3040:1 3049:1 3052:2 3060:1 3075:1 3081:1 3088:1 3095:1 3096:1 3111:1 3121:1 3128:1 3141:1 3172:1 3175:1 3189:1 3204:1 3207:1 3208:3 3261:1 3272:1 3286:1 3287:1 3295:1 3302:1 3317:1 3324:1 3335:1 3340:2 3361:1 3376:1 3388:2 3402:8 3411:1 3418:1 3472:1 3479:1 3500:1 3507:1 3532:1 3534:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3644:1 3671:1 3679:1 3683:1 3689:1 3698:1 3710:1 3713:1 3717:1 3728:1 3746:1 3757:4 3763:1 3766:1 3769:1 3773:1 3780:1 3784:1 3787:1 3829:4 3858:2 3877:1 3886:1 3896:1 3901:3 3905:1 3923:1 3941:1 3942:1 3960:1 4004:1 4010:3 4013:1 4024:1 4031:1 4042:3 4047:1 4076:1 4078:1 4090:1 4113:1 4122:1 4132:1 4136:2 4140:3 4153:1 4186:1 4209:1 4238:2 4292:1 4298:1 4321:5 4329:3 4335:1 4344:1 4369:1 4390:5 4393:1 4396:1 4416:1 4421:1 4428:1 4454:1 4471:2 4480:2 4504:1 4509:1 4563:1 4593:1 4607:1 4608:1 4609:1 4630:1 4642:2 4667:1 4670:1 4675:2 4689:1 4691:2 4744:1 4775:2 4789:1 4801:1 4806:1 4812:1 4814:1 4825:1 4844:3 4876:1 4877:1 4905:1 4910:1 4911:1 5010:1 5028:10 5031:2 5043:1 5048:1 5056:2 5067:1 5099:1 5138:6 5153:3 5154:2 5156:1 5160:1 5161:1 5164:1 5166:1 5168:1 5169:2 5175:3 5181:1 5183:2 5185:2 5186:2 5209:1 5217:1 5221:1 5253:3 5268:1 5273:1 5289:1 5376:2 5385:1 5389:1 5436:1 5455:1 5457:1 5469:1 5483:3 5487:1 5498:3 5522:1 5532:6 5579:8 5614:1 5644:1 5682:2 5752:1 5765:1 5779:1 5788:2 5805:1 5816:1 5824:1 5829:1 5845:1 5848:1 5854:1 5873:1 5890:1 5904:1 5922:1 5943:1 5944:3 5949:1 5950:1 5952:2 5953:1 5959:1 5960:1 5968:1 5982:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:2 6282:7 6303:1 6305:1 6311:1 6312:1 6316:2 6319:1 6334:1 6388:1 6392:3 6428:1 6430:1 6440:2 6458:1 6487:1 6519:3 6526:1 6530:1 6537:1 6585:2 6602:4 6605:2 6609:2 6612:3 6613:1 6620:1 6621:1 6622:1 6628:1 6629:3 6630:9 6632:1 6633:2 6650:1 6673:1 6683:2 6729:1 6752:1 6770:2 6780:1 6785:2 6827:1 6856:2 6860:1 6869:1 6914:1 6927:1 6939:1 6949:1 6962:2 6969:1 6974:1 6980:1 7001:1 7046:1 7049:1 7052:1 7055:1 7071:2 7089:1 7097:4 7123:1 7127:1 7129:1 7131:1 7134:1 7168:1 7169:1 7204:1 7208:1 7237:1 7270:1 7293:1 7294:1 7306:1 7319:1 7331:1 7404:6 7407:2 7417:1 7432:1 7463:2 7501:1 7509:2 7515:1 7519:1 7520:2 7537:1 7553:1 7616:1 7682:1 7706:3 7721:2 7723:1 7747:4 7753:2 7762:4 7801:1 7817:1 7829:1 7831:1 7833:1 7870:2 7883:1 7911:2 7914:1 7915:1 7917:1 7952:8 7954:6 7960:1 7968:1 7970:1 7971:1 7975:2 7979:1 7987:1 8011:2 8029:32 8043:6 8044:1 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8113:1 8142:2 8164:1 8198:2 8212:1 8221:2 8237:1 8240:1 8248:1 8298:1 8303:1 8338:1 8354:2 8403:1 8407:1 8408:1 8422:1 8429:1 8490:2 8500:1 8509:1 8513:6 8523:1 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8652:1 8658:1 8659:1 8666:1 8682:1 8688:1 8729:1 8735:1 8754:2 8761:1 8773:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:3 8885:2 8887:1 8892:1 8896:1 8899:1 8900:1 8901:1 8927:1 8940:1 8945:3 8961:1 8964:1 8979:1 8990:1 8992:2 8997:1 9016:1 9018:2 9023:1 9030:1 9033:1 9054:1 9067:1 9148:1 9169:1 9200:2 9209:1 9212:1 9227:1 9255:1 9308:1 9312:1 9313:1 9324:2 9351:1 9372:1 9380:1 9399:1 9400:2 9405:1 9417:1 9426:1 9430:1 9434:1 9441:1 9458:1 9480:4 9481:1 9491:1 9510:1 9517:2 9518:1 9521:1 9523:1 9536:1 9539:2 9544:1 9552:1 9563:1 9565:3 9567:3 9570:1 9572:1 9594:1 9607:1 9610:1 9613:2 9627:1 9635:1 9636:1 9637:2 9642:1 9647:1 9654:1 9657:2 9681:1 9694:1 9702:1 9704:1 9707:1 9717:1 9725:1 9741:1 9765:7 9778:1 9794:2 9798:1 9799:2 9816:1 9820:1 9832:3 9844:1 9845:1 9857:1 9862:2 9881:1 9884:2 9893:1 9904:2 9925:1 9950:1 9957:1 9961:1 9962:3 9966:1 9971:1 9997:6 10018:3 10024:1 10026:1 10031:1 10060:1 10132:1 10175:4 10198:1 10217:1 10233:1 10234:4 10235:1 10239:1 10246:1 10247:1 10270:1 10283:1 10288:3 10302:1 10372:1 10379:4 10380:1 10381:2 10383:1 10393:1 10409:1 10427:1 10439:1 10444:1 10502:1 10517:1 10519:1 10544:1 10549:1 10572:1 10576:1 10577:1 10622:1 10623:1 10629:1 10652:2 10659:2 10672:1 10687:1 10757:1 10761:3 10762:1 10811:1 10816:3 10847:1 10853:1 10869:2 10871:2 10884:1 10889:1 10891:4 10893:1 10895:1 10904:2 10957:1 10989:1 11001:1 11012:7 11019:1 11021:1 11048:2 11061:1 11077:1 11079:1 11082:2 11120:1 11172:1 11254:1 11284:2 11287:1 11289:5 11295:2 11311:1 11315:1 11317:1 11331:1 11340:2 11348:1 11372:2 11400:1 11402:1 11418:3 11427:1 11430:2 11460:1 11469:1 11473:1 11496:1 11501:1 11515:1 11536:1 11550:1 11553:1 11559:1 11560:1 11599:1 11608:1 11609:2 11692:2 11705:1 11706:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:2 11780:1 11797:1 11807:5 11845:1 11874:2 11881:1 11882:1 11888:1 11895:1 11909:2 11922:1 11954:1 11966:2 11969:1 11976:1 11982:1 11987:2 11992:1 12002:4 12045:2 12050:1 12055:1 12064:1 12065:1 12067:2 12069:1 12070:1 12074:2 12081:1 12089:3 12121:1 12125:2 12136:1 12144:1 12149:2 12156:1 12168:2 12201:1 12208:1 12209:1 12264:2 12268:1 12269:1 12279:1 12282:1 12301:1 12321:1 12331:1 12339:1 12341:1 12356:1 12365:1 12374:1 12396:1 12461:1 12478:1 12479:6 12504:1 12507:1 12508:1 12522:3 12529:2 12535:1 12540:2 12543:2 12546:1 12565:1 12583:2 12598:1 12605:1 12610:1 12623:4 12656:1 12676:2 12683:1 12721:1 12723:1 12726:2 12737:1 12773:1 12791:1 12808:1 12812:1 12815:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13001:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13145:1 13163:1 13174:3 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13411:1 13416:1 13481:1 13482:1 13492:2 13494:3 13498:2 13514:1 13520:1 13522:1 13539:1 13543:3 13551:1 13582:2 13619:1 13645:1 13647:1 13656:2 13658:1 13665:1 13681:2 13708:3 13720:1 13727:2 13752:1 13783:1 13792:1 13804:1 13843:1 13852:1 13876:1 13886:1 13930:1 13962:1 13969:4 13984:1 14008:1 14013:1 14016:2 14020:7 14021:1 14022:1 14038:2 14040:1 14062:2 14083:2 14100:1 14101:1 14111:2 14115:1 14138:1 14145:1 14151:3 14158:2 14161:1 14165:1 14166:4 14170:2 14174:1 14222:1 14223:1 14234:1 14252:1 14262:2 14273:2 14275:1 14282:1 14300:6 14305:1 14321:3 14334:1 14340:2 14341:1 14347:1 14360:1 14368:1 14376:2 14384:1 14385:1 14414:1 14431:1 14456:1 14458:1 14490:1 14491:2 14492:1 14494:1 14495:4 14527:1 14535:1 14553:2 14562:1 14612:1 14661:1 14663:1 14678:1 14679:2 14682:1 14686:1 14704:2 14712:1 14716:1 14729:1 14735:1 14767:1 14769:1 14777:1 14797:1 14808:1 14833:1 14836:2 14844:1 14852:1 14863:2 14870:2 14873:2 14881:1 14884:1 14899:1 14918:4 14933:1 14945:1 14951:1 14959:4 14965:1 15016:1 15032:1 15055:1 15065:1 15067:1 15070:1 15090:1 15092:2 15121:1 15137:1 15142:4 15146:1 15149:1 15156:1 15178:1 15218:1 15232:1 15240:3 15253:1 15254:1 15267:1 15269:2 15271:1 15279:1 15310:1 15385:1 15393:1 15410:1 15411:2 15416:3 15423:2 15432:1 15435:1 15439:1 15456:1 15490:1 15498:1 15503:2 15537:1 15560:1 15577:1 15588:1 15603:2 15615:1 15628:1 15652:1 15675:1 15682:1 15706:1 15708:2 15710:1 15717:1 15725:1 15726:2 15728:2 15730:1 15741:1 15767:1 15807:2 15820:1 15823:1 15831:1 15892:1 15911:1 15920:1 15931:2 15968:1 15981:1 15993:1 16010:1 16034:1 16040:1 16048:1 16078:4 16085:1 16089:1 16091:1 16094:1 16097:3 16104:1 16110:1 16117:2 16118:1 16121:1 16129:3 16138:1 16145:2 16158:4 16166:1 16180:1 16183:2 16210:1 16224:1 16234:2 16254:1 16259:2 16304:2 16315:1 16325:1 16344:1 16363:1 16389:1 16391:3 16421:2 16455:1 16458:1 16479:1 16480:1 16481:1 16492:2 16505:1 16508:3 16509:1 16515:1 16518:1 16519:1 16552:3 16559:1 16570:2 16620:1 16622:1 16656:1 16659:1 16673:3 16680:1 16682:2 16684:1 16695:1 16697:1 16715:1 16738:1 16763:1 16780:1 16798:1 16800:2 16805:2 16821:1 16852:1 16884:1 16885:1 16900:2 16919:4 16930:1 16948:1 16952:1 16969:1 16981:1 17008:1 17026:1 17035:3 17048:1 17067:1 17069:1 17083:1 17088:1 17110:1 17112:2 17187:1 17254:1 17270:1 17293:2 17305:1 17319:1 17351:1 17355:1 17357:1 17368:1 17370:1 17384:1 17441:1 17449:1 17478:1 17481:1 17509:1 17544:2 17560:1 17570:1 17572:1 17597:1 17615:1 17627:1 17637:2 17647:1 17663:1 17666:1 17673:1 17727:1 17730:1 17734:3 17763:1 17774:3 17866:2 17887:1 17889:1 17894:1 17897:1 17900:1 17917:1 17946:1 17948:2 17957:1 17962:1 17965:1 17983:1 17986:1 18010:2 18048:4 18073:1 18102:1 18103:1 18120:1 18127:1 18137:1 18141:1 18147:1 18150:1 18151:1 18166:1 18174:1 18196:1 18199:1 18213:1 18221:2 18226:1 18235:1 18242:1 18244:2 18251:1 18274:1 18286:3 18288:1 18290:1 18295:1 18297:1 18314:1 18318:1 18323:1 18329:1 18330:1 18342:2 18343:2 18345:1 18348:1 18359:1 18364:1 18369:2 18371:1 18372:1 18389:1 18392:1 18393:1 18394:1 18400:1 18422:1 18441:1 18447:1 18448:1 18460:1 18484:2 18492:1 18503:1 18517:1 18556:2 18563:1 18582:1 18600:3 18613:2 18629:1 18631:1 18668:2 18675:1 18692:1 18695:1 18697:3 18736:1 18754:2 18759:1 18787:1 18789:1 18805:4 18836:3 18853:1 18862:1 18965:1 18971:1 18975:6 18988:1 18990:1 18998:1 19000:1 19007:1 19011:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:2 19118:1 19123:1 19157:1 19164:1 19184:1 19201:1 19208:1 19214:2178 19221:1 19243:1 19260:1 19266:1 19269:1 19270:1 19279:1 19282:1 19293:1 19416:1 19441:1 19443:1 19524:1 19543:1 19547:1 19566:1 19581:1 19590:1 19651:1 19720:1 19734:2 19757:1 19766:1 19778:1 19792:1 19821:2 19837:1 19843:1 19845:4 19863:1 19892:1 19921:1 19924:1 19947:2 19959:1 19970:1 19979:1 19997:1 20016:8 20018:1 20074:1 20108:1 20126:3 20135:1 20151:1 20166:4 20197:1 20202:2 20218:1 20223:1 20233:2 20247:1 20252:2 20267:2 20276:2 20282:1 20286:2 20290:1 20307:1 20321:2 20325:1 20327:1 20329:1 20340:1 20341:2 20359:1 20387:1 20405:1 20407:3 20412:1 20413:1 20430:1 20483:1 20504:1 20524:2 20528:2 20596:4 20605:1 20639:1 20660:3 20667:3 20672:1 20674:1 20677:1 20701:2 20704:1 20709:1 20740:2 20742:1 20749:1 20752:1 20757:1 20760:1 20761:1 20769:1 20793:1 20799:1 20808:1 20810:1 20815:2 20829:2 20832:1 20848:1 20849:1 20864:1 20873:1 20954:1 20957:2 20961:1 20964:1 21001:3 21004:2 21012:1 21028:1 21030:1 21036:1 21037:1 21053:1 21133:1 21164:2 21202:1 21231:1 21235:1 21239:1 21251:1 21253:1 21264:1 21282:1 21286:1 21289:1 21295:1 21328:2 21345:1 21360:2 21366:1 21367:1 21372:1 21373:1 21386:2 21387:1 21404:2 21411:2 21414:2 21471:1 21474:1 21489:1 21508:1 21519:1 21520:1 21545:1 21555:1 21563:2 21637:1 21674:1 21680:1 21724:2 21763:1 21790:2 21823:1 21828:1 21842:1 21845:2 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21946:1 21951:1 21956:1 21958:1 21971:1 21988:1 21992:1 22003:1 22020:1 22104:1 22136:2 22139:1 22161:3 22169:1 22171:1 22178:1 22182:1 22191:6 22192:1 22206:3 22218:1 22241:1 22242:2 22246:1 22247:1 22250:1 22252:1 22302:2 22323:1 22335:1 22342:1 22347:3 22352:1 22364:1 22369:1 22374:1 22387:1 22388:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22438:1 22454:1 22484:1 22487:2 22506:1 22520:1 22531:1 22532:1 22533:1 22558:1 22565:1 22576:2 22577:1 22598:2 22604:2 22616:1 22623:2 22640:1 22669:1 22676:1 22700:2 22706:1 22715:1 22722:1 22727:1 22733:1 22738:1 22757:1 22774:1 22777:3 22791:2 22798:1 22800:1 22802:2 22804:2 22807:2 22813:1 22820:1 22826:1 22833:1 22850:1 22854:1 22864:1 22883:1 22888:2 22926:2 22939:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23037:1 23064:1 23080:1 23089:1 23090:1 23106:1 23109:2 23117:1 23129:1 23133:1 23140:1 23162:1 23166:1 23173:1 23181:1 23182:1 23185:1 23199:2 23211:1 23313:6 23317:1 23319:1 23320:1 23326:1 23332:1 23334:1 23335:1 23367:1 23384:1 23401:2 23444:2 23466:2 23476:1 23480:1 23482:1 23492:1 23534:2 23559:1 23593:2 23610:5 23630:1 23632:3 23635:1 23694:1 23749:1 23767:1 23794:1 23807:3 23813:1 23819:1 23822:1 23830:2 23833:1 23836:2 23858:2 23874:1 23875:1 23882:1 23893:1 23897:2 23937:2 23959:1 23967:3 23976:1 23992:1 24019:1 24025:1 24044:1 24049:1 24058:1 24062:1 24066:3 24071:2 24090:1 24093:1 24109:1 24115:2 24125:1 24160:2 24190:1 24224:1 24236:2 24243:1 24257:1 24289:1 24294:1 24300:1 24332:1 24350:1 24389:2 24394:1 24419:1 24450:1 24478:3 24480:1 24482:1 24483:1 24489:1 24519:1 24534:2 24568:1 24573:1 24586:2 24588:1 24615:3 24624:1 24643:1 24653:1 24665:1 24667:1 24677:1 24679:1 24682:3 24686:1 24722:2 24733:1 24767:1 24775:2 24783:1 24831:1 24843:2 24848:4 24852:1 24855:2 24874:1 24888:6 24927:1 24947:1 24962:1 24982:1 24988:1 24993:1 24995:1 25006:1 25010:1 25011:2 25020:1 25024:1 25042:1 25053:1 25056:1 25057:1 25074:1 25088:1 25092:1 25095:1 25113:1 25114:1 25116:1 25120:1 25122:1 25130:1 25134:3 25137:1 25140:1 25154:1 25156:1 25171:1 25253:2 25261:1 25289:1 25292:1 25299:1 25321:1 25403:1 25423:1 25506:2 25532:1 25534:1 25538:3 25543:1 25553:1 25579:4 25592:2 25602:1 25613:2 25641:1 25643:1 25654:1 25660:1 25678:1 25706:1 25715:1 25736:1 25748:1 25749:1 25770:1 25796:1 25799:3 25806:1 25807:2 25812:2 25826:1 25827:1 25832:1 25834:1 25843:2 25844:1 25848:2 25861:3 25862:1 25876:1 25879:1 25893:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 25968:1 26008:1 26009:3 26041:1 26054:1 26064:1 26081:1 26129:1 26131:1 26142:1 26145:1 26148:1 26170:1 26198:1 26208:1 26230:1 26263:1 26276:1 26279:1 26282:4 26286:1 26323:1 26345:2 26350:1 26356:1 26382:1 26387:1 26415:1 26437:1 26444:2 26446:1 26450:1 26451:1 26454:1 26456:1 26463:1 26475:2 26501:1 26529:3 26540:1 26564:2 26582:1 26605:6 26646:1 26652:2 26668:1 26684:1 26688:1 26722:1 26736:2 26751:1 26755:1 26757:1 26783:1 26790:1 26824:1 26855:1 26877:1 26878:1 26885:1 26887:1 26894:1 26932:4 26948:3 26953:1 26956:1 26980:1 26987:1 27007:1 27011:1 27017:1 27032:1 27057:1 27082:2 27088:2 27113:1 27120:1 27125:1 27151:1 27161:1 27185:2 27191:1 27245:1 27281:2 27307:1 27308:2 27310:3 27324:1 27370:1 27380:1 27383:1 27398:1 27406:1 27425:1 27432:1 27458:1 27474:1 27483:3 27493:1 27499:1 27505:2 27528:1 27559:1 27565:1 27580:1 27582:1 27586:2 27647:1 27650:1 27653:1 27676:1 27687:3 27697:1 27713:1 27714:1 27732:1 27763:2 27766:1 27770:1 27775:1 27777:1 27778:1 27783:2 27790:1 27812:4 27815:1 27816:1 27821:3 27822:1 27827:1 27828:1 27830:1 27833:1 27836:2 27841:1 27849:1 27858:1 27882:2 27898:1 27915:4 27923:1 27927:1 27929:2 27930:1 27951:1 27962:1 27972:1 28049:2 28059:1 28075:1 28085:1 28097:2 28100:2 28101:1 28116:2 28184:1 28190:1 28227:1 28232:1 28243:1 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28407:2 28411:1 28428:1 28429:1 28437:1 28442:3 28455:1 28467:1 28471:1 28481:1 28489:1 28502:2 28516:10 28524:1 28539:1 28549:5 28569:6 28573:1 28599:1 28618:1 28625:1 28648:1 28656:3 28659:1 28661:1 28678:2 28684:5 28715:1 28720:9 28727:1 28730:1 28733:1 28738:2 28755:1 28756:1 28789:1 28798:1 28801:2 28814:1 28826:1 28838:1 28857:1 28858:1 28860:1 28913:2 28920:1 28921:1 28929:1 28942:1 28953:1 28957:1 28983:1 28994:2 28998:1 28999:1 29036:1 29042:1 29050:1 29060:1 29062:2 29067:2 29073:1 29086:1 29103:1 29107:1 29130:2 29150:1 29164:1 29167:1 29187:1 29214:1 29229:1 29243:1 29249:2 29294:1 29297:2 29306:1 29318:1 29341:1 29347:1 29369:1 29380:1 29390:2 29400:1 29463:1 29471:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:5 29586:1 29591:2 29603:1 29606:1 29616:1 29626:2 29645:1 29667:2 29685:3 29732:2 29740:1 29752:2 29759:3 29766:2 29768:2 29802:1 29816:1 29822:4 29831:1 29854:1 29874:1 29883:1 29885:2
12 2:1 37:1 39:1 40:1 51:1 65:2 110:4 120:1 137:1 179:1 211:1 230:2 235:1 239:2 247:1 313:1 323:1 325:1 343:1 363:4 398:2 405:3 417:2 418:1 424:1 448:1 451:3 455:1 461:1 473:2 490:1 559:1 565:1 581:1 592:1 622:3 628:1 650:1 666:1 686:1 711:1 713:1 722:2 724:2 768:2 780:1 832:1 835:1 837:1 861:1 905:6 910:1 914:1 923:1 928:4 933:1 944:2 947:2 957:2 976:2 982:2 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1046:1 1054:1 1083:1 1092:1 1099:1 1101:1 1105:1 1118:1 1129:1 1153:1 1163:1 1173:1 1187:1 1208:1 1209:1 1220:2 1221:1 1229:3 1235:1 1245:1 1247:1 1258:2 1293:2 1303:1 1318:1 1322:1 1342:2 1353:3 1381:1 1384:1 1422:5 1465:1 1467:1 1468:4 1470:1 1473:5 1474:1 1475:1 1493:1 1496:1 1517:1 1531:1 1536:1 1557:1 1558:2 1561:1 1571:1 1577:1 1580:1 1586:1 1593:2 1599:1 1617:1 1669:2 1671:2 1703:2 1707:1 1716:4 1727:2 1737:2 1738:1 1779:2 1785:1 1812:1 1827:1 1830:1 1845:1 1856:1 1860:2 1865:1 1869:3 1876:1 1880:1 1895:2 1898:1 1900:1 1907:1 1920:1 1929:2 1935:1 1940:1 1950:2 1969:1 1976:1 2005:1 2037:1 2039:4 2041:1 2066:1 2081:1 2084:2 2115:1 2122:1 2134:1 2162:4 2212:1 2239:5 2250:2 2252:1 2261:1 2263:2 2274:1 2287:1 2295:2 2296:2 2297:2 2299:1 2301:5 2302:2 2304:2 2307:2 2308:2 2312:1 2314:1 2316:2 2318:1 2323:1 2324:5 2325:1 2328:1 2331:1 2335:1 2338:2 2370:1 2394:6 2403:2 2405:1 2419:1 2432:1 2440:1 2478:2 2483:1 2527:1 2528:1 2534:1 2562:1 2573:1 2589:2 2601:1 2604:4 2623:1 2627:1 2630:1 2656:1 2657:1 2665:1 2670:1 2731:1 2755:1 2759:1 2787:4 2795:1 2802:1 2824:1 2826:1 2848:2 2860:4 2871:2 2911:1 2921:1 2930:1 2941:1 2956:5 2962:1 2967:1 3017:1 3033:1 3037:1 3040:1 3049:1 3052:2 3060:1 3075:1 3081:1 3088:1 3095:1 3096:1 3111:1 3121:1 3128:1 3141:1 3172:1 3175:1 3189:1 3204:1 3207:1 3208:3 3261:1 3272:1 3286:1 3287:1 3295:1 3302:1 3317:1 3324:1 3335:1 3340:2 3361:1 3376:1 3388:2 3402:8 3411:1 3418:1 3472:1 3478:1 3479:1 3500:1 3507:1 3532:1 3534:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3644:1 3671:1 3679:1 3683:1 3689:1 3698:1 3710:1 3713:1 3717:1 3728:1 3746:1 3757:4 3763:1 3766:1 3769:1 3773:1 3780:1 3784:1 3787:1 3829:4 3858:2 3877:1 3886:1 3896:1 3901:3 3905:1 3923:1 3941:1 3942:1 3960:1 4004:1 4010:3 4013:1 4024:1 4031:1 4042:3 4047:1 4076:1 4078:1 4090:1 4113:1 4122:1 4132:1 4136:2 4140:3 4153:1 4186:1 4209:1 4238:2 4292:1 4298:1 4321:5 4329:3 4335:1 4344:1 4369:1 4390:5 4393:1 4396:1 4416:1 4421:1 4428:1 4454:1 4471:2 4480:2 4504:1 4509:1 4563:1 4593:1 4607:1 4608:1 4609:1 4630:1 4642:2 4667:1 4670:1 4675:2 4689:1 4691:2 4744:1 4775:2 4789:1 4801:1 4806:1 4812:1 4814:1 4825:1 4844:3 4876:1 4877:1 4905:1 4910:1 4911:1 5010:1 5028:10 5031:2 5043:1 5048:1 5056:2 5067:1 5099:1 5138:6 5153:3 5154:2 5156:1 5160:1 5161:1 5164:1 5166:1 5168:1 5169:2 5175:3 5181:1 5183:3 5185:2 5186:2 5209:1 5217:1 5221:1 5253:3 5268:1 5273:1 5289:1 5376:2 5385:1 5389:1 5436:1 5455:1 5457:1 5469:1 5483:3 5487:1 5498:3 5522:1 5532:6 5579:8 5614:1 5644:1 5682:2 5740:1 5752:1 5765:1 5779:1 5788:2 5792:1 5805:1 5816:1 5824:1 5829:1 5845:1 5848:1 5854:1 5873:1 5890:1 5904:1 5922:1 5943:1 5944:3 5949:1 5950:1 5952:2 5953:1 5959:1 5960:1 5968:1 5982:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:2 6282:7 6303:1 6305:1 6311:1 6312:1 6316:2 6319:1 6334:1 6388:1 6392:3 6428:1 6430:1 6440:2 6458:1 6487:1 6519:3 6526:1 6530:1 6537:1 6585:2 6602:4 6605:2 6609:2 6612:3 6613:1 6620:1 6621:1 6622:1 6628:1 6629:4 6630:9 6632:1 6633:2 6635:1 6650:1 6673:1 6683:2 6729:1 6752:1 6770:2 6780:1 6785:2 6827:1 6856:2 6860:1 6869:1 6914:1 6927:1 6939:1 6949:1 6962:2 6969:1 6974:1 6980:1 7001:1 7046:1 7049:1 7052:1 7055:1 7071:2 7089:1 7097:4 7123:1 7127:1 7129:1 7131:1 7134:1 7168:1 7169:1 7204:1 7208:1 7237:1 7270:1 7293:1 7294:1 7306:1 7319:1 7331:1 7352:1 7404:6 7407:2 7417:1 7432:1 7463:2 7501:1 7509:2 7515:1 7519:1 7520:2 7537:1 7542:1 7553:1 7616:1 7682:1 7706:3 7721:2 7723:1 7747:5 7753:2 7762:4 7801:1 7817:1 7829:1 7831:1 7833:1 7870:2 7883:1 7895:1 7911:2 7914:1 7915:1 7917:1 7952:8 7954:6 7960:1 7968:1 7970:1 7971:1 7975:2 7979:1 7987:1 8011:2 8029:33 8043:6 8044:1 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8113:1 8142:2 8164:1 8198:2 8212:1 8221:2 8237:1 8240:1 8248:1 8298:1 8303:1 8338:1 8354:2 8403:1 8407:1 8408:1 8422:1 8429:1 8490:2 8500:1 8509:1 8513:6 8523:1 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8652:1 8658:1 8659:1 8666:1 8682:1 8688:1 8729:1 8735:1 8754:2 8761:1 8773:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:3 8885:2 8887:1 8892:1 8896:1 8899:1 8900:1 8901:1 8927:1 8940:1 8945:3 8961:1 8964:1 8979:1 8990:1 8992:2 8997:1 9016:1 9018:2 9023:1 9030:1 9033:1 9054:1 9067:1 9148:1 9152:1 9169:1 9200:2 9209:1 9212:1 9227:1 9255:1 9308:1 9312:1 9313:1 9324:2 9351:1 9372:1 9380:1 9399:1 9400:2 9405:1 9417:1 9426:1 9430:1 9434:1 9441:1 9458:1 9480:4 9481:1 9491:1 9510:1 9517:2 9518:1 9521:1 9523:1 9536:1 9539:2 9544:1 9552:1 9563:1 9565:3 9567:3 9570:1 9572:1 9594:1 9607:1 9610:1 9613:2 9627:1 9635:1 9636:1 9637:2 9642:1 9647:1 9654:1 9657:2 9681:1 9694:1 9700:1 9702:1 9704:2 9707:1 9717:1 9725:1 9741:1 9765:7 9778:1 9794:2 9798:1 9799:2 9816:1 9820:1 9832:3 9844:1 9845:1 9857:1 9862:2 9881:1 9884:2 9893:1 9904:2 9925:1 9950:1 9957:2 9961:1 9962:3 9966:1 9971:1 9997:7 10018:3 10024:1 10026:1 10031:1 10060:1 10132:1 10175:4 10198:1 10217:1 10233:1 10234:4 10235:1 10239:1 10246:1 10247:1 10270:1 10283:1 10288:3 10302:1 10372:1 10379:4 10380:1 10381:2 10383:1 10393:1 10409:1 10427:1 10439:1 10444:1 10502:1 10517:1 10519:1 10544:1 10549:1 10572:1 10576:1 10577:1 10622:1 10623:1 10629:1 10652:2 10659:2 10672:1 10687:1 10757:1 10761:3 10762:1 10811:1 10816:3 10847:1 10853:1 10869:2 10871:2 10884:1 10889:1 10891:4 10893:1 10895:1 10904:2 10957:1 10989:1 11001:1 11012:7 11019:1 11021:1 11048:2 11061:1 11077:1 11079:1 11082:2 11120:1 11172:1 11254:1 11284:2 11287:1 11289:5 11295:2 11311:1 11315:1 11317:1 11331:1 11340:2 11348:1 11372:2 11400:1 11402:1 11418:3 11427:1 11430:2 11460:1 11469:1 11473:1 11496:1 11501:1 11515:1 11536:1 11550:1 11553:1 11559:1 11560:1 11599:1 11608:1 11609:2 11692:2 11705:1 11706:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:2 11780:1 11797:1 11807:5 11845:1 11874:2 11881:1 11882:1 11888:1 11895:1 11900:2 11909:2 11922:1 11954:1 11966:2 11969:1 11976:1 11982:1 11987:2 11992:1 12002:4 12045:2 12050:1 12055:1 12064:1 12065:1 12067:2 12069:1 12070:1 12074:2 12081:1 12089:3 12121:1 12125:2 12136:1 12144:1 12149:2 12156:1 12168:2 12201:1 12208:1 12209:1 12264:2 12268:1 12269:1 12279:1 12282:1 12301:1 12321:1 12331:1 12339:1 12341:1 12356:1 12365:1 12374:1 12396:1 12461:1 12478:1 12479:6 12504:1 12507:1 12508:1 12522:3 12529:2 12535:1 12540:2 12543:2 12546:1 12565:1 12583:2 12598:1 12605:1 12610:1 12623:4 12656:1 12676:2 12683:1 12721:1 12723:1 12726:2 12737:1 12773:1 12791:1 12808:1 12812:1 12815:1 12818:1 12837:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13001:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13145:1 13163:1 13174:4 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13411:1 13416:1 13481:1 13482:1 13492:2 13494:4 13498:2 13514:1 13520:1 13522:1 13539:1 13543:4 13551:1 13582:2 13619:1 13645:1 13647:1 13656:2 13658:1 13665:1 13681:2 13708:3 13720:1 13727:2 13752:1 13783:1 13792:1 13804:1 13843:1 13852:1 13876:1 13886:1 13930:1 13962:1 13969:4 13984:1 14008:1 14013:1 14016:2 14020:7 14021:1 14022:1 14038:2 14040:1 14062:2 14083:2 14100:1 14101:1 14111:2 14115:1 14119:2 14138:1 14145:1 14151:3 14158:2 14161:1 14165:1 14166:4 14170:2 14174:1 14222:1 14223:1 14234:1 14252:1 14262:2 14273:2 14275:1 14282:1 14300:6 14305:1 14321:3 14334:1 14340:2 14341:1 14347:1 14360:1 14368:1 14376:2 14384:1 14385:1 14414:1 14431:1 14456:1 14458:1 14490:1 14491:2 14492:1 14494:1 14495:4 14527:1 14535:1 14553:2 14562:1 14612:1 14661:1 14663:1 14678:1 14679:2 14682:1 14686:1 14704:2 14712:1 14716:1 14729:1 14735:1 14767:1 14769:1 14777:1 14797:1 14808:1 14833:1 14836:2 14844:1 14852:1 14863:2 14870:2 14873:2 14881:1 14884:1 14899:1 14918:4 14933:1 14945:1 14951:1 14959:4 14965:1 15016:1 15032:1 15055:1 15065:1 15067:1 15070:1 15090:1 15092:2 15121:1 15137:1 15142:4 15146:1 15149:1 15155:2 15156:1 15178:1 15218:1 15232:1 15240:3 15253:1 15254:1 15267:1 15269:2 15271:1 15279:1 15310:1 15385:1 15393:1 15410:1 15411:2 15416:3 15423:2 15432:1 15435:1 15439:1 15456:1 15490:1 15498:1 15503:2 15537:1 15560:1 15577:1 15588:1 15603:2 15615:1 15628:1 15652:1 15675:1 15682:1 15706:1 15708:2 15710:1 15717:1 15725:1 15726:2 15728:2 15730:1 15741:1 15767:1 15807:2 15820:1 15823:1 15831:1 15892:1 15911:1 15920:1 15931:2 15968:1 15981:1 15993:1 16010:1 16034:1 16040:1 16048:1 16078:4 16085:1 16089:1 16091:1 16094:1 16097:3 16104:1 16110:1 16117:2 16118:1 16121:1 16129:3 16138:1 16145:2 16158:4 16166:1 16180:1 16183:2 16210:1 16224:1 16234:2 16254:1 16259:2 16304:2 16315:1 16325:1 16344:1 16363:1 16389:1 16391:3 16421:2 16455:1 16458:1 16479:1 16480:1 16481:1 16492:2 16505:1 16508:3 16509:1 16515:1 16518:1 16519:1 16552:3 16559:1 16570:2 16620:1 16622:1 16656:1 16659:1 16673:3 16680:1 16682:2 16684:1 16695:1 16697:1 16715:1 16738:1 16763:1 16777:1 16780:1 16798:1 16800:2 16805:2 16821:1 16852:1 16884:1 16885:1 16900:2 16919:4 16930:1 16948:1 16952:1 16969:1 16981:1 17008:1 17026:1 17035:3 17048:1 17067:1 17069:1 17083:1 17088:1 17110:1 17112:2 17187:1 17254:1 17270:1 17293:4 17305:1 17319:1 17351:1 17355:1 17357:1 17368:1 17370:1 17384:1 17441:1 17449:1 17478:1 17481:1 17509:1 17544:2 17560:1 17570:1 17572:1 17597:1 17615:1 17627:1 17637:2 17647:1 17663:1 17666:1 17669:1 17673:1 17727:1 17730:1 17734:3 17763:1 17774:3 17811:1 17866:2 17887:1 17888:1 17889:1 17894:1 17897:1 17900:1 17917:1 17946:1 17948:2 17957:1 17962:1 17965:1 17983:1 17986:1 17990:1 18010:2 18048:4 18073:1 18102:1 18103:1 18120:1 18127:1 18137:1 18141:1 18147:1 18150:1 18151:1 18166:1 18170:1 18174:1 18196:1 18199:1 18213:1 18221:2 18226:1 18235:1 18242:1 18244:2 18251:1 18274:1 18286:3 18288:1 18290:1 18295:1 18297:1 18314:1 18318:1 18323:1 18329:1 18330:1 18342:2 18343:3 18345:1 18348:1 18359:1 18364:1 18369:2 18371:1 18372:1 18389:1 18392:1 18393:1 18394:1 18400:1 18422:1 18441:1 18447:1 18448:1 18460:1 18484:2 18492:1 18503:1 18517:1 18556:2 18563:1 18582:1 18600:3 18613:2 18629:1 18631:1 18668:2 18675:1 18692:1 18695:1 18697:3 18736:1 18754:2 18759:1 18787:1 18789:1 18805:4 18836:4 18853:1 18862:1 18965:1 18971:1 18975:7 18988:1 18990:1 18998:1 19000:1 19007:1 19011:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:2 19118:1 19123:1 19147:1 19157:1 19164:1 19184:1 19201:1 19208:1 19214:2251 19221:1 19243:1 19260:1 19266:1 19269:1 19270:1 19279:1 19282:1 19293:1 19416:1 19441:1 19443:1 19524:1 19543:1 19547:1 19566:1 19581:1 19590:1 19651:2 19720:1 19734:2 19757:1 19766:1 19778:1 19792:1 19821:2 19837:1 19843:1 19845:4 19863:1 19892:1 19921:1 19924:1 19947:2 19959:1 19970:1 19979:1 19997:1 20016:8 20018:1 20074:1 20108:1 20126:3 20135:1 20151:1 20166:4 20197:1 20202:2 20218:1 20223:1 20231:1 20233:2 20247:1 20252:2 20267:2 20276:2 20282:1 20286:2 20290:1 20307:1 20321:2 20325:1 20327:1 20329:1 20340:1 20341:2 20359:1 20387:1 20405:1 20407:3 20412:1 20413:1 20430:1 20483:1 20504:1 20524:2 20528:2 20596:4 20605:1 20639:1 20660:3 20667:3 20672:1 20674:1 20677:1 20701:2 20704:1 20709:1 20720:1 20740:2 20742:1 20749:1 20752:1 20757:1 20760:1 20761:1 20769:1 20793:1 20799:1 20808:1 20810:1 20815:2 20829:2 20832:1 20848:1 20849:1 20864:1 20873:1 20954:1 20957:2 20961:1 20964:1 21001:3 21004:2 21012:1 21028:1 21030:1 21036:1 21037:1 21053:1 21133:1 21164:2 21202:1 21231:1 21235:1 21239:1 21251:1 21253:1 21264:1 21282:1 21286:1 21289:1 21295:1 21328:2 21345:1 21360:2 21366:1 21367:1 21372:1 21373:1 21386:2 21387:1 21404:2 21411:2 21414:2 21471:1 21474:1 21489:1 21508:1 21519:1 21520:1 21545:1 21555:1 21563:2 21625:1 21637:1 21674:1 21680:1 21724:2 21763:1 21790:2 21823:1 21828:1 21842:1 21845:2 21850:1 21863:1 21883:1 21895:1 21898:1 21927:1 21946:1 21951:1 21956:1 21958:1 21971:1 21988:1 21992:1 22003:1 22020:1 22104:1 22136:2 22139:1 22154:1 22161:3 22169:1 22171:1 22172:1 22178:1 22182:1 22191:6 22192:1 22206:3 22218:1 22241:1 22242:2 22246:1 22247:1 22250:1 22252:1 22302:2 22323:1 22335:1 22342:1 22347:3 22352:1 22364:1 22369:1 22374:1 22387:1 22388:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22438:1 22442:1 22454:1 22484:1 22487:2 22506:1 22520:1 22531:1 22532:1 22533:1 22558:1 22565:1 22576:2 22577:1 22598:2 22604:3 22616:1 22623:2 22640:1 22669:1 22676:1 22700:2 22706:1 22715:1 22722:1 22727:1 22733:1 22738:1 22757:1 22774:1 22777:3 22791:2 22798:1 22800:1 22802:2 22804:2 22807:2 22813:1 22820:1 22826:1 22833:1 22850:1 22854:1 22864:2 22883:1 22888:2 22926:2 22939:1 22942:1 22943:1 22957:1 22993:2 23013:3 23028:2 23037:1 23064:1 23080:1 23089:1 23090:1 23106:1 23109:2 23117:1 23129:1 23133:1 23140:1 23162:1 23166:1 23173:1 23181:1 23182:1 23185:1 23199:2 23211:1 23313:6 23317:1 23319:1 23320:1 23326:1 23332:1 23333:1 23334:1 23335:1 23367:1 23384:1 23401:2 23444:2 23466:2 23476:1 23480:1 23482:1 23492:1 23534:2 23559:1 23593:2 23610:5 23630:1 23632:3 23635:2 23694:1 23749:1 23767:1 23794:1 23807:3 23813:1 23819:1 23822:1 23830:2 23833:1 23836:2 23858:2 23874:1 23875:1 23882:1 23893:1 23897:2 23937:2 23959:1 23967:3 23976:1 23992:1 24019:1 24025:1 24044:1 24049:1 24058:1 24062:1 24066:3 24071:2 24090:1 24093:1 24107:1 24109:1 24115:2 24125:1 24160:2 24190:1 24224:1 24236:2 24243:1 24257:1 24289:1 24294:1 24300:1 24332:1 24350:1 24389:2 24394:1 24419:1 24450:1 24478:3 24480:1 24482:1 24483:1 24489:1 24519:1 24534:2 24547:1 24568:1 24573:1 24586:2 24588:1 24615:3 24624:1 24643:1 24653:1 24665:1 24667:1 24677:1 24679:1 24682:3 24686:1 24722:2 24733:1 24767:1 24775:2 24783:1 24831:1 24843:2 24848:4 24852:1 24855:2 24874:1 24888:6 24927:1 24947:1 24962:1 24982:1 24988:1 24993:1 24995:1 25006:1 25010:1 25011:2 25020:1 25024:1 25042:1 25053:1 25056:1 25057:1 25074:1 25088:1 25092:1 25095:1 25113:1 25114:1 25116:1 25120:1 25122:1 25130:1 25134:3 25137:1 25140:1 25154:1 25156:1 25171:1 25253:2 25261:1 25289:1 25292:1 25299:1 25321:1 25403:1 25423:1 25506:2 25532:1 25534:1 25538:3 25543:1 25553:1 25579:4 25592:3 25602:1 25613:2 25641:2 25643:1 25654:1 25660:1 25678:1 25706:1 25715:1 25736:1 25748:1 25749:1 25770:1 25796:1 25799:3 25806:1 25807:2 25812:2 25826:1 25827:1 25832:1 25834:1 25843:2 25844:1 25848:2 25861:3 25862:1 25876:1 25879:1 25893:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 25963:1 25968:1 26008:1 26009:4 26041:1 26054:1 26064:1 26081:1 26129:1 26131:1 26142:1 26145:1 26148:1 26170:1 26198:1 26208:1 26230:1 26263:1 26276:1 26279:1 26282:4 26286:1 26323:1 26345:2 26350:1 26356:1 26382:1 26387:1 26415:1 26437:1 26444:2 26446:1 26450:1 26451:1 26454:1 26456:1 26463:1 26475:2 26501:1 26529:3 26540:1 26564:2 26582:1 26605:7 26646:1 26652:2 26668:1 26684:1 26688:1 26722:1 26736:2 26751:1 26755:1 26757:1 26783:1 26790:1 26824:1 26855:1 26877:1 26878:1 26885:1 26887:1 26894:1 26932:4 26948:3 26953:1 26956:1 26980:1 26987:1 27007:1 27011:1 27017:1 27032:1 27057:1 27082:2 27088:2 27113:1 27120:1 27125:1 27151:1 27161:1 27185:2 27191:1 27245:1 27281:2 27307:1 27308:2 27310:3 27324:1 27370:1 27380:1 27383:1 27398:1 27406:1 27425:1 27432:1 27458:1 27474:1 27483:3 27493:1 27499:1 27505:2 27528:1 27559:1 27565:1 27580:1 27582:1 27586:3 27647:1 27650:1 27653:1 27676:1 27687:3 27697:1 27713:1 27714:1 27732:1 27763:2 27766:1 27770:1 27775:1 27777:1 27778:1 27783:2 27790:1 27812:5 27815:1 27816:1 27821:3 27822:1 27827:1 27828:1 27830:1 27833:1 27836:2 27841:1 27849:1 27858:1 27882:2 27898:1 27915:4 27923:1 27927:1 27929:2 27930:1 27951:1 27962:1 27972:1 28049:2 28059:1 28075:1 28085:1 28097:3 28100:2 28101:1 28116:2 28184:1 28190:1 28227:1 28232:1 28243:1 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28407:2 28411:1 28428:1 28429:1 28437:1 28442:4 28455:1 28467:1 28471:1 28481:1 28489:1 28502:2 28508:2 28516:10 28524:1 28539:1 28549:6 28569:6 28573:1 28599:1 28618:1 28625:1 28648:1 28656:4 28659:1 28661:1 28678:2 28684:5 28715:1 28720:9 28727:1 28730:1 28733:1 28738:2 28755:1 28756:1 28789:1 28798:1 28801:2 28814:1 28826:1 28838:1 28857:1 28858:1 28860:1 28913:2 28920:1 28921:1 28929:1 28942:1 28953:1 28957:1 28983:1 28994:2 28998:1 28999:1 29036:1 29042:1 29050:1 29060:1 29062:2 29067:2 29073:1 29086:1 29103:1 29107:1 29130:2 29150:1 29164:1 29167:1 29187:1 29212:2 29214:1 29229:1 29243:1 29249:2 29294:1 29297:2 29306:1 29316:1 29318:1 29341:1 29347:1 29369:1 29380:1 29390:2 29400:1 29463:1 29471:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:5 29586:1 29591:2 29603:1 29606:1 29616:1 29626:2 29645:1 29667:2 29685:3 29732:2 29740:1 29752:2 29759:3 29766:2 29768:2 29802:1 29816:1 29822:4 29831:1 29854:1 29874:1 29883:1 29885:2
12 2:1 37:1 39:1 40:1 51:1 65:2 110:4 120:1 137:1 179:1 196:1 211:1 230:2 235:1 239:2 247:1 313:1 323:1 325:1 343:1 363:4 398:2 405:3 417:2 418:1 424:1 448:1 451:3 455:1 461:1 473:2 490:1 559:1 565:1 581:1 592:1 622:3 628:1 650:1 666:2 686:1 711:1 713:1 722:2 724:2 768:2 780:1 832:1 835:1 837:1 861:1 905:7 910:1 914:1 916:1 923:1 928:4 933:1 944:2 947:2 957:2 976:2 982:2 983:1 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1046:1 1054:1 1083:1 1092:1 1099:1 1101:1 1105:1 1118:1 1129:1 1153:1 1163:1 1173:1 1187:1 1208:1 1209:2 1220:2 1221:1 1229:3 1235:1 1245:1 1247:1 1258:2 1293:2 1303:1 1318:1 1322:1 1342:2 1353:3 1381:1 1384:1 1422:5 1465:1 1467:1 1468:5 1470:1 1473:7 1474:1 1475:1 1476:1 1493:1 1496:1 1517:1 1531:1 1536:1 1557:1 1558:2 1561:1 1571:1 1577:1 1580:1 1586:1 1593:2 1599:1 1617:1 1669:2 1671:2 1703:2 1707:1 1716:4 1727:2 1737:2 1738:1 1779:2 1785:1 1812:1 1827:1 1830:1 1845:1 1856:1 1860:2 1865:1 1869:3 1876:1 1880:1 1895:2 1898:1 1900:1 1907:1 1920:1 1929:2 1935:1 1940:1 1950:2 1969:1 1976:1 2005:1 2037:1 2039:4 2041:1 2066:1 2081:1 2084:2 2115:1 2122:1 2134:1 2162:4 2212:1 2232:1 2239:5 2250:2 2252:1 2261:1 2263:2 2274:1 2287:1 2295:2 2296:2 2297:2 2299:1 2301:5 2302:2 2304:2 2307:2 2308:2 2312:1 2314:1 2316:2 2318:1 2323:1 2324:5 2325:1 2328:1 2331:1 2335:1 2338:2 2370:1 2394:6 2403:2 2405:1 2419:1 2432:1 2440:1 2478:2 2483:1 2527:1 2528:1 2534:1 2562:1 2573:1 2589:2 2601:1 2604:4 2623:1 2627:1 2630:1 2656:1 2657:1 2665:1 2670:1 2731:1 2755:1 2759:1 2787:4 2795:1 2802:1 2824:1 2826:1 2848:2 2860:4 2871:2 2911:1 2921:1 2930:1 2941:1 2956:5 2962:1 2967:1 3017:1 3033:1 3037:1 3040:1 3049:1 3052:2 3060:1 3075:1 3081:1 3088:1 3095:1 3096:1 3111:1 3121:1 3128:1 3141:1 3172:1 3175:1 3189:1 3204:1 3207:1 3208:3 3261:1 3272:1 3286:1 3287:1 3295:1 3302:1 3317:1 3324:1 3335:1 3340:2 3361:1 3376:1 3388:2 3402:8 3411:1 3418:1 3472:1 3478:1 3479:1 3500:1 3507:1 3532:1 3534:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3644:1 3671:1 3679:1 3683:1 3689:1 3698:1 3710:1 3713:1 3717:1 3728:1 3746:1 3757:4 3763:1 3766:1 3769:1 3773:1 3780:1 3784:1 3787:1 3829:4 3858:2 3877:1 3886:1 3896:1 3901:3 3905:1 3923:1 3941:1 3942:1 3960:1 4004:1 4010:3 4013:1 4024:1 4031:1 4042:3 4047:1 4076:1 4078:1 4090:1 4113:1 4115:1 4122:1 4132:1 4136:2 4140:3 4153:1 4186:1 4209:1 4238:2 4292:1 4298:1 4321:5 4329:3 4335:1 4344:1 4369:1 4390:5 4393:1 4396:1 4416:1 4421:1 4428:1 4454:1 4471:2 4480:2 4504:1 4509:1 4563:2 4593:1 4607:1 4608:1 4609:1 4630:1 4642:2 4667:1 4670:1 4675:2 4689:1 4691:2 4744:1 4775:2 4789:1 4801:1 4806:1 4812:1 4814:1 4825:1 4844:3 4876:1 4877:1 4905:1 4910:1 4911:1 5010:1 5028:10 5031:3 5043:1 5048:1 5056:2 5067:1 5099:1 5138:6 5153:3 5154:2 5156:1 5160:1 5161:1 5164:1 5166:1 5168:1 5169:2 5175:3 5181:1 5183:3 5185:2 5186:2 5209:1 5217:1 5221:1 5253:3 5268:1 5273:1 5278:1 5289:1 5376:2 5385:1 5389:1 5436:1 5455:1 5457:1 5469:1 5483:3 5487:1 5498:3 5522:1 5532:6 5579:8 5614:1 5644:1 5682:2 5740:1 5752:1 5765:1 5779:1 5788:2 5792:1 5805:1 5816:1 5824:1 5829:1 5845:1 5848:1 5854:1 5873:1 5890:1 5904:1 5922:1 5943:1 5944:3 5949:1 5950:1 5952:2 5953:1 5959:1 5960:1 5968:1 5982:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:2 6282:7 6303:1 6305:1 6311:1 6312:1 6316:2 6319:1 6334:1 6388:1 6392:3 6428:1 6430:1 6440:2 6458:1 6487:1 6519:4 6526:1 6530:1 6537:1 6543:1 6585:2 6602:4 6605:2 6609:2 6612:3 6613:1 6620:1 6621:1 6622:1 6628:1 6629:5 6630:9 6632:1 6633:3 6635:1 6650:1 6673:1 6683:2 6729:1 6752:1 6770:2 6780:1 6785:2 6827:2 6856:2 6860:1 6869:1 6914:1 6927:1 6939:1 6949:1 6962:2 6969:1 6974:1 6980:2 7001:1 7046:1 7049:1 7052:2 7055:1 7071:2 7089:1 7097:4 7123:1 7127:1 7129:1 7131:1 7134:1 7168:1 7169:1 7204:1 7208:1 7237:1 7270:1 7293:1 7294:1 7306:1 7319:1 7331:1 7352:1 7404:6 7407:2 7417:1 7432:1 7463:2 7501:1 7509:2 7515:1 7519:1 7520:2 7537:1 7542:1 7553:1 7616:1 7682:1 7706:3 7721:2 7722:1 7723:1 7747:5 7753:2 7762:4 7801:1 7817:1 7829:1 7831:1 7833:1 7870:2 7883:1 7895:1 7911:2 7914:1 7915:1 7917:1 7952:8 7954:6 7960:1 7968:1 7970:1 7971:1 7975:2 7979:1 7987:1 8011:2 8029:33 8043:6 8044:1 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8113:1 8142:2 8164:1 8198:2 8212:1 8221:2 8237:1 8240:1 8244:1 8248:1 8298:1 8303:1 8338:1 8354:2 8403:1 8407:1 8408:1 8413:1 8422:1 8429:1 8490:2 8500:1 8509:1 8513:6 8523:1 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8652:1 8658:1 8659:1 8666:1 8682:1 8688:1 8729:1 8735:1 8754:2 8761:1 8765:1 8773:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:3 8885:2 8887:1 8892:1 8896:1 8899:1 8900:1 8901:1 8908:1 8927:1 8940:1 8945:3 8946:1 8961:1 8964:1 8979:1 8990:1 8992:2 8997:1 9016:1 9018:2 9023:1 9030:1 9033:1 9054:1 9067:1 9148:1 9152:1 9169:1 9200:2 9209:1 9212:1 9227:1 9255:1 9308:1 9312:1 9313:1 9324:2 9351:1 9372:1 9380:1 9399:1 9400:2 9405:1 9417:1 9426:1 9430:1 9434:1 9441:1 9458:1 9480:4 9481:1 9491:1 9495:1 9510:1 9517:2 9518:1 9521:1 9523:1 9536:1 9539:2 9544:1 9552:1 9563:1 9565:3 9567:3 9570:1 9572:1 9594:1 9607:1 9610:1 9613:2 9627:1 9635:1 9636:1 9637:2 9642:1 9647:1 9654:1 9657:2 9681:1 9694:1 9700:1 9702:1 9704:2 9707:1 9715:1 9717:1 9725:1 9741:1 9765:7 9778:1 9794:2 9798:1 9799:2 9816:1 9820:1 9832:3 9844:1 9845:1 9857:1 9862:2 9881:1 9884:2 9885:1 9893:1 9904:2 9925:1 9950:1 9957:2 9961:1 9962:3 9966:1 9971:2 9997:7 10018:3 10019:1 10024:1 10026:1 10031:1 10060:1 10132:1 10175:4 10198:1 10217:1 10233:1 10234:4 10235:1 10239:1 10246:1 10247:1 10270:1 10283:1 10288:3 10302:1 10372:1 10379:4 10380:1 10381:2 10383:1 10393:1 10409:1 10427:1 10439:1 10444:1 10502:1 10517:1 10519:1 10544:1 10549:1 10572:1 10576:1 10577:1 10622:1 10623:1 10629:1 10639:1 10652:2 10659:2 10672:1 10687:1 10757:1 10761:3 10762:1 10811:1 10816:3 10847:1 10853:1 10869:2 10871:2 10884:1 10889:1 10891:4 10893:1 10895:1 10904:2 10957:1 10989:1 11001:1 11012:7 11019:1 11021:1 11048:2 11061:1 11077:1 11079:1 11082:2 11120:1 11172:1 11254:1 11284:2 11287:1 11289:5 11295:2 11311:1 11315:1 11317:1 11331:1 11340:2 11348:1 11372:2 11400:1 11402:2 11418:3 11427:1 11430:2 11460:1 11469:1 11473:1 11496:1 11501:1 11515:1 11536:1 11550:1 11553:1 11559:1 11560:1 11599:1 11608:1 11609:2 11692:2 11705:1 11706:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:2 11780:1 11797:1 11807:5 11845:1 11874:2 11881:1 11882:1 11888:1 11895:1 11900:2 11909:2 11922:1 11954:1 11966:2 11969:1 11976:1 11982:1 11987:2 11992:1 12002:4 12045:2 12050:1 12055:1 12064:1 12065:1 12067:2 12069:1 12070:1 12074:2 12081:1 12089:3 12121:1 12125:2 12136:1 12144:1 12149:2 12156:1 12168:2 12201:1 12208:1 12209:1 12264:2 12268:1 12269:1 12279:1 12282:1 12301:1 12321:1 12331:1 12339:1 12341:1 12355:1 12356:1 12365:1 12374:1 12396:1 12461:1 12478:1 12479:6 12504:1 12507:1 12508:1 12522:3 12529:2 12535:1 12540:2 12543:2 12546:1 12565:1 12583:2 12598:1 12605:1 12610:1 12623:4 12656:1 12676:2 12683:1 12721:1 12723:1 12726:2 12737:1 12773:1 12791:1 12808:1 12812:1 12815:1 12818:1 12837:1 12855:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13001:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13111:1 13112:1 13114:2 13122:1 13145:1 13163:1 13174:5 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13411:1 13416:1 13481:1 13482:1 13492:2 13494:4 13498:2 13514:1 13520:1 13522:1 13539:1 13543:5 13551:1 13573:1 13582:2 13619:1 13645:1 13647:1 13656:2 13658:1 13665:1 13681:2 13708:3 13720:1 13727:2 13752:1 13783:1 13792:1 13804:1 13843:1 13852:1 13876:1 13886:1 13930:1 13962:1 13969:4 13979:1 13984:1 14008:1 14013:1 14016:2 14020:7 14021:1 14022:1 14038:2 14040:1 14062:2 14083:2 14100:1 14101:1 14111:2 14115:1 14119:2 14138:1 14145:1 14151:3 14158:2 14161:1 14165:1 14166:4 14170:2 14174:1 14221:1 14222:1 14223:1 14234:1 14252:1 14262:2 14273:2 14275:1 14282:1 14300:6 14305:1 14321:3 14334:1 14340:2 14341:1 14347:1 14360:1 14368:1 14376:2 14384:1 14385:1 14414:1 14431:1 14456:1 14458:1 14490:1 14491:2 14492:1 14494:1 14495:4 14527:1 14535:1 14553:2 14562:1 14612:1 14661:1 14663:1 14678:1 14679:2 14682:1 14686:2 14704:2 14712:1 14716:1 14729:1 14735:1 14767:1 14769:1 14777:1 14797:1 14808:1 14833:1 14836:2 14844:1 14852:1 14863:2 14870:2 14873:2 14881:1 14884:1 14899:1 14918:4 14933:1 14945:1 14951:1 14959:4 14965:1 15016:1 15032:1 15055:1 15065:1 15067:1 15070:1 15090:1 15092:2 15121:1 15137:1 15142:4 15143:1 15146:1 15149:1 15155:2 15156:1 15178:1 15218:1 15232:1 15240:3 15253:1 15254:1 15267:1 15268:1 15269:2 15271:1 15279:1 15310:1 15382:1 15385:1 15393:1 15410:1 15411:2 15416:3 15423:2 15432:1 15435:1 15439:1 15456:1 15490:1 15498:1 15503:2 15537:1 15560:1 15577:1 15588:1 15603:2 15615:1 15628:1 15652:1 15675:1 15682:1 15706:1 15708:2 15710:1 15717:1 15725:1 15726:2 15728:2 15730:1 15741:1 15767:1 15807:2 15820:1 15823:1 15831:1 15892:1 15911:1 15920:1 15931:2 15968:1 15981:1 15993:1 16010:1 16034:1 16040:1 16048:1 16078:4 16085:1 16089:1 16091:1 16094:1 16097:3 16104:1 16110:1 16117:2 16118:1 16121:1 16129:3 16138:1 16145:2 16158:4 16166:1 16180:1 16183:2 16210:1 16224:1 16234:2 16254:1 16259:2 16304:2 16315:1 16325:1 16344:1 16363:1 16389:1 16391:3 16402:1 16421:2 16455:1 16458:1 16479:1 16480:1 16481:1 16492:2 16505:1 16508:3 16509:1 16515:1 16518:1 16519:1 16552:3 16559:1 16570:2 16620:1 16622:1 16656:1 16659:1 16673:3 16680:1 16682:2 16684:1 16695:1 16697:1 16715:1 16738:1 16763:1 16771:1 16777:1 16780:1 16798:1 16800:2 16805:2 16821:1 16852:1 16884:1 16885:1 16900:2 16919:4 16930:1 16948:1 16952:1 16969:1 16981:1 17008:1 17026:1 17035:3 17048:1 17067:1 17069:1 17083:1 17088:1 17110:1 17112:2 17187:1 17254:1 17270:1 17293:4 17305:1 17319:1 17351:1 17355:1 17357:1 17368:1 17370:1 17384:1 17441:1 17449:1 17478:1 17481:1 17509:1 17544:2 17560:1 17570:1 17572:1 17597:1 17615:1 17627:1 17637:2 17647:1 17663:1 17666:1 17669:1 17673:1 17687:1 17727:1 17730:1 17734:3 17763:1 17774:3 17811:1 17866:2 17887:1 17888:1 17889:1 17894:1 17897:2 17900:1 17917:1 17946:1 17948:2 17953:1 17957:1 17962:1 17965:1 17983:1 17986:1 17990:1 18010:2 18048:4 18073:1 18098:1 18102:1 18103:1 18120:1 18127:2 18137:1 18141:1 18147:1 18150:1 18151:1 18166:1 18170:1 18174:1 18196:1 18199:1 18213:1 18221:2 18226:1 18235:1 18242:1 18244:2 18251:1 18274:1 18286:3 18288:1 18290:1 18295:1 18297:1 18314:1 18318:1 18323:1 18329:1 18330:1 18342:2 18343:3 18345:1 18348:1 18359:1 18364:1 18369:2 18371:1 18372:1 18389:1 18392:1 18393:2 18394:1 18400:1 18422:1 18441:1 18447:1 18448:1 18460:1 18484:2 18492:1 18503:1 18517:1 18556:2 18563:1 18582:1 18600:3 18613:2 18629:1 18631:1 18668:2 18675:1 18692:1 18695:1 18697:3 18736:1 18754:2 18759:1 18773:1 18787:1 18789:1 18805:4 18811:1 18836:5 18853:1 18862:1 18965:1 18971:1 18975:7 18984:1 18988:1 18990:1 18998:1 19000:1 19007:1 19011:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:2 19118:1 19123:1 19147:1 19157:1 19164:1 19184:2 19201:1 19208:1 19214:2355 19221:1 19239:1 19243:1 19260:1 19266:1 19269:1 19270:1 19279:1 19282:1 19293:1 19327:1 19416:1 19441:1 19443:1 19524:1 19543:1 19547:1 19566:1 19581:1 19590:1 19651:2 19720:1 19728:1 19734:2 19757:1 19766:1 19778:1 19792:1 19821:2 19837:1 19843:1 19845:4 19863:1 19892:1 19921:1 19924:1 19947:2 19959:1 19970:1 19979:1 19997:1 20016:8 20018:1 20074:1 20108:1 20126:3 20135:1 20151:1 20166:4 20197:1 20202:2 20218:1 20223:1 20231:1 20233:2 20247:1 20252:2 20267:2 20276:2 20282:1 20285:1 20286:2 20288:1 20290:1 20307:1 20321:2 20325:1 20327:1 20329:1 20338:1 20340:1 20341:2 20359:1 20387:1 20405:1 20407:3 20412:1 20413:1 20430:1 20483:1 20504:1 20524:2 20528:2 20596:4 20605:1 20639:1 20660:4 20667:4 20672:1 20674:1 20677:1 20701:2 20704:1 20709:1 20720:1 20740:2 20742:1 20749:1 20752:1 20757:1 20760:1 20761:1 20769:1 20793:1 20799:1 20808:1 20810:1 20815:2 20829:2 20832:1 20848:1 20849:1 20864:1 20873:1 20954:1 20957:2 20961:1 20964:1 21001:3 21004:2 21012:1 21028:1 21030:1 21036:1 21037:1 21053:1 21133:1 21159:1 21164:2 21202:1 21231:1 21235:1 21238:1 21239:1 21251:1 21253:1 21264:1 21280:1 21282:1 21286:1 21289:1 21295:1 21328:2 21345:1 21356:1 21360:2 21366:1 21367:1 21372:1 21373:1 21386:2 21387:1 21404:2 21411:2 21414:2 21471:1 21474:1 21488:1 21489:1 21508:1 21519:1 21520:1 21545:1 21555:1 21563:2 21625:1 21637:1 21674:1 21680:1 21707:1 21712:1 21724:2 21758:1 21763:1 21790:2 21823:1 21828:1 21842:1 21845:2 21850:1 21863:1 21867:1 21883:1 21894:1 21895:2 21898:1 21927:1 21946:1 21951:1 21956:1 21958:1 21971:1 21978:1 21988:1 21992:1 22003:1 22020:1 22104:1 22136:2 22139:1 22154:1 22161:3 22169:1 22171:1 22172:1 22178:2 22182:1 22191:6 22192:1 22206:3 22210:1 22218:1 22241:1 22242:2 22246:1 22247:1 22250:1 22252:1 22302:2 22323:1 22335:1 22342:1 22347:3 22352:1 22364:1 22369:1 22374:1 22387:1 22388:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22438:1 22442:1 22454:1 22484:1 22487:2 22506:1 22512:1 22520:1 22531:1 22532:1 22533:1 22558:1 22565:1 22576:2 22577:1 22598:2 22604:3 22616:1 22623:2 22640:1 22669:1 22676:1 22700:2 22706:1 22715:1 22722:1 22727:1 22733:1 22738:1 22757:1 22774:1 22777:3 22791:2 22798:1 22800:1 22802:2 22804:2 22807:2 22813:1 22820:1 22826:1 22833:1 22850:1 22854:1 22864:2 22883:1 22888:2 22926:2 22939:1 22942:1 22943:1 22957:2 22993:2 23013:3 23028:2 23037:1 23064:1 23080:1 23089:1 23090:1 23106:1 23109:2 23117:1 23129:1 23133:1 23140:1 23162:1 23166:1 23173:1 23181:1 23182:1 23185:1 23199:2 23211:1 23313:6 23317:1 23319:1 23320:1 23326:1 23332:1 23333:1 23334:1 23335:1 23367:1 23384:1 23401:2 23444:2 23466:2 23476:1 23480:1 23482:1 23492:1 23534:2 23559:1 23593:2 23610:5 23630:1 23632:3 23635:2 23694:1 23704:1 23749:1 23767:1 23794:1 23807:3 23813:1 23819:2 23822:1 23830:2 23833:1 23836:2 23858:2 23874:1 23875:1 23882:1 23893:1 23897:2 23937:2 23959:1 23967:3 23976:1 23992:1 24019:1 24025:1 24044:1 24049:1 24058:1 24062:2 24066:3 24071:2 24090:1 24093:1 24107:1 24109:1 24115:3 24125:1 24160:2 24190:1 24224:1 24236:2 24243:1 24257:1 24289:1 24294:1 24300:1 24332:1 24350:1 24389:2 24394:1 24419:1 24450:1 24478:3 24480:1 24482:1 24483:1 24489:1 24519:1 24534:2 24547:1 24568:1 24573:1 24586:2 24588:1 24615:3 24624:1 24643:1 24653:1 24665:1 24667:1 24677:1 24679:1 24682:3 24686:1 24722:2 24733:1 24767:1 24775:2 24783:1 24831:1 24843:2 24848:5 24852:1 24855:2 24874:1 24888:6 24927:1 24947:1 24962:1 24982:1 24988:1 24993:1 24995:1 25006:1 25010:2 25011:2 25020:1 25024:1 25042:1 25053:1 25056:1 25057:1 25074:1 25088:1 25092:1 25095:1 25113:1 25114:1 25116:1 25120:1 25122:1 25130:1 25134:3 25137:1 25140:1 25154:1 25156:1 25171:1 25253:2 25261:1 25289:1 25292:1 25299:1 25321:1 25403:1 25423:1 25506:2 25532:1 25534:1 25538:3 25543:1 25553:1 25579:4 25592:3 25602:1 25613:2 25641:2 25643:1 25654:1 25660:1 25678:1 25706:1 25709:1 25715:1 25736:1 25748:1 25749:1 25770:1 25796:1 25799:3 25806:1 25807:2 25812:2 25826:1 25827:1 25832:1 25834:1 25843:2 25844:1 25848:2 25861:3 25862:1 25876:1 25879:1 25893:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 25963:1 25968:1 25979:1 26008:1 26009:5 26041:1 26042:1 26054:1 26064:2 26081:1 26129:1 26131:1 26142:1 26145:1 26148:1 26170:1 26198:1 26208:1 26226:1 26230:1 26263:1 26276:1 26279:1 26282:4 26286:1 26323:1 26345:2 26350:1 26356:1 26382:2 26387:1 26415:1 26437:1 26444:2 26446:1 26450:1 26451:1 26454:1 26456:1 26463:1 26475:2 26501:1 26529:3 26540:1 26564:2 26582:1 26605:7 26646:1 26652:2 26668:1 26684:1 26688:1 26722:1 26736:2 26751:1 26755:1 26757:1 26783:1 26790:1 26824:1 26855:1 26877:1 26878:1 26885:1 26887:1 26894:1 26932:4 26948:3 26953:1 26956:1 26980:1 26987:1 27007:1 27011:1 27017:1 27032:1 27057:1 27082:2 27088:2 27113:1 27120:1 27125:1 27151:1 27161:1 27185:2 27191:1 27245:1 27281:2 27307:1 27308:2 27310:3 27324:1 27352:1 27364:1 27370:1 27379:1 27380:1 27383:1 27398:1 27406:1 27425:1 27432:1 27458:1 27474:1 27483:3 27493:1 27499:1 27505:2 27528:1 27559:2 27565:1 27580:1 27582:1 27586:3 27642:1 27647:1 27650:2 27653:1 27676:1 27687:3 27697:1 27713:1 27714:1 27732:1 27763:2 27766:1 27770:1 27775:1 27777:1 27778:1 27783:2 27790:1 27812:5 27815:1 27816:1 27821:3 27822:1 27827:1 27828:2 27830:1 27833:1 27836:2 27841:1 27849:1 27858:1 27882:2 27898:1 27915:4 27923:1 27927:1 27929:2 27930:1 27951:1 27962:1 27972:1 28049:2 28059:1 28075:1 28085:1 28097:3 28100:2 28101:1 28116:2 28184:1 28190:1 28227:1 28232:1 28243:3 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28407:2 28411:1 28428:1 28429:1 28437:1 28442:4 28455:1 28467:1 28471:1 28481:1 28489:1 28502:2 28508:2 28516:10 28524:1 28539:1 28549:6 28569:6 28573:1 28599:1 28618:1 28625:1 28648:1 28656:5 28659:1 28661:1 28678:2 28684:5 28715:1 28720:9 28727:1 28730:1 28733:1 28738:2 28755:1 28756:1 28789:1 28798:1 28801:2 28814:1 28826:1 28838:1 28857:1 28858:1 28860:1 28913:2 28920:1 28921:1 28929:1 28942:1 28953:1 28957:1 28983:1 28994:2 28998:1 28999:1 29036:1 29042:1 29050:1 29060:2 29062:3 29067:2 29073:1 29086:1 29103:1 29105:1 29107:1 29130:2 29150:1 29164:1 29167:1 29187:1 29212:2 29214:1 29229:1 29243:1 29249:2 29294:1 29297:2 29306:1 29316:1 29318:1 29341:1 29347:1 29369:1 29380:1 29390:2 29400:1 29463:1 29471:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:5 29586:1 29591:2 29603:1 29606:1 29616:1 29626:2 29645:1 29667:2 29685:4 29732:2 29740:1 29752:2 29759:3 29766:2 29768:2 29793:1 29802:1 29816:1 29822:4 29831:1 29854:1 29874:1 29883:1 29885:2
12 2:1 37:1 39:1 40:1 51:1 65:2 110:4 120:1 137:1 179:1 196:1 211:1 230:2 235:1 239:2 247:1 313:1 323:1 325:1 343:1 363:4 398:2 405:3 417:2 418:1 424:1 448:1 451:3 455:1 461:1 473:2 490:1 559:1 565:1 581:1 592:1 622:3 628:1 650:1 666:2 686:1 711:1 713:1 722:2 724:2 768:2 780:1 832:1 835:1 837:1 861:1 905:7 910:1 914:1 916:1 923:1 928:4 933:1 936:1 944:2 947:2 957:2 976:2 982:2 983:1 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1046:1 1054:1 1082:1 1083:1 1092:1 1099:1 1101:1 1105:1 1118:1 1129:1 1153:1 1163:1 1173:1 1187:1 1208:1 1209:2 1220:2 1221:1 1229:3 1235:1 1245:1 1247:1 1258:2 1293:2 1303:1 1318:1 1322:1 1342:2 1353:3 1381:1 1384:1 1422:5 1465:1 1467:1 1468:5 1470:1 1473:8 1474:1 1475:1 1476:1 1493:1 1496:1 1517:1 1531:1 1536:1 1557:1 1558:2 1561:1 1571:1 1577:1 1580:1 1586:1 1593:2 1599:1 1617:1 1669:2 1671:2 1703:2 1707:1 1716:4 1727:2 1737:2 1738:1 1779:2 1785:1 1812:1 1827:1 1830:1 1845:1 1856:1 1860:2 1865:1 1869:3 1876:1 1880:1 1895:2 1898:1 1900:1 1907:1 1920:1 1924:1 1929:2 1935:1 1940:1 1950:2 1969:1 1976:1 2005:1 2037:1 2039:4 2041:1 2066:1 2081:1 2084:2 2115:1 2122:1 2134:1 2162:4 2212:1 2232:1 2239:6 2250:3 2252:1 2261:1 2263:2 2274:1 2287:1 2295:2 2296:2 2297:2 2299:1 2301:5 2302:2 2304:2 2307:2 2308:2 2312:1 2314:1 2316:2 2318:1 2323:1 2324:6 2325:1 2328:1 2331:1 2335:2 2338:2 2370:1 2394:6 2403:2 2405:1 2419:1 2432:1 2440:1 2478:2 2483:1 2527:1 2528:1 2533:1 2534:1 2562:1 2573:1 2589:2 2601:1 2604:4 2623:1 2627:1 2630:1 2656:1 2657:1 2665:1 2670:1 2731:1 2732:1 2755:1 2759:1 2787:4 2795:1 2802:1 2824:1 2826:1 2848:2 2860:4 2861:1 2871:2 2911:1 2921:1 2930:1 2941:1 2956:5 2962:1 2967:1 3017:2 3033:1 3037:1 3040:1 3049:1 3052:2 3060:1 3075:1 3081:1 3088:1 3095:1 3096:1 3111:1 3121:1 3128:1 3141:1 3143:1 3172:1 3175:1 3189:1 3204:1 3207:1 3208:3 3261:1 3272:1 3286:1 3287:1 3295:1 3302:1 3317:1 3324:2 3335:1 3340:2 3361:1 3376:1 3388:2 3402:8 3411:1 3418:1 3472:1 3478:1 3479:1 3500:1 3507:1 3532:1 3534:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3644:1 3671:1 3679:1 3683:1 3689:1 3698:1 3704:1 3710:1 3713:1 3717:1 3728:1 3746:1 3757:4 3763:1 3766:1 3769:1 3773:1 3780:1 3784:1 3787:1 3828:1 3829:4 3858:2 3877:1 3886:1 3896:1 3901:3 3905:1 3923:1 3941:1 3942:1 3960:1 4004:1 4010:3 4013:1 4024:1 4031:1 4042:3 4047:1 4076:1 4078:1 4090:1 4113:1 4115:1 4122:1 4132:1 4136:2 4140:3 4153:1 4186:1 4209:1 4238:2 4292:1 4298:1 4321:5 4329:3 4335:1 4344:1 4369:1 4390:5 4393:1 4396:1 4416:1 4421:1 4428:1 4454:1 4471:2 4480:2 4504:1 4509:1 4563:2 4593:1 4607:1 4608:1 4609:1 4630:1 4642:2 4667:1 4670:1 4673:1 4675:2 4689:1 4691:2 4744:1 4775:2 4789:1 4801:1 4806:1 4812:1 4814:1 4825:1 4844:3 4876:1 4877:1 4905:1 4910:1 4911:1 5010:1 5028:11 5031:3 5043:1 5048:1 5056:2 5067:1 5099:1 5138:6 5153:3 5154:2 5156:1 5160:1 5161:1 5164:1 5166:1 5168:1 5169:2 5175:3 5181:1 5183:3 5185:2 5186:2 5209:1 5217:1 5221:1 5253:4 5268:1 5273:1 5278:1 5289:1 5376:2 5385:1 5389:1 5436:1 5455:1 5457:1 5469:1 5483:3 5487:1 5498:3 5522:1 5532:6 5579:8 5614:1 5619:1 5644:1 5682:2 5740:1 5752:2 5765:1 5779:1 5788:2 5792:1 5805:1 5816:1 5824:1 5829:1 5845:1 5848:1 5854:1 5873:1 5890:1 5904:1 5922:1 5943:1 5944:3 5949:1 5950:1 5952:2 5953:1 5959:1 5960:1 5968:1 5982:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:2 6282:7 6303:1 6305:1 6311:1 6312:1 6316:2 6319:1 6334:1 6367:1 6388:1 6392:3 6404:1 6428:1 6430:1 6440:2 6458:1 6487:1 6519:4 6526:1 6530:1 6537:1 6543:1 6585:2 6602:4 6605:2 6609:2 6612:3 6613:1 6620:1 6621:1 6622:1 6628:1 6629:5 6630:10 6632:1 6633:3 6635:1 6650:1 6673:1 6683:2 6729:1 6752:1 6770:2 6780:1 6785:2 6827:2 6856:2 6860:1 6869:1 6914:1 6927:1 6939:1 6949:1 6962:2 6969:1 6974:1 6980:2 7001:1 7046:1 7049:1 7052:2 7055:1 7071:2 7089:1 7097:4 7123:1 7127:1 7129:1 7131:1 7134:1 7168:1 7169:1 7204:1 7208:1 7237:1 7270:1 7280:1 7293:1 7294:1 7306:1 7319:1 7331:1 7352:1 7404:6 7407:2 7417:1 7432:1 7463:2 7501:1 7509:2 7515:1 7519:1 7520:2 7537:1 7542:1 7553:1 7616:1 7682:1 7706:3 7721:2 7722:1 7723:1 7747:5 7753:2 7762:4 7801:1 7817:1 7827:1 7829:1 7831:1 7833:1 7870:2 7883:1 7893:1 7895:1 7911:2 7914:1 7915:1 7917:1 7952:8 7954:6 7960:1 7968:1 7970:1 7971:1 7975:2 7979:1 7987:1 8011:2 8029:35 8043:6 8044:2 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8113:1 8142:2 8164:1 8198:2 8212:1 8221:2 8237:2 8240:1 8244:1 8248:1 8298:1 8303:1 8338:1 8354:2 8403:1 8407:1 8408:1 8413:1 8422:1 8429:1 8490:2 8500:1 8509:1 8513:7 8523:1 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8652:1 8658:1 8659:1 8666:1 8682:1 8688:1 8729:1 8735:1 8754:2 8761:1 8765:1 8773:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:3 8885:2 8887:1 8892:1 8894:1 8896:1 8899:1 8900:1 8901:1 8908:1 8927:1 8940:1 8945:3 8946:1 8961:1 8964:1 8979:1 8990:1 8992:2 8997:1 9016:1 9018:2 9023:1 9030:1 9033:1 9054:1 9067:1 9101:1 9148:1 9152:1 9164:1 9169:1 9200:2 9209:1 9212:1 9227:1 9255:1 9308:1 9312:1 9313:1 9324:2 9351:1 9372:1 9380:1 9399:1 9400:2 9405:1 9417:1 9426:1 9430:1 9434:1 9441:1 9458:1 9480:4 9481:1 9491:1 9495:1 9510:1 9517:2 9518:1 9521:1 9523:1 9536:1 9539:2 9544:1 9552:1 9563:1 9565:3 9567:3 9570:1 9572:1 9594:1 9607:1 9610:1 9613:2 9627:1 9635:1 9636:1 9637:2 9642:1 9647:1 9654:1 9657:2 9681:1 9694:1 9700:1 9702:1 9704:2 9707:1 9715:1 9717:1 9721:1 9725:1 9741:1 9765:7 9778:1 9794:2 9798:1 9799:2 9816:1 9820:1 9832:3 9844:1 9845:1 9857:1 9862:2 9881:1 9884:2 9885:1 9893:1 9904:2 9925:1 9950:1 9957:2 9961:1 9962:3 9966:1 9971:2 9997:8 10018:3 10019:1 10024:1 10026:1 10031:1 10060:1 10132:1 10175:4 10198:1 10217:1 10232:1 10233:1 10234:5 10235:1 10239:1 10246:1 10247:1 10270:1 10283:1 10288:3 10302:1 10372:1 10379:4 10380:1 10381:2 10383:1 10393:1 10409:1 10427:1 10439:1 10444:1 10502:1 10517:1 10519:1 10544:1 10549:1 10572:1 10576:1 10577:1 10622:1 10623:1 10629:1 10639:1 10652:2 10659:2 10672:1 10687:1 10757:1 10761:3 10762:1 10811:1 10816:3 10847:1 10853:1 10869:2 10871:2 10884:1 10889:1 10891:4 10893:1 10895:1 10904:2 10957:1 10989:1 11001:1 11012:7 11019:1 11021:1 11048:2 11061:1 11077:1 11079:1 11082:2 11120:1 11172:1 11254:1 11284:2 11287:1 11289:5 11295:2 11311:1 11313:1 11315:1 11317:1 11331:1 11340:2 11348:1 11372:2 11400:1 11402:2 11418:3 11427:1 11430:2 11460:1 11469:1 11473:1 11496:1 11501:1 11515:1 11536:1 11550:1 11553:1 11559:1 11560:1 11599:1 11608:1 11609:2 11692:2 11705:1 11706:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:2 11776:1 11780:1 11797:1 11807:5 11845:1 11874:2 11881:1 11882:1 11888:1 11895:1 11900:2 11909:3 11922:1 11954:1 11966:2 11969:1 11976:2 11982:1 11987:2 11992:1 12002:4 12023:1 12045:2 12050:1 12055:1 12064:1 12065:1 12067:2 12068:1 12069:1 12070:1 12074:2 12081:1 12089:3 12121:1 12125:2 12136:1 12144:1 12149:2 12156:1 12157:1 12168:2 12201:1 12208:1 12209:1 12264:2 12268:1 12269:2 12279:1 12282:1 12301:1 12321:1 12331:1 12339:1 12341:2 12355:1 12356:1 12365:1 12374:1 12396:1 12461:1 12478:1 12479:6 12504:1 12507:1 12508:1 12522:3 12529:2 12535:1 12540:2 12543:2 12546:1 12565:1 12583:2 12598:1 12605:1 12610:1 12623:4 12656:1 12676:2 12683:1 12721:1 12723:1 12726:2 12737:1 12773:1 12791:1 12808:1 12812:1 12815:1 12818:1 12837:1 12855:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13001:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13090:1 13111:1 13112:1 13114:2 13122:1 13145:1 13163:1 13174:5 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13411:1 13416:1 13481:1 13482:1 13492:2 13494:4 13498:2 13514:1 13520:1 13522:1 13523:1 13539:1 13543:5 13551:1 13573:1 13582:2 13619:1 13645:1 13647:1 13656:2 13658:1 13665:1 13681:2 13708:3 13720:1 13727:2 13752:1 13783:1 13792:1 13804:1 13843:1 13852:1 13876:1 13879:1 13886:1 13930:1 13962:1 13969:4 13979:1 13984:1 14008:1 14013:1 14016:2 14020:7 14021:1 14022:1 14038:2 14040:1 14062:2 14083:2 14090:1 14100:1 14101:1 14111:2 14115:1 14119:2 14138:1 14145:1 14151:3 14158:2 14161:1 14165:1 14166:4 14170:2 14174:1 14221:1 14222:1 14223:1 14234:1 14252:1 14262:2 14273:2 14275:1 14282:1 14300:6 14305:1 14321:3 14334:1 14340:2 14341:1 14347:1 14360:1 14368:1 14376:2 14384:1 14385:1 14414:1 14431:1 14445:1 14456:1 14458:1 14490:1 14491:2 14492:1 14494:1 14495:4 14527:1 14535:1 14553:2 14562:1 14612:1 14661:1 14663:1 14678:1 14679:2 14682:1 14686:2 14704:2 14712:1 14716:1 14729:1 14735:1 14767:1 14769:1 14777:1 14797:1 14808:1 14833:1 14836:2 14844:1 14852:1 14863:2 14870:2 14873:2 14881:1 14884:1 14899:1 14918:4 14933:1 14945:1 14951:1 14959:4 14965:1 15016:1 15032:1 15055:1 15065:1 15067:1 15070:1 15090:1 15092:2 15121:1 15137:1 15142:4 15143:1 15146:1 15149:1 15155:2 15156:1 15178:2 15218:1 15232:1 15240:3 15253:1 15254:1 15267:1 15268:1 15269:2 15271:1 15279:1 15310:1 15382:1 15385:1 15393:1 15410:1 15411:2 15416:3 15423:2 15432:1 15435:1 15439:1 15456:1 15490:1 15498:1 15503:2 15537:1 15560:1 15577:1 15588:1 15603:2 15615:1 15628:1 15652:1 15675:1 15682:1 15706:1 15708:2 15710:1 15717:1 15725:1 15726:2 15728:2 15730:1 15741:1 15767:1 15807:2 15820:1 15823:1 15831:1 15892:1 15911:1 15920:1 15931:2 15968:1 15981:1 15993:1 16010:1 16034:1 16040:1 16048:1 16078:4 16085:1 16089:1 16091:1 16094:1 16097:3 16104:1 16110:1 16117:2 16118:1 16121:1 16129:3 16138:1 16145:2 16158:4 16166:1 16180:1 16183:2 16210:1 16224:1 16234:2 16254:1 16259:2 16304:2 16315:1 16325:1 16344:1 16363:1 16389:1 16391:3 16402:1 16421:2 16449:1 16455:1 16458:1 16479:1 16480:1 16481:1 16492:2 16505:1 16508:3 16509:1 16515:1 16518:1 16519:1 16521:1 16552:4 16559:1 16570:2 16620:1 16622:1 16656:1 16659:1 16673:3 16680:1 16682:2 16684:1 16695:1 16697:1 16699:1 16715:1 16738:1 16763:1 16771:1 16777:1 16780:1 16798:1 16800:2 16805:2 16821:1 16852:1 16884:1 16885:1 16900:2 16919:4 16930:1 16948:1 16952:1 16969:1 16981:1 17008:1 17026:1 17035:3 17048:1 17067:1 17069:1 17083:1 17088:1 17110:1 17112:2 17118:1 17187:1 17190:1 17254:1 17270:1 17293:4 17305:1 17319:1 17351:1 17355:1 17357:1 17368:1 17370:1 17384:1 17441:1 17449:1 17478:1 17481:1 17509:1 17544:2 17560:1 17570:1 17572:1 17597:1 17615:1 17627:1 17637:2 17647:1 17663:1 17666:1 17669:1 17673:1 17687:1 17727:1 17730:1 17734:3 17763:1 17774:3 17811:1 17866:2 17887:1 17888:1 17889:1 17894:1 17897:2 17900:1 17917:1 17946:1 17948:2 17953:1 17957:1 17962:1 17965:1 17983:1 17986:1 17990:1 18010:2 18048:4 18073:1 18098:1 18102:1 18103:1 18120:1 18127:2 18137:1 18141:1 18147:1 18150:1 18151:1 18166:1 18170:1 18174:1 18195:1 18196:1 18199:1 18213:1 18221:2 18226:1 18235:1 18242:1 18244:2 18251:1 18274:1 18286:3 18288:1 18290:1 18295:1 18297:1 18314:1 18318:1 18323:1 18329:1 18330:1 18342:2 18343:3 18345:1 18348:1 18359:1 18364:1 18369:2 18371:1 18372:1 18389:1 18392:1 18393:2 18394:1 18400:1 18422:1 18441:1 18447:3 18448:1 18460:2 18484:2 18492:1 18503:1 18517:1 18556:2 18563:1 18582:1 18600:3 18613:2 18629:1 18631:1 18668:2 18675:1 18692:1 18695:1 18697:4 18736:1 18754:2 18759:1 18773:1 18787:1 18789:1 18805:4 18811:1 18836:5 18853:1 18862:1 18875:1 18965:1 18971:1 18975:7 18984:1 18988:1 18990:1 18998:1 19000:1 19007:1 19011:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:2 19118:1 19123:1 19147:1 19157:1 19164:1 19184:2 19201:1 19208:1 19214:2403 19221:1 19239:1 19243:1 19260:1 19266:1 19269:1 19270:1 19279:1 19282:1 19293:1 19327:1 19416:1 19441:1 19443:1 19524:1 19543:1 19547:1 19566:1 19581:1 19590:1 19651:2 19720:1 19728:1 19734:2 19757:1 19766:1 19778:1 19792:1 19821:2 19837:1 19843:1 19845:4 19863:1 19892:1 19921:1 19924:1 19947:2 19959:1 19970:1 19979:2 19985:1 19997:1 20016:8 20018:1 20074:1 20108:1 20126:3 20135:1 20151:1 20166:4 20197:1 20202:2 20218:1 20223:1 20231:1 20233:2 20247:1 20252:2 20267:2 20276:2 20282:1 20285:1 20286:2 20288:1 20290:1 20306:1 20307:1 20321:2 20325:1 20327:1 20329:1 20338:1 20340:1 20341:2 20359:1 20387:1 20405:1 20407:3 20412:1 20413:1 20430:1 20475:1 20483:1 20504:1 20524:2 20528:2 20596:4 20605:1 20639:1 20660:4 20667:4 20672:1 20674:1 20677:1 20691:1 20701:2 20704:1 20709:1 20720:1 20740:2 20742:1 20749:1 20752:1 20757:1 20760:1 20761:1 20769:1 20784:1 20793:1 20799:1 20808:1 20810:1 20815:2 20829:2 20832:1 20848:1 20849:1 20864:1 20873:1 20954:1 20957:2 20961:1 20964:1 21001:3 21004:2 21012:1 21028:1 21030:1 21036:2 21037:1 21053:1 21063:1 21133:1 21159:1 21164:2 21202:1 21231:1 21235:1 21238:1 21239:1 21251:1 21253:1 21257:1 21264:1 21280:1 21282:1 21286:1 21289:1 21295:1 21328:2 21345:1 21356:1 21360:3 21366:1 21367:2 21372:1 21373:1 21386:2 21387:1 21404:2 21411:2 21414:2 21471:1 21474:1 21488:1 21489:1 21508:1 21519:1 21520:1 21545:1 21555:1 21563:2 21625:1 21637:1 21674:1 21680:1 21707:1 21712:1 21724:2 21758:1 21763:1 21790:2 21823:1 21828:1 21842:1 21845:2 21850:1 21863:1 21867:1 21883:1 21894:1 21895:2 21898:1 21927:1 21946:1 21951:1 21956:1 21958:1 21971:1 21978:1 21988:1 21992:1 22003:1 22020:1 22082:1 22104:2 22136:2 22139:1 22154:1 22161:3 22169:1 22171:1 22172:1 22178:2 22182:1 22191:7 22192:1 22206:3 22210:1 22218:1 22241:1 22242:2 22246:1 22247:1 22250:1 22252:1 22302:2 22323:1 22335:1 22342:1 22347:3 22352:1 22364:1 22369:1 22374:1 22387:1 22388:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22438:1 22442:1 22454:1 22484:1 22487:2 22506:1 22512:1 22520:1 22531:1 22532:1 22533:1 22558:1 22565:1 22576:2 22577:1 22598:2 22604:3 22616:1 22623:2 22640:1 22669:1 22676:1 22700:2 22706:1 22715:1 22722:1 22727:1 22733:1 22738:1 22757:1 22774:1 22777:4 22791:2 22798:1 22800:1 22802:2 22804:2 22807:2 22813:1 22820:1 22826:1 22833:1 22850:1 22854:1 22864:2 22883:1 22888:2 22926:2 22939:1 22942:1 22943:1 22957:2 22993:2 23013:3 23028:2 23037:1 23064:1 23080:1 23089:1 23090:1 23106:1 23109:2 23117:1 23129:1 23133:1 23140:1 23162:1 23166:1 23173:1 23181:1 23182:1 23185:1 23199:2 23211:1 23313:6 23317:1 23319:1 23320:1 23326:2 23332:1 23333:1 23334:1 23335:1 23367:1 23384:1 23401:2 23444:2 23466:2 23476:1 23480:1 23482:1 23492:1 23534:2 23559:1 23580:1 23593:2 23610:5 23630:1 23632:3 23635:2 23694:1 23704:1 23749:1 23767:1 23794:1 23807:3 23813:1 23819:2 23822:1 23830:2 23833:1 23836:2 23858:2 23874:1 23875:1 23882:1 23893:1 23897:2 23937:2 23959:1 23967:3 23976:1 23992:1 24019:1 24025:1 24044:1 24049:1 24058:1 24062:2 24066:3 24071:2 24090:1 24093:1 24107:1 24109:1 24115:3 24125:1 24160:2 24165:1 24190:1 24224:1 24236:2 24243:1 24257:1 24289:1 24294:1 24300:1 24332:1 24334:1 24350:1 24389:2 24394:1 24419:1 24450:1 24478:4 24480:1 24482:1 24483:1 24489:1 24519:1 24534:2 24547:1 24568:1 24573:1 24586:2 24588:1 24615:3 24624:1 24643:1 24653:1 24665:1 24667:1 24677:1 24679:1 24682:4 24686:1 24722:2 24733:1 24767:1 24775:2 24783:2 24831:1 24843:2 24848:5 24852:1 24855:2 24874:1 24888:6 24927:1 24947:1 24962:1 24982:1 24988:1 24993:1 24995:1 25006:1 25010:2 25011:2 25020:1 25024:1 25042:1 25053:1 25056:1 25057:1 25074:1 25088:1 25092:1 25095:1 25113:1 25114:1 25116:1 25120:1 25122:1 25130:1 25134:3 25137:1 25140:1 25154:2 25156:1 25171:1 25253:2 25261:1 25289:1 25292:1 25299:1 25321:1 25403:1 25423:1 25506:2 25532:1 25534:1 25538:3 25543:1 25553:1 25579:4 25592:3 25602:1 25613:2 25641:2 25643:1 25654:1 25660:1 25678:1 25706:1 25709:1 25715:1 25736:1 25748:1 25749:1 25770:1 25796:1 25799:3 25806:1 25807:2 25812:2 25826:1 25827:1 25832:1 25834:1 25843:2 25844:1 25848:2 25861:3 25862:1 25876:1 25879:1 25893:1 25905:1 25907:2 25908:1 25932:1 25934:1 25959:1 25963:1 25968:1 25979:1 26008:1 26009:5 26041:1 26042:1 26054:1 26064:2 26081:1 26129:1 26131:1 26142:1 26145:1 26148:1 26170:1 26198:1 26208:1 26226:1 26230:1 26263:1 26276:1 26279:1 26282:4 26286:1 26323:1 26345:2 26350:1 26356:1 26382:2 26387:1 26415:1 26437:1 26444:2 26446:1 26450:1 26451:1 26454:1 26456:1 26463:1 26475:2 26501:1 26529:3 26540:1 26564:2 26582:1 26605:7 26646:1 26652:2 26668:1 26684:1 26688:1 26722:1 26736:2 26751:1 26755:1 26757:1 26783:1 26790:2 26824:1 26855:1 26877:1 26878:1 26885:2 26887:1 26894:1 26932:4 26948:3 26953:1 26956:1 26980:1 26987:1 27007:1 27011:1 27017:1 27032:1 27057:1 27082:2 27088:2 27113:1 27120:1 27125:1 27151:1 27161:1 27185:2 27191:1 27245:1 27281:2 27307:1 27308:2 27310:3 27324:1 27352:1 27364:1 27370:1 27379:1 27380:1 27383:1 27398:1 27406:1 27425:1 27432:1 27458:1 27474:1 27483:3 27493:1 27499:1 27505:2 27528:1 27559:2 27565:1 27580:1 27582:1 27586:3 27642:1 27647:1 27650:2 27653:1 27676:1 27687:3 27697:1 27713:1 27714:1 27732:1 27763:2 27766:1 27770:1 27775:1 27777:1 27778:1 27783:2 27790:1 27812:5 27815:1 27816:1 27821:3 27822:1 27827:1 27828:2 27830:1 27833:1 27836:2 27841:1 27849:1 27858:1 27882:2 27898:1 27915:4 27923:1 27926:1 27927:1 27929:2 27930:1 27951:1 27962:1 27971:1 27972:1 28049:2 28059:1 28075:1 28085:1 28097:3 28100:2 28101:1 28116:2 28184:1 28190:1 28227:1 28232:1 28243:3 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28407:2 28411:1 28428:1 28429:1 28437:1 28442:4 28455:1 28467:1 28471:1 28481:1 28489:1 28502:2 28508:2 28516:11 28524:1 28539:1 28549:7 28569:6 28573:1 28599:1 28618:1 28625:1 28648:1 28656:5 28659:1 28661:1 28678:2 28684:5 28691:1 28715:1 28720:9 28727:1 28730:1 28733:1 28738:2 28755:1 28756:1 28789:1 28798:1 28801:2 28814:1 28826:1 28838:1 28857:1 28858:1 28860:1 28872:1 28913:2 28920:1 28921:1 28929:1 28942:1 28953:1 28957:1 28983:1 28987:1 28994:2 28998:1 28999:1 29036:1 29042:1 29050:1 29060:2 29062:4 29067:2 29073:1 29086:1 29103:1 29105:1 29107:1 29130:2 29150:1 29164:1 29167:1 29187:1 29212:2 29214:1 29229:1 29243:1 29249:2 29294:1 29297:2 29306:1 29316:1 29318:1 29341:1 29347:1 29369:1 29380:1 29390:2 29400:1 29463:1 29471:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:6 29586:2 29591:2 29603:1 29606:1 29616:1 29626:2 29645:1 29667:2 29685:4 29732:2 29740:1 29752:2 29759:3 29766:2 29768:2 29793:1 29802:1 29816:1 29822:4 29831:1 29854:1 29874:1 29883:1 29885:2
12 2:1 37:1 39:1 40:1 51:1 65:2 110:4 120:1 137:1 179:1 196:1 211:1 230:2 235:1 239:2 247:1 313:1 323:1 325:1 343:1 363:4 398:2 405:3 417:2 418:1 424:1 448:1 451:3 455:1 461:1 473:2 490:1 559:1 565:1 581:1 592:1 622:3 628:1 650:1 666:2 686:1 711:1 713:1 722:2 724:2 768:2 780:1 832:1 835:1 837:1 861:1 905:7 910:1 914:1 916:1 923:1 928:4 933:1 936:1 944:2 947:2 957:2 976:2 980:1 982:2 983:1 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1046:1 1054:1 1082:1 1083:1 1092:1 1099:1 1101:1 1105:1 1118:1 1129:1 1153:1 1163:1 1173:1 1187:1 1208:1 1209:2 1210:1 1220:2 1221:1 1229:3 1235:1 1245:1 1247:1 1258:2 1293:2 1303:1 1316:1 1318:1 1322:1 1342:2 1353:3 1381:1 1384:1 1386:1 1422:5 1465:1 1467:1 1468:5 1470:1 1473:8 1474:1 1475:1 1476:1 1493:1 1496:1 1517:1 1531:1 1536:1 1557:1 1558:2 1561:1 1571:1 1577:1 1580:1 1586:1 1593:2 1599:1 1617:1 1669:2 1671:2 1703:2 1707:1 1716:4 1727:2 1737:2 1738:1 1779:2 1785:1 1812:1 1827:1 1830:1 1845:1 1856:1 1860:2 1865:1 1869:3 1876:1 1880:1 1895:2 1898:1 1900:1 1907:1 1920:1 1924:1 1929:2 1935:1 1940:1 1950:2 1969:1 1976:1 2005:1 2037:1 2039:4 2041:1 2066:1 2081:1 2084:2 2115:1 2122:1 2134:1 2162:4 2212:1 2232:1 2239:6 2250:3 2252:1 2261:1 2263:3 2274:1 2287:1 2295:2 2296:2 2297:2 2299:1 2301:5 2302:2 2304:2 2307:2 2308:2 2312:1 2314:1 2316:2 2318:1 2323:1 2324:6 2325:1 2328:1 2331:1 2335:2 2338:2 2353:1 2370:1 2394:6 2403:2 2405:2 2419:1 2432:1 2440:1 2478:2 2483:1 2507:1 2527:1 2528:1 2533:1 2534:1 2562:1 2573:1 2589:2 2601:1 2604:4 2623:1 2627:1 2630:1 2656:1 2657:1 2665:1 2670:1 2731:1 2732:1 2755:1 2759:1 2787:4 2795:1 2802:1 2824:1 2826:1 2848:2 2860:4 2861:1 2871:2 2911:1 2921:1 2930:1 2941:1 2956:5 2962:1 2967:1 3017:3 3033:1 3037:1 3040:1 3049:1 3052:2 3060:1 3075:1 3081:1 3088:1 3095:1 3096:1 3111:1 3121:1 3128:1 3141:1 3143:2 3172:1 3175:1 3189:1 3204:1 3207:1 3208:3 3261:1 3272:1 3286:1 3287:1 3295:1 3302:1 3317:1 3324:2 3335:1 3340:2 3361:1 3376:1 3388:2 3402:8 3411:1 3418:1 3472:1 3478:1 3479:1 3494:1 3500:1 3507:1 3532:1 3534:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3644:1 3671:1 3679:1 3683:1 3689:1 3698:1 3704:1 3710:1 3713:1 3717:1 3728:1 3746:1 3757:4 3763:1 3766:1 3769:1 3773:1 3780:1 3784:1 3787:1 3828:1 3829:5 3858:2 3859:1 3877:2 3886:1 3896:1 3901:3 3905:1 3923:1 3941:1 3942:1 3960:1 4004:1 4010:3 4013:1 4024:1 4031:1 4042:3 4047:1 4076:1 4078:1 4090:1 4113:1 4115:1 4122:1 4132:1 4136:3 4140:3 4153:1 4186:1 4200:1 4209:1 4238:2 4257:1 4292:1 4298:1 4321:5 4329:3 4335:1 4344:1 4369:1 4390:5 4393:2 4396:1 4416:1 4421:1 4428:1 4454:1 4471:2 4480:2 4504:1 4509:1 4563:2 4593:1 4607:1 4608:1 4609:1 4630:3 4642:2 4667:1 4670:1 4673:1 4675:3 4689:1 4691:2 4744:1 4775:2 4789:1 4801:1 4806:1 4812:1 4814:1 4825:1 4844:4 4876:1 4877:1 4905:1 4910:1 4911:1 5010:1 5028:12 5031:3 5043:1 5048:1 5056:2 5067:1 5099:1 5138:6 5153:3 5154:2 5156:1 5160:2 5161:1 5164:1 5166:1 5168:1 5169:2 5175:3 5181:1 5183:3 5185:2 5186:2 5209:1 5217:1 5221:1 5253:4 5268:1 5273:1 5278:1 5289:1 5376:2 5385:1 5389:1 5436:1 5455:1 5457:1 5469:1 5483:3 5487:1 5498:3 5522:1 5532:6 5579:8 5614:1 5619:1 5644:1 5682:2 5740:1 5752:2 5765:1 5779:1 5788:2 5792:1 5805:1 5816:1 5824:1 5829:1 5845:1 5848:1 5854:1 5873:1 5890:1 5904:1 5922:1 5943:1 5944:3 5949:1 5950:1 5952:2 5953:1 5959:1 5960:1 5968:1 5982:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:2 6282:7 6303:1 6305:1 6311:1 6312:1 6316:2 6319:1 6334:2 6367:1 6388:1 6392:3 6404:2 6428:1 6430:1 6440:2 6458:1 6487:1 6519:4 6526:1 6530:1 6537:1 6543:1 6585:2 6602:4 6605:2 6609:2 6612:3 6613:1 6620:1 6621:1 6622:1 6628:1 6629:5 6630:10 6632:1 6633:3 6635:1 6650:1 6673:1 6683:2 6729:1 6752:1 6770:3 6780:1 6785:2 6814:1 6827:2 6856:2 6860:1 6869:1 6914:1 6927:1 6939:1 6949:2 6962:2 6967:1 6969:1 6974:1 6980:2 7001:1 7046:1 7049:1 7052:2 7055:1 7071:2 7089:1 7097:4 7123:1 7127:1 7129:1 7131:1 7134:1 7168:1 7169:1 7204:1 7208:1 7237:1 7270:1 7280:1 7293:1 7294:1 7306:1 7319:1 7331:1 7352:1 7404:6 7407:2 7417:1 7432:1 7459:1 7463:2 7501:1 7509:2 7515:1 7519:1 7520:3 7537:1 7542:1 7553:1 7616:1 7682:1 7706:3 7721:2 7722:1 7723:1 7747:5 7753:2 7762:4 7791:1 7801:1 7817:1 7827:1 7829:1 7831:1 7833:1 7870:2 7883:1 7893:1 7895:1 7911:2 7914:1 7915:1 7917:1 7952:11 7954:8 7960:1 7968:1 7970:1 7971:1 7975:2 7979:1 7987:1 8011:2 8029:36 8043:6 8044:3 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8113:1 8142:2 8164:1 8198:2 8212:1 8221:3 8237:2 8240:1 8244:1 8248:1 8298:1 8303:1 8338:1 8354:2 8403:1 8407:1 8408:1 8413:1 8422:1 8429:1 8490:2 8500:1 8509:1 8513:7 8523:1 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8641:1 8652:1 8658:1 8659:1 8666:1 8682:1 8688:1 8729:1 8735:1 8754:2 8761:1 8765:1 8773:1 8791:1 8798:1 8804:1 8840:1 8842:1 8884:3 8885:2 8887:1 8892:1 8894:1 8896:2 8899:1 8900:1 8901:1 8908:1 8927:1 8940:1 8945:3 8946:1 8961:1 8964:1 8979:1 8990:1 8992:2 8997:1 9016:1 9018:3 9023:1 9030:1 9033:1 9054:1 9061:1 9067:1 9101:1 9148:1 9152:1 9164:2 9169:1 9200:2 9209:1 9212:1 9227:1 9255:1 9308:1 9312:1 9313:1 9324:2 9351:1 9372:1 9380:1 9399:1 9400:2 9405:1 9417:1 9426:1 9430:1 9434:1 9441:1 9458:1 9474:1 9480:4 9481:1 9491:1 9495:1 9510:1 9517:2 9518:1 9521:1 9523:1 9536:1 9539:2 9544:1 9552:1 9563:1 9565:4 9567:3 9570:1 9572:1 9594:1 9607:1 9610:2 9613:2 9627:1 9635:1 9636:1 9637:2 9642:1 9647:1 9654:1 9657:2 9681:1 9694:1 9700:1 9702:1 9704:2 9707:1 9715:1 9717:1 9721:1 9725:1 9741:1 9765:7 9778:1 9791:1 9794:2 9798:1 9799:2 9810:1 9816:1 9820:1 9832:3 9844:1 9845:1 9857:1 9862:2 9881:1 9884:2 9885:1 9893:1 9904:2 9925:1 9950:1 9957:2 9961:1 9962:3 9966:1 9971:2 9997:8 10018:3 10019:1 10024:1 10026:1 10031:1 10060:1 10132:1 10154:1 10175:4 10198:1 10217:1 10232:1 10233:1 10234:5 10235:1 10239:1 10246:2 10247:1 10270:1 10283:1 10288:3 10302:1 10372:1 10379:4 10380:1 10381:2 10383:1 10384:1 10393:1 10409:1 10427:1 10439:1 10444:1 10502:1 10517:1 10519:1 10544:1 10549:1 10572:1 10576:1 10577:1 10622:1 10623:1 10629:1 10639:1 10652:2 10659:2 10672:1 10687:1 10757:1 10761:3 10762:1 10811:1 10816:3 10847:1 10853:1 10869:2 10871:2 10882:1 10884:1 10889:1 10891:4 10893:1 10895:1 10904:2 10957:1 10989:1 11001:1 11012:7 11019:1 11021:1 11048:3 11061:1 11077:1 11079:1 11082:2 11120:1 11172:1 11254:1 11284:2 11287:2 11289:5 11295:2 11311:1 11313:1 11315:1 11317:1 11331:1 11340:2 11348:1 11372:3 11400:1 11402:2 11418:3 11427:1 11430:2 11460:1 11469:1 11473:1 11496:1 11501:1 11515:1 11536:1 11550:1 11553:1 11559:1 11560:1 11599:1 11608:2 11609:2 11692:2 11705:1 11706:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:2 11776:1 11780:1 11797:1 11807:6 11845:1 11874:2 11881:1 11882:1 11888:1 11895:1 11900:2 11909:3 11922:1 11954:1 11966:2 11969:1 11976:3 11982:1 11987:2 11992:1 12002:4 12023:1 12045:2 12050:1 12055:1 12064:1 12065:1 12067:3 12068:1 12069:1 12070:1 12074:2 12078:1 12081:1 12089:3 12121:1 12125:2 12136:1 12144:1 12149:2 12156:1 12157:1 12168:2 12201:1 12208:1 12209:1 12264:2 12268:1 12269:2 12279:1 12282:1 12301:1 12321:1 12331:1 12339:2 12341:2 12355:1 12356:1 12365:1 12374:1 12396:1 12461:1 12478:2 12479:6 12504:1 12507:1 12508:1 12522:3 12529:2 12535:1 12540:2 12543:2 12546:1 12565:1 12583:3 12598:1 12605:1 12610:1 12623:4 12656:2 12676:2 12683:1 12721:1 12723:1 12726:2 12737:1 12773:1 12791:1 12808:1 12812:1 12815:1 12818:1 12837:1 12855:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13001:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13090:1 13111:1 13112:1 13114:2 13122:1 13145:1 13163:1 13174:5 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13411:1 13416:1 13430:1 13481:1 13482:1 13492:2 13494:4 13498:3 13514:1 13520:1 13522:1 13523:1 13539:1 13543:5 13551:1 13573:1 13582:2 13619:1 13645:1 13647:1 13656:2 13658:1 13665:1 13681:2 13692:1 13708:3 13720:1 13727:2 13752:1 13783:1 13792:1 13804:1 13843:1 13852:1 13876:1 13879:1 13886:1 13930:1 13962:1 13969:4 13979:1 13984:1 14008:1 14013:1 14016:2 14020:7 14021:1 14022:1 14038:2 14040:1 14062:2 14083:2 14090:1 14100:1 14101:1 14111:2 14115:1 14119:2 14138:1 14145:1 14151:3 14158:2 14161:1 14165:1 14166:4 14170:2 14174:2 14221:1 14222:1 14223:1 14234:1 14252:1 14262:2 14273:2 14275:1 14282:1 14300:6 14305:1 14321:3 14334:1 14340:2 14341:1 14347:1 14360:1 14368:1 14376:2 14384:1 14385:2 14414:1 14431:1 14445:1 14456:1 14458:1 14490:1 14491:2 14492:1 14494:1 14495:4 14527:1 14535:1 14553:2 14562:1 14612:1 14661:1 14663:1 14678:1 14679:2 14682:1 14686:2 14704:2 14712:1 14716:1 14729:1 14735:1 14767:1 14769:1 14777:1 14797:1 14808:1 14833:1 14836:2 14844:1 14852:1 14863:2 14870:2 14873:2 14881:1 14884:1 14899:1 14918:4 14933:1 14945:1 14951:1 14959:4 14965:1 15016:1 15032:1 15055:1 15065:1 15067:1 15070:1 15090:1 15092:2 15121:1 15137:1 15142:4 15143:1 15146:1 15149:1 15155:2 15156:1 15178:3 15204:1 15218:1 15232:1 15240:3 15253:1 15254:1 15267:1 15268:1 15269:2 15271:2 15279:1 15310:1 15382:1 15385:1 15393:1 15410:1 15411:2 15416:3 15423:3 15432:1 15435:1 15439:1 15456:1 15490:1 15498:1 15503:2 15537:1 15560:1 15577:1 15588:1 15603:2 15615:1 15628:1 15652:1 15675:1 15682:2 15706:1 15708:2 15710:1 15717:1 15725:1 15726:2 15728:2 15730:1 15741:1 15767:1 15807:3 15820:1 15823:1 15831:1 15892:1 15911:1 15920:1 15931:2 15968:1 15981:1 15993:1 16010:1 16034:1 16040:1 16048:1 16078:4 16085:1 16089:1 16091:1 16094:1 16097:3 16104:1 16110:1 16117:2 16118:1 16121:1 16129:3 16138:1 16145:2 16158:4 16166:1 16180:1 16183:2 16210:1 16224:1 16234:2 16254:1 16259:2 16304:2 16315:1 16325:1 16344:1 16363:1 16389:1 16391:3 16402:1 16421:2 16449:1 16455:1 16458:1 16479:1 16480:1 16481:1 16492:2 16505:1 16508:3 16509:1 16515:1 16518:1 16519:1 16521:1 16552:5 16559:1 16570:2 16620:1 16622:1 16656:1 16659:1 16673:3 16680:1 16682:2 16684:1 16695:1 16697:1 16699:1 16715:1 16738:1 16763:1 16771:1 16777:1 16780:2 16798:1 16800:2 16805:2 16821:1 16852:1 16884:1 16885:1 16900:3 16919:4 16930:1 16948:1 16952:1 16969:1 16981:1 17008:1 17026:1 17035:3 17048:1 17067:1 17069:1 17083:1 17088:1 17110:1 17112:2 17118:2 17187:1 17190:1 17254:1 17270:1 17293:4 17305:1 17319:1 17351:1 17355:1 17357:1 17368:1 17370:1 17384:1 17441:1 17449:1 17478:1 17481:1 17509:1 17544:2 17560:1 17561:1 17570:1 17572:1 17597:1 17614:1 17615:1 17627:1 17637:2 17647:1 17663:1 17666:1 17669:1 17673:1 17687:1 17727:1 17730:1 17734:3 17763:1 17774:3 17811:1 17866:2 17887:1 17888:1 17889:1 17894:1 17897:2 17900:1 17917:1 17946:1 17948:3 17953:1 17957:1 17962:1 17965:1 17983:1 17986:2 17990:1 18010:2 18048:4 18073:1 18098:1 18102:1 18103:1 18120:1 18127:2 18137:1 18141:1 18147:1 18150:1 18151:1 18166:1 18170:1 18174:1 18195:1 18196:1 18199:2 18201:1 18213:1 18221:2 18226:1 18235:1 18242:1 18244:2 18251:1 18274:1 18286:3 18288:1 18290:1 18295:1 18297:1 18314:1 18318:1 18323:1 18329:1 18330:1 18342:2 18343:3 18345:1 18348:1 18359:1 18364:1 18369:2 18371:1 18372:1 18389:1 18392:1 18393:2 18394:1 18400:2 18422:1 18441:1 18447:4 18448:1 18460:3 18484:2 18492:1 18503:1 18517:1 18556:2 18563:1 18582:1 18600:3 18613:2 18629:1 18631:1 18668:2 18675:1 18692:1 18695:1 18697:4 18736:1 18754:3 18759:1 18773:1 18787:1 18789:1 18805:4 18811:1 18836:5 18853:1 18862:1 18875:1 18965:1 18971:1 18975:7 18984:1 18988:1 18990:1 18998:1 19000:1 19007:1 19011:1 19018:1 19023:1 19034:1 19037:1 19059:1 19067:2 19118:1 19123:1 19132:1 19147:1 19157:1 19164:1 19184:2 19201:1 19208:1 19214:2463 19221:1 19239:1 19243:1 19260:1 19266:1 19269:1 19270:1 19279:1 19282:1 19293:1 19327:1 19416:1 19441:1 19443:1 19462:1 19524:1 19543:1 19547:1 19566:1 19581:1 19590:1 19651:2 19720:1 19728:1 19734:2 19757:1 19766:1 19778:1 19792:1 19821:3 19837:1 19843:1 19845:4 19863:1 19892:1 19921:2 19924:1 19947:2 19959:1 19970:1 19979:3 19985:1 19997:1 20016:8 20018:1 20074:1 20108:1 20126:3 20135:1 20151:1 20166:4 20197:1 20202:2 20218:1 20223:1 20231:1 20233:2 20247:1 20252:2 20267:2 20276:2 20282:1 20285:1 20286:2 20288:1 20290:1 20306:1 20307:1 20321:2 20325:1 20327:1 20329:1 20338:1 20340:1 20341:2 20359:3 20387:1 20405:1 20406:1 20407:3 20412:1 20413:1 20430:1 20475:1 20483:1 20504:1 20524:2 20528:2 20596:4 20605:1 20629:1 20639:2 20660:4 20667:4 20672:1 20674:1 20677:1 20691:1 20701:2 20704:1 20709:1 20720:1 20740:2 20742:1 20749:1 20752:1 20757:1 20760:1 20761:1 20769:1 20784:1 20793:1 20799:1 20808:1 20810:1 20815:2 20829:2 20832:2 20848:1 20849:1 20864:1 20873:1 20954:1 20957:2 20961:1 20964:1 21001:3 21004:2 21012:1 21028:1 21030:1 21036:2 21037:1 21053:1 21063:1 21133:1 21159:1 21164:2 21202:1 21231:1 21235:1 21238:1 21239:1 21251:1 21253:1 21257:1 21264:1 21280:1 21282:1 21286:1 21289:1 21295:1 21328:2 21345:1 21356:1 21360:3 21363:1 21366:1 21367:3 21372:1 21373:1 21386:2 21387:1 21404:2 21411:2 21414:2 21471:1 21474:1 21488:1 21489:1 21508:1 21519:1 21520:1 21545:1 21555:1 21563:3 21625:1 21637:1 21674:1 21680:1 21707:1 21712:1 21724:2 21758:1 21763:1 21790:2 21823:1 21828:1 21842:1 21845:2 21850:1 21863:1 21867:1 21883:1 21894:1 21895:2 21898:1 21927:1 21946:1 21950:1 21951:1 21956:1 21958:1 21971:1 21978:1 21988:1 21992:1 22003:1 22020:1 22082:1 22104:3 22136:2 22139:1 22154:1 22161:3 22169:1 22171:1 22172:1 22178:2 22182:1 22191:7 22192:1 22206:3 22210:1 22218:1 22241:1 22242:2 22246:1 22247:1 22250:1 22252:1 22302:2 22323:1 22335:1 22342:1 22347:3 22352:1 22364:1 22369:1 22374:1 22387:1 22388:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22438:1 22442:1 22454:1 22484:1 22487:2 22506:1 22512:1 22520:1 22531:1 22532:1 22533:1 22558:1 22565:1 22576:2 22577:1 22598:2 22604:3 22616:1 22623:2 22640:1 22669:1 22676:1 22700:2 22706:1 22715:1 22722:1 22727:1 22733:1 22738:1 22757:1 22759:1 22771:1 22774:1 22777:4 22791:2 22798:1 22800:1 22802:2 22804:2 22807:2 22813:1 22820:1 22826:1 22833:1 22850:1 22854:1 22864:2 22883:1 22888:2 22926:2 22939:1 22942:1 22943:1 22957:2 22993:2 23013:3 23028:3 23037:1 23064:1 23080:1 23089:1 23090:1 23106:1 23109:2 23117:1 23129:1 23133:1 23140:1 23162:1 23166:1 23173:1 23181:1 23182:1 23185:1 23199:2 23211:1 23313:6 23317:1 23319:1 23320:1 23326:2 23332:1 23333:1 23334:1 23335:1 23367:1 23384:1 23401:2 23444:2 23466:2 23476:1 23480:1 23482:1 23492:1 23534:2 23559:1 23580:1 23593:2 23610:5 23630:1 23632:3 23635:2 23694:1 23704:1 23749:1 23767:1 23794:1 23807:3 23813:1 23819:2 23822:1 23830:2 23833:1 23836:3 23858:2 23874:1 23875:1 23882:1 23893:1 23897:2 23937:2 23959:1 23967:3 23976:1 23992:1 24019:1 24025:2 24044:1 24049:1 24058:1 24062:2 24066:3 24071:2 24090:1 24093:1 24107:1 24109:1 24115:3 24125:1 24160:2 24165:1 24190:1 24224:1 24236:2 24243:1 24257:1 24289:1 24294:1 24300:1 24332:1 24334:1 24350:1 24389:2 24394:1 24419:1 24450:1 24478:5 24480:1 24482:1 24483:1 24489:1 24519:1 24534:2 24547:1 24568:1 24573:1 24586:2 24588:1 24615:3 24624:1 24643:1 24653:1 24665:2 24667:1 24677:1 24679:1 24682:4 24686:3 24722:2 24733:1 24767:1 24775:2 24783:2 24831:1 24843:2 24848:5 24852:1 24855:2 24874:1 24888:6 24927:1 24947:1 24962:1 24982:1 24988:1 24993:1 24995:1 25006:1 25010:2 25011:2 25020:1 25024:1 25042:1 25053:1 25056:1 25057:1 25074:1 25088:1 25092:1 25095:1 25113:1 25114:1 25116:1 25120:1 25122:1 25130:1 25134:3 25137:1 25140:1 25154:2 25156:1 25163:1 25171:1 25253:2 25261:1 25289:1 25292:1 25299:1 25321:1 25396:1 25403:1 25423:1 25506:3 25532:1 25534:1 25538:3 25543:1 25553:1 25579:4 25592:3 25602:1 25613:2 25641:2 25643:1 25654:1 25660:2 25678:1 25706:1 25709:1 25715:1 25736:1 25748:1 25749:1 25770:1 25796:1 25799:4 25806:1 25807:2 25812:2 25826:1 25827:1 25829:1 25832:1 25834:1 25843:2 25844:1 25848:2 25855:1 25861:3 25862:1 25876:1 25879:1 25893:1 25905:1 25907:2 25908:1 25921:1 25932:1 25934:1 25959:1 25963:1 25968:1 25979:1 26008:1 26009:5 26041:1 26042:1 26054:1 26064:2 26081:1 26129:1 26131:1 26142:1 26145:1 26148:1 26170:1 26198:2 26208:1 26226:1 26230:1 26263:1 26276:1 26279:1 26282:4 26286:1 26323:1 26345:2 26350:1 26356:1 26382:2 26387:1 26415:1 26437:1 26444:2 26446:1 26450:1 26451:1 26454:1 26456:1 26463:1 26475:2 26501:1 26529:3 26540:1 26564:2 26582:1 26605:7 26646:1 26652:2 26668:1 26684:1 26688:1 26722:1 26736:3 26751:1 26755:1 26757:1 26769:1 26783:1 26790:2 26791:1 26824:1 26855:1 26877:1 26878:1 26885:2 26887:1 26894:1 26932:4 26948:3 26953:1 26956:1 26980:1 26987:1 27007:1 27011:1 27017:1 27032:1 27057:1 27082:2 27088:2 27113:1 27120:1 27125:1 27151:1 27161:1 27185:2 27191:1 27245:1 27281:2 27307:1 27308:2 27310:3 27324:1 27352:1 27364:1 27370:1 27379:1 27380:1 27383:1 27398:1 27406:1 27425:1 27432:1 27458:1 27474:1 27483:3 27493:1 27499:1 27505:2 27528:1 27559:2 27565:1 27580:1 27582:1 27586:3 27642:1 27647:1 27650:2 27653:2 27676:1 27687:3 27697:1 27713:1 27714:1 27732:1 27763:2 27766:1 27770:1 27775:1 27777:1 27778:1 27783:2 27790:1 27799:1 27812:5 27815:1 27816:1 27821:3 27822:1 27827:1 27828:2 27830:1 27833:1 27836:2 27841:2 27849:1 27858:1 27882:2 27898:1 27915:4 27923:1 27926:1 27927:1 27929:2 27930:1 27951:1 27962:1 27971:1 27972:1 28006:1 28049:2 28059:1 28075:1 28085:1 28097:3 28100:2 28101:1 28116:2 28184:1 28190:1 28227:1 28232:1 28243:3 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28407:2 28411:1 28428:1 28429:1 28437:1 28442:4 28455:1 28467:1 28471:1 28481:1 28489:1 28502:2 28508:2 28516:12 28524:1 28539:1 28549:7 28569:6 28573:1 28599:1 28618:1 28625:1 28648:1 28656:5 28659:1 28661:1 28678:4 28684:5 28691:2 28715:1 28720:12 28727:1 28730:1 28733:1 28738:2 28755:1 28756:1 28789:1 28798:1 28801:2 28814:1 28826:1 28838:1 28857:1 28858:1 28860:1 28872:1 28913:2 28920:1 28921:1 28929:1 28942:1 28953:1 28957:1 28983:1 28987:2 28994:2 28998:1 28999:1 29036:1 29042:1 29050:1 29060:2 29062:5 29067:2 29073:1 29086:1 29103:1 29105:1 29107:1 29130:2 29150:1 29164:1 29167:1 29187:1 29212:2 29214:1 29229:1 29243:1 29249:2 29294:1 29297:2 29306:2 29310:1 29316:1 29318:1 29341:1 29347:1 29369:1 29380:1 29390:2 29400:1 29463:1 29471:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:6 29586:2 29591:2 29603:1 29606:1 29616:1 29626:2 29645:1 29667:2 29685:4 29732:2 29740:1 29752:2 29759:3 29766:2 29768:2 29793:1 29802:1 29816:1 29822:4 29831:1 29854:1 29874:1 29883:1 29885:2
12 2:1 37:1 39:1 40:1 51:1 65:2 110:4 120:1 137:1 179:1 196:1 211:1 230:2 235:1 239:2 245:1 247:1 313:1 323:1 325:1 343:1 363:4 398:2 405:3 417:2 418:1 424:1 448:1 451:3 455:1 461:1 473:2 490:1 559:1 565:1 581:1 592:1 622:3 628:1 650:1 666:2 686:1 711:1 713:1 722:2 724:2 768:2 780:1 832:2 835:1 837:1 861:1 905:7 910:1 914:1 916:1 923:1 928:4 933:1 936:1 944:2 947:2 957:2 976:2 980:2 982:2 983:1 986:1 1006:1 1010:1 1016:1 1038:1 1040:1 1046:1 1054:1 1082:1 1083:1 1092:1 1099:1 1101:1 1105:1 1118:1 1129:1 1153:1 1163:1 1173:1 1187:1 1208:1 1209:2 1210:1 1220:2 1221:1 1229:3 1235:1 1241:1 1245:1 1247:1 1258:2 1293:2 1303:1 1316:1 1318:1 1322:1 1342:2 1353:3 1381:1 1384:1 1386:1 1422:6 1465:1 1467:1 1468:5 1470:1 1473:8 1474:1 1475:1 1476:1 1493:1 1496:1 1517:1 1531:1 1536:1 1557:1 1558:2 1561:1 1571:1 1577:1 1580:1 1586:1 1593:2 1599:1 1617:1 1669:2 1671:2 1703:2 1707:1 1716:4 1727:2 1737:2 1738:1 1779:2 1785:1 1812:1 1827:1 1830:1 1845:1 1856:1 1860:2 1865:1 1869:3 1876:1 1880:1 1895:2 1898:1 1900:1 1907:1 1920:1 1924:1 1929:2 1935:1 1940:1 1950:2 1969:1 1976:1 2005:1 2037:1 2039:4 2041:1 2066:1 2081:1 2084:3 2115:1 2122:1 2134:1 2162:4 2212:1 2232:1 2239:6 2250:3 2252:1 2261:1 2263:3 2274:1 2287:1 2295:2 2296:2 2297:2 2299:1 2301:5 2302:2 2304:2 2307:2 2308:2 2312:1 2314:1 2316:2 2318:1 2323:1 2324:6 2325:1 2328:1 2331:1 2335:2 2338:2 2353:1 2370:1 2394:6 2403:2 2405:2 2419:1 2432:1 2440:1 2478:2 2483:1 2507:1 2527:1 2528:1 2533:1 2534:1 2562:1 2573:1 2589:2 2601:1 2604:4 2623:1 2627:1 2630:1 2656:1 2657:1 2665:1 2670:1 2731:1 2732:1 2755:1 2759:1 2787:4 2795:1 2802:1 2816:2 2824:1 2826:1 2848:2 2860:4 2861:1 2871:2 2911:1 2921:1 2930:1 2941:1 2956:5 2962:1 2967:1 3017:5 3033:1 3037:1 3040:1 3049:1 3052:2 3060:1 3075:1 3081:1 3088:1 3095:1 3096:1 3111:1 3121:1 3128:1 3141:1 3143:2 3172:1 3175:1 3189:1 3204:1 3207:1 3208:3 3261:1 3272:1 3286:1 3287:1 3295:1 3302:1 3317:1 3324:2 3335:1 3340:2 3361:1 3376:1 3388:2 3402:8 3411:1 3418:1 3472:1 3478:1 3479:1 3494:1 3500:1 3507:1 3532:1 3534:1 3546:1 3570:1 3572:1 3600:1 3606:1 3642:2 3644:1 3671:1 3679:1 3683:1 3689:1 3698:1 3704:1 3710:1 3713:1 3717:1 3728:1 3746:1 3757:4 3763:1 3766:1 3769:1 3773:1 3780:1 3784:1 3787:1 3828:1 3829:5 3858:2 3859:1 3877:2 3886:1 3896:1 3901:3 3905:1 3923:1 3941:1 3942:1 3960:1 4004:1 4010:3 4013:1 4024:1 4031:1 4042:3 4047:1 4076:1 4078:1 4090:1 4113:1 4115:1 4122:1 4132:1 4136:3 4140:3 4153:1 4186:1 4200:1 4209:1 4231:1 4238:2 4257:1 4292:1 4298:1 4321:5 4329:3 4335:1 4344:1 4369:1 4372:1 4390:5 4393:2 4396:1 4416:1 4421:1 4428:1 4436:2 4454:1 4471:2 4480:2 4504:1 4509:1 4518:1 4563:2 4579:1 4593:1 4607:1 4608:1 4609:1 4630:3 4642:2 4667:1 4670:1 4673:1 4675:3 4689:1 4691:2 4744:1 4775:2 4789:1 4801:1 4806:1 4812:1 4814:1 4825:1 4844:4 4876:1 4877:1 4905:1 4910:1 4911:1 5010:1 5028:12 5031:3 5043:1 5048:1 5056:2 5067:1 5080:2 5099:1 5138:6 5153:3 5154:2 5156:1 5160:2 5161:1 5164:1 5166:1 5168:1 5169:2 5175:3 5181:1 5183:3 5185:2 5186:2 5209:1 5217:1 5221:1 5253:4 5268:1 5273:1 5278:1 5289:1 5376:2 5385:1 5389:1 5436:1 5455:1 5457:1 5469:1 5483:3 5487:1 5498:3 5522:1 5532:6 5557:1 5579:8 5614:1 5619:1 5644:1 5682:2 5740:1 5752:2 5765:1 5779:1 5788:2 5792:1 5805:1 5816:1 5824:1 5829:1 5845:1 5848:1 5854:1 5873:1 5890:1 5904:1 5922:1 5943:1 5944:3 5949:1 5950:1 5952:2 5953:1 5959:1 5960:1 5966:1 5968:1 5982:1 5992:1 6008:2 6011:1 6132:1 6144:1 6171:1 6182:1 6223:1 6281:2 6282:8 6303:1 6305:1 6311:1 6312:1 6316:2 6319:1 6324:1 6334:2 6367:1 6388:1 6392:3 6404:2 6428:1 6430:1 6440:2 6458:1 6487:1 6519:4 6526:1 6530:1 6537:1 6543:1 6584:1 6585:2 6602:4 6605:2 6609:2 6612:3 6613:1 6620:1 6621:1 6622:1 6628:1 6629:5 6630:10 6632:1 6633:3 6635:1 6650:1 6673:1 6683:2 6729:1 6752:1 6770:3 6780:1 6785:2 6814:1 6827:2 6856:2 6860:1 6869:1 6914:1 6927:1 6939:1 6941:1 6949:2 6962:2 6967:1 6969:1 6974:1 6980:2 7001:1 7046:1 7049:1 7052:2 7055:1 7071:2 7089:1 7097:4 7123:1 7127:1 7129:1 7131:1 7134:1 7168:1 7169:1 7204:1 7208:1 7237:1 7256:1 7270:1 7280:1 7293:1 7294:1 7296:1 7306:1 7319:1 7331:1 7352:1 7404:6 7407:2 7417:1 7432:1 7459:1 7463:2 7501:1 7509:3 7515:1 7519:1 7520:3 7537:1 7542:1 7553:1 7616:1 7682:1 7706:3 7721:3 7722:1 7723:1 7747:5 7753:2 7762:4 7770:1 7790:1 7791:1 7801:1 7817:1 7827:1 7829:1 7831:1 7833:1 7870:2 7883:1 7893:1 7895:1 7911:2 7914:1 7915:1 7917:1 7952:12 7954:8 7960:1 7968:1 7970:1 7971:1 7975:2 7979:1 7987:1 8011:2 8029:36 8043:6 8044:5 8050:2 8054:1 8061:1 8082:1 8098:1 8108:2 8109:2 8113:1 8142:2 8164:1 8198:2 8212:1 8219:2 8221:3 8237:2 8240:1 8244:1 8248:1 8289:1 8298:1 8303:1 8338:1 8354:2 8403:1 8407:1 8408:1 8413:1 8422:1 8429:1 8490:2 8500:1 8509:1 8513:7 8523:1 8543:1 8548:1 8552:1 8561:1 8598:1 8614:1 8641:1 8652:1 8658:1 8659:1 8666:1 8682:1 8688:1 8729:1 8735:1 8754:3 8761:1 8765:1 8773:1 8791:1 8798:1 8804:1 8840:1 8842:1 8864:1 8884:3 8885:2 8887:1 8890:1 8892:1 8894:1 8896:2 8897:1 8899:1 8900:1 8901:1 8908:1 8927:1 8940:1 8945:3 8946:1 8961:1 8964:1 8979:2 8990:1 8992:2 8997:1 9016:1 9018:3 9023:1 9030:1 9033:1 9054:1 9061:1 9067:1 9101:1 9137:1 9148:1 9152:1 9164:2 9169:1 9200:2 9209:1 9212:1 9227:1 9255:1 9302:1 9308:1 9312:1 9313:1 9324:2 9351:1 9372:1 9380:1 9399:1 9400:2 9405:1 9417:1 9426:1 9430:1 9434:1 9441:1 9458:1 9474:1 9480:4 9481:1 9491:1 9495:1 9510:1 9517:2 9518:1 9521:1 9523:1 9536:1 9539:2 9544:1 9552:1 9563:1 9565:4 9567:3 9570:1 9572:1 9594:1 9604:1 9607:1 9610:2 9613:2 9627:1 9635:1 9636:1 9637:2 9642:1 9647:1 9654:1 9657:2 9681:1 9694:1 9700:1 9702:1 9704:2 9707:1 9715:1 9717:1 9721:1 9725:1 9741:1 9765:7 9778:1 9791:1 9794:2 9798:1 9799:2 9810:1 9816:1 9820:1 9832:3 9844:1 9845:1 9857:1 9862:2 9881:1 9884:2 9885:1 9893:1 9904:2 9925:1 9950:1 9957:2 9961:1 9962:3 9966:1 9971:2 9997:8 10018:3 10019:1 10024:1 10026:1 10031:1 10060:1 10132:1 10154:2 10175:4 10198:1 10217:1 10232:1 10233:1 10234:5 10235:1 10239:1 10246:2 10247:1 10270:1 10283:1 10288:3 10302:1 10372:1 10379:4 10380:1 10381:2 10383:1 10384:1 10393:1 10409:1 10427:1 10439:1 10444:1 10451:1 10502:1 10517:1 10519:1 10544:1 10549:1 10572:1 10576:1 10577:1 10622:1 10623:1 10629:1 10639:1 10652:2 10659:2 10672:1 10687:1 10757:1 10761:3 10762:1 10784:1 10811:1 10816:3 10847:1 10853:1 10869:2 10871:3 10882:1 10884:1 10889:1 10891:5 10893:1 10895:1 10904:2 10957:1 10989:1 11001:1 11012:7 11019:1 11021:1 11048:3 11061:1 11077:1 11079:1 11082:2 11120:1 11172:1 11254:1 11284:2 11287:3 11289:5 11295:2 11311:1 11313:1 11315:1 11317:1 11331:1 11340:2 11348:1 11372:3 11400:1 11402:2 11418:3 11427:1 11430:2 11460:1 11469:1 11473:1 11496:1 11501:1 11515:1 11536:1 11550:1 11553:1 11559:1 11560:1 11599:1 11608:2 11609:2 11624:1 11692:2 11705:1 11706:1 11707:1 11733:1 11739:1 11760:1 11769:1 11772:2 11776:1 11780:1 11797:1 11807:6 11845:1 11874:2 11881:1 11882:1 11888:1 11895:1 11900:2 11909:3 11922:1 11954:1 11966:2 11969:1 11976:3 11982:1 11987:2 11992:1 12002:4 12023:1 12045:2 12050:1 12055:1 12064:1 12065:1 12067:3 12068:1 12069:1 12070:1 12074:2 12078:1 12081:1 12089:3 12121:1 12125:2 12136:1 12144:1 12149:2 12156:1 12157:1 12168:2 12201:1 12208:1 12209:1 12264:2 12268:1 12269:2 12279:1 12282:1 12301:1 12321:1 12331:1 12339:2 12341:2 12355:1 12356:1 12365:1 12374:1 12396:1 12461:1 12478:2 12479:6 12504:1 12507:1 12508:1 12522:3 12529:2 12535:1 12540:2 12543:2 12546:1 12565:1 12583:3 12598:1 12605:1 12610:1 12623:4 12639:2 12656:3 12676:2 12683:1 12721:1 12723:1 12726:2 12737:1 12773:1 12791:1 12808:1 12812:1 12815:1 12818:1 12837:1 12842:1 12855:1 12857:1 12862:1 12937:2 12951:1 12954:1 12993:1 13000:1 13001:1 13002:1 13020:1 13081:2 13084:1 13087:2 13089:1 13090:1 13111:1 13112:1 13114:2 13122:1 13145:1 13163:1 13174:5 13183:2 13188:1 13261:1 13263:1 13301:1 13328:1 13360:1 13389:1 13391:1 13411:1 13416:1 13430:1 13481:1 13482:1 13492:2 13494:4 13498:3 13514:1 13520:1 13522:1 13523:1 13539:1 13543:5 13551:1 13563:1 13573:1 13582:2 13619:1 13645:1 13647:1 13656:2 13658:1 13665:1 13681:2 13692:1 13708:3 13720:1 13727:2 13752:1 13783:1 13792:1 13804:1 13843:1 13852:1 13876:1 13879:1 13886:1 13930:1 13962:1 13969:4 13979:1 13984:1 14008:1 14013:1 14016:2 14020:7 14021:1 14022:1 14038:2 14040:1 14062:2 14083:3 14090:1 14100:1 14101:1 14111:2 14115:1 14119:2 14138:1 14145:1 14151:3 14158:2 14161:1 14165:1 14166:4 14170:2 14174:2 14221:1 14222:1 14223:1 14234:1 14252:1 14262:2 14273:2 14275:1 14282:1 14300:6 14305:1 14321:3 14334:1 14340:2 14341:1 14347:1 14360:1 14368:1 14376:2 14384:1 14385:2 14406:1 14414:1 14431:1 14445:1 14456:1 14458:1 14490:1 14491:2 14492:1 14494:1 14495:4 14527:1 14535:1 14553:2 14562:1 14612:1 14661:1 14663:1 14678:1 14679:2 14682:1 14686:2 14697:1 14704:2 14712:1 14716:1 14729:1 14735:1 14767:1 14769:1 14777:1 14797:1 14808:1 14833:1 14836:2 14844:1 14852:1 14863:2 14870:2 14873:2 14881:1 14884:1 14899:1 14918:4 14933:1 14945:1 14951:1 14959:4 14965:1 15016:1 15032:1 15047:1 15055:1 15065:1 15067:1 15070:1 15090:1 15092:2 15121:1 15137:1 15142:4 15143:1 15146:1 15149:1 15155:2 15156:1 15178:3 15204:1 15218:1 15232:1 15240:3 15253:1 15254:1 15267:1 15268:1 15269:2 15271:2 15279:1 15310:1 15327:2 15382:1 15385:1 15393:1 15410:1 15411:2 15416:3 15423:3 15432:1 15435:1 15439:1 15456:1 15490:1 15498:1 15503:2 15537:1 15560:1 15577:1 15588:1 15603:2 15615:1 15628:1 15652:1 15675:1 15682:2 15706:1 15708:2 15710:1 15717:1 15725:1 15726:2 15728:2 15730:1 15741:1 15767:1 15807:3 15820:1 15823:1 15831:1 15892:1 15911:1 15920:1 15931:2 15968:1 15981:1 15993:1 16010:1 16034:1 16040:1 16048:1 16078:4 16085:1 16089:1 16091:1 16094:1 16097:3 16104:1 16110:1 16117:2 16118:1 16121:1 16129:3 16138:1 16145:2 16158:4 16166:1 16180:1 16183:2 16195:1 16210:1 16224:1 16234:2 16254:1 16259:2 16304:2 16315:1 16325:1 16344:1 16363:1 16389:1 16391:3 16402:1 16421:2 16449:1 16455:1 16458:1 16479:1 16480:1 16481:1 16492:2 16505:1 16508:4 16509:1 16515:1 16518:1 16519:1 16521:1 16552:5 16559:1 16570:2 16620:1 16622:1 16656:1 16659:1 16673:3 16680:1 16682:2 16684:1 16695:1 16697:1 16699:1 16715:1 16738:1 16763:1 16771:1 16777:1 16780:2 16798:1 16800:2 16805:2 16821:1 16852:1 16884:1 16885:1 16900:3 16919:4 16930:1 16948:1 16952:1 16969:1 16981:1 17008:1 17026:1 17035:3 17048:1 17067:1 17069:1 17083:1 17088:1 17110:1 17112:2 17118:2 17128:1 17187:1 17190:2 17254:1 17270:1 17293:4 17305:1 17319:1 17351:1 17355:1 17357:1 17368:1 17370:1 17384:1 17441:1 17449:1 17478:1 17481:1 17509:1 17544:2 17560:1 17561:1 17570:1 17572:1 17597:1 17614:1 17615:1 17622:1 17627:1 17637:2 17647:1 17663:1 17666:1 17669:1 17673:1 17687:1 17727:1 17730:1 17734:3 17763:1 17774:3 17811:1 17866:2 17887:1 17888:1 17889:1 17894:1 17897:2 17900:1 17917:1 17946:1 17948:3 17953:1 17957:1 17962:1 17965:1 17983:1 17986:2 17990:1 18010:2 18048:4 18073:1 18098:1 18102:1 18103:1 18120:1 18127:2 18137:1 18141:1 18143:2 18147:1 18150:1 18151:1 18166:1 18170:1 18174:1 18195:1 18196:1 18199:2 18201:1 18213:1 18221:2 18226:1 18235:1 18242:1 18244:2 18251:1 18274:1 18286:3 18288:1 18290:1 18295:1 18297:1 18314:1 18318:1 18323:1 18329:1 18330:1 18342:2 18343:3 18345:1 18348:1 18359:1 18364:1 18369:2 18371:1 18372:1 18389:1 18392:1 18393:2 18394:1 18400:2 18422:1 18441:1 18442:1 18447:5 18448:1 18460:3 18484:2 18492:1 18503:1 18517:1 18556:2 18563:1 18582:1 18595:1 18600:3 18613:2 18629:1 18631:1 18668:2 18675:1 18692:1 18695:1 18697:4 18736:1 18754:3 18759:1 18773:1 18787:1 18789:1 18805:4 18811:1 18836:5 18853:1 18862:1 18872:1 18875:1 18965:1 18971:1 18975:7 18984:1 18988:1 18990:1 18998:1 19000:1 19007:1 19011:1 19018:1 19023:1 19034:2 19037:1 19059:1 19067:2 19118:1 19123:1 19132:1 19147:1 19153:1 19157:1 19164:1 19184:2 19201:1 19208:1 19214:2499 19221:1 19239:1 19243:1 19260:1 19266:1 19268:1 19269:1 19270:1 19279:1 19282:1 19293:1 19327:1 19416:1 19441:1 19443:1 19462:1 19524:1 19543:1 19547:1 19566:1 19581:1 19590:1 19651:2 19720:1 19728:1 19734:2 19757:1 19766:1 19778:1 19792:1 19821:3 19837:1 19843:1 19845:4 19863:1 19867:1 19892:1 19921:2 19924:1 19947:2 19959:1 19970:1 19979:3 19985:1 19997:1 20016:8 20018:1 20074:1 20108:1 20126:3 20135:1 20151:1 20166:4 20197:1 20202:2 20218:1 20223:1 20231:1 20233:2 20247:1 20252:2 20267:3 20276:2 20282:1 20285:1 20286:2 20288:1 20290:1 20306:2 20307:1 20321:2 20325:1 20327:1 20329:1 20338:1 20340:1 20341:2 20359:3 20387:1 20405:1 20406:1 20407:3 20412:1 20413:1 20430:1 20475:1 20483:1 20504:1 20524:2 20528:2 20596:4 20605:1 20629:1 20639:2 20660:4 20667:4 20672:1 20674:1 20677:1 20691:1 20701:2 20704:1 20709:1 20720:1 20740:2 20742:1 20749:1 20752:1 20757:1 20760:1 20761:1 20769:1 20784:2 20793:1 20799:1 20808:1 20810:1 20815:2 20829:2 20832:3 20848:1 20849:1 20864:1 20873:1 20954:1 20957:2 20961:1 20964:1 21001:3 21004:2 21012:1 21028:1 21030:1 21036:2 21037:1 21053:1 21063:1 21133:1 21159:1 21164:2 21195:1 21202:1 21231:1 21235:1 21238:1 21239:1 21251:1 21253:1 21257:1 21264:1 21280:1 21282:1 21286:1 21289:1 21295:1 21328:2 21345:1 21356:1 21360:3 21363:1 21366:1 21367:4 21372:1 21373:1 21386:2 21387:1 21404:2 21411:3 21414:2 21471:1 21474:1 21483:1 21488:1 21489:1 21508:1 21519:1 21520:1 21545:1 21555:1 21563:3 21625:1 21637:1 21674:1 21680:1 21707:1 21712:1 21724:2 21758:1 21763:1 21790:2 21823:1 21828:1 21842:1 21845:2 21850:1 21863:1 21867:1 21883:1 21894:1 21895:2 21898:1 21927:1 21946:1 21950:1 21951:1 21956:1 21957:1 21958:1 21971:1 21978:1 21988:1 21992:1 22003:1 22020:1 22082:1 22104:3 22136:2 22139:1 22154:1 22161:3 22169:1 22171:1 22172:1 22178:2 22182:1 22191:7 22192:1 22206:3 22210:1 22218:1 22241:1 22242:2 22246:1 22247:1 22250:1 22252:1 22302:2 22323:1 22335:1 22342:1 22347:3 22352:1 22364:1 22369:1 22374:1 22387:1 22388:1 22389:3 22392:1 22404:1 22405:2 22407:1 22436:1 22438:1 22442:1 22454:1 22484:1 22487:2 22506:1 22512:1 22520:1 22531:1 22532:1 22533:1 22558:1 22565:1 22576:2 22577:1 22598:2 22604:3 22616:1 22623:2 22640:1 22669:1 22676:1 22700:2 22706:1 22715:1 22722:1 22727:1 22733:1 22738:1 22757:1 22759:1 22771:1 22774:1 22777:4 22791:2 22798:1 22800:1 22802:2 22804:3 22807:3 22813:1 22820:1 22826:1 22833:1 22850:1 22854:1 22864:2 22883:1 22888:2 22926:2 22939:2 22942:1 22943:1 22957:2 22993:2 23013:3 23028:3 23037:1 23064:1 23080:1 23089:1 23090:1 23106:1 23109:2 23117:1 23129:1 23133:1 23140:1 23162:1 23166:1 23173:1 23181:1 23182:1 23185:1 23199:2 23211:1 23313:6 23317:1 23319:1 23320:1 23326:3 23332:1 23333:1 23334:1 23335:1 23367:1 23384:1 23401:2 23444:2 23466:2 23476:1 23480:1 23482:1 23492:1 23534:2 23559:1 23580:1 23593:2 23610:5 23630:1 23632:3 23635:2 23694:1 23704:1 23749:1 23767:1 23794:1 23807:3 23813:1 23819:2 23822:1 23830:2 23833:1 23836:3 23858:2 23874:1 23875:1 23882:1 23893:1 23897:2 23937:2 23959:1 23967:3 23976:1 23992:1 24019:1 24025:2 24044:1 24049:1 24058:1 24062:2 24066:3 24071:2 24090:1 24093:1 24107:1 24109:1 24115:3 24125:1 24160:2 24165:1 24190:1 24224:1 24236:2 24243:1 24257:1 24289:1 24294:1 24300:1 24332:1 24334:1 24350:1 24389:2 24394:1 24419:1 24450:1 24478:5 24480:1 24482:1 24483:1 24489:1 24519:1 24534:2 24547:1 24568:1 24573:1 24586:2 24588:1 24615:3 24618:2 24624:1 24643:1 24653:1 24665:2 24667:1 24677:1 24679:1 24682:4 24686:3 24722:2 24733:1 24767:1 24775:2 24783:2 24831:1 24843:2 24848:5 24852:1 24855:2 24866:1 24874:1 24888:6 24927:1 24947:1 24962:1 24982:1 24988:1 24993:1 24995:1 25006:1 25010:2 25011:2 25020:1 25024:1 25042:1 25053:1 25056:1 25057:1 25074:1 25088:1 25092:1 25095:1 25113:1 25114:1 25116:1 25120:1 25122:1 25130:1 25134:3 25137:1 25140:1 25154:2 25156:1 25163:1 25171:1 25226:1 25253:2 25261:1 25289:1 25292:1 25299:1 25321:1 25335:1 25396:1 25403:1 25406:2 25423:1 25506:3 25532:1 25534:1 25538:3 25543:1 25553:1 25579:4 25592:3 25602:1 25613:2 25641:2 25643:1 25654:1 25660:2 25678:1 25706:1 25709:1 25715:1 25736:1 25748:1 25749:1 25770:1 25796:1 25799:4 25804:1 25806:1 25807:2 25812:2 25826:1 25827:1 25829:1 25832:2 25834:1 25843:2 25844:1 25848:2 25855:1 25861:3 25862:1 25876:1 25879:1 25893:1 25905:1 25907:2 25908:1 25921:1 25932:1 25934:1 25957:1 25959:1 25963:1 25968:1 25979:1 26008:1 26009:5 26041:1 26042:1 26054:1 26064:2 26081:1 26129:1 26131:1 26142:1 26145:1 26148:1 26170:1 26198:2 26208:2 26226:1 26230:1 26263:1 26276:1 26279:1 26282:4 26286:1 26323:1 26345:2 26350:2 26356:1 26382:2 26387:1 26415:1 26437:1 26444:2 26446:1 26450:1 26451:1 26454:1 26456:1 26461:1 26463:1 26475:2 26501:1 26529:3 26540:1 26564:2 26582:1 26605:7 26646:1 26652:2 26668:1 26684:1 26688:1 26709:1 26722:1 26736:3 26751:1 26755:1 26757:1 26769:1 26783:1 26790:2 26791:1 26824:1 26855:1 26877:1 26878:1 26885:2 26887:1 26894:1 26932:4 26948:3 26953:1 26956:1 26980:1 26987:1 27007:1 27011:1 27017:1 27032:1 27057:1 27082:2 27088:2 27113:1 27120:1 27125:1 27151:1 27161:1 27185:2 27191:1 27245:1 27281:2 27307:1 27308:2 27310:3 27324:1 27329:1 27352:1 27364:1 27370:1 27379:1 27380:1 27383:1 27398:1 27406:1 27425:1 27432:1 27458:1 27474:1 27483:3 27493:1 27499:1 27505:2 27528:1 27559:2 27565:1 27580:1 27582:1 27586:3 27642:1 27647:1 27650:2 27653:2 27676:1 27687:3 27697:1 27713:1 27714:1 27732:1 27763:2 27766:1 27770:1 27775:1 27777:1 27778:1 27783:2 27790:1 27799:1 27812:5 27815:1 27816:1 27821:3 27822:1 27827:1 27828:2 27830:1 27833:1 27836:2 27841:2 27849:1 27858:1 27882:2 27898:1 27915:4 27923:1 27926:1 27927:1 27929:2 27930:1 27951:1 27962:1 27971:1 27972:1 28006:1 28049:2 28059:1 28075:1 28085:1 28097:3 28100:2 28101:1 28116:2 28184:1 28190:1 28227:1 28232:1 28243:3 28284:1 28289:1 28321:1 28352:1 28356:3 28404:1 28407:2 28411:1 28428:1 28429:1 28437:1 28442:4 28455:1 28467:1 28471:1 28481:1 28489:1 28502:2 28508:2 28516:14 28524:1 28539:1 28549:7 28569:6 28573:1 28599:1 28618:1 28625:1 28648:1 28656:5 28659:1 28661:1 28678:4 28684:5 28691:2 28715:1 28720:13 28727:1 28730:1 28733:1 28738:2 28755:1 28756:1 28789:1 28798:1 28801:2 28814:1 28826:1 28838:1 28857:1 28858:1 28860:1 28872:1 28913:2 28920:1 28921:1 28929:1 28942:1 28953:1 28957:1 28983:1 28987:2 28994:2 28998:1 28999:1 29036:1 29042:1 29050:1 29060:2 29062:5 29067:2 29073:1 29086:2 29103:1 29105:1 29107:1 29130:2 29150:1 29164:1 29167:1 29187:1 29212:2 29214:1 29229:1 29243:1 29249:2 29294:1 29297:2 29306:2 29310:1 29316:1 29318:1 29341:1 29347:1 29369:1 29380:1 29390:2 29400:1 29457:1 29463:1 29471:1 29472:1 29473:1 29477:2 29536:1 29574:1 29581:6 29586:2 29591:2 29603:1 29606:1 29616:1 29626:2 29635:2 29645:1 29667:2 29685:4 29732:2 29740:1 29752:2 29759:3 29766:2 29768:2 29793:1 29802:1 29816:1 29822:4 29831:1 29854:1 29874:1 29883:1 29885:2
|
4f85a6bca6accbad1dd01c1e9514d4f379024617 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2240/CH29/EX28.14/EX28_14.sce | cabe16b1720b681bcd35fec3a90ab508f1f3eb0a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 885 | sce | EX28_14.sce | // Grob's Basic Electronics 11e
// Chapter No. 28
// Example No. 28_14
clc; clear;
// For the pnp transistor, solve for Vb, Ve, Ic, Vc, and Vce.
// Given data
R1 = 33*10^3; // Resistor1=33 kOhms
R2 = 6.2*10^3; // Resistor2=6.2 kOhms
Rc = 2*10^3; // Collector resistance=2 kOhms
Re = 500; // Emitter resistance=500 Ohms
Vcc = 12; // Supply voltage=12 Volts
Vbe = 0.7; // Base-Emmiter Voltage=0.7 Volts
Vb = -Vcc*(R2/(R1+R2));
disp (Vb,'The Base Voltage in Volts')
disp ('Appox -1.9 Volts')
Ve = Vb-(-Vbe);
disp (Ve,'The Emitter Voltage in Volts')
disp ('Appox -1.2 Volts')
Ic = -(Ve/Re); // Ic =~ Ie
disp (Ic,'The Collector Current in Amps')
disp ('Appox 2.4 mAmps')
Vc = -Vcc+(Ic*Rc)
disp (Vc,'The Collector Voltage in Volts')
Vce = -Vcc+(Ic*(Rc+Re));
disp (Vce,'The Collector-Emitter Voltage in Volts');
|
c9ca245c2f17dd0511db445b92f643c0229e7a14 | 51c4c028f490213495b3a6df77e94afcfa03c254 | /scara/InverseKinem.sci | 537d967973667b07a9e794f231ace87794b4d057 | [] | no_license | dgerod/robotics-utils | d8b130290ba77a3aa2fbe9502c39cfba78f40609 | 5d5d6c4c426de3bf859303b56c431ecd4b203d86 | refs/heads/master | 2020-05-17T08:31:03.702958 | 2016-08-20T11:14:57 | 2016-08-20T11:14:57 | 32,637,117 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,647 | sci | InverseKinem.sci | // =================================================================================
// InverseKinem.sci
// =================================================================================
function [Ret, Joints] = scrInvKinem (KinemParams, TCP0)
//
// DESCRIPTION
// Solves the Inverse Kinematics problem of a Scara-RRP robot.
// PARAMETERS
// KinemParams [IN] : Kinematics parameters [h,l1,l2].
// TCP0 [IN] : Pose [x,y,z]' in RCS.
// Joints [OUT] : Position [j1,j2,j3]' in JCS .
// RETURN
// Ret : Success (1) or error (<0)
//
Ret = 1;
Joints = zeros(3,2);
// Prepare data ---
h = KinemParams(1); l1 = KinemParams(2); l2 = KinemParams(3);
x = TCP0(1); y = TCP0(2); z = TCP0(3);
// Solve Inverse Kinematics problem ---
// Solve RR joints
[Ret,Theta] = __scrIkRR( [l1,l2],TCP0 );
if Ret <> 1 then
Ret = -1;
Joints = zeros(3,2);
return [Ret,Joints];
end
// Solve prismatic joint
J3 = h - z;
// Return the two solutions
Joints(:,1) = [Theta(:,1); J3];
Joints(:,2) = [Theta(:,2); J3];
Ret = 1;
return [Ret,Joints];
endfunction
// -----------------------------------------------------------------------------
function [Ret, Theta] = __scrIkRR (KinemParams, TCP0)
Ret = 1;
Theta = zeros(2,2);
// Prepare data ---
l1 = KinemParams(1); l2 = KinemParams(2);
x = TCP0(1); y = TCP0(2);
// Solve Inverse Kinematics problem ---
cosTheta2 = (x*x + y*y - l1*l1 - l2*l2) / (2*l1*l2);
if abs(cosTheta2) > 1.0 then
// Solution can not be reached
Ret = -1;
return [Ret,Joints];
else
//Right Elbow Solution
sinTheta2(1) = sqrt( 1-cosTheta2*cosTheta2 );
// Left Elbow Solution
sinTheta2(2) = -sqrt( 1-cosTheta2*cosTheta2 );
J2(1) = atan( sinTheta2(1),cosTheta2 );
J2(2) = atan( sinTheta2(2),cosTheta2 );
k1 = l1 + l2*cosTheta2;
k2(1) = l2*sinTheta2(1);
k2(2) = l2*sinTheta2(2);
aux1 = atan( y,x );
aux2(1) = atan( k2(1),k1 );
aux2(2) = atan( k2(2),k1 );
J1(1) = aux1 - aux2(1);
if J1(1) > %pi then
J1(1) = J1(1) - 2*%pi;
elseif J1(1) < -%pi then
J1(1) = J1(1) + 2*%pi;
end
J1(2) = aux1 - aux2(2);
if J1(2) > %pi then
J1(2) = J1(2) - 2*%pi;
elseif J1(2) < -%pi then
J1(2) = J1(2) + 2*%pi;
end
end
// Return the two solutions
Theta(:,1) = [J1(1),J2(1)]';
Theta(:,2) = [J1(2),J2(2)]';
Ret = 1;
return [Ret,Theta];
endfunction
// =================================================================================
|
44d9e7439b33701f111dac26447aefc0529799d2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2621/CH4/EX4.4/Ex4_4.sce | 8c5951e2ae228f664e9ed70f268e92c68a27a479 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 421 | sce | Ex4_4.sce | // Example 4.4
clc;
clear;
close;
// Given data
format('v',6);
Vout= '(-2*V1+3*V2+4*V3)';//given expression
R3= 10;// in kΩ
// Vout= -(Rf/R1*V1+Rf/R2*V2+Rf/R3*V3) (i)
// Compare equation(i) with given expression
Rf= 4*R3;//in kΩ
R2= Rf/3;// in kΩ
R1= Rf/2;// in kΩ
disp(Rf,"The value of Rf in kΩ is : ");
disp(R2,"The value of R2 in kΩ is : ");
disp(R1,"The value of R1 in kΩ is : ");
|
aa54d54c684f40327fb5f6567012a5a55b0c9998 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2144/CH7/EX7.2/ex7_2.sce | d33edda71be3b58038578c4faa6a8b01bb3d7f19 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 450 | sce | ex7_2.sce | // Exa 7.2
clc;
clear;
close;
// Given data
H1 = 3100;// in kJ/kg
H2 = 1950;// in kJ/kg
C1 = 20;// in meter/second
C2 = 30;// in meter/secon
Q = 0;// in kJ/kg
Q_desh= 20;// in kJ/kg
Vs= 1.1;// in m^3/kg
W = H1-H2+(C1^2-C2^2)/(2*1000)+Q-Q_desh;// in kJ/kg
m= 2;//mass flow rate in kg/sec
Power= m*W;// in kW
disp(Power,"Power output of the turbine in kW is : ")
Area= m*Vs/C2;// in m^2
disp(Area,"Area of exhaust pipe in m^2 is : ")
|
8d55aac4a0ba74614d80089d8a6cd11f633de715 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2891/CH7/EX7.14/Ex7_14.sce | 8b5a630a0b7440f8e7dbd37f71ccfebae8178ea9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 472 | sce | Ex7_14.sce | // Exa7.14
clc;
clear;
close;
// given :
phi=5 // HPBW,half power beam width in Degrees
phi_not=2*phi // BWFN, null-to-null beam width in degrees
Lm=poly(0,'Lm') // defining Lm as lambda
// formula : phi=70*(Lm/D_a) // where Lm is wavelength in m and D_a is mouth diameter in m
D_a=(70*Lm)/phi
G_p=6.4*(D_a/Lm)^2
G_p=horner(G_p,1)
G_p=10*log10(G_p) // power gain in dB
disp(phi_not,"BWFN, null-to-null beam width in degrees:")
disp(G_p,"power gain in dB:")
|
066e4692e176d6b4fe9f2117d457aee97620f8fc | 449d555969bfd7befe906877abab098c6e63a0e8 | /569/CH4/EX4.1/4_1.sci | b208e33ab4d161bf4aa956bd0690b3abde9a0f72 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sci | 4_1.sci | // calculating the temperature after 1.5 s
clc;
th0=100;
t=1.5;
tc=3.5;
th=th0*[1-exp(-t/tc)];
disp(th,'temperature after 1.5 s (degree C)') |
1f47ba82d2507f6435c759fa8e0f15e885508d4d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1244/CH6/EX6.4/Example64.sce | 0db8cb2755aa0eef8dbcdc066be3b2dacfd62e76 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,373 | sce | Example64.sce |
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clc;
disp("Principles of Heat Transfer, 7th Ed. Frank Kreith et. al Chapter - 6 Example # 6.4 ")
//Temperature of device casing in degree K
Ts = 353;
//Length of holes in m
L = 0.3;
//Diameter of holes in m
D = 0.00254;
//Inlet temperature in degree K
Tin = 333;
//Velocity in m/s
U = 0.2;
//The properties of water at 333 K, from Table 13 in Appendix 2, are
//Density in kg/m3
rho = 983;
//Specific heat in J/kgK
c = 4181;
//Thermal conductivity in W/mK
k = 0.658;
//Dynamic viscosity in Ns/m2
mu = 0.000472;
//Prandtl number
Pr = 3;
//Reynolds Number is
Re = ((U*D)*rho)/mu;
if (((Re*Pr)*D)/L)>10 then
//Eq. (6.42) can be used to evaluate the heat transfer coefficient.
//But since the mean bulk temperature is not known, we shall evaluate all the properties first at the inlet bulk temperature Tb1 ,
//then determine an exit bulk temperature, and then make a second iteration to obtain a more precise value.
//At the wall temperature of 353 K
//Viscosity in SI units
mus = 0.000352;
//From Eq. (6.42)
//Nusselt number
Nu = (1.86*((((Re*Pr)*D)/L)^0.33))*((mu/mus)^0.14);
//Heat transfer coefficient in W/m2K
hc = (Nu*k)/D;
//mass flow rate in kg/s
m = ((((rho*%pi)*D)*D)*U)/4;
//Inserting the calculated values for hc and m into Energy balance equation, along with Tb1 and Ts and
//gives Tb2=345K
//For the second iteration, we shall evaluate all properties at the new average bulk temperature
//Bulk temp. in degree C
Tb = (345+Tin)/2;
//At this temperature, we get from Table 13 in Appendix 2:
//Density in kg/m3
rho = 980;
//Specific heat in J/kgK
c = 4185;
//Thermal conductivity in W/mK
k = 0.662;
//Dynamic viscosity in Ns/m2
mu = 0.000436;
//Prandtl number
Pr = 2.78;
//New reynolds Number is
Re = ((U*D)*rho)/mu;
//With this value of Re, the heat transfer coefficient can now be calculated.
//We obtain the following similarly
//Nusselt number
Nu = 5.67;
//Heat transfer coefficient in W/m2K
hc = (Nu*k)/D;
//Similarly putting this value in energy balance yields
//Bulk temperature in degree K
Tb2 = 345;
disp("Outlet temperature in degree K")
//Outlet temperature in degree K
Tb2
end;
|
2a6a08f6900a6c55895b34779dbf12d5ccba84a7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1205/CH18/EX18.6/S_18_6.sce | ec68e9cd483c1965f1ae4d2ad47afcb5722444f9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,110 | sce | S_18_6.sce | clc;
m=300;//g, mass of each rod
mom=1/1000;//given mo/m
vo=2000;//m/s, relative velocity
wo=60;//rpm
wo=wo*2*%pi/60;//rad/s, conversion
a=800;//mm, radius of disk
a=a/1000;//m, conversion into meter
//By theorytical work we get
wx=-4/5*mom*vo/a;//rad/s , x component of angular velocity
wy=0;//rad/s , y component of angular velocity
wz=wo;//rad/s , x component of angular velocity
w=norm([wx,wy,wz]);//rad/s
w=w/2/%pi*60;//rpm, conversion into rpm
gama=atan(-wx/wz);//rad,
//precession axis
theta=atan(2*mom*vo/a/wo);//rad, angle forme by precession axis and z axis
//by law of sines
phi=w*sin(gama)/sin(theta);// rpm, rates of precession
psi=w*sin(theta-gama)/sin(theta);// rpm, rates of spin
gama=gama*180/%pi;//degree, conversion into degree
theta=theta*180/%pi;//degree, conversion into degree
printf("The angular velocity after impact is w= %.1f rpm with angle gamma= %.1f degree\n",w,gama);
printf("Angle formed by precession axis and z axis is theta= %.1f degree\n",theta);
printf("Rate of precession is psi= %.1f rpm \n rate of spin is psi=%.1f rpm\n",phi,psi)
|
c5df027e7af37ba61cfb0fa266d5c4875dc036e0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2054/CH1/EX1.31/ex1_31.sce | a97cff8352810270f080c823cd5edfca43d904df | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 609 | sce | ex1_31.sce | //Exa:1.31
clc;
clear;
close;
f=50;//in hertz
P1=6;//No. of poles
P2=4;//No.of poles
N_s1=120*f/P1;//Synchronous Speed of 6-pole motor
N_s2=120*f/P2;//Synchronous Speed of 4-pole motor
N_sc1=120*f/(P1+P2);//Concantenated Speed of set when cumulatively compounded (in rpm)
N_sc2=120*f/(P1-P2);//Concantenated Speed of set when differentially compounded (in rpm)
disp(' Available Speeds (in rpm) are :');
disp(N_s1,'');
disp(N_s2,'');
disp(N_sc1,'');
disp(N_sc2,'');
P_o=15;//in HP
disp(P_o,'Maximum Load which can be delievered (in HP)=');
r=P1/P2;
disp(r,'Ratio of Mechanical Power Output') |
a70e2fd830d9ba1d6d6a2929ec8b425353b045b2 | 717ddeb7e700373742c617a95e25a2376565112c | /1766/CH8/EX8.8/EX8_8.sce | a8ffc0430b69a9a2eabe00604f318368cf34af7e | [] | 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 | 959 | sce | EX8_8.sce | clc;funcprot(0);//Example 8.8
//Initilisation of Variables
mh=10;....//Mass flow rate of water in kg/s
L=6.7;.....//Lemgth of the tubes in m
Do=0.026;....//Diameter of tube in m
hi=470;....//Inside heat transfer coefficient in W/m^2 K
ho=210;.....//Outside heat transfer coefficient in W/m^2 K
Tci=15;......//Inlet temparature of air in degrees celcius
mc=1.6;....//Mass flow rate of water in kg/s
Thi=75;......//Inlet temparature of water in degrees celcius
Cph=4.2;....//Specific heat of water in kJ/kgK
Cpc=1;....//Specific heat of air in kJ/kgK
//calculations
Ch=mh*Cph;....//Heat capacity of hot fluid by counter flow kW/K
Cc=mc*Cpc;....//Heat capacity of cold fluid by counter flow kW/K
R=Cc/Ch;.....//Resistance
A=%pi*Do*L;.....//Area of tube in m^2
U=(hi*ho)/(ho+hi);.....//Overall heat transfer coefficient in W/m^2C
NTU=(U*A)/(Cc*1000);....//Number of transfer units
disp("From the chart NTU and E the Effectiveness(E) is 0.1")
|
2368ba401c55f2af831ce6d04cda17f1c9a73462 | 1d7cb1dbfad2558a4145c06cbe3f5fa3fc6d2c08 | /Scilab/SparamUtilities/SxP_InteViewer/SxP_InteViewer_DiffModeSelGUI_v1.sci | 543b022f4aa2738f01eb7bb7cabf8727aef8e172 | [] | no_license | lrayzman/SI-Scripts | 5b5f6a8e4ae19ccff53b8dab7b5773e0acde710d | 9ab161c6deff2a27c9da906e37aa68964fabb036 | refs/heads/master | 2020-09-25T16:23:23.389526 | 2020-02-09T02:13:46 | 2020-02-09T02:13:46 | 66,975,754 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,287 | sci | SxP_InteViewer_DiffModeSelGUI_v1.sci | // ====================== S-params Converter ====================
//
// (Semi)Intelligent Differential S-param Viewer
//
// Diff port mode selection GUI
//
// (c)2014 L. Rayzman
//
// GUI interface based on UICONTROL2 GUI demo
//
// Created : 06/23/2014
// Last Update :
//
// ====================================================================
// ====================================================================
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////
// Button Handlers
///////////////////
// Sequential Buttons handler
function on_df_button_seq_click(fig, handles)
global smapmode;
smapmode = 2;
delete(fig); // delete figure
endfunction
// Odd/Even Buttons handler
function on_df_button_OE_click(fig, handles)
global smapmode;
smapmode = 1;
delete(fig); // delete figure
endfunction
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
///////////////////
// Diff Mode Sel GUI
///////////////////
diff_mode_fig = figure("figure_id", diff_mode_fig_idx, ...
"dockable", "off" ,...
"infobar_visible", "off", ...
"toolbar_visible", "off", ...
"menubar_visible", "off", ...
"resize", "off", ...
"position", [200 200 450 300], ...
"figure_name", "Select diff pair mapping mode");
drawlater();
diff_mode_fig_handles.df_lbl_main=uicontrol(diff_mode_fig, ...
"style", "text", ...
"string", "Unable to guess port mapping. Please select the port mapping mode", ...
"position", [15 275 420 30], ...
"BackgroundColor", [0.8 0.8 0.8], ...
"FontSize", 14);
diff_mode_fig_handles.df_button_seq=uicontrol(diff_mode_fig,...
"style", "pushbutton", ...
"icon", ".\Pics\PortMapping_Seq.gif", ...
"position", [5 40 220 224], ...
"callback", "on_df_button_seq_click(diff_mode_fig, diff_mode_fig_handles)");
diff_mode_fig_handles.df_button_OE=uicontrol(diff_mode_fig,...
"style", "pushbutton", ...
"icon", ".\Pics\PortMapping_OE.gif", ...
"position", [230 40 220 224], ...
"callback", "on_df_button_OE_click(diff_mode_fig, diff_mode_fig_handles)");
diff_mode_fig_handles_df_lbl_seqbut=uicontrol(diff_mode_fig,...
"style", "text", ...
"string", "Sequential",...
"position", [90 10 100 30], ...
"BackgroundColor", [0.8 0.8 0.8], ...
"FontSize", 12);
diff_mode_fig_handles_df_lbl_oebut=uicontrol(diff_mode_fig,...
"style", "text", ...
"string", "Odd/Even",...
"position", [315 10 100 30], ...
"BackgroundColor", [0.8 0.8 0.8], ...
"FontSize", 12);
drawnow();
|
2297e586dbf4f71055d1b4e475a90411aef2df89 | 3267dfd638e022b81b44b942a9de44ac896514a1 | /formula.sci | 9605da0d7ac71a3dd7c75d55475fc9abdb584093 | [] | no_license | triv82564/Mass-Transfer-Lab | be5acd413972311bb3adba7e8fc9690a3f616763 | 2323baeaf390ac02e2a95cb0605029dd3b48cc8a | refs/heads/master | 2021-01-01T16:53:08.288071 | 2017-07-21T12:09:17 | 2017-07-21T12:09:17 | 97,940,517 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 91 | sci | formula.sci | function y1=formula(u1);
y1=-5169*u1*u1+21240*u1+6135;
disp(y1);
endfunction
|
7addbb14c8795a91afcd996d46e35f00674b34cd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3774/CH7/EX7.10/Ex7_10.sce | 459f61a1765f4dcfd6d8310901e6b371478da41f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,111 | sce | Ex7_10.sce | // exa 7.10 Pg 212
clc;clear;close;
// Given Data
d=35;// mm
d2=125;// mm
n=6;// factor of safety
T=800;// N.m
N=350;// rpm
tau_s=63;// MPa
tau_b=56;// MPa
tau_CI=10;// MPa
tau_k=46;// MPa
// Diameter of bolts:
F=2*T*10**3/d2/n;// N
//%pi/4*db**2*tau_b=F
db=sqrt(F/(%pi/4*tau_b));// mm
printf('\n (i) Diameter of bolts = %.2f mm. Use 8 mm.',db)
// Flange thickness
d1=2*d;// mm
//T=%pi/2*d1**2*t2*tau_CI
t2=T*1000/(%pi/2*d1**2*tau_CI);// mm
printf('\n (ii) Flange thickness = %.1f mm. Use t2 = 12 mm',t2)
t2=12;// mm
//Key dimensions
b=10;// mm (width of key)
t=7;// mm (from tables)
//T=l*b*tau_k*d/2
l=T*10**3/(b*tau_k*d/2);// mm
l=ceil(l);// mm
printf('\n (iii) Length of key = %.f mm\n\t\td=%.f mm\n\t\tb=%.f mm',l,d,b)
// Hub length
lh=l;// mm (length of hub)
printf('\n (iv) Hub length = %.f mm',l)
tau_c=T*10**3/(%pi/16*(d1**4-d**4)/d1);// N/mm.sq.
printf('\n shear stress in hub = %.2f N/mm.sq.',tau_c)
printf('It is nearly equal to %.f N/mm.sq.',tau_CI)
printf('\n hence design parameters are fine.')
// Power transmitted
P=2*%pi*N*T/60/10**3;// kW
printf('\n (v) Power transmitted = %.2f kW',P)
|
e6eb74bf5755b8bd7a409a7ad26796e84395ac33 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2150/CH1/EX1.18/ex1_18.sce | 1ea21df4d7cc6e56489ec76e225ffac0889e330a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 732 | sce | ex1_18.sce | // Exa 1.18
clc;
clear;
close;
// Given data
V_gamma = 0.7;// in V
R1 = 5*10^3;// in ohm
R2 = 10*10^3;// in ohm
V=5;// in V
disp("Part (a)")
I_R2 = (V-V_gamma-(-V))/(R1+R2);// in A
I_D2 = I_R2;// in A
disp(I_D2*10^3,"The value of I_D1 and I_D2 in mA is");
V_o = V - (I_D2 * R1);// in V
disp(V_o,"The value of Vo in V is");
V_A = V_o - V_gamma;// in V
disp(V_A,"The value of V_A in V is");
disp("Part (b)")
V_I = 4;// in V
V_A= V_I-V_gamma;// in V
Vo= V_A+V_gamma;// in V
I_R1= (V-Vo)/R1;// in A
I_D2= I_R1;// in A
disp(I_D2*10^3,"The value of I_D2 in mA is : ")
I_R2= (V_A-(-V))/R2;// in A
I_D1= I_R2-I_R1;// in A
disp(I_D1*10^3,"The value of I_D1 in mA is : ")
disp(Vo,"The value of Vo in volts is : ")
|
ef61873f0053ebad038aedd006e74f4cae78ef20 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2141/CH7/EX7.6/Ex7_6.sce | 9b70c1bbceca42b61ae146c727089eaa76f8a835 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 342 | sce | Ex7_6.sce |
clc
//initialisation of variables
T1=500 //R
T2=2000 //R
P1=30 //lbf/in^2
P2=20 //lbf/in^2
M=32.00 //ft
S2=11.515*log(T2/T1)
s1=2*172*(1/sqrt(T2-1/sqrt(T1)))
s=-1530*[(1/T2-1/T1)]
s3=-1.986*log(P2/P1)
//CALCULATIONS
S=S2-s1+s+s3//Btu/lb mole R
S2=S/M//Btu/lbm-R
//RESULTS
printf('The change in entropy per =% f Btu/lbm',S2)
|
f9807f42ce731ec19456914e82a89ea5e6dbddee | 449d555969bfd7befe906877abab098c6e63a0e8 | /2078/CH5/EX5.21/Example5_21.sce | 766f99576390ad54921aa13b5a79395b3c3aa0a2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 997 | sce | Example5_21.sce | //Exa 5.21
clc;
clear;
close;
//Given data :
P=50*10^6;//VA
pf=0.8;//power factor
cos_fi_r=pf;
sin_fi_r=sqrt(1-cos_fi_r^2);
A=0.98*expm(%i*%pi/180*3);//parameter of 3-phase line
D=0.98*expm(%i*%pi/180*3);//parameter of 3-phase line
B=110*expm(%i*%pi/180*75);//parameter of 3-phase line
C=0.0005*expm(%i*%pi/180*80);//parameter of 3-phase line
VRL=110*10^3;//Volt
VR=VRL/sqrt(3);//Volt
IR=P/(sqrt(3)*VRL);//A
IR=IR*(cos_fi_r-%i*sin_fi_r);//A
VS=A*VR+B*IR;//Volt
VSL=sqrt(3)*abs(VS);//Volt
disp(VSL/1000,"Sending end Line voltage(kV) : ");
IS=C*VR+D*IR;//A
disp("Sending end current(A), magnitude is "+string(abs(IS))+" and angle in degree is "+string(atand(imag(IS),real(IS))));
fi_s=atand(imag(VS),real(VS))-atand(imag(IS),real(IS));//
cos_fis=cosd(fi_s);//sending end pf
disp(cos_fis,"Sending end power factor(lag) : ");
Pin=sqrt(3)*VSL*abs(IS)*cos_fis*10^-6;//MW
disp(Pin,"Power Input(MW) : ");
Eta=P*pf/(Pin*10^6)*100;//%
disp(Eta,"Transmission Efficiency(%) : ");
|
e705e51f58c5767636da050055a31e0f7fb5f482 | aef26b59d30e6dadcb4ad4adca5fef486bba8f39 | /测试游标更新数据.tst | 803c439aacb9498b721e3da03e2011d546058094 | [] | no_license | BinYangXian/ora | 23141658d122e552ae63d2c091a0b038446da275 | ebb23fed403da5248f8926f902a247b4046e540c | refs/heads/master | 2021-01-20T15:07:10.757649 | 2017-05-09T08:34:52 | 2017-05-09T08:34:52 | 90,722,061 | 0 | 0 | null | null | null | null | GB18030 | Scilab | false | false | 560 | tst | 测试游标更新数据.tst | PL/SQL Developer Test script 3.0
21
-- 测试游标更新数据
-- 默认情况 游标是只读的
declare
-- 声明游标
-- 用 for update表示用于更新
cursor emp_cursor(l_deptno number) is select * from emp_bak e where e.deptno=l_deptno for update;
begin
for emp_row in emp_cursor(20) loop
-- 更新值到当前的记录
update emp_bak e set e.sal=30000 where current of emp_cursor;
end loop;
commit;
-- 异常处理
exception
when others then
rollback;
end;
0
0
|
11d1d0221956c8404c4462b36e0f9d5addb046d1 | e41b69b268c20a65548c08829feabfdd3a404a12 | /3DCosmos/Data/Scripts/_InternalUsage/test.SCI | a3745e69467fbc9e247ce7f3d46861ddb62df423 | [
"LicenseRef-scancode-khronos",
"MIT"
] | permissive | pvaut/Z-Flux | 870e254bf340047ed2a52d888bc6f5e09357a8a0 | 096d53d45237fb22f58304b82b1a90659ae7f6af | refs/heads/master | 2023-06-28T08:24:56.526409 | 2023-03-01T12:44:08 | 2023-03-01T12:44:08 | 7,296,248 | 1 | 1 | null | 2023-06-13T13:04:58 | 2012-12-23T15:40:26 | C | UTF-8 | Scilab | false | false | 804 | sci | test.SCI |
codeblock readtextfile(ScriptDir+"\_TOOLS.sci");
sf=T_scene_create;
sss=T_getscene;
sss.ambientlightcolor=color(0.15,0.15,0.15);
#sss.VolumeShadowAdd(0,color(0,0,0,0.5),0.002,20);
refframe=sss.addsubframe("refframe");
sf1=sss.addsubframe("sf1");
obj=sf1.add("SolidObject");
cset=Contour(list(point(0,0,0),point(0,1,0),point(1,0,0)));
s=ConeShape(cset,point(1,1,1));
obj.CreateShape(s);
#obj.BlendType=BlendTransparent;
#obj.DepthMask=DepthMaskDisable;
#obj.RenderOutLine=true;
obj.renderback=true;
obj.color=color(0.4,0.6,0.8);
obj.SetColor(0,color(0.4,0.6,1));
obj.SetColor(1,color(1,0.5,0.25));
obj.SetColor(2,color(1,0,0));
obj.SpecularValue=30;
obj.SpecularColor=color(0.35,0.35,0.35);
root.time=time(2008,1,1,0,0,0);
root.TimeSpeed=0.001;
while true do {
incrtime;
render;
}
|
001902dbeafc0bdf2e3dba03ca768a812b7fe9f8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /61/CH13/EX13.4/ex13_4.sce | 26d7808682412e4d772604b05f3e7c139bfbd82e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex13_4.sce | //ex13.4
V_IN1=3;
V_IN2=1;
V_IN3=8;
//all resistors are of equal value so weight of each input is 1
V_OUT=-(V_IN1+V_IN2+V_IN3);
disp(V_OUT,'output voltage in volts') |
c643f2fea80449c8bb3d656921c26640c7efdc43 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/1.1/Unix/scilab-1.1/macros/tdcs/tdinit.sci | 4d967574526295935fd6d6ea51439f93c87429ba | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 2,879 | sci | tdinit.sci |
//[]=tdinit()
tit=["bioreactor model initialisation";
"competition model initialisation";
"system with limit cycle ";
"linear system ";
"quadratic model ";
"linear system with a feedback ";
"pray predator model initialisation"]
ii=x_choose(tit," Systems Initialisation ");
k=0;
debit=0;
x2in=0;
ppr=0;
ppa=0;
pps=0;
ppb=0;
ppk=0;
ppl=0;
qeps=0;
q1linper=0;
q2linper=0;
rlinper=0;
ppm=0;
alin=0;
select ii,
case 1 then [k,debit,x2in]=ibio();
case 2 then [ppr,ppa,pps,ppb,ppk,ppl]=icompet();
case 3 then [qeps]=icycl();
case 4 then [alin]=ilinear();[alin]=resume(alin);
case 5 then [alin,qeps,q1linper,q2linper,rlinper]=ilinp();
case 6 then [a,b]=ilic();[a,b]=resume(a,b);
case 7 then [ppr,ppa,ppm,ppb]=ip_p();
end
[k,debit,x2in,ppr,ppa,pps,ppb,ppk,ppl,qeps,q1linper,q2linper,...
rlinper,ppm,alin]= resume(k,debit,x2in,ppr,ppa,pps,ppb,ppk,ppl,qeps,...
q1linper,q2linper,rlinper,ppm,alin)
//end
//[k,debit,x2in]=ibio()
// initialisation du bioreactur
tit=[" bioreactor model initialisation";
"x(1): biomass concentration ";
"x(2): sugar concntration";
" ";
"xdot(1)=mu(x(2))*x(1)- debit*x(1)";
"xdot(2)=-k*mu_td(x(2))*x(1)-debit*x(2)+debit*x2in";
"mu(x):= x/(1+x)"];
x=x_mdialog(tit,['k';'debit';'x2in'],['2.0';'1.0';'3.0']);
k=evstr(x(1));
debit=evstr(x(2));
x2in=evstr(x(3));
//end
//[ppr,ppa,pps,ppb,ppk,ppl]=icompet()
tit=[" competition model initialisation";
"xdot(1) = ppr*x(1)*(1-x(1)/ppk) - u*ppa*x(1)*x(2)";
"xdot(2) = pps*x(2)*(1-x(2)/ppl) - u*ppb*x(1)*x(2)"];
x=x_mdialog(tit,['ppr';'ppa';'pps';'ppb';'ppk';'ppl'],...
['1/100';'1/20000';'1/200';'1/10000';'1000';'500']);
ppr=evstr(x(1));
ppa=evstr(x(2));
pps=evstr(x(3));
ppb=evstr(x(4));
ppk=evstr(x(5));
ppl=evstr(x(6));
//end
//[qeps]=icycl()
//[qeps]=icycl()
tit=[" system with limit cycle ";
" xdot=a*x+qeps(1-||x||**2)x"];
qeps=x_matrix(tit,[1 0 ; 0 1]);
//end
//[alin]=ilinear()
alin=x_matrix(['xdot=a*x';'Matrice 2x2 du systeme lineaire'],[1 0 ; 0 1]);
//end
//[alin,qeps,q1linper,q2linper,rlinper]=ilinp()
tit=[" quadratic model ";
"xdot= a*x+(1/2)*qeps*[(x'')*q1*x;(x'')*q2*x]+r"];
x=x_mdialog(tit,['a';'qeps';'q1';'q2';'r'],...
['[1 0 ; 0 1]';'[ 0 0;0 0]';
'[ 0 0;0 0]';'[ 0 0;0 0]';'[ 1 ; -1]']);
alin=evstr(x(1));
qeps=evstr(x(2));
q1linper=evstr(x(3));
q2linper=evstr(x(4));
rlinper=evstr(x(5));
//end
//[a,b]=ilic()
tit=[" linear system with a feedback ";
"xdot= a*x +b*(-k*x);"];
x=x_mdialog(tit,['a';'b'],...
['[1 0 ; 0 1]';'[ 1;1]']);
a=evstr(x(1));
b=evstr(x(2));
//end
//[ppr,ppa,ppm,ppb]=ip_p()
tit=[" pray predator model initialisation";
"xdot(1) = ppr*x(1)*(1-x(1)/ppk) - ppa*x(1)*x(2) - u*x(1);"
"xdot(2) = -ppm*x(2) + ppb*x(1)*x(2) - u*x(2);"];
x=x_mdialog(tit,['ppr';'ppa';'ppm';'ppb'],...
['1/100';'1/20000';'1/100';'1/10000']);
ppr=evstr(x(1));
ppa=evstr(x(2));
ppm=evstr(x(3));
ppb=evstr(x(4));
//end
|
558d7f846228de71b8498b82fbee4374e49ea401 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3640/CH4/EX4.3/EX4_3.sce | 93e14b03ad3d99193adfcd49bacddf5be0b02ab3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,179 | sce | EX4_3.sce | clc
//code uses userdefined function complexstring
function s=complexstring(a)
if imag(a)>=0 then
s=sprintf('%g+%gi',real(a),imag(a))
else
s=sprintf('%g%gi',real(a),imag(a))
end
funcprot(0)
endfunction
//induction machine parameters in ohms
r1=0.39 //primary resistance
r2=0.14 //secondary resistance
x1=0.35//primary reactance
x2=0.35//secondary reactance
Xm=16//manetizing reactance
VL=220 //supply volatge in volts
f=60 //frequency in Hz
//part a
p=4 //no of poles
ns=(120*f)/p
mprintf("ns=%drev/min\n",ns)
n=1746 //runnimg speed of motor in rev/min
s=(ns-n)/ns
mprintf("s=%f\n",s)
z2=(r2/s)+(%i*x2)//ans may vary due to roundoff error
disp('Z2='+complexstring(z2)+'Ω')
mprintf("Z2=%fohm having a phase angle of %f degrees\n",abs(z2),(acos(real(z2)/abs(z2)))*180/%pi)
Zf=(%i*Xm*z2)/(z2+(%i*Xm))//ans may vary due to roundoff error
disp('Zf='+complexstring(Zf)+'Ω')
mprintf("Zf=%fohms having a phase angle of %f degrees\n",abs(Zf),(acos(real(Zf)/abs(Zf)))*180/%pi)
Rf=real(Zf)//ans may vary due to roundoff error
mprintf("Rf=%fΩ\n",Rf)
Zin=r1+(%i*x1)+Zf//ans may vary due to roundoff error
disp('Zin=r1+jx1+Zf='+complexstring(Zin)+'Ω')
mprintf("Zin=%fohms having a phase angle of %f degrees\n",abs(Zin),(acos(real(Zin)/abs(Zin)))*180/%pi)
Powerfctor=real(Zin)/abs(Zin)//ans may vary due to roundoff error
mprintf("Power facto=%f\n",Powerfctor)
I1=VL/(sqrt(3)*abs(Zin))
mprintf("|I1|=%fA\n",I1)//ans may vary due to roundoff error
Pin=sqrt(3)*I1*VL*Powerfctor
mprintf("Pin=%fW\n",Pin)//ans in the textbook is wrong
Pg=3*I1*I1*Rf
mprintf("Pg=%fW\n",Pg)//ans in the textbook is wrong
DMP=(1-s)*Pg
mprintf("Developed power=(1-s)Pg=%fW\n",DMP)//ans in the textbook is wrong
Prot=s*Pg //rotor copper losses
Pout=DMP-Prot//ans in the textbook is wrong
mprintf("Output power=%fW\n",Pout)
mprintf("Output horsepower=%f\n",Pout/746)//ans may vary due to roundoff error,1 hp=746 watts
mprintf("Developed torque=%flb-ft\n",7.04*(Pg/ns))//ans may vary due to roundoff error,1 N-m=7.04 lb-ft ot torque
n=(1-s)*ns//ans may vary due to roundoff error
mprintf("Output torque=%flb-ft\n",7.04*(Pout/n))
mprintf("Efficiency=%f\n",Pout/Pin)
//part b
s=1 //machine at stanstill
z2=r2+(%i*x2)//ans may vary due to roundoff error
disp('Z2='+complexstring(z2)+'Ω')
mprintf("Z2=%fohm having a phase angle of %f degrees\n",abs(z2),(acos(real(z2)/abs(z2)))*180/%pi)
Zf=(%i*Xm*z2)/(z2+(%i*Xm))//ans may vary due to roundoff error
disp('Zf='+complexstring(Zf)+'Ω')
mprintf("Zf=%fohms having a phase angle of %f degrees\n",abs(Zf),(acos(real(Zf)/abs(Zf)))*180/%pi)
Zin=r1+(%i*x1)+Zf//ans may vary due to roundoff error
disp('Zin='+complexstring(Zin)+'Ω')
mprintf("Zin=%fohms having a phase angle of %f degrees\n",abs(Zin),(acos(real(Zin)/abs(Zin)))*180/%pi)
I1=VL/(sqrt(3)*abs(Zin))//ans may vary due to roundoff error
Rf=real(Zf)
mprintf("Starting current=%fA\n",I1)
Pg=3*I1*I1*Rf
mprintf("Pg=%fW\n",Pg)//ans in the textbook is wrong
mprintf("τd=7.04*(Pg/ns)=%flb-ft\n",7.04*(Pg/ns))//ans may vary due to roundoff error,1 N-M=7.04 lb-ft of torque
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.