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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4582b96840bd09dd30f80795f82fe840aeaa92df | 449d555969bfd7befe906877abab098c6e63a0e8 | /3685/CH20/EX20.15/Ex20_15.sce | 43fa9740a8845eac5b6375fa478a5b92de1ac34c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,971 | sce | Ex20_15.sce | clc
// Given that
d = 180 // Bore in mm
L = 200 // Stroke in mm
Bp = 245 // Brake power in kW
N = 1500 // Speed in rpm
mep = 8 // Mean effective pressure in bar
m_f = 70 // Fuel consumption in kg/h
cv = 42 // Heating value of fuel in MJ/kg
m_h = 0.12 // Fraction of hydrogen content by mass
m_a = 26 // Air consumption in kg/min
m_w = 82 // Mass of cooling water in kg/min
delta_t = 44 // Cooling water temperature rise in degree centigrade
m_o = 50 // Cooling oil circulated through the engine in kg/min
delta_T = 24 // Cooling oil temperature rise in degree centigrade
s_o = 2.1 // Specific heat of cooling oil in kJ/kgK
t = 30 // Room temperature in degree centigrade
t_e = 400 // Exhaust gas temperature on degree centigrade
c_p_de = 1.045 // Heat capacity of dry exhaust gas in kJ/kgK
p = 0.035 // Partial pressure of steam in exhaust gas in bar
printf("\n Example 20.15\n")
h = m_f*cv*1000/3600
Ip = mep*(10^5)*L*(10^-3)*(%pi/4)*((d*(10^-3))^2)*N*6/(2*60000)
n_m = Bp/Ip
h_w = (m_w/60)*(4.187*delta_t)
h_o = (m_o/60)*(s_o*delta_T)
m_e = m_f/60 + m_a
m_v = m_h*9*(m_f/60)
m_de = (m_e-m_v)/60
H = 3060 // From the steam table the enthalpy of steam at the exhaust condition (0.035 bar) in kJ/kg
h_s = (m_v/60)*H
h_de = (m_de)*(c_p_de)*(t_e-t)
h_su = h - (Bp+h_w+h_s+h_o+h_de)
printf("\n Mechanical efficiency = %f percent",n_m*100)
printf("\n Energy Balance")
printf("\n Input Output")
printf("\n Heat supplied by fuel %f kW -",h)
printf("\n Useful work(BP) - %d kW",Bp)
printf("\n Heat carried by cooling water - %f kW",h_w)
printf("\n Heat carried by steam - %f kW",h_s)
printf("\n Heat carried by cooling oil - %f kW",h_o)
printf("\n Heat carried by dry exhaust gas - %f kW",h_de)
printf("\n Heat transferred to surroundings - %f kW",h_su)
|
ee083e4fa9c3438616c0e7de6efaed5f9c3ae46d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3689/CH1/EX1.4/1_4.sce | ef0d283ecbda06bd6b55c439b43a0c22d025105f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 724 | sce | 1_4.sce | ////Variable Declaration
T = 300.0 //Nitrogen temperature, K
v1 = 250.00 //Molar volume, L
v2 = 0.1 //Molar volume, L
a = 1.37 //Van der Waals parameter a, bar.dm6/mol2
b = 0.0387 //Van der Waals parameter b, dm3/mol
R = 8.314e-2 //Ideal Gas Constant, L.bar/(mol.K)
n = 1.
//Calculations
p1 = n*R*T/v1
p2 = n*R*T/v2
pv1 = n*R*T/(v1-n*b)- n**2*a/v1**2
pv2 = n*R*T/(v2-n*b)- n**2*a/v2**2
//Results
printf("\n Pressure from ideal gas law = %4.2e bar nad from Van der Waals equation = %4.2e bar ",p1, pv1)
printf("\n Pressure from ideal gas law = %4.1f bar nad from Van der Waals equation = %4.1f bar ",p2, pv2)
|
3fe449de68f03f2f8a6e54f4199d0f9496365796 | 28bfa203e452a9f5d14389d1fd72e4a93330f00f | /control systems/secorder_step.sce | 3e9be6a831e62077a8f23598da24f49b942bc1f3 | [] | no_license | supreet21/control-system | aba332a3c11edecca02e614861eed61e7ac8284d | 545918ead06459990c9f642983605f93e756218b | refs/heads/master | 2020-05-09T09:39:41.880574 | 2019-04-12T13:15:50 | 2019-04-12T13:15:50 | 181,011,094 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 180 | sce | secorder_step.sce | s=%s;
l=1;
kf=1;
kb=1;
k1=1;
j=4;
k=1;
r=0;
f=11;
t=(0*s+1)/(l*j*s^2 +(k*f*l+r*j)*s+r*k*f+1);
T = syslin('c',t);
time = 0:0.1:40;
y = csim('step',time,T);
plot(y,t);
|
ee0985145302003f5e497328ef35aa0977bfcd87 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2159/CH6/EX6.4/64.sce | 165bccf284aa3be7a1aa5be417873245f6c73a5b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 153 | sce | 64.sce | // problem 6.4
u=1.5/98.1
s=0.81
d=0.14
Q=0.03
g=9.81
p=s*1000/g
a=3.142*d*d/4
V=Q/a
Rn=V*p*d/u
disp(Rn,"Rn less than 2000, flow is laminar")
|
fd708a8549771c148ebaf58acfa07f768d1d5e6e | 449d555969bfd7befe906877abab098c6e63a0e8 | /50/CH4/EX4.8/ex_4_8.sce | 6bfdd8e78545802aa9495446803b863be4ef031c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 335 | sce | ex_4_8.sce |
// example 4.8
// caption: solution by quadratic interpolation;
// x-degrees:[10 20 30]
// hence x in radians is
x=[3.14/18 3.14/9 3.14/6];
f=[1.1585 1.2817 1.3660];
n=2;
P2=lagrangefundamentalpoly(x,f,n)
// hence from P2 ,the exact value of f(3.14/12) is 1.2246;
// where as exact value is 1.2247; |
61eefb55ac196cc24f95268d9e438b578e000cf7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1691/CH6/EX6.12/Exmp6_12.sce | 1dfbb10c31987f832ba0785c3e4830f14e122aa6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 652 | sce | Exmp6_12.sce | //Example 6.12
clc
disp("R_L = 8 ohm, V_CC = +-12 V hence dual supply version")
pac=0.5*(12^2/8)
format(2)
disp(pac,"(1) (P_ac)_max(in W) = 1/2 * V_CC^2/R_L =")
disp("(2) P_DC = V_CC*I_DC but I_DC = 2*I_m / pi")
disp(" = V_CC * (2*I_m/pi)")
disp("Now R_L = V_m/I_m i.e. I_m = V_m/R_L and V_m = V_CC")
pdc=(12^2*2)/(8*%pi)
format(8)
disp(pdc,"Therefore, P_DC(in W) = V_CC * 2 * V_CC/R_L * 1/pi =")
pdt=11.4591-9
disp(pdt,"Therefore, Total P_D(in W) = P_DC - P_ac =")
pd=2.4591/2
format(7)
disp(pd,"Therefore, P_D per transistor(in W) =")
n=900/11.4591
format(5)
disp(n,"(3) %eta(in percentage) = P_ac/P_DC * 100 =")
|
a073ce88407f77f984938646cb6b5a861a7ee1ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /2006/CH10/EX10.5/ex10_5.sce | b9f433b0d30a71104babe0ca74baee44fbc8cdd2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 538 | sce | ex10_5.sce | clc;
T=700;// Exhaust gas temperature in degree celcius
p=120;// Exhaust gas pressure in kPa
Cpo=1.089; // Specific heat at constant pressure in kJ/kg K
R=0.287; // characteristic gas constant in kJ/kg K
p0=100; // Pressure of Surroundings in kPa
T0=30; // temperature of Surroundings in degree celcius
Cvo=Cpo-R; // Specific heat at constant volume
AE=(Cvo*(T-T0))+(p0*R*((T+273)/p-(T0+273)/p0))-((T0+273)*((Cpo*log((T+273)/(T0+273)))-(R*log (p/p0)))); // Available energy
disp ("kJ",AE,"Available energy in Exhaust gas =");
|
3537b56d3da9eeefabb2109dafaa21bf40afe985 | a557f90da8513f81cafd8f65e37e2c0d66449a2f | /FIR_filter_modif.sce | c765c753c917a41fc49ec06126e0c4e54df5f983 | [] | no_license | Sahil966121/SCI | 484cd77d6247e54fe87d36b4f112965c83ab5d96 | cf2921861486a4f2e2e83c3ca813a4e7710d3508 | refs/heads/main | 2023-03-03T17:43:08.236192 | 2021-02-03T05:19:43 | 2021-02-03T05:19:43 | 324,413,192 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,045 | sce | FIR_filter_modif.sce | clc;
clear all;
close;
wp=0.4.*%pi;ws=0.6.*%pi;rs=40;
freq_points=1024;
k=4;//hamming window(decided based on stop and attenuation)
N=(k*2*%pi/ws-wp);
N=ceil(N);
if modulo(N,2)==0 then
N=N+1;
end
wc=wp;
alph=(N-1)/2;
for n=0:N-1
if n==alph
hdn_minusalph(n+1)=wc/%pi;
else
hdn_minusalph(n+1)=sin(wc.*(n-alph))./(%pi.*(n-alph));
end
end
wndw=window('hm',N);
hn=hdn_minusalph.*wndw';
n=0:N-1;
figure(1);subplot(311);plot2d3(n,wndw);xlabel('n');ylabel('wndw');
subplot(312);plot2d3(n,hdn_minusalph);xlabel('n');ylabel('hdn_minusalph');
subplot(313);plot2d3(n,hn);xlabel('n');ylabel('hn');
h=[hn'zeros(1,freq_points-length(hn))];
H=fft(h);
mag_H=20*log10(abs(H));
ph=atan(imag(H),real(H));
phase_H=unwrap(ph);
k1=0:freq_points-1;
omega=k1*2*%pi/(freq_points);
figure(2);subplot(411);plot2d(omega(1:freq_points/2),mag_H(1:freq_points/2));
xtitle('Magnitude response','w(rad)','Magnitude(dB)');
subplot(412);plot2d(omega(1:freq_points/2),phase_H(1:freq_points/2));
xtitle('Phase response','w(rad)','phase(rad)');
|
3e0e5a073a9f57af220214c05576a8eb80935551 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3557/CH5/EX5.1/Ex5_1.sce | 9ca003014085e1bd5e392cae956b48aee672581f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 513 | sce | Ex5_1.sce | //Example 5.1//
k=2.95*10^-4;// kg/(m^-4.s) //At 400 degree Celsius k rises
k1=1.05*10^-8;//kg/(m^-4.s) // The value of k at 300 degree celsius
R=8.314;//J/(mol.K) //universal gas constant
T=673;//K //Kelvin //absolute temperature
T1=573;//K //Kelvin //absolute temperature
a=log(k/k1);// Taking antilog to remove exponential term
//mprintf("a=%e ",a)
c=(1/T)-(1/T1); //subtracting the term
//mprintf("c = %e ",c)
Q=(-(a/c))*R //cross multiplication of the term
mprintf("Q = %e J/mol = 328 kJ/mol",Q)
|
dc7ae3875c682350bc6852059a665d9eda21b84e | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/CreatingPlots/testfchamp.sce | 737c3e87f3670721015d853ba93c6bb4fe295b90 | [] | no_license | markusmorawitz77/Scilab | 902ef1b9f356dd38ea2dbadc892fe50d32b44bd0 | 7c98963a7d80915f66a3231a2235010e879049aa | refs/heads/master | 2021-01-19T23:53:52.068010 | 2017-04-22T12:39:21 | 2017-04-22T12:39:21 | 89,051,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 522 | sce | testfchamp.sce | clf; xgrid(4) // grid
A=gca();A.isoview="on"; // isometric display
//choose a different color table
F=gcf();F.color_map=jetcolormap(64)
//two functions for vector fields
function [u]=converge(t,x)
u(1)=-x(1)
u(2)=-x(2)
endfunction
function [u]=rotation(t,x)
u(1)=-x(2)
u(2)=x(1)
endfunction
//plot the vector fields
x=[-4:4]';y=x;
rect=[-4 -4 4 4]
//vector field with current color table
fchamp(converge,0,x,y,rect=rect)
E=gce();E.colored="on";
//vector field in black
fchamp(rotation,0,x,y,rect=rect)
|
7a634eae6496538174ee22cf10316ce81b595499 | 62e6605ab494919b6833bf1a1b158bcb6f9b79df | /z_reg.sci | 139b90c5fb6280404318f205f6412bd87a120c56 | [] | no_license | mani1250/system-identification | c597c26d10bb5dd62b1b4db650b3945afc336e37 | 5db0536c792dfaa4a8f01561315263503ff34d3d | refs/heads/master | 2021-01-12T06:56:00.703593 | 2017-03-07T12:18:15 | 2017-03-07T12:18:15 | 76,865,655 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 129 | sci | z_reg.sci | function X = z_reg
a = rand(200,5,'normal');
u = a(:,1:2);
for(i=31:200)
X = u(i:i-30,:);
end
endfunction
|
fe441f5cc7b0024755c642a9599ac01b1d16a22a | 449d555969bfd7befe906877abab098c6e63a0e8 | /196/CH3/EX3.11/example_3_11.sce | 60030607bb3b025a6fe59d3f153e1c47abb961fa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 423 | sce | example_3_11.sce | //Chapter 3
//Example 3-11
//ProbonThreeChannelInvertingAmplifier
//Page 56
clear;clc;
//Channel 1
Ri= 10*10^3;//Choosing Input resistance
Acl = -10 ;
Rf1 = - (Acl * Ri);
printf("\n\n Value of Rf1 = %.4f ohm \n\n",Rf1)
//Channel 2
Acl1 = -5;
Rf2 = - (Acl1 * Ri);
printf("\n\n Value of Rf2 = %.4f ohm \n\n",Rf2)
//channel 3
Acl2 = -2;
Rf3 = - (Acl2 * Ri);
printf("\n\n Value of Rf3 = %.4f ohm \n\n",Rf3) |
c48dc6ee4244ea584910f8c3c29391005e4953fa | 449d555969bfd7befe906877abab098c6e63a0e8 | /1598/CH4/EX4.11/ex4_11.sce | fcc28d206ff88336f61bd8de3f93fc48f599966e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 222 | sce | ex4_11.sce | clc;
eo=8.85*10^-12; //constant
q=2*10^-6; //charge in coulomb
l=9; //length in cm
fi=(q/eo); //calcualting flux in (N m square)/c
disp(fi,"Flux through the surface in (N m square)/c = "); //displaying result
|
88632d9e94ebe14d6e7abf3ee22f05bec33c54c8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2792/CH6/EX6.7/Ex6_7.sce | 6d837f2c7104eb6d3058be191db7b3d1e082bece | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 738 | sce | Ex6_7.sce | clc
n = 10^18
disp("n= "+string(n)+"cm^-3") //initializing value of doping
W = 25*10^-4
disp("W= "+string(W)+"cm") //initializing value of width of the resistor
R = 100*10^3
disp("R = "+string(R)+"ohm") //initializing value of resistance
e = 1.6*10^-19
disp("e= "+string(e)+"C")//initializing value of charge of electron
D= 5000*10^-8
disp("D= "+string(D)+"cm") //initializing value of thickness of film
mu_=100
disp("mu_= "+string(mu_)+"cm^2(Vs)^-1") //initializing value of mobility
Ro = 1/(n*e*mu_*D)
disp("The sheet resistance of the film is ,Ro = 1/(n*e*mu_*D) = "+string(Ro)+" ohm/square")//calculation
L = (R*W)/Ro
disp("The length of the desired resistor is ,L = (R*W)/Ro = "+string(L)+" cm")//calculation
|
9501497868fa62a04a0bdc892d468ee454b7c1c0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1523/CH6/EX6.18/ex6_18.sce | d9b5811416819722d2f71e27b523985354aa0dff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 956 | sce | ex6_18.sce | // Three-Phase Circuits :example 6.18 :(pg 6.20)
VL=400;
Po=112*10^3;
pf=0.86;
phi=(acosd(pf));
N=0.88; //Efficiency
Pi=(Po/N);
IL=(Pi/(sqrt(3)*VL*pf));
Iph=(IL/sqrt(3));
AC=(Iph*pf);
RC=(Iph*sind(phi));
Aac=(IL*pf);
Arc=(IL*sind(phi));
printf("\nVL=400 V \nPo=112kW \npf=0.86 \nN=0.88");
//For a mesh-connected load (induction motor)
printf("\nVph=VL=%.f V",VL);
printf("\nN=Po/Pi \nPi=%.2f W",Pi);//Input power
printf("\nPi=sqrt(3)*VL*IL*cos(phi) \nIL=%.1f A",IL);
printf("\nIph=IL/sqrt(3) =%.2f A",Iph);
//current in star-connected load=line current drawn by motor
printf("\nIA=%.1f A",IL);//current in alternate phase
printf("\nAC=Iph*cos(phi) =%.2f A",AC);//active component in each phase of motor
printf("\nRC=Iph*sin(phi) =%.2f A",RC);//Reactive component in each phase of motor
printf("\nAac=%.1f A",Aac);//active component in each alternate phase
printf("\nArc=%.2f A",Arc);//reactive component in each alternate phase
|
256bf2d164cae437fb0d28686f1b0af356fb675a | 449d555969bfd7befe906877abab098c6e63a0e8 | /965/CH3/EX3.4/4.sci | 545ca9a363440466daf553e0a93cff3a23b7068d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 256 | sci | 4.sci | clc;
clear all;
disp("Sphere Surface temperature")
r=1.6/2;//m
H=5.5;//m
k=0.51;// W/(m*C)
Qg=580;// W
te=6;// degree C
Sfc=4*3.1416*r/(1-r/(2*H));
//Qg=k*Sfc*(t-te);
t=Qg/(k*Sfc)+te;
disp("degree C",t,"surface temperature of sphere, t =")
|
7d589bd5406f14246b86685b1429accf01a8a3ad | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/sci2blif_added_blocks/meas_volt.sce | 24d35fce37ec33954178451fa3476a292db72df6 | [] | 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,222 | sce | meas_volt.sce | //**************************** Measure Volt (mite_adc) ****************************
if (blk_name.entries(bl) =='meas_volt') then
global MITE_ADC_check;
if MITE_ADC_check==0
MITE_ADC_check=1;
else
MITE_ADC_check=MITE_ADC_check+1;
end
cap_info = cap_info2(cap_info,pass_num,'out_mite_adc', bl)
mputl("# MITE_ADC",fd_w);
for meas = 1:scs_m.objs(bl).model.rpar(2)
mputl(".subckt meas_volt_mite in[0]=net"+string(blk(blk_objs(bl),2))+'_'+ string(meas)+' out[0]=out_mite_adc_"+string(MITE_ADC_check)+" #meas_fg =0.00001',fd_w);
mputl(" ",fd_w);
select board_num
case 2 then plcloc=[plcloc;'out_mite_adc_"+string(MITE_ADC_check),'14 '+string(MITE_ADC_check)+' 0'] ;
case 3 then plcloc=[plcloc;'out_mite_adc_"+string(MITE_ADC_check),'7 '+string(MITE_ADC_check)+' 0'] ;
//disp(plcloc)
end
end
plcvpr = %t;
fd_io= mopen (fname+'.pads','a+')
select board_num
case 2 then mputl("out:out_mite_adc_"+string(MITE_ADC_check)+" "+string(MITE_ADC_check+7-1)+" 0 0 #tgate[0]",fd_io);
case 3 then mputl("out:out_mite_adc_"+string(MITE_ADC_check)+" "+string(MITE_ADC_check+8-1)+" 1 0 #int[0]",fd_io);
end
mclose(fd_io);
end
|
ff79a1a04f2989ec1a42901dac65d0a1573cd4b8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /695/CH3/EX3.11/Ex3_11.txt | dff2b8f88254e304a5f86d4c9c4e2e86053129b6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 892 | txt | Ex3_11.txt | //Caption:Find the equivalent circuit parameters of the transformer reffered to LV side and also calculate the efficiency
//Exa:3.11
clc;
clear;
close;
V1=200;//in volts
I_o=0.8;//in amperes
W_o=80;//in watts
pf=W_o/(V1*I_o);
I_w=I_o*pf;
I_m=I_o*sqrt(1-pf^2);
R_O=V1/I_w;
X_O=V1/I_m;
a=200/400;
V_sc=25;//in volts
I_sc=10;//in amperes
P_sc=90;//in watts
Z_O2=V_sc/I_sc;
R_O2=P_sc/I_sc^2;
X_O2=sqrt(Z_O2^2-R_O2^2);
R_O1=a^2*R_O2;
X_O1=a^2*X_O2;
I_2=12;
I_1=I_2/a;
V2=sqrt((V1*pf+I_1*R_O1)^2+(V1*sqrt(1-pf^2)+I_1*X_O1)^2);
P_iron=80;//in watts
P_cu=(12/10)^2*90;
P_total=P_cu+P_iron;
Eff=6000*0.8/(6000*0.8+P_total);
disp(R_O,'R_O (in ohms)=');
disp(X_O,'X_O Magnetising reactance (in ohms)=');
disp(R_O1,'Equivalent Resistance reffered to LV Side (in ohms)=');
disp(X_O1,'Equivalent Reactance reffered to LV Side (in ohms)');
disp(Eff*100,'Efficiency (in %)=') |
3bd6f1061d500f4f95fbb45107e4b1e9b60d3a6f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3760/CH1/EX1.12/Ex1_12.sce | fdfb35e516b007bda12c94e71e607998c3a24b23 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,478 | sce | Ex1_12.sce | clc;
P=200000; // rated power output of transformer
E1=11000; // primary side voltage
E2=400; // secondary side voltage
// initialising the results of the open circuit test performed on l v side
Vo=400; // open circuit voltage in V
Io=9; // no load current in A
Po=1500; // core loss in W
// initialising the results of short circuit test performed on h v side
Vsc=350; // voltage applied in short circuit test
Isc=P/(3*E1); // short circuit current
Psc=2100; // power dissipated in short circuit test
E2p=E2/sqrt(3); // per phase voltage
pop=Po/3; // per phase core loss
Ic=pop/E2p; // core loss current
Im=sqrt(Io^2-Ic^2); // magnetising component of current
R=E2p/Ic; // core loss resistance in ohm
X=E2p/Im; // magnetizing reactance
Rh=R*(E1/E2p)^2; // core loss resistance referred to h v side
Xh=floor(X*(E1/E2p)^2); // magnetizing component referred to h v side
printf('coreloss resistance and magnetizing reactance referred to h v side is %f ohm and %f ohm\n ',Rh,Xh);
Pscp=Psc/3; // ohmic loss per phase
Z=Vsc/Isc; // total impedance of transformer
Re=Pscp/Isc^2; // Total resistance of transformer refrred to high voltage side
Xe=sqrt(Z^2-Re^2); // total leakage impedance of transformer referred to h v side
printf('transformer resistance and leakage impedance referred to h v side are %f ohm and %f ohm\n',Re,Xe);
n=(1-(pop+Pscp/2^2)/(P/6+pop+Pscp/2^2))*100; // efficiency at half load
printf('efficiency at half load is %f percent',n);
|
8f37b93d028d8f67889016055df6bbc413fd1fb2 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/lemma-split/GOLD-TEST/ood.tst | 2a69249a0b66389c2da0d483bba333b085e3fb06 | [] | no_license | davidgu13/Lemma-vs-Form-Splits | c154f1c0c7b84ba5b325b17507012d41b9ad5cfe | 3cce087f756420523f5a14234d02482452a7bfa5 | refs/heads/master | 2023-08-01T16:15:52.417307 | 2021-09-14T20:19:28 | 2021-09-14T20:19:28 | 395,023,433 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 10,359 | tst | ood.tst | ko:ji ko:ji N;SG
ko:ji kokji N;PL
cihil cihil N;SG
cihil cihil N;PL
si:l si:l N;PL
si:l si:l N;SG
baʼa baʼad V;IPFV;SG;FUT
baʼa ba: V;PRF;SG;PRS
baʼa baʼad V;IPFV;PL;FUT
baʼa ba'iñ V;IMP;PL;PRS
baʼa baʼa V;IPFV;SG;PRS
baʼa baʼa V;IPFV;PL;PRS
baʼa ba: V;PRF;PL;PRS
baʼa ba'iñ V;IMP;SG;PRS
ha:hag ha:hag N;SG
ha:hag ha:hag N;PL
kotoñ kotoñ N;SG
kotoñ koktoñ N;PL
naw naw N;PL
naw naw N;SG
s-da:pk s-dadpkad V;IPFV;PL;FUT
s-da:pk s-dadpkiñ V;IMP;PL;PRS
s-da:pk s-dadpk V;IPFV;PL;PRS
s-da:pk s-da:pkiñ V;IMP;SG;PRS
s-da:pk s-da:pkad V;IPFV;SG;FUT
s-da:pk s-da:pk V;IPFV;SG;PRS
wu:s̥ad wu:s̥adad V;IPFV;SG;FUT
wu:s̥ad wu:s̥a V;PRF;SG;PRS
wu:s̥ad wu:s̥a V;PRF;PL;PRS
wu:s̥ad wu:s̥ad V;IPFV;SG;PRS
wu:s̥ad wu:s̥ad V;IPFV;PL;PRS
wu:s̥ad wu:s̥adiñ V;IMP;PL;PRS
wu:s̥ad wu:s̥adiñ V;IMP;SG;PRS
wu:s̥ad wu:s̥adad V;IPFV;PL;FUT
siswuimad siswuimad V;IPFV;SG;PRS
siswuimad siswuimadiñ V;IMP;PL;PRS
siswuimad siswuimadiñ V;IMP;SG;PRS
siswuimad siswuimad V;PRF;SG;PRS
siswuimad siswuimadad V;IPFV;PL;FUT
siswuimad siswuimad V;PRF;PL;PRS
siswuimad siswuimad V;IPFV;PL;PRS
siswuimad siswuimadad V;IPFV;SG;FUT
ʼu:gk ʼu:gkiñ V;IMP;SG;PRS
ʼu:gk ʼuʼugkiñ V;IMP;PL;PRS
ʼu:gk ʼu:gk V;IPFV;SG;PRS
ʼu:gk ʼuʼugk V;IPFV;PL;PRS
ʼu:gk ʼu:gkad V;IPFV;SG;FUT
ʼu:gk ʼuʼugkad V;IPFV;PL;FUT
wosonakud̥ wosonakud̥ N;SG
wosonakud̥ wopsonakud̥ N;PL
ceposid cecposid V;IPFV;PL;PRS
ceposid cepos V;PRF;SG;PRS
ceposid ceposidad V;IPFV;SG;FUT
ceposid cecposidad V;IPFV;PL;FUT
ceposid ceposid V;IPFV;SG;PRS
ceposid ceposidiñ V;IMP;SG;PRS
ceposid cecposidiñ V;IMP;PL;PRS
ceposid cecpos V;PRF;PL;PRS
s-muʼuk s-muʼuk V;IPFV;SG;PRS
s-muʼuk s-muʼukad V;IPFV;SG;FUT
s-muʼuk s-muʼumkiñ V;IMP;PL;PRS
s-muʼuk s-muʼukiñ V;IMP;SG;PRS
s-muʼuk s-muʼumkad V;IPFV;PL;FUT
s-muʼuk s-muʼumk V;IPFV;PL;PRS
tas̥ga tas̥ga N;SG
tas̥ga tas̥ga N;PL
ʼi:bhĕ ʼi:bhĕ V;PRF;SG;PRS
ʼi:bhĕ ʼi:bhed V;IPFV;SG;FUT
ʼi:bhĕ ʼi:bhĕ V;PRF;PL;PRS
ʼi:bhĕ ʼi:bhed V;IPFV;PL;FUT
ʼi:bhĕ ʼi:bheñ V;IMP;PL;PRS
ʼi:bhĕ ʼi:bheñ V;IMP;SG;PRS
ʼi:bhĕ ʼi:bhĕ V;IPFV;PL;PRS
ʼi:bhĕ ʼi:bhĕ V;IPFV;SG;PRS
hewek hewekiñ V;IMP;SG;PRS
hewek hewek V;PRF;SG;PRS
hewek hewek V;IPFV;SG;PRS
hewek hewek V;IPFV;PL;PRS
hewek hewekiñ V;IMP;PL;PRS
hewek hewek V;PRF;PL;PRS
hewek hewekad V;IPFV;PL;FUT
hewek hewekad V;IPFV;SG;FUT
kahon kahon N;SG
kahon kakhon N;PL
ceoj ceoj N;SG
ceoj cecoj N;PL
s-wohocid s-wohocidiñ V;IMP;SG;PRS
s-wohocid s-wohoc V;PRF;PL;PRS
s-wohocid s-wohocidiñ V;IMP;PL;PRS
s-wohocid s-wohocid V;IPFV;PL;PRS
s-wohocid s-wohocidad V;IPFV;SG;FUT
s-wohocid s-wohocid V;IPFV;SG;PRS
s-wohocid s-wohoc V;PRF;SG;PRS
s-wohocid s-wohocidad V;IPFV;PL;FUT
s-ape s-apeñ V;IMP;PL;PRS
s-ape s-aped V;IPFV;SG;FUT
s-ape s-apeñ V;IMP;SG;PRS
s-ape s-aped V;IPFV;PL;FUT
s-ape s-ape V;IPFV;PL;PRS
s-ape s-ape V;IPFV;SG;PRS
cicwi cicwi V;PRF;SG;PRS
cicwi cicwiñ V;IMP;SG;PRS
cicwi cicwi V;PRF;PL;PRS
cicwi cicwid V;IPFV;PL;FUT
cicwi cicwi V;IPFV;SG;PRS
cicwi cicwid V;IPFV;SG;FUT
cicwi cicwi V;IPFV;PL;PRS
cicwi cicwiñ V;IMP;PL;PRS
si:s̥p si:s̥p V;IPFV;SG;PRS
si:s̥p si:s̥piñ V;IMP;SG;PRS
si:s̥p sisis̥p V;IPFV;PL;PRS
si:s̥p si:s̥pad V;IPFV;SG;FUT
si:s̥p si:s̥ V;PRF;SG;PRS
si:s̥p sisis̥piñ V;IMP;PL;PRS
si:s̥p sisis̥pad V;IPFV;PL;FUT
si:s̥p sisis̥ V;PRF;PL;PRS
ʼod̥pig ʼod̥pĭ V;PRF;SG;PRS
ʼod̥pig ʼod̥pig V;IPFV;SG;PRS
ʼod̥pig ʼoʼod̥pigiñ V;IMP;PL;PRS
ʼod̥pig ʼod̥pigiñ V;IMP;SG;PRS
ʼod̥pig ʼod̥pigad V;IPFV;SG;FUT
ʼod̥pig ʼoʼod̥pigad V;IPFV;PL;FUT
ʼod̥pig ʼoʼod̥pig V;IPFV;PL;PRS
ʼod̥pig ʼoʼod̥pĭ V;PRF;PL;PRS
ʼoʼohana ʼoʼohana N;SG
ʼoʼohana ʼoʼohana N;PL
kud̥ut kud̥utiñ V;IMP;PL;PRS
kud̥ut kud̥utad V;IPFV;PL;FUT
kud̥ut kud̥utad V;IPFV;SG;FUT
kud̥ut kud̥ut V;IPFV;PL;PRS
kud̥ut kud̥utiñ V;IMP;SG;PRS
kud̥ut kud̥ut V;IPFV;SG;PRS
pa:nt papant V;PRF;PL;PRS
pa:nt pa:ntiñ V;IMP;SG;PRS
pa:nt papantiñ V;IMP;PL;PRS
pa:nt papant V;IPFV;PL;PRS
pa:nt pa:ntad V;IPFV;SG;FUT
pa:nt papantad V;IPFV;PL;FUT
pa:nt pa:nt V;IPFV;SG;PRS
pa:nt pa:nt V;PRF;SG;PRS
kawhi kawhi N;PL
kawhi kawhi N;SG
s-iʼowĭ s-iʼowĭ N;PL
s-iʼowĭ s-iʼowĭ N;SG
pisaltakud̥ pipsaltakud̥ N;PL
pisaltakud̥ pisaltakud̥ N;SG
memd̥a memd̥ad V;IPFV;SG;FUT
memd̥a wopoʼod V;IPFV;PL;FUT
memd̥a wopo'iñ V;IMP;PL;PRS
memd̥a memd̥a V;IPFV;SG;PRS
memd̥a wopoʼo V;IPFV;PL;PRS
memd̥a memd̥añ V;IMP;SG;PRS
hu:ñ hu:ñ N;SG
hu:ñ huhuñ N;PL
s-onk s-onkad V;IPFV;SG;FUT
s-onk s-oʼonkiñ V;IMP;PL;PRS
s-onk s-oʼonk V;IPFV;PL;PRS
s-onk s-oʼonkad V;IPFV;PL;FUT
s-onk s-onk V;IPFV;SG;PRS
s-onk s-onkiñ V;IMP;SG;PRS
ʼelid ʼelidad V;IPFV;PL;FUT
ʼelid ʼelĭ V;PRF;PL;PRS
ʼelid ʼelidiñ V;IMP;SG;PRS
ʼelid ʼelidad V;IPFV;SG;FUT
ʼelid ʼelidiñ V;IMP;PL;PRS
ʼelid ʼelid V;IPFV;SG;PRS
ʼelid ʼelĭ V;PRF;SG;PRS
ʼelid ʼelid V;IPFV;PL;PRS
ʼoʼohan ʼoʼohaniñ V;IMP;SG;PRS
ʼoʼohan ʼoʼohanad V;IPFV;SG;FUT
ʼoʼohan ʼoʼoha V;PRF;PL;PRS
ʼoʼohan ʼoʼohaniñ V;IMP;PL;PRS
ʼoʼohan ʼoʼoha V;PRF;SG;PRS
ʼoʼohan ʼoʼohan V;IPFV;SG;PRS
ʼoʼohan ʼoʼohan V;IPFV;PL;PRS
ʼoʼohan ʼoʼohanad V;IPFV;PL;FUT
tapial tatpial N;PL
tapial tapial N;SG
ceʼewidakud̥ ceʼewidakud̥ N;PL
ceʼewidakud̥ ceʼewidakud̥ N;SG
ceʼewid ceʼewi V;PRF;SG;PRS
ceʼewid ceʼewidiñ V;IMP;SG;PRS
ceʼewid ceʼewidad V;IPFV;PL;FUT
ceʼewid ceʼewid V;IPFV;SG;PRS
ceʼewid ceʼewid V;IPFV;PL;PRS
ceʼewid ceʼewidiñ V;IMP;PL;PRS
ceʼewid ceʼewi V;PRF;PL;PRS
ceʼewid ceʼewidad V;IPFV;SG;FUT
hemajkam hemajkam N;SG
hemajkam hehemajkam N;PL
hi:wodag hihwodag N;PL
hi:wodag hi:wodag N;SG
huhuʼid huhuʼidiñ V;IMP;PL;PRS
huhuʼid huhuʼi V;PRF;SG;PRS
huhuʼid huhuʼid V;IPFV;PL;PRS
huhuʼid huhuʼidiñ V;IMP;SG;PRS
huhuʼid huhuʼid V;IPFV;SG;PRS
huhuʼid huhuʼi V;PRF;PL;PRS
huhuʼid huhuʼidad V;IPFV;PL;FUT
huhuʼid huhuʼidad V;IPFV;SG;FUT
koʼokolmad koʼokolmadad V;IPFV;SG;FUT
koʼokolmad koʼokolmadad V;IPFV;PL;FUT
koʼokolmad koʼokolmad V;IPFV;PL;PRS
koʼokolmad koʼokolmad V;PRF;PL;PRS
koʼokolmad koʼokolmadiñ V;IMP;SG;PRS
koʼokolmad koʼokolmadiñ V;IMP;PL;PRS
koʼokolmad koʼokolmad V;PRF;SG;PRS
koʼokolmad koʼokolmad V;IPFV;SG;PRS
tlo:gi tlo:gi N;SG
tlo:gi tlolgi N;PL
cendad cecendad V;IPFV;PL;PRS
cendad cecendad V;PRF;PL;PRS
cendad cecendadiñ V;IMP;PL;PRS
cendad cendad V;IPFV;SG;PRS
cendad cendadiñ V;IMP;SG;PRS
cendad cendad V;PRF;SG;PRS
cendad cecendadad V;IPFV;PL;FUT
cendad cendadad V;IPFV;SG;FUT
gaʼa gaʼañ V;IMP;SG;PRS
gaʼa gaʼad V;IPFV;SG;FUT
gaʼa gaʼad V;IPFV;PL;FUT
gaʼa gai V;PRF;PL;PRS
gaʼa gaʼa V;IPFV;SG;PRS
gaʼa gaʼa V;IPFV;PL;PRS
gaʼa gai V;PRF;SG;PRS
gaʼa gaʼañ V;IMP;PL;PRS
to:nk totonk N;PL
to:nk to:nk N;SG
giʼipig giʼipigad V;IPFV;SG;FUT
giʼipig giʼipig V;IPFV;PL;PRS
giʼipig giʼipig V;IPFV;SG;PRS
giʼipig giʼipigiñ V;IMP;SG;PRS
giʼipig giʼipĭ V;PRF;PL;PRS
giʼipig giʼipĭ V;PRF;SG;PRS
giʼipig giʼipigiñ V;IMP;PL;PRS
giʼipig giʼipigad V;IPFV;PL;FUT
s-wagima s-wapagimañ V;IMP;PL;PRS
s-wagima s-wagima V;IPFV;SG;PRS
s-wagima s-wapagimad V;IPFV;PL;FUT
s-wagima s-wapagima V;IPFV;PL;PRS
s-wagima s-wagimad V;IPFV;SG;FUT
s-wagima s-wagimañ V;IMP;SG;PRS
elpig ʼeʼelpigad V;IPFV;PL;FUT
elpig ʼelpi V;PRF;SG;PRS
elpig elpigad V;IPFV;SG;FUT
elpig ʼeʼelpi V;PRF;PL;PRS
elpig elpigiñ V;IMP;SG;PRS
elpig elpig V;IPFV;SG;PRS
elpig ʼeʼelpigiñ V;IMP;PL;PRS
elpig ʼeʼelpig V;IPFV;PL;PRS
cu:hug cu:hug N;PL
cu:hug cu:hug N;SG
wakonakud̥ wakonakud̥ N;SG
wakonakud̥ wapkonakud̥ N;PL
wopo wopo N;PL
wopo wopo N;SG
mehĭ mehĭ N;SG
mehĭ mehĭ N;PL
ki: ki: N;SG
ki: ki: V;IPFV;PL;PRS
ki: ki:d V;IPFV;PL;FUT
ki: ki:d V;IPFV;SG;FUT
ki: ki: V;IPFV;SG;PRS
ki: ki:ñ V;IMP;SG;PRS
ki: ki:kĭ N;PL
ki: ki:ñ V;IMP;PL;PRS
ki: ki:k N;PL
siʼi si'id V;IPFV;PL;FUT
siʼi si: V;PRF;PL;PRS
siʼi si: V;PRF;SG;PRS
siʼi siʼi V;IPFV;PL;PRS
siʼi si'id V;IPFV;SG;FUT
siʼi siʼi V;IPFV;SG;PRS
siʼi siʼiñ V;IMP;PL;PRS
siʼi siʼiñ V;IMP;SG;PRS
wamigĭ wa:pam V;PRF;PL;PRS
wamigĭ wa:pamgid V;IPFV;PL;FUT
wamigĭ wamigiñ V;IMP;PL;PRS
wamigĭ wamigĭ V;IPFV;SG;PRS
wamigĭ wa:pamgĭ V;IPFV;PL;PRS
wamigĭ wamigiñ V;IMP;SG;PRS
wamigĭ wam V;PRF;SG;PRS
wamigĭ wamigid V;IPFV;SG;FUT
huc huc N;SG
huc huhuc N;PL
Tohono ʼOʼodham Tohono ʼOʼodham N;SG
Tohono ʼOʼodham Tohono ʼOʼodham N;PL
ʼoimed̥ ʼoimed̥ad V;IPFV;SG;FUT
ʼoimed̥ ʼoyopo V;IPFV;PL;PRS
ʼoimed̥ ʼoime V;PRF;SG;PRS
ʼoimed̥ ʼoyopoad V;IPFV;PL;FUT
ʼoimed̥ ʼoime V;PRF;PL;PRS
ʼoimed̥ ʼoimed̥ V;IPFV;SG;PRS
ʼoimed̥ ʼoimed̥añ V;IMP;SG;PRS
ʼoimed̥ ʼoyopoiñ V;IMP;PL;PRS
sitolmad sitolmadad V;IPFV;PL;FUT
sitolmad sitolmadiñ V;IMP;SG;PRS
sitolmad sitolmad V;PRF;SG;PRS
sitolmad sitolmad V;IPFV;SG;PRS
sitolmad sitolmad V;IPFV;PL;PRS
sitolmad sitolmadad V;IPFV;SG;FUT
sitolmad sitolmad V;PRF;PL;PRS
sitolmad sitolmadiñ V;IMP;PL;PRS
ñeid ñeidiñ V;IMP;SG;PRS
ñeid ñeidad V;IPFV;SG;FUT
ñeid ñeid V;IPFV;SG;PRS
ñeid ñeidiñ V;IMP;PL;PRS
ñeid ñei V;PRF;SG;PRS
ñeid ñeidad V;IPFV;PL;FUT
ñeid ñei V;PRF;PL;PRS
ñeid ñeid V;IPFV;PL;PRS
dahă dahiwa V;PRF;SG;PRS
dahă dahiñ V;IMP;SG;PRS
dahă dahă V;IPFV;SG;PRS
dahă dad̥hă V;IPFV;PL;PRS
dahă dad̥had V;IPFV;PL;FUT
dahă dahad V;IPFV;SG;FUT
dahă dadhiwua V;PRF;PL;PRS
dahă dahiñ V;IMP;PL;PRS
wopopig wopopigiñ V;IMP;PL;PRS
wopopig wopopĭ V;PRF;PL;PRS
wopopig wopopig V;IPFV;PL;PRS
wopopig wopopigiñ V;IMP;SG;PRS
wopopig wopopĭ V;PRF;SG;PRS
wopopig wopopig V;IPFV;SG;PRS
wopopig wopopigad V;IPFV;SG;FUT
wopopig wopopigad V;IPFV;PL;FUT
dai dads̥ V;PRF;PL;PRS
dai dai V;PRF;SG;PRS
mansa:na mansa:na N;PL
mansa:na mansa:na N;SG
gogs gogogs N;PL
gogs gogs N;SG
s̥u:s̥k s̥u:s̥k N;PL
s̥u:s̥k s̥u:s̥k N;SG
towa towa N;SG
towa totwa N;PL
to:lo to:lo N;SG
to:lo totlo N;PL
nawoj nanwoj N;PL
nawoj nawoj N;SG
ʼiʼihog ʼiʼihog V;IPFV;SG;PRS
ʼiʼihog ʼiʼihogad V;IPFV;SG;FUT
ʼiʼihog ʼiʼihogiñ V;IMP;SG;PRS
ʼiʼihog ʼiʼihog V;IPFV;PL;PRS
ʼiʼihog ʼiʼiho V;PRF;SG;PRS
ʼiʼihog ʼiʼiho V;PRF;PL;PRS
ʼiʼihog ʼiʼihogad V;IPFV;PL;FUT
ʼiʼihog ʼiʼihogiñ V;IMP;PL;PRS
s-wihonig s-wihonigiñ V;IMP;SG;PRS
s-wihonig s-wiphionig V;IPFV;PL;PRS
s-wihonig s-wiphionigad V;IPFV;PL;FUT
s-wihonig s-wiphionigiñ V;IMP;PL;PRS
s-wihonig s-wihonigad V;IPFV;SG;FUT
s-wihonig s-wihonig V;IPFV;SG;PRS
ʼo:gĭ ʼoʼo:gĭ N;PL
ʼo:gĭ ʼo:gĭ N;SG
s̥onwuikud̥ s̥os̥onwuikud̥ N;PL
s̥onwuikud̥ s̥onwuikud̥ N;SG
|
2aabec277818ced8175f0011444b19ad11bfa97e | 449d555969bfd7befe906877abab098c6e63a0e8 | /243/CH4/EX4.2/4_02.sce | 112a25fbf84bedc9b4438a91d0e733608bf71709 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,121 | sce | 4_02.sce | //Example No. 4_02
//Accuracy of numbers
//Pg No. 63
clear ;close ;clc ;
function n = sd(x)
nd = strindex(x,'.') //position of point
num = str2code(x)
if isempty(nd) & num(length(x)) == 0 then
mprintf('Accuracy is not specified\n')
n = 0 ;
else
if num(1)>= 1 & isempty(nd) then
n = length(x)
elseif num(1) >= 1 & ~isempty(nd) then
n = length(x) - 1
else
for i = 1:length(x)
if num(i) >= 1 & num(i) <= 9 then
break
end
end
n = length(x)- i + 1
end
end
endfunction
a = '95.763'
na = sd(a)
mprintf('%s has %i significant digits\n',a,na)
b = '0.008472'
nb = sd(b)
mprintf('%s has %i significant digits.The leading or higher order zeros are only place holders\n',b,nb)
c = '0.0456000'
nc = sd(c)
mprintf('%s has %i significant digits\n',c,nc)
d = '36'
nd = sd(d)
mprintf('%s has %i significant digits\n',d,nd)
e = '3600'
sd(e)
f = '3600.00'
nf = sd(f)
mprintf('%s has %i significant digits\n',f,nf) |
715d0d78fdad6b0fac67c8dbab739215b0b3bb60 | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /Simple Switching Move WZ.sce | 8c738e5420df0761133f93ae1728b1958b9aaee6 | [] | 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 | 152,491 | sce | Simple Switching Move WZ.sce | Name=Simple Switching Move WZ
PlayerCharacters=player_char
BotCharacters=simple_walk.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=player_char
AddedBots=simple_walk.bot;simple_walk.bot;simple_walk.bot
PlayerMaxLives=0
BotMaxLives=0;0;0
PlayerTeam=1
BotTeams=2;2;2
MapName=simple_switching.map
MapScale=10.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=0.0
ScorePerDamage=2.0
ScorePerKill=10.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=true
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Target Switching WZ
WeaponHeroTag=MG
DifficultyTag=3
AuthorsTag=NFNT
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=true
Description=Switching target, More Health, Long Strafe, MG, 3 bots. Remixed it for Warzone
GameVersion=2.0.1.2
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
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=simple_walk
DodgeProfileNames=Long Strafes
DodgeProfileWeights=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=false
CharacterProfile=simple_walk_char
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Character Profile]
Name=player_char
MaxHealth=100.0
WeaponProfileNames=MG;;;;;;;
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=0.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=0.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=simple_walk_char
MaxHealth=25.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.1
MaxRespawnDelay=0.1
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=800.0
MaxCrouchSpeed=500.0
Acceleration=16000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
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=320.0
MainBBRadius=65.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=-10.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=320.0
ProjBBRadius=65.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=-10.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=100.0
BlockSpawnFOV=0.0
BlockSpawnDistance=100.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=false
BounceOffWalls=true
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=0.1
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=-160.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=Long Strafes
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=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
[Weapon Profile]
Name=MG
Type=Hitscan
ShotsPerClick=10
DamagePerShot=0.01
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=10000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=1.0
ReloadTimeFromPartial=1.0
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=1.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.0001
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.5
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=0
DecalSize=4.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.01
HitscanVisualRadius=0.001
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=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=20
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=79.0
ADSFOVScale=Quake Champions
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=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,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.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=true
PBS0=0.0,0.0
PBS1=0.0,0.0
PBS2=0.0,0.0
PBS3=0.0,0.0
PBS4=0.0,0.0
PBS5=0.0,0.0
PBS6=0.0,0.0
PBS7=0.0,0.0
PBS8=0.0,0.0
PBS9=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-128.000000 0.000000 128.000000
128.000000 0.000000 128.000000
128.000000 0.000000 -128.000000
-128.000000 0.000000 -128.000000
-128.000000 -16.000000 128.000000
128.000000 -16.000000 128.000000
128.000000 -16.000000 -128.000000
-128.000000 -16.000000 -128.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
419.751587 -16.000000 834.113708
788.211182 -16.000000 543.040466
0.361887 -16.000000 -117.494896
0.715412 0.000000 -117.743301
0.361887 0.000000 -117.494896
0.715412 -16.000000 -117.743301
788.211182 0.000000 543.040466
419.751587 0.000000 834.113708
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
11.000000 240.000000 -130.000000
0.715412 240.000000 -117.743301
788.211182 240.000000 543.040466
798.496399 240.000000 530.784485
11.000000 -16.000000 -130.000000
0.715412 -16.000000 -117.743301
788.211182 -16.000000 543.040466
798.496399 -16.000000 530.784485
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
-1.000000 240.000000 -118.000000
-11.284664 240.000000 -130.256714
-798.776489 240.000000 530.531067
-788.491943 240.000000 542.788025
-1.000000 -16.000000 -118.000000
-11.284664 -16.000000 -130.256714
-798.776489 -16.000000 530.531067
-788.491943 -16.000000 542.788025
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
-128.000000 240.000000 -112.000000
128.000000 240.000000 -112.000000
128.000000 240.000000 -128.000000
-128.000000 240.000000 -128.000000
-128.000000 -16.000000 -112.000000
128.000000 -16.000000 -112.000000
128.000000 -16.000000 -128.000000
-128.000000 -16.000000 -128.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
787.362305 240.000000 521.499512
777.077698 240.000000 533.756226
788.608398 240.000000 543.350708
798.893616 240.000000 531.094727
787.362305 -16.000000 521.499512
777.077698 -16.000000 533.756226
788.608398 -16.000000 543.350708
798.893616 -16.000000 531.094727
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
-777.000000 240.000000 533.000000
-787.284668 240.000000 520.743286
-799.531311 240.000000 531.039734
-789.246765 240.000000 543.296692
-777.000000 -16.000000 533.000000
-787.284668 -16.000000 520.743286
-799.531311 -16.000000 531.039734
-789.246765 -16.000000 543.296692
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
-789.246765 -16.000000 543.296692
-419.430450 -16.000000 834.630615
-777.000000 -16.000000 533.000000
-412.626831 368.000000 820.130432
-777.000000 368.000000 533.000000
-412.626831 -16.000000 820.130432
-419.430450 368.000000 834.630615
-789.246765 368.000000 543.296692
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
1.678482 -16.000000 931.571533
421.788574 -16.000000 834.388550
2.179398 -16.000000 915.774414
415.915405 368.000000 820.220215
2.179398 368.000000 915.774414
415.915405 -16.000000 820.220215
421.788574 368.000000 834.388550
1.678482 368.000000 931.571533
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
421.788574 -16.000000 834.388550
788.608398 -16.000000 543.350708
415.915405 -16.000000 820.220215
777.077698 368.000000 533.756226
415.915405 368.000000 820.220215
777.077698 -16.000000 533.756226
788.608398 368.000000 543.350708
421.788574 368.000000 834.388550
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
419.751587 240.000000 834.113708
788.211182 240.000000 543.040466
0.361887 240.000000 -117.494896
0.715412 256.000000 -117.743301
0.361887 256.000000 -117.494896
0.715412 240.000000 -117.743301
788.211182 256.000000 543.040466
419.751587 256.000000 834.113708
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 4 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
-0.076050 240.000000 931.101685
419.751587 240.000000 834.113708
-0.079092 240.000000 -117.449310
0.361887 256.000000 -117.494896
-0.079092 256.000000 -117.449310
0.361887 240.000000 -117.494896
419.751587 256.000000 834.113708
-0.076050 256.000000 931.101685
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
-419.935852 240.000000 833.995972
-0.076050 240.000000 931.101685
-0.551671 240.000000 -117.614899
-0.079092 256.000000 -117.449310
-0.551671 256.000000 -117.614899
-0.079092 240.000000 -117.449310
-0.076050 256.000000 931.101685
-419.935852 256.000000 833.995972
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
-0.076050 -16.000000 930.101685
419.751587 -16.000000 833.113708
-0.079092 -16.000000 -118.449310
0.361887 0.000000 -118.494896
-0.079092 0.000000 -118.449310
0.361887 -16.000000 -118.494896
419.751587 0.000000 833.113708
-0.076050 0.000000 930.101685
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
-788.491943 -16.000000 542.788025
-419.935852 -16.000000 833.995972
-1.000000 -16.000000 -118.000000
-0.551671 0.000000 -117.614899
-1.000000 0.000000 -118.000000
-0.551671 -16.000000 -117.614899
-419.935852 0.000000 833.995972
-788.491943 0.000000 542.788025
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000
brush
vertices
-419.430450 -16.000000 834.630615
1.678482 -16.000000 931.571533
-412.626831 -16.000000 820.130432
2.179398 368.000000 915.774414
-412.626831 368.000000 820.130432
2.179398 -16.000000 915.774414
1.678482 368.000000 931.571533
-419.430450 368.000000 834.630615
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
-419.935852 -16.000000 833.995972
-0.076050 -16.000000 931.101685
-0.551671 -16.000000 -117.614899
-0.079092 0.000000 -117.449310
-0.551671 0.000000 -117.614899
-0.079092 -16.000000 -117.449310
-0.076050 0.000000 931.101685
-419.935852 0.000000 833.995972
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
brush
vertices
-788.491943 240.000000 542.788025
-419.935852 240.000000 833.995972
-1.000000 240.000000 -118.000000
-0.551671 256.000000 -117.614899
-1.000000 256.000000 -118.000000
-0.551671 240.000000 -117.614899
-419.935852 256.000000 833.995972
-788.491943 256.000000 542.788025
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 5 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 3 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 1 6 0x00000000
entity
type PlayerSpawn
Vector3 position 0.000000 4.000000 0.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 0.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -25.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -50.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -75.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -125.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -150.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -175.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -225.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -250.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -275.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -300.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -275.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -300.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -250.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -225.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -175.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -150.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -125.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -75.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -50.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -25.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -50.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -50.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -150.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -250.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -300.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -300.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -250.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -150.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -50.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -150.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -250.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -300.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -150.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -300.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -250.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -150.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -50.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -50.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -50.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -150.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -250.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -300.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -300.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -250.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -175.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -225.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -125.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -75.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -150.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -25.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -25.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -50.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -50.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -75.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -125.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -150.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -175.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -225.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -250.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -275.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -300.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -300.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -275.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -250.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 75.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 300.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 275.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 250.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 225.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 175.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 150.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 125.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 75.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 50.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 25.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 50.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 25.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 75.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 125.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 150.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 175.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 225.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 250.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 275.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 300.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 300.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 300.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 250.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 150.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 50.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 50.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 150.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 250.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 300.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 250.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 150.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 50.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 250.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 50.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 150.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 250.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 300.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 300.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 300.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 250.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 150.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 50.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 50.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 150.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 150.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 125.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 225.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 250.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 175.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 300.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 300.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 275.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 275.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 250.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 225.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 175.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 150.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 125.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 75.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 50.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 25.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 25.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 50.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 25.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -25.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -50.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -75.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -125.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -150.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -175.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -225.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -250.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -275.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -300.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 300.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 275.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 250.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 225.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 175.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 150.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 125.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 75.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 50.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 50.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 25.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -25.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -50.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -75.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -125.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -150.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -175.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -225.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -250.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 250.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 225.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 175.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 150.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 125.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 75.000000 5.000000 850.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -650.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -650.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -700.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -700.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -650.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -650.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -550.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -325.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -350.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -375.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -400.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -425.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -450.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -475.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -525.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -500.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -475.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -450.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -425.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -400.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -375.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -350.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -325.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -350.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -350.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -400.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -450.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -500.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -550.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -600.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -600.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -550.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -500.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -450.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -400.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -350.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -400.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -450.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -500.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -550.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -600.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -400.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -450.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -600.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -550.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -500.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -450.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -400.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -350.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -350.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -350.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -400.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -450.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -500.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -550.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -600.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -600.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -550.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -500.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -475.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -500.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -525.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -425.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -400.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -375.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -450.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -325.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -325.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -350.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -350.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -375.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -425.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -400.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -450.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -475.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -325.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -350.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -375.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -400.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 475.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 450.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 425.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 400.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 375.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 350.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 325.000000 5.000000 300.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 325.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 350.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 375.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 400.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 425.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 450.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 475.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 500.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 525.000000 5.000000 350.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 550.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 550.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 500.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 450.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 400.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 350.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 350.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 400.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 450.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 500.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 450.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 550.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 500.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 450.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 400.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 350.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 500.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 350.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 400.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 450.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 500.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 550.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 550.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 550.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 500.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 450.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 400.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 350.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 350.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 400.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 400.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 375.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 350.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 450.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 475.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 500.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 425.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 550.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 525.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 450.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 475.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 425.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 400.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 375.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 350.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 325.000000 5.000000 750.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 325.000000 5.000000 700.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 650.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 600.000000 5.000000 450.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 600.000000 5.000000 400.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 700.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 650.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 600.000000 5.000000 500.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 600.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 650.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 700.000000 5.000000 550.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 600.000000 5.000000 650.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 600.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 650.000000 5.000000 600.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 425.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 400.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 375.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 350.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 325.000000 5.000000 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 325.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -25.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -50.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -75.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -125.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -150.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -175.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -225.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -250.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -275.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -300.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 300.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 275.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 250.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 225.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 175.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 150.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 125.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 75.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 50.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 25.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -325.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -350.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -375.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 375.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 350.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 400.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -400.000000 5.000000 250.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -350.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -325.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -300.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -275.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -250.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -225.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -200.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -175.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -150.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -125.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -100.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -75.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -50.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position -25.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 350.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 25.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 50.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 75.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 100.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 125.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 150.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 175.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 200.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 225.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 250.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 275.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 300.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 325.000000 5.000000 200.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
7c951a870fec56fff62d813cbf3d3f40375db027 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3774/CH4/EX4.18/Ex4_18.sce | 1c87c3fc569c60d9709656f6c1e23815bf529e6f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 671 | sce | Ex4_18.sce | // exa 4.18 Pg 123
clc;clear;close;
// Given Data
Pmin=-300;// kN
Pmax=700;// kN
Se_dash=280;// MPa
Sy=350;// MPa
Kf=1.8;//fatigue strength factor
n=2;// factor of safety
Pm=(Pmax+Pmin)/2;// kN
Pa=(Pmax-Pmin)/2;// kN
// sigma_m=4*Pm/%pi/d**2
sigma_m_into_d_sq = 4*Pm*1000/%pi;
sigma_a_into_d_sq = 4*Pa*1000/%pi;
kf=1/Kf ;// fatigue strength reduction factor
kb=0.85;// size factor
ke=0.9;//load factor
ka=0.93;// surface finish factor
Se=ka*kb*ke*kf*Se_dash;// MPa
//Goodman failure equation - sigma_m/Sy+sigma_a/Se=1/n
d=sqrt((sigma_m_into_d_sq/Sy+sigma_a_into_d_sq/Se)*2.25)
printf('\n Suitable diameter of rod, d = %.f mm',d)
// Note - Ans in the textbook is wrong.
|
76319f82228a932a76fbcff2f03f245d1b5ec325 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3819/CH2/EX2.22/Ex2_22.sce | e313b1dfa3e90a59a6333a16032df7bee2556724 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 557 | sce | Ex2_22.sce | // A Textbook of Fluid Mecahnics and Hydraulic Machines - By R K Bansal
// Chapter 2 - Pressure and its measurements
// Problem 2.22
//Given Data Set in the Problem
dens=1000
g=9.81
p0=10.143*10^4
Z=2500
//calculations
//1) pressure by hydrostatic law
dens0=1.208
p=p0-integrate("dens0*g","z",0,Z)
mprintf("The pressure by hydrostatic law at 2500m height is %f N/cm^2\n",p*10^-4)
//2)PRESSURE BY ISOTHERMAL LAW
//p=p0*e^(-gZ/RT)
p=p0*exp(-g*Z*dens0/p0)
mprintf("The pressure BY ISOTHERMAL LAW at 2500m height is %f N/cm^2\n",p*10^-4)
|
37f089a357673341906530bbb60e9b658b551e31 | eee96b986bbe9b02c28910e531dc5e4bc96ab8a6 | /raizes/bissecao.sci | ac17034ae2ce859e6e24eaddb5b9c379a5c38f82 | [] | no_license | jilcimar/computacao-numerica | 7b7c85bac6a66e8d428cfed08b4f9b61558d19f1 | 093b6f0723026880b10dd100fa523107583eca85 | refs/heads/master | 2021-07-10T11:13:20.533276 | 2019-09-09T13:50:17 | 2019-09-09T13:50:17 | 203,243,471 | 0 | 2 | null | 2020-10-02T12:19:49 | 2019-08-19T20:13:24 | Scilab | UTF-8 | Scilab | false | false | 645 | sci | bissecao.sci | function [y] = funcao(x)
y = sqrt((9.81*((465-x)/320)**2)/(((356/320)-(270/320)-((465-x)/320)*tan(-0.515549))*(cos(-0.515549)**2)*2)) //aqui vai a função
endfunction;
function [y] = mod_numero(x) //pode se usar a função abs()
p = x;
if x < 0;
p = x*(-1);
end;
y = p;
endfunction;
a = 210; //intervalo inicial
b = 465; //intervalo final
ini = a;
fim = b;
interm = (a+b)/2;
//calcula a raiz de f(x) no intervalo [a,b] com precisão eps1
x0=a;
x1=b;
xm=(x0+x1)./2;
eps1 = 10^(-6); //Precisão
it=0;
while abs(funcao(xm))>eps1&it<=7
if funcao(x0)*funcao(xm) > 0 then
x0=xm;
else
x1=xm;
end;
xm=(x0+x1)/2;
it=it+1;
end;
raiz=xm;
iter=it;
|
7e0bfa208beb1f2f2f44fae496c8a6bede63b341 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3720/CH14/EX14.13/Ex14_13.sce | 45d428c8a85815478659ac054bb34390c128c659 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 783 | sce | Ex14_13.sce | //Example 14-13
clc;clear;
// Properties
rho=998;//The density of water at 20°C in kg/m^3
// Given values
D_a=2.05;//Diameter in m
n_a=120;//rpm
n_b=120;//rpm
omega_a=12.57;//rad/s;
V_a=350;//m^3/s
H_a=75.0;//m
H_b=104;//m
bhp_a=242;//MW
rho_a=998;// kg/m^3
rho_b=998;// kg/m^3
g=9.81//m/s^2
n_ta=bhp_a*10^6/(rho_a*g*H_a*V_a);//Efficiency of turbine A
// Calculation
D_b=D_a*(sqrt(H_b/H_a))*(n_a/n_b);
printf('The diameter of the new turbine,D_b=%0.2f m\n',D_b);
V_b=V_a*(n_b/n_a)*(D_b/D_a)^3;
printf('Volume flow rate,V_b=%0.0f m^3/s\n',V_b);
bhp_b=bhp_a*(rho_b/rho_a)*(n_b/n_a)^3*(D_b/D_a)^5;
printf('The brake horsepower of new turbine, bhp_b=%0.0f MW\n',bhp_b);
n_tb=1-((1-n_ta)*(D_a/D_b)^(1/5));
printf('Efficiency of the turbine B=%0.3f \n',n_tb);
|
c462845e65ef45ab88f5b0b37a57b06e516f159b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH12/EX12.33/example12_33.sce | ad73c947765f7be5d2debdfd1239b3a67adddc17 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 365 | sce | example12_33.sce | clc
// Given that
E = 70 // energy of betatron synchrotron in Mev
r = 0.28 // radius in meter
e = 1.6e-19 // charge on an electron in C
// Sample Problem 33 on page no. 12.45
printf("\n # PROBLEM 33 # \n")
printf(" Standard formula used \n")
printf(" E = c* e * r* B \n")
E_ = E * 1.6e-13
B = E_ / (3e8 * e * r)
printf("\n Magnitude of magnetic field is %f T.",B)
|
2ba873ab5310307433a4b3ff67bc61443f26ac31 | 449d555969bfd7befe906877abab098c6e63a0e8 | /728/CH4/EX4.8/Ex4_8.sce | c831d77c3f39085c25bb31368f28acff118f27ec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 459 | sce | Ex4_8.sce | //Caption:Calculate the cutoff wavelength, guide wavelength, group & phase velocities
//Exa:4.8
clc;
clear;
close;
a=10;//in cm
c=3*10^10;//in cm/s
wl_c=2*a;//in cm
f=2.5*10^9;//in Hz
wl_o=c/f;
wl_g=wl_o/(sqrt(1-(wl_o/wl_c)^2));//in cm
V_p=c/(sqrt(1-(wl_o/wl_c)^2));
V_g=c^2/V_p;
disp(wl_c,'Cut-off wavelength (in cm) =');
disp(wl_g,'Guide wavelength (in cm) =');
disp(V_p,'Phase velocity (in cm/s) =');
disp(V_g,'Group velocity (in cm/s) ='); |
a1287cf04271152dc30dfdf58611999ae6232d28 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH44/EX44.11/44_11.sce | 5eb36e54bb0f12673d5dd4766b6e67087481554b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 663 | sce | 44_11.sce | //Problem 44.11: An underground cable has the following primary constants: resistance R = 10 ohm/loop km, inductance L = 1.5 mH/loop km, conductance G = 1.2 μS/km and capacitance C = 0.06 μF/km. Determine by how much the inductance should be increased to satisfy the condition for minimum distortion.
//initializing the variables:
R = 10; // in ohm/loop km
L = 0.0015; // in H/loop km
C = 0.06E-6; // in F/km
G = 1.2E-6; // in S/km
//calculation:
//the condition for minimum distortion is given by LG = CR, from which,
Lm = C*R/G
dL = Lm - L
printf("\n\n Result \n\n")
printf("\n inductance should be increased by %.2E H/loop km for minimum distortion",dL)
|
e24edf41309b4ab95fa9f8bf15e205039a88bfc6 | b2675f983fedb79e5e6f1940962373bda0570ec4 | /D1/Make_MARInfo&MARUtility_v1.tst | 1dcab90cd5c653e280cac4e484a09e6c0ad873bc | [] | no_license | Meena92/Projects | b854c40b91515bb429c9e13fb0cbc95c03e0a9d6 | 06361e24bf51883ff4140db5c37c3f40836a5752 | refs/heads/master | 2020-03-29T01:45:03.726432 | 2019-06-11T05:26:08 | 2019-06-11T05:26:08 | 149,404,524 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 7,117 | tst | Make_MARInfo&MARUtility_v1.tst | <?xml version="1.0" ?>
<TestCase name="Make_MARInfo&MARUtility" version="5">
<meta>
<create version="7.5.1" buildNumber="7.5.1.418" author="T020124A" date="01/12/2015" host="DVTBLISAPP002" />
<lastEdited version="10.0.0" buildNumber="10.0.0.431" author="admin" date="09/28/2017" host="inbasdpc10722" />
</meta>
<id>1989DAD6981411E4A3378E70F5A2C2FB</id>
<Documentation>Put documentation of the Test Case here.</Documentation>
<IsInProject>true</IsInProject>
<sig>ZWQ9NSZ0Y3Y9NSZsaXNhdj0xMC4wLjAgKDEwLjAuMC40MzEpJm5vZGVzPS02MTY0NjYyMDI=</sig>
<subprocess>false</subprocess>
<initState>
</initState>
<resultState>
</resultState>
<deletedProps>
</deletedProps>
<Node name="Create_MARInfo_File" log=""
type="com.itko.lisa.test.UserScriptNode"
version="1"
uid="BB66B98F0E8C11E59A333C5920524153"
think="500-1S"
useFilters="true"
quiet="false"
next="Create_MAR_File" >
<Documentation>This step reads VSM files from /Vservices/*.vsm folder and create MARInfo file accordingly. The filter {{fileName}} is there to retrieve same file name as of MARInfo file so that corresponding MAR can be created with same name.</Documentation>
<!-- Filters -->
<Filter type="com.itko.lisa.test.FilterSaveResponse">
<valueToFilterKey>lisa.Create_MARInfo_File.rsp</valueToFilterKey>
<prop>fileName</prop>
</Filter>
<!-- Data Sets -->
<readrec>marInfoProps</readrec>
<readrec>dsFileName</readrec>
<!-- Assertions -->
<CheckResult assertTrue="true" name="Any Exception Then Fail" type="com.itko.lisa.dynexec.CheckInvocationEx">
<log>Assertion name: Any Exception Then Fail checks for: true is of type: Assert on Invocation Exception.</log>
<then>fail</then>
<valueToAssertKey></valueToAssertKey>
<param>.*</param>
</CheckResult>
<onerror>abort</onerror>
<language>BeanShell</language>
<copyProps>TestExecProps</copyProps>
<script>import com.itko.lisa.model.mar.*; import com.itko.lisa.model.mar.ModelArchiveInfo; import com.itko.lisa.test.Configuration; //This variable will automatically pick up path of current project. String projectPath = testExec.getStateValue("PROJECT_PATH"); //Get active config file to be included in MARInfo Configuration cnf=testExec.getTestCase().getRealTimeConfig(); String configName=cnf.getName(); String fileNameWithVSM=""; String fileNameWithoutVSM=""; String configFileName=""; String [] delimittedString = dsFileName.split("/"); if(delimittedString != null){ fileNameWithVSM = delimittedString[delimittedString.length-1]; fileNameWithoutVSM = fileNameWithVSM.subSequence(0, fileNameWithVSM.length() - 4); //get rid of .vsm } String [] delimittedString2 = configName.split("\\\\"); if(delimittedString2 != null){ configFileName = delimittedString2[delimittedString2.length-1]; } //System.out.println("CONFIG_NAME="+configFileName); int capacity = Integer.parseInt(testExec.getStateValue("CONCURRENT_CAPACITY")); int thinkScale = Integer.parseInt(testExec.getStateValue("THINK_TIME_SCALE")); boolean autoRestart = Boolean.parseBoolean(testExec.getStateValue("AUTO_RESTART")); boolean startSeviceOnDeployment = Boolean.parseBoolean(testExec.getStateValue("START_VS_ON_DEPLOYMENT")); String groupTag = testExec.getStateValue("GROUP_TAG"); ModelArchiveInfo mari = ModelArchiveInfo.createVSMARInfo(dsFileName, projectPath+"/Configs/"+configFileName, capacity, thinkScale,autoRestart, startSeviceOnDeployment,groupTag); mari.save(new File(projectPath + "/MARInfos/"+fileNameWithoutVSM+".mari")); return fileNameWithoutVSM; //code end</script>
</Node>
<Node name="Create_MAR_File" log="Following MAR file has been created: {{LISA_PROJ_ROOT}}/MAR/{{fileName}}.mar"
type="com.itko.lisa.utils.CommandLineExecNode"
version="1"
uid="4D674C28982311E4A3378E70F5A2C2FB"
think="500-1S"
useFilters="true"
quiet="false"
next="Create_MARInfo_File" >
<Documentation>This step creates MAR file based on the MARInfo file createed in previous step onta a specific location within project i-e.{{PROJECT_PATH}}/MAR/{{fileName}}</Documentation>
<cmd>MakeMar --create --marinfo={{PROJECT_PATH}}/MARInfos/{{fileName}}.mari --archive={{PROJECT_PATH}}/MAR/{{fileName}}.mar</cmd>
<basedir>{{LISA_HOME}}/bin</basedir>
<toNode>abort</toNode>
<exceptionNode>abort</exceptionNode>
<timeOut>60</timeOut>
<killAtEnd>false</killAtEnd>
<wait>false</wait>
<addToEnv>false</addToEnv>
<spawn>false</spawn>
<execShell>true</execShell>
<charset>DEFAULT</charset>
<env>
</env>
<exitCodes>
</exitCodes>
</Node>
<Node name="end" log=""
type="com.itko.lisa.test.NormalEnd"
version="1"
uid="1989DADC981411E4A3378E70F5A2C2FB"
think="0h"
useFilters="true"
quiet="true"
next="fail" >
</Node>
<Node name="fail" log=""
type="com.itko.lisa.test.Abend"
version="1"
uid="1989DADA981411E4A3378E70F5A2C2FB"
think="0h"
useFilters="true"
quiet="true"
next="abort" >
</Node>
<Node name="abort" log=""
type="com.itko.lisa.test.AbortStep"
version="1"
uid="1989DAD8981411E4A3378E70F5A2C2FB"
think="0h"
useFilters="true"
quiet="true"
next="" >
</Node>
<DataSet type="com.itko.lisa.test.DataSheet" name="marInfoProps" atend="" local="false" random="false" maxItemsToFetch="0" >
<sample>rO0ABXNyABFqYXZhLnV0aWwuSGFzaE1hcAUH2sHDFmDRAwACRgAKbG9hZEZhY3RvckkACXRocmVzaG9sZHhwP0AAAAAAAAx3CAAAABAAAAAGdAAWU1RBUlRfVlNfT05fREVQTE9ZTUVOVHQABHRydWV0ABNDT05DVVJSRU5UX0NBUEFDSVRZdAABMXQAE21hckluZm9Qcm9wc19Sb3dOdW10AAExdAAMQVVUT19SRVNUQVJUdAAEdHJ1ZXQAEFRISU5LX1RJTUVfU0NBTEV0AAMxMDB0AAlHUk9VUF9UQUd0AAB4</sample>
<table>
<col>CONCURRENT_CAPACITY</col>
<col>THINK_TIME_SCALE</col>
<col>AUTO_RESTART</col>
<col>START_VS_ON_DEPLOYMENT</col>
<col>GROUP_TAG</col>
<tr>
<td>1</td>
<td>100</td>
<td>true</td>
<td>true</td>
<td></td>
</tr>
</table>
</DataSet>
<DataSet type="com.itko.lisa.test.DirectoryFilesDataSet" name="dsFileName" atend="end" local="true" random="false" maxItemsToFetch="0" >
<sample>rO0ABXNyABFqYXZhLnV0aWwuSGFzaE1hcAUH2sHDFmDRAwACRgAKbG9hZEZhY3RvckkACXRocmVzaG9sZHhwP0AAAAAAAAx3CAAAABAAAAABdAAKZHNGaWxlTmFtZXQAUEU6L0NBL1Byb2plY3RzL0FwZXJpb19UU1lTX1JUTC9WaXJ0dWFsU2VydmljZXMvTW9kZWxzL3RzMi0yMDE1LTA2LTEwXzA4MzBfdjEudnNteA==</sample>
<file-dirPath>{{PROJECT_PATH}}/VirtualServices/</file-dirPath>
<filePattern>*.vsm</filePattern>
<includeSubDirs>true</includeSubDirs>
</DataSet>
</TestCase>
|
4bec83a67314218106641f6089c2a27bdb5c322e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2360/CH2/EX2.12/ex2_12.sce | f91b92162eae202184050e3b63f49b62042c1af1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex2_12.sce | // Exa 2.12
format('v',7);clc;clear;close;
// Given data
Am = 111.5;//measured value in V
Per_Error = 5.3;// %e in %
// Per_Error = ((At-Am)/At)*100;
At = Am/(1 - (Per_Error/100));//true value of voltage in V
disp(At,"The true value of voltage in V is");
|
8c23db33833eb9136a68db44e42095887978674a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1673/CH1/EX1.2/1_2.sce | 93b1b450f95d4cba4b2c910e4dcc473e4d58ec17 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 283 | sce | 1_2.sce | //example 1.2
//percentage accuracy
//page 9
clc;clear;close;
x=0.51;// the number given
n=2;//correcting upto 2 decimal places
dx=((10^-n)/2)
p_a=(dx/x)*100;//percentage accuracy
printf('the percentage accuracy of %f after correcting to two decimal places is %f',x,p_a);
|
0db3ae556c5f61aca0bb28e6e9eb73141babe0cc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1238/CH8/EX8.16/8_16.sce | 9c9ef990aeca0f4636f2e61023033388668d1cdb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 365 | sce | 8_16.sce | //calculating required data//
//example 16//
clc
//clears the command window//;
clear
//clears//
V=10;//full scale voltage
W=1/2^12;//weight of LSB//
R=V*W;//resolution//
printf('resolution=%f volt\n',R);//result is displayed//
S=R;//step size//
R1=S/V*100;//percentage resolution//
printf('percentage resolution=%f percent',R1)
//result displayed//
|
a29b1adba8567ee485822beae7e88d99e50718ce | a3f5b45d29e397db1fc6800b4336dd9f85e4e07d | /projects/software_stack/vm/MemoryAccess/PushSegmentTest/PushSegmentTestVME.tst | a3ff3dcaa027acc1d0175d3541f135eda3c671a8 | [] | no_license | idrisr/nand2tetris | 1f5e4ac469489f415e70ee626fa592a9e5730d78 | b491e96ce9fc54cccf8aea07214c95cb4ffaa4f5 | refs/heads/master | 2016-09-06T03:17:26.716980 | 2015-01-03T01:59:22 | 2015-01-03T01:59:22 | 27,518,528 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 533 | tst | PushSegmentTestVME.tst | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/07/MemoryAccess/PushSegmentTest/PushSegmentTestVME.tst
load PushSegmentTest.vm,
output-file PushSegmentTest.out,
compare-to PushSegmentTest.cmp,
// SP LCL @SP-1 @LCL-1
output-list RAM[0]%D1.6.1 RAM[1]%D1.6.1 RAM[256]%D1.6.1 RAM[308]%D1.6.1;
set RAM[0] 256, // SP
set RAM[1] 300, // LCL
repeat 50 {
vmstep;
}
output;
|
51fdc341f0eb67a54ac3af4cb9850007820025d0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /125/CH4/EX4.6/Example4_6.sce | 7e14c8b63eb3da48fc8d7c032db33b5c84f5922a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,018 | sce | Example4_6.sce | //Caption:Scilab code to intergchange phase information between two images
//Example4.6
//page 174-175
clc;
close;
a = imread('E:\DIP_JAYARAMAN\Chapter4\lena.png'); //SIVP toolbox
b = imread('E:\DIP_JAYARAMAN\Chapter4\baboon.png');
a = rgb2gray(a);
b = rgb2gray(b);
a = imresize(a,0.5);
b = imresize(b,0.5);
figure(1)
ShowImage(a,'Original lena Image'); //IPD toolbox
title('Original lena Image');
figure(2)
ShowImage(b,'Original baboon Image');
title('Original baboon Image')
ffta = fft2d(double(a));
fftb = fft2d(double(b));
mag_a = abs(ffta);
mag_b = abs(fftb);
ph_a = atan(imag(ffta),real(ffta));
ph_b = atan(imag(fftb),real(fftb));
newfft_a = mag_a.*(exp(%i*ph_b));
newfft_b = mag_b.*(exp(%i*ph_a));
rec_a = ifft2d(newfft_a);
rec_b = ifft2d(newfft_b);
figure(3)
ShowImage(uint8(rec_a),'lena Image after phase reversal');
title('lena Image after phase reversal')
figure(4)
ShowImage(uint8(rec_b),'baboon Image after phase reversal');
title('baboon Image after phase reversal') |
fdc132d1d4e8c8fd429c4784e5837c1d57fd2dce | 449d555969bfd7befe906877abab098c6e63a0e8 | /3769/CH13/EX13.29/Ex13_29.sce | 10a34dd12c08cd6b3a783837357f633aaa6a1d44 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 475 | sce | Ex13_29.sce | clear
//Given
R1=10.0 //ohm
R2=5.0 //ohm
R3=15 //ohm
Ev=200
//Calculation
//
R=R1+R2+R3
X=R3-(R1+R3)
Z=sqrt(R**2+R1**2)
Iv=Ev/Z
T=X/R
a=-atan(T)*180/3.14
b=cos(a*3.14/180.0)
P=Iv**2*R
printf("\n (i) Circuit current is %0.2f A",Iv)
printf("\n (ii) Circuit phase angle is %0.2f degree lead",a)
printf("\n (iii)Phase angle between applied voltage and circuit current %0.3f lead",b)
printf("\n (iv)Power consumed is %0.3f W",P)
|
15ca8f25dfac34897a5b1512e567eea05733847f | 449d555969bfd7befe906877abab098c6e63a0e8 | /680/CH4/EX4.12/4_12.sce | 5799ad350662677e12e909f50574fba6c771a99a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 271 | sce | 4_12.sce | //Problem 4.12:
//initializing the variables:
r = 500000; // in gpm
e = 0.30;
d = 3000; // in ft
//calculation:
mdt = r*0.00378*1000/60 // in kg/sec
delPE = mdt*9.8*d*0.3048
P = e*delPE
printf("\n\nResult\n\n")
printf("\n actual power output is %.2E W",P) |
96a5ccf1afda880eb14353dd5ac9852869315741 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/tweet/bow/bow.4_16.tst | a489bc2b9fd7c55e2d526f0ca6aebdacaf1bb2b1 | [] | 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 | 39,985 | tst | bow.4_16.tst | 4 8:0.04 17:0.14285714285714285 28:1.0 81:0.125 206:0.25 268:0.5 402:1.0 488:1.0 761:1.0 762:1.0 880:1.0 990:1.0 1446:0.3333333333333333 1447:1.0 1620:1.0 2088:1.0 2330:1.0 2607:0.5 3090:1.0 3091:1.0 3553:1.0
4 8:0.08 14:2.0 31:0.6 37:0.09090909090909091 54:0.3333333333333333 58:0.08333333333333333 95:0.3333333333333333 127:1.0 164:1.0 184:1.0 201:0.3333333333333333 202:2.0 295:0.5 296:1.0 332:1.0 482:1.0 537:1.0 542:1.0 548:0.06666666666666667 691:0.25 726:1.0 727:1.0 898:0.05263157894736842 1113:1.0 1340:1.0 1610:1.0 1644:1.0 1898:1.0 2606:1.0 2607:0.5 2734:1.0 2756:1.0 4320:1.0
4 8:0.04 14:1.0 21:0.5 27:0.010752688172043012 31:0.4 45:0.5 58:0.08333333333333333 65:0.3333333333333333 81:0.125 107:0.5 115:1.0 127:1.0 196:1.0 234:1.0 524:1.0 548:0.06666666666666667 726:1.0 898:0.05263157894736842 958:1.0 989:1.0 1090:1.0 1151:1.0 1644:2.0 2191:1.0 4870:1.0
4 1:0.043478260869565216 31:0.2 45:0.5 54:0.3333333333333333 65:0.3333333333333333 88:0.2 99:1.0 129:0.5 134:0.3333333333333333 175:1.0 259:0.2 285:1.0 300:2.0 439:0.5 448:1.0 462:1.0 537:1.0 548:0.06666666666666667 728:1.0 798:1.0 866:1.0 989:1.0 1151:1.0 1241:1.0 1341:1.0 2117:1.0 3221:1.0 3261:1.0 3484:1.0 6084:1.0 6105:1.0
4 7:0.125 8:0.04 14:1.0 30:1.0 31:0.4 32:0.3333333333333333 45:0.5 58:0.08333333333333333 65:0.3333333333333333 144:0.2 184:1.0 281:0.5 312:0.3333333333333333 417:0.3333333333333333 437:0.5 499:1.0 500:1.0 610:1.0 741:1.0 1003:1.0 1141:1.0 1298:1.0 1494:1.0 1569:1.0 1573:1.0 1761:1.0 1775:1.0 1810:0.3333333333333333 1815:1.0
4 8:0.12 14:1.0 17:0.14285714285714285 27:0.010752688172043012 31:0.6 88:0.2 123:1.0 129:0.5 133:0.3333333333333333 134:0.3333333333333333 153:0.3333333333333333 161:1.0 164:1.0 175:1.0 255:1.0 259:0.4 281:2.0 285:1.0 287:1.0 288:1.0 300:2.0 453:1.0 462:1.0 490:1.0 491:1.0 497:1.0 501:0.5 576:1.0 593:0.5 742:1.0 743:1.0 789:1.0 798:1.0 1064:1.0 1079:1.0 1143:1.0 1387:1.0 1549:0.3333333333333333 2323:1.0 2546:1.0 2607:0.5 2874:1.0 2875:1.0 2959:1.0 3261:1.0 6084:1.0
4 8:0.04 14:1.0 17:0.2857142857142857 27:0.010752688172043012 31:0.6 37:0.09090909090909091 45:0.5 88:0.2 129:0.5 174:0.08333333333333333 175:1.0 239:0.2 259:0.4 285:1.0 300:3.0 462:1.0 798:1.0 870:1.0 1054:1.0 1242:1.0 1421:1.0 1428:1.0 1664:1.0 1848:1.0 2164:1.0 2222:1.0 2388:1.0 3261:1.0 3291:1.0 4971:0.5
4 7:0.125 8:0.08 21:1.0 22:0.2 30:1.0 31:0.4 58:0.08333333333333333 99:0.5 107:1.0 116:0.5 129:0.5 131:1.0 133:0.3333333333333333 144:0.2 145:0.2 164:1.0 169:0.3333333333333333 174:0.08333333333333333 219:1.0 259:1.0 281:0.5 312:0.3333333333333333 377:1.0 437:0.5 499:1.0 500:1.0 528:0.5 551:0.5 610:1.0 888:1.0 889:3.0 927:1.0 980:1.0 992:3.0 1432:1.0 1494:1.0 1573:1.0 1775:1.0 1810:0.3333333333333333 2328:1.0 3246:1.0 3253:1.0 5825:1.0
4 1:0.043478260869565216 8:0.08 12:1.0 14:1.0 22:0.2 31:0.4 45:1.0 50:0.25 58:0.16666666666666666 88:0.2 95:0.3333333333333333 96:1.0 129:0.5 134:0.3333333333333333 142:1.0 144:0.2 162:1.0 175:1.0 193:0.1 259:0.2 285:1.0 291:1.0 295:0.5 296:1.0 300:2.0 342:1.0 437:0.5 439:0.5 462:1.0 798:1.0 870:1.0 1087:0.5 1201:1.0 1245:1.0 1704:1.0 1783:1.0 1931:1.0 2218:1.0 2297:1.0 2607:0.5 2638:1.0 2801:1.0 2874:1.0 2875:1.0 3261:1.0 6084:1.0 6678:1.0
4 1:0.043478260869565216 8:0.08 14:1.0 22:0.2 31:0.4 41:0.5 45:1.0 58:0.08333333333333333 61:0.09090909090909091 84:1.0 88:0.2 95:0.16666666666666666 96:1.0 129:0.5 134:0.3333333333333333 174:0.08333333333333333 175:1.0 187:0.5 188:1.0 214:1.0 216:1.0 234:1.0 235:1.0 259:0.4 285:1.0 295:0.5 300:2.0 342:1.0 437:0.5 453:1.0 462:1.0 798:1.0 954:0.5 1072:1.0 1148:1.0 1201:1.0 1704:1.0 1783:1.0 2218:1.0 2297:1.0 2607:0.5 3209:1.0 3261:1.0 6084:1.0 6105:1.0
4 1:0.043478260869565216 8:0.08 14:1.0 17:0.14285714285714285 21:0.5 24:0.5 27:0.010752688172043012 28:1.0 107:0.5 134:0.3333333333333333 141:1.0 142:1.0 144:0.2 168:1.0 172:1.0 201:0.3333333333333333 281:1.0 291:1.0 333:1.0 338:1.0 433:1.0 446:1.0 496:1.0 499:1.0 517:1.0 523:0.5 653:0.5 654:1.0 769:1.0 829:1.0 1070:1.0 1255:1.0 1439:1.0 1810:0.3333333333333333 1815:1.0 1947:1.0
4 1:0.043478260869565216 6:1.0 8:0.08 27:0.010752688172043012 30:1.0 45:1.5 46:1.0 51:0.5 58:0.16666666666666666 91:1.0 137:1.0 153:0.3333333333333333 169:0.3333333333333333 234:1.0 259:0.2 280:1.0 281:0.5 282:1.0 287:1.0 288:1.0 355:1.0 464:1.0 502:1.0 538:0.5 630:1.0 686:1.0 733:1.0 742:1.0 954:0.5 1102:1.0 1628:1.0 1632:1.0 2607:0.5 2709:1.0
4 8:0.08 14:1.0 24:0.5 27:0.010752688172043012 31:0.2 37:0.09090909090909091 45:1.0 88:0.2 133:0.3333333333333333 139:0.5 145:0.2 155:1.0 162:0.5 172:1.0 268:0.5 275:1.0 291:1.0 304:1.0 306:1.0 332:1.0 422:1.0 433:1.0 514:1.0 596:1.0 697:0.5 699:0.25 800:1.0 861:1.0 877:1.0 919:0.5 1856:1.0 1979:1.0 2451:1.0 2523:1.0 2530:1.0 2607:0.5 4398:1.0 5287:1.0
4 1:0.043478260869565216 8:0.12 14:1.0 21:0.5 26:1.0 27:0.010752688172043012 31:0.2 45:0.5 129:0.5 134:0.3333333333333333 175:1.0 196:1.0 259:0.2 285:1.0 300:2.0 312:0.3333333333333333 328:0.1111111111111111 439:0.5 462:1.0 798:1.0 819:1.0 1065:0.25 1102:1.0 1484:1.0 2124:1.0 2260:1.0 2478:1.0 2607:0.5 2661:1.0 2857:1.0 2874:1.0 2903:0.5 3261:1.0 3336:1.0 6084:1.0 6678:1.0
4 1:0.08695652173913043 8:0.08 14:3.0 22:0.4 27:0.010752688172043012 31:0.2 45:0.5 65:0.3333333333333333 69:0.5 77:0.5 123:1.0 129:0.5 130:0.5 134:0.3333333333333333 138:1.0 152:1.0 162:0.5 175:1.0 184:1.0 193:0.25 197:1.0 204:1.0 205:1.0 212:0.3333333333333333 259:0.2 285:2.0 300:2.0 301:1.0 375:1.0 409:0.3333333333333333 433:1.0 439:0.5 448:1.0 449:1.0 453:1.0 462:1.0 514:1.0 667:1.0 741:1.0 745:1.0 798:1.0 849:1.0 1065:0.25 1113:0.5 2874:1.0 3261:1.0 3264:1.0 3265:1.0 3336:1.0 6084:1.0
4 1:0.043478260869565216 8:0.12 14:1.0 17:0.14285714285714285 27:0.010752688172043012 31:0.4 32:0.3333333333333333 36:1.0 45:1.0 65:0.3333333333333333 75:1.0 99:0.5 115:1.0 144:0.2 145:0.2 162:0.5 174:0.08333333333333333 200:1.0 202:1.0 239:0.2 259:0.2 312:0.3333333333333333 346:0.5 391:1.0 462:1.0 573:1.0 657:1.0 846:1.0 1054:1.0 1064:1.0 1220:1.0 1564:1.0 1777:0.5 1801:1.0 1811:1.0 2347:1.0 2676:1.0 3037:1.0 3261:2.0 3272:1.0
4 7:0.125 8:0.12 31:0.6 44:0.3333333333333333 45:1.5 58:0.16666666666666666 84:1.0 111:1.0 123:1.0 133:0.3333333333333333 155:1.0 162:1.0 181:0.07692307692307693 184:1.0 190:1.0 218:1.0 234:1.0 259:0.2 263:1.0 268:0.5 288:1.0 317:1.0 335:1.0 338:1.0 344:1.0 446:1.0 451:0.5 677:1.0 800:1.0 853:1.0 876:0.5 937:2.0 1220:1.0 1392:1.0 1405:1.0 1616:1.0 1777:0.5 2106:1.0
4 7:0.125 14:3.0 17:0.2857142857142857 21:0.5 37:0.09090909090909091 45:0.5 58:0.08333333333333333 88:0.2 145:0.2 146:1.0 160:1.0 164:1.0 169:0.3333333333333333 175:1.0 212:0.3333333333333333 232:1.0 259:0.2 266:1.0 281:0.5 285:1.0 342:1.0 373:1.0 377:1.0 391:1.0 495:1.0 496:1.0 537:1.0 699:0.25 847:1.0 988:1.0 1065:0.25 1123:1.0 1126:1.0 1203:1.0 1278:1.0 1382:1.0 1478:1.0 1519:1.0 1669:1.0 2996:1.0 3276:1.0 3277:1.0
4 1:0.043478260869565216 7:0.25 24:1.0 27:0.010752688172043012 30:1.0 31:0.2 45:1.0 58:0.25 137:1.0 144:0.2 148:1.0 150:0.5 169:0.3333333333333333 174:0.08333333333333333 175:1.0 232:1.0 259:0.4 363:1.0 364:1.0 422:1.0 437:0.5 667:1.0 686:1.0 1012:0.5 1773:1.0 2294:1.0 2607:0.5
4 7:0.25 8:0.24 12:1.0 14:1.0 17:0.14285714285714285 27:0.021505376344086023 31:0.4 37:0.09090909090909091 54:0.3333333333333333 81:0.125 86:0.5 134:0.3333333333333333 141:1.0 142:1.0 144:0.2 145:0.2 162:0.5 174:0.08333333333333333 181:0.07692307692307693 182:1.0 184:1.0 237:1.0 259:0.2 281:0.5 305:0.3333333333333333 319:1.0 374:1.0 391:1.0 404:1.0 499:1.0 500:1.0 501:0.5 653:0.5 688:1.0 980:1.0 1149:1.0 1369:1.0 1519:1.0 1808:1.0 1815:1.0 2093:1.0 2095:1.0 2260:1.0 2388:1.0 2607:0.5 2845:1.0 2846:1.0 2851:1.0 3209:1.0 3329:1.0 6933:1.0
4 14:1.0 45:2.0 51:1.0 99:0.5 130:0.5 134:0.3333333333333333 141:1.0 153:0.3333333333333333 174:0.08333333333333333 197:1.0 259:0.2 281:1.0 282:1.0 285:2.0 286:1.0 287:1.0 288:1.0 291:1.0 373:1.0 519:1.0 742:1.0 1719:1.0 1777:0.5 2910:1.0 6390:1.0
4 8:0.08 14:1.0 17:0.2857142857142857 24:0.5 31:0.2 45:0.5 58:0.08333333333333333 59:1.0 116:0.5 134:0.3333333333333333 139:0.5 145:0.2 169:0.3333333333333333 291:1.0 301:1.0 391:2.0 404:1.0 420:0.5 421:1.0 422:1.0 519:1.0 604:1.0 632:1.0 1070:1.0 1618:1.0 1815:1.0 1816:1.0 1923:1.0 2362:1.0 3442:1.0 3500:1.0 4017:1.0
4 8:0.04 17:0.2857142857142857 21:0.5 31:0.6 45:1.0 58:0.08333333333333333 84:1.0 86:0.5 115:1.0 164:1.0 187:0.5 188:1.0 234:1.0 252:0.5 259:0.2 261:1.0 321:0.3333333333333333 322:1.0 326:0.5 425:0.3333333333333333 581:1.0 634:1.0 750:1.0 765:1.0 846:1.0 952:0.5 988:1.0 1492:1.0 2658:1.0 3500:1.0
4 8:0.12 14:1.0 17:0.14285714285714285 27:0.010752688172043012 31:0.4 32:0.3333333333333333 37:0.09090909090909091 45:0.5 58:0.16666666666666666 88:0.2 123:1.0 139:0.5 145:0.2 202:2.0 227:1.0 263:1.0 281:1.0 285:1.0 295:0.5 373:1.0 391:1.0 401:1.0 404:1.0 448:1.0 453:1.0 489:1.0 980:1.0 1012:0.5 1280:1.0 1545:1.0 2564:1.0 5177:1.0
4 1:0.043478260869565216 8:0.24 17:0.14285714285714285 21:0.5 22:0.2 24:0.5 27:0.010752688172043012 31:0.6 45:0.5 58:0.08333333333333333 129:0.5 130:0.5 137:1.0 141:1.0 142:1.0 144:0.2 145:0.2 259:0.4 285:1.0 295:0.5 301:1.0 373:1.0 377:1.0 437:0.5 458:1.0 523:0.5 632:1.0 688:1.0 767:1.0 845:0.5 900:0.5 1095:1.0 1497:1.0 1519:1.0 1520:1.0 1664:1.0 2240:1.0 2733:1.0 2851:1.0 2874:1.0 2875:1.0
4 8:0.04 12:1.0 14:1.0 17:0.14285714285714285 45:1.0 61:0.09090909090909091 128:0.25 129:1.0 145:0.2 174:0.08333333333333333 202:1.0 304:1.0 420:0.5 475:1.0 489:1.0 900:0.5 954:0.5 1053:1.0 1387:1.0 1413:1.0 3102:1.0 3751:1.0
4 24:0.5 31:0.2 58:0.08333333333333333 101:1.0 123:1.0 139:0.5 259:0.2 266:1.0 275:1.0 293:1.0 301:1.0 373:1.0 475:1.0 490:1.0 491:1.0 492:1.0 501:0.5 642:1.0 718:1.0 742:1.0 1225:1.0 1230:1.0
4 7:0.125 8:0.08 14:1.0 17:0.2857142857142857 22:0.2 23:0.25 31:0.4 58:0.08333333333333333 69:0.5 88:0.2 99:0.5 145:0.2 154:1.0 162:0.5 169:0.3333333333333333 178:1.0 239:0.2 240:1.0 259:0.2 268:0.5 285:1.0 391:1.0 404:1.0 632:1.0 634:1.0 803:1.0 1135:1.0 1256:1.0 1519:1.0 3149:1.0
4 8:0.16 17:0.2857142857142857 21:1.0 24:0.5 30:1.0 31:0.2 45:2.0 58:0.16666666666666666 88:0.2 99:0.5 101:1.0 123:1.0 130:0.5 134:0.3333333333333333 141:1.0 142:1.0 161:1.0 169:0.3333333333333333 187:0.5 193:0.1 204:1.0 409:0.3333333333333333 445:2.0 477:1.0 482:2.0 507:0.5 514:1.0 532:1.0 600:0.1111111111111111 604:1.0 686:1.0 691:0.25 718:1.0 726:1.0 788:1.0 798:1.0 902:1.0 930:1.0 1050:0.2222222222222222 1054:1.0 1113:0.5 1259:1.0 1427:1.0 1502:1.0 2240:1.0 2787:1.0 3864:1.0 4870:1.0 6920:1.0
4 8:0.08 12:2.0 17:0.14285714285714285 21:0.5 22:0.2 23:0.25 27:0.021505376344086023 31:0.6 37:0.09090909090909091 45:0.5 58:0.08333333333333333 88:0.2 94:1.0 99:1.0 145:0.2 175:1.0 178:1.0 346:0.5 507:0.5 576:1.0 954:0.5 956:0.2 988:1.0 1089:1.0 1257:0.3333333333333333 1490:1.0 1772:1.0 3121:1.0 3122:1.0 3123:1.0 3125:1.0 3300:1.0 3669:1.0 4963:1.0
4 8:0.08 12:1.0 14:1.0 21:1.5 31:0.2 45:0.5 54:0.3333333333333333 88:0.2 99:0.5 115:1.0 123:1.0 142:1.0 174:0.08333333333333333 196:1.0 259:0.2 298:0.5 328:0.1111111111111111 332:1.0 339:1.0 438:1.0 556:1.0 576:1.0 589:1.0 805:1.0 870:1.0 988:1.0 1040:1.0 1330:1.0 1496:1.0 1632:1.0 2709:1.0 2857:1.0 2911:1.0 3095:1.0 3133:1.0 3134:1.0 3135:1.0 6188:1.0 6598:1.0
4 8:0.04 14:1.0 17:0.14285714285714285 21:0.5 23:0.25 27:0.010752688172043012 31:0.4 45:1.0 54:0.3333333333333333 58:0.08333333333333333 61:0.09090909090909091 86:0.5 130:0.5 164:1.0 189:0.5 193:0.1 226:1.0 260:1.0 295:0.5 298:0.5 312:0.3333333333333333 350:1.0 439:0.5 699:0.25 870:1.0 975:1.0 1113:0.5 1176:1.0 1227:2.0 1548:1.0 2606:1.0 2785:1.0 2972:1.0 3090:1.0 3091:1.0 3260:1.0 3262:1.0 4261:1.0 5954:1.0 6407:1.0
4 1:0.043478260869565216 17:0.2857142857142857 23:0.25 27:0.010752688172043012 31:0.6 40:0.5 45:1.0 51:0.5 55:1.0 58:0.16666666666666666 88:0.4 123:1.0 131:1.0 134:0.3333333333333333 154:1.0 161:1.0 164:3.0 178:1.0 259:0.4 266:1.0 281:1.5 285:1.0 346:0.5 400:1.0 433:1.0 518:1.0 573:1.0 576:1.0 609:1.0 811:1.0 988:1.0 1040:1.0 1064:1.0 1083:1.0 1126:1.0 1150:1.0 1588:1.0 1649:1.0 1962:1.0 2310:1.0 2323:1.0 2959:1.0 3278:1.0
4 6:1.0 8:0.04 12:1.0 14:1.0 17:0.14285714285714285 31:0.4 37:0.09090909090909091 45:1.5 81:0.125 88:0.2 115:1.0 142:1.0 161:1.0 212:0.3333333333333333 282:1.0 604:1.0 659:1.0 699:0.25 737:1.0 965:1.0 1053:1.0 1174:1.0 1854:1.0 2031:1.0 2357:0.5 2750:1.0
4 6:1.0 7:0.125 8:0.04 14:1.0 17:0.5714285714285714 24:0.5 27:0.010752688172043012 31:0.2 37:0.09090909090909091 88:0.2 95:0.16666666666666666 115:1.0 134:0.3333333333333333 162:0.5 167:1.0 188:1.0 189:0.5 193:0.05 196:1.0 202:1.0 300:2.0 302:1.0 330:1.0 437:0.5 438:1.0 528:0.5 699:0.25 827:1.0 860:1.0 965:1.0 975:1.0 1239:1.0 1439:1.0 1757:1.0 4681:1.0
4 8:0.08 14:1.0 17:0.2857142857142857 27:0.010752688172043012 31:0.2 65:0.3333333333333333 88:0.2 142:1.0 206:0.25 212:0.3333333333333333 268:0.5 312:0.3333333333333333 404:1.0 423:1.0 438:1.0 1039:1.0 1145:0.25 1255:1.0 1256:1.0 1538:1.0 2088:1.0 2090:1.0 4681:1.0
4 1:0.043478260869565216 14:1.0 17:0.14285714285714285 24:0.5 27:0.010752688172043012 45:1.5 58:0.08333333333333333 99:0.5 134:0.3333333333333333 142:2.0 145:0.2 146:1.0 204:1.0 259:0.2 281:1.0 282:1.0 382:1.0 437:0.5 443:1.0 445:1.0 489:1.0 490:1.0 491:1.0 492:1.0 493:1.0 837:1.0 1102:1.0 1141:1.0 1145:0.25 1255:1.0 1256:1.0 1382:1.0 1550:1.0 2261:1.0 2584:1.0
4 1:0.043478260869565216 8:0.08 17:0.14285714285714285 23:0.25 24:0.5 27:0.010752688172043012 44:0.3333333333333333 51:1.5 65:0.3333333333333333 88:0.2 162:2.5 211:0.2 234:1.0 312:0.3333333333333333 317:1.0 352:1.0 508:1.0 553:1.0 764:1.0 908:1.0 988:1.0 1039:1.0 1102:3.0 1261:1.0 2338:1.0 2501:1.0 2954:2.0
4 8:0.16 12:1.0 17:0.14285714285714285 21:1.0 27:0.03225806451612903 31:0.2 32:0.3333333333333333 37:0.18181818181818182 45:1.0 54:0.3333333333333333 134:0.3333333333333333 178:1.0 184:1.0 189:0.5 226:1.0 232:1.0 440:1.0 840:1.0 841:1.0 911:1.0 919:0.5 1088:2.0 1545:1.0 1652:1.0 3071:1.0 3421:1.0 4885:2.0
4 1:0.043478260869565216 6:2.0 8:0.08 14:1.0 27:0.021505376344086023 28:1.0 30:1.0 32:0.3333333333333333 44:0.3333333333333333 45:3.0 58:0.3333333333333333 84:1.0 91:1.0 95:0.16666666666666666 116:0.5 123:1.0 128:0.25 139:0.5 144:0.2 162:0.5 166:1.0 211:0.2 212:0.3333333333333333 234:1.0 237:1.0 262:0.5 281:1.0 282:1.0 317:1.0 338:1.0 342:1.0 344:1.0 446:1.0 454:1.0 494:1.0 496:1.0 637:1.0 653:0.5 847:1.0 954:0.5 980:1.0 1070:1.0 1298:1.0 1405:1.0 1455:1.0 1734:1.0 2557:1.0 4407:1.0
4 1:0.043478260869565216 2:0.5 8:0.08 12:1.0 14:1.0 17:0.14285714285714285 24:0.5 27:0.010752688172043012 45:1.0 88:0.2 115:1.0 123:2.0 139:0.5 190:1.0 193:0.05 228:1.0 259:0.2 275:1.0 281:0.5 342:1.0 346:1.0 489:1.0 866:2.0 867:1.0 970:1.0 1054:1.0 1151:1.0 1256:1.0 1368:1.0 1420:1.0 1487:2.0 1649:1.0 1668:1.0 2029:1.0 2065:1.0 2722:2.0 2723:1.0 2996:1.0
4 3:1.0 6:1.0 7:0.25 8:0.16 14:2.0 17:0.14285714285714285 19:1.0 21:1.5 27:0.010752688172043012 37:0.18181818181818182 45:0.5 50:0.25 95:0.16666666666666666 114:1.0 115:1.0 134:0.3333333333333333 154:1.0 155:1.0 156:1.0 157:1.0 184:1.0 204:1.0 232:1.0 237:1.0 310:1.0 333:2.0 417:0.3333333333333333 440:1.0 502:1.0 628:1.0 667:1.0 675:1.0 840:1.0 1088:2.0 1113:0.5 2031:1.0 2051:1.0 2095:1.0 2732:1.0 2733:1.0 2734:1.0 3237:1.0 3278:1.0 7007:1.0
4 1:0.08695652173913043 17:0.14285714285714285 27:0.021505376344086023 45:0.5 50:0.25 51:0.5 58:0.16666666666666666 61:0.09090909090909091 81:0.125 88:0.2 95:0.5 206:0.25 268:0.5 344:1.0 440:1.0 710:1.0 726:1.0 1050:0.1111111111111111 1064:1.0 1143:1.0 1549:0.3333333333333333 1566:1.0 2011:1.0 2044:1.0 2088:1.0 2243:1.0 2244:1.0 2245:1.0 2254:1.0 2255:1.0 2984:1.0
4 1:0.08695652173913043 7:0.125 14:2.0 27:0.021505376344086023 37:0.09090909090909091 45:0.5 50:0.25 88:0.2 95:0.16666666666666666 123:1.0 142:1.0 187:0.5 188:1.0 212:0.3333333333333333 259:0.2 295:0.5 355:1.0 382:1.0 486:0.5 553:1.0 554:1.0 555:1.0 622:1.0 631:1.0 649:1.0 805:1.0 877:1.0 1054:1.0 1071:1.0 1177:1.0 1245:1.0 1262:1.0 2044:1.0 2210:1.0 2255:1.0 2341:1.0 2617:1.0
4 7:0.25 8:0.24 21:0.5 31:0.2 37:0.09090909090909091 45:0.5 65:0.3333333333333333 123:1.0 134:0.3333333333333333 169:0.3333333333333333 186:1.0 190:1.0 226:1.0 266:1.0 277:1.0 278:1.0 280:1.0 367:1.0 438:1.0 486:0.5 497:1.0 501:0.5 507:0.5 519:1.0 610:1.0 710:1.0 800:1.0 850:1.0 987:0.5 1071:1.0 1089:1.0 1149:1.0 1841:1.0 2244:1.0 2252:1.0 2709:1.0 2922:1.0 5912:1.0 6020:1.0
4 1:0.08695652173913043 7:0.125 8:0.12 14:2.0 17:0.7142857142857143 27:0.021505376344086023 31:0.4 37:0.09090909090909091 50:0.25 93:5.0 95:0.3333333333333333 99:2.0 123:1.0 127:2.0 129:2.5 152:1.0 162:0.5 174:0.16666666666666666 184:1.0 193:0.05 218:1.0 259:0.2 267:0.5 483:1.0 537:1.0 700:2.0 726:2.0 841:1.0 891:1.0 1231:1.0 1305:1.0 1341:1.0 1424:0.25 1996:1.0 2255:1.0 2278:1.0 2924:1.0 3261:1.0 4223:1.0 5998:1.0
4 6:1.0 7:0.125 8:0.08 17:0.14285714285714285 31:0.4 37:0.09090909090909091 44:0.3333333333333333 45:1.5 50:0.25 52:2.0 58:0.25 59:1.0 88:0.2 95:0.16666666666666666 115:1.0 116:0.5 123:1.0 130:0.5 142:2.0 155:1.0 162:1.0 169:0.3333333333333333 193:0.05 203:1.0 259:0.2 266:2.0 273:0.5 274:1.0 275:1.0 295:0.5 363:1.0 437:0.5 576:1.0 649:1.0 653:0.5 960:1.0 1021:1.0 1030:1.0 1054:1.0 1123:1.0 1275:1.0 1405:1.0 1560:0.5 1664:1.0 1704:1.0 1734:1.0 1920:1.0 1962:1.0 2518:1.0 3260:1.0 3488:1.0
4 2:0.5 7:0.125 8:0.12 17:0.2857142857142857 31:0.6 37:0.09090909090909091 45:1.0 58:0.08333333333333333 86:0.5 88:0.2 93:1.0 99:0.5 123:3.0 237:1.0 281:1.0 295:0.5 332:1.0 404:1.0 409:0.3333333333333333 433:1.0 437:0.5 448:2.0 519:1.0 710:1.0 980:2.0 986:1.0 1123:2.0 1315:1.0 1476:1.0 1808:1.0 2077:1.0 2244:1.0 2661:1.0 2899:1.0 2969:1.0 3001:1.0 3278:1.0
4 1:0.043478260869565216 8:0.04 14:1.0 17:0.14285714285714285 21:1.0 24:0.5 27:0.021505376344086023 31:0.2 37:0.09090909090909091 45:0.5 88:0.2 232:1.0 268:0.5 289:1.0 363:1.0 404:1.0 508:2.0 649:1.0 697:0.5 976:2.0 1065:0.5 1089:1.0 1456:1.0 2261:1.0 2573:1.0 2942:2.0 3263:1.0
4 1:0.043478260869565216 8:0.04 14:2.0 24:1.0 27:0.021505376344086023 31:0.2 37:0.09090909090909091 45:1.5 58:0.08333333333333333 88:0.2 95:0.16666666666666666 99:0.5 101:1.0 115:1.0 142:1.0 162:0.5 193:0.1 228:1.0 232:1.0 259:0.4 346:0.5 363:1.0 364:1.0 417:0.3333333333333333 433:1.0 528:0.5 651:1.0 653:0.5 845:0.5 877:1.0 970:1.0 971:1.0 1089:1.0 1123:2.0 1201:1.0 1212:1.0 1234:1.0 1309:1.0 1315:1.0 1487:1.0 1649:1.0 1839:1.0 2065:1.0 2294:1.0 2722:1.0 2723:1.0 3009:1.0 3063:1.0 3324:1.0 3968:1.0 4216:1.0
4 7:0.125 8:0.16 17:0.14285714285714285 26:1.0 45:0.5 61:0.09090909090909091 69:0.5 81:0.125 88:0.2 101:1.0 154:1.0 155:2.0 193:0.05 204:1.0 205:1.0 239:0.4 295:0.5 327:1.0 483:1.0 522:1.0 576:1.0 830:1.0 834:1.0 861:1.0 869:1.0 970:1.0 1146:1.0 1460:1.0 1461:1.0 1462:1.0 1463:1.0 2031:1.0 2177:1.0 2709:1.0 2732:1.0 2736:1.0 3607:1.0
4 8:0.04 14:1.0 17:0.14285714285714285 24:0.5 26:1.0 27:0.010752688172043012 31:0.6 37:0.18181818181818182 58:0.16666666666666666 95:0.16666666666666666 134:0.3333333333333333 142:1.0 145:0.2 162:0.5 181:0.07692307692307693 182:1.0 188:1.0 189:0.5 193:0.15 300:2.0 302:1.0 328:0.1111111111111111 337:1.0 374:1.0 377:1.0 483:1.0 827:1.0 860:1.0 1143:1.0 1201:1.0 1427:1.0 1545:1.0 1789:1.0 1864:1.0 1939:1.0 2763:1.0
4 7:0.125 14:2.0 17:0.14285714285714285 23:0.25 24:0.5 26:1.0 27:0.021505376344086023 31:0.4 37:0.18181818181818182 45:1.0 58:0.08333333333333333 95:0.16666666666666666 123:1.0 141:1.0 181:0.07692307692307693 182:1.0 193:0.05 332:1.0 374:1.0 437:0.5 826:0.1111111111111111 877:1.0 919:0.5 1131:0.5 1545:1.0 1652:1.0 1745:1.0 2078:1.0 2354:1.0 2628:1.0 2913:1.0 3085:1.0 3283:1.0 3329:1.0 3387:1.0 4208:1.0 5215:1.0
4 7:0.125 14:1.0 17:0.14285714285714285 21:0.5 23:0.25 24:1.0 31:0.6 32:0.3333333333333333 44:0.3333333333333333 45:0.5 50:0.25 58:0.25 81:0.125 131:1.0 137:2.0 139:0.5 142:1.0 239:0.2 266:1.0 281:0.5 285:1.0 420:0.5 494:1.0 501:1.0 593:0.5 686:1.0 687:1.0 688:2.0 689:2.0 728:1.0 742:1.0 988:1.0 1241:1.0 1291:1.0 1613:1.0 2050:1.0 2482:1.0 2886:1.0 3334:1.0 4309:1.0
4 8:0.04 17:0.14285714285714285 21:0.5 27:0.010752688172043012 31:0.2 37:0.18181818181818182 45:0.5 142:1.0 145:0.2 160:1.0 259:0.2 280:1.0 281:1.0 285:1.0 382:1.0 423:1.0 483:1.0 486:0.5 516:1.0 523:0.5 634:1.0 827:1.0 838:1.0 847:1.0 1124:1.0 1219:0.5 1244:1.0 1484:1.0 2235:2.0 2903:0.5
4 7:0.25 8:0.08 14:1.0 17:0.14285714285714285 21:1.0 22:0.2 31:0.2 45:1.5 46:1.0 58:0.08333333333333333 99:0.5 128:0.25 130:0.5 142:1.0 145:0.2 146:1.0 162:0.5 190:1.0 200:1.0 214:1.0 232:1.0 239:0.2 259:0.8 260:2.0 281:0.5 282:1.0 293:1.0 295:0.5 311:1.0 328:0.1111111111111111 342:1.0 363:1.0 404:1.0 446:1.0 494:1.0 495:1.0 630:1.0 988:1.0 992:1.0 1021:1.0 1065:0.25 1070:1.0 1483:1.0 1586:1.0 1611:0.5 1754:1.0 1925:1.0 2261:1.0 2797:1.0 3009:1.0 3041:1.0 3263:1.0 3456:1.0 3620:1.0 3858:1.0 3904:1.0
4 8:0.12 22:0.2 31:0.2 37:0.09090909090909091 41:0.5 45:0.5 65:0.3333333333333333 84:1.0 85:1.0 99:0.5 129:0.5 145:0.2 162:0.5 174:0.08333333333333333 187:0.5 188:1.0 234:1.0 259:0.4 338:1.0 361:1.0 371:1.0 486:0.5 542:2.0 927:1.0 1239:1.0 1569:1.0 1944:1.0 2054:1.0 2055:1.0 2106:1.0 2709:1.0 2987:1.0 3192:1.0
4 7:0.375 8:0.08 27:0.010752688172043012 31:0.2 37:0.18181818181818182 45:1.0 58:0.08333333333333333 60:1.0 65:0.3333333333333333 95:0.3333333333333333 123:1.0 184:1.0 187:0.5 193:0.05 234:1.0 260:1.0 266:1.0 333:2.0 376:1.0 391:1.0 486:0.5 489:1.0 548:0.06666666666666667 663:1.0 675:2.0 699:0.25 962:1.0 1141:1.0 1313:1.0 1708:1.0 2258:1.0 2916:1.0 3419:1.0
4 6:1.0 8:0.12 17:0.14285714285714285 31:0.2 32:0.3333333333333333 37:0.09090909090909091 45:2.0 61:0.09090909090909091 65:0.3333333333333333 81:0.125 84:1.0 88:0.2 90:0.14285714285714285 95:0.16666666666666666 116:1.0 145:0.2 146:1.0 162:0.5 186:1.0 187:0.5 188:1.0 202:1.0 216:1.0 235:1.0 274:1.0 280:1.0 281:0.5 282:1.0 486:0.5 523:0.5 548:0.06666666666666667 576:2.0 653:0.5 908:1.0 909:1.0 911:1.0 1070:1.0 1405:2.0 1455:1.0 1499:1.0 1598:0.5 1734:2.0 2256:1.0 2757:1.0 2844:1.0 3105:1.0
4 8:0.2 14:2.0 17:0.14285714285714285 31:0.6 37:0.09090909090909091 44:0.3333333333333333 45:1.0 54:0.6666666666666666 74:0.5 86:0.5 100:1.0 127:1.0 154:1.0 198:1.0 232:1.0 234:1.0 268:1.0 399:1.0 418:1.0 437:0.5 508:1.0 519:1.0 542:1.0 548:0.13333333333333333 554:1.0 556:1.0 686:1.0 822:0.3333333333333333 926:1.0 1030:1.0 1064:1.0 1065:0.25 1090:1.0 1105:1.0 1418:1.0 1577:1.0 1946:1.0 1947:1.0 1961:1.0 2149:1.0 2329:1.0 2330:1.0 3273:1.0 3279:1.0 3975:1.0
4 7:0.125 8:0.24 14:1.0 17:0.14285714285714285 31:0.2 38:2.0 40:0.5 45:2.5 65:0.3333333333333333 67:1.0 75:1.0 88:0.4 95:0.16666666666666666 164:1.0 184:1.0 233:1.0 234:1.0 259:0.2 268:1.0 285:1.0 288:1.0 298:0.5 304:1.0 355:1.0 382:1.0 453:1.0 454:1.0 542:1.0 548:0.13333333333333333 553:1.0 554:1.0 556:2.0 581:1.0 582:2.0 583:1.0 585:1.0 805:1.0 811:1.0 833:1.0 908:1.0 1154:1.0 1387:1.0 1490:1.0 1499:1.0 1814:1.0 2002:1.0 3244:1.0 3864:1.0
4 7:0.125 8:0.12 12:1.0 14:2.0 21:0.5 23:0.25 27:0.010752688172043012 37:0.18181818181818182 45:1.0 50:0.25 51:1.0 52:1.0 55:1.0 57:1.0 58:0.08333333333333333 59:1.0 60:1.0 81:0.125 101:1.0 134:0.3333333333333333 144:0.2 154:1.0 216:1.0 234:1.0 259:0.4 304:1.0 333:1.0 369:1.0 486:0.5 508:1.0 548:0.06666666666666667 551:0.5 837:1.0 1048:1.0 1505:1.0 1549:0.3333333333333333 1586:1.0 2219:1.0 2346:1.0 2684:1.0 3248:1.0 3414:1.0 4456:1.0 6743:1.0
4 8:0.08 11:1.0 21:1.0 31:0.2 32:0.3333333333333333 37:0.09090909090909091 50:0.25 51:0.5 54:0.3333333333333333 81:0.25 88:0.2 142:1.0 144:0.2 196:1.0 216:1.0 281:0.5 312:0.3333333333333333 337:1.0 342:2.0 353:1.0 355:1.0 356:1.0 357:1.0 369:1.0 486:0.5 538:0.5 548:0.06666666666666667 551:0.5 573:1.0 1405:1.0 1418:1.0 1597:1.0 1614:1.0 1641:1.0 2060:1.0 2288:1.0 2291:1.0 2433:1.0 5082:1.0 5366:1.0
4 1:0.043478260869565216 14:1.0 17:0.14285714285714285 27:0.010752688172043012 37:0.09090909090909091 45:1.0 51:0.5 61:0.09090909090909091 75:1.0 81:0.125 86:0.5 88:0.4 144:0.2 154:1.0 155:1.0 169:0.3333333333333333 233:1.0 234:1.0 317:1.0 350:1.0 351:1.0 353:1.0 446:1.0 449:1.0 486:0.5 548:0.06666666666666667 556:1.0 653:0.5 654:1.0 655:1.0 657:1.0 658:1.0 1189:0.5 1972:1.0 1978:1.0 2394:1.0 3484:1.0
4 7:0.125 8:0.08 14:1.0 17:0.2857142857142857 21:1.0 27:0.010752688172043012 37:0.18181818181818182 45:1.0 46:1.0 86:0.5 95:0.16666666666666666 99:0.5 115:1.0 122:0.5 123:1.0 124:1.0 125:1.0 126:1.0 127:1.0 128:0.25 129:0.5 130:0.5 131:1.0 132:1.0 133:0.3333333333333333 134:0.6666666666666666 135:1.0 155:1.0 174:0.08333333333333333 200:1.0 234:1.0 281:0.5 285:1.0 293:1.0 317:1.0 318:1.0 319:1.0 320:1.0 373:1.0 486:0.5 495:1.0 729:1.0 1454:1.0 2844:1.0
4 1:0.08695652173913043 8:0.04 14:3.0 21:1.0 27:0.021505376344086023 31:1.0 45:1.5 50:0.5 58:0.08333333333333333 88:0.2 95:0.16666666666666666 122:0.5 187:1.0 193:0.05 239:0.2 250:1.0 259:0.4 260:1.0 281:0.5 437:0.5 453:1.0 669:1.0 670:1.0 671:1.0 672:1.0 827:2.0 900:0.5 949:2.0 1065:0.5 1235:1.0 1664:1.0 1963:1.0 2757:2.0 2962:2.0 3058:1.0 3351:1.0
4 1:0.043478260869565216 7:0.125 17:0.42857142857142855 22:0.4 26:2.0 27:0.010752688172043012 31:0.2 32:0.3333333333333333 37:0.18181818181818182 45:1.0 54:0.3333333333333333 59:1.0 74:0.5 86:0.5 88:0.2 90:0.14285714285714285 101:3.0 112:1.0 113:1.0 115:1.0 122:0.5 123:2.0 129:1.0 134:0.3333333333333333 162:0.5 164:1.0 211:0.2 226:1.0 273:0.5 290:2.0 333:1.0 417:0.3333333333333333 453:1.0 486:0.5 692:1.0 719:1.0 846:1.0 893:1.0 980:1.0 1597:1.0 1659:1.0 1798:1.0 2188:1.0 4446:1.0
4 1:0.043478260869565216 6:2.0 7:0.25 8:0.04 12:1.0 14:1.0 21:0.5 22:0.2 23:0.25 27:0.010752688172043012 37:0.18181818181818182 41:0.5 43:1.0 44:0.3333333333333333 45:2.0 57:1.0 58:0.16666666666666666 81:0.125 84:2.0 93:1.0 95:0.3333333333333333 107:0.5 127:1.0 142:1.0 171:1.0 189:0.5 203:1.0 212:0.3333333333333333 260:1.0 268:0.5 295:0.5 314:1.0 437:0.5 446:1.0 486:0.5 519:1.0 556:1.0 649:1.0 747:1.0 786:1.0 826:0.1111111111111111 839:1.0 847:1.0 1059:0.25 1064:1.0 1146:1.0 1147:1.0 1148:1.0 1577:1.0 2476:1.0 2870:1.0
4 1:0.043478260869565216 3:1.0 8:0.12 14:1.0 17:0.14285714285714285 21:0.5 23:0.25 27:0.021505376344086023 31:0.6 37:0.09090909090909091 45:0.5 48:1.0 65:0.3333333333333333 86:0.5 88:0.2 91:3.0 95:0.5 127:2.0 160:1.0 162:0.5 174:0.08333333333333333 192:0.3333333333333333 193:0.2 198:1.0 259:0.4 273:0.5 274:1.0 281:0.5 300:2.0 312:0.3333333333333333 332:1.0 333:1.0 375:1.0 382:1.0 433:1.0 486:0.5 519:1.0 537:1.0 538:0.5 554:1.0 573:1.0 576:1.0 700:1.0 726:1.0 792:1.0 1010:1.0 1090:1.0 1261:1.0 1290:1.0 1291:1.0 1305:1.0 1341:1.0 1424:0.25 1503:1.0 2006:1.0 2026:1.0 2044:1.0 2310:1.0 2839:1.0 3017:1.0 6055:1.0
4 1:0.08695652173913043 7:0.125 8:0.04 12:1.0 14:2.0 17:0.14285714285714285 22:0.2 27:0.021505376344086023 31:0.2 32:0.3333333333333333 45:0.5 51:0.5 58:0.08333333333333333 65:0.6666666666666666 86:0.5 91:1.0 162:0.5 192:0.3333333333333333 193:0.05 202:1.0 212:0.3333333333333333 259:0.4 266:1.0 273:0.5 291:1.0 381:1.0 446:1.0 519:1.0 537:1.0 653:0.5 654:1.0 695:1.0 699:0.25 733:1.0 791:1.0 813:1.0 911:2.0 987:0.5 1030:1.0 1342:1.0 1439:2.0 2057:1.0 2073:1.0 3168:1.0 3209:1.0 3289:1.0
4 1:0.08695652173913043 2:0.5 7:0.125 8:0.04 12:1.0 17:0.42857142857142855 21:0.5 27:0.021505376344086023 31:0.2 44:0.3333333333333333 45:0.5 58:0.08333333333333333 84:1.0 86:0.5 123:3.0 145:0.2 162:0.5 164:1.0 166:1.0 169:0.3333333333333333 211:0.2 259:0.2 298:0.5 338:1.0 340:1.5 344:1.0 353:1.0 376:2.0 446:1.0 454:1.0 477:1.0 497:1.0 519:1.0 747:1.0 826:0.1111111111111111 1157:2.0 1563:1.0 1599:1.0 1600:1.0 1853:1.0 1900:1.0 1996:1.0 3198:1.0 3288:1.0
4 1:0.043478260869565216 7:0.125 8:0.04 26:1.0 27:0.021505376344086023 31:0.4 37:0.18181818181818182 41:0.5 43:1.0 44:0.3333333333333333 45:0.5 52:1.0 58:0.08333333333333333 92:1.0 95:0.16666666666666666 123:1.0 133:0.3333333333333333 181:0.07692307692307693 182:1.0 196:1.0 205:1.0 206:0.25 263:1.0 266:1.0 268:0.5 335:1.0 374:1.0 375:1.0 376:1.0 377:1.0 486:0.5 631:1.0 649:1.0 907:0.5 962:1.0 1132:0.1 1155:1.0 1177:1.0 1337:1.0 1922:1.0 2088:1.0 2210:1.0 3369:1.0
4 1:0.043478260869565216 2:0.5 7:0.25 8:0.08 14:1.0 22:0.2 27:0.010752688172043012 31:0.2 37:0.09090909090909091 38:1.0 45:1.0 88:0.2 123:3.0 127:1.0 130:0.5 142:1.0 202:2.0 218:1.0 342:1.0 355:1.0 448:1.0 486:0.5 537:1.0 539:1.0 540:1.0 669:1.0 908:1.0 1058:1.0 1090:1.0 1121:0.5 1186:1.0 1620:1.0 1621:1.0 1691:1.0 1711:2.0 1843:1.0 3115:1.0 3211:1.0
4 3:1.0 7:0.125 8:0.32 24:0.5 27:0.010752688172043012 31:0.2 38:1.0 45:1.0 57:1.0 61:0.09090909090909091 65:0.3333333333333333 75:1.0 81:0.125 84:1.0 88:0.2 99:0.5 114:1.0 123:1.0 154:1.0 181:0.07692307692307693 184:2.0 234:3.0 235:1.0 298:0.5 319:1.0 328:0.1111111111111111 333:1.0 437:0.5 453:1.0 465:1.0 556:1.0 576:1.0 581:1.0 582:1.0 651:1.0 717:1.0 733:1.0 747:1.0 837:1.0 861:1.0 862:1.0 863:1.0 864:1.0 866:1.0 867:1.0 1214:1.0 1221:1.0 1417:1.0 1491:1.0 2074:1.0 2739:1.0 2857:1.0
4 1:0.043478260869565216 7:0.125 8:0.2 14:1.0 17:0.14285714285714285 21:0.5 23:0.25 27:0.021505376344086023 31:0.4 37:0.09090909090909091 45:0.5 65:0.3333333333333333 88:0.2 95:0.16666666666666666 101:1.0 106:1.0 107:0.5 174:0.08333333333333333 184:2.0 186:1.0 259:0.4 266:1.0 304:1.0 319:1.0 333:1.0 340:0.5 341:1.0 343:1.0 344:1.0 345:1.0 346:0.5 347:0.5 348:1.0 423:1.0 695:1.0 870:1.0 1143:1.0 1563:1.0 1586:1.0 1610:1.0 1841:1.0 2102:0.5 2388:1.0 4409:1.0 4456:1.0
4 1:0.043478260869565216 7:0.125 8:0.16 14:1.0 22:0.2 25:0.5 32:0.6666666666666666 37:0.09090909090909091 45:1.0 86:0.5 88:0.6 92:1.0 95:0.6666666666666666 101:1.0 144:0.2 161:1.0 218:1.0 259:0.6 281:0.5 304:1.0 486:0.5 537:3.0 551:0.5 573:1.0 608:0.5 1026:1.0 1054:1.0 1065:0.25 1309:1.0 1424:0.25 1846:1.0 1853:1.0 2254:1.0 2757:2.0 3058:1.0
4 1:0.043478260869565216 7:0.25 8:0.04 14:2.0 17:0.14285714285714285 21:1.0 22:0.2 24:0.5 26:2.0 27:0.010752688172043012 32:0.3333333333333333 45:1.0 52:1.0 58:0.08333333333333333 59:1.0 75:1.0 76:1.0 91:1.0 99:1.0 107:0.5 129:1.0 145:0.2 164:1.0 174:0.08333333333333333 178:1.0 184:1.0 192:0.3333333333333333 193:0.05 202:1.0 219:1.0 226:1.0 233:1.0 259:1.4 263:1.0 281:0.5 295:0.5 298:0.5 304:2.0 528:0.5 537:1.0 551:0.5 792:1.0 889:1.0 898:0.05263157894736842 970:1.0 980:1.0 1338:1.0 1424:0.25 1644:1.0 1708:1.0 1719:1.0 1859:1.0 2684:1.0 3355:1.0 5512:1.0
4 6:2.0 8:0.2 21:0.5 22:0.2 24:0.5 31:0.2 32:0.3333333333333333 37:0.09090909090909091 44:0.3333333333333333 45:2.0 58:0.16666666666666666 59:1.0 65:0.3333333333333333 75:1.0 84:3.0 88:0.4 92:1.0 95:0.16666666666666666 115:1.0 116:0.5 129:1.0 142:1.0 144:0.2 162:1.5 192:0.3333333333333333 193:0.05 259:0.4 268:0.5 281:0.5 301:1.0 338:2.0 446:1.0 486:0.5 489:1.0 558:1.0 573:1.0 581:1.0 582:1.0 609:1.0 649:1.0 809:1.0 833:1.0 850:1.0 1026:1.0 1054:1.0 1143:1.0 1424:0.25 1427:1.0 1498:1.0 1783:2.0 1880:0.5 1996:1.0 1997:1.0 2142:2.0 2338:1.0
4 1:0.08695652173913043 6:1.0 7:0.125 8:0.12 14:1.0 21:0.5 23:0.25 27:0.03225806451612903 31:0.2 37:0.09090909090909091 44:0.3333333333333333 45:1.5 51:0.5 54:0.3333333333333333 58:0.08333333333333333 81:0.125 99:0.5 101:1.0 134:0.3333333333333333 164:1.0 184:1.0 193:0.1 234:1.0 312:0.6666666666666666 314:1.0 328:0.1111111111111111 341:1.0 372:0.2 373:1.0 374:1.0 440:1.0 573:1.0 576:1.0 667:1.0 839:1.0 990:1.0 1088:2.0 1090:1.0 1577:1.0 1598:0.5 1691:1.0 1933:1.0 2329:1.0 2330:1.0 4261:1.0
4 6:1.0 7:0.125 8:0.16 17:0.14285714285714285 31:0.2 37:0.09090909090909091 38:1.0 45:0.5 51:0.5 58:0.08333333333333333 59:1.0 60:1.0 88:0.2 90:0.14285714285714285 95:0.3333333333333333 101:1.0 162:0.5 187:0.5 188:1.0 204:1.0 216:1.0 234:1.0 260:1.0 328:0.1111111111111111 355:1.0 382:1.0 433:1.0 453:2.0 582:1.0 599:1.0 653:0.5 717:1.0 747:1.0 900:0.5 929:0.5 1070:1.0 1459:1.0 1460:1.0 1462:1.0 1463:1.0 1478:1.0 3244:1.0 3407:1.0 3620:1.0
4 1:0.043478260869565216 8:0.12 14:1.0 17:0.14285714285714285 22:0.2 26:1.0 27:0.010752688172043012 31:0.8 37:0.09090909090909091 45:1.0 51:0.5 58:0.08333333333333333 81:0.25 95:0.5 99:0.5 133:0.3333333333333333 141:1.0 145:0.2 181:0.07692307692307693 182:1.0 234:1.0 288:1.0 310:1.0 328:0.1111111111111111 374:1.0 376:1.0 377:1.0 555:1.0 692:1.0 752:1.0 761:1.0 962:1.0 1026:1.0 1094:1.0 1219:0.5 1298:1.0 2093:1.0 2301:1.0 3247:1.0 3248:1.0 6320:1.0
4 1:0.043478260869565216 8:0.04 21:0.5 24:0.5 27:0.021505376344086023 28:1.0 31:0.8 51:0.5 58:0.08333333333333333 81:0.25 95:0.16666666666666666 128:0.25 133:0.3333333333333333 137:1.0 162:0.5 178:1.0 181:0.07692307692307693 182:1.0 234:1.0 266:1.0 268:0.5 291:1.0 328:0.1111111111111111 355:1.0 356:1.0 357:1.0 373:1.0 440:1.0 453:1.0 490:1.0 491:1.0 492:1.0 514:1.0 686:1.0 687:1.0 742:1.0 1088:1.0 1143:1.0 1418:1.0 1563:1.0 1957:1.0 2060:1.0
4 1:0.043478260869565216 7:0.25 8:0.08 14:2.0 17:0.14285714285714285 22:0.2 31:0.2 32:0.3333333333333333 45:1.0 58:0.08333333333333333 65:0.3333333333333333 75:1.0 81:0.125 88:0.2 101:1.0 116:0.5 133:0.3333333333333333 134:0.3333333333333333 155:1.0 162:0.5 234:1.0 267:0.5 295:0.5 328:0.1111111111111111 347:0.5 351:1.0 453:1.0 482:1.0 651:1.0 717:1.0 718:1.0 798:1.0 1094:1.0 1143:1.0 1553:1.0 1569:1.0 1597:1.0 1611:0.5 1948:1.0 1978:1.0 2330:1.0 3256:1.0 3257:1.0
4 1:0.043478260869565216 7:0.125 8:0.12 14:1.0 22:0.2 27:0.021505376344086023 31:0.2 32:0.3333333333333333 43:1.0 45:0.5 51:0.5 57:1.0 65:0.3333333333333333 154:1.0 155:1.0 204:1.0 226:1.0 234:2.0 328:0.1111111111111111 371:1.0 443:1.0 453:1.0 485:1.0 524:1.0 717:1.0 818:1.0 837:1.0 1102:1.0 1569:1.0 1597:1.0 2031:1.0 2048:1.0 2049:1.0 2050:1.0 2734:1.0
4 7:0.125 8:0.16 14:1.0 24:0.5 27:0.010752688172043012 34:1.0 35:2.0 37:0.09090909090909091 54:1.0 74:0.5 75:1.0 123:3.0 163:1.0 166:1.0 184:2.0 218:1.0 268:0.5 338:1.0 344:1.0 453:1.0 549:1.0 625:1.0 722:1.0 769:1.0 828:1.0 1708:1.0 2259:1.0
4 8:0.08 9:1.0 12:1.0 14:1.0 27:0.010752688172043012 30:1.0 31:0.4 37:0.09090909090909091 44:0.3333333333333333 45:1.5 58:0.25 81:0.125 84:2.0 88:0.2 92:1.0 101:1.0 123:1.0 129:0.5 139:1.0 144:0.2 145:0.2 146:1.0 184:1.0 188:1.0 202:2.0 235:1.0 243:1.0 301:1.0 307:1.0 376:1.0 453:1.0 581:1.0 729:1.0 790:1.0 791:1.0 952:0.5 984:2.0 1230:1.0 1306:1.0 1457:1.0 1563:1.0 1634:1.0 1724:1.0 1753:1.0 2090:1.0 2109:1.0 4345:1.0 5197:1.0
4 1:0.043478260869565216 7:0.25 8:0.2 14:1.0 17:0.14285714285714285 26:2.0 27:0.010752688172043012 31:0.4 37:0.09090909090909091 45:0.5 58:0.08333333333333333 65:0.3333333333333333 90:0.14285714285714285 107:0.5 123:1.0 127:1.0 162:0.5 178:1.0 184:1.0 191:1.0 266:1.0 268:0.5 288:1.0 316:1.0 454:1.0 519:1.0 726:1.0 795:1.0 814:1.0 845:0.5 1168:1.0 1340:1.0 1529:1.0 1559:1.0 1755:1.0 1859:1.0 2054:1.0 2057:1.0 2410:1.0 4635:1.0 5194:1.0
4 2:0.5 8:0.08 17:0.14285714285714285 21:0.5 26:1.0 27:0.010752688172043012 40:0.5 44:0.3333333333333333 45:0.5 54:0.3333333333333333 69:0.5 88:0.2 99:0.5 162:1.0 184:1.0 223:1.0 224:1.0 234:1.0 237:1.0 259:0.4 266:1.0 281:0.5 319:1.0 332:1.0 446:1.0 477:1.0 499:1.0 655:1.0 1132:0.1 1369:1.0 1923:1.0 2097:1.0 2285:1.0 2484:1.0 2512:1.0 3692:1.0 5541:1.0
4 11:1.0 14:1.0 17:0.14285714285714285 24:0.5 31:0.2 40:0.5 45:1.0 58:0.08333333333333333 69:0.5 142:1.0 145:0.2 146:1.0 162:0.5 174:0.08333333333333333 200:1.0 212:0.3333333333333333 214:1.0 259:0.6 281:0.5 282:1.0 332:1.0 333:1.0 363:1.0 381:1.0 407:1.0 477:1.0 494:1.0 495:1.0 496:1.0 576:1.0 842:1.0 1053:1.0 1203:1.0 1378:1.0 1503:1.0 2163:1.0 2376:1.0 2942:1.0 3297:0.3333333333333333 3445:1.0 4885:1.0
4 1:0.043478260869565216 7:0.125 8:0.04 17:0.2857142857142857 19:1.0 27:0.03225806451612903 28:1.0 32:0.3333333333333333 34:1.0 37:0.09090909090909091 45:0.5 57:1.0 84:1.0 86:0.5 90:0.14285714285714285 115:1.0 134:0.3333333333333333 145:0.2 146:1.0 281:0.5 282:1.0 283:1.0 346:0.5 356:1.0 376:1.0 425:0.3333333333333333 448:1.0 519:1.0 538:0.5 548:0.06666666666666667 651:1.0 912:1.0 970:1.0 1396:1.0 1668:1.0 1826:0.5 2168:1.0 3029:1.0 3355:1.0 4518:1.0
4 1:0.043478260869565216 8:0.04 12:1.0 17:0.14285714285714285 19:1.0 21:0.5 27:0.03225806451612903 37:0.18181818181818182 45:1.0 58:0.08333333333333333 84:1.0 86:0.5 88:0.4 116:0.5 142:1.0 154:1.0 177:0.5 184:1.0 185:1.0 187:0.5 188:1.0 211:0.2 234:1.0 261:1.0 262:0.5 425:0.3333333333333333 437:0.5 548:0.06666666666666667 832:1.0 862:1.0 929:0.5 1203:1.0 1808:1.0 1843:1.0 2057:1.0 2157:1.0 2750:1.0 3311:1.0
4 1:0.043478260869565216 7:0.125 8:0.12 21:0.5 27:0.021505376344086023 31:0.4 37:0.09090909090909091 45:1.5 50:0.25 65:0.3333333333333333 81:0.125 99:0.5 127:1.0 142:1.0 162:0.5 184:1.0 198:1.0 202:3.0 266:1.0 273:0.5 274:1.0 275:1.0 333:1.0 342:1.0 350:1.0 537:2.0 539:1.0 545:1.0 548:0.06666666666666667 718:1.0 726:1.0 832:1.0 866:1.0 911:1.0 989:1.0 1151:1.0 1168:1.0 1182:0.5 1304:1.0 1340:2.0 1341:1.0 1342:1.0 1343:1.0 1446:0.3333333333333333 1681:1.0 1729:1.0 1838:1.0 1962:1.0 2044:1.0 6991:1.0
4 1:0.043478260869565216 8:0.08 14:1.0 17:0.2857142857142857 19:1.0 21:1.0 22:0.2 27:0.010752688172043012 31:0.2 37:0.09090909090909091 45:3.0 88:0.2 99:0.5 101:1.0 115:1.0 123:2.0 127:1.0 202:2.0 234:1.0 252:0.5 259:0.2 266:1.0 268:0.5 288:1.0 328:0.1111111111111111 401:1.0 454:1.0 548:0.06666666666666667 600:0.1111111111111111 626:2.0 715:1.0 726:1.0 872:3.0 911:1.0 1733:1.0 1946:1.0 1947:1.0 1948:1.0 2172:1.0 2240:1.0 2347:1.0 2477:1.0 2924:1.0 3110:1.0 3403:1.0
4 1:0.08695652173913043 8:0.08 14:1.0 17:0.2857142857142857 19:1.0 21:0.5 27:0.021505376344086023 31:0.2 45:1.5 95:0.16666666666666666 126:1.0 127:1.0 130:0.5 131:1.0 132:1.0 133:0.3333333333333333 134:0.3333333333333333 145:0.2 146:1.0 154:1.0 196:1.0 211:0.2 216:1.0 243:2.0 268:0.5 488:1.0 489:1.0 508:1.0 548:0.06666666666666667 576:1.0 600:0.1111111111111111 697:0.5 714:1.0 729:1.0 818:1.0 837:1.0 854:1.0 1048:1.0 1090:1.0 1188:1.0 1189:0.5 1229:1.0 1733:1.0 2327:1.0 2330:1.0 2346:1.0 3286:1.0 3414:1.0
4 2:0.5 8:0.24 14:3.0 17:0.14285714285714285 21:0.5 23:0.5 27:0.021505376344086023 31:0.2 37:0.18181818181818182 45:0.5 85:1.0 88:0.2 123:2.0 127:1.0 129:0.5 142:1.0 162:0.5 187:0.5 190:1.0 193:0.1 198:1.0 212:0.3333333333333333 226:1.0 277:1.0 300:1.0 307:1.0 333:1.0 401:1.0 446:1.0 448:1.0 507:0.5 548:0.06666666666666667 556:1.0 576:1.0 625:1.0 705:1.0 850:1.0 925:1.0 1002:1.0 1024:0.5 1380:1.0 1424:0.25 1524:1.0 1535:1.0 1536:1.0 1537:1.0 1635:1.0 1713:1.0 1745:1.0 1954:1.0 2173:1.0 2337:1.0 2677:1.0 2696:1.0
4 1:0.08695652173913043 8:0.08 14:1.0 17:0.2857142857142857 21:0.5 22:0.2 27:0.03225806451612903 43:1.0 44:0.3333333333333333 45:2.5 50:0.25 81:0.125 95:0.16666666666666666 115:1.0 144:0.2 193:0.05 196:1.0 215:1.0 259:0.2 260:1.0 317:1.0 376:1.0 437:0.5 524:1.0 631:1.0 743:1.0 818:1.0 827:1.0 1026:1.0 1218:1.0 1298:1.0 1349:1.0 1598:0.5 1660:1.0 1904:1.0 2303:1.0 4341:1.0
4 7:0.25 8:0.12 17:0.14285714285714285 27:0.010752688172043012 31:0.4 37:0.09090909090909091 45:0.5 48:1.0 51:0.5 54:0.3333333333333333 88:0.2 133:0.3333333333333333 141:1.0 201:0.3333333333333333 259:0.2 266:1.0 295:0.5 422:1.0 446:1.0 475:1.0 501:0.5 508:1.0 523:0.5 539:1.0 822:0.3333333333333333 925:1.0 988:2.0 992:1.0 1001:1.0 1009:1.0 1186:1.0 1242:1.0 1853:1.0 1903:1.0 2521:1.0 2833:1.0 2949:1.0
4 1:0.043478260869565216 7:0.125 8:0.08 21:0.5 26:1.0 27:0.03225806451612903 31:0.4 37:0.18181818181818182 44:0.3333333333333333 45:0.5 50:0.25 75:1.0 99:0.5 101:1.0 123:1.0 164:1.0 174:0.08333333333333333 291:1.0 301:1.0 327:1.0 355:1.0 363:1.0 417:0.3333333333333333 437:0.5 448:1.0 449:1.0 554:1.0 581:1.0 582:1.0 758:1.0 870:1.0 965:1.0 1200:1.0 1201:1.0 1923:1.0 2929:1.0 3834:1.0
4 1:0.08695652173913043 7:0.125 8:0.12 17:0.14285714285714285 19:1.0 21:0.5 24:0.5 27:0.021505376344086023 45:0.5 57:1.0 88:0.2 101:1.0 130:0.5 134:0.3333333333333333 212:0.6666666666666666 216:1.0 259:0.4 608:0.5 655:1.0 1050:0.1111111111111111 1054:1.0 1459:1.0 1460:1.0 1462:1.0 1463:1.0 1947:1.0 2747:1.0 2753:1.0 3310:1.0 3388:1.0 3407:1.0
4 1:0.043478260869565216 7:0.125 12:1.0 19:1.0 21:0.5 22:0.2 26:1.0 27:0.021505376344086023 30:1.0 31:0.4 37:0.09090909090909091 40:0.5 45:1.0 52:1.0 58:0.08333333333333333 84:1.0 95:0.16666666666666666 101:1.0 161:1.0 175:1.0 181:0.07692307692307693 182:1.0 184:2.0 186:1.0 187:0.5 188:1.0 196:1.0 295:0.5 314:1.0 342:1.0 371:1.0 374:1.0 391:1.0 442:1.0 538:0.5 762:1.0 828:1.0 1026:1.0 1056:0.5 1123:1.0 1315:1.0 2131:1.0 2655:1.0 3211:1.0 3607:2.0 6020:1.0
|
1ec667ad83b102eac896f7e25c5d38dc4df89b43 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3830/CH7/EX7.8/Ex7_8.sce | 1bdb07e06b4ff202126fc4fee83e8bb57219543c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 736 | sce | Ex7_8.sce | // Exa 7.8
clc;
clear;
R = 200; // strain gauge resistance in Ohms
G = 2.5; // Gauge factor
RL = 400; // load resistance in Ohms
V = 24; // input voltage in volts
S = 140; // applied stress in mgf/m^2
Y = 200; // Modulus of elasticity in GN/m^2
// Solution
V_normal = V*(R/(R+RL));
printf('Voltage across strain gauge = %d V \n',V_normal);
e = (S*10^-3)/Y;
// Strain e = dell_L/L
//dell_R/R = G* dell_L/L;
// so,
dell_R = R*G*e;
//strain gauge under strained condition
V_strained = (R+dell_R) * V/(R+dell_R+RL);
printf(' Voltage across strain gauge under strained condition = %.4f ohms \n',V_strained);
dif = V_normal - V_strained;
printf(' Change in output voltage = %.2f mV \n',abs(dif*10^3));
|
b457534d5aca284ba54535650fe90bf7ce86fc04 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1910/CH1/EX1.11/Chapter111.sce | f26bc4e83fea555ac872c5b95dfd2f0e87373c86 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,063 | sce | Chapter111.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Introduction to heat transfer by S.K.Som, Chapter 1, Example 11")
//The horizontal steel pipe has outer diameter(D)=80 mm or.08 m
//The pipe is maintained at a temprature(T1)=60°C where the air and wall temprature(T2)=20 °C
//The average free convective heat transfer coefficient(hbr)=6.5 W/(m^2/K) b/w the outer surface of the pipe and air
D=.08;
T1=60;
T2=20;
hbr=6.5;
//Length(L=1) since per unit length is considered
L=1;
//The surface area of pipe is given by A=(%pi*D*L)
A=(%pi*D*L);
//The surface emissivity(emi) of steel = 0.8
//The stefan -Boltzman constant(sigma)= 5.7*10^-8 W/(m^2*K^4)
sigma=5.67*10^-8;
emi=.8;
//The total heat loss by The pipe per unit length is given by Q/L=hbr*A*(T1-T2)+sigma*emi*A*(T1^4-T2^4)
disp("The total heat loss by The pipe per unit length is given by Q/L=hbr*A*(T1-T2)+sigma*emi*A*(T1^4-T2^4) in W/m")
//Let Q/L=F
F=hbr*A*((T1+273.15)-(T2+273.15))+sigma*emi*A*((T1+273.15)^4-(T2+273.15)^4)
|
4f73541fcf395d0c9e47e352f169e694e63e9b45 | 449d555969bfd7befe906877abab098c6e63a0e8 | /293/CH15/EX15.1/eg15_1.sce | 2417766304d6a876b9de6bf4d2b5e4b251b64954 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,510 | sce | eg15_1.sce | //a
phi = 6*10^-4; //given magnetic flux (in Wb)
A = 0.001; // cross sectional area (in meter square)
B = phi/A ; //
Ha = 10; //magnetic field intensity of material a needed to establish the given magnetic flux
Hb = 77; // magnetic field intensity of material b
Hc = 270; // magnetic field intensity of material c
La = 0.3; //arc length of material a (in meters)
Lb = 0.2; //arc length of material b (in meters)
Lc = 0.1; //arc length of material c (in meters)
F = Ha*La + Hb*Lb + Hc*Lc; //magnetomotive force
disp("a")
disp(F, "magnetomotive force needed to establish a flux of 6*10^-4(in At) = ")
//b
N = 100; //no. of turns
I = F/N; //current in amps
disp("b")
disp(I,"current that must be made to flow through the coil(in amps) = ")
//c
MU0 = 4*%pi*10^-7;
MUa = B/Ha; //permeability of material a
MUb = B/Hb; //permeability of material b
MUc = B/Hc; //permeability of material c
MUra = MUa/MU0; //relative permeability of material a
MUrb = MUb/MU0; //relative permeability of material b
MUrc = MUc/MU0; //relative permeability of material c
Ra = Ha*La/phi; //reluctance of material a
Rb = Hb*Lb/phi; //reluctance of material b
Rc = Hc*Lc/phi; //reluctance of material c
disp("c")
disp(MUra,"relative permeability of material a = ")
disp(MUrb,"relative permeability of material b = ")
disp(MUrc,"relative permeability of material c = ")
disp(Ra,"reluctance of material a = ")
disp(Rb,"reluctance of material b = ")
disp(Rc,"reluctance of material c = ") |
0fc6884ffd70de56e172198dccc23821e068dfd7 | 3daf46b810f462d6c8e936bef696ade9bd2e41a8 | /AulaPratica3/Metodo_potencia.sce | dfcba1d6422d9f238f00077cdce977189f5e5261 | [] | no_license | JPMarciano/Algebra-Linear-Numerica | 4575a2bd95a4b056100a7d8adaaeb2a0a0fee2d4 | 6d2c8555650b5f8a156f3d1c207c77f6986b8fcd | refs/heads/master | 2021-03-12T14:27:28.360160 | 2020-05-11T14:59:05 | 2020-05-11T14:59:05 | 246,628,921 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 385 | sce | Metodo_potencia.sce | function [lambda,x1,k,n_erro] = Metodo_potencia(A,x0,epsilon,M)
k=1;
x0=x0/max(x0);
x1 = A*x0; // aproximação do autovetor dominante
while(k <= M)
lambda = max(x1); // aproximação autovalor dominante
x1 = x1/lambda;
n_erro = norm(abs(x1) - abs(x0), %inf);
if n_erro < epsilon
break;
end
x0 = x1;
x1 = A*x0;
k = k + 1;
end
endfunction
|
5db927b5d84bdb5ffc7c631b53a4c3f874af0816 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2417/CH5/EX5.16/Ex5_16.sce | 8e1632008f58ef6fb735923bacf9bb67948582c0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 843 | sce | Ex5_16.sce | //scilab 5.4.1
clear;
clc;
printf("\t\t\tProblem Number 5.16\n\n\n");
// Chapter 5 : Properties Of Liquids And Gases
// Problem 5.16 (page no. 202)
// Solution
//It is necessary to ontain the saturation values corresponding to 300 F.This is done by reading Table A.1 in Appendix 3,which gives
pf=66.98; //psia //pressure
vf=0.017448; //ft^3/lbm //specific volume
hf=269.73; //Btu/lbm //enthaply
//Now,
p=1000; //psia //pressure
J=778; //Conversion factor //ft*lbf/Btu
//From eq.5.5,
h=hf+((p-pf)*vf*144)/J; //1ft^2=144 in^2 //The enthalpy of subcooled water //Btu/lbm
printf("The enthalpy of subcooled water is %f Btu/lbm\n",h);
//The difference between this value and the value found in problem 5.15,expressed as a percentage is
percentoferror=(h-271.46)/271.46;
printf("Percent of error is %f\n",percentoferror*100);
|
9e5a368308c7278197e3475d7c438cdcff6cce51 | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH10/EX10.1/example10_1.sce | 1fcfe28282405d83254958dd54b0517342137ade | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 332 | sce | example10_1.sce | vb=13.2;
rb=0.5;
vg=14.5;
rg=0.1;
rl=2;
ib=(vg*rl-vb*(rg+rl))/(rl^2-(rb+rl)*rg+rl);
disp("the battery current (in A) is"); disp(ib);
ig=(vb-ib*(rb+rl))/rl;
disp("the generator current (in A) is"); disp(ig);
il=ib+ig;
disp("the load current (in A) is"); disp(il);
vl=il*rl;
disp("the load voltage (in V) is"); disp(vl);
|
9d13a610c1816d2a98f2ffad82c51e4109066a5a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH1/EX1.8/1_8.sce | 3bd5740f3bdff879d549906fef76b803547288d9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 786 | sce | 1_8.sce | //ques-1.8
//Calculating amount of lime and soda required for softening water
clc
A=7.3;//content of HCl (in mg/L)
B=34.2;//content of Aluminium sulphate (in mg/L)
C=9.5;//content of Magnesium chloride (in mg/L)
V=100000;//volume of water used (in L)
p1=90;//Purity precentage of lime
p2=98;//Purity precentage of soda
e=10;//Percentage of excess chemicals used
a1=(A/73)*100;//CaCO3 equivalent of A (in mg/L)
a2=(B/114)*100;//CaCO3 equivalent of B (in mg/L)
a3=(C/95)*100;//CaCO3 equivalent of C (in mg/L)
lime=(a1+a2+a3)*(74/100)*(1+e/100)*(100/p1)*V;//lime required (in mg)
soda=(a1+a2+a3)*(106/100)*V*(1+e/100)*(100/p2);//soda required (in mg)
printf("Lime required for softening %d L of water is %.3f kg and Soda required is %.3f kg.",V,lime/1000000,soda/1000000);
|
512db8a72367f2f9d48e63b131838f7e257fa09b | d963a50c09b7380dd7b1b97cd9997e9bd17ea8f3 | /r37/packages/camal/camal.tst | a56e5e6e5e7098384ceedb53d45280dbf143d161 | [
"BSD-3-Clause"
] | permissive | reduce-algebra/reduce-historical | 8220e211b116e0e01ff1a38f51917cac9db6069f | e014152729c4d62bb1ce4f5c311a027042a5495a | refs/heads/master | 2023-04-10T22:54:00.796596 | 2021-04-16T08:52:19 | 2021-04-16T08:52:19 | 343,245,204 | 7 | 1 | NOASSERTION | 2021-04-16T08:53:31 | 2021-03-01T00:15:22 | TeX | UTF-8 | Scilab | false | false | 1,290 | tst | camal.tst | n := 4;
on rational, rat;
off allfac;
array p(n/2+2);
harmonic u,v,w,x,y,z;
weight e=1, b=1, d=1, a=1;
%% Step1: Solve Kepler equation
bige := fourier 0;
for k:=1:n do <<
wtlevel k;
bige:=fourier e * hsub(fourier(sin u), u, u, bige, k);
>>;
write "Kepler Eqn solution:", bige$
%% Ensure we do not calculate things of too high an order
wtlevel n;
%% Step 2: Calculate r/a in terms of e and l
dd:=-e*e; hh:=3/2; j:=1; cc := 1;
for i:=1:n/2 do <<
j:=i*j; hh:=hh-1; cc:=cc+hh*(dd^i)/j
>>;
bb:=hsub(fourier(1-e*cos u), u, u, bige, n);
aa:=fourier 1+hdiff(bige,u); ff:=hint(aa*aa*fourier cc,u);
%% Step 3: a/r and f
uu := hsub(bb,u,v); uu:=hsub(uu,e,b);
vv := hsub(aa,u,v); vv:=hsub(vv,e,b);
ww := hsub(ff,u,v); ww:=hsub(ww,e,b);
%% Step 4: Substitute f and f' into S
yy:=ff-ww; zz:=ff+ww;
xx:=hsub(fourier((1-d*d)*cos(u)),u,u-v+w-x-y+z,yy,n)+
hsub(fourier(d*d*cos(v)),v,u+v+w+x+y-z,zz,n);
%% Step 5: Calculate R
zz:=bb*vv; yy:=zz*zz*vv;
on fourier;
p(0):= fourier 1; p(1) := xx;
for i := 2:n/2+2 do <<
wtlevel n+4-2i;
p(i) := fourier ((2*i-1)/i)*xx*p(i-1) - fourier ((i-1)/i)*p(i-2);
>>;
wtlevel n;
for i:=n/2+2 step -1 until 3 do p(n/2+2):=fourier(a*a)*zz*p(n/2+2)+p(i-1);
yy*p(n/2+2);
showtime;
end;
|
7fd1747ed5217cb2bb3bf580a59d79d5c4b74553 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1385/CH3/EX3.4/3_4.sce | 6f956fa5c8be2c63cf3987b2de1e64aff76d3543 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 218 | sce | 3_4.sce | clc
//initialisation of variables
n2= 10.05*10^-3 //poise
d1= 0.879 //gms cm^-3
t= 88 //sec
d2= 1 //gms cm^-3
t1= 120 //sec
//CALCULATIONS
n1= d1*t/(d2*t1)
//RESULTS
printf (' relative viscosity= %.3f ',n1)
|
488b6799882a0ccc7e588c40b0a5f71e828691f6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1373/CH7/EX7.20/Chapter7_Example20.sce | 8dd9a2cfb83c1fe3fd834931ee628a11e094fe75 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,061 | sce | Chapter7_Example20.sce | //Chapter-7, Example 7.20, Page 318
//=============================================================================
clc
clear
//INPUT DATA
Tw=50;//Temperature of water in degree C
Di=0.005;//Inner diameter of the tube in m
L=0.5;//Length of the tube in m
v=1;//Mean velocity in m/s
Ts=30;//Surface temperature in degree C
//CALCULATIONS
Tf=(Tw+Ts)/2;//Film temperature in degree C
k=0.039;//Thermal conductivity of air at 15 degree C
Pr=0.688;//prant number of air at 15 degree C
p=990;//Density of air at 50 degree C in kg/m^3
Cp=4178;//Specific heat of air at 50 degree C in J/kg.K
v1=(5.67*10^-7);//Kinematic viscosity of air at 50 degree C
v2=(6.57*10^-7);//Kinematic viscosity of air at 40 degree C
Re=(v*Di)/v1;//Reynolds number
h=((0.316/8)*((v*Di*10)/v2)^(-0.25)*p*Cp*v*(4.34)^(-2/3));//Heat transfer coefficient using the Colburn analogy in W/m^2.K
//OUTPUT
mprintf('Heat transfer coefficient using the Colburn analogy is %3.0f W/m^2.K',h)
//=================================END OF PROGRAM==============================
|
f84eb8e9968fa77efa09d6602f4be2e23b603dca | d3053ee997c1dd735522dcee57d3f7260c654ab9 | /Base Project/Project.uvguix.sci | 90b9135cca3de2828e1dd7e3eefbb68527353cf2 | [] | no_license | shikharshrestha/Stanford_TOF | c7c164addc4beae61b9ecf9dc479dae905f1c4ad | 92d877e02cece36044113e3f0ce8c58aa19959c6 | refs/heads/master | 2020-12-25T18:19:55.115860 | 2016-02-16T21:04:41 | 2016-02-16T21:04:41 | 39,858,780 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 140,895 | sci | Project.uvguix.sci | <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<ProjectGui xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="project_guix.xsd">
<SchemaVersion>-5.1</SchemaVersion>
<Header>### uVision Project, (C) Keil Software</Header>
<ViewPool/>
<SECTreeCtrl>
<View>
<WinId>38003</WinId>
<ViewName>Registers</ViewName>
<TableColWidths>115 204</TableColWidths>
</View>
<View>
<WinId>346</WinId>
<ViewName>Code Coverage</ViewName>
<TableColWidths>724 723</TableColWidths>
</View>
<View>
<WinId>204</WinId>
<ViewName>Performance Analyzer</ViewName>
<TableColWidths>808 175 175 289</TableColWidths>
</View>
</SECTreeCtrl>
<TreeListPane>
<View>
<WinId>1506</WinId>
<ViewName>Symbols</ViewName>
<UserString></UserString>
<TableColWidths>304 80 80</TableColWidths>
</View>
<View>
<WinId>1936</WinId>
<ViewName>Watch 1</ViewName>
<UserString></UserString>
<TableColWidths>80 80 80</TableColWidths>
</View>
<View>
<WinId>1937</WinId>
<ViewName>Watch 2</ViewName>
<UserString></UserString>
<TableColWidths>80 80 80</TableColWidths>
</View>
<View>
<WinId>1935</WinId>
<ViewName>Call Stack + Locals</ViewName>
<UserString></UserString>
<TableColWidths>161 80 80</TableColWidths>
</View>
<View>
<WinId>2506</WinId>
<ViewName>Trace Data</ViewName>
<UserString></UserString>
<TableColWidths>75 135 130 95 70 230 200 150</TableColWidths>
</View>
</TreeListPane>
<WindowSettings>
<LogicAnalizer>
<ShowLACursor>0</ShowLACursor>
<ShowSignalInfo>0</ShowSignalInfo>
<ShowCycles>0</ShowCycles>
<LeftSideBarSize>50</LeftSideBarSize>
<TimeBaseIndex>16</TimeBaseIndex>
</LogicAnalizer>
</WindowSettings>
<WinLayoutEx>
<sActiveDebugView></sActiveDebugView>
<WindowPosition>
<length>44</length>
<flags>2</flags>
<showCmd>1</showCmd>
<MinPosition>
<xPos>-32000</xPos>
<yPos>-32000</yPos>
</MinPosition>
<MaxPosition>
<xPos>-1</xPos>
<yPos>-1</yPos>
</MaxPosition>
<NormalPosition>
<Top>578</Top>
<Left>13</Left>
<Right>1911</Right>
<Bottom>985</Bottom>
</NormalPosition>
</WindowPosition>
<MDIClientArea>
<RegID>0</RegID>
<MDITabState>
<Len>684</Len>
<Data>01000000040000000100000001000000010000000100000000000000020000000000000001000000010000000000000028000000280000000100000004000000030000000100000055433A5C55736572735C7363695C4465736B746F705C54696D65206F6620466C696768745C4669726D776172655C41524D5F486F73745F46575F5265706F5C426173652050726F6A6563745C5372635C6D61696E2E6300000000066D61696E2E6300000000C5D4F200FFFFFFFF60433A5C55736572735C7363695C4465736B746F705C54696D65206F6620466C696768745C4669726D776172655C41524D5F486F73745F46575F5265706F5C426173652050726F6A6563745C737461727475705F73746D33326634303778782E730000000015737461727475705F73746D33326634303778782E7300000000FFDC7800FFFFFFFF63433A5C55736572735C7363695C4465736B746F705C54696D65206F6620466C696768745C4669726D776172655C41524D5F486F73745F46575F5265706F5C426173652050726F6A6563745C5372635C746D5F73746D333266345F7573625F7663702E630000000014746D5F73746D333266345F7573625F7663702E6300000000BECEA100FFFFFFFF5E433A5C55736572735C7363695C4465736B746F705C54696D65206F6620466C696768745C4669726D776172655C447269766572735C4253505C53544D333246342D446973636F766572795C73746D333266345F646973636F766572792E63000000001373746D333266345F646973636F766572792E6300000000F0A0A100FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD500010000000000000002000000600100006D0000006F07000051030000</Data>
</MDITabState>
</MDIClientArea>
<ViewEx>
<ViewType>0</ViewType>
<ViewName>Build</ViewName>
<Window>
<RegID>-1</RegID>
<PaneID>-1</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>F40000004F00000090050000DF000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>090100006D000000A5050000FD000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1005</RegID>
<PaneID>1005</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>0300000066000000440100001A030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>109</RegID>
<PaneID>109</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>0300000066000000440100001A030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B4000000BA010000F6020000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1465</RegID>
<PaneID>1465</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000320200008D050000A6020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000006603000044010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1466</RegID>
<PaneID>1466</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000320200008D050000A6020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000006603000044010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1467</RegID>
<PaneID>1467</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000320200008D050000A6020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000006603000044010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1468</RegID>
<PaneID>1468</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000320200008D050000A6020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000006603000044010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1506</RegID>
<PaneID>1506</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1913</RegID>
<PaneID>1913</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>F7000000660000008D050000C6000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000006603000044010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1935</RegID>
<PaneID>1935</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000320200008D050000A6020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1936</RegID>
<PaneID>1936</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000320200008D050000A6020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1937</RegID>
<PaneID>1937</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000320200008D050000A6020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1939</RegID>
<PaneID>1939</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000320200008D050000A6020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000006603000044010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1940</RegID>
<PaneID>1940</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000320200008D050000A6020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000006603000044010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1941</RegID>
<PaneID>1941</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000320200008D050000A6020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000006603000044010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1942</RegID>
<PaneID>1942</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000320200008D050000A6020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000006603000044010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>195</RegID>
<PaneID>195</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>0300000066000000440100001A030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B4000000BA010000F6020000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>196</RegID>
<PaneID>196</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>0300000066000000440100001A030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B4000000BA010000F6020000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>197</RegID>
<PaneID>197</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>030000004E03000057070000BE030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>F4FCFFFFC1030000740400007F040000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>198</RegID>
<PaneID>198</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>000000001B02000090050000BF020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000006603000044010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>199</RegID>
<PaneID>199</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>030000004E03000057070000BE030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>F4FCFFFFC1030000740400007F040000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>203</RegID>
<PaneID>203</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>8192</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>F7000000660000008D050000C6000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000006603000044010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>204</RegID>
<PaneID>204</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>F7000000660000008D050000C6000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000006603000044010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>221</RegID>
<PaneID>221</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>00000000000000000000000000000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>0A0000000A0000006E0000006E000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>2506</RegID>
<PaneID>2506</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>2507</RegID>
<PaneID>2507</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000320200008D050000A6020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000006603000044010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>343</RegID>
<PaneID>343</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>F7000000660000008D050000C6000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000006603000044010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>346</RegID>
<PaneID>346</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>F7000000660000008D050000C6000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000006603000044010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35824</RegID>
<PaneID>35824</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>F7000000660000008D050000C6000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000006603000044010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35885</RegID>
<PaneID>35885</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35886</RegID>
<PaneID>35886</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35887</RegID>
<PaneID>35887</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35888</RegID>
<PaneID>35888</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35889</RegID>
<PaneID>35889</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35890</RegID>
<PaneID>35890</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35891</RegID>
<PaneID>35891</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35892</RegID>
<PaneID>35892</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35893</RegID>
<PaneID>35893</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35894</RegID>
<PaneID>35894</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35895</RegID>
<PaneID>35895</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35896</RegID>
<PaneID>35896</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35897</RegID>
<PaneID>35897</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35898</RegID>
<PaneID>35898</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35899</RegID>
<PaneID>35899</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35900</RegID>
<PaneID>35900</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35901</RegID>
<PaneID>35901</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35902</RegID>
<PaneID>35902</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35903</RegID>
<PaneID>35903</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35904</RegID>
<PaneID>35904</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35905</RegID>
<PaneID>35905</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>A3040000660000008D05000012020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>38003</RegID>
<PaneID>38003</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>0300000066000000440100001A030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B4000000BA010000F6020000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>38007</RegID>
<PaneID>38007</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>030000004E03000057070000BE030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>F4FCFFFFC1030000740400007F040000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>436</RegID>
<PaneID>436</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>030000004E03000057070000BE030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>F4FCFFFFC1030000740400007F040000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>437</RegID>
<PaneID>437</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000320200008D050000A6020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>440</RegID>
<PaneID>440</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000320200008D050000A6020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>9E000000B40000008E0100007F010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>59392</RegID>
<PaneID>59392</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>940</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>8192</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>0000000000000000B70300001C000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>0A0000000A0000006E0000006E000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>59393</RegID>
<PaneID>0</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>00000000D70300005A070000EA030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>0A0000000A0000006E0000006E000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>59399</RegID>
<PaneID>59399</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>463</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>8192</RecentFrameAlignment>
<RecentRowIndex>1</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>000000001C000000DA01000038000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>0A0000000A0000006E0000006E000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>59400</RegID>
<PaneID>59400</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>612</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>8192</RecentFrameAlignment>
<RecentRowIndex>2</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>00000000380000006F02000054000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>0A0000000A0000006E0000006E000000</Data>
</RectRecentFloat>
</Window>
<DockMan>
<Len>2639</Len>
<Data>000000000B000000000000000020000000000000FFFFFFFFFFFFFFFFF4000000DF00000090050000E3000000000000000100000004000000010000000000000000000000FFFFFFFF06000000CB00000057010000CC000000F08B00005A01000079070000FFFF02000B004354616262656450616E650020000000000000090100006D000000A5050000FD000000F40000004F00000090050000DF0000000000000040280046060000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF9C0400004F000000A00400002B020000000000000200000004000000010000000000000000000000FFFFFFFF17000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000001800040000000000000B50400006D000000A505000049020000A00400004F000000900500002B0200000000000040410046170000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFF470100004F0000004B01000033030000010000000200001004000000010000002AFFFFFF82060000FFFFFFFF05000000ED0300006D000000C3000000C40000007394000001800010000001000000150000006D0000005C01000051030000000000004F00000047010000330300000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF0000000017020000900500001B02000000000000010000000400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0E0000008F070000930700009407000095070000960700009007000091070000B5010000B8010000B9050000BA050000BB050000BC050000CB090000018000800000000000001500000039020000A5050000DD020000000000001B02000090050000BF02000000000000404100460E0000001343616C6C20537461636B202B204C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFFC80200001B020000CC020000BF02000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF00000000330300005A070000370300000100000001000010040000000100000083FDFFFF0001000000000000000000000000000001000000FFFFFFFF04000000C5000000C7000000B4010000779400000180008000000100000015000000550300006F070000F503000000000000370300005A070000D70300000000000040820056040000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657301000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0742726F77736572000000007794000001000000FFFFFFFFFFFFFFFF0000000000000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000</Data>
</DockMan>
<ToolBar>
<RegID>59392</RegID>
<Name>File</Name>
<Buttons>
<Len>2303</Len>
<Data>00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050000000000A6672616D65636F756E74960000000000000014000A6672616D65636F756E7408756E7369676E6564067072696E746600044E6F6E6509696E6372656D656E74132048414C5F54494D5F49525148616E646C65721248414C5F54494D5F49525148616E646C65720971756164636F756E74114253505F4C45445F4F6666284C45443529104253505F4C45445F4F6E284C4544352907494E495464647304494E495408696F75706461746502494F10467265715374657070696E674175746F0848414C5F496E6974077379737469636B0948414C5F44656C61790E696E6372656D656E7470686173650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020000001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F50726F6A6563742057696E646F7773000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65AC030000</Data>
</Buttons>
<OriginalItems>
<Len>1423</Len>
<Data>2800FFFF01001100434D4643546F6F6C426172427574746F6E00E1000000000000FFFFFFFF000100000000000000010000000000000001000000018001E1000000000000FFFFFFFF000100000000000000010000000000000001000000018003E1000000000000FFFFFFFF0001000000000000000100000000000000010000000180CD7F000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF000000000000000000010000000000000001000000018023E1000000000000FFFFFFFF000100000000000000010000000000000001000000018022E1000000000000FFFFFFFF000100000000000000010000000000000001000000018025E1000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001802BE1000000000000FFFFFFFF00010000000000000001000000000000000100000001802CE1000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001807A8A000000000000FFFFFFFF00010000000000000001000000000000000100000001807B8A000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180D3B0000000000000FFFFFFFF000100000000000000010000000000000001000000018015B1000000000000FFFFFFFF0001000000000000000100000000000000010000000180F4B0000000000000FFFFFFFF000100000000000000010000000000000001000000018036B1000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180FF88000000000000FFFFFFFF0001000000000000000100000000000000010000000180FE88000000000000FFFFFFFF00010000000000000001000000000000000100000001800B81000000000000FFFFFFFF00010000000000000001000000000000000100000001800C81000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180F088000000000000FFFFFFFF0001000000000000000100000000000000010000000180EE7F000000000000FFFFFFFF000100000000000000010000000000000001000000018024E1000000000000FFFFFFFF00010000000000000001000000000000000100000001800A81000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001802280000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180C488000000000000FFFFFFFF0001000000000000000100000000000000010000000180C988000000000000FFFFFFFF0001000000000000000100000000000000010000000180C788000000000000FFFFFFFF0001000000000000000100000000000000010000000180C888000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180DD88000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180FB7F000000000000FFFFFFFF000100000000000000010000000000000001000000</Data>
</OriginalItems>
<OrigResetItems>
<Len>1423</Len>
<Data>2800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000000004000000000000000000000000000000000100000001000000018022E100000000000005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000000000700000000000000000000000000000000010000000100000001802CE10000000000000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000000000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000000000C0000000000000000000000000000000001000000010000000180F4B00000000000000D000000000000000000000000000000000100000001000000018036B10000000000000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF880000000000000F0000000000000000000000000000000001000000010000000180FE880000000000001000000000000000000000000000000000010000000100000001800B810000000000001100000000000000000000000000000000010000000100000001800C810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F088000000000000130000000000000000000000000000000001000000010000000180EE7F00000000000014000000000000000000000000000000000100000001000000018024E10000000000001500000000000000000000000000000000010000000100000001800A810000000000001600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000180000000000000000000000000000000001000000010000000180C988000000000000190000000000000000000000000000000001000000010000000180C7880000000000001A0000000000000000000000000000000001000000010000000180C8880000000000001B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180DD880000000000001C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001D000000000000000000000000000000000100000001000000</Data>
</OrigResetItems>
</ToolBar>
<ToolBar>
<RegID>59399</RegID>
<Name>Build</Name>
<Buttons>
<Len>696</Len>
<Data>00200000010000001000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F0000000000001C0000000000000000000000000000000001000000010000000180D07F0000000000001D000000000000000000000000000000000100000001000000018030800000000000001E00000000000000000000000000000000010000000100000001809E8A0000000000001F0000000000000000000000000000000001000000010000000180D17F0000000004002000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000002100000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6EBA00000000000000000000000000000000000000000000000001000000010000009600000003002050000000001153544D333246342D446973636F76657279960000000000000001001153544D333246342D446973636F76657279000000000180EB880000000000002200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000230000000000000000000000000000000001000000010000000180B08A000000000400240000000000000000000000000000000001000000010000000180A8010000000000004E00000000000000000000000000000000010000000100000001807202000000000000530000000000000000000000000000000001000000010000000180BE010000000000005000000000000000000000000000000000010000000100000000000000054275696C64CF010000</Data>
</Buttons>
<OriginalItems>
<Len>583</Len>
<Data>1000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F000000000000FFFFFFFF0001000000000000000100000000000000010000000180D07F000000000000FFFFFFFF00010000000000000001000000000000000100000001803080000000000000FFFFFFFF00010000000000000001000000000000000100000001809E8A000000000000FFFFFFFF0001000000000000000100000000000000010000000180D17F000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001804C8A000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001806680000000000000FFFFFFFF0001000000000000000100000000000000010000000180EB88000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180C07F000000000000FFFFFFFF0001000000000000000100000000000000010000000180B08A000000000000FFFFFFFF0001000000000000000100000000000000010000000180A801000000000000FFFFFFFF00010000000000000001000000000000000100000001807202000000000000FFFFFFFF0001000000000000000100000000000000010000000180BE01000000000000FFFFFFFF000100000000000000010000000000000001000000</Data>
</OriginalItems>
<OrigResetItems>
<Len>583</Len>
<Data>1000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F000000000000000000000000000000000000000000000001000000010000000180D07F00000000000001000000000000000000000000000000000100000001000000018030800000000000000200000000000000000000000000000000010000000100000001809E8A000000000000030000000000000000000000000000000001000000010000000180D17F0000000000000400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000000500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001806680000000000000060000000000000000000000000000000001000000010000000180EB880000000000000700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000080000000000000000000000000000000001000000010000000180B08A000000000000090000000000000000000000000000000001000000010000000180A8010000000000000A000000000000000000000000000000000100000001000000018072020000000000000B0000000000000000000000000000000001000000010000000180BE010000000000000C000000000000000000000000000000000100000001000000</Data>
</OrigResetItems>
</ToolBar>
<ToolBar>
<RegID>59400</RegID>
<Name>Debug</Name>
<Buttons>
<Len>2220</Len>
<Data>00200000000000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000002001380D88B000000000000310000000757617463682031000000000000000000000000010000000100000000000000000000000100000000001380D98B0000000000003100000007576174636820320000000000000000000000000100000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000084D656D6F72792031000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000084D656D6F72792032000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000084D656D6F72792033000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000084D656D6F727920340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000755415254202331000000000000000000000000010000000100000000000000000000000100000000001380940700000000000033000000075541525420233200000000000000000000000001000000010000000000000000000000010000000000138095070000000000003300000007554152542023330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000000E49544D2F525441205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000003400000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380658A000000000000340000000E4C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E00000014506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000D436F646520436F76657261676500000000000000000000000001000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720100000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720100000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138001890000000000003600000007546F6F6C626F7800000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730100000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F72010000000000000001000000000000000100000000000000000000000100000000000000000005446562756764020000</Data>
</Buttons>
<OriginalItems>
<Len>898</Len>
<Data>1900FFFF01001100434D4643546F6F6C426172427574746F6ECC88000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001801780000000000000FFFFFFFF00010000000000000001000000000000000100000001801D80000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001801A80000000000000FFFFFFFF00010000000000000001000000000000000100000001801B80000000000000FFFFFFFF0001000000000000000100000000000000010000000180E57F000000000000FFFFFFFF00010000000000000001000000000000000100000001801C80000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001800089000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180E48B000000000000FFFFFFFF0001000000000000000100000000000000010000000180F07F000000000000FFFFFFFF0001000000000000000100000000000000010000000180E888000000000000FFFFFFFF00010000000000000001000000000000000100000001803B01000000000000FFFFFFFF0001000000000000000100000000000000010000000180BB8A000000000000FFFFFFFF0001000000000000000100000000000000010000000180D88B000000000000FFFFFFFF0001000000000000000100000000000000010000000180D28B000000000000FFFFFFFF00010000000000000001000000000000000100000001809307000000000000FFFFFFFF0001000000000000000100000000000000010000000180658A000000000000FFFFFFFF0001000000000000000100000000000000010000000180C18A000000000000FFFFFFFF0001000000000000000100000000000000010000000180EE8B000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001800189000000000000FFFFFFFF000100000000000000010000000000000001000000</Data>
</OriginalItems>
<OrigResetItems>
<Len>898</Len>
<Data>1900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000000000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000000100000000000000000000000000000000010000000100000001801D800000000000000200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000000300000000000000000000000000000000010000000100000001801B80000000000000040000000000000000000000000000000001000000010000000180E57F0000000000000500000000000000000000000000000000010000000100000001801C800000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000000700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B000000000000080000000000000000000000000000000001000000010000000180F07F000000000000090000000000000000000000000000000001000000010000000180E8880000000000000A00000000000000000000000000000000010000000100000001803B010000000000000B0000000000000000000000000000000001000000010000000180BB8A0000000000000C0000000000000000000000000000000001000000010000000180D88B0000000000000D0000000000000000000000000000000001000000010000000180D28B0000000000000E000000000000000000000000000000000100000001000000018093070000000000000F0000000000000000000000000000000001000000010000000180658A000000000000100000000000000000000000000000000001000000010000000180C18A000000000000110000000000000000000000000000000001000000010000000180EE8B0000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180018900000000000013000000000000000000000000000000000100000001000000</Data>
</OrigResetItems>
</ToolBar>
<ControlBarsSummary>
<Bars>0</Bars>
<ScreenCX>1920</ScreenCX>
<ScreenCY>1080</ScreenCY>
</ControlBarsSummary>
</ViewEx>
<ViewEx>
<ViewType>1</ViewType>
<ViewName>Debug</ViewName>
<Window>
<RegID>-1</RegID>
<PaneID>-1</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AB060000540000005A0700004E020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>60060000720000000F0700009C020000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1005</RegID>
<PaneID>1005</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000660000004601000035020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>3A000000500000002A0100001B010000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>109</RegID>
<PaneID>109</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000660000004601000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>3A000000500000005601000092020000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1465</RegID>
<PaneID>1465</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000A8020000F706000019030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>8601000019020000C90500004F030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1466</RegID>
<PaneID>1466</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000A8020000F706000019030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>8601000019020000C90500004F030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1467</RegID>
<PaneID>1467</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000A8020000F706000019030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>8601000019020000C90500004F030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1468</RegID>
<PaneID>1468</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000A8020000F706000019030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>8601000019020000C90500004F030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1506</RegID>
<PaneID>1506</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AB060000680000005A0700004E020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1913</RegID>
<PaneID>1913</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>5001000066000000F706000066000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>3A0000005000000002030000E0000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1935</RegID>
<PaneID>1935</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000A8020000570700007E030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>8601000019020000C90500004F030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1936</RegID>
<PaneID>1936</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000A8020000F706000019030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>8601000019020000C90500004F030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1937</RegID>
<PaneID>1937</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000A8020000F706000019030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>8601000019020000C90500004F030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1939</RegID>
<PaneID>1939</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000A8020000F706000019030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>8601000019020000C90500004F030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1940</RegID>
<PaneID>1940</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000A8020000F706000019030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>8601000019020000C90500004F030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1941</RegID>
<PaneID>1941</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000A8020000F706000019030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>8601000019020000C90500004F030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>1942</RegID>
<PaneID>1942</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000A8020000570700007E030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>8601000019020000C90500004F030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>195</RegID>
<PaneID>195</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000660000004601000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>3A000000500000005601000092020000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>196</RegID>
<PaneID>196</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000660000004601000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>3A000000500000005601000092020000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>197</RegID>
<PaneID>197</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000B2030000F7060000BE030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>3A0000005000000002030000E0000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>198</RegID>
<PaneID>198</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>00000000520200005A0700008D020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>3A0000005000000002030000E0000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>199</RegID>
<PaneID>199</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>00000000AF0300005A070000D7030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>3A0000005000000002030000E0000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>203</RegID>
<PaneID>203</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>8192</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>4D010000630000005A07000063000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>3A0000005000000002030000E0000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>204</RegID>
<PaneID>204</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>5001000066000000F706000066000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>3A0000005000000002030000E0000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>221</RegID>
<PaneID>221</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>00000000000000000000000000000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>0A0000000A0000006E0000006E000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>2506</RegID>
<PaneID>2506</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>2507</RegID>
<PaneID>2507</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000A8020000F706000019030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>8601000019020000C90500004F030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>343</RegID>
<PaneID>343</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>5001000066000000F706000066000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>3A0000005000000002030000E0000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>346</RegID>
<PaneID>346</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>5001000066000000F706000066000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>3A0000005000000002030000E0000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35824</RegID>
<PaneID>35824</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>5001000066000000F706000066000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>3A0000005000000002030000E0000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35885</RegID>
<PaneID>35885</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35886</RegID>
<PaneID>35886</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35887</RegID>
<PaneID>35887</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35888</RegID>
<PaneID>35888</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35889</RegID>
<PaneID>35889</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35890</RegID>
<PaneID>35890</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35891</RegID>
<PaneID>35891</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35892</RegID>
<PaneID>35892</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35893</RegID>
<PaneID>35893</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35894</RegID>
<PaneID>35894</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35895</RegID>
<PaneID>35895</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35896</RegID>
<PaneID>35896</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35897</RegID>
<PaneID>35897</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35898</RegID>
<PaneID>35898</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35899</RegID>
<PaneID>35899</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35900</RegID>
<PaneID>35900</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35901</RegID>
<PaneID>35901</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35902</RegID>
<PaneID>35902</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35903</RegID>
<PaneID>35903</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35904</RegID>
<PaneID>35904</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>35905</RegID>
<PaneID>35905</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>16384</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>AE0600006B0000005707000065020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>7F050000CB0100009A070000C3030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>38003</RegID>
<PaneID>38003</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000660000004601000035020000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>3A000000500000005601000092020000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>38007</RegID>
<PaneID>38007</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000B2030000F7060000BE030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>3A0000005000000002030000E0000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>436</RegID>
<PaneID>436</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000B2030000F7060000BE030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>3A000000500000005601000092020000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>437</RegID>
<PaneID>437</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000A8020000F706000019030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>8601000019020000C90500004F030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>440</RegID>
<PaneID>440</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>32768</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>03000000A8020000F706000019030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>8601000019020000C90500004F030000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>59392</RegID>
<PaneID>59392</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>940</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>8192</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>0000000000000000B70300001C000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>0A0000000A0000006E0000006E000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>59393</RegID>
<PaneID>0</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>32767</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>4096</RecentFrameAlignment>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>00000000D70300005A070000EA030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>0A0000000A0000006E0000006E000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>59399</RegID>
<PaneID>59399</PaneID>
<IsVisible>0</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>463</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>8192</RecentFrameAlignment>
<RecentRowIndex>1</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>000000001C000000DA01000038000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>0A0000000A0000006E0000006E000000</Data>
</RectRecentFloat>
</Window>
<Window>
<RegID>59400</RegID>
<PaneID>59400</PaneID>
<IsVisible>1</IsVisible>
<IsFloating>0</IsFloating>
<IsTabbed>0</IsTabbed>
<IsActivated>0</IsActivated>
<MRUWidth>612</MRUWidth>
<PinState>0</PinState>
<RecentFrameAlignment>8192</RecentFrameAlignment>
<RecentRowIndex>2</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
<Data>000000001C0000006F02000038000000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<Data>0A0000000A0000006E0000006E000000</Data>
</RectRecentFloat>
</Window>
<DockMan>
<Len>2723</Len>
<Data>000000000B000000000000000040000001000000FFFFFFFFFFFFFFFFA706000054000000AB0600004E020000010000000200001004000000010000003FFEFFFF6201000000000000000000000000000001000000FFFFFFFF17000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C0000FFFF02000B004354616262656450616E65004000000100000060060000720000000F0700009C020000AB060000540000005A0700004E0200000000000040410056170000000753796D626F6C7301000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0352434300000000408C000001000000FFFFFFFFFFFFFFFF065553425F465300000000418C000001000000FFFFFFFFFFFFFFFF0000000000000000000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000020000001000000FFFFFFFFFFFFFFFF4D010000500000005A070000540000000100000001000010040000000100000065FFFFFF36010000FFFFFFFF06000000CB00000057010000CC000000F08B00005A0100007907000001800020000001000000620100006D0000000F0700006E0000004D0100004F0000005A070000500000000000000040280056060000000B446973617373656D626C7901000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000010000001000000FFFFFFFFFFFFFFFF490100004F0000004D0100004E020000010000000200001004000000010000001CFFFFFF07050000FFFFFFFF05000000ED0300006D000000C3000000C40000007394000001800010000001000000150000006D0000005E0100009C020000000000004F000000490100004E0200000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73000000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7300000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657300000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273010000007394000001000000FFFFFFFFFFFFFFFF04000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000001000000FFFFFFFFFFFFFFFF000000004E0200005A0700005202000001000000010000100400000001000000F9FEFFFFC901000000000000000000000000000001000000000000000000000001000000000000000000000001000000FFFFFFFFB401000061020000B801000097030000000000000200000004000000000000000FFEFFFF4104000001000000C6000000FFFFFFFF0E0000008F070000930700009407000095070000960700009007000091070000B5010000B8010000B9050000BA050000BB050000BC050000CB0900000180008000000100000015000000140300000F070000B503000000000000910200005A0700009703000000000000404100560E0000001343616C6C20537461636B202B204C6F63616C73010000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572010000009607000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFF040000000000000002000000000000000100000002000000FFFFFFFF000000008D0200005A07000091020000010000000100001004000000000000004BFFFFFF130100000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF00000000970300005A0700009B0300000100000001000010040000000100000036FEFFFFA4000000FFFFFFFF04000000C5000000C7000000B4010000779400000180008000000100000015000000B90300000F070000F5030000000000009B0300005A070000D70300000000000040820056040000000C4275696C64204F757470757400000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657301000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0642726F777365000000007794000001000000FFFFFFFFFFFFFFFF01000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000</Data>
</DockMan>
<ToolBar>
<RegID>59392</RegID>
<Name>File</Name>
<Buttons>
<Len>2303</Len>
<Data>00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050000000000A6672616D65636F756E74960000000000000014000A6672616D65636F756E7408756E7369676E6564067072696E746600044E6F6E6509696E6372656D656E74132048414C5F54494D5F49525148616E646C65721248414C5F54494D5F49525148616E646C65720971756164636F756E74114253505F4C45445F4F6666284C45443529104253505F4C45445F4F6E284C4544352907494E495464647304494E495408696F75706461746502494F10467265715374657070696E674175746F0848414C5F496E6974077379737469636B0948414C5F44656C61790E696E6372656D656E7470686173650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020001001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F50726F6A6563742057696E646F7773000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65AC030000</Data>
</Buttons>
<OriginalItems>
<Len>1423</Len>
<Data>2800FFFF01001100434D4643546F6F6C426172427574746F6E00E1000000000000FFFFFFFF000100000000000000010000000000000001000000018001E1000000000000FFFFFFFF000100000000000000010000000000000001000000018003E1000000000000FFFFFFFF0001000000000000000100000000000000010000000180CD7F000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF000000000000000000010000000000000001000000018023E1000000000000FFFFFFFF000100000000000000010000000000000001000000018022E1000000000000FFFFFFFF000100000000000000010000000000000001000000018025E1000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001802BE1000000000000FFFFFFFF00010000000000000001000000000000000100000001802CE1000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001807A8A000000000000FFFFFFFF00010000000000000001000000000000000100000001807B8A000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180D3B0000000000000FFFFFFFF000100000000000000010000000000000001000000018015B1000000000000FFFFFFFF0001000000000000000100000000000000010000000180F4B0000000000000FFFFFFFF000100000000000000010000000000000001000000018036B1000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180FF88000000000000FFFFFFFF0001000000000000000100000000000000010000000180FE88000000000000FFFFFFFF00010000000000000001000000000000000100000001800B81000000000000FFFFFFFF00010000000000000001000000000000000100000001800C81000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180F088000000000000FFFFFFFF0001000000000000000100000000000000010000000180EE7F000000000000FFFFFFFF000100000000000000010000000000000001000000018024E1000000000000FFFFFFFF00010000000000000001000000000000000100000001800A81000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001802280000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180C488000000000000FFFFFFFF0001000000000000000100000000000000010000000180C988000000000000FFFFFFFF0001000000000000000100000000000000010000000180C788000000000000FFFFFFFF0001000000000000000100000000000000010000000180C888000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180DD88000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180FB7F000000000000FFFFFFFF000100000000000000010000000000000001000000</Data>
</OriginalItems>
<OrigResetItems>
<Len>1423</Len>
<Data>2800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000000004000000000000000000000000000000000100000001000000018022E100000000000005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000000000700000000000000000000000000000000010000000100000001802CE10000000000000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000000000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000000000C0000000000000000000000000000000001000000010000000180F4B00000000000000D000000000000000000000000000000000100000001000000018036B10000000000000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF880000000000000F0000000000000000000000000000000001000000010000000180FE880000000000001000000000000000000000000000000000010000000100000001800B810000000000001100000000000000000000000000000000010000000100000001800C810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F088000000000000130000000000000000000000000000000001000000010000000180EE7F00000000000014000000000000000000000000000000000100000001000000018024E10000000000001500000000000000000000000000000000010000000100000001800A810000000000001600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000180000000000000000000000000000000001000000010000000180C988000000000000190000000000000000000000000000000001000000010000000180C7880000000000001A0000000000000000000000000000000001000000010000000180C8880000000000001B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180DD880000000000001C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001D000000000000000000000000000000000100000001000000</Data>
</OrigResetItems>
</ToolBar>
<ToolBar>
<RegID>59399</RegID>
<Name>Build</Name>
<Buttons>
<Len>657</Len>
<Data>00200000000000001000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F0000000000001C0000000000000000000000000000000001000000010000000180D07F0000000000001D000000000000000000000000000000000100000001000000018030800000000000001E00000000000000000000000000000000010000000100000001809E8A0000000000001F0000000000000000000000000000000001000000010000000180D17F0000000000002000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000002100000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6EBA00000000000000000000000000000000000000000000000001000000010000009600000003002050FFFFFFFF00960000000000000000000180EB880000000000002200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000230000000000000000000000000000000001000000010000000180B08A000000000000240000000000000000000000000000000001000000010000000180A8010000000000004E00000000000000000000000000000000010000000100000001807202000000000000530000000000000000000000000000000001000000010000000180BE010000000000005000000000000000000000000000000000010000000100000000000000054275696C64CF010000</Data>
</Buttons>
<OriginalItems>
<Len>583</Len>
<Data>1000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F000000000000FFFFFFFF0001000000000000000100000000000000010000000180D07F000000000000FFFFFFFF00010000000000000001000000000000000100000001803080000000000000FFFFFFFF00010000000000000001000000000000000100000001809E8A000000000000FFFFFFFF0001000000000000000100000000000000010000000180D17F000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001804C8A000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001806680000000000000FFFFFFFF0001000000000000000100000000000000010000000180EB88000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180C07F000000000000FFFFFFFF0001000000000000000100000000000000010000000180B08A000000000000FFFFFFFF0001000000000000000100000000000000010000000180A801000000000000FFFFFFFF00010000000000000001000000000000000100000001807202000000000000FFFFFFFF0001000000000000000100000000000000010000000180BE01000000000000FFFFFFFF000100000000000000010000000000000001000000</Data>
</OriginalItems>
<OrigResetItems>
<Len>583</Len>
<Data>1000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F000000000000000000000000000000000000000000000001000000010000000180D07F00000000000001000000000000000000000000000000000100000001000000018030800000000000000200000000000000000000000000000000010000000100000001809E8A000000000000030000000000000000000000000000000001000000010000000180D17F0000000000000400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000000500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001806680000000000000060000000000000000000000000000000001000000010000000180EB880000000000000700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000080000000000000000000000000000000001000000010000000180B08A000000000000090000000000000000000000000000000001000000010000000180A8010000000000000A000000000000000000000000000000000100000001000000018072020000000000000B0000000000000000000000000000000001000000010000000180BE010000000000000C000000000000000000000000000000000100000001000000</Data>
</OrigResetItems>
</ToolBar>
<ToolBar>
<RegID>59400</RegID>
<Name>Debug</Name>
<Buttons>
<Len>2220</Len>
<Data>00200000010000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000004002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000020001002D0000000000000000000000000000000001000000010000000180F07F0000020001002E0000000000000000000000000000000001000000010000000180E8880000020001003700000000000000000000000000000000010000000100000001803B010000020001002F0000000000000000000000000000000001000000010000000180BB8A00000200010030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000002000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000002001380D88B000000000000310000000757617463682031000000000000000000000000010000000100000000000000000000000100000000001380D98B0000000000003100000007576174636820320000000000000000000000000100000001000000000000000000000001000000000013800F01000002000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000084D656D6F72792031000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000084D656D6F72792032000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000084D656D6F72792033000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000084D656D6F727920340000000000000000000000000100000001000000000000000000000001000000000013801001000002000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000755415254202331000000000000000000000000010000000100000000000000000000000100000000001380940700000000000033000000075541525420233200000000000000000000000001000000010000000000000000000000010000000000138095070000000000003300000007554152542023330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000000E49544D2F525441205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000020000003400000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380658A000000000000340000000E4C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E00000014506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000D436F646520436F76657261676500000000000000000000000001000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720100000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720100000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000138001890000020000003600000007546F6F6C626F7800000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730100000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F72010000000000000001000000000000000100000000000000000000000100000000000000000005446562756764020000</Data>
</Buttons>
<OriginalItems>
<Len>898</Len>
<Data>1900FFFF01001100434D4643546F6F6C426172427574746F6ECC88000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001801780000000000000FFFFFFFF00010000000000000001000000000000000100000001801D80000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001801A80000000000000FFFFFFFF00010000000000000001000000000000000100000001801B80000000000000FFFFFFFF0001000000000000000100000000000000010000000180E57F000000000000FFFFFFFF00010000000000000001000000000000000100000001801C80000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001800089000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180E48B000000000000FFFFFFFF0001000000000000000100000000000000010000000180F07F000000000000FFFFFFFF0001000000000000000100000000000000010000000180E888000000000000FFFFFFFF00010000000000000001000000000000000100000001803B01000000000000FFFFFFFF0001000000000000000100000000000000010000000180BB8A000000000000FFFFFFFF0001000000000000000100000000000000010000000180D88B000000000000FFFFFFFF0001000000000000000100000000000000010000000180D28B000000000000FFFFFFFF00010000000000000001000000000000000100000001809307000000000000FFFFFFFF0001000000000000000100000000000000010000000180658A000000000000FFFFFFFF0001000000000000000100000000000000010000000180C18A000000000000FFFFFFFF0001000000000000000100000000000000010000000180EE8B000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001800189000000000000FFFFFFFF000100000000000000010000000000000001000000</Data>
</OriginalItems>
<OrigResetItems>
<Len>898</Len>
<Data>1900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000000000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000000100000000000000000000000000000000010000000100000001801D800000000000000200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000000300000000000000000000000000000000010000000100000001801B80000000000000040000000000000000000000000000000001000000010000000180E57F0000000000000500000000000000000000000000000000010000000100000001801C800000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000000700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B000000000000080000000000000000000000000000000001000000010000000180F07F000000000000090000000000000000000000000000000001000000010000000180E8880000000000000A00000000000000000000000000000000010000000100000001803B010000000000000B0000000000000000000000000000000001000000010000000180BB8A0000000000000C0000000000000000000000000000000001000000010000000180D88B0000000000000D0000000000000000000000000000000001000000010000000180D28B0000000000000E000000000000000000000000000000000100000001000000018093070000000000000F0000000000000000000000000000000001000000010000000180658A000000000000100000000000000000000000000000000001000000010000000180C18A000000000000110000000000000000000000000000000001000000010000000180EE8B0000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180018900000000000013000000000000000000000000000000000100000001000000</Data>
</OrigResetItems>
</ToolBar>
<ControlBarsSummary>
<Bars>0</Bars>
<ScreenCX>1920</ScreenCX>
<ScreenCY>1080</ScreenCY>
</ControlBarsSummary>
</ViewEx>
</WinLayoutEx>
<MDIGroups>
<Orientation>1</Orientation>
<ActiveMDIGroup>0</ActiveMDIGroup>
<MDIGroup>
<Size>100</Size>
<ActiveTab>3</ActiveTab>
<Doc>
<Name>.\Src\main.c</Name>
<ColumnNumber>0</ColumnNumber>
<TopLine>31</TopLine>
<CurrentLine>107</CurrentLine>
<Folding>1</Folding>
<ContractedFolders></ContractedFolders>
<PaneID>0</PaneID>
</Doc>
<Doc>
<Name>startup_stm32f407xx.s</Name>
<ColumnNumber>0</ColumnNumber>
<TopLine>181</TopLine>
<CurrentLine>190</CurrentLine>
<Folding>1</Folding>
<ContractedFolders></ContractedFolders>
<PaneID>0</PaneID>
</Doc>
<Doc>
<Name>.\Src\tm_stm32f4_usb_vcp.c</Name>
<ColumnNumber>11</ColumnNumber>
<TopLine>131</TopLine>
<CurrentLine>103</CurrentLine>
<Folding>1</Folding>
<ContractedFolders></ContractedFolders>
<PaneID>0</PaneID>
</Doc>
<Doc>
<Name>..\..\Drivers\BSP\STM32F4-Discovery\stm32f4_discovery.c</Name>
<ColumnNumber>0</ColumnNumber>
<TopLine>195</TopLine>
<CurrentLine>204</CurrentLine>
<Folding>1</Folding>
<ContractedFolders></ContractedFolders>
<PaneID>0</PaneID>
</Doc>
</MDIGroup>
</MDIGroups>
</ProjectGui>
|
65170c917c2dcf3da2f859160fea6126a84bdcb2 | 348b83f2cd32e6616b86e704a374661890d58cda | /signal1.sce | 08af6af623da53bdb8f125ef3742a3379397ec2e | [] | no_license | YashGandhi17/Scilab | 012b35caad56d0c7600b9a207956e25774339c66 | 6d509dc17afe2ca32376df795693c84f94e3f360 | refs/heads/master | 2020-04-07T03:13:24.046967 | 2018-11-17T17:24:44 | 2018-11-17T17:24:44 | 157,837,866 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 313 | sce | signal1.sce | //X(n)=c*(a*n)
disp("waveform is x(n)=c*(a^n)")
n1=input("enter starting range of n");
n2=input("enter ending range of n");
n=n1:1:n2;
a=input("enter a");
c=input("enter c");
Xn=c*(a^n);
figure(1);
plot2d3(n,Xn);
xlabel("n");
ylabel("Xn");
title("Xn=c*(a^n)");
E=sum(Xn.*Xn);
disp(E,"Energy: ");
|
73b8aaed1663fe3e83ecd9fbafe04d8512e7c255 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2969/CH13/EX13.9/Ex13_9.sce | 4b7b3245bdf0d50251f05b00d405b2e6878ed2a2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex13_9.sce | clc
clear
//DATA GIVEN
To=1000; //initial tension in the belt in N
theta=150; //angle of embrace in degrees
mu=0.25; //coefficient of friction
v=500; //speed of the belt in m/min
//Initial tension, To=(T1+T2)/2
//so, (T1+T2)=2000.............................. (1)
theta=theta*(%pi)/180; //theta converted into radians
c=%e^(mu*theta); //so, T2/T1=c........(2)
//By equation (1) and (2),
T2=(To*2)/(c+1); //tension in the slack side in N
T1=c*T2; //tension in the tight side in N
v=v/60; //speed of the belt converted into m/s
P=(T1-T2)*v; //power transmitted by the belt in watts
printf(' (i) The Tension in the tight side T1 is: %4.0f N. \n',T1);
printf(' The Tension in the slack side T2 is: %3.1f N. \n',T2);
printf(' (ii) The Power transmitted by the belt is: %2.2f kW. \n',(P/1000));
|
0e06323750b034bb8e5342aa990786e4aa101e19 | d465fcea94a1198464d7f8a912244e8a6dcf41f9 | /system/kiks_arena_window_open.sci | 404e4d4ca592965af50c5870b88004501831af81 | [] | 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 | 1,943 | sci | kiks_arena_window_open.sci | function [] = kiks_arena_window_open()
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
// -----------------------------------------------------
// (c) 2000-2004 Theodor Storm <theodor@tstorm.se>
// http://www.tstorm.se
// -----------------------------------------------------
global("KIKS_2DVISUALIZE","KIKS_GUI_HDL","KIKS_ARENA_HDL");
// !! L.9: Matlab function figure not yet converted
// !! L.9: Matlab function figure not yet converted, original calling sequence used
figure(KIKS_GUI_HDL);
KIKS_2DVISUALIZE = 1;
// !! L.11: Unknown function kiks_arena_window_init not converted, original calling sequence used
kiks_arena_window_init;
// !! L.12: Matlab function findobj not yet converted, original calling sequence used
// L.12: Name conflict: function name changed from findobj to %findobj
H = %findobj(KIKS_GUI_HDL,"Tag","toggle2dvis");
// !! L.13: Matlab function set not yet converted, original calling sequence used
// L.13: Name conflict: function name changed from set to %set
%set(H,"String","disable visualization");
// !! L.14: Matlab function findobj not yet converted, original calling sequence used
// L.14: Name conflict: function name changed from findobj to %findobj
H = %findobj(KIKS_GUI_HDL,"Tag","arena_redraw");
// !! L.15: Matlab function set not yet converted, original calling sequence used
// L.15: Name conflict: function name changed from set to %set
%set(H,"Enable","on");
// !! L.16: Matlab function findobj not yet converted, original calling sequence used
// L.16: Name conflict: function name changed from findobj to %findobj
H = %findobj(KIKS_GUI_HDL,"Tag","arena_grid");
// !! L.17: Matlab function set not yet converted, original calling sequence used
// L.17: Name conflict: function name changed from set to %set
%set(H,"Enable","on");
// !! L.19: Unknown function kiks_gui_resize not converted, original calling sequence used
kiks_gui_resize(648);
endfunction
|
913f9585d0f4ac905426533855bb0fbed7eb04bd | a8f42082049435843c9744242d5227d93bd88745 | /kadai3.sce | 9392f6350e3bb60353d537e0eeff40a2892cbb57 | [] | no_license | SatokiOgiso/crs_excercise | e5d44f3fd39287a1ea624befd530e2d23f21f022 | 5ff0cbfd56868b02a3b46cf8fd08ddf5abe443d6 | refs/heads/master | 2021-01-10T15:34:17.113920 | 2015-10-22T17:23:06 | 2015-10-22T17:23:06 | 44,755,522 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 596 | sce | kadai3.sce | //課題3
exec('sparse2crs.sci');
exec('prod_matrix_vector_crs.sci');
exec('prod_matrix_t_vector_crs.sci');
A = sprand(1000, 1000, 0.005); A = A.' + A;
AL = tril(A, -1); // 下三角行列を求める
AD = diag(A); //対角成分のみの 1-dimentional array
[AAL, IAL, JAL] = sparse2crs(AL); //下三角行列をCRS形式に変換
x = ones(1000, 1); //適当にベクトルを作る
y = prod_matrix_vector_crs(AAL, IAL, JAL, x) + AD .* x + prod_matrix_t_vector_crs(AAL, IAL, JAL, x);// AL * x + AD * x + AL^T * x
norm_of_difference = norm(y - A * x);
print(%io(2), norm_of_difference)
|
846a2488e8bc86a53a7bd449d5e6d51a0e86a466 | cccbd1095e2f872b44c9f2cf3aaea40ce3b94a77 | /Bilderrating/CR_Scenario_Kaufverlangen_Bilder.sce | 5a10b5e818cdef4ecff3092fafd4a64697272779 | [] | no_license | Robstei/work | ca8a70dba742f520f16e0d7688fa448c79d7c2c5 | 0c7e3bedc1d66db3148de57f13d406d787b756df | refs/heads/master | 2021-07-16T17:37:10.588912 | 2020-05-17T19:51:43 | 2020-05-17T19:51:43 | 152,545,932 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,986 | sce | CR_Scenario_Kaufverlangen_Bilder.sce | /*
*
* Cue Reactivity
*
* Version: Presentation 17.0
*
* Author: Jan Henry van der Vegte 02.05.2016
* Institute: University of Duisburg-Essen
* Department: General Psychology: Cognition
*/
#-- HEADER --#
#-- BASIC PREFERENCES --#
# PCL-File
pcl_file = "CR_Control.pcl";
# name of this scenario
scenario = "CR_Scenario_Kaufverlangen_Bilder";
# button definition
active_buttons = 6;
button_codes = 1,2,3,4,5,6;
# response matching
response_matching = simple_matching;
#fond and color settings
default_font_size = 20;
default_font = "Arial bold";
default_background_color =0,0,0;
default_text_color = 255,255,255;
#don't export standard logfile
no_logfile = true;
# trial defaults
default_trial_type = fixed;
#-- /HEADER --#
begin;
#-- BODY --#
#-- VARIABLES --#
#InstructionText
$instruktion = "instruktion.png";
$stimulusDefault = "default-pic.jpg";
# name of the paradigm (in logfile):
$paradigmName = "Gambling_Pictures";
#solution preferences (comment/uncomment settings according to your display solution)
#1366x768/1200x800
$stimuliWidth = 950;
$stimuliHeight = 534;
$pictureX = 0;
$pictureY = 50;
$dimensionX = 0;
$dimensionY = -295;
$scaleXLeft = -270;
$scaleXRight = 245;
$scaleY = -350;
$dot1X = -120;
$dot2X = -60;
$dot3X = 0;
$dot4X = 60;
$dot5X = 120;
$instructionWidth = 1024;
$instructionHeight = 768;
#1920x1080/1920x1200 (HD | >)
# $stimuliWidth = 630;
# $stimuliHeight = 882;
# $pictureX = 0;
# $pictureY = 50;
# $dimensionX = 0;
# $dimensionY = -435;
# $scaleXLeft = -270;
# $scaleXRight = 245;
# $scaleY = -490;
# $dot1X = -120;
# $dot2X = -60;
# $dot3X = 0;
# $dot4X = 60;
# $dot5X = 120;
# $instructionWidth = 1300;
# $instructionHeight = 700;
#Custom solution (Insert and uncomment values below)
# $stimuliWidth = 0;
# $stimuliHeight = 0;
# $pictureX = 0;
# $pictureY = 0;
# $dimensionX = 0;
# $dimensionY = 0;
# $scaleXLeft = 0;
# $scaleXRight = 0;
# $scaleY = -0;
# $dot1X = 0;
# $dot2X = 0;
# $dot3X = 0;
# $dot4X = 0;
# $dot5X = 0;
# $instructionWidth = 1300;
# $instructionHeight = 700;
#rating dot destination
$dot_blank = "rating/dot_blank.png";
$dot_filled = "rating/dot_filled.png";
$dotSize = 50;
#default rating text
$defaultRatingText1 = "1";
$defaultRatingText2 = "2";
$defaultRatingText3 = "3";
$defaultRight = "sehr stark";
$defaultLeft = "gar nicht";
$itiDuration = 500;
#-- LOAD DATA --#
array{
bitmap {filename = "Probebilder/iv1.jpg";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Probebilder/iv11.jpg";height = $stimuliWidth; width = $stimuliHeight;};
}testStimuli;
array{
#gambling pictures
bitmap {filename = "Shopping/S_1.jpg";description = "1";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_3.jpg";description = "2";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_4.jpg";description = "3";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_5.jpg";description = "4";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_7.jpg";description = "5";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_8.jpg";description = "6";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_9.jpg";description = "7";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_10.jpg";description = "8";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_11.jpg";description = "9";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_12.jpg";description = "10";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_Desktop_95.jpg";description = "11";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_Desktop_100.jpg";description = "12";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_Desktop_110.jpg";description = "13";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_Laptop_113.jpg";description = "14";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_Laptop_122.jpg";description = "15";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_Smartphone_43.jpg";description = "16";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_Smartphone_49.jpg";description = "17";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_Smartphone_57.jpg";description = "18";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_Tablet_533.jpg";description = "19";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Shopping/S_Tablet_540.jpg";description = "20";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_1.jpg";description = "21";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_3.jpg";description = "22";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_4.jpg";description = "23";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_5.jpg";description = "24";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_6.jpg";description = "25";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_8.jpg";description = "26";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_16.jpg";description = "27";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_20.jpg";description = "28";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_23.jpg";description = "29";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_28.jpg";description = "30";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_30.jpg";description = "31";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_34.jpg";description = "32";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_37.jpg";description = "33";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_40.jpg";description = "34";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_42.jpg";description = "35";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_43.jpg";description = "36";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_47.jpg";description = "37";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_48.jpg";description = "38";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_50.jpg";description = "39";height = $stimuliWidth; width = $stimuliHeight;};
bitmap {filename = "Kontrolle/K_51.jpg";description = "40";height = $stimuliWidth; width = $stimuliHeight;};
}stimuli;
#name in logfile
text {
caption = $paradigmName;
}paradigmName;
# Trial Definitions
#-- INSTRUCTION 1 --#
trial {
trial_duration = forever;
trial_type = specific_response;
terminator_button = 6;
stimulus_event {
picture {
bitmap {filename ="instructions/instruction1.png";height = $instructionHeight; width = $instructionWidth;};
x = 0; y = 0;};
};
}instruction1;
#-- /INSTRUCTION 1 --#
#-- INSTRUCTION 2 --#
trial {
trial_duration = forever;
trial_type = specific_response;
terminator_button = 6;
stimulus_event {
picture {
bitmap {filename ="instructions/instruction2.png";height = $instructionHeight; width = $instructionWidth;};
x = 0; y = 0;};
};
}instruction2;
#-- /INSTRUCTION 2 --#
#-- INSTRUCTION 3 --#
trial {
trial_duration = forever;
trial_type = specific_response;
terminator_button = 6;
stimulus_event {
picture {
bitmap {filename ="instructions/instruction3.png";height = $instructionHeight; width = $instructionWidth;};
x = 0; y = 0;};
};
}instruction3;
#-- /INSTRUCTION 3 --#
#-- INSTRUCTION 4 --#
trial {
trial_duration = forever;
trial_type = specific_response;
terminator_button = 6;
stimulus_event {
picture {
bitmap {filename ="instructions/instruction4.png";height = $instructionHeight; width = $instructionWidth;};
x = 0; y = 0;};
};
}instruction4;
#-- /INSTRUCTION 4 --#
#-- INSTRUCTION 5 --#
trial {
trial_duration = forever;
trial_type = specific_response;
terminator_button = 6;
stimulus_event {
picture {
bitmap {filename ="instructions/instruction5.png";height = $instructionHeight; width = $instructionWidth;};
x = 0; y = 0;};
};
}instruction5;
#-- /INSTRUCTION 5 --#
#-- INSTRUCTION 6 --#
trial {
trial_duration = forever;
trial_type = specific_response;
terminator_button = 6;
stimulus_event {
picture {
bitmap {filename ="instructions/instruction6.png";height = $instructionHeight; width = $instructionWidth;};
x = 0; y = 0;};
};
}instruction6;
#-- /INSTRUCTION 6 --#
#-- INSTRUCTION 7 --#
trial {
trial_duration = forever;
trial_type = specific_response;
terminator_button = 6;
stimulus_event {
picture {
bitmap {filename ="instructions/instruction7.png";height = $instructionHeight; width = $instructionWidth;};
x = 0; y = 0;};
};
}instruction7;
#-- /INSTRUCTION 7 --#
#-- DEBRIEFING --#
trial {
trial_duration = forever;
trial_type = specific_response;
terminator_button = 6;
stimulus_event {
picture {
text {caption ="Die Aufgabe ist nun beendet.\n\nBitte wenden Sie sich an den Versuchsleiter.";};
x = 0; y = 0;};
};
}debriefing;
#-- /DEBRIEFING --#
#-- ITI --#
trial {
stimulus_event {
picture{};
duration = $itiDuration;
};
}iti;
#-- /ITI --#
#-- RATING PAGE --#
trial
{
trial_duration = forever;
trial_type = specific_response;
terminator_button = 1,2,3,4,5;
picture
{
#stimuli
bitmap
{
filename = $stimulusDefault; width = $stimuliWidth; height = $stimuliHeight;
}ratingStimulus;
x = $pictureX; y = $pictureY;
#instruction text
text
{
caption = $defaultRatingText1;
font_size = 22;
}ratingPageText;
x = $dimensionX; y = $dimensionY;
#left
text
{
caption = $defaultLeft;
font_size = 18;
}leftText;
x = $scaleXLeft; y = $scaleY;
#right
text
{
caption = $defaultRight;
font_size = 18;
}rightText;
x = $scaleXRight; y = $scaleY;
#rating dots
bitmap
{
filename = $dot_blank; width = $dotSize; height = $dotSize;
}dot1;
x = $dot1X; y = $scaleY;
bitmap
{
filename = $dot_blank; width = $dotSize; height = $dotSize;
}dot2;
x = $dot2X; y = $scaleY;
bitmap
{
filename = $dot_blank; width = $dotSize; height = $dotSize;
}dot3;
x = $dot3X; y = $scaleY;
bitmap
{
filename = $dot_blank; width = $dotSize; height = $dotSize;
}dot4;
x = $dot4X; y = $scaleY;
bitmap
{
filename = $dot_blank; width = $dotSize; height = $dotSize;
}dot5;
x = $dot5X; y = $scaleY;
#placeholder for input
text { caption = " "; } ratingInput;
x = 0; y = -1500;
}ratingPicture;
#time=0;
code = "ratingPage";
}ratingPage;
#-- /RATING PAGE --# |
4416e14f572a862f2a3435b69335d8edbee22d54 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1787/CH2/EX2.12/Exa2_12.sce | eb8a8dd339eb4f611d918edbf05ba5c159db9689 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 591 | sce | Exa2_12.sce | //Exa 2.12
clc;
clear;
close;
//given data
e=1.6*10^-19;//in coulamb
MUh=0.18;//in m^2/V-s
MUe=0.38;//in m^2/V-s
V=10;//in Volts
l=25;//in mm
w=4;//in mm
t=1.5;//in mm
E=V/(l*10^-3);//in
//part (i)
ve=MUe*E;//in m/s
vh=MUh*E;//in m/s
disp(ve,"Drift velocity for electrons in m/s : ");
disp(vh,"Drift velocity for holes in m/s : ");
ni=2.5*10^19;//in m^-3
//part (ii)
SIGMAi=ni*e*(MUe+MUh);//in (ohm-m)^-1
disp(SIGMAi,"Conductivity of Ge(intrinsic) in (ohm-m)^-1 ");
//part (iii)
I=SIGMAi*E*w*10^-3*t*10^-3;//in Ampere
disp(I*10^3,"Total current in mili ampere : "); |
a132e9bd4f564682e44378d9e07e7388b4c07055 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1118/CH8/EX8.1/eg8_1.sce | 71a343c437c2621458180ad99fc4d3f58aee6db3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 250 | sce | eg8_1.sce | clear;
//clc();
z=complex(4,60);
mva_base=100;
kv_base=230;
zpu=z*mva_base/(kv_base^2);
printf('the per unit impedance is:');
disp(zpu)
ys=(%i)*(2*10^(-3));
ypu=ys*(kv_base^2)/mva_base;
printf("the per unit admittance is:");
disp(ypu);
|
6fd80ff2da25695d731875891c29673ad165cda9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /293/CH2/EX2.3/eg2_3.sce | 9a2694bb58d1e0bcbec900e9d70e9eb106cb294c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 272 | sce | eg2_3.sce | L = 1; //length of the copper wire in meters
A = 1 * 10^-4; // cross sectional area of the wire in meter square
rho = 1.724 * 10^-8; // resistivity of copper in ohm meter
R = rho*L / A; // resistance of the wire in ohm
disp(R, "resistance of the wire (in ohms)=") |
56b46c9bf9ad56c432f2304811516507c7c22e65 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3871/CH6/EX6.18/Ex6_18.sce | 5dac1f964d9ac692e20fe4a9852566e3f5ef9ab0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,379 | sce | Ex6_18.sce | //===========================================================================
//chapter 6 example 18
clc;
clear all;
//variable declraration
Ts = 300; //number of turns in secondary winding
Tp = 1; //number of turns in primary winding
Is =5; //current in A
Zs =(1.5)+(%i*1) //secondary impedance Ω
MMF = 100;
Pi = 1.2; //iron loss in watts
KN = 300; //turn ratio
//calculations
KT =Ts/Tp; //turn ratio
Es = Is*Zs; //secondary voltage in volts
Es1 = sqrt(((real(Es))^2)+((imag(Es))^2));
Im =MMF/Tp; //magnetising current in A
E = Pi/Es1; //energy compnent of exciting current on secondary side in A
Ie = KT*E; //energy compnent of exciting current on primary side in A
I0 = Im+%i*Ie; //exciting current on primary side in A
I01 =sqrt(((real(I0))^2)+((imag(I0))^2));
alpha = atan(Ie/Im);
alpha1 = (alpha*180)/%pi;
theta = atan(imag(Zs)/real(Zs));
theta1 = (theta*180)/%pi;
KC = KT+((I01*sin(((theta1+alpha1)*%pi)/180))/Is); //actual current ratio
e = ((KN-KC)/KC)*100; //percentage ratio error in %
b = (I01*cos((((theta1+alpha1)*%pi)/180)))/(KT*Is); //phase angle in radians
b1 = b*(180/%pi);
//result
mprintf("percentage ratio error =%3.2f percentage ",e);
mprintf("\nphase angle = %3.2f °",b1);
|
50b394cc5540dc638d74b5782203eb06875faad0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3705/CH14/EX14.5/Ex14_5.sce | 799cc3e53765fa7ea6610e9f57b12bd836fafea8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 997 | sce | Ex14_5.sce |
clear//
//Variable Declaration
Ix_bar=37.37*10**6 //Moment of inertia in mm^4
Iy_bar=21.07*10**6 //Moment of inertia in mm^4
Ixy_bar=-16.073*10**6 //Moment of inertia in mm^4
//Calculations
b=(Ix_bar+Iy_bar)*0.5 //Parameter for the circle in mm^4
R=sqrt(((Ix_bar-Iy_bar)*0.5)**2+Ixy_bar**2) //Radius of the Mohr's Circle in mm^4
//Part 1
I1=b+R //MI in mm^4
I2=b-R //MI in mm^4
theta1=asin(abs(Ixy_bar)/R)*180*%pi**-1*0.5 //Angle in degrees
theta2=theta1+90 //Angle in degrees
//Part 2
alpha=(100-theta1*2)*0.5 //Angle in degrees
Iu=(b)+R*(cos(alpha*%pi*180**-1)) //MI in mm^4
Iv=(b)-R*(cos(alpha*%pi*180**-1)) //MI in mm^4
Iuv=R*sin(2*alpha*%pi*180**-1) //MI in mm^4
//Result
printf("\n The Principal Moment of inertias are as follows")
printf("\n I1= %0.0f mm^4 and I2= %0.0f mm^4",I1,I2)
printf("\n Princial direction are theta1= %0.1f degrees theta2= %0.1f degrees" ,theta1,theta2)
printf("\n The moment of inertia along the uv-axis is %0.0f mm^4" ,Iuv)
|
8b462b806ca0206d81d83ab0c5f3d55806f0bf1e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2534/CH5/EX5.14/Ex5_14.sce | 8747bb279c9387420d0cb45922b364eb7e410a4d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 277 | sce | Ex5_14.sce | //Ex5_14
clc
C = 10*10^-3
f = 50
Idc = 200*10^-3
Vr = Idc/(2*f*C)
disp("C = "+string(C)+"F")//circuit capacitance
disp("f = "+string(f)+"Hz")//operating frequency
disp("Idc = "+string(Idc)+"A")//D.C. current
disp("Vr = Idc/(2*f*C) = "+string(Vr)+"V")//ripple voltage
|
b9e67241c9c6c51eaff27f78811f2b75a5d5a17b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2870/CH2/EX2.16/Ex2_16.sce | 3df5d310e10ac13f4f22a848ecee0bdcb0692a96 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 627 | sce | Ex2_16.sce | clc;clear;
//Example 2.16
//answers vary due to round off error
//constants used
g=9.81;//acceleration due to gravity in m/s^2;
//given values
h=50;
m=5000;
Wout=1862;
ngen=0.95;//efficiency of turbine
//calculation
X=g*h/1000;// X stands for the differnce b/w change in mechanical energy per unit mass
R=m*X;//rate at which mech. energy is supplied to turbine in kW
nov=Wout/R;//overall efficiency i.e turbine and generator
disp(nov,'overall efficiency is');
ntu=nov/ngen;//efficiency of turbine
disp(ntu,'efficiency of turbine is');
Wsh=ntu*R;//shaft output work
disp(Wsh,'shaft power output in kW')
|
03610365fdcf5a65bf05eb6e8472dc27f1bb8655 | 449d555969bfd7befe906877abab098c6e63a0e8 | /52/CH7/EX7.2/Example7_2.sce | 642fa9faaa5d0eb49df008127f6894faa19302f2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 200 | sce | Example7_2.sce | //Example 7.2
//To Compute Subtraction
//(a) 0.25 from 0.5
clear;
clc ;
close ;
a=0.5;
b=0.25;
c=a-b;
disp(c,'=',b,'-',a,'PART 1');
//(a) 0.5 from 0.25
d=b-a;
disp(d,'=',a,'-',b,'PART 2'); |
2056b6a81c5f26970729c66459d33d73868d42c4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1583/CH7/EX7.2/Oscillators_Ex_7_2.sce | 643bf35d91befce1757b6200b85197856dca70b6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 574 | sce | Oscillators_Ex_7_2.sce | clc
//Chapter 7:Conditions for Oscillation
//example 7.2 page no 251
//given
B=100
f=5*10^6//oscillator frequency
L=10*10^-6//inductor
X=(L*(2*%pi*f)^2)^-1//Taking X=C1'*C2/(C1'+C2)
r=3.14//series resistance of inductor
C1=200*10^-12//first capacitor(asumming values of capacitors)
C2=200*10^-12//second capacitor
Y=(1+B)/(((2*%pi*f)^2)*C1*C2)
Z=L/C1
rpi=(Y-Z)*r^-1//resistance
gm=rpi^-1//transconductance
I=gm/40//bias current
mprintf('the equivalent capacitance is %3.2e pF \n the resistance value is %3.2e ohm \n the bias current is %3.2e A',X,rpi,I)
|
20a7766dd6aebdae8a9cd8e74d29ec1997edecee | 449d555969bfd7befe906877abab098c6e63a0e8 | /2132/CH4/EX4.12/Example4_12.sce | f30c4c89779a30557446c9196d8ebcd108db9414 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example4_12.sce | //Example 4.12
clc;
clear;
close;
format('v',9);
//Given data :
S1=0.005;//sp. gravity
S2=0.79;//sp. gravity
S3=13.6;//sp. gravity
h=30/1000;//m
w=1000*9.81;//N/m^3
pAB=h*(S3-S2)*w;//N/m^2
disp(pAB,"Pressure difference between the two vessel in N/m^2: ");
|
bc5839ecfbc17756a45907250e8cd08465730f4e | 449d555969bfd7befe906877abab098c6e63a0e8 | /23/CH12/EX12.6/Example_12_6.sce | c5f70306b0f205e920f05a08c87db0d4b5642653 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example_12_6.sce | clear;
clc;
//To find Approx Value
function[A]=approx(V,n)
A=round(V*10^n)/10^n;//V-Value n-To what place
funcprot(0)
endfunction
//Example 12.6
//Caption : Program to Calculate Heat Transfer Rate in Single effect Evaporator
T0=298.15;//[K]
T=361.5;//[K]
mT=1.25;//[Kg/s] 10% NaOH
m_steam=1;//[Kg/s] at P=76 torr and 361.5K
m_50NaOH=mT-m_steam;//[Kg/s] at 361.5K
//From Steam tables
//at 76 torr and 361.15K
H_steam=2666;//[KJ/kg]
//for 10% NaOH soln at 294.15K
H_10NaOH=79;//[KJ/Kg]
//for 50% NaOH soln at 361.15K
H_50NaOH=500;//[KJ/Kg]
dH=(m_steam*H_steam)+(m_50NaOH*H_50NaOH)-(mT*H_10NaOH);
Q=dH;
disp('kW or kJ/s',Q,'Heat Transfer rate')
//End |
aba1a435d1b06dc11c1caee039cdc4b5c80d1969 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1202/CH11/EX11.3/11_3.sce | 6c9369bb8ec0fa06819ee384188fcbdc2c1dbf01 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 3,653 | sce | 11_3.sce | clear
clc
//Example 11.3
disp('Example 11.3')
//(a)
K=0.2;theta=7.4;tauc=[8 15]';
Kc1=1/K*(2*tauc+theta)./(tauc+theta).^2; //Row M
Kc2=1/K*(2*tauc+theta)./(tauc+theta/2).^2; //Row N
tauI=2*tauc+theta;
tauD=(tauc*theta+theta^2/4)./(2*tauc+theta);
mprintf(' Kc tauI tauD')
mprintf('\nPI(tauC=8) %f %f %f',Kc1(1),tauI(1),0)
mprintf('\nPI(tauC=15) %f %f %f',Kc1(2),tauI(2),0)
mprintf('\nPID(tauC=8) %f %f %f',Kc2(1),tauI(1),tauD(1))
mprintf('\nPID(tauC=15) %f %f %f',Kc2(2),tauI(2),tauD(2))
s=%s;
//delay=(1-theta/2*s+theta^2/10*s^2-theta^3/120*s^3)/(1+theta/2*s+theta^2/10*s^2+theta^3/120*s^3);//Third order pade approx
delay=(1-theta/2*s+theta^2/10*s^2)/(1+theta/2*s+theta^2/10*s^2);//second order pade approx
//delay=(1-theta/2*s)/(1+theta/2*s);//first order pade approx
G=K*delay/s;
Gc1=Kc1.*(1+(1)./tauI/s)
Gc2=Kc2.*(1+(1)./tauI/s+tauD*s./(0.1*tauD*s+1));//PID with derivative filtering
G_CL1=syslin('c',Gc1*G./(1+Gc1*G));
G_CL2=syslin('c',Gc2*G./(1+Gc2*G));
t=0:300;
y1=csim('step',t,G_CL1);
y2=csim('step',t,G_CL2);
y1(:,1:theta)=0;//accounting for time delay--this is required otherwise
//an unrealistic inverse response is seen due to the pade approx
y2(:,1:theta)=0;
t_d=151:300;
G_CL_dist1=syslin('c',G./(1+Gc1*G));//closed loop wrt disturbance
G_CL_dist2=syslin('c',G./(1+Gc2*G));//closed loop wrt disturbance
y_d1=csim('step',t_d,G_CL_dist1);
y_d1(:,1:theta)=0;//accounting for time delay
y_d2=csim('step',t_d,G_CL_dist2);
y_d2(:,1:theta)=0;//accounting for time delay
y1(:,t_d)=y1(:,t_d)+y_d1;
y2(:,t_d)=y2(:,t_d)+y_d2;
//plot(t,y1)
//xgrid()
//xtitle('Ex-11.3 PI control','Time(min)','y(t)');
//a=legend("$\tau_c=8$","$\tau_c=15$",position=1);
//a.font_size=2;
//a=get("current_axes");b=a.title;b.font_size=5;c=a.x_label;c.font_size=5;
//c=a.y_label;c.font_size=5;
//scf()
//
//plot(t,y2)
//xgrid()
//xtitle('Ex-11.3 PID control','Time(min)','y(t)');
//a=legend("$\tau_c=8$","$\tau_c=15$",position=1);
//a.font_size=2;
//a=get("current_axes");b=a.title;b.font_size=5;c=a.x_label;c.font_size=5;
//c=a.y_label;c.font_size=5;
mprintf('\n\nThere is uncertainty as to whether PID with derivative filtering\n...
to be used or not. Since one gets results by using PID with filtering\n...
it has been used here. Note that pade approx for delay=7.4\n...
is totally wrong because it is too gross an approx but we have no\n...
other way of making delay approx so we have to live with it.\n\n...')
//Part (b) Routh Array testing
//For frequency response refer to ch-13 for Bode Plots
G=(1-theta*s)/s;
poly_PI=Gc1*G;//denom(G_CL1);//G*Gc for PI controller
poly_PID=Gc2*G;//G*Gc for PID controller
Routh1=routh_t(poly_PI(1,1)/1,poly(0,"K")); // produces routh table for polynomial 1+Kc*poly
disp(Routh1,"Routh1=")
Kmax1=roots(numer(Routh1(1,1)));
Routh2=routh_t(poly_PI(2,1)/1,poly(0,"K")); // produces routh table for polynomial 1+Kc*poly
disp(Routh2,"Routh2=")
Kmax2=roots(numer(Routh2(1,1)));
Routh3=routh_t(poly_PID(1,1)/1,poly(0,"K")); // produces routh table for polynomial 1+Kc*poly
disp(Routh3,"Routh3=")
//Kmax3=roots(numer(Routh3(1,1)));
Routh4=routh_t(poly_PID(2,1)/1,poly(0,"K")); // produces routh table for polynomial 1+Kc*poly
disp(Routh4,"Routh4=")
//Kmax4=roots(numer(Routh4(1,1)));
mprintf('\n Kmax should be less than %f and %f \n for tauc=8 and 15 respectively for PI system to be stable',Kmax1,Kmax2)
mprintf('\n\nAnswers to Kmax for PID controller using \n...
Routh Array in the book are wrong. This can be easily \n...
checked from Routh3 and Routh4 which are displayed\n')
mprintf('\n\nFor frequency response refer to ch-13 for Bode Plots\n')
|
03c058bb0c1426734456c8bb6751a63c2d3703e3 | 3c31145b7b0914a28b5c5c61d01c47253663df63 | /1 unidade trabalho/identifica_sistema.sce | b670259ca14b6563417804607d49c5eb2bc178e2 | [] | no_license | APFN/INTRODUCAO-A-IDENTIFICA-O-DE-SISTEMAS | 1eb05ddc0debe5381d941715915388f7ca8af22c | d1a7afd8c8f894285aa9d4c282939538cfaa45d4 | refs/heads/master | 2021-07-21T14:50:25.870205 | 2017-10-30T19:31:48 | 2017-10-30T19:31:48 | 108,897,789 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,460 | sce | identifica_sistema.sce | clear
clc
// Identifica sistema a partir de pontos entrada/saida
// Pasta de leitura dos arquivos
DATADIR='C:\Users\Álvaro\Google Drive\0 mestrado mecatronica\2017.2\INTRODUÇÃO À IDENTIFICAÇÃO DE SISTEMAS\Trabalho_final';
exec('C:\Users\Álvaro\Google Drive\0 mestrado mecatronica\2017.2\INTRODUÇÃO À IDENTIFICAÇÃO DE SISTEMAS\Trabalho_final\identificacao.sci', -1)
// Armazena a pasta atual
OLDDIR=pwd();
// Pasta de salvamento dos arquivos
DATADIR='C:\Users\Álvaro\Google Drive\0 mestrado mecatronica\2017.2\INTRODUÇÃO À IDENTIFICAÇÃO DE SISTEMAS\Trabalho_final';
if (~chdir(DATADIR)) then
error('Folder does not exist');
end
// Arquivo a ser lido
FILE='dryer.dat';
// Leitura dos dados
data = read(FILE, -1, 2);
// 70% dos pontos serao utilizados para identificacao
// Os 30% restantes serao utilizados para validacao
total_points = size(data,"r");
num_points = 7*total_points/10; //50 ou 100
// Pontos de identificacao
// Sinal de entrada
u = data(1:num_points,1);//angulo
// Sinal de saida
y = data(1:num_points,2);//bola
plot(u,'b');
plot(y,'r');
// Pontos de verificacao
// Sinal de entrada
u_verif = data(num_points+1:total_points,1);
// Sinal de saida
y_verif = data(num_points+1:total_points,2);
// Maxima ordem a ser pesquisada
max_order = 5;
// Maximo tempo de atraso a ser pesquisado
max_delay = 5;
// Cria e inicializa com zeros as matrizes de
// best_resuo e best_AIC para cada modelo ordem/delay
// Poderia ser dispensado, mas agiliza
best_res = zeros(max_order,max_delay+1);
best_AIC = zeros(max_order,max_delay+1);
// Identifica o sistema
disp(FILE);
disp('LINHAS: ordem de 1 a max_order');
disp('COLUNAS: delay de 0 a max_delay');
// Identificacao ARX
disp('Modelo ARX:');
for (order=1:max_order)
for (delay=0:max_delay)
num_equacoes = num_points-order-delay;
[theta,res]=identifyARX(u,y,order,delay);
res_verif = resARX(u_verif,y_verif,theta,delay);
best_res(order,delay+1) = stdev(res_verif)^2;
best_AIC(order,delay+1) = 2*(2*order) + num_equacoes*log(best_res(order,delay+1));
end
end
disp('RESIDUOS:');
disp(best_res);
[val,index]=min(best_res);
disp('Melhor:');
disp(index);
order = index(1,1);
delay = index(1,2)-1;
[theta,res]=identifyARX(u,y,order,delay);
disp(theta);
disp('Criterio de AKAIKE:');
disp(best_AIC);
[val,index]=min(best_AIC);
disp('Melhor:');
disp(index);
order = index(1,1);
delay = index(1,2)-1;
[theta,res]=identifyARX(u,y,order,delay);
disp(theta);
// Identificacao ARMAX
disp('Modelo ARMAX:');
for (order=1:max_order)
for (delay=0:max_delay)
num_equacoes = num_points-order-delay;
[theta,res]=identifyARMAX(u,y,order,delay);
res_verif = resARMAX(u_verif,y_verif,theta,delay);
best_res(order,delay+1) = stdev(res_verif)^2;
best_AIC(order,delay+1) = 2*(3*order) + num_equacoes*log(best_res(order,delay+1));
end
end
disp('RESIDUOS:');
disp(best_res);
[val,index]=min(best_res);
disp('Melhor:');
disp(index);
order = index(1,1);
delay = index(1,2)-1;
[theta,res]=identifyARMAX(u,y,order,delay);
disp(theta);
disp('Criterio de AKAIKE:');
disp(best_AIC);
[val,index]=min(best_AIC);
disp('Melhor:');
disp(index);
order = index(1,1);
delay = index(1,2)-1;
[theta,res]=identifyARMAX(u,y,order,delay);
disp(theta);
// Volta para a pasta anterior
chdir(OLDDIR);
|
6aa0f7d5d445818148cebf9e2d5602600506ba4f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3281/CH2/EX2.19/ex2_19.sce | a1ae2a018f00dd8d32b454d29c7417317cc165f2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 341 | sce | ex2_19.sce | //Page Number: 105
//Example 2.19
clc;
//Given
c=3D+8; //m/s
a=2.29; //cm
b=1.02; //cm
a1=a/100 ;//m
b1=b/100; //m
f=6D+9; //Hz
e=1;
mu=1/(c^2);
//Cut off frequency
lamc=2*a1;
fc=c/lamc;
w=2*%pi*fc;
//Attenuation constant
a=(w*sqrt(1-((f/fc)^2)))/c;;
adb=-20*log10(exp(-a));
disp('dB/m',adb,'Attenuation constant:');
|
44853ccafa5ef3c5acd60434f955ba1c7f195215 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2969/CH6/EX6.10/Ex6_10.sce | dfb54996ad1c66a1464781946d0b8835bb3ae51a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,744 | sce | Ex6_10.sce | clc
clear
//DATA GIVEN
p=13; //steam pressure in bar
ds=77; //degree of superheat in deg. celsius
Tfw=85; //temp. of feed water in deg. celsius
Mw=3000; //mass of water evaporated in kg/hr
Mc=410; //coal fired
Mash=40; //mass of ash in kg/hr
Pca=9.6; //% of combustible in ash
Pm=4.5; //% of moisture in coal
C=30500; //calorific vaalue of dry coal per kg
Cps=2.1; //specific heat of superheated steam in kJ/kgK
//from steam table, corresponding to 13 bar,
hf=814.7; //in kJ/kg
hfg=1970.7; //in kJ/kg
Ts=191.6; //in deg. selsius
h=hf+hfg+Cps*(ds);
hf1=4.18*(Tfw-0);
htotal=h-hf1; //total heat supplied to produce 1 kg of steam
Mc1=Mc*(1-Pm/100); //mass of dry coal in kg
Ma=Mw/Mc1;
ETAb=Ma*(h-hf1)/C; //efficiency of boiler plant including superheater
Mcom=Mash*Pca/100; //Mass of combustible in ash per hr
//the combustible present in ash is practically carbon and its value may be taken as 338/60 kJ/kg
//heat actually supplied pr hr=heat of dry coal-heat of combustible in ash
Hsupp=Mc1*C-Mcom*33860; //heat actually supplied pr hr
Huse=Mw*(h-hf1); //heat usefully utilised in boiler pr hr
ETAc=Huse/Hsupp; //efficiency of boiler and furnace combined
printf(' (i) The Efficiency of boiler plant including superheater is: %5.3f or %2.1f percent. \n',ETAb,(ETAb*100));
printf(' (ii) The Efficiency of the boiler and furnace combined is: %5.3f or %2.1f percent. \n',ETAc,(ETAc*100));
|
05cf7eba058dc857c5fd0f05575a7a46024cd46d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2240/CH1/EX0.9/EXI_9.sce | 4d4e9622f492b725af314b0c6fb3495d9c83bef0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 339 | sce | EXI_9.sce | // Grob's Basic Electronics 11e
// Chapter No. I
// Example No. I_9
clc; clear;
// Add 170*10^3 and 23*10^4. Express the final answer in scientific notation.
// Given data
A = 170*10^3; // Variable 1
B = 23*10^4; // Variable 2
C = A+B;
disp (C,'The addition of 170*10^3 and 23*10^4 is')
disp ('i.e 4.0*10^5')
|
c7d0c0f63e3493c7c0b4b1969639d1490e1c730e | 0c5d5d2faf2e20464f1d35715b838f50a335ddf5 | /tests/list.tst | 6bb9931742ab458f03a9cc846798bf97a3196ed4 | [] | no_license | lmartel-school/cs244b-lab1 | cb0ed7fed5ab53c7673b7ae18cfb99e9f4c23a55 | f855aa381796cd82c40b0863e39eb41bff5ec820 | refs/heads/master | 2021-01-04T22:33:18.154316 | 2014-10-19T21:36:41 | 2014-10-19T21:36:41 | 25,385,346 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 124 | tst | list.tst | list /
create /test 123
create /test/a 456
create /test/b 789
list /test
remove /test/b
list /test
list /missing_key
list /
|
5f6ae23c8761051b1d8fa41638bc41f2c599c526 | 449d555969bfd7befe906877abab098c6e63a0e8 | /149/CH26/EX26.6/ques6.sce | d7e0b384a7acd193fc85deba5250774cfd6b1859 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 458 | sce | ques6.sce | //ques6
syms c1 c2 c3 n
disp('For Fibonacci Series yn2=yn1+yn0');
disp('so Cumulative function is given by E^2-E-1 =0 ');
E=poly(0,'E');
f=E^2-E-1;
r=roots(f);
disp(r);
disp('There for the complete solution is :');
un=(c1)*(r(1))^n+c2*(r(2))^n;
disp('un=');
disp(un);
disp('Now puttting n=1, y=0 and n=2 , y=1 we get');
disp('c1=(5-sqrt(5))/10 c2=(5+sqrt(5))/10 ');
c1=(5-sqrt(5))/10;
c2=(5+sqrt(5))/10;
un=eval(un);
disp(un);
|
ce341f352a47bf69fb83c3444205bae9061d6b51 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2699/CH5/EX5.9/Ex5_9.sce | 6c1a9889ef43267c111a3ccb44a03ff0074be0bb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 590 | sce | Ex5_9.sce | //EX5_9 PG-5.17
clc
disp("refer to the figure-5.19 shown")
Vbe=0.7;//base emitter voltage for silicon
Vcc=16;//supply voltage
Beta=100;//voltage gain
Vce=5;//colector to emitter voltage
Ic=5e-3;//collector current
Ib=Ic/Beta;//base current
printf("\n Ib=%.0f microA \n",Ib*1e6)
Rc=(Vcc-Vce)/(Ic+Ib);//since Vcc-Vce-Ic*Rc=0
printf("\n Rc=%.3f kohm \n",Rc*1e-3)
disp("Rc=2 kohm standard value")
disp("We apply KVL to the input circuit ie Vce-Vbe-Ib*Rb=0")
Rb=(Vce-Vbe)/Ib;//since Vce-Vbe-Ib*Rb=0
printf("\n Rb=%.0f kohm \n",Rb*1e-3)
disp("the standard value of Rb=91 kohm")
|
c51440c86a990f603a0833cc7da9ec9d1ba6523a | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/macros/percent/%lss_f_s.sci | ad5d9b81be4aa1eb17adccc614d17fbdbf86b9c1 | [
"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 | 258 | sci | %lss_f_s.sci | function [s]=%lss_f_s(s1,d2)
//operation s=[s1;d2]
//!
// origine s. steer inria 1987
// Copyright INRIA
[a1,b1,c1,d1,x1,dom1]=s1(2:7)
[n1,m1]=size(c1);[p2,m2]=size(d2);
s=tlist(['lss','A','B','C','D','X0','dt'],a1,b1,[c1;0*ones(p2,m1)],[d1;d2],x1,dom1)
|
9a59bc9e8f21cc69f144c1f4839f4d90dacf6336 | 449d555969bfd7befe906877abab098c6e63a0e8 | /848/CH7/EX7.4/Example7_4.sce | 6c9b783b71110e72d59f13c581ff3a2893843841 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 736 | sce | Example7_4.sce | //clear//
//Caption: To find the energy of the photon incident on photodiode
//and Minimum incident optical power
//Example7.4
//page 262
clear;
clc;
close;
h = 6.626e-34; //planks constant J/s
C = 3e08; //free space velocity in m/s
B = 10e06; //data rate 10 Mb/sec
tuo = 2/B; //1/tuo = half the data rate B
Lambda = 850e-09; //operating wavelength in nm
E = 20.7*h*C/Lambda;
Pi = E/tuo;
disp(E,'Energy of the incident photon E =')
disp(Pi,'minimum incident optical power Pi =')
disp(10*log10(Pi*1000),'minimum incident optical power in dBm =')
//Result
// Energy of the incident photon E = 4.841D-18
// minimum incident optical power Pi = 2.420D-11
// minimum incident optical power in dBm = - 76.161059
|
96cd76d955dd8a8c8413041480385e5c6840f015 | 449d555969bfd7befe906877abab098c6e63a0e8 | /605/CH9/EX9.5/9_5.sce | f307046a97d4fe1a9de55e56dc83c1b65d82e5ba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 178 | sce | 9_5.sce |
Le=3
E=10^(Le/10)-1
L=15
Wc=1
W=1.3*Wc
n=1/2*(log10(10^(L/10)-1)-log10(E))/log10(W/Wc)
m=acosh(sqrt(10^(0.1*L)-1))/acosh(W/Wc)
printf("\nn=%.2f",n)
printf("\nm=%.3f",m) |
d47bc915e0a519b0ae0b55d520cd7443b91dc4f0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2519/CH19/EX19.12/Ex19_12.sce | 077148a9372a432e2c50d8201bd4a86447fa9c9a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 540 | sce | Ex19_12.sce | clc
clear
//Initialization of variables
l=6 //ft
d1=0.55 //in
d2=0.75 //in
h1=280 //Btu/hr ft^2 F
h2=2000 //Btu/fr ft^2 F
k=220 //Btu/hr ft F
t2=212 //F
t1=60 //F
f=500 //Btu/hr ft^2 F
//calculations
A2=%pi*d1*l/12
A3=%pi*d2*l/12
Rt=1/(h1*A2) + 1/(h2*A3) +log(d2/d1) /(2*%pi*k*l)
Q=(t2-t1)/Rt
Rt2=Rt+ 1/(f*A2)
Q2=(t2-t1)/Rt2
//results
printf("Heat transfer = %d Btu/hr",Q)
printf("\n Heat transfer in case 2= %d Btu/hr",Q2)
disp("The answer in the textbook is a bit different due to rounding off error in textbook.")
|
d98f14d029a041001bc113cbf09332ef143219d7 | 4483ff664b4d01c53114a7fc535625c197c8f989 | /model for routing/data.sce | 4a5db0bd4699a4f7290e60f0f5d76241b128f75c | [] | no_license | winash1618/myproject | be9b77d4a405edce7e625a999803016b50ab99d0 | 2132e76e6a996bee19f356a2b68af827fa6c621b | refs/heads/master | 2022-12-06T06:09:06.487979 | 2020-08-20T02:00:54 | 2020-08-20T02:00:54 | 288,880,158 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 280 | sce | data.sce | xx=[11 1.5 5.5 2 8 6.5 38 14 7 37 37 4 24 28 32 32 15 32 23 33 11 13 34 15 31 34]
yy=[8.5 23 2 1.5 7 18 14 6 7.5 19 2 2.5 1.5 14 8.5 9 11 4 15 13 2.5 4.5 7.5 5 2]
dd=zeros(25,25)
for i=1:25
for j=1:25
dd(i,j)=sqrt((xx(1,i)-xx(1,j))^2+(yy(1,i)-yy(1,j))^2)
end
end
|
a922661d35d0eb9c74bdaf1513aac204c35a8b55 | 449d555969bfd7befe906877abab098c6e63a0e8 | /572/CH6/EX6.2/c6_2.sce | 5b0eddaa3634d99f84d5f3b1ca45c55985c23d50 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,201 | sce | c6_2.sce | //(6.2) Water initially a saturated liquid at 100C is contained within a piston–cylinder assembly. The water undergoes a process to the corresponding saturated vapor state, during which the piston moves freely in the cylinder. There is no heat transfer with the surroundings. If the change of state is brought about by the action of a paddle wheel, determine the net work per unit mass, in kJ/kg, and the amount of entropy produced per unit mass,in Kj/kg.k
//solution
//Assumptions:
//1. The water in the piston–cylinder assembly is a closed system.
//2. There is no heat transfer with the surroundings.
//3. The system is at an equilibrium state initially and finally. There is no change in kinetic or potential energy between these
//two states.
//from table A-2 at 100 degree celcius
ug = 2506.5 //in kj/kg
uf = 418.94 //in kj/kg
sg = 7.3549
sf = 1.3069
//from energy balance,
W = -(ug-uf)
printf('the net work per unit mass in kj/kg is:\n\t w = %f ',W)
//from entropy balance
sigmabym = (sg-sf)
printf('\n\nthe amount of entropy produced per unit mass in kj/kg.k is :\n\t sigmabym =%f',sigmabym)
|
eb3a11ce62c9da107d3ff313f967a6b87c1b4c5f | 449d555969bfd7befe906877abab098c6e63a0e8 | /680/CH2/EX2.11/2_11.sce | 9c28db56c2e156a0ad20abd307335aaa4cf994a8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 2_11.sce | //Problem 2.11:
//initializing the variables:
w= 5000; // in gal
C = 50000; // in gal
Cs = 45000; // in gal
pHmin = 6;
pHn = 7;
//calculation:
CHn = 10^(-1*pHn)
CH = 10^(-1*pHmin)
X = (C/w)*[CH - Cs*CHn/C]
pH = -1*log10(X)
printf("\n\nResult\n\n")
printf("\n the pH of the most acidic waste shipment is %.2f \n",pH)
printf("\n This is the final correct answer, final answer in book is wrong\n") |
ca441413d338a3c5e51fb314281aef69eac1e09f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1332/CH13/EX13.4/13_4.sce | bd42bdd24ccceb12b83f588b2485b0c1309705b4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 721 | sce | 13_4.sce | //Example 13.4
//Newton's Backward Difference Formula
//Page no. 425
clc;close;clear;
printf(' x\t\t y\t\t d\t\t d2\t\t d3\t\t d4\n')
printf('------------------------------------------------------------------------------------------')
h=0.02;
z=[0.96,1.8025;0.98,1.7939;1.00,1.7851;1.02,1.7763;1.04,1.7673];
deff('y=f1(x,s)','y=(z(x,3)+(s+1/2)*z(x,4))/h')
for i=3:6
for j=1:7-i
z(j,i)=z(j+1,i-1)-z(j,i-1)
end
end
printf('\n')
for i=1:5
for j=1:6
if z(i,j)==0 then
printf(' \t')
else
printf('%.7f\t',z(i,j))
end
end
printf('\n')
end
printf('\n\ny1(1) = %g',f1(2,0))
printf('\n\ny1(1.03) = %g',f1(4,0.5)) |
de46aa0d415de4512960c9cc3933ec7bd15bebf8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /991/CH18/EX18.13/Example18_13.sce | 52c99c0fbc327e6ff6ef2b38c4ac4dc9bf8eb64f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 524 | sce | Example18_13.sce | //Example 18.13.
clc
format(6)
disp("The minimum Zener current is IZ(min) = 5 mA when the input voltage is minimum")
disp("Here the input voltage varies between 10 V +- 20% i.e. 8 V and 12 V")
disp("Therefore, the input voltage Vi(min) = 8 V")
disp("Therefore,")
rl=5/(20*10^-3) // in ohm
disp(rl," RL(ohm) = Vo / IL =")
r=(8-5)/((5+20)*10^-3) // in ohm
disp(r,"Hence, the series resistance R(ohm) = Vi(min)-Vo / IZ(min)+IL =")
disp("The various values are given in the Zener regulator shown in Fig. 18.19") |
fd66baf79c9dc325d1026cf85e3a580a20d9ac08 | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH15/EX15.3/15_3.sce | 6b46b206566bc35c2621e3330eca15d5906f48d7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 15_3.sce | clear; clc; close;
//part a
Idc = 50*10^(-3);
C = 100*10^(-6);
Vr_rms = 2.4*(10^-3)*Idc/(C);
disp(Vr_rms,'Ripple voltage = ');
//part b
Rl = 100;
Vdc = Vr_rms*Rl*C/2.4;
disp(Vdc,'Output voltage = ');
|
847e6f3c3fbc123ba986aafb807016bd6a951553 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1049/CH12/EX12.10/ch12_10.sce | 4191085ad9d00220de2b19bc6bc1b9ec48541e38 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ch12_10.sce | clear;
clc;
V_s=400;
V_m=sqrt(2)*V_s;
a=30;
V_t=3*V_m*cosd(a)/%pi;
I_a=21;
r_a=.1;
V_d=2;
K_m=1.6;
w_m=(V_t-I_a*r_a-V_d)/K_m;
N=w_m*60/(2*%pi); printf("speed of motor=%.1f rpm",N);
N=2000;
w_m=2*%pi*N/60;
I_a=210;
V_t=K_m*w_m+I_a*r_a+V_d;
a=acosd(V_t*%pi/(3*V_m)); printf("\nfiring angle=%.2f deg",a);
I_sr=I_a*sqrt(2/3);
pf=V_t*I_a/(sqrt(3)*V_s*I_sr); printf("\nsupply power factor=%.3f",pf);
I_a=21;
w_m=(V_t-I_a*r_a-V_d)/K_m;
n=w_m*60/(2*%pi);
reg=(n-N)/N*100; printf("\nspeed regulation(percent)=%.2f",reg); |
ec4a3d414fba03b89a6320a29229cf9b2f9e2e93 | 364fc2bac23ae5482a18e5e9392ff63e68642dae | /Annales/2016_exo3.sci | a65b0c9e0f9101d5f5987344548ad33f6a34e216 | [] | no_license | Raphael-De-Wang/2M310TP | 259e55e9dc931b0a0102ed7a5dbbb31e82b88295 | af21ffee07fadeb5b27c5f30d0deb1926972ccee | refs/heads/master | 2021-01-11T14:14:21.447623 | 2017-03-29T20:27:35 | 2017-03-29T20:27:35 | 81,227,258 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 728 | sci | 2016_exo3.sci | exec 2016_exo2.sci
// Q1.
function Xheun = Heun(a,x0,T,p)
// x(n+1) = x(n) + (h/2)*(2*a + h*a^2)*x(n)
hp = T/p;
Xheun = [x0];
for k = (2:p+1),
Xheun(k) = Xheun(k-1) + (hp/2) * (2*a + hp * a .^ 2) * Xheun(k-1);
end
endfunction
// Q2.
Xheun50 = Heun(a,x0,T,p=50);
Xheun200 = Heun(a,x0,T,p=200);
function graphCmp(a,x0,T,p)
plot(1:p+1,Heun(a,x0,T,p),'blue');
plot(1:p+1,SolutionExacte(a,x0,T,p),'red');
plot(1:p+1,EulerImplicite(a,x0,T,p),'green')
plot(1:p+1,EulerExplicite(a,x0,T,p),'black')
endfunction
p = 50;
graphCmp(a,x0,T,p)
// Q3.
p = 50;
thetaHeun50 = ErreurGlobale(a,x0,p,T,Xheun50,SolutionExacte)
p = 200;
thetaHeun200 = ErreurGlobale(a,x0,p,T,Xheun200,SolutionExacte)
|
8780d8f44f3fefa1428921d6a1b47d0081974d16 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2375/CH11/EX11.7/ex11_7.sce | 7b1db0e13a9b7a7328f31c8ddb6da1d61ccbb5b5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ex11_7.sce | // Exa 11.7
clc;
clear;
close;
format('v',6)
// Given data
f_max = 10;// in kHz
f_max = f_max * 10^3;// in Hz
R = 100*10^3;// in k ohm
C = 1/(2*%pi*f_max*R);// in F
C= C*10^9;// in nF
disp(C,"For maximum frequency, the value of C in nF is");
f_min = 100;// in Hz
C = 1/(2*%pi*f_min*R);// in F
C= C*10^9;// in nF
disp(C,"For minimum frequency, the value of C in nF is");
|
d41e82f5252542f94e318146145d1abfc455f529 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3537/CH8/EX8.2/Ex8_2.sce | 8c347aec8a42b5ef5e1bcf8206cabb17c125dd4d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 366 | sce | Ex8_2.sce | //Example 8_2
clc();
clear;
//To calculate the fundamental frequency of crystal
t=0.002 //units in meters
v=5750 //units in meter per second
f=v/(2*t)
printf("The fundamental frequency of crystal is %.0f Hz",f)
//the answer in the textbook is given wrong as 1.44*10^-6 but the correct answer is 1437500 Hz
|
3d1b38ba3bd17188d4b8cb95f9f1a175902420b1 | a1e081ceabd043cf1506b917c7f2fb243be290d8 | /P2/beuler.sci | 13d6017dbbc692e8e19b03c8ce693ab8ffd28437 | [] | no_license | pablospe/ssc | 2cd8e21e1843f246e2d7f565557f4f73368aa4b8 | 353fc62f18202e73b84bea4f2d83f64cdeb15723 | refs/heads/master | 2021-01-10T21:35:46.798450 | 2014-04-24T05:11:51 | 2014-04-24T05:11:51 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 945 | sci | beuler.sci | function [t,x]=beuler(f,x0,ti,tf,h)
//metodo de Backward Euler con iteracion de Newton
//exec('jacobiant.sci')
t=[ti:h:tf];
x=zeros(length(x0),length(t));
x(:,1)=x0;
k=0
for tk=ti:h:tf-h
k=k+1;
x(:,k+1)=step_beuler(f, x(:,k), tk, h);
end
//t=[ti:h:tf];
//x=zeros(length(x0),length(t));
//x(:,1)=x0;
//k=0;
//I=eye(length(x0),length(x0))//matriz identidad
//for tk=ti:h:tf-h
// k=k+1;
// //armamos la iteracion de Newton
// xprev=x(:,k);
// J=jacobiant(f,xprev,t(k+1));//Jacobiano del Sistema
// invH=pinv(I-h*J);//inversa del Hessiano
// x(:,k+1)=xprev-invH*(xprev-h*f(xprev,t(k+1))-x(:,k));//iteracion de Newton
// l=0;
// while norm(x(:,k+1)-xprev)>1e-6*(norm(xprev)+1e-3)&l<20
// l=l+1;
// xprev=x(:,k+1);
// J=jacobiant(f,xprev,t(k+1));//Jacobiano del Sistema
// invH=pinv(I-h*J);//inversa del Hessiano
// x(:,k+1)=xprev-invH*(xprev-h*f(xprev,t(k+1))-x(:,k));//iteracion de Newton
// end
//end
endfunction
|
308dcc0e408ea7ae72e16a8e93ed4c1b8be0253b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2873/CH4/EX4.13/Ex4_13.sce | d1b99a7b211f2cd0fc30a3c8f6e06f2bb51b2b10 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,312 | sce | Ex4_13.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);1
clear;
clc;
disp("Engineering Thermodynamics by Onkar Singh Chapter 4 Example 13")
T2=(77+273);//temperature of reservoir 2
T1=(1077+273);//temperature of reservoir 1
T3=(3+273);//temperature of reservoir 3
disp("arrangement for heat pump and heat engine operating togrther is shown here.engine and pump both reject heat to reservoir at 77 degree celcius(350 K)")
disp("for heat engine")
disp("ne=W/Q1=1-T2/T1")
disp("so (Q1-Q2)/Q1=")
1-T2/T1
disp("and Q2/Q1=")
1-0.7407
disp("Q2=0.2593*Q1")
disp("for heat pump,")
disp("COP_HP=Q4/(Q4-Q3)=T4/(T4-T3)")
T4=T2;
T4/(T4-T3)
disp("Q4/Q3=")
4.73/3.73
disp("Q4=1.27*Q3")
disp("work output from engine =work input to pump")
disp("Q1-Q2=Q4-Q3=>Q1-0.2593*Q1=Q4-Q4/1.27")
disp("so Q4/Q1=")
(1-0.2593)/(1-(1/1.27))
disp("so Q4=3.484*Q1")
disp("also it is given that Q2+Q4=100")
disp("subtituting Q2 and Q4 as function of Q1 in following expression,")
disp("Q2+Q4=100")
disp("so 0.2539*Q1+3.484*Q1=100")
disp("so energy taken by engine from reservoir at 1077 degree celcius(Q1)in KJ")
disp("Q1=100/(0.2539+3.484)in KJ")
Q1=100/(0.2539+3.484)
disp("NOTE=>In this question expression for calculating Q1 is written wrong in book which is corrected above.")
|
9a0506e869f0bd7de6e82a85db7f7d7d129a2e40 | 0be7337ec5b6cda482d0432abccf47e2b8bcb973 | /file.tst | 088995b1c01f7c51163a6570c7529e7df802f4e8 | [] | no_license | root191993/firstrepo | fb5b9654e2802a6352381adab4b41fe514360a2f | ad149f50aebe37f96ea9be4aa3e1cc6174b76f9e | refs/heads/master | 2023-02-14T02:36:28.426090 | 2021-01-08T14:58:56 | 2021-01-08T14:58:56 | 325,292,087 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 51 | tst | file.tst | hi mam good morning
had coffee
whar are you doing
|
9fd475d18d51c1d99dc7b1564b0c9cbc21917602 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3537/CH5/EX5.16/Ex5_16.sce | 422cf70a731afa31b93dedf9b7ac00cc246b20d1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 209 | sce | Ex5_16.sce | //Example 5_16
clc();
clear;
//To calculate the distane between (110) planes
a=0.38 //units in nm
h=1
k=1
l=0
d=a/sqrt(h^2+k^2+l^2)
printf("Distance between (110) planes d = %.2f nm",d)
|
1947299f88ca3859d776f20f5deaa4a5d3b3f105 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1670/CH11/EX11.6/11_6.sce | 548db0bbc6a65d8caa741d41a2d3b0180c01e2e0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,115 | sce | 11_6.sce | //Example 11.6
//Gaussian Elimination Method
//Page no. 374
clc;clear;close;
A=[-4,1,1,0,-80;1,-4,0,1,-10;1,0,-4,1,-160;0,1,1,-4,-90] //augmented matrix
disp(A,'Augmented Matrix=')
C=A;
//triangularization
for i=1:4
for j=1:5
if i==1 then
B(i,j)=A(i,j)
elseif i==2
B(i,j)=A(i,j)-A(i,1)*A(i-1,j)/A(1,1)
B(i+1,j)=A(i+1,j)-A(i+1,1)*A(i-1,j)/A(1,1)
B(i+2,j)=A(i+2,j)-A(i+2,1)*A(i-1,j)/A(1,1)
elseif i==3
if j==1 then
C=B
else
B(i,j)=B(i,j)-C(i,2)*B(i-1,j)/B(2,2)
B(i+1,j)=C(i+1,j)-C(i+1,2)*C(i-1,j)/C(2,2)
end
else
if j==1 then
C=B
end
B(i,j)=B(i,j)-C(i,3)*B(i-1,j)/B(3,3)
end
end
end
disp(B,'Triangulated Matrix=')
//back substitution
x(4)=B(4,5)/B(4,4);
printf('\n p(4) = %.2f\n',x(4))
for i=3:-1:1
k=0
for j=i+1:4
k=k+B(i,j)*x(j)
end
x(i)=(1/B(i,i))*(B(i,5)-k)
printf('\n p(%i) = %.2f\n',i,x(i))
end |
d3651cac7a2804ca0a7a1973f1a24b2769f7cac5 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/rasp_design_added_blocks/hhn.sce | 538971f8dd2ad9f2da04a046bdcbc4dbd0904f4a | [] | 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 | 150 | sce | hhn.sce | style.fontSize=12;
style.displayedLabel="<table> <tr><td align=center>HH<br>Neuron</td></tr></table>";
pal1_1=xcosPalAddBlock(pal1_1,"hhn",[],style);
|
c58828b3d137016dec52111efcde4561673c3346 | 449d555969bfd7befe906877abab098c6e63a0e8 | /788/CH4/EX4.7.a/4_7_data.sci | 8f09eab19047531524bc9bd97633358b551e13a6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 220 | sci | 4_7_data.sci | // Aim:To Find Head Loss across valve
// Given:
// Diameter of gate valve:
D=50; //mm
// specific weight of oil:
gamma1=8800; //N/m^2
// kinemativ viscosity of oil:
nu=0.001; //m^2/s
// flow rate:
Q=0.02; //m^3/s
|
ebac0325e27e3b2e91a53edbe3fc0f8f486ee0ce | 449d555969bfd7befe906877abab098c6e63a0e8 | /34/CH9/EX9.8/Ch9Exa8.sci | 1af884f39272c430af22dab2699928abff97c1a1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 433 | sci | Ch9Exa8.sci |
u= 1.66*(10^(-27)); //atomic mass unit, kg
density= 8.94*10^(3); // kg/m^3
M= 63.5; //atomic mass of copper, u
Edensity= density/(M*u); //electron density, electrons/m^3
h= 6.63*(10^(-34)); //Planck's constant, J.s
Me= 9.1*(10^(-31)); //mass of electron, kg
Efermi= h^2/(2*Me)*[(3*Edensity)/(8*(%pi))]^(2/3); // J
disp(Efermi,"The fermi energy, in J, is: ")
//Result
//The fermi energy, in J, is:
// 1.130D-18 |
280030990dcc759c4c5bbfe5b39b889c220809e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1247/CH2/EX2.20/example2_20.sce | 346585e05ae311f9f5b256f5a4f2313ae1efc36d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 515 | sce | example2_20.sce | clear;
clc;
// Stoichiometry
// Chapter 2
// Basic Chemical Calculations
// Example 2.20
// Page 27
printf("Example 2.20, Page 27 \n \n");
// solution
m1 = 100 //[kg] MEA solution (basis)
m2 = 20 //[kg] MEA
M1 = 61 // molar mass of MEA
n1 = m2/M1 // [kmol]
C = .206
n2 = C*n1 //[kmol] dissolved CO2
m3 = n2*44 // [kg] mass of CO2
n3 = (m1-m2-m3)/18 //[kmol] water
n = (n2/(n1+n2+n3))*100
m = (m3/100)*100
printf("Mass percent of CO2 = "+string(m)+" and Mol percent = "+string(n)+".")
|
243515c63d0eb7fb1effaa787314ff9110b02b02 | 449d555969bfd7befe906877abab098c6e63a0e8 | /587/CH4/EX4.7/example4_7.sce | 0c62b61c35704d4d35ba993c41e22cf10ed5f26c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 838 | sce | example4_7.sce | clear;
clc;
//Example4.7[Surface Temperature Rise of Heated Blocks]
//Given:-
flux=1250;//Constant solar heat flux[W/m^2]
T=20;//Temperature of black painted wood block[degree Celcius]
k_wood=1.26;//Thermal conductivity of wood at room temperature[W/m.K]
a_wood=1.1*(10^(-5));//Diffusivity of wood at room temperature[m^2/s]
k_aluminium=237;//Thermal conductivity of aluminium at room temperature[W/m.K]
a_aluminium=9.71*(10^(-5));//Diffusivity of aluminium at room temperature[m^2/s]
t=20*60;//[seconds]
//Solution:-
Ts_wood=T+((flux/k_wood)*(sqrt((4*a_wood*t)/%pi)));//[degree Celcius]
Ts_aluminium=T+((flux/k_aluminium)*(sqrt((4*a_aluminium*t)/%pi)));//[degree Celcius]
disp("respectively","degree Celcius",round (Ts_aluminium),"and",ceil (Ts_wood),"The surface temperature fro both the wood and aluminium blocks are ") |
1e3291ebc53eb8894e78bcf6193b27e44c820dfa | 449d555969bfd7befe906877abab098c6e63a0e8 | /293/CH3/EX3.3/eg3_3.sce | 980d333630b5d913323499412bd33144eb595eae | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 228 | sce | eg3_3.sce | // resistances in ohms
R1 = 25;
R2 = 300;
R3 = 80;
R4 = 30;
R5 = 60;
Rcd = R5*R4/(R5 + R4);
Rbd1 = Rcd + R3;
Rbd = Rbd1*R2/(Rbd1 + R2);
Req = Rbd + R1; // equivalent resistance
disp(Req, "equivalent resistance = ") |
9f513fbaa45fc0a254890f5762971f993675867d | 449d555969bfd7befe906877abab098c6e63a0e8 | /905/CH4/EX4.6/4_6.sce | 8d5a2eb314abda2e1d154219b22c1da6c5e8d370 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,187 | sce | 4_6.sce | clear;
clc;
// Illustration 4.6
// Page: 255
printf('Illustration 4.6 - Page: 255\n\n');
// solution
//*****Data*****//
Ff = 0.9; // [foaming factor]
sigma = 70; // [liquid surface tension, dyn/cm]
Do = 5; // [mm]
//From Example 4.4
// X = 0.016;
p = 15 // [pitch, mm]
// From equ 4.35
// Ah/Aa = A
A = 0.907*(Do/p)^2; // [ratio of vapor hole area to tray active area]
// Assume
t = 0.5; // [m]
// From equ 4.32
alpha = 0.0744*t+0.01173;
beeta = 0.0304*t+0.015;
// Since X<0.1, therefore
X = 0.1;
// From equ 4.31
Cf = alpha*log10(1/X) + beeta;
// Since Ah/Aa > 0.1, therefore
Fha = 1;
Fst = (sigma/20)^0.2; // [surface tension factor]
// From equ 4.30
C = Fst*Ff*Fha*Cf;
// From Example 4.4
rowg = 1.923; // [kg/cubic m]
rowl = 986; // [kg/cubic m]
Qg = 1.145; // [cubic m/s]
// From equation 4.29
vgf = C*(sqrt((rowl-rowg)/rowg)); // [m/s]
// Since X<0.1
// Equ 4.34 recommends Ad/At = B = 0.1
B = 0.1;
// For an 80% approach to flooding, equation 4.33 yields
f = 0.8;
D = sqrt((4*Qg)/(f*vgf*%pi*(1-B))); // [m]
// At this point, the assumed value of tray spacing ( t = 0.5 m) must be // checked against the recommended values of Table 4.3. Since the calculated
// value of D < 1.0 m, t = 0.5 m is the recommended tray spacing, and no
// further iteration is needed.
deff('[y] = f14(Q)','y = B-((Q-sin(Q))/(2*%pi))');
Q = fsolve(1.5,f14);
Lw = D*sin(Q/2); // [m]
rw = D/2*cos(Q/2); // [m]
At = %pi/4*D^2; // [total cross sectional area, square m]
Ad = B*At; // [Downcomer area, square m]
Aa = At-2*Ad; // [ Active area over the tray, square m]
Ah = 0.101*Aa; // [Total hole area, square m]
printf('Summarizing, the details of the sieve-tray design are as follows:\n\n');
printf(" Diameter = %f m\n Tray spacing = %f m\n Total cross-sectional area = %f square m\n Downcomer area = %f square m\n Active area over the tray = %f square m\n Weir length = %f m\n Distance from tray center to weir = %f m\n Total hole area = %f square m\n Hole arrangement: 5 mm diameter on an equilateral-triangular pitch 15 mm between hole centers, punched in stainless steel sheet metal 2 mm thick\n\n",D,t,At,Ad,Aa,Lw,rw,Ah); |
650a2070c563b8c9cfd67b35354cdd956fd17614 | b6bf377ad0dd93166c29119fdaf090d104caf3b7 | / extensiblesimulationofplanetsandcomets --username lasxrcista/OfficialThesis/ExtensibleSimulator/initialSetup.sci | 63f02ebe2b7f0a6b4000072d3747a3ba703be1eb | [] | no_license | tectronics/extensiblesimulationofplanetsandcomets | d69905f0406bf552043dd0e244ea889a55922ef9 | d9d59841d1d177026e60245d3f99c879ee0f8ca0 | refs/heads/master | 2018-01-11T15:15:54.659208 | 2009-07-21T21:22:33 | 2009-07-21T21:22:33 | 47,740,385 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,707 | sci | initialSetup.sci | //construct the initial conditions.
initialPositions=[]
//get all bodies initial conditions prior to rotation,
//so we can rotate children properly.
for i=1:numBodies
initialPositions(1,i) = strtod(bodies(xPosition,i))
initialPositions(2,i) = strtod(bodies(yPosition,i))
end
for i=1:numBodies
//apply Given's rotations here.
//for the angle, we have to get the radians from
//the degrees input into the body config files.
bodysRotationAngle = (
strtod(bodies(rotationAngleXYPlane,i)) * %pi)/180 ;
GivensMatrix = [
cos(bodysRotationAngle) -sin(bodysRotationAngle)
sin(bodysRotationAngle) cos(bodysRotationAngle) ];
//need to find the parent's xy values, so we can
//subtract from the childs initial conditions.
//we need to do this so we make sure that we're
//rotating about the parent, and not anything else.
//example: in the moon's case, we want to rotate about
//the earth, not the sun.
originalXPositionChild = strtod(bodies(xPosition,i))
originalYPositionChild = strtod(bodies(yPosition,i))
originalXPositionParent = 0
originalYPositionParent = 0
for j=1:numBodies
if bodies(parentBody,i) == bodies(name,j) then
originalXPositionParent = initialPositions(1,j);
originalYPositionParent = initialPositions(2,j);
end
end
adjustedXPosition = originalXPositionChild -
originalXPositionParent;
adjustedYPosition = originalYPositionChild -
originalYPositionParent;
originalPosition = [ adjustedXPosition
adjustedYPosition ];
originalVelocity = [ strtod(bodies(xVelocity,i))
strtod(bodies(yVelocity,i)) ];
adjustedPosition = GivensMatrix * originalPosition
adjustedVelocity = GivensMatrix * originalVelocity
adjustedPosition = [ adjustedPosition(1,1) +
originalXPositionParent
adjustedPosition(2,1) +
originalYPositionParent]
xPosDifference = adjustedPosition(1,1) -
originalXPositionChild
yPosDifference = adjustedPosition(2,1) -
originalYPositionChild
bodies(xPosition,i) = string(adjustedPosition(1,1))
bodies(yPosition,i) = string(adjustedPosition(2,1))
bodies(xVelocity,i) = string(adjustedVelocity(1,1))
bodies(yVelocity,i) = string(adjustedVelocity(2,1))
for k=1:numBodies
if bodies(name,i) == bodies(parentBody,k) then
//we move the smaller (k).
//first, we have to move the child body the same
//amount as the parent body moved, while not
//rotating it.
//Then, if the child body itself needs rotated,
//then it will be handled in the previous for
//loop, not this one.
posX = strtod(bodies(xPosition,k));
posY = strtod(bodies(yPosition,k));
adjPosx = posX + xPosDifference;
adjPosy = posY + yPosDifference;
bodies(xPosition,k) = string(adjPosx);
bodies(yPosition,k) = string(adjPosy);
end
end
end
//this is outside the initial for loop to make sure that
//all the rotated velocities have been
//calculated prior to adding parent velocities to the
//child.
for i=1:numBodies
//add the velocity of the parent body to the child body.
for j=1:numBodies
//ex if the moon's (i) parent body == the earth(j)
if bodies(parentBody,i) == bodies(name,j) then
velXI = strtod(bodies(xVelocity,i));
velXJ = strtod(bodies(xVelocity,j));
velYI = strtod(bodies(yVelocity,i));
velYJ = strtod(bodies(yVelocity,j));
theXSum = velXI + velXJ;
theYSum = velYI + velYJ;
bodies(xVelocity,i) = string(theXSum);
bodies(yVelocity,i) = string(theYSum);
end
end
end
//initial condition matrix setup.
z0 = zeros(max(size(bodies)) * numBodies);
for i=1:numBodies
z0(xPosition + (numAttributes*(i-1)) ) =
strtod(bodies(xPosition,i));
z0(yPosition + (numAttributes*(i-1))) =
strtod(bodies(yPosition,i));
z0(xVelocity + (numAttributes*(i-1))) =
strtod(bodies(xVelocity,i));
z0(yVelocity + (numAttributes*(i-1))) =
strtod(bodies(yVelocity,i));
z0(radius + (numAttributes*(i-1))) =
strtod(bodies(radius,i));
z0(mass + (numAttributes*(i-1))) =
strtod(bodies(mass,i));
z0(g + (numAttributes*(i-1))) =
strtod(bodies(g,i));
z0(rotationAngleXYPlane + (numAttributes*(i-1))) =
strtod(bodies(rotationAngleXYPlane,i));
end |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.