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
714e180596ef3c6892214c847126b2a444f9ffc5
449d555969bfd7befe906877abab098c6e63a0e8
/1541/CH2/EX2.37/Chapter2_Example37.sce
2f8f87d82af460c55bbe4135883c4d37394cb3ce
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
742
sce
Chapter2_Example37.sce
//Chapter-2, Example 2.37, Page 2.68 //============================================================================= clc clear //INPUT DATA nFL=0.98;//Efficiency of transformer at full load 0.8 power factor upf=0.99;//Efficiency of the transformer at half load Q=500;//Transformer rating in KVA cosq=0.8;//Power facotor //CALCULATIONS L=((Q*1000*cosq)/nFL)-(Q*1000*cosq);//Full load losses in W L2=((0.5*Q*1000*100)/99)-(0.5*Q*1000);//Half load losses in W A=[0.25,0.25; 1,0.25] B=[(0.25*L); L2] A=inv(A)*B;//Soving for Pi and Pc //OUTPUT mprintf('Constant losses are %3.2f W\nFull load copper losses are %3.2f W',A(1),A(2)) //=================================END OF PROGRAM==============================
220d3ed59e58a1408bf60d38a43b12186e9c8fe7
449d555969bfd7befe906877abab098c6e63a0e8
/3035/CH14/EX14.4/Ex14_4.sce
44249d9387694cebfe6784a639b8beda3d082847
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
651
sce
Ex14_4.sce
// Variable Declaration kv = 11.0 //Voltage rating(kV) MVA = 5.0 //MVA rating R = 10.0 //Resistance(ohm) per_a = 0.15 //Armature winding reactance per_trip = 0.3 //Relay trip for out-of-balance // Calculation Section x_p = per_a*kv**2/MVA //Winding Reactance(ohm) V = kv/3**0.5*1000 //Phase voltage(V) I = per_trip*MVA*1000/(3**0.5*kv) //Out of balance current(A) p = (((R*I)**2/(V**2-(x_p*I)**2))**0.5)*100 //Percentage of winding remains unsupported // Result Section printf('Percentage of winding that remains unprotected , p = %.1f percentage' ,p)
a66135b259c981596d47e4ed0af722cd194aed03
8781912fe931b72e88f06cb03f2a6e1e617f37fe
/scilab/gr_harm/out/h3_drv.sce
dd506157e1f46b87d102f497bd1eba3f75af7aff
[]
no_license
mikeg2105/matlab-old
fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e
eac168097f9060b4787ee17e3a97f2099f8182c1
refs/heads/master
2021-05-01T07:58:19.274277
2018-02-11T22:09:18
2018-02-11T22:09:18
121,167,118
1
0
null
null
null
null
UTF-8
Scilab
false
false
809
sce
h3_drv.sce
//These "parameters" will be set by calling readinput and passed to // the main H3 code: // nx,ny,nz : grid sizes of the 3d cube. // dx,dy,dz : grid spacings // iterations: the number of iterations to evolve // par1,par2 : Parameters for the initial data. // //[iterations,nx,ny,nz,dx,dy,dz,par1,par2]=readinput(); exec('h3_dx.sce'); exec('initial.sce'); exec('analywave.sce'); exec('spheretocart.sce'); exec('invert.sce'); exec('centralderiv.sce'); exec('curelation.sce'); exec('method.sce'); exec('sources.sce'); exec('fluxes.sce'); exec('boundaries.sce'); exec('onebound.sce'); jobname='test1'; iterations=10; nx=6; ny=6; nz=6; dx=0.02; dy=0.02; dz=0.02; par1=0.0002; //amplitude par2=-2; //shape -2<shape<2 h3_dx(iterations,nx,ny,nz,dx,dy,dz,par1,par2,jobname);
a486203828567350c8e65f5ba7c57d983c970adf
cac765899ef2f4a3fea7b30feb7d3cc9e32a4eb4
/test-deprecated/testPredictiveMireFuntions.sce
27b41e62390fb811da5c6fc040a36291384134d8
[]
no_license
clairedune/AsserVisu
136d9cb090f709a410f23d3138ab115b722066d2
f351f693bffd50b5ae19656a7fcb7b52e01d6943
refs/heads/master
2020-04-11T09:56:32.106000
2017-01-12T14:01:12
2017-01-12T14:01:12
1,187,919
0
0
null
null
null
null
UTF-8
Scilab
false
false
4,553
sce
testPredictiveMireFuntions.sce
//--------------------------------------------------// // main program // test the functions defined in // src/asserVisu/predictiveControl.sci // // author Claire Dune // date 04/01/2010 //;exec('testPredictiveMireFuntions.sce'); //--------------------------------------------------// clear //--------------------------------------------------// // LOAD The Files ---------------------// //--------------------------------------------------// path=get_absolute_file_path("scilab-src"); disp('HOME:'+path), getd(path + "src/graphisme"); // pour charger un repertoire en entier getd(path + "src/transformation"); getd(path + 'src/projectionPers'); getd(path + 'src/asserVisu'); getd(path + 'src/hrp2') // load optimisation exec('../HuMAnS/KickStart.sci'); execstr(LoadModule('../HuMAnS/Kernel')); if ~c_link('libcfsqp') then exec('../HuMAnS/Kernel/OptimizationTools/fsqp-1.2/loader.sce') ; end //---------------------------------------------------------------// // Mire Local with arbitrary Z //---------------------------------------------------------------// a = 0.20; // related to the target size oP = mire4points (a); posewMo = [0 0 0 0 0 0 ]; wMo = homogeneousMatrixFromPos(posewMo); wP = changeFrameMire(oP,wMo); posecMo = [0 0 1 0 0 %pi/2 ]; cMo = homogeneousMatrixFromPos(posecMo); wMc = wMo*inv(cMo); cP = changeFrameMire(oP,cMo); s = projectMireDirect(cP); Z = cP(3:3:length(cP)); posecDesMo = [0 0 1 0 0 0 ]; cDesMo = homogeneousMatrixFromPos(posecDesMo); wMcDes = wMo*inv(cDesMo); cDesP = changeFrameMire(oP,cDesMo) ; sDes = projectMireDirect(cDesP); ZDes = cDesP(3:3:length(cDesP)); v = [0 0 0 0 0 1]'; Uc = [v;v;v;v;v]; disp('Test predictif optim') Te = 1/30; // to be consistant with the image frame rate Nc = 5; Np = 20; xu = [ 1 ; 1 ]; // position max of the a 2D point in the image plane xl = [ -1 ; -1 ]; // position min of the a 2D point in the image plane bu = 10*[0.25,0.25,0.25,0.25,0.25,0.25]'; // command bounds bl = -bu; Nbpts = 4 ; e0 = zeros(8,1); Lfunction = matIntMireC; // Lc(t) classical visual servo s(t) Z(t) //Lfunction = matIntMireP; // Lp(t) classical visual servo s(t) Z* //Lfunction = matIntMireM; // Lm(t) mixte (L*+Lc(t)) //Lfunction = matIntMireD; // Ld classical interaction matrix desired Q = matWeightIdentity(Np,Nbpts); //Q = matWeightIdentityZero(Np,Nbpts,1); //Q = matWeightTV(Np,Nbpts); defineGlobalVariable(Nc,Np,Nbpts,Te,sDes,ZDes,s,Z,Q,e0,xl,xu,bl,bu,Lfunction); U = computeControlOnHorizon(Nc,Np,Uc) sm = ga_predHorLoc2dMire(Np,s,U,Te,Z); disp('-----------------sm') disp(sm') disp('----------------stest') stest = s; st =[]; for i=1:Np L = Lfunction(stest,Z) val =Te*L*U((i-1)*6+1:(i-1)*6+6); disp(val') stest = stest + Te*L*U((i-1)*6+1:(i-1)*6+6); st=[st; stest]; end disp(st') disp((st-sm)') cost = ga_costHorizon(Np,sm,Q,e0,sDes) cost = ga_costLocalMire(1,Uc) // lambda=0.4; L = Lfunction(s,Z); e = s-sDes; vc = computeVelocity(lambda, L,e) cost = ga_costLocalMire(1,Uc) vcc = computeControlOnHorizon(Nc,Np,Uc); c1Mc2 = computeMotion(vc,Te) // resulting motion cMoAV = inv(c1Mc2)*cMo; cP = changeFrameMire(oP,cMoAV); sAV = projectMireDirect(cP)' sA2 = (s + Te*L*vc'); disp(sA2') cMoA = c1Mc2*cMo; cP = changeFrameMire(oP,cMoA); sA3 = projectMireDirect(cP)' coutA=sAV-sDes' ; costA=norm(coutA) halt [x,sm,res]=predControlLocalMire(Uc,s,Z,sDes,ZDes,e0); hf2d5 = createPlanImage(6,xl,xu,"Prediction Mire"); mire2DDraw(s,0.01,3); // current projection show_pixmap() mire2DDraw(sDes-e0,0.01,5); // desired projection show_pixmap() mire2DDraw(sm(1:Nbpts*2),0.01,4); //model projection show_pixmap() smvisu =[s;sm]; mireEvolutionDraw(Np+1,smvisu,1); show_pixmap() x' cost = ga_costLocalMire(1,x) c1Mc2 = computeMotion(x(1:6)',Te) // resulting motion cMoB = inv(c1Mc2)*cMo; cP = changeFrameMire(oP,cMoB); sB = projectMireDirect(cP)' coutB=sB-sDes' ; costB=norm(coutB)
25c2192d6f920efc32cd7ed041fc834b72304be2
449d555969bfd7befe906877abab098c6e63a0e8
/2223/CH18/EX18.23/Ex18_23.sce
25c0e70729982126b1139adbc2ca165ba2c2d45f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
264
sce
Ex18_23.sce
// scilab Code Exa 18.23 axial compressor stage efficiency R=0.5; // Degree of reaction n_R=0.849; // efficiency of rotor blade row n_D=0.849; // efficiency of diffuser blade row n_st=R*n_R+(1-R)*n_D; disp("%",n_st*1e2,"the value of stage efficiency is")
dfaf88abbd713f96d827afea379392e788a90866
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set6/s_Electronic_Circuits_M._H._Tooley_995.zip/Electronic_Circuits_M._H._Tooley_995/CH12/EX12.1/Ex12_1.sce
6a9b29b3fb8f3e4f19d3d7143cbe7e3d7c199e85
[]
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
133
sce
Ex12_1.sce
errcatch(-1,"stop");mode(2);//Ex:12.1 ; ; C=100*10^-9; t_on=10*10^-3; R=(t_on/(1.1*C))/1000; printf("R= %f kohm",R); exit();
fa273ef746baf1a59890f9c286606ddf016a52a4
449d555969bfd7befe906877abab098c6e63a0e8
/833/CH12/EX12.5/Ex12_5.txt
f002123ce41cac9c72f64e709519766f9c294f9e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
255
txt
Ex12_5.txt
//Caption:Find starting current in terms of full load current //Exa:12.5 clc; clear; close; s=0.04//Slip a=1//Starting torque T_st/Full load torque(T_fl) are equal I_s=sqrt(a/s) disp(I_s,'Starting current is (below)times the full load current=' )
12b6798cedd36418ee0122a162b2051127f87045
717ddeb7e700373742c617a95e25a2376565112c
/1388/CH4/EX4.26/4_26.sce
aecc42694a928567db17bcf98d0833b1bed9cba8
[]
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
304
sce
4_26.sce
clc //initialisation of variables H= 1436.3 //cal mole^-1 d= 0.9999 //g ml^-1 d1= 0.9168 //g ml^-1 P= 1 //atm m= 18.02 //gm R= 1.987 //cal/mole K T= 2 //C //CALCULATIONS V= (p/d)-(p/d1) H1= H*82.05/(m*R) P1= H1*(-T)/(273*V) //RESULTS printf (' pressure required to decrease= %.f atm',P1)
ff65b43bd9b7c6d56c8680a2e2689ab8ccbf5a6a
449d555969bfd7befe906877abab098c6e63a0e8
/1847/CH2/EX2.36/Ch02Ex36.sce
66f0c63dee16297bb32e4e4d2f9a836cf89f4a2d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
813
sce
Ch02Ex36.sce
// Scilab Code Ex2.36:: Page-2.27 (2009) clc; clear; t = 4.5e-05; // Thickness of the soap film, cm mu = 1.33; // Refractive index of the soap film i = 45; // Angle of incidence of the light ray on the soap film, degrees // As mu = sind(i)/sind(r), solving for r r = asind(sind(i)/mu); // For dark fringe in reflected pattern, // 2*mu*t*cosd(r) = n*lambda, solving for lambda for different n's lambda = zeros(4); for n = 1:1:4 lambda(n) = 2*mu*t*cosd(r)/n; // Wavelengths for n = 1, 2, 3 and 4 if lambda(n) > 4000e-008 & lambda(n) < 7500e-008 then lambda_absent = lambda(n); end end printf("\nThe absent wavelength of reflected light in the visible spectrum = %4.2e", lambda_absent); // Result // The absent wavelength of reflected light in the visible spectrum = 5.07e-05
7573c18959ec2f18db8e7a6e9d1dfb335869084f
faec4046b5338edffb03b23e6d5fbbb4cb86f357
/Semaine 1 éléments de géométrie projective et calibration de caméra/M3DA-semaine-1-fichiers-tp/tp-camera-calibration/Alexis-Linke.sci
a28d82fe1991b1495051c1c4438d3eaab8a190e7
[]
no_license
ALX5/M3DA
d11d27fd69dc30646fbe84a9f9a354c44ef0f443
6b93d5ec43ef10131e644732761d7c8744c97dc8
refs/heads/master
2016-08-04T12:59:50.845831
2013-12-02T21:32:34
2013-12-02T21:32:34
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,702
sci
Alexis-Linke.sci
// ----------------------------------------------------------------------- /// \brief Calcule un terme de contrainte a partir d'une homographie. /// /// \param H: matrice 3*3 définissant l'homographie. /// \param i: premiere colonne. /// \param j: deuxieme colonne. /// \return vecteur definissant le terme de contrainte. // ----------------------------------------------------------------------- function v = ZhangConstraintTerm(H, i, j) v1 = H(i,1)*H(j,1); v2 = H(i,1)*H(j,2)+H(i,2)*H(j,1); v3 = H(i,2)*H(j,2); v4 = H(i,3)*H(j,1)+H(i,1)*H(j,3); v5 = H(i,3)*H(j,2)+H(i,2)*H(j,3); v6 = H(i,3)*H(j,3); v = [v1,v2,v3,v4,v5,v6]; endfunction // ----------------------------------------------------------------------- /// \brief Calcule deux equations de contrainte a partir d'une homographie /// /// \param H: matrice 3*3 définissant l'homographie. /// \return matrice 2*6 definissant les deux contraintes. // ----------------------------------------------------------------------- function v = ZhangConstraints(H) v = [ZhangConstraintTerm(H, 1, 2); ... ZhangConstraintTerm(H, 1, 1) - ZhangConstraintTerm(H, 2, 2)]; endfunction // ----------------------------------------------------------------------- /// \brief Calcule la matrice des parametres intrinseques. /// /// \param b: vecteur resultant de l'optimisation de Zhang. /// \return matrice 3*3 des parametres intrinseques. // ----------------------------------------------------------------------- function A = IntrinsicMatrix(b) // b=[B(1,1);B(1,2);B(2,2);B(1,3);B(2,3);B(3,3)] B11=b(1,:); B12=b(2,:); B22=b(3,:); B13=b(4,:); B23=b(5,:); B33=b(6,:); v0 = (B12*B13-B11*B23)/(B11*B22-B12*B12); lambda = B33-((B13^2+v0*(B12*B13-B11*B23))/B11); alpha = sqrt(lambda/B11); beta = sqrt(lambda*B11/(B11*B22-B12^2)); gamma = -B12*alpha^2*beta/lambda; u0 = gamma*v0/beta-B13*alpha^2/lambda; A=[alpha,gamma,u0;0,beta,v0;0,0,1]; endfunction // ----------------------------------------------------------------------- /// \brief Calcule la matrice des parametres extrinseques. /// /// \param iA: inverse de la matrice intrinseque. /// \param H: matrice 3*3 definissant l'homographie. /// \return matrice 3*4 des parametres extrinseques. // ----------------------------------------------------------------------- function E = ExtrinsicMatrix(iA, H) h1 = H(:,1); h2 = H(:,2); h3 = H(:,3); lambda = 1/norm(iA*h1); r1 = lambda*iA*h1; r2 = lambda*iA*h2; r3 = cross_prod(r1,r2); t = lambda*iA*h3; R = [r1,r2,r3]; E = [R,t]; endfunction function w=cross_prod(u,v) w=zeros(3,1) D=[u(:),v(:)] w(1)=det([[1;0;0],D]) w(2)=det([[0;1;0],D]) w(3)=det([[0;0;1],D]) endfunction
879402f534af39f85090ec03a25a91f4f0420612
449d555969bfd7befe906877abab098c6e63a0e8
/1979/CH5/EX5.1/Ex5_1.sce
f08cac59410ff7942f2d238bf4098f040204593e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
726
sce
Ex5_1.sce
//chapter-5 page 174 example 5.1 //============================================================================== clc; clear; //For a circular waveguide a=3;//radius in cm f0=10*10^9;//resonant frequency of a circular resonator in Hz disp('Given the mode of operator is TM011 so here n=0,m=1,p=1'); c=3*10^10;//Velocity of light in cm/sec m=1; n=0; p=1; Pnm=2.405;//dominant mode value[TM01] //CALCULATION d=((p*(%pi))/(sqrt((2*(%pi)*f0/c)^2-(Pnm/a)^2)));//The minimum distance between the two end plates in cms //OUTPUT mprintf('\nThe minimum distance between the two end plates of a circular waveguide is d=%1.2f cms',d); //=========================END OF PROGRAM===============================
8e5a3c4d2acbb605737e5732d7f08d8291fd6012
61512f592d32560e385c20528d5cb097ec1979bd
/gradient.sce
3402f290ddd047e9b031887396034a85b2075864
[]
no_license
htailfer/gradient_algorithm
a26402a0e5c854c3a5f737e41f5a0e0efd30588d
4c4d9a38a04877733af4969a198c16a0d440083c
refs/heads/master
2022-04-21T01:40:22.290620
2020-04-15T08:54:31
2020-04-15T08:54:31
255,858,914
1
0
null
null
null
null
UTF-8
Scilab
false
false
2,418
sce
gradient.sce
function y=J(x) y=10*(x(2)-x(1)^2)^2-(x(1)-1)^2 endfunction function y=nablaJ(x) y=([-40*x(1)*(x(2)-x(1)^2)+2*(x(1)-1);20*(x(2)-x(1)^2)]) endfunction function y=hessJ(x) y=[-40*x(2)+120*x(1)^2+2,-40*x(1);-40*x(1),20] endfunction x=-1:0.01:2;y=-1:0.01:2; z=zeros(length(x),length(y)) for i=1:length(x) for j=1:length(y) z(i,j)=J([x(i);y(j)]) end end clf() subplot(221) surf(x,y,z) rho=0.01 max_iter=2000 epsilon=1E-16 function[utot,nb_iter]=GPF2(J,nablaJ,u0,epsilon,max_iter,rho) nb_iter=0; u=u0; utot=u0; resid=nablaJ(u); while(nb_iter<max_iter)&(norm(resid)>epsilon) u=u-rho*resid; utot=[utot,u]; resid=nablaJ(u); nb_iter=nb_iter+1; end endfunction u0=[1;0] epsilon=1E-4 max_iter=20000 rho=0.01 [utot,nb_iter]=GPF2(J,nablaJ,u0,epsilon,max_iter,rho); subplot(222) contour(x,y,z,[0:0.5:2,3:10]); plot(utot(1,:),utot(2,:)); title('rho=0,01') subplot(223) u0=[1;0] epsilon=1E-4 max_iter=20000 rho=0.02 [utot,nb_iter]=GPF2(J,nablaJ,u0,epsilon,max_iter,rho); contour(x,y,z,[0:0.5:2,3:10]); plot(utot(1,:),utot(2,:)); title('rho=0,02') subplot(224) u0=[1;0] epsilon=1E-4 max_iter=20000 rho=0.03 [utot,nb_iter]=GPF2(J,nablaJ,u0,epsilon,max_iter,rho); contour(x,y,z,[0:0.5:2,3:10]); plot(utot(1,:),utot(2,:)); title('rho=0,03') function[utot,nb_iter]=NPF(nablaJ,hessJ,u0,epsilon,max_iter) nb_iter=0; u=u0; utot=u0; resid=nablaJ(u); while(nb_iter<max_iter)&(norm(resid)>epsilon) u=u-(inv(hessJ(u))*nablaJ(u)) utot=[utot,u] resid=nablaJ(u) nb_iter=nb_iter+1 end endfunction u0=[1.1;0.1]; epsilon=1E-16; max_iter=200; rho=0.01; [utot,nb_iter]=NPF(nablaJ,hessJ,u0,epsilon,max_iter) err=utot-ones(utot); normerr=sqrt(err(1,:).^2+err(2,:).^2) plot(1:length(normerr),normerr,'k') rho=0.01 max_iter=2000 [utot,nb_iter]=GPF2(J,nablaJ,u0,epsilon,max_iter,rho); err1=utot-ones(utot); normerr1=sqrt(err1(1,:).^2+err1(2,:).^2) plot(1:length(normerr1),normerr1,'r') rho=0.02 [utot,nb_iter]=GPF2(J,nablaJ,u0,epsilon,max_iter,rho); err2=utot-ones(utot); normerr2=sqrt(err2(1,:).^2+err2(2,:).^2) plot(1:length(normerr2),normerr2,'g') rho=0.03 [utot,nb_iter]=GPF2(J,nablaJ,u0,epsilon,max_iter,rho); err3=utot-ones(utot); normerr3=sqrt(err3(1,:).^2+err3(2,:).^2) plot(1:length(normerr3),normerr3,'b') title('Vitesse de convergence') [u,nb_iter]=NPF(nablaJ,hessJ,u0,epsilon,max_iter)
26826b481e7a5fe93b05c614e5ed47cb775fa789
449d555969bfd7befe906877abab098c6e63a0e8
/1544/CH1/EX1.1/Ch01Ex1.sce
3b529e9ca098fbb6f365ab8744d0726905395045
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
879
sce
Ch01Ex1.sce
// Scilab code Ex1.1: Pg 3 (2008) clc; clear; I =.000018; // Electric current, A V = 15000; // Electric potential, V P = 250000000 // Electric Power, W // Display standard form printf("\nStandard form:"); printf("\n=============="); printf("\n%f A = %3.1e A", I, I); printf("\n%5.0f V = %3.1e V", V, V); printf("\n%9.0f W = %3.1e W", P, P); // Display scientific notation printf("\n\nScientific form:"); printf("\n================"); printf("\n%f A = %2d micro-ampere", I, I/1e-06); printf("\n%5.0f V = %2d kilo-volt", V, V/1e+03); printf("\n%9.0f W = %3d mega-watt", P, P/1e+06); // Result // Standard form: // ============== // 0.000018 A = 1.8e-005 A // 15000 V = 1.5e+004 V // 250000000 W = 2.5e+008 W // Scientific form: // ================ // 0.000018 A = 18 micro-ampere // 15000 V = 15 kilo-volt // 250000000 W = 250 mega-watt
e6fd75070191904a30500e97dd0f2fff1d525a75
2eac84edf941c64588fef76f10d02309aabcb2fb
/System/Scilab/Scripts/createDefaultBlockImg.sci
b55f6ef9bd21ed4e2ab125c11846ea8c78d84d90
[ "BSD-3-Clause" ]
permissive
AlexisTM/X2C
fdd93bd33b931ea448ba516f5e3f9af6a5149a6a
31f39b598afe271a7fd46ef1ee9e06c410b1120c
refs/heads/master
2021-08-07T04:26:24.391617
2017-11-07T14:34:33
2017-11-07T14:34:33
109,844,123
1
0
null
null
null
null
UTF-8
Scilab
false
false
6,360
sci
createDefaultBlockImg.sci
// Copyright (c) 2017, Linz Center of Mechatronics GmbH (LCM) http://www.lcm.at/ // All rights reserved. // // This file is licensed according to the BSD 3-clause license as follows: // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // * Neither the name of the "Linz Center of Mechatronics GmbH" and "LCM" nor // the names of its contributors may be used to endorse or promote products // derived from this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. // IN NO EVENT SHALL "Linz Center of Mechatronics GmbH" BE LIABLE FOR ANY // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // This file is part of X2C. http://www.mechatronic-simulation.org/ // $LastChangedRevision: 1111 $ // $LastChangedDate:: 2017-02-28 14:18:07 +0100#$ // // Function to create default image for block with block name as text in svg // format. // Parameters: // libName - Library name // blockName - Block name // varargin - (optional) project root directory for external blocks function [] = createDefaultBlockImg(libName, blockName, varargin) funcprot(0); // import necessary java classes jimport("at.lcm.x2c.core.structure.ControlBlock"); jimport("at.lcm.x2c.utils.LibraryUtils"); // get file separator fs = filesep(); // get XML file name if length(varargin) == 0 then // internal library xmlPath = jinvoke(LibraryUtils, "getXmlDirectory", libName); else // external library if isVersionLessThan("5.5.0") then libRoot = junwrap(jinvoke(LibraryUtils, "getLibraryRootDirectory", varargin(1))); libRoot = junwrap(jinvoke(libRoot, "toString")); else // scilab version 5.5.0 or greater assumed libRoot = jinvoke(LibraryUtils, "getLibraryRootDirectory", varargin(1)) libRoot = jinvoke(libRoot, "toString"); end xmlPath = jinvoke(LibraryUtils, "getXmlDirectory", libName, libRoot); end if isVersionLessThan("5.5.0") then xmlDir = junwrap(jinvoke(xmlPath, "toString")); else // scilab version 5.5.0 or greater assumed xmlDir = jinvoke(xmlPath, "toString"); end xmlName = [xmlDir + blockName + ".xml"]; if ~isfile(xmlName) then disp("Error: could not find file " + xmlName); return; // exit script end // get/create image directory imgDir = strsubst(xmlDir, ["XML" + fs], ["Doc" + fs + "Images" + fs]); if ~isdir(imgDir) then mkdir(imgDir) end // read block XML file block = jnewInstance(ControlBlock); jinvoke(block, "readBlockXml", xmlName); // get block information from Java block object: // block mask in-/outports: mask = jinvoke(block, "getMask"); if isVersionLessThan("5.5.0") then maskInportNames = junwrap(jinvoke(mask, "getMaskInportNames")); maskOutportNames = junwrap(jinvoke(mask, "getMaskOutportNames")); else maskInportNames = jinvoke(mask, "getMaskInportNames"); maskOutportNames = jinvoke(mask, "getMaskOutportNames"); end [dummy, NrOfInports] = size(maskInportNames) [dummy, NrOfOutports] = size(maskOutportNames) maxPorts = max(NrOfInports, NrOfOutports); // calculate dimensions and alignment values for fontsize = 40pt fontSize = 40; width = (length(blockName) + 4)*fontSize; // textwidth = number of characters plus 2 spaces on each side //height = round(width/5*(2+maxPorts)); // textheight is dependent of maximum number of inports/outports and is scaled to textwidth (scaling ratio is 5/3 for single inport/outport) height = fontSize * 3; textCenter = width/2; // horizontal reference textBase = height/2 + fontSize/2; // vertical reference (baseline) try // open/create file fileName = imgDir + blockName + ".svg"; fileID = mopen(fileName, "wt"); // print header time = datevec(datenum()); mfprintf(fileID, "<?xml version='"1.0'" standalone='"yes'"?>\n"); mfprintf(fileID, "<!DOCTYPE svg PUBLIC '"-//W3C//DTD SVG 1.1//EN'" '"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'">\n"); mfprintf(fileID, "<!--\n"); mfprintf(fileID, " This file is part of X2C. http://www.mechatronic-simulation.org/\n"); mfprintf(fileID, " \n"); mfprintf(fileID, " Copyright (c) 2014, Linz Center of Mechatronics GmbH (LCM) http://www.lcm.at/\n"); mfprintf(fileID, " All rights reserved.\n"); mfprintf(fileID, " \n"); mfprintf(fileID, " This file was generated by %s on %02d-%02d-%04d %02d:%02d\n", "createDefaultBlockImg.sci", time(3), time(2), time(1), time(4), time(5)); mfprintf(fileID, " -->\n"); mfprintf(fileID, " \n"); // print body mfprintf(fileID, "<svg width='"%i'" height='"%i'" version='"1.1'" xmlns='"http://www.w3.org/2000/svg'">\n", width, height); mfprintf(fileID, "<text x='"%i'" y='"%i'" style='"text-anchor: middle;'" font-family='"sans-serif'" font-size='"%ipt'">%s</text>\n", textCenter, textBase, fontSize, blockName); mfprintf(fileID, "</svg>\n"); // close file mclose(fileID); mprintf("Default block image %s successfully created.\n", fileName); catch // some error creating the file occured disp("Error creating default image for block " + blockName + ": " + lasterror()); end endfunction
65f37334d95e47dd400b4c81a1fc0f2647cef62e
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set9/s_Engineering_Physics_M._R._Srinivasan_3411.zip/Engineering_Physics_M._R._Srinivasan_3411/CH13/EX5.2.u2/Ex5_2_u2.sce
2f346f3a66541ee87fe18e43f8c04b762ea083d4
[]
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
345
sce
Ex5_2_u2.sce
errcatch(-1,"stop");mode(2);//Example 5_2_u2 ; ; //To calculate the maximum current density hc=7.9*10^3 //units in amp/meter d=10^-3 //units in meter ic=hc*%pi*d //units in amp critcurrentden=(ic*4)/(%pi*d^2) //units in amp/meter^2 printf("The critical current density is %d amp/meter^2",critcurrentden) exit();
182ff7d1cb9146654bbdfacee774132fa49f3f53
449d555969bfd7befe906877abab098c6e63a0e8
/1733/CH4/EX4.9/4_9.sce
100c14cd0406e141253c876d39d41a331abce63b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
179
sce
4_9.sce
//4.9 clc; emf=220; duty_cycle=0.6; Vi=220*duty_cycle; Ra=1; I=20; emf_back=Vi-I*Ra; N_no_load=1000; N=emf_back*N_no_load/emf; printf("\nSpeed of motor = %.1f rpm", N)
e4a21e558f9014ad8dd0c5ec412dee85700ecb56
eb7eeb04a23a477e06f3c0e3d099889caee468b4
/src/examples/course/scilab-waves/shallowwater/animshallowwater.sci
5d1c861d3682f8994f54927ae1f5bab89c3fec6b
[]
no_license
mikeg64/iome
55699b7d7b3d5c1b006d9c82efe5136b8c909dfd
cc1c94433133e32776dcf16704ec4ec337b1b4a0
refs/heads/master
2020-03-30T15:57:33.056341
2016-04-13T09:24:27
2016-04-13T09:24:27
151,387,236
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,286
sci
animshallowwater.sci
curFig = scf(100001); clf(curFig,"reset"); //demo_viewCode("membrane.sce"); drawlater(); xselect(); //raise the graphic window // set a new colormap //------------------- cmap= curFig.color_map; //preserve old setting curFig.color_map = jetcolormap(64); //plot3d1(x,y,h(:,:,1),35,45,' ',ebox=[0 100000 0 100000 4990 5010]); plot3d1(x,y,h(:,:,1),35,45,' '); s=gce(); //the handle on the surface s.color_flag=1 ; //assign facet color according to Z value title("evolution of a 3d surface","fontsize",3) drawnow(); //figure(1) //mesh(x,y,h(:,:,index)) //plot3d(x,y,h(:,:,1),alpha=34,theta=21,flag=[2,2,3]); index=1; //mesh(x,y,h(:,:,1),h(:,:,index)); //f=gcf(); //f.color_flag=3; //f.children.color_mode=2; //Animation of H wave propogating //for index=2:length(t) for index=2:245 //mesh(x,y,h(:,:,index)) s.data.z = h(:,:,index); //plot3d(x,y,h(:,:,index),alpha=34,theta=21,flag=[2,2,3]); //mesh(x,y,h(:,:,index),h(:,:,index)); // f=gcf(); //f.children.color_flag=3; //f.children.color_mode=2; //axis ([0 100000 0 100000 4990 5010]) //title ('AERSP 423 Computer Project Part II') //xlabel('X Domain [m]') //ylabel('Y Domain [m]') //zlabel('Height [m]') //pause(0.02) end
91db586baa4de5e9b8532144be947fa7c42adf66
01ecab2f6eeeff384acae2c4861aa9ad1b3f6861
/prog_assembly/libs/scilab_code/tunnel_revtun_ver00_gui.sce
300e5d62921124f534456e1a27c217715ccae37a
[]
no_license
jhasler/rasp30
9a7c2431d56c879a18b50c2d43e487d413ceccb0
3612de44eaa10babd7298d2e0a7cddf4a4b761f6
refs/heads/master
2023-05-25T08:21:31.003675
2023-05-11T16:19:59
2023-05-11T16:19:59
62,917,238
3
3
null
null
null
null
UTF-8
Scilab
false
false
1,249
sce
tunnel_revtun_ver00_gui.sce
global file_name; //get filename, path and extension [path,fname,extension] = fileparts(file_name); hid_dir = path + '.' + fname; //while 1==1, // [a1,b1]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/program.tcl -device /dev/ttyUSB1/ -speed 115200 "+hid_dir+"/tunnel_revtun_SWC.elf"); // if (b1==0) then break end // 0 if no error occurred, 1 if error. // disp("connection issue -> it is trying again"); // unix_w('/home/ubuntu/rasp30/sci2blif/usbreset'); // sleep(2000); //end // //while 1==1, // [a1,b1]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/program.tcl -device /dev/ttyUSB1/ -speed 115200 "+hid_dir+"/tunnel_revtun_CAB.elf"); // if (b1==0) then break end // 0 if no error occurred, 1 if error. // disp("connection issue -> it is trying again"); // unix_w('/home/ubuntu/rasp30/sci2blif/usbreset'); // sleep(2000); //end unix_w("sudo chmod 777 /dev/rasp30"); while 1==1, [a1,b1]=unix_g("sudo tclsh ~/rasp30/prog_assembly/libs/tcl/program.tcl -speed 115200 "+hid_dir+"/tunnel_revtun_SWC_CAB.elf"); if (b1==0) then break end // 0 if no error occurred, 1 if error. disp("connection issue -> it is trying again"); unix_w('/home/ubuntu/rasp30/sci2blif/usbreset'); sleep(2000); end
c6014d6730d2732f8f42fac6da73d447b3678706
449d555969bfd7befe906877abab098c6e63a0e8
/181/CH1/EX1.18/example1_18.sce
2991a80ded7179b9df7bf24fbcfe16a5badbc732
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
581
sce
example1_18.sce
// Time taken to reach Brillouin zone // Basic Electronics // By Debashis De // First Edition, 2010 // Dorling Kindersley Pvt. Ltd. India // Example 1-18 in page 48 clear; clc; close; // Data given h=1.05*10^-34; // Constant of calculation in Js kB=1.112*10^8; // Brillouin zone edge along x-axis e=1.6*10^-19; // Charge on an electron in C E_0=10^4; // External electric field in V/m // Calculation tou=(h*kB)/(e*E_0); printf("Time taken to reach Brillouin zone is %0.3e s",tou); // Result // Time taken by GaAs electron to reach Brillouin zone is 7.298 ps
93a0611defbf38fbfbe879328ac5517af9c6d497
449d555969bfd7befe906877abab098c6e63a0e8
/2021/CH2/EX2.5/EX2_5.sce
f3531c5efbd149aed086c90051871600f7e57161
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
580
sce
EX2_5.sce
//Finding of Pressure //Given spgr1=0.8; //specific gravity of liquid spgr2=13.6; //specific gravity of mercury h1=0.6; //height in left limb in meter h2=0.15; //height in right limb in meter g=9.81; //gravitaional force in m/s^2 rho1=spgr1*1000; //density of liquid in Kg/m^3 rho2=spgr2*1000; //density of mecury in Kg/m^3 p=10.13; //To Find p1=(rho2*g*h2)-(rho1*g*h1); disp("Pressure at A ="+string(p1)+" N/m^2"); p2=p1/100+p; disp("Absolute Pressure "+string(p2)+" N/cm^2")
8191b3c04ee642b12dc0dc88059d61867dcc0574
449d555969bfd7befe906877abab098c6e63a0e8
/2150/CH6/EX6.3/ex6_3.sce
27dea4d41997ca2e67cc385463ae6ab10768a49c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
714
sce
ex6_3.sce
// Exa 6.3 clc; clear; close; // Given data R2 = 1;// in M ohm R2 = R2*10^6;// in ohm R1 = 2;// in M ohm R1 = R1*10^6;// in ohm V_DD = 30;// in V R_D= 1*10^3;// in ohm V_G = (R2/(R1+R2))*V_DD;// in V R_S= 2*10^3;// in ohm I_D= V_G/R_S;// in A V_D= V_DD-I_D*R_D;// in V V_DS= V_D-V_G;// in V R_D= R_D+R_S;// in ohm I_Dsat=V_DD/R_D*10^3;// in mA disp(I_D*10^3,"The value of I_D in mA is : ") disp(V_DS,"The value of V_DS in volts is : ") disp("Thus the Q-point is "+string(V_DS)+" V, "+string(I_D*10^3)+" mA") disp("DC load line shown in figure") V_D= 0:0.1:V_DD;// in V I_D= (V_DD-V_D)/R_D*10^3;// in mV plot(V_D,I_D); ylabel("I_D in mA"); xlabel("V_DS in volts"); title("DC load line")
4672b17c1b6b118a41db2e161c0097fe55eff5bb
449d555969bfd7befe906877abab098c6e63a0e8
/443/DEPENDENCIES/17_17_data.sci
67e8fde4d0ee60f2b7f18f49bd185aeec0038d19
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
sci
17_17_data.sci
//Stroke length(in m) L=0.1; //Diameter of bore(in m) D=0.06; //Speed of the engine(in rpm) N=3000; //Clearance volume(in cc) Vc=60; //Adiabatic constant y=1.4; //Relative effciency nrel=0.5; //Torque developed(in N-m) T=66.5; //Calorific value(in kJ/kgK) CV=42000; //No of cylinders K=4;
7c1a4fbc435082afb5f4a17cfb2edf686f9291a0
449d555969bfd7befe906877abab098c6e63a0e8
/3137/CH17/EX17.18/Ex17_18.sce
32313204414cc5239f7bf098f5930001a0c00403
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
414
sce
Ex17_18.sce
//Initilization of variables W=1000 //lb w_w=200 //lb weight of the individual wheel d_w=2.5 //ft diameter of the wheel v=22 //ft/s t=2 //minutes //Calculations //T1=Initial Kinetic Energy and T2=Final Kinetic Energy F=(-0.5*W*32.2^-1*v^2-4*0.5*w_w*32.2^-1*(v^2+0.5*v^2))/(10560) //lb //Negative sign in the answer tells it oposses the motion //Result clc printf('The rolling resistance is %flb',F)
cbac1a6e4bdb9be9682ae8ca25b0047e3c877927
449d555969bfd7befe906877abab098c6e63a0e8
/608/CH44/EX44.15/44_15.sce
e53d9fb1d6036b9707b716a9def16b8151544fd5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
962
sce
44_15.sce
//Problem 44.15: A loss-free transmission line has a characteristic impedance of 500/_0° and is connected to an aerial of impedance 320 + j240 ohm. Determine (a) the magnitude of the ratio of the reflected to the incident voltage wave, and (b) the incident voltage if the reflected voltage is 20/_35° V //initializing the variables: rzo = 500; // in ohm thetazo = 0; // in degrees ZR = 320 + %i*240; // in ohm rvr = 20; // in volts thetavr = 35; // in degrees //calculation: //voltage VR = rvr*cos(thetavr*%pi/180) + %i*rvr*sin(thetavr*%pi/180) //characteristic impedance Zo = rzo*cos(thetazo*%pi/180) + %i*rzo*sin(thetazo*%pi/180) //the ratio of the reflected to the incident voltage //vr = VR/Vi vr = (ZR - Zo)/(Zo + ZR) vrmag = (real(vr)^2 + imag(vr)^2)^0.5 //incident voltage, Vi Vi = VR/vr printf("\n\n Result \n\n") printf("\n the magnitude of the ratio Vr : Vi is %.3f",vrmag) printf("\n incident voltage, Vi is %.2f +(%.2f)i V",real(Vi), imag(Vi))
58a48a5e0346fb4c253ed2ac15df5c3fab43c67f
449d555969bfd7befe906877abab098c6e63a0e8
/3755/CH6/EX6.26/Ex6_26.sce
56ac4839177caf031b9acc0a7e5a31b85c9e32cb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
549
sce
Ex6_26.sce
clear // // // //Variable declaration h=6.63*10^-34; //planck's constant(J-sec) m=9.1*10^-31; //mass of electron(kg) v=3.5*10^7; //speed(cm/sec) a=0.0098/100; //accuracy(%) //Calculations deltav=v*a; //uncertainity in speed(kg m/sec) delta_p=m*deltav; //uncertainity in momentum(kg m/sec) deltax=h/(4*%pi*delta_p); //uncertainity in position of electron(m) //Result printf("\n uncertainity in position of electron is %0.4f *10^-8 m",deltax*10^8) printf("\n answer in the book is wrong")
917b0254828625b389cc5341777b2e0bccf5d3ca
449d555969bfd7befe906877abab098c6e63a0e8
/3035/CH10/EX10.3/Ex10_3.sce
70ecc09d6955d398d4777f91611e3e7b27aa9ce0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,324
sce
Ex10_3.sce
// Variable Declaration P_D = 500.0 //Total load(MW) b_1 = 15.0 //Beta value of controllable thermal plant C1 g_1 = 0.012 //Gamma value of controllable thermal plant C1 b_2 = 16.0 //Beta value of controllable thermal plant C2 g_2 = 0.018 //Gamma value of controllable thermal plant C2 b_3 = 19.0 //Beta value of controllable thermal plant C3 g_3 = 0.020 //Gamma value of controllable thermal plant C3 // Calculation Section l = (P_D+((b_1/(2*g_1))+(b_2/(2*g_2))+(b_3/(2*g_3))))/((1/(2*g_1))+(1/(2*g_2))+(1/(2*g_3))) //Lambda value which is a Lagrange multiplier P_G1 = (l - b_1)/(2*g_1) //(MW) P_G2 = (l - b_2)/(2*g_2) //(MW) P_G3 = (l - b_3)/(2*g_3) //(MW) C1 = 1500.0 + b_1*P_G1 + g_1*P_G1**2 //Fuel cost of plant C1(Rs/hr) C2 = 2000.0 + b_2*P_G2 + g_2*P_G2**2 //Fuel cost of plant C2(Rs/hr) C3 = 1000.0 + b_3*P_G3 + g_3*P_G3**2 //Fuel cost of plant C3(Rs/hr) C = C1 + C2 + C3 //Total fuel cost(Rs/hr) // Result Section printf('Value of λ from equation(10.14) = %.3f' ,l) printf('Optimal scheduling of thermal plant C1 = %.2f MW' ,P_G1) printf('Optimal scheduling of thermal plant C2 = %.2f MW' ,P_G2) printf('Optimal scheduling of thermal plant C3 = %.2f MW' ,P_G3) printf('Total cost , C = Rs %.2f/hr' ,C)
4918b45b64a982a150b6f5157ffd6ede986a067d
449d555969bfd7befe906877abab098c6e63a0e8
/746/DEPENDENCIES/6_03.sci
2384ded2117c4c5e4992c6d952ea3f76bfa227f5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
176
sci
6_03.sci
//Area of nozzle at input(in m^2): Ai=0.1; //Area of nozzle at exit(in m^2): Ae=0.02; //Outlet velocity of flow(in m/sec): V2=50; //Density of air(in kg/m^3): da=1.23;
3190ca0aab04d31f1624c76d5b27a818f35139d9
449d555969bfd7befe906877abab098c6e63a0e8
/3428/CH16/EX10.16.6/Ex10_16_6.sce
4312b9d4fd713b2e2520b45c69dd24324c277814
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
307
sce
Ex10_16_6.sce
//Section-10,Example-4,Page no.-CT.9 //To calculate the enthalpy of Neutralization of Ammonium Hydroxide. clc; dl_H=-57.32 //dl_Hformation(H_2O)in kJmol^-1 dl_HN=5.86 //dl_Hionization(NH_4OH) in kJmol^-1 x=dl_H+dl_HN disp(x,'Enthalpy of Neutralization of Ammonium Hydroxide(kJmol^-1)')
34e68d059f86855fb5bf34512d6cf489297f2115
e41b69b268c20a65548c08829feabfdd3a404a12
/3DCosmos/Data/Scripts/Space/OrbitSimulations/SatelliteOverview.SCI
748de51e0a31bc133d45fb87a0ec0ef9acb6a694
[ "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
2,419
sci
SatelliteOverview.SCI
codeblock readtextfile(ScriptDir+"\_TOOLS.sci"); codeblock readtextfile(ScriptDir+"\_SSYS.sci"); ssysframe=ssys_create; ssys_createearth(1); #ssys_createluna(1); ssys_showstarback(true); GetPlanetOrbit("Earth").visible=false; root.time=time(2009,9,1,9,0,0); root.TimeSpeedFactor=300; earthframe=GetPlanetFrame("Earth"); pengtexture=ssysframe.CreateTexture("pengt",datadir+"\textures\star2.bmp"); peng=earthframe.Inclin.add("PEngine"); peng.PointSize=1000; peng.Texture=pengtexture.name; peng.color=color(1,0.5,0.3); motions=list; motionpoints=list; satlist1=list;satlist2=list;satlist3=list; ReadObject(satlist3,datadir+"\Satellites\gps.bfl"); ReadObject(satlist1,datadir+"\Satellites\geostationary.bfl"); ReadObject(satlist2,datadir+"\Satellites\eccentrics.bfl"); satlist=satlist1+satlist2+satlist3; ct=0; foreach sat in satlist do { if (sat.Eccentricity<0.95) and (ct<1200) then { mt=MotionKepler.Create(earthframe.Inclin,"Motion"+str(ct)); mt.SemiMajorAxis=sat.SemiMajorAxis; mt.Eccentricity=sat.Eccentricity; mt.Inclination=sat.Inclination; mt.AscendingNode=sat.AscendingNode; mt.ArgPerigee=sat.ArgOfPericenter; mt.period=sat.Period; mt.PeriTime=timeJD(sat.Epoch); mt.PeriTime.AddDays(-1*sat.MeanAnomaly/360.0*sat.Period); motions.add(mt); peng.add; ct=ct+1; # cv=earthframe.inclin.add("Curve"); # mt.CreateCurve(cv,200); } } #initialise viewing parameters vp=GetViewPort; vp.enableusernavigation=true; vp.NearClipPlane=20000; vp.FarClipPlane=400000; vp.FocalDistance=120000; vp.cameradir=vecnorm(earthframe.Transf.origin-point(0,0,0))-vector(0,0,0.4); vp.camerapos=point(0,0,0)-vp.FocalDistance*vp.cameradir; #create clock clockframe=root.SC.Universe.addscreenframe("ClockFrame"); clockframe.EnableLight=false;clockframe.color=color(0.5,0.5,0.5); info_clock=clockframe.add("Clock","Type":ClockTypeAnalog,"Position":point(0.1,0.15,0),"Size":0.08); while true do { incrtime; #co-move camera with Earth movement (enhanced precision mechanism) root.sc.universe.transf.reset; ttf=earthframe.totaltransformation;ttf.invert; root.sc.universe.transf=ttf; root.sc.light0pos=ttf*point(0,0,0); #keep planet in focal plane vp.FocalDistance=1.1*distance(vp.camerapos,point(0,0,0)); EvalMotionList(motions,motionpoints); peng.SetPpositionVec(motionpoints); render; }
a89840c53fd6c0bf232bdc274542ebb1142f7ecb
449d555969bfd7befe906877abab098c6e63a0e8
/2141/CH9/EX9.9/Ex9_9.sce
dbf79d4df4bef2531c41aeb9ff5ed014d3d4dc9f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
587
sce
Ex9_9.sce
clc //initialisation of variables T1=520 //R P1=14.7 //lbf/in^2 v1=(53.34*T1)/(P1*144)//ft^3/lbm T=2.3 //lbf T2=T*T1//R P2=18.4*(P1)//lbf/in^2 v2=v1/8 //ft^3/lbm Q=800 //Btu/lbm T3=Q/0.171 //R T4=T2+T3//R T5=4.92 //R T6=T5*P2//lbf/in^2 t=T4/T//R p=18.4 //lbf/in^2 p1=T6/p//lbf/in^2 nth=0.565 //btu/lbm Cv=0.171 //Btu g=144//ft T=778//f //CALCULATIONS Q1=Cv*(T1-t)//Btu/lbm Nth=1-(-Q1/Q)//Btu/lbm Wnet=Q+Q1 //Btu/lbm Mep=(Wnet*T)/((v1-v2)*g)//lbf/in^2 //RESULTS printf('The pressure and thermal efficiency and the mean efficiency pressure=% f lbf/in^2',Mep)
0383ffd1d0c54630faf77940a690ba44acbf368c
d465fcea94a1198464d7f8a912244e8a6dcf41f9
/system/kiks_detect_collision.sci
b8da9e87252157e8ecd5ac7015c4f74cdc11f665
[]
no_license
manasdas17/kiks-scilab
4f4064ed7619cad9e2117a6c0040a51056c938ee
37dc68914547c9d0f423008d44e973ba296de67b
refs/heads/master
2021-01-15T14:18:21.918789
2009-05-11T05:43:11
2009-05-11T05:43:11
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
6,111
sci
kiks_detect_collision.sci
function [ret] = kiks_detect_collision(id,nonetwork) // Ouput variables initialisation (not found in input variables) ret=[]; // Number of arguments in function call [%nargout,%nargin] = argn(0) // Display mode mode(0); // Display warning for floating point exception ieee(1); // ----------------------------------------------------- // (c) 2000-2004 Theodor Storm <theodor@tstorm.se> // http://www.tstorm.se // ----------------------------------------------------- // collision detection global("KIKS_REMOTE_ARRAY_NEW","KIKS_FID","KIKS_ARENA_MASK","KIKS_ROBOT_MATRIX","KIKS_RBTMASK","KIKS_REMOTE_OBJECTS_ARRAY_NEW","KIKS_NET_BUFSIZ","KIKS_MMPERPIXEL","KIKS_WALL_WIDTH","KIKS_GRIPPER_ACTIVE");// KIKS_GRIPPER_XCOORD KIKS_GRIPPER_YCOORD KIKS_GRIPPER_GRP_XCOORD KIKS_GRIPPER_GRP_YCOORD KIKS_GRIPPER_ARM_X KIKS_GRIPPER_ARM_Y KIKS_GRIPPER_LGRP_X KIKS_GRIPPER_LGRP_Y KIKS_GRIPPER_RGRP_X KIKS_GRIPPER_RGRP_Y; if ~isempty(KIKS_GRIPPER_ACTIVE) then kiks_calculate_gripper(id); end; if %nargin<2 then nonetwork = []; end; ret = 1; if mtlb_logic(mtlb_double(KIKS_FID),"==",-1) then [ys,xs] = size(mtlb_double(KIKS_ARENA_MASK)); if ~isempty(KIKS_GRIPPER_ACTIVE) then // ! L.21: mtlb(KIKS_GRIPPER_ARM_X) can be replaced by KIKS_GRIPPER_ARM_X() or KIKS_GRIPPER_ARM_X whether KIKS_GRIPPER_ARM_X is an M-file or not // ! L.21: mtlb(KIKS_GRIPPER_LGRP_X) can be replaced by KIKS_GRIPPER_LGRP_X() or KIKS_GRIPPER_LGRP_X whether KIKS_GRIPPER_LGRP_X is an M-file or not // ! L.21: mtlb(KIKS_GRIPPER_RGRP_X) can be replaced by KIKS_GRIPPER_RGRP_X() or KIKS_GRIPPER_RGRP_X whether KIKS_GRIPPER_RGRP_X is an M-file or not grpxp = floor(mtlb_double([mtlb(KIKS_GRIPPER_ARM_X),mtlb(KIKS_GRIPPER_LGRP_X),mtlb(KIKS_GRIPPER_RGRP_X)])); // ! L.22: mtlb(KIKS_GRIPPER_ARM_Y) can be replaced by KIKS_GRIPPER_ARM_Y() or KIKS_GRIPPER_ARM_Y whether KIKS_GRIPPER_ARM_Y is an M-file or not // ! L.22: mtlb(KIKS_GRIPPER_LGRP_Y) can be replaced by KIKS_GRIPPER_LGRP_Y() or KIKS_GRIPPER_LGRP_Y whether KIKS_GRIPPER_LGRP_Y is an M-file or not // ! L.22: mtlb(KIKS_GRIPPER_RGRP_Y) can be replaced by KIKS_GRIPPER_RGRP_Y() or KIKS_GRIPPER_RGRP_Y whether KIKS_GRIPPER_RGRP_Y is an M-file or not grpyp = floor(mtlb_double([mtlb(KIKS_GRIPPER_ARM_Y),mtlb(KIKS_GRIPPER_LGRP_Y),mtlb(KIKS_GRIPPER_RGRP_Y)])); grppos = mtlb_a(mtlb_s(grpxp,1)*ys,grpyp); // ! L.24: abs(mtlb_double(mtlb_e(KIKS_ARENA_MASK,grppos))) may be replaced by: // ! --> mtlb_double(mtlb_e(KIKS_ARENA_MASK,grppos)) if mtlb_double(mtlb_e(KIKS_ARENA_MASK,grppos)) is real grpcoll = mtlb_find(abs(mtlb_double(mtlb_e(KIKS_ARENA_MASK,grppos)))); if ~isempty(grpcoll) then ret = 2; // TODO: indicate gripper collision so no rotation is performed return; end; end; minx = mtlb_s(floor(mtlb_double(KIKS_ROBOT_MATRIX(id,1,1))/mtlb_double(KIKS_MMPERPIXEL)),floor(mtlb_double(KIKS_ROBOT_MATRIX(id,2,2))/mtlb_double(KIKS_MMPERPIXEL))); // xpos - robot radius miny = mtlb_s(floor(mtlb_double(KIKS_ROBOT_MATRIX(id,1,2))/mtlb_double(KIKS_MMPERPIXEL)),floor(mtlb_double(KIKS_ROBOT_MATRIX(id,2,2))/mtlb_double(KIKS_MMPERPIXEL))); // ypos - robot radius maxx = mtlb_a(floor(mtlb_double(KIKS_ROBOT_MATRIX(id,1,1))/mtlb_double(KIKS_MMPERPIXEL)),floor(mtlb_double(KIKS_ROBOT_MATRIX(id,2,2))/mtlb_double(KIKS_MMPERPIXEL))); maxy = mtlb_a(floor(mtlb_double(KIKS_ROBOT_MATRIX(id,1,2))/mtlb_double(KIKS_MMPERPIXEL)),floor(mtlb_double(KIKS_ROBOT_MATRIX(id,2,2))/mtlb_double(KIKS_MMPERPIXEL))); KIKS_WALL_WIDTH_SCALED = mtlb_double(KIKS_WALL_WIDTH)/mtlb_double(KIKS_MMPERPIXEL); if bool2s(bool2s(bool2s(mtlb_logic(minx,"<",KIKS_WALL_WIDTH_SCALED))|bool2s(mtlb_logic(maxx,">",mtlb_s(xs,KIKS_WALL_WIDTH_SCALED))))|bool2s(mtlb_logic(miny,"<",KIKS_WALL_WIDTH_SCALED)))|bool2s(mtlb_logic(maxy,">",mtlb_s(ys,KIKS_WALL_WIDTH_SCALED))) then ret = 99; return; end; map = mtlb_a(mtlb_double(KIKS_ARENA_MASK(mtlb_imp(miny,maxy),mtlb_imp(minx,maxx))),mtlb_double(KIKS_RBTMASK)); ret = mtlb_max(mtlb_max(map,"m"),"m"); //ret = any(KIKS_ARENA_COLORMASK(miny:maxy, minx:maxx) & KIKS_RBTMASK_COL)+1; else // let server handle collision detection // !! L.47: Unknown function kiks_server_request not converted, original calling sequence used sret = kiks_server_request(id); if ~isempty(sret) then if mtlb_logic(mtlb_double(mtlb_e(sret,1)),"==",asciimat("N")) then // server could not give us a position ret = 100; return; end; if mtlb_logic(mtlb_double(mtlb_e(sret,1)),"==",asciimat("O")) then // !! L.54: Matlab function sscanf not yet converted, original calling sequence used ret = [1;sscanf(sret,"OK %f %f")]; // !! L.55: Matlab function sscanf not yet converted, original calling sequence used KIKS_REMOTE_ARRAY_NEW = sscanf(mtlb_e(sret,4:$),"%f"); // we''ve fetched the updated object array. KIKS_REMOTE_ARRAY_NEW = mtlb_e(KIKS_REMOTE_ARRAY_NEW,3:$); // !! L.57: Unknown function kiks_update_remote not converted, original calling sequence used kiks_update_remote; // !! L.58: Unknown function kiks_recieve_string not converted, original calling sequence used res = kiks_recieve_string(KIKS_FID); // !! L.59: Matlab function sscanf not yet converted, original calling sequence used KIKS_REMOTE_OBJECTS_ARRA = sscanf(mtlb_e(res,6:$),"%f"); // ! L.60: mtlb(kiks_update_remote_objec) can be replaced by kiks_update_remote_objec() or kiks_update_remote_objec whether kiks_update_remote_objec is an M-file or not // !! L.60: Unknown function kiks_update_remote_objec not converted, original calling sequence used kiks_update_remote_objec; end; else // no response means that the connection to the server is gone. // !! L.63: Unknown function kiks_server_disconnect not converted, original calling sequence used kiks_server_disconnect; // !! L.64: Unknown function kiks_halt not converted, original calling sequence used kiks_halt; // !! L.65: Matlab function errordlg not yet converted, original calling sequence used errordlg("Connection to server lost.","KiKS network error"); end; end; endfunction
0c5ffb4862d949024f8b06c0d514d71ed64bbbdc
449d555969bfd7befe906877abab098c6e63a0e8
/2223/CH18/EX18.4/Ex18_4.sce
8e55e700db2c870b8cc931bcf18807c1097a4c18
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
865
sce
Ex18_4.sce
// scilab Code Exa 18.4 Calculation on a Diffuser pe=35; // Initial Pressure in mm W.G. pa=1.0135; // ambient pressure in bar c1=100; // entry velocity in m/s C_pa=0.602; // actual pressure recovery coefficient ro=1.25; // density in kg/m3 g=9.81; // Gravitational acceleration in m/s^2 Ar=1.85; // Area Ratio of Diffuser // part(a) C_ps=1-(1/(Ar^2)); disp(C_ps,"(a)ideal value of the pressure recovery coefficient is") // part(b) n_D=C_pa/C_ps; disp ("%",n_D*1e2,"(b)Efficiency of the diffuser is") // part(c) p1=pa+(pe*g*1e-5); p01=p1+(0.5*ro*(c1^2)*1e-5); delp_0=(C_ps-C_pa)*(0.5*ro*(c1^2)*1e-5); disp("mm W.G.",delp_0*1e5/g,"(c)the stagnation pressure loss across the diffuser is") // part(d) p02=p01-delp_0; c2=c1/Ar; p2=p02-(0.5*ro*(c2^2)*1e-5); disp("mm W.G.",(p2-pa)*1e5/g,"(d)the gauge pressure at the diffuser exit is")
035dfdfa846b4978d5b0384e0c8f0d33bb628a66
449d555969bfd7befe906877abab098c6e63a0e8
/3537/CH8/EX8.9/Ex8_9.sce
357a5a5fdc37c62f200958da9579741ba2e15539
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex8_9.sce
//Example 8_9 clc(); clear; //To calculate the natural frequency of ultrasonic waves l=5.5*10^-3 //units in meters Y=8*10^10 //units in N/m^2 d=2.65*10^3 //units in kg/m^3 v=(1/(2*l))*sqrt(Y/d) printf("The natural frequency of ultrasonic waves is %.0f",v) //In textbook answer printed wrong as 499 correct answer is 499493
aa6525c233cefb4b8eb253f3b97374ceac4e823e
449d555969bfd7befe906877abab098c6e63a0e8
/2084/CH18/EX18.9/18_9.sce
52b1fa2d3e70e803f4db1baa55b8d9e6c701d346
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
595
sce
18_9.sce
//developed in windows XP operating system 32bit //platform Scilab 5.4.1 clc;clear; //example 18.9 //calculation of size of the image of an object placed at a distance from a convex lens //given data f=12 //focal length(in cm) u=-8 //object distance(in cm) h1=2; //object height(in cm) //calculation v=1/((1/f)+(1/u)); //lens formula m=v/u; //lateral magnification formula for lens h2=m*h1; //lateral magnification formula for lens if(h2>0) disp(h2,'image is erect and is of length(in cm)'); else disp(h2,'image is inverted and is of length(in cm)'); end
59439f552928afbc76e71b538b04d313f0236edc
449d555969bfd7befe906877abab098c6e63a0e8
/2672/CH3/EX3.2/Ex3_2.sce
94596c1f8c2c5042c1ddf54b98dc551d38de07f7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
355
sce
Ex3_2.sce
//Example 3_2 clc; clear; close; format('v',5); //given data : //v=150*sin(100*%pi*t) R=50;//ohm Vm=150;//V omega=100*%pi;// f=omega/2/%pi;//Hz Vrms=Vm/2;//V Vav=Vm/%pi;//V Irms=Vm/2/R;//A disp(Irms,"rms value of current (A)"); Iav=Vm/%pi/R;//A disp(Iav,"Average value of current (A)"); Kf=Irms/Iav;//Form Factor disp(Kf,"Form Factor")
74f02e04e896dc7c5ec5fb166e04d11e42fc2065
449d555969bfd7befe906877abab098c6e63a0e8
/1826/CH8/EX8.20/ex8_20.sce
78851a4d520bf92d587a6035529755c6bdaf5b6c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
368
sce
ex8_20.sce
// Example 8.18, page no-221 clear clc h=6.62*10^-34//Js m=9.1*10^-31//Kg e=1.6*10^-19//C ef=7*e k=((3/(8*%pi))^(2/3))*((h^2)/(2*m)) k=ef/k n=k^(1.5) printf("The number of free electrons concentration in metal is %.2f *10^28 per cubic meter ",n*10^-28) vth=sqrt(2*ef/m) printf("\nThe termal velocity of electrons in copper is %.3f *10^6 m/s",vth*10^-6)
4c54498f59500e7eaed6941b87df33a68ed1f26a
449d555969bfd7befe906877abab098c6e63a0e8
/2216/CH9/EX9.2/ex_9_2.sce
542cc876a79a12b98422007d5127a1f77e9d07f7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
212
sce
ex_9_2.sce
//Example 9.2: The thickness clc; clear; close; //given data : format('v',7) lamda=589.3*10^-9;// in m ne=1.486; no=1.658; x=(lamda/(2*(no-ne)))*10^3; disp(x,"The thickness of the a quarter wave plate,x(mm) = ")
533968ce64470d67af9c19d1d99f69834c14fdc6
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.4/Unix-Windows/scilab-2.4/macros/mtlb/mtlb_subplot.sci
69fe0f214523efdd71efbc2125dd08054247af51
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
195
sci
mtlb_subplot.sci
function mtlb_subplot(m,n,p) // Copyright INRIA [lhs,rhs]=argn(0) if rhs==1 then p=modulo(m,100) n=modulo(m-100*p,10) m=m-100*p-10*n end j=int((p-1)/n) i=p-1-n*j xsetech([i/n,j/m,1/n,1/m])
1da685b1a41e05649dd39b76c0b9f4108f84e713
449d555969bfd7befe906877abab098c6e63a0e8
/2276/CH11/EX11.11/chapter11_ex11.sce
d8cfd0789662bcb593df5e18149cf79fe0de8f42
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
392
sce
chapter11_ex11.sce
clc clear //input //from the characteristics when Vce=15V ic1=5;//collector current in milli amperes ic2=2.8;//collector current in milli amperes ib1=100;//base current in micro amperes ib2=50;//base current in micro amperes //calculations b=((ic1-ic2)*1000)/(ib1-ib2);//current gain //output mprintf('when the collector-emitter voltage is 15V the current gain is %3.0f',b)
17771874c37930e915a4197cfee572fe390052ac
717ddeb7e700373742c617a95e25a2376565112c
/2414/CH3/EX3.4/Ex3_4.sce
f1dfa0b8ac61bf9e396fc5414a3bc8549fea2cf6
[]
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
442
sce
Ex3_4.sce
clc; clear all; //chapter 3 //page no 85 //example 3.4 A=20; //Volts T=1*10^-3; //seconds f=[-3/T:3/T]; //in kHz Vf=[] for i=1:length(f) if f(i)==0 then Vf=[Vf A*T]; else Vf=[Vf A*T*sin(%pi*f(i)*T)/(%pi*f(i)*T)]; end end clf; plot2d(f,Vf,[5]) a=gca(); // Handle on axes entity a.x_location = "origin"; a.y_location = "origin"; xtitle('Amplitude Spectrum','f,Hz','V(f)'); xgrid
25f45bd288d5d5d802367387c24741455e646a24
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH11/EX11.39/example11_39.sce
b8b0b133ba4ef30ee2c86ad132d9231db09ff3d7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
415
sce
example11_39.sce
clc // Given that k = 1.02 // kinetic energy of electron in Mev E_ = 0.51 // rest mass energy of electron in Mev c = 3e8 // velocity of photon in meter/sec // Sample Problem 39 on page no. 11.32 printf("\n # PROBLEM 39 # \n") printf(" Standard formula used \n") printf(" E = KE + m*c^2 \n m = m_0/((1-v^2/c^2)^1/2) \n") E = k + E_ v = c * sqrt(1 - (E_ / E)^2) printf("\n Speed of the electron is %e meter/sec.",v)
171a8b35c5f0bb3bbecfed2cbdc4165757225461
449d555969bfd7befe906877abab098c6e63a0e8
/401/CH7/EX7.1/Example7_1.sce
508092ea233bc5aac89f39b04983b95a7e8440aa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
964
sce
Example7_1.sce
//Example 7.1 //Program to determine the total carrier recombination lifetime and //the power internally generated within the device clear; clc ; close ; //Given data Tau_r=60; //ns - RADIATIVE RECOMBINATION LIFETIME Tau_nr=100; //ns - NON RADIATIVE RECOMBINATION LIFETIME Lambda=0.87*10^-6; //metres - PEAK EMISSION WAVELENGTH c= 2.998*10^8; //m/s - SPEED OF LIGHT h= 6.626*10^(-34); //J/K - PLANK's CONSTANT e=1.602*10^(-19); //Coulumbs - CHARGE OF AN ELECTRON i=40*10^(-3); //A - DRIVE CURRENT //Total carrier recombination lifetime Tau=Tau_r*Tau_nr/(Tau_r+Tau_nr); //Internal quantum efficiency eeta_int=Tau/Tau_r; //Power internally generated within the device P_int=eeta_int*h*c*i/(Lambda*e); //Displaying the Results in Command Window printf("\n\n\t Total carrier recombination lifetime is %0.1f ns.",Tau); printf("\n\n\t Power internally generated within the device is %0.1f mW .",P_int/10^(-3));
eef0dfe75c663cf9ba60028848608322f0750987
449d555969bfd7befe906877abab098c6e63a0e8
/788/CH5/EX5.9.b/5_9_soln.sce
c746fcaecd5e46a77250da9259dbbf0f6c8bb75f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
803
sce
5_9_soln.sce
clc; pathname=get_absolute_file_path('5_9_soln.sce') filename=pathname+filesep()+'5_9_data.sci' exec(filename) // Solutions: // volumetric displacement in m^3/rev, Vd=100/(10^6); //m^3/rev // Speed of pump in rps, N=N/60; //rps // Theoretical pump flow rate, Qt=Vd*N; //m^3/s // Therefore,volumetric efficiency, eta_v=(Qa/Qt); // Now, mechanical efficiency, eta_m=(p*10^5*Qt)/(Ta*N*2*(%pi)); // overall Efficiency, eta_o=eta_v*eta_m*100; //% // rounding off the above answer eta_o=fix(eta_o)+(fix(floor((eta_o-fix(eta_o))*10))/10); //% // Theoretical torque required to operate the pump, Tt=ceil(eta_m*Ta); //N.m // Results: printf("\n Results: ") printf("\n The overall efficiency of pump is %.1f percent.",eta_o) printf("\n The Theoretical torque required to operate the pump is %.0f N.m.",Tt)
66958e79470ae93b9552754b9d9cbab8c7ac13ee
449d555969bfd7befe906877abab098c6e63a0e8
/3136/CH4/EX4.13/Ex4_13.sce
9089db9eb40354d995ba44e291e5097fde8df89d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,170
sce
Ex4_13.sce
clear all; clc; disp("The specific speeds for all three options can be calculated") N_sa=3600*(500^0.5)/(350^0.75) printf("Nsa= %0.0f rpm*(gpm^0.5)/(ft^0.75)",N_sa) N_sb=4320*(500^0.5)/(350^0.75) printf("\nNsb= %0.0f ",N_sb) N_sc=3600*((500^0.5)/(175^0.75)) printf("\nNsc= %0.0f",N_sc) disp("From figures 4.20 and 4.36, we oobtain Effa=0.75, Dsa=1.7,Effb=0.78,Dsb=1.4,Effc=0.80,Dsc=1.31") D_sa=1.7 Q=500 H=350 D_a=D_sa*(Q^0.5)/(H^0.25) printf("\nDa=Dsa*(Q^0.5)/(H^0.25)= %0.1f in",D_a) D_sb=1.4 D_b=D_sb*(Q^0.5)/(H^0.25) printf("\nDb= %0.1f in",D_b) D_sc=1.1 D_c=D_sc*(Q^0.5)/(H^0.25) printf("\nDc= %0.1f in",D_c)//for Dsc=1.1 the value determined is correct. The value of Dc given in the book is incorrect. Q=500*0.00223//conversion from gpm to cubic ft/s //let x=rho*g x=62.4 P_h=Q*x*H printf("\nThe output hydraulic power is equal to %0.0f ft-lbf/s = 44.3hp=33kW",P_h) P_a=33/(0.75*0.9) printf("\nThe power required for option a= %0.1f kW",P_a) P_b=33/(0.78*0.95*0.9) printf("\nThe power required for option b= %0.1f kW",P_b) P_c=33/(0.80*0.9) printf("\nThe power required for option c= %0.1f kW",P_c)
0ed35fbfe6fcda209708bd85b082512d1a680122
449d555969bfd7befe906877abab098c6e63a0e8
/848/CH6/EX6.2/Example6_2.sce
830baf156e8873fdca65a63bf962480067c03edb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
398
sce
Example6_2.sce
//clear// //Caption: Calculation of Quantum efficiency //Example6.2 //page 226 clear; clc; close; Ip_q = 5.4*(10^6);//electron-hole pairs generated Pin_hv = 6*(10^6);//number of incident photons etta = Ip_q/Pin_hv; disp(etta,'Quantum efficiency =') disp(etta*100,'Quantum efficiency in percentage =') //Result //Quantum efficiency = 0.9 //Quantum efficiency in percentage = 90.
7630c468663de367e371f89313dff480babf4402
449d555969bfd7befe906877abab098c6e63a0e8
/1067/CH19/EX19.1/19_1.sce
ba3f789c802d9ed685379d68ec94a4860fb85a1b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
269
sce
19_1.sce
clc; clear; i=10; v=200; z=v/i; I1=20/i; I2=.2/i; v1=50/v; r=2/z; mprintf("the base impedence=%dohm\n",z); mprintf("the base values for 20A=%dp.u.\n.the base values for 2A=%fp.u.\nthe base values for 50V=%fp.u.\n the base values for 2ohm=%fp.u",I1,I2,v1,r);
e3850cd246c2e43c5a777424d2b56610da81c230
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/Hyperscape 1v1.sce
08cdd8beb0955fb05ca7233918cfcce9a5617776
[]
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
35,369
sce
Hyperscape 1v1.sce
Name=Hyperscape 1v1 PlayerCharacters=A BotCharacters=Hyperscape.bot IsChallenge=true Timelimit=30.0 PlayerProfile=A AddedBots=Hyperscape.bot PlayerMaxLives=100 BotMaxLives=8 PlayerTeam=1 BotTeams=2 MapName=boxer1spnobounds.map MapScale=10.0 BlockProjectilePredictors=false BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=false TimeRefilledByKill=0.0 ScoreToWin=1000.0 ScorePerDamage=0.0 ScorePerKill=0.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=1.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=Track, Air, Tracking WeaponHeroTag= DifficultyTag=5 AuthorsTag=Omegasmr BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=false Description=Modified version of Air Dodge to look like a hyperscape 1v1 GameVersion=2.0.1.2 ScorePerDistance=0.0 MBSEnable=true MBSTime1=0.02 MBSTime2=0.04 MBSTime3=2.0 MBSTime1Mult=0.03 MBSTime2Mult=0.28 MBSTime3Mult=0.33 MBSFBInstead=false MBSRequireEnemyAlive=false LockFOVRange=false LockedFOVMin=60.0 LockedFOVMax=120.0 LockedFOVScale=Clamped Horizontal [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=Hyperscape DodgeProfileNames=Very Short Strafes + Jump;Circle Strafe;ADAD DodgeProfileWeights=1.0;1.0;1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=Rocket Flyer SeeThroughWalls=false NoDodging=false NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=0.810 Y=0.200 Z=0.000 LaserAlpha=1.0 [Character Profile] Name=A MaxHealth=100.0 WeaponProfileNames=Track Master 100;;;;;;; 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=1500.0 MaxCrouchSpeed=500.0 Acceleration=10000.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=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=true ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=true JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=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=Rocket Flyer MaxHealth=200.0 WeaponProfileNames=Rocket Launcher;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=5.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=2.0 MovementType=Base MaxSpeed=1000.0 MaxCrouchSpeed=500.0 Acceleration=24000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.15 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=true EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=0.000 Y=0.000 Z=0.787 TeamBodyColor=X=0.000 Y=0.000 Z=0.784 TeamHeadColor=X=0.000 Y=0.000 Z=0.787 BlockSelfDamage=true InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=true AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=280.0 MainBBRadius=45.0 MainBBHasHead=true MainBBHeadRadius=30.0 MainBBHeadOffset=-30.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=290.0 ProjBBRadius=55.0 ProjBBHasHead=true ProjBBHeadRadius=40.0 ProjBBHeadOffset=-40.0 ProjBBHide=true HasJetpack=true JetpackActivationDelay=0.2 JetpackFullFuelTime=2.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=true JetpackThrust=7500.0 JetpackMaxZVelocity=600.0 JetpackAirControlWithThrust=0.15 AbilityProfileNames=Gravity Boost.abilmov;Boop Rocket.abilwep;Melee.abilmelee; HideWeapon=false AerialFriction=0.3 StrafeSpeedMult=1.0 BackSpeedMult=0.9 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=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=Very Short Strafes + Jump MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=true MinLRTimeChange=0.1 MaxLRTimeChange=0.3 MinFBTimeChange=0.1 MaxFBTimeChange=0.3 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.6 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Dodge Profile] Name=Circle Strafe MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.5 MaxLRTimeChange=1.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=50.0 DamageReactionResetTimer=0.5 JumpFrequency=0.2 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Oppose TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Dodge Profile] Name=ADAD 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=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.2 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.16 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.1 MaxCrouchTime=0.2 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Weapon Profile] Name=Track Master 100 Type=Hitscan ShotsPerClick=1 DamagePerShot=1.0 KnockbackFactor=0.0 TimeBetweenShots=0.01 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=1000000.0 GravityScale=1.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.1 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.01 HitSoundCooldown=0.01 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=0.0 TaggingHitFactor=0.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=Horizontal (16:9) ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 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=None ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.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,5.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=1.0,1.0,-1.0,5.0 SpreadMCA=1.0,1.0,-1.0,5.0 SpreadSSH=0.0,0.1,0.0,0.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=0.0,0.1,0.0,0.0 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=1.0 AAMaxSpeed=1000.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Rocket Launcher Type=Projectile ShotsPerClick=1 DamagePerShot=120.0 KnockbackFactor=4.0 TimeBetweenShots=0.8 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=5090.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=5090.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=100.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=0.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 ProjectileGraphic=Rocket VisualLifetime=0.1 BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=2.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=0.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=0 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=Horizontal (16:9) ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 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=Flare ParticleBodyImpact=Flare ParticleProjectileTrail=None ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=true Radius=500.0 DamageAtCenter=120.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=true SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=2 AAPreferClosestPlayer=false AAAlpha=0.5 AAMaxSpeed=0.5 AADeadZone=0.0 AAFOV=180.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=true TriggerBotDelay=0.001 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false [Weapon Profile] Name=Boop Rocket Type=Projectile ShotsPerClick=1 DamagePerShot=0.0 KnockbackFactor=4.0 TimeBetweenShots=0.8 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=5090.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=5090.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=0.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=0.0 DelayBeforeShot=0.2 ProjectileGraphic=Rocket VisualLifetime=0.1 BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=2.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=0.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=0 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=2000.0 FlatKnockbackVertical=1000.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=2000.0 FlatKnockbackVerticalMin=1000.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Horizontal (16:9) ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 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=Flare ParticleBodyImpact=Flare ParticleProjectileTrail=None ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=true Radius=1000.0 DamageAtCenter=0.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=true SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false [Movement Ability Profile] Name=Gravity Boost MaxCharges=1.0 ChargeTimer=10.0 ChargesRefundedOnKill=1.0 DelayAfterUse=0.5 FullyAuto=true AbilityDuration=0.0 LockDirectionForDuration=false NegateGravityForDuration=true MainVelocity=400.0 MainVelocityCanGoVertical=false MainVelocitySetToMovementKeys=true UpVelocity=2500.0 EndVelocityFactor=1.0 Hurtbox=false HurtboxRadius=50.0 HurtboxDamage=50.0 HurtboxGroundKnockbackFactor=1.0 HurtboxAirKnockbackFactor=1.0 AbilityBlocksTurning=false AbilityBlocksMovement=false AbilityBlocksAttack=false AttackCancelsAbility=false AbilityReloadsWeapon=false HealthRestore=0.0 AIUseInCombat=true AIUseOutOfCombat=false AIUseOnGround=true AIUseInAir=true AIReuseTimer=10.0 AIMinSelfHealth=0.0 AIMaxSelfHealth=99.0 AIMinTargHealth=0.0 AIMaxTargHealth=100.0 AIMinTargDist=0.0 AIMaxTargDist=10000.0 AIMaxTargFOV=45.0 AIDamageReaction=false AIDamageReactionIgnoreChance=0.0 AIDamageReactionMinDelay=0.0 AIDamageReactionMaxDelay=0.0 AIDamageReactionCooldown=0.1 AIDamageReactionThreshold=0.0 AIDamageReactionResetTimer=0.1 [Weapon Ability Profile] Name=Boop Rocket MaxCharges=1.0 ChargeTimer=12.0 ChargesRefundedOnKill=1.0 DelayAfterUse=0.5 FullyAuto=true WeaponProfile=Boop Rocket BlockAttackTimer=0.0 AbilityBlockedWhenAttacking=false AmmoPerShot=0 AIUseInCombat=true AIUseOutOfCombat=false AIUseOnGround=true AIUseInAir=true AIReuseTimer=1.0 AIMinSelfHealth=0.0 AIMaxSelfHealth=100.0 AIMinTargHealth=0.0 AIMaxTargHealth=100.0 AIMinTargDist=0.0 AIMaxTargDist=2000.0 AIMaxTargFOV=15.0 AIDamageReaction=false AIDamageReactionIgnoreChance=0.0 AIDamageReactionMinDelay=0.125 AIDamageReactionMaxDelay=0.25 AIDamageReactionCooldown=1.0 AIDamageReactionThreshold=0.0 AIDamageReactionResetTimer=0.1 [Melee Ability Profile] Name=Melee MaxCharges=1.0 ChargeTimer=0.25 ChargesRefundedOnKill=0.0 DelayAfterUse=1.0 FullyAuto=false AbilityDuration=0.15 HurtboxRadius=250.0 HurtboxDamage=30.0 HurtboxGroundKnockbackFactor=0.0 HurtboxAirKnockbackFactor=0.0 BlockAttackTimer=0.5 AbilityBlockedWhenAttacking=false AmmoPerShot=0 FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 AIUseInCombat=true AIUseOutOfCombat=false AIUseOnGround=true AIUseInAir=true AIReuseTimer=1.0 AIMinSelfHealth=0.0 AIMaxSelfHealth=100.0 AIMinTargHealth=0.0 AIMaxTargHealth=100.0 AIMinTargDist=0.0 AIMaxTargDist=600.0 AIMaxTargFOV=15.0 AIDamageReaction=false AIDamageReactionIgnoreChance=0.0 AIDamageReactionMinDelay=0.125 AIDamageReactionMaxDelay=0.25 AIDamageReactionCooldown=1.0 AIDamageReactionThreshold=0.0 AIDamageReactionResetTimer=0.1 [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end UInt8 playersMin 1 UInt8 playersMax 16 brush vertices -576.000000 0.000000 256.000000 448.000000 0.000000 256.000000 448.000000 0.000000 -768.000000 -576.000000 0.000000 -768.000000 -576.000000 -16.000000 256.000000 448.000000 -16.000000 256.000000 448.000000 -16.000000 -768.000000 -576.000000 -16.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -576.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 272.000000 -784.000000 -576.000000 272.000000 -784.000000 -576.000000 0.000000 -768.000000 448.000000 0.000000 -768.000000 448.000000 0.000000 -784.000000 -576.000000 0.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -576.000000 272.000000 272.000000 448.000000 272.000000 272.000000 448.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 0.000000 272.000000 448.000000 0.000000 272.000000 448.000000 0.000000 256.000000 -576.000000 0.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 448.000000 272.000000 256.000000 464.000000 272.000000 256.000000 464.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 0.000000 256.000000 464.000000 0.000000 256.000000 464.000000 0.000000 -768.000000 448.000000 0.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -592.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 272.000000 -768.000000 -592.000000 272.000000 -768.000000 -592.000000 0.000000 256.000000 -576.000000 0.000000 256.000000 -576.000000 0.000000 -768.000000 -592.000000 0.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -592.000000 704.000000 256.000000 -576.000000 704.000000 256.000000 -576.000000 704.000000 -768.000000 -592.000000 704.000000 -768.000000 -592.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 272.000000 -768.000000 -592.000000 272.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 448.000000 704.000000 256.000000 464.000000 704.000000 256.000000 464.000000 704.000000 -768.000000 448.000000 704.000000 -768.000000 448.000000 272.000000 256.000000 464.000000 272.000000 256.000000 464.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 704.000000 -768.000000 448.000000 704.000000 -768.000000 448.000000 704.000000 -784.000000 -576.000000 704.000000 -784.000000 -576.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 272.000000 -784.000000 -576.000000 272.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 704.000000 272.000000 448.000000 704.000000 272.000000 448.000000 704.000000 256.000000 -576.000000 704.000000 256.000000 -576.000000 272.000000 272.000000 448.000000 272.000000 272.000000 448.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 720.000000 256.000000 448.000000 720.000000 256.000000 448.000000 720.000000 -768.000000 -576.000000 720.000000 -768.000000 -576.000000 704.000000 256.000000 448.000000 704.000000 256.000000 448.000000 704.000000 -768.000000 -576.000000 704.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip entity type CameraPath UInt32 entityIdAttachedTo 5 UInt8 posLerp 2 UInt8 angleLerp 2 entity type Effect Vector3 position 0.000000 256.000000 0.000000 String64 effectName internal/misc/reflectionprobe entity type Target Vector3 position 352.000000 256.000000 224.000000 Vector3 angles -135.000000 30.000000 0.000000 String32 name end entity type PlayerSpawn Vector3 position 416.000000 0.000000 -256.000000 Vector3 angles 270.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -64.000000 0.000000 -256.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 teamB 0
d27e78816c859b1856b418f752e40a90d1f40465
449d555969bfd7befe906877abab098c6e63a0e8
/1325/CH11/EX11.8/11_8.sce
9be1d8ec3f4222c0241202cba2c9996dcf9ded1b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
11_8.sce
//To find diameter of bicycle wheel clc //given Td=23 Ta=19 Tb=20 Tc=22 k=Td*Ta/(Tb*Tc) //using componendo and dividendo, Nc=0 and reducing we get a=1/k-1//a=Nd/Ne b=1/a//- denotes opposite direction d=5280*12/(%pi*5*b) p=ceil(d) printf("\nThe diameter must be = %.1f in\nThe numbers of teeths are therefore suitable for a cyclometer for bicycle with %.f inches wheels",d,p)
2824b90d58f2385a249c9cf266e7b345dadf9193
63c8bbe209f7a437f8bcc25dc1b7b1e9a100defa
/test/0006.tst
f37fe74b1a65240efe4176878076c0bddd01c1a4
[]
no_license
fmeci/nfql-testing
e9e7edb03a7222cd4c5f17b9b4d2a8dd58ea547c
6b7d465b32fa50468e3694f63c803e3630c5187d
refs/heads/master
2021-01-11T04:09:48.579127
2013-05-02T13:30:17
2013-05-02T13:30:17
71,239,280
0
0
null
2016-10-18T11:01:57
2016-10-18T11:01:55
Python
UTF-8
Scilab
false
false
410
tst
0006.tst
sPliTTER NhE {} FilTER ZKv { ::FBeC:ac:e:ca8a:FbE:251.81.254.226/8 in 246.9.254.87 Or 836704 << f ( 225.203.250.235, ) nOt c:f::B:FcEe:7 >> 192.241.180.5 oR cG ( , ) } FIltEr galCYl {NOT N } TuG BRANCh G gRoUPEr N {MODUlE a{ } mOdUlE vgag{ } MOdUlE nz{ KKY > Kny hT >= XR RDeltA 15MS } aGgrEGatE couNt(p.JQ) as IRbG ,Min(hH.X) aS f ,A } UnGROUPeR b { } GROUPFilTer Kp {} MeRgEr L { expoRt B }
71d84eb54c0fe1f942ec1e5c61297ef5d646d699
449d555969bfd7befe906877abab098c6e63a0e8
/2288/CH1/EX1.21.9/ex1_21_9.sce
294802c08535d7fd35684d194a01053588424d67
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
364
sce
ex1_21_9.sce
// Exa 1.21.9 clc; clear; close; // Given data n = 1; lembda = 1.54;// in Å theta = 21.7;// in degree //Formula 2*d*sin(theta) = n*lembda; d = (lembda*n)/(2*sind(theta));// in Å h = 1; k = 1; l = 1; // Formula d = a/(sqrt( ((h)^2) + ((k)^2) + ((l)^2) )); a = d*(sqrt( ((h)^2) + ((k)^2) + ((l)^2) ));// in Å disp(a,"Lattice constant in Å is");
bb5b3f3641770db5e96ce4998870f6736e4940eb
449d555969bfd7befe906877abab098c6e63a0e8
/2084/CH2/EX2.2/2_2.sce
6f93e1b006639758a7d8d54b8ef8c6b6e1393b86
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
682
sce
2_2.sce
//developed in windows XP operating system 32bit //platform Scilab 5.4.1 clc;clear; //example 2.2 //calculation of sum of vectors and difference of the vectors //given data A=5; //magnitude(in unit) of A vector B=5; //magnitude(in unit) of B vector theta=60; // angle(in degree) between both vectors //calculation C=sqrt((A*A)+(B*B)+(2*A*B*cosd(theta))); //C=|A+B| sum of two vectors thetas=180-theta; //for difference(subtraction) reverse direction of a vector and add it to other D=sqrt((A*A)+(B*B)+(2*A*B*cosd(thetas))); //D=|A-B| difference of two vectors disp(C,'the sum of two vectors(in unit) is'); disp(D,'the difference of two vectors(in unit) is');
024f58b02243740d1903ee4649828e5ad3a771f8
d7ec0352fdd4cf451ee9dd6bac2218fb96c24c0f
/src/gui/qml/img/pbutton_checked.sci
15891608f6e2ae3e9309506a659d3b8f96390543
[]
no_license
mireq/facedetect
d3fc340926a54e144dcf09ef4a814a77cbc9afde
94ab039149efb2d8f1496c6042bf3a6b133bb49e
refs/heads/master
2021-01-22T04:33:34.209921
2011-05-13T01:08:47
2011-05-13T01:08:47
1,525,248
3
0
null
null
null
null
UTF-8
Scilab
false
false
90
sci
pbutton_checked.sci
border.left: 6 border.right: 6 border.top: 6 border.bottom: 7 source: pbutton_checked.png
faae996bba275848af38df18495d888d660e62b9
449d555969bfd7befe906877abab098c6e63a0e8
/1967/CH2/EX2.4/2_4.sce
744613750dd8fc997257833a6c8a80fa06a9882f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
255
sce
2_4.sce
clc //initialisation of variables clear V= 0.381 //lit T= 313 //K R= 0.0820 //lit-atm deg^-1 mol^-1 pc= 72.9 //atm //CALCULATIONS p= R*T/V r= p/pc //RESULTS printf ('Pressure of carbon dioxide gas = %.1f atm',p) printf ('\n ratio = %.3f ',r)
45953f69a0aa8addd109c0cf8461ccd1c5a645ee
262ac6443426f24d5d9b13945d080affb0bd6d9b
/opgaves/4x4-magisch-vierkant-aanvullen/edit-me.sce
4dde0bbb0488d36e1fd62f05cdd2d73d0fc138a1
[]
no_license
slegers/Scilab
9ebd1d486f28cf66e04b1552ad6e94ea4bc98a0b
1b5dc3434def66355dafeb97c01916736a936301
refs/heads/master
2021-01-12T01:42:01.493578
2017-01-09T10:54:09
2017-01-09T10:54:09
78,420,343
0
0
null
null
null
null
UTF-8
Scilab
false
false
7,242
sce
edit-me.sce
function [output] = solve(input) output = iterative(input); endfunction function [output] = iterative(sq) count = 0; output = sq; used = [%f,%f,%f,%f,%f,%f,%f,%f,%f,%f,%f,%f,%f,%f,%f,%f]; nbSum = 34; for a = 1:16 if used(a) == %t & ~(output(1) == a) then continue; end used(a) = %t; for b = 1:16 if used(b) == %t & ~(output(5) == b) then continue; end used(b) = %t; for c = 1:16 if used(c) == %t & ~(output(9) == c) then continue; end d = nbSum - a - b - c; if d<1 | d>16 | (used(d) == %t & ~(output(13) == d)) | d == c then continue; end used(c) = %t; used(d) = %t; for e = 1:16 if used(e) == %t & ~(output(2) == e) then continue; end used(e) = %t; for f = 1:16 if used(f) == %t & ~(output(6) == f) then continue; end used(f) = %t; for g = 1:16 if used(g) == %t & ~(output(10) == g) then continue; end h = nbSum - e - f - g; if h<1 | h>16 | (used(h) == %t & ~(output(14) == h)) | h == g then continue; end used(g) = %t; used(h) = %t; for i = 1:16 if used(i) == %t & ~(output(3) == i) then continue; end m = nbSum - a - e - i; if m<1 | m>16 | (used(m) == %t & ~(output(4) == m)) | m == i then continue; end j = nbSum - m - g - d; if j<1 | j>16 | (used(j) == %t & ~(output(7) == j)) | j == i | j == m then continue; end n = nbSum - b - f - j; if n<1 | n>16 | (used(n) == %t & ~(output(8) == n)) | n == i | n == m | n == j then continue; end used(i) = %t; used(m) = %t; used(j) = %t; used(n) = %t; for k = 1:16 if used(k) == %t & ~(output(11) == k) then continue; end l = nbSum - i - j - k; if l<1 | l>16 | (used(l) == %t & ~(output(15) == l)) | l == k then continue; end o = nbSum - c - g - k; if o<1 | o>16 | (used(o) == %t & ~(output(12) == o)) | o == k | o == l then continue; end p = nbSum - a - f - k; if p<1 | p>16 | (used(p) == %t & ~(output(16) == p)) | p == k | p == l | p == o | d+h+l+p <> nbSum | m+n+o+p <> nbSum then continue; end sq(1) = a; sq(2) = e; sq(3) = i; sq(4) = m; sq(5) = b; sq(6) = f; sq(7) = j; sq(8) = n; sq(9) = c; sq(10) = g; sq(11) = k; sq(12) = o; sq(13) = d; sq(14) = h; sq(15) = l; sq(16) = p; count = count + 1; if count > 7035 then disp(count) end if checkSolution(sq, output) then output = sq; return; end end if ~(output(3) == i) then used(i) = %f; end if ~(output(4) == m) then used(m) = %f; end if ~(output(7) == j) then used(j) = %f; end if ~(output(8) == n) then used(n) = %f; end end if ~(output(14) == h) then used(h) = %f; end if ~(output(10) == g) then used(g) = %f; end end if ~(output(6) == f) then used(f) = %f; end end if ~(output(2) == e) then used(e) = %f; end end if ~(output(9) == c) then used(c) = %f; end if ~(output(13) == d) then used(d) = %f; end end if ~(output(5) == b) then used(b) = %f; end end if ~(output(1) == a) then used(a) = %f; end end endfunction function [good] = checkSolution(sol, given) good = %f; for i = 1:4 for j = 1:4 if (given(i,j) <> 0) & (given(i,j) <> sol(i,j)) then return; end end end good = %t; endfunction function [array] = boolArray(sq) array = [%f,%f,%f,%f,%f,%f,%f,%f,%f,%f,%f,%f,%f,%f,%f,%f]; for i = 1:4 for j = 1:4 if (sq(i,j) <> 0) then array(i + (j-1)*4) = %t; end end end endfunction
397b730389ddd33cc41d028ba092fe5db9b739d6
449d555969bfd7befe906877abab098c6e63a0e8
/3793/CH10/EX10.8/exp_10_8.sce
973e0229f77313b9c53c67c9baf229028ffe979b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
692
sce
exp_10_8.sce
clear; clc; s=30; v=22; E=1; Zf=6.6; Zg=13.2; Z0=complex(.062,.43); Z1=complex(.161,.535); Z2=Z1; Zff=.409; Zgp=(Zg*s)/v^2; Ia1=E/(Z1+Zff+((Z2+Zff)*(Z0+Zff+3*Zgp)/(Z2+Z0+2*Zff+3*Zgp))); Ia2=-((Z0+Zff+3*Zgp)/(Z2+Z0+2*Zff+3*Zgp))*(Ia1); Ia0=-((Z2+Zff)/(Z2+Z0+2*Zff+3*Zgp))*(Ia1); a=complex(-.5,.866); A=[1 1 1;1 a^2 a;1 a a^2]; I=[Ia0;Ia1;Ia2]; Ia=A*I; Va0=-Z0*Ia0; Va1=E-Z1*Ia1; Va2=-Z1*Ia2; V1=[Va0;Va1;Va2]; V=A*V1; Vab=V(1,1)-V(2,1); Vbc=V(2,1)-V(3,1); Vca=V(3,1)-V(1,1); mprintf("Actual Phase Voltages are Va0=%f+%f Va1=%f%f Va2=%f+%f \n",real(Va0),imag(Va0),real(Va1),imag(Va1),real(Va2),imag(Va2)); mprintf("Actual Phase currents are \n"); disp(Ia);
0579e07dcd599ca332372d86b4fe317053aa32f0
1fc779d7e8b646c08e79c08aa63c349452094100
/issue71/misc/spiel/sci2.sce
443c04aa905b5feec230b03ad160f28834ade6ad
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
linuxgazette/lg
4a26b871d06e7a2c1efa7912d0b3b06f00f332e0
af1e21053fc7b12eddead4dd1884a5b66346e19d
refs/heads/master
2021-01-01T16:41:32.829475
2017-07-20T23:54:57
2017-07-20T23:54:57
97,887,660
5
2
null
null
null
null
UTF-8
Scilab
false
false
723
sce
sci2.sce
// [1] Define function function z = f(u, v) // truncated Rosenbrock function z = 100.0*(v - u.^2).^2 + (1.0 - u).^2 z(find(z > 100)) = 100; endfunction // [2] Define sampling grid for f() x = linspace(-3, 3, 40); y = linspace(-2, 4, 40); // [3] Clear plot window's contents xbasc(); // [4] Plot fplot3d(x, y, f, 65, 1.5); // [5] Define decoration xtitle("Rosenbrock Function", "u", "v"); // [6] Save plot window's contents to file; convert file to PostScript xbasimp(0, "sci2.xps"); unix("scilab -save_p sci2.xps.0 Postscript; " .. + "gzip --best --force sci2.eps"); // ___cut___ // [7] Dump Scilab graphic window 0 into png-file unix("./xdumpwindow -geometry 600 ScilabGraphic0 sci2.png"); exit;
2403a9ccad5d7f52e8baa82b30de7bdb1351d3de
5c20b06aec46d405f1b505cfe6a870085ccc353e
/tp.sce
684709c2d8483536480abca383871717a7f7f20f
[]
no_license
PierreBoyeau/tp_optim
517f4675dc513759422d5c372cef3d7fdbace501
121ecf0e4dcd6880cc53f495e6a1b05adb2b83c1
refs/heads/master
2021-01-22T03:40:07.016215
2017-05-26T07:23:57
2017-05-26T07:23:57
92,391,395
0
0
null
null
null
null
UTF-8
Scilab
false
false
4,917
sce
tp.sce
// Initialization Ti=1; Tf=10; Nx=9; state=[1 : Nx]; xref = 5; function B=get_B(x) if x==1 then B = [1]; elseif x==2 then B = [0, 1]; elseif x==Nx then B = [-1]; elseif x==Nx-1 then B = [0, -1]; else B = [-1, 0, 1]; end endfunction function proba=p(w) proba=0.5; endfunction function proba=P(w) proba=0.5; endfunction function cost=cost_t(x,u) cost=0; endfunction // Initialization of the matrix used to store Bellman values V=ones(Tf,Nx) * %inf; // Initailization of the control history U=ones(Tf,Nx) * %inf; // Compute Bellman function at final time V(Tf,:)=(state - xref) .^ 2; // make a time backward loop for t=Tf - 1 : -1 : Ti do // make a loop on possible states for x=state do // make a loop on admissible controls (for state x) to obtain the best possible // expected cost starting from state x in cost_x cost_x=%inf; optimal_control=%inf; for u=get_B(x) do // make a loop on the random perturbation to compute the expected // cost cost_x_u cost_x_u = 0; for w=[-1, 1] do // for a given perturbation compute the cost associated to // control u and state x using the instantaneous cost and the // Bellman function at time t+1 cost_x_u_w=(cost_t(x,u) + V(t + 1,x + u + w)) * p(w); cost_x_u = cost_x_u + cost_x_u_w; end // update cost_x_u with cost_x_u_w // compare the current cost_x_u to cost_x and // update cost_x if cost_x_u is better than the current cost_x if cost_x_u < cost_x then cost_x = cost_x_u; optimal_control = u; end end // store cost_x in V(t,x) V(t,x)=cost_x; U(t,x)=optimal_control; end end t = 5; x = 5; function u_0=u_opt(t,x) cost_x_opt = %inf for u=get_B(x) // On parcout les valeurs de u pour trouver le minimum de la fonction cible cost_x_u = 0; for w=[-1,1] cost_x_u_w=(cost_t(x,u) + V(t + 1,x + u + w)) * p(w); cost_x_u = cost_x_u + cost_x_u_w; end if cost_x_u < cost_x_opt // Si la fonction cible est meilleure pour cette valeur de u // on enregistre le coût et le contrôle associés. cost_x_opt = cost_x_u; u_0 = u; end end endfunction // SIMULATION function cost=simulation_mc(x0,policy,N) cost=0; for i=1 : N do x=x0; for t=1 : TF - 1 do w=W(grand(1,1,"uin",1,2)); x=x + policy(t,x) + w; end cost=cost + (x - xref) ^ 2 end cost=cost / N; endfunction function cost=simulation_ex(x0,policy) // Exact computation with the law of W Wa=all_w(TF - 1); cost=0; for i=1 : size(Wa,"r") do x=x0; for t=1 : TF - 1 do x=x + policy(t,x) + Wa(i,t); end cost=cost + (x - xref) ^ 2 end cost=cost / size(Wa,"r"); endfunction function W=all_w(n) // generated all the possible (W_1,...,W_(TF-1)) if n == 1 then W=[-1;1] else Wn=all_w(n - 1); W=[-1 * ones(size(Wn,"r"),1),Wn;1 * ones(size(Wn,"r"),1),Wn]; end endfunction; function costs=simulation_dp(policy) // evaluation by dynamic programming with fixed policy Vs=ones(TF,length(X)) * %inf; // Bellman function at time TF Vs(TF,:)=(X - xref) .^ 2; // Compute final value functions // Loop backward over time: for t=(TF - 1) : -1 : 1 do for x=1 : 9 do // loop on noises EV=0; for iw=1 : size(W,"*") do next_state=x + policy(t,x) + W(iw); EV=EV + P(iw) * Vs(t + 1,next_state); end Vs(t,x)=EV; end end costs=Vs(1,:); endfunction x0 = 1; TF = Tf; W = [-1, 1]; X = 1:9; costmc=zeros(50,1); for i=1:50 costmc(i)=simulation_mc(x0,u_opt,100); end x = linspace(0.7, 1.5, 10); histplot(x, costmc, normalization=%f, style=5); costrp=simulation_ex(x0,u_opt); costpd = simulation_dp(u_opt); //--- for x0=1:9 cost_mc1(x0)=simulation_mc(x0, u_opt, 100) cost_mc2(x0)=simulation_mc(x0, u_opt, 1000) cost_mc3(x0)=simulation_mc(x0, u_opt, 10000) end plot(cost_mc1, 'r') legend("100 itérations") plot(cost_mc2, 'g') legend("1000 itérations") plot(cost_mc3, 'b') legend("100 itérations", "1000 itérations", "10000 itérations") //--- cost_mc = zeros(9,1); cost_rp = zeros(9,1); for x0=1:9 cost_mc(x0)=simulation_mc(x0, u_opt, 10000) cost_rp(x0)=simulation_ex(x0,u_opt) end costpd = simulation_dp(u_opt); plot(cost_mc, 'r') plot(cost_rp, 'g') plot(costpd, 'b')
3ab697870be9c25db05ba36f34f7862db715fc53
bacd6919260d728f4316702bbe1edf811810bede
/legacy/33/console/Untitled43456345.sce
773978071b8ccff6646d2bcbb902bb5cb3b377f8
[]
no_license
vopl/sp
332d8c2ff536fc5d8772ff2f3fbeca9b50c47641
a4313f4d7af47cc3132d7546947d4d668c7e487e
refs/heads/master
2020-04-16T02:09:36.036424
2016-10-05T18:08:30
2016-10-05T18:08:30
65,293,458
0
0
null
null
null
null
UTF-8
Scilab
false
false
522
sce
Untitled43456345.sce
tt = read("P:\finance\spectrumSeparator\nhel.Composite\20.1.win.3\console\4", -1, 5); clf; //plot(tt(:,1)); //plot((tt(:,2)+tt(:,4))/2,'k'); //plot(-(tt(:,2)+tt(:,4))/2 + tt(:,4),'b'); //plot(tt(:,2),'k'); //plot(tt(:,4),'k'); //plot((tt(:,3)+tt(:,5))/2,'k'); //plot(-(tt(:,3)+tt(:,5))/2 + tt(:,5),'b'); //plot(tt(:,3),'k'); //plot(tt(:,5),'k'); imm = (tt(:,3)+tt(:,5))/2; rem = (tt(:,2)+tt(:,4))/2; m = rem + %i*imm; plot(abs(m)); plot(real(m)); plot(imag(m)); //plot((atan(imm, rem)));
87450e0d1b52bef5be5c5023b3aee7b91c1bae36
449d555969bfd7befe906877abab098c6e63a0e8
/3415/CH3/EX3.3/Ex3_3.sce
a38fc7a03ce76427361ba85d7c820ee9f7b71651
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
427
sce
Ex3_3.sce
//fiber optic communications by joseph c. palais //example 3.3 //OS=Windows XP sp3 //Scilab version 5.4.1 clc clear all //given lambda=1.55e-6*1e9//wave length in nm lambda0=1.3e-6*1e9//Zero dispersion wave length in nm M0=-0.095//slope at zero dispersion wave length ps/(nm^2xKm) //to find M=(M0/4)*(lambda-(lambda0)^4/(lambda)^3)//Material dispersion ps/(nmxKm) mprintf("Material dispersion=%fps/(nm.km)",M)
ede58507dfc12acef5faa0c7a9324f00066b9949
f3921ba261cdd9c9c4201d85a3b3bcbc42a26421
/protobuflib/pblib_write_wire_type.sci
011c4c7adf632feafb3a3f00007d1203ab7da9f9
[]
no_license
manojgudi/protobuf-scilab
9bbe77a52ad8bd50d762a6e4a388236f88dacc0c
d5a8e967848b48c1628859f3f52fb59ac3502429
refs/heads/master
2020-12-02T15:54:15.894328
2015-01-08T19:04:45
2015-01-08T19:04:45
28,736,110
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,759
sci
pblib_write_wire_type.sci
exec pblib_write_varint.sci function [buffer] = pblib_write_wire_type(value, wire_type) //pblib_write_wire_type // // buffer = pblib_write_wire_type(value, wire_type) // // These values must match the WireType enum in // http://protobuf.googlecode.com/svn/trunk/src/google/protobuf/wire_format.h // // All Wire Types Are (in order, 0 based): // 0: 'varint' // 1: '64bit' // 2: 'length_delimited' // 3: 'start_group' // 4: 'end_group' // 5: '32bit' // // protobuf-matlab - FarSounder's Protocol Buffer support for Matlab // Copyright (c) 2008, FarSounder Inc. All rights reserved. // http://code.google.com/p/protobuf-matlab/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // // * Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // // * Neither the name of the FarSounder Inc. nor the names of its // contributors may be used to endorse or promote products derived from this // software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. // Author: fedor.labounko@gmail.com (Fedor Labounko) // Support function used by Protobuf compiler generated .m files. select wire_type case 0 then buffer = pblib_write_varint(value); case 1 then buffer = value; case 2 then len_buffer = pblib_write_varint(uint32(length(value))); buffer = [len_buffer value]; case 3 then warning "Start Group not implemented" case 4 then warning "End Group not implemented" case 5 then buffer = value; end endfunction
89c78ce80ba9bcb8f46a610d66ed5f0078db107b
449d555969bfd7befe906877abab098c6e63a0e8
/2321/CH4/EX4.9.4/EX4_9_4.sce
d7a3447d6232af7cbab78c90ff63a9fc5cfa25a5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
207
sce
EX4_9_4.sce
//Example No. 4.9.4 clc; clear; close; format('v',6); //l=lambda/8 lBYlambda=1/8;//(length/Wavelength) Rr=80*%pi^2*(lBYlambda)^2;//Ω(Radiation resistance) disp(Rr,"Radiation resistance in Ω : ");
09efe02161c0a3202ebc8d1872ce1e859552daab
449d555969bfd7befe906877abab098c6e63a0e8
/1928/CH1/EX1.14.7/ex1_14_7.sce
e09e7101f792275e5210f0908259d79cbb2bbf85
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
860
sce
ex1_14_7.sce
//Chapter-1,Example1_14_7,pg 1-60 //primitive vectors a=1.2 //in amstrong unit b=1.8 //in amstrong unit c=2 //in amstrong unit //miller indices of the plane h=2 k=3 l=1 //therefore intercepts are a/h,b/k,c/l x=a/h y=b/k z=c/l //this gives intercepts along x axis as x amstrong but it is given tthat plane cut x axis at 1.2 amstrong . t=1.2/x //this shows that the plane under consideration is another plane which is parallel to it(to keep miller indices same) n=t*y //Y intercept p=t*z //Z intercept printf(" 1) Y intercept=") disp(n) printf("amstrong") printf(" 2)Z intercept=") disp(p) printf("amstrong")
41f710c220a2f9d990a46c9762f378e935421fcb
538e0c3891a6925534c9c93ff5a8987735b8d22f
/SciLAB/sine and tan.sce
6cc6bddc407b1f572360cf25adc15c998324fbb7
[]
no_license
rajan596/Assignments
7a047cf0cd04a00497046252b56d9477a2830167
ce43e931cf74597263f89ddf7a4f0f7e86ac6085
refs/heads/master
2021-05-31T07:19:37.526649
2016-04-13T07:57:32
2016-04-13T07:57:32
34,728,601
1
0
null
null
null
null
UTF-8
Scilab
false
false
2,059
sce
sine and tan.sce
// This GUI file is generated by guibuilder version 2.2 ////////// f=figure('figure_position',[623,72],'figure_size',[656,606],'auto_resize','on','background',[33],'figure_name','Graphic window number %d'); ////////// delmenu(f.figure_id,gettext('File')) delmenu(f.figure_id,gettext('?')) delmenu(f.figure_id,gettext('Tools')) toolbar(f.figure_id,'off') handles.dummy = 0; handles.sine=uicontrol(f,'unit','normalized','BackgroundColor',[0.6,0.6,0.6],'Enable','on','FontAngle','normal','FontName','helvetica','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.15,0.6845238,0.14375,0.0892857],'Relief','raised','SliderStep',[0.01,0.1],'String','sine','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','sine','Callback','sine_callback(handles)') handles.tan=uicontrol(f,'unit','normalized','BackgroundColor',[0.6,0.6,0.6],'Enable','on','FontAngle','normal','FontName','helvetica','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[0,0,0],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.153125,0.5436508,0.140625,0.0912698],'Relief','raised','SliderStep',[0.01,0.1],'String','tan','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','tan','Callback','tan_callback(handles)') handles.aa= newaxes();handles.aa.margins = [ 0 0 0 0];handles.aa.axes_bounds = [0.359375,0.1527778,0.59375,0.5357143]; ////////// // Callbacks are defined as below. Please do not delete the comments as it will be used in coming version ////////// function sine_callback(handles) //Write your callback for sine here x=0:.01:2*3.14 y=tan(x); plot(x,y,'w-'); x=0:.01:2*3.14 y=1000*sin(x); plot(x,y); endfunction function tan_callback(handles) //Write your callback for tan here x=0:.01:2*3.14 y=1000*sin(x); plot(x,y,'w-'); x=0:.01:2*3.14 y=tan(x); plot(x,y); endfunction
564d798f468eaccf7d92256616ae3b0a25a464c9
449d555969bfd7befe906877abab098c6e63a0e8
/1187/CH6/EX6.4/4.sce
ef18058948fb5fe71759e3802c7fb55163dbd85f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
331
sce
4.sce
clc d_p=0.05; // diameter of piston in m d_c=0.0504; // diameter of cylinder in m SG=0.87; rho_w=1000; // kg/m^3 v=10^-4; // m^2/s dp=1.4*10^6; // Pa l=0.13; // m c=(d_c-d_p)/2; // clearance u=SG*rho_w*v; // Dynamice viscocity Vp=dp*c^3/(6*u*l*(d_p/2+c)); disp("Velocity of the dashpot =") disp(Vp) disp("m/s")
f7dd8e08efe2314640f4273320580b116137c149
449d555969bfd7befe906877abab098c6e63a0e8
/3269/CH6/EX6.2/Ex6_2.sce
08929061e16b7cc90dca0294c68f00762ec9222e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
729
sce
Ex6_2.sce
// Example 6.2 clear all; clc; // Given data R = 50; // Radius of reactor core in cm P = 100*10^6; // Power level of the reactor in watt SIGMA_f = 0.0047; // Macroscopic fission cross section in cm^(-1) E_R = 3.2*10^(-11); // Energy released per fission in joules/second // Using the data in Table 6.2 for spherical geometry OMEGA = 3.29; // Measure of the variation of flux in the reactor // Calculation phi_max = (%pi*P)/(4*E_R*SIGMA_f*R^3); phi_av = phi_max/OMEGA; // Result printf('\n Maximum flux in the spherical reactor = %3.2E neutrons/cm^2-sec \n',phi_max); printf('\n Average flux in the spherical reactor = %3.2E neutrons/cm^2-sec \n',phi_av);
a96f059ce10173e7f13025c4982b647ba7ecac3d
3dbdc1a91ad07ea5fc4c4fa52a6fa2a6870125a6
/calculo-numerico/RungeKuttaOrdem4.sce
6892ee52b84e4eb0041ce147fefb2cd8d1abe8e6
[ "Apache-2.0" ]
permissive
geovani-moc/Algoritmos
226ceea9b599bb1979770ac001f5108a0533bb00
d2d838c158da62a94946a7af29b24ca7396af34e
refs/heads/master
2023-01-09T12:40:50.330766
2020-11-06T17:46:46
2020-11-06T17:46:46
256,744,544
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,869
sce
RungeKuttaOrdem4.sce
// Geovani Pereira dos Santo - IFNMG - 2019 function [x, y, yDerivado] = rungeKutta(funcao, funcaoDerivada, limiteInferior, limiteSuperior, passo, valorInicial, valorInicialDerivada) x(1) = limiteInferior; y(1) = valorInicial; yDerivado(1) = valorInicialDerivada; quantidadePassos = (limiteSuperior-limiteInferior)/passo; for i = 1 : quantidadePassos x(i+1) = x(i)+passo; //calculando k1 k11 = funcao(x(i) , y(i), yDerivado(i)); k12 = funcaoDerivada(x(i) , y(i), yDerivado(i)); //calculando k2 k21 = funcao((x(i)+passo/2) , (y(i)+ passo*k11/2), (yDerivado(i) + passo* k12/2)); k22 = funcaoDerivada((x(i)+passo/2) , (y(i)+ passo*k11/2), (yDerivado(i) + passo* k12/2)); //calculando k3 k31 = funcao((x(i)+passo/2) , (y(i)+ passo*k21/2), (yDerivado(i) + passo* k22/2)); k32 = funcaoDerivada((x(i)+passo/2) , (y(i)+ passo*k21/2), (yDerivado(i) + passo* k22/2)); //calculando k4 k41 = funcao((x(i)+passo) , (y(i)+ passo*k31), (yDerivado(i) + passo* k32)); k42 = funcaoDerivada((x(i)+passo) , (y(i)+ passo*k31), (yDerivado(i) + passo* k32)); //Avaliando y e yDerivado: y(i+1) = y(i) + (passo/6)*(k11+ 2*k21 + 2*k31 + k41); yDerivado(i+1) = yDerivado(i) + (passo/6)*(k12+ 2*k22 + 2*k32 + k42); end endfunction // exemplo execução function y1d = f1(x, y1, y2); y1d = 1.5*y1 - 0.5*y1*y2; endfunction function y2d = f2(x, y1, y2); y2d = -0.5*y2 + y1*y2; endfunction a = 0;// limite inferior b = 20;//limite superios h = 0.05;//passo y10 = 2;//valor ini da funcao y20 = 2;// valor inicial da derivada da funcao [x, y, yDerivado] = rungeKutta(f1, f2, a, b, h, y10, y20); disp(['x'; 'y'; 'y derivado']'); disp([x'; y'; yDerivado']');
f7d970b5ba94797cf5a31052d3f18ca76d4ddce6
6b7b3be3c11fc662ae3f0b3e8880218ce3888a07
/math/SciLab/%ZQuat_size.sci
f2daaf583e8d825fb9985a3306ce16d34cda6b55
[]
no_license
johnzet/Flight
27cfa7dc8039f6c7b91385d9e204ad4a54248960
2893750df8aaa38311ffc125b1f7dcc9f5019eab
refs/heads/main
2023-02-25T19:51:03.725205
2021-01-31T01:12:09
2021-01-31T01:12:09
334,544,210
0
0
null
null
null
null
UTF-8
Scilab
false
false
63
sci
%ZQuat_size.sci
function [sz] = %ZQuat_size(q) sz = length(q.r); endfunction
fbefe7c923b68c765cbff8634e59db36c7ee31bd
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.5/Unix-Windows/scilab-2.5/macros/arma/prbs_a.sci
001af69b71e87439d1a392d2f2e44faae23e6653
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
710
sci
prbs_a.sci
function [u]=prbs_a(n,nc,ids) //generation of pseudo random binary sequences //u=[u0,u1,...,u_(n-1)]; //u takes values in {-1,1} and changes at most nc times its sign. //ids can be used to fix the date at which u must change its sign //ids is then an integer vector with values in [1:n]. //! // Copyright INRIA [lhs,rhs]=argn(0) if rhs <=2, rand('uniform'); yy= int(mini(maxi(n*rand(1,nc),1*ones(1,nc)),n*ones(1,nc))); ids=sort(yy);ids=[n,ids,1]; else [n1,n2]=size(ids); ids=[n,mini(n*ones(ids),maxi(sort(ids),1*ones(ids))),1]; end u=0*ones(1,n); [n1,n2]=size(ids); val=1; for i=1:n2-1, if ids(i)<>ids(i+1); u(ids(i+1):ids(i))=val*ones(ids(i+1):ids(i));val=-1*val; end end
56f76015380375f2219275ff9e7be3a3b9956088
cb952289471732053d3db787d93f249ea37a7e55
/5º PERÍODO/Processamento Digital de Sinais/TRABALHO/my_lowpass_ideal.sce
3a162c5f8d5fdce1a3d7b471047aa6c5ffced3ee
[]
no_license
kaikecc/UFRN
647d09e6beeadfeabfb59f479cd77a5c2ff7bebc
821cce2e36808e890a75714d71b7cc1a24e52c27
refs/heads/master
2022-08-09T19:23:52.552924
2022-06-23T21:27:05
2022-06-23T21:27:05
177,469,993
1
1
null
null
null
null
UTF-8
Scilab
false
false
172
sce
my_lowpass_ideal.sce
function hd = my_lowpass_ideal(wc, M) alpha = (M-1) / 2; n = [0:M-1]; m = n - alpha + %eps; hd = sin(wc*m) ./ (%pi*m); // plot(hd) endfunction
9f82a86cddff0f08a47ebe18b9fb8a036b7453cc
449d555969bfd7befe906877abab098c6e63a0e8
/62/CH2/EX2.6/ex_2_6.sce
9ff4644cdbb6206c981a603479c98deeafc93d20
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
856
sce
ex_2_6.sce
//Example 2.6:Convolution Integral clear; close; clc; t =-5:1/100:5; for i=1:length(t) if t(i)<0 then h(i)=0; x(i)=0; elseif t(i)<=2 h(i)=1; x(i)=1; elseif t(i)<=3 h(i)=0; x(i)=1; else h(i)=0; x(i)=0; end end y = convol(x,h)./100; figure a=gca(); a.x_location="origin"; plot2d(t,h) xtitle('Impulse Response','t','h(t)'); a.children.children.thickness = 3; a.children.children.foreground= 2; figure a=gca(); plot2d(t,x) xtitle('Input Response','t','x(t)'); a.children.children.thickness = 3; a.children.children.foreground= 2; figure a=gca(); t1=-10:1/100:10; a.y_location="origin"; a.x_location="origin"; plot2d(t1,y) xtitle('Output Response','t','y(t)'); a.children.children.thickness = 3; a.children.children.foreground= 2;
a75d4b22c0dda98ed66d3ae7e61719db34617076
449d555969bfd7befe906877abab098c6e63a0e8
/980/CH11/EX11.15/11_15.sce
2a8a54d5a25586479361d66d61f112dca427f7bc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
710
sce
11_15.sce
clc; clear; format('v',11); f=1*10^9; c=3*10^8; //velocity of light in air. lemda=c/f; T=1/f; disp("E=-2*sin(2*%pi*z/0.3)","At t=T/4,equation of electric field is "); Zmax1=(%pi/2)*0.3/(2*%pi); Zmax2=(5*%pi/2)*0.3/(2*%pi); Zmax3=(9*%pi/2)*0.3/(2*%pi); Zmin1=(3*%pi/2)*0.3/(2*%pi); Zmin2=(7*%pi/2)*0.3/(2*%pi); Zmin3=(11*%pi/2)*0.3/(2*%pi); Zzero1=(0*%pi)*0.3/(2*%pi); Zzero2=(1*%pi)*0.3/(2*%pi); Zzero3=(2*%pi)*0.3/(2*%pi); disp(Zmax3,"Zmax3(in meter)=",Zmax2,"Zmax2(in meter)=",Zmax1,"Zmax1(in meter)="); disp(Zmin3,"Zmin3(in meter)=",Zmin2,"Zmin2(in meter)=",Zmin1,"Zmin1(in meter)="); disp(Zzero3,"Zzero3(in meter)=",Zzero2,"Zzero2(in meter)=",Zzero1,"Zzero1(in meter)=");
ebcb69eb4399c4b9680601a22382579e094dd88d
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/Fortnite real shotgun training.sce
157660d9bf4bceb136ce71c07cf457f0133a078f
[]
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
18,449
sce
Fortnite real shotgun training.sce
Name=Fortnite real shotgun training PlayerCharacters=Fortnite BotCharacters=Fortnite.bot IsChallenge=false Timelimit=60.0 PlayerProfile= AddedBots= PlayerMaxLives=0 BotMaxLives= PlayerTeam=0 BotTeams= MapName= MapScale=3.8125 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=false TimeRefilledByKill=0.0 ScoreToWin=1000.0 ScorePerDamage=1.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=false ScoreMultKillEfficiency=false GameTag=Fortnite WeaponHeroTag=Pump shotgun, tactical shotgun, ar, automatic rifle, DifficultyTag=3 AuthorsTag=Bik BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=false Description=An attempt at making a fortnite scenario. A work in progress. Use 80 fov. Jump around a lot. GameVersion=1.0.6.2 ScorePerDistance=0.0 [Aim Profile] Name=Medium Skill 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 [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 [Bot Profile] Name=Fortnite DodgeProfileNames=Long Strafes Close;Mimic DodgeProfileWeights=2.0;1.5 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;0.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Medium Skill;Medium Skill;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=Fortnite SeeThroughWalls=false [Character Profile] Name=Fortnite MaxHealth=200.0 WeaponProfileNames=Pump;Tac Shotgun;FN ARv1;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=300.0 MaxCrouchSpeed=133.0 Acceleration=2000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=550.0 Gravity=1.5 AirControl=0.1 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=270.0 MainBBType=Cylindrical MainBBHeight=75.0 MainBBRadius=10.0 MainBBHasHead=true MainBBHeadRadius=8.0 MainBBHeadOffset=-8.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=65.0 ProjBBRadius=10.0 ProjBBHasHead=true ProjBBHeadRadius=8.0 ProjBBHeadOffset=-8.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=Run.abilsprint;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=0.9 RespawnInvulnTime=1.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=false BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=1.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=true TPSArmLength=140.0 TPSOffset=X=0.000 Y=20.000 Z=-2.500 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 [Dodge Profile] Name=Long Strafes Close MaxTargetDistance=500.0 MinTargetDistance=100.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.5 MaxLRTimeChange=1.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.5 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.1 MaxJumpTime=0.3 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 [Dodge Profile] Name=Mimic MaxTargetDistance=1245.901611 MinTargetDistance=373.770477 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.2 MaxLRTimeChange=0.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.5 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Mimic 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 [Weapon Profile] Name=Pump Type=Hitscan ShotsPerClick=8 DamagePerShot=11.8 KnockbackFactor=1.0 TimeBetweenShots=1.2 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.0 ReloadTimeFromPartial=1.0 DamageFalloffStartDistance=400.0 DamageFalloffStopDistance=1200.0 DamageAtMaxRange=9.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.5 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=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.8 RecoilNegatable=false DecalType=1 DecalSize=3.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=false SpreadStationaryVelocity=300.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 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=5 CancelReloadOnKill=true FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=0.0,0.1,0.0,0.0 SpreadSCA=0.0,0.1,0.0,0.0 SpreadMSA=0.0,0.1,0.0,0.0 SpreadMCA=0.0,0.1,0.0,0.0 SpreadSSH=0.0,0.1,1.2,1.2 SpreadSCH=0.0,0.1,0.0,0.0 SpreadMSH=0.0,0.1,1.2,1.2 SpreadMCH=0.0,0.1,0.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=1.0 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 PBS1=1.25,23.0 PBS2=1.8,27.0 PBS3=1.1,360.0 PBS4=2.0,40.0 PBS5=1.6,98.0 PBS6=1.3,270.0 PBS7=1.7,170.0 [Weapon Profile] Name=Tac Shotgun Type=Hitscan ShotsPerClick=8 DamagePerShot=10.0 KnockbackFactor=1.0 TimeBetweenShots=0.65 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=8 AmmoPerShot=1 ReloadTimeFromEmpty=1.0 ReloadTimeFromPartial=1.0 DamageFalloffStartDistance=400.0 DamageFalloffStopDistance=1200.0 DamageAtMaxRange=6.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.5 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=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.8 RecoilNegatable=false DecalType=1 DecalSize=3.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=false SpreadStationaryVelocity=300.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 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=8 CancelReloadOnKill=true FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=0.0,0.1,0.0,0.0 SpreadSCA=0.0,0.1,0.0,0.0 SpreadMSA=0.0,0.1,0.0,0.0 SpreadMCA=0.0,0.1,0.0,0.0 SpreadSSH=0.0,0.1,1.6,2.0 SpreadSCH=0.0,0.1,0.0,0.0 SpreadMSH=0.0,0.1,1.6,2.0 SpreadMCH=0.0,0.1,0.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 PBS1=1.25,23.0 PBS2=1.8,27.0 PBS3=1.1,360.0 PBS4=2.0,40.0 PBS5=1.6,98.0 PBS6=1.3,270.0 PBS7=1.7,170.0 [Weapon Profile] Name=FN ARv1 Type=Hitscan ShotsPerClick=1 DamagePerShot=19.0 KnockbackFactor=0.1 TimeBetweenShots=0.08 Pierces=false Category=FullyAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=30 AmmoPerShot=1 ReloadTimeFromEmpty=2.2 ReloadTimeFromPartial=2.2 DamageFalloffStartDistance=800.0 DamageFalloffStopDistance=1200.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.001 WallParticleEffect=Gunshot HitParticleEffect=Blood BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=1.0 ADSMoveFactor=0.75 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=true DecalType=1 DecalSize=15.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 ProjectileTrail=None 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=30 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=95 ADSFOVOverride=90.0 ADSFOVScale=Vertical (1:1) ADSAllowUserOverrideFOV=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=2.0,2.0,-1.0,0.2 SpreadSCA=2.0,10.0,-2.6,2.4 SpreadMSA=2.0,2.0,-1.0,0.2 SpreadMCA=2.0,10.0,-2.6,2.4 SpreadSSH=2.0,2.0,-1.0,0.2 SpreadSCH=2.0,2.0,-1.0,0.18 SpreadMSH=2.0,2.0,-1.0,0.22 SpreadMCH=2.0,2.0,-1.0,0.18 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.45 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.15 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=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 [Sprint Ability Profile] Name=Run MaxCharges=1.0 ChargeTimer=0.001 ChargesRefundedOnKill=0.0 DelayAfterUse=0.5 FullyAuto=false AbilityDuration=0.0 BlockAttackWhileSprinting=false AbilityBlockedWhenAttacking=true SpeedModifier=1.5 45DegreeSprint=true 90DegreeSprint=true 135DegreeSprint=true 180DegreeSprint=true TapToSprint=false Block45DegreesWhenSprinting=false AIUseInCombat=true AIUseOutOfCombat=false AIUseOnGround=true AIUseInAir=true AIReuseTimer=1.0 AIMinSelfHealth=0.0 AIMaxSelfHealth=100.0 AIMinTargHealth=0.0 AIMaxTargHealth=100.0 AIMinTargDist=0.0 AIMaxTargDist=2000.0 AIMaxTargFOV=15.0 AIDamageReaction=true AIDamageReactionIgnoreChance=0.0 AIDamageReactionMinDelay=0.125 AIDamageReactionMaxDelay=0.25 AIDamageReactionCooldown=1.0 AIDamageReactionThreshold=0.0 AIDamageReactionResetTimer=0.1 [Map Data]
1b0a85dbfe2c2f1e6d5e78ba64ca6c1aa92e9973
449d555969bfd7befe906877abab098c6e63a0e8
/611/CH6/EX6.12/Chap6_Ex12_R1.sce
e586d548f3d889914e60c384224aa32b3f40f267
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,131
sce
Chap6_Ex12_R1.sce
// Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India. //Chapter-6,Example 12,Page 226 //Title: Minimum power for compression //================================================================================================================ clear clc //INPUT P1=0.1;//pressure at which air enters the compressor in MPa T1=300;//temperature at which air enters the compressor in K P2=1;//pressure at which air leaves the compressor in MPa T2=300;//temperature at which air leaves the compressor in K T0=300;//ambient temperature in K N=1;//molar flow rate of air in mol/s gaamma=1.4;//ratio of specific heat capacities (no unit) R=8.314;//universal gas constant in J/molK //CALCULATION //T0=T1=T2 and h2-h1=Cp*(T2-T1)=0 as T2=T1 Ws=(-N*T0*(-R*log (P2/P1)))*10^-3;//calculation of minimum power required for compression using Eq.(6.99) in kW //OUTPUT mprintf("\n The minimum power required to compress one mole per second of air=%0.3f kW\n",Ws); //===============================================END OF PROGRAM===================================================
65d03887e62d8d6fe12314579fca31c18e23581d
449d555969bfd7befe906877abab098c6e63a0e8
/2213/CH3/EX3.3/ex_3_3.sce
5f067f2d289ba9597f801b2d9ef69441fb7c43f1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
ex_3_3.sce
//Example 3.3 // mass of copper deposited clc; clear; close; //given data : Z=1.044*10^-8;//in kg/C I=40;//in A t=1*60*60;//in seconds m1=Z*I*t; disp("mass of copper depsoited is "+string(m1)+"kg or "+string((m1*10^3))+"gm")
f10179939f5a7259935159124b9ab28a7bf7189d
1db0a7f58e484c067efa384b541cecee64d190ab
/macros/unwrap2.sci
b8ea9deb00754d3342dac816fa7d80d375348d82
[]
no_license
sonusharma55/Signal-Toolbox
3eff678d177633ee8aadca7fb9782b8bd7c2f1ce
89bfeffefc89137fe3c266d3a3e746a749bbc1e9
refs/heads/master
2020-03-22T21:37:22.593805
2018-07-12T12:35:54
2018-07-12T12:35:54
140,701,211
2
0
null
null
null
null
UTF-8
Scilab
false
false
870
sci
unwrap2.sci
function Y = unwrap2 (X, TOL, DIM) //Unwrap radian phases by adding or subtracting multiples of 2*pi. //Calling Sequence //B = unwrap(X) //B = unwrap(X, TOL) //B = unwrap(X, TOL, DIM) //Parameters //Description //This function unwraps radian phases by adding or subtracting multiples of 2*pi as appropriate to remove jumps greater than TOL. // // TOL defaults to pi. // //Unwrap will work along the dimension DIM. If DIM is unspecified it defaults to the first non-singleton dimension. //Examples //unwrap2([1,2,3]) //ans = // 1. 2. 3. funcprot(0); lhs = argn(1); rhs = argn(2); if (rhs < 1 | rhs > 3) error("Wrong number of input arguments."); end select(rhs) case 1 then Y = callOctave("unwrap",X); case 2 then Y = callOctave("unwrap",X,TOL); case 3 then Y = callOctave("unwrap",X,TOL,DIM); end endfunction
baf891a9b4ca42a8bce5f5d0c693b9caba28cbc3
d0efa9f4759b46e22ac9687b2871bb3464002002
/example6.sce
4dfd8dbfd7fa5edb11f6a65b5c7e0e9b9b8786fc
[]
no_license
Adithya-Shetty100/Scilab--Linear-Algebra
c0198c7dd3a4f599b88904b5d7554589aaa5e995
ed63e672f56b8b4f1bff7f33e50352db3e8568fe
refs/heads/main
2023-04-19T12:41:56.959465
2021-05-11T08:46:41
2021-05-11T08:46:41
366,313,853
0
0
null
null
null
null
UTF-8
Scilab
false
false
419
sce
example6.sce
clc; clear; close; disp('The given matrix is') a=[4 5 9 -2;6 5 1 12;3 4 8 -3] a(2,:)=a(2,:)-(a(2,1)/a(1,1))*a(1,:) a(3,:)=a(3,:)-(a(3,1)/a(1,1))*a(1,:) disp(a) a(3,:)=a(3,:)-(a(3,2)/a(2,2))*a(2,:) disp(a) a(1,:)=a(1,:)/a(1,1) a(2,:)=a(2,:)/a(2,2) disp(a) for i=1:3 for j=1:4 if(a(i,j)<>0) disp('column',j,'is a pivot column') break end end end
6de5512e9135255e204bf32c7634eb1521d21a61
449d555969bfd7befe906877abab098c6e63a0e8
/317/CH20/EX20.8/example8.sce
62175258ee4ed0dd92aed280d5ac56097fa9fdef
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
594
sce
example8.sce
// find output current and maximum load resistance // Electronic Principles // By Albert Malvino , David Bates // Seventh Edition // The McGraw-Hill Companies // Example 20-8, page 768 clear; clc; close; // Given data R=10*10^3;// in ohms Vin=10;// input voltage in volts Vcc=15;// in volts // Calculations iout=Vin/R;// output current in amperes Rlmax=R*((Vcc/Vin)-1);// maximum load resistance in ohms disp("Amperes",iout,"output current=") disp("ohms",Rlmax,"Maximum load resistance=") // Result // Output current is 1 mAmperes // Maximum load resistance is 5 Kohms
1e8b01c860485eaf4ab0c1d254e01e6046ecc0f3
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.3/macros/scicos/shiftcors.sci
fd1c1426f44e36a0ea840db5be624d6070af1df8
[ "MIT", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
162
sci
shiftcors.sci
function cors=shiftcors(cors,ns) n=size(cors) for k=1:n if type(cors(k))==15 then cors(k)=shiftcors(cors(k),ns) else cors(k)=cors(k)+ns end end
02d95a23955b420f33317976986482a66b404932
449d555969bfd7befe906877abab098c6e63a0e8
/3814/CH1/EX1.2/Ex1_2.sce
e085cec83b180d87a8dc4cbfbfcf1ef53ba792ff
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
321
sce
Ex1_2.sce
// determine the height that the water will rise to capillary action in the tube clc sigma=0.073 // sigma of pipe gamma1=9800 // gammma constant D=2e-3// diameter of the pipe h=(4*sigma)/(gamma1*D) // height of the water rise in capillary mprintf('\n height of water rise in capillary is given by %f meter',h)
2fc102930229813ae5393cfbbb5bf1a87c9002bb
449d555969bfd7befe906877abab098c6e63a0e8
/61/CH5/EX5.5/ex5_5.sce
ab099df21723bb486f963b8109c8c1734273e45a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
502
sce
ex5_5.sce
//ex5.5 R1=68*10^3; R2=47*10^3; R_C=1.8*10^3; R_E=2.2*10^3; V_CC=-6; V_BE=0.7; B_DC=75; R_IN_base=B_DC*R_E; disp('input resistance as seen from base is not greater than 10 times R2 so it should be taken into account') //R_IN_base in parallel with R2 V_B=((R2*R_IN_base)/(R2+R_IN_base)/(R1+(R2*R_IN_base)/(R2+R_IN_base)))*V_CC; V_E=V_B+V_BE; I_E=V_E/R_E; I_C=I_E; V_C=V_CC-I_C*R_C; V_CE=V_C-V_E; disp(I_C,'collector current in amperes') disp(V_CE,'collector emitter voltage in volts')
258cea1ca14a216948a1f5029c68fe8e3b88cffe
449d555969bfd7befe906877abab098c6e63a0e8
/69/CH4/EX4.8/4_8.sce
f37d80d5e75a5dcce32b27c91ead0fe11500ee69
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
4_8.sce
clear; clc; close; R1 = 39*10^(3); R2 = 3.9*10^(3); Re = 1.5*10^(3); Rc = 4*10^(3); Vcc = 18; Vbe = 0.7; Beta = 140; Ic = 0.63*10^(-3); disp('Since the approximate technique can be applied,hence '); Eth = R2*Vcc/(R1+R2); Vb = Eth; Ve = Vb - Vbe; Icq = Ve/Re; Vceq = Vcc - Ic*(Rc+Re); disp(Icq,'Value of Icq(Amperes) is : '); disp(Vceq,'Value of Vceq(Volts) : ');
2a0d71d6de84e3c196681669f86f5cc0fd6d643d
be07c1e346737e6e38bb958d9a66f52f6da2180a
/Regression/MANAGER/MANA_STUB_PROTO.tst
bf7e612144407ae0137381f84718af30fce381b0
[]
no_license
dpreisser/Training
1bc8840d646306d861f4c7610a28bb23667f06e5
97eb58c7963e4725d6a2ad9e8200ca9367c84061
refs/heads/master
2021-01-10T13:03:12.508795
2016-04-11T12:49:06
2016-04-11T12:49:06
54,963,561
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,040
tst
MANA_STUB_PROTO.tst
-- VectorCAST 6.4d (02/29/16) -- Test Case Script -- -- Environment : MANA_STUB_PROTO -- Unit(s) Under Test: manager -- -- Script Features TEST.SCRIPT_FEATURE:C_DIRECT_ARRAY_INDEXING TEST.SCRIPT_FEATURE:CPP_CLASS_OBJECT_REVISION TEST.SCRIPT_FEATURE:MULTIPLE_UUT_SUPPORT TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES TEST.SCRIPT_FEATURE:STANDARD_SPACING_R2 TEST.SCRIPT_FEATURE:OVERLOADED_CONST_SUPPORT TEST.SCRIPT_FEATURE:UNDERSCORE_NULLPTR TEST.SCRIPT_FEATURE:FULL_PARAMETER_TYPES TEST.SCRIPT_FEATURE:STATIC_HEADER_FUNCS_IN_UUTS -- -- Test Case: MyTest TEST.UNIT:manager TEST.SUBPROGRAM:Place_Order TEST.NEW TEST.NAME:MyTest TEST.NOTES: Author: Date: Version: Requirement: TEST.END_NOTES: TEST.VALUE:manager.Place_Order.Table:1 TEST.VALUE:manager.Place_Order.Seat:0 TEST.VALUE:manager.Place_Order.Order.Entree:CHICKEN TEST.EXPECTED:uut_prototype_stubs.Update_Table_Record.Table:1 TEST.EXPECTED:uut_prototype_stubs.Update_Table_Record.check_total:10.0 TEST.EXPECTED:uut_prototype_stubs.Update_Table_Record.Data.Order[0].Entree:CHICKEN TEST.END
1b76d2e6be8f594fdac34d578d017761e1fe93ac
39c5c468df5e2bde0147a30cf092fc8da3e7ed3e
/UFRGS/calcNumerico/area2/P2_numerico_oberdan/M12 - Passo_Múltiplo_e_derivação/M12 - un_encontre_coeficientes.sce
3a4ffc16995593c8cf67f94349008efc972e7a24
[]
no_license
andredxc/Files
9dffc9fe5f7e923b83035d794dfa15c930cdb898
e32309b9ab548b829b04be66c2776cf9c9c6656e
refs/heads/master
2021-06-03T10:44:01.606242
2020-09-21T15:39:48
2020-09-21T15:39:48
107,410,076
0
0
null
null
null
null
UTF-8
Scilab
false
false
600
sce
M12 - un_encontre_coeficientes.sce
// Os x sao os pontos onde a f(x) e' calculada // Usa quando Un+1 = Un + H [ C1Fn+0 + C2Fn-1 + C3Fn-2] // //M12-q1 //x(1) = 0; // 0 e' do c1*fn+0 //x(2) = -1; // -1 e' do c2*fn-1 //x(3) = -2; // -2 e' do c3*fn-2 //M12-q2-q3-q4 x(1) = 1; // 1 e' do c1*fn+1 x(2) = -1; // -1 e' do c2*fn-1 x(3) = -2; // -2 e' do c3*fn-2 // Daqui pra baixo nao muda pra esse padrao de Un+1... b(1) = 1; b(2) = 1/2; b(3) = 1/3; for i=1:3 M(1,i) = 1; M(2,i) = x(i); M(3,i) = x(i)^2; end c = inv(M)*b; S = c(1)^2 + c(2)^2 + c(3)^2; //disp(c(1)) q1 //disp(c(2)) q2 //disp(c(3)) q3 disp(norm(c)) //q4
3e5353a3e8c3eb0bf3e14493690f8acbf6dfb8ba
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.3/macros/percent/%lssvp.sci
49c3e8f04614ecdeb6d0d3a280c71d2e003b5070
[ "MIT", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
235
sci
%lssvp.sci
function [sr]=%lssvp(s,p) // feedback sr=(eye+s*p)\s //s=%lssvp(s,p) <=> sr=s/.p // p : polynomial matrix // s : state-space syslin list //! //origine S Steer INRIA 1992 sr=s/.tlist(['lss','A','B','C','D','X0','dt'],[],[],[],p,[],[])
79c4fc429b15352f88b4666270d330a6e94fbb77
d47ef89d1d0330681dd97a1ca4cb131d64b6d609
/code/uno_arbol.sci
75d79046e67a1472d6e956aa4b8ae58f20903395
[]
no_license
jere1882/TSP_Heuristics
a035a28bc786a19d0d5fd17364f81d46d70d9c17
ca58cb77b986d03b4a92d86161ce812df8d85b17
refs/heads/master
2022-11-25T05:35:45.053166
2020-08-02T23:45:28
2020-08-02T23:45:28
284,557,182
0
0
null
null
null
null
UTF-8
Scilab
false
false
388
sci
uno_arbol.sci
function [cotainf] = uno_arbol(A, v1) // Ejecuta el algoritmo del 1-arbol óptimo sobre la instancia TSP dada // Entrada: // A = matríz de distancias de la instancia TSP // v1 = vértice inicial // Salida: // cotainf = valor de la cota inferior [nodos, zzz] = size(A); // en "nodos" se guarda la cantidad de vértices de la instancia // *** ESCRIBA EL CODIGO AQUI! *** endfunction
fab3c28a0195597f0b2b95e0eb6ad6bf162b43ab
449d555969bfd7befe906877abab098c6e63a0e8
/2126/CH1/EX1.28/28.sce
bfcd52fcc9d8f9ac5f92fb952620b3a08d8adcd7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
672
sce
28.sce
clc clear //Input data C=300 //Velocity of air in m/s P=1 //Static pressure in kPa T=290 //Static temperature in K k=1.4 //Adiabatic constant R=287 //Specific gas constant in J/kg-k Cp=1005 //Specific heat capacity at constant pressure in J/kg-K //Calculation To=T+(C^2/(2*Cp)) //Stagnation temperature in K Po=P*(To/T)^(k/(k-1)) //Stagnation pressure in kPa a=sqrt(k*R*T) //Sound velocity in m/s Co=sqrt(k*R*To) //Sound velocity at Stagnation condition in m/s //Output printf('(A)Stagnation pressure and temperature are %3.4f bar and %3.2f K\n (B)Velocity of sound in the dynamic and stagnation conditions are %3.2f m/s and %3.2f m/s',Po,To,a,Co)
50f9ea85d2e009e17109da81d2239aa21e52e964
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH28/EX28.3/Ex28_3.sce
6666ec1dc586012400b2722979bfee01f868e22a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
124
sce
Ex28_3.sce
clc; //e.g 28.3 C=100*10**-12; L1=30*10**-6; L2=1*10**-8; fo=1/(2*%pi*sqrt((L1+L2)*C)); disp('MHZ',fo*10**-6,"fo=");
38674f3c8ee807fc0c181f04368287e15022e2dd
449d555969bfd7befe906877abab098c6e63a0e8
/2465/CH4/EX4.19/Example_19.sce
ee777211a896d34e8aa149dc6e7193308b027465
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
343
sce
Example_19.sce
//Chapter-4,Example 19,Page 97 clc(); close(); T1= 300 //temperature in Kelvin T2= 310 //temperature in Kelvin Kp1=3.49*10^-2 //equilibrium constant delta_H=-11200 R= 1.987 //gas constant //from Van't Hoff's Equation Kp2=Kp1*10^(delta_H*((1/T1)-(1/T2))/(2.303*R)) printf('the value of Kp2 = %.6f/atm ', Kp2)
a7079b217ce8dd13bf6921a2fcfed88b8ff284ff
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/tweet/bow/bow.17_7.tst
88d912f5e2029793a2d0077da524c8428496d36d
[]
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
26,710
tst
bow.17_7.tst
17 34:1.0 48:0.09090909090909091 520:0.5 669:0.16666666666666666 1722:0.3333333333333333 3532:0.5 3544:0.5 3635:1.0 3761:1.0 4337:1.0 4375:0.5 4564:1.0 5557:1.0 5833:1.0 6576:1.0 6594:1.0 7831:1.0 7989:1.0 17 3:1.0 4:0.15384615384615385 18:0.14285714285714285 46:0.06666666666666667 61:0.5 73:1.0 217:1.0 283:0.2 335:0.25 362:0.14285714285714285 444:1.0 529:0.5 1395:1.0 1687:1.0 1795:0.5 2675:1.0 3520:0.5 5374:1.0 5660:1.0 7150:1.0 7594:1.0 17 4:0.15384615384615385 18:0.14285714285714285 22:0.2222222222222222 32:0.5 44:1.0 72:1.0 120:0.5 124:0.09090909090909091 270:0.2 387:0.5 444:1.0 514:0.5 691:1.0 1083:0.5 3407:1.0 3568:1.0 3662:0.5 3812:1.0 4034:0.3333333333333333 4188:1.0 5043:1.0 5638:1.0 6978:1.0 7639:1.0 17 18:0.14285714285714285 124:0.09090909090909091 1397:1.0 1722:0.3333333333333333 3518:1.0 3531:0.2 3542:1.0 3545:0.25 3554:0.3333333333333333 3569:1.0 3635:1.0 3648:0.3333333333333333 4436:1.0 4476:1.0 5142:1.0 5590:1.0 7153:0.5 17 209:0.5 382:0.125 1032:1.0 1306:1.0 2397:0.5 3516:1.0 3568:1.0 3616:1.0 3669:1.0 3670:1.0 3997:1.0 4013:1.0 4015:1.0 4375:0.5 4503:1.0 4635:1.0 4676:1.0 4830:1.0 5151:1.0 6315:2.0 6680:1.0 17 18:0.14285714285714285 22:0.3333333333333333 32:0.5 65:0.1 124:0.09090909090909091 221:0.5 249:0.2 335:0.25 529:0.5 670:1.0 676:1.0 1084:1.0 1086:0.5 1729:2.0 2560:1.0 3518:1.0 3531:0.2 3586:2.0 3592:0.3333333333333333 3815:1.0 3854:1.0 3874:0.5 4015:1.0 4093:2.0 4599:1.0 4758:1.0 4784:1.0 4904:1.0 5100:1.0 7341:1.0 7732:1.0 17 22:0.1111111111111111 160:0.3333333333333333 382:0.25 919:0.3333333333333333 3531:0.2 3619:1.0 3635:2.0 3665:1.0 3861:1.0 3882:1.0 4037:1.0 4331:1.0 4638:1.0 4949:1.0 5134:1.0 5235:1.0 5567:1.0 5907:1.0 6045:1.0 6685:1.0 7419:1.0 17 22:0.1111111111111111 36:1.0 160:0.6666666666666666 335:0.25 1729:1.0 2397:0.25 3230:1.0 3522:1.0 3523:1.0 3531:0.4 3544:0.5 3566:0.2 3586:1.0 3635:1.0 3681:0.5 3735:1.0 3776:1.0 3843:1.0 3855:1.0 4093:1.0 4260:1.0 4442:1.0 4595:1.0 4823:1.0 5495:1.0 6530:1.0 6869:1.0 6949:1.0 7130:1.0 7920:1.0 17 32:1.0 65:0.1 124:0.09090909090909091 249:0.2 270:0.4 362:0.14285714285714285 382:0.125 520:0.5 919:0.3333333333333333 1093:0.5 1558:1.0 2437:1.0 3544:0.5 3616:1.0 3635:0.5 4334:1.0 4391:1.0 4427:1.0 4500:0.5 4893:1.0 4921:1.0 5035:1.0 5241:1.0 17 3:1.0 13:1.0 30:1.0 32:0.5 114:1.0 242:0.02857142857142857 335:0.25 338:0.5 382:0.125 520:0.5 624:1.0 639:1.0 1091:1.0 1660:1.0 2523:1.0 3128:0.5 3531:0.2 3542:1.0 3635:0.5 3681:0.5 3755:0.4 3777:0.5 3854:1.0 3995:0.5 4331:1.0 5153:1.0 5900:1.0 6466:1.0 7326:1.0 7361:1.0 7919:1.0 17 22:0.1111111111111111 44:2.0 65:0.2 158:0.5 363:0.3333333333333333 372:1.0 529:0.5 1977:1.0 2656:1.0 3542:1.0 3635:0.5 3662:0.5 3755:0.2 4193:1.0 4949:1.0 17 3:1.0 13:0.3333333333333333 18:0.14285714285714285 36:1.0 43:0.5 44:1.0 45:0.16666666666666666 65:0.3 78:0.25 122:1.0 242:0.02857142857142857 247:0.5 290:0.5 335:0.25 400:0.5 410:1.0 669:0.16666666666666666 1093:0.5 1611:1.0 1957:1.0 2897:1.0 2954:1.0 3566:0.2 3949:0.3333333333333333 3998:1.0 4442:1.0 5213:1.0 7220:1.0 17 711:1.0 1722:0.3333333333333333 1751:1.0 2397:0.25 3516:1.0 3542:1.0 3544:0.5 3559:1.0 3594:1.0 3669:1.0 3670:1.0 3960:1.0 4004:1.0 4054:0.5 4059:1.0 4129:0.5 4830:1.0 5206:1.0 5564:1.0 6520:1.0 7456:1.0 17 34:1.0 48:0.09090909090909091 520:0.5 719:0.3333333333333333 1729:1.0 2397:0.25 3531:0.2 3545:0.25 3566:0.2 3635:0.5 3648:0.3333333333333333 3755:0.2 3761:1.0 3997:1.0 4295:1.0 5557:1.0 6594:1.0 6595:1.0 17 22:0.1111111111111111 160:0.3333333333333333 3531:0.6 3542:1.0 3545:0.75 3554:0.3333333333333333 3566:0.2 3586:1.0 3635:1.5 3648:0.6666666666666666 3729:1.0 3882:1.0 3998:1.0 4000:0.5 4005:1.0 4377:1.0 5437:1.0 5630:1.0 5665:0.5 5836:1.0 6239:1.0 6269:1.0 6485:1.0 17 8:1.0 21:1.0 36:1.0 78:0.25 175:0.3333333333333333 247:1.0 270:0.2 362:0.14285714285714285 400:0.25 549:0.125 1739:1.0 2211:1.0 17 3:1.0 22:0.1111111111111111 46:0.06666666666666667 124:0.09090909090909091 217:1.0 362:0.14285714285714285 382:0.125 919:0.3333333333333333 1687:1.0 1722:0.6666666666666666 3531:0.2 3614:1.0 3616:1.0 3619:1.0 3635:1.5 3685:0.5 3725:1.0 3755:0.4 3777:0.5 4037:1.0 4091:1.0 4650:1.0 5505:1.0 6045:1.0 6046:1.0 6047:1.0 6048:1.0 6343:1.0 7151:1.0 7594:1.0 17 4:0.15384615384615385 18:0.42857142857142855 32:0.5 44:1.0 46:0.03333333333333333 48:0.09090909090909091 65:0.1 112:0.5 131:1.0 164:0.16666666666666666 270:0.2 296:0.25 309:0.5 549:0.125 670:1.0 759:0.5 777:1.0 827:1.0 895:1.0 1213:0.5 1641:0.3333333333333333 1700:1.0 1967:1.0 2014:1.0 2351:1.0 4115:1.0 5119:1.0 6063:1.0 6546:2.0 6796:1.0 17 46:0.03333333333333333 335:0.25 669:0.16666666666666666 1092:1.0 1303:0.5 1722:0.3333333333333333 1957:1.0 3531:0.2 3534:0.5 3566:0.2 3569:1.0 3777:0.5 3893:0.5 3945:1.0 4528:1.0 4806:1.0 4816:1.0 5052:1.0 5510:1.0 5973:1.0 6301:1.0 6486:1.0 6869:1.0 17 18:0.14285714285714285 22:0.2222222222222222 30:2.0 36:1.0 65:0.2 73:1.0 89:1.0 208:0.5 247:0.5 307:0.2 335:0.5 338:0.5 389:0.5 529:0.5 777:1.0 985:1.0 1364:1.0 1545:1.0 1729:1.0 1829:1.0 2258:1.0 2926:1.0 3531:0.4 3545:0.25 3635:0.5 3648:0.3333333333333333 3783:1.0 3848:1.0 3931:1.0 4109:1.0 4984:1.0 6485:1.0 7905:1.0 17 12:0.5 32:0.5 44:1.0 65:0.1 78:0.25 290:0.5 338:0.5 365:1.0 795:0.5 882:1.0 1729:1.0 1923:1.0 3531:0.2 3542:1.0 3591:0.5 3640:1.0 3648:0.6666666666666666 3681:0.5 3738:0.25 3815:1.0 3960:1.0 4098:1.0 4717:1.0 4982:1.0 5764:1.0 5876:1.0 6957:1.0 7671:1.0 17 8:0.5 22:0.1111111111111111 120:0.5 171:1.0 335:0.25 445:1.0 919:0.3333333333333333 3531:0.2 3651:0.5 3685:0.5 3753:1.0 3777:0.5 4248:1.0 5235:1.0 6276:1.0 6277:1.0 6278:1.0 6279:1.0 6280:1.0 17 22:0.3333333333333333 160:0.6666666666666666 382:0.125 1468:1.0 1722:0.3333333333333333 2397:0.25 3523:1.0 3531:1.2 3566:0.4 3586:1.0 3612:1.0 3616:1.0 3635:1.5 3651:1.0 3687:0.5 3805:1.0 3806:1.0 3807:2.0 3808:1.0 3809:1.0 3810:1.0 3811:1.0 3874:0.5 3913:1.0 3914:1.0 4085:0.5 4872:1.0 6048:1.0 7212:1.0 7656:1.0 7886:1.0 17 13:0.6666666666666666 22:0.1111111111111111 24:1.0 44:1.0 65:0.2 78:0.25 89:1.0 120:0.5 143:1.0 175:0.3333333333333333 338:0.5 400:0.25 1829:1.0 2216:1.0 2493:0.3333333333333333 2806:1.0 2926:1.0 3554:0.3333333333333333 3635:0.5 3681:0.5 3753:1.0 3786:0.3333333333333333 3900:1.0 4232:1.0 5145:1.0 5901:1.0 6496:1.0 6682:1.0 17 22:0.2222222222222222 30:1.0 32:1.0 44:1.0 45:0.16666666666666666 61:0.5 65:0.1 78:0.25 270:0.2 309:0.5 382:0.125 400:0.25 637:1.0 1209:1.0 1923:1.0 2290:1.0 2541:1.0 2969:1.0 3144:1.0 3685:1.0 3725:1.0 3755:0.2 3770:1.0 3786:0.3333333333333333 3891:1.0 5764:1.0 5876:1.0 17 22:0.3333333333333333 670:1.0 1074:1.0 3531:0.2 3542:1.0 3545:0.25 3566:0.2 3635:0.5 3648:0.3333333333333333 4015:1.0 5183:1.0 5264:1.0 5313:1.0 5590:1.0 5790:1.0 6579:1.0 7334:1.0 7889:1.0 17 18:0.2857142857142857 32:0.5 44:1.0 46:0.03333333333333333 65:0.1 78:0.25 128:0.3333333333333333 136:0.3333333333333333 160:0.3333333333333333 278:1.0 319:1.0 335:0.5 520:0.5 656:1.0 669:0.16666666666666666 670:1.0 1086:0.5 1293:1.0 3518:0.5 3648:0.3333333333333333 3844:1.0 5323:1.0 7441:1.0 7788:1.0 17 18:0.14285714285714285 30:1.0 34:1.0 46:0.03333333333333333 48:0.09090909090909091 102:1.0 117:1.0 399:0.3333333333333333 652:2.0 692:1.0 1209:1.0 1729:1.0 1849:1.0 3531:0.2 3534:0.5 3544:0.5 3545:0.25 3554:0.6666666666666666 3586:1.0 3648:0.3333333333333333 4054:0.5 4457:1.0 4497:1.0 4575:1.0 5240:1.0 6143:1.0 7285:1.0 7706:2.0 17 22:0.1111111111111111 124:0.09090909090909091 382:0.375 399:0.3333333333333333 1722:0.6666666666666666 3531:0.2 3554:0.3333333333333333 3566:0.2 3591:0.5 3616:1.0 3619:1.0 3635:2.0 3755:0.4 3758:1.0 3777:0.5 4091:1.0 4096:1.0 4132:0.5 4195:1.0 4377:1.0 4391:2.0 4528:1.0 4595:1.0 4952:1.0 5240:1.0 6011:1.0 6151:1.0 6163:1.0 7127:0.5 7151:1.0 7334:1.0 17 247:0.5 919:0.3333333333333333 1722:0.3333333333333333 1729:1.0 3128:1.0 3518:0.5 3531:0.6 3554:0.3333333333333333 3617:1.0 3624:1.0 3635:0.5 3662:0.5 3681:1.0 3703:0.3333333333333333 3704:1.0 3705:1.0 3706:1.0 3759:1.0 3796:0.25 3812:1.0 3874:0.5 3882:1.0 3913:1.0 3945:1.0 4223:1.0 4371:1.0 4427:1.0 4476:1.0 4479:1.0 4641:1.0 4849:1.0 6869:1.0 7339:1.0 17 4:0.07692307692307693 32:1.0 34:1.0 44:1.0 45:0.3333333333333333 46:0.06666666666666667 65:0.2 120:0.5 175:0.3333333333333333 241:1.0 338:1.0 377:1.0 399:0.6666666666666666 400:0.5 492:1.0 549:0.125 814:1.0 928:1.0 990:1.0 1190:1.0 2221:1.0 2290:1.0 3531:0.2 3635:0.5 3681:0.5 3738:0.25 3739:1.0 3755:0.2 4141:1.0 4366:1.0 4822:1.0 4824:1.0 5235:1.0 6163:1.0 6399:1.0 6478:1.0 7602:1.0 17 8:0.5 18:0.2857142857142857 22:0.1111111111111111 44:1.0 46:0.06666666666666667 48:0.09090909090909091 73:1.0 128:0.3333333333333333 175:0.3333333333333333 247:0.5 272:1.0 283:0.2 399:0.3333333333333333 795:0.5 853:1.0 1092:1.0 1147:1.0 3263:1.0 3531:0.4 3545:0.25 3567:2.0 3591:0.5 3706:1.0 3720:0.25 3721:1.0 3722:1.0 3777:0.5 3843:1.0 3859:0.5 4003:1.0 4141:1.0 4427:2.0 4505:1.0 4528:1.0 4535:1.0 4756:1.0 17 13:0.3333333333333333 18:0.14285714285714285 46:0.06666666666666667 352:1.0 520:0.5 639:1.0 1658:5.0 1729:1.0 2092:1.0 2782:1.0 3648:0.3333333333333333 7580:1.0 17 124:0.09090909090909091 382:0.125 919:0.3333333333333333 1722:0.3333333333333333 2397:0.25 3531:0.6 3616:1.0 3648:0.3333333333333333 3651:1.0 3783:1.0 3961:0.25 4085:0.5 4159:1.0 4531:1.0 4668:1.0 5270:0.5 5642:1.0 5768:1.0 6000:1.0 7376:1.0 7693:1.0 17 22:0.1111111111111111 45:0.16666666666666666 3531:0.6 3532:0.5 3533:1.0 3648:0.3333333333333333 4406:0.5 4942:1.0 5437:1.0 5789:1.0 6512:1.0 17 13:0.6666666666666666 24:1.0 32:0.5 65:0.1 120:0.5 128:0.3333333333333333 160:0.6666666666666666 166:1.0 335:0.25 338:0.5 531:1.0 549:0.125 919:0.3333333333333333 1397:1.0 1894:1.0 2493:0.3333333333333333 2681:0.5 3531:0.2 3568:1.0 3619:1.0 3759:1.0 4135:0.5 4223:1.0 4665:1.0 5210:1.0 7739:1.0 17 8:0.5 22:0.1111111111111111 30:1.0 124:0.09090909090909091 1397:1.0 2493:0.3333333333333333 2539:1.0 3568:1.0 3569:1.0 3635:0.5 3783:1.0 3947:1.0 4091:1.0 4500:1.5 4959:1.0 5790:1.0 5791:1.0 6641:1.0 7624:1.0 17 18:0.14285714285714285 22:0.2222222222222222 36:1.0 45:0.16666666666666666 73:1.0 120:0.5 124:0.2727272727272727 221:0.5 527:1.0 529:0.5 919:0.3333333333333333 1409:1.0 1810:1.0 2941:1.0 3041:1.0 3128:0.5 3617:2.0 3690:0.5 4367:1.0 6183:1.0 6477:1.0 17 4:0.07692307692307693 22:0.1111111111111111 43:0.5 382:0.125 919:0.3333333333333333 1722:0.3333333333333333 2397:0.25 3523:1.0 3531:0.2 3703:0.3333333333333333 3704:1.0 3705:1.0 3706:1.0 3710:1.0 3755:0.2 3777:0.5 3852:1.0 4015:1.0 4500:0.5 4803:1.0 6000:1.0 6590:1.0 6624:1.0 6625:1.0 7376:1.0 17 4:0.07692307692307693 30:1.0 44:1.0 45:0.16666666666666666 46:0.03333333333333333 64:0.125 72:1.0 249:0.2 283:0.2 290:0.5 335:0.5 362:0.14285714285714285 445:1.0 669:0.16666666666666666 1117:1.0 1438:1.0 1505:0.5 2129:1.0 3013:1.0 3531:0.6 3542:1.0 3545:0.25 3566:0.4 3648:0.3333333333333333 3706:1.0 3720:0.25 3721:1.0 3722:1.0 3763:1.0 4005:1.0 4011:1.0 4085:0.5 4131:1.0 4235:1.0 4357:1.0 4555:1.0 6546:2.0 17 30:1.0 36:1.0 45:0.3333333333333333 78:0.25 247:0.5 334:0.5 336:1.0 338:0.5 400:1.0 549:0.125 928:1.0 2100:1.0 3522:1.0 3648:0.3333333333333333 3681:0.5 3738:0.25 3739:1.0 4034:0.3333333333333333 4084:1.0 5131:1.0 6755:1.0 7676:1.0 17 21:1.0 30:1.0 36:1.0 78:0.25 160:0.3333333333333333 217:1.0 234:0.5 399:0.3333333333333333 400:0.25 549:0.125 1437:0.5 1795:0.5 3542:1.0 3554:0.3333333333333333 3566:0.2 3753:1.0 3861:1.0 4271:1.0 4380:1.0 4717:1.0 5408:1.0 5409:1.0 5907:1.0 17 22:0.2222222222222222 160:0.3333333333333333 1722:0.3333333333333333 1729:1.0 3531:0.2 3545:0.25 3551:1.0 3554:0.3333333333333333 3566:0.2 3569:1.0 3572:1.0 3591:1.0 3613:1.0 3619:1.0 3725:1.0 3755:0.2 3777:0.5 3968:0.5 4260:1.0 4368:1.0 4441:1.0 4442:1.0 4443:1.0 4476:1.0 4551:1.0 4917:1.0 6349:1.0 6669:1.0 6755:1.0 7806:1.0 17 22:0.2222222222222222 32:1.0 124:0.09090909090909091 270:0.2 362:0.14285714285714285 669:0.16666666666666666 670:1.0 919:0.3333333333333333 1086:0.5 1255:0.3333333333333333 1810:1.0 3554:0.3333333333333333 3616:1.0 3755:0.2 4223:1.0 4260:2.0 4398:1.0 6153:1.0 6220:1.0 6376:1.0 7511:1.0 17 22:0.1111111111111111 124:0.09090909090909091 247:0.5 382:0.125 1729:1.0 3523:1.0 3531:0.4 3544:0.5 3551:1.0 3566:0.2 3616:1.0 3651:0.5 3685:0.5 3725:1.0 3753:1.0 3777:0.5 4271:1.0 4403:1.0 4677:1.0 4742:1.0 6727:1.0 17 3:1.0 13:0.3333333333333333 18:0.14285714285714285 32:0.5 45:0.16666666666666666 48:0.09090909090909091 116:1.0 128:0.6666666666666666 222:1.0 244:1.0 335:0.25 338:0.5 400:0.5 919:0.3333333333333333 936:1.0 1318:1.0 1335:1.0 1790:1.0 2351:1.0 2454:1.0 3635:0.5 3725:1.0 3862:0.5 4135:0.5 4391:1.0 17 22:0.2222222222222222 102:1.0 244:1.0 1729:1.0 3527:1.0 3531:0.2 3545:0.25 3566:0.2 3640:1.0 3648:0.3333333333333333 3725:2.0 3949:0.6666666666666666 4020:1.0 4093:1.0 4442:1.0 4498:1.0 5037:1.0 5038:1.0 5265:1.0 5836:2.0 6301:1.0 6485:1.0 17 4:0.07692307692307693 22:0.2222222222222222 32:0.5 46:0.03333333333333333 78:0.25 244:1.0 363:0.3333333333333333 919:0.3333333333333333 1086:0.5 1209:1.0 1722:0.3333333333333333 1729:1.0 2353:1.0 3531:0.8 3566:0.2 3616:1.0 3640:1.0 3687:1.0 3725:1.0 3755:0.2 3882:2.0 4079:1.0 4442:2.0 4601:1.0 5037:1.0 5038:1.0 6295:1.0 17 13:0.3333333333333333 34:1.0 64:0.125 283:0.2 284:1.0 382:0.125 520:1.5 903:0.5 1340:1.0 2897:1.0 3404:1.0 3542:1.0 3575:1.0 4380:1.0 5116:1.0 5153:1.0 5765:1.0 5766:1.0 7310:1.0 7992:1.0 17 3:1.0 18:0.14285714285714285 22:0.1111111111111111 30:1.0 46:0.06666666666666667 65:0.1 242:0.02857142857142857 247:0.5 283:0.2 335:0.25 399:0.3333333333333333 520:0.5 529:0.5 919:0.3333333333333333 2014:1.0 3531:0.4 3554:0.3333333333333333 3616:2.0 3690:0.5 3703:0.3333333333333333 3704:1.0 3705:1.0 3706:1.0 3710:1.0 3749:1.0 3776:1.0 3778:1.0 3949:0.3333333333333333 3960:1.0 3998:1.0 4261:1.0 4469:1.0 5231:1.0 5313:1.0 6218:1.0 6219:1.0 6220:1.0 6221:1.0 6222:1.0 6223:1.0 6407:1.0 7539:1.0 17 13:0.3333333333333333 22:0.1111111111111111 48:0.09090909090909091 241:1.0 338:0.5 400:0.25 443:1.0 604:1.0 658:0.25 1190:1.0 1729:1.0 1785:1.0 3531:0.2 3567:1.0 3706:1.0 3720:0.25 3721:1.0 3722:1.0 4101:1.0 4351:0.5 4499:1.0 5904:1.0 6274:1.0 7077:1.0 7608:1.0 17 32:0.5 44:1.0 65:0.2 226:1.0 338:1.0 529:0.5 928:1.0 1621:1.0 2869:1.0 2982:1.0 3531:0.2 3738:0.25 3739:1.0 3755:0.2 3998:1.0 4132:0.5 4375:0.5 4497:2.0 4821:1.0 5642:1.0 7929:1.0 17 22:0.1111111111111111 24:1.0 32:0.5 46:0.03333333333333333 65:0.1 78:0.25 175:0.6666666666666666 303:1.0 529:1.5 531:1.0 1147:1.0 1730:1.0 2781:1.0 2982:1.0 3128:0.5 3531:0.2 3616:1.0 3651:0.5 3722:1.0 3759:1.0 4132:0.5 4223:1.0 4595:1.0 5237:1.0 5930:1.0 6052:1.0 6144:1.0 7663:1.0 17 18:0.14285714285714285 22:0.1111111111111111 32:0.5 44:2.0 65:0.1 178:1.0 338:0.5 400:0.25 529:0.5 2869:1.0 2942:1.0 3021:1.0 3566:0.2 3648:0.3333333333333333 3655:1.0 3656:1.0 3681:1.0 3843:1.0 3882:1.0 4061:1.0 4500:0.5 5206:1.0 5591:1.0 6029:1.0 6451:1.0 17 22:0.3333333333333333 102:1.0 124:0.18181818181818182 1494:1.0 1722:0.3333333333333333 3531:0.4 3566:0.2 3648:1.0 3681:1.5 3763:1.0 3783:1.0 3874:0.5 3893:0.5 4061:1.0 4108:1.0 4198:1.0 4495:1.0 4878:1.0 4976:1.0 5108:1.0 5601:1.0 5716:1.0 6502:1.0 6922:1.0 17 22:0.1111111111111111 34:1.0 44:1.0 114:1.0 120:0.5 122:1.0 158:0.5 336:1.0 373:1.0 658:0.25 672:1.0 777:1.0 796:1.0 1138:0.5 1829:1.0 2113:1.0 2182:1.0 3523:1.0 3531:0.2 3532:0.5 3533:1.0 3534:0.5 3612:1.0 5577:1.0 5601:1.0 17 22:0.1111111111111111 124:0.18181818181818182 1751:1.0 3531:0.2 3882:1.0 3944:1.0 5083:1.0 6530:1.0 7834:1.0 17 18:0.14285714285714285 22:0.1111111111111111 32:0.5 34:1.0 46:0.03333333333333333 65:0.1 120:0.5 139:0.16666666666666666 149:1.0 247:0.5 270:0.2 296:0.25 335:0.25 658:0.25 692:1.0 877:1.0 941:1.0 3407:1.0 3523:1.0 3531:0.2 4488:1.0 4654:1.0 7164:1.0 7802:1.0 17 146:1.0 242:0.05714285714285714 307:0.2 335:0.25 1167:1.0 1849:1.0 2844:1.0 3128:0.5 3566:0.2 3616:1.0 3635:0.5 3755:0.2 4442:1.0 5891:1.0 17 230:1.0 247:0.5 1397:1.0 2880:1.0 3524:1.0 3542:1.0 3586:1.0 3635:1.0 3648:0.3333333333333333 3705:1.0 3712:0.5 3848:1.0 4091:1.0 4132:0.5 5930:1.0 5931:1.0 5932:1.0 5971:1.0 7006:1.0 17 3:1.0 65:0.1 143:1.0 149:1.0 242:0.05714285714285714 335:0.5 520:0.5 1370:0.5 3554:0.3333333333333333 3616:1.0 3681:0.5 3755:0.2 3796:0.25 4015:1.0 4091:1.0 4375:0.5 6493:1.0 6682:1.0 17 3:1.0 4:0.07692307692307693 13:0.3333333333333333 65:0.1 382:0.25 895:1.0 1722:0.3333333333333333 2211:1.0 3518:0.5 3531:0.6 3616:1.0 3635:0.5 3681:0.5 3685:0.5 3705:1.0 3786:0.3333333333333333 4170:1.0 4258:1.0 4393:1.0 4442:1.0 4443:1.0 4709:1.0 4781:1.0 4824:1.0 4949:1.0 5745:1.0 5790:1.0 6537:1.0 17 13:0.6666666666666666 22:0.1111111111111111 32:1.0 45:0.3333333333333333 49:0.16666666666666666 78:0.25 139:0.16666666666666666 221:0.5 290:0.5 338:0.5 362:0.14285714285714285 400:0.5 568:1.0 669:0.16666666666666666 919:0.3333333333333333 1206:1.0 1494:1.0 3522:1.0 3531:0.2 3848:1.0 3908:1.0 4015:1.0 4061:1.0 4091:1.0 4367:1.0 4415:1.0 4442:1.0 5891:1.0 6474:1.0 6475:1.0 6476:1.0 7030:0.5 7644:1.0 7802:1.0 17 13:0.3333333333333333 164:0.16666666666666666 171:1.0 520:0.5 556:0.5 928:1.0 1409:1.0 1785:1.0 2397:0.25 3531:0.2 3542:1.0 3554:0.3333333333333333 3566:0.2 4261:1.0 4309:1.0 4770:1.0 5107:1.0 17 34:1.0 45:0.3333333333333333 160:0.3333333333333333 171:1.0 399:0.3333333333333333 400:1.0 549:0.125 637:1.0 669:0.16666666666666666 1729:1.0 1957:2.0 2258:1.0 2397:0.25 3513:0.3333333333333333 3515:1.0 3516:1.0 3520:0.5 3566:0.2 3572:1.0 3573:2.0 3648:0.3333333333333333 3770:1.0 3874:0.5 3897:1.0 5510:1.0 7891:1.0 17 124:0.09090909090909091 139:0.16666666666666666 334:0.5 430:1.0 735:1.0 1815:1.0 3531:0.2 3542:1.0 3635:0.5 3651:0.5 3685:0.5 3687:0.5 3753:1.0 3808:1.0 3964:1.0 4693:1.0 6845:1.0 17 32:0.5 44:2.0 45:0.16666666666666666 158:0.5 334:0.5 335:0.25 399:0.3333333333333333 520:0.5 1829:1.0 2937:1.0 3531:0.2 3542:1.0 3635:0.5 3759:1.0 3995:0.5 4011:1.0 5577:1.0 6047:1.0 6091:1.0 6816:1.0 17 22:0.2222222222222222 102:1.0 247:0.5 382:0.375 919:0.3333333333333333 1729:1.0 3523:2.0 3531:0.2 3545:0.25 3551:1.0 3566:0.4 3635:1.0 3637:1.0 3648:0.3333333333333333 3767:0.5 3777:0.5 3783:1.0 3800:1.0 3874:0.5 3882:1.0 3968:0.5 4002:1.0 4231:0.5 4323:1.0 4764:1.0 4892:1.0 4947:1.0 5388:1.0 5559:1.0 6816:1.0 7934:1.0 17 13:0.6666666666666666 18:0.42857142857142855 22:0.2222222222222222 32:0.5 44:1.0 64:0.125 73:2.0 120:0.5 221:0.5 290:0.5 335:0.25 338:0.5 400:0.25 489:0.5 529:0.5 637:1.0 656:1.0 669:0.16666666666666666 670:1.0 877:1.0 909:1.0 1006:1.0 1021:1.0 1129:1.0 1213:0.5 1438:1.0 1545:1.0 1731:1.0 2182:1.0 4070:1.0 4235:1.0 5384:1.0 6379:1.0 6523:1.0 7437:1.0 17 22:0.1111111111111111 32:0.5 44:3.0 65:0.2 68:0.3333333333333333 143:1.0 271:1.0 1138:0.5 1173:0.5 1729:2.0 1763:1.0 1813:1.0 3531:0.4 3542:1.0 3566:0.2 3635:0.5 3777:0.5 3960:1.0 4091:1.0 4500:0.5 4592:1.0 4698:1.0 4994:1.0 5109:1.0 7384:1.0 7385:1.0 17 22:0.2222222222222222 30:2.0 44:1.0 45:0.16666666666666666 46:0.03333333333333333 65:0.1 117:1.0 430:1.0 919:0.3333333333333333 2314:1.0 2809:0.5 3429:1.0 3531:0.2 3725:1.0 3755:0.4 4642:1.0 4665:1.0 5287:1.0 5891:1.0 5992:1.0 7682:1.0 17 224:1.0 382:0.125 919:0.3333333333333333 1722:0.3333333333333333 1729:2.0 3128:0.5 3531:0.2 3544:0.5 3586:1.0 3616:3.0 3635:1.0 3687:0.5 3725:2.0 3773:1.0 3893:0.5 3961:0.5 4091:1.0 4253:1.0 4376:1.0 4896:1.0 6143:1.0 7419:1.0 17 3:2.0 10:1.0 18:0.14285714285714285 22:0.2222222222222222 32:1.0 64:0.125 65:0.1 242:0.02857142857142857 290:0.5 335:0.25 363:0.3333333333333333 387:0.5 520:0.5 1828:1.0 2253:1.0 2956:1.0 3748:1.0 5581:1.0 5727:1.0 17 18:0.14285714285714285 22:0.3333333333333333 32:0.5 44:1.0 48:0.09090909090909091 102:1.0 124:0.09090909090909091 270:0.2 520:0.5 1149:1.0 1815:1.0 2397:0.25 3566:0.2 3648:0.3333333333333333 3685:1.0 3755:0.4 3848:1.0 4091:1.0 4287:1.0 4400:1.0 5168:1.0 5216:1.0 5231:1.0 6307:1.0 17 22:0.4444444444444444 382:0.125 399:0.3333333333333333 919:0.3333333333333333 1729:1.0 2397:0.25 3531:0.6 3544:0.5 3551:1.0 3552:2.0 3555:1.0 3567:1.0 3613:1.0 3616:2.0 3635:1.5 3722:1.0 3724:1.0 3755:0.4 3786:0.3333333333333333 3805:1.0 3950:1.0 4005:1.0 4011:1.0 4107:1.0 4170:1.0 4260:1.0 4366:1.0 4393:1.0 4485:1.0 4564:1.0 5158:1.0 5270:0.5 6043:1.0 6948:1.0 6960:1.0 7231:1.0 17 13:0.3333333333333333 22:0.1111111111111111 32:0.5 34:1.0 44:1.0 65:0.1 116:1.0 175:0.3333333333333333 335:0.25 338:1.0 492:1.0 519:1.0 529:0.5 691:1.0 1215:1.0 2720:1.0 3002:1.0 3520:0.5 3531:0.4 3545:0.25 3566:0.2 3648:0.3333333333333333 3662:0.5 3681:0.5 3913:2.0 3960:1.0 4169:1.0 6143:1.0 6612:1.0 6978:1.0 17 18:0.14285714285714285 22:0.2222222222222222 32:0.5 36:1.0 48:0.18181818181818182 65:0.2 78:0.25 102:1.0 271:1.0 290:0.5 338:0.5 855:1.0 1722:0.3333333333333333 1729:4.0 2300:1.0 3518:0.5 3531:0.2 3534:0.5 3542:1.0 3544:0.5 3949:0.3333333333333333 3960:1.0 4188:1.0 4260:1.0 4921:1.0 5270:0.5 5666:1.0 5754:1.0 6312:0.5 6747:2.0 17 18:0.14285714285714285 22:0.1111111111111111 32:0.5 34:2.0 72:1.0 73:1.0 242:0.02857142857142857 335:0.25 670:1.0 726:1.0 1075:1.0 1086:1.0 3518:0.5 3520:0.5 3531:0.2 3554:0.3333333333333333 3586:1.0 3635:0.5 3793:1.0 3907:1.0 4060:0.5 4096:1.0 4115:1.0 4235:1.0 4500:0.5 4769:1.0 4878:1.0 6188:1.0 7441:1.0 7739:1.0 17 124:0.18181818181818182 160:0.6666666666666666 3531:0.4 3594:2.0 3645:1.0 3651:1.0 3786:0.3333333333333333 4271:1.0 4333:2.0 4458:1.0 6816:1.0 17 4:0.07692307692307693 13:0.3333333333333333 18:0.14285714285714285 22:0.2222222222222222 44:1.0 46:0.03333333333333333 65:0.2 78:0.25 89:1.0 124:0.09090909090909091 247:0.5 283:0.2 335:0.25 362:0.14285714285714285 919:0.3333333333333333 1255:0.3333333333333333 1494:1.0 1518:1.0 1729:2.0 2792:1.0 3531:0.4 3545:0.5 3616:1.0 3635:1.0 3651:0.5 3680:0.5 3685:0.5 3725:1.0 3749:1.0 3783:1.0 4002:1.0 4011:1.0 4054:0.5 4131:1.0 4196:1.0 4427:1.0 4601:1.0 4668:1.0 4725:1.0 4773:1.0 4774:1.0 4775:1.0 4776:1.0 4777:1.0 4778:1.0 4779:1.0 4780:1.0 4851:1.0 6101:1.0 6249:1.0 6463:1.0 7607:1.0 7915:1.0 17 18:0.14285714285714285 32:0.5 72:1.0 128:0.3333333333333333 338:0.5 400:0.25 549:0.125 1680:0.5 3815:1.0 4091:1.0 4138:2.0 6343:1.0 7663:1.0 17 32:1.0 34:1.0 46:0.03333333333333333 135:1.0 307:0.2 549:0.125 1192:1.0 1306:1.0 1729:1.0 3531:0.2 3545:0.25 3749:1.0 3783:1.0 4260:1.0 4497:1.0 4956:1.0 5582:1.0 5619:1.0 17 24:1.0 102:1.0 124:0.2727272727272727 1722:0.6666666666666666 3523:1.0 3531:0.6 3544:0.5 3566:0.2 3619:1.0 3648:0.3333333333333333 3651:0.5 3776:1.0 3786:0.3333333333333333 3862:0.5 3913:1.0 3914:1.0 3948:1.0 4085:0.5 4135:0.5 4197:1.0 4223:1.0 4261:1.0 4485:1.0 4534:1.0 4849:1.0 5510:1.0 5551:1.0 6011:1.0 6065:1.0 6848:1.0 6849:1.0 7231:1.0 17 18:0.14285714285714285 44:2.0 64:0.125 65:0.2 78:0.25 221:0.5 249:0.2 271:1.0 335:0.25 1109:1.0 2942:1.0 3508:1.0 3593:1.0 3648:0.3333333333333333 4054:1.0 4310:1.0 4427:1.0 4647:1.0 4987:1.0 6556:1.0 7231:1.0 17 4:0.07692307692307693 18:0.14285714285714285 22:0.1111111111111111 32:0.5 46:0.03333333333333333 114:1.0 240:0.5 529:0.5 549:0.125 586:1.0 1506:1.0 1660:1.0 1729:1.0 2117:1.0 2479:1.0 3542:1.0 3544:0.5 6542:1.0 17 3:1.0 22:0.1111111111111111 44:1.0 335:0.5 520:0.5 624:1.0 634:1.0 1437:0.5 1729:1.0 2397:0.25 3516:1.0 3523:1.0 3531:0.6 3542:1.0 3544:0.5 3545:0.5 3566:0.4 3635:1.0 3638:1.0 3669:1.0 3843:1.0 4004:1.0 4011:1.0 4244:1.0 4505:1.0 4533:1.0 4717:1.0 5005:1.0 6259:1.0 6816:1.0 17 4:0.07692307692307693 18:0.5714285714285714 30:1.0 78:0.25 136:0.3333333333333333 311:1.0 338:0.5 785:1.0 814:1.0 1922:1.0 1936:1.0 3067:1.0 3226:1.0 3542:1.0 3681:0.5 3722:1.0 4015:1.0 4087:1.0 5258:1.0 5259:1.0 6916:1.0 17 12:0.5 73:1.0 283:0.4 1729:1.0 2397:0.25 3531:0.2 3566:0.4 3635:0.5 3690:0.5 3776:1.0 3785:0.5 3848:1.0 3874:0.5 3882:1.0 4009:1.0 4054:0.5 4060:0.5 4338:1.0 4488:1.0 4559:1.0 5510:1.0 5848:1.0 6925:1.0 7591:1.0 7656:1.0 17 18:0.14285714285714285 45:0.16666666666666666 65:0.1 78:0.25 122:1.0 124:0.09090909090909091 160:0.3333333333333333 234:0.5 362:0.14285714285714285 382:0.125 1255:0.3333333333333333 1621:1.0 1957:1.0 2116:1.0 2897:1.0 3554:0.3333333333333333 3635:0.5 3725:1.0 4135:0.5 4323:1.0 4476:1.0 6101:1.0 7209:1.0 17 3:1.0 4:0.07692307692307693 13:0.3333333333333333 65:0.1 166:1.0 241:1.0 296:0.25 391:1.0 623:1.0 726:1.0 1138:0.5 1795:0.5 2226:1.0 3566:0.2 3648:0.3333333333333333 3991:1.0 4274:1.0 5119:1.0 17 4:0.07692307692307693 18:0.42857142857142855 30:1.0 34:1.0 46:0.1 59:1.0 65:0.1 70:1.0 124:0.09090909090909091 158:0.5 206:1.0 249:0.2 373:2.0 483:0.5 638:0.5 786:1.0 814:1.0 1086:0.5 1141:1.0 1533:1.0 2126:1.0 2317:1.0 2397:0.25 2578:1.0 2956:1.0 3513:0.3333333333333333 3516:1.0 3531:0.2 3566:0.2 3767:0.5 3970:1.0 4060:0.5 4367:1.0 5258:1.0 5987:1.0 5988:1.0 6588:1.0 6919:1.0 7073:1.0 7840:1.0 17 3:1.0 4:0.07692307692307693 46:0.03333333333333333 65:0.3 242:0.02857142857142857 249:0.2 270:0.2 283:0.2 335:0.25 399:0.3333333333333333 445:1.0 895:2.0 925:1.0 1030:1.0 2953:1.0 3404:1.0 3648:0.3333333333333333 3770:1.0 6625:1.0 7538:1.0 7718:1.0 17 3:1.0 4:0.07692307692307693 22:0.1111111111111111 124:0.18181818181818182 146:1.0 2721:1.0 3542:1.0 3554:0.3333333333333333 3758:1.0 3893:0.5 4002:1.0 4132:0.5 5142:1.0 7193:1.0 7357:1.0 7678:1.0 17 22:0.1111111111111111 24:1.0 382:0.125 919:0.3333333333333333 1370:0.5 3516:1.0 3523:1.0 3544:0.5 3545:0.5 3554:0.3333333333333333 3566:0.4 3594:1.0 3616:1.0 3669:1.0 3670:1.0 3703:0.3333333333333333 3704:1.0 3705:1.0 3706:1.0 3755:0.2 3767:0.5 3805:1.0 3954:1.0 4132:0.5 4393:1.0 5160:0.5 5161:1.0 5173:1.0 6703:1.0 17 3:1.0 4:0.07692307692307693 34:1.0 44:1.0 68:0.3333333333333333 234:0.5 242:0.02857142857142857 335:0.5 377:1.0 549:0.125 777:1.0 984:1.0 1190:2.0 1729:2.0 2448:1.0 2934:1.0 3531:0.2 3545:0.5 3586:1.0 3591:0.5 3706:1.0 3720:0.25 3721:1.0 3722:1.0 3723:1.0 4111:1.0 6893:1.0 8007:1.0 17 22:0.2222222222222222 32:1.0 78:0.25 124:0.09090909090909091 171:1.0 247:0.5 338:0.5 400:0.25 529:0.5 549:0.25 928:1.0 1397:1.0 2397:0.25 2942:1.0 2982:1.0 3516:1.0 3524:1.0 3531:0.2 3566:0.2 3568:1.0 3569:1.0 3586:1.0 3669:1.0 3670:1.0 3681:1.0 3738:0.25 3739:1.0 3862:0.5 4500:0.5 5131:1.0 5437:1.0 5953:1.0 6876:1.0 6994:1.0 17 4:0.07692307692307693 32:0.5 242:0.02857142857142857 290:0.5 382:0.125 658:0.25 895:1.0 919:0.3333333333333333 1660:1.0 3554:0.3333333333333333 3566:0.2 3584:1.0 3595:1.0 3619:1.0 3635:0.5 3755:0.2 3900:1.0 4105:1.0 4485:1.0 4717:1.0 4982:1.0 5009:1.0 5134:1.0 5339:1.0 7387:1.0 17 46:0.03333333333333333 164:0.16666666666666666 814:1.0 1017:0.5 1729:1.0 2312:1.0 2524:1.0 3566:0.2 3573:1.0 3648:0.3333333333333333 3681:0.5 3882:1.0 4798:1.0 4878:1.0 5437:1.0 17 1729:1.0 3531:0.4 3648:0.3333333333333333 3681:0.5 3761:1.0 3859:0.5 3900:1.0 3964:1.0 3998:1.0 4059:1.0 4243:1.0 4260:1.0 4351:0.5 4375:0.5 4406:0.5 4821:1.0 5339:1.0 5785:1.0 6272:1.0 7827:1.0 17 124:0.18181818181818182 382:0.25 3515:1.0 3531:0.2 3542:1.0 3552:1.0 3566:0.2 3591:0.5 3634:1.0 3635:1.0 3777:0.5 3786:0.3333333333333333 3854:1.0 3888:0.5 3894:1.0 4002:1.0 7496:1.0
e383ef092d0efe46329a6bbed0bb2dfe381bd6cd
449d555969bfd7befe906877abab098c6e63a0e8
/1928/CH1/EX1.15.4/ex1_15_4.sce
bba427ed8bcf215302769280d2788cc103e4f985
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,131
sce
ex1_15_4.sce
//Chapter-1,Example1_15_4,pg 1-70 V=50*10^3 //operating voltage of x-ray M=74.6 //molecular weight p=1.99*10^3 //density n=4 //no of atoms per unit cell(for FCC structure) h=6.63*10^-34 //plank's constant c=3*10^8 //velocity e=1.6*10^-19 //charge on electron N=6.023*10^26 //Avogadro's number //step 1:clculating shortest wavelength l=h*c/(e*V) printf(" 1)shortest wavelength=") disp(l) printf("m") //step:2 calculating distance(d) //now a^3*p=n*M/N therefore, a=(n*M/(N*p))^(1/3) //since KCl is ionic crystal herefore, d=a/2 //step 3: calculaing glancing angle //using Bragg's law //n*l=2*d*sin(t) //assume sin(t)=a, wavelength is minimum i.e l and n=1 n=1 a=n*l/(2*d) t=asind(a) //taking sin inverese in degree printf(" 2) glancing angle=") disp(t) printf("degree")
d06f62b384e7a5026cb2f1830edb7755d3fdc388
3b9a879e67cbab4a5a4a5081e2e9c38b3e27a8cc
/Área 2/Aula 10 - Quadratura Gaussiana/Quadratura Assimétrica.sce
11b20be1b8068eebc8ee2c23cce25e4e3ba862c7
[ "MIT" ]
permissive
JPedroSilveira/numerical-calculus-with-scilab
32e04e9b1234a0a82275f86aa2d6416198fa6c81
190bc816dfaa73ec2efe289c34baf21191944a53
refs/heads/master
2023-05-10T22:39:02.550321
2021-05-11T17:17:09
2021-05-11T17:17:09
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,687
sce
Quadratura Assimétrica.sce
function S=assimet(f,a,b,n) //Solução para [1 1 1; 0 1/2 1; 0 1/4 1] * [w1 w2 w3] = h * [1 1/2 1/3] //Calcular baseado nos pontos 1 1/2 e 1/4 //Fazendo A = [1 1 1; 1 1/2 1/4; 1 1/4 1/16] baseado nos pontos e na matriz: //[1 1 ... 1; t1 t2 ... tn; t1^2 t2^2 ... tn^2; ...] * [w1 w2 w3 ...] = [b - a; (b^2 - a^2)/2; (b^3 - a^3)/3 ...] //w = inv(A)*b //Para este caso com estes pontos o resultado é //0.22222222... = 2/9 //0.33333333... = 3/9 //0.44444444... = 4/9 h = (b-a)/n //Número de intervalor x = linspace(a,b,n+1) S=0 for i=1:n w1 = 2/9; x1 = x(i) + h // 1 h é multiplicado pelos pontos dados w2 = 3/9; x2 = x(i)+ h/2 // 1/2 w3 = 4/9; x3 = x(i) + h/4 // 1/4 //Soma dos w`s será 1 A = (w1*f(x1)+w2*f(x2)+w3*f(x3))*h S = S + A end endfunction function y=f(x) y = x.^5 endfunction function Erro=erro(f,a,b,n) Exato = assimet(f,0,1,n*8) Erro1 = Exato - assimet(f,0,1,n) Erro2 = Exato - assimet(f,0,1,n*2) Erro = Erro1/Erro2 //Isto com f => y = x.^5 resultará em 8, ou seja ao multiplicar por 2 //o valor o erro é diminuido por 2^3 gerando um erro de ordem 3 endfunction //Exemplo: Sejam os nós x [0 0.6 1]. Encontre os pesos Ai da quadratura I = A1*f(x1) + A2 * f(x2) + A3 * f(x3) tal que o erro seja o menor possível //para integrar f no intervalo 0 a 1 //Primeiro calcula A que neste caso com os valores 0, 0.6 e 1 será "A = [1 1 1; 0 0.6 1; 0 (0.6)^2 1]" //Depois de calcula b, que no intervalo 0 a 1 será "b = [1 - 0; (1^2 - 0)/2; (1^3 - 0)/3]" //Por fim calcula-se inv(A)*b e se obterá o vetor w
52f04e9103f01a9d17cd3e838940e146a3ede80b
449d555969bfd7befe906877abab098c6e63a0e8
/462/CH1/EX1.3/ex_1_3.sce
6bb0265d461730d68a0eddfb12bb438f093d72cc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
476
sce
ex_1_3.sce
//example 1.3// clc //clears the screen// clear //clears already existing variables// disp('Let the temperature and pressure be converted into electrical signals and T=1 if temperature exceeds the specified limit and P=1 if pressure exceeds the specified limit. If T=1 or P=1 or both T and P are 1 then the alarm is required to be activated, i.e., the signal applied to the alarm Y=1. This operation can be expressed as an or operation.') disp('Y=T or P') disp('Y=T+P')
890d1416fa9751650d3788f89a6f61481ab827e2
f04d3d47f893de08cd99a31b4870112915b80d5b
/Datasets/satimage/data.tst
aaf392e49e1410bddfbd6fbfec4601cccba691a6
[]
no_license
MesumRaza/MyWorkInPython
f5364b8514943e44c7200123653da9f4551251b1
bd8c9b3ca2fb02ae6d2b626054fa3cd32c28b330
refs/heads/master
2021-08-19T21:46:41.412995
2017-11-27T13:37:52
2017-11-27T13:37:52
111,728,604
0
0
null
null
null
null
UTF-8
Scilab
false
false
246,745
tst
data.tst
80 102 102 79 76 102 102 79 76 102 106 83 76 99 108 85 76 103 118 88 80 107 118 88 79 107 109 87 79 107 109 87 79 107 113 87 class2 76 102 102 79 76 102 106 83 76 102 106 87 76 103 118 88 80 107 118 88 80 112 118 88 79 107 109 87 79 107 113 87 79 103 104 83 class2 80 98 106 79 76 94 102 76 76 94 102 76 80 107 113 85 80 95 100 78 80 95 100 78 79 103 104 79 79 95 100 79 79 95 96 75 class3 76 94 102 76 76 94 102 76 76 94 102 76 80 95 100 78 80 95 100 78 80 91 100 78 79 95 100 79 79 95 96 75 79 95 100 75 class3 76 94 102 76 76 94 102 76 76 89 94 76 80 95 100 78 80 91 100 78 80 91 100 74 79 95 96 75 79 95 100 75 75 95 100 79 class3 76 94 102 76 76 89 94 76 76 89 98 76 80 91 100 78 80 91 100 74 80 95 104 74 79 95 100 75 75 95 100 79 75 91 96 75 class3 76 89 94 76 76 89 98 76 76 94 98 76 80 91 100 74 80 95 104 74 76 91 104 74 75 95 100 79 75 91 96 75 75 91 96 71 class3 76 94 90 76 76 89 94 76 72 94 90 72 76 91 100 74 76 87 100 74 76 87 91 74 79 87 93 67 75 87 96 71 75 91 96 71 class3 76 89 94 76 72 94 90 72 72 89 94 76 76 87 100 74 76 87 91 74 76 87 91 67 75 87 96 71 75 91 96 71 75 87 93 67 class3 72 89 98 76 76 94 98 76 72 85 90 72 71 87 87 70 71 83 87 67 68 83 87 67 71 87 89 67 71 79 81 62 71 79 85 62 class3 72 85 90 72 68 85 94 72 68 89 90 68 68 83 87 67 68 83 87 67 68 79 87 63 71 79 85 62 67 75 85 62 71 75 85 62 class3 68 85 94 72 68 89 90 68 68 85 90 72 68 83 87 67 68 79 87 63 68 79 87 67 67 75 85 62 71 75 85 62 67 79 81 62 class3 68 89 90 68 68 85 90 72 68 85 86 68 68 79 87 63 68 79 87 67 71 83 87 67 71 75 85 62 67 79 81 62 71 79 85 62 class3 68 85 90 72 68 85 86 68 68 89 86 72 68 79 87 67 71 83 87 67 68 83 87 67 67 79 81 62 71 79 85 62 71 75 81 67 class3 80 98 106 83 80 94 102 83 80 102 111 87 76 95 104 81 84 103 104 85 84 103 108 85 75 83 96 83 79 99 104 83 84 99 113 87 class2 80 102 111 87 84 106 115 91 88 106 115 91 84 103 108 85 88 107 118 88 88 107 118 92 84 99 113 87 84 99 109 87 84 103 109 83 class2 84 106 115 91 88 106 115 91 88 106 115 87 88 107 118 88 88 107 118 92 88 107 118 92 84 99 109 87 84 103 109 83 88 107 113 87 class2 88 106 115 91 88 106 115 87 88 111 111 91 88 107 118 92 88 107 118 92 88 112 113 88 84 103 109 83 88 107 113 87 88 107 104 87 class2 88 111 111 91 88 106 115 87 84 98 111 83 88 112 113 88 88 103 113 88 88 103 108 85 88 107 104 87 88 107 109 83 84 99 109 83 class2 88 106 115 87 84 98 111 83 80 89 115 87 88 103 113 88 88 103 108 85 84 99 108 85 88 107 109 83 84 99 109 83 88 103 109 87 class2 92 115 111 91 92 115 115 94 92 111 120 91 88 103 113 88 88 112 118 92 88 112 122 88 84 103 113 87 88 111 113 92 93 107 109 92 class2 84 106 111 87 84 106 111 87 84 106 111 87 92 112 128 92 92 112 118 96 92 112 113 88 93 111 113 92 93 116 118 92 88 111 118 92 class2 84 106 111 87 84 106 111 87 84 98 111 87 92 112 118 96 92 112 113 88 88 103 113 85 93 116 118 92 88 111 118 92 93 107 113 87 class2 84 98 111 87 84 98 106 91 84 102 111 87 88 103 113 85 97 107 113 88 92 112 118 92 93 107 113 87 93 107 113 87 93 107 109 87 class2 88 106 106 87 84 106 111 83 88 98 106 83 88 103 108 85 88 103 113 92 88 107 113 88 93 103 109 87 88 107 109 87 88 111 113 92 class2 88 111 111 87 88 111 106 87 88 106 111 87 84 103 108 85 88 95 104 81 84 99 108 85 88 95 100 79 88 95 100 83 88 103 100 83 class2 84 106 106 87 84 102 111 83 84 98 98 83 84 99 104 85 84 99 104 81 84 99 100 81 88 99 100 79 84 99 104 79 79 95 100 79 class2 68 77 94 79 60 62 78 76 64 73 90 76 60 54 87 74 56 61 87 78 71 79 100 81 75 79 96 79 75 83 96 79 84 99 104 83 class4 84 98 102 79 80 94 102 76 76 94 94 72 80 91 100 78 76 83 91 74 71 79 87 70 75 87 93 71 75 83 85 71 71 75 85 67 class5 76 94 94 72 72 81 82 68 68 73 78 65 71 79 87 70 71 79 79 67 71 79 83 67 71 75 85 67 71 79 77 67 71 75 81 67 class5 64 69 78 65 68 77 86 65 64 66 86 68 71 79 79 63 68 75 79 67 60 68 79 67 67 72 81 67 67 64 81 67 59 61 77 71 class5 53 49 71 65 57 49 74 65 53 49 74 68 53 54 71 63 56 54 71 63 56 51 67 63 55 51 74 67 55 48 70 62 51 48 70 67 class4 101 132 139 103 101 126 133 103 92 112 118 85 102 137 139 108 102 126 134 104 88 121 128 100 90 109 112 89 90 113 117 92 90 113 122 96 class2 76 99 104 81 76 99 108 85 76 103 118 88 84 103 104 79 79 107 109 87 79 107 109 87 82 100 108 81 82 100 104 78 78 100 104 81 class2 80 107 113 85 80 95 100 78 80 95 100 78 79 103 104 79 79 95 100 79 79 95 96 75 82 100 108 85 78 96 96 78 78 91 92 70 class3 80 95 100 78 80 95 100 78 80 91 100 78 79 95 100 79 79 95 96 75 79 95 100 75 78 96 96 78 78 91 92 70 74 91 92 70 class3 80 95 100 78 80 91 100 78 80 91 100 74 79 95 96 75 79 95 100 75 75 95 100 79 78 91 92 70 74 91 92 70 78 91 96 74 class3 80 91 100 74 80 95 104 74 76 91 104 74 75 95 100 79 75 91 96 75 75 91 96 71 78 91 96 74 74 87 92 70 74 87 88 70 class3 76 87 100 74 76 87 91 74 76 87 91 67 75 87 96 71 75 91 96 71 75 87 93 67 74 87 92 70 78 87 88 66 78 87 92 66 class3 76 87 91 67 71 87 87 70 71 83 87 67 75 87 93 67 71 87 89 67 71 79 81 62 78 87 92 66 74 83 92 66 70 83 92 66 class3 71 87 87 70 71 83 87 67 68 83 87 67 71 87 89 67 71 79 81 62 71 79 85 62 74 83 92 66 70 83 92 66 70 83 88 70 class3 68 83 87 67 71 83 87 70 76 91 91 74 71 75 81 62 67 75 85 71 67 75 96 79 59 60 96 81 56 49 104 100 49 40 112 114 class3 84 103 108 85 88 107 118 88 88 107 118 92 84 99 113 87 84 99 109 87 84 103 109 83 63 67 104 85 82 96 104 78 86 100 108 85 class2 88 107 118 88 88 107 118 92 88 107 118 92 84 99 109 87 84 103 109 83 88 107 113 87 82 96 104 78 86 100 108 85 90 104 112 85 class2 88 107 118 92 88 112 113 88 88 103 113 88 88 107 113 87 88 107 104 87 88 107 109 83 90 104 112 85 86 104 108 85 86 104 108 85 class2 88 103 113 88 88 103 108 85 84 99 108 85 88 107 109 83 84 99 109 83 88 103 109 87 86 104 108 85 86 104 108 85 86 100 108 85 class2 88 103 108 85 84 99 108 85 88 99 104 85 84 99 109 83 88 103 109 87 88 103 109 87 86 104 108 85 86 100 108 85 90 104 112 89 class2 92 112 118 92 92 107 113 92 92 107 118 88 88 107 109 92 88 107 109 87 88 107 109 87 90 104 112 89 86 104 108 89 90 104 108 92 class2 88 107 113 88 88 103 108 81 88 103 108 88 88 111 113 92 88 107 113 87 88 107 113 87 86 104 108 85 90 109 112 92 86 109 108 89 class2 88 103 108 88 84 99 104 85 84 103 108 81 88 107 113 87 88 107 109 83 84 99 104 87 86 109 108 89 86 109 112 89 90 109 112 92 class2 84 103 108 85 88 95 104 81 84 99 108 85 88 95 100 79 88 95 100 83 88 103 100 83 86 104 104 85 82 100 100 85 82 100 104 78 class2 88 99 104 85 84 99 104 85 84 99 104 81 84 103 104 83 88 99 100 79 84 99 104 79 82 96 100 81 82 100 108 81 82 96 104 78 class2 84 99 104 81 84 99 100 81 80 91 96 78 84 99 104 79 79 95 100 79 79 99 100 83 82 96 104 78 82 96 100 81 86 96 104 81 class2 71 75 87 78 60 54 87 74 56 61 87 78 79 91 104 79 75 79 96 79 75 83 96 79 82 100 104 78 82 96 104 81 82 96 104 85 class4 60 54 87 74 56 61 87 78 71 79 100 81 75 79 96 79 75 83 96 79 84 99 104 83 82 96 104 81 82 96 104 85 82 100 104 85 class4 56 61 87 78 71 79 100 81 80 95 100 85 75 83 96 79 84 99 104 83 84 99 104 83 82 96 104 85 82 100 104 85 86 100 108 85 class2 80 95 100 85 80 91 100 81 80 91 100 78 84 99 104 83 79 95 100 75 75 87 93 71 86 100 108 85 86 100 112 85 86 100 112 85 class5 76 83 91 74 71 79 87 70 71 79 79 67 75 83 85 71 71 75 85 67 71 79 77 67 82 96 100 81 78 83 84 70 74 75 88 66 class5 71 79 79 67 71 79 83 67 71 79 79 63 71 79 77 67 71 75 81 67 67 72 81 67 74 75 88 66 70 79 88 66 70 75 76 66 class5 88 121 128 100 84 107 113 87 84 99 104 79 90 113 122 96 95 128 127 103 95 123 127 100 87 103 114 90 92 122 135 109 96 127 130 105 class2 79 107 109 87 79 107 113 87 79 103 104 83 78 100 104 81 82 104 104 85 82 104 108 85 79 99 105 83 83 103 114 86 79 99 105 83 class2 79 107 113 87 79 103 104 83 79 103 104 79 82 104 104 85 82 104 108 85 82 100 108 85 83 103 114 86 79 99 105 83 79 95 101 79 class2 79 95 96 75 79 95 100 75 75 95 100 79 78 91 92 70 74 91 92 70 78 91 96 74 83 91 97 72 83 91 97 72 79 91 93 72 class3 75 91 96 71 79 87 93 71 79 87 93 67 74 87 88 70 78 87 84 70 74 87 88 66 79 88 93 68 79 91 93 72 75 91 93 68 class3 79 87 93 67 75 87 96 71 75 91 96 71 74 87 88 66 74 87 92 70 78 87 88 66 75 91 93 68 79 88 93 68 75 84 90 68 class3 75 91 96 71 75 87 93 67 71 87 89 67 78 87 88 66 78 87 92 66 74 83 92 66 75 84 90 68 75 84 93 72 75 88 90 68 class3 71 79 81 62 71 79 85 62 67 75 85 62 70 83 92 66 70 83 88 70 70 83 84 66 75 91 97 75 75 88 93 72 67 81 86 64 class3 71 79 85 62 67 75 85 62 71 75 85 62 70 83 88 70 70 83 84 66 66 79 84 63 75 88 93 72 67 81 86 64 63 77 86 72 class3 67 75 85 62 71 75 85 62 67 79 81 62 70 83 84 66 66 79 84 63 66 79 88 66 67 81 86 64 63 77 86 72 63 73 97 83 class3 71 75 85 62 67 79 81 62 71 79 85 62 66 79 84 63 66 79 88 66 70 79 88 66 63 77 86 72 63 73 97 83 59 60 110 98 class3 67 79 81 62 71 79 85 62 71 75 81 67 66 79 88 66 70 79 88 66 66 71 88 70 63 73 97 83 59 60 110 98 49 45 119 116 class3 67 75 96 79 75 83 96 83 79 99 104 83 49 40 112 114 46 34 122 125 49 40 117 114 46 34 119 131 42 34 119 131 46 34 119 131 class1 88 107 104 87 88 107 109 83 84 99 109 83 86 104 108 85 86 104 108 85 86 104 108 85 87 95 105 83 83 99 110 83 87 99 105 86 class2 88 103 109 87 93 103 109 87 88 107 109 87 86 104 112 85 86 104 104 81 86 96 104 81 92 103 110 83 92 103 110 86 87 99 105 83 class2 88 103 100 83 88 103 109 83 88 103 113 83 82 100 104 78 86 100 96 81 82 100 104 81 83 99 101 79 79 95 101 79 79 95 105 79 class2 84 103 104 83 88 99 100 79 84 99 104 79 82 96 100 81 82 100 108 81 82 96 104 78 87 95 97 83 83 99 101 79 83 99 105 79 class2 84 99 104 79 79 95 100 79 79 99 100 83 82 96 104 78 82 96 100 81 86 96 104 81 83 99 105 79 83 95 101 79 79 99 97 79 class2 79 91 104 79 75 79 96 79 75 83 96 79 82 100 104 78 82 96 104 81 82 96 104 85 83 95 105 83 83 95 101 79 83 99 105 83 class2 75 83 96 79 84 99 104 83 84 99 104 83 82 96 104 85 82 100 104 85 86 100 108 85 83 99 105 83 87 99 105 83 83 103 105 86 class2 71 75 85 67 71 79 77 67 71 75 81 67 78 83 84 70 74 75 88 66 70 79 88 66 79 88 97 72 71 81 86 68 71 77 82 64 class5 71 79 77 67 71 75 81 67 67 72 81 67 74 75 88 66 70 79 88 66 70 75 76 66 71 81 86 68 71 77 82 64 71 81 82 68 class5 95 128 127 103 95 123 127 100 82 100 108 85 92 122 135 109 96 127 130 105 92 108 114 86 93 125 135 104 93 130 129 101 89 120 129 97 class2 78 100 104 81 82 104 104 85 82 104 108 85 79 99 105 83 83 103 114 86 79 99 105 83 78 102 110 83 82 102 105 83 82 102 101 80 class2 82 104 104 85 82 104 108 85 82 100 108 85 83 103 114 86 79 99 105 83 79 95 101 79 82 102 105 83 82 102 101 80 78 102 105 80 class2 82 104 108 85 82 100 108 85 78 96 96 78 79 99 105 83 79 95 101 79 83 95 93 75 82 102 101 80 78 102 105 80 78 97 101 80 class3 82 100 108 85 78 96 96 78 78 91 92 70 79 95 101 79 83 95 93 75 83 91 97 72 78 102 105 80 78 97 101 80 82 92 93 76 class3 74 87 88 70 78 87 84 70 74 87 88 66 79 88 93 68 79 91 93 72 75 91 93 68 82 88 97 73 78 92 97 73 78 88 93 73 class3 74 83 92 66 70 83 92 66 70 83 88 70 75 88 90 68 75 91 97 75 75 88 93 72 74 84 89 69 74 88 93 76 67 75 93 80 class3 70 83 88 70 70 83 84 66 66 79 84 63 75 88 93 72 67 81 86 64 63 77 86 72 67 75 93 80 57 63 97 90 53 49 110 108 class3 66 79 84 63 66 79 88 66 70 79 88 66 63 77 86 72 63 73 97 83 59 60 110 98 53 49 110 108 47 40 119 122 42 37 119 129 class1 66 79 88 66 70 79 88 66 66 71 88 70 63 73 97 83 59 60 110 98 49 45 119 116 47 40 119 122 42 37 119 129 44 34 124 136 class1 56 49 104 100 49 40 112 114 46 34 122 125 46 32 119 131 46 34 119 131 42 34 119 131 42 31 124 133 44 34 119 133 44 37 119 136 class1 82 96 104 78 86 100 108 85 90 104 112 85 71 77 97 75 83 99 105 83 87 103 105 86 53 56 105 97 74 92 101 76 82 102 110 83 class2 86 100 108 85 90 104 112 89 90 104 112 85 87 103 105 86 87 108 114 86 92 108 114 90 93 106 114 90 93 115 114 90 93 115 114 90 class2 90 104 112 85 90 109 112 85 90 109 117 89 92 108 114 90 96 108 114 90 96 112 114 90 93 115 114 90 93 111 119 90 89 111 114 87 class2 90 109 117 89 90 109 112 89 90 109 112 89 96 112 114 90 92 108 110 90 87 108 110 90 89 111 114 87 89 106 114 87 89 106 110 87 class2 90 104 112 85 90 104 112 89 86 104 108 89 92 108 114 86 92 108 110 86 92 108 110 86 93 106 114 87 89 111 110 87 85 106 110 87 class2 90 109 108 89 86 104 112 85 86 104 104 81 87 103 105 83 92 103 110 83 92 103 110 86 89 106 114 90 93 106 105 90 89 111 110 83 class2 86 104 112 85 86 104 104 81 86 96 104 81 92 103 110 83 92 103 110 86 87 99 105 83 93 106 105 90 89 111 110 83 89 111 114 87 class2 90 109 112 92 86 109 108 89 86 109 112 89 92 108 110 90 92 108 110 90 87 108 110 86 89 106 110 87 89 106 114 90 89 102 114 90 class2 86 104 108 89 86 104 104 85 82 100 100 85 87 103 110 86 83 103 105 86 83 103 110 83 89 106 114 90 85 102 110 87 85 106 114 87 class2 82 100 100 85 82 100 104 78 86 100 96 81 83 103 110 83 83 99 101 79 79 95 101 79 85 106 114 87 89 97 105 83 85 102 105 87 class2 82 100 104 78 86 100 96 81 82 100 104 81 83 99 101 79 79 95 101 79 79 95 105 79 89 97 105 83 85 102 105 87 85 102 101 80 class2 82 100 104 81 82 100 104 81 86 100 104 81 79 95 105 79 83 99 105 83 87 99 105 83 85 102 101 80 85 97 101 83 85 102 110 83 class2 82 96 104 78 82 96 100 81 86 96 104 81 83 99 105 79 83 95 101 79 79 99 97 79 89 106 105 87 85 102 110 83 85 102 105 83 class2 86 96 104 81 82 96 100 81 82 100 104 78 79 99 97 79 79 99 105 83 83 95 105 83 85 102 105 83 85 102 101 83 82 102 105 83 class2 82 96 104 85 82 100 104 85 86 100 108 85 83 99 105 83 87 99 105 83 83 103 105 86 89 106 114 87 89 106 114 83 82 102 105 83 class2 86 100 108 85 86 100 112 85 86 100 112 85 83 103 105 86 83 103 105 79 83 103 105 83 82 102 105 83 78 102 105 83 82 106 105 87 class2 70 75 76 66 66 71 80 66 66 63 76 66 71 81 82 68 71 77 86 68 67 73 75 60 70 88 89 69 74 84 85 69 74 79 85 69 class5 79 99 105 83 83 103 114 86 79 99 105 83 78 102 110 83 82 102 105 83 82 102 101 80 80 98 102 79 80 98 102 79 80 98 98 79 class2 83 95 93 75 83 91 97 72 83 91 97 72 78 97 101 80 82 92 93 76 78 92 93 73 84 94 98 76 80 94 94 72 80 89 94 72 class3 79 88 93 68 79 91 93 72 75 91 93 68 82 88 97 73 78 92 97 73 78 88 93 73 80 94 94 72 80 89 90 68 80 89 90 72 class3 67 81 86 64 63 77 86 72 63 73 97 83 57 63 97 90 53 49 110 108 47 40 119 122 47 34 125 135 47 34 131 135 47 34 125 135 class1 63 73 97 83 59 60 110 98 49 45 119 116 47 40 119 122 42 37 119 129 44 34 124 136 47 34 125 135 44 34 131 131 44 34 120 135 class1 46 34 119 131 42 34 119 131 46 34 119 131 44 34 119 133 44 37 119 136 44 34 124 136 44 31 125 135 47 31 131 139 41 31 131 135 class1 46 34 119 131 52 48 110 105 71 77 97 75 44 34 124 136 44 34 119 133 53 56 105 97 41 31 131 135 41 31 131 139 44 40 120 120 class1 83 99 105 83 87 103 105 86 87 95 105 83 74 92 101 76 82 102 110 83 85 102 110 83 64 73 106 83 84 102 106 83 88 111 111 91 class2 96 112 114 90 92 108 110 90 87 108 110 90 89 111 114 87 89 106 114 87 89 106 110 87 84 102 106 83 88 106 106 87 88 111 115 83 class2 92 108 114 86 92 108 110 86 92 108 110 86 93 106 114 87 89 111 110 87 85 106 110 87 88 106 111 87 84 102 115 87 84 106 115 91 class2 92 108 110 86 92 103 105 86 87 103 105 83 85 106 110 87 89 106 114 90 89 106 114 90 84 106 115 91 88 111 115 87 88 106 111 87 class2 87 103 105 86 92 108 110 90 92 108 110 90 89 111 110 87 89 106 110 87 89 106 114 90 88 106 115 91 88 115 115 91 92 115 120 94 class2 87 108 119 90 87 103 110 86 83 103 105 86 89 106 114 87 89 106 114 90 85 102 110 87 84 106 111 87 88 106 115 87 92 106 111 87 class2 83 103 105 86 83 103 110 83 83 99 101 79 85 102 110 87 85 106 114 87 89 97 105 83 92 106 111 87 92 106 111 87 88 102 106 83 class2 87 99 105 83 87 95 97 83 83 99 101 79 85 102 110 83 85 111 114 87 89 106 114 87 84 102 115 91 88 111 120 94 88 111 120 91 class2 83 99 101 79 83 99 105 79 83 95 101 79 89 106 114 87 89 106 105 87 85 102 110 83 88 111 120 91 88 106 111 91 88 106 106 87 class2 83 99 105 79 83 95 101 79 79 99 97 79 89 106 105 87 85 102 110 83 85 102 105 83 88 106 111 91 88 106 106 87 88 106 111 87 class2 79 99 105 83 83 95 105 83 83 95 101 79 85 102 101 83 82 102 105 83 82 102 114 87 88 111 111 87 88 102 111 83 84 102 106 83 class2 83 95 101 79 83 99 105 83 87 99 105 83 82 102 114 87 89 106 114 87 89 106 114 83 84 102 106 83 88 102 115 87 84 102 102 83 class2 87 103 105 83 79 88 97 72 71 81 86 68 82 97 105 87 82 97 105 80 78 88 89 73 80 98 98 79 76 94 94 76 76 89 86 72 class2 79 88 97 72 71 81 86 68 71 77 82 64 82 97 105 80 78 88 89 73 70 79 82 65 76 94 94 76 76 89 86 72 76 85 86 72 class5 67 73 75 60 63 66 68 57 63 63 72 60 74 79 85 69 67 79 82 65 70 79 82 62 72 85 86 72 72 81 82 68 72 81 86 68 class5 78 106 110 87 78 102 110 83 78 102 110 83 84 111 111 91 76 102 102 79 80 98 102 79 84 107 113 85 84 99 104 78 80 95 100 78 class2 78 88 97 73 82 88 97 73 78 92 97 73 80 94 94 72 80 94 94 72 80 89 90 68 80 91 91 70 71 91 96 74 76 91 96 70 class3 78 88 93 73 78 84 93 69 74 84 89 69 72 85 94 72 72 81 94 72 64 69 102 83 56 54 108 103 56 54 104 92 53 45 113 114 class3 78 84 93 69 74 84 89 69 74 88 93 76 72 81 94 72 64 69 102 83 57 49 111 109 56 54 104 92 53 45 113 114 46 34 133 146 class1 67 75 93 80 57 63 97 90 53 49 110 108 50 40 125 128 47 34 125 135 47 34 131 135 46 31 139 143 46 31 133 146 43 31 139 146 class1 57 63 97 90 53 49 110 108 47 40 119 122 47 34 125 135 47 34 131 135 47 34 125 135 46 31 133 146 43 31 139 146 43 31 139 143 class1 44 34 124 136 44 34 124 136 42 31 124 133 44 34 120 135 44 31 120 139 44 34 131 135 46 31 133 139 43 31 133 139 43 31 128 135 class1 42 31 124 133 44 34 119 133 44 37 119 136 44 34 131 135 44 31 125 135 47 31 131 139 43 31 128 135 43 31 128 135 46 34 133 132 class1 44 34 119 133 53 56 105 97 74 92 101 76 41 31 131 139 44 40 120 120 64 73 106 83 43 31 128 132 46 34 118 132 50 51 113 103 class1 82 97 105 83 93 106 114 90 93 115 114 90 84 111 106 87 84 106 111 87 92 106 111 87 88 107 108 88 88 107 113 85 88 107 113 88 class2 89 106 110 87 89 102 110 87 93 106 114 90 88 111 115 83 92 111 115 91 88 111 111 87 88 107 113 88 88 107 113 88 88 107 118 88 class2 93 106 114 87 89 111 110 87 85 106 110 87 88 106 111 87 84 102 115 87 84 106 115 91 88 107 108 85 88 107 104 88 88 107 108 85 class2 93 106 105 90 89 111 110 83 89 111 114 87 88 111 111 87 92 111 115 91 92 111 115 91 84 107 113 88 88 107 118 92 88 107 113 88 class2 89 111 114 87 89 111 110 87 89 106 110 87 92 111 115 91 88 106 115 91 88 115 115 91 88 107 113 88 88 107 113 88 88 107 108 88 class2 89 111 110 87 89 106 110 87 89 106 114 90 88 106 115 91 88 115 115 91 92 115 120 94 88 107 113 88 88 107 108 88 88 107 113 92 class2 85 102 110 87 85 106 114 87 89 97 105 83 92 106 111 87 92 106 111 87 88 102 106 83 84 103 113 88 88 107 113 85 88 103 108 85 class2 85 102 101 80 85 97 101 83 85 102 110 83 88 106 115 87 84 111 115 87 84 102 115 91 88 103 113 92 84 107 113 88 88 112 113 92 class2 85 111 114 87 89 106 114 87 89 106 105 87 88 111 120 94 88 111 120 91 88 106 111 91 92 112 118 92 88 103 113 85 88 103 108 85 class2 78 102 105 83 82 106 105 87 82 97 105 87 84 98 106 83 80 98 102 83 80 98 98 79 76 87 96 70 68 79 83 67 68 79 83 67 class2 82 97 105 87 82 97 105 80 78 88 89 73 80 98 98 79 76 94 94 76 76 89 86 72 68 79 83 67 71 75 87 67 71 75 79 63 class5 82 97 105 80 78 88 89 73 70 79 82 65 76 94 94 76 76 89 86 72 76 85 86 72 71 75 87 67 71 75 79 63 68 79 83 67 class5 74 84 85 69 74 79 85 69 67 79 82 65 68 85 86 68 72 85 86 72 72 81 82 68 71 83 91 74 76 87 91 70 76 83 87 67 class5 67 75 74 62 60 63 74 58 57 56 74 62 72 77 78 61 64 73 74 57 68 77 78 65 71 79 79 67 71 83 79 63 68 75 79 63 class5 88 125 136 105 88 125 125 102 84 111 111 91 92 116 122 99 88 116 122 96 84 107 113 85 88 111 113 92 88 103 109 87 84 107 113 87 class2 88 125 125 102 84 111 111 91 76 102 102 79 88 116 122 96 84 107 113 85 84 99 104 78 88 103 109 87 84 107 113 87 84 103 104 83 class2 80 98 102 79 80 98 102 79 80 98 98 79 80 95 100 78 80 99 104 78 80 95 100 78 84 99 100 79 79 99 104 79 84 95 104 79 class2 80 98 102 76 84 94 98 76 80 94 94 72 80 99 100 74 84 95 100 78 80 99 100 74 84 99 100 75 79 99 100 75 84 91 100 75 class3 84 94 98 76 80 94 94 72 80 89 94 72 84 95 100 78 80 99 100 74 80 95 100 74 79 99 100 75 84 91 100 75 84 95 100 79 class2 80 89 98 72 80 94 94 72 80 94 94 72 84 95 100 74 80 91 91 70 71 91 96 74 79 95 100 75 71 83 96 75 67 72 96 83 class3 80 89 90 72 80 85 90 68 72 85 94 72 71 79 96 74 68 68 100 88 56 54 108 103 51 45 113 116 44 34 128 129 44 34 123 129 class1 47 34 125 135 44 34 131 131 44 34 120 135 43 31 139 143 43 31 133 139 46 31 133 139 44 29 139 150 44 27 134 146 44 29 134 141 class1 44 34 131 131 44 34 120 135 44 31 120 139 43 31 133 139 46 31 133 139 43 31 133 139 44 27 134 146 44 29 134 141 44 32 134 137 class1 84 111 106 87 84 106 111 87 92 106 111 87 88 107 108 88 88 107 113 85 88 107 113 88 88 107 113 87 88 107 109 87 88 107 109 87 class2 84 106 111 87 92 106 111 87 92 111 111 87 88 107 113 85 88 107 113 88 92 107 113 88 88 107 109 87 88 107 109 87 88 107 104 83 class2 88 106 111 87 88 111 111 87 92 111 115 91 84 103 108 85 84 107 113 88 88 107 118 92 84 103 104 83 88 107 113 87 93 111 109 92 class2 92 115 120 94 88 111 111 91 84 106 111 87 88 107 113 92 92 112 122 92 88 112 113 85 84 107 109 92 88 107 113 92 84 103 109 87 class2 88 111 111 91 84 106 111 87 88 106 115 87 92 112 122 92 88 112 113 85 84 99 108 85 88 107 113 92 84 103 109 87 84 103 109 83 class2 84 111 115 87 84 102 115 91 88 111 120 94 84 107 113 88 88 112 113 92 92 112 118 92 84 107 118 92 88 111 123 96 93 116 118 96 class2 88 111 120 91 88 106 111 91 88 106 106 87 88 103 113 85 88 103 108 85 88 107 113 88 88 111 113 87 88 107 109 83 84 103 109 83 class2 88 106 106 87 88 106 111 87 88 111 111 87 88 107 113 88 88 107 118 88 88 103 118 85 84 103 109 83 88 103 113 87 88 107 109 87 class2 84 102 106 83 88 102 115 87 84 102 102 83 84 103 108 85 88 103 113 85 84 99 104 81 88 103 109 87 84 99 104 79 79 91 93 71 class2 76 89 86 72 76 85 86 72 76 85 86 72 71 75 79 63 68 79 83 67 71 83 87 70 75 79 81 67 71 79 85 62 79 87 89 71 class5 76 85 86 72 76 85 86 72 68 85 86 68 68 79 83 67 71 83 87 70 71 83 91 74 71 79 85 62 79 87 89 71 75 87 89 71 class5 68 85 86 68 72 85 86 72 72 81 82 68 71 83 91 74 76 87 91 70 76 83 87 67 75 87 89 71 75 83 89 67 75 83 85 67 class5 72 85 86 72 72 81 82 68 72 81 86 68 76 87 91 70 76 83 87 67 71 79 83 67 75 83 89 67 75 83 85 67 75 83 89 71 class5 72 81 82 68 72 81 86 68 72 77 78 61 76 83 87 67 71 79 83 67 71 79 79 67 75 83 85 67 75 83 89 71 75 79 89 71 class5 72 77 78 61 64 73 74 57 68 77 78 65 71 79 79 67 71 83 79 63 68 75 79 63 75 79 89 71 71 79 85 67 75 83 89 67 class5 88 121 128 99 92 116 122 99 88 116 122 96 88 111 118 92 88 111 113 92 88 103 109 87 90 109 117 89 86 109 112 92 90 113 122 92 class2 80 95 100 78 80 99 104 78 80 95 100 78 84 99 100 79 79 99 104 79 84 95 104 79 86 109 104 85 82 100 104 81 82 100 100 81 class2 80 95 100 74 84 95 100 74 80 91 91 70 84 95 100 79 79 95 100 75 71 83 96 75 82 91 100 74 74 79 96 81 66 63 100 92 class3 80 91 91 70 71 91 96 74 76 91 96 70 71 83 96 75 67 72 96 83 59 58 104 100 66 63 100 92 56 53 108 107 49 37 122 125 class1 56 54 104 92 53 45 113 114 46 34 133 146 48 37 118 121 51 45 113 104 44 37 128 137 46 29 127 136 46 32 122 136 52 40 112 114 class1 46 31 139 143 46 31 133 146 43 31 139 146 41 32 139 150 44 32 139 154 44 29 145 150 52 37 117 122 46 29 138 151 49 32 138 151 class1 46 31 133 146 43 31 139 146 43 31 139 143 44 32 139 154 44 29 145 150 44 29 139 150 46 29 138 151 49 32 138 151 46 29 138 151 class1 46 31 133 139 43 31 133 139 43 31 128 135 44 29 134 141 44 32 134 137 48 34 128 129 46 29 138 147 46 29 133 140 46 32 127 133 class1 43 31 133 139 43 31 128 135 43 31 128 135 44 32 134 137 48 34 128 129 48 37 123 125 46 29 133 140 46 32 127 133 46 32 122 125 class1 43 31 128 135 43 31 128 135 46 34 133 132 48 34 128 129 48 37 123 125 44 34 118 129 46 32 127 133 46 32 122 125 46 34 122 125 class1 46 34 133 132 43 31 128 135 43 31 128 132 44 34 118 129 44 37 123 129 48 34 123 133 46 34 122 125 46 32 117 129 49 34 117 129 class1 71 87 104 81 88 103 108 88 88 103 108 88 59 58 104 92 79 91 100 79 88 107 109 87 49 37 117 125 49 43 117 111 66 71 100 85 class1 88 107 113 88 88 107 118 88 88 107 113 88 93 107 109 87 88 107 113 87 93 111 109 87 90 109 112 89 90 109 112 89 86 109 112 89 class2 88 107 108 85 88 107 104 88 88 107 108 85 93 111 109 87 93 107 113 92 88 103 113 87 90 113 112 92 90 113 112 89 90 109 112 89 class2 88 107 104 88 88 107 108 85 88 107 113 85 93 107 113 92 88 103 113 87 84 103 104 83 90 113 112 89 90 109 112 89 86 109 108 89 class2 88 107 113 85 84 103 108 85 84 107 113 88 84 103 104 83 84 103 104 83 88 107 113 87 86 109 108 89 86 104 108 85 86 104 108 89 class2 84 103 108 85 84 107 113 88 88 107 118 92 84 103 104 83 88 107 113 87 93 111 109 92 86 104 108 85 86 104 108 89 86 104 112 85 class2 84 107 113 88 88 107 118 92 88 107 113 88 88 107 113 87 93 111 109 92 88 107 109 87 86 104 108 89 86 104 112 85 86 104 108 89 class2 88 107 113 92 92 112 122 92 88 112 113 85 84 107 109 92 88 107 113 92 84 103 109 87 82 104 112 89 86 109 112 92 86 109 112 89 class2 92 112 122 92 88 112 113 85 84 99 108 85 88 107 113 92 84 103 109 87 84 103 109 83 86 109 112 92 86 109 112 89 82 100 104 85 class2 84 99 108 85 84 103 113 88 88 107 113 85 84 103 109 83 88 103 109 87 88 103 109 83 82 100 104 85 82 100 104 85 90 104 108 85 class2 88 103 113 92 84 107 113 88 88 112 113 92 84 111 113 92 84 107 118 92 88 111 123 96 90 109 117 92 90 113 112 96 90 113 122 96 class2 88 103 113 85 88 103 108 85 88 107 113 88 88 111 113 87 88 107 109 83 84 103 109 83 95 113 112 92 86 104 108 85 86 100 108 81 class2 88 103 118 85 88 99 108 85 84 103 108 85 88 107 109 87 88 103 113 87 88 103 109 87 90 109 108 85 82 96 100 78 70 79 84 66 class2 88 103 113 85 84 99 104 81 80 95 91 74 84 99 104 79 79 91 93 71 71 79 77 62 70 75 76 63 70 79 80 66 66 75 80 66 class5 84 99 104 81 80 95 91 74 76 87 96 70 79 91 93 71 71 79 77 62 75 83 85 67 70 79 80 66 66 75 80 66 66 71 80 63 class5 71 75 79 63 68 79 83 67 71 83 87 70 75 79 81 67 71 79 85 62 79 87 89 71 74 79 80 66 70 75 76 63 70 75 76 63 class5 71 79 79 67 71 83 79 63 68 75 79 63 75 79 89 71 71 79 85 67 75 83 89 67 74 83 84 70 74 83 80 70 78 87 92 74 class5 93 126 134 108 88 126 134 104 88 121 128 104 90 123 133 103 86 128 133 107 90 123 127 103 87 122 130 101 92 127 135 105 92 122 130 105 class2 93 116 123 96 88 111 118 92 88 111 113 92 90 118 122 96 90 109 117 89 86 109 112 92 96 117 119 94 92 112 119 90 92 112 114 94 class2 84 103 104 83 84 99 100 79 79 99 104 79 86 113 112 89 86 109 104 85 82 100 104 81 96 112 119 94 92 108 114 90 87 103 105 83 class2 79 99 104 79 84 95 104 79 84 99 100 75 82 100 104 81 82 100 100 81 82 100 96 78 87 103 105 83 83 99 101 79 83 95 101 79 class2 79 99 100 75 84 91 100 75 84 95 100 79 78 96 100 81 82 96 96 78 82 91 100 74 79 91 105 79 71 73 101 90 63 57 105 101 class3 71 83 96 75 67 72 96 83 59 58 104 100 66 63 100 92 56 53 108 107 49 37 122 125 49 37 130 131 46 34 130 135 42 32 130 135 class1 44 34 123 129 48 37 118 121 51 45 113 104 43 32 122 133 46 29 127 136 46 32 122 136 42 32 130 135 46 32 124 139 42 34 124 135 class1 44 32 134 137 48 34 128 129 48 37 123 125 46 29 133 140 46 32 127 133 46 32 122 125 46 30 124 135 46 32 124 131 46 34 130 131 class1 44 34 118 129 44 37 123 129 48 34 123 133 46 34 122 125 46 32 117 129 49 34 117 129 49 34 124 131 46 34 119 124 46 34 119 131 class1 48 32 128 129 48 37 123 125 59 58 104 92 46 34 122 129 46 34 122 125 49 37 117 125 46 37 130 127 46 34 124 124 46 37 119 127 class1 48 37 123 125 59 58 104 92 79 91 100 79 46 34 122 125 49 37 117 125 49 43 117 111 46 34 124 124 46 37 119 127 46 37 119 124 class1 88 107 113 87 88 107 109 87 88 107 109 87 82 96 104 81 90 104 108 85 86 104 108 85 75 84 101 79 87 99 105 83 87 103 110 86 class2 88 107 109 87 88 107 104 83 88 107 109 87 86 104 108 85 86 104 104 85 86 104 112 85 87 103 110 86 87 103 110 86 87 103 110 86 class2 88 103 109 87 88 111 109 87 93 107 113 92 86 104 108 89 86 109 104 85 86 109 112 85 87 103 105 86 87 103 114 86 87 108 119 90 class2 88 111 109 87 93 107 113 92 93 107 109 87 86 109 104 85 86 109 112 85 90 109 112 89 87 103 114 86 87 108 119 90 92 112 119 90 class2 88 107 113 87 93 111 109 87 93 111 109 87 90 109 112 89 86 109 112 89 90 113 112 92 92 108 110 90 92 112 119 90 92 108 119 94 class2 93 111 109 87 93 107 113 92 88 103 113 87 90 113 112 92 90 113 112 89 90 109 112 89 92 108 119 94 92 108 110 86 87 103 105 86 class2 84 107 109 92 88 107 109 87 84 107 109 92 86 104 108 89 86 109 112 89 82 104 112 89 83 103 110 90 87 108 110 90 83 103 105 90 class2 88 107 113 92 84 103 109 87 84 103 109 83 86 109 112 92 86 109 112 89 82 100 104 85 87 108 110 90 92 108 114 86 87 103 105 86 class2 88 103 109 87 88 103 109 83 88 107 109 87 82 100 104 85 90 104 108 85 90 104 112 85 87 103 105 83 92 112 114 90 96 112 114 94 class2 88 103 109 83 88 107 109 87 88 111 109 92 90 104 108 85 90 104 112 85 90 109 117 85 92 112 114 90 96 112 114 94 92 117 124 98 class2 84 111 113 92 84 107 118 92 88 111 123 96 90 109 117 92 90 113 112 96 90 113 122 96 92 117 119 94 92 108 114 94 92 108 114 90 class2 93 116 118 96 88 111 113 87 88 107 109 83 95 113 117 96 95 113 112 92 86 104 108 85 92 103 110 86 92 99 101 83 83 95 101 79 class2 84 103 109 83 88 103 113 87 88 107 109 87 86 100 108 81 86 104 108 85 90 109 108 85 75 91 93 72 75 84 93 72 75 84 90 68 class2 88 103 109 87 84 99 104 79 79 91 93 71 70 79 84 66 70 75 76 63 70 79 80 66 63 66 72 60 67 70 72 60 67 73 75 60 class5 75 83 85 67 75 79 89 71 75 79 85 71 66 71 80 63 70 79 84 66 70 79 80 70 71 73 79 64 67 73 72 60 63 70 75 57 class5 79 87 89 71 75 87 89 71 75 83 89 67 70 75 76 63 70 79 84 66 74 87 92 74 71 77 75 64 71 77 82 68 71 88 93 72 class5 75 87 89 71 75 83 89 67 75 83 85 67 70 79 84 66 74 87 92 74 74 83 84 66 71 77 82 68 71 88 93 72 75 84 90 68 class5 75 83 85 67 75 83 89 71 75 79 89 71 74 83 84 66 74 83 88 70 74 83 84 70 75 84 90 68 67 73 75 60 63 66 72 57 class5 90 113 122 92 90 109 112 92 86 113 112 89 92 112 119 94 92 117 119 98 96 112 119 94 89 115 114 94 93 115 124 97 93 115 119 94 class2 90 109 112 92 86 113 112 89 86 109 104 85 92 117 119 98 96 112 119 94 92 108 114 90 93 115 124 97 93 115 119 94 97 111 119 94 class2 82 100 100 81 82 100 96 78 78 96 100 81 83 99 101 79 83 95 101 79 79 91 105 79 89 106 101 80 74 75 97 83 53 49 114 108 class3 82 91 100 74 74 79 96 81 66 63 100 92 63 57 105 101 52 42 119 124 49 37 130 131 44 31 124 133 44 31 129 140 44 34 129 143 class1 74 79 96 81 66 63 100 92 56 53 108 107 52 42 119 124 49 37 130 131 46 34 130 135 44 31 129 140 44 34 129 143 44 31 129 140 class1 49 37 122 125 43 32 127 133 43 34 127 133 42 32 130 135 42 32 124 139 42 32 135 139 44 34 124 133 44 34 124 136 44 34 129 140 class1 43 32 127 133 43 34 127 133 43 32 122 133 42 32 124 139 42 32 135 139 42 32 130 135 44 34 124 136 44 34 129 140 44 31 124 140 class1 52 37 117 122 46 29 138 151 49 32 138 151 52 45 110 109 46 40 119 139 42 30 135 157 44 37 119 126 50 43 110 115 44 34 129 143 class1 46 29 133 151 46 29 138 147 46 29 133 140 42 30 135 150 42 30 130 142 46 30 124 135 44 29 124 143 44 34 129 143 44 34 124 143 class1 46 29 138 147 46 29 133 140 46 32 127 133 42 30 130 142 46 30 124 135 46 32 124 131 44 34 129 143 44 34 124 143 44 34 119 136 class1 46 32 127 133 46 32 122 125 46 34 122 125 46 32 124 131 46 34 130 131 49 34 124 131 44 34 119 136 42 34 119 129 44 34 114 129 class1 46 34 122 125 46 32 117 129 49 34 117 129 49 34 124 131 46 34 119 124 46 34 119 131 44 34 114 129 44 34 114 126 47 37 114 126 class1 46 34 122 129 46 34 122 125 49 37 117 125 46 37 130 127 46 34 124 124 46 37 119 127 47 34 119 126 47 34 114 126 47 34 114 122 class1 90 104 108 85 86 104 108 85 86 104 104 85 87 99 105 83 87 103 110 86 87 103 110 86 82 92 101 80 85 102 105 83 85 106 110 90 class2 86 104 108 85 86 104 104 85 86 104 112 85 87 103 110 86 87 103 110 86 87 103 110 86 85 102 105 83 85 106 110 90 89 106 114 90 class2 86 109 112 89 90 113 112 92 90 113 112 89 92 112 119 90 92 108 119 94 92 108 110 86 93 111 114 90 93 111 114 90 89 106 114 83 class2 86 109 112 89 82 104 112 89 86 109 112 92 87 108 110 90 83 103 105 90 87 108 110 90 89 111 110 90 85 106 110 87 89 111 114 94 class2 82 100 104 85 82 100 104 85 90 104 108 85 87 103 105 86 87 103 105 83 92 112 114 90 89 106 114 90 89 111 114 94 97 120 119 97 class2 90 109 117 85 90 109 117 92 90 113 112 96 92 117 124 98 92 117 119 94 92 108 114 94 89 111 114 94 89 111 110 90 85 97 105 80 class2 95 113 112 92 86 104 108 85 86 100 108 81 92 99 101 83 83 95 101 79 75 91 93 72 70 84 82 65 67 79 78 62 63 71 78 58 class5 86 100 108 81 86 104 108 85 90 109 108 85 75 91 93 72 75 84 93 72 75 84 90 68 63 71 78 58 67 71 78 58 67 75 82 62 class5 86 104 108 85 90 109 108 85 82 96 100 78 75 84 93 72 75 84 90 68 67 73 79 60 67 71 78 58 67 75 82 62 67 71 74 58 class5 90 109 108 85 82 96 100 78 70 79 84 66 75 84 90 68 67 73 79 60 63 66 72 60 67 75 82 62 67 71 74 58 63 67 70 55 class5 66 75 80 66 66 71 80 63 70 79 84 66 71 73 75 60 71 73 79 64 67 73 72 60 70 84 93 76 70 84 85 69 67 75 78 58 class5 74 79 80 66 70 75 76 63 70 75 76 63 71 77 82 64 67 77 79 64 71 77 75 64 70 79 82 62 78 84 89 73 74 88 89 69 class5 74 83 84 70 74 83 80 70 78 87 92 74 63 66 72 57 63 70 72 60 71 77 86 64 67 67 70 55 60 63 70 58 63 67 70 58 class5 92 117 119 98 96 112 119 94 92 108 114 90 93 115 124 97 93 115 119 94 97 111 119 94 88 111 115 91 92 111 115 91 88 111 111 87 class2 46 34 130 135 42 32 130 135 42 32 124 139 44 31 129 140 44 34 124 133 44 34 124 136 44 31 125 135 47 31 131 135 44 34 131 139 class1 42 32 124 139 42 32 135 139 42 32 130 135 44 34 124 136 44 34 129 140 44 31 124 140 44 34 131 139 47 34 136 139 47 31 125 139 class1 42 32 130 135 46 32 124 139 42 34 124 135 44 31 124 140 44 34 119 136 44 34 129 136 47 31 125 139 47 31 125 135 44 31 125 135 class1 75 84 101 79 87 99 105 83 87 103 110 86 57 60 105 94 82 92 101 80 85 102 105 83 50 40 111 109 64 69 102 79 80 98 102 79 class2 87 103 110 86 87 103 110 86 87 103 110 86 85 102 105 83 85 106 110 90 89 106 114 90 80 98 102 79 84 102 102 87 88 106 111 87 class2 87 103 105 86 87 103 114 86 87 108 119 90 89 106 110 90 89 111 110 87 93 106 114 87 88 106 111 87 88 102 106 87 88 102 111 83 class2 87 108 119 90 92 112 119 90 92 108 110 90 93 106 114 87 93 106 114 90 93 111 119 94 88 102 111 83 88 111 111 91 92 115 115 91 class2 92 112 119 90 92 108 119 94 92 108 110 86 93 111 114 90 93 111 114 90 89 106 114 83 88 111 115 91 92 106 115 87 88 111 111 91 class2 92 108 110 86 87 103 105 86 87 108 110 86 89 106 114 83 89 106 114 87 89 106 110 87 88 111 111 91 92 111 115 91 97 111 120 91 class2 83 103 105 83 83 99 110 86 87 103 105 86 89 106 114 87 89 106 105 87 85 106 110 87 88 111 115 87 88 111 115 87 88 111 115 87 class2 83 99 110 86 87 103 105 86 83 103 110 90 89 106 105 87 85 106 110 87 89 111 105 90 88 111 115 87 88 111 115 87 92 111 115 87 class2 87 103 105 86 83 103 110 90 87 108 110 90 85 106 110 87 89 111 105 90 89 111 110 90 88 111 115 87 92 111 115 87 88 106 111 87 class2 87 108 110 90 92 108 114 86 87 103 105 86 89 111 114 94 89 111 110 90 89 106 114 90 92 106 111 91 92 111 115 91 92 111 120 91 class2 96 112 114 94 92 117 124 98 92 117 119 94 93 115 114 90 89 111 114 94 89 111 110 90 92 106 111 87 80 98 102 76 76 85 90 68 class2 92 99 101 83 83 95 101 79 75 91 93 72 70 84 82 65 67 79 78 62 63 71 78 58 64 69 71 57 64 66 67 54 64 62 71 50 class4 67 70 72 60 67 73 75 60 71 73 75 60 67 71 70 58 67 75 82 69 70 84 93 76 64 69 74 61 68 81 86 72 72 81 90 76 class5 71 73 79 64 67 73 72 60 63 70 75 57 70 84 85 69 67 75 78 58 63 63 74 58 72 81 86 68 64 73 74 61 64 69 71 61 class5 67 73 72 60 63 70 75 57 71 77 82 64 67 75 78 58 63 63 74 58 67 71 74 65 64 73 74 61 64 69 71 61 68 73 82 65 class5 63 70 75 57 71 77 82 64 71 77 82 64 63 63 74 58 67 71 74 65 70 79 82 62 64 69 71 61 68 73 82 65 72 77 82 68 class5 63 66 72 57 63 70 72 60 71 77 86 64 67 67 70 55 60 63 70 58 63 67 70 58 68 69 74 57 64 66 67 54 64 66 71 57 class5 93 120 124 94 93 115 119 94 89 115 119 90 92 115 115 94 88 111 115 91 88 102 111 87 88 107 113 88 84 107 113 88 84 112 113 88 class2 89 115 114 94 93 115 124 97 93 115 119 94 84 106 111 91 88 111 115 91 92 111 115 91 88 107 113 88 92 112 113 88 92 112 118 88 class2 47 37 119 126 44 31 124 133 44 31 129 140 44 29 125 135 47 34 125 135 50 31 131 135 46 36 122 139 46 31 128 135 46 31 128 135 class1 44 31 129 140 44 34 124 133 44 34 124 136 44 31 125 135 47 31 131 135 44 34 131 139 46 31 139 143 43 31 133 143 43 29 133 143 class1 44 34 124 136 44 34 129 140 44 31 124 140 44 34 131 139 47 34 136 139 47 31 125 139 43 29 133 143 46 31 133 150 46 31 139 143 class1 44 34 119 136 44 34 129 136 44 31 124 136 47 31 125 135 44 31 125 135 44 31 125 135 50 31 133 135 50 31 128 132 46 34 128 135 class1 44 34 129 136 44 31 124 136 44 37 119 126 44 31 125 135 44 31 125 135 44 31 120 131 50 31 128 132 46 34 128 135 46 36 128 132 class1 44 34 129 143 42 29 135 150 44 29 124 143 50 46 111 116 44 31 131 142 44 29 136 146 53 45 108 103 50 36 118 128 43 31 139 143 class1 44 29 124 143 44 34 129 143 44 34 124 143 44 29 136 146 44 31 136 142 44 31 136 139 43 31 139 143 46 29 133 139 46 31 133 135 class1 44 34 114 129 44 34 114 126 47 37 114 126 44 31 120 128 44 34 115 124 47 34 115 120 46 34 122 125 46 36 122 121 46 36 118 125 class1 47 37 114 126 47 34 119 126 47 34 114 126 47 34 115 120 47 37 120 124 44 34 120 120 46 36 118 125 46 34 118 121 43 36 118 121 class1 47 34 114 126 47 34 114 122 47 37 114 126 44 34 120 120 47 37 120 124 44 37 120 124 43 36 118 121 46 36 118 128 46 34 122 125 class1 47 34 114 122 47 37 114 126 47 40 114 115 47 37 120 124 44 37 120 124 44 37 115 120 46 36 118 128 46 34 122 125 50 34 118 125 class1 47 40 114 115 57 60 105 94 82 92 101 80 44 37 115 120 50 40 111 109 64 69 102 79 50 34 118 125 50 36 118 128 53 51 113 103 class1 57 60 105 94 82 92 101 80 85 102 105 83 50 40 111 109 64 69 102 79 80 98 102 79 50 36 118 128 53 51 113 103 71 83 100 78 class1 89 106 114 90 89 106 110 90 89 111 110 87 88 106 111 87 88 106 111 87 88 102 106 87 84 103 113 88 88 107 118 88 88 107 108 88 class2 89 106 110 90 89 111 110 87 93 106 114 87 88 106 111 87 88 102 106 87 88 102 111 83 88 107 118 88 88 107 108 88 88 103 104 85 class2 93 106 114 87 93 106 114 90 93 111 119 94 88 102 111 83 88 111 111 91 92 115 115 91 88 103 104 85 88 103 113 85 88 107 108 88 class2 93 111 114 90 89 106 114 83 89 106 114 87 92 106 115 87 88 111 111 91 92 111 115 91 92 112 118 88 92 112 113 92 92 112 118 92 class2 89 106 114 90 89 106 114 87 89 106 105 87 92 111 111 87 88 111 115 87 88 111 115 87 92 107 118 88 88 112 118 88 88 107 113 85 class2 89 106 114 87 89 106 105 87 85 106 110 87 88 111 115 87 88 111 115 87 88 111 115 87 88 112 118 88 88 107 113 85 88 107 113 88 class2 89 106 105 87 85 106 110 87 89 111 105 90 88 111 115 87 88 111 115 87 92 111 115 87 88 107 113 85 88 107 113 88 92 103 113 88 class2 89 111 110 90 89 106 114 90 89 111 114 94 92 111 115 91 92 111 120 91 92 115 120 94 92 112 118 92 92 112 118 96 88 107 122 88 class2 93 115 114 90 89 111 114 94 89 111 110 90 92 106 111 87 80 98 102 76 76 85 90 68 80 87 91 67 68 71 75 59 60 57 60 45 class2 85 97 105 80 82 92 97 76 78 88 89 73 64 77 78 61 60 69 67 54 60 66 67 57 53 54 53 38 53 54 53 34 56 57 56 45 class4 67 79 78 62 63 71 78 58 67 71 78 58 64 66 67 54 64 62 71 50 60 62 67 50 60 57 67 49 56 54 67 49 56 54 67 52 class4 63 71 78 58 67 71 78 58 67 75 82 62 64 62 71 50 60 62 67 50 60 62 67 54 56 54 67 49 56 54 67 52 53 57 67 52 class4 67 71 74 58 63 67 70 55 67 71 70 58 64 69 74 61 64 66 67 54 64 69 74 61 60 64 75 63 64 68 79 59 64 68 71 56 class5 67 75 82 69 70 84 93 76 70 84 85 69 68 81 86 72 72 81 90 76 72 81 86 68 64 71 75 63 68 79 79 67 71 79 79 63 class5 70 84 93 76 70 84 85 69 67 75 78 58 72 81 90 76 72 81 86 68 64 73 74 61 68 79 79 67 71 79 79 63 71 79 79 67 class5 63 63 74 58 67 71 74 65 70 79 82 62 64 69 71 61 68 73 82 65 72 77 82 68 68 83 83 67 71 79 87 70 71 79 87 70 class5 88 125 125 102 92 120 120 98 97 115 120 94 92 116 122 92 92 116 118 92 88 107 113 88 93 116 118 96 93 111 118 92 88 111 113 92 class2 92 120 120 98 97 115 120 94 92 115 115 94 92 116 118 92 88 107 113 88 88 107 113 88 93 111 118 92 88 111 113 92 88 111 113 92 class2 88 102 111 87 84 106 111 91 88 111 115 91 84 112 113 88 88 107 113 88 92 112 113 88 84 111 118 92 93 111 113 92 93 111 113 92 class2 88 111 115 91 92 111 115 91 88 111 111 87 92 112 113 88 92 112 118 88 88 107 113 88 93 111 113 92 93 111 118 92 88 107 109 87 class2 92 111 115 91 88 111 111 87 92 106 115 91 92 112 118 88 88 107 113 88 88 103 108 85 93 111 118 92 88 107 109 87 88 95 104 83 class2 92 106 115 91 88 102 111 83 76 77 102 83 88 103 108 85 84 95 100 85 80 95 100 74 88 95 104 83 84 99 100 79 84 95 96 79 class3 88 102 111 83 76 77 102 83 53 40 115 116 84 95 100 85 80 95 100 74 64 64 104 96 84 99 100 79 84 95 96 79 71 83 93 79 class3 53 40 115 116 44 29 125 135 47 34 125 135 64 64 104 96 46 36 122 139 46 31 128 135 71 83 93 79 55 51 113 108 44 37 134 137 class1 47 31 125 135 44 31 125 135 47 31 131 135 46 31 133 143 46 31 139 143 43 31 133 143 44 34 139 146 44 29 134 146 44 34 139 146 class1 44 31 125 135 47 31 131 135 44 34 131 139 46 31 139 143 43 31 133 143 43 29 133 143 44 29 134 146 44 34 139 146 44 32 134 141 class1 47 31 131 135 44 34 131 139 47 34 136 139 43 31 133 143 43 29 133 143 46 31 133 150 44 34 139 146 44 32 134 141 48 32 134 141 class1 47 31 125 135 44 31 125 135 44 31 125 135 50 31 133 135 50 31 128 132 46 34 128 135 44 32 134 137 48 34 128 133 48 32 134 133 class1 50 46 111 116 44 31 131 142 44 29 136 146 53 45 108 103 50 36 118 128 43 31 139 143 48 40 118 112 51 45 104 100 48 37 123 129 class1 44 29 136 146 44 31 136 142 44 31 136 139 43 31 139 143 46 29 133 139 46 31 133 135 48 37 123 129 44 32 128 137 44 32 123 129 class1 44 31 136 142 44 31 136 139 44 31 131 135 46 29 133 139 46 31 133 135 46 31 122 132 44 32 128 137 44 32 123 129 44 34 128 129 class1 44 31 136 139 44 31 131 135 44 31 120 131 46 31 133 135 46 31 122 132 46 34 122 128 44 32 123 129 44 34 128 129 44 32 128 125 class1 44 31 131 135 44 31 120 131 44 31 120 128 46 31 122 132 46 34 122 128 46 34 122 125 44 34 128 129 44 32 128 125 48 29 123 125 class1 44 31 120 128 44 34 115 124 47 34 115 120 46 34 122 125 46 36 122 121 46 36 118 125 48 29 123 125 44 32 113 121 48 34 118 112 class1 44 34 120 120 47 37 120 124 44 37 120 124 43 36 118 121 46 36 118 128 46 34 122 125 48 40 113 112 48 37 113 116 48 34 123 125 class1 88 106 111 87 88 102 106 87 88 102 111 83 88 107 118 88 88 107 108 88 88 103 104 85 88 111 109 92 88 107 113 87 88 103 104 83 class2 92 106 115 87 88 111 111 91 92 111 115 91 92 112 118 88 92 112 113 92 92 112 118 92 88 111 118 87 88 111 118 96 93 111 118 96 class2 88 111 111 91 92 111 115 91 97 111 120 91 92 112 113 92 92 112 118 92 92 112 118 92 88 111 118 96 93 111 118 96 93 111 118 92 class2 92 111 115 91 97 111 120 91 92 111 111 87 92 112 118 92 92 112 118 92 92 107 118 88 93 111 118 96 93 111 118 92 93 111 118 92 class2 76 85 90 68 64 77 78 61 60 69 67 54 60 57 60 45 53 54 53 38 53 54 53 34 55 51 50 29 55 54 57 37 59 54 63 42 class4 68 81 86 72 72 81 90 76 72 81 86 68 64 71 75 63 68 79 79 67 71 79 79 63 63 68 70 58 67 75 74 62 71 79 85 67 class5 64 73 74 61 64 69 71 61 68 73 82 65 71 79 79 67 68 83 83 67 71 79 87 70 71 87 96 75 75 91 96 79 75 83 89 71 class5 72 77 82 68 76 81 90 76 76 85 90 72 71 79 87 70 71 83 87 70 68 75 79 67 71 79 85 67 71 75 85 67 71 75 74 62 class5 76 85 90 72 76 77 90 68 72 77 78 61 68 75 79 67 71 75 79 63 71 79 79 63 71 75 74 62 67 72 70 58 67 72 74 58 class5 72 77 78 61 68 69 71 57 64 69 74 57 71 79 79 63 68 75 75 59 68 68 71 56 67 72 74 58 63 68 74 58 63 68 74 58 class5 68 69 71 57 64 69 74 57 68 69 74 57 68 75 75 59 68 68 71 56 64 71 79 59 63 68 74 58 63 68 74 58 67 72 74 62 class5 92 116 118 92 88 107 113 88 88 107 113 88 93 111 118 92 88 111 113 92 88 111 113 92 95 109 112 89 95 109 117 85 90 113 117 92 class2 88 107 113 88 84 107 113 88 84 112 113 88 88 111 113 92 84 111 113 92 84 111 118 92 90 113 117 92 95 113 117 92 95 118 117 96 class2 84 112 113 88 88 107 113 88 92 112 113 88 84 111 118 92 93 111 113 92 93 111 113 92 95 118 117 96 95 118 122 96 99 118 117 92 class2 92 112 113 88 92 112 118 88 88 107 113 88 93 111 113 92 93 111 118 92 88 107 109 87 99 118 117 92 95 113 117 96 86 104 108 89 class2 88 107 113 88 88 103 108 85 84 95 100 85 88 107 109 87 88 95 104 83 84 99 100 79 86 104 108 89 82 96 104 78 82 96 104 81 class3 80 95 100 74 64 64 104 96 46 36 122 139 84 95 96 79 71 83 93 79 55 51 113 108 82 96 100 81 82 91 92 78 78 83 96 74 class1 46 36 122 139 46 31 128 135 46 31 128 135 55 51 113 108 44 37 134 137 44 32 139 141 78 83 96 74 63 56 108 103 46 34 127 144 class1 46 31 139 143 43 31 133 143 43 29 133 143 44 29 134 146 44 34 139 146 44 32 134 141 43 32 138 144 46 32 138 144 46 32 138 144 class1 43 29 133 143 46 31 133 150 46 31 139 143 44 32 134 141 48 32 134 141 44 32 134 137 46 32 138 144 46 32 133 144 46 32 133 136 class1 50 31 128 132 46 34 128 135 46 36 128 132 48 34 128 133 48 32 134 133 48 34 123 133 46 32 127 136 49 32 127 133 46 34 127 129 class1 50 36 118 128 43 31 139 143 46 29 133 139 51 45 104 100 48 37 123 129 44 32 128 137 49 37 112 118 52 43 104 103 49 37 117 122 class1 43 36 118 121 46 36 118 128 46 34 122 125 48 40 113 112 48 37 113 116 48 34 123 125 49 34 112 111 46 37 117 114 49 34 112 118 class1 46 36 118 128 46 34 122 125 50 34 118 125 48 37 113 116 48 34 123 125 48 37 118 125 46 37 117 114 49 34 112 118 52 34 117 122 class1 50 36 118 128 53 51 113 103 71 83 100 78 48 34 123 125 48 37 118 121 63 58 109 96 49 34 122 118 49 34 117 122 49 34 117 125 class1 53 51 113 103 71 83 100 78 84 99 104 85 48 37 118 121 63 58 109 96 79 95 100 79 49 34 117 122 49 34 117 125 52 49 112 107 class1 71 83 100 78 84 99 104 85 84 103 113 88 63 58 109 96 79 95 100 79 88 107 109 87 49 34 117 125 52 49 112 107 74 79 100 81 class2 88 107 108 88 88 103 104 85 88 103 113 85 88 107 113 87 88 103 104 83 88 107 109 87 90 109 108 89 90 104 112 89 86 104 112 85 class2 88 103 113 85 88 107 108 88 92 107 113 92 88 107 109 87 93 107 113 92 93 107 113 87 86 104 112 85 90 109 117 89 90 113 112 92 class2 92 107 113 92 92 112 118 88 92 112 113 92 93 107 113 87 88 111 118 87 88 111 118 96 90 113 112 92 90 113 112 92 90 109 112 89 class2 92 103 113 88 88 107 108 92 92 107 108 88 93 111 118 87 88 107 109 87 88 107 109 87 90 113 112 92 90 113 112 92 90 113 112 89 class2 92 107 108 88 92 112 113 88 92 112 118 92 88 107 109 87 93 111 113 87 88 103 113 83 90 113 112 89 86 104 104 85 78 96 92 81 class2 68 71 75 59 60 57 60 45 53 54 53 38 63 61 63 42 55 51 50 29 55 54 57 37 63 67 69 52 59 56 62 48 56 53 66 48 class4 60 57 60 45 53 54 53 38 53 54 53 34 55 51 50 29 55 54 57 37 59 54 63 42 59 56 62 48 56 53 66 48 59 53 66 44 class4 53 54 53 38 53 54 53 34 56 57 56 45 55 54 57 37 59 54 63 42 55 54 63 46 56 53 66 48 59 53 66 44 59 56 62 44 class4 53 54 53 34 56 57 56 45 60 57 67 49 59 54 63 42 55 54 63 46 59 51 67 46 59 53 66 44 59 56 62 44 59 53 62 44 class4 60 57 67 49 56 54 67 49 56 54 67 52 59 51 67 50 55 54 67 50 55 54 60 46 59 56 66 44 56 56 73 52 59 56 76 55 class4 56 54 67 49 56 54 67 52 53 57 67 52 55 54 67 50 55 54 60 46 55 54 67 50 56 56 73 52 59 56 76 55 59 49 69 48 class4 60 64 75 63 64 68 79 59 64 68 71 56 55 58 70 54 63 68 77 62 67 72 74 58 59 53 66 44 56 53 66 48 59 56 73 55 class5 64 68 79 59 64 68 71 56 64 71 75 63 63 68 77 62 67 72 74 58 63 68 70 58 56 53 66 48 59 56 73 55 66 67 80 63 class5 64 68 71 56 64 71 75 63 68 79 79 67 67 72 74 58 63 68 70 58 67 75 74 62 59 56 73 55 66 67 80 63 63 71 73 59 class5 64 71 75 63 68 79 79 67 71 79 79 63 63 68 70 58 67 75 74 62 71 79 85 67 66 67 80 63 63 71 73 59 63 67 73 59 class5 71 79 79 67 68 83 83 67 71 79 87 70 71 87 96 75 75 91 96 79 75 83 89 71 66 75 80 63 70 79 84 70 70 79 84 66 class5 71 79 87 70 71 79 87 70 71 83 87 70 75 83 89 71 71 79 85 67 71 75 85 67 70 79 84 66 70 71 73 63 63 67 69 59 class5 68 75 75 59 68 68 71 56 64 71 79 59 63 68 74 58 63 68 74 58 67 72 74 62 63 67 69 55 66 75 76 63 66 71 73 59 class5 68 68 71 56 64 71 79 59 68 71 71 59 63 68 74 58 67 72 74 62 71 75 77 67 66 75 76 63 66 71 73 59 63 67 66 55 class5 88 111 113 92 84 111 113 92 84 111 118 92 90 113 117 92 95 113 117 92 95 118 117 96 92 117 119 98 96 117 130 94 92 112 124 94 class2 84 111 118 92 93 111 113 92 93 111 113 92 95 118 117 96 95 118 122 96 99 118 117 92 92 112 124 94 92 112 114 98 92 108 114 90 class2 93 111 113 92 93 111 113 92 93 111 118 92 95 118 122 96 99 118 117 92 95 113 117 96 92 112 114 98 92 108 114 90 92 99 105 86 class2 93 111 113 92 93 111 118 92 88 107 109 87 99 118 117 92 95 113 117 96 86 104 108 89 92 108 114 90 92 99 105 86 83 99 101 75 class2 84 95 96 79 71 83 93 79 55 51 113 108 82 96 100 81 82 91 92 78 78 83 96 74 83 91 101 79 79 95 93 75 79 95 93 75 class3 48 32 134 141 44 32 134 137 44 32 134 137 46 32 133 144 46 32 133 136 46 32 133 136 46 32 130 142 46 32 124 139 46 32 124 139 class1 48 37 118 125 48 40 118 112 51 45 104 100 49 32 127 133 46 32 122 129 49 37 112 118 46 32 119 131 46 34 119 127 49 34 114 124 class1 51 45 104 100 48 37 123 129 44 32 128 137 49 37 112 118 52 43 104 103 49 37 117 122 49 34 114 124 49 40 105 116 52 45 105 105 class1 48 37 123 129 44 32 128 137 44 32 123 129 52 43 104 103 49 37 117 122 43 29 138 140 49 40 105 116 52 45 105 105 46 32 124 135 class1 44 32 123 129 44 34 128 129 44 32 128 125 43 29 138 140 46 29 127 133 46 29 122 125 46 32 124 135 42 32 130 139 42 32 119 127 class1 44 32 128 125 48 29 123 125 44 32 113 121 46 29 122 125 46 32 112 118 46 34 112 118 42 32 119 127 42 34 110 120 46 34 110 116 class1 48 29 123 125 44 32 113 121 48 34 118 112 46 32 112 118 46 34 112 118 46 34 112 114 42 34 110 120 46 34 110 116 49 34 110 116 class1 44 32 113 121 48 34 118 112 51 37 118 112 46 34 112 118 46 34 112 114 46 34 112 111 46 34 110 116 49 34 110 116 49 37 114 116 class1 51 37 118 112 48 40 113 112 48 37 113 116 46 34 112 111 49 34 112 111 46 37 117 114 49 37 114 116 52 40 110 113 49 37 105 113 class1 48 37 113 116 48 34 123 125 48 37 118 125 46 37 117 114 49 34 112 118 52 34 117 122 49 37 105 113 49 37 110 116 49 37 110 116 class1 48 37 118 121 63 58 109 96 79 95 100 79 49 34 117 122 49 34 117 125 52 49 112 107 46 37 114 116 46 37 110 113 52 45 110 109 class1 63 58 109 96 79 95 100 79 88 107 109 87 49 34 117 125 52 49 112 107 74 79 100 81 46 37 110 113 52 45 110 109 67 70 101 83 class1 79 95 100 79 88 107 109 87 88 111 109 92 52 49 112 107 74 79 100 81 86 100 108 85 52 45 110 109 67 70 101 83 79 95 97 75 class1 88 107 113 87 88 103 104 83 88 107 109 87 90 109 108 89 90 104 112 89 86 104 112 85 92 108 110 90 92 108 110 90 96 108 114 94 class2 88 107 109 87 93 107 113 92 93 107 113 87 86 104 112 85 90 109 117 89 90 113 112 92 96 108 114 94 96 112 114 90 96 112 119 90 class2 93 107 113 87 88 111 118 87 88 111 118 96 90 113 112 92 90 113 112 92 90 109 112 89 96 112 119 90 92 108 119 90 96 112 119 90 class2 88 111 118 87 88 111 118 96 93 111 118 96 90 113 112 92 90 109 112 89 90 113 117 92 92 108 119 90 96 112 119 90 96 112 119 94 class2 93 111 118 92 93 111 118 92 93 111 118 92 95 113 117 96 90 109 117 96 90 118 122 96 96 117 114 94 92 108 114 94 92 112 114 90 class2 88 103 113 83 84 95 100 83 79 87 96 75 78 96 92 81 74 91 96 78 74 87 92 74 71 73 79 64 71 77 82 68 67 77 86 68 class5 55 54 63 46 59 51 67 46 59 51 67 50 59 56 62 44 59 53 62 44 59 56 66 44 56 54 72 49 56 51 62 45 56 54 65 45 class4 63 68 77 62 67 72 74 58 63 68 70 58 56 53 66 48 59 56 73 55 66 67 80 63 59 54 62 45 59 57 65 49 59 60 72 57 class5 71 79 85 67 71 87 96 75 75 91 96 79 63 67 73 59 66 75 80 63 70 79 84 70 63 66 72 60 63 70 75 64 67 73 79 64 class5 75 83 89 71 71 79 85 67 71 75 85 67 70 79 84 66 70 71 73 63 63 67 69 59 63 66 75 60 63 63 72 57 63 60 72 60 class5 67 72 70 58 67 72 74 58 63 68 74 58 59 63 73 59 63 67 73 55 63 67 69 55 63 63 72 57 63 63 68 53 59 60 65 53 class5 67 72 74 58 63 68 74 58 63 68 74 58 63 67 73 55 63 67 69 55 66 75 76 63 63 63 68 53 59 60 65 53 59 66 72 57 class5 63 68 74 58 67 72 74 62 71 75 77 67 66 75 76 63 66 71 73 59 63 67 66 55 59 66 72 57 63 73 75 64 67 70 72 60 class5 67 72 74 62 71 75 77 67 71 75 74 62 66 71 73 59 63 67 66 55 63 75 80 63 63 73 75 64 67 70 72 60 67 73 82 64 class5 90 113 122 96 95 109 112 89 95 109 117 85 101 112 124 94 96 112 114 90 92 112 114 94 93 111 114 94 97 115 119 94 97 115 124 94 class2 95 109 117 85 90 113 117 92 95 113 117 92 92 112 114 94 92 117 119 98 96 117 130 94 97 115 124 94 97 115 119 94 93 115 114 90 class2 46 32 138 144 46 32 138 144 46 32 133 144 46 32 130 142 46 32 135 142 46 32 130 142 44 34 129 143 44 31 124 143 44 34 119 140 class1 46 32 133 144 46 32 133 136 46 32 133 136 46 32 130 142 46 32 124 139 46 32 124 139 44 34 119 140 44 34 124 140 44 34 129 140 class1 46 32 127 136 49 32 127 133 46 34 127 129 42 34 124 135 42 32 124 135 46 32 119 135 44 34 124 136 44 34 124 136 44 34 124 136 class1 49 32 127 133 46 34 127 129 49 32 127 133 42 32 124 135 46 32 119 135 46 32 119 131 44 34 124 136 44 34 124 136 44 34 119 133 class1 52 43 104 103 49 37 117 122 43 29 138 140 49 40 105 116 52 45 105 105 46 32 124 135 44 37 119 129 44 43 105 111 50 43 110 111 class1 49 34 112 111 46 37 117 114 49 34 112 118 52 40 110 113 49 37 105 113 49 37 110 116 44 34 110 119 44 37 105 111 47 40 110 111 class1 49 34 112 118 52 34 117 122 49 34 122 118 49 37 110 116 49 37 110 116 46 37 114 116 47 40 110 111 47 40 110 111 50 40 105 115 class1 49 34 122 118 49 34 117 122 49 34 117 125 46 37 114 116 46 37 114 116 46 37 110 113 50 40 105 115 53 46 110 111 60 63 97 94 class1 52 49 112 107 74 79 100 81 86 100 108 85 52 45 110 109 67 70 101 83 79 95 97 75 70 79 97 80 78 92 97 76 82 102 105 76 class1 86 100 108 85 90 109 108 89 90 104 112 89 79 95 97 75 92 108 110 90 92 108 110 90 82 102 105 76 85 102 110 83 93 111 114 90 class2 90 109 108 89 90 104 112 89 86 104 112 85 92 108 110 90 92 108 110 90 96 108 114 94 85 102 110 83 93 111 114 90 97 115 114 94 class2 86 104 112 85 90 109 117 89 90 113 112 92 96 108 114 94 96 112 114 90 96 112 119 90 97 115 114 94 97 111 114 94 93 115 114 94 class2 90 113 112 92 90 113 112 92 90 109 112 89 96 112 119 90 92 108 119 90 96 112 119 90 93 115 114 94 93 115 119 94 97 115 114 97 class2 90 109 112 89 90 113 117 92 95 113 117 96 96 112 119 90 96 112 119 94 96 117 114 94 97 115 114 97 97 115 114 94 97 115 114 90 class2 95 113 117 96 90 109 117 96 90 118 122 96 96 117 114 94 92 108 114 94 92 112 114 90 97 115 114 90 93 111 114 87 89 106 114 87 class2 74 91 96 78 74 87 92 74 74 79 84 66 71 77 82 68 67 77 86 68 67 77 75 64 63 67 74 58 60 67 67 55 57 63 63 51 class5 70 79 80 63 63 67 69 52 59 56 62 48 67 70 68 57 59 57 55 42 52 51 58 42 53 60 63 48 57 56 56 44 53 53 60 44 class4 59 56 62 48 56 53 66 48 59 53 66 44 52 51 58 42 52 51 72 57 56 51 68 53 53 53 60 44 57 53 67 55 53 53 74 62 class4 59 56 66 44 56 56 73 52 59 56 76 55 56 54 65 45 56 51 65 49 56 51 72 60 57 56 63 51 53 56 67 48 53 49 70 55 class4 59 49 69 48 59 53 66 44 56 53 66 48 59 54 72 60 59 51 65 45 59 54 62 45 57 56 74 62 57 60 74 58 57 53 67 51 class4 66 67 80 63 63 71 73 59 63 67 73 59 59 60 72 57 63 66 79 64 63 66 72 60 57 56 70 51 57 56 74 58 57 60 74 58 class5 66 75 80 63 70 79 84 70 70 79 84 66 63 70 75 64 67 73 79 64 63 66 75 60 63 63 74 62 63 60 70 62 60 60 70 65 class5 70 79 84 66 70 71 73 63 63 67 69 59 63 66 75 60 63 63 72 57 63 60 72 60 60 60 70 65 53 53 82 83 50 43 97 101 class5 63 67 69 59 59 63 66 55 59 63 73 59 63 60 72 60 59 63 75 64 63 63 72 57 50 43 97 101 44 37 101 108 53 53 85 76 class5 59 63 66 55 59 63 73 59 63 67 73 55 59 63 75 64 63 63 72 57 63 63 68 53 44 37 101 108 53 53 85 76 60 60 74 55 class5 66 71 73 59 63 67 66 55 63 75 80 63 63 73 75 64 67 70 72 60 67 73 82 64 67 71 78 62 67 75 78 65 67 71 82 69 class5 92 117 119 98 96 117 130 94 92 112 124 94 97 115 119 94 93 115 114 90 93 106 114 90 88 106 111 87 84 94 102 76 76 94 98 72 class2 96 117 130 94 92 112 124 94 92 112 114 98 93 115 114 90 93 106 114 90 89 102 110 83 84 94 102 76 76 94 98 72 76 89 94 76 class2 92 112 124 94 92 112 114 98 92 108 114 90 93 106 114 90 89 102 110 83 82 92 101 80 76 94 98 72 76 89 94 76 80 89 94 76 class2 92 112 114 98 92 108 114 90 92 99 105 86 89 102 110 83 82 92 101 80 82 88 89 73 76 89 94 76 80 89 94 76 76 89 98 76 class2 92 108 114 90 92 99 105 86 83 99 101 75 82 92 101 80 82 88 89 73 78 92 93 80 80 89 94 76 76 89 98 76 80 89 94 79 class3 83 99 101 75 79 91 97 75 83 91 97 79 78 92 93 80 78 92 101 76 82 92 101 80 80 89 94 79 80 89 98 79 84 94 98 76 class3 46 32 135 142 46 32 130 142 46 32 124 139 44 31 124 143 44 34 119 140 44 34 124 140 47 31 131 139 47 31 131 139 47 34 131 139 class1 46 32 130 142 46 32 124 139 46 32 124 139 44 34 119 140 44 34 124 140 44 34 129 140 47 31 131 139 47 34 131 139 44 31 136 139 class1 49 34 114 124 49 40 105 116 52 45 105 105 44 34 114 129 44 37 119 129 44 43 105 111 47 34 115 124 44 34 115 120 47 40 115 116 class1 49 40 105 116 52 45 105 105 46 32 124 135 44 37 119 129 44 43 105 111 50 43 110 111 44 34 115 120 47 40 115 116 50 43 106 102 class1 42 32 119 127 42 34 110 120 46 34 110 116 44 31 124 133 44 31 114 122 47 34 114 126 44 31 131 135 47 31 125 128 47 31 120 124 class1 79 95 97 75 92 108 110 90 92 108 110 90 82 102 105 76 85 102 110 83 93 111 114 90 76 85 94 76 84 98 102 79 88 111 115 94 class2 92 108 110 90 92 108 110 90 96 108 114 94 85 102 110 83 93 111 114 90 97 115 114 94 84 98 102 79 88 111 115 94 97 120 120 98 class2 96 108 114 94 96 112 114 90 96 112 119 90 97 115 114 94 97 111 114 94 93 115 114 94 97 120 120 98 97 120 120 94 97 115 115 94 class2 92 108 114 90 92 108 119 90 92 103 105 83 85 106 110 83 85 97 105 76 82 92 101 76 84 98 98 79 80 89 94 76 76 81 90 65 class2 92 108 119 90 92 103 105 83 83 99 101 83 85 97 105 76 82 92 101 76 78 88 93 73 80 89 94 76 76 81 90 65 72 77 78 65 class5 71 73 79 64 71 77 82 68 67 77 86 68 70 71 74 58 63 67 74 58 60 67 67 55 72 81 94 65 64 69 71 57 57 55 60 46 class5 71 77 82 68 67 77 86 68 67 77 75 64 63 67 74 58 60 67 67 55 57 63 63 51 64 69 71 57 57 55 60 46 53 55 60 42 class4 67 77 86 68 67 77 75 64 67 70 68 57 60 67 67 55 57 63 63 51 53 60 63 48 57 55 60 46 53 55 60 42 57 59 64 50 class4 59 57 55 42 52 51 58 42 52 51 72 57 57 56 56 44 53 53 60 44 57 53 67 55 60 59 67 54 60 59 71 57 57 59 78 65 class4 52 51 72 57 56 51 68 53 56 54 72 49 57 53 67 55 53 53 74 62 53 53 70 58 57 59 78 65 53 52 78 65 53 49 74 57 class4 56 51 68 53 56 54 72 49 56 51 62 45 53 53 74 62 53 53 70 58 53 53 67 48 53 52 78 65 53 49 74 57 53 52 71 50 class4 56 54 65 45 56 51 65 49 56 51 72 60 57 56 63 51 53 56 67 48 53 49 70 55 53 49 71 50 53 52 71 50 53 52 71 50 class4 59 54 72 60 59 51 65 45 59 54 62 45 57 56 74 62 57 60 74 58 57 53 67 51 57 55 74 61 57 55 78 65 57 55 67 54 class4 59 51 65 45 59 54 62 45 59 57 65 49 57 60 74 58 57 53 67 51 57 56 70 48 57 55 78 65 57 55 67 54 53 49 64 50 class4 59 57 65 49 59 60 72 57 63 66 79 64 57 56 70 48 57 56 70 51 57 56 74 58 53 49 64 50 57 55 67 50 57 55 71 54 class4 67 73 79 64 63 66 75 60 63 63 72 57 63 60 70 62 60 60 70 65 53 53 82 83 53 46 94 94 47 34 111 116 44 29 115 124 class4 63 63 68 53 59 60 65 53 59 66 72 57 60 60 74 55 57 60 70 58 63 67 74 58 53 52 78 57 57 52 71 61 57 59 78 61 class5 63 73 75 64 67 70 72 60 67 73 82 64 67 71 78 62 67 75 78 65 67 71 82 69 60 62 82 65 60 62 78 68 60 59 90 79 class5 97 115 119 94 93 115 114 90 93 106 114 90 88 106 111 87 84 94 102 76 76 94 98 72 80 91 96 78 76 87 96 74 76 91 96 74 class3 89 102 110 83 82 92 101 80 82 88 89 73 76 89 94 76 80 89 94 76 76 89 98 76 80 95 100 81 80 99 100 81 80 103 96 81 class3 82 92 101 80 82 88 89 73 78 92 93 80 80 89 94 76 76 89 98 76 80 89 94 79 80 99 100 81 80 103 96 81 84 95 100 78 class3 78 92 101 76 82 92 101 80 78 88 93 76 80 89 98 79 84 94 98 76 76 85 90 72 84 95 100 78 80 91 96 81 71 87 91 74 class3 82 92 101 80 78 88 93 76 78 92 93 76 84 94 98 76 76 85 90 72 76 85 90 72 80 91 96 81 71 87 91 74 76 87 87 74 class3 78 88 93 76 78 92 93 76 78 88 97 80 76 85 90 72 76 85 90 72 76 85 90 76 71 87 91 74 76 87 87 74 76 87 91 78 class3 78 88 97 80 78 88 93 76 63 63 101 90 76 85 90 76 80 89 94 76 72 81 94 76 76 87 91 78 80 91 96 78 84 91 96 74 class3 47 37 119 133 44 34 124 143 44 34 129 143 57 49 115 113 47 31 131 142 44 31 131 142 68 68 100 85 50 39 118 132 43 29 133 143 class1 44 34 124 140 44 34 129 140 44 34 124 136 47 34 131 139 44 31 136 139 44 31 125 139 46 31 133 143 46 31 133 139 43 31 128 135 class1 44 34 129 140 44 34 124 136 44 34 124 136 44 31 136 139 44 31 125 139 44 31 125 139 46 31 133 139 43 31 128 135 43 29 128 132 class1 44 34 124 136 44 34 119 133 44 37 114 129 47 34 125 135 44 31 125 128 47 34 120 124 46 31 118 125 46 34 118 121 50 36 118 121 class1 44 34 119 133 44 37 114 129 44 34 114 129 44 31 125 128 47 34 120 124 47 34 115 124 46 34 118 121 50 36 118 121 50 36 118 121 class1 44 34 114 129 44 37 119 129 44 43 105 111 47 34 115 124 44 34 115 120 47 40 115 116 50 36 118 121 50 36 122 121 46 36 122 125 class1 44 31 124 133 44 31 114 122 47 34 114 126 44 31 131 135 47 31 125 128 47 31 120 124 50 34 122 135 43 29 133 135 46 31 122 125 class1 47 37 114 122 47 37 114 119 44 34 110 119 47 34 115 120 47 37 111 113 47 37 111 105 50 34 113 114 50 39 104 103 56 51 100 92 class1 47 40 110 111 47 40 110 111 50 40 105 115 53 43 106 102 60 55 102 91 64 69 94 79 68 71 91 70 71 75 87 63 68 75 75 59 class1 93 111 114 90 97 115 114 94 97 111 114 94 88 111 115 94 97 120 120 98 97 120 120 94 84 103 108 85 92 112 122 92 92 112 118 92 class2 97 115 114 94 97 111 114 94 93 115 114 94 97 120 120 98 97 120 120 94 97 115 115 94 92 112 122 92 92 112 118 92 88 107 108 88 class2 93 115 114 94 93 115 119 94 97 115 114 97 97 115 115 94 88 115 120 94 88 111 115 91 88 107 108 88 84 99 104 81 84 99 104 78 class2 85 106 110 83 85 97 105 76 82 92 101 76 84 98 98 79 80 89 94 76 76 81 90 65 80 87 91 74 68 83 83 67 68 79 83 67 class5 63 67 74 58 60 67 67 55 57 63 63 51 64 69 71 57 57 55 60 46 53 55 60 42 68 75 79 63 64 64 71 56 64 61 71 59 class4 60 67 67 55 57 63 63 51 53 60 63 48 57 55 60 46 53 55 60 42 57 59 64 50 64 64 71 56 64 61 71 59 60 61 71 59 class4 53 60 63 48 57 56 56 44 53 53 60 44 57 59 64 50 60 59 67 54 60 59 71 57 60 61 71 59 60 61 75 63 60 61 75 67 class4 57 56 56 44 53 53 60 44 57 53 67 55 60 59 67 54 60 59 71 57 57 59 78 65 60 61 75 63 60 61 75 67 60 57 75 67 class4 57 56 63 51 53 56 67 48 53 49 70 55 53 49 71 50 53 52 71 50 53 52 71 50 56 51 71 56 56 51 71 56 56 51 67 56 class4 53 56 67 48 53 49 70 55 57 56 74 62 53 52 71 50 53 52 71 50 57 55 74 61 56 51 71 56 56 51 67 56 53 48 67 56 class4 57 60 74 58 57 53 67 51 57 56 70 48 57 55 78 65 57 55 67 54 53 49 64 50 56 54 79 63 56 54 79 63 56 51 67 52 class4 57 53 67 51 57 56 70 48 57 56 70 51 57 55 67 54 53 49 64 50 57 55 67 50 56 54 79 63 56 51 67 52 53 51 67 52 class4 63 63 74 62 63 60 70 62 60 60 70 65 57 52 82 72 53 46 94 94 47 34 111 116 53 48 91 96 46 34 118 128 43 29 122 139 class1 53 53 85 76 60 60 74 55 57 60 70 58 44 37 98 94 53 52 78 57 57 52 71 61 40 31 122 132 46 42 96 78 53 48 71 59 class4 60 60 74 55 57 60 70 58 63 67 74 58 53 52 78 57 57 52 71 61 57 59 78 61 46 42 96 78 53 48 71 59 56 51 71 59 class4 67 71 78 62 67 75 78 65 67 71 82 69 60 62 82 65 60 62 78 68 60 59 90 79 60 54 75 63 60 57 79 67 60 64 87 78 class4 92 115 120 94 88 106 111 87 84 94 102 76 84 95 96 78 80 91 96 78 76 87 96 74 84 91 96 75 79 95 100 79 84 95 100 79 class3 76 85 90 76 80 89 94 76 72 81 94 76 76 87 91 78 80 91 96 78 84 91 96 74 79 95 96 79 79 99 96 79 84 99 96 79 class3 44 31 125 139 47 34 125 135 44 31 125 128 43 29 128 132 46 31 118 125 46 34 118 121 44 32 118 125 44 34 118 121 48 37 118 121 class1 50 43 106 102 47 40 115 120 44 31 131 135 50 39 122 117 50 45 113 107 50 34 122 135 48 29 118 129 48 37 118 116 51 42 109 104 class1 47 34 115 120 47 37 111 113 47 37 111 105 50 34 113 114 50 39 104 103 56 51 100 92 59 51 100 83 63 64 85 67 67 75 81 62 class1 47 37 111 105 50 40 106 105 53 43 106 102 56 51 100 92 64 61 96 81 68 71 91 70 67 75 81 62 67 72 77 54 67 72 74 58 class1 53 43 106 102 60 55 102 91 64 69 94 79 68 71 91 70 71 75 87 63 68 75 75 59 67 72 74 58 67 72 70 54 71 72 74 58 class5 64 69 94 79 68 77 86 65 68 77 78 61 68 75 75 59 64 68 75 56 64 71 75 56 71 72 74 58 67 75 74 58 67 75 77 58 class5 68 77 86 65 68 77 78 61 68 77 82 61 64 68 75 56 64 71 75 56 68 75 75 59 67 75 74 58 67 75 77 58 67 79 81 62 class5 68 81 90 68 76 85 94 76 84 98 102 79 68 75 83 59 71 79 83 67 71 87 96 74 71 75 85 62 71 83 85 62 75 83 89 67 class5 76 85 94 76 84 98 102 79 88 111 115 94 71 79 83 67 71 87 96 74 84 103 108 85 71 83 85 62 75 83 89 67 75 91 96 75 class5 97 115 115 94 88 115 120 94 88 111 115 91 88 107 108 88 84 99 104 81 84 99 104 78 79 95 100 79 84 95 104 79 79 95 96 75 class2 84 98 106 83 88 98 106 79 84 98 98 79 84 103 104 81 84 95 96 78 80 87 91 74 84 95 96 75 71 83 85 67 71 79 85 67 class5 88 98 106 79 84 98 98 79 80 89 94 76 84 95 96 78 80 87 91 74 68 83 83 67 71 83 85 67 71 79 85 67 71 75 85 67 class5 80 89 94 76 76 81 90 65 72 77 78 65 68 83 83 67 68 79 83 67 71 75 83 67 71 75 85 67 71 75 85 67 71 79 81 67 class5 72 77 78 65 72 81 78 65 72 81 90 65 71 75 83 67 71 79 87 70 71 83 87 70 71 79 81 67 75 79 85 67 75 87 89 71 class5 72 81 94 65 64 69 71 57 57 55 60 46 71 79 83 67 68 75 79 63 64 64 71 56 75 87 85 71 71 83 89 75 71 79 89 75 class5 60 59 71 57 57 59 78 65 53 52 78 65 60 61 75 67 60 57 75 67 56 54 79 70 63 61 81 62 59 58 77 67 59 58 77 67 class4 53 49 74 57 53 52 71 50 53 49 71 50 53 48 75 63 53 45 75 59 56 51 71 56 55 51 81 71 55 48 77 62 55 48 74 62 class4 53 52 71 50 53 49 71 50 53 52 71 50 53 45 75 59 56 51 71 56 56 51 71 56 55 48 77 62 55 48 74 62 55 51 67 54 class4 53 49 71 50 53 52 71 50 53 52 71 50 56 51 71 56 56 51 71 56 56 51 67 56 55 48 74 62 55 51 67 54 55 51 67 50 class4 57 55 71 54 57 55 74 65 57 52 82 72 53 54 71 52 53 51 75 63 53 48 91 96 55 48 70 54 55 51 77 67 55 51 85 75 class4 57 55 74 65 57 52 82 72 53 46 94 94 53 51 75 63 53 48 91 96 46 34 118 128 55 51 77 67 55 51 85 75 51 45 104 112 class1 57 52 82 72 53 46 94 94 47 34 111 116 53 48 91 96 46 34 118 128 43 29 122 139 55 51 85 75 51 45 104 112 44 29 128 146 class1 44 29 106 113 44 31 106 116 44 37 98 94 43 29 122 128 43 29 122 128 40 31 122 132 41 27 134 137 41 27 123 129 41 27 123 133 class1 80 99 104 81 84 95 96 78 80 91 96 78 84 95 96 75 84 91 96 75 79 95 100 79 82 96 96 81 82 96 100 78 82 91 96 78 class3 80 103 96 81 84 95 100 78 84 95 100 78 84 99 100 79 84 95 104 79 79 95 96 79 82 96 104 78 78 96 104 78 82 96 100 81 class3 76 87 91 78 80 91 96 78 84 91 96 74 79 95 96 79 79 99 96 79 84 99 96 79 82 91 104 81 82 96 104 81 82 100 100 78 class3 46 31 133 139 46 31 133 143 46 31 133 139 44 32 128 137 44 32 128 133 48 32 123 129 49 34 117 129 46 34 112 129 46 32 117 125 class1 46 31 133 143 46 31 133 139 43 31 128 135 44 32 128 133 48 32 123 129 44 34 123 129 46 34 112 129 46 32 117 125 46 34 112 122 class1 43 29 128 132 46 31 118 125 46 34 118 121 44 32 118 125 44 34 118 121 48 37 118 121 49 34 122 125 49 34 117 125 46 32 117 125 class1 50 36 118 121 50 36 122 121 46 36 122 125 48 34 118 125 44 34 118 129 44 34 123 129 46 32 122 122 46 32 122 125 46 29 122 129 class1 50 39 104 103 56 51 100 92 64 61 96 81 63 64 85 67 67 75 81 62 67 72 77 54 66 71 80 59 70 71 80 59 63 67 69 55 class5 92 112 122 92 92 112 118 92 88 107 108 88 84 103 104 83 79 99 96 79 79 95 100 79 66 83 88 66 74 87 92 74 82 91 96 78 class2 84 99 104 78 84 95 104 78 84 95 104 81 79 95 96 75 84 95 100 79 84 99 104 79 82 96 100 78 82 96 100 78 82 91 100 78 class5 84 95 104 78 84 95 104 81 84 103 104 81 84 95 100 79 84 99 104 79 84 95 96 75 82 96 100 78 82 91 100 78 78 87 96 78 class5 84 95 104 81 84 103 104 81 84 95 96 78 84 99 104 79 84 95 96 75 71 83 85 67 82 91 100 78 78 87 96 78 78 83 84 70 class5 80 87 91 74 68 83 83 67 68 79 83 67 71 79 85 67 71 75 85 67 71 75 85 67 70 79 80 66 70 83 84 70 74 79 84 66 class5 68 79 83 67 71 75 83 67 71 79 87 70 71 75 85 67 71 79 81 67 75 79 85 67 74 79 84 66 70 75 84 66 70 75 80 63 class5 71 79 83 67 68 75 79 63 64 64 71 56 75 87 85 71 71 83 89 75 71 79 89 75 78 83 88 74 74 83 88 70 74 83 88 74 class5 64 61 71 59 60 61 71 59 60 61 75 63 63 64 85 75 59 58 77 71 59 58 81 67 74 83 88 74 66 71 88 70 59 60 84 70 class4 60 61 71 59 60 61 75 63 60 61 75 67 59 58 77 71 59 58 81 67 63 61 81 62 66 71 88 70 59 60 84 70 59 56 80 70 class4 60 61 75 67 60 57 75 67 56 54 79 70 63 61 81 62 59 58 77 67 59 58 77 67 59 56 80 70 59 60 80 63 66 63 76 66 class4 53 48 67 56 56 54 79 63 56 54 79 63 55 51 70 54 55 45 70 54 55 51 77 67 56 49 69 52 56 46 69 52 56 49 69 55 class4 56 54 79 63 56 54 79 63 56 51 67 52 55 45 70 54 55 51 77 67 55 54 77 62 56 46 69 52 56 49 69 55 56 53 73 63 class4 53 54 71 52 53 51 75 63 53 48 91 96 55 48 70 54 55 51 77 67 55 51 85 75 56 49 69 59 52 49 76 59 56 53 84 63 class4 43 29 122 139 43 29 122 135 43 29 122 128 44 29 128 146 41 27 134 146 41 27 134 137 52 43 104 100 46 29 117 133 43 27 133 151 class1 43 29 122 135 43 29 122 128 43 29 122 128 41 27 134 146 41 27 134 137 41 27 123 129 46 29 117 133 43 27 133 151 43 27 127 147 class1 43 29 122 128 40 31 122 132 46 42 96 78 41 27 123 129 41 27 123 133 44 32 113 116 43 27 127 147 43 27 122 133 43 27 117 129 class1 79 95 100 79 84 95 100 79 79 95 96 75 82 91 96 78 82 96 100 78 82 96 96 78 83 99 101 79 83 95 97 79 83 95 97 75 class3 84 95 100 79 84 99 100 79 84 99 100 79 82 96 100 78 82 100 96 81 82 96 104 78 83 95 101 79 83 99 101 83 79 95 101 83 class3 84 95 104 79 79 95 96 79 79 91 93 75 78 96 104 78 82 96 100 81 78 91 96 78 79 95 97 79 79 91 101 75 79 95 105 79 class3 79 95 96 79 79 91 93 75 79 91 96 75 82 96 100 81 78 91 96 78 78 91 96 78 79 91 101 75 79 95 105 79 83 95 97 75 class3 79 91 93 75 79 91 96 75 84 95 100 79 78 91 96 78 78 91 96 78 78 91 100 74 79 95 105 79 83 95 97 75 79 95 97 79 class3 63 58 104 100 48 34 128 137 44 32 128 141 82 100 100 85 78 87 92 78 63 56 104 96 92 103 114 86 92 103 105 83 75 81 93 79 class1 44 34 123 129 44 32 118 125 44 34 118 121 46 34 112 122 49 34 122 125 49 34 117 125 46 40 105 109 49 40 105 113 46 37 114 120 class1 44 34 118 121 48 37 118 121 48 34 118 121 49 34 117 125 46 32 117 125 46 32 117 122 46 37 114 120 46 34 124 131 46 32 124 139 class1 48 37 118 121 48 34 118 121 48 34 118 125 46 32 117 125 46 32 117 122 46 32 122 122 46 34 124 131 46 32 124 139 46 30 119 131 class1 48 34 118 125 44 34 118 129 44 34 123 129 46 32 122 122 46 32 122 125 46 29 122 129 46 30 119 131 46 32 114 127 42 34 119 135 class1 44 34 118 129 44 34 123 129 48 29 118 129 46 32 122 125 46 29 122 129 43 32 122 133 46 32 114 127 42 34 119 135 52 37 114 124 class1 63 64 85 67 67 75 81 62 67 72 77 54 66 71 80 59 70 71 80 59 63 67 69 55 63 70 72 53 67 66 72 53 67 66 72 53 class5 67 72 77 54 67 72 74 58 67 72 70 54 63 67 69 55 63 67 69 55 63 71 69 55 67 66 72 53 67 66 72 53 63 70 68 53 class5 67 72 74 58 67 72 70 54 71 72 74 58 63 67 69 55 63 71 69 55 63 67 73 55 67 66 72 53 63 70 68 53 67 70 72 57 class5 71 75 85 62 71 83 85 62 75 83 89 67 66 83 80 63 70 79 80 63 70 79 80 63 71 77 90 64 71 81 82 64 71 81 82 64 class5 71 83 85 62 75 83 89 67 75 91 96 75 70 79 80 63 70 79 80 63 70 79 80 63 71 81 82 64 71 81 82 64 71 81 82 64 class5 75 83 89 67 75 91 96 75 84 103 104 83 70 79 80 63 70 79 80 63 66 83 88 66 71 81 82 64 71 81 82 64 75 81 82 64 class5 84 103 104 83 79 99 96 79 79 95 100 79 66 83 88 66 74 87 92 74 82 91 96 78 75 81 82 64 75 84 86 64 75 91 90 72 class5 84 95 104 79 79 95 96 75 84 95 100 79 78 87 92 74 82 96 100 78 82 96 100 78 79 91 90 72 79 95 97 75 83 95 97 75 class5 79 95 96 75 84 95 100 79 84 99 104 79 82 96 100 78 82 96 100 78 82 91 100 78 79 95 97 75 83 95 97 75 75 84 93 72 class5 75 87 89 71 75 87 85 71 71 83 89 75 70 83 88 70 78 83 88 74 74 83 88 70 75 84 90 75 75 88 97 75 75 84 93 75 class5 63 64 85 75 59 58 77 71 59 58 81 67 74 83 88 74 66 71 88 70 59 60 84 70 71 81 93 75 71 77 93 75 63 63 79 72 class4 59 58 81 67 63 61 81 62 59 58 77 67 59 60 84 70 59 56 80 70 59 60 80 63 63 63 79 72 63 57 86 72 59 57 82 68 class4 63 61 81 62 59 58 77 67 59 58 77 67 59 56 80 70 59 60 80 63 66 63 76 66 63 57 86 72 59 57 82 68 59 60 82 68 class4 55 48 77 62 55 48 74 62 55 51 67 54 59 53 84 70 52 49 76 66 52 46 80 63 59 57 82 68 59 54 82 72 56 48 75 64 class4 55 51 67 54 55 51 67 50 55 51 70 54 52 46 80 63 56 49 73 59 56 49 69 52 56 48 75 64 52 48 75 60 56 51 72 57 class4 55 51 67 50 55 51 70 54 55 45 70 54 56 49 73 59 56 49 69 52 56 46 69 52 52 48 75 60 56 51 72 57 59 51 72 53 class4 55 51 70 54 55 45 70 54 55 51 77 67 56 49 69 52 56 46 69 52 56 49 69 55 56 51 72 57 59 51 72 53 56 48 68 53 class4 55 51 77 67 55 54 77 62 59 48 74 54 56 49 69 55 56 53 73 63 59 53 84 66 56 48 68 53 56 51 68 60 56 51 75 68 class4 44 29 128 146 41 27 134 146 41 27 134 137 52 43 104 100 46 29 117 133 43 27 133 151 59 48 90 90 52 37 110 116 46 30 124 142 class1 41 27 134 137 41 27 123 129 41 27 123 133 43 27 133 151 43 27 127 147 43 27 122 133 46 30 124 142 42 30 124 146 42 30 124 135 class1 82 96 100 78 82 96 96 78 82 96 100 78 83 95 97 79 83 95 97 75 83 95 101 79 85 97 101 80 85 97 101 80 85 97 105 80 class3 82 96 96 78 82 96 100 78 82 100 96 81 83 95 97 75 83 95 101 79 83 99 101 83 85 97 101 80 85 97 105 80 82 92 101 80 class3 78 96 104 78 82 96 100 81 78 91 96 78 79 95 97 79 79 91 101 75 79 95 105 79 78 92 97 76 82 92 97 80 82 92 101 83 class3 78 91 96 78 78 91 96 78 78 91 100 74 79 95 105 79 83 95 97 75 79 95 97 79 82 92 101 83 85 97 101 80 85 97 110 80 class3 82 91 104 81 82 96 104 81 82 100 100 78 79 99 105 83 83 103 105 83 83 103 105 83 82 102 110 83 85 106 110 83 89 106 110 87 class2 82 96 104 81 82 100 100 78 82 96 104 81 83 103 105 83 83 103 105 83 83 103 105 86 85 106 110 83 89 106 110 87 89 106 110 90 class2 82 100 100 78 82 96 104 81 82 100 100 85 83 103 105 83 83 103 105 86 92 103 114 86 89 106 110 87 89 106 110 90 93 111 114 90 class2 46 29 122 129 43 32 122 133 43 32 122 129 42 34 119 135 52 37 114 124 52 48 105 105 53 56 101 97 60 63 85 73 67 71 78 58 class1 43 32 122 133 43 32 122 129 49 34 122 129 52 37 114 124 52 48 105 105 59 60 97 83 60 63 85 73 67 71 78 58 67 67 67 51 class1 63 67 73 55 66 71 73 55 66 75 76 63 67 70 72 57 67 73 79 57 67 77 82 60 63 67 74 55 63 71 78 58 67 71 78 62 class5 66 79 84 63 66 83 80 63 70 79 80 63 67 73 86 64 71 77 90 64 71 81 82 64 67 75 78 62 70 79 78 58 74 79 82 65 class5 70 79 80 63 70 79 80 63 66 83 88 66 71 81 82 64 71 81 82 64 75 81 82 64 70 79 82 62 70 79 78 65 67 75 82 62 class5 82 96 100 78 82 96 100 78 82 91 100 78 79 95 97 75 83 95 97 75 75 84 93 72 82 92 93 76 78 88 85 73 74 84 82 69 class5 78 87 96 78 78 83 84 70 70 79 80 66 75 91 97 72 79 88 90 72 75 81 82 68 74 84 85 69 74 84 85 69 67 75 82 69 class5 70 75 80 63 70 83 88 70 78 83 88 74 75 84 90 72 75 84 90 75 75 88 97 75 70 79 85 73 74 84 93 73 74 84 89 76 class5 74 83 88 74 74 83 88 74 66 71 88 70 75 84 90 72 71 81 93 75 71 77 93 75 70 84 85 69 74 84 85 73 70 84 89 73 class5 66 63 76 66 63 60 80 66 59 53 84 70 59 60 82 68 59 60 82 68 59 57 82 68 57 56 82 65 60 60 82 65 60 60 82 69 class4 63 60 80 66 59 53 84 70 52 49 76 66 59 60 82 68 59 57 82 68 59 54 82 72 60 60 82 65 60 60 82 69 57 60 82 73 class4 52 49 76 66 52 46 80 63 56 49 73 59 59 54 82 72 56 48 75 64 52 48 75 60 57 60 82 73 53 53 78 73 53 46 78 69 class4 56 49 73 59 56 49 69 52 56 46 69 52 52 48 75 60 56 51 72 57 59 51 72 53 53 46 78 69 50 46 74 62 53 49 74 58 class4 56 53 73 63 59 53 84 66 56 49 69 59 56 51 68 60 56 51 75 68 52 51 79 68 53 53 74 58 53 53 74 65 53 53 74 69 class4 59 53 84 66 56 49 69 59 52 49 76 59 56 51 75 68 52 51 79 68 56 48 72 60 53 53 74 65 53 53 74 69 57 53 78 65 class4 46 29 117 133 43 27 133 151 43 27 127 147 52 37 110 116 46 30 124 142 42 30 124 146 42 29 114 129 42 29 119 136 44 31 124 140 class1 43 27 133 151 43 27 127 147 43 27 122 133 46 30 124 142 42 30 124 146 42 30 124 135 42 29 119 136 44 31 124 140 44 29 119 133 class1 83 95 101 79 83 99 101 83 79 95 101 83 85 97 105 80 82 92 101 80 82 92 101 76 88 98 102 79 84 98 102 79 84 102 102 79 class3 92 103 114 86 92 103 105 83 75 81 93 79 93 111 114 90 93 115 110 90 89 102 105 80 97 115 115 91 101 115 120 94 97 111 115 87 class2 46 40 105 109 49 40 105 113 46 37 114 120 47 46 105 104 53 49 101 101 50 53 101 101 64 69 98 87 68 77 90 79 64 73 98 83 class1 46 37 114 120 46 34 124 131 46 32 124 139 50 53 101 101 47 37 110 122 44 37 124 136 64 73 98 83 57 55 98 98 57 55 111 102 class1 46 32 124 139 46 30 119 131 46 32 114 127 44 37 124 136 47 37 119 133 53 43 114 119 57 55 111 102 60 69 102 87 68 73 78 65 class1 46 32 114 127 42 34 119 135 52 37 114 124 53 43 114 119 53 56 101 97 60 63 85 73 68 73 78 65 64 73 74 54 68 69 78 54 class1 52 48 105 105 59 60 97 83 63 66 79 64 67 71 78 58 67 67 67 51 60 67 70 55 64 66 64 54 64 69 64 54 64 69 71 57 class5 63 66 79 64 67 70 75 57 63 70 75 57 60 67 70 55 63 63 67 51 60 67 70 51 64 69 71 57 64 69 71 54 64 69 67 54 class5 67 70 75 57 63 70 75 57 63 70 72 53 63 63 67 51 60 67 70 51 63 67 74 55 64 69 71 54 64 69 67 54 64 69 71 54 class5 67 66 72 53 67 66 72 53 63 70 68 53 63 67 70 55 63 67 70 55 63 71 74 55 64 69 71 54 68 69 78 54 68 69 71 57 class5 67 66 72 53 63 70 68 53 67 70 72 57 63 67 70 55 63 71 74 55 63 67 74 55 68 69 78 54 68 69 71 57 68 73 71 57 class5 67 73 86 64 71 77 90 64 71 81 82 64 67 75 78 62 70 79 78 58 74 79 82 65 68 73 78 57 68 77 78 61 68 77 74 61 class5 71 81 82 64 71 81 82 64 71 81 82 64 74 79 82 65 70 79 82 62 70 79 78 65 68 77 74 61 68 73 78 61 72 77 78 57 class5 71 81 82 64 71 81 82 64 75 81 82 64 70 79 82 62 70 79 78 65 67 75 82 62 68 73 78 61 72 77 78 57 68 73 78 57 class5 75 91 90 72 79 91 90 72 79 95 97 75 74 79 89 69 78 88 93 73 82 92 93 76 68 73 82 61 76 85 86 68 80 94 94 76 class5 83 95 97 75 75 84 93 72 75 91 97 72 78 88 85 73 74 84 82 69 74 84 85 69 80 89 94 72 76 81 86 72 72 81 90 72 class5 75 84 90 72 75 84 90 75 75 88 97 75 70 79 85 73 74 84 93 73 74 84 89 76 68 73 86 72 72 81 86 72 72 77 90 72 class5 75 84 90 75 75 88 97 75 75 84 93 75 74 84 93 73 74 84 89 76 74 84 85 73 72 81 86 72 72 77 90 72 72 81 86 72 class5 75 84 93 75 75 84 90 72 71 81 93 75 74 84 85 73 70 84 85 69 74 84 85 73 72 81 86 72 72 81 82 68 72 77 82 68 class5 71 81 93 75 71 77 93 75 63 63 79 72 74 84 85 73 70 84 89 73 67 67 85 73 72 77 82 68 68 77 90 72 68 77 90 76 class5 56 48 75 64 52 48 75 60 56 51 72 57 53 53 78 73 53 46 78 69 50 46 74 62 57 52 78 72 50 46 78 76 53 49 82 65 class4 59 51 72 53 56 48 68 53 56 51 68 60 53 49 74 58 53 49 74 58 53 53 74 58 53 49 82 65 57 55 71 61 57 55 78 65 class4 52 37 110 116 46 30 124 142 42 30 124 146 42 29 114 129 42 29 119 136 44 31 124 140 44 31 111 120 44 31 115 124 44 37 115 120 class1 46 30 124 142 42 30 124 146 42 30 124 135 42 29 119 136 44 31 124 140 44 29 119 133 44 31 115 124 44 37 115 120 47 37 106 113 class1 42 30 124 135 42 30 119 127 42 28 119 127 44 29 119 133 44 34 110 115 47 37 101 101 47 37 106 113 47 37 106 109 41 34 115 113 class1 42 28 119 127 46 32 105 113 49 45 82 72 47 37 101 101 50 37 101 104 47 40 93 94 41 34 115 113 44 29 115 120 47 31 106 105 class1 97 115 119 94 97 115 114 90 89 111 114 87 97 115 120 94 97 111 115 94 97 111 115 94 97 112 118 96 101 116 122 96 101 116 122 96 class2 85 97 101 80 85 97 110 80 82 102 110 83 88 106 106 87 92 106 106 87 92 106 106 83 88 107 113 88 92 107 108 85 92 107 113 88 class2 85 97 110 80 82 102 110 83 85 106 110 83 92 106 106 87 92 106 106 83 88 106 106 87 92 107 108 85 92 107 113 88 92 107 113 88 class2 85 106 110 83 89 106 110 87 89 106 110 90 88 106 106 87 92 106 111 87 92 111 115 91 92 107 113 88 92 107 113 92 92 107 113 88 class2 67 71 89 80 50 43 97 108 44 40 105 111 80 89 98 72 64 62 94 83 60 59 98 91 92 107 113 85 84 95 104 74 71 83 100 78 class1 44 40 105 111 47 46 105 104 53 49 101 101 60 59 98 91 64 69 98 87 68 77 90 79 71 83 100 78 68 79 100 81 68 75 96 78 class1 47 37 110 122 44 37 124 136 47 37 119 133 57 55 98 98 57 55 111 102 60 69 102 87 68 75 83 70 71 75 83 63 68 71 79 59 class1 53 56 101 97 60 63 85 73 67 71 78 58 64 73 74 54 68 69 78 54 64 66 64 54 64 71 75 59 71 71 75 52 64 68 71 52 class5 60 67 70 55 63 63 67 51 60 67 70 51 64 69 71 57 64 69 71 54 64 69 67 54 64 71 71 56 60 71 75 56 64 71 75 56 class5 63 63 67 51 60 67 70 51 63 67 74 55 64 69 71 54 64 69 67 54 64 69 71 54 60 71 75 56 64 71 75 56 68 68 75 56 class5 63 67 74 55 67 67 70 55 63 67 70 55 64 69 71 54 64 66 67 54 64 69 71 54 68 68 75 56 64 68 71 52 64 71 67 59 class5 67 71 78 62 67 75 78 62 70 79 78 58 64 73 74 57 68 73 78 57 68 77 78 61 64 71 71 59 71 75 75 59 68 71 75 56 class5 70 79 82 62 70 79 78 65 67 75 82 62 68 73 78 61 72 77 78 57 68 73 78 57 68 71 71 59 68 75 71 56 68 71 75 56 class5 78 88 93 73 82 92 93 76 78 88 85 73 76 85 86 68 80 94 94 76 80 89 94 72 68 79 79 63 76 87 83 74 80 87 100 78 class5 67 75 82 69 70 75 85 69 70 75 82 69 68 77 90 72 68 73 86 72 68 69 86 76 64 64 87 78 64 68 87 78 64 71 87 74 class5 74 84 89 76 74 84 85 73 70 84 85 69 72 77 90 72 72 81 86 72 72 81 82 68 68 75 83 67 68 71 83 70 71 75 87 88 class5 74 84 85 73 70 84 85 69 74 84 85 73 72 81 86 72 72 81 82 68 72 77 82 68 68 71 83 70 71 75 87 88 71 75 83 70 class5 74 84 85 73 70 84 89 73 67 67 85 73 72 77 82 68 68 77 90 72 68 77 90 76 71 75 83 70 68 75 83 67 71 79 87 74 class5 70 84 89 73 67 67 85 73 57 56 82 73 68 77 90 72 68 77 90 76 60 59 86 72 68 75 83 67 71 79 87 74 71 71 87 74 class5 57 53 85 76 57 56 82 65 60 60 82 65 57 52 90 76 57 52 78 72 57 59 78 68 60 61 87 74 56 57 87 74 56 54 83 70 class4 57 60 82 73 53 53 78 73 53 46 78 69 60 62 86 68 57 52 78 72 50 46 78 76 64 61 83 70 60 61 83 70 56 54 83 74 class4 53 53 78 73 53 46 78 69 50 46 74 62 57 52 78 72 50 46 78 76 53 49 82 65 60 61 83 70 56 54 83 74 56 54 83 70 class4 53 46 78 69 50 46 74 62 53 49 74 58 50 46 78 76 53 49 82 65 53 49 82 65 56 54 83 74 56 54 83 70 60 54 83 70 class4 53 53 74 69 57 53 78 65 53 49 78 73 53 46 90 83 44 37 94 98 41 31 98 113 46 36 100 107 43 31 108 117 40 29 108 121 class1 42 29 114 129 42 29 119 136 44 31 124 140 44 31 111 120 44 31 115 124 44 37 115 120 50 48 96 96 46 36 104 107 43 31 104 107 class1 44 29 119 133 44 34 110 115 47 37 101 101 47 37 106 113 47 37 106 109 41 34 115 113 40 31 104 110 40 31 104 107 43 31 104 114 class1 44 34 110 115 47 37 101 101 50 37 101 104 47 37 106 109 41 34 115 113 44 29 115 120 40 31 104 107 43 31 104 114 43 29 113 114 class1 47 37 101 101 50 37 101 104 47 40 93 94 41 34 115 113 44 29 115 120 47 31 106 105 43 31 104 114 43 29 113 114 43 29 108 114 class1 97 115 120 94 97 111 115 94 97 111 115 94 97 112 118 96 101 116 122 96 101 116 122 96 97 116 118 96 97 116 123 96 93 116 123 96 class2 88 98 102 83 88 98 102 79 84 98 102 79 92 107 113 88 92 107 118 85 92 112 118 92 93 116 118 96 97 111 118 96 97 111 118 96 class2 84 102 102 79 84 102 102 83 84 98 106 83 92 112 118 88 92 107 113 85 88 103 108 81 97 116 113 92 93 111 113 92 88 111 109 87 class2 92 106 106 83 88 106 106 87 92 106 111 87 92 107 113 88 92 107 113 88 92 107 113 92 93 111 118 92 97 111 118 92 93 111 113 92 class2 88 106 106 87 92 106 111 87 92 111 115 91 92 107 113 88 92 107 113 92 92 107 113 88 97 111 118 92 93 111 113 92 93 111 109 87 class2 92 106 111 87 92 111 115 91 97 115 115 91 92 107 113 92 92 107 113 88 92 107 118 92 93 111 113 92 93 111 109 87 97 111 109 87 class2 101 115 120 94 97 111 115 87 80 89 98 72 97 112 122 88 101 112 118 92 92 107 113 85 97 111 113 87 93 107 113 92 88 111 118 92 class2 68 73 78 65 64 73 74 54 68 69 78 54 64 71 75 56 64 71 75 59 71 71 75 52 63 72 74 58 67 72 77 58 67 72 77 54 class5 64 73 74 54 68 69 78 54 64 66 64 54 64 71 75 59 71 71 75 52 64 68 71 52 67 72 77 58 67 72 77 54 67 72 77 54 class5 64 66 64 54 64 69 64 54 64 69 71 57 64 68 71 52 60 71 71 56 64 71 71 56 67 72 77 54 63 68 70 54 67 68 70 54 class5 64 69 67 54 64 69 71 54 64 66 67 54 64 71 75 56 68 68 75 56 64 68 71 52 67 72 74 54 67 72 74 54 67 72 77 54 class5 64 66 67 54 64 69 71 54 68 69 78 54 64 68 71 52 64 71 67 59 68 71 75 59 67 72 77 54 67 72 77 54 67 72 74 54 class5 64 69 71 54 68 69 78 54 68 69 71 57 64 71 67 59 68 71 75 59 64 75 75 56 67 72 77 54 67 72 74 54 67 68 74 54 class5 68 73 78 57 68 77 78 61 68 77 74 61 71 75 75 59 68 71 75 56 68 71 67 56 67 72 70 58 67 72 70 54 67 72 70 58 class5 80 89 94 72 76 81 86 72 72 81 90 72 80 87 100 78 80 87 100 74 71 75 87 74 79 95 96 75 79 91 96 75 71 75 93 79 class5 68 77 90 72 68 73 86 72 68 69 86 76 64 64 87 78 64 68 87 78 64 71 87 74 67 68 89 79 63 68 85 79 67 68 89 79 class4 72 77 82 68 68 77 90 72 68 77 90 76 71 75 83 70 68 75 83 67 71 79 87 74 67 72 85 67 67 75 81 67 71 79 89 71 class5 68 77 90 72 68 77 90 76 60 59 86 72 68 75 83 67 71 79 87 74 71 71 87 74 67 75 81 67 71 79 89 71 71 79 93 71 class5 57 52 90 76 57 52 78 72 57 59 78 68 60 61 87 74 56 57 87 74 56 54 83 70 67 68 89 75 63 61 93 79 63 58 85 75 class4 57 52 78 72 50 46 78 76 53 49 82 65 60 61 83 70 56 54 83 74 56 54 83 70 63 64 77 62 67 68 81 67 71 75 85 71 class4 57 55 71 61 57 55 78 65 57 55 82 68 56 57 83 78 53 48 91 85 53 45 96 96 48 37 100 104 48 37 104 104 51 32 100 108 class1 50 46 102 102 44 31 111 120 44 31 115 124 50 42 96 96 50 48 96 96 46 36 104 107 44 32 104 116 51 40 96 96 44 34 100 100 class1 44 31 111 120 44 31 115 124 44 37 115 120 50 48 96 96 46 36 104 107 43 31 104 107 51 40 96 96 44 34 100 100 48 29 100 100 class1 44 31 115 124 44 37 115 120 47 37 106 113 46 36 104 107 43 31 104 107 40 31 104 110 44 34 100 100 48 29 100 100 44 29 100 100 class1 47 37 106 109 41 34 115 113 44 29 115 120 40 31 104 107 43 31 104 114 43 29 113 114 44 32 104 104 44 34 104 104 44 32 109 104 class1 44 29 115 120 47 31 106 105 47 37 94 87 43 29 113 114 43 29 108 114 46 34 104 103 44 32 109 104 41 32 109 112 44 32 109 112 class1 101 116 122 96 101 116 122 96 97 116 122 96 97 116 123 96 93 116 123 96 97 116 118 96 95 118 122 96 95 118 117 92 99 113 117 96 class2 101 116 122 96 97 116 122 96 97 112 118 92 93 116 123 96 97 116 118 96 93 111 118 92 95 118 117 92 99 113 117 96 99 118 122 96 class2 88 107 113 88 92 107 108 85 92 107 113 88 88 107 109 92 97 111 113 92 93 111 118 92 90 109 117 89 90 104 117 89 95 109 112 89 class2 92 107 113 88 92 107 113 88 92 107 113 92 93 111 118 92 97 111 118 92 93 111 113 92 95 109 112 89 95 113 117 89 99 113 117 92 class2 92 107 113 88 92 107 113 92 92 107 113 88 97 111 118 92 93 111 113 92 93 111 109 87 95 113 117 89 99 113 117 92 99 113 122 96 class2 92 107 113 92 92 107 113 88 92 107 118 92 93 111 113 92 93 111 109 87 97 111 109 87 99 113 117 92 99 113 122 96 95 109 117 89 class2 97 112 122 88 101 112 118 92 92 107 113 85 97 111 113 87 93 107 113 92 88 111 118 92 95 109 117 89 90 113 112 92 90 109 108 89 class2 101 112 118 92 92 107 113 85 84 95 104 74 93 107 113 92 88 111 118 92 84 103 109 83 90 113 112 92 90 109 108 89 86 104 108 85 class2 92 107 113 85 84 95 104 74 71 83 100 78 88 111 118 92 84 103 109 83 71 79 93 71 90 109 108 89 86 104 108 85 74 91 92 74 class2 84 95 104 74 71 83 100 78 68 79 100 81 84 103 109 83 71 79 93 71 63 68 89 71 86 104 108 85 74 91 92 74 70 75 84 63 class1 71 83 100 78 68 79 100 81 68 75 96 78 71 79 93 71 63 68 89 71 67 75 77 62 74 91 92 74 70 75 84 63 63 71 73 55 class1 68 79 100 81 68 75 96 78 64 75 87 78 63 68 89 71 67 75 77 62 67 72 77 58 70 75 84 63 63 71 73 55 63 71 73 55 class5 64 75 87 78 68 75 83 70 71 75 83 63 67 72 77 58 67 68 77 54 67 72 70 54 63 71 73 55 63 67 66 55 63 67 73 55 class5 68 71 79 59 64 71 75 56 64 71 75 59 67 72 70 54 63 72 74 58 67 72 77 58 63 71 69 55 63 71 76 55 63 71 76 59 class5 68 68 75 56 64 68 71 52 64 71 67 59 67 72 74 54 67 72 77 54 67 72 77 54 66 75 73 59 66 75 76 59 66 75 76 59 class5 64 75 75 56 68 71 71 56 64 75 71 56 67 68 74 54 67 72 70 54 67 68 74 54 66 71 73 55 66 71 76 55 66 71 73 55 class5 71 75 75 59 68 71 75 56 68 71 67 56 67 72 70 58 67 72 70 54 67 72 70 58 66 71 73 55 66 71 69 55 66 71 73 55 class5 68 75 71 56 68 71 75 56 68 75 75 59 71 72 74 58 67 75 77 58 71 75 77 67 66 71 73 59 70 75 80 59 70 79 88 66 class5 80 87 100 78 80 87 100 74 71 75 87 74 79 95 96 75 79 91 96 75 71 75 93 79 78 83 84 66 78 83 92 70 78 91 96 78 class5 64 64 87 78 64 68 87 78 64 71 87 74 67 68 89 79 63 68 85 79 67 68 89 79 70 79 96 78 70 79 92 81 70 67 88 78 class4 64 68 87 78 64 71 87 74 64 71 87 78 63 68 85 79 67 68 89 79 67 68 89 75 70 79 92 81 70 67 88 78 66 71 88 78 class4 64 71 87 78 68 71 87 74 68 75 87 74 67 68 89 75 67 72 85 71 67 72 81 67 66 71 88 78 66 71 92 74 66 75 84 70 class4 68 75 83 67 68 71 83 70 71 75 87 88 67 72 81 67 71 72 77 67 67 68 81 67 66 71 84 70 66 71 80 66 66 71 80 66 class4 56 54 83 70 56 57 79 70 64 61 83 70 63 58 85 75 63 54 81 71 63 58 85 67 70 75 88 74 63 67 88 78 66 63 80 70 class4 60 61 83 70 56 54 83 74 56 54 83 70 63 64 77 62 67 68 81 67 71 75 85 71 63 67 80 63 66 71 76 63 66 79 80 63 class4 56 54 83 70 60 54 83 70 56 57 83 78 71 75 85 71 63 54 100 92 48 37 100 104 66 79 80 63 70 79 92 70 74 87 96 78 class1 60 54 83 70 56 57 83 78 53 48 91 85 63 54 100 92 48 37 100 104 48 37 104 104 70 79 92 70 74 87 96 78 63 56 104 100 class1 53 48 91 85 53 45 96 96 46 36 100 107 48 37 104 104 51 32 100 108 48 34 104 108 63 56 104 100 46 32 104 114 46 32 104 111 class1 46 36 100 107 43 31 108 117 40 29 108 121 48 34 104 108 48 37 104 112 44 29 109 121 46 32 104 111 43 32 104 114 46 34 104 118 class1 43 31 104 117 50 42 96 96 50 48 96 96 44 29 104 121 44 32 104 116 51 40 96 96 46 34 104 114 40 29 112 122 43 27 108 125 class1 46 36 104 107 43 31 104 107 40 31 104 110 44 34 100 100 48 29 100 100 44 29 100 100 46 29 108 122 49 40 96 100 49 40 92 92 class1 40 31 104 107 43 31 104 114 43 29 113 114 44 32 104 104 44 34 104 104 44 32 109 104 43 32 104 107 43 29 104 107 43 32 100 107 class1 43 29 113 114 43 29 108 114 46 34 104 103 44 32 109 104 41 32 109 112 44 32 109 112 43 32 100 107 43 32 100 103 40 32 100 107 class1 97 116 118 96 97 116 123 96 93 116 123 96 99 113 117 92 95 118 122 96 95 118 117 92 92 112 110 90 96 112 119 90 96 112 114 94 class2 97 116 123 96 93 116 123 96 97 116 118 96 95 118 122 96 95 118 117 92 99 113 117 96 96 112 119 90 96 112 114 94 96 117 119 94 class2 97 111 118 96 97 116 113 92 93 111 113 92 104 113 127 96 99 118 117 92 95 113 122 92 96 112 114 94 96 112 114 98 92 112 119 90 class2 97 116 113 92 93 111 113 92 88 111 109 87 99 118 117 92 95 113 122 92 95 113 112 89 96 112 114 98 92 112 119 90 92 112 114 90 class2 93 111 113 92 93 111 109 87 97 111 109 87 99 113 117 92 99 113 122 96 95 109 117 89 96 117 119 94 92 117 114 90 92 108 105 86 class2 88 111 118 92 84 103 109 83 71 79 93 71 90 109 108 89 86 104 108 85 74 91 92 74 75 84 90 68 75 77 82 57 67 73 75 49 class2 63 68 89 71 67 75 77 62 67 72 77 58 70 75 84 63 63 71 73 55 63 71 73 55 63 66 72 53 63 70 75 53 59 66 72 53 class5 67 72 77 58 67 68 77 54 67 72 70 54 63 71 73 55 63 67 66 55 63 67 73 55 59 66 72 53 63 66 75 57 63 70 75 57 class5 67 68 77 54 67 72 70 54 67 72 70 54 63 67 66 55 63 67 73 55 63 71 69 55 63 66 75 57 63 70 75 57 63 70 75 57 class5 67 72 70 54 63 72 74 58 67 72 77 58 63 71 69 55 63 71 76 55 63 71 76 59 63 70 75 57 67 73 79 57 67 73 75 60 class5 67 72 77 54 63 68 70 54 67 68 70 54 63 75 76 59 66 75 80 59 66 75 73 55 67 73 79 60 67 73 82 60 71 77 82 60 class5 67 68 70 54 67 72 74 54 67 72 74 54 63 71 73 55 63 71 73 55 66 75 73 59 67 73 75 57 67 81 82 60 67 81 82 64 class5 67 72 74 54 67 72 77 54 67 72 77 54 66 75 73 59 66 75 76 59 66 75 76 59 67 81 82 64 67 77 82 64 63 77 75 60 class5 67 72 77 54 67 72 77 54 67 72 74 54 66 75 76 59 66 75 76 59 66 79 80 59 67 77 82 64 63 77 75 60 71 84 86 64 class5 67 68 74 54 67 72 70 54 67 68 74 54 66 71 73 55 66 71 76 55 66 71 73 55 71 81 79 68 71 73 82 60 67 73 72 57 class5 67 72 70 54 67 72 70 58 67 72 74 58 66 71 69 55 66 71 73 55 70 71 73 55 63 70 72 57 67 77 72 60 71 77 72 64 class5 71 75 77 67 71 79 81 67 75 83 85 67 70 79 88 66 74 79 88 66 74 83 88 70 71 81 79 64 67 73 79 60 71 77 86 60 class5 79 91 96 75 71 75 93 79 67 68 93 79 78 83 92 70 78 91 96 78 78 83 88 74 75 91 97 75 83 95 105 79 83 99 105 75 class5 67 72 85 71 67 72 81 67 67 72 81 67 66 71 92 74 66 75 84 70 66 71 84 70 67 73 90 75 67 73 90 75 63 70 86 75 class4 67 72 81 67 67 72 81 67 71 72 77 67 66 75 84 70 66 71 84 70 66 71 80 66 67 73 90 75 63 70 86 75 63 70 82 72 class4 71 79 89 71 71 79 93 71 67 68 89 75 66 75 80 70 66 75 88 70 70 79 88 74 67 73 86 72 71 77 90 72 71 81 90 75 class5 67 68 89 75 63 61 93 79 63 58 85 75 70 79 88 74 70 79 88 74 70 75 88 74 71 81 90 75 71 84 93 75 75 88 93 75 class3 63 58 85 75 63 54 81 71 63 58 85 67 70 75 88 74 63 67 88 78 66 63 80 70 75 88 93 75 75 77 86 68 71 73 79 60 class3 63 58 85 67 63 64 77 62 67 68 81 67 66 63 80 70 63 67 80 63 66 71 76 63 71 73 79 60 67 66 75 60 67 66 68 60 class4 67 68 81 67 71 75 85 71 63 54 100 92 66 71 76 63 66 79 80 63 70 79 92 70 67 66 68 60 71 73 75 60 71 77 79 64 class3 48 37 104 104 51 32 100 108 48 34 104 108 63 56 104 100 46 32 104 114 46 32 104 111 71 81 93 83 59 51 101 113 46 32 101 116 class1 44 29 109 121 44 29 104 121 44 32 104 116 46 34 104 118 46 34 104 114 40 29 112 122 42 30 101 120 46 32 105 116 46 32 105 120 class1 51 40 96 96 44 34 100 100 48 29 100 100 43 27 108 125 46 29 108 122 49 40 96 100 42 32 101 127 46 30 110 127 46 32 110 120 class1 44 29 100 100 44 32 104 104 44 34 104 104 49 40 92 92 43 32 104 107 43 29 104 107 49 40 97 101 46 32 110 113 39 30 101 113 class1 44 34 104 104 44 32 109 104 41 32 109 112 43 29 104 107 43 32 100 107 43 32 100 103 39 30 101 113 42 30 105 113 42 30 105 116 class1 41 32 109 112 44 32 109 112 48 37 104 100 43 32 100 103 40 32 100 107 43 29 104 107 42 30 105 116 42 32 105 109 42 30 101 109 class1 95 113 117 96 104 113 127 96 99 118 117 92 96 112 119 94 96 112 114 94 96 112 114 98 97 115 119 97 97 111 119 94 97 115 114 94 class2 95 113 112 89 90 109 117 89 90 104 117 89 92 112 114 90 92 108 114 94 92 108 114 90 97 115 114 90 93 111 114 94 89 111 114 87 class2 95 109 112 89 95 113 117 89 99 113 117 92 96 108 110 90 96 112 114 94 96 117 119 94 93 111 110 87 93 111 114 90 93 111 114 87 class2 95 109 117 89 90 113 112 92 90 109 108 89 87 99 105 83 83 95 97 79 75 84 90 68 82 88 97 73 78 84 89 69 67 71 74 55 class5 86 104 108 85 74 91 92 74 70 75 84 63 75 77 82 57 67 73 75 49 63 66 72 53 67 67 70 48 63 67 70 51 63 67 74 51 class5 74 91 92 74 70 75 84 63 63 71 73 55 67 73 75 49 63 66 72 53 63 70 75 53 63 67 70 51 63 67 74 51 60 67 78 55 class5 63 67 66 55 63 67 73 55 63 71 69 55 63 66 75 57 63 70 75 57 63 70 75 57 63 67 74 58 63 71 78 55 67 71 78 58 class5 63 71 76 59 63 75 76 59 63 75 76 59 67 73 75 60 67 73 75 60 67 73 79 60 63 71 74 58 67 75 78 58 67 79 82 62 class5 63 75 76 59 63 75 76 59 66 75 80 59 67 73 75 60 67 73 79 60 67 73 82 60 67 75 78 58 67 79 82 62 67 75 82 62 class5 66 75 73 55 63 71 73 55 63 71 73 55 71 77 82 60 67 73 75 57 67 81 82 60 67 75 78 58 70 75 78 58 67 79 82 62 class5 66 75 73 59 66 75 76 59 66 75 76 59 67 81 82 64 67 77 82 64 63 77 75 60 67 75 82 58 63 75 78 55 63 75 78 58 class5 66 71 73 55 70 71 73 55 66 71 73 59 67 77 72 60 71 77 72 64 71 81 82 64 70 79 82 65 70 79 85 65 70 79 85 69 class5 74 79 88 66 74 83 88 70 70 79 88 66 67 73 79 60 71 77 86 60 75 81 82 64 67 79 85 62 67 84 89 69 74 88 93 73 class5 78 83 92 70 78 91 96 78 78 83 88 74 75 91 97 75 83 95 105 79 83 99 105 75 78 92 93 76 78 92 93 76 85 97 101 76 class5 70 79 92 81 70 67 88 78 66 71 88 78 71 81 93 79 71 77 93 79 71 73 93 79 74 84 89 73 70 84 97 80 70 75 93 76 class4 70 67 88 78 66 71 88 78 66 71 92 74 71 77 93 79 71 73 93 79 67 73 90 75 70 84 97 80 70 75 93 76 67 75 89 76 class4 66 71 88 78 66 71 92 74 66 75 84 70 71 73 93 79 67 73 90 75 67 73 90 75 70 75 93 76 67 75 89 76 67 75 89 80 class4 66 71 80 66 63 71 73 66 66 71 80 66 63 66 82 68 63 66 82 68 63 70 82 68 67 79 89 76 70 79 89 80 70 84 89 73 class4 70 79 88 74 70 79 88 74 70 75 88 74 71 81 90 75 71 84 93 75 75 88 93 75 74 84 97 76 74 88 97 76 74 79 89 73 class3 70 79 88 74 70 75 88 74 63 67 88 78 71 84 93 75 75 88 93 75 75 77 86 68 74 88 97 76 74 79 89 73 67 79 85 65 class3 74 87 96 78 63 56 104 100 46 32 104 114 75 81 86 72 71 81 93 83 59 51 101 113 67 75 85 65 70 84 89 76 74 79 97 94 class1 46 32 104 114 46 32 104 111 43 32 104 114 59 51 101 113 46 32 101 116 46 32 101 116 74 79 97 94 53 43 105 115 50 34 105 115 class1 46 32 104 111 43 32 104 114 46 34 104 118 46 32 101 116 46 32 101 116 42 30 101 120 53 43 105 115 50 34 105 115 47 34 101 111 class1 40 29 112 122 43 27 108 125 46 29 108 122 46 32 105 120 42 32 101 127 46 30 110 127 44 31 105 122 44 31 110 129 42 29 110 126 class1 43 29 104 107 43 32 100 107 43 32 100 103 39 30 101 113 42 30 105 113 42 30 105 116 44 29 114 126 44 29 105 119 44 29 101 115 class1 96 112 119 90 96 112 114 94 96 117 119 94 93 115 114 90 93 115 114 90 101 120 119 94 92 111 115 91 97 115 120 94 101 120 120 98 class2 96 117 119 94 96 117 119 94 96 117 119 94 101 120 119 94 97 120 124 97 97 115 119 94 101 120 120 98 101 120 120 94 101 115 120 94 class2 96 112 119 94 96 112 114 94 96 112 114 98 97 115 119 97 97 111 119 94 97 115 114 94 97 115 125 94 92 115 115 94 92 111 111 91 class2 96 112 114 98 92 112 119 90 92 112 114 90 97 115 114 94 93 106 114 90 93 111 114 90 92 111 111 91 92 111 115 91 88 106 111 91 class2 92 112 114 90 92 112 114 90 92 108 114 94 93 111 114 90 97 115 114 90 93 111 114 94 88 106 111 91 88 106 111 87 88 106 111 91 class2 92 108 114 94 92 108 114 90 96 108 110 90 93 111 114 94 89 111 114 87 93 111 110 87 88 106 111 91 84 106 111 83 84 98 102 83 class2 92 108 114 90 96 108 110 90 96 112 114 94 89 111 114 87 93 111 110 87 93 111 114 90 84 106 111 83 84 98 102 83 84 106 111 83 class2 92 117 114 90 92 108 105 86 87 99 105 83 89 106 110 87 85 97 105 80 82 88 97 73 80 106 102 79 80 98 98 76 80 94 94 72 class2 75 77 82 57 67 73 75 49 63 66 72 53 67 67 70 48 63 67 70 51 63 67 74 51 64 66 71 54 64 69 71 54 64 69 74 54 class5 63 70 75 53 59 66 72 53 63 66 75 57 60 67 78 55 60 67 74 55 63 67 74 58 64 69 74 57 64 73 74 57 68 77 74 57 class5 59 66 72 53 63 66 75 57 63 70 75 57 60 67 74 55 63 67 74 58 63 71 78 55 64 73 74 57 68 77 74 57 64 73 74 57 class5 67 73 79 57 67 73 75 60 67 73 75 60 63 75 78 58 63 71 74 58 67 75 78 58 64 73 82 61 64 73 86 61 64 73 78 57 class5 67 73 75 60 67 73 75 60 67 73 79 60 63 71 74 58 67 75 78 58 67 79 82 62 64 73 86 61 64 73 78 57 64 73 78 61 class5 67 73 79 60 67 73 82 60 71 77 82 60 67 79 82 62 67 75 82 62 67 75 78 58 64 73 78 61 64 73 78 61 68 73 78 57 class5 67 73 82 60 71 77 82 60 67 73 75 57 67 75 82 62 67 75 78 58 70 75 78 58 64 73 78 61 68 73 78 57 72 73 82 61 class5 67 73 75 57 67 81 82 60 67 81 82 64 70 75 78 58 67 79 82 62 67 75 82 58 72 73 82 61 72 77 74 57 68 77 74 57 class5 71 84 86 64 71 81 79 68 71 73 82 60 67 75 82 65 70 84 82 62 70 75 78 65 64 69 74 57 68 73 74 57 64 73 74 57 class5 71 77 72 64 71 81 82 64 71 81 86 68 70 79 85 65 70 79 85 69 74 79 82 65 72 81 82 65 72 81 82 65 76 81 82 65 class5 71 77 86 60 75 81 82 64 75 84 82 68 67 84 89 69 74 88 93 73 78 92 93 73 76 85 90 72 76 89 94 76 76 85 94 76 class5 79 84 93 75 71 81 93 79 71 77 93 79 82 92 97 80 74 84 89 73 70 84 97 80 80 94 98 76 76 85 90 76 72 81 90 76 class5 67 73 90 75 63 70 86 75 63 70 82 72 67 75 89 80 67 79 93 76 70 75 89 76 80 94 102 83 80 94 102 83 80 94 106 83 class4 63 66 82 68 63 66 82 68 63 70 82 68 67 79 89 76 70 79 89 80 70 84 89 73 72 98 106 83 80 98 102 87 76 94 98 83 class4 67 66 68 60 71 73 75 60 71 77 79 64 67 79 82 62 70 75 78 58 67 75 82 69 72 85 86 72 72 77 82 68 68 73 78 61 class3 71 77 79 64 75 81 86 72 71 81 93 83 67 75 82 69 67 75 85 65 70 84 89 76 68 73 78 61 64 73 74 65 72 81 86 72 class3 42 30 101 120 46 32 105 116 46 32 105 120 47 34 101 111 44 31 101 119 44 31 105 122 44 34 102 109 47 34 106 113 47 34 106 116 class1 46 32 110 120 49 40 97 101 46 32 110 113 42 27 110 129 44 34 110 122 50 37 110 119 41 29 111 128 44 31 106 124 47 34 102 113 class1 46 32 110 113 39 30 101 113 42 30 105 113 50 37 110 119 44 29 114 126 44 29 105 119 47 34 102 113 50 34 106 113 47 37 106 116 class1 39 30 101 113 42 30 105 113 42 30 105 116 44 29 114 126 44 29 105 119 44 29 101 115 50 34 106 113 47 37 106 116 53 49 98 94 class1 42 30 105 116 42 32 105 109 42 30 101 109 44 29 101 115 44 34 105 104 47 43 101 97 53 49 98 94 60 66 94 79 68 77 94 72 class1 93 111 114 90 93 115 114 90 93 115 114 90 92 106 115 91 92 111 115 91 97 115 120 94 92 107 113 92 97 112 118 96 101 116 122 96 class2 93 115 114 90 93 115 114 90 101 120 119 94 92 111 115 91 97 115 120 94 101 120 120 98 97 112 118 96 101 116 122 96 101 116 122 96 class2 97 120 124 97 97 115 119 94 97 115 119 97 101 120 120 94 101 115 120 94 97 115 125 94 101 116 122 96 101 112 122 96 97 112 122 92 class2 93 111 114 90 97 115 114 90 93 111 114 94 88 106 111 91 88 106 111 87 88 106 111 91 92 107 118 88 88 103 104 85 84 99 104 81 class2 89 111 114 87 93 111 110 87 93 111 114 90 84 106 111 83 84 98 102 83 84 106 111 83 84 99 104 81 84 99 108 85 84 107 113 85 class3 93 111 114 90 93 111 114 87 89 106 110 87 84 106 111 83 80 106 106 79 80 106 102 79 84 107 113 85 84 107 113 85 88 103 108 85 class3 89 106 110 87 85 97 105 80 82 88 97 73 80 106 102 79 80 98 98 76 80 94 94 72 88 103 108 85 84 99 104 78 76 87 91 74 class3 60 67 78 55 60 67 74 55 63 67 74 58 64 69 74 57 64 73 74 57 68 77 74 57 64 75 79 56 64 75 79 59 64 75 79 59 class5 60 67 74 55 63 67 74 58 63 71 78 55 64 73 74 57 68 77 74 57 64 73 74 57 64 75 79 59 64 75 79 59 64 75 75 63 class5 67 79 82 62 67 75 82 62 67 75 78 58 64 73 78 61 64 73 78 61 68 73 78 57 68 79 79 63 64 75 79 59 68 75 79 59 class5 67 75 78 58 70 75 78 58 67 79 82 62 68 73 78 57 72 73 82 61 72 77 74 57 68 75 79 59 64 75 79 59 68 75 75 59 class5 70 75 78 58 67 79 82 62 67 75 82 58 72 73 82 61 72 77 74 57 68 77 74 57 64 75 79 59 68 75 75 59 64 75 75 52 class5 67 79 82 62 67 75 82 58 63 75 78 55 72 77 74 57 68 77 74 57 64 73 82 61 68 75 75 59 64 75 75 52 64 68 75 56 class5 63 75 78 58 67 75 82 65 70 84 82 62 64 73 78 57 64 69 74 57 68 73 74 57 64 68 71 56 64 71 71 56 68 71 71 59 class5 67 75 82 65 70 84 82 62 70 75 78 65 64 69 74 57 68 73 74 57 64 73 74 57 64 71 71 56 68 71 71 59 68 71 75 56 class5 70 84 82 62 70 75 78 65 67 79 78 58 68 73 74 57 64 73 74 57 64 69 78 61 68 71 71 59 68 71 75 56 68 71 75 59 class5 67 75 78 62 70 75 82 62 70 79 82 65 68 77 82 61 68 77 74 61 68 77 78 61 68 75 79 63 68 79 79 59 68 75 83 63 class5 74 79 85 62 67 79 85 62 67 84 89 69 72 85 86 68 72 81 86 68 76 85 90 72 71 83 87 63 71 83 83 70 71 83 83 67 class5 67 79 85 62 67 84 89 69 74 88 93 73 72 81 86 68 76 85 90 72 76 89 94 76 71 83 83 70 71 83 83 67 80 87 91 74 class5 74 88 93 73 78 92 93 73 78 92 93 76 76 89 94 76 76 85 94 76 76 98 98 76 80 87 91 74 76 91 96 74 76 91 96 74 class5 85 97 101 76 82 92 97 80 74 84 89 73 80 94 98 76 80 94 98 76 76 85 90 76 80 87 91 74 80 91 100 78 80 91 100 78 class5 74 79 89 73 67 79 85 65 67 75 78 62 68 85 98 87 72 89 94 79 72 85 90 76 76 103 108 92 76 103 108 92 71 95 104 81 class3 67 75 78 65 67 79 82 62 70 75 78 58 72 81 86 72 72 85 86 72 72 77 82 68 76 91 100 81 76 91 96 81 76 83 87 67 class3 47 34 101 111 44 31 101 119 44 31 105 122 44 34 102 109 47 34 106 113 47 34 106 116 46 34 104 110 46 34 100 107 43 36 104 114 class1 44 31 110 129 42 29 110 126 42 27 110 129 44 31 111 124 44 29 111 128 41 29 111 128 46 34 108 121 40 31 104 125 40 29 113 132 class1 42 27 110 129 44 34 110 122 50 37 110 119 41 29 111 128 44 31 106 124 47 34 102 113 40 29 113 132 40 29 113 128 43 31 108 121 class1 50 37 110 119 44 29 114 126 44 29 105 119 47 34 102 113 50 34 106 113 47 37 106 116 43 31 108 121 50 45 100 99 64 68 91 78 class1 92 111 115 91 97 115 120 94 101 120 120 98 97 112 118 96 101 116 122 96 101 116 122 96 93 116 118 92 97 121 123 96 97 116 123 100 class2 97 115 120 94 101 120 120 98 101 120 120 94 101 116 122 96 101 116 122 96 101 116 122 96 97 121 123 96 97 116 123 100 97 116 123 96 class2 97 115 125 94 92 115 115 94 92 111 111 91 97 112 122 92 92 107 118 96 92 107 118 88 97 116 118 96 93 111 118 92 93 107 113 87 class2 92 111 111 91 92 111 115 91 88 106 111 91 92 107 118 88 92 112 113 92 92 107 118 88 93 107 113 87 88 107 109 83 84 99 109 79 class2 88 106 111 91 88 106 111 87 88 106 111 91 92 107 118 88 88 103 104 85 84 99 104 81 84 99 109 79 79 95 100 79 84 103 109 79 class2 80 98 98 76 80 94 94 72 72 85 82 68 84 99 104 78 76 87 91 74 76 79 87 63 84 99 100 79 79 91 93 71 71 79 85 62 class5 72 85 82 68 64 69 71 54 64 66 71 54 76 79 87 63 68 68 75 52 64 68 67 56 71 79 85 62 67 72 70 50 63 68 70 54 class5 64 69 74 54 64 69 74 57 64 73 74 57 68 75 75 56 64 75 79 56 64 75 79 59 67 72 77 54 63 72 77 58 67 75 77 58 class5 64 73 86 61 64 73 78 57 64 73 78 61 68 75 75 59 68 75 75 59 68 79 79 63 71 75 77 58 71 79 81 58 67 79 77 58 class5 64 73 78 61 64 73 78 61 68 73 78 57 68 79 79 63 64 75 79 59 68 75 79 59 67 79 77 58 67 75 81 58 67 72 74 58 class5 64 73 74 57 64 69 78 61 68 73 78 61 68 71 75 56 68 71 75 59 64 75 75 59 63 68 70 54 67 68 74 58 67 72 74 58 class5 64 69 78 61 68 73 78 61 68 77 82 61 68 71 75 59 64 75 75 59 68 75 79 63 67 68 74 58 67 72 74 58 67 72 74 58 class5 68 77 82 61 68 77 74 61 68 77 78 61 68 75 79 63 68 79 79 59 68 75 83 63 67 72 74 58 71 72 85 62 71 79 81 67 class5 68 77 74 61 68 77 78 61 72 81 82 65 68 79 79 59 68 75 83 63 71 79 87 63 71 72 85 62 71 79 81 67 71 79 85 62 class5 68 77 78 61 72 81 82 65 72 81 82 65 68 75 83 63 71 79 87 63 71 83 83 63 71 79 81 67 71 79 85 62 71 79 85 62 class5 76 81 82 65 72 85 86 68 72 81 86 68 76 79 79 67 71 83 87 63 71 83 83 70 71 79 85 62 71 79 85 67 71 83 85 67 class5 76 85 94 76 76 98 98 76 80 98 98 76 76 91 96 74 76 91 96 74 76 91 100 74 71 87 89 71 75 83 89 71 75 87 93 71 class5 80 94 98 76 76 85 90 76 72 81 90 76 80 91 100 78 80 91 100 78 80 91 96 78 79 95 100 79 79 99 109 83 79 103 109 87 class5 68 73 78 61 64 73 74 65 72 81 86 72 68 83 79 67 68 83 83 70 68 79 83 67 71 79 85 67 63 75 81 67 67 79 85 67 class3 44 34 102 109 47 34 106 113 47 34 106 116 46 34 104 110 46 34 100 107 43 36 104 114 55 48 104 108 44 32 104 112 44 34 109 112 class1 44 31 111 124 44 29 111 128 41 29 111 128 46 34 108 121 40 31 104 125 40 29 113 132 41 37 104 116 41 32 104 121 44 32 109 125 class1 44 31 106 124 47 34 102 113 50 34 106 113 40 29 113 128 43 31 108 121 50 45 100 99 41 29 113 129 44 29 113 129 48 37 109 112 class1 50 34 106 113 47 37 106 116 53 49 98 94 50 45 100 99 64 68 91 78 68 83 87 70 48 37 109 112 63 64 93 75 71 83 85 67 class1 97 112 122 92 92 107 118 96 92 107 118 88 97 116 118 96 93 111 118 92 93 107 113 87 90 109 112 89 90 104 108 85 86 109 104 81 class2 92 107 118 88 88 103 104 85 84 99 104 81 84 99 109 79 79 95 100 79 84 103 109 79 86 104 104 85 86 104 104 81 86 100 108 85 class3 84 99 104 81 84 99 108 85 84 107 113 85 88 107 109 83 88 107 109 87 88 107 113 87 86 104 108 89 86 109 112 89 90 113 122 92 class3 84 99 108 85 84 107 113 85 84 107 113 85 88 107 109 87 88 107 113 87 84 107 113 87 86 109 112 89 90 113 122 92 90 109 112 89 class3 68 75 75 59 68 75 75 59 68 75 75 59 67 83 77 58 71 75 77 58 71 79 81 58 66 75 76 59 66 75 84 63 66 79 80 59 class5 68 75 75 59 68 79 79 63 64 75 79 59 71 79 81 58 67 79 77 58 67 75 81 58 66 79 80 59 66 75 80 59 66 75 80 59 class5 68 79 79 63 64 75 79 59 68 75 79 59 67 79 77 58 67 75 81 58 67 72 74 58 66 75 80 59 66 75 80 59 66 75 76 59 class5 64 75 79 59 68 75 75 59 64 75 75 52 63 72 74 58 67 75 74 58 71 75 77 54 63 71 76 59 63 71 76 59 63 75 80 59 class5 64 75 75 52 64 68 75 56 64 68 71 56 71 75 77 54 67 72 74 54 67 75 70 54 63 75 80 59 66 75 80 59 66 79 76 59 class5 64 68 71 56 64 71 71 56 68 71 71 59 67 75 70 54 67 75 74 58 63 72 74 58 66 79 76 59 66 79 80 63 66 75 76 59 class5 68 71 75 56 68 71 75 59 64 75 75 59 63 68 70 54 67 68 74 58 67 72 74 58 59 71 73 55 63 71 73 59 63 75 73 59 class5 71 83 83 70 71 83 83 67 80 87 91 74 71 83 85 67 75 83 89 67 71 79 89 71 66 79 88 63 70 83 88 66 70 79 92 66 class5 68 83 79 67 68 83 83 70 68 79 83 67 71 79 85 67 63 75 81 67 67 79 85 67 70 87 92 78 70 79 84 70 66 79 80 70 class3 68 79 83 67 71 83 96 74 71 87 96 81 67 79 85 67 75 79 89 71 75 83 93 71 66 79 80 70 70 79 80 66 70 79 80 66 class3 71 87 96 81 60 61 104 103 46 34 104 110 75 83 93 71 75 79 100 83 55 48 104 108 70 79 80 66 70 83 92 74 74 83 100 85 class1 46 34 108 121 40 31 104 125 40 29 113 132 41 37 104 116 41 32 104 121 44 32 109 125 46 32 100 107 46 34 104 107 46 32 104 114 class1 40 31 104 125 40 29 113 132 40 29 113 128 41 32 104 121 44 32 109 125 41 29 113 129 46 34 104 107 46 32 104 114 46 27 108 129 class1 68 83 87 70 71 83 91 70 71 83 87 63 71 83 85 67 67 79 85 67 67 79 85 62 66 67 80 59 70 79 84 63 70 83 88 66 class3 88 111 113 92 93 116 118 92 97 121 123 96 95 118 117 96 99 118 122 96 95 118 122 96 96 112 124 94 96 117 130 98 96 117 114 94 class2 97 121 123 96 97 116 123 100 97 116 123 96 95 118 122 96 99 118 127 100 99 118 117 96 96 117 114 94 96 112 114 90 87 103 105 86 class2 97 116 123 96 97 111 118 96 97 116 118 96 99 118 117 96 95 113 112 92 90 109 112 89 87 103 105 86 92 108 114 90 92 112 119 90 class2 97 116 118 96 93 111 118 92 93 107 113 87 90 109 112 89 90 104 108 85 86 109 104 81 92 112 119 90 92 108 110 94 92 108 110 90 class2 93 111 118 92 93 107 113 87 88 107 109 83 90 104 108 85 86 109 104 81 86 104 112 85 92 108 110 94 92 108 110 90 83 108 114 86 class3 84 103 109 79 88 107 109 83 88 107 109 87 86 100 108 85 86 104 108 89 86 109 112 89 87 103 105 83 83 103 114 86 87 112 119 90 class3 88 107 109 87 88 107 113 87 84 107 113 87 86 109 112 89 90 113 122 92 90 109 112 89 87 112 119 90 92 112 114 90 87 103 105 83 class3 84 99 100 79 79 91 93 71 71 79 85 62 78 91 96 70 74 83 88 66 74 83 88 66 71 84 82 64 71 77 86 68 71 81 82 60 class5 67 79 77 58 67 75 81 58 67 72 74 58 66 75 80 59 66 75 80 59 66 75 76 59 67 73 75 60 67 73 79 57 67 73 72 60 class5 71 75 77 54 67 72 74 54 67 75 70 54 63 75 80 59 66 75 80 59 66 79 76 59 63 73 79 57 67 81 82 60 67 77 86 60 class5 63 72 74 58 63 68 70 54 67 68 74 58 66 75 76 59 59 71 73 55 63 71 73 59 63 73 75 60 67 73 72 57 63 70 75 57 class5 63 68 70 54 67 68 74 58 67 72 74 58 59 71 73 55 63 71 73 59 63 75 73 59 67 73 72 57 63 70 75 57 67 73 79 60 class5 67 68 74 58 67 72 74 58 67 72 74 58 63 71 73 59 63 75 73 59 63 75 73 55 63 70 75 57 67 73 79 60 67 70 75 60 class5 71 79 85 62 71 79 85 67 71 83 85 67 70 79 80 63 70 79 80 63 66 79 88 63 63 77 79 64 67 77 75 60 67 77 79 64 class5 55 48 104 108 44 32 104 112 44 34 109 112 74 83 100 85 59 49 104 107 46 32 108 114 75 84 97 72 75 70 101 94 56 42 97 113 class1 44 34 109 112 41 37 104 116 41 32 104 121 46 32 108 114 46 32 100 107 46 34 104 107 56 42 97 113 46 34 93 105 49 37 97 98 class1 41 37 104 116 41 32 104 121 44 32 109 125 46 32 100 107 46 34 104 107 46 32 104 114 46 34 93 105 49 37 97 98 52 40 97 101 class1 44 32 109 125 41 29 113 129 44 29 113 129 46 32 104 114 46 27 108 129 43 29 108 129 52 40 97 101 52 40 97 105 52 48 90 98 class1 95 113 112 92 90 109 112 89 90 104 108 85 92 108 114 90 92 112 119 90 92 108 110 94 97 115 124 101 93 120 124 97 93 120 119 97 class2 86 104 104 81 86 100 108 85 86 104 108 89 87 103 105 83 87 103 105 83 83 103 114 86 89 106 105 87 85 106 114 87 85 111 114 90 class3 63 71 69 55 66 75 76 55 66 75 80 59 67 73 75 57 67 73 79 57 67 73 79 60 67 79 82 62 70 79 82 58 63 79 78 58 class5 66 75 80 59 66 75 80 59 66 79 76 59 67 73 79 60 71 77 79 60 71 77 82 60 63 79 78 58 67 75 78 62 67 79 78 62 class5 66 75 80 59 66 75 80 59 66 75 76 59 67 73 75 60 67 73 79 57 67 73 72 60 67 71 82 62 63 75 82 62 63 75 78 62 class5 63 71 76 59 63 71 76 59 63 75 80 59 63 70 72 57 63 73 75 57 63 73 79 57 63 79 85 62 67 79 82 58 67 75 82 62 class5 63 71 76 59 63 75 80 59 66 75 80 59 63 73 75 57 63 73 79 57 67 81 82 60 67 79 82 58 67 75 82 62 67 75 82 62 class5 59 71 73 55 63 71 73 59 63 75 73 59 67 73 72 57 63 70 75 57 67 73 79 60 63 71 70 55 63 71 70 58 63 71 78 58 class5 63 75 73 59 63 75 73 55 66 75 76 59 67 73 79 60 67 70 75 60 67 73 75 57 63 71 78 58 63 67 74 62 63 75 74 62 class5 70 79 80 63 66 79 88 63 70 83 88 66 67 77 75 60 67 77 79 64 67 84 82 64 63 79 85 62 67 79 82 65 63 79 85 65 class5 70 79 80 66 70 79 80 66 70 83 92 74 71 81 82 75 71 84 90 72 71 84 86 72 67 84 89 73 70 84 89 76 74 88 89 73 class3 70 79 80 66 70 83 92 74 74 83 100 85 71 84 90 72 71 84 86 72 75 84 97 72 70 84 89 76 74 88 89 73 74 84 89 73 class3 70 83 92 74 74 83 100 85 59 49 104 107 71 84 86 72 75 84 97 72 75 70 101 94 74 88 89 73 74 84 89 73 74 84 97 76 class3 74 83 100 85 59 49 104 107 46 32 108 114 75 84 97 72 75 70 101 94 56 42 97 113 74 84 89 73 74 84 97 76 70 67 101 94 class1 46 34 104 107 46 32 104 114 46 27 108 129 49 37 97 98 52 40 97 101 52 40 97 105 53 49 93 90 60 56 85 83 63 71 85 73 class1 96 112 124 94 96 117 130 98 96 117 114 94 97 111 114 90 89 102 101 83 82 88 89 73 72 81 86 65 68 77 74 57 64 73 78 54 class2 92 112 119 90 92 108 110 94 92 108 110 90 93 120 124 97 93 120 119 97 89 115 114 87 97 120 120 102 92 120 120 98 88 120 120 91 class2 83 103 114 86 87 112 119 90 92 112 114 90 85 111 114 90 89 111 114 83 89 106 110 83 88 102 111 87 88 102 102 83 84 98 102 79 class3 71 81 82 60 67 77 75 57 67 73 75 57 70 79 85 62 70 84 82 58 67 79 82 62 68 81 82 65 68 81 82 65 72 77 82 61 class5 67 77 82 60 67 77 75 60 63 73 82 57 63 71 78 62 63 75 78 55 67 75 78 58 64 77 74 57 64 77 74 57 64 77 78 61 class5 63 73 75 57 63 73 79 57 67 81 82 60 67 79 82 58 67 75 82 62 67 75 82 62 68 81 78 61 68 77 78 61 68 77 78 57 class5 63 70 75 57 67 73 79 60 67 70 75 60 63 71 70 58 63 71 78 58 63 67 74 62 68 69 74 57 64 69 74 57 68 69 74 57 class5 67 73 79 60 67 70 75 60 67 73 75 57 63 71 78 58 63 67 74 62 63 75 74 62 64 69 74 57 68 69 74 57 64 73 74 57 class5 67 73 75 57 67 77 75 60 67 77 82 60 63 75 74 62 63 71 74 58 63 71 78 62 64 73 74 57 64 73 74 57 64 73 78 61 class5 63 77 82 60 63 77 79 64 67 77 75 60 67 75 78 62 63 75 85 58 63 79 85 62 64 77 78 65 68 77 86 65 64 77 82 65 class5 63 77 79 64 67 77 75 60 67 77 79 64 63 75 85 58 63 79 85 62 67 79 82 65 68 77 86 65 64 77 82 65 64 77 82 65 class5 67 81 82 68 67 84 86 68 67 84 82 68 63 79 89 65 63 79 82 65 60 79 85 65 60 77 82 65 60 77 82 68 64 81 86 72 class5 75 103 110 86 71 99 105 83 67 91 97 83 74 115 119 101 70 111 114 90 63 97 105 80 72 115 125 98 72 115 120 98 72 106 111 91 class0 71 81 90 72 71 81 82 75 71 84 90 72 67 84 93 76 67 84 89 73 70 84 89 76 64 81 86 72 68 81 86 68 72 85 86 68 class3 71 84 90 72 71 84 86 72 75 84 97 72 70 84 89 76 74 88 89 73 74 84 89 73 72 85 86 68 72 89 90 76 76 85 94 76 class3 71 84 86 72 75 84 97 72 75 70 101 94 74 88 89 73 74 84 89 73 74 84 97 76 72 89 90 76 76 85 94 76 72 89 94 76 class3 52 40 97 101 52 40 97 105 52 48 90 98 60 56 85 83 63 71 85 73 70 84 89 73 72 94 86 72 76 94 98 76 76 98 98 76 class1 70 84 85 65 85 102 105 83 97 115 124 101 64 73 78 61 72 89 94 76 88 115 125 98 64 75 75 59 68 75 79 63 76 99 104 85 class2 93 120 119 97 89 115 114 87 85 111 114 87 92 120 120 98 88 120 120 91 84 111 111 91 92 116 122 96 88 107 118 92 88 107 113 88 class2 89 106 105 87 85 106 114 87 85 111 114 90 88 106 111 87 84 106 111 87 88 102 111 87 84 103 108 85 84 99 108 85 84 99 104 81 class3 85 106 114 87 85 111 114 90 89 111 114 83 84 106 111 87 88 102 111 87 88 102 102 83 84 99 108 85 84 99 104 81 84 95 100 78 class3 85 111 114 90 89 111 114 83 89 106 110 83 88 102 111 87 88 102 102 83 84 98 102 79 84 99 104 81 84 95 100 78 80 91 96 74 class3 89 111 114 83 89 106 110 83 82 97 101 80 88 102 102 83 84 98 102 79 80 98 94 72 84 95 100 78 80 91 96 74 80 87 91 78 class3 89 106 110 83 82 97 101 80 78 88 97 73 84 98 102 79 80 98 94 72 76 85 94 68 80 91 96 74 80 87 91 78 76 87 91 67 class3 67 79 82 65 70 79 82 62 70 79 85 62 76 81 86 65 72 81 86 65 68 81 82 65 71 87 91 63 71 83 87 70 71 83 87 67 class5 70 79 82 58 63 79 78 58 67 75 78 62 68 77 78 61 68 77 78 61 68 73 74 57 68 75 75 56 68 75 75 56 71 75 75 56 class5 63 79 78 58 67 75 78 62 67 79 78 62 68 77 78 61 68 73 74 57 64 73 78 57 68 75 75 56 71 75 75 56 68 75 75 59 class5 63 71 78 62 63 75 78 55 67 75 78 58 64 77 74 57 64 77 74 57 64 77 78 61 60 75 79 59 64 79 79 59 64 79 79 63 class5 67 75 78 58 67 71 78 58 67 71 82 62 64 77 78 61 64 77 78 61 68 77 78 61 64 79 79 63 68 79 83 63 68 79 79 67 class5 63 75 82 62 63 75 78 62 63 79 85 62 68 77 78 65 64 77 74 65 68 77 82 65 64 83 83 67 64 79 79 63 71 83 83 67 class5 63 75 78 62 63 79 85 62 67 79 82 58 64 77 74 65 68 77 82 65 68 81 78 61 64 79 79 63 71 83 83 67 68 79 83 63 class5 67 75 82 62 67 75 82 62 67 75 82 58 68 77 78 61 68 77 78 57 68 77 74 57 68 79 83 63 68 79 79 59 68 75 79 56 class5 67 75 82 58 70 79 74 58 63 75 74 55 68 77 74 57 68 73 78 54 68 73 74 54 68 75 79 56 64 75 79 59 68 79 79 59 class5 63 75 74 55 63 71 70 55 63 71 70 58 68 73 74 54 64 69 74 57 68 69 74 57 68 79 79 59 68 75 75 56 68 71 75 59 class5 63 75 74 62 63 71 74 58 63 71 78 62 64 73 74 57 64 73 74 57 64 73 78 61 68 75 75 59 64 75 79 59 64 79 83 63 class5 63 71 74 58 63 71 78 62 67 75 78 62 64 73 74 57 64 73 78 61 64 77 78 65 64 75 79 59 64 79 83 63 68 79 83 63 class5 67 75 78 62 63 75 85 58 63 79 85 62 64 77 78 65 68 77 86 65 64 77 82 65 68 79 83 63 64 79 83 67 64 75 79 63 class5 67 79 82 65 63 79 85 65 63 79 89 65 64 77 82 65 60 77 82 65 60 77 82 65 64 75 83 67 68 79 83 67 68 83 87 70 class5 74 102 114 90 74 115 119 97 74 115 119 101 76 115 120 102 72 115 120 102 72 115 125 98 76 112 128 99 80 116 128 103 80 116 128 99 class0 67 84 93 76 67 84 89 73 70 84 89 76 64 81 86 72 68 81 86 68 72 85 86 68 71 83 87 70 76 87 91 78 76 91 96 74 class3 74 84 89 73 74 84 97 76 70 67 101 94 76 85 94 76 72 89 94 76 72 85 90 76 76 83 87 70 68 79 79 63 68 75 75 63 class3 53 43 97 101 53 49 93 90 60 56 85 83 64 73 86 72 68 81 90 68 72 94 86 72 68 83 87 70 76 91 100 81 76 99 104 81 class3 97 120 120 102 92 120 120 98 88 120 120 91 92 116 122 99 92 116 122 96 88 107 118 92 79 103 109 87 88 107 113 92 84 107 109 87 class2 88 120 120 91 84 111 111 91 88 106 111 87 88 107 118 92 88 107 113 88 84 107 108 88 84 107 109 87 84 107 104 83 84 103 104 83 class3 88 102 111 87 88 102 102 83 84 98 102 79 84 99 104 81 84 95 100 78 80 91 96 74 84 95 100 79 79 95 93 75 79 91 96 75 class3 80 98 94 72 76 85 94 68 76 81 86 65 80 87 91 78 76 87 91 67 71 87 91 63 75 91 89 75 75 91 93 75 75 91 100 75 class3 76 81 86 65 72 81 86 65 68 81 82 65 71 87 91 63 71 83 87 70 71 83 87 67 75 91 100 75 79 95 93 71 79 87 85 67 class5 68 81 82 65 72 77 82 61 68 77 78 61 68 79 83 67 68 75 79 63 68 75 75 56 71 79 81 62 67 79 77 58 67 79 77 58 class5 72 77 82 61 68 77 78 61 68 77 78 61 68 75 79 63 68 75 75 56 68 75 75 56 67 79 77 58 67 79 77 58 67 75 77 58 class5 68 77 78 61 68 73 74 57 64 73 78 57 68 75 75 56 71 75 75 56 68 75 75 59 67 75 77 58 67 72 77 58 67 72 81 58 class5 68 73 74 57 64 73 78 57 68 73 78 61 71 75 75 56 68 75 75 59 68 75 79 59 67 72 77 58 67 72 81 58 71 75 77 58 class5 68 77 78 61 64 77 74 57 64 77 74 57 68 75 79 59 60 75 79 59 64 79 79 59 71 75 74 58 67 75 77 58 67 75 81 62 class5 64 77 78 61 64 77 78 61 68 77 78 61 64 79 79 63 68 79 83 63 68 79 79 67 67 79 85 62 71 83 85 62 71 87 85 67 class5 68 77 78 61 68 77 78 65 64 77 74 65 68 79 79 67 64 83 83 67 64 79 79 63 71 87 85 67 71 79 85 67 71 83 85 62 class5 68 77 82 65 68 81 78 61 68 77 78 61 71 83 83 67 68 79 83 63 68 79 83 63 67 83 81 67 67 79 81 62 67 79 77 62 class5 68 81 78 61 68 77 78 61 68 77 78 57 68 79 83 63 68 79 83 63 68 79 79 59 67 79 81 62 67 79 77 62 67 75 81 58 class5 64 69 74 57 68 69 74 57 64 69 74 57 68 75 75 56 68 71 75 59 68 75 75 59 67 75 81 58 67 72 77 58 67 75 77 62 class5 64 73 74 57 64 73 78 61 64 77 78 65 64 75 79 59 64 79 83 63 68 79 83 63 67 79 81 62 67 79 81 67 71 83 81 67 class5 64 77 82 65 60 77 82 65 60 77 82 65 64 75 83 67 68 79 83 67 68 83 87 70 67 87 81 71 67 87 93 75 67 87 93 79 class5 72 115 120 102 72 115 125 98 72 115 120 98 80 116 128 103 80 116 128 99 76 116 122 96 75 116 123 100 75 116 128 100 75 111 128 100 class0 68 94 102 87 64 89 102 79 64 81 86 72 71 87 100 81 71 83 91 74 71 83 87 70 75 91 104 83 71 91 96 75 71 83 93 71 class3 64 81 86 72 68 81 86 68 72 85 86 68 71 83 87 70 76 87 91 78 76 91 96 74 71 83 93 71 71 79 93 71 71 79 85 67 class3 68 81 86 68 72 85 86 68 72 89 90 76 76 87 91 78 76 91 96 74 76 91 91 70 71 79 93 71 71 79 85 67 71 68 77 62 class3 76 85 94 76 72 89 94 76 72 85 90 76 76 83 87 70 68 79 79 63 68 75 75 63 67 72 74 58 67 72 74 58 67 68 77 58 class5 72 94 86 72 76 94 98 76 76 98 98 76 76 99 104 81 80 99 104 78 76 95 96 78 79 99 100 79 79 95 100 79 75 91 96 75 class3 76 94 98 76 76 98 98 76 76 94 98 76 80 99 104 78 76 95 96 78 71 87 96 74 79 95 100 79 75 91 96 75 75 91 93 71 class3 64 71 75 56 64 75 71 59 64 75 79 59 67 75 74 58 67 75 74 58 63 72 77 58 78 87 88 74 70 79 80 66 66 75 80 59 class5 84 103 108 85 84 99 108 85 84 99 104 81 84 103 104 83 88 99 104 83 84 95 100 79 82 100 104 81 82 100 104 81 86 100 100 81 class3 80 87 91 78 76 87 91 67 71 87 91 63 75 91 89 75 75 91 93 75 75 91 100 75 78 87 92 70 78 91 96 74 78 96 100 74 class3 71 83 87 67 68 79 83 67 68 75 79 63 79 87 85 67 71 79 81 62 67 79 77 58 82 100 104 81 78 91 96 74 66 79 84 66 class5 68 75 79 63 68 75 75 56 68 75 75 56 67 79 77 58 67 79 77 58 67 75 77 58 66 79 84 66 66 79 80 63 70 79 80 63 class5 68 75 75 59 68 75 79 59 68 75 79 59 67 72 81 58 71 75 77 58 71 75 74 58 70 79 80 59 70 75 73 59 70 75 76 59 class5 64 79 79 63 68 79 83 63 68 79 79 67 67 79 85 62 71 83 85 62 71 87 85 67 63 79 84 63 66 79 84 63 66 79 84 63 class5 68 79 79 67 64 83 83 67 64 79 79 63 71 87 85 67 71 79 85 67 71 83 85 62 66 79 84 63 66 79 84 63 66 79 80 63 class5 64 79 79 63 71 83 83 67 68 79 83 63 71 83 85 62 67 83 81 67 67 79 81 62 66 79 80 63 66 79 80 63 66 75 84 63 class5 71 83 83 67 68 79 83 63 68 79 83 63 67 83 81 67 67 79 81 62 67 79 77 62 66 79 80 63 66 75 84 63 66 75 84 63 class5 68 75 75 56 68 71 75 59 68 75 75 59 67 75 81 58 67 72 77 58 67 75 77 62 59 60 100 81 66 71 88 70 70 79 76 59 class5 68 75 75 59 64 75 79 59 64 79 83 63 67 75 81 62 67 79 81 62 67 79 81 67 66 79 80 66 66 75 84 66 66 79 84 66 class5 64 87 100 74 68 91 100 81 71 103 118 96 67 95 100 79 75 99 109 87 79 111 123 100 63 83 96 78 66 91 104 81 74 100 108 92 class0 68 91 100 81 71 103 118 96 76 116 122 99 75 99 109 87 79 111 123 100 75 111 123 100 66 91 104 81 74 100 108 92 78 113 117 96 class0 76 116 122 99 76 112 128 99 80 116 128 103 75 111 123 100 75 116 123 100 75 116 123 100 78 113 117 96 74 113 122 100 70 113 127 96 class0 76 112 128 99 80 116 128 103 80 116 128 99 75 116 123 100 75 116 123 100 75 116 128 100 74 113 122 100 70 113 127 96 66 113 117 100 class0 71 83 91 74 71 83 87 70 76 87 91 78 71 91 96 75 71 83 93 71 71 79 93 71 78 91 96 81 74 83 96 74 66 71 73 59 class3 76 91 96 74 76 91 91 70 76 83 87 70 71 79 85 67 71 68 77 62 67 72 74 58 63 63 66 52 59 63 66 52 59 63 66 55 class5 68 79 79 63 68 75 75 63 68 83 87 70 67 72 74 58 67 68 77 58 67 72 77 62 63 63 69 55 63 67 69 55 59 67 66 55 class5 68 75 75 63 68 83 87 70 76 91 100 81 67 68 77 58 67 72 77 62 75 87 96 79 63 67 69 55 59 67 66 55 63 67 66 55 class5 71 91 87 70 76 83 91 70 71 83 87 67 75 91 89 71 75 91 93 71 71 83 89 67 74 83 96 74 74 87 92 70 74 87 88 70 class3 67 75 74 58 63 72 77 58 67 75 81 58 70 79 80 66 66 75 80 59 66 79 80 59 71 88 93 68 67 77 82 64 67 81 86 64 class5 67 75 81 58 63 75 77 58 67 83 85 67 66 79 80 59 66 75 80 63 66 75 76 59 67 81 86 64 67 77 79 64 67 73 75 60 class5 79 103 109 87 88 107 113 92 84 107 109 87 63 71 73 59 66 79 84 63 78 100 104 85 67 73 79 57 63 77 82 60 71 84 90 72 class5 84 103 104 83 88 99 104 83 84 95 100 79 82 100 104 81 82 100 104 81 86 100 100 81 87 99 105 83 87 99 101 83 87 99 105 79 class3 75 91 93 75 75 91 100 75 79 95 93 71 78 91 96 74 78 96 100 74 82 100 104 81 75 84 93 75 79 91 101 79 83 103 105 83 class3 75 91 100 75 79 95 93 71 79 87 85 67 78 96 100 74 82 100 104 81 82 100 104 81 79 91 101 79 83 103 105 83 83 99 105 83 class3 67 72 77 58 67 72 81 58 71 75 77 58 66 75 80 63 70 79 80 59 70 75 73 59 75 81 86 64 71 81 82 60 71 77 82 64 class5 67 72 81 58 71 75 77 58 71 75 74 58 70 79 80 59 70 75 73 59 70 75 76 59 71 81 82 60 71 77 82 64 67 77 82 64 class5 71 75 74 58 67 75 77 58 67 75 81 62 70 75 76 59 63 75 80 59 63 75 76 63 67 77 82 64 67 70 90 64 67 73 82 64 class5 71 87 85 67 71 79 85 67 71 83 85 62 66 79 84 63 66 79 84 63 66 79 80 63 67 77 82 64 71 77 82 64 67 77 82 64 class5 67 75 77 62 67 72 77 62 67 75 85 62 63 63 88 74 63 60 88 85 59 56 88 85 59 57 97 86 59 57 97 86 56 57 97 86 class4 67 72 77 62 67 75 85 62 67 75 81 58 63 60 88 85 59 56 88 85 59 60 100 81 59 57 97 86 56 57 97 86 59 57 97 86 class4 67 75 85 62 67 75 81 58 67 72 77 58 59 56 88 85 59 60 100 81 66 71 88 70 56 57 97 86 59 57 97 86 59 63 90 79 class4 67 75 77 62 67 75 81 62 67 75 81 62 70 79 76 59 70 75 76 59 66 79 80 66 63 73 82 64 67 77 79 60 67 77 82 64 class5 75 99 109 87 79 111 123 100 75 111 123 100 66 91 104 81 74 100 108 92 78 113 117 96 67 99 105 86 75 112 119 101 79 112 124 101 class0 75 111 123 100 75 116 123 100 75 116 123 100 78 113 117 96 74 113 122 100 70 113 127 96 79 112 124 101 79 112 124 98 71 108 124 98 class0 71 111 123 100 67 107 118 96 63 103 113 92 66 113 127 100 66 113 122 100 66 113 127 100 63 112 124 98 63 108 124 101 67 108 135 98 class0 63 103 113 92 67 99 109 87 71 99 109 87 66 113 127 100 66 109 122 100 63 109 117 92 67 108 135 98 67 112 130 98 67 112 119 98 class0 71 99 109 87 71 95 104 87 67 95 100 83 63 109 117 92 66 100 108 89 66 96 96 85 67 112 119 98 67 103 114 90 63 91 105 83 class0 67 68 77 58 67 72 77 62 75 87 96 79 63 67 69 55 59 67 66 55 63 67 66 55 63 70 72 60 67 70 75 57 67 66 72 60 class5 67 72 77 62 75 87 96 79 79 99 100 79 59 67 66 55 63 67 66 55 63 67 73 59 67 70 75 57 67 66 72 60 63 66 68 57 class5 75 91 93 71 75 87 93 71 75 91 89 71 74 91 92 78 74 87 96 74 74 83 96 74 75 91 101 75 75 88 90 72 75 88 90 72 class3 66 75 76 59 63 71 73 59 66 79 84 63 67 73 75 60 67 73 79 57 63 77 82 60 67 75 78 62 67 75 78 62 63 75 78 58 class5 78 87 92 70 78 91 96 74 78 96 100 74 75 91 97 72 75 84 93 75 79 91 101 79 78 88 93 76 78 88 97 76 85 102 105 83 class3 78 91 96 74 78 96 100 74 82 100 104 81 75 84 93 75 79 91 101 79 83 103 105 83 78 88 97 76 85 102 105 83 85 102 101 83 class3 78 96 100 74 82 100 104 81 82 100 104 81 79 91 101 79 83 103 105 83 83 99 105 83 85 102 105 83 85 102 101 83 85 102 110 80 class3 82 100 104 81 82 100 104 81 78 91 96 74 83 103 105 83 83 99 105 83 79 91 93 72 85 102 101 83 85 102 110 80 82 88 101 76 class3 66 79 84 66 66 79 80 63 70 79 80 63 71 81 82 64 71 81 90 68 75 88 93 68 67 71 93 65 74 88 97 80 82 97 105 83 class5 66 79 80 63 70 79 80 63 66 75 80 63 71 81 90 68 75 88 93 68 75 81 86 64 74 88 97 80 82 97 105 83 78 88 93 73 class5 66 79 84 63 66 79 84 63 66 79 80 63 67 77 82 64 71 77 82 64 67 77 82 64 67 75 82 62 67 71 82 65 63 71 82 65 class5 66 79 80 63 66 75 84 63 66 75 84 63 63 70 82 68 63 66 93 79 63 63 93 83 60 60 85 76 60 60 93 83 60 60 93 87 class4 66 75 84 63 66 75 84 63 63 71 88 70 63 66 93 79 63 63 93 83 59 60 90 83 60 60 93 83 60 60 93 87 57 56 93 90 class4 59 60 100 81 66 71 88 70 70 79 76 59 59 57 97 86 59 63 90 79 63 73 82 64 57 60 93 80 57 63 89 76 60 67 78 65 class4 63 83 96 78 66 91 104 81 74 100 108 92 63 84 86 79 67 99 105 86 75 112 119 101 63 88 101 76 70 102 114 94 74 115 119 101 class0 74 100 108 92 78 113 117 96 74 113 122 100 75 112 119 101 79 112 124 101 79 112 124 98 74 115 119 101 74 115 119 101 70 111 124 101 class0 63 109 117 92 66 100 108 89 66 96 96 85 67 112 119 98 67 103 114 90 63 91 105 83 67 115 129 104 63 106 119 94 63 97 105 87 class0 74 83 96 74 66 71 73 59 63 63 66 52 79 91 97 79 71 81 86 64 63 66 62 57 67 75 85 73 70 75 82 69 70 71 78 62 class5 63 67 66 55 63 67 73 59 70 83 88 70 67 66 72 60 63 66 68 57 59 70 75 60 67 67 74 62 67 67 74 58 63 67 70 58 class5 70 83 88 70 78 91 96 78 74 91 92 78 59 70 75 60 71 84 90 72 75 91 101 75 63 67 70 58 63 75 82 65 74 88 89 76 class3 74 91 92 78 74 87 96 74 74 83 96 74 75 91 101 75 75 88 90 72 75 88 90 72 74 88 89 76 74 88 97 73 70 88 85 65 class3 75 91 93 72 71 88 93 68 67 77 82 64 74 88 89 73 78 92 93 73 70 84 85 62 76 89 90 68 76 94 94 72 76 89 90 68 class3 67 77 79 64 67 73 75 60 67 73 79 57 67 79 82 65 67 75 78 62 67 75 78 62 68 77 74 61 68 77 74 61 68 77 78 61 class5 67 73 79 57 63 77 82 60 71 84 90 72 67 75 78 62 63 75 78 58 63 79 78 62 68 77 78 61 64 73 74 61 64 73 78 57 class5 63 77 82 60 71 84 90 72 83 99 105 83 63 75 78 58 63 79 78 62 74 92 93 76 64 73 74 61 64 73 78 57 64 81 82 65 class5 83 99 105 83 83 103 105 83 87 99 105 83 74 92 93 76 82 102 105 83 82 97 105 83 64 81 82 65 76 94 102 79 84 98 102 83 class3 83 103 105 83 87 99 105 83 87 99 101 83 82 102 105 83 82 97 105 83 82 97 101 83 76 94 102 79 84 98 102 83 84 98 102 83 class3 87 99 101 83 87 99 105 79 79 99 101 83 82 97 101 83 85 102 105 83 82 97 105 80 84 98 102 83 84 102 98 83 84 102 102 79 class3 79 99 101 83 79 95 101 75 75 91 97 72 82 97 105 80 82 92 97 76 78 88 93 76 84 102 102 79 84 94 98 79 76 85 90 72 class3 75 91 97 72 75 84 93 75 79 91 101 79 78 88 93 76 78 88 97 76 85 102 105 83 76 85 90 72 76 94 94 76 80 102 102 79 class3 83 103 105 83 83 99 105 83 79 91 93 72 85 102 101 83 85 102 110 80 82 88 101 76 84 102 102 83 84 102 102 79 72 81 90 65 class3 71 81 90 68 75 88 93 68 75 81 86 64 74 88 97 80 82 97 105 83 78 88 93 73 76 89 98 79 80 94 102 76 76 85 90 68 class5 56 57 97 86 59 57 97 86 59 63 90 79 60 56 93 87 57 60 93 80 57 63 89 76 57 55 86 76 57 55 86 72 57 55 82 72 class4 63 84 86 79 67 99 105 86 75 112 119 101 63 88 101 76 70 102 114 94 74 115 119 101 64 94 106 83 68 106 115 98 72 115 120 98 class0 75 112 119 101 79 112 124 101 79 112 124 98 74 115 119 101 74 115 119 101 70 111 124 101 72 115 120 98 68 111 120 98 68 115 125 98 class0 79 112 124 101 79 112 124 98 71 108 124 98 74 115 119 101 70 111 124 101 67 106 124 101 68 111 120 98 68 115 125 98 68 111 125 98 class0 67 112 124 98 67 112 124 98 63 112 124 98 67 111 119 97 63 111 124 97 63 120 124 101 68 115 120 98 64 115 125 98 64 115 125 102 class0 63 108 124 101 67 108 135 98 67 112 130 98 63 115 124 101 67 111 124 101 63 115 124 101 64 115 125 98 60 111 120 98 64 111 115 102 class0 67 103 114 90 63 91 105 83 63 88 90 75 63 106 119 94 63 97 105 87 63 88 97 83 68 115 120 102 64 106 111 91 64 94 102 83 class0 63 70 72 60 67 70 75 57 67 66 72 60 63 71 78 62 67 71 78 62 67 67 74 62 68 73 78 65 68 69 74 57 64 66 71 54 class5 67 66 72 60 63 66 68 57 59 70 75 60 67 67 74 62 67 67 74 58 63 67 70 58 64 66 71 54 64 69 71 57 68 69 74 61 class5 75 88 90 72 75 88 90 68 71 81 90 64 70 88 85 65 67 75 78 62 63 71 74 62 64 73 78 61 64 73 78 61 68 73 78 57 class5 67 79 85 65 67 79 82 65 67 75 78 62 72 81 82 61 68 77 74 61 68 77 74 61 76 87 96 70 71 79 83 59 68 79 79 63 class5 63 75 78 58 63 79 78 62 74 92 93 76 64 73 74 61 64 73 78 57 64 81 82 65 64 75 79 59 64 75 79 63 68 75 79 59 class5 63 79 78 62 74 92 93 76 82 102 105 83 64 73 78 57 64 81 82 65 76 94 102 79 64 75 79 63 68 75 79 59 68 83 87 70 class5 74 92 93 76 82 102 105 83 82 97 105 83 64 81 82 65 76 94 102 79 84 98 102 83 68 75 79 59 68 83 87 70 80 91 91 81 class5 82 102 105 83 82 97 105 83 82 97 101 83 76 94 102 79 84 98 102 83 84 98 102 83 68 83 87 70 80 91 91 81 84 95 100 78 class3 82 97 105 80 82 92 97 76 78 88 93 76 84 102 102 79 84 94 98 79 76 85 90 72 84 99 104 85 80 99 100 81 76 91 96 74 class3 78 88 97 76 85 102 105 83 85 102 101 83 76 94 94 76 80 102 102 79 84 102 102 83 76 91 96 74 76 91 96 74 76 91 87 70 class3 78 88 93 73 78 84 93 69 78 88 97 80 76 85 90 68 80 94 98 76 80 98 98 83 71 87 87 70 76 91 91 78 76 91 100 78 class5 74 88 101 80 70 88 93 69 67 75 85 62 76 98 102 79 76 89 94 72 72 81 86 65 80 99 104 81 80 99 104 78 76 91 96 74 class5 70 88 93 69 67 75 85 62 67 75 82 62 76 89 94 72 72 81 86 65 72 77 82 61 80 99 104 78 76 91 96 74 71 79 83 63 class5 67 75 85 62 67 75 82 62 67 71 82 65 72 81 86 65 72 77 82 61 68 69 78 65 76 91 96 74 71 79 83 63 64 68 83 67 class5 67 71 82 65 63 71 82 65 60 60 85 76 68 69 78 65 64 62 82 68 60 59 90 76 64 68 83 67 60 61 83 70 56 57 79 70 class4 60 60 85 76 60 60 93 83 60 60 93 87 60 59 90 76 60 59 98 87 57 59 98 87 56 57 79 70 60 51 83 74 56 54 83 70 class4 60 60 93 87 57 56 93 90 57 56 97 94 57 59 98 87 57 55 94 87 57 55 90 83 56 54 83 70 56 57 87 78 60 57 87 78 class4 57 60 93 80 57 63 89 76 60 67 78 65 57 55 86 72 57 55 82 72 57 59 74 68 56 57 87 70 56 57 83 67 56 57 83 70 class4 63 111 124 97 63 120 124 101 63 115 124 101 64 115 125 98 64 115 125 102 64 115 125 98 64 116 128 103 64 112 128 103 64 116 122 99 class0 63 120 124 101 63 115 124 101 67 111 124 101 64 115 125 102 64 115 125 98 60 111 120 98 64 112 128 103 64 116 122 99 64 121 122 96 class0 67 111 124 101 63 115 124 101 67 115 129 104 60 111 120 98 64 111 115 102 68 115 125 102 64 121 122 96 64 116 122 99 64 116 122 96 class0 63 106 119 94 63 97 105 87 63 88 97 83 68 115 120 102 64 106 111 91 64 94 102 83 68 116 128 103 68 112 128 96 64 103 113 88 class0 67 71 78 62 67 67 74 62 67 67 74 58 68 69 74 57 64 66 71 54 64 69 71 57 64 75 75 59 68 71 75 59 68 71 75 59 class5 67 67 74 62 67 67 74 58 63 67 70 58 64 66 71 54 64 69 71 57 68 69 74 61 68 71 75 59 68 71 75 59 68 75 75 59 class5 76 89 90 68 76 94 94 72 76 89 90 68 76 87 91 70 76 87 91 67 76 91 96 74 75 87 89 67 75 87 89 67 75 87 89 67 class3 76 89 90 68 72 81 82 61 68 77 74 61 76 91 96 74 76 87 96 70 71 79 83 59 75 87 89 67 75 83 89 71 71 83 85 67 class3 72 81 82 61 68 77 74 61 68 77 74 61 76 87 96 70 71 79 83 59 68 79 79 63 75 83 89 71 71 83 85 67 67 75 85 62 class5 84 98 102 83 84 98 102 83 84 102 98 83 80 91 91 81 84 95 100 78 80 95 100 81 75 87 89 71 79 91 93 75 79 95 96 75 class3 84 102 102 79 84 94 98 79 76 85 90 72 84 99 104 85 80 99 100 81 76 91 96 74 84 95 100 79 84 95 100 75 79 87 93 75 class3 84 102 102 83 84 102 102 79 72 81 90 65 76 91 87 70 71 79 87 70 68 75 87 67 67 72 85 67 63 58 81 67 63 68 85 67 class4 72 81 90 65 68 69 86 68 76 89 98 79 68 75 87 67 76 83 91 74 80 95 100 78 63 68 85 67 71 91 93 75 75 91 89 71 class5 80 94 98 76 80 98 98 83 84 98 102 83 76 91 91 78 76 91 100 78 80 95 100 78 71 83 81 67 71 87 85 71 75 95 96 79 class5 80 98 98 83 84 98 102 83 80 98 106 83 76 91 100 78 80 95 100 78 80 99 104 81 71 87 85 71 75 95 96 79 79 95 104 79 class5 80 98 106 83 76 98 102 79 76 89 94 72 80 99 104 81 80 99 104 81 80 99 104 78 79 95 104 79 75 99 100 79 79 99 104 83 class2 57 55 86 76 57 55 86 72 57 55 82 72 56 54 87 78 56 57 87 70 56 57 83 67 55 54 85 71 55 54 85 71 55 58 81 71 class4 57 55 86 72 57 55 82 72 57 59 74 68 56 57 87 70 56 57 83 67 56 57 83 70 55 54 85 71 55 58 81 71 55 54 85 71 class4 57 55 82 72 57 59 74 68 60 66 82 65 56 57 83 67 56 57 83 70 56 64 83 67 55 58 81 71 55 54 85 71 55 51 81 71 class4 68 106 115 98 72 115 120 98 68 111 120 98 68 112 118 96 68 116 122 99 71 112 118 99 71 111 118 92 71 111 123 96 71 107 123 96 class0 68 115 125 98 68 111 125 98 68 115 120 98 68 112 122 96 68 112 128 99 68 116 122 103 67 107 113 96 67 111 118 96 71 116 123 100 class0 64 115 125 98 64 115 125 102 64 115 125 98 64 116 128 103 64 112 128 103 64 116 122 99 67 111 123 100 67 111 123 100 67 116 123 100 class0 64 115 125 98 60 111 120 98 64 111 115 102 64 116 122 99 64 121 122 96 64 116 122 99 67 116 123 100 71 111 128 100 67 111 123 96 class0 60 111 120 98 64 111 115 102 68 115 125 102 64 121 122 96 64 116 122 99 64 116 122 96 71 111 128 100 67 111 123 96 67 111 123 100 class0 64 106 111 91 64 94 102 83 68 94 102 79 68 112 128 96 64 103 113 88 60 91 104 81 71 116 123 100 71 107 118 96 67 99 109 83 class0 68 77 74 65 68 77 74 61 68 73 78 65 68 75 79 63 68 75 75 59 64 75 75 63 71 79 85 67 63 75 81 62 67 72 77 62 class5 64 66 71 54 64 69 71 57 68 69 74 61 68 71 75 59 68 71 75 59 68 75 75 59 63 68 67 58 67 72 70 62 67 75 74 58 class5 68 73 82 65 68 81 86 68 68 77 82 65 68 75 75 59 68 79 79 63 71 79 87 67 67 75 74 62 63 72 74 62 63 75 77 62 class5 76 87 91 70 76 87 91 67 76 91 96 74 75 87 89 67 75 87 89 67 75 87 89 67 74 87 84 70 74 87 92 70 74 87 88 66 class3 76 87 91 67 76 91 96 74 76 87 96 70 75 87 89 67 75 87 89 67 75 83 89 71 74 87 92 70 74 87 88 66 74 87 88 70 class3 71 79 83 59 68 79 79 63 64 79 83 59 71 83 85 67 67 75 85 62 71 79 89 62 78 91 92 74 74 83 92 70 66 79 84 63 class5 68 79 79 63 64 79 83 59 64 75 79 59 67 75 85 62 71 79 89 62 71 79 77 58 74 83 92 70 66 79 84 63 66 75 76 63 class5 84 95 100 78 80 95 100 81 84 99 104 85 79 91 93 75 79 95 96 75 84 95 100 79 74 79 84 66 82 87 96 78 82 96 100 78 class3 76 91 96 74 76 91 96 74 76 91 96 74 79 87 93 75 71 79 89 75 67 75 89 67 82 91 96 78 66 71 88 74 56 53 80 66 class4 76 91 96 74 76 91 96 74 76 91 87 70 71 79 89 75 67 75 89 67 67 72 85 67 66 71 88 74 56 53 80 66 59 53 73 63 class4 76 91 96 74 76 91 87 70 71 79 87 70 67 75 89 67 67 72 85 67 63 58 81 67 56 53 80 66 59 53 73 63 56 49 80 66 class4 68 75 87 67 76 83 91 74 80 95 100 78 63 68 85 67 71 91 93 75 75 91 89 71 56 53 73 66 70 79 84 66 78 83 88 70 class5 80 95 100 78 76 87 91 67 71 87 87 70 75 91 89 71 75 83 81 62 71 79 85 67 78 83 88 70 74 87 84 66 78 87 84 70 class5 71 87 87 70 76 91 91 78 76 91 100 78 71 79 85 67 71 83 81 67 71 87 85 71 78 87 84 70 74 79 84 63 70 83 84 66 class5 76 91 91 78 76 91 100 78 80 95 100 78 71 83 81 67 71 87 85 71 75 95 96 79 74 79 84 63 70 83 84 66 66 87 84 70 class5 76 91 100 78 80 95 100 78 80 99 104 81 71 87 85 71 75 95 96 79 79 95 104 79 70 83 84 66 66 87 84 70 74 91 100 78 class5 80 99 104 81 80 99 104 78 76 91 96 74 75 99 100 79 79 99 104 83 79 99 109 83 78 96 104 81 82 100 104 81 82 100 104 85 class2 71 79 83 63 64 68 83 67 60 61 83 70 79 91 96 75 71 72 77 58 59 54 67 54 82 100 104 85 78 91 92 74 66 67 66 41 class2 56 57 79 70 60 51 83 74 56 54 83 70 55 51 67 50 51 51 70 50 55 51 67 54 52 49 56 33 52 49 66 44 52 56 69 55 class4 60 57 87 78 56 57 83 70 56 54 87 78 59 58 81 71 55 54 85 71 55 54 85 71 59 60 76 66 59 60 80 70 56 60 84 74 class4 56 57 87 70 56 57 83 67 56 57 83 70 55 54 85 71 55 58 81 71 55 54 85 71 56 56 88 74 56 53 84 74 56 53 84 78 class4 60 91 100 78 64 99 104 88 68 112 118 96 63 91 100 75 67 103 113 87 71 111 118 92 63 87 92 81 66 104 112 89 66 104 112 92 class0 68 112 122 96 68 112 128 99 68 116 122 103 67 107 113 96 67 111 118 96 71 116 123 100 66 109 117 96 66 109 112 96 66 109 122 100 class0 64 116 128 103 64 112 128 103 64 116 122 99 67 111 123 100 67 111 123 100 67 116 123 100 66 109 122 100 66 113 122 100 66 113 127 100 class0 64 121 122 96 64 116 122 99 64 116 122 96 71 111 128 100 67 111 123 96 67 111 123 100 66 113 122 100 66 113 127 100 70 118 127 100 class0 68 71 75 59 68 71 75 59 68 75 75 59 63 68 67 58 67 72 70 62 67 75 74 58 63 67 69 55 66 71 73 55 66 71 73 59 class5 71 75 79 59 68 75 75 59 68 75 75 59 67 79 81 62 67 72 77 58 67 75 74 58 66 75 76 63 70 79 84 66 66 75 73 59 class5 75 87 89 67 75 87 89 67 75 87 89 67 74 87 84 70 74 87 92 70 74 87 88 66 75 91 93 72 75 88 90 72 71 84 93 72 class3 75 87 89 67 75 87 89 67 75 83 89 71 74 87 92 70 74 87 88 66 74 87 88 70 75 88 90 72 71 84 93 72 75 88 90 68 class3 71 79 89 62 71 79 77 58 67 79 77 62 66 79 84 63 66 75 76 63 66 79 80 63 71 84 90 68 63 81 82 64 63 81 79 64 class5 67 75 77 62 67 79 81 62 75 87 89 71 66 79 88 63 66 79 84 63 66 79 80 59 67 84 86 68 71 84 86 64 67 81 82 64 class5 67 79 81 62 75 87 89 71 79 91 93 75 66 79 84 63 66 79 80 59 74 79 84 66 71 84 86 64 67 81 82 64 67 77 82 64 class5 84 95 100 79 84 95 100 75 79 87 93 75 82 96 100 78 82 96 104 78 82 91 96 78 79 99 101 79 83 103 105 83 83 91 101 79 class3 75 83 81 62 71 79 85 67 71 83 81 67 74 87 84 66 78 87 84 70 74 79 84 63 75 88 97 75 75 88 97 72 75 84 93 68 class5 71 83 81 67 71 87 85 71 75 95 96 79 74 79 84 63 70 83 84 66 66 87 84 70 75 84 93 68 75 91 90 75 79 88 93 75 class5 75 95 96 79 79 95 104 79 75 99 100 79 66 87 84 70 74 91 100 78 78 96 104 81 79 88 93 75 75 88 97 72 75 91 101 79 class5 71 72 77 58 59 54 67 54 55 51 67 50 78 91 92 74 66 67 66 41 52 49 56 33 75 91 97 68 63 66 68 34 52 51 62 42 class4 59 54 67 54 55 51 67 50 51 51 70 50 66 67 66 41 52 49 56 33 52 49 66 44 63 66 68 34 52 51 62 42 49 48 68 49 class4 55 54 85 71 55 54 85 71 55 54 85 71 59 60 80 70 56 60 84 74 56 56 88 74 56 54 82 72 56 51 79 75 49 54 86 75 class4 55 54 85 71 55 54 85 71 55 58 81 71 56 60 84 74 56 56 88 74 56 53 84 74 56 51 79 75 49 54 86 75 52 54 79 75 class4 71 111 123 96 71 107 123 96 67 107 113 96 66 113 117 92 66 109 122 96 66 109 117 96 67 108 119 98 67 112 119 98 71 108 119 98 class0 71 111 128 100 67 111 123 96 67 111 123 100 66 113 122 100 66 113 127 100 70 118 127 100 63 112 130 101 71 112 130 101 71 112 124 101 class0 71 111 128 100 71 116 123 100 71 107 118 96 70 113 127 100 70 113 122 100 70 118 127 100 67 112 124 101 67 112 124 98 67 112 130 101 class0 71 116 123 100 71 107 118 96 67 99 109 83 70 113 122 100 70 118 127 100 70 113 122 96 67 112 124 98 67 112 130 101 71 108 130 101 class0 63 75 81 62 67 72 77 62 67 68 74 58 70 79 84 70 66 71 73 63 63 63 66 55 67 73 79 68 67 73 79 64 63 66 68 57 class5 67 68 74 58 63 68 67 58 67 72 70 62 63 63 66 55 63 67 69 55 66 71 73 55 63 66 68 57 63 66 68 57 59 70 75 57 class5 67 75 74 62 63 72 74 62 63 75 77 62 66 71 76 59 66 71 73 63 63 67 73 59 67 70 72 60 67 70 75 57 63 70 68 57 class5 63 75 77 62 67 79 81 62 67 72 77 58 63 67 73 59 66 75 76 63 70 79 84 66 63 70 68 57 63 66 68 57 67 77 75 64 class5 74 87 84 70 74 87 92 70 74 87 88 66 75 91 93 72 75 88 90 72 71 84 93 72 74 92 89 76 74 84 93 69 70 88 89 69 class3 74 87 88 66 74 87 88 70 78 91 92 74 71 84 93 72 75 88 90 68 75 88 93 68 70 88 89 69 74 84 89 69 74 84 85 65 class3 74 87 88 70 78 91 92 74 74 83 92 70 75 88 90 68 75 88 93 68 75 91 93 72 74 84 89 69 74 84 85 65 74 88 93 69 class3 78 91 92 74 74 83 92 70 66 79 84 63 75 88 93 68 75 91 93 72 71 84 90 68 74 84 85 65 74 88 93 69 78 92 93 73 class3 66 79 84 63 66 75 76 63 66 79 80 63 71 84 90 68 63 81 82 64 63 81 79 64 78 92 93 73 67 88 89 69 67 84 85 62 class5 66 75 76 63 66 79 80 63 66 79 88 63 63 81 82 64 63 81 79 64 67 84 86 68 67 88 89 69 67 84 85 62 63 79 85 65 class5 82 87 96 78 82 96 100 78 82 96 104 78 71 88 93 72 79 99 101 79 83 103 105 83 67 84 85 69 78 97 101 83 82 102 110 87 class3 82 96 100 78 82 96 104 78 82 91 96 78 79 99 101 79 83 103 105 83 83 91 101 79 78 97 101 83 82 102 110 87 78 88 101 83 class3 82 91 96 78 66 71 88 74 56 53 80 66 83 91 101 79 71 63 86 75 59 54 82 75 78 88 101 83 67 67 93 80 60 60 85 80 class4 56 49 80 66 56 53 73 66 70 79 84 66 59 51 79 72 56 54 75 64 67 73 82 64 57 53 82 73 57 53 78 69 67 67 78 65 class4 56 53 73 66 70 79 84 66 78 83 88 70 56 54 75 64 67 73 82 64 75 84 90 68 57 53 78 69 67 67 78 65 70 79 89 65 class5 74 87 84 66 78 87 84 70 74 79 84 63 75 88 97 75 75 88 97 72 75 84 93 68 74 88 93 73 78 92 97 80 78 92 97 80 class5 74 79 84 63 70 83 84 66 66 87 84 70 75 84 93 68 75 91 90 75 79 88 93 75 78 92 97 80 78 92 101 83 82 97 101 83 class5 56 60 73 59 59 60 76 66 59 60 80 70 56 60 75 64 52 57 75 68 56 54 82 72 50 53 82 69 53 53 82 76 50 56 82 73 class4 56 56 88 74 56 53 84 74 56 53 84 78 49 54 86 75 52 54 79 75 52 51 82 75 50 53 78 69 53 53 74 69 50 53 78 65 class4 56 53 84 78 52 49 88 78 56 56 88 74 52 51 82 75 52 54 90 72 52 54 79 68 50 53 78 65 50 53 82 65 53 56 74 69 class4 56 56 88 74 56 63 84 66 66 75 80 63 52 54 79 68 52 57 79 64 59 70 79 60 53 56 74 69 53 53 82 73 53 56 82 69 class4 59 79 88 70 59 83 96 74 63 87 92 81 63 77 82 68 59 84 90 75 63 99 110 86 60 79 82 65 60 92 101 83 67 111 114 94 class0 63 87 92 81 66 104 112 89 66 104 112 92 63 99 110 86 67 108 119 98 71 112 119 94 67 111 114 94 67 111 119 94 63 111 124 94 class0 66 113 117 92 66 109 122 96 66 109 117 96 67 108 119 98 67 112 119 98 71 108 119 98 67 111 119 97 67 111 119 101 67 111 119 101 class0 66 109 122 100 66 113 122 100 66 113 127 100 67 108 130 101 67 112 124 98 63 112 119 98 63 111 124 97 63 111 124 101 63 111 124 101 class0 66 113 122 100 66 113 127 100 66 113 122 100 67 112 124 98 63 112 119 98 63 112 130 101 63 111 124 101 63 111 124 101 63 111 124 101 class0 66 113 127 100 70 118 127 100 70 113 127 100 71 112 130 101 71 112 124 101 67 112 124 101 67 115 129 101 67 120 124 97 70 115 129 101 class0 70 118 127 100 70 113 127 100 70 113 122 100 71 112 124 101 67 112 124 101 67 112 124 98 67 120 124 97 70 115 129 101 70 111 119 101 class0 70 113 122 100 70 118 127 100 70 113 122 96 67 112 124 98 67 112 130 101 71 108 130 101 70 111 119 101 67 111 119 94 67 111 119 97 class0 70 79 84 70 66 71 73 63 63 63 66 55 67 73 79 68 67 73 79 64 63 66 68 57 63 71 82 65 70 75 85 69 67 71 74 65 class5 63 67 69 55 66 71 73 55 66 71 73 59 63 66 68 57 59 70 75 57 63 66 75 60 63 67 70 58 63 71 74 58 63 71 74 58 class5 75 88 90 72 71 84 93 72 75 88 90 68 74 84 93 69 70 88 89 69 74 84 89 69 76 89 94 68 72 85 90 68 72 85 86 68 class3 71 84 93 72 75 88 90 68 75 88 93 68 70 88 89 69 74 84 89 69 74 84 85 65 72 85 90 68 72 85 86 68 76 85 90 68 class3 71 84 90 68 63 81 82 64 63 81 79 64 78 92 93 73 67 88 89 69 67 84 85 62 76 94 94 72 76 94 94 68 68 85 82 65 class3 67 84 86 68 71 84 86 64 67 81 82 64 63 79 85 65 63 75 85 65 70 84 82 65 64 81 82 61 64 77 86 65 64 77 82 65 class5 67 81 82 64 67 77 82 64 71 88 93 72 70 84 82 65 67 84 82 65 67 84 85 69 64 77 82 65 64 81 78 65 68 81 82 65 class5 71 88 93 72 79 99 101 79 83 103 105 83 67 84 85 69 78 97 101 83 82 102 110 87 68 81 82 65 72 89 94 72 80 102 106 87 class3 83 103 105 83 83 91 101 79 71 63 86 75 82 102 110 87 78 88 101 83 67 67 93 80 80 102 106 87 76 89 98 79 68 73 90 79 class4 59 54 79 72 59 51 79 72 56 54 75 64 60 56 85 80 57 53 82 73 57 53 78 69 60 55 82 76 57 55 78 72 57 55 74 61 class4 59 51 79 72 56 54 75 64 67 73 82 64 57 53 82 73 57 53 78 69 67 67 78 65 57 55 78 72 57 55 74 61 64 66 78 65 class4 75 88 97 75 75 88 97 72 75 84 93 68 74 88 93 73 78 92 97 80 78 92 97 80 76 89 94 76 80 98 102 76 80 98 102 76 class5 75 88 97 72 75 84 93 68 75 91 90 75 78 92 97 80 78 92 97 80 78 92 101 83 80 98 102 76 80 98 102 76 80 94 102 79 class5 75 91 90 75 79 88 93 75 75 88 97 72 78 92 101 83 82 97 101 83 82 92 101 76 80 94 102 79 84 98 111 83 80 98 111 83 class2 75 88 97 72 75 91 101 79 79 99 105 83 82 92 101 76 78 92 105 80 82 97 105 87 80 98 111 83 80 98 106 83 84 98 111 87 class5 75 91 101 79 79 99 105 83 83 99 105 83 78 92 105 80 82 97 105 87 82 97 105 83 80 98 106 83 84 98 111 87 84 102 111 87 class2 79 99 105 83 83 99 105 83 79 99 105 83 82 97 105 87 82 97 105 83 78 97 105 83 84 98 111 87 84 102 111 87 84 98 106 83 class2 83 99 105 83 79 99 105 83 75 91 97 68 82 97 105 83 78 97 105 83 78 88 89 69 84 102 111 87 84 98 106 83 76 85 90 61 class2 49 54 86 75 52 54 79 75 52 51 82 75 50 53 78 69 53 53 74 69 50 53 78 65 57 55 74 61 53 55 82 61 50 52 74 65 class4 52 54 90 72 52 54 79 68 52 57 79 64 50 53 82 65 53 56 74 69 53 53 82 73 53 52 78 68 53 52 74 68 50 52 78 65 class4 52 54 79 68 52 57 79 64 59 70 79 60 53 56 74 69 53 53 82 73 53 56 82 69 53 52 74 68 50 52 78 65 53 52 78 65 class4 59 84 90 75 63 99 110 86 67 108 119 98 60 92 101 83 67 111 114 94 67 111 119 94 68 106 111 91 68 111 115 98 68 111 115 98 class0 63 99 110 86 67 108 119 98 71 112 119 94 67 111 114 94 67 111 119 94 63 111 124 94 68 111 115 98 68 111 115 98 64 111 125 102 class0 67 112 119 98 71 108 119 98 67 112 114 98 67 111 119 101 67 111 119 101 67 115 119 101 68 111 115 98 68 111 115 98 68 115 120 98 class0 71 112 124 101 67 112 124 101 67 112 124 98 67 120 124 97 70 115 129 101 70 111 119 101 72 115 120 102 68 115 120 102 68 115 120 98 class0 71 108 130 101 71 108 114 90 63 88 97 75 67 111 119 97 70 111 119 97 70 97 105 87 64 111 115 98 68 111 120 102 68 106 115 94 class0 67 73 79 64 63 66 68 57 63 66 68 57 70 75 85 69 67 71 74 65 63 67 70 58 72 77 82 68 72 77 78 65 68 73 71 61 class5 63 66 75 60 67 70 72 60 67 70 75 57 63 71 74 58 63 67 70 58 60 67 70 55 60 69 74 54 60 69 71 57 60 62 67 57 class5 74 84 93 69 70 88 89 69 74 84 89 69 76 89 94 68 72 85 90 68 72 85 86 68 76 91 96 70 76 83 96 70 71 87 87 70 class3 74 84 85 65 74 88 93 69 78 92 93 73 76 85 90 68 76 85 90 68 76 94 94 72 71 87 91 70 76 83 91 67 80 87 91 70 class3 78 92 93 73 67 88 89 69 67 84 85 62 76 94 94 72 76 94 94 68 68 85 82 65 80 87 91 70 80 95 91 74 71 87 87 70 class3 67 84 85 62 63 79 85 65 63 75 85 65 68 85 82 65 64 81 82 61 64 77 86 65 71 87 87 70 68 83 87 63 64 83 83 67 class5 70 84 82 65 67 84 82 65 67 84 85 69 64 77 82 65 64 81 78 65 68 81 82 65 68 79 83 63 68 83 83 67 68 83 83 63 class5 78 88 101 83 67 67 93 80 60 60 85 80 76 89 98 79 68 73 90 79 64 66 90 79 80 95 100 81 76 83 96 81 68 75 83 81 class4 57 53 78 69 67 67 78 65 70 79 89 65 57 55 74 61 64 66 78 65 72 81 86 68 60 57 75 67 64 64 83 67 71 79 91 70 class4 67 67 78 65 70 79 89 65 74 88 93 73 64 66 78 65 72 81 86 68 76 89 94 76 64 64 83 67 71 79 91 70 76 87 96 74 class5 78 92 105 80 82 97 105 87 82 97 105 83 80 98 106 83 84 98 111 87 84 102 111 87 80 103 108 85 80 99 108 85 84 103 108 85 class2 82 97 105 83 78 97 105 83 78 88 89 69 84 102 111 87 84 98 106 83 76 85 90 61 84 103 108 85 80 99 104 81 71 83 87 59 class2 50 53 78 69 53 53 74 69 50 53 78 65 57 55 74 61 53 55 82 61 50 52 74 65 53 54 75 67 53 54 79 67 56 54 75 63 class4 50 53 78 65 50 53 82 65 53 56 74 69 50 52 74 65 53 52 78 68 53 52 74 68 56 54 75 63 53 51 75 59 56 51 71 59 class4 53 56 82 69 57 75 82 65 63 79 89 65 53 52 78 65 53 62 78 61 60 77 82 65 53 51 75 59 53 57 75 63 56 68 87 63 class4 67 111 119 94 63 111 124 94 67 111 119 97 68 111 115 98 64 111 125 102 68 111 120 98 71 112 122 96 68 112 122 99 64 112 122 99 class0 67 111 119 101 67 115 119 101 67 111 119 94 68 111 115 98 68 115 120 98 68 115 125 98 64 112 122 99 64 116 122 99 64 112 128 96 class0 67 115 119 101 67 111 119 94 63 111 124 97 68 115 120 98 68 115 125 98 68 115 125 98 64 116 122 99 64 112 128 96 64 112 122 96 class0 67 111 119 94 63 111 124 97 63 111 124 101 68 115 125 98 68 115 125 98 60 111 125 98 64 112 128 96 64 112 122 96 60 107 122 96 class0 63 111 124 97 63 111 124 101 63 111 124 101 68 115 125 98 60 111 125 98 64 106 125 98 64 112 122 96 60 107 122 96 64 107 118 99 class0 63 111 124 101 63 111 124 101 67 115 129 101 64 106 125 98 64 111 120 98 64 111 125 102 64 107 118 99 64 107 122 96 68 107 122 99 class0 67 120 124 97 70 115 129 101 70 111 119 101 72 115 120 102 68 115 120 102 68 115 120 98 68 116 122 99 68 116 128 99 68 116 122 99 class0 60 67 70 55 63 71 70 58 60 67 67 58 60 62 67 57 64 66 64 57 64 66 67 57 60 68 67 56 64 68 67 56 60 68 67 56 class5 72 85 90 68 72 85 86 68 76 85 90 68 76 83 96 70 71 87 87 70 71 87 91 70 75 83 89 71 75 87 93 71 75 87 93 67 class3 72 85 86 68 76 85 90 68 76 85 90 68 71 87 87 70 71 87 91 70 76 83 91 67 75 87 93 71 75 87 93 67 79 91 93 71 class3 64 81 78 65 68 81 82 65 72 89 94 72 68 83 83 67 68 83 83 63 68 83 87 67 67 79 85 67 71 79 85 67 71 79 85 62 class5 68 73 90 79 64 66 90 79 60 55 82 76 76 83 96 81 68 75 83 81 64 68 83 74 79 91 96 79 79 91 96 75 75 79 89 75 class4 64 66 90 79 60 55 82 76 57 55 78 72 68 75 83 81 64 68 83 74 60 61 75 70 79 91 96 75 75 79 89 75 59 64 77 71 class4 57 55 74 61 64 66 78 65 72 81 86 68 60 57 75 67 64 64 83 67 71 79 91 70 55 64 81 67 67 64 85 67 71 79 89 71 class4 64 66 78 65 72 81 86 68 76 89 94 76 64 64 83 67 71 79 91 70 76 87 96 74 67 64 85 67 71 79 89 71 75 83 89 71 class5 80 98 102 76 80 98 102 76 80 94 102 79 80 91 100 78 80 95 104 78 80 95 104 81 75 87 89 75 79 91 96 75 79 95 100 79 class5 80 98 102 76 80 94 102 79 84 98 111 83 80 95 104 78 80 95 104 81 84 99 104 85 79 91 96 75 79 95 100 79 84 103 104 87 class5 80 94 102 79 84 98 111 83 80 98 111 83 80 95 104 81 84 99 104 85 84 103 108 88 79 95 100 79 84 103 104 87 79 107 109 92 class2 80 98 111 83 80 98 106 83 84 98 111 87 84 103 108 88 80 103 108 85 80 99 108 85 79 107 109 92 79 107 109 87 84 107 113 87 class2 76 85 90 61 57 59 64 39 53 49 71 46 71 83 87 59 56 57 63 41 53 51 67 52 71 83 81 62 55 61 63 46 51 54 67 50 class4 53 55 78 68 53 52 82 72 53 52 82 68 56 57 79 63 60 54 75 59 53 54 71 59 55 54 74 58 55 54 74 62 55 58 77 58 class4 57 55 74 61 53 55 82 61 50 52 74 65 53 54 75 67 53 54 79 67 56 54 75 63 55 58 70 58 55 54 74 58 55 54 74 58 class4 53 52 74 68 50 52 78 65 53 52 78 65 56 51 71 59 53 51 75 59 53 51 75 59 51 54 70 62 55 51 77 67 55 54 81 71 class4 53 52 78 65 53 62 78 61 60 77 82 65 53 51 75 59 53 57 75 63 56 68 87 63 55 54 81 71 51 58 81 75 55 68 89 71 class4 64 81 82 68 60 77 82 65 60 89 102 79 64 79 87 67 60 83 91 74 60 99 108 88 63 87 89 71 67 91 100 79 71 103 109 87 class0 60 77 82 65 60 89 102 79 68 106 111 91 60 83 91 74 60 99 108 88 68 112 118 96 67 91 100 79 71 103 109 87 71 111 113 96 class0 60 89 102 79 68 106 111 91 68 111 115 98 60 99 108 88 68 112 118 96 71 107 118 96 71 103 109 87 71 111 113 96 71 111 123 100 class0 64 106 125 98 64 111 120 98 64 111 125 102 64 107 118 99 64 107 122 96 68 107 122 99 67 107 118 96 71 116 118 100 71 111 123 104 class0 72 115 120 102 68 115 120 102 68 115 120 98 68 116 122 99 68 116 128 99 68 116 122 99 71 111 123 104 67 111 123 100 67 111 123 96 class0 68 111 120 102 68 106 115 94 64 89 98 79 68 112 122 103 71 112 122 99 68 99 108 85 71 111 118 100 71 111 123 100 71 103 118 96 class0 60 62 67 57 64 66 64 57 64 66 67 57 60 68 67 56 64 68 67 56 60 68 67 56 63 64 70 58 59 64 67 54 63 68 70 58 class5 76 83 96 70 71 87 87 70 71 87 91 70 75 83 89 71 75 87 93 71 75 87 93 67 78 87 88 70 78 87 92 74 74 87 96 74 class3 80 87 91 70 80 95 91 74 71 87 87 70 79 91 96 71 75 91 93 71 75 87 96 71 78 87 96 70 78 91 88 70 78 87 88 70 class3 80 95 91 74 71 87 87 70 68 83 87 63 75 91 93 71 75 87 96 71 71 83 93 67 78 91 88 70 78 87 88 70 78 96 92 74 class3 71 87 87 70 68 83 87 63 64 83 83 67 75 87 96 71 71 83 93 67 67 79 85 62 78 87 88 70 78 96 92 74 74 87 88 70 class3 64 83 83 67 68 79 83 63 68 83 83 67 67 79 85 62 63 75 85 62 67 79 85 67 74 87 88 70 66 79 80 66 63 83 80 63 class5 64 68 83 74 60 61 75 70 60 57 75 67 75 79 89 75 59 64 77 71 55 64 81 67 82 91 100 78 74 83 92 74 63 67 80 70 class4 71 79 91 70 76 87 96 74 80 91 100 78 71 79 89 71 75 83 89 71 75 87 89 75 66 63 84 66 70 75 88 70 74 79 88 74 class5 84 103 108 88 80 103 108 85 80 99 108 85 79 107 109 92 79 107 109 87 84 107 113 87 86 100 108 81 82 104 112 89 82 104 112 89 class2 84 103 108 85 80 99 104 81 71 83 87 59 79 107 104 87 84 99 104 83 71 83 81 62 82 104 112 89 82 100 104 89 78 96 104 81 class2 80 99 104 81 71 83 87 59 56 57 63 41 84 99 104 83 71 83 81 62 55 61 63 46 82 100 104 89 78 96 104 81 66 79 76 59 class2 71 83 87 59 56 57 63 41 53 51 67 52 71 83 81 62 55 61 63 46 51 54 67 50 78 96 104 81 66 79 76 59 59 56 66 44 class4 56 57 63 41 53 51 67 52 53 54 75 59 55 61 63 46 51 54 67 50 55 58 70 58 66 79 76 59 59 56 66 44 52 53 69 52 class4 53 51 67 52 53 54 75 59 56 57 79 63 51 54 67 50 55 58 70 58 55 54 74 58 59 56 66 44 52 53 69 52 56 56 69 59 class4 56 57 79 63 60 54 75 59 53 54 71 59 55 54 74 58 55 54 74 62 55 58 77 58 56 56 69 59 52 56 73 59 56 56 73 59 class4 53 54 71 59 56 57 75 59 53 57 79 63 55 58 77 58 51 54 74 58 55 54 70 58 56 56 73 59 52 60 73 59 56 56 69 55 class4 56 54 75 63 53 51 75 59 56 51 71 59 55 54 74 58 55 54 70 58 51 54 70 62 52 53 69 59 56 53 76 59 52 53 73 63 class4 56 51 71 59 53 51 75 59 53 51 75 59 51 54 70 62 55 51 77 67 55 54 81 71 52 53 73 63 52 56 73 66 56 56 84 78 class4 53 51 75 59 53 57 75 63 56 68 87 63 55 54 81 71 51 58 81 75 55 68 89 71 56 56 84 78 56 63 88 78 59 71 88 78 class4 60 99 108 88 68 112 118 96 71 107 118 96 71 103 109 87 71 111 113 96 71 111 123 100 63 91 100 78 66 104 108 89 70 113 122 96 class0 64 107 122 96 68 107 122 99 68 116 122 99 71 116 118 100 71 111 123 104 71 111 123 104 66 104 117 96 70 109 122 100 66 113 127 103 class0 68 116 122 99 68 116 128 99 68 116 122 99 71 111 123 104 67 111 123 100 67 111 123 96 66 113 127 103 66 113 122 103 66 109 117 96 class0 68 75 79 63 60 68 67 52 60 61 67 56 67 75 77 62 63 68 70 54 63 64 67 54 66 71 80 70 66 75 80 66 70 75 73 59 class5 60 61 67 56 64 64 71 56 60 68 67 56 63 64 67 54 63 68 70 54 63 64 70 58 70 75 73 59 63 67 66 55 63 67 66 55 class5 64 64 71 56 60 68 67 56 64 68 67 56 63 68 70 54 63 64 70 58 59 64 67 54 63 67 66 55 63 67 66 55 63 67 73 55 class5 75 83 89 71 75 87 93 71 75 87 93 67 78 87 88 70 78 87 92 74 74 87 96 74 79 88 97 72 79 88 93 72 75 91 97 72 class3 75 91 93 71 75 87 96 71 71 83 93 67 78 91 88 70 78 87 88 70 78 96 92 74 79 95 93 72 79 91 90 68 79 88 90 72 class3 67 79 85 62 63 75 85 62 67 79 85 67 74 87 88 70 66 79 80 66 63 83 80 63 79 88 93 72 71 84 86 68 67 81 86 64 class5 55 64 81 67 67 64 85 67 71 79 89 71 63 67 80 70 59 63 73 66 66 63 84 66 75 81 86 75 63 66 79 68 63 57 75 68 class4 67 64 85 67 71 79 89 71 75 83 89 71 59 63 73 66 66 63 84 66 70 75 88 70 63 66 79 68 63 57 75 68 67 73 82 72 class4 75 83 89 71 75 87 89 75 79 91 96 75 70 75 88 70 74 79 88 74 74 87 96 70 67 73 82 72 71 84 86 75 75 81 90 68 class5 75 87 89 75 79 91 96 75 79 95 100 79 74 79 88 74 74 87 96 70 78 91 100 78 71 84 86 75 75 81 90 68 75 81 93 68 class5 79 107 109 87 84 107 113 87 79 107 104 87 82 104 112 89 82 104 112 89 82 104 112 89 79 95 105 83 83 103 110 86 83 99 110 86 class2 84 107 113 87 79 107 104 87 84 99 104 83 82 104 112 89 82 104 112 89 82 100 104 89 83 103 110 86 83 99 110 86 79 95 105 86 class2 84 99 104 83 71 83 81 62 55 61 63 46 82 100 104 89 78 96 104 81 66 79 76 59 79 95 105 86 79 95 105 83 75 84 90 68 class2 51 54 67 50 55 58 70 58 55 54 74 58 59 56 66 44 52 53 69 52 56 56 69 59 63 66 68 49 56 54 65 49 56 54 68 53 class4 55 54 74 58 55 54 70 58 51 54 70 62 52 53 69 59 56 53 76 59 52 53 73 63 59 57 82 68 59 60 86 75 59 60 93 79 class4 51 58 81 75 55 68 89 71 63 87 89 71 56 63 88 78 59 71 88 78 63 87 92 78 75 91 105 86 79 103 110 90 71 103 110 86 class4 71 111 113 96 71 111 123 100 71 107 123 100 66 104 108 89 70 113 122 96 70 113 122 96 67 99 110 86 71 112 119 98 71 108 119 98 class0 71 111 123 100 67 111 123 100 67 107 118 96 70 118 117 100 66 113 122 100 66 109 122 96 67 108 119 98 63 112 114 98 63 108 119 98 class0 67 111 123 100 67 107 118 96 67 107 123 100 66 113 122 100 66 109 122 96 63 113 122 96 63 112 114 98 63 108 119 98 63 112 119 94 class0 71 111 123 104 67 111 123 100 67 111 123 96 66 113 127 103 66 113 122 103 66 109 117 96 67 108 124 98 63 108 124 98 67 108 119 98 class0 67 111 123 96 71 107 118 96 71 107 118 96 66 109 117 96 66 109 122 96 66 104 122 96 67 108 119 98 63 108 119 98 63 108 119 98 class0 71 103 118 96 67 87 100 79 59 83 89 75 70 113 122 103 66 109 122 96 63 96 104 89 63 112 124 98 67 108 119 98 63 99 110 94 class0 67 87 100 79 59 83 89 75 63 83 85 71 66 109 122 96 63 96 104 89 63 83 88 78 67 108 119 98 63 99 110 94 63 88 101 79 class0 63 64 70 58 59 64 67 54 63 68 70 58 63 67 66 55 63 67 73 55 63 67 69 59 59 66 65 60 67 70 75 60 67 66 72 57 class5 63 68 70 58 63 64 70 58 63 61 63 54 63 67 69 59 63 67 69 55 59 63 69 55 67 66 72 57 63 66 68 57 63 63 68 53 class5 78 87 92 74 78 87 88 70 78 87 88 70 75 88 90 72 75 91 97 72 79 88 97 72 74 88 93 73 78 88 97 69 78 92 97 73 class3 78 91 88 70 78 87 88 70 78 96 92 74 79 95 93 72 79 91 90 68 79 88 90 72 82 84 89 73 78 84 89 69 78 88 89 69 class3 78 87 88 70 78 96 92 74 74 87 88 70 79 91 90 68 79 88 90 72 79 88 93 72 78 84 89 69 78 88 89 69 78 88 89 73 class3 74 87 88 70 66 79 80 66 63 83 80 63 79 88 93 72 71 84 86 68 67 81 86 64 78 88 89 73 78 88 93 73 70 79 93 65 class3 66 79 80 63 66 83 84 63 70 83 84 66 67 81 82 64 67 77 86 64 67 81 82 64 67 84 85 62 67 79 82 65 67 84 89 65 class5 82 91 100 78 74 83 92 74 63 67 80 70 79 95 101 79 75 88 97 79 75 81 86 75 78 88 93 76 74 79 89 73 67 75 89 73 class3 74 83 92 74 63 67 80 70 59 63 73 66 75 88 97 79 75 81 86 75 63 66 79 68 74 79 89 73 67 75 89 73 60 67 78 62 class3 63 67 80 70 59 63 73 66 66 63 84 66 75 81 86 75 63 66 79 68 63 57 75 68 67 75 89 73 60 67 78 62 53 49 78 58 class4 74 87 96 70 78 91 100 78 86 91 96 81 75 81 90 68 75 81 93 68 75 84 90 72 70 79 85 73 70 79 85 65 70 79 85 69 class5 78 91 100 78 86 91 96 81 86 100 108 81 75 81 93 68 75 84 90 72 75 84 90 75 70 79 85 65 70 79 85 69 70 84 89 69 class5 82 104 112 89 82 104 112 89 82 104 112 89 79 95 105 83 83 103 110 86 83 99 110 86 78 92 97 80 82 106 114 87 85 111 114 90 class2 82 104 112 89 82 104 112 89 82 100 104 89 83 103 110 86 83 99 110 86 79 95 105 86 82 106 114 87 85 111 114 90 85 106 114 94 class2 82 100 104 89 78 96 104 81 66 79 76 59 79 95 105 86 79 95 105 83 75 84 90 68 85 106 114 94 82 102 114 90 74 92 97 80 class2 59 56 66 44 52 53 69 52 56 56 69 59 63 66 68 49 56 54 65 49 56 54 68 53 70 79 82 65 60 63 74 55 57 60 70 55 class4 52 56 73 59 56 56 73 59 52 60 73 59 56 57 72 57 56 57 72 57 56 57 75 57 60 63 78 62 60 71 85 69 60 63 82 69 class4 56 56 73 59 52 60 73 59 56 56 69 55 56 57 72 57 56 57 75 57 56 54 72 57 60 71 85 69 60 63 82 69 60 56 78 69 class4 52 56 73 66 56 56 84 78 56 63 88 78 63 70 97 83 67 77 97 83 75 91 105 86 89 106 114 94 93 115 124 97 93 120 124 104 class4 59 71 88 78 63 87 92 78 63 87 96 74 79 103 110 90 71 103 110 86 67 99 101 83 82 120 124 101 70 111 119 94 67 106 114 90 class0 63 91 100 78 66 104 108 89 70 113 122 96 75 99 101 79 67 99 110 86 71 112 119 98 63 92 105 80 63 88 105 83 67 97 110 87 class0 63 104 117 96 63 109 112 92 66 104 117 96 63 103 119 94 67 103 119 94 63 103 114 94 63 102 114 94 67 106 114 97 63 102 114 90 class0 63 109 112 92 66 104 117 96 70 109 122 100 67 103 119 94 63 103 114 94 67 108 119 98 67 106 114 97 63 102 114 90 63 106 119 94 class0 66 104 117 96 70 109 122 100 66 113 127 103 63 103 114 94 67 108 119 98 67 108 124 98 63 102 114 90 63 106 119 94 63 106 119 97 class0 70 109 122 100 66 113 127 103 66 113 122 103 67 108 119 98 67 108 124 98 63 108 124 98 63 106 119 94 63 106 119 97 63 111 124 97 class0 63 67 66 55 63 67 66 55 63 67 73 55 67 70 72 57 59 66 65 60 67 70 75 60 67 75 82 69 60 71 74 58 63 71 74 58 class5 63 67 73 55 63 67 69 59 63 67 69 55 67 70 75 60 67 66 72 57 63 66 68 57 63 71 74 58 67 71 74 62 63 71 74 58 class5 79 88 93 68 79 95 93 72 79 91 90 68 74 84 97 69 82 84 89 73 78 84 89 69 76 85 86 68 76 85 90 68 76 89 86 68 class3 79 95 93 72 79 91 90 68 79 88 90 72 82 84 89 73 78 84 89 69 78 88 89 69 76 85 90 68 76 89 86 68 80 85 86 68 class3 79 91 90 68 79 88 90 72 79 88 93 72 78 84 89 69 78 88 89 69 78 88 89 73 76 89 86 68 80 85 86 68 76 85 90 68 class3 67 81 86 64 67 81 86 64 67 81 82 64 70 79 93 65 70 79 85 62 67 84 85 62 76 85 94 68 68 77 82 65 68 77 86 65 class5 67 81 82 64 67 77 86 64 67 81 82 64 67 84 85 62 67 79 82 65 67 84 89 65 68 77 86 65 72 81 86 68 72 81 86 65 class5 67 77 86 64 67 81 82 64 67 84 82 68 67 79 82 65 67 84 89 65 67 75 82 62 72 81 86 68 72 81 86 65 68 77 82 65 class5 75 88 97 79 75 81 86 75 63 66 79 68 74 79 89 73 67 75 89 73 60 67 78 62 72 81 90 76 68 77 86 68 60 62 74 57 class5 67 73 82 72 71 84 86 75 75 81 90 68 60 60 78 65 67 75 85 73 70 79 85 73 64 69 86 72 76 85 94 76 72 89 94 72 class5 83 103 110 86 83 99 110 86 79 95 105 86 82 106 114 87 85 111 114 90 85 106 114 94 80 102 111 87 80 106 115 94 84 111 115 94 class2 75 84 90 68 63 66 68 49 56 54 65 49 74 92 97 80 70 79 82 65 60 63 74 55 84 102 111 87 80 94 102 83 76 89 90 68 class4 56 54 65 49 56 54 68 53 56 57 72 57 60 63 74 55 57 60 70 55 60 63 78 62 76 89 90 68 64 73 71 54 60 66 74 61 class4 56 54 68 53 56 57 72 57 56 57 72 57 57 60 70 55 60 63 78 62 60 71 85 69 64 73 71 54 60 66 74 61 60 69 86 76 class4 56 57 72 57 56 57 72 57 56 57 75 57 60 63 78 62 60 71 85 69 60 63 82 69 60 66 74 61 60 69 86 76 60 66 98 83 class4 56 57 75 57 56 54 72 57 59 54 79 60 60 63 82 69 60 56 78 69 60 60 93 80 60 66 98 83 64 69 98 87 72 81 102 87 class4 59 60 86 75 59 60 93 79 63 70 97 83 70 84 101 87 82 92 105 90 89 106 114 94 92 115 120 102 97 115 125 102 92 106 115 91 class2 63 70 97 83 67 77 97 83 75 91 105 86 89 106 114 94 93 115 124 97 93 120 124 104 92 106 115 91 80 106 106 91 80 111 120 98 class2 79 103 110 90 71 103 110 86 67 99 101 83 82 120 124 101 70 111 119 94 67 106 114 90 76 111 115 94 68 106 115 91 68 102 115 91 class0 71 108 119 98 67 108 119 98 63 112 114 98 67 111 114 94 67 106 119 97 67 106 114 94 64 98 106 91 64 106 115 94 64 106 115 94 class0 63 103 114 94 63 103 119 90 63 103 119 94 63 102 119 94 63 102 119 94 63 102 114 94 64 102 115 94 64 106 120 94 68 106 115 94 class0 63 103 119 90 63 103 119 94 67 103 119 94 63 102 119 94 63 102 114 94 67 106 114 97 64 106 120 94 68 106 115 94 64 102 115 94 class0 63 103 114 94 67 108 119 98 67 108 124 98 63 102 114 90 63 106 119 94 63 106 119 97 64 102 115 94 64 106 120 94 64 111 125 102 class0 67 108 119 98 67 108 124 98 63 108 124 98 63 106 119 94 63 106 119 97 63 111 124 97 64 106 120 94 64 111 125 102 68 111 125 102 class0 67 108 124 98 63 108 124 98 67 108 119 98 63 106 119 97 63 111 124 97 63 111 119 101 64 111 125 102 68 111 125 102 68 106 120 98 class0 74 88 93 73 78 88 97 69 78 92 97 73 72 89 94 72 76 89 94 72 80 94 94 72 80 87 96 70 80 91 96 70 80 91 96 74 class3 78 92 97 73 78 92 93 73 82 88 97 69 80 94 94 72 80 94 94 76 80 94 94 72 80 91 96 74 76 95 91 74 80 91 96 70 class3 82 88 97 69 74 88 93 73 74 84 97 69 80 94 94 72 80 89 94 72 76 85 86 68 80 91 96 70 76 91 91 70 71 87 91 70 class3 74 88 93 73 74 84 97 69 82 84 89 73 80 89 94 72 76 85 86 68 76 85 90 68 76 91 91 70 71 87 91 70 71 87 87 70 class3 74 84 97 69 82 84 89 73 78 84 89 69 76 85 86 68 76 85 90 68 76 89 86 68 71 87 91 70 71 87 87 70 76 87 91 70 class3 78 84 89 69 78 88 89 69 78 88 89 73 76 89 86 68 80 85 86 68 76 85 90 68 76 87 91 70 76 87 87 70 76 87 91 63 class3 78 88 89 73 78 88 93 73 70 79 93 65 76 85 90 68 80 89 94 72 76 85 94 68 76 87 91 63 80 91 91 67 76 87 91 70 class3 70 79 93 65 70 79 85 62 67 84 85 62 76 85 94 68 68 77 82 65 68 77 86 65 76 87 91 70 71 83 87 67 68 83 83 63 class5 70 79 85 62 67 84 85 62 67 79 82 65 68 77 82 65 68 77 86 65 72 81 86 68 71 83 87 67 68 83 83 63 68 79 87 63 class5 67 84 89 65 67 75 82 62 70 84 85 69 72 81 86 65 68 77 82 65 64 73 78 57 68 79 83 63 68 79 83 67 68 75 83 59 class5 67 75 82 62 70 84 85 69 78 88 93 76 68 77 82 65 64 73 78 57 68 81 78 68 68 79 83 67 68 75 83 59 64 71 79 63 class5 78 88 93 76 74 79 89 73 67 75 89 73 68 81 78 68 72 81 90 76 68 77 86 68 64 71 79 63 71 79 87 70 71 75 87 70 class3 74 79 89 73 67 75 89 73 60 67 78 62 72 81 90 76 68 77 86 68 60 62 74 57 71 79 87 70 71 75 87 70 64 61 75 52 class5 67 75 89 73 60 67 78 62 53 49 78 58 68 77 86 68 60 62 74 57 53 49 74 57 71 75 87 70 64 61 75 52 60 54 75 59 class4 60 67 78 62 53 49 78 58 60 60 78 65 60 62 74 57 53 49 74 57 64 69 86 72 64 61 75 52 60 54 75 59 71 79 91 78 class4 82 106 114 87 85 111 114 90 85 106 114 94 80 102 111 87 80 106 115 94 84 111 115 94 80 103 113 88 84 103 113 88 84 103 113 92 class2 70 79 82 65 60 63 74 55 57 60 70 55 80 94 102 83 76 89 90 68 64 73 71 54 88 107 118 92 84 103 108 88 71 75 83 59 class2 60 63 74 55 57 60 70 55 60 63 78 62 76 89 90 68 64 73 71 54 60 66 74 61 84 103 108 88 71 75 83 59 60 68 71 59 class4 57 60 70 55 60 63 78 62 60 71 85 69 64 73 71 54 60 66 74 61 60 69 86 76 71 75 83 59 60 68 71 59 64 75 91 78 class4 60 63 78 62 60 71 85 69 60 63 82 69 60 66 74 61 60 69 86 76 60 66 98 83 60 68 71 59 64 75 91 78 71 87 100 81 class4 63 92 105 80 63 88 105 83 67 97 110 87 64 89 102 79 60 85 94 79 64 89 98 83 64 99 104 85 56 91 104 81 60 95 113 88 class0 63 102 114 90 63 102 119 94 63 102 119 94 64 102 115 94 64 102 115 94 64 106 120 94 64 107 113 96 64 107 122 92 64 107 113 92 class0 63 102 119 94 63 102 114 94 67 106 114 97 64 106 120 94 68 106 115 94 64 102 115 94 64 107 113 92 64 103 113 92 64 103 118 96 class0 63 106 119 94 63 106 119 97 63 111 124 97 64 106 120 94 64 111 125 102 68 111 125 102 64 107 118 96 68 112 122 96 68 112 122 99 class0 67 111 114 101 67 106 114 90 63 97 97 83 72 111 120 98 72 111 111 98 68 102 106 87 71 112 128 99 71 112 122 96 76 112 118 96 class0 67 106 114 90 63 97 97 83 60 84 89 73 72 111 111 98 68 102 106 87 68 89 102 79 71 112 122 96 76 112 118 96 68 99 113 85 class0 63 71 74 58 67 71 74 62 63 71 74 58 64 73 71 57 64 77 74 61 64 73 74 61 68 75 83 63 64 71 75 63 71 75 79 63 class5 76 89 94 72 80 94 94 72 80 94 94 76 80 91 96 70 80 91 96 74 76 95 91 74 79 91 96 75 79 87 93 71 75 91 96 75 class3 80 94 94 72 80 89 94 72 76 85 86 68 80 91 96 70 76 91 91 70 71 87 91 70 79 87 96 71 75 87 93 71 75 87 89 67 class3 80 89 94 72 76 85 86 68 76 85 90 68 76 91 91 70 71 87 91 70 71 87 87 70 75 87 93 71 75 87 89 67 71 87 89 67 class3 76 85 90 68 80 89 94 72 76 85 94 68 76 87 91 63 80 91 91 67 76 87 91 70 75 87 89 67 75 87 85 67 75 87 89 67 class3 76 85 94 68 68 77 82 65 68 77 86 65 76 87 91 70 71 83 87 67 68 83 83 63 75 87 89 67 71 87 89 67 67 79 85 67 class3 68 77 82 65 68 77 86 65 72 81 86 68 71 83 87 67 68 83 83 63 68 79 87 63 71 87 89 67 67 79 85 67 67 79 81 62 class5 68 77 86 65 72 81 86 68 72 81 86 65 68 83 83 63 68 79 87 63 68 79 83 63 67 79 85 67 67 79 81 62 67 79 81 67 class5 68 77 86 68 60 62 74 57 53 49 74 57 71 75 87 70 64 61 75 52 60 54 75 59 71 75 81 71 63 61 74 54 59 54 77 54 class4 53 49 74 57 64 69 86 72 76 85 94 76 60 54 75 59 71 79 91 78 80 99 104 78 59 54 77 54 71 79 93 75 84 99 109 83 class4 76 85 94 76 72 89 94 72 76 85 86 68 80 99 104 78 84 95 100 78 76 87 91 70 84 99 109 83 79 91 104 75 75 87 89 75 class5 72 89 94 72 76 85 86 68 72 85 86 72 84 95 100 78 76 87 91 70 76 91 96 74 79 91 104 75 75 87 89 75 79 91 96 75 class5 72 94 98 76 80 98 106 83 80 102 111 87 76 99 104 85 80 103 113 88 80 103 113 88 84 103 109 83 88 107 113 92 88 107 113 92 class2 80 98 106 83 80 102 111 87 80 106 115 94 80 103 113 88 80 103 113 88 84 103 113 88 88 107 113 92 88 107 113 92 88 107 113 92 class2 80 102 111 87 80 106 115 94 84 111 115 94 80 103 113 88 84 103 113 88 84 103 113 92 88 107 113 92 88 107 113 92 88 107 118 96 class2 80 106 115 94 84 111 115 94 84 106 115 91 84 103 113 88 84 103 113 92 88 103 113 96 88 107 113 92 88 107 118 96 88 107 113 92 class2 84 111 115 94 84 106 115 91 84 102 111 87 84 103 113 92 88 103 113 96 88 107 113 92 88 107 118 96 88 107 113 92 88 107 118 92 class2 60 69 86 76 60 66 98 83 64 69 98 87 64 75 91 78 71 87 100 81 80 99 108 88 75 99 109 83 75 107 113 92 75 103 113 96 class4 80 94 111 91 84 106 111 91 92 115 120 102 84 112 118 96 92 116 128 103 97 121 128 103 75 99 113 92 75 107 113 92 79 111 123 100 class2 76 111 115 94 68 106 115 91 68 102 115 91 71 95 108 88 71 103 113 92 68 107 118 92 71 103 118 92 71 107 118 96 71 107 118 96 class0 68 102 115 91 64 89 102 79 60 85 94 79 68 107 118 92 64 99 104 85 56 91 104 81 71 107 118 96 63 107 113 92 63 99 113 87 class0 64 89 98 83 64 98 106 91 64 106 115 94 60 95 113 88 64 95 104 88 64 103 113 92 63 103 113 92 63 103 113 92 63 103 113 87 class0 68 106 115 94 64 102 115 94 64 102 115 94 64 103 113 92 64 103 118 96 64 103 118 99 67 99 109 92 67 99 118 92 71 111 118 96 class0 64 102 115 94 64 106 120 94 64 111 125 102 64 103 118 99 64 107 118 96 68 112 122 96 71 111 118 96 67 107 118 96 63 107 123 100 class0 68 111 125 102 68 106 120 98 64 111 125 98 68 112 122 99 64 103 118 96 64 107 122 99 63 107 118 100 67 111 118 100 67 111 123 100 class0 64 111 125 98 64 102 115 98 64 111 120 98 64 107 122 99 64 107 118 96 64 107 118 99 67 111 123 100 67 111 118 96 67 107 118 96 class0 68 111 120 98 68 111 131 102 72 111 120 98 68 112 122 99 68 107 128 96 71 112 128 99 67 111 113 100 67 111 118 96 71 111 118 96 class0 68 102 106 87 68 89 102 79 64 85 90 72 76 112 118 96 68 99 113 85 68 91 96 78 75 111 118 100 71 107 118 96 67 99 109 83 class0 64 77 74 61 64 73 74 61 64 66 71 57 64 71 75 63 71 75 79 63 68 71 71 56 71 79 77 62 67 75 77 62 67 72 77 58 class5 80 91 96 74 76 95 91 74 80 91 96 70 79 87 93 71 75 91 96 75 79 87 96 71 78 87 96 70 74 87 92 70 74 91 92 70 class3 76 95 91 74 80 91 96 70 76 91 91 70 75 91 96 75 79 87 96 71 75 87 93 71 74 87 92 70 74 91 92 70 74 87 92 66 class3 80 91 96 70 76 91 91 70 71 87 91 70 79 87 96 71 75 87 93 71 75 87 89 67 74 91 92 70 74 87 92 66 74 87 92 66 class3 76 87 91 63 80 91 91 67 76 87 91 70 75 87 89 67 75 87 85 67 75 87 89 67 74 83 88 66 66 79 80 63 66 79 76 59 class3 60 54 75 59 71 79 91 78 80 99 104 78 59 54 77 54 71 79 93 75 84 99 109 83 63 56 76 55 63 60 80 59 78 83 100 78 class4 88 107 113 92 88 107 118 92 84 103 108 88 88 107 118 92 88 111 118 100 88 116 123 100 86 104 112 89 86 104 112 92 86 113 122 100 class2 71 75 83 59 60 68 71 59 64 75 91 78 84 99 104 79 71 91 93 71 75 99 109 83 86 118 122 100 82 109 112 92 78 109 112 92 class2 80 99 108 88 84 107 118 96 84 112 118 96 75 103 113 96 75 99 109 96 75 99 113 92 70 100 112 92 66 96 108 92 63 87 100 81 class0 84 107 118 96 84 112 118 96 92 116 128 103 75 99 109 96 75 99 113 92 75 107 113 92 66 96 108 92 63 87 100 81 63 87 104 81 class0 84 112 118 96 92 116 128 103 97 121 128 103 75 99 113 92 75 107 113 92 79 111 123 100 63 87 100 81 63 87 104 81 63 96 104 89 class0 88 116 122 96 92 103 108 81 80 87 96 81 79 107 118 92 75 107 113 92 71 103 113 96 66 100 108 92 63 100 117 96 66 104 117 96 class0 64 99 104 85 56 91 104 81 60 95 113 88 63 107 113 92 63 99 113 87 63 103 113 92 63 104 117 92 63 100 112 92 63 104 112 92 class0 64 107 113 92 64 103 113 92 64 103 118 96 67 103 118 96 67 99 109 92 67 99 118 92 66 104 108 96 66 104 117 92 66 100 108 89 class0 64 107 118 96 68 112 122 96 68 112 122 99 67 107 118 96 63 107 123 100 63 107 118 100 63 109 122 96 63 100 117 96 66 109 122 100 class0 68 112 122 99 64 103 118 96 64 107 122 99 63 107 118 100 67 111 118 100 67 111 123 100 66 109 122 100 66 109 122 100 66 109 117 96 class0 64 103 118 96 64 107 122 99 64 107 118 96 67 111 118 100 67 111 123 100 67 111 118 96 66 109 122 100 66 109 117 96 66 113 117 96 class0 68 107 122 96 68 112 122 99 68 107 128 96 71 107 118 96 67 111 113 100 67 111 118 96 66 113 117 96 70 109 122 100 66 109 122 96 class0 68 112 122 99 68 107 128 96 71 112 128 99 67 111 113 100 67 111 118 96 71 111 118 96 70 109 122 100 66 109 122 96 70 113 127 96 class0 68 107 128 96 71 112 128 99 71 112 122 96 67 111 118 96 71 111 118 96 71 111 118 100 66 109 122 96 70 113 127 96 70 113 117 96 class0 71 112 128 99 71 112 122 96 76 112 118 96 71 111 118 96 71 111 118 100 75 111 118 100 70 113 127 96 70 113 117 96 74 113 117 96 class0 79 91 96 71 79 91 96 75 79 87 93 71 74 87 92 70 78 87 96 70 78 87 96 70 71 88 93 68 75 84 93 68 75 84 90 68 class3 79 91 96 75 79 87 93 71 75 91 96 75 78 87 96 70 78 87 96 70 74 87 92 70 75 84 93 68 75 84 90 68 75 84 90 68 class3 75 87 93 71 75 87 89 67 71 87 89 67 74 87 92 66 74 87 92 66 74 83 88 66 71 81 82 64 67 73 82 60 67 73 79 57 class3 75 87 89 67 71 87 89 67 75 83 89 67 74 87 92 66 74 83 88 66 70 83 84 70 67 73 82 60 67 73 79 57 63 73 72 57 class3 75 83 89 67 75 87 89 67 75 87 89 67 70 83 84 70 74 83 84 66 74 83 88 66 63 73 72 57 67 73 79 60 71 81 86 64 class3 71 87 89 67 67 79 85 67 67 79 81 62 70 79 88 63 74 87 88 70 70 83 84 66 63 73 75 57 67 84 79 68 71 91 90 72 class5 67 68 74 54 67 72 77 62 71 75 81 71 70 75 76 59 66 71 73 55 63 75 80 59 71 77 86 64 71 77 86 64 71 81 86 68 class5 67 72 77 62 71 75 81 71 63 61 74 54 66 71 73 55 63 75 80 59 70 75 84 66 71 77 86 64 71 81 86 68 75 81 86 68 class5 75 87 89 75 79 91 96 75 84 103 109 83 82 91 96 78 78 91 96 78 82 104 112 85 87 95 97 79 83 99 105 86 87 112 114 94 class5 88 107 113 92 88 107 113 92 88 107 118 96 90 113 127 96 90 109 117 96 95 109 117 96 92 117 130 101 96 112 124 98 92 108 114 94 class2 88 107 118 92 88 111 118 100 88 116 123 100 86 104 112 89 86 104 112 92 86 113 122 100 83 103 114 90 83 112 124 94 87 112 119 98 class2 88 111 118 100 88 116 123 100 84 99 104 79 86 104 112 92 86 113 122 100 86 118 122 100 83 112 124 94 87 112 119 98 79 103 114 90 class2 75 107 113 92 75 103 113 96 75 99 109 96 74 100 112 92 70 100 112 92 66 96 108 92 63 95 110 90 63 91 105 90 59 91 105 86 class0 75 99 109 96 75 99 113 92 75 107 113 92 66 96 108 92 63 87 100 81 63 87 104 81 59 91 105 86 59 91 101 86 59 95 110 90 class0 71 103 113 96 71 107 113 92 71 103 118 92 66 104 117 96 66 104 112 92 66 109 117 92 59 103 119 94 63 103 114 94 63 103 110 90 class0 71 107 113 92 71 103 118 92 71 107 118 96 66 104 112 92 66 109 117 92 70 104 117 92 63 103 114 94 63 103 110 90 59 99 110 90 class0 71 107 118 96 63 107 113 92 63 99 113 87 66 104 122 92 63 104 117 92 63 100 112 92 59 95 110 90 59 91 105 86 59 88 110 86 class0 63 99 113 87 63 103 113 92 63 103 113 92 63 100 112 92 63 104 112 92 63 104 112 92 59 88 110 86 59 88 110 90 59 99 114 90 class0 67 103 118 96 67 99 109 92 67 99 118 92 66 104 108 96 66 104 117 92 66 100 108 89 63 91 101 79 63 95 105 83 67 95 101 83 class0 67 99 118 92 71 111 118 96 67 107 118 96 66 100 108 89 63 100 112 92 63 109 122 96 67 95 101 83 67 95 101 86 67 99 114 86 class0 67 111 118 96 67 107 118 96 71 107 118 96 66 113 117 96 66 113 122 96 66 113 117 96 67 103 114 94 63 108 119 94 63 112 114 94 class0 71 111 118 96 71 111 118 100 75 111 118 100 70 113 127 96 70 113 117 96 74 113 117 96 67 112 119 98 67 108 119 98 71 108 114 98 class0 71 107 118 96 67 99 109 83 63 87 89 75 74 113 122 100 70 109 112 96 66 100 108 85 71 112 119 98 67 112 119 98 67 103 110 90 class0 67 99 109 83 63 87 89 75 63 79 89 71 70 109 112 96 66 100 108 85 63 87 88 74 67 112 119 98 67 103 110 90 63 88 97 79 class0 78 87 96 70 78 87 96 70 74 87 92 70 75 84 93 68 75 84 90 68 75 84 90 68 74 84 85 65 70 79 82 62 67 75 78 58 class3 74 91 92 70 74 87 92 66 74 87 92 66 75 84 82 68 71 81 82 64 67 73 82 60 63 75 78 55 63 71 74 55 63 67 82 58 class3 74 87 92 66 74 87 92 66 74 83 88 66 71 81 82 64 67 73 82 60 67 73 79 57 63 71 74 55 63 67 82 58 63 71 74 58 class5 70 83 84 70 74 83 84 66 74 83 88 66 63 73 72 57 67 73 79 60 71 81 86 64 63 71 74 58 63 71 74 58 67 75 78 58 class5 70 79 88 63 74 87 88 70 70 83 84 66 63 73 75 57 67 84 79 68 71 91 90 72 60 71 70 58 63 75 74 62 67 84 85 69 class5 70 83 84 66 66 75 80 63 70 79 76 63 71 91 90 72 67 84 90 64 67 81 82 64 67 84 85 69 70 88 93 73 74 88 89 73 class5 66 75 80 63 70 79 76 63 70 79 84 66 67 84 90 64 67 81 82 64 67 81 82 64 70 88 93 73 74 88 89 73 78 92 97 80 class5 70 79 76 63 70 79 84 66 70 75 76 59 67 81 82 64 67 81 82 64 71 77 86 64 74 88 89 73 78 92 97 80 82 97 97 80 class5 70 75 84 66 63 56 76 55 63 60 80 59 75 81 86 68 63 63 79 57 63 70 86 72 78 92 97 76 67 71 78 62 74 79 89 73 class4 63 60 80 59 78 83 100 78 82 96 104 85 63 70 86 72 79 91 101 83 83 91 101 83 74 79 89 73 78 92 97 87 78 97 101 83 class5 90 109 117 96 95 109 117 96 90 109 117 92 96 112 124 98 92 108 114 94 87 99 105 90 93 115 124 101 89 106 114 94 85 106 114 94 class2 90 109 117 92 86 104 112 89 86 104 112 92 87 99 105 90 83 103 114 90 83 112 124 94 85 106 114 94 78 115 114 97 78 111 119 94 class2 82 109 112 92 78 109 112 92 74 100 112 92 71 95 110 90 67 99 114 94 63 95 110 90 63 97 105 87 60 97 110 90 60 102 114 90 class0 74 100 112 92 70 100 112 92 66 96 108 92 63 95 110 90 63 91 105 90 59 91 105 86 60 102 114 90 57 92 110 87 57 88 101 87 class0 63 96 104 89 66 100 108 92 63 100 117 96 59 99 114 90 59 99 114 90 59 95 119 90 60 88 110 83 57 92 110 87 57 97 110 87 class0 63 104 112 92 59 104 112 92 59 100 104 81 59 99 114 90 63 99 114 90 63 99 110 86 60 97 119 94 63 111 119 97 63 106 119 90 class0 59 104 112 92 59 100 104 81 59 96 104 81 63 99 114 90 63 99 110 86 59 95 105 86 63 111 119 97 63 106 119 90 60 97 114 94 class0 59 100 104 81 59 96 104 81 63 91 108 89 63 99 110 86 59 95 105 86 63 99 101 86 63 106 119 90 60 97 114 94 63 102 114 87 class0 63 100 104 89 66 100 112 92 66 104 108 96 67 95 101 83 67 95 105 79 63 91 101 79 67 97 105 80 63 88 97 73 63 84 97 73 class0 66 100 108 89 63 100 112 92 63 109 122 96 67 95 101 83 67 95 101 86 67 99 114 86 67 84 89 76 63 79 85 73 67 84 93 76 class0 63 100 117 96 66 109 122 100 66 109 122 100 67 103 110 94 67 108 119 98 67 108 119 94 67 92 101 76 63 102 114 90 67 102 114 94 class0 66 109 122 100 66 109 122 100 66 109 117 96 67 108 119 98 67 108 119 94 63 103 119 94 63 102 114 90 67 102 114 94 67 102 114 90 class0 66 109 117 96 66 113 117 96 66 113 122 96 63 103 119 94 67 103 114 94 63 108 119 94 67 102 114 90 63 102 119 94 63 111 119 97 class0 66 109 122 96 70 113 127 96 70 113 117 96 67 108 119 98 67 112 119 98 67 108 119 98 67 111 119 97 67 111 124 94 67 115 124 97 class0 71 88 93 68 75 84 93 68 75 84 90 68 74 84 85 65 74 84 85 65 70 79 82 62 64 73 74 57 64 73 74 57 64 69 71 57 class3 75 84 93 68 75 84 90 68 75 84 90 68 74 84 85 65 70 79 82 62 67 75 78 58 64 73 74 57 64 69 71 57 64 69 74 57 class5 71 81 86 64 71 81 82 64 67 73 75 57 67 75 78 58 70 79 82 65 67 75 78 65 64 73 78 61 68 77 90 68 72 77 86 65 class5 67 84 79 68 71 91 90 72 67 84 90 64 63 75 74 62 67 84 85 69 70 88 93 73 64 69 74 61 72 81 86 68 80 98 106 83 class5 71 81 86 68 75 81 86 68 63 63 79 57 78 92 101 80 78 92 97 76 67 71 78 62 80 94 102 79 76 85 90 68 68 77 90 68 class5 75 81 86 68 63 63 79 57 63 70 86 72 78 92 97 76 67 71 78 62 74 79 89 73 76 85 90 68 68 77 90 68 76 85 98 79 class4 63 70 86 72 79 91 101 83 83 91 101 83 74 79 89 73 78 92 97 87 78 97 101 83 76 85 98 79 76 85 98 79 80 94 102 83 class5 79 91 101 83 83 91 101 83 87 95 97 79 78 92 97 87 78 97 101 83 82 102 105 87 76 85 98 79 80 94 102 83 88 106 106 87 class5 87 112 119 98 79 103 114 90 71 95 110 90 70 106 114 90 67 102 114 94 63 97 105 87 64 98 111 91 60 98 111 87 57 85 98 83 class0 67 99 114 94 63 95 110 90 63 91 105 90 60 97 110 90 60 102 114 90 57 92 110 87 53 85 102 83 57 89 106 83 57 81 94 79 class0 63 91 105 90 59 91 105 86 59 91 101 86 57 92 110 87 57 88 101 87 57 88 101 83 57 81 94 79 57 81 90 76 57 81 90 76 class0 59 91 105 86 59 91 101 86 59 95 110 90 57 88 101 87 57 88 101 83 57 88 105 83 57 81 90 76 57 81 90 76 53 85 94 76 class0 59 91 101 86 59 95 110 90 59 99 114 90 57 88 101 83 57 88 105 83 60 88 110 83 57 81 90 76 53 85 94 76 57 85 98 83 class0 59 99 114 90 59 95 119 90 59 103 119 94 57 92 110 87 57 97 110 87 63 97 110 87 60 94 106 87 60 94 111 87 57 94 102 87 class0 63 103 110 90 59 99 110 90 59 95 110 90 57 92 114 87 57 92 105 83 57 88 105 83 53 89 106 87 53 89 106 83 53 81 102 83 class0 59 99 110 90 59 95 110 90 59 91 105 86 57 92 105 83 57 88 105 83 57 92 105 83 53 89 106 83 53 81 102 83 53 85 94 83 class0 59 99 114 90 63 99 114 90 63 99 110 86 60 97 119 94 63 111 119 97 63 106 119 90 57 98 106 91 60 106 115 98 64 106 120 98 class0 63 99 101 86 67 95 101 83 67 95 105 79 63 102 114 87 67 97 105 80 63 88 97 73 64 106 120 94 64 106 115 94 68 102 115 87 class0 67 103 110 94 67 108 119 98 67 108 119 94 67 92 101 76 63 102 114 90 67 102 114 94 64 85 98 76 64 89 106 83 64 102 115 91 class0 63 108 119 94 63 112 114 94 67 108 119 101 63 111 119 97 63 106 114 97 67 111 124 94 64 111 120 94 64 111 125 98 72 111 120 98 class0 67 108 119 98 67 112 119 98 67 108 119 98 67 111 119 97 67 111 124 94 67 115 124 97 72 111 120 98 72 111 125 98 68 111 115 94 class0 67 112 119 98 67 108 119 98 71 108 114 98 67 111 124 94 67 115 124 97 67 115 119 97 72 111 125 98 68 111 115 94 68 111 115 94 class0 71 108 114 98 71 112 119 98 67 112 119 98 67 115 119 97 70 111 119 97 67 111 119 94 68 111 115 94 68 111 120 98 68 111 120 94 class0 71 112 119 98 67 112 119 98 67 103 110 90 70 111 119 97 67 111 119 94 67 106 114 97 68 111 120 98 68 111 120 94 68 111 120 94 class0 67 103 110 90 63 88 97 79 63 84 93 75 67 106 114 97 67 102 105 87 63 88 89 76 68 111 120 94 68 111 115 94 68 94 98 79 class0 70 79 82 62 67 75 78 58 63 75 78 55 64 69 71 57 64 69 74 57 64 69 74 57 68 71 71 59 68 75 71 56 68 71 75 56 class5 70 79 82 65 67 75 78 65 60 71 70 58 68 77 90 68 72 77 86 65 68 73 78 61 64 79 79 63 68 83 83 70 68 83 87 67 class5 70 88 93 73 74 88 89 73 78 92 97 80 80 98 106 83 88 106 111 87 88 106 111 87 76 87 91 78 88 103 113 85 88 103 113 88 class5 74 88 89 73 78 92 97 80 82 97 97 80 88 106 111 87 88 106 111 87 88 102 111 87 88 103 113 85 88 103 113 88 84 99 108 85 class5 82 97 97 80 82 92 93 83 78 92 101 80 88 102 111 87 80 98 102 83 80 94 102 79 84 99 108 85 84 95 104 81 76 87 96 70 class5 78 92 97 76 67 71 78 62 74 79 89 73 76 85 90 68 68 77 90 68 76 85 98 79 76 83 87 70 76 87 96 78 76 83 96 78 class5 67 71 78 62 74 79 89 73 78 92 97 87 68 77 90 68 76 85 98 79 76 85 98 79 76 87 96 78 76 83 96 78 76 83 91 78 class5 78 115 114 97 78 111 119 94 70 106 114 90 72 102 106 91 64 98 102 91 64 98 111 91 64 99 108 92 64 103 118 96 60 103 108 88 class0 70 106 114 90 67 102 114 94 63 97 105 87 64 98 111 91 60 98 111 87 57 85 98 83 60 103 108 88 53 83 100 85 53 83 104 81 class0 57 88 101 83 57 88 105 83 60 88 110 83 57 81 90 76 53 85 94 76 57 85 98 83 56 79 91 78 53 79 96 78 53 83 96 81 class0 60 97 114 94 63 102 114 87 67 97 105 80 64 102 115 94 64 106 120 94 64 106 115 94 64 112 118 96 64 107 113 96 71 107 118 96 class0 67 92 101 76 63 102 114 90 67 102 114 94 64 85 98 76 64 89 106 83 64 102 115 91 68 87 96 78 68 87 100 78 64 95 104 81 class0 63 102 114 90 67 102 114 94 67 102 114 90 64 89 106 83 64 102 115 91 68 106 115 94 68 87 100 78 64 95 104 81 64 103 113 88 class0 67 102 114 90 63 102 119 94 63 111 119 97 68 106 115 94 68 111 120 98 64 111 120 94 64 103 113 88 64 107 118 96 68 107 118 96 class0 63 111 119 97 63 106 114 97 67 111 124 94 64 111 120 94 64 111 125 98 72 111 120 98 68 107 118 96 64 112 122 96 64 112 122 99 class0 63 106 114 97 67 111 124 94 67 111 119 97 64 111 125 98 72 111 120 98 72 111 120 98 64 112 122 96 64 112 122 99 68 107 122 96 class0 67 115 124 97 67 115 119 97 70 111 119 97 68 111 115 94 68 111 115 94 68 111 120 98 76 112 122 99 71 112 122 96 71 112 122 96 class0 67 106 114 97 67 102 105 87 63 88 89 76 68 111 120 94 68 111 115 94 68 94 98 79 68 112 122 99 68 112 118 96 68 95 113 88 class0 64 69 71 57 64 69 74 57 64 69 74 57 68 71 71 59 68 75 71 56 68 71 75 56 67 72 74 58 67 72 74 54 63 75 74 58 class5 64 69 74 57 64 73 74 61 64 73 71 57 68 71 75 56 68 71 75 56 64 75 75 56 63 75 74 58 63 72 74 54 63 68 70 58 class5 64 73 74 61 64 73 71 57 68 69 74 57 68 71 75 56 64 75 75 56 68 71 75 56 63 72 74 54 63 68 70 58 63 72 70 58 class5 64 73 78 57 64 73 78 61 68 77 90 68 64 75 79 56 64 71 75 63 64 79 79 63 67 72 70 58 63 72 74 58 63 72 77 58 class5 68 77 90 68 72 77 86 65 68 73 78 61 64 79 79 63 68 83 83 70 68 83 87 67 63 72 77 58 67 79 85 67 67 83 89 71 class5 72 77 86 65 68 73 78 61 64 69 74 61 68 83 83 70 68 83 87 67 68 79 83 59 67 79 85 67 67 83 89 71 71 79 81 67 class5 68 73 78 61 64 69 74 61 72 81 86 68 68 83 87 67 68 79 83 59 68 75 79 59 67 83 89 71 71 79 81 67 67 72 81 62 class5 64 69 74 61 72 81 86 68 80 98 106 83 68 79 83 59 68 75 79 59 76 87 91 78 71 79 81 67 67 72 81 62 71 83 89 67 class5 80 98 106 83 88 106 111 87 88 106 111 87 76 87 91 78 88 103 113 85 88 103 113 88 71 83 89 67 79 87 96 79 75 83 96 79 class5 80 98 102 83 80 94 102 79 76 85 90 68 84 95 104 81 76 87 96 70 76 83 87 70 79 87 96 75 79 87 89 71 79 87 100 75 class5 80 94 102 79 76 85 90 68 68 77 90 68 76 87 96 70 76 83 87 70 76 87 96 78 79 87 89 71 79 87 100 75 75 87 96 79 class5 76 85 90 68 68 77 90 68 76 85 98 79 76 83 87 70 76 87 96 78 76 83 96 78 79 87 100 75 75 87 96 79 75 79 96 79 class5 88 106 106 87 88 106 111 91 88 115 120 94 88 103 108 88 88 107 113 92 88 112 122 96 93 103 113 92 88 107 118 96 88 121 123 100 class2 84 111 115 94 84 115 115 98 88 115 120 102 88 116 122 103 84 112 122 99 84 116 122 99 84 111 118 96 79 107 109 96 71 103 113 96 class2 84 115 115 98 88 115 120 102 80 111 115 94 84 112 122 99 84 116 122 99 76 112 118 92 79 107 109 96 71 103 113 96 67 99 113 87 class0 76 106 115 94 72 102 106 91 64 98 102 91 71 103 108 88 64 99 108 92 64 103 118 96 63 91 104 87 59 91 100 87 59 87 104 87 class0 64 98 111 91 60 98 111 87 57 85 98 83 60 103 108 88 53 83 100 85 53 83 104 81 55 83 100 83 51 79 100 79 51 75 96 79 class0 60 98 111 87 57 85 98 83 53 85 102 83 53 83 100 85 53 83 104 81 53 83 100 85 51 79 100 79 51 75 96 79 51 72 89 75 class0 57 89 106 83 57 81 94 79 57 81 90 76 50 75 91 74 53 75 79 74 56 79 91 78 51 68 85 71 51 75 93 79 55 75 96 79 class0 57 81 90 76 57 81 90 76 53 85 94 76 56 79 91 78 56 79 91 78 53 79 96 78 55 75 96 79 55 72 93 71 55 72 85 75 class0 57 85 98 83 60 94 106 87 60 94 111 87 53 83 96 81 60 87 100 85 56 87 104 81 59 79 93 75 59 91 104 83 59 87 100 83 class0 60 94 106 87 60 94 111 87 57 94 102 87 60 87 100 85 56 87 104 81 53 83 100 78 59 91 104 83 59 87 100 83 55 79 96 75 class0 57 85 102 79 53 89 106 87 53 89 106 83 53 79 96 81 53 87 104 88 53 95 108 85 55 83 96 79 55 83 104 83 51 83 100 83 class0 53 89 106 83 53 81 102 83 53 85 94 83 53 95 108 85 53 83 100 81 53 79 96 78 51 83 100 83 51 79 96 79 55 79 93 75 class0 53 81 102 83 53 85 94 83 53 85 98 83 53 83 100 81 53 79 96 78 46 79 87 78 51 79 96 79 55 79 93 75 51 75 93 75 class0 64 102 115 94 64 106 120 94 64 106 115 94 64 112 118 96 64 107 113 96 71 107 118 96 71 107 118 96 67 107 118 96 79 111 118 96 class0 68 111 120 98 64 111 120 94 64 111 125 98 64 107 118 96 68 107 118 96 64 112 122 96 67 107 118 96 67 107 118 96 67 107 123 96 class0 64 111 120 94 64 111 125 98 72 111 120 98 68 107 118 96 64 112 122 96 64 112 122 99 67 107 118 96 67 107 123 96 67 111 123 96 class0 72 111 120 98 72 111 125 98 68 111 115 94 68 107 122 96 68 112 128 99 76 112 122 99 67 111 123 100 67 111 118 100 71 111 123 96 class0 68 75 71 56 68 71 75 56 68 71 75 56 67 72 74 54 63 75 74 58 63 72 74 54 66 71 69 55 66 71 73 55 66 71 76 55 class5 68 71 75 56 64 75 75 56 68 71 75 56 63 72 74 54 63 68 70 58 63 72 70 58 66 71 76 55 63 71 76 55 63 71 73 59 class5 64 71 75 63 64 79 79 63 68 83 83 70 63 72 74 58 63 72 77 58 67 79 85 67 63 75 76 59 66 75 76 63 70 79 80 63 class5 88 103 113 85 88 103 113 88 84 99 108 85 79 87 96 79 75 83 96 79 75 91 96 83 90 104 108 85 78 91 96 78 66 71 84 78 class5 88 103 113 88 84 99 108 85 84 95 104 81 75 83 96 79 75 91 96 83 79 87 96 75 78 91 96 78 66 71 84 78 59 63 88 74 class5 84 99 108 85 84 95 104 81 76 87 96 70 75 91 96 83 79 87 96 75 79 87 89 71 66 71 84 78 59 63 88 74 70 75 92 78 class5 76 83 96 78 76 83 91 78 80 95 100 81 75 79 96 79 75 83 96 79 88 95 109 87 74 79 88 74 74 83 88 78 78 91 100 81 class5 88 103 108 88 88 107 113 92 88 112 122 96 93 103 113 92 88 107 118 96 88 121 123 100 86 104 112 92 86 100 108 92 78 104 104 92 class2 88 112 122 96 88 116 122 103 84 112 122 99 88 121 123 100 84 111 118 96 79 107 109 96 78 104 104 92 78 113 112 96 70 104 112 92 class2 84 112 122 99 84 116 122 99 76 112 118 92 79 107 109 96 71 103 113 96 67 99 113 87 70 104 112 92 66 91 100 81 63 87 100 81 class0 76 112 118 92 71 103 108 88 64 99 108 92 67 99 113 87 63 91 104 87 59 91 100 87 63 87 100 81 63 87 104 85 56 91 108 89 class0 71 103 108 88 64 99 108 92 64 103 118 96 63 91 104 87 59 91 100 87 59 87 104 87 63 87 104 85 56 91 108 89 56 87 104 85 class0 64 103 118 96 60 103 108 88 53 83 100 85 59 87 104 87 55 83 100 83 51 79 100 79 56 87 104 85 56 83 100 81 49 75 100 78 class0 53 83 100 85 53 83 104 81 53 83 100 85 51 79 100 79 51 75 96 79 51 72 89 75 49 75 100 78 52 67 84 78 52 71 84 78 class0 56 79 91 78 53 79 96 78 53 83 96 81 55 72 93 71 55 72 85 75 59 79 93 75 52 67 80 74 56 67 84 70 52 71 84 74 class0 53 83 96 81 60 87 100 85 56 87 104 81 59 79 93 75 59 91 104 83 59 87 100 83 52 71 84 74 56 79 96 74 56 83 104 85 class0 46 79 87 78 50 79 96 78 56 87 104 92 51 75 93 75 51 79 96 79 55 87 100 83 56 83 108 85 56 83 100 81 56 79 100 81 class0 56 87 104 92 60 103 118 92 64 107 118 96 55 87 100 83 63 95 109 92 67 107 118 96 56 79 100 81 52 83 100 81 59 87 108 85 class0 71 107 118 96 76 112 122 99 76 112 122 99 79 111 118 96 84 116 118 96 75 107 123 96 66 96 112 92 70 100 117 92 66 109 122 92 class0 76 112 122 99 76 112 122 99 68 103 113 88 84 116 118 96 75 107 123 96 67 107 118 92 70 100 117 92 66 109 122 92 70 109 122 96 class0 64 95 104 81 64 103 113 88 64 107 118 96 67 87 93 75 63 95 100 83 67 107 118 96 66 87 100 78 66 87 96 78 66 87 92 78 class0 64 103 113 88 64 107 118 96 68 107 118 96 63 95 100 83 67 107 118 96 67 107 118 96 66 87 96 78 66 87 92 78 66 91 104 78 class0 64 112 122 99 68 107 122 96 68 112 128 99 67 111 123 96 67 111 123 100 67 111 118 100 63 109 122 96 66 113 127 100 66 109 122 100 class0 71 112 122 96 68 112 122 99 68 112 118 96 71 111 123 100 71 107 118 96 71 107 109 92 70 113 117 100 70 109 122 100 70 113 122 100 class0 68 112 122 99 68 112 118 96 68 95 113 88 71 107 118 96 71 107 109 92 67 91 104 87 70 109 122 100 70 113 122 100 70 113 117 100 class0 63 72 74 54 63 68 70 58 63 72 70 58 66 71 76 55 63 71 76 55 63 71 73 59 63 70 72 57 63 73 72 60 67 77 82 64 class5 67 79 85 67 67 83 89 71 71 79 81 67 70 79 80 63 70 83 92 70 78 91 92 78 87 99 105 83 87 99 110 86 87 112 114 90 class5 75 91 96 83 79 87 96 75 79 87 89 71 66 71 84 78 59 63 88 74 70 75 92 78 67 66 82 72 63 66 79 72 71 77 86 72 class5 75 87 96 79 75 79 96 79 75 83 96 79 74 79 92 74 74 79 88 74 74 83 88 78 71 73 86 68 71 77 90 72 75 91 101 83 class5 75 83 96 79 88 95 109 87 93 103 113 92 74 83 88 78 78 91 100 81 86 104 112 92 75 91 101 83 87 103 114 90 92 108 114 98 class5 93 103 113 92 88 107 118 96 88 121 123 100 86 104 112 92 86 100 108 92 78 104 104 92 92 108 114 98 87 112 114 94 79 108 110 98 class2 88 121 123 100 84 111 118 96 79 107 109 96 78 104 104 92 78 113 112 96 70 104 112 92 79 108 110 98 71 103 114 94 63 95 105 86 class0 79 107 109 96 71 103 113 96 67 99 113 87 70 104 112 92 66 91 100 81 63 87 100 81 63 95 105 86 56 81 90 79 52 77 90 75 class0 59 87 104 87 55 83 100 83 51 79 100 79 56 87 104 85 56 83 100 81 49 75 100 78 49 73 97 79 49 73 86 79 52 70 90 75 class0 55 83 100 83 51 79 100 79 51 75 96 79 56 83 100 81 49 75 100 78 52 67 84 78 49 73 86 79 52 70 90 75 52 70 90 75 class0 51 72 89 75 51 68 85 71 51 75 93 79 52 71 84 78 56 75 92 74 56 79 92 78 52 73 90 75 56 84 97 79 56 81 97 79 class0 51 68 85 71 51 75 93 79 55 75 96 79 56 75 92 74 56 79 92 78 49 75 88 78 56 84 97 79 56 81 97 79 52 73 93 79 class0 55 75 96 79 55 72 93 71 55 72 85 75 49 75 88 78 52 67 80 74 56 67 84 70 52 73 93 79 52 66 86 72 52 66 82 68 class0 55 72 93 71 55 72 85 75 59 79 93 75 52 67 80 74 56 67 84 70 52 71 84 74 52 66 86 72 52 66 82 68 56 70 82 72 class0 55 72 85 75 59 79 93 75 59 91 104 83 56 67 84 70 52 71 84 74 56 79 96 74 52 66 82 68 56 70 82 72 56 84 97 79 class0 59 79 93 75 59 91 104 83 59 87 100 83 52 71 84 74 56 79 96 74 56 83 104 85 56 70 82 72 56 84 97 79 59 91 101 86 class0 59 87 100 83 55 79 96 75 55 83 96 79 56 83 104 85 63 91 108 89 59 91 104 85 59 91 101 86 59 91 101 86 56 88 101 83 class0 51 75 93 75 51 79 96 79 55 87 100 83 56 83 108 85 56 83 100 81 56 79 100 81 56 88 101 83 56 88 105 83 56 84 93 83 class0 51 79 96 79 55 87 100 83 63 95 109 92 56 83 100 81 56 79 100 81 52 83 100 81 56 88 105 83 56 84 93 83 56 84 97 79 class0 79 111 118 96 84 116 118 96 75 107 123 96 66 96 112 92 70 100 117 92 66 109 122 92 63 95 101 86 63 103 114 94 67 103 124 94 class0 67 111 123 100 67 111 118 100 71 111 123 96 66 113 127 100 66 109 122 100 66 109 122 96 63 108 124 98 63 108 124 98 67 103 124 94 class0 71 107 109 92 67 91 104 87 67 91 104 92 70 113 122 100 70 113 117 100 66 104 108 92 67 103 114 90 67 99 110 86 67 95 105 86 class0 67 91 104 87 67 91 104 92 71 95 100 83 70 113 117 100 66 104 108 92 66 91 104 89 67 99 110 86 67 95 105 86 67 88 101 86 class0 63 71 73 59 63 75 76 59 66 75 76 63 75 88 90 72 79 95 101 79 83 99 101 83 85 102 110 87 89 106 110 87 89 106 110 87 class5 70 83 92 70 78 91 92 78 82 100 108 85 87 99 110 86 87 112 114 90 96 108 119 94 89 102 105 87 89 106 114 94 93 111 119 97 class2 78 91 92 78 82 100 108 85 86 104 108 89 87 112 114 90 96 108 119 94 92 108 124 90 89 106 114 94 93 111 119 97 93 111 114 94 class2 82 100 108 85 86 104 108 89 90 104 108 85 96 108 119 94 92 108 124 90 92 99 105 86 93 111 119 97 93 111 114 94 85 102 105 83 class2 86 104 108 89 90 104 108 85 78 91 96 78 92 108 124 90 92 99 105 86 83 88 97 79 93 111 114 94 85 102 105 83 82 92 101 80 class2 90 104 108 85 78 91 96 78 66 71 84 78 92 99 105 86 83 88 97 79 67 66 82 72 85 102 105 83 82 92 101 80 74 79 93 73 class5 78 91 100 81 86 104 112 92 86 100 108 92 87 103 114 90 92 108 114 98 87 112 114 94 89 106 114 94 85 106 114 94 78 102 119 90 class2 56 91 108 89 56 87 104 85 56 83 100 81 52 81 101 79 49 73 97 79 49 73 86 79 50 71 93 76 47 67 89 73 47 71 85 73 class0 52 71 84 78 56 75 92 74 56 79 92 78 52 73 90 75 56 84 97 79 56 81 97 79 50 75 89 80 53 84 97 80 57 84 93 76 class0 49 75 88 78 52 67 80 74 56 67 84 70 52 73 93 79 52 66 86 72 52 66 82 68 57 75 82 73 53 71 78 73 53 71 82 73 class0 59 87 108 85 63 96 112 92 66 100 112 92 59 88 101 86 59 91 105 86 59 95 105 90 60 92 105 87 60 88 105 87 60 97 101 83 class0 70 100 117 92 66 109 122 92 70 109 122 96 63 103 114 94 67 103 124 94 67 108 114 98 63 111 119 97 67 111 119 94 67 106 119 97 class0 66 113 127 100 66 109 122 100 66 109 122 96 63 108 124 98 63 108 124 98 67 103 124 94 60 92 110 83 63 102 110 94 63 106 114 90 class0 70 109 122 100 70 113 122 100 70 113 117 100 67 103 119 90 67 103 114 90 67 99 110 86 63 102 114 87 63 97 110 87 63 92 110 87 class0 70 113 117 100 66 104 108 92 66 91 104 89 67 99 110 86 67 95 105 86 67 88 101 86 63 92 110 87 67 92 110 90 67 88 110 90 class0 63 66 68 53 63 66 68 57 67 73 68 57 63 71 74 55 67 71 78 58 67 75 78 62 80 89 94 72 80 89 94 76 80 98 98 79 class5 67 73 68 57 67 73 72 57 63 70 72 57 67 75 78 62 67 84 85 65 78 97 97 76 80 98 98 79 88 111 111 91 92 111 111 91 class5 67 73 72 57 63 70 72 57 63 73 72 60 67 84 85 65 78 97 97 76 82 102 105 80 88 111 111 91 92 111 111 91 88 102 115 87 class2 63 70 72 57 63 73 72 60 67 77 82 64 78 97 97 76 82 102 105 80 85 106 110 83 92 111 111 91 88 102 115 87 84 106 115 91 class2 63 73 72 60 67 77 82 64 71 81 75 68 82 102 105 80 85 106 110 83 85 102 114 83 88 102 115 87 84 106 115 91 84 102 111 87 class2 75 88 90 72 79 95 101 79 83 99 101 83 85 102 110 87 89 106 110 87 89 106 110 87 84 102 111 87 92 106 106 87 88 106 115 87 class2 87 112 114 90 96 108 119 94 92 108 124 90 89 106 114 94 93 111 119 97 93 111 114 94 88 111 111 94 92 111 115 94 92 102 115 87 class2 92 99 105 86 83 88 97 79 67 66 82 72 85 102 105 83 82 92 101 80 74 79 93 73 88 98 106 79 84 98 106 79 72 81 82 65 class5 71 77 86 72 67 73 90 68 71 73 86 68 63 63 82 69 67 71 82 65 70 75 89 73 60 66 78 61 64 66 78 65 64 66 82 65 class5 87 112 114 94 79 108 110 98 71 103 114 94 78 102 119 90 74 102 114 90 63 97 114 94 64 98 111 91 60 102 111 91 57 102 115 94 class0 79 108 110 98 71 103 114 94 63 95 105 86 74 102 114 90 63 97 114 94 57 97 105 90 60 102 111 91 57 102 115 94 57 94 111 87 class0 71 103 114 94 63 95 105 86 56 81 90 79 63 97 114 94 57 97 105 90 57 84 101 80 57 102 115 94 57 94 111 87 53 85 102 87 class0 56 84 97 79 56 81 97 79 52 73 93 79 53 84 97 80 57 84 93 76 57 75 82 73 60 89 98 83 60 94 106 87 60 81 94 76 class0 56 70 82 72 56 84 97 79 59 91 101 86 53 75 89 76 53 79 93 73 53 79 93 73 53 73 90 79 57 73 90 76 57 77 98 76 class0 56 84 97 79 59 91 101 86 59 91 101 86 53 79 93 73 53 79 93 73 50 79 97 80 57 73 90 76 57 77 98 76 57 81 98 83 class0 59 95 105 90 63 95 101 86 63 103 114 94 60 97 101 83 57 106 110 90 63 111 119 97 57 94 111 87 60 102 111 94 60 106 115 94 class0 63 103 114 94 67 103 124 94 67 108 114 98 63 111 119 97 67 111 119 94 67 106 119 97 60 106 115 94 64 106 115 94 68 111 120 98 class0 67 108 114 98 75 108 114 98 67 99 110 86 67 106 119 97 70 111 119 97 63 102 114 90 68 111 120 98 72 111 120 98 68 102 111 87 class0 67 95 105 86 67 88 101 86 67 91 105 83 67 92 110 90 67 88 110 90 63 88 105 83 68 89 115 94 72 94 111 94 76 89 115 94 class4 67 75 78 62 67 84 85 65 78 97 97 76 80 98 98 79 88 111 111 91 92 111 111 91 84 103 108 81 88 107 113 88 88 112 122 92 class2 85 106 110 87 89 102 105 87 89 106 114 94 88 106 106 87 88 106 106 87 88 111 111 94 88 103 104 81 84 103 108 85 84 103 108 88 class2 89 102 105 87 89 106 114 94 93 111 119 97 88 106 106 87 88 111 111 94 92 111 115 94 84 103 108 85 84 103 108 88 92 107 108 85 class2 89 106 114 94 93 111 119 97 93 111 114 94 88 111 111 94 92 111 115 94 92 102 115 87 84 103 108 88 92 107 108 85 88 103 104 81 class2 70 75 89 73 67 71 89 73 78 88 97 83 64 66 82 65 64 62 82 65 76 89 102 87 84 95 100 85 76 83 96 74 76 95 113 88 class5 89 106 114 94 85 106 114 94 78 102 119 90 84 106 111 94 76 102 111 91 64 98 111 91 80 107 118 96 71 99 108 88 60 95 108 88 class2 50 75 97 76 50 71 93 76 47 67 89 73 50 66 82 72 53 69 86 72 50 66 82 76 53 64 79 74 50 68 83 70 53 64 79 74 class0 50 71 93 76 47 67 89 73 47 71 85 73 53 69 86 72 50 66 82 76 50 66 86 76 50 68 83 70 53 64 79 74 53 61 79 67 class0 53 71 78 73 53 71 82 73 53 75 89 76 57 73 90 76 53 73 90 76 53 73 90 79 64 95 108 88 60 83 100 78 53 75 87 74 class0 53 75 89 76 53 79 93 73 53 79 93 73 53 73 90 79 57 73 90 76 57 77 98 76 53 75 87 74 56 79 96 78 56 87 104 85 class0 53 84 101 80 50 84 93 76 53 88 97 80 53 85 102 79 57 85 94 79 53 81 90 79 56 83 104 81 56 83 96 81 60 87 96 81 class0 50 84 93 76 53 88 97 80 57 88 105 87 57 85 94 79 53 81 90 79 53 85 98 83 56 83 96 81 60 87 96 81 56 83 100 81 class0 60 88 105 87 57 92 101 87 57 88 105 83 57 89 106 87 60 94 102 87 60 98 111 87 56 91 104 85 60 91 104 85 56 91 104 85 class0 57 92 101 87 57 88 105 83 60 92 105 87 60 94 102 87 60 98 111 87 60 94 98 83 60 91 104 85 56 91 104 85 56 91 108 85 class0 60 97 101 83 57 106 110 90 63 111 119 97 57 94 111 87 60 102 111 94 60 106 115 94 56 95 108 88 60 95 113 92 68 103 118 92 class0 67 111 119 94 67 106 119 97 70 111 119 97 64 106 115 94 68 111 120 98 72 111 120 98 64 103 118 96 68 107 122 96 71 112 122 103 class0 70 111 119 97 63 102 114 90 63 92 105 80 72 111 120 98 68 102 111 87 68 89 98 83 71 112 122 103 68 112 122 92 71 103 113 88 class0 57 88 101 80 60 92 110 83 63 102 110 94 53 73 102 94 50 62 102 98 53 66 106 91 43 34 118 132 43 31 118 132 43 34 118 125 class1 63 106 114 90 63 106 114 90 74 111 114 90 60 94 111 87 64 98 111 91 68 98 111 91 46 48 108 107 53 75 104 92 64 95 108 88 class0 74 111 114 90 67 106 114 87 63 102 114 87 68 98 111 91 68 102 111 91 64 98 106 87 64 95 108 88 64 99 113 88 64 95 108 85 class0 67 84 97 83 67 84 97 87 63 79 85 76 64 81 98 83 64 73 90 79 60 69 78 72 64 64 83 74 60 61 79 70 60 61 83 74 class5 80 89 94 76 80 98 98 79 88 111 111 91 84 99 104 85 84 103 108 81 88 107 113 88 88 103 104 87 88 103 109 83 88 103 109 83 class2 92 111 111 91 88 102 115 87 84 106 115 91 88 112 122 92 88 107 113 92 88 107 113 88 88 107 109 87 88 107 113 87 93 107 113 92 class2 84 102 111 87 92 106 106 87 88 106 115 87 88 107 113 85 84 103 104 81 84 103 104 81 88 103 109 87 88 103 104 79 79 95 100 79 class2 88 106 106 87 88 106 106 87 88 111 111 94 88 103 104 81 84 103 108 85 84 103 108 88 79 103 100 79 84 99 100 79 84 99 104 79 class2 88 106 106 87 88 111 111 94 92 111 115 94 84 103 108 85 84 103 108 88 92 107 108 85 84 99 100 79 84 99 104 79 93 107 109 87 class2 64 66 78 65 64 66 82 65 64 62 82 65 76 87 100 81 84 95 100 85 76 83 96 74 84 103 113 92 88 103 109 92 84 103 109 92 class5 64 66 82 65 64 62 82 65 76 89 102 87 84 95 100 85 76 83 96 74 76 95 113 88 88 103 109 92 84 103 109 92 84 107 118 96 class5 64 62 82 65 76 89 102 87 84 106 111 94 76 83 96 74 76 95 113 88 80 107 118 96 84 103 109 92 84 107 118 96 79 111 118 96 class5 84 106 111 94 76 102 111 91 64 98 111 91 80 107 118 96 71 99 108 88 60 95 108 88 79 111 118 96 67 99 113 92 55 87 104 87 class0 64 98 111 91 60 102 111 91 57 102 115 94 60 95 108 88 60 95 113 92 53 95 108 88 55 87 104 87 51 87 100 87 51 83 104 83 class0 60 102 111 91 57 102 115 94 57 94 111 87 60 95 113 92 53 95 108 88 50 83 104 85 51 87 100 87 51 83 104 83 48 75 96 75 class0 57 94 111 87 53 85 102 87 50 73 94 76 50 83 104 85 53 79 100 81 53 71 91 74 48 75 96 75 48 72 89 75 51 68 85 71 class0 53 85 102 87 50 73 94 76 50 66 82 72 53 79 100 81 53 71 91 74 53 64 79 74 48 72 89 75 51 68 85 71 51 68 77 71 class0 60 77 94 79 60 89 98 83 60 94 106 87 64 95 104 85 64 99 113 92 68 99 118 88 59 79 89 79 59 79 96 79 63 83 96 83 class0 60 81 94 76 57 73 90 76 53 73 90 76 60 91 104 85 64 95 108 88 60 83 100 78 63 79 96 83 63 87 96 83 63 87 96 83 class0 57 85 94 79 53 81 90 79 53 85 98 83 56 83 96 81 60 87 96 81 56 83 100 81 67 95 104 87 67 95 109 87 63 95 104 83 class0 53 81 90 79 53 85 98 83 57 89 106 87 60 87 96 81 56 83 100 81 56 91 104 85 67 95 109 87 63 95 104 83 63 95 113 87 class0 60 94 98 83 57 85 98 87 57 94 111 87 56 91 108 85 56 91 104 85 56 95 108 88 55 87 104 87 55 91 104 87 63 95 109 87 class0 64 106 115 94 68 111 120 98 72 111 120 98 64 103 118 96 68 107 122 96 71 112 122 103 67 107 118 96 67 107 123 96 67 111 123 96 class0 68 98 111 91 68 102 111 91 64 98 106 87 64 95 108 88 64 99 113 88 64 95 108 85 51 58 113 104 59 87 104 83 63 95 100 83 class0 68 102 111 91 64 98 106 87 64 98 111 87 64 99 113 88 64 95 108 85 60 99 104 85 59 87 104 83 63 95 100 83 63 95 104 83 class0 64 85 111 87 68 89 115 94 72 94 111 94 64 91 108 88 71 91 118 92 76 95 122 99 63 95 109 92 75 99 118 96 75 99 118 96 class4 76 89 115 94 72 89 111 91 76 89 106 83 76 99 122 96 80 95 118 96 80 95 118 92 75 99 118 96 75 95 109 96 75 95 113 96 class4 72 89 111 91 76 89 106 83 72 85 98 79 80 95 118 96 80 95 118 92 76 83 100 78 75 95 109 96 75 95 113 96 79 99 109 83 class4 72 85 98 79 64 81 98 83 64 73 90 79 76 83 100 78 64 64 83 74 60 61 79 70 79 99 109 83 71 75 93 79 51 51 81 79 class4 64 81 98 83 64 73 90 79 60 69 78 72 64 64 83 74 60 61 79 70 60 61 83 74 71 75 93 79 51 51 81 79 51 54 81 75 class4 88 107 113 92 88 107 113 88 88 103 113 85 88 107 113 87 93 107 113 92 88 107 113 87 86 104 108 85 90 104 108 89 90 104 112 89 class2 88 107 113 88 88 103 113 85 88 107 113 85 93 107 113 92 88 107 113 87 88 103 109 87 90 104 108 89 90 104 112 89 86 100 108 89 class2 92 107 108 85 88 103 104 81 84 95 104 85 93 107 109 87 84 103 109 79 84 99 100 79 90 104 112 85 90 109 112 89 82 100 96 81 class2 76 87 100 81 84 95 100 85 76 83 96 74 84 103 113 92 88 103 109 92 84 103 109 92 86 100 108 89 86 100 108 89 78 100 112 92 class2 84 95 100 85 76 83 96 74 76 95 113 88 88 103 109 92 84 103 109 92 84 107 118 96 86 100 108 89 78 100 112 92 78 104 122 96 class2 50 83 104 85 53 79 100 81 53 71 91 74 48 75 96 75 48 72 89 75 51 68 85 71 49 79 96 78 49 71 88 78 49 71 88 74 class0 53 61 79 67 56 68 83 74 64 83 100 85 51 61 77 71 51 68 81 71 59 72 85 75 49 63 76 66 49 67 80 70 52 71 80 74 class0 64 95 104 85 64 99 113 92 68 99 118 88 59 79 89 79 59 79 96 79 63 83 96 83 52 71 84 70 56 75 88 74 56 75 92 78 class0 60 83 100 78 53 75 87 74 56 79 96 78 63 87 96 83 59 83 89 79 59 95 109 87 59 83 100 81 59 83 100 81 59 87 104 85 class0 56 87 100 81 56 87 100 78 56 87 104 81 67 99 109 87 63 95 104 87 63 95 109 87 70 104 117 92 63 96 112 89 63 96 112 89 class0 56 87 100 78 56 87 104 81 56 83 104 81 63 95 104 87 63 95 109 87 67 95 100 87 63 96 112 89 63 96 112 89 66 100 112 89 class0 56 87 104 81 56 83 104 81 56 83 96 81 63 95 109 87 67 95 100 87 67 95 104 87 63 96 112 89 66 100 112 89 63 100 112 92 class0 60 87 96 81 56 83 100 81 56 91 104 85 67 95 109 87 63 95 104 83 63 95 113 87 63 100 117 92 63 96 112 89 63 96 108 89 class0 60 95 113 92 68 103 118 92 64 103 118 96 67 99 109 92 67 103 113 92 67 107 118 96 63 96 112 89 63 100 112 89 63 104 108 92 class0 68 112 122 92 71 103 113 88 68 99 108 88 71 111 128 100 71 111 128 96 71 107 123 96 66 104 122 103 74 113 122 100 70 113 122 96 class0 43 36 104 121 43 34 118 132 43 31 118 132 44 29 123 133 44 37 118 133 44 37 118 129 46 43 112 122 49 49 112 118 52 53 108 114 class1 43 34 118 125 46 48 108 107 53 75 104 92 44 32 113 125 44 32 118 129 48 34 113 125 49 40 112 125 46 34 112 133 46 32 112 133 class1 64 95 108 88 64 99 113 88 64 95 108 85 51 58 113 104 59 87 104 83 63 95 100 83 46 32 112 133 46 46 112 114 56 71 104 89 class0 64 99 113 88 64 95 108 85 60 99 104 85 59 87 104 83 63 95 100 83 63 95 104 83 46 46 112 114 56 71 104 89 59 87 100 81 class4 76 99 122 96 80 95 118 96 80 95 118 92 75 99 118 96 75 95 109 96 75 95 113 96 74 91 112 96 70 87 112 100 66 83 117 100 class4 80 95 118 92 76 83 100 78 64 64 83 74 75 95 113 96 79 99 109 83 71 75 93 79 66 83 117 100 70 87 112 100 82 91 108 85 class4 64 64 83 74 60 61 79 70 60 61 83 74 71 75 93 79 51 51 81 79 51 54 81 75 82 91 108 85 63 63 88 78 52 53 76 74 class4 60 57 79 70 53 54 75 70 56 57 71 67 51 48 81 79 48 42 74 75 48 48 67 71 56 53 80 74 49 49 76 74 49 46 69 66 class4 84 103 104 83 88 103 104 83 88 103 104 87 90 100 104 85 90 100 108 81 90 104 108 85 83 95 101 79 87 99 101 83 87 99 105 83 class2 88 107 109 87 88 107 113 87 93 107 113 92 86 100 104 81 86 104 108 85 90 104 108 89 83 95 101 83 87 103 110 86 92 103 105 86 class2 88 107 113 87 93 107 113 92 88 107 113 87 86 104 108 85 90 104 108 89 90 104 112 89 87 103 110 86 92 103 105 86 87 103 110 86 class2 88 107 113 87 88 103 109 87 88 103 104 79 90 104 112 89 86 100 108 89 86 104 108 89 87 103 110 86 87 103 114 86 92 112 119 94 class2 84 99 100 79 84 95 109 83 79 87 96 71 82 100 96 81 82 96 100 81 86 96 100 81 83 91 97 79 83 95 101 83 87 95 101 83 class2 84 95 109 83 79 87 96 71 67 75 81 62 82 96 100 81 86 96 100 81 82 91 92 81 83 95 101 83 87 95 101 83 83 99 101 83 class2 84 103 109 92 84 107 118 96 79 111 118 96 78 100 112 92 78 104 122 96 74 109 112 96 75 99 110 90 67 99 114 90 63 99 114 90 class0 84 107 118 96 79 111 118 96 67 99 113 92 78 104 122 96 74 109 112 96 66 104 112 92 67 99 114 90 63 99 114 90 59 91 101 90 class0 79 111 118 96 67 99 113 92 55 87 104 87 74 109 112 96 66 104 112 92 59 91 100 85 63 99 114 90 59 91 101 90 56 84 93 83 class0 51 64 77 71 48 61 74 67 51 61 77 71 52 67 84 70 52 63 80 70 49 63 76 66 49 73 86 75 52 66 82 72 52 70 82 72 class0 59 79 96 79 63 83 96 83 63 79 96 83 56 75 88 74 56 75 92 78 59 79 96 81 56 81 97 83 59 84 93 83 59 81 101 83 class0 63 95 113 87 59 95 113 92 59 91 104 87 63 96 108 89 63 96 108 89 59 96 112 89 63 103 119 90 59 99 114 90 59 95 110 86 class0 55 87 104 87 55 91 104 87 63 95 109 87 52 87 108 85 56 87 100 85 63 87 108 85 56 84 101 83 56 84 105 86 59 81 105 86 class0 67 107 118 96 67 107 123 96 67 111 123 96 63 104 108 92 63 100 108 96 66 100 117 92 63 99 110 94 63 95 105 90 67 99 110 94 class0 67 107 123 96 67 111 123 96 71 111 128 100 63 100 108 96 66 100 117 92 66 104 122 103 63 95 105 90 67 99 110 94 63 103 119 94 class0 67 111 123 96 71 111 128 100 71 111 128 96 66 100 117 92 66 104 122 103 74 113 122 100 67 99 110 94 63 103 119 94 67 108 124 98 class0 71 103 118 96 67 103 118 92 63 107 118 92 70 109 122 100 66 113 117 100 66 109 117 100 71 112 124 101 71 112 130 101 71 112 130 101 class0 67 103 118 92 63 107 118 92 63 87 109 96 66 113 117 100 66 109 117 100 66 113 122 100 71 112 130 101 71 112 130 101 71 112 119 98 class0 48 34 113 125 51 58 113 104 59 87 104 83 46 32 112 133 46 32 112 133 46 46 112 114 42 32 114 135 42 30 110 139 42 30 114 135 class1 75 99 118 96 75 95 109 96 75 95 113 96 74 91 112 96 70 87 112 100 66 83 117 100 67 88 110 98 67 88 119 98 75 91 110 94 class4 75 95 109 96 75 95 113 96 79 99 109 83 70 87 112 100 66 83 117 100 70 87 112 100 67 88 119 98 75 91 110 94 79 91 119 98 class4 75 95 113 96 79 99 109 83 71 75 93 79 66 83 117 100 70 87 112 100 82 91 108 85 75 91 110 94 79 91 119 98 79 99 110 86 class4 48 42 74 75 48 48 67 71 51 54 67 62 49 49 76 74 49 46 69 66 52 53 73 66 59 60 75 68 52 54 75 68 52 60 72 64 class4 90 104 112 85 90 109 112 89 82 100 96 81 87 103 105 83 87 103 110 83 83 91 97 79 85 106 105 83 85 102 101 83 82 92 105 76 class2 90 109 112 89 82 100 96 81 82 96 100 81 87 103 110 83 83 91 97 79 83 95 101 83 85 102 101 83 82 92 105 76 85 92 101 83 class2 82 100 96 81 82 96 100 81 86 96 100 81 83 91 97 79 83 95 101 83 87 95 101 83 82 92 105 76 85 92 101 83 85 92 105 83 class2 78 87 100 81 86 100 108 89 86 100 108 89 87 103 110 90 87 99 105 86 79 99 105 86 85 102 114 87 78 92 101 87 74 97 105 94 class2 78 104 122 96 74 109 112 96 66 104 112 92 67 99 114 90 63 99 114 90 59 91 101 90 57 97 110 94 53 88 101 83 50 71 89 76 class0 49 67 80 70 52 71 80 74 52 71 84 70 49 70 82 72 52 73 82 75 56 77 93 79 50 71 85 73 53 75 89 73 53 84 97 80 class0 56 75 92 78 59 79 96 81 56 79 88 81 59 84 93 83 59 81 101 83 56 81 93 79 53 84 101 87 50 79 93 80 53 79 89 76 class0 63 100 112 92 70 104 117 92 63 96 112 89 67 99 110 94 63 95 110 90 63 95 105 90 60 88 101 83 60 75 93 83 63 79 97 83 class0 63 96 112 89 66 100 112 89 63 100 112 92 63 99 110 90 63 103 119 90 67 99 114 94 63 88 105 90 67 97 114 90 70 106 114 94 class0 63 100 112 89 63 104 108 92 63 100 108 96 59 91 110 86 63 99 110 94 63 95 105 90 60 97 105 87 63 92 110 94 63 92 105 87 class0 46 34 112 133 46 32 112 133 46 32 112 133 46 30 119 139 42 32 114 135 42 30 110 139 44 31 114 140 44 31 114 133 44 31 114 133 class1 46 32 112 133 46 32 112 133 46 46 112 114 42 32 114 135 42 30 110 139 42 30 114 135 44 31 114 133 44 31 114 133 44 31 110 133 class1 46 32 112 133 46 46 112 114 56 71 104 89 42 30 110 139 42 30 114 135 46 34 110 124 44 31 114 133 44 31 110 133 44 29 114 136 class1 66 91 112 89 70 96 112 92 70 96 117 92 56 73 97 79 63 88 105 83 67 84 105 94 47 37 114 122 50 63 97 90 63 84 97 80 class4 70 96 117 92 74 91 112 96 70 87 112 100 67 84 105 94 67 88 110 98 67 88 119 98 63 84 97 80 70 88 105 87 74 92 114 94 class4 74 91 112 96 70 87 112 100 66 83 117 100 67 88 110 98 67 88 119 98 75 91 110 94 70 88 105 87 74 92 114 94 74 92 110 94 class4 70 87 112 100 66 83 117 100 70 87 112 100 67 88 119 98 75 91 110 94 79 91 119 98 74 92 114 94 74 92 110 94 70 88 114 97 class4 52 53 76 74 56 53 80 74 49 49 76 74 59 60 72 72 59 63 79 72 59 60 75 68 63 75 89 73 60 71 82 65 63 67 78 69 class4 83 99 101 83 83 95 97 79 83 95 101 83 82 97 101 76 82 97 101 80 85 102 110 87 80 98 98 76 80 98 102 79 84 98 106 83 class2 83 95 97 79 83 95 101 83 87 103 110 86 82 97 101 80 85 102 110 87 85 102 110 90 80 98 102 79 84 98 106 83 84 102 106 87 class2 83 95 101 83 87 103 110 86 92 103 105 86 85 102 110 87 85 102 110 90 89 102 110 87 84 98 106 83 84 102 106 87 84 102 106 87 class2 87 103 110 86 92 103 105 86 87 103 110 86 85 102 110 90 89 102 110 87 89 102 114 87 84 102 106 87 84 102 106 87 84 106 111 87 class2 92 103 105 86 87 103 110 86 87 103 114 86 89 102 110 87 89 102 114 87 89 106 114 94 84 102 106 87 84 106 111 87 88 111 115 91 class2 87 103 110 86 87 103 114 86 92 112 119 94 89 102 114 87 89 106 114 94 93 115 124 94 84 106 111 87 88 111 115 91 92 115 115 94 class2 92 103 110 90 83 95 105 79 83 95 101 79 93 106 114 94 89 97 101 80 85 97 105 80 88 102 106 83 88 102 106 83 88 98 106 79 class2 83 95 105 79 83 95 101 79 87 103 105 83 89 97 101 80 85 97 105 80 85 106 105 83 88 102 106 83 88 98 106 79 84 102 106 79 class2 87 103 110 83 83 91 97 79 83 95 101 83 85 102 101 83 82 92 105 76 85 92 101 83 84 94 102 79 84 98 98 79 84 94 102 79 class2 83 91 97 79 83 95 101 83 87 95 101 83 82 92 105 76 85 92 101 83 85 92 105 83 84 98 98 79 84 94 102 79 84 102 111 87 class2 83 95 101 83 87 95 101 83 83 99 101 83 85 92 101 83 85 92 105 83 89 102 110 87 84 94 102 79 84 102 111 87 88 106 102 91 class2 79 99 105 86 75 99 110 90 67 99 114 90 74 97 105 94 67 97 110 94 57 97 110 94 64 98 111 91 57 94 111 91 53 85 102 83 class0 75 99 110 90 67 99 114 90 63 99 114 90 67 97 110 94 57 97 110 94 53 88 101 83 57 94 111 91 53 85 102 83 50 73 90 76 class0 63 99 114 90 59 91 101 90 56 84 93 83 53 88 101 83 50 71 89 76 47 71 89 80 50 73 90 76 50 69 86 72 53 69 86 72 class0 59 91 101 90 56 84 93 83 52 77 93 79 50 71 89 76 47 71 89 80 50 71 85 76 50 69 86 72 53 69 86 72 53 69 82 72 class0 56 84 93 83 52 77 93 79 52 73 90 75 47 71 89 80 50 71 85 76 47 67 85 69 53 69 86 72 53 69 82 72 50 66 82 72 class0 52 77 93 79 52 73 90 75 46 73 90 75 50 71 85 76 47 67 85 69 47 71 85 73 53 69 82 72 50 66 82 72 50 73 90 76 class0 49 73 93 79 52 77 93 75 49 73 86 75 50 79 89 76 50 79 93 76 50 79 89 76 50 73 90 76 50 77 98 79 53 77 94 79 class0 52 77 93 75 49 73 86 75 52 66 82 72 50 79 93 76 50 79 89 76 50 71 82 73 50 77 98 79 53 77 94 79 50 73 90 76 class0 63 99 114 94 67 99 110 94 63 95 110 90 57 88 101 83 60 88 101 83 60 75 93 83 57 81 94 79 60 77 90 79 64 81 90 83 class0 63 95 110 90 63 95 105 90 63 99 110 90 60 75 93 83 63 79 97 83 63 88 105 90 64 81 90 83 64 85 94 83 64 85 98 83 class0 67 99 114 94 63 99 114 94 63 103 114 90 70 106 114 94 67 97 114 87 63 97 114 90 64 98 111 91 68 94 115 91 60 89 102 83 class0 59 95 110 86 56 84 101 83 56 84 105 86 63 106 114 90 60 92 105 87 53 84 110 87 68 106 115 94 64 98 111 91 57 94 111 87 class0 56 84 101 83 56 84 105 86 59 81 105 86 60 92 105 87 53 84 110 87 53 84 105 83 64 98 111 91 57 94 111 87 53 89 106 87 class0 56 84 105 86 59 81 105 86 59 88 105 86 53 84 110 87 53 84 105 83 57 88 105 87 57 94 111 87 53 89 106 87 57 94 111 87 class0 59 91 110 86 63 99 110 94 63 95 105 90 60 97 105 87 63 92 110 94 63 92 105 87 57 94 106 83 60 85 102 87 60 85 102 87 class0 67 99 110 94 63 103 119 94 67 108 124 98 63 97 114 90 67 102 119 97 74 106 124 104 64 98 111 91 68 106 111 98 72 111 120 102 class0 63 103 119 94 67 108 124 98 75 112 124 101 67 102 119 97 74 106 124 104 78 111 129 101 68 106 111 98 72 111 120 102 80 115 125 102 class0 67 108 124 98 75 112 124 101 71 112 124 101 74 106 124 104 78 111 129 101 67 102 119 97 72 111 120 102 80 115 125 102 68 111 120 98 class0 75 112 124 101 71 112 124 101 71 112 130 101 78 111 129 101 67 102 119 97 67 106 124 97 80 115 125 102 68 111 120 98 64 106 115 94 class0 71 112 130 101 71 112 130 101 71 112 119 98 67 106 124 97 70 111 124 101 67 106 119 97 64 106 115 94 64 106 120 98 68 111 125 98 class0 71 112 119 98 67 108 114 98 56 70 110 98 67 106 119 97 67 111 114 97 60 88 110 97 68 111 125 98 68 102 115 94 60 89 111 94 class0 67 108 114 98 56 70 110 98 52 54 97 105 67 111 114 97 60 88 110 97 47 40 105 122 68 102 115 94 60 89 111 94 53 59 106 113 class0 46 32 119 135 46 30 119 139 42 32 114 135 44 31 110 140 44 31 114 140 44 31 114 133 47 31 111 131 47 34 111 128 44 34 115 128 class1 67 84 105 94 67 88 110 98 67 88 119 98 63 84 97 80 70 88 105 87 74 92 114 94 57 73 86 72 64 85 98 79 64 85 102 91 class4 75 91 110 94 79 91 119 98 79 99 110 86 74 92 110 94 70 88 114 97 74 88 110 94 64 77 106 98 68 69 111 98 68 73 111 91 class4 71 77 86 75 59 60 72 72 59 63 79 72 78 84 93 80 63 75 89 73 60 71 82 65 68 77 98 79 72 77 94 76 76 85 98 76 class5 85 102 105 80 85 97 101 80 82 97 101 76 88 106 102 83 88 102 102 79 80 98 98 76 80 99 104 78 80 91 96 78 80 95 100 78 class2 82 97 101 80 85 102 110 87 85 102 110 90 80 98 102 79 84 98 106 83 84 102 106 87 80 95 100 78 80 91 96 74 80 95 100 81 class2 85 102 110 90 89 102 110 87 89 102 114 87 84 102 106 87 84 102 106 87 84 106 111 87 80 95 100 81 84 103 108 88 88 112 113 88 class2 85 102 114 87 78 92 101 87 74 97 105 94 84 98 102 87 72 94 106 87 64 98 111 91 76 95 104 88 68 99 113 88 60 91 108 88 class2 78 92 101 87 74 97 105 94 67 97 110 94 72 94 106 87 64 98 111 91 57 94 111 91 68 99 113 88 60 91 108 88 53 87 104 85 class0 50 71 89 76 47 71 89 80 50 71 85 76 50 69 86 72 53 69 86 72 53 69 82 72 50 68 87 74 50 71 87 70 50 71 87 74 class0 47 67 85 69 47 71 85 73 50 75 89 76 50 66 82 72 50 73 90 76 53 77 94 76 50 75 91 74 53 75 87 78 53 75 87 78 class0 47 71 85 73 50 75 89 76 50 79 89 76 50 73 90 76 53 77 94 76 50 73 90 76 53 75 87 78 53 75 87 78 50 75 91 81 class0 50 75 89 76 50 79 89 76 50 79 93 76 53 77 94 76 50 73 90 76 50 77 98 79 53 75 87 78 50 75 91 81 50 75 96 78 class0 50 71 82 73 47 67 82 65 50 71 85 73 50 73 90 76 50 69 86 72 53 69 82 72 56 68 83 67 53 68 83 70 53 71 87 74 class0 53 79 89 76 57 79 93 80 57 88 101 83 57 77 90 76 53 77 90 76 53 77 94 79 60 87 104 85 60 83 100 85 56 79 91 78 class0 57 88 101 83 60 88 101 83 60 75 93 83 57 81 94 79 60 77 90 79 64 81 90 83 60 79 96 85 64 91 100 81 68 87 96 81 class0 63 102 114 90 63 106 114 90 60 92 105 87 64 98 115 91 68 106 115 94 64 98 111 91 64 83 96 88 68 99 113 88 68 99 108 85 class0 60 92 105 87 53 84 110 87 53 84 105 83 64 98 111 91 57 94 111 87 53 89 106 87 68 99 108 85 56 91 104 88 56 95 108 92 class0 60 97 105 87 63 92 110 94 63 92 105 87 57 94 106 83 60 85 102 87 60 85 102 87 56 83 100 85 56 83 96 85 60 91 100 85 class0 63 92 110 94 63 92 105 87 63 97 114 90 60 85 102 87 60 85 102 87 64 98 111 91 56 83 96 85 60 91 100 85 60 99 108 92 class0 74 106 124 104 78 111 129 101 67 102 119 97 72 111 120 102 80 115 125 102 68 111 120 98 68 99 118 99 71 107 122 103 71 112 122 99 class0 67 102 119 97 67 106 124 97 70 111 124 101 68 111 120 98 64 106 115 94 64 106 120 98 71 112 122 99 68 112 122 99 71 112 128 99 class0 67 106 124 97 70 111 124 101 67 106 119 97 64 106 115 94 64 106 120 98 68 111 125 98 68 112 122 99 71 112 128 99 71 103 122 96 class0 67 106 119 97 67 111 114 97 60 88 110 97 68 111 125 98 68 102 115 94 60 89 111 94 71 103 122 96 64 91 104 92 60 91 108 88 class0 60 88 110 97 47 40 105 122 44 31 114 136 60 89 111 94 53 59 106 113 50 31 115 128 60 91 108 88 60 83 108 92 60 64 100 99 class1 47 40 105 122 44 31 114 136 44 31 110 140 53 59 106 113 50 31 115 128 47 31 111 131 60 83 108 92 60 64 100 99 53 51 104 114 class1 44 31 110 140 44 31 114 140 44 31 114 133 47 31 111 131 47 34 111 128 44 34 115 128 53 51 104 114 50 36 113 128 43 36 118 128 class1 44 31 114 140 44 31 114 133 44 31 114 133 47 34 111 128 44 34 115 128 44 31 115 131 50 36 113 128 43 36 118 128 46 39 108 114 class1 44 31 114 133 44 31 114 133 44 31 110 133 44 34 115 128 44 31 115 131 44 31 115 131 43 36 118 128 46 39 108 114 50 48 104 107 class1 44 29 114 133 47 37 114 122 50 63 97 90 47 37 106 124 50 43 98 109 53 55 98 91 56 61 96 88 56 61 91 85 56 64 91 85 class1 50 63 97 90 63 84 97 80 70 88 105 87 53 55 98 91 57 73 86 72 64 85 98 79 56 64 91 85 60 64 91 81 60 75 96 78 class4 70 88 105 87 74 92 114 94 74 92 110 94 64 85 98 79 64 85 102 91 64 77 106 98 60 75 96 78 64 68 104 88 64 64 108 92 class4 74 88 110 94 78 84 93 80 63 75 89 73 68 73 111 91 68 77 98 79 72 77 94 76 64 61 108 99 64 68 108 92 71 83 100 81 class5 88 106 102 83 88 102 102 79 80 98 98 76 80 99 104 78 80 91 96 78 80 95 100 78 88 99 104 83 88 103 104 83 84 95 100 79 class2 88 102 102 79 80 98 98 76 80 98 102 79 80 91 96 78 80 95 100 78 80 95 100 78 88 103 104 83 84 95 100 79 79 99 96 79 class2 84 102 106 87 84 106 111 87 88 111 115 91 84 103 108 88 88 112 113 88 92 112 118 88 84 99 104 83 88 107 113 87 88 107 109 87 class2 84 106 111 87 88 111 115 91 92 115 115 94 88 112 113 88 92 112 118 88 88 99 104 88 88 107 113 87 88 107 109 87 84 99 104 79 class2 92 106 111 87 88 102 106 83 88 102 106 83 80 99 104 81 84 103 104 81 84 103 104 85 84 99 104 79 88 99 109 83 84 103 100 83 class2 88 102 106 83 88 98 106 79 84 102 106 79 84 103 104 85 84 99 104 81 84 99 100 81 84 103 100 83 84 99 104 83 88 99 109 83 class2 84 94 102 79 84 102 111 87 88 106 102 91 84 99 104 85 88 103 108 88 88 99 113 92 88 103 113 87 88 103 109 92 79 95 100 87 class2 50 73 90 76 50 69 86 72 53 69 86 72 50 71 91 78 50 68 87 74 50 71 87 70 48 61 81 67 48 64 85 71 51 72 85 75 class0 53 77 94 76 50 73 90 76 50 77 98 79 53 75 87 78 50 75 91 81 50 75 96 78 55 79 96 79 51 75 93 75 51 75 89 75 class0 50 77 98 79 53 77 94 79 50 73 90 76 50 75 96 78 56 75 91 74 56 68 83 67 51 75 89 75 55 72 89 71 55 68 81 71 class0 53 73 90 76 53 77 94 76 53 77 94 76 53 79 96 70 53 79 96 81 56 83 96 78 55 79 96 79 59 83 96 79 71 99 104 87 class0 53 77 90 76 53 77 94 79 57 81 94 79 60 83 100 85 56 79 91 78 60 79 96 85 59 75 96 79 59 83 96 79 63 91 100 83 class0 64 81 90 83 64 85 94 83 64 85 98 83 68 87 96 81 60 83 96 81 64 87 104 85 75 91 109 92 75 95 104 87 71 95 104 87 class0 68 89 102 87 64 98 111 91 68 94 115 91 68 91 104 88 68 91 104 85 68 87 104 88 75 91 109 92 75 95 104 87 67 83 96 79 class0 64 98 111 91 68 94 115 91 60 89 102 83 68 91 104 85 68 87 104 88 60 75 91 78 75 95 104 87 67 83 96 79 59 72 85 71 class0 60 85 102 83 64 98 115 91 68 106 115 94 56 68 83 74 64 83 96 88 68 99 113 88 55 68 85 75 63 79 96 83 67 99 109 92 class0 68 106 115 94 64 98 111 91 57 94 111 87 68 99 113 88 68 99 108 85 56 91 104 88 67 99 109 92 67 103 109 92 63 95 109 87 class0 57 94 111 87 53 89 106 87 57 94 111 87 56 91 104 88 56 95 108 92 56 87 108 85 63 95 109 87 59 95 113 92 63 95 109 87 class0 64 98 111 91 68 106 111 98 72 111 120 102 60 99 108 92 64 99 113 92 68 99 118 99 63 99 113 92 63 103 113 96 71 103 113 96 class0 68 106 111 98 72 111 120 102 80 115 125 102 64 99 113 92 68 99 118 99 71 107 122 103 63 103 113 96 71 103 113 96 71 103 113 96 class0 64 106 120 98 68 111 125 98 68 102 115 94 71 112 128 99 71 103 122 96 64 91 104 92 67 99 113 96 67 91 104 92 59 75 100 83 class0 47 31 111 131 47 34 111 128 44 34 115 128 53 51 104 114 50 36 113 128 43 36 118 128 63 79 100 87 59 68 96 92 55 61 100 96 class1 44 31 115 131 47 31 111 124 47 37 106 124 50 48 104 107 50 57 96 96 56 61 96 88 59 64 100 92 55 61 100 87 55 58 96 87 class4 47 31 111 124 47 37 106 124 50 43 98 109 50 57 96 96 56 61 96 88 56 61 91 85 55 61 100 87 55 58 96 87 59 58 93 83 class4 64 85 98 79 64 85 102 91 64 77 106 98 60 75 96 78 64 68 104 88 64 64 108 92 59 75 89 79 59 64 100 92 59 58 104 100 class4 64 85 102 91 64 77 106 98 68 69 111 98 64 68 104 88 64 64 108 92 60 61 108 99 59 64 100 92 59 58 104 100 59 58 104 100 class4 64 77 106 98 68 69 111 98 68 73 111 91 64 64 108 92 60 61 108 99 64 61 108 99 59 58 104 100 59 58 104 100 59 61 109 100 class4 68 69 111 98 68 73 111 91 68 77 98 79 60 61 108 99 64 61 108 99 64 68 108 92 59 58 104 100 59 61 109 100 63 64 104 96 class4 76 85 98 76 72 81 86 72 68 73 78 65 80 99 104 85 80 95 100 81 71 79 91 74 79 95 96 79 79 95 96 79 75 87 93 79 class3 68 73 78 65 64 66 74 65 64 73 82 68 71 79 91 74 68 71 83 67 68 71 83 70 75 87 93 79 71 75 85 71 75 79 89 71 class5 84 99 100 81 88 99 104 85 84 99 100 81 88 99 109 83 84 99 100 79 84 103 104 83 86 100 104 81 82 96 104 81 82 100 104 81 class2 50 71 91 78 50 68 87 74 50 71 87 70 48 61 81 67 48 64 85 71 51 72 85 75 46 75 96 78 46 71 84 74 46 67 84 74 class0 50 68 87 74 50 71 87 70 50 71 87 74 48 64 85 71 51 72 85 75 51 72 85 75 46 71 84 74 46 67 84 74 49 71 92 74 class0 53 75 87 78 50 75 91 81 50 75 96 78 55 79 96 79 51 75 93 75 51 75 89 75 52 79 96 78 52 79 92 81 52 71 84 74 class0 50 75 91 81 50 75 96 78 56 75 91 74 51 75 93 75 51 75 89 75 55 72 89 71 52 79 92 81 52 71 84 74 52 71 84 70 class0 56 68 83 67 53 68 83 70 53 71 87 74 55 68 81 71 51 72 81 71 55 75 85 75 52 71 80 70 52 71 84 70 56 75 92 74 class0 64 91 100 81 68 87 96 81 60 83 96 81 67 91 109 87 75 91 109 92 75 95 104 87 63 83 100 85 63 83 100 85 66 87 100 85 class0 68 87 96 81 60 83 96 81 64 87 104 85 75 91 109 92 75 95 104 87 71 95 104 87 63 83 100 85 66 87 100 85 66 83 100 81 class0 68 91 104 85 68 87 104 88 60 75 91 78 75 95 104 87 67 83 96 79 59 72 85 71 66 87 104 89 70 96 104 89 63 79 88 78 class0 64 83 96 88 68 99 113 88 68 99 108 85 63 79 96 83 67 99 109 92 67 103 109 92 59 67 84 74 59 79 96 81 63 87 108 89 class0 56 95 108 92 56 87 108 85 56 83 100 85 59 95 113 92 63 95 109 87 63 87 100 83 63 96 112 89 63 100 122 92 63 104 117 92 class0 56 87 108 85 56 83 100 85 56 83 96 85 63 95 109 87 63 87 100 83 63 87 100 87 63 100 122 92 63 104 117 92 63 96 108 89 class0 60 99 108 92 64 99 113 92 68 99 118 99 63 99 113 92 63 103 113 96 71 103 113 96 66 100 112 92 70 100 112 92 70 104 112 96 class0 68 112 122 99 71 112 128 99 71 103 122 96 71 111 118 96 67 99 113 96 67 91 104 92 70 100 112 96 66 104 122 96 70 100 117 96 class0 71 112 128 99 71 103 122 96 64 91 104 92 67 99 113 96 67 91 104 92 59 75 100 83 66 104 122 96 70 100 117 96 63 83 104 89 class0 60 91 108 88 60 83 108 92 60 64 100 99 59 87 104 92 67 99 109 92 67 87 100 83 59 79 92 81 63 75 104 85 70 100 112 92 class0 43 36 118 128 46 39 108 114 50 48 104 107 55 61 100 96 55 64 104 92 59 64 100 92 63 71 104 92 59 67 104 96 59 63 104 96 class4 46 39 108 114 50 48 104 107 50 57 96 96 55 64 104 92 59 64 100 92 55 61 100 87 59 67 104 96 59 63 104 96 59 60 100 92 class4 56 61 96 88 56 61 91 85 56 64 91 85 55 58 96 87 59 58 93 83 59 61 89 79 56 60 100 89 56 60 88 81 56 60 88 78 class4 64 68 104 88 64 64 108 92 60 61 108 99 59 64 100 92 59 58 104 100 59 58 104 100 59 67 88 74 63 71 92 81 59 60 96 92 class4 80 95 100 81 71 79 91 74 68 71 83 67 79 95 96 79 75 87 93 79 71 75 85 71 74 87 92 78 74 91 100 81 78 96 96 81 class3 71 79 91 74 68 71 83 67 68 71 83 70 75 87 93 79 71 75 85 71 75 79 89 71 74 91 100 81 78 96 96 81 78 91 96 78 class5 84 95 100 79 88 99 104 83 88 103 104 83 82 96 100 81 86 96 104 81 86 96 108 81 83 91 97 79 79 95 97 75 83 95 97 79 class2 88 99 104 83 88 103 104 83 84 95 100 79 86 96 104 81 86 96 108 81 86 104 108 81 79 95 97 75 83 95 97 79 83 95 105 83 class2 84 95 100 79 79 99 96 79 79 91 96 79 86 104 108 81 86 96 104 81 82 96 100 78 83 95 105 83 83 95 101 79 79 95 101 79 class2 79 99 96 79 79 91 96 79 84 95 100 79 86 96 104 81 82 96 100 78 82 96 100 81 83 95 101 79 79 95 101 79 83 95 101 79 class2 88 107 109 87 84 99 104 79 84 99 104 79 90 109 112 92 90 104 112 89 90 100 108 85 96 112 110 94 96 108 114 90 92 103 110 86 class2 84 99 104 79 84 99 104 79 88 99 109 83 90 104 112 89 90 100 108 85 86 104 104 81 96 108 114 90 92 103 110 86 87 103 110 83 class2 84 99 104 79 88 99 109 83 84 103 100 83 90 100 108 85 86 104 104 81 86 100 108 85 92 103 110 86 87 103 110 83 87 99 105 86 class2 84 103 100 83 84 99 104 83 88 99 109 83 86 100 108 85 86 104 112 85 86 100 104 81 87 99 105 86 87 99 105 86 83 95 105 83 class2 84 99 104 83 88 99 109 83 84 99 100 79 86 104 112 85 86 100 104 81 82 96 104 81 87 99 105 86 83 95 105 83 83 99 105 83 class2 55 83 100 83 51 75 93 79 51 64 85 75 56 91 108 89 52 83 100 81 49 75 92 78 52 84 97 86 52 81 97 79 52 73 90 79 class0 48 61 81 67 48 64 85 71 51 72 85 75 46 75 96 78 46 71 84 74 46 67 84 74 49 73 97 83 49 77 93 75 46 66 86 72 class0 55 79 89 79 55 79 96 79 59 83 96 79 56 79 88 78 56 83 92 81 56 83 100 78 59 84 97 83 56 88 97 83 52 84 97 83 class0 71 99 104 87 67 103 109 87 63 91 109 87 59 87 96 81 66 100 108 89 66 96 108 92 56 81 97 79 59 84 93 79 59 88 105 86 class0 63 91 100 83 67 91 109 87 75 91 109 92 59 83 96 81 63 83 100 85 63 83 100 85 59 73 93 75 63 81 93 83 63 91 101 86 class0 67 91 109 87 75 91 109 92 75 95 104 87 63 83 100 85 63 83 100 85 66 87 100 85 63 81 93 83 63 91 101 86 59 88 101 83 class0 75 91 109 92 75 95 104 87 71 95 104 87 63 83 100 85 66 87 100 85 66 83 100 81 63 91 101 86 59 88 101 83 67 84 93 83 class0 71 95 104 87 75 91 109 92 75 95 104 87 66 83 100 81 66 83 96 81 66 87 104 89 67 84 93 83 67 84 97 83 59 77 90 75 class0 67 99 109 92 67 103 109 92 63 95 109 87 59 79 96 81 63 87 108 89 63 91 112 89 63 91 101 90 67 103 114 94 63 99 114 90 class0 63 95 109 87 63 87 100 83 63 87 100 87 63 100 122 92 63 104 117 92 63 96 108 89 67 103 114 94 67 103 114 94 67 99 110 94 class0 71 103 113 96 71 103 113 96 71 107 123 100 70 104 112 96 70 104 112 96 70 100 112 92 75 108 114 94 71 108 114 94 75 108 119 98 class0 71 103 113 96 71 107 123 100 71 111 118 96 70 104 112 96 70 100 112 92 70 100 112 96 71 108 114 94 75 108 119 98 75 103 119 98 class0 71 111 118 96 67 99 113 96 67 91 104 92 70 100 112 96 66 104 122 96 70 100 117 96 75 103 119 98 71 99 114 98 75 108 124 98 class0 67 99 113 96 67 91 104 92 59 75 100 83 66 104 122 96 70 100 117 96 63 83 104 89 71 99 114 98 75 108 124 98 71 99 110 94 class0 67 87 100 83 63 79 100 87 59 68 96 92 70 100 112 92 70 100 108 89 66 79 96 85 63 81 101 86 71 95 119 94 67 88 105 86 class0 55 61 100 96 55 64 104 92 59 64 100 92 63 71 104 92 59 67 104 96 59 63 104 96 63 73 97 86 59 70 105 94 63 66 101 90 class4 59 61 85 75 59 75 89 79 59 64 100 92 56 60 84 78 52 56 80 74 59 67 88 74 52 54 86 83 49 45 86 86 49 51 86 83 class4 59 61 109 100 63 64 104 96 71 79 96 79 56 63 104 96 59 67 104 96 63 67 108 96 59 60 97 90 59 63 93 90 63 66 97 94 class4 63 64 104 96 71 79 96 79 79 95 96 79 59 67 104 96 63 67 108 96 70 75 104 85 59 63 93 90 63 66 97 94 67 77 110 90 class4 86 96 108 81 86 104 108 81 86 96 104 81 83 95 97 79 83 95 105 83 83 95 101 79 78 92 101 76 78 92 97 76 82 97 97 80 class2 86 104 108 81 86 96 104 81 82 96 100 78 83 95 105 83 83 95 101 79 79 95 101 79 78 92 97 76 82 97 97 80 85 97 97 80 class2 86 96 104 81 82 96 100 78 82 96 100 81 83 95 101 79 79 95 101 79 83 95 101 79 82 97 97 80 85 97 97 80 85 106 105 80 class2 82 91 104 78 86 100 108 85 90 109 112 92 83 95 105 83 92 103 110 90 96 112 110 94 93 111 114 90 93 115 114 94 93 111 114 94 class2 90 109 112 92 90 104 112 89 90 100 108 85 96 112 110 94 96 108 114 90 92 103 110 86 93 111 114 94 89 102 110 87 85 97 110 83 class2 90 104 112 89 90 100 108 85 86 104 104 81 96 108 114 90 92 103 110 86 87 103 110 83 89 102 110 87 85 97 110 83 85 102 105 80 class2 86 100 108 85 86 104 112 85 86 100 104 81 87 99 105 86 87 99 105 86 83 95 105 83 85 102 105 83 85 97 101 83 85 97 101 83 class2 86 100 104 81 82 96 104 81 82 100 104 81 83 95 105 83 83 99 105 83 87 103 105 86 85 97 101 83 89 102 105 87 85 102 110 87 class2 82 104 112 85 86 104 108 92 82 100 108 89 87 99 105 86 83 95 105 90 79 99 110 90 85 102 110 94 78 92 110 87 70 88 105 90 class2 56 91 108 89 52 83 100 81 49 75 92 78 52 84 97 86 52 81 97 79 52 73 90 79 50 79 101 83 50 75 93 80 50 71 89 80 class0 52 71 84 70 52 71 80 70 52 71 84 70 52 70 86 72 52 70 86 72 56 73 86 75 53 79 89 76 53 75 93 73 53 71 85 69 class0 56 83 100 78 59 87 96 81 66 100 108 89 52 84 97 83 56 81 97 79 59 84 93 79 57 75 97 76 57 79 93 80 60 84 93 80 class0 66 96 108 92 59 91 100 85 56 79 96 81 59 88 105 86 63 95 110 86 63 84 101 83 60 75 93 83 63 84 97 83 63 84 93 80 class0 59 91 100 85 56 79 96 81 59 83 96 81 63 95 110 86 63 84 101 83 59 73 93 75 63 84 97 83 63 84 93 80 63 79 89 83 class0 59 83 96 81 63 83 100 85 63 83 100 85 59 73 93 75 63 81 93 83 63 91 101 86 63 79 89 83 67 88 105 87 67 92 101 90 class0 63 83 100 85 66 87 100 85 66 83 100 81 63 91 101 86 59 88 101 83 67 84 93 83 67 92 101 90 60 84 97 83 63 75 97 80 class0 66 87 100 85 66 83 100 81 66 83 96 81 59 88 101 83 67 84 93 83 67 84 97 83 60 84 97 83 63 75 97 80 63 79 85 80 class0 66 83 96 81 66 87 104 89 70 96 104 89 67 84 97 83 59 77 90 75 59 73 97 79 63 79 85 80 60 75 89 80 60 84 97 80 class0 66 87 104 89 70 96 104 89 63 79 88 78 59 77 90 75 59 73 97 79 59 73 93 75 60 75 89 80 60 84 97 80 63 92 105 87 class0 70 96 104 89 63 79 88 78 56 63 84 70 59 73 97 79 59 73 93 75 63 73 93 75 60 84 97 80 63 92 105 87 63 92 105 87 class0 56 63 84 70 59 67 84 74 59 79 96 81 63 73 93 75 59 81 93 79 63 91 101 90 63 92 105 87 60 92 110 90 67 102 114 90 class0 59 67 84 74 59 79 96 81 63 87 108 89 59 81 93 79 63 91 101 90 67 103 114 94 60 92 110 90 67 102 114 90 70 106 119 94 class0 63 87 108 89 63 91 112 89 63 96 112 89 67 103 114 94 63 99 114 90 63 103 114 94 70 106 119 94 67 106 110 90 70 111 114 97 class0 63 100 122 92 63 104 117 92 63 96 108 89 67 103 114 94 67 103 114 94 67 99 110 94 70 115 119 97 67 106 124 94 67 106 114 94 class0 66 96 112 89 66 100 112 92 70 100 112 92 67 103 114 94 71 103 114 98 75 112 119 98 70 106 119 94 70 106 119 94 74 111 114 97 class0 66 100 112 92 70 100 112 92 70 104 112 96 71 103 114 98 75 112 119 98 75 108 114 94 70 106 119 94 74 111 114 97 70 111 124 97 class0 70 104 112 96 70 104 112 96 70 100 112 92 75 108 114 94 71 108 114 94 75 108 119 98 70 111 124 97 70 106 114 94 74 106 114 97 class0 63 83 104 89 59 79 92 81 63 75 104 85 71 99 110 94 67 77 97 79 63 66 90 79 67 97 114 90 67 84 101 87 74 92 105 90 class0 63 75 104 85 70 100 112 92 70 100 108 89 63 66 90 79 63 81 101 86 71 95 119 94 74 92 105 90 78 92 110 94 78 97 114 97 class0 70 100 112 92 70 100 108 89 66 79 96 85 63 81 101 86 71 95 119 94 67 88 105 86 78 92 110 94 78 97 114 97 70 92 110 83 class0 63 71 104 92 59 67 104 96 59 63 104 96 63 73 97 86 59 70 105 94 63 66 101 90 60 75 101 83 60 75 101 83 60 75 97 80 class4 56 60 100 89 56 60 88 81 56 60 88 78 59 63 90 83 59 63 86 83 56 60 86 79 60 71 93 80 57 67 93 83 53 60 93 80 class4 56 60 88 78 56 60 84 78 52 56 80 74 56 60 86 79 52 54 86 83 49 45 86 86 53 60 93 80 47 49 82 83 44 43 82 87 class4 56 60 84 78 52 56 80 74 59 67 88 74 52 54 86 83 49 45 86 86 49 51 86 83 47 49 82 83 44 43 82 87 50 46 82 83 class4 52 56 80 74 59 67 88 74 63 71 92 81 49 45 86 86 49 51 86 83 59 70 90 72 44 43 82 87 50 46 82 83 57 67 85 76 class4 59 67 104 96 63 67 108 96 70 75 104 85 59 63 93 90 63 66 97 94 67 77 110 90 63 71 101 87 63 71 101 90 67 75 105 90 class4 83 95 97 79 83 95 105 83 83 95 101 79 78 92 101 76 78 92 97 76 82 97 97 80 80 94 102 79 80 98 94 76 84 94 98 79 class2 83 95 105 83 83 95 101 79 79 95 101 79 78 92 97 76 82 97 97 80 85 97 97 80 80 98 94 76 84 94 98 79 88 106 106 87 class2 83 95 101 79 79 95 101 79 83 95 101 79 82 97 97 80 85 97 97 80 85 106 105 80 84 94 98 79 88 106 106 87 92 115 115 94 class2 83 95 101 79 83 95 105 83 92 103 110 90 85 106 105 80 93 111 114 90 93 115 114 94 92 115 115 94 92 120 125 98 92 115 115 87 class2 52 81 97 79 52 73 90 79 49 73 97 83 50 75 93 80 50 71 89 80 50 75 101 80 50 69 86 72 50 69 90 76 50 69 90 76 class0 49 73 97 83 49 77 93 75 46 66 86 72 50 75 101 80 47 75 97 80 50 71 89 76 50 69 90 76 50 73 94 76 50 73 90 76 class0 49 70 86 72 52 70 82 75 49 66 86 75 53 75 97 80 53 71 89 73 50 71 89 73 53 77 98 79 53 81 98 79 53 77 94 76 class0 49 66 86 75 52 66 86 72 52 70 86 72 50 71 89 73 50 71 85 73 53 79 89 76 53 77 94 76 53 73 98 76 57 77 98 79 class0 52 66 86 72 52 70 86 72 52 70 86 72 50 71 85 73 53 79 89 76 53 75 93 73 53 73 98 76 57 77 98 79 57 73 90 72 class0 56 88 97 83 52 84 97 83 56 81 97 79 57 79 97 80 57 75 97 76 57 79 93 80 57 73 90 76 53 73 90 76 57 77 94 79 class0 63 84 101 83 59 73 93 75 63 81 93 83 63 84 93 80 63 79 89 83 67 88 105 87 60 81 94 79 64 81 98 83 64 85 98 83 class0 59 73 93 75 63 81 93 83 63 91 101 86 63 79 89 83 67 88 105 87 67 92 101 90 64 81 98 83 64 85 98 83 64 85 102 83 class0 63 81 93 83 63 91 101 86 59 88 101 83 67 88 105 87 67 92 101 90 60 84 97 83 64 85 98 83 64 85 102 83 60 81 90 76 class0 59 77 90 75 59 73 97 79 59 73 93 75 60 75 89 80 60 84 97 80 63 92 105 87 68 98 111 91 64 98 106 91 64 94 111 91 class0 59 73 93 75 63 73 93 75 59 81 93 79 63 92 105 87 63 92 105 87 60 92 110 90 64 94 111 91 60 94 111 91 64 98 111 91 class0 59 81 93 79 63 91 101 90 67 103 114 94 60 92 110 90 67 102 114 90 70 106 119 94 64 98 111 91 68 106 115 94 72 106 115 98 class0 75 108 124 98 71 99 110 94 67 77 97 79 70 106 114 94 67 97 114 90 67 84 101 87 76 111 115 94 76 106 115 94 76 102 111 98 class0 63 66 90 79 63 81 101 86 71 95 119 94 74 92 105 90 78 92 110 94 78 97 114 97 80 111 125 102 88 115 131 102 88 111 120 94 class0 71 95 119 94 67 88 105 86 63 73 97 86 78 97 114 97 70 92 110 83 60 75 101 83 88 111 120 94 76 89 102 76 64 77 94 76 class4 63 73 97 86 59 70 105 94 63 66 101 90 60 75 101 83 60 75 101 83 60 75 97 80 64 77 94 76 60 77 94 76 57 81 90 76 class4 59 70 105 94 63 66 101 90 59 66 97 86 60 75 101 83 60 75 97 80 57 71 97 80 60 77 94 76 57 81 90 76 60 85 94 79 class4 59 66 97 86 59 63 90 83 59 63 86 83 57 71 97 80 60 71 93 80 57 67 93 83 60 85 94 79 60 81 90 83 60 73 90 83 class4 59 63 90 83 59 63 86 83 56 60 86 79 60 71 93 80 57 67 93 83 53 60 93 80 60 81 90 83 60 73 90 83 53 62 86 83 class4 59 63 86 83 56 60 86 79 52 54 86 83 57 67 93 83 53 60 93 80 47 49 82 83 60 73 90 83 53 62 86 83 50 52 82 83 class4 56 60 86 79 52 54 86 83 49 45 86 86 53 60 93 80 47 49 82 83 44 43 82 87 53 62 86 83 50 52 82 83 50 52 78 83 class4 59 60 97 90 59 63 93 90 63 66 97 94 60 60 97 87 63 71 101 87 63 71 101 90 60 66 102 91 60 62 106 94 60 66 106 94 class4 67 77 110 90 75 91 97 79 79 91 97 83 67 75 105 90 74 88 105 83 74 92 101 80 64 73 102 94 76 89 106 87 76 89 98 79 class3 75 91 97 79 79 91 97 83 79 91 97 79 74 88 105 83 74 92 101 80 74 84 97 76 76 89 106 87 76 89 98 79 72 89 98 79 class3 79 91 97 83 79 91 97 79 75 88 93 75 74 92 101 80 74 84 97 76 74 88 93 76 76 89 98 79 72 89 98 79 76 85 98 79 class3 85 102 110 87 85 102 110 94 78 92 110 87 88 106 111 91 88 106 111 98 76 94 106 91 84 99 108 92 84 107 113 96 84 107 122 96 class2 50 79 101 83 50 75 93 80 50 71 89 80 50 73 86 76 50 69 86 72 50 69 90 76 50 79 100 81 50 75 96 78 46 71 87 74 class0 50 75 101 80 47 75 97 80 50 71 89 76 50 69 90 76 50 73 94 76 50 73 90 76 50 71 87 74 50 75 91 78 50 79 96 78 class0 50 71 89 76 50 67 93 76 50 75 97 80 50 73 90 76 50 73 94 79 53 81 102 83 50 79 96 78 46 79 96 78 50 79 96 81 class0 50 75 97 80 53 75 97 80 53 71 89 73 53 81 102 83 53 77 98 79 53 81 98 79 50 79 96 81 53 79 96 81 53 83 96 78 class0 57 79 97 80 57 79 97 80 57 75 97 76 57 77 94 76 57 73 90 76 53 73 90 76 56 71 79 74 56 75 87 74 56 75 96 74 class0 57 79 97 80 57 75 97 76 57 79 93 80 57 73 90 76 53 73 90 76 57 77 94 79 56 75 87 74 56 75 96 74 60 79 91 81 class0 60 75 93 83 63 84 97 83 63 84 93 80 60 73 90 79 60 73 90 79 60 81 94 79 60 83 96 81 68 83 96 81 64 87 104 85 class0 63 79 89 83 67 88 105 87 67 92 101 90 64 81 98 83 64 85 98 83 64 85 102 83 60 83 100 85 64 83 96 81 60 87 104 85 class0 67 88 105 87 67 92 101 90 60 84 97 83 64 85 98 83 64 85 102 83 60 81 90 76 64 83 96 81 60 87 104 85 60 91 108 85 class0 60 84 97 83 63 75 97 80 63 79 85 80 60 81 90 76 60 81 90 79 68 89 106 87 60 91 108 85 64 91 113 88 64 95 113 88 class0 63 79 85 80 60 75 89 80 60 84 97 80 68 89 106 87 68 98 111 91 64 98 106 91 64 95 113 88 68 103 113 88 68 103 118 92 class0 63 92 105 87 60 92 110 90 67 102 114 90 60 94 111 91 64 98 111 91 68 106 115 94 68 107 118 92 68 103 118 92 71 103 118 92 class0 67 106 110 90 70 111 114 97 70 115 119 97 72 106 115 94 68 106 120 94 72 111 120 94 68 107 122 96 68 103 118 92 64 103 122 92 class0 70 111 114 97 70 115 119 97 67 106 124 94 68 106 120 94 72 111 120 94 64 106 115 94 68 103 118 92 64 103 122 92 71 107 122 96 class0 70 106 114 94 74 106 114 97 70 111 119 97 76 111 115 94 76 111 115 94 72 106 115 91 76 107 122 99 71 116 122 99 76 107 122 103 class0 70 111 119 97 70 102 114 94 70 106 114 94 72 106 115 91 72 106 115 94 76 111 115 94 76 107 122 103 76 112 122 96 76 112 122 99 class0 60 75 101 83 60 75 101 83 60 75 97 80 64 77 94 76 60 77 94 76 57 81 90 76 64 79 96 81 60 83 100 81 60 83 96 85 class0 60 75 101 83 60 75 97 80 57 71 97 80 60 77 94 76 57 81 90 76 60 85 94 79 60 83 100 81 60 83 96 85 64 87 100 88 class0 60 75 97 80 57 71 97 80 60 71 93 80 57 81 90 76 60 85 94 79 60 81 90 83 60 83 96 85 64 87 100 88 64 83 104 88 class0 53 60 93 80 47 49 82 83 44 43 82 87 53 62 86 83 50 52 82 83 50 52 78 83 56 71 96 85 56 68 91 81 56 64 91 81 class4 47 49 82 83 44 43 82 87 50 46 82 83 50 52 82 83 50 52 78 83 50 52 82 79 56 68 91 81 56 64 91 81 53 64 83 78 class4 60 60 97 87 63 71 101 87 63 71 101 90 60 66 102 91 60 62 106 94 60 66 106 94 60 64 104 99 56 64 108 96 64 71 108 96 class4 80 98 94 76 84 94 98 79 88 106 106 87 84 95 100 85 84 103 108 92 92 107 118 96 93 107 113 92 93 111 123 96 97 111 123 96 class2 84 102 102 79 80 94 94 76 80 94 98 79 84 95 96 74 80 95 96 74 84 95 100 81 79 91 100 75 79 95 100 79 79 95 100 79 class2 84 102 111 91 84 102 106 91 88 106 111 91 84 103 113 96 84 99 113 88 84 99 108 92 88 103 109 92 84 99 109 92 88 103 113 96 class2 68 94 111 91 57 81 102 83 50 77 90 79 68 103 113 92 53 91 104 88 50 79 104 85 67 103 113 96 55 91 109 87 55 87 100 87 class0 57 81 102 83 50 77 90 79 50 73 86 76 53 91 104 88 50 79 104 85 50 79 100 81 55 91 109 87 55 87 100 87 55 83 100 87 class0 50 69 90 76 50 73 94 76 50 73 90 76 50 71 87 74 50 75 91 78 50 79 96 78 51 79 96 79 51 75 96 79 48 72 89 79 class0 50 73 94 79 53 81 102 83 53 77 98 79 46 79 96 78 50 79 96 81 53 79 96 81 48 68 89 75 48 75 89 79 51 75 96 79 class0 53 81 102 83 53 77 98 79 53 81 98 79 50 79 96 81 53 79 96 81 53 83 96 78 48 75 89 79 51 75 96 79 51 72 89 75 class0 57 77 98 79 57 73 90 72 50 62 78 68 53 71 87 74 53 71 83 74 53 71 87 74 55 79 93 75 51 75 89 75 51 68 85 75 class0 57 73 90 72 50 62 78 68 53 69 82 76 53 71 83 74 53 71 87 74 53 68 83 70 51 75 89 75 51 68 85 75 51 68 81 71 class0 60 81 98 79 60 73 90 79 60 73 90 79 64 87 100 85 60 83 96 81 68 83 96 81 63 95 104 83 63 95 104 83 63 95 104 87 class0 60 81 94 79 64 81 98 83 64 85 98 83 64 87 104 85 60 83 100 85 64 83 96 81 63 95 104 87 63 91 104 83 63 91 104 83 class0 60 81 90 79 68 89 106 87 68 98 111 91 64 91 113 88 64 95 113 88 68 103 113 88 67 103 113 92 71 103 109 92 71 103 113 92 class0 68 89 106 87 68 98 111 91 64 98 106 91 64 95 113 88 68 103 113 88 68 103 118 92 71 103 109 92 71 103 113 92 71 107 118 92 class0 64 98 106 91 64 94 111 91 60 94 111 91 68 103 118 92 68 107 113 92 68 107 118 92 71 107 118 92 71 107 113 96 71 103 118 92 class0 72 106 115 91 76 111 115 94 76 111 115 94 71 107 118 96 76 107 122 99 71 116 122 99 71 107 113 96 75 103 118 96 75 103 118 96 class0 76 106 115 94 76 102 111 98 80 111 125 102 80 107 122 96 76 107 118 96 84 116 128 103 84 103 118 96 71 79 109 92 79 103 123 100 class0 76 102 111 98 80 111 125 102 88 115 131 102 76 107 118 96 84 116 128 103 92 116 133 103 71 79 109 92 79 103 123 100 84 111 128 100 class0 88 115 131 102 88 111 120 94 76 89 102 76 92 116 133 103 84 112 122 96 71 83 96 85 84 111 128 100 84 103 118 92 71 79 96 79 class0 64 77 94 76 60 77 94 76 57 81 90 76 64 79 96 81 60 83 100 81 60 83 96 85 63 75 96 83 67 83 104 87 59 83 100 83 class0 60 85 94 79 60 81 90 83 60 73 90 83 64 87 100 88 64 83 104 88 64 79 100 85 63 87 100 87 63 83 104 87 63 79 100 87 class0 50 52 82 83 50 52 78 83 50 52 82 79 56 68 91 81 56 64 91 81 53 64 83 78 59 72 96 83 59 75 96 75 59 75 89 75 class4 50 52 82 79 57 66 82 72 60 77 90 83 53 64 83 78 56 68 87 74 60 71 91 81 59 75 89 75 59 79 89 71 63 79 93 75 class4 60 77 90 83 60 66 102 91 60 62 106 94 60 71 91 81 60 64 104 99 56 64 108 96 63 79 93 75 63 68 109 92 59 75 109 96 class4 60 62 106 94 60 66 106 94 64 73 102 94 56 64 108 96 64 71 108 96 68 75 108 96 59 75 109 96 67 87 113 96 67 95 109 92 class4 84 99 108 81 80 95 100 81 84 95 100 85 88 103 109 87 88 103 109 87 93 107 113 92 78 100 100 81 86 104 108 85 90 109 112 92 class2 84 99 113 88 84 99 108 92 84 107 113 96 84 99 109 92 88 103 113 96 88 103 118 100 90 104 112 92 90 104 112 89 95 109 117 96 class2 84 107 122 96 68 103 113 92 53 91 104 88 79 107 123 100 67 103 113 96 55 91 109 87 86 104 117 100 74 104 122 96 66 104 122 96 class0 68 103 113 92 53 91 104 88 50 79 104 85 67 103 113 96 55 91 109 87 55 87 100 87 74 104 122 96 66 104 122 96 56 91 112 89 class0 53 91 104 88 50 79 104 85 50 79 100 81 55 91 109 87 55 87 100 87 55 83 100 87 66 104 122 96 56 91 112 89 56 87 112 89 class0 53 79 96 81 53 83 96 78 53 75 96 78 51 75 96 79 51 72 89 75 48 79 93 79 49 67 84 74 49 71 92 78 52 75 92 78 class0 53 83 96 78 53 75 96 78 53 71 87 74 51 72 89 75 48 79 93 79 55 79 93 79 49 71 92 78 52 75 92 78 52 75 92 78 class0 56 75 87 74 56 75 96 74 60 79 91 81 55 72 85 75 59 79 93 79 63 87 100 83 56 75 92 74 56 79 96 78 59 87 100 81 class0 56 75 96 74 60 79 91 81 64 87 100 85 59 79 93 79 63 87 100 83 63 95 104 83 56 79 96 78 59 87 100 81 59 87 100 89 class0 60 91 108 85 64 91 113 88 64 95 113 88 71 103 113 92 67 103 113 92 71 103 109 92 70 104 117 92 70 109 117 96 70 109 112 96 class0 64 95 113 88 68 103 113 88 68 103 118 92 71 103 109 92 71 103 113 92 71 107 118 92 70 109 112 96 66 104 112 92 70 104 112 92 class0 68 103 118 92 68 107 113 92 68 107 118 92 71 107 118 92 71 107 113 96 71 103 118 92 70 104 112 92 70 109 117 96 70 109 117 92 class0 68 103 118 92 71 103 118 92 71 103 118 96 67 103 118 92 71 103 118 96 71 103 109 92 70 104 112 92 70 109 112 92 70 109 117 96 class0 71 103 118 92 71 103 118 96 68 107 122 96 71 103 118 96 71 103 109 92 71 99 113 92 70 109 112 92 70 109 117 96 70 100 108 92 class0 71 103 118 96 68 107 122 96 68 103 118 92 71 103 109 92 71 99 113 92 71 99 118 96 70 109 117 96 70 100 108 92 66 100 112 92 class0 68 107 122 96 68 103 118 92 64 103 122 92 71 99 113 92 71 99 118 96 67 103 118 96 70 100 108 92 66 100 112 92 66 104 117 92 class0 76 112 122 99 80 107 122 96 76 107 118 96 84 111 123 100 84 103 118 96 71 79 109 92 78 104 112 96 78 104 112 96 74 83 108 89 class0 80 107 122 96 76 107 118 96 84 116 128 103 84 103 118 96 71 79 109 92 79 103 123 100 78 104 112 96 74 83 108 89 66 71 100 85 class0 84 116 128 103 92 116 133 103 84 112 122 96 79 103 123 100 84 111 128 100 84 103 118 92 66 71 100 85 74 83 104 92 78 96 112 96 class0 60 83 96 85 64 87 100 88 64 83 104 88 59 83 100 83 63 87 100 87 63 83 104 87 66 91 104 92 66 87 108 89 63 83 104 85 class0 64 79 100 85 56 71 96 85 56 68 91 81 63 79 100 87 59 75 96 87 59 72 96 83 63 83 100 85 66 83 100 85 63 83 100 81 class0 56 68 91 81 56 64 91 81 53 64 83 78 59 72 96 83 59 75 96 75 59 75 89 75 63 83 100 81 59 87 96 81 63 83 92 74 class4 56 68 87 74 60 71 91 81 60 64 104 99 59 79 89 71 63 79 93 75 63 68 109 92 59 83 96 74 59 83 92 74 59 83 92 70 class4 60 71 91 81 60 64 104 99 56 64 108 96 63 79 93 75 63 68 109 92 59 75 109 96 59 83 92 74 59 83 92 70 63 79 108 92 class4
a4bc596151a2db04fe39c648e32bd32a57cbe8f8
449d555969bfd7befe906877abab098c6e63a0e8
/3417/CH13/EX13.4.1/Ex13_4_1.sce
59a2837090e7f396df115018270d772ead3c4814
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
761
sce
Ex13_4_1.sce
//Ex13.4.1.;Determine the efficiency of the thermoelectric generator.what will be its carnot efficiency TH=600;//degree k;//temperature of the hot reservior of source TC=300;//degree k;//temperature of the sink Z=2*(10^-3);//1/degree k;//Figure of merit for the material M_optimum=(1+((Z/2)*(TH+TC)))^0.5; printf(" M_optimum=%f",M_optimum); //Efficiency of the thermoelectric generator is n=(((TH-TC)/TH)*((M_optimum-1)/(M_optimum+(TC/TH)))*100; a=((TH-TC)/TH); b=(M_optimum-1)/(M_optimum+(TC/TH)); n=a*b*100; printf("\n Efficiency of the thermoelectric generator is n=%f persent",n); //where as efficiency of the carnot cycle (reversible) nc=((TH-TC)/TH)*100 nc=a*100; printf("\n Efficiency of the carnot cycle (reversible) nc=%f persent",nc);
93b6d3b606a2f2d889df29e2906e9ccd672acb90
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/CONT/GF38CPK/ATWM1_Working_Memory_MEG_GF38CPK_Session2/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce
a1d02de549d025cf690c00a324fd05ebea8d2db1
[]
no_license
atwm1/Presentation
65c674180f731f050aad33beefffb9ba0caa6688
9732a004ca091b184b670c56c55f538ff6600c08
refs/heads/master
2020-04-15T14:04:41.900640
2020-02-14T16:10:11
2020-02-14T16:10:11
56,771,016
0
1
null
null
null
null
UTF-8
Scilab
false
false
48,617
sce
ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce
# ATWM1 MEG Experiment scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2"; #scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen scenario_type = trials; # for MEG #scan_period = 2000; # TR #pulses_per_scan = 1; #pulse_code = 1; pulse_width=6; default_monitor_sounds = false; active_buttons = 2; response_matching = simple_matching; button_codes = 10, 20; default_font_size = 36; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; write_codes=true; # for MEG only begin; #Picture definitions box { height = 382; width = 382; color = 0, 0, 0;} frame1; box { height = 369; width = 369; color = 255, 255, 255;} frame2; box { height = 30; width = 4; color = 0, 0, 0;} fix1; box { height = 4; width = 30; color = 0, 0, 0;} fix2; box { height = 30; width = 4; color = 255, 0, 0;} fix3; box { height = 4; width = 30; color = 255, 0, 0;} fix4; box { height = 369; width = 369; color = 42, 42, 42;} background; TEMPLATE "StimuliDeclaration.tem" {}; trial { sound sound_incorrect; time = 0; duration = 1; } wrong; trial { sound sound_correct; time = 0; duration = 1; } right; trial { sound sound_no_response; time = 0; duration = 1; } miss; # Start of experiment (MEG only) - sync with CTF software trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; } expStart; time = 0; duration = 1000; code = "ExpStart"; port_code = 80; }; # baselinePre (at the beginning of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }default; time = 0; duration = 10000; #mri_pulse = 1; code = "BaselinePre"; port_code = 91; }; TEMPLATE "ATWM1_Working_Memory_MEG.tem" { trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 44 62 292 292 399 125 1742 2992 1992 fixation_cross gabor_109 gabor_133 gabor_078 gabor_051 gabor_109 gabor_133_alt gabor_078_alt gabor_051 "2_1_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_109_133_078_051_target_position_1_4_retrieval_position_1" gabor_109_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_1_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_109_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1992 2992 2042 fixation_cross gabor_143 gabor_111 gabor_027 gabor_006 gabor_143 gabor_111_alt gabor_027_alt gabor_006 "2_2_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_143_111_027_006_target_position_1_4_retrieval_position_1" gabor_093_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_2_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2142 2992 2142 fixation_cross gabor_141 gabor_081 gabor_106 gabor_016 gabor_141_alt gabor_081 gabor_106_alt gabor_016 "2_3_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2150_gabor_patch_orientation_141_081_106_016_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_016_framed blank blank blank blank fixation_cross_white "2_3_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_016_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2092 2992 2092 fixation_cross gabor_073 gabor_039 gabor_055 gabor_129 gabor_073_alt gabor_039 gabor_055 gabor_129_alt "2_4_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2100_gabor_patch_orientation_073_039_055_129_target_position_2_3_retrieval_position_2" gabor_circ gabor_039_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_4_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_039_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1792 2992 2092 fixation_cross gabor_020 gabor_091 gabor_128 gabor_059 gabor_020 gabor_091_alt gabor_128_alt gabor_059 "2_5_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_2100_gabor_patch_orientation_020_091_128_059_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_128_framed gabor_circ blank blank blank blank fixation_cross_white "2_5_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_128_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1792 2992 1942 fixation_cross gabor_122 gabor_064 gabor_015 gabor_035 gabor_122_alt gabor_064_alt gabor_015 gabor_035 "2_6_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_122_064_015_035_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_015_framed gabor_circ blank blank blank blank fixation_cross_white "2_6_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_057 gabor_130 gabor_019 gabor_172 gabor_057_alt gabor_130 gabor_019_alt gabor_172 "2_7_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_057_130_019_172_target_position_2_4_retrieval_position_2" gabor_circ gabor_084_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_7_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2142 2992 2192 fixation_cross gabor_157 gabor_094 gabor_134 gabor_076 gabor_157 gabor_094_alt gabor_134_alt gabor_076 "2_8_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2200_gabor_patch_orientation_157_094_134_076_target_position_1_4_retrieval_position_1" gabor_019_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_8_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_019_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1942 2992 2542 fixation_cross gabor_148 gabor_133 gabor_081 gabor_099 gabor_148_alt gabor_133 gabor_081 gabor_099_alt "2_9_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_2550_gabor_patch_orientation_148_133_081_099_target_position_2_3_retrieval_position_1" gabor_148_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_9_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_148_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 2242 fixation_cross gabor_097 gabor_034 gabor_120 gabor_142 gabor_097 gabor_034_alt gabor_120_alt gabor_142 "2_10_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_097_034_120_142_target_position_1_4_retrieval_position_1" gabor_052_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_10_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_052_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2192 2992 2592 fixation_cross gabor_152 gabor_109 gabor_041 gabor_072 gabor_152_alt gabor_109 gabor_041_alt gabor_072 "2_11_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2600_gabor_patch_orientation_152_109_041_072_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_023_framed blank blank blank blank fixation_cross_white "2_11_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_023_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2042 2992 2042 fixation_cross gabor_038 gabor_060 gabor_145 gabor_086 gabor_038_alt gabor_060 gabor_145 gabor_086_alt "2_12_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_038_060_145_086_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_145_framed gabor_circ blank blank blank blank fixation_cross_white "2_12_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_134 gabor_074 gabor_007 gabor_093 gabor_134_alt gabor_074 gabor_007_alt gabor_093 "2_13_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_134_074_007_093_target_position_2_4_retrieval_position_2" gabor_circ gabor_074_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_13_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_074_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1992 2992 2442 fixation_cross gabor_014 gabor_159 gabor_102 gabor_174 gabor_014 gabor_159_alt gabor_102 gabor_174_alt "2_14_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2450_gabor_patch_orientation_014_159_102_174_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_102_framed gabor_circ blank blank blank blank fixation_cross_white "2_14_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 1892 fixation_cross gabor_037 gabor_158 gabor_013 gabor_122 gabor_037_alt gabor_158 gabor_013_alt gabor_122 "2_15_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_1900_gabor_patch_orientation_037_158_013_122_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_075_framed blank blank blank blank fixation_cross_white "2_15_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1992 2992 1892 fixation_cross gabor_161 gabor_115 gabor_135 gabor_075 gabor_161 gabor_115 gabor_135_alt gabor_075_alt "2_16_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_1900_gabor_patch_orientation_161_115_135_075_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_075_framed blank blank blank blank fixation_cross_white "2_16_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_075_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_084 gabor_160 gabor_019 gabor_142 gabor_084_alt gabor_160_alt gabor_019 gabor_142 "2_17_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_084_160_019_142_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_142_framed blank blank blank blank fixation_cross_white "2_17_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_142_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1842 2992 1942 fixation_cross gabor_010 gabor_124 gabor_096 gabor_146 gabor_010 gabor_124 gabor_096_alt gabor_146_alt "2_18_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_010_124_096_146_target_position_1_2_retrieval_position_2" gabor_circ gabor_079_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_18_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_079_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1892 2992 2442 fixation_cross gabor_021 gabor_143 gabor_053 gabor_171 gabor_021 gabor_143_alt gabor_053 gabor_171_alt "2_19_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_021_143_053_171_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_053_framed gabor_circ blank blank blank blank fixation_cross_white "2_19_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_053_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1942 2992 2092 fixation_cross gabor_028 gabor_082 gabor_116 gabor_009 gabor_028_alt gabor_082_alt gabor_116 gabor_009 "2_20_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_2100_gabor_patch_orientation_028_082_116_009_target_position_3_4_retrieval_position_1" gabor_163_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_20_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_163_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2242 2992 2392 fixation_cross gabor_180 gabor_045 gabor_155 gabor_124 gabor_180 gabor_045 gabor_155_alt gabor_124_alt "2_21_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2400_gabor_patch_orientation_180_045_155_124_target_position_1_2_retrieval_position_2" gabor_circ gabor_093_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_21_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1942 2992 2192 fixation_cross gabor_066 gabor_177 gabor_045 gabor_008 gabor_066_alt gabor_177 gabor_045_alt gabor_008 "2_22_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_066_177_045_008_target_position_2_4_retrieval_position_2" gabor_circ gabor_127_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_22_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2142 2992 1942 fixation_cross gabor_064 gabor_002 gabor_109 gabor_091 gabor_064_alt gabor_002 gabor_109_alt gabor_091 "2_23_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_064_002_109_091_target_position_2_4_retrieval_position_2" gabor_circ gabor_002_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_23_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2192 2992 1992 fixation_cross gabor_125 gabor_179 gabor_057 gabor_040 gabor_125_alt gabor_179_alt gabor_057 gabor_040 "2_24_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2000_gabor_patch_orientation_125_179_057_040_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_105_framed gabor_circ blank blank blank blank fixation_cross_white "2_24_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_105_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1792 2992 2242 fixation_cross gabor_029 gabor_143 gabor_158 gabor_086 gabor_029 gabor_143 gabor_158_alt gabor_086_alt "2_25_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2250_gabor_patch_orientation_029_143_158_086_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_112_framed gabor_circ blank blank blank blank fixation_cross_white "2_25_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_112_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1842 2992 2292 fixation_cross gabor_119 gabor_096 gabor_011 gabor_150 gabor_119 gabor_096_alt gabor_011 gabor_150_alt "2_26_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2300_gabor_patch_orientation_119_096_011_150_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_061_framed gabor_circ blank blank blank blank fixation_cross_white "2_26_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_061_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2092 2992 2492 fixation_cross gabor_088 gabor_056 gabor_170 gabor_117 gabor_088_alt gabor_056 gabor_170 gabor_117_alt "2_27_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2500_gabor_patch_orientation_088_056_170_117_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_170_framed gabor_circ blank blank blank blank fixation_cross_white "2_27_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2092 2992 2492 fixation_cross gabor_026 gabor_090 gabor_106 gabor_179 gabor_026_alt gabor_090 gabor_106_alt gabor_179 "2_28_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2500_gabor_patch_orientation_026_090_106_179_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_043_framed blank blank blank blank fixation_cross_white "2_28_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1942 2992 1892 fixation_cross gabor_138 gabor_094 gabor_024 gabor_004 gabor_138 gabor_094 gabor_024_alt gabor_004_alt "2_29_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_1900_gabor_patch_orientation_138_094_024_004_target_position_1_2_retrieval_position_2" gabor_circ gabor_094_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_29_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_094_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2142 2992 2192 fixation_cross gabor_021 gabor_143 gabor_074 gabor_006 gabor_021_alt gabor_143 gabor_074_alt gabor_006 "2_30_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2200_gabor_patch_orientation_021_143_074_006_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_006_framed blank blank blank blank fixation_cross_white "2_30_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1842 2992 2442 fixation_cross gabor_175 gabor_044 gabor_117 gabor_065 gabor_175 gabor_044_alt gabor_117 gabor_065_alt "2_31_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_2450_gabor_patch_orientation_175_044_117_065_target_position_1_3_retrieval_position_2" gabor_circ gabor_089_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_31_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_089_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1742 2992 1992 fixation_cross gabor_127 gabor_001 gabor_110 gabor_161 gabor_127 gabor_001_alt gabor_110 gabor_161_alt "2_32_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_127_001_110_161_target_position_1_3_retrieval_position_1" gabor_127_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_32_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1892 2992 2242 fixation_cross gabor_117 gabor_033 gabor_164 gabor_141 gabor_117 gabor_033_alt gabor_164_alt gabor_141 "2_33_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_117_033_164_141_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_141_framed blank blank blank blank fixation_cross_white "2_33_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2242 2992 2342 fixation_cross gabor_043 gabor_102 gabor_013 gabor_124 gabor_043 gabor_102 gabor_013_alt gabor_124_alt "2_34_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_043_102_013_124_target_position_1_2_retrieval_position_1" gabor_043_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_34_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 1992 fixation_cross gabor_086 gabor_164 gabor_137 gabor_107 gabor_086_alt gabor_164 gabor_137 gabor_107_alt "2_35_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_086_164_137_107_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_001_framed gabor_circ blank blank blank blank fixation_cross_white "2_35_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1842 2992 2492 fixation_cross gabor_148 gabor_086 gabor_103 gabor_039 gabor_148 gabor_086_alt gabor_103_alt gabor_039 "2_36_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_148_086_103_039_target_position_1_4_retrieval_position_1" gabor_148_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_36_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2142 2992 2292 fixation_cross gabor_126 gabor_048 gabor_077 gabor_017 gabor_126 gabor_048_alt gabor_077_alt gabor_017 "2_37_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_126_048_077_017_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_017_framed blank blank blank blank fixation_cross_white "2_37_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_017_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 2042 2992 1892 fixation_cross gabor_019 gabor_078 gabor_104 gabor_150 gabor_019 gabor_078_alt gabor_104_alt gabor_150 "2_38_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2050_3000_1900_gabor_patch_orientation_019_078_104_150_target_position_1_4_retrieval_position_2" gabor_circ gabor_128_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_38_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_128_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 2192 fixation_cross gabor_173 gabor_117 gabor_146 gabor_001 gabor_173_alt gabor_117 gabor_146 gabor_001_alt "2_39_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_173_117_146_001_target_position_2_3_retrieval_position_2" gabor_circ gabor_067_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_39_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1892 2992 2092 fixation_cross gabor_167 gabor_149 gabor_125 gabor_093 gabor_167_alt gabor_149 gabor_125_alt gabor_093 "2_40_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2100_gabor_patch_orientation_167_149_125_093_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_125_framed gabor_circ blank blank blank blank fixation_cross_white "2_40_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_125_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1992 2992 1942 fixation_cross gabor_013 gabor_063 gabor_044 gabor_083 gabor_013 gabor_063_alt gabor_044_alt gabor_083 "2_41_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_1950_gabor_patch_orientation_013_063_044_083_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_132_framed blank blank blank blank fixation_cross_white "2_41_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_132_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1992 2992 2542 fixation_cross gabor_095 gabor_044 gabor_076 gabor_132 gabor_095 gabor_044_alt gabor_076 gabor_132_alt "2_42_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_095_044_076_132_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_026_framed gabor_circ blank blank blank blank fixation_cross_white "2_42_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1842 2992 1892 fixation_cross gabor_137 gabor_082 gabor_116 gabor_061 gabor_137 gabor_082_alt gabor_116_alt gabor_061 "2_43_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_137_082_116_061_target_position_1_4_retrieval_position_1" gabor_001_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_43_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2092 2992 2092 fixation_cross gabor_091 gabor_022 gabor_062 gabor_180 gabor_091_alt gabor_022_alt gabor_062 gabor_180 "2_44_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2100_gabor_patch_orientation_091_022_062_180_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_133_framed blank blank blank blank fixation_cross_white "2_44_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_133_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1742 2992 2442 fixation_cross gabor_118 gabor_007 gabor_167 gabor_152 gabor_118_alt gabor_007 gabor_167_alt gabor_152 "2_45_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1750_3000_2450_gabor_patch_orientation_118_007_167_152_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_167_framed gabor_circ blank blank blank blank fixation_cross_white "2_45_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_167_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2192 2992 2042 fixation_cross gabor_014 gabor_083 gabor_142 gabor_034 gabor_014 gabor_083_alt gabor_142_alt gabor_034 "2_46_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2050_gabor_patch_orientation_014_083_142_034_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_171_framed blank blank blank blank fixation_cross_white "2_46_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1942 2992 2142 fixation_cross gabor_117 gabor_092 gabor_149 gabor_066 gabor_117_alt gabor_092 gabor_149 gabor_066_alt "2_47_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2150_gabor_patch_orientation_117_092_149_066_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_149_framed gabor_circ blank blank blank blank fixation_cross_white "2_47_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2192 2992 2292 fixation_cross gabor_007 gabor_023 gabor_038 gabor_070 gabor_007 gabor_023_alt gabor_038 gabor_070_alt "2_48_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2300_gabor_patch_orientation_007_023_038_070_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_087_framed gabor_circ blank blank blank blank fixation_cross_white "2_48_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1742 2992 2142 fixation_cross gabor_147 gabor_097 gabor_033 gabor_121 gabor_147 gabor_097 gabor_033_alt gabor_121_alt "2_49_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1750_3000_2150_gabor_patch_orientation_147_097_033_121_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_033_framed gabor_circ blank blank blank blank fixation_cross_white "2_49_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_033_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1842 2992 2192 fixation_cross gabor_048 gabor_110 gabor_175 gabor_129 gabor_048 gabor_110_alt gabor_175 gabor_129_alt "2_50_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_048_110_175_129_target_position_1_3_retrieval_position_1" gabor_002_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_50_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2092 2992 2392 fixation_cross gabor_021 gabor_095 gabor_134 gabor_045 gabor_021 gabor_095_alt gabor_134_alt gabor_045 "2_51_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_021_095_134_045_target_position_1_4_retrieval_position_1" gabor_160_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_51_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2092 2992 2142 fixation_cross gabor_126 gabor_075 gabor_044 gabor_107 gabor_126 gabor_075_alt gabor_044 gabor_107_alt "2_52_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_126_075_044_107_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_091_framed gabor_circ blank blank blank blank fixation_cross_white "2_52_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_091_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1892 2992 2542 fixation_cross gabor_145 gabor_077 gabor_166 gabor_058 gabor_145_alt gabor_077_alt gabor_166 gabor_058 "2_53_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2550_gabor_patch_orientation_145_077_166_058_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_008_framed blank blank blank blank fixation_cross_white "2_53_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1992 2992 2292 fixation_cross gabor_004 gabor_051 gabor_114 gabor_074 gabor_004 gabor_051_alt gabor_114 gabor_074_alt "2_54_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_2300_gabor_patch_orientation_004_051_114_074_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_074_framed blank blank blank blank fixation_cross_white "2_54_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_074_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1792 2992 2392 fixation_cross gabor_169 gabor_015 gabor_128 gabor_149 gabor_169_alt gabor_015_alt gabor_128 gabor_149 "2_55_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2400_gabor_patch_orientation_169_015_128_149_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_149_framed blank blank blank blank fixation_cross_white "2_55_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1792 2992 2592 fixation_cross gabor_051 gabor_028 gabor_074 gabor_137 gabor_051 gabor_028 gabor_074_alt gabor_137_alt "2_56_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2600_gabor_patch_orientation_051_028_074_137_target_position_1_2_retrieval_position_1" gabor_003_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_56_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1942 2992 2292 fixation_cross gabor_069 gabor_130 gabor_043 gabor_148 gabor_069_alt gabor_130 gabor_043_alt gabor_148 "2_57_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2300_gabor_patch_orientation_069_130_043_148_target_position_2_4_retrieval_position_2" gabor_circ gabor_130_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_57_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_130_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1892 2992 2142 fixation_cross gabor_067 gabor_018 gabor_087 gabor_131 gabor_067 gabor_018_alt gabor_087 gabor_131_alt "2_58_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_067_018_087_131_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_087_framed gabor_circ blank blank blank blank fixation_cross_white "2_58_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2192 2992 1942 fixation_cross gabor_157 gabor_088 gabor_001 gabor_127 gabor_157 gabor_088 gabor_001_alt gabor_127_alt "2_59_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_157_088_001_127_target_position_1_2_retrieval_position_2" gabor_circ gabor_038_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_59_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1892 2992 2592 fixation_cross gabor_162 gabor_009 gabor_135 gabor_178 gabor_162 gabor_009 gabor_135_alt gabor_178_alt "2_60_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2600_gabor_patch_orientation_162_009_135_178_target_position_1_2_retrieval_position_2" gabor_circ gabor_009_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_60_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 2192 2992 2242 fixation_cross gabor_063 gabor_128 gabor_178 gabor_105 gabor_063_alt gabor_128_alt gabor_178 gabor_105 "2_61_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2200_3000_2250_gabor_patch_orientation_063_128_178_105_target_position_3_4_retrieval_position_1" gabor_018_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_61_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_018_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1842 2992 2342 fixation_cross gabor_051 gabor_029 gabor_013 gabor_103 gabor_051_alt gabor_029 gabor_013 gabor_103_alt "2_62_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_051_029_013_103_target_position_2_3_retrieval_position_2" gabor_circ gabor_029_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_62_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_029_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1792 2992 2242 fixation_cross gabor_029 gabor_140 gabor_102 gabor_074 gabor_029 gabor_140_alt gabor_102 gabor_074_alt "2_63_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2250_gabor_patch_orientation_029_140_102_074_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_055_framed gabor_circ blank blank blank blank fixation_cross_white "2_63_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1892 2992 2592 fixation_cross gabor_092 gabor_151 gabor_076 gabor_027 gabor_092_alt gabor_151 gabor_076 gabor_027_alt "2_64_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2600_gabor_patch_orientation_092_151_076_027_target_position_2_3_retrieval_position_2" gabor_circ gabor_151_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_64_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_151_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2242 2992 1992 fixation_cross gabor_045 gabor_092 gabor_030 gabor_014 gabor_045_alt gabor_092 gabor_030_alt gabor_014 "2_65_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2000_gabor_patch_orientation_045_092_030_014_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_014_framed blank blank blank blank fixation_cross_white "2_65_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 2142 2992 2342 fixation_cross gabor_119 gabor_137 gabor_152 gabor_094 gabor_119 gabor_137_alt gabor_152_alt gabor_094 "2_66_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2150_3000_2350_gabor_patch_orientation_119_137_152_094_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_012_framed gabor_circ blank blank blank blank fixation_cross_white "2_66_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_012_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1742 2992 2392 fixation_cross gabor_001 gabor_113 gabor_165 gabor_043 gabor_001_alt gabor_113 gabor_165_alt gabor_043 "2_67_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_001_113_165_043_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_043_framed blank blank blank blank fixation_cross_white "2_67_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2242 2992 2542 fixation_cross gabor_153 gabor_136 gabor_119 gabor_031 gabor_153_alt gabor_136 gabor_119 gabor_031_alt "2_68_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2550_gabor_patch_orientation_153_136_119_031_target_position_2_3_retrieval_position_2" gabor_circ gabor_091_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_68_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_091_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2242 2992 2492 fixation_cross gabor_046 gabor_135 gabor_064 gabor_007 gabor_046 gabor_135 gabor_064_alt gabor_007_alt "2_69_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2500_gabor_patch_orientation_046_135_064_007_target_position_1_2_retrieval_position_2" gabor_circ gabor_135_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_69_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_135_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 2242 2992 2342 fixation_cross gabor_016 gabor_166 gabor_085 gabor_149 gabor_016 gabor_166_alt gabor_085_alt gabor_149 "2_70_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2350_gabor_patch_orientation_016_166_085_149_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_035_framed gabor_circ blank blank blank blank fixation_cross_white "2_70_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_035_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; }; # baselinePost (at the end of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }; time = 0; duration = 5000; code = "BaselinePost"; port_code = 92; };
347b01883c580877d442b71a0572a52eec6048cb
449d555969bfd7befe906877abab098c6e63a0e8
/3792/CH5/EX5.15/Ex5_15.sce
9e7b29fc3db1dd4f9f0ce8025bdf2a098a876fd1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
978
sce
Ex5_15.sce
// SAMPLE PROBLEM 5/15 clc;funcprot(0); // Given data N=1500;// rev/min theta_1=60;// degree r=5/12;// ft ABbar=14/12;// ft // Calculation omega=(2*%pi*N)/60;// rad/s a_B=r*omega^2;// ft/sec^2 omega_AB=29.5;// rad/sec a_AB_n=ABbar*omega_AB^2; // If we adopt an algebraic solution using the geometry of the acceleration polygon, we first compute the angle between AB and the horizontal. With the law of sines, this angle becomes 18.02 degree. theta_2=18.02;// degree function[X]=acceleration(y) X(1)=((a_B*cosd(theta_1))+(a_AB_n*cosd(theta_2))-(y(2)*sind(theta_2)))-y(1); X(2)=((a_B*sind(theta_1))-(a_AB_n*sind(theta_2))-(y(2)*cosd(theta_2)))-0; endfunction y=[1000 1000]; z=fsolve(y,acceleration) a_AB_t=z(2);// ft/sec^2 a_A=z(1);// ft/sec^2 r=ABbar;// ft alpha_AB=a_AB_t/r;// rad/sec^2 printf("\nThe acceleration of the piston A,a_A=%4.0f ft/sec^2 \nThe angular acceleration of the connecting rod AB,alpha_AB=%4.0f rad/sec^2",a_A,alpha_AB);
cac7abcd6d325ffb0a7aa5037c0bc7e74f5339b5
491f29501fa7d484a5860f64aef3fa89fb18ca3d
/.sandbox/robotics/HuMAns_pa10/Visu/KickStart.sci
bd48459972fb78f4ecf83f41ae8f0b03b40235fe
[ "Apache-2.0" ]
permissive
siconos/siconos-tutorials
e7e6ffbaaea49add49eddd317c46760393e3ef9a
0472c74e27090c76361d0b59283625ea88f80f4b
refs/heads/master
2023-06-10T16:43:13.060120
2023-06-01T07:21:25
2023-06-01T07:21:25
152,255,663
7
2
Apache-2.0
2021-04-08T12:00:39
2018-10-09T13:26:39
Jupyter Notebook
UTF-8
Scilab
false
false
2,287
sci
KickStart.sci
// Copyright (C) INRIA 1999-2005 // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License version 2 as published // by the Free Software Foundation. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General // Public License for more details. // // You should have received a copy of the GNU General Public License along // with this program; if not, write to the Free Software Foundation, Inc., // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // // Author(s): Pierre-Brice Wieber // Affiliation(s): INRIA, team BIPOP // Email(s): Pierre-Brice.Wieber@inria.fr // // Description: // // Modifications: // $Log: KickStart.sci,v $ // Revision 1.6 2005/07/01 15:38:32 billet // New version 1.0.3 in the banner. // // Revision 1.5 2005/05/19 08:59:47 billet // Change of Version number // // Revision 1.4 2005/04/19 12:15:03 wieber // New version 1.0.1 in the banner. // // Revision 1.3 2005/03/17 17:10:48 rpissard // Doxygen building // // Revision 1.2 2005/03/12 15:31:28 rpissard // Unix Makefile tuning // // Revision 3.0.0.1 2005/02/08 13:04:26 rpissard // version start HuMAnS // // printf(' -------------------------------------------\n'); printf(' HuMAnS-1.0.3\n'); printf(' A Scilab toolbox for Humanoid Motion\n'); printf(' Analysis and Simulation\n'); printf(' Copyright (C) INRIA 1999-2005\n'); printf(' -------------------------------------------\n'); lines(0); stacksize(1e7); function todo = LoadModule(path) todo = "oldpath = getcwd();"+... "chdir("""+path+""");"+... "exec(""Load.sci"");"+... "chdir(oldpath);"; endfunction; function [LIBPATH, LIBEXT] = LibTools() if MSDOS then LIBPATH = 'libWindows'; LIBEXT = '.dll'; else os = unix_g('uname -s'); if os == 'Linux' then LIBPATH = 'libLinux'; LIBEXT = '.so'; elseif os == 'Darwin' then LIBPATH = 'libDarwin'; LIBEXT = '.so'; else printf('Operating System not supported\n'); pause; end; end; endfunction;
b31ba9df86628c1ca2ea92b7f2414bf2b65c2cca
e82d1909ffc4f200b5f6d16cffb9868f3b695f2a
/Lista 2/FirstQuestion.sce
fab6b7cc2c22b390dd8e31cadb5c1128eeabf5f8
[]
no_license
AugustoCam95/Computational-Linear-Algebra
eb14307dd3b45ccc79617efe74d1faca639c36c5
99b1a1f9499fbc4343bd5c878444e9e281952774
refs/heads/master
2020-03-30T22:26:23.790763
2018-10-05T03:34:06
2018-10-05T03:34:06
151,666,289
0
0
null
null
null
null
UTF-8
Scilab
false
false
793
sce
FirstQuestion.sce
// José Augusto Câmara Filho - Matemática Industrial function FirstQuestion() xdel(winsid()) //comando pra limpar tela clear //limpar variáveis clc //comando para limpar console x= linspace(0.5,5.5,50); // espaço de x y= x.^5-15*x.^4+85*x.^3-225*x.^2+274*x-120; // função y scf(1); clf(1); plot(x,y); //plotagem da função y=x.^5-15*x.^4+85*x.^3-225*x.^2+274*x-120 plot(x,y*0); //plotagem da funão y=0 xlabel("$0.5\le x\le 5$","fontsize",4,"color","blue"); ylabel("$y(x)=x^5-15*x^4+85*x^3-225*x^2+274*x-120$","fontsize",4,"color","red"); title("1 Questão (#Points ="+string(length(x))+").","color","blue","fontsize",4); //título da plotagem xs2png(gcf(),"plot1.png"); //comando para salvar o ploto no disco rígido, no caso está no formato png endfunction
8d1d892547ed00c4550bb1f6addce4da7331d638
449d555969bfd7befe906877abab098c6e63a0e8
/593/CH7/EX7.4/ex7_4.sce
051d0593574cbafec551422ade7f530aadb9bc19
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,979
sce
ex7_4.sce
clear; //clc(); // Example 7.4 // Page: 145 printf("Example-7.4 Page no.-145\n\n"); //***Data***// T = 78.15;//[C] P = 1.0;//[atm] // Here we name ethanol as the species 'a', and water as the species 'b', and name the vapor as phase 1 and the liquid as the phase 2. // Thus vapor pressures of the pure species at the given temperature are p_a_0 = 0.993;//[atm] Pure ethanol vapor pressure at 78.15C p_b_0 = 0.434;//[atm] Pure water vapor pressure at 78.15C // Also composition of the azeotrope is x_a = 0.8943;// Amount of ethanol in the liquid phase x_b = 0.1057;// Amount of water in liquid phase // Also, for an azeotrope mixture y_a = x_a;// Amount of ethanol in vapor phase y_b = x_b;// Amount of water in the vapor phase // For ideal gas , fugacity is equal to the total pressure of the system, i.e. // f_i_0 = P , (where P is the system pressure) // For pure liquid system, fugacity of a species is independent of the total pressure of the system and is equal to the pure species vapor pressure at this temprature, i.e. // f_i_0 = p_i // Now, fugacity of each species in gaseous phase and liquid phase will be equal // so, writing the expression for both liquid and gas phase fugacity and equatinh them, we have // f_a_2 = f_a_1 = (y*Y*P)_a_1 = (x*Y*p)_a_2..........................................(1) // f_b_2 = f_b_1 = (y*Y*P)_b_1 = (x*Y*p)_b_2..........................................(2) // We observe that this system has four values of 'Y', one for each of the two species in each of two phases. // Mixtures of the ideal gases are all ideal solutions and the value of 'Y' for all the species in ideal gas phase are unity, so for above two equations Y_a_1 = 1.0; Y_b_1 = 1.0; // Now putting the values these gaseous phase 'Y's in their respective equations 1 and 2, and solving for the liquid phase 'Y's, we have Y_a_2 = ((y_a*P)/(x_a*p_a_0)); Y_b_2 = ((y_b*P)/(x_b*p_b_0)); // From equations 1 and 2, the fugacity of each species in each phase is given by f_a_1 = (y_a*Y_a_1*P);//[atm] f_b_1 = (y_b*Y_b_1*P);//[atm] // and from the definition we have f_a_2 = f_a_1;//[atm] f_b_2 = f_b_1;//[atm] // As we have defined above about the pure species fugacity, so // For vapor phase f_a_1_0 = P;//[atm] f_b_1_0 = P;//[atm] // For liquid phase f_a_2_0 = p_a_0;//[atm] f_b_2_0 = p_b_0;//[atm] printf(" The results are summarized in the following table:\n\n \tPhase\t\t\t\t Etahnol,i=a\t\t\t\t Water,i=b\n\n"); printf(" \tVAPOR, PHASE 1\n"); printf(" \t f_i_1, atm \t\t\t %f \t\t\t\t %f\n",f_a_1,f_b_1); printf(" \t f_i_1_0, atm \t\t\t %f \t\t\t\t %f\n",f_a_1_0,f_b_1_0); printf(" \t Y_i_1(assumed) \t\t %f \t\t\t\t %f\n\n",Y_a_1,Y_b_1); printf(" \tLIQUID, PHASE 2\n"); printf(" \t f_i_2, atm \t\t\t %f \t\t\t\t %f\n",f_a_2,f_b_2); printf(" \t f_i_2_0, atm \t\t\t %f \t\t\t\t %f\n",f_a_2_0,f_b_2_0); printf(" \t Y_i_2(assumed) \t\t %f \t\t\t\t %f\n",Y_a_2,Y_b_2);
6414acd40cfc9d0aeafcd5ea42b9e156e6fbd689
449d555969bfd7befe906877abab098c6e63a0e8
/2129/CH5/EX5.10.1a/ex5_10_1a.sce
758777d986970edf15cf810ac59ddd2477fdf21c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
361
sce
ex5_10_1a.sce
// Exa 5.10.1(a) clc; clear; close; // Given data beta_dc = 90; I_C = 15;// in mA I_C = I_C * 10^-3;// in A I_B = I_C/beta_dc;// in A disp(I_B*10^6,"The base current in µA is"); I_E = I_C + I_B;// in A I_E = I_E * 10^3;// in mA disp(I_E,"The Emitter current in mA is"); alpha_dc = beta_dc/(1+beta_dc); disp(alpha_dc,"The value of alpha_dc is");