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
c968a4844a46c9e04ea7696e7dedca567b2c528e
449d555969bfd7befe906877abab098c6e63a0e8
/2309/CH2/EX2.6/Ex2_6.sce
cba3a1ad2a17f73bf963335d69e46db8e801d3e3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
620
sce
Ex2_6.sce
// Chapter 2 Example 6 //============================================================================== clc; clear; //input data E = 1.44; // Bandgap energy in eV h = 6.625*10^-34; // plank's constant c = 3*10^8; // vel. of light in m/s q = 1.6*10^-19; // charge of electron //Calculations lamda = h*c/(E*q) // Wavelength of GaAs laser //Output mprintf('Wavelength of GaAs laser = %3.1f Å',lamda*10^10); //==============================================================================
2cf393f93fedafb3da6521bf6b927a188cfa4d8f
6b85d1958ff11075634ed9e0f6dbef2de9548f1b
/ANN_Toolbox/macros/ann_FF_VHess.sci
74643ea5930ef82ad11c343f0cbade2caccbb21b
[ "Unlicense" ]
permissive
ademarazn/REDES_NEURAIS
8a048c13aab33daa4068f52e18b263cc8325884f
a9a35744476d1f7e8405df04d5e4a9f8e4ed4595
refs/heads/master
2021-05-06T13:09:56.514632
2018-04-25T18:49:30
2018-04-25T18:49:30
113,248,743
1
0
null
null
null
null
UTF-8
Scilab
false
false
796
sci
ann_FF_VHess.sci
function VH = ann_FF_VHess(x, t, N, W, V, dW, af, err_deriv_y) // This file is part of: // ANN Toolbox for Scilab // Copyright (C) Ryurick M. Hristev // updated by Allan CORNET INRIA, May 2008 // released under GNU Public licence version 2 // calculates the result of multiplication between a vector and Hessian // trough a finite differences procedure [lsh,rsh] = argn(0); // define default parameters if necessary if rsh < 7, af = ['ann_log_activ', 'ann_d_log_activ'], end; if rsh < 8, err_deriv_y = 'ann_d_sum_of_sqr', end; // calculate gradient to the + grad_p = ann_FF_grad_BP(x, t, N, W + dW * V, 0, af, err_deriv_y); // ... and to the - grad_n = ann_FF_grad_BP(x, t, N, W - dW * V, 0, af, err_deriv_y); // result, difference is 2 * dW VH = (grad_p - grad_n) / (2 * dW); endfunction
0d4dc873e448f2403233ff4a6186adc020cc92d6
0320d75d635104b38bca383bde2d5a012d0ccd4f
/Comp Org/assign5/a5/test.tst
c7c4af444c8cb7db36f61512e050647026791850
[]
no_license
sbkohel/Class_files
97d4392d977d1de715eadba674ccb042195fd383
4a4cced4c23fab038b45ac54649e9831c45ea9b7
refs/heads/master
2018-12-29T21:11:59.492247
2014-12-17T02:02:20
2014-12-17T02:02:20
15,176,186
0
1
null
null
null
null
UTF-8
Scilab
false
false
133
tst
test.tst
load BoothMultiplier.hdl, set reset 1, set initM %D25, set initQ %D10; tick, tock, set reset 0; repeat 100 { tick, tock; }
83877e4349eea708fb20640774f4033242d2c53a
683d2599aa2be1a5f74b928d545b20e7ea656cd1
/microdaq/macros/microdaq_blocks/mdaq_encoder.sci
fe5c3e9088e5a9f2421103f2c9f5373a72ec34be
[ "BSD-3-Clause" ]
permissive
pj1974/Scilab
5c7fb67d5cae5ac0cdf78e3dd66b97ba50f9fc95
cd54f1bd8502d6914ad6ff5271ca0e6e3d323935
refs/heads/master
2020-12-25T17:12:56.934984
2015-10-06T17:16:11
2015-10-06T17:16:11
41,862,822
0
0
null
2015-09-03T14:00:56
2015-09-03T14:00:56
null
UTF-8
Scilab
false
false
2,987
sci
mdaq_encoder.sci
function [x,y,typ] = mdaq_encoder(job,arg1,arg2) encoder_desc = ["This block reads MicroDAQ quadrature encoder inputs."; ""; "input(1) - reset input"; ""; "output(1) - current encoder counter value"; "output(2) - direction: 0 - no motion, 1 - CW, 2 - CCW"; ""; "Encoder module: ENC1, ENC2"; ""; "Set block parameters:"]; x=[];y=[];typ=[]; select job case 'set' then x=arg1 model=arg1.model; graphics=arg1.graphics; exprs=graphics.exprs; while %t do try [ok,encoder_module_str,encoder_init_value,exprs]=.. scicos_getvalue(encoder_desc,.. ['Encoder module:';.. 'Encoder init position:'],.. list('str',1,'vec',1),exprs) catch [ok,encoder_module_str,encoder_init_value,exprs]=.. scicos_getvalue(encoder_desc,.. ['Encoder module:';.. 'Encoder init position:'],.. list('str',1,'vec',1),exprs) end if ~ok then break end encoder_module_str = convstr(encoder_module_str, 'l'); encoder_module = strtod(part(encoder_module_str, 4:5)); if isnan(encoder_module) == %t | part(encoder_module_str, 1:3) <> "enc" then ok = %f; message("Wrong Encoder module selected!"); end if encoder_module > 2 | encoder_module < 1 then ok = %f; message("Wrong Encoder module selected!"); end if ok then [model,graphics,ok] = check_io(model,graphics, [1], [1,1], 1, []); graphics.exprs = exprs; model.rpar = []; model.ipar = [encoder_module; encoder_init_value]; model.dstate = []; x.graphics = graphics; x.model = model; break; end end case 'define' then encoder_module = 1; encoder_module_str = []; encoder_init_value = 0; model=scicos_model() model.sim=list('mdaq_encoder_sim',5); model.in =[1]; model.in2=[1]; model.intyp=[1]; model.out=[1;1]; model.out2=[1;1]; model.outtyp=[1;1]; model.evtin=1; model.rpar=[]; model.ipar=[encoder_module; encoder_init_value]; model.dstate=[]; model.blocktype='d'; model.dep_ut=[%t %f]; exprs=["ENC1";sci2exp(encoder_init_value)]; gr_i=['xstringb(orig(1),orig(2),[''CH:'' ; string(encoder_module)],sz(1),sz(2),''fill'');']; x=standard_define([4 3],model,exprs,gr_i); x.graphics.in_implicit=[]; x.graphics.exprs=exprs; x.graphics.style=["blockWithLabel;verticalLabelPosition=center;displayedLabel=%1$s;fontColor=#5f5f5f"] end endfunction
59fc4121ecfaa7f4ba63ddac71d91128dc58c197
1db0a7f58e484c067efa384b541cecee64d190ab
/macros/arch_test.sci
3c53fc52ad40dca74a5d0e0f89f79a451b070ce1
[]
no_license
sonusharma55/Signal-Toolbox
3eff678d177633ee8aadca7fb9782b8bd7c2f1ce
89bfeffefc89137fe3c266d3a3e746a749bbc1e9
refs/heads/master
2020-03-22T21:37:22.593805
2018-07-12T12:35:54
2018-07-12T12:35:54
140,701,211
2
0
null
null
null
null
UTF-8
Scilab
false
false
1,582
sci
arch_test.sci
function [PVAL, LM]= arch_test(Y,X,P) // perform a Lagrange Multiplier (LM) test of thenull hypothesis of no conditional heteroscedascity against the alternative of CH(P) //Calling Sequence //arch_test(Y,X,P) //PVAL = arch_test(Y,X,P) //[PVAL, LM]= arch_test(Y,X,P) //Parameters //P: Degrees of freedom //PVAL:PVAL is the p-value (1 minus the CDF of this distribution at LM) of the test //Description //perform a Lagrange Multiplier (LM) test of thenull hypothesis of no conditional heteroscedascity against the alternative of CH(P). // //I.e., the model is // // y(t) = b(1) * x(t,1) + ... + b(k) * x(t,k) + e(t), // //given Y up to t-1 and X up to t, e(t) is N(0, h(t)) with // // h(t) = v + a(1) * e(t-1)^2 + ... + a(p) *e(t-p)^2, and the null is a(1) == ... == a(p) == 0. // //If the second argument is a scalar integer, k,perform the sametest in a linear autoregression model of orderk, i.e., with // // [1, y(t-1), ..., y(t-K)] as the t-th row of X. // // Under the null, LM approximatel has a chisquare distribution with P degrees of freedom and PVAL is the p-value (1 minus the CDF of this distribution at LM) of the test. // // If no output argument is given, the p-value is displayed. funcprot(0) rhs= argn(2); lhs= argn(1); if(rhs<3 | rhs>3) error("Wrong number of input arguments"); end if(lhs<1 | lhs>2) error("Wrong number of output arguments"); end select(rhs) case 3 then select(lhs) case 1 then PVAL= callOctave("arch_test", Y, X, P); case 2 then [PVAL,LM]= callOctave("arch_test", Y, X, P); end end endfunction
5c87d54552fc85033db7cedf4a64d85d8e433a25
449d555969bfd7befe906877abab098c6e63a0e8
/569/CH5/EX5.47/5_47.sci
cb3925ffec2a468bd4bf8cdd8e8315de1a66562a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
234
sci
5_47.sci
// to prove time constant should be approximately 20T to keep undershoot within 5% clc; disp('Let T=1'); T=1; el=0.95; tc=-T/log(el); disp(tc,'time constant') disp('as T=1 so time constant should be approximately equal to 20T')
ed054bc2eb74045c273f32e5e0453e0bf6d4e14f
449d555969bfd7befe906877abab098c6e63a0e8
/767/CH3/EX3.2.4/Ch03Exa3_2_4.sci
b35edb4d7f6eaf6508deae5f9a75ddfdad5d1df0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
417
sci
Ch03Exa3_2_4.sci
// Scilab code Exa3.2.4: To calculate the activity of 1kg of U-238: Page 125 (2011) t = 1.419e+017; // Half life of U-238, s N = 6.023e+023/238; // Number of atoms in 1g of U-238 lambda = 0.6931/t; // Decay constant, s^-1 A = (lambda*N)*1000/(3.7e+010); // The activity of 1kg of U-238, Ci printf("\nThe activity of 1kg of U-238 : %4.2e Ci", A) // Result // The activity of 1kg of U-238 : 3.34e-004 Ci
2ecdd02fc3010fb988efe39a758dfa538ac3a402
449d555969bfd7befe906877abab098c6e63a0e8
/1787/CH4/EX4.16/Exa4_16.sce
a7743c86672131dcc30c30869a9d39824914707e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
477
sce
Exa4_16.sce
//Exa4.16 clc; clear; close; //given data Vs=16;//in volts RL=1.2;//in Kohm Rs=1;//in Kohm //If zener open circuited VL=Vs*RL/(Rs+RL);//in Volts disp(VL,"When zener open circuited Voltage across load in volts : "); disp("Since voltage across load VL is less than breakdown voltage of zener diode i.e. VL < Vz. The zener diode will not conduct and VL = 8.73 Volt"); Iz=0;//in mA disp(Iz,"Zener current in mA : "); Pz=VL*Iz;//in watts disp(Pz,"Power in watts : ");
620367e76003b6bc60021d05dc9f58c55803d37d
449d555969bfd7befe906877abab098c6e63a0e8
/3557/CH9/EX9.12/Ex9_12.sce
2cd9598c48fb1dcff92aabf134d3d5e3e13bf185
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
400
sce
Ex9_12.sce
//Example 9.12// Al2O3=1;// solid composition SiO2=2; // solid composition molp=(Al2O3/(Al2O3+SiO2))*100 mprintf("molp = %f percent",molp) xm=60;//mol % //composition of mullite x=33.3;//mol% // x is overall comosition xs=0;//mol % //composition of SiO2 mols=(xm-x)/(xm-xs)*100 mprintf("\nmols = %f mol percent ",mols) molm=(x-xs)/(xm-xs)*100 mprintf("\nmolm = %f mol percent",molm)
59ef40ddf68ed70cd4fd32c02cf5981939fd8e7e
777ac7fa75f240739af167655f7fab95cba80ef6
/docs/Basics.New/If.tst
af9bb82b633b385aa65c5c5e84a416f1edbf413d
[]
no_license
Karabur/TML-project
8d498d8133f4b1ea8e8c3fe6f6f47f7ab5de4b5c
0bfe006b0e66628427b769bc1be903875e77d5b7
refs/heads/master
2021-01-02T09:20:39.055827
2013-12-28T22:02:15
2013-12-28T22:02:15
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,472
tst
If.tst
Title: TestName: Проверка примитива IF; Difficulty: A1; FullTime: 0; Questions: 3; Random: OFF; RandomChoice: OFF; EndTitle. StartTest: Question: 1; Weight: 1; BeginText: Выберите правильный ответ. При верном ответе будет задан вопрос 3, иначе вопрос 2. EndText; Choice: AtX: 8; AtY: 8; Width: 100; Height: 100; 1: правильно endcase; 2: ошибка endcase; Right: 1; Ask; R1:=Q1; if R1=1 then goto 3; Question: 2; Weight: 1; BeginText: Вы выбрали "неверный ответ", либо программа неправильно обработала примитив "IF" EndText; Choice: AtX: 8; AtY: 8; Width: 5; Height: 5; 1: - endcase; Right: 1; Ask; goto 1; Question: 3; Weight: 1; BeginText: Сейчас, по результатом Вашего выбора будут проведены простейшие арифметические вычисления. Окончательная оценка по тесту будет задана следующим образом: если <выбор<2> то оценка = 2 если <выбор>2> то оценка = 3 если <выбор=2> то оценка = 0 EndText; SoftChoice: AtX: 8;AtY: 8;Width: 100;Height: 100; 1: 1 endcase; 2: 2 endcase; 3: 3 endcase; EndChoice; Ask; if Q3<2 then TotalResult:=2; if Q3>2 then TotalResult:=3; if Q3=2 then ToTalResult:=0; EndTest.
ebbaa654ad729636302a1598a630e7ea027b7e0a
c557cd21994aaa23ea4fe68fa779dd8b3aac0381
/test/blob.tst
c81c9824180362e65840c7d2591447a3c088ba31
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
dougsong/reposurgeon
394001c0da4c3503bc8bae14935808ffd6f45657
ee63ba2b0786fa1b79dd232bf3d4c2fe9c22104b
refs/heads/master
2023-03-09T15:22:45.041046
2023-02-25T08:33:06
2023-02-25T08:33:06
280,299,498
1
0
NOASSERTION
2023-02-25T08:33:08
2020-07-17T01:45:32
Go
UTF-8
Scilab
false
false
138
tst
blob.tst
## Patch a synthetic blob into a repository read <min.fi blob <<EOF The thing that ate Sheboygan. EOF :3 add M 100644 :1 creature write -
41f47a8a25897b8197b4d7691eef2b72019dff18
449d555969bfd7befe906877abab098c6e63a0e8
/2582/CH5/EX5.7/Ex5_7.sce
cb6ec350ea02e9e07d7d606ee0ca4ed8f0b1348e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
234
sce
Ex5_7.sce
//Ex 5.7 clc;clear;close; format('v',6); R1=10;//kohm R2=16;//kohm C=10;//nF R=62;//kohm Beta=R1/(R1+R2);//unitless T=2*R*1000*C*10^-9*log((1+Beta)/(1-Beta));//seconds f=1/T;//Hz disp(f,"Frequency of oscillations(Hz) : ");
ec76968fbc0ce5cfb439cd74000b0a66eff29027
449d555969bfd7befe906877abab098c6e63a0e8
/3665/CH6/EX6.11/Ex6_11.sce
491d26b033f61379f7eda7833e32c4b10f3b5e2b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
368
sce
Ex6_11.sce
clc// // // //Variable declaration m=9.1*10^-31; //mass of electron(kg) h=6.626*10^-34; //planck's constant lamda=1.66*10^-10; //wavelength(m) //Calculation v=h/(m*lamda); //velocity(m/s) KE=(1/2)*m*v^2; //kinetic energy(eV) //Result printf("\n velocity is %0.0f km/s",v/10^3) printf("\n kinetic energy is %0.2f eV",KE/(1.6*10^-19))
bedf727879785afd3521f06efc656a803ece5410
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/PDE3.prev.tst
666d5d36056f2dc73a1a4b5dd7f84229bcb9e4a9
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
44
tst
PDE3.prev.tst
(x^3 + x^2*y + y^2).derivative("x", 3) = 6
10fd85da6b5a39034807ed126bed34643a19989a
42fdf741bf64ea2e63d1546bb08356286f994505
/test_20160113_waitbar/waitbar_test.sce
bb7f4c61b14934d67c250076dd7f719209a3d416
[]
no_license
skim819/RASP_Workspace_sihwan
7e3cd403dc3965b8306ec203007490e3ea911e3b
0799e146586595577c8efa05c647b8cb92b962f4
refs/heads/master
2020-12-24T05:22:25.775823
2017-04-01T22:15:18
2017-04-01T22:15:18
41,511,563
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,036
sce
waitbar_test.sce
// Count # of switches and target_fgs. swc_fg_list = fscanfMat(path+fname+'.swcs'); temp_size= size(swc_fg_list); n=temp_size(1,1); No_swcs=0; No_swcs_sr=0; No_target_fgs=0; for i=1:n if swc_fg_list(i,4) == 0 & swc_fg_list(i,3) == 0 then No_swcs=No_swcs+1; end if swc_fg_list(i,4) == 0 & swc_fg_list(i,3) == 1 then No_swcs_sr=No_swcs_sr+1; end if swc_fg_list(i,4) ~= 0 then No_target_fgs=No_target_fgs+1; end end swc_prog_time=1; // Switch program unit time (s) tar_prog_time=5; // Target program unit time (s) winH=waitbar('Programming_switches'); realtimeinit(1); realtime(0); //sets time unit to a second and current date to 0 for i=0:1:No_swcs, realtime(swc_prog_time*i); // wait till date t is reached. waitbar(i/(No_swcs+No_swcs_sr),winH); end close(winH); winId=progressionbar(['Do something' 'secondline' 'third line']); realtimeinit(1); for j=0:0.1:1, realtime(3*j); progressionbar(winId,"hihi"); disp("safjksdlkfjsld") end close(winId); tic(); realtimeinit(1); realtime(0); realtime(2); a=toc();
895d2fb06be963e5f5eb7b31c38d0b408ce7a367
449d555969bfd7befe906877abab098c6e63a0e8
/260/CH11/EX11.8/11_8.sce
27febdf1d5e1fdf06ac6ce34d56ab1b6b1fa3db0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,089
sce
11_8.sce
//Eg-11.8 //pg-485 clear clc a = 0; b = 1; h = b-a; deff('out = func(in)','out = 1/(1+in^2)') //From equations [30],[31],[32] & [33] //Please note that the subscripts(i&j) we use here are different from that used in //text book i.e they are increased by 1, because we cant give the index zero in //scilab. Therefore, imax = 6; jmax = 6; I(1,1) = h/2*(func(a) + func(b)); I(2,1) = 1/2*(I(1,1) + h*func(a+h/2)); I(3,1) = 1/2*(I(2,1) + h/2*(func(a+h/4) + func(a+3*h/4))); //From equation [33] sum1 = 0; for(j = 1:2:(2^3-1)) //Since we have to consider the odd terms only. sum1 = sum1 + func(a+j*h/2^3); end I(4,1) = 1/2*(I(3,1) + h/2^2*sum1); //Similarly sum2 = 0; for(j = 1:2:(2^4-1)) sum2 = sum2 + func(a+j*h/2^4); end I(5,1) = 1/2*(I(4,1) + h/2^3*sum2); for(j = 2:5) for(i = 1:imax-j) I(i,j) = (4^(j-1)*I(i+1,j-1) - I(i,j-1))/(4^(j-1)-1); end end printf(' The complete Romberg tableau is as follows\n') disp(I) printf('\n Therefore, the value of the integral is %f\n',I(1,5))
309f8914b4de655a506258a00557a819d1db8649
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set13/s_Introduction_To_Mechanical_Engineering_S._Chandra_And_O._Singh__2267.zip/Introduction_To_Mechanical_Engineering_S._Chandra_And_O._Singh__2267/CH5/EX5.3/ex5_3.sce
571641cf14b36a4f600886e3276c95177dcbd773
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
203
sce
ex5_3.sce
errcatch(-1,"stop");mode(2);//Part A Chapter 5 Example 3 ; ; T1=42+273;//K T2=4+273;//K Q2=2;//kJ/s Q1=T1/T2*Q2;//kJ/s Pin=Q1-Q2;//kJ/s disp("Power required = "+string(Pin)+" kJ/s"); exit();
af5fe3bd3b1c170febdbcb524daacbcd605baf8e
449d555969bfd7befe906877abab098c6e63a0e8
/2084/CH2/EX2.3/2_3.sce
bfa632da29a0b2a87a537dec05e784075d9b884b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
425
sce
2_3.sce
//developed in windows XP operating system 32bit //platform Scilab 5.4.1 clc;clear; //example 2.3 //calculation of component of force in vertical direction //given data F=10.5 //force(in newton) acting on the particle theta=37 //angle(in degree) at which force acts //calculation Fp=F*cosd(theta); //component of force in vertical direction disp(Fp,'component of force(in newton) in vertical direction is');
46a13cfbbdc214661a1f2a5251ac6290ff762def
993c10f7706af779d36ea4b5254792a34da554c1
/ann/practice/Classificacao_gaussiana/geragauss.sce
4fd7b1ea4f68647bdaf0219a05b7a6f4538e067a
[]
no_license
francislz/college_codes
e1c113a29fcb704a243e5a942bf2c629157d315a
41bbefbe13135eb2654815aeb546a44462847b87
refs/heads/master
2022-01-29T11:15:15.597217
2018-11-01T22:40:13
2018-11-01T22:40:13
155,784,263
1
0
null
null
null
null
UTF-8
Scilab
false
false
519
sce
geragauss.sce
function [X, Yd] = geragauss(nc, npc, mc, varc) X = []; Yd = []; for i = 1:nc, clear classes; aux = rand(2, npc(i), 'normal'); for j = 1:npc(i), for k = 1:2, aux(k,j) = aux(k,j) * varc(k,i); aux(k,j) = aux(k,j) + mc(k,i); end end X = [X aux] classes(1, 1:npc(i)) = i - 1; Yd = [Yd classes]; end endfunction function [X, Yd] = mixvalues(Xin, Ydin) ind = grand(1, "prm", (1:length(Ydin))')'; for i = 1:length(ind), X(:,i) = Xin(:,ind(i)); Yd(1,i) = Ydin(1,ind(i)); end endfunction
bd239baa24eac6c1cb0c0cc383763f9ec29df55e
449d555969bfd7befe906877abab098c6e63a0e8
/3831/CH8/EX8.9/Ex8_9.sce
82ca4a7ae86d030c20c0f441492f5ba56f35da30
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
631
sce
Ex8_9.sce
// Example 8_9 clc;funcprot(0); // Given data V_2=0.0400;// m^3 T_1=20.0;// °C p_1=0.0100;// MPa Q_12=0.100;// kJ V_1=0.0100;// m^3 R=0.208;// kJ/kg.K T_w=400;// K c_p=0.523;// kJ/kg.K c_v=0.315;// kJ/kg.K // Calculation m=((p_1*10^3)*V_1)/(R*(T_1+273.15));// kg T_2=T_1+(Q_12/(m*c_v));// K p_2=(m*R*(T_2+273.15))/V_2;// kPa S_p12=(m*[(c_p*log((T_2+273.15)/(T_1+273.15)))-(R*log(p_2/(p_1*10^3)))])-(Q_12/T_w);// kJ/K S_p12=S_p12*10^3;// J/K printf('\nThe pressure and temperature inside the box after the balloon bursts p_2=%1.2f kPa and T_2=%3.0f°C \nThe entropy produced,1(S_P)2=%0.3f J/K',p_2,T_2,S_p12);
027eb07432277f3d3e93c3049fe9a2a499c2f067
449d555969bfd7befe906877abab098c6e63a0e8
/2732/CH2/EX2.8/Ex2_8.sce
717fd80458fad053d2f0bf541f905b4a211ef3a9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
457
sce
Ex2_8.sce
clc // initialization of variables clear sigma_3=0 // kgf/cm^2 tau_oct=1500 // kgf/cm^2 n=2 // given that sigma_1=n*sigma_2 // calculations sigma_2=1500*3/(sqrt(2*n^2-2*n+2)) // // kgf/cm^2 sigma_1=n*sigma_2 // kgf/cm^2 sigma_0=4500/sqrt(2) // kgf/cm^2 // Results printf('The necessary stresses sigma_1, sigma_2 for biaxial yielding are \n %d kgf/cm^2, %d kgf/cm^2 and for uniaxial yielding sigma_0 %0.2f kgf/cm^2.',sigma_1,sigma_2,sigma_0);
e8d70098a720144aae70208a03188e9323b157b7
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.5/Unix-Windows/scilab-2.5/macros/sci2for/exp2for.sci
c95cca214de43e7861158100fce864167570d0e1
[ "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
2,543
sci
exp2for.sci
function [stk,txt,ilst,vnms,vtps,nwrk]=exp2for(lst,ilst,vnms,vtps,nwrk) // //! // Copyright INRIA nlst=size(lst) top=0 stk=list() txt=[] ilst=ilst-1 cmod=0; nwrk3=nwrk(3) nwrk6=nwrk(6) nw2=nwrk(2) nw5=nwrk(5) tmp2=[] tmp5=[] // ok=%t while ilst<nlst&ok then t1=[] lhs=1 ilst=ilst+1 op=lst(ilst) if type(op)==10 then select op(1) case '0' then case '2' then //stackg if whereis(op(2))==[] then [stk,top,vnms,vtps]=get2f(op(2),stk,top,vnms,vtps) else //appel des macros nop=lst(ilst+1) if nop(1)<>'5'|nop(2)<>'25' [stk,top,vnms,vtps]=get2f(op(2),stk,top,vnms,vtps) else op(3)=string(evstr(nop(3))-1) op(4)=nop(4) [stk,nwrk,t1,top]=func2f(op,stk,nwrk) txt=[txt;t1] ilst=ilst+1 end end case '3' then //string [stk,top]=str2f(op(2),stk) case '4' then //matrice vide top=top+1 stk(top)=list('[]','0','1','0','0') case '5' then //allops t1=[] iop=evstr(op(2)) top1=top if ops(iop,2)=='g' then pause,end execstr('[stkr,nwrk,t1,top]=%'+ops(iop,2)+'2for(nwrk)') for ktp=top:top1,ss=stk(top);nwrk=freewrk(nwrk,ss(1));end stk(top)=stkr txt=[txt;t1] case '6' then //num [stk,top]=num2f(op(2),stk) case '20' then //functions [stk,nwrk,t1,top]=func2f(op,stk,nwrk) txt=[txt;t1] else ok=%f end // try to free working areas used by previous intermediate result // foo1(foo2(..)), a+foo2(),... if tmp2<>[] then nwrk(2)(2,tmp2)='0',tmp2=[],end if tmp5<>[] then nwrk(5)(2,tmp5)='0',tmp5=[],end if lhs==1 then if or(nw2(2,:)<>nwrk(2)(2,:))|or(nw5(2,:)<>nwrk(5)(2,:)) then //function has used new working areas for lhs args tmp2=[find(nw2(2,:)<>nwrk(2)(2,:)) size(nw2,2)+1:size(nwrk(2),2)] tmp5=[find(nw5(2,:)<>nwrk(5)(2,:)) size(nw5,2)+1:size(nwrk(5),2)] end end nw2=nwrk(2) nw5=nwrk(5) else ok=%f end end // used='0';for k=nwrk(2), used=addf(used,k(1)),end iused='0';for k=nwrk(5), iused=addf(iused,k(1)),end if used<>'0' then n3=prod(size(nwrk3)) k=n3+1;ok=n3>0;delta=' ' while ok then k=k-1 delta=subf(used,nwrk3(k)) ok=part(delta,1)<>'-' &k>1 end if part(delta,1)<>'-'&delta<>'0' then nwrk(3)=[nwrk3,used];end end if iused<>'0' then n6=prod(size(nwrk6)) k=n6+1;ok=n6>0;delta=' ' while ok then k=k-1 delta=subf(iused,nwrk6(k)) ok=part(delta,1)<>'-' &k>1 end if part(delta,1)<>'-'&delta<>'0' then nwrk(6)=[nwrk6,iused];end end nwrk(1)=1;nwrk(2)=[] nwrk(4)=1;nwrk(5)=[]
74cdb5c46ed789229b0c7101679015e01a41066a
449d555969bfd7befe906877abab098c6e63a0e8
/2825/CH19/EX19.8/Ex19_8.sce
ba56061086946933ae513e3d0ff33ae4b1c99aa6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
134
sce
Ex19_8.sce
//Ex19_8 Pg-959 clc dec=13 //decimal input bin=dec2bin(dec) //binary output disp("The binary equivalent of 13 is") disp(bin)
00fed7449a1158347c3ae559b1ffbcf739ef346d
449d555969bfd7befe906877abab098c6e63a0e8
/710/CH10/EX10.8/10_8.sci
aacc1f9c48c713d3b8a9b3e9a89b74a2b3370d84
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
401
sci
10_8.sci
clc(); clear; //To determine velocity of an electron lambda=0.08; //de Briglie wavelength m=9.1*10^-31; //mass of electron h=6.626*10^-34; //plancks constant v=h/(m*lambda*10^-9) //velocity of the electron printf("The velocity of the electron is %f m/s",v);
50f29a85834e9c364e19775ad46e3fc3e85e2d8b
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set7/s_Electronic_Devices_And_Circuits_K._L._Kishore_1511.zip/Electronic_Devices_And_Circuits_K._L._Kishore_1511/CH4/EX4.15/ex4_15.sce
0e3d2072822e0ad332ddf4e40fd44a29fe820038
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
225
sce
ex4_15.sce
errcatch(-1,"stop");mode(2);// Example 4.15 page no-228 a=2*10^-4 //cm rho = 10 //Ohm-cm eps=12/(36*%pi*10^11) mup = 500 //cm^2/V-sec ena=1/(rho*mup) vp= (ena*a^2)/(2*eps) printf("Vp = %.2f V",vp) exit();
699382091673e66807ced01a8c791d7e4640529e
d963a50c09b7380dd7b1b97cd9997e9bd17ea8f3
/r37/packages/residue/residue.tst
f16f9b1bb0b5bcd6e8aadde5b68753737790caed
[ "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,207
tst
residue.tst
% test file for residue package residue(x/(x^2-2),x,sqrt(2)); poleorder(x/(x^2-2),x,sqrt(2)); residue(sin(x)/(x^2-2),x,sqrt(2)); poleorder(sin(x)/(x^2-2),x,sqrt(2)); residue(1/(x-1)^m/(x-2)^2,x,2); poleorder(1/(x-1)/(x-2)^2,x,2); residue(sin(x)/x^2,x,0); poleorder(sin(x)/x^2,x,0); residue((1+x^2)/(1-x^2),x,1); poleorder((1+x^2)/(1-x^2),x,1); residue((1+x^2)/(1-x^2),x,-1); poleorder((1+x^2)/(1-x^2),x,-1); residue(tan(x),x,pi/2); poleorder(tan(x),x,pi/2); residue((x^n-y^n)/(x-y),x,y); poleorder((x^n-y^n)/(x-y),x,y); residue((x^n-y^n)/(x-y)^2,x,y); poleorder((x^n-y^n)/(x-y)^2,x,y); residue(tan(x)/sec(x-pi/2)+1/cos(x),x,pi/2); poleorder(tan(x)/sec(x-pi/2)+1/cos(x),x,pi/2); for k:=1:2 sum residue((a+b*x+c*x^2)/(d+e*x+f*x^2),x, part(part(solve(d+e*x+f*x^2,x),k),2)); residue(sin(x)/x^6,x,0); residue((1-cos(x))/x^5,x,0); residue(exp(1/x),x,0); % not implemented residue((A*x+B*x^2+c)/(D*x+E),x,-E/D); residue(tan(x),x,pi/2); residue(sec(x),x,pi/2); residue(factorial(x),x,0); % ***** not yet implemented residue(x^3/sin(1/x)^2,x,infinity); poleorder(x^3/sin(1/x)^2,x,infinity); residue(x^3*sin(1/x)^2,x,infinity); poleorder(x^3*sin(1/x)^2,x,infinity); end;
88a77586c3870a3f2d6bb60f5cdd2e64d21309e2
449d555969bfd7befe906877abab098c6e63a0e8
/3035/CH14/EX14.3/Ex14_3.sce
19d0399b0db1b38e4069e8d64e808f3619717d9a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
685
sce
Ex14_3.sce
// Variable Declaration kv_hv = 66.0 //Voltage rating of HV side of transformer(kV) kv_lv = 11.0 //Voltage rating of LV side of transformer(kV) CT = 300.0/5 //CT ratio on low tension side // Calculation Section I = 300.0 //Assumed current flowing at low tension side(A) I_HT = kv_lv/kv_hv*I //Line current on HT side(A) I_LT_CT = I/CT //Pilot wire current from LT side(A) CT_ratio_HT = I_HT*3**0.5/I_LT_CT //Ratio of CT on HT side // Result Section printf('Ratio of CT on high tension side = %.f√3/%.f' ,I_HT,I_LT_CT)
4d6c2fbbd5e3ae315c0d3212b858037639992b1a
8c717fb5a9d1176ec7c0fab2c9b15492fe608f0e
/all back.sce
eeaf37212073aec6bf81a00b95158e250e12b600
[]
no_license
jangwoopark/presentation-NBACK
834b685898a8ef9f1cee52a04466ab31bdde043c
45fbda2e411d1615dce35865fb790dbe7f7c1ea6
refs/heads/master
2020-12-02T12:46:05.020018
2017-09-09T03:37:19
2017-09-09T03:37:19
96,592,487
0
0
null
null
null
null
UTF-8
Scilab
false
false
14,965
sce
all back.sce
scenario = "all back"; scenario_type = fMRI_emulation; pulses_per_scan = 32; scan_period=1000; #scenario_type = fMRI; pulse_code=10; sequence_interrupt=false; #default active_buttons = 2; button_codes=1,2; default_picture_duration = 500; default_font="times"; default_font_size=38; default_text_color=255,255,255; default_background_color=0,0,0; begin; picture {} default; #blank screen picture { text { caption = "Answer YES or NO for every letter."; }; x=0; y=0; } inst1; picture { text { caption = "Ignore the cases of the letters."; }; x=0; y=0; } inst2; picture { text { caption = "Click YES if the letter you see is the SAME as the letter immediately before it."; }; x=0; y=0; } inst3; picture { text { caption = "Click NO if the letter you see is NOT the same as the letter immediately before it."; }; x=0; y=0; } inst4; picture { text { caption = "Click YES if the letter you see is the same as the letter TWO letters before it."; }; x=0; y=0; } inst5; picture { text { caption = "Click NO if the letter you see is not the same as the letter TWO letters before it."; }; x=0; y=0; } inst6; picture { text { caption = "Click YES only if the letter is Y."; }; x=0; y=0; } inst7; picture { text { caption = "Click NO if the letter is not Y."; }; x=0; y=0; } inst8; picture { text { caption = "P"; }; x=0; y=0; } P; picture { text { caption = "v"; }; x=0; y=0; } v; picture { text { caption = "t"; }; x=0; y=0; } t; picture { text { caption = "g"; }; x=0; y=0; } g; picture { text { caption = "d"; }; x=0; y=0; } d; picture { text { caption = "T"; }; x=0; y=0; } T; picture { text { caption = "D"; }; x=0; y=0; } D; picture { text { caption = "G"; }; x=0; y=0; } G; picture { text { caption = "p"; }; x=0; y=0; } p; picture { text { caption = "B"; }; x=0; y=0; } B; picture { text { caption = "b"; }; x=0; y=0; } b; picture { text { caption = "V"; }; x=0; y=0; } V; picture { text { caption = "Y"; }; x=0; y=0; } Y; #presenting the stimuli trial { picture inst1; mri_pulse= 1; time= 0; duration= 2000; picture inst2; mri_pulse= 3; duration= 2000; picture inst3; mri_pulse= 5; duration= 4000; #a1 back.sce picture inst4; mri_pulse= 9; duration=4000; picture default; mri_pulse= 13; duration= 2000; picture P; mri_pulse= 15; picture default; mri_pulse= 16; duration= 2000; picture v; mri_pulse= 18; picture default; mri_pulse= 19; duration= 2000; picture t; mri_pulse= 21; picture default; mri_pulse= 22; duration= 2000; picture g; mri_pulse= 24; picture default; mri_pulse= 25; duration= 2000; picture d; mri_pulse= 27; picture default; mri_pulse= 28; duration= 2000; picture T; mri_pulse= 30; picture default; mri_pulse= 31; duration= 2000; picture D; mri_pulse= 33; picture default; mri_pulse= 34; duration= 2000; picture G; mri_pulse= 36; picture default; mri_pulse= 37; duration= 2000; picture p; mri_pulse= 39; picture default; mri_pulse= 40; duration= 2000; picture B; mri_pulse= 42; picture default; mri_pulse= 43; duration= 2000; picture b; mri_pulse= 45; picture default; mri_pulse= 46; duration= 2000; picture V; mri_pulse= 48; picture default; mri_pulse= 49; duration= 2000; picture inst5; mri_pulse= 51; duration= 4000; #b2 back.sce picture inst6; mri_pulse= 55; duration= 4000; picture default; mri_pulse= 59; duration= 2000; picture B; mri_pulse= 61; picture default; mri_pulse= 62; duration= 2000; picture v; mri_pulse= 64; picture default; mri_pulse= 65; duration= 2000; picture P; mri_pulse= 67; picture default; mri_pulse= 68; duration= 2000; picture p; mri_pulse= 70; picture default; mri_pulse= 71; duration= 2000; picture g; mri_pulse= 73; picture default; mri_pulse= 74; duration= 2000; picture Y; mri_pulse= 76; picture default; mri_pulse= 77; duration= 2000; picture G; mri_pulse= 79; picture default; mri_pulse= 80; duration= 2000; picture D; mri_pulse= 82; picture default; mri_pulse= 83; duration= 2000; picture b; mri_pulse= 85; picture default; mri_pulse= 86; duration= 2000; picture V; mri_pulse= 88; picture default; mri_pulse= 89; duration= 2000; picture d; mri_pulse= 91; picture default; mri_pulse= 92; duration= 2000; picture t; mri_pulse= 94; picture default; mri_pulse= 95; duration= 2000; picture inst7; mri_pulse= 97; duration= 4000; #c0 back.sce picture inst8; mri_pulse= 101; duration=4000; picture default; mri_pulse= 105; duration= 2000; picture P; mri_pulse= 107; picture default; mri_pulse= 108; duration= 2000; picture v; mri_pulse= 110; picture default; mri_pulse= 111; duration= 2000; picture B; mri_pulse= 113; picture default; mri_pulse= 114; duration= 2000; picture b; mri_pulse= 116; picture default; mri_pulse= 117; duration= 2000; picture d; mri_pulse= 119; picture default; mri_pulse= 120; duration= 2000; picture Y; mri_pulse= 122; picture default; mri_pulse= 123; duration= 2000; picture D; mri_pulse= 125; picture default; mri_pulse= 126; duration= 2000; picture G; mri_pulse= 128; picture default; mri_pulse= 129; duration= 2000; picture p; mri_pulse= 131; picture default; mri_pulse= 132; duration= 2000; picture t; mri_pulse= 134; picture default; mri_pulse= 135; duration= 2000; picture g; mri_pulse= 137; picture default; mri_pulse= 138; duration= 2000; picture V; mri_pulse= 140; picture default; mri_pulse= 141; duration= 2000; picture inst5; mri_pulse= 143; duration= 4000; #d2 back.sce picture inst6; mri_pulse= 147; duration=4000; picture default; mri_pulse= 151; duration= 2000; picture V; mri_pulse= 153; picture default; mri_pulse= 154; duration= 2000; picture g; mri_pulse= 156; picture default; mri_pulse= 157; duration= 2000; picture d; mri_pulse= 159; picture default; mri_pulse= 160; duration= 2000; picture p; mri_pulse= 162; picture default; mri_pulse= 163; duration= 2000; picture G; mri_pulse= 165; picture default; mri_pulse= 166; duration= 2000; picture T; mri_pulse= 167; picture default; mri_pulse= 169; duration= 2000; picture Y; mri_pulse= 171; picture default; mri_pulse= 172; duration= 2000; picture t; mri_pulse= 174; picture default; mri_pulse= 175; duration= 2000; picture b; mri_pulse= 177; picture default; mri_pulse= 178; duration= 2000; picture B; mri_pulse= 180; picture default; mri_pulse= 181; duration= 2000; picture v; mri_pulse= 183; picture default; mri_pulse= 184; duration= 2000; picture P; mri_pulse= 186; picture default; mri_pulse= 187; duration= 2000; picture inst3; mri_pulse= 189; duration= 4000; #e1 back.sce picture inst4; mri_pulse= 193; duration=4000; picture default; mri_pulse= 197; duration= 2000; picture B; mri_pulse= 199; picture default; mri_pulse= 200; duration= 2000; picture v; mri_pulse= 202; picture default; mri_pulse= 203; duration= 2000; picture P; mri_pulse= 205; picture default; mri_pulse= 206; duration= 2000; picture p; mri_pulse= 208; picture default; mri_pulse= 209; duration= 2000; picture d; mri_pulse= 211; picture default; mri_pulse= 212; duration= 2000; picture T; mri_pulse= 214; picture default; mri_pulse= 215; duration= 2000; picture D; mri_pulse= 217; picture default; mri_pulse= 218; duration= 2000; picture G; mri_pulse= 220; picture default; mri_pulse= 221; duration= 2000; picture b; mri_pulse= 223; picture default; mri_pulse= 224; duration= 2000; picture t; mri_pulse= 226; picture default; mri_pulse= 227; duration= 2000; picture g; mri_pulse= 229; picture default; mri_pulse= 230; duration= 2000; picture V; mri_pulse= 232; picture default; mri_pulse= 233; duration= 2000; picture inst7; mri_pulse= 235; duration= 4000; #f0 back.sce picture inst8; mri_pulse= 239; duration=4000; picture default; mri_pulse= 243; duration= 2000; picture P; mri_pulse= 245; picture default; mri_pulse= 246; duration= 2000; picture v; mri_pulse= 248; picture default; mri_pulse= 249; duration= 2000; picture B; mri_pulse= 251; picture default; mri_pulse= 252; duration= 2000; picture b; mri_pulse= 254; picture default; mri_pulse= 255; duration= 2000; picture d; mri_pulse= 257; picture default; mri_pulse= 258; duration= 2000; picture t; mri_pulse= 260; picture default; mri_pulse= 261; duration= 2000; picture D; mri_pulse= 263; picture default; mri_pulse= 264; duration= 2000; picture G; mri_pulse= 266; picture default; mri_pulse= 267; duration= 2000; picture p; mri_pulse= 269; picture default; mri_pulse= 270; duration= 2000; picture Y; mri_pulse= 272; picture default; mri_pulse= 273; duration= 2000; picture g; mri_pulse= 275; picture default; mri_pulse= 276; duration= 2000; picture V; mri_pulse= 278; picture default; mri_pulse= 279; duration= 2000; picture inst3; mri_pulse= 281; duration= 4000; #g1 back.sce picture inst4; mri_pulse= 285; duration=4000; picture default; mri_pulse= 289; duration= 2000; picture V; mri_pulse= 291; picture default; mri_pulse= 292; duration= 2000; picture b; mri_pulse= 294; picture default; mri_pulse= 295; duration= 2000; picture t; mri_pulse= 297; picture default; mri_pulse= 298; duration= 2000; picture p; mri_pulse= 300; picture default; mri_pulse= 301; duration= 2000; picture B; mri_pulse= 303; picture default; mri_pulse= 304; duration= 2000; picture D; mri_pulse= 306; picture default; mri_pulse= 307; duration= 2000; picture Y; mri_pulse= 309; picture default; mri_pulse= 310; duration= 2000; picture d; mri_pulse= 312; picture default; mri_pulse= 313; duration= 2000; picture g; mri_pulse= 315; picture default; mri_pulse= 316; duration= 2000; picture G; mri_pulse= 318; picture default; mri_pulse= 319; duration= 2000; picture v; mri_pulse= 321; picture default; mri_pulse= 322; duration= 2000; picture P; mri_pulse= 324; picture default; mri_pulse= 325; duration= 2000; picture inst5; mri_pulse= 327; duration= 4000; #h2 back.sce picture inst6; mri_pulse= 331; duration=4000; picture default; mri_pulse= 335; duration= 2000; picture P; mri_pulse= 337; picture default; mri_pulse= 338; duration= 2000; picture d; mri_pulse= 340; picture default; mri_pulse= 341; duration= 2000; picture B; mri_pulse= 343; picture default; mri_pulse= 344; duration= 2000; picture b; mri_pulse= 346; picture default; mri_pulse= 347; duration= 2000; picture v; mri_pulse= 349; picture default; mri_pulse= 350; duration= 2000; picture T; mri_pulse= 352; picture default; mri_pulse= 353; duration= 2000; picture V; mri_pulse= 355; picture default; mri_pulse= 356; duration= 2000; picture G; mri_pulse= 358; picture default; mri_pulse= 359; duration= 2000; picture p; mri_pulse= 361; picture default; mri_pulse= 362; duration= 2000; picture t; mri_pulse= 364; picture default; mri_pulse= 365; duration= 2000; picture g; mri_pulse= 367; picture default; mri_pulse= 368; duration= 2000; picture D; mri_pulse= 370; picture default; mri_pulse= 371; duration= 2000; picture inst7; mri_pulse= 373; duration= 4000; #i0 back.sce picture inst8; mri_pulse= 377; duration=4000; picture default; mri_pulse= 381; duration= 2000; picture P; mri_pulse= 383; picture default; mri_pulse= 384; duration= 2000; picture v; mri_pulse= 386; picture default; mri_pulse= 387; duration= 2000; picture B; mri_pulse= 389; picture default; mri_pulse= 390; duration= 2000; picture b; mri_pulse= 392; picture default; mri_pulse= 393; duration= 2000; picture d; mri_pulse= 395; picture default; mri_pulse= 396; duration= 2000; picture V; mri_pulse= 398; picture default; mri_pulse= 399; duration= 2000; picture D; mri_pulse= 401; picture default; mri_pulse= 402; duration= 2000; picture G; mri_pulse= 404; picture default; mri_pulse= 405; duration= 2000; picture p; mri_pulse= 407; picture default; mri_pulse= 408; duration= 2000; picture t; mri_pulse= 410; picture default; mri_pulse= 411; duration= 2000; picture g; mri_pulse= 413; picture default; mri_pulse= 414; duration= 2000; picture Y; mri_pulse= 416; picture default; mri_pulse= 417; duration= 2000; picture inst5; mri_pulse= 419; duration= 4000; #j2 back.sce picture inst6; mri_pulse= 423; duration=4000; picture default; mri_pulse= 427; duration= 2000; picture V; mri_pulse= 429; picture default; mri_pulse= 430; duration= 2000; picture g; mri_pulse= 432; picture default; mri_pulse= 433; duration= 2000; picture d; mri_pulse= 435; picture default; mri_pulse= 436; duration= 2000; picture p; mri_pulse= 438; picture default; mri_pulse= 439; duration= 2000; picture G; mri_pulse= 441; picture default; mri_pulse= 442; duration= 2000; picture T; mri_pulse= 444; picture default; mri_pulse= 445; duration= 2000; picture Y; mri_pulse= 447; picture default; mri_pulse= 448; duration= 2000; picture t; mri_pulse= 450; picture default; mri_pulse= 451; duration= 2000; picture b; mri_pulse= 453; picture default; mri_pulse= 454; duration= 2000; picture B; mri_pulse= 456; picture default; mri_pulse= 457; duration= 2000; picture v; mri_pulse= 459; picture default; mri_pulse= 460; duration= 2000; picture P; mri_pulse= 462; picture default; mri_pulse= 463; duration= 2000; picture inst3; mri_pulse= 465; duration= 4000; #k1 back.sce picture inst4; mri_pulse= 469; duration=4000; picture default; mri_pulse= 473; duration= 2000; picture B; mri_pulse= 475; picture default; mri_pulse= 476; duration= 2000; picture v; mri_pulse= 478; picture default; mri_pulse= 479; duration= 2000; picture P; mri_pulse= 481; picture default; mri_pulse= 482; duration= 2000; picture p; mri_pulse= 484; picture default; mri_pulse= 485; duration= 2000; picture d; mri_pulse= 487; picture default; mri_pulse= 488; duration= 2000; picture T; mri_pulse= 490; picture default; mri_pulse= 491; duration= 2000; picture D; mri_pulse= 493; picture default; mri_pulse= 494; duration= 2000; picture G; mri_pulse= 496; picture default; mri_pulse= 497; duration= 2000; picture b; mri_pulse= 499; picture default; mri_pulse= 500; duration= 2000; picture t; mri_pulse= 502; picture default; mri_pulse= 503; duration= 2000; picture g; mri_pulse= 505; picture default; mri_pulse= 506; duration= 2000; picture V; mri_pulse= 508; picture default; mri_pulse= 509; duration= 2000; picture inst7; mri_pulse= 511; duration= 4000; #l0 back.sce picture inst8; mri_pulse= 515; duration=4000; picture default; mri_pulse= 519; duration= 2000; picture P; mri_pulse= 521; picture default; mri_pulse= 522; duration= 2000; picture v; mri_pulse= 524; picture default; mri_pulse= 525; duration= 2000; picture B; mri_pulse= 527; picture default; mri_pulse= 528; duration= 2000; picture b; mri_pulse= 530; picture default; mri_pulse= 531; duration= 2000; picture d; mri_pulse= 533; picture default; mri_pulse= 534; duration= 2000; picture t; mri_pulse= 536; picture default; mri_pulse= 537; duration= 2000; picture D; mri_pulse= 539; picture default; mri_pulse= 540; duration= 2000; picture G; mri_pulse= 542; picture default; mri_pulse= 543; duration= 2000; picture p; mri_pulse= 545; picture default; mri_pulse= 546; duration= 2000; picture Y; mri_pulse= 548; picture default; mri_pulse= 549; duration= 2000; picture g; mri_pulse= 551; picture default; mri_pulse= 552; duration= 2000; picture V; mri_pulse= 554; picture default; mri_pulse= 555; duration= 2000; };
0780cc589651bc9df44de7507c5419f59d795692
449d555969bfd7befe906877abab098c6e63a0e8
/98/CH5/EX5.5/example5_5.sce
7e9847d43ad7363f9073e86959e2054073ec9c02
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
636
sce
example5_5.sce
//Chapter 5 //Example 5_5 //PAge 92 clear;clc; md=50; u=18*1e7; ad=75; fc=9000000; fcg=2800000; fctnd=3200000; l=0.15; rc=0.9; printf("Annual fixed charges\n"); fuel=(1-rc)*fc; tac=fcg+fctnd+fuel; printf("Total annual charges = Rs. %.0f \n", tac); cmd=tac/ad/1000; printf("Cost per kW of maximum demand = Rs. %.0f \n\n", cmd); printf("Annual running charges\n"); cf=rc*fc; udc=(1-l)*u; c=cf/udc; printf("Cost of fuel = Rs. %.0f \n", cf); printf("Units deliivered to consumers = %.0f kWh \n", udc); printf("Cost per kWh = Rs. %.3f \n\n", c); printf("Tariff is Rs. %.0f of maximum demand plus %.3f rupess per kWh \n\n", cmd, c);
71cc514c61b38b1ad9123c8af0b038188f9c92d2
449d555969bfd7befe906877abab098c6e63a0e8
/2303/CH1/EX1.6/EX_1_6.sce
2b34bd8953110894f006a3fb9ae1a06bb03f7be1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
241
sce
EX_1_6.sce
//Example 1 6 clc ; clear; close; f=9; //assuming frequency to be a constant 9Hz. t =0:.1:10; x= t+sin(4*180*f*t)+cos(2*180*f*t); disp(x); disp('Since value of the signal at any time t is known, it is a DETERMINISTIC signal');
ed2ee74b733b0735e5bbfe2e5744ba7033ac429a
fce47a4c482ae622563fc72d7643d824cc572edc
/_scilabTP/tp10/calcQuant.sci
a53c112e595e6b03ce6529970824e9811d557dac
[]
no_license
ece2lr/ece2lr.github.io
a57ff8852ef06b7cef1c734106f1badd668ebcb1
13479dc224e39521c6c387401b889e62a90a8d0b
refs/heads/master
2021-01-12T12:07:37.196408
2017-12-16T19:25:16
2017-12-16T19:25:16
72,310,248
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,221
sci
calcQuant.sci
function prctEmp = calcPerc(echantillon) // Retourne les 99 centiles de echantillon // On calcule les percentiles empiriques (commande Scilab prctl) prctEmp = perctl(echantillon,1:99) // On formatte le résultat prctEmp = [(prctEmp(:,1))'] endfunction function decEmp = calcDec(echantillon) // Retourne les 9 déciles de echantillon // On calcule les percentiles empiriques (commande Scilab prctl) prctEmp=perctl(echantillon,1:99) // On formatte le résultat prctEmp = calcPerc(echantillon) decEmp = prctEmp([1,(10*(1:9)),99]) endfunction function percentiles_graph(echantillon) prctEmp = calcPerc(echantillon) plot(.01*(1:100),prctEmp) endfunction function res = engIH(N) // Engendre la distribution d'Irwin Hall echTemp = grand (12 , N , "unf" , 0 , 1 ) // On somme par colonnes res = sum (echTemp , "r" ) endfunction function tracerQuantQuant(X,Y) // affiche le diagramme quantile / quantile des deux échantillons Xp = calcPerc (X) Yp = calcPerc (Y) Xd = calcDec (X) Yd = calcDec (Y) scf(2) , clf(2) plot (Xp,Yp) plot (Xd,Yd,"*") endfunction //N = 10000 //tracerQuantQuant(rand(1,N,"normal"),engIH(N))
5baeb8af823cd668f7f68c42a40d36a1f7cc60a1
449d555969bfd7befe906877abab098c6e63a0e8
/2507/CH1/EX1.3/Ex1_3.sce
da3c871aac472dc776894307a7e2ae9cfd395a23
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
387
sce
Ex1_3.sce
clc clear printf("Example 1.3 | Page number 6 \n\n"); //find the weight of a body. //Given Data mass = 60 //in kg accelerationDueToGravity = 9.8 //in m/s^2 printf("Mass = %.2f kg \n",mass); printf("Acceleration due to gravity = %.2f m/s^2 \n\n",accelerationDueToGravity); //Solution weight = mass * accelerationDueToGravity //in N printf("Weight = %.2f N \n",weight);
1ff224be03a455e55ecea1cce4e33fafa40df8ac
449d555969bfd7befe906877abab098c6e63a0e8
/3537/CH6/EX6.2/Ex6_2.sce
497f7b1ab21ede4ea08b57c5c532de6f820cac91
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
356
sce
Ex6_2.sce
//Example 6_2 clc(); clear; //To find how many photons emitted and power density v=3*10^8 lamda=632.8*10^-9 fre=v/lamda outpow=2.3*10^-3 n=1 h=6.626*10^-34 N=(outpow*n)/(h*fre) printf("Number of photons emitted is") disp(N) printf("photons/second\n") spotarea=1*10^-6 density=outpow/spotarea printf("Power density is %d kW/met^2",density)
80fc6939e74443a2d43cfdc91c084afe152e38ba
449d555969bfd7befe906877abab098c6e63a0e8
/1370/CH4/EX4.5/Exp4_5.sce
13abcfb021ebe7ebec953b75a00032466cfa3aac
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,017
sce
Exp4_5.sce
//Example 4.5 clc disp("P = 100 kW, cos(phi) = 0.8 lagging") disp("V_L = 11 kV, R_a = 0.4 ohm, X_s = 3 ohm") disp("For three phase load, P = sqrt(3)*V_L*I_L*cos(phi)") il=(1000*10^3)/(sqrt(3)*11*0.8*10^3) format(5) disp(il,"Therefore, I_L(in A) =") disp("Now I_L = I_a as for star connected alternator I_L = I_ph") disp("Therefore, I_aph = 65.6 A ... full load per phase armature current") disp("For lagging p.f. loads,") disp("(E_ph)^2 = (V_ph*cos(phi)+I_a*R_a)^2 + (V_ph*sin(phi)+I_a*X_s)^2") vp=(11*10^3)/sqrt(3) format(9) disp(vp,"Now V_ph = V_L / sqrt(3) = ... as star connected") eph=(((6350.853*0.8)+(65.6*0.4))^2)+(((6350.853*0.6)+(65.6*3))^2) p=sqrt(eph) format(8) disp(p,"Therefore, E_ph(in V) = ") el=(sqrt(3)*6491.47)*10^-3 format(6) disp(el,"Therefore, E_line(in kV) =") regu=((6491.47-6350.853)/6350.853)*100 disp(regu,"and %Regulation(in percentage) = (E_ph-V_ph / V_ph)*100 =") disp("For lagging p.f. loads, regulation is always positive.")
eec562f8906756e0add224a188282bb566e4a842
449d555969bfd7befe906877abab098c6e63a0e8
/1898/CH4/EX4.9/Ex4_9.sce
4b9406d0040913f7d34f370a39b3e59574271ce4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
674
sce
Ex4_9.sce
clear all; clc; disp("Scilab Code Ex 4.9 : ") //Given: l_ab = 800 + 400;//mm P = 20; //kN d = 5/1000; //m area = (%pi/4)*d^2; //Cross sectional area l_bbdash = 1/1000;//m E = 200; //GPa //Calculations: //Compatibility delta_p = (P*10^3*0.4)/(area*E*10^9); //delta = PL/AE delta_b = delta_p-l_bbdash; F_b = (delta_b*area*E*10^9)/(l_ab/1000); F_b = F_b/1000; //Equilibrium: F_a = P - F_b; //Display: printf("\n\nThe reaction at A = %1.1f kN',F_a); printf('\nThe reaction at B = %1.1f kN',F_b); //------------------------------------------------------------END--------------------------------------------------------------------
3d92ee4eb97a377b91d66bf67f2c078682b1d560
449d555969bfd7befe906877abab098c6e63a0e8
/635/CH13/EX13.7/Ch13Ex7.sci
eded340b008077c6c633daf12708a0740cdc50a8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,337
sci
Ch13Ex7.sci
// Scilab Code Ex13.7 Electrical conductivity of intrinsic and extrinsic Si: Page-439 (2010) NA = 6.023e+23; // Avogadro's number A_Si = 28.09e-03; // Kilogram atomic mass of Si, kg e = 1.602e-019; // Charge on an elctron, C n_impurity = 1/1e+08; // Donor impurity atoms per Si atom n_i = 1.5e+016; // Intrinsic carrier density of Si at room temperature, per metre cube mu_e = 0.13; // Mobility of electrons, metre square per volt per second mu_h = 0.05; // Mobility of holes, metre square per volt per second T = 300; // Room temperature, kelvin sigma_i = n_i*e*(mu_e + mu_h); // Intrinsic electrical conductivity, per ohm per metre Si_density = 2.23e+03; // Density of silicon, kg per metre cube N_Si = NA * Si_density/A_Si; // Number of Si atoms, per metre cube N_D = N_Si*n_impurity; // Density of donor impurity, per metre cube; sigma_ext = ceil(N_D)*e*mu_e; // Extrinsic electrical conductivity of Si, per ohm per metre printf("\nThe intrinsic electrical conductivity of Si = %5.3e per ohm per metre", sigma_i); printf("\nThe extrinsic electrical conductivity of Si = %4.1f per ohm per metre", sigma_ext); // Result // The intrinsic electrical conductivity of Si = 4.325e-004 per ohm per metre // The extrinsic electrical conductivity of Si = 10.0 per ohm per metre
6ceecb07caf9f8f6e32fbad9a24a00b89afddb5b
5887829f5a0a005033807cf7dc4fb7231eb280ec
/Listing/chapter 6/Listing6213.sce
96c3553cc7b81b2fac3b7cc17c1f55fe798610e1
[]
no_license
joaolrneto/learning_scilab
78ecc0019f167b57bc35647c4ac785ece01e443e
9624c9a6736860a8a836b0f801256b6224756585
refs/heads/main
2023-03-17T22:17:51.853368
2021-03-15T20:58:34
2021-03-15T20:58:34
344,478,059
0
0
null
null
null
null
UTF-8
Scilab
false
false
108
sce
Listing6213.sce
im = imread(fullpath('DSC_0172.JPG')); clf(1) imshow(im) imn = imnoise(im, 'gaussian'); clf(2) imshow(imn);
8cefcc53f02652112ff283b97dc72620eb4f5f62
449d555969bfd7befe906877abab098c6e63a0e8
/72/CH8/EX8.2.1/8_2_1.sce
a1785b9050fb8471e8a29321f65d8838c08c0470
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
452
sce
8_2_1.sce
//chapter_no.-8, page_no.-331 //Example_no.8-2-1 clc; //(a)Calculate_the_maximum_CW_power n=.15;//efficiency Vomax=100;//maximum_operating_voltage Iomax=200*(10^-3);//maximum_operating_current Pdc=Vomax*Iomax; P=n*Pdc; disp(P,'the_maximum_CW_power(in Watts)is ='); //(b) Calculate_the_resonant_frequency L=6*(10^-6);//drift-region_Length vd=2*(10^5);//carrier_drift_velocity f=vd/(2*L); f=f/(10^9); disp(f,'the_resonant_frequency(in GHz)is =');
ae0de3fe95bd4318108cc32d7fdbe94e0ef5613a
449d555969bfd7befe906877abab098c6e63a0e8
/1388/CH5/EX5.3/5_3.sce
435ce570f987fd4b8b62fb3783a04c936ff07a17
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
170
sce
5_3.sce
clc //initialisation of variables T= 27 //C R= 0.08206 //cal/mol T W= 28.6 //gms //CALCULATIONS d= W/((273.2+T)*R) //RESULTS printf (' density = %.3f g l^-1',d)
f66f9ba457e8e3e04800944aea143d4be67b6f2f
449d555969bfd7befe906877abab098c6e63a0e8
/1994/CH2/EX2.2/Example2_2.sce
4b417cba0d8a421d4381b63c054c8a4b2f2804c5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
245
sce
Example2_2.sce
//Chapter-2,Example2_2,pg 2_11 n=8 Res1=2^n Vofs=2.55//full scale output voltage Res2=Vofs/(Res1-1) printf("resolution through method-1\n") printf("Res1=%.2f \n",Res1) printf("resolution through method-2\n") printf("Res2=%.2f \n",Res2)
ab4c7065e6993eb77929a7227b1c3c06faaceb14
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set9/s_Engineering_Mechancis-schaum_Series_Mclean_3137.zip/Engineering_Mechancis-schaum_Series_Mclean_3137/CH16/EX16.18/Ex16_18.sce
7690a6da583618c38da5aab75ce1135e22016db1
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
310
sce
Ex16_18.sce
errcatch(-1,"stop");mode(2);//Initilization of variables r=0.05 //m cylinder radius g=9.8 //m/s^2 //Calculations //Here the equation has been solved in terms of the veriables //Hence we directly consider the final result av=(2*g)/3 //m/s^2 //Result printf('The value of av is %f m/s^2',av) exit();
4faeb8b01281518984ee5c2385880a0b74031525
449d555969bfd7befe906877abab098c6e63a0e8
/226/CH12/EX12.4/example5_sce.sce
fe82e40dbda58b17ba20c7124fce697716203835
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
259
sce
example5_sce.sce
//chapter 12 //example 12.5 //page 485 printf("\n") printf("given") rs=600;f1=100;Yfs=6000*10^-6;R1=4.7*10^6;R2=1*10^6;Rd=6.8*10^3;Rl=120*10^3; Xc2=1/Yfs C2=1/(2*3.14*f1*Xc2) Zi=(R1*R2)/(R1+R2) C1=1/(2*3.14*f1*(Zi+rs)/10) C3=1/(2*3.14*f1*(Rd+Rl)/10)
89f220282175dae5ff0d7ecf94a44b41ec1f9943
449d555969bfd7befe906877abab098c6e63a0e8
/2138/CH6/EX6.2/ex_6_2.sce
da4aa583a76652d9ea0631804477bf926b391f37
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
155
sce
ex_6_2.sce
//Example 6.2 // force clc; clear; close; I=70;// in amperes B=0.4;//flus density in Wb/m^2 n=1;//turns F=B*n*I;// in newton disp(F,"force in newtons is")
cffc025261a33b2262e4875e53b5b8fea04dc7d9
449d555969bfd7befe906877abab098c6e63a0e8
/1163/CH2/EX2.4/example_2_4.sce
5d793adf7f40f79037a4d00f186f66bceb022235
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
4,683
sce
example_2_4.sce
clear; clc; clf(); xname("--------------Example 2.4----------------"); // display the figure xset("color",0); xset("font size",3); xrect(-.05,1,.09,.09); xrect(0.06,1,.09,.09); xrect(0.17,1,.09,.09); xrect(0.72,1,.09,.09); xrect(0.83,1,.09,.09); xstring(-.02,1,["a"]); xstring(0.09,1,["b"]); xstring(.20,1,["c"]); xstring(.75,1,["j"]); xstring(.86,1,["k"]); xstring(0.06,.75,["A - Sender"]); xstring(0.8,.75,["P - Reciever"]); xrect(.06,.7,.07,.05); xstringb(.06,.65,["Data"],.07,.05); xrect(.8,.7,.07,.05); xstringb(.8,.65,["Data"],.07,.05); xstring(.13,.65,["----------------------------------------------------Application Layer------------------------------------------------"]) xrects([ 0 .03 .06;.6 .6 .6;.03 .03 .07;.06 .06 .06]); xrects([.74 .77 .80;.6 .6 .6;.03 .03 .07;.06 .06 .06]); xstring(0.005,.55,["a"]); xstring(0.035,.55,["j"]); xrect(.065,.595,.06,.05); xstring(.074,.555,["Data"]); xstring(0.745,.55,["a"]); xstring(0.775,.55,["j"]); xrect(.805,.595,.06,.05); xstring(.82,.555,["Data"]); xstring(.13,.55,["---------------------------------------------------Transport Layer----------------------------------------"]) xrect(-.06,.465,.19,.065); xrect(.68,.465,.19,.065); xrects([ -.06 -.03 0;.47 .47 .47;.03 .03 .13;.06 .06 .06]); xrects([.68 .71 .74;.47 .47 .47;.03 .03 .13;.06 .06 .06]); xrects([ 0 .03 .06;.46 .46 .46;.03 .03 .07;.057 .057 .057]); xrects([.74 .77 .80;.46 .46 .46;.03 .03 .07;.057 .057 .057]); xstring(0.005,.41,["a"]); xstring(0.035,.41,["j"]); xrect(.065,.455,.06,.05); xstring(.074,.415,["Data"]); xstring(0.745,.41,["a"]); xstring(0.775,.41,["j"]); xrect(.805,.455,.06,.05); xstring(.82,.415,["Data"]); xstring(-.055,.42,["A"]); xstring(-.02,.42,["P"]); xstring(.69,.42,["A"]); xstring(.72, .42,["P"]); xstring(.13,.42,["---------------------------------------------Network Layer-------------------------------------"]); xrect(-.06,.305,.19,.075); xrect(.68,.305,.19,.075); xrects([ -.06 -.03 0;.3 .3 .3;.03 .03 .13;.06 .06 .06]); xrects([.68 .71 .74;.3 .3 .3;.03 .03 .13;.06 .06 .06]); xrects([ 0 .03 .06;.297 .297 .297;.03 .03 .07;.057 .057 .057]); xrects([.74 .77 .80;.297 .297 .297;.03 .03 .07;.057 .057 .057]); xstring(0.005,.24,["a"]); xstring(0.035,.24,["j"]); xrect(.065,.29,.06,.05); xstring(.074,.245,["Data"]); xstring(0.745,.24,["a"]); xstring(0.775,.24,["j"]); xrect(.805,.29,.06,.05); xstring(.82,.245,["Data"]); xstring(-.055,.25,["A"]); xstring(-.02,.25,["P"]); xstring(.69,.25,["A"]); xstring(.72, .25,["P"]); xset("color",2); xfrect(-.09,.305,.03,.075); xfrect(.65,.305,.03,.075); xfrect(.13,.305,.03,.075); xfrect(.87,.305,.03,.075); xstring(-.087,.24,["H2"]); xstring(.13,.24,["T2"]); xstring(.655,.24,["H2"]); xstring(.87,.24,["T2"]); xstring(.155,.26,["--------------------------------------Data link Layer---------------------------------"]); xset("color",0); xstring(.38,.05,["Internet"]); xarc(0.3,.15,.2,.2,0,360*64); xpoly([0.09,0.09],[.75,.7]); xpoly([0.09,0.09],[.65,.6]); xpoly([0.09,0.09],[.54,.47]); xpoly([0.09,0.09],[.4,.3]); xarrows([0.1,.3],[.23 .08]); xpoly([0.84,0.84],[.75,.7]); xpoly([0.84,0.84],[.65,.6]); xpoly([0.84,0.84],[.54,.47]); xpoly([0.84,0.84],[.4,.3]); xpoly([.5 .8],[.08 .23]); xpoly([-.02 .06],[.91 0.77]); xarrows([.82 .75],[.77 0.91]); disp("--------------Example 2.4----------------") // display the text printf("Figure shows two computers communicating via the Internet. The sending computer is running three processes at\nthis time with port addresses a, b, and c. The receiving computer is running two processes at this time with port addresses j and k.\nProcess a in the sending computer needs to communicate with process j in the receiving computer.\nNote that although both computers are using the same application, FTP, the port addresses are different because one is a client\nprogram and the other is a server program . To show that data from process a need to be delivered to process j, and not k,\nthe transport layer encapsulates data from the application layer in a packet and adds two port addresses (a and j), source and destination.\nThe packet from the transport layer is then encapsulated in another packet at the network layer with logical source and\ndestination addresses (A and P). Finally, this packet is encapsulated in a frame with the physical source and destination addresses of the next\nhop. We have not shown the physical addresses because they change from hop to hop inside the cloud designated as the Internet. Note\nthat although physical addresses change from hop to hop, logical and port\naddresses remain the same from the source to destination.");
3cf064095b5e16495876479f49a059c72d9de296
449d555969bfd7befe906877abab098c6e63a0e8
/764/CH7/EX7.14.b/solution7_14.sce
dca3fc7137eeae62e94bb03428f7f9a2ccb4fc96
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,597
sce
solution7_14.sce
//Obtain path of solution file path = get_absolute_file_path('solution7_14.sce') //Obtain path of data file datapath = path + filesep() + 'data7_14.sci' //Clear all clc //Execute the data file exec(datapath) //Calculate the permissible shear stress tauMax (N/mm2) tauMax = ((50/100)*Syt)/fs //Horizontal component of force P Ph (N) Ph = P * 1000 * sind(theta) //Vertical component of force P Pv (N) Pv = P * 1000 * cosd(theta) //Calculate the direct tensile force on each bolt Dtensile (N) Dtensile = Ph/N //Calculate the turning moment due to horizontal component Mh (N-mm) Mh = Ph * (f - cg) //Calculate the direct shear force on each bolt Sshear (N) Sshear = Pv/N //Calculate the turning moment due to vertical component Mv (N-mm) Mv = Pv * t //Calculate the tensile force on appropriate bolt due to bending moment Ftensile (N) if (l1 > l2) then Ftensile = ((Mh + Mv)*l1)/(2*((l1^2) + (l2^2))) else Ftensile = ((Mh + Mv)*l2)/(2*((l1^2) + (l2^2))) end //Calculate the total tensile force on each bolt Pt (N) Pt = Dtensile + Ftensile //Assume the core cross-section area of the bolts to be 1mm2 A A = 1 //Calculate the resultant tensile stress in the bolt res (N/mm2) res = Pt/A //Calculate the shear stress in bolts Stau (N/mm2) Stau = Sshear/A //Calculate the maximum shear stress in the bolts tau (N/mm2) tau = (((res/2)^2) + (Stau^2))^(1/2) //Calculate the actual core cross-section area of the bolts A (mm2) A = tau/tauMax //Choose proper diameter from Table 7.1 //Print results printf('\nArea at the core cross-section(A) = %f mm2\n',A)
f3e28ccca12bd888a852c84f017665f865249bb7
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/tweet/bow/bow.4_7.tst
0bae0b13a93a0dd4cc44641e3888649b85cd829b
[]
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
41,528
tst
bow.4_7.tst
4 8:0.05555555555555555 17:0.25 28:1.0 81:0.5 206:0.25 268:1.0 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 3515:1.0 4 8:0.1111111111111111 14:2.0 31:0.5 37:0.1111111111111111 54:0.5 58:0.1 95:1.0 127:1.0 164:0.5 184:0.5 201:0.3333333333333333 202:2.0 295:0.5 296:1.0 332:1.0 482:1.0 537:1.0 542:0.5 548:0.06666666666666667 691:0.5 726:1.0 727:1.0 898:0.030303030303030304 1113:2.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 4 8:0.05555555555555555 14:1.0 21:0.5 27:0.010752688172043012 31:0.3333333333333333 45:0.3333333333333333 58:0.1 65:0.5 81:0.5 107:1.0 115:1.0 127:1.0 196:1.0 234:1.0 524:1.0 548:0.06666666666666667 726:1.0 898:0.030303030303030304 958:1.0 989:1.0 1090:1.0 1151:1.0 1644:2.0 2191:1.0 4 1:0.043478260869565216 31:0.16666666666666666 45:0.3333333333333333 54:0.5 65:0.5 88:0.5 99:0.6666666666666666 129:0.5 134:1.0 175:1.0 259:0.3333333333333333 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 4248:1.0 4 7:0.16666666666666666 8:0.05555555555555555 14:1.0 30:1.0 31:0.3333333333333333 32:0.5 45:0.3333333333333333 58:0.1 65:0.5 144:0.2 184:0.5 281:0.5 312:1.0 417:0.16666666666666666 437:1.0 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:1.0 1815:1.0 4 8:0.16666666666666666 14:1.0 17:0.25 27:0.010752688172043012 31:0.5 88:0.5 123:0.5 129:0.5 133:1.0 134:1.0 153:0.3333333333333333 161:0.5 164:0.5 175:1.0 255:1.0 259:0.6666666666666666 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 4248:1.0 4 8:0.05555555555555555 14:1.0 17:0.5 27:0.010752688172043012 31:0.5 37:0.1111111111111111 45:0.3333333333333333 88:0.5 129:0.5 174:0.09090909090909091 175:1.0 239:0.3333333333333333 259:0.6666666666666666 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:0.5 1848:1.0 2164:1.0 2222:1.0 2388:1.0 3261:1.0 3291:1.0 4 7:0.16666666666666666 8:0.1111111111111111 21:1.0 22:0.14285714285714285 30:1.0 31:0.3333333333333333 58:0.1 99:0.3333333333333333 107:2.0 116:1.0 129:0.5 131:1.0 133:1.0 144:0.2 145:0.2 164:0.5 169:0.1 174:0.09090909090909091 219:1.0 259:1.6666666666666667 281:0.5 312:1.0 377:1.0 437:1.0 499:1.0 500:1.0 528:1.0 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:1.0 2328:1.0 3246:1.0 3253:1.0 3597:1.0 4 1:0.043478260869565216 8:0.1111111111111111 12:1.0 14:1.0 22:0.14285714285714285 31:0.3333333333333333 45:0.6666666666666666 50:0.25 58:0.2 88:0.5 95:1.0 96:1.0 129:0.5 134:1.0 142:1.0 144:0.2 162:2.0 175:1.0 193:0.09523809523809523 259:0.3333333333333333 285:1.0 291:1.0 295:0.5 296:1.0 300:2.0 342:1.0 437:1.0 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 4248:1.0 4 1:0.043478260869565216 8:0.1111111111111111 14:1.0 22:0.14285714285714285 31:0.3333333333333333 41:0.5 45:0.6666666666666666 58:0.1 61:0.5 84:1.0 88:0.5 95:0.5 96:1.0 129:0.5 134:1.0 174:0.09090909090909091 175:1.0 187:1.0 188:1.0 214:1.0 216:1.0 234:1.0 235:1.0 259:0.6666666666666666 285:1.0 295:0.5 300:2.0 342:1.0 437:1.0 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 4248:1.0 4 1:0.043478260869565216 8:0.1111111111111111 14:1.0 17:0.25 21:0.5 24:1.0 27:0.010752688172043012 28:1.0 107:1.0 134:1.0 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:1.0 653:1.0 654:1.0 769:1.0 829:1.0 1070:1.0 1255:1.0 1439:1.0 1810:1.0 1815:1.0 1947:1.0 4918:1.0 4 1:0.043478260869565216 6:0.3333333333333333 8:0.1111111111111111 27:0.010752688172043012 30:1.0 45:1.0 46:1.0 51:0.2 58:0.2 91:1.0 137:1.0 153:0.3333333333333333 169:0.1 234:1.0 259:0.3333333333333333 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.1111111111111111 14:1.0 24:1.0 27:0.010752688172043012 31:0.16666666666666666 37:0.1111111111111111 45:0.6666666666666666 88:0.5 133:1.0 139:0.5 145:0.2 155:1.0 162:1.0 172:1.0 268:1.0 275:0.5 291:1.0 304:0.5 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.2 1856:1.0 1979:1.0 2451:1.0 2523:1.0 2530:1.0 2607:0.5 5358:1.0 6164:1.0 4 1:0.043478260869565216 8:0.16666666666666666 14:1.0 21:0.5 26:1.0 27:0.010752688172043012 31:0.16666666666666666 45:0.3333333333333333 129:0.5 134:1.0 175:1.0 196:1.0 259:0.3333333333333333 285:1.0 300:2.0 312:1.0 328:0.14285714285714285 439:0.5 462:1.0 798:1.0 819:1.0 1065:1.0 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:1.0 3261:1.0 3336:1.0 4248:1.0 4 1:0.08695652173913043 8:0.1111111111111111 14:3.0 22:0.2857142857142857 27:0.010752688172043012 31:0.16666666666666666 45:0.3333333333333333 65:0.5 69:0.3333333333333333 77:0.3333333333333333 123:0.5 129:0.5 130:0.5 134:1.0 138:1.0 152:1.0 162:1.0 175:1.0 184:0.5 193:0.23809523809523808 197:1.0 204:1.0 205:1.0 212:1.0 259:0.3333333333333333 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:1.0 1113:1.0 2874:1.0 3261:1.0 3264:1.0 3265:1.0 3336:1.0 4248:1.0 4 1:0.043478260869565216 8:0.16666666666666666 14:1.0 17:0.25 27:0.010752688172043012 31:0.3333333333333333 32:0.5 36:1.0 45:0.6666666666666666 65:0.5 75:1.0 99:0.3333333333333333 115:1.0 144:0.2 145:0.2 162:1.0 174:0.09090909090909091 200:1.0 202:1.0 239:0.3333333333333333 259:0.3333333333333333 312:1.0 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:1.0 1801:1.0 1811:1.0 2347:1.0 2676:1.0 3037:1.0 3261:2.0 3272:0.5 4 7:0.16666666666666666 8:0.16666666666666666 31:0.5 44:1.0 45:1.0 58:0.2 84:1.0 111:1.0 123:0.5 133:1.0 155:1.0 162:2.0 181:0.07692307692307693 184:0.5 190:1.0 218:1.0 234:1.0 259:0.3333333333333333 263:1.0 268:1.0 288:1.0 317:1.0 335:1.0 338:1.0 344:1.0 446:1.0 451:1.0 677:1.0 800:1.0 853:1.0 876:1.0 937:0.4 1220:1.0 1392:1.0 1405:0.5 1616:1.0 1777:1.0 2106:1.0 4 7:0.16666666666666666 14:3.0 17:0.5 21:0.5 37:0.1111111111111111 45:0.3333333333333333 58:0.1 88:0.5 145:0.2 146:1.0 160:1.0 164:0.5 169:0.1 175:1.0 212:1.0 232:1.0 259:0.3333333333333333 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:1.0 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.3333333333333333 24:2.0 27:0.010752688172043012 30:1.0 31:0.16666666666666666 45:0.6666666666666666 58:0.3 137:1.0 144:0.2 148:1.0 150:1.0 169:0.1 174:0.09090909090909091 175:1.0 232:1.0 259:0.6666666666666666 363:1.0 364:1.0 422:1.0 437:1.0 667:1.0 686:1.0 1012:0.5 1773:1.0 2294:1.0 2607:0.5 4 7:0.3333333333333333 8:0.3333333333333333 12:1.0 14:1.0 17:0.25 27:0.021505376344086023 31:0.3333333333333333 37:0.1111111111111111 54:0.5 81:0.5 86:0.16666666666666666 134:1.0 141:1.0 142:1.0 144:0.2 145:0.2 162:1.0 174:0.09090909090909091 181:0.07692307692307693 182:1.0 184:0.5 237:1.0 259:0.3333333333333333 281:0.5 305:1.0 319:1.0 374:1.0 391:1.0 404:1.0 499:1.0 500:1.0 501:0.5 653:1.0 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 4 14:1.0 45:1.3333333333333333 51:0.4 99:0.3333333333333333 130:0.5 134:1.0 141:1.0 153:0.3333333333333333 174:0.09090909090909091 197:1.0 259:0.3333333333333333 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:1.0 2910:1.0 5475:1.0 4 8:0.1111111111111111 14:1.0 17:0.5 24:1.0 31:0.16666666666666666 45:0.3333333333333333 58:0.1 59:1.0 116:1.0 134:1.0 139:0.5 145:0.2 169:0.1 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 4 8:0.05555555555555555 17:0.5 21:0.5 31:0.5 45:0.6666666666666666 58:0.1 84:1.0 86:0.16666666666666666 115:1.0 164:0.5 187:1.0 188:1.0 234:1.0 252:0.5 259:0.3333333333333333 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.16666666666666666 14:1.0 17:0.25 27:0.010752688172043012 31:0.3333333333333333 32:0.5 37:0.1111111111111111 45:0.3333333333333333 58:0.2 88:0.5 123:0.5 139:0.5 145:0.2 202:2.0 227:0.5 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:0.5 980:1.0 1012:0.5 1280:1.0 1545:1.0 2564:1.0 4 1:0.043478260869565216 8:0.3333333333333333 17:0.25 21:0.5 22:0.14285714285714285 24:1.0 27:0.010752688172043012 31:0.5 45:0.3333333333333333 58:0.1 129:0.5 130:0.5 137:1.0 141:1.0 142:1.0 144:0.2 145:0.2 259:0.6666666666666666 285:1.0 295:0.5 301:1.0 373:1.0 377:1.0 437:1.0 458:1.0 523:1.0 632:1.0 688:1.0 767:1.0 845:1.0 900:0.5 1095:1.0 1497:1.0 1519:1.0 1520:1.0 1664:0.5 2240:1.0 2733:1.0 2851:1.0 2874:1.0 2875:1.0 5901:1.0 4 8:0.05555555555555555 12:1.0 14:1.0 17:0.25 45:0.6666666666666666 61:0.5 128:0.25 129:1.0 145:0.2 174:0.09090909090909091 202:1.0 304:0.5 420:0.5 475:1.0 489:0.5 900:0.5 954:0.5 1053:1.0 1387:1.0 1413:1.0 3102:1.0 4206:1.0 4 24:1.0 31:0.16666666666666666 58:0.1 101:1.0 123:0.5 139:0.5 259:0.3333333333333333 266:1.0 275:0.5 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:0.5 742:1.0 1225:1.0 1230:1.0 5901:1.0 4 7:0.16666666666666666 8:0.1111111111111111 14:1.0 17:0.5 22:0.14285714285714285 23:0.25 31:0.3333333333333333 58:0.1 69:0.3333333333333333 88:0.5 99:0.3333333333333333 145:0.2 154:1.0 162:1.0 169:0.1 178:1.0 239:0.3333333333333333 240:1.0 259:0.3333333333333333 268:1.0 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.2222222222222222 17:0.5 21:1.0 24:1.0 30:1.0 31:0.16666666666666666 45:1.3333333333333333 58:0.2 88:0.5 99:0.3333333333333333 101:1.0 123:0.5 130:0.5 134:1.0 141:1.0 142:1.0 161:0.5 169:0.1 187:1.0 193:0.09523809523809523 204:1.0 409:0.3333333333333333 445:2.0 477:0.1 482:2.0 507:0.5 514:1.0 532:1.0 600:0.3333333333333333 604:1.0 686:1.0 691:0.5 718:0.5 726:1.0 788:1.0 798:1.0 902:1.0 930:1.0 1050:1.0 1054:1.0 1113:1.0 1259:1.0 1427:1.0 1502:1.0 2240:1.0 2787:1.0 3706:1.0 4274:0.5 4 8:0.1111111111111111 12:2.0 17:0.25 21:0.5 22:0.14285714285714285 23:0.25 27:0.021505376344086023 31:0.5 37:0.1111111111111111 45:0.3333333333333333 58:0.1 88:0.5 94:1.0 99:0.6666666666666666 145:0.2 175:1.0 178:1.0 346:0.5 507:0.5 576:1.0 954:0.5 956:1.0 988:1.0 1089:1.0 1257:1.0 1490:1.0 1772:1.0 3121:1.0 3122:1.0 3123:1.0 3125:1.0 3300:1.0 4131:1.0 4316:0.5 4 8:0.1111111111111111 12:1.0 14:1.0 21:1.5 31:0.16666666666666666 45:0.3333333333333333 54:0.5 88:0.5 99:0.3333333333333333 115:1.0 123:0.5 142:1.0 174:0.09090909090909091 196:1.0 259:0.3333333333333333 298:1.0 328:0.14285714285714285 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 4 8:0.05555555555555555 14:1.0 17:0.25 21:0.5 23:0.25 27:0.010752688172043012 31:0.3333333333333333 45:0.6666666666666666 54:0.5 58:0.1 61:0.5 86:0.16666666666666666 130:0.5 164:0.5 189:0.5 193:0.09523809523809523 226:1.0 260:0.5 295:0.5 298:1.0 312:1.0 350:1.0 439:0.5 699:0.25 870:1.0 975:1.0 1113:1.0 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 3744:1.0 4 1:0.043478260869565216 17:0.5 23:0.25 27:0.010752688172043012 31:0.5 40:0.5 45:0.6666666666666666 51:0.2 55:1.0 58:0.2 88:1.0 123:0.5 131:1.0 134:1.0 154:1.0 161:0.5 164:1.5 178:1.0 259:0.6666666666666666 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 4767:1.0 4 6:0.3333333333333333 8:0.05555555555555555 12:1.0 14:1.0 17:0.25 31:0.3333333333333333 37:0.1111111111111111 45:1.0 81:0.5 88:0.5 115:1.0 142:1.0 161:0.5 212:1.0 282:1.0 604:1.0 659:1.0 699:0.25 737:1.0 965:1.0 1053:1.0 1174:0.5 1854:1.0 2031:1.0 2357:1.0 2750:1.0 3614:1.0 4 6:0.3333333333333333 7:0.16666666666666666 8:0.05555555555555555 14:1.0 17:1.0 24:1.0 27:0.010752688172043012 31:0.16666666666666666 37:0.1111111111111111 88:0.5 95:0.5 115:1.0 134:1.0 162:1.0 167:1.0 188:1.0 189:0.5 193:0.047619047619047616 196:1.0 202:1.0 300:2.0 302:1.0 330:1.0 437:1.0 438:1.0 528:1.0 699:0.25 827:1.0 860:1.0 965:1.0 975:1.0 1239:1.0 1439:1.0 1757:1.0 6164:1.0 4 8:0.1111111111111111 14:1.0 17:0.5 27:0.010752688172043012 31:0.16666666666666666 65:0.5 88:0.5 142:1.0 206:0.25 212:1.0 268:1.0 312:1.0 404:1.0 423:1.0 438:1.0 1039:1.0 1145:0.5 1255:1.0 1256:1.0 1538:1.0 2088:1.0 2090:1.0 4 1:0.043478260869565216 14:1.0 17:0.25 24:1.0 27:0.010752688172043012 45:1.0 58:0.1 99:0.3333333333333333 134:1.0 142:2.0 145:0.2 146:1.0 204:1.0 259:0.3333333333333333 281:1.0 282:1.0 382:1.0 437:1.0 443:1.0 445:1.0 489:0.5 490:1.0 491:1.0 492:1.0 493:1.0 837:1.0 1102:1.0 1141:1.0 1145:0.5 1255:1.0 1256:1.0 1382:1.0 1550:1.0 2261:1.0 2584:1.0 4 1:0.043478260869565216 8:0.1111111111111111 17:0.25 23:0.25 24:1.0 27:0.010752688172043012 44:1.0 51:0.6 65:0.5 88:0.5 162:5.0 211:1.0 234:1.0 312:1.0 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.2222222222222222 12:1.0 17:0.25 21:1.0 27:0.03225806451612903 31:0.16666666666666666 32:0.5 37:0.2222222222222222 45:0.6666666666666666 54:0.5 134:1.0 178:1.0 184:0.5 189:0.5 226:1.0 232:1.0 440:1.0 840:1.0 841:1.0 911:1.0 919:0.2 1088:2.0 1545:1.0 1652:1.0 3071:1.0 3421:1.0 3916:1.0 3999:1.0 4 1:0.043478260869565216 6:0.6666666666666666 8:0.1111111111111111 14:1.0 27:0.021505376344086023 28:1.0 30:1.0 32:0.5 44:1.0 45:2.0 58:0.4 84:1.0 91:1.0 95:0.5 116:1.0 123:0.5 128:0.25 139:0.5 144:0.2 162:1.0 166:1.0 211:1.0 212:1.0 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:1.0 847:1.0 954:0.5 980:1.0 1070:1.0 1298:1.0 1405:0.5 1455:1.0 1734:1.0 2557:1.0 5325:1.0 4 1:0.043478260869565216 2:0.5 8:0.1111111111111111 12:1.0 14:1.0 17:0.25 24:1.0 27:0.010752688172043012 45:0.6666666666666666 88:0.5 115:1.0 123:1.0 139:0.5 190:1.0 193:0.047619047619047616 228:0.5 259:0.3333333333333333 275:0.5 281:0.5 342:1.0 346:1.0 489:0.5 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 4337:1.0 4 3:1.0 6:0.3333333333333333 7:0.3333333333333333 8:0.2222222222222222 14:2.0 17:0.25 19:1.0 21:1.5 27:0.010752688172043012 37:0.2222222222222222 45:0.3333333333333333 50:0.25 95:0.5 114:1.0 115:1.0 134:1.0 154:1.0 155:1.0 156:1.0 157:1.0 184:0.5 204:1.0 232:1.0 237:1.0 310:1.0 333:2.0 417:0.16666666666666666 440:1.0 502:1.0 628:1.0 667:1.0 675:1.0 840:1.0 1088:2.0 1113:1.0 2031:1.0 2051:1.0 2095:1.0 2732:1.0 2733:1.0 2734:1.0 3237:0.5 3278:1.0 3916:1.0 4 1:0.08695652173913043 17:0.25 27:0.021505376344086023 45:0.3333333333333333 50:0.25 51:0.2 58:0.2 61:0.5 81:0.5 88:0.5 95:1.5 206:0.25 268:1.0 344:1.0 440:1.0 710:1.0 726:1.0 1050:0.5 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.16666666666666666 14:2.0 27:0.021505376344086023 37:0.1111111111111111 45:0.3333333333333333 50:0.25 88:0.5 95:0.5 123:0.5 142:1.0 187:1.0 188:1.0 212:1.0 259:0.3333333333333333 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:0.5 2255:1.0 2341:1.0 2617:1.0 4 7:0.3333333333333333 8:0.3333333333333333 21:0.5 31:0.16666666666666666 37:0.1111111111111111 45:0.3333333333333333 65:0.5 123:0.5 134:1.0 169:0.1 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:1.0 1071:1.0 1089:1.0 1149:1.0 1841:1.0 2244:1.0 2252:1.0 2709:1.0 2922:1.0 4742:1.0 5780:1.0 4 1:0.08695652173913043 7:0.16666666666666666 8:0.16666666666666666 14:2.0 17:1.25 27:0.021505376344086023 31:0.3333333333333333 37:0.1111111111111111 50:0.25 93:5.0 95:1.0 99:1.3333333333333333 123:0.5 127:2.0 129:2.5 152:1.0 162:1.0 174:0.18181818181818182 184:0.5 193:0.047619047619047616 218:1.0 259:0.3333333333333333 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 4 6:0.3333333333333333 7:0.16666666666666666 8:0.1111111111111111 17:0.25 31:0.3333333333333333 37:0.1111111111111111 44:1.0 45:1.0 50:0.25 52:2.0 58:0.3 59:1.0 88:0.5 95:0.5 115:1.0 116:1.0 123:0.5 130:0.5 142:2.0 155:1.0 162:2.0 169:0.1 193:0.047619047619047616 203:1.0 259:0.3333333333333333 266:2.0 273:0.5 274:1.0 275:0.5 295:0.5 363:1.0 437:1.0 576:1.0 649:1.0 653:1.0 960:1.0 1021:1.0 1030:1.0 1054:1.0 1123:1.0 1275:1.0 1405:0.5 1560:1.0 1664:0.5 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.16666666666666666 8:0.16666666666666666 17:0.5 31:0.5 37:0.1111111111111111 45:0.6666666666666666 58:0.1 86:0.16666666666666666 88:0.5 93:1.0 99:0.3333333333333333 123:1.5 237:1.0 281:1.0 295:0.5 332:1.0 404:1.0 409:0.3333333333333333 433:1.0 437:1.0 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.05555555555555555 14:1.0 17:0.25 21:1.0 24:1.0 27:0.021505376344086023 31:0.16666666666666666 37:0.1111111111111111 45:0.3333333333333333 88:0.5 232:1.0 268:1.0 289:1.0 363:1.0 404:1.0 508:2.0 649:1.0 697:0.5 976:2.0 1065:2.0 1089:1.0 1456:1.0 2261:1.0 2573:1.0 2942:2.0 3263:1.0 4552:1.0 4682:1.0 4 1:0.043478260869565216 8:0.05555555555555555 14:2.0 24:2.0 27:0.021505376344086023 31:0.16666666666666666 37:0.1111111111111111 45:1.0 58:0.1 88:0.5 95:0.5 99:0.3333333333333333 101:1.0 115:1.0 142:1.0 162:1.0 193:0.09523809523809523 228:0.5 232:1.0 259:0.6666666666666666 346:0.5 363:1.0 364:1.0 417:0.16666666666666666 433:1.0 528:1.0 651:1.0 653:1.0 845:1.0 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 4336:1.0 4 7:0.16666666666666666 8:0.2222222222222222 17:0.25 26:1.0 45:0.3333333333333333 61:0.5 69:0.3333333333333333 81:0.5 88:0.5 101:1.0 154:1.0 155:2.0 193:0.047619047619047616 204:1.0 205:1.0 239:0.6666666666666666 295:0.5 327:0.5 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 5158:1.0 5901:1.0 4 8:0.05555555555555555 14:1.0 17:0.25 24:1.0 26:1.0 27:0.010752688172043012 31:0.5 37:0.2222222222222222 58:0.2 95:0.5 134:1.0 142:1.0 145:0.2 162:1.0 181:0.07692307692307693 182:1.0 188:1.0 189:0.5 193:0.14285714285714285 300:2.0 302:1.0 328:0.14285714285714285 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 4374:1.0 4 7:0.16666666666666666 14:2.0 17:0.25 23:0.25 24:1.0 26:1.0 27:0.021505376344086023 31:0.3333333333333333 37:0.2222222222222222 45:0.6666666666666666 58:0.1 95:0.5 123:0.5 141:1.0 181:0.07692307692307693 182:1.0 193:0.047619047619047616 332:1.0 374:1.0 437:1.0 826:0.1111111111111111 877:1.0 919:0.2 1131:1.0 1545:1.0 1652:1.0 1745:0.5 2078:1.0 2354:1.0 2628:1.0 2913:1.0 3085:1.0 3283:1.0 3329:1.0 3387:1.0 4746:1.0 4 7:0.16666666666666666 14:1.0 17:0.25 21:0.5 23:0.25 24:2.0 31:0.5 32:0.5 44:1.0 45:0.3333333333333333 50:0.25 58:0.3 81:0.5 131:1.0 137:2.0 139:0.5 142:1.0 239:0.3333333333333333 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 5354:1.0 4 8:0.05555555555555555 17:0.25 21:0.5 27:0.010752688172043012 31:0.16666666666666666 37:0.2222222222222222 45:0.3333333333333333 142:1.0 145:0.2 160:1.0 259:0.3333333333333333 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:1.0 634:1.0 827:1.0 838:1.0 847:1.0 1124:1.0 1219:1.0 1244:1.0 1484:1.0 2235:2.0 2903:1.0 4 7:0.3333333333333333 8:0.1111111111111111 14:1.0 17:0.25 21:1.0 22:0.14285714285714285 31:0.16666666666666666 45:1.0 46:1.0 58:0.1 99:0.3333333333333333 128:0.25 130:0.5 142:1.0 145:0.2 146:1.0 162:1.0 190:1.0 200:1.0 214:1.0 232:1.0 239:0.3333333333333333 259:1.3333333333333333 260:1.0 281:0.5 282:1.0 293:1.0 295:0.5 311:1.0 328:0.14285714285714285 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:1.0 1070:1.0 1483:1.0 1586:1.0 1611:1.0 1754:1.0 1925:1.0 2261:1.0 2797:1.0 3009:1.0 3041:1.0 3263:1.0 3456:1.0 3834:1.0 4328:2.0 4 8:0.16666666666666666 22:0.14285714285714285 31:0.16666666666666666 37:0.1111111111111111 41:0.5 45:0.3333333333333333 65:0.5 84:1.0 85:1.0 99:0.3333333333333333 129:0.5 145:0.2 162:1.0 174:0.09090909090909091 187:1.0 188:1.0 234:1.0 259:0.6666666666666666 338:1.0 361:1.0 371:1.0 486:0.5 542:1.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.5 8:0.1111111111111111 27:0.010752688172043012 31:0.16666666666666666 37:0.2222222222222222 45:0.6666666666666666 58:0.1 60:1.0 65:0.5 95:1.0 123:0.5 184:0.5 187:1.0 193:0.047619047619047616 234:1.0 260:0.5 266:1.0 333:2.0 376:1.0 391:1.0 486:0.5 489:0.5 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:0.3333333333333333 8:0.16666666666666666 17:0.25 31:0.16666666666666666 32:0.5 37:0.1111111111111111 45:1.3333333333333333 61:0.5 65:0.5 81:0.5 84:1.0 88:0.5 90:0.14285714285714285 95:0.5 116:2.0 145:0.2 146:1.0 162:1.0 186:1.0 187:1.0 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:1.0 548:0.06666666666666667 576:2.0 653:1.0 908:1.0 909:1.0 911:1.0 1070:1.0 1405:1.0 1455:1.0 1499:1.0 1598:0.25 1734:2.0 2256:1.0 2757:1.0 2844:1.0 3105:1.0 4 8:0.2777777777777778 14:2.0 17:0.25 31:0.5 37:0.1111111111111111 44:1.0 45:0.6666666666666666 54:1.0 74:0.5 86:0.16666666666666666 100:1.0 127:1.0 154:1.0 198:1.0 232:1.0 234:1.0 268:2.0 399:1.0 418:1.0 437:1.0 508:1.0 519:1.0 542:0.5 548:0.13333333333333333 554:1.0 556:1.0 686:1.0 822:1.0 926:1.0 1030:1.0 1064:1.0 1065:1.0 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 4609:1.0 4 7:0.16666666666666666 8:0.3333333333333333 14:1.0 17:0.25 31:0.16666666666666666 38:2.0 40:0.5 45:1.6666666666666667 65:0.5 67:1.0 75:1.0 88:1.0 95:0.5 164:0.5 184:0.5 233:1.0 234:1.0 259:0.3333333333333333 268:2.0 285:1.0 288:1.0 298:1.0 304:0.5 355:1.0 382:1.0 453:1.0 454:1.0 542:0.5 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 4274:0.5 4777:1.0 4 7:0.16666666666666666 8:0.16666666666666666 12:1.0 14:2.0 21:0.5 23:0.25 27:0.010752688172043012 37:0.2222222222222222 45:0.6666666666666666 50:0.25 51:0.4 52:1.0 55:1.0 57:1.0 58:0.1 59:1.0 60:1.0 81:0.5 101:1.0 134:1.0 144:0.2 154:1.0 216:1.0 234:1.0 259:0.6666666666666666 304:0.5 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:0.5 2346:1.0 2684:1.0 3248:1.0 3414:1.0 4 8:0.1111111111111111 11:1.0 21:1.0 31:0.16666666666666666 32:0.5 37:0.1111111111111111 50:0.25 51:0.2 54:0.5 81:1.0 88:0.5 142:1.0 144:0.2 196:1.0 216:1.0 281:0.5 312:1.0 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:0.5 1418:1.0 1597:1.0 1614:1.0 1641:1.0 2060:1.0 2288:1.0 2291:1.0 2433:1.0 4 1:0.043478260869565216 14:1.0 17:0.25 27:0.010752688172043012 37:0.1111111111111111 45:0.6666666666666666 51:0.2 61:0.5 75:1.0 81:0.5 86:0.16666666666666666 88:1.0 144:0.2 154:1.0 155:1.0 169:0.1 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:1.0 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.16666666666666666 8:0.1111111111111111 14:1.0 17:0.5 21:1.0 27:0.010752688172043012 37:0.2222222222222222 45:0.6666666666666666 46:1.0 86:0.16666666666666666 95:0.5 99:0.3333333333333333 115:1.0 122:0.5 123:0.5 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:1.0 134:2.0 135:1.0 155:1.0 174:0.09090909090909091 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.05555555555555555 14:3.0 21:1.0 27:0.021505376344086023 31:0.8333333333333334 45:1.0 50:0.5 58:0.1 88:0.5 95:0.5 122:0.5 187:2.0 193:0.047619047619047616 239:0.3333333333333333 250:1.0 259:0.6666666666666666 260:0.5 281:0.5 437:1.0 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:2.0 1235:1.0 1664:0.5 1963:1.0 2757:2.0 2962:2.0 3058:1.0 3351:1.0 4808:1.0 4 1:0.043478260869565216 7:0.16666666666666666 17:0.75 22:0.2857142857142857 26:2.0 27:0.010752688172043012 31:0.16666666666666666 32:0.5 37:0.2222222222222222 45:0.6666666666666666 54:0.5 59:1.0 74:0.5 86:0.16666666666666666 88:0.5 90:0.14285714285714285 101:3.0 112:1.0 113:1.0 115:1.0 122:0.5 123:1.0 129:1.0 134:1.0 162:1.0 164:0.5 211:1.0 226:1.0 273:0.5 290:1.0 333:1.0 417:0.16666666666666666 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 5871:1.0 4 1:0.043478260869565216 6:0.6666666666666666 7:0.3333333333333333 8:0.05555555555555555 12:1.0 14:1.0 21:0.5 22:0.14285714285714285 23:0.25 27:0.010752688172043012 37:0.2222222222222222 41:0.5 43:1.0 44:1.0 45:1.3333333333333333 57:1.0 58:0.2 81:0.5 84:2.0 93:1.0 95:1.0 107:1.0 127:1.0 142:1.0 171:1.0 189:0.5 203:1.0 212:1.0 260:0.5 268:1.0 295:0.5 314:1.0 437:1.0 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.3333333333333333 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.16666666666666666 14:1.0 17:0.25 21:0.5 23:0.25 27:0.021505376344086023 31:0.5 37:0.1111111111111111 45:0.3333333333333333 48:1.0 65:0.5 86:0.16666666666666666 88:0.5 91:3.0 95:1.5 127:2.0 160:1.0 162:1.0 174:0.09090909090909091 192:0.3333333333333333 193:0.19047619047619047 198:1.0 259:0.6666666666666666 273:0.5 274:1.0 281:0.5 300:2.0 312:1.0 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:0.5 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 4 1:0.08695652173913043 7:0.16666666666666666 8:0.05555555555555555 12:1.0 14:2.0 17:0.25 22:0.14285714285714285 27:0.021505376344086023 31:0.16666666666666666 32:0.5 45:0.3333333333333333 51:0.2 58:0.1 65:1.0 86:0.16666666666666666 91:1.0 162:1.0 192:0.3333333333333333 193:0.047619047619047616 202:1.0 212:1.0 259:0.6666666666666666 266:1.0 273:0.5 291:1.0 381:1.0 446:1.0 519:1.0 537:1.0 653:1.0 654:1.0 695:1.0 699:0.25 733:1.0 791:1.0 813:1.0 911:2.0 987:1.0 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.16666666666666666 8:0.05555555555555555 12:1.0 17:0.75 21:0.5 27:0.021505376344086023 31:0.16666666666666666 44:1.0 45:0.3333333333333333 58:0.1 84:1.0 86:0.16666666666666666 123:1.5 145:0.2 162:1.0 164:0.5 166:1.0 169:0.1 211:1.0 259:0.3333333333333333 298:1.0 338:1.0 340:1.5 344:1.0 353:1.0 376:2.0 446:1.0 454:1.0 477:0.1 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.16666666666666666 8:0.05555555555555555 26:1.0 27:0.021505376344086023 31:0.3333333333333333 37:0.2222222222222222 41:0.5 43:1.0 44:1.0 45:0.3333333333333333 52:1.0 58:0.1 92:1.0 95:0.5 123:0.5 133:1.0 181:0.07692307692307693 182:1.0 196:1.0 205:1.0 206:0.25 263:1.0 266:1.0 268:1.0 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:1.0 1155:1.0 1177:1.0 1337:1.0 1922:1.0 2088:1.0 2210:0.5 3369:1.0 4 1:0.043478260869565216 2:0.5 7:0.3333333333333333 8:0.1111111111111111 14:1.0 22:0.14285714285714285 27:0.010752688172043012 31:0.16666666666666666 37:0.1111111111111111 38:1.0 45:0.6666666666666666 88:0.5 123:1.5 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 6165:1.0 4 3:1.0 7:0.16666666666666666 8:0.4444444444444444 24:1.0 27:0.010752688172043012 31:0.16666666666666666 38:1.0 45:0.6666666666666666 57:1.0 61:0.5 65:0.5 75:1.0 81:0.5 84:1.0 88:0.5 99:0.3333333333333333 114:1.0 123:0.5 154:1.0 181:0.07692307692307693 184:1.0 234:3.0 235:1.0 298:1.0 319:1.0 328:0.14285714285714285 333:1.0 437:1.0 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.16666666666666666 8:0.2777777777777778 14:1.0 17:0.25 21:0.5 23:0.25 27:0.021505376344086023 31:0.3333333333333333 37:0.1111111111111111 45:0.3333333333333333 65:0.5 88:0.5 95:0.5 101:1.0 106:1.0 107:1.0 174:0.09090909090909091 184:1.0 186:1.0 259:0.6666666666666666 266:1.0 304:0.5 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:1.0 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 3954:1.0 4 1:0.043478260869565216 7:0.16666666666666666 8:0.2222222222222222 14:1.0 22:0.14285714285714285 25:0.5 32:1.0 37:0.1111111111111111 45:0.6666666666666666 86:0.16666666666666666 88:1.5 92:1.0 95:2.0 101:1.0 144:0.2 161:0.5 218:1.0 259:1.0 281:0.5 304:0.5 486:0.5 537:3.0 551:0.5 573:1.0 608:0.5 1026:1.0 1054:1.0 1065:1.0 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.3333333333333333 8:0.05555555555555555 14:2.0 17:0.25 21:1.0 22:0.14285714285714285 24:1.0 26:2.0 27:0.010752688172043012 32:0.5 45:0.6666666666666666 52:1.0 58:0.1 59:1.0 75:1.0 76:1.0 91:1.0 99:0.6666666666666666 107:1.0 129:1.0 145:0.2 164:0.5 174:0.09090909090909091 178:1.0 184:0.5 192:0.3333333333333333 193:0.047619047619047616 202:1.0 219:1.0 226:1.0 233:1.0 259:2.3333333333333335 263:1.0 281:0.5 295:0.5 298:1.0 304:1.0 528:1.0 537:1.0 551:0.5 792:0.5 889:1.0 898:0.030303030303030304 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 4 6:0.6666666666666666 8:0.2777777777777778 21:0.5 22:0.14285714285714285 24:1.0 31:0.16666666666666666 32:0.5 37:0.1111111111111111 44:1.0 45:1.3333333333333333 58:0.2 59:1.0 65:0.5 75:1.0 84:3.0 88:1.0 92:1.0 95:0.5 115:1.0 116:1.0 129:1.0 142:1.0 144:0.2 162:3.0 192:0.3333333333333333 193:0.047619047619047616 259:0.6666666666666666 268:1.0 281:0.5 301:1.0 338:2.0 446:1.0 486:0.5 489:0.5 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:1.0 1996:1.0 1997:1.0 2142:2.0 2338:1.0 4 1:0.08695652173913043 6:0.3333333333333333 7:0.16666666666666666 8:0.16666666666666666 14:1.0 21:0.5 23:0.25 27:0.03225806451612903 31:0.16666666666666666 37:0.1111111111111111 44:1.0 45:1.0 51:0.2 54:0.5 58:0.1 81:0.5 99:0.3333333333333333 101:1.0 134:1.0 164:0.5 184:0.5 193:0.09523809523809523 234:1.0 312:2.0 314:1.0 328:0.14285714285714285 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.25 1691:1.0 1933:1.0 2329:1.0 2330:1.0 3706:1.0 4 6:0.3333333333333333 7:0.16666666666666666 8:0.2222222222222222 17:0.25 31:0.16666666666666666 37:0.1111111111111111 38:1.0 45:0.3333333333333333 51:0.2 58:0.1 59:1.0 60:1.0 88:0.5 90:0.14285714285714285 95:1.0 101:1.0 162:1.0 187:1.0 188:1.0 204:1.0 216:1.0 234:1.0 260:0.5 328:0.14285714285714285 355:1.0 382:1.0 433:1.0 453:2.0 582:1.0 599:1.0 653:1.0 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 3834:1.0 5061:1.0 4 1:0.043478260869565216 8:0.16666666666666666 14:1.0 17:0.25 22:0.14285714285714285 26:1.0 27:0.010752688172043012 31:0.6666666666666666 37:0.1111111111111111 45:0.6666666666666666 51:0.2 58:0.1 81:1.0 95:1.5 99:0.3333333333333333 133:1.0 141:1.0 145:0.2 181:0.07692307692307693 182:1.0 234:1.0 288:1.0 310:1.0 328:0.14285714285714285 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:1.0 1298:1.0 2093:1.0 2301:1.0 3247:1.0 3248:1.0 6433:1.0 4 1:0.043478260869565216 8:0.05555555555555555 21:0.5 24:1.0 27:0.021505376344086023 28:1.0 31:0.6666666666666666 51:0.2 58:0.1 81:1.0 95:0.5 128:0.25 133:1.0 137:1.0 162:1.0 178:1.0 181:0.07692307692307693 182:1.0 234:1.0 266:1.0 268:1.0 291:1.0 328:0.14285714285714285 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.3333333333333333 8:0.1111111111111111 14:2.0 17:0.25 22:0.14285714285714285 31:0.16666666666666666 32:0.5 45:0.6666666666666666 58:0.1 65:0.5 75:1.0 81:0.5 88:0.5 101:1.0 116:1.0 133:1.0 134:1.0 155:1.0 162:1.0 234:1.0 267:0.5 295:0.5 328:0.14285714285714285 347:1.0 351:1.0 453:1.0 482:1.0 651:1.0 717:1.0 718:0.5 798:1.0 1094:1.0 1143:1.0 1553:1.0 1569:1.0 1597:1.0 1611:1.0 1948:1.0 1978:1.0 2330:1.0 3256:1.0 3257:1.0 4 1:0.043478260869565216 7:0.16666666666666666 8:0.16666666666666666 14:1.0 22:0.14285714285714285 27:0.021505376344086023 31:0.16666666666666666 32:0.5 43:1.0 45:0.3333333333333333 51:0.2 57:1.0 65:0.5 154:1.0 155:1.0 204:1.0 226:1.0 234:2.0 328:0.14285714285714285 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.16666666666666666 8:0.2222222222222222 14:1.0 24:1.0 27:0.010752688172043012 34:1.0 35:2.0 37:0.1111111111111111 54:1.5 74:0.5 75:1.0 123:1.5 163:1.0 166:1.0 184:1.0 218:1.0 268:1.0 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.1111111111111111 9:1.0 12:1.0 14:1.0 27:0.010752688172043012 30:1.0 31:0.3333333333333333 37:0.1111111111111111 44:1.0 45:1.0 58:0.3 81:0.5 84:2.0 88:0.5 92:1.0 101:1.0 123:0.5 129:0.5 139:1.0 144:0.2 145:0.2 146:1.0 184:0.5 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 4863:1.0 4 1:0.043478260869565216 7:0.3333333333333333 8:0.2777777777777778 14:1.0 17:0.25 26:2.0 27:0.010752688172043012 31:0.3333333333333333 37:0.1111111111111111 45:0.3333333333333333 58:0.1 65:0.5 90:0.14285714285714285 107:1.0 123:0.5 127:1.0 162:1.0 178:1.0 184:0.5 191:1.0 266:1.0 268:1.0 288:1.0 316:1.0 454:1.0 519:1.0 726:1.0 795:1.0 814:1.0 845:1.0 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 5416:1.0 4 2:0.5 8:0.1111111111111111 17:0.25 21:0.5 26:1.0 27:0.010752688172043012 40:0.5 44:1.0 45:0.3333333333333333 54:0.5 69:0.3333333333333333 88:0.5 99:0.3333333333333333 162:2.0 184:0.5 223:1.0 224:1.0 234:1.0 237:1.0 259:0.6666666666666666 266:1.0 281:0.5 319:1.0 332:1.0 446:1.0 477:0.1 499:1.0 655:1.0 1132:1.0 1369:1.0 1923:1.0 2097:1.0 2285:1.0 2484:1.0 2512:1.0 4 11:1.0 14:1.0 17:0.25 24:1.0 31:0.16666666666666666 40:0.5 45:0.6666666666666666 58:0.1 69:0.3333333333333333 142:1.0 145:0.2 146:1.0 162:1.0 174:0.09090909090909091 200:1.0 212:1.0 214:1.0 259:1.0 281:0.5 282:1.0 332:1.0 333:1.0 363:1.0 381:1.0 407:1.0 477:0.1 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.5 3445:1.0 5162:1.0 4 1:0.043478260869565216 7:0.16666666666666666 8:0.05555555555555555 17:0.5 19:1.0 27:0.03225806451612903 28:1.0 32:0.5 34:1.0 37:0.1111111111111111 45:0.3333333333333333 57:1.0 84:1.0 86:0.16666666666666666 90:0.14285714285714285 115:1.0 134:1.0 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:1.0 2168:1.0 3029:1.0 3355:1.0 3653:1.0 4 1:0.043478260869565216 8:0.05555555555555555 12:1.0 17:0.25 19:1.0 21:0.5 27:0.03225806451612903 37:0.2222222222222222 45:0.6666666666666666 58:0.1 84:1.0 86:0.16666666666666666 88:1.0 116:1.0 142:1.0 154:1.0 177:1.0 184:0.5 185:1.0 187:1.0 188:1.0 211:1.0 234:1.0 261:1.0 262:0.5 425:0.3333333333333333 437:1.0 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.16666666666666666 8:0.16666666666666666 21:0.5 27:0.021505376344086023 31:0.3333333333333333 37:0.1111111111111111 45:1.0 50:0.25 65:0.5 81:0.5 99:0.3333333333333333 127:1.0 142:1.0 162:1.0 184:0.5 198:1.0 202:3.0 266:1.0 273:0.5 274:1.0 275:0.5 333:1.0 342:1.0 350:1.0 537:2.0 539:1.0 545:1.0 548:0.06666666666666667 718:0.5 726:1.0 832:1.0 866:1.0 911:1.0 989:1.0 1151:1.0 1168:1.0 1182:1.0 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 3738:1.0 4 1:0.043478260869565216 8:0.1111111111111111 14:1.0 17:0.5 19:1.0 21:1.0 22:0.14285714285714285 27:0.010752688172043012 31:0.16666666666666666 37:0.1111111111111111 45:2.0 88:0.5 99:0.3333333333333333 101:1.0 115:1.0 123:1.0 127:1.0 202:2.0 234:1.0 252:0.5 259:0.3333333333333333 266:1.0 268:1.0 288:1.0 328:0.14285714285714285 401:1.0 454:1.0 548:0.06666666666666667 600:0.3333333333333333 626:2.0 715:1.0 726:1.0 872:1.5 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.1111111111111111 14:1.0 17:0.5 19:1.0 21:0.5 27:0.021505376344086023 31:0.16666666666666666 45:1.0 95:0.5 126:1.0 127:1.0 130:0.5 131:1.0 132:1.0 133:1.0 134:1.0 145:0.2 146:1.0 154:1.0 196:1.0 211:1.0 216:1.0 243:2.0 268:1.0 488:1.0 489:0.5 508:1.0 548:0.06666666666666667 576:1.0 600:0.3333333333333333 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.3333333333333333 14:3.0 17:0.25 21:0.5 23:0.5 27:0.021505376344086023 31:0.16666666666666666 37:0.2222222222222222 45:0.3333333333333333 85:1.0 88:0.5 123:1.0 127:1.0 129:0.5 142:1.0 162:1.0 187:1.0 190:1.0 193:0.09523809523809523 198:1.0 212:1.0 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:0.5 1954:1.0 2173:1.0 2337:1.0 2677:1.0 2696:1.0 5405:1.0 4 1:0.08695652173913043 8:0.1111111111111111 14:1.0 17:0.5 21:0.5 22:0.14285714285714285 27:0.03225806451612903 43:1.0 44:1.0 45:1.6666666666666667 50:0.25 81:0.5 95:0.5 115:1.0 144:0.2 193:0.047619047619047616 196:1.0 215:1.0 259:0.3333333333333333 260:0.5 317:1.0 376:1.0 437:1.0 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.25 1660:1.0 1904:1.0 2303:1.0 6145:1.0 4 7:0.3333333333333333 8:0.16666666666666666 17:0.25 27:0.010752688172043012 31:0.3333333333333333 37:0.1111111111111111 45:0.3333333333333333 48:1.0 51:0.2 54:0.5 88:0.5 133:1.0 141:1.0 201:0.3333333333333333 259:0.3333333333333333 266:1.0 295:0.5 422:1.0 446:1.0 475:1.0 501:0.5 508:1.0 523:1.0 539:1.0 822:1.0 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.16666666666666666 8:0.1111111111111111 21:0.5 26:1.0 27:0.03225806451612903 31:0.3333333333333333 37:0.2222222222222222 44:1.0 45:0.3333333333333333 50:0.25 75:1.0 99:0.3333333333333333 101:1.0 123:0.5 164:0.5 174:0.09090909090909091 291:1.0 301:1.0 327:0.5 355:1.0 363:1.0 417:0.16666666666666666 437:1.0 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 5301:1.0 4 1:0.08695652173913043 7:0.16666666666666666 8:0.16666666666666666 17:0.25 19:1.0 21:0.5 24:1.0 27:0.021505376344086023 45:0.3333333333333333 57:1.0 88:0.5 101:1.0 130:0.5 134:1.0 212:2.0 216:1.0 259:0.6666666666666666 608:0.5 655:1.0 1050:0.5 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.16666666666666666 12:1.0 19:1.0 21:0.5 22:0.14285714285714285 26:1.0 27:0.021505376344086023 30:1.0 31:0.3333333333333333 37:0.1111111111111111 40:0.5 45:0.6666666666666666 52:1.0 58:0.1 84:1.0 95:0.5 101:1.0 161:0.5 175:1.0 181:0.07692307692307693 182:1.0 184:1.0 186:1.0 187:1.0 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:1.0 1123:1.0 1315:1.0 2131:1.0 2655:1.0 3211:1.0 5158:2.0
f17b4e4d82213aa2889c3461c95f5b6cc5bff5ce
449d555969bfd7befe906877abab098c6e63a0e8
/503/CH10/EX10.1/ch10_1.sci
ebec50ca482de09032de585061c00b3dc4d6234b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
710
sci
ch10_1.sci
// to compute the ratio of E_mf/E_mb,V_f/V_b,T_f/T_b,gross total torque,T_f/total torque, T_b/total torque clc; R_lm=3; X_lm=5; R_2=1.5; X_2=2; s=1-.97; //slip a=complex(R_2/s,X_2); b=complex(R_2/(2-s),X_2); c=abs(a)/abs(b); disp(c,'E_mf/E_mb'); a=(1/2)*complex((R_lm+R_2/s),(X_lm+X_2)); b=(1/2)*complex((R_lm+R_2/(2-s)),(X_lm+X_2)); c=abs(a)/abs(b); disp(c,'V_f/V_b'); d=(2-s)/s; disp(d,'T_f/T_b'); Z_tot=a+b; V=220; I_m=V/abs(Z_tot); P=6; f=50; n_s=120*f/P; w_s=2*%pi*n_s/60; T_f=(I_m^2*R_2/(2*w_s))*(1/s); T_b=(I_m^2*R_2/(2*w_s))*(1/(2-s)); T_tot=T_f-T_b; disp(T_tot,'gross total torque(Nm)'); a=T_f/T_tot; b=T_b/T_tot; disp(a,'T_f/T_total'); disp(b,'T_b/T_total');
5e1bdb46d5e416fe5375f6f9384d9691d20ed6b6
449d555969bfd7befe906877abab098c6e63a0e8
/2513/CH11/EX11.1/11_1.sce
2456bf2675234204d27aa73da89f400896ac3446
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
946
sce
11_1.sce
clc //initialisation of variables s=20//mph t=90//min w=1.31//ft h=7.5//miles h1=0.22//ft t1=1100//min t2=6.0//min p=32.2//ft l=5.12//length l1=2.8//length p1=1400//ft d=73//depth h3=2.06//ft e=173.0//ft hi=0.2//ft //CALCULATIONS W=s*w//mph hs=h1*[(W)^2/p]^0.53*h^0.47//ft Ts=t2*(W/p)^0.44*(h/p)^0.28//sec Td=t1*h/(p*Ts)//min Ls=l1/(l*(Ts)^2)//ft D=d/(l*(Ts)^2)//ft H=(W)^2*[h*(1/(p1*d))]//ft hr=h3*l1//ft M=e+hi+hr//ft //RESULTS printf('the overwater wind speed=% f mph',W) printf('the significant wave height=% f ft',hs) printf('the significant wave period=% f sec',Ts) printf('the minimum wind duration required to reach the significant wave height=% f min',Td) printf('the significant wave lenght adn steepness=% f ft',Ls) printf('the reservoir depth ratio=% f ft',D) printf('the wind tide or set up=% f ft',H) printf('the run up =% f ft',hr) printf('the maximum elevation reached by the waves=% f ft',M)
cc00073a0727aee16c2a824a538a3bb544b2df74
449d555969bfd7befe906877abab098c6e63a0e8
/569/CH9/EX9.19/9_19.sci
545fdd9143f7f0e2bb3136a3da66442cc4a83fab
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
357
sci
9_19.sci
// calculate attenuation clc; T=273+20; P=101.3*10^3; R=287; de=P/(R*T); C=20.04*T^0.5; r=6.25*10^-3; L=0.6; V=%pi*[(12.5*10^-3)^2]*(12.5*10^-3); wn=C*r*(%pi/(V*(L+0.5*%pi*r)))^0.5; fn=wn/(2*%pi); f=1000; u=f/fn; mu=19.1*10^-6; eta=[2*mu/(de*C*r^3)]*[3*L*V/%pi]^0.5; M=1/{[(1-u^2)^2]+[(2*eta*u)^2]}^0.5; %M=M*100; disp(%M,'attenuation=')
845e6e20561a6f5aa5d20b8abb4b63669ad24405
449d555969bfd7befe906877abab098c6e63a0e8
/405/CH3/EX3.11/3_11.sce
352d3ba8e25691287426b9ff530ca38b51ef4b65
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,267
sce
3_11.sce
clear; clc; printf("\t\t\tExample Number 3.11\n\n\n"); // use of variable mesh size // Example 3.11 (page no.-108-110) // solution // using data given in figure example 3-11(page no.-109) // nodes 5,6,8, and 9 are internal nodes with dx = dy and have nodal equations in the form of equation(3-24). Thus, // 600+T6+T8-4*T5 = 0 // 500+T5+T7+T9-4*T6 = 0 // 100+T5+T9+T11-4*T8 = 0 // T8+T6+T10+T12-4*T9 = 0 // For node 7 we can use a resistance formulation and obtain // (1/R_7_6) = k // (1/R_7_500_degree) = k*(dx/6+dx/2)/(dy/3) = 2*k // (1/R_7_10) = 2*k // and we find // 1000+T6+2*T10-5*T7 = 0 // similar resistance are obtained for node 10 // (1/R_10_9) = k // (1/R_10_7) = 2*k = (1/R_10_1) // so that // 2*T7+T9+2*T1-5*T10 = 0 // for node 1, // (1/R_1_12) = k*(dy/6+dy/2)/(dx/3) = 2*k // (1/R_1_3) = k*(dx/6+dx/2)/(dy) = 2*k/3 // (1/R_1_10) = 2*k // and the nodal equation becomes // 3*T12+3*T10+T3-7*T1 = 0 // for node 11, // (1/R_11_100_degree) = (1/R_11_12) = k*(dy/6+dy/2)/(dx/3) = 2*k // (1/R_11_8) = k // (1/R_11_13) = k*(dx/3)/dy = k/3 // and the nodal equation becomes // 600+6*T12+3*T8+T13-16*T11 = 0 // Similarly, the equation for node 12 is // 3*T9+6*T11+6*T1+T14-16*T12 = 0 // for node 13, // (1/R_13_100_degree) = k*(dy)/(dx/3) = 3*k = 1/R_13_14 // (1/R_13_11) = (1/R_13_100) = k/3 // and we obtain // 1000+9*T14+T11-20*T13 = 0 // similarly for node 14, // 100+9*T13+9*T3+T12-20*T14 = 0 // finally, from resistances already found, the nodal equation for node 3 is // 200+9*T14+2*T1-13*T3 = 0 // we choose to solve the set of equations by the gauss-seidel iteration technique A=[1 -1 0 0 0 0 0 0 0 0 0 0 0 0;0 0 1 -1 0 0 0 0 0 0 0 0 0 0;0 0 0 0 -4 1 0 1 0 0 0 0 0 0;0 0 0 0 1 -4 1 0 1 0 0 0 0 0;0 0 0 0 1 0 0 -4 1 0 1 0 0 0;0 0 0 0 0 1 0 1 -4 1 0 1 0 0;0 0 0 0 0 1 -5 0 0 2 0 0 0 0;2 0 0 0 0 0 2 0 1 -5 0 0 0 0;-7 0 1 0 0 0 0 0 0 3 0 3 0 0;0 0 0 0 0 0 0 3 0 0 -16 6 1 0;6 0 0 0 0 0 0 0 3 0 6 -16 0 1;0 0 0 0 0 0 0 0 0 0 1 0 -20 9;0 0 9 0 0 0 0 0 0 0 0 1 9 -20;2 0 -13 0 0 0 0 0 0 0 0 0 0 9]; b=[0;0;-600;-500;-100;0;-1000;0;0;-600;0;-1000;-100;-200]; T = A^(-1)*b; printf("Nodal temperatures for node(1,2,3,4,5,6,7,8,9,10,11,12,13,14) are respectively as follows in degree celsius"); disp(T);
742794aa18d9fec22a750d7d99ee9b53ae895b24
262ac6443426f24d5d9b13945d080affb0bd6d9b
/opgaves/wisselgeld/edit-me.sce
ad924885dbe8c1063874820961d263e114f7d3f4
[]
no_license
slegers/Scilab
9ebd1d486f28cf66e04b1552ad6e94ea4bc98a0b
1b5dc3434def66355dafeb97c01916736a936301
refs/heads/master
2021-01-12T01:42:01.493578
2017-01-09T10:54:09
2017-01-09T10:54:09
78,420,343
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,922
sce
edit-me.sce
function [aantal_muntstukken] = solve(te_betalen,betaald) // Reken uit hoeveel munten je minimaal moet teruggeven. // Dummy toekenningen aan outputvariabelen aantal_muntstukken = 0 terugbetalen = betaald - te_betalen if te_betalen > betaald then error("You didn`t pay enough.") end while terugbetalen <> 0 then if terugbetalen >= 200 then aantal_muntstukken = aantal_muntstukken+ floor(terugbetalen/200) terugbetalen = terugbetalen - aantal_muntstukken * 200 elseif terugbetalen >= 100 then aantal_muntstukken = aantal_muntstukken+ floor(terugbetalen/100) terugbetalen = terugbetalen - floor(terugbetalen/100) * 100 elseif terugbetalen >= 50 then aantal_muntstukken = aantal_muntstukken+ floor(terugbetalen/50) terugbetalen = terugbetalen - floor(terugbetalen/50) * 50 elseif terugbetalen >= 20 then aantal_muntstukken = aantal_muntstukken+ floor(terugbetalen/20) terugbetalen = terugbetalen - floor(terugbetalen/20) * 20 elseif terugbetalen >= 10 then aantal_muntstukken = aantal_muntstukken + floor(terugbetalen/10) terugbetalen = terugbetalen - floor(terugbetalen/10) * 10 elseif terugbetalen >= 5 then aantal_muntstukken = aantal_muntstukken+ floor(terugbetalen/5) terugbetalen = terugbetalen - floor(terugbetalen/5) * 5 elseif terugbetalen >= 2 then aantal_muntstukken = aantal_muntstukken+ floor(terugbetalen/2) terugbetalen = terugbetalen - floor(terugbetalen/2) * 2 elseif terugbetalen >= 1 then aantal_muntstukken = aantal_muntstukken+ floor(terugbetalen/1) terugbetalen = terugbetalen - floor(terugbetalen/1) * 1 end end endfunction
c50976d38e1376c2803a08e7e6f54a3f17797c9e
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/staCoverSwitch.sce
268bc0336a66fbb5d33ec755381ebd98b42cc702
[]
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
193,005
sce
staCoverSwitch.sce
Name=staCoverSwitch PlayerCharacters=Counter-Striker BotCharacters=Counter-Striker Bot Harmless.bot IsChallenge=true Timelimit=60.0 PlayerProfile=Counter-Striker AddedBots=Counter-Striker Bot Harmless.bot;Counter-Striker Bot Harmless.bot;Counter-Striker Bot Harmless.bot;Counter-Striker Bot Harmless.bot;Counter-Striker Bot Harmless.bot PlayerMaxLives=0 BotMaxLives=0;0;0;0;0 PlayerTeam=1 BotTeams=0;0;0;0;0 MapName=coverprac.map MapScale=3.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=true InvincibleBots=false Timescale=1.0 BlockHealthbars=false TimeRefilledByKill=0.0 ScoreToWin=1000.0 ScorePerDamage=1.0 ScorePerKill=0.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=CS, VALORANT WeaponHeroTag=AK/Vandal, M4/Phantom, USP/Ghost DifficultyTag=5 AuthorsTag=staal BlockHitMarkers=false BlockHitSounds=true BlockMissSounds=true BlockFCT=false Description=Practice shooting CS bots with with various movement styles at mid and long ranges. GameVersion=2.0.1.1 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=cs MinReactionTime=0.18 MaxReactionTime=0.3 MinSelfMovementCorrectionTime=0.007 MaxSelfMovementCorrectionTime=0.035 FlickFOV=10.0 FlickSpeed=1.0 FlickError=3.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=90.0 MinRecenterTime=0.25 MaxRecenterTime=0.4 OptimalAimFOV=35.0 OuterAimPenalty=1.1 MaxError=35.0 ShootFOV=1.0 VerticalAimOffset=-5.0 MaxTolerableSpread=2.0 MinTolerableSpread=0.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Bot Profile] Name=Counter-Striker Bot Harmless DodgeProfileNames=CsClose1;CsFar1;CsMimic1;CsOppose1;CsCareful1;CsCareless1;CsMid1;CsRandom1;CsFar2 DodgeProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 DodgeProfileMaxChangeTime=10.0 DodgeProfileMinChangeTime=0.1 WeaponProfileWeights=1.5;1.5;1.5;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=cs;cs;cs;cs;cs;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=Counter-Striker 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=Counter-Striker MaxHealth=100.0 WeaponProfileNames=AK-47;M4A1-S;m4a4;USP-S;;;; MinRespawnDelay=0.0001 MaxRespawnDelay=0.0001 StepUpHeight=75.0 CrouchHeightModifier=0.75 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=1.0 MovementType=Base MaxSpeed=1100.0 MaxCrouchSpeed=250.0 Acceleration=6000.0 AirAcceleration=16000.0 Friction=7.5 BrakingFrictionFactor=1.25 JumpVelocity=800.0 Gravity=2.5 AirControl=1.0 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=true EnemyBodyColor=X=0.546 Y=0.776 Z=0.546 EnemyHeadColor=X=0.608 Y=0.463 Z=0.314 TeamBodyColor=X=0.000 Y=0.000 Z=0.771 TeamHeadColor=X=0.149 Y=0.542 Z=1.000 BlockSelfDamage=true InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=true AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=250.0 MainBBRadius=35.0 MainBBHasHead=true MainBBHeadRadius=25.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=250.0 ProjBBRadius=35.0 ProjBBHasHead=true ProjBBHeadRadius=25.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.5 JetpackFullFuelTime=1000.0 JetpackFuelIncPerSec=100.0 JetpackFuelRegensInAir=true JetpackThrust=6000.0 JetpackMaxZVelocity=600.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=256.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Dodge Profile] Name=CsClose1 MaxTargetDistance=1500.0 MinTargetDistance=500.0 ToggleLeftRight=true ToggleForwardBack=true MinLRTimeChange=0.01 MaxLRTimeChange=0.5 MinFBTimeChange=0.1 MaxFBTimeChange=0.5 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.02 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.5 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Dodge Profile] Name=CsFar1 MaxTargetDistance=3500.0 MinTargetDistance=2500.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.5 MaxLRTimeChange=1.0 MinFBTimeChange=0.1 MaxFBTimeChange=0.25 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.02 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.5 StrafeSwapMaxPause=1.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Dodge Profile] Name=CsMimic1 MaxTargetDistance=2500.0 MinTargetDistance=500.0 ToggleLeftRight=true ToggleForwardBack=true MinLRTimeChange=0.25 MaxLRTimeChange=0.75 MinFBTimeChange=0.1 MaxFBTimeChange=0.25 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.02 TargetStrafeOverride=Mimic TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.35 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.25 StrafeSwapMaxPause=0.75 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Dodge Profile] Name=CsOppose1 MaxTargetDistance=2500.0 MinTargetDistance=500.0 ToggleLeftRight=true ToggleForwardBack=true MinLRTimeChange=0.25 MaxLRTimeChange=1.0 MinFBTimeChange=0.1 MaxFBTimeChange=0.25 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.02 TargetStrafeOverride=Oppose TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.35 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.25 StrafeSwapMaxPause=0.75 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Dodge Profile] Name=CsCareful1 MaxTargetDistance=2000.0 MinTargetDistance=1000.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.5 MaxLRTimeChange=1.0 MinFBTimeChange=0.1 MaxFBTimeChange=0.25 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.1 CrouchOnGroundFrequency=0.03 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.5 MaxCrouchTime=1.0 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.25 StrafeSwapMaxPause=0.75 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Dodge Profile] Name=CsCareless1 MaxTargetDistance=4000.0 MinTargetDistance=250.0 ToggleLeftRight=true ToggleForwardBack=true MinLRTimeChange=0.25 MaxLRTimeChange=0.75 MinFBTimeChange=0.1 MaxFBTimeChange=0.25 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.1 DamageReactionMaximumDelay=0.5 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.01 CrouchInAirFrequency=0.1 CrouchOnGroundFrequency=0.05 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.1 MaxCrouchTime=1.5 MinJumpTime=0.2 MaxJumpTime=0.3 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.25 StrafeSwapMaxPause=0.75 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Dodge Profile] Name=CsMid1 MaxTargetDistance=2500.0 MinTargetDistance=1500.0 ToggleLeftRight=true ToggleForwardBack=true MinLRTimeChange=0.25 MaxLRTimeChange=0.75 MinFBTimeChange=0.1 MaxFBTimeChange=0.25 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.02 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.25 StrafeSwapMaxPause=0.75 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Dodge Profile] Name=CsRandom1 MaxTargetDistance=5000.0 MinTargetDistance=0.0 ToggleLeftRight=true ToggleForwardBack=true MinLRTimeChange=0.01 MaxLRTimeChange=2.0 MinFBTimeChange=0.01 MaxFBTimeChange=1.0 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.02 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=1.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Dodge Profile] Name=CsFar2 MaxTargetDistance=4500.0 MinTargetDistance=3500.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.75 MaxLRTimeChange=1.27 MinFBTimeChange=0.1 MaxFBTimeChange=0.25 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.02 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.75 StrafeSwapMaxPause=1.25 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=AK-47 Type=Hitscan ShotsPerClick=1 DamagePerShot=36.0 KnockbackFactor=0.2 TimeBetweenShots=0.1 Pierces=false Category=FullyAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=4.0 MagazineMax=30 AmmoPerShot=1 ReloadTimeFromEmpty=1.5 ReloadTimeFromPartial=1.5 DamageFalloffStartDistance=4000.0 DamageFalloffStopDistance=7500.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.02 BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.1 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-40.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.2 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=390.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=103.0 ADSFOVScale=Valorant 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=AK47 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=Gunshot ParticleBodyImpact=Blood ParticleProjectileTrail=None ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=4.0,15.0,-9.0,2.5 SpreadSCA=4.0,15.0,-9.0,2.5 SpreadMSA=4.0,15.0,-9.0,2.5 SpreadMCA=4.0,15.0,-9.0,2.5 SpreadSSH=2.0,27.0,-9.0,1.5 SpreadSCH=2.0,27.0,-9.0,0.0 SpreadMSH=100.0,1000.0,5.0,20.0 SpreadMCH=4.0,15.0,-9.0,1.8 MaxRecoilUp=0.3 MinRecoilUp=0.3 MinRecoilHoriz=-0.3 MaxRecoilHoriz=0.3 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.0001 TimeToRecoilReset=0.075 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.1 AAMaxSpeed=5.0 AADeadZone=0.0 AAFOV=10.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=true PSRLoopStartIndex=10 PSRViewRecoilTracking=0.45 PSRCapUp=90.0 PSRCapRight=90.0 PSRCapLeft=90.0 PSRTimeToPeak=0.16 PSRResetDegreesPerSec=35.0 PSR0=0.5,0.0 PSR1=1.2,-0.1 PSR2=1.7,0.2 PSR3=1.7,0.2 PSR4=1.7,-0.85 PSR5=1.3,-0.45 PSR6=1.3,-0.75 PSR7=0.9,0.75 PSR8=-0.4,2.55 PSR9=0.75,0.95 PSR10=0.75,0.4 PSR11=-0.6,0.4 PSR12=0.35,1.0 PSR13=0.4,0.25 PSR14=-0.9,-1.5 PSR15=0.4,-1.0 PSR16=0.5,-1.3 PSR17=0.1,-1.6 PSR18=-0.7,-1.25 PSR19=0.2,-0.5 PSR20=0.2,0.1 PSR21=0.0,0.5 PSR22=0.3,0.1 PSR23=0.2,0.5 PSR24=0.5,-1.0 PSR25=-0.1,1.2 PSR26=-0.3,1.1 PSR27=-1.2,2.0 PSR28=0.1,1.4 PSR29=-0.1,0.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=M4A1-S Type=Hitscan ShotsPerClick=1 DamagePerShot=33.0 KnockbackFactor=0.1 TimeBetweenShots=0.1 Pierces=false Category=FullyAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=3.0 MagazineMax=20 AmmoPerShot=1 ReloadTimeFromEmpty=1.37 ReloadTimeFromPartial=1.37 DamageFalloffStartDistance=3000.0 DamageFalloffStopDistance=7000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.1 BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.1 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=410.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=10.3 ADSFOVScale=Valorant ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=Gunshot ParticleBodyImpact=Blood ParticleProjectileTrail=None ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=4.0,15.0,-9.0,2.5 SpreadSCA=4.0,15.0,-9.0,2.5 SpreadMSA=4.0,15.0,-9.0,2.5 SpreadMCA=4.0,15.0,-9.0,2.5 SpreadSSH=1.5,27.0,-9.0,1.0 SpreadSCH=1.5,27.0,-9.0,0.0 SpreadMSH=100.0,1000.0,5.0,20.0 SpreadMCH=4.0,15.0,-9.0,1.8 MaxRecoilUp=0.3 MinRecoilUp=0.3 MinRecoilHoriz=-0.3 MaxRecoilHoriz=0.3 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.0001 TimeToRecoilReset=0.075 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=2.0 AADeadZone=0.0 AAFOV=15.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=true PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=90.0 PSRCapRight=90.0 PSRCapLeft=90.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=35.0 PSR0=0.4,-0.1 PSR1=0.4,0.0 PSR2=0.9,0.4 PSR3=1.0,-0.5 PSR4=1.0,0.6 PSR5=1.2,0.3 PSR6=0.7,-0.6 PSR7=0.8,-0.5 PSR8=0.3,-1.3 PSR9=0.8,0.5 PSR10=0.3,1.0 PSR11=-0.4,1.2 PSR12=0.0,1.1 PSR13=0.1,1.0 PSR14=-0.2,-0.4 PSR15=0.4,0.1 PSR16=-0.4,1.0 PSR17=0.4,-1.0 PSR18=0.0,1.0 PSR19=-0.1,-1.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=m4a4 Type=Hitscan ShotsPerClick=1 DamagePerShot=33.0 KnockbackFactor=0.2 TimeBetweenShots=0.09 Pierces=false Category=FullyAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=30 AmmoPerShot=1 ReloadTimeFromEmpty=2.7 ReloadTimeFromPartial=2.7 DamageFalloffStartDistance=3000.0 DamageFalloffStopDistance=7500.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.02 BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.1 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-40.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.2 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=410.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=10.3 ADSFOVScale=Valorant ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=Gunshot ParticleBodyImpact=Blood ParticleProjectileTrail=None ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=4.0,15.0,-9.0,2.5 SpreadSCA=4.0,15.0,-9.0,2.5 SpreadMSA=4.0,15.0,-9.0,2.5 SpreadMCA=4.0,15.0,-9.0,2.5 SpreadSSH=4.0,27.0,-9.0,1.0 SpreadSCH=4.0,27.0,-9.0,0.0 SpreadMSH=100.0,1000.0,5.0,20.0 SpreadMCH=4.0,15.0,-9.0,1.8 MaxRecoilUp=0.3 MinRecoilUp=0.3 MinRecoilHoriz=-0.3 MaxRecoilHoriz=0.3 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.0001 TimeToRecoilReset=0.075 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.1 AAMaxSpeed=5.0 AADeadZone=0.0 AAFOV=50.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=true PSRLoopStartIndex=10 PSRViewRecoilTracking=0.45 PSRCapUp=90.0 PSRCapRight=90.0 PSRCapLeft=90.0 PSRTimeToPeak=0.16 PSRResetDegreesPerSec=35.0 PSR0=0.4,-0.25 PSR1=0.4,-0.1 PSR2=0.9,0.5 PSR3=1.2,-0.5 PSR4=1.1,0.4 PSR5=1.3,0.4 PSR6=0.9,-1.0 PSR7=0.7,-0.75 PSR8=0.5,-1.1 PSR9=0.6,-0.3 PSR10=0.7,0.5 PSR11=-0.4,1.5 PSR12=0.1,1.7 PSR13=-0.3,1.3 PSR14=0.2,1.0 PSR15=0.2,-0.9 PSR16=-0.1,0.0 PSR17=0.3,0.5 PSR18=0.2,0.5 PSR19=-0.2,0.5 PSR20=-0.2,-0.75 PSR21=0.5,-2.0 PSR22=-0.2,-0.7 PSR23=0.2,-0.6 PSR24=-0.1,-0.75 PSR25=-0.1,-0.5 PSR26=0.3,0.3 PSR27=0.3,-0.4 PSR28=0.1,-0.2 PSR29=0.15,-0.2 PSR30=0.15,-0.2 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=USP-S Type=Hitscan ShotsPerClick=1 DamagePerShot=35.0 KnockbackFactor=1.0 TimeBetweenShots=0.17 Pierces=false Category=SemiAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=12 AmmoPerShot=1 ReloadTimeFromEmpty=2.2 ReloadTimeFromPartial=2.2 DamageFalloffStartDistance=300.0 DamageFalloffStopDistance=1000.0 DamageAtMaxRange=33.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.1 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=1.0 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=400.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Valorant ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=Gunshot ParticleBodyImpact=Blood ParticleProjectileTrail=None ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,5.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=1.0,1.0,-1.0,5.0 SpreadMCA=1.0,1.0,-1.0,5.0 SpreadSSH=5.0,25.0,0.2,7.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=1.0,25.0,2.0,7.0 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=0.3 MinRecoilUp=0.0 MinRecoilHoriz=-0.2 MaxRecoilHoriz=0.2 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.0001 TimeToRecoilReset=0.075 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.1 AAMaxSpeed=5.0 AADeadZone=0.0 AAFOV=50.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=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end UInt8 playersMin 1 UInt8 playersMax 16 brush vertices -1792.000000 0.000000 3840.000000 2304.000000 0.000000 3840.000000 2304.000000 0.000000 -256.000000 -1792.000000 0.000000 -256.000000 -1792.000000 -16.000000 3840.000000 2304.000000 -16.000000 3840.000000 2304.000000 -16.000000 -256.000000 -1792.000000 -16.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -256.000000 256.000000 256.000000 768.000000 256.000000 256.000000 768.000000 256.000000 -256.000000 -256.000000 256.000000 -256.000000 -256.000000 0.000000 256.000000 768.000000 0.000000 256.000000 768.000000 0.000000 -256.000000 -256.000000 0.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 96.000000 384.000000 256.000000 128.000000 384.000000 256.000000 128.000000 384.000000 224.000000 96.000000 384.000000 224.000000 96.000000 256.000000 256.000000 128.000000 256.000000 256.000000 128.000000 256.000000 224.000000 96.000000 256.000000 224.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 384.000000 384.000000 256.000000 416.000000 384.000000 256.000000 416.000000 384.000000 224.000000 384.000000 384.000000 224.000000 384.000000 256.000000 256.000000 416.000000 256.000000 256.000000 416.000000 256.000000 224.000000 384.000000 256.000000 224.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 512.000000 304.000000 256.000000 640.000000 304.000000 256.000000 640.000000 304.000000 224.000000 512.000000 304.000000 224.000000 512.000000 256.000000 256.000000 640.000000 256.000000 256.000000 640.000000 256.000000 224.000000 512.000000 256.000000 224.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 192.000000 304.000000 256.000000 320.000000 304.000000 256.000000 320.000000 304.000000 224.000000 192.000000 304.000000 224.000000 192.000000 256.000000 256.000000 320.000000 256.000000 256.000000 320.000000 256.000000 224.000000 192.000000 256.000000 224.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 -128.000000 304.000000 256.000000 0.000000 304.000000 256.000000 0.000000 304.000000 224.000000 -128.000000 304.000000 224.000000 -128.000000 256.000000 256.000000 0.000000 256.000000 256.000000 0.000000 256.000000 224.000000 -128.000000 256.000000 224.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 736.000000 384.000000 256.000000 768.000000 384.000000 256.000000 768.000000 384.000000 224.000000 736.000000 384.000000 224.000000 736.000000 256.000000 256.000000 768.000000 256.000000 256.000000 768.000000 256.000000 224.000000 736.000000 256.000000 224.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 736.000000 304.000000 128.000000 768.000000 304.000000 128.000000 768.000000 304.000000 0.000000 736.000000 304.000000 0.000000 736.000000 256.000000 128.000000 768.000000 256.000000 128.000000 768.000000 256.000000 0.000000 736.000000 256.000000 0.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 736.000000 384.000000 -96.000000 768.000000 384.000000 -96.000000 768.000000 384.000000 -128.000000 736.000000 384.000000 -128.000000 736.000000 256.000000 -96.000000 768.000000 256.000000 -96.000000 768.000000 256.000000 -128.000000 736.000000 256.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 -256.000000 384.000000 256.000000 -224.000000 384.000000 256.000000 -224.000000 384.000000 224.000000 -256.000000 384.000000 224.000000 -256.000000 256.000000 256.000000 -224.000000 256.000000 256.000000 -224.000000 256.000000 224.000000 -256.000000 256.000000 224.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 -256.000000 304.000000 128.000000 -224.000000 304.000000 128.000000 -224.000000 304.000000 0.000000 -256.000000 304.000000 0.000000 -256.000000 256.000000 128.000000 -224.000000 256.000000 128.000000 -224.000000 256.000000 0.000000 -256.000000 256.000000 0.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -256.000000 384.000000 -96.000000 -224.000000 384.000000 -96.000000 -224.000000 384.000000 -128.000000 -256.000000 384.000000 -128.000000 -256.000000 256.000000 -96.000000 -224.000000 256.000000 -96.000000 -224.000000 256.000000 -128.000000 -256.000000 256.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 768.000000 256.000000 256.000000 1024.000000 0.000000 256.000000 768.000000 0.000000 -256.000000 768.000000 0.000000 256.000000 1024.000000 0.000000 -256.000000 768.000000 256.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 5 0x00000000 brush vertices -512.000000 0.000000 -256.000000 -256.000000 256.000000 256.000000 -256.000000 256.000000 -256.000000 -256.000000 0.000000 256.000000 -256.000000 0.000000 -256.000000 -512.000000 0.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 0 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 5 0x00000000 brush vertices 768.000000 0.000000 512.000000 -256.000000 0.000000 256.000000 768.000000 256.000000 256.000000 -256.000000 0.000000 512.000000 768.000000 0.000000 256.000000 -256.000000 256.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000 brush vertices -256.000000 0.000000 512.000000 -512.000000 0.000000 256.000000 -256.000000 256.000000 256.000000 -256.000000 0.000000 256.000000 -512.000000 0.000000 512.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 4 0x00000000 brush vertices 768.000000 0.000000 256.000000 768.000000 256.000000 256.000000 768.000000 0.000000 512.000000 1024.000000 0.000000 256.000000 1024.000000 0.000000 512.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 1 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000 brush vertices 128.000000 128.000000 1408.000000 384.000000 128.000000 1408.000000 384.000000 128.000000 1152.000000 128.000000 128.000000 1152.000000 128.000000 0.000000 1408.000000 384.000000 0.000000 1408.000000 384.000000 0.000000 1152.000000 128.000000 0.000000 1152.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 384.000000 128.000000 1408.000000 384.000000 0.000000 1152.000000 512.000000 0.000000 1408.000000 384.000000 0.000000 1408.000000 512.000000 0.000000 1152.000000 384.000000 128.000000 1152.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 3 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 5 0x00000000 brush vertices 0.000000 0.000000 1152.000000 128.000000 128.000000 1408.000000 128.000000 128.000000 1152.000000 128.000000 0.000000 1408.000000 128.000000 0.000000 1152.000000 0.000000 0.000000 1408.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 0 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 5 0x00000000 brush vertices 384.000000 0.000000 1536.000000 128.000000 0.000000 1408.000000 384.000000 128.000000 1408.000000 128.000000 0.000000 1536.000000 384.000000 0.000000 1408.000000 128.000000 128.000000 1408.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000 brush vertices 128.000000 128.000000 1152.000000 384.000000 128.000000 1152.000000 128.000000 0.000000 1024.000000 128.000000 0.000000 1152.000000 384.000000 0.000000 1024.000000 384.000000 0.000000 1152.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 5 0x00000000 brush vertices 384.000000 128.000000 1152.000000 384.000000 0.000000 1024.000000 512.000000 0.000000 1152.000000 512.000000 0.000000 1024.000000 384.000000 0.000000 1152.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 2 4 0x00000000 brush vertices 128.000000 0.000000 1152.000000 128.000000 128.000000 1152.000000 0.000000 0.000000 1024.000000 128.000000 0.000000 1024.000000 0.000000 0.000000 1152.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 4 0x00000000 brush vertices 128.000000 0.000000 1536.000000 0.000000 0.000000 1408.000000 128.000000 128.000000 1408.000000 128.000000 0.000000 1408.000000 0.000000 0.000000 1536.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 4 0x00000000 brush vertices 384.000000 128.000000 1408.000000 512.000000 0.000000 1536.000000 384.000000 0.000000 1408.000000 512.000000 0.000000 1408.000000 384.000000 0.000000 1536.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 3 1 4 0x00000000 brush vertices 288.000000 256.000000 1216.000000 352.000000 256.000000 1216.000000 352.000000 256.000000 1168.000000 288.000000 256.000000 1168.000000 288.000000 128.000000 1216.000000 352.000000 128.000000 1216.000000 352.000000 128.000000 1168.000000 288.000000 128.000000 1168.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 160.000000 256.000000 1216.000000 224.000000 256.000000 1216.000000 224.000000 256.000000 1168.000000 160.000000 256.000000 1168.000000 160.000000 128.000000 1216.000000 224.000000 128.000000 1216.000000 224.000000 128.000000 1168.000000 160.000000 128.000000 1168.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 384.000000 256.000000 1408.000000 400.000000 256.000000 1408.000000 400.000000 256.000000 1152.000000 384.000000 256.000000 1152.000000 384.000000 128.000000 1408.000000 400.000000 128.000000 1408.000000 400.000000 128.000000 1152.000000 384.000000 128.000000 1152.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 112.000000 256.000000 1408.000000 128.000000 256.000000 1408.000000 128.000000 256.000000 1152.000000 112.000000 256.000000 1152.000000 112.000000 128.000000 1408.000000 128.000000 128.000000 1408.000000 128.000000 128.000000 1152.000000 112.000000 128.000000 1152.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 128.000000 256.000000 1424.000000 384.000000 256.000000 1424.000000 384.000000 256.000000 1408.000000 128.000000 256.000000 1408.000000 128.000000 128.000000 1424.000000 384.000000 128.000000 1424.000000 384.000000 128.000000 1408.000000 128.000000 128.000000 1408.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 128.000000 256.000000 1152.000000 384.000000 256.000000 1152.000000 384.000000 256.000000 1136.000000 128.000000 256.000000 1136.000000 128.000000 128.000000 1152.000000 384.000000 128.000000 1152.000000 384.000000 128.000000 1136.000000 128.000000 128.000000 1136.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 224.000000 256.000000 1216.000000 288.000000 256.000000 1216.000000 288.000000 256.000000 1168.000000 224.000000 256.000000 1168.000000 224.000000 128.000000 1216.000000 288.000000 128.000000 1216.000000 288.000000 128.000000 1168.000000 224.000000 128.000000 1168.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 1536.000000 128.000000 2032.000000 1552.000000 128.000000 2032.000000 1552.000000 128.000000 1040.000000 1536.000000 128.000000 1040.000000 1536.000000 0.000000 2032.000000 1552.000000 0.000000 2032.000000 1552.000000 0.000000 1040.000000 1536.000000 0.000000 1040.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 2032.000000 512.000000 2048.000000 2048.000000 512.000000 2048.000000 2048.000000 512.000000 1024.000000 2032.000000 512.000000 1024.000000 2032.000000 0.000000 2048.000000 2048.000000 0.000000 2048.000000 2048.000000 0.000000 1024.000000 2032.000000 0.000000 1024.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 1536.000000 512.000000 1040.000000 2032.000000 512.000000 1040.000000 2032.000000 512.000000 1024.000000 1536.000000 512.000000 1024.000000 1536.000000 0.000000 1040.000000 2032.000000 0.000000 1040.000000 2032.000000 0.000000 1024.000000 1536.000000 0.000000 1024.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 1536.000000 512.000000 2048.000000 2032.000000 512.000000 2048.000000 2032.000000 512.000000 2032.000000 1536.000000 512.000000 2032.000000 1536.000000 0.000000 2048.000000 2032.000000 0.000000 2048.000000 2032.000000 0.000000 2032.000000 1536.000000 0.000000 2032.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 1552.000000 320.000000 2032.000000 2032.000000 320.000000 2032.000000 2032.000000 320.000000 1040.000000 1552.000000 320.000000 1040.000000 1552.000000 304.000000 2032.000000 2032.000000 304.000000 2032.000000 2032.000000 304.000000 1040.000000 1552.000000 304.000000 1040.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 1536.000000 512.000000 2032.000000 1552.000000 512.000000 2032.000000 1552.000000 512.000000 1040.000000 1536.000000 512.000000 1040.000000 1536.000000 400.000000 2032.000000 1552.000000 400.000000 2032.000000 1552.000000 400.000000 1040.000000 1536.000000 400.000000 1040.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 1536.000000 352.000000 2032.000000 1552.000000 352.000000 2032.000000 1552.000000 352.000000 1040.000000 1536.000000 352.000000 1040.000000 1536.000000 208.000000 2032.000000 1552.000000 208.000000 2032.000000 1552.000000 208.000000 1040.000000 1536.000000 208.000000 1040.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 1552.000000 512.000000 2032.000000 2032.000000 512.000000 2032.000000 2032.000000 512.000000 1040.000000 1552.000000 512.000000 1040.000000 1552.000000 496.000000 2032.000000 2032.000000 496.000000 2032.000000 2032.000000 496.000000 1040.000000 1552.000000 496.000000 1040.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 1536.000000 400.000000 1312.000000 1552.000000 400.000000 1312.000000 1552.000000 400.000000 1040.000000 1536.000000 400.000000 1040.000000 1536.000000 352.000000 1312.000000 1552.000000 352.000000 1312.000000 1552.000000 352.000000 1040.000000 1536.000000 352.000000 1040.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 -1280.000000 64.000000 3072.000000 -1024.000000 0.000000 3072.000000 -1280.000000 0.000000 2560.000000 -1280.000000 0.000000 3072.000000 -1024.000000 0.000000 2560.000000 -1280.000000 64.000000 2560.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 5 0x00000000 brush vertices 1536.000000 400.000000 2032.000000 1552.000000 400.000000 2032.000000 1552.000000 400.000000 1760.000000 1536.000000 400.000000 1760.000000 1536.000000 352.000000 2032.000000 1552.000000 352.000000 2032.000000 1552.000000 352.000000 1760.000000 1536.000000 352.000000 1760.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 1536.000000 400.000000 1440.000000 1552.000000 400.000000 1440.000000 1552.000000 400.000000 1376.000000 1536.000000 400.000000 1376.000000 1536.000000 352.000000 1440.000000 1552.000000 352.000000 1440.000000 1552.000000 352.000000 1376.000000 1536.000000 352.000000 1376.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 -1536.000000 64.000000 3072.000000 -1280.000000 64.000000 3072.000000 -1280.000000 64.000000 2560.000000 -1536.000000 64.000000 2560.000000 -1536.000000 0.000000 3072.000000 -1280.000000 0.000000 3072.000000 -1280.000000 0.000000 2560.000000 -1536.000000 0.000000 2560.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 -1344.000000 128.000000 2848.000000 -1152.000000 128.000000 2848.000000 -1152.000000 128.000000 2784.000000 -1344.000000 0.000000 2784.000000 -1344.000000 128.000000 2784.000000 -1120.000000 0.000000 2848.000000 -1120.000000 0.000000 2784.000000 -1344.000000 0.000000 2848.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 1536.000000 400.000000 1568.000000 1552.000000 400.000000 1568.000000 1552.000000 400.000000 1504.000000 1536.000000 400.000000 1504.000000 1536.000000 352.000000 1568.000000 1552.000000 352.000000 1568.000000 1552.000000 352.000000 1504.000000 1536.000000 352.000000 1504.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 1536.000000 400.000000 1696.000000 1552.000000 400.000000 1696.000000 1552.000000 400.000000 1632.000000 1536.000000 400.000000 1632.000000 1536.000000 352.000000 1696.000000 1552.000000 352.000000 1696.000000 1552.000000 352.000000 1632.000000 1536.000000 352.000000 1632.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 -1440.000000 128.000000 2848.000000 -1344.000000 128.000000 2848.000000 -1344.000000 128.000000 2784.000000 -1440.000000 128.000000 2784.000000 -1440.000000 64.000000 2848.000000 -1344.000000 64.000000 2848.000000 -1344.000000 64.000000 2784.000000 -1440.000000 64.000000 2784.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 1552.000000 496.000000 1280.000000 1616.000000 496.000000 1280.000000 1616.000000 496.000000 1264.000000 1552.000000 496.000000 1264.000000 1552.000000 320.000000 1280.000000 1616.000000 320.000000 1280.000000 1616.000000 320.000000 1264.000000 1552.000000 320.000000 1264.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1216.000000 192.000000 2848.000000 -1152.000000 192.000000 2848.000000 -1152.000000 192.000000 2784.000000 -1344.000000 128.000000 2784.000000 -1216.000000 192.000000 2784.000000 -1152.000000 128.000000 2848.000000 -1152.000000 128.000000 2784.000000 -1344.000000 128.000000 2848.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -1504.000000 256.000000 2848.000000 -1440.000000 256.000000 2848.000000 -1440.000000 256.000000 2784.000000 -1504.000000 256.000000 2784.000000 -1504.000000 64.000000 2848.000000 -1440.000000 64.000000 2848.000000 -1440.000000 64.000000 2784.000000 -1504.000000 64.000000 2784.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 1600.000000 496.000000 1792.000000 1616.000000 496.000000 1792.000000 1616.000000 496.000000 1280.000000 1600.000000 496.000000 1280.000000 1600.000000 320.000000 1792.000000 1616.000000 320.000000 1792.000000 1616.000000 320.000000 1280.000000 1600.000000 320.000000 1280.000000 faces 0.000000 0.000000 1.000000 1.000000 270.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 1552.000000 496.000000 1808.000000 1616.000000 496.000000 1808.000000 1616.000000 496.000000 1792.000000 1552.000000 496.000000 1792.000000 1552.000000 320.000000 1808.000000 1616.000000 320.000000 1808.000000 1616.000000 320.000000 1792.000000 1552.000000 320.000000 1792.000000 faces 0.000000 0.000000 1.000000 1.000000 270.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1440.000000 160.000000 2848.000000 -1408.000000 128.000000 2848.000000 -1440.000000 128.000000 2784.000000 -1440.000000 128.000000 2848.000000 -1408.000000 128.000000 2784.000000 -1440.000000 160.000000 2784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 5 0x00000000 brush vertices 1552.000000 128.000000 2032.000000 2032.000000 128.000000 2032.000000 2032.000000 128.000000 1040.000000 1552.000000 128.000000 1040.000000 1552.000000 112.000000 2032.000000 2032.000000 112.000000 2032.000000 2032.000000 112.000000 1040.000000 1552.000000 112.000000 1040.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 1536.000000 208.000000 2032.000000 1552.000000 208.000000 2032.000000 1552.000000 208.000000 1760.000000 1536.000000 208.000000 1760.000000 1536.000000 160.000000 2032.000000 1552.000000 160.000000 2032.000000 1552.000000 160.000000 1760.000000 1536.000000 160.000000 1760.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 1536.000000 208.000000 1696.000000 1552.000000 208.000000 1696.000000 1552.000000 208.000000 1632.000000 1536.000000 208.000000 1632.000000 1536.000000 160.000000 1696.000000 1552.000000 160.000000 1696.000000 1552.000000 160.000000 1632.000000 1536.000000 160.000000 1632.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 1536.000000 208.000000 1568.000000 1552.000000 208.000000 1568.000000 1552.000000 208.000000 1504.000000 1536.000000 208.000000 1504.000000 1536.000000 160.000000 1568.000000 1552.000000 160.000000 1568.000000 1552.000000 160.000000 1504.000000 1536.000000 160.000000 1504.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 1536.000000 208.000000 1440.000000 1552.000000 208.000000 1440.000000 1552.000000 208.000000 1376.000000 1536.000000 208.000000 1376.000000 1536.000000 160.000000 1440.000000 1552.000000 160.000000 1440.000000 1552.000000 160.000000 1376.000000 1536.000000 160.000000 1376.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 1536.000000 208.000000 1312.000000 1552.000000 208.000000 1312.000000 1552.000000 208.000000 1040.000000 1536.000000 208.000000 1040.000000 1536.000000 160.000000 1312.000000 1552.000000 160.000000 1312.000000 1552.000000 160.000000 1040.000000 1536.000000 160.000000 1040.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 1536.000000 160.000000 2032.000000 1552.000000 160.000000 2032.000000 1552.000000 160.000000 1040.000000 1536.000000 160.000000 1040.000000 1536.000000 128.000000 2032.000000 1552.000000 128.000000 2032.000000 1552.000000 128.000000 1040.000000 1536.000000 128.000000 1040.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 1600.000000 304.000000 1792.000000 1616.000000 304.000000 1792.000000 1616.000000 304.000000 1280.000000 1600.000000 304.000000 1280.000000 1600.000000 128.000000 1792.000000 1616.000000 128.000000 1792.000000 1616.000000 128.000000 1280.000000 1600.000000 128.000000 1280.000000 faces 0.000000 0.000000 1.000000 1.000000 270.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 1552.000000 304.000000 1280.000000 1616.000000 304.000000 1280.000000 1616.000000 304.000000 1264.000000 1552.000000 304.000000 1264.000000 1552.000000 128.000000 1280.000000 1616.000000 128.000000 1280.000000 1616.000000 128.000000 1264.000000 1552.000000 128.000000 1264.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 1552.000000 304.000000 1808.000000 1616.000000 304.000000 1808.000000 1616.000000 304.000000 1792.000000 1552.000000 304.000000 1792.000000 1552.000000 128.000000 1808.000000 1616.000000 128.000000 1808.000000 1616.000000 128.000000 1792.000000 1552.000000 128.000000 1792.000000 faces 0.000000 0.000000 1.000000 1.000000 270.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1536.000000 256.000000 2848.000000 -1504.000000 256.000000 2848.000000 -1504.000000 256.000000 2784.000000 -1536.000000 256.000000 2784.000000 -1536.000000 64.000000 2848.000000 -1504.000000 64.000000 2848.000000 -1504.000000 64.000000 2784.000000 -1536.000000 64.000000 2784.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 -1504.000000 256.000000 3072.000000 -1120.000000 256.000000 3072.000000 -1120.000000 256.000000 3040.000000 -1504.000000 256.000000 3040.000000 -1504.000000 0.000000 3072.000000 -1120.000000 0.000000 3072.000000 -1120.000000 0.000000 3040.000000 -1504.000000 0.000000 3040.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1536.000000 256.000000 3072.000000 -1504.000000 256.000000 3072.000000 -1504.000000 256.000000 2848.000000 -1536.000000 256.000000 2848.000000 -1536.000000 64.000000 3072.000000 -1504.000000 64.000000 3072.000000 -1504.000000 64.000000 2848.000000 -1536.000000 64.000000 2848.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1120.000000 256.000000 3072.000000 -1088.000000 256.000000 3072.000000 -1088.000000 256.000000 2784.000000 -1120.000000 256.000000 2784.000000 -1120.000000 0.000000 3072.000000 -1088.000000 0.000000 3072.000000 -1088.000000 0.000000 2784.000000 -1120.000000 0.000000 2784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 1600.000000 608.000000 1216.000000 1696.000000 608.000000 1216.000000 1696.000000 608.000000 1120.000000 1600.000000 608.000000 1120.000000 1600.000000 512.000000 1216.000000 1696.000000 512.000000 1216.000000 1696.000000 512.000000 1120.000000 1600.000000 512.000000 1120.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 1696.000000 608.000000 1280.000000 1712.000000 608.000000 1280.000000 1712.000000 608.000000 1216.000000 1696.000000 608.000000 1216.000000 1696.000000 512.000000 1280.000000 1712.000000 512.000000 1280.000000 1712.000000 512.000000 1216.000000 1696.000000 512.000000 1216.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 1616.000000 608.000000 1296.000000 1696.000000 608.000000 1296.000000 1696.000000 608.000000 1280.000000 1616.000000 608.000000 1280.000000 1616.000000 512.000000 1296.000000 1696.000000 512.000000 1296.000000 1696.000000 512.000000 1280.000000 1616.000000 512.000000 1280.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 1600.000000 608.000000 1280.000000 1616.000000 608.000000 1280.000000 1616.000000 608.000000 1216.000000 1600.000000 608.000000 1216.000000 1600.000000 512.000000 1280.000000 1616.000000 512.000000 1280.000000 1616.000000 512.000000 1216.000000 1600.000000 512.000000 1216.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1184.000000 256.000000 3040.000000 -1120.000000 256.000000 3040.000000 -1120.000000 256.000000 2848.000000 -1184.000000 32.000000 3040.000000 -1120.000000 32.000000 2848.000000 -1120.000000 32.000000 3040.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 1 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1504.000000 224.000000 2928.000000 -1504.000000 16.000000 2848.000000 -1136.000000 224.000000 2848.000000 -1504.000000 16.000000 2928.000000 -1136.000000 16.000000 2848.000000 -1504.000000 224.000000 2848.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 0 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1504.000000 224.000000 3040.000000 -1504.000000 64.000000 2912.000000 -1472.000000 224.000000 2912.000000 -1504.000000 64.000000 3040.000000 -1472.000000 64.000000 2912.000000 -1504.000000 224.000000 2912.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000 internal/editor/textures/editor_clip brush vertices -320.000000 368.000000 2368.000000 -192.000000 368.000000 2368.000000 -192.000000 368.000000 2240.000000 -320.000000 368.000000 2240.000000 -320.000000 0.000000 2368.000000 -192.000000 0.000000 2368.000000 -192.000000 0.000000 2240.000000 -320.000000 0.000000 2240.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 512.000000 64.000000 3584.000000 1024.000000 96.000000 3584.000000 1024.000000 128.000000 3392.000000 1024.000000 0.000000 3584.000000 512.000000 64.000000 3392.000000 512.000000 0.000000 3392.000000 512.000000 0.000000 3584.000000 1024.000000 0.000000 3392.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 1024.000000 96.000000 3584.000000 1280.000000 96.000000 3584.000000 1280.000000 128.000000 3392.000000 1024.000000 0.000000 3392.000000 1024.000000 128.000000 3392.000000 1280.000000 0.000000 3584.000000 1280.000000 0.000000 3392.000000 1024.000000 0.000000 3584.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 1280.000000 96.000000 3584.000000 1536.000000 128.000000 3584.000000 1536.000000 160.000000 3392.000000 1280.000000 0.000000 3392.000000 1280.000000 128.000000 3392.000000 1536.000000 0.000000 3584.000000 1536.000000 0.000000 3392.000000 1280.000000 0.000000 3584.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 1536.000000 128.000000 3584.000000 1792.000000 96.000000 3584.000000 1792.000000 128.000000 3392.000000 1792.000000 0.000000 3584.000000 1536.000000 0.000000 3584.000000 1536.000000 160.000000 3392.000000 1536.000000 0.000000 3392.000000 1792.000000 0.000000 3392.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0x00000000 brush vertices 352.000000 128.000000 3776.000000 768.000000 32.000000 3776.000000 768.000000 64.000000 3584.000000 352.000000 96.000000 3584.000000 352.000000 0.000000 3776.000000 768.000000 0.000000 3776.000000 768.000000 0.000000 3584.000000 352.000000 0.000000 3584.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 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 4 0 3 7 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 6 5 4 7 0x00000000 brush vertices -288.000000 496.000000 2304.000000 -224.000000 496.000000 2304.000000 -224.000000 496.000000 2256.000000 -288.000000 496.000000 2256.000000 -288.000000 368.000000 2304.000000 -224.000000 368.000000 2304.000000 -224.000000 368.000000 2256.000000 -288.000000 368.000000 2256.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 -320.000000 496.000000 2304.000000 -288.000000 496.000000 2304.000000 -288.000000 496.000000 2288.000000 -320.000000 496.000000 2288.000000 -320.000000 368.000000 2304.000000 -288.000000 368.000000 2304.000000 -288.000000 368.000000 2288.000000 -320.000000 368.000000 2288.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -224.000000 496.000000 2304.000000 -192.000000 496.000000 2304.000000 -192.000000 496.000000 2288.000000 -224.000000 496.000000 2288.000000 -224.000000 368.000000 2304.000000 -192.000000 368.000000 2304.000000 -192.000000 368.000000 2288.000000 -224.000000 368.000000 2288.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -192.000000 496.000000 2368.000000 -176.000000 496.000000 2368.000000 -176.000000 496.000000 2304.000000 -192.000000 496.000000 2304.000000 -192.000000 368.000000 2368.000000 -176.000000 368.000000 2368.000000 -176.000000 368.000000 2304.000000 -192.000000 368.000000 2304.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -336.000000 496.000000 2368.000000 -320.000000 496.000000 2368.000000 -320.000000 496.000000 2304.000000 -336.000000 496.000000 2304.000000 -336.000000 368.000000 2368.000000 -320.000000 368.000000 2368.000000 -320.000000 368.000000 2304.000000 -336.000000 368.000000 2304.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -320.000000 496.000000 2384.000000 -192.000000 496.000000 2384.000000 -192.000000 496.000000 2368.000000 -320.000000 496.000000 2368.000000 -320.000000 368.000000 2384.000000 -192.000000 368.000000 2384.000000 -192.000000 368.000000 2368.000000 -320.000000 368.000000 2368.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 768.000000 32.000000 3776.000000 1536.000000 64.000000 3776.000000 1536.000000 96.000000 3584.000000 1536.000000 0.000000 3776.000000 768.000000 64.000000 3584.000000 768.000000 0.000000 3584.000000 768.000000 0.000000 3776.000000 1536.000000 0.000000 3584.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 1536.000000 64.000000 3776.000000 1792.000000 96.000000 3776.000000 1792.000000 96.000000 3584.000000 1792.000000 0.000000 3776.000000 1536.000000 0.000000 3776.000000 1536.000000 96.000000 3584.000000 1536.000000 0.000000 3584.000000 1792.000000 0.000000 3584.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0x00000000 brush vertices 1536.000000 544.000000 2048.000000 1552.000000 544.000000 2048.000000 1552.000000 544.000000 1024.000000 1536.000000 544.000000 1024.000000 1536.000000 512.000000 2048.000000 1552.000000 512.000000 2048.000000 1552.000000 512.000000 1024.000000 1536.000000 512.000000 1024.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 352.000000 96.000000 3584.000000 512.000000 64.000000 3584.000000 512.000000 64.000000 3392.000000 512.000000 0.000000 3584.000000 352.000000 128.000000 3392.000000 352.000000 0.000000 3392.000000 352.000000 0.000000 3584.000000 512.000000 0.000000 3392.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 1552.000000 544.000000 1040.000000 2048.000000 544.000000 1040.000000 2048.000000 544.000000 1024.000000 1552.000000 544.000000 1024.000000 1552.000000 512.000000 1040.000000 2048.000000 512.000000 1040.000000 2048.000000 512.000000 1024.000000 1552.000000 512.000000 1024.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 352.000000 32.000000 3392.000000 704.000000 96.000000 3392.000000 704.000000 160.000000 3200.000000 352.000000 0.000000 3200.000000 352.000000 32.000000 3200.000000 704.000000 0.000000 3392.000000 704.000000 0.000000 3200.000000 352.000000 0.000000 3392.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 704.000000 96.000000 3392.000000 896.000000 160.000000 3392.000000 896.000000 64.000000 3200.000000 896.000000 0.000000 3392.000000 704.000000 0.000000 3392.000000 704.000000 160.000000 3200.000000 704.000000 0.000000 3200.000000 896.000000 0.000000 3200.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0x00000000 brush vertices 1056.000000 128.000000 3392.000000 1216.000000 128.000000 3392.000000 1216.000000 160.000000 3200.000000 1216.000000 0.000000 3392.000000 1056.000000 128.000000 3232.000000 1056.000000 0.000000 3200.000000 1056.000000 0.000000 3392.000000 1216.000000 0.000000 3200.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 896.000000 160.000000 3392.000000 1056.000000 128.000000 3392.000000 1056.000000 128.000000 3232.000000 1056.000000 0.000000 3392.000000 896.000000 64.000000 3200.000000 896.000000 0.000000 3200.000000 896.000000 0.000000 3392.000000 1056.000000 0.000000 3200.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -1536.000000 224.000000 928.000000 -1376.000000 256.000000 928.000000 -1376.000000 240.000000 512.000000 -1536.000000 192.000000 512.000000 -1536.000000 192.000000 928.000000 -1376.000000 192.000000 928.000000 -1376.000000 192.000000 512.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 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 5 4 3 6 0x00000000 brush vertices -1536.000000 208.000000 1344.000000 -1376.000000 256.000000 1344.000000 -1376.000000 256.000000 928.000000 -1536.000000 224.000000 928.000000 -1536.000000 192.000000 1344.000000 -1376.000000 192.000000 1344.000000 -1376.000000 192.000000 928.000000 -1536.000000 192.000000 928.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 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 4 0 3 7 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 6 5 4 7 0x00000000 brush vertices -1536.000000 224.000000 1760.000000 -1376.000000 240.000000 1760.000000 -1376.000000 256.000000 1344.000000 -1376.000000 192.000000 1760.000000 -1536.000000 192.000000 1760.000000 -1536.000000 208.000000 1344.000000 -1536.000000 192.000000 1344.000000 -1376.000000 192.000000 1344.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0x00000000 brush vertices 1408.000000 160.000000 3392.000000 1536.000000 160.000000 3392.000000 1536.000000 160.000000 3200.000000 1408.000000 0.000000 3200.000000 1408.000000 192.000000 3200.000000 1536.000000 0.000000 3392.000000 1536.000000 0.000000 3200.000000 1408.000000 0.000000 3392.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 352.000000 224.000000 3584.000000 1792.000000 224.000000 3584.000000 1792.000000 224.000000 3552.000000 352.000000 224.000000 3552.000000 352.000000 0.000000 3584.000000 1792.000000 0.000000 3584.000000 1792.000000 0.000000 3552.000000 352.000000 0.000000 3552.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 352.000000 224.000000 3728.000000 1792.000000 224.000000 3728.000000 1792.000000 224.000000 3696.000000 352.000000 224.000000 3696.000000 352.000000 0.000000 3728.000000 1792.000000 0.000000 3728.000000 1792.000000 0.000000 3696.000000 352.000000 0.000000 3696.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 352.000000 128.000000 3392.000000 512.000000 64.000000 3392.000000 512.000000 96.000000 3200.000000 352.000000 32.000000 3200.000000 352.000000 160.000000 3200.000000 512.000000 32.000000 3392.000000 512.000000 32.000000 3200.000000 352.000000 32.000000 3392.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 1536.000000 160.000000 3392.000000 1792.000000 128.000000 3392.000000 1792.000000 224.000000 3200.000000 1536.000000 0.000000 3200.000000 1536.000000 160.000000 3200.000000 1792.000000 0.000000 3392.000000 1792.000000 0.000000 3200.000000 1536.000000 0.000000 3392.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 1760.000000 224.000000 3712.000000 1792.000000 224.000000 3712.000000 1792.000000 224.000000 3584.000000 1760.000000 224.000000 3584.000000 1760.000000 96.000000 3712.000000 1792.000000 96.000000 3712.000000 1792.000000 96.000000 3584.000000 1760.000000 96.000000 3584.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 352.000000 224.000000 3712.000000 384.000000 224.000000 3712.000000 384.000000 224.000000 3584.000000 352.000000 224.000000 3584.000000 352.000000 96.000000 3712.000000 384.000000 96.000000 3712.000000 384.000000 96.000000 3584.000000 352.000000 96.000000 3584.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1376.000000 240.000000 1344.000000 -1200.000000 240.000000 1344.000000 -1200.000000 240.000000 928.000000 -1376.000000 240.000000 928.000000 -1376.000000 192.000000 1344.000000 -1200.000000 192.000000 1344.000000 -1200.000000 192.000000 928.000000 -1376.000000 192.000000 928.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 -1376.000000 240.000000 1760.000000 -1200.000000 240.000000 1760.000000 -1200.000000 240.000000 1344.000000 -1376.000000 240.000000 1344.000000 -1376.000000 192.000000 1760.000000 -1200.000000 192.000000 1760.000000 -1200.000000 192.000000 1344.000000 -1376.000000 192.000000 1344.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 -1200.000000 240.000000 928.000000 -1200.000000 192.000000 512.000000 -1024.000000 368.000000 512.000000 -1200.000000 304.000000 512.000000 -1200.000000 192.000000 928.000000 -1024.000000 192.000000 928.000000 -1024.000000 192.000000 512.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 4 1 6 0x00000000 brush vertices -928.000000 96.000000 1728.000000 -768.000000 32.000000 1728.000000 -768.000000 64.000000 1536.000000 -928.000000 0.000000 1536.000000 -928.000000 128.000000 1536.000000 -768.000000 0.000000 1728.000000 -768.000000 0.000000 1536.000000 -928.000000 0.000000 1728.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -928.000000 0.000000 1728.000000 -576.000000 64.000000 1728.000000 -576.000000 128.000000 1536.000000 -928.000000 -32.000000 1536.000000 -928.000000 0.000000 1536.000000 -576.000000 -32.000000 1728.000000 -576.000000 -32.000000 1536.000000 -928.000000 -32.000000 1728.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -928.000000 64.000000 1920.000000 -768.000000 32.000000 1920.000000 -768.000000 32.000000 1728.000000 -768.000000 -32.000000 1920.000000 -928.000000 96.000000 1728.000000 -928.000000 -32.000000 1728.000000 -928.000000 -32.000000 1920.000000 -768.000000 -32.000000 1728.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -768.000000 32.000000 1920.000000 -256.000000 64.000000 1920.000000 -256.000000 96.000000 1728.000000 -256.000000 -32.000000 1920.000000 -768.000000 32.000000 1728.000000 -768.000000 -32.000000 1728.000000 -768.000000 -32.000000 1920.000000 -256.000000 -32.000000 1728.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -576.000000 64.000000 1728.000000 -384.000000 96.000000 1728.000000 -384.000000 32.000000 1536.000000 -576.000000 128.000000 1536.000000 -576.000000 -32.000000 1728.000000 -384.000000 -32.000000 1728.000000 -384.000000 -32.000000 1536.000000 -576.000000 -32.000000 1536.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 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 4 0 3 7 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 6 5 4 7 0x00000000 brush vertices -384.000000 96.000000 1728.000000 -224.000000 96.000000 1728.000000 -224.000000 96.000000 1568.000000 -384.000000 -32.000000 1536.000000 -384.000000 32.000000 1536.000000 -224.000000 -32.000000 1728.000000 -224.000000 -32.000000 1536.000000 -384.000000 -32.000000 1728.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -224.000000 96.000000 1728.000000 -64.000000 96.000000 1728.000000 -64.000000 128.000000 1536.000000 -64.000000 -32.000000 1728.000000 -224.000000 96.000000 1568.000000 -224.000000 -32.000000 1536.000000 -224.000000 -32.000000 1728.000000 -64.000000 -32.000000 1536.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -256.000000 64.000000 1920.000000 0.000000 64.000000 1920.000000 0.000000 96.000000 1728.000000 -256.000000 -32.000000 1728.000000 -256.000000 96.000000 1728.000000 0.000000 -32.000000 1920.000000 0.000000 -32.000000 1728.000000 -256.000000 -32.000000 1920.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 0.000000 64.000000 1920.000000 256.000000 96.000000 1920.000000 256.000000 128.000000 1728.000000 0.000000 -32.000000 1728.000000 0.000000 96.000000 1728.000000 256.000000 -32.000000 1920.000000 256.000000 -32.000000 1728.000000 0.000000 -32.000000 1920.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 32.000000 96.000000 1728.000000 128.000000 128.000000 1728.000000 128.000000 160.000000 1536.000000 32.000000 32.000000 1536.000000 32.000000 -32.000000 1728.000000 128.000000 -32.000000 1728.000000 128.000000 -32.000000 1536.000000 32.000000 -32.000000 1536.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 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 4 0 3 7 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 6 5 4 7 0x00000000 brush vertices 256.000000 128.000000 1728.000000 512.000000 96.000000 1728.000000 512.000000 192.000000 1536.000000 256.000000 -32.000000 1536.000000 256.000000 128.000000 1536.000000 512.000000 -32.000000 1728.000000 512.000000 -32.000000 1536.000000 256.000000 -32.000000 1728.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -64.000000 96.000000 1728.000000 32.000000 96.000000 1728.000000 32.000000 32.000000 1536.000000 32.000000 -32.000000 1728.000000 -64.000000 -32.000000 1728.000000 -64.000000 128.000000 1536.000000 -64.000000 -32.000000 1536.000000 32.000000 -32.000000 1536.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0x00000000 brush vertices 128.000000 128.000000 1728.000000 256.000000 128.000000 1728.000000 256.000000 128.000000 1536.000000 128.000000 -32.000000 1536.000000 128.000000 160.000000 1536.000000 256.000000 -32.000000 1728.000000 256.000000 -32.000000 1536.000000 128.000000 -32.000000 1728.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 256.000000 96.000000 1920.000000 512.000000 64.000000 1920.000000 512.000000 96.000000 1728.000000 512.000000 -32.000000 1920.000000 256.000000 -32.000000 1920.000000 256.000000 128.000000 1728.000000 256.000000 -32.000000 1728.000000 512.000000 -32.000000 1728.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0x00000000 brush vertices -928.000000 192.000000 2048.000000 -896.000000 192.000000 2048.000000 -896.000000 192.000000 1920.000000 -928.000000 192.000000 1920.000000 -928.000000 64.000000 2048.000000 -896.000000 64.000000 2048.000000 -896.000000 64.000000 1920.000000 -928.000000 64.000000 1920.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -928.000000 192.000000 2064.000000 512.000000 192.000000 2064.000000 512.000000 192.000000 2032.000000 -928.000000 192.000000 2032.000000 -928.000000 -32.000000 2064.000000 512.000000 -32.000000 2064.000000 512.000000 -32.000000 2032.000000 -928.000000 -32.000000 2032.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 480.000000 192.000000 2048.000000 512.000000 192.000000 2048.000000 512.000000 192.000000 1920.000000 480.000000 192.000000 1920.000000 480.000000 64.000000 2048.000000 512.000000 64.000000 2048.000000 512.000000 64.000000 1920.000000 480.000000 64.000000 1920.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -928.000000 64.000000 2112.000000 -512.000000 -32.000000 2112.000000 -512.000000 0.000000 1920.000000 -512.000000 -64.000000 2112.000000 -928.000000 -64.000000 2112.000000 -928.000000 64.000000 1920.000000 -928.000000 -64.000000 1920.000000 -512.000000 -64.000000 1920.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0x00000000 brush vertices -512.000000 -32.000000 2112.000000 256.000000 32.000000 2112.000000 256.000000 64.000000 1920.000000 -512.000000 -64.000000 1920.000000 -512.000000 0.000000 1920.000000 256.000000 -64.000000 2112.000000 256.000000 -64.000000 1920.000000 -512.000000 -64.000000 2112.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 256.000000 32.000000 2112.000000 512.000000 0.000000 2112.000000 512.000000 32.000000 1920.000000 256.000000 -64.000000 1920.000000 256.000000 64.000000 1920.000000 512.000000 -64.000000 2112.000000 512.000000 -64.000000 1920.000000 256.000000 -64.000000 2112.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -928.000000 192.000000 1920.000000 512.000000 192.000000 1920.000000 512.000000 192.000000 1888.000000 -928.000000 192.000000 1888.000000 -928.000000 -32.000000 1920.000000 512.000000 -32.000000 1920.000000 512.000000 -32.000000 1888.000000 -928.000000 -32.000000 1888.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1200.000000 288.000000 1760.000000 -1200.000000 192.000000 1344.000000 -1024.000000 272.000000 1344.000000 -1200.000000 192.000000 1760.000000 -1200.000000 304.000000 1344.000000 -1024.000000 192.000000 1344.000000 -1024.000000 192.000000 1760.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 5 6 0x00000000 brush vertices -1200.000000 304.000000 1344.000000 -1024.000000 272.000000 1344.000000 -1200.000000 192.000000 928.000000 -1200.000000 192.000000 1344.000000 -1200.000000 240.000000 928.000000 -1024.000000 192.000000 928.000000 -1024.000000 192.000000 1344.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 5 6 0x00000000 brush vertices -800.000000 160.000000 1888.000000 -736.000000 160.000000 1888.000000 -736.000000 160.000000 1824.000000 -800.000000 160.000000 1824.000000 -800.000000 32.000000 1888.000000 -736.000000 32.000000 1888.000000 -736.000000 32.000000 1824.000000 -800.000000 32.000000 1824.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -576.000000 192.000000 1728.000000 -512.000000 192.000000 1728.000000 -512.000000 192.000000 1664.000000 -576.000000 192.000000 1664.000000 -576.000000 0.000000 1728.000000 -512.000000 0.000000 1728.000000 -512.000000 0.000000 1664.000000 -576.000000 0.000000 1664.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 -1456.000000 384.000000 752.000000 -1392.000000 384.000000 752.000000 -1392.000000 384.000000 736.000000 -1456.000000 384.000000 736.000000 -1456.000000 192.000000 752.000000 -1392.000000 192.000000 752.000000 -1392.000000 192.000000 736.000000 -1456.000000 192.000000 736.000000 faces 0.000000 0.000000 1.000000 1.000000 270.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -96.000000 224.000000 1632.000000 -64.000000 224.000000 1632.000000 -64.000000 224.000000 1600.000000 -96.000000 224.000000 1600.000000 -96.000000 96.000000 1632.000000 -64.000000 96.000000 1632.000000 -64.000000 96.000000 1600.000000 -96.000000 96.000000 1600.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 1120.000000 128.000000 3328.000000 1184.000000 192.000000 3392.000000 1216.000244 128.000000 3424.000244 1120.000244 64.000000 3424.000244 1120.000000 64.000000 3328.000000 1216.000244 128.000000 3328.000244 1216.000244 64.000000 3328.000244 1216.000244 64.000000 3424.000244 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0x00000000 brush vertices -352.000000 96.000000 1632.000000 -288.000000 160.000000 1696.000000 -255.999756 96.000000 1728.000244 -351.999756 32.000000 1728.000244 -352.000000 32.000000 1632.000000 -255.999756 96.000000 1632.000244 -255.999756 32.000000 1632.000244 -255.999756 32.000000 1728.000244 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0x00000000 brush vertices -1183.999878 256.000000 800.000000 -1120.000000 320.000000 896.000000 -1087.999756 256.000000 1152.000244 -1087.999634 256.000000 800.000244 -1183.999878 192.000000 800.000000 -1183.999756 192.000000 1152.000244 -1056.000000 192.000000 1152.000000 -1056.000000 192.000000 800.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 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 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 7 3 1 2 0x00000000 brush vertices -1376.000000 192.000000 1760.000000 -1024.000000 192.000000 1760.000000 -1024.000000 192.000000 512.000000 -1376.000000 192.000000 512.000000 -1376.000000 0.000000 1760.000000 -1024.000000 0.000000 1760.000000 -1024.000000 0.000000 512.000000 -1376.000000 0.000000 512.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 -1536.000000 192.000000 1760.000000 -1376.000000 192.000000 1760.000000 -1376.000000 192.000000 512.000000 -1536.000000 192.000000 512.000000 -1536.000000 0.000000 1760.000000 -1376.000000 0.000000 1760.000000 -1376.000000 0.000000 512.000000 -1536.000000 0.000000 512.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 -1456.000000 384.000000 1760.000000 -1392.000000 384.000000 1760.000000 -1392.000000 384.000000 1744.000000 -1456.000000 384.000000 1744.000000 -1456.000000 192.000000 1760.000000 -1392.000000 192.000000 1760.000000 -1392.000000 192.000000 1744.000000 -1456.000000 192.000000 1744.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 480.000000 128.000000 3424.000000 576.000000 160.000000 3424.000000 608.000000 128.000000 3296.000000 448.000000 128.000000 3296.000000 480.000000 64.000000 3424.000000 576.000000 64.000000 3424.000000 576.000000 64.000000 3328.000000 448.000000 64.000000 3296.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 brush vertices 1216.000000 128.000000 3392.000000 1312.000000 128.000000 3392.000000 1312.000000 96.000000 3200.000000 1216.000000 160.000000 3200.000000 1216.000000 0.000000 3392.000000 1312.000000 0.000000 3392.000000 1312.000000 0.000000 3200.000000 1216.000000 0.000000 3200.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 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 4 0 3 7 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 6 5 4 7 0x00000000 brush vertices 1312.000000 128.000000 3392.000000 1408.000000 160.000000 3392.000000 1408.000000 192.000000 3200.000000 1408.000000 0.000000 3392.000000 1312.000000 0.000000 3392.000000 1312.000000 96.000000 3200.000000 1312.000000 0.000000 3200.000000 1408.000000 0.000000 3200.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0x00000000 brush vertices -1296.000000 400.000000 1216.000000 -1232.000000 400.000000 1216.000000 -1232.000000 400.000000 1152.000000 -1296.000000 400.000000 1152.000000 -1296.000000 208.000000 1216.000000 -1232.000000 208.000000 1216.000000 -1232.000000 208.000000 1152.000000 -1296.000000 208.000000 1152.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 -1824.000000 992.000000 3744.000000 -384.000000 992.000000 3744.000000 -384.000000 992.000000 3712.000000 -1824.000000 992.000000 3712.000000 -1824.000000 768.000000 3744.000000 -384.000000 768.000000 3744.000000 -384.000000 768.000000 3712.000000 -1824.000000 768.000000 3712.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1824.000000 992.000000 3872.000000 -1792.000000 992.000000 3872.000000 -1792.000000 992.000000 3744.000000 -1824.000000 992.000000 3744.000000 -1824.000000 864.000000 3872.000000 -1792.000000 864.000000 3872.000000 -1792.000000 864.000000 3744.000000 -1824.000000 864.000000 3744.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1824.000000 992.000000 3888.000000 -384.000000 992.000000 3888.000000 -384.000000 992.000000 3856.000000 -1824.000000 992.000000 3856.000000 -1824.000000 768.000000 3888.000000 -384.000000 768.000000 3888.000000 -384.000000 768.000000 3856.000000 -1824.000000 768.000000 3856.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1408.000000 800.000000 3936.000000 -640.000000 832.000000 3936.000000 -640.000000 864.000000 3744.000000 -640.000000 768.000000 3936.000000 -1408.000000 832.000000 3744.000000 -1408.000000 768.000000 3744.000000 -1408.000000 768.000000 3936.000000 -640.000000 768.000000 3744.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -640.000000 832.000000 3936.000000 -384.000000 864.000000 3936.000000 -384.000000 864.000000 3744.000000 -384.000000 768.000000 3936.000000 -640.000000 768.000000 3936.000000 -640.000000 864.000000 3744.000000 -640.000000 768.000000 3744.000000 -384.000000 768.000000 3744.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0x00000000 brush vertices -416.000000 992.000000 3872.000000 -384.000000 992.000000 3872.000000 -384.000000 992.000000 3744.000000 -416.000000 992.000000 3744.000000 -416.000000 864.000000 3872.000000 -384.000000 864.000000 3872.000000 -384.000000 864.000000 3744.000000 -416.000000 864.000000 3744.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1792.000000 1552.000000 3840.000000 2304.000000 1552.000000 3840.000000 2304.000000 1552.000000 -256.000000 -1792.000000 1552.000000 -256.000000 -1792.000000 1536.000000 3840.000000 2304.000000 1536.000000 3840.000000 2304.000000 1536.000000 -256.000000 -1792.000000 1536.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1808.000000 1536.000000 3840.000000 -1792.000000 1536.000000 3840.000000 -1792.000000 1536.000000 -256.000000 -1808.000000 1536.000000 -256.000000 -1808.000000 0.000000 3840.000000 -1792.000000 0.000000 3840.000000 -1792.000000 0.000000 -256.000000 -1808.000000 0.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 270.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 270.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1792.000000 1536.000000 3856.000000 2304.000000 1536.000000 3856.000000 2304.000000 1536.000000 3840.000000 -1792.000000 1536.000000 3840.000000 -1792.000000 0.000000 3856.000000 2304.000000 0.000000 3856.000000 2304.000000 0.000000 3840.000000 -1792.000000 0.000000 3840.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 2304.000000 1536.000000 3840.000000 2320.000000 1536.000000 3840.000000 2320.000000 1536.000000 -256.000000 2304.000000 1536.000000 -256.000000 2304.000000 0.000000 3840.000000 2320.000000 0.000000 3840.000000 2320.000000 0.000000 -256.000000 2304.000000 0.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1792.000000 703.999939 3840.000000 -384.000000 703.999939 3840.000000 -384.000000 703.999939 3360.000000 -1792.000000 703.999939 3360.000000 -1792.000000 0.000000 3840.000000 -384.000000 0.000000 3840.000000 -384.000000 0.000000 3360.000000 -1792.000000 0.000000 3360.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 -896.000000 800.000000 3744.000000 -640.000000 832.000000 3744.000000 -640.000000 864.000000 3552.000000 -896.000000 704.000000 3552.000000 -896.000000 832.000000 3552.000000 -640.000000 704.000000 3744.000000 -640.000000 704.000000 3552.000000 -896.000000 704.000000 3744.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -1152.000000 800.000000 3744.000000 -896.000000 800.000000 3744.000000 -896.000000 832.000000 3552.000000 -1152.000000 704.000000 3552.000000 -1152.000000 832.000000 3552.000000 -896.000000 704.000000 3744.000000 -896.000000 704.000000 3552.000000 -1152.000000 704.000000 3744.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -1664.000000 768.000000 3744.000000 -1152.000000 800.000000 3744.000000 -1152.000000 832.000000 3552.000000 -1152.000000 704.000000 3744.000000 -1664.000000 768.000000 3552.000000 -1664.000000 704.000000 3552.000000 -1664.000000 704.000000 3744.000000 -1152.000000 704.000000 3552.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -1824.000000 800.000000 3744.000000 -1664.000000 768.000000 3744.000000 -1664.000000 768.000000 3552.000000 -1664.000000 704.000000 3744.000000 -1824.000000 832.000000 3552.000000 -1824.000000 704.000000 3552.000000 -1824.000000 704.000000 3744.000000 -1664.000000 704.000000 3552.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -960.000000 832.000000 3552.000000 -864.000000 832.000000 3552.000000 -864.000000 800.000000 3360.000000 -864.000000 704.000000 3552.000000 -960.000000 704.000000 3552.000000 -960.000000 832.000000 3360.000000 -960.000000 704.000000 3360.000000 -864.000000 704.000000 3360.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0x00000000 brush vertices -768.000000 864.000000 3552.000000 -640.000000 864.000000 3552.000000 -640.000000 864.000000 3360.000000 -640.000000 704.000000 3552.000000 -768.000000 832.000000 3360.000000 -768.000000 704.000000 3360.000000 -768.000000 704.000000 3552.000000 -640.000000 704.000000 3360.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -864.000000 832.000000 3552.000000 -768.000000 864.000000 3552.000000 -768.000000 832.000000 3360.000000 -768.000000 704.000000 3552.000000 -864.000000 704.000000 3552.000000 -864.000000 800.000000 3360.000000 -864.000000 704.000000 3360.000000 -768.000000 704.000000 3360.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0x00000000 brush vertices -640.000000 864.000000 3552.000000 -384.000000 864.000000 3552.000000 -384.000000 768.000000 3360.000000 -640.000000 704.000000 3360.000000 -640.000000 864.000000 3360.000000 -384.000000 704.000000 3552.000000 -384.000000 704.000000 3360.000000 -640.000000 704.000000 3552.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -640.000000 832.000000 3744.000000 -384.000000 800.000000 3744.000000 -384.000000 864.000000 3552.000000 -640.000000 864.000000 3552.000000 -640.000000 704.000000 3744.000000 -384.000000 704.000000 3744.000000 -384.000000 704.000000 3552.000000 -640.000000 704.000000 3552.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 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 4 0 3 7 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 6 5 4 7 0x00000000 brush vertices -1376.000000 240.000000 928.000000 -1200.000000 240.000000 928.000000 -1200.000000 304.000000 512.000000 -1200.000000 192.000000 928.000000 -1376.000000 192.000000 928.000000 -1376.000000 240.000000 512.000000 -1376.000000 192.000000 512.000000 -1200.000000 192.000000 512.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0x00000000 brush vertices -1120.000000 832.000000 3552.000000 -960.000000 832.000000 3552.000000 -960.000000 832.000000 3360.000000 -960.000000 704.000000 3552.000000 -1120.000000 832.000000 3456.000000 -1120.000000 704.000000 3360.000000 -1120.000000 704.000000 3552.000000 -960.000000 704.000000 3360.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -1824.000000 832.000000 3936.000000 -1408.000000 800.000000 3936.000000 -1408.000000 832.000000 3744.000000 -1408.000000 768.000000 3936.000000 -1824.000000 768.000000 3936.000000 -1824.000000 832.000000 3744.000000 -1824.000000 768.000000 3744.000000 -1408.000000 768.000000 3744.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0x00000000 brush vertices -1824.000000 832.000000 3552.000000 -1664.000000 768.000000 3552.000000 -1664.000000 832.000000 3360.000000 -1664.000000 736.000000 3552.000000 -1824.000000 864.000000 3360.000000 -1824.000000 736.000000 3360.000000 -1824.000000 736.000000 3552.000000 -1664.000000 736.000000 3360.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -1824.000000 736.000000 3552.000000 -1472.000000 800.000000 3552.000000 -1472.000000 864.000000 3360.000000 -1472.000000 704.000000 3552.000000 -1824.000000 736.000000 3360.000000 -1824.000000 704.000000 3360.000000 -1824.000000 704.000000 3552.000000 -1472.000000 704.000000 3360.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -1392.000000 384.000000 1760.000000 -1376.000000 384.000000 1760.000000 -1376.000000 384.000000 736.000000 -1392.000000 384.000000 736.000000 -1392.000000 192.000000 1760.000000 -1376.000000 192.000000 1760.000000 -1376.000000 192.000000 736.000000 -1392.000000 192.000000 736.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1472.000000 384.000000 1760.000000 -1456.000000 384.000000 1760.000000 -1456.000000 384.000000 736.000000 -1472.000000 384.000000 736.000000 -1472.000000 192.000000 1760.000000 -1456.000000 192.000000 1760.000000 -1456.000000 192.000000 736.000000 -1472.000000 192.000000 736.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -1280.000000 832.000000 3552.000000 -1120.000000 832.000000 3552.000000 -1120.000000 832.000000 3456.000000 -1280.000000 704.000000 3360.000000 -1280.000000 800.000000 3360.000000 -1120.000000 704.000000 3552.000000 -1120.000000 704.000000 3360.000000 -1280.000000 704.000000 3552.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices -1472.000000 800.000000 3552.000000 -1280.000000 832.000000 3552.000000 -1280.000000 800.000000 3360.000000 -1280.000000 704.000000 3552.000000 -1472.000000 704.000000 3552.000000 -1472.000000 864.000000 3360.000000 -1472.000000 704.000000 3360.000000 -1280.000000 704.000000 3360.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 0 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 2 7 0x00000000 brush vertices -1792.000000 1536.000000 -256.000000 2304.000000 1536.000000 -256.000000 2304.000000 1536.000000 -272.000000 -1792.000000 1536.000000 -272.000000 -1792.000000 0.000000 -256.000000 2304.000000 0.000000 -256.000000 2304.000000 0.000000 -272.000000 -1792.000000 0.000000 -272.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -256.000000 480.000000 256.000000 -224.000000 480.000000 256.000000 -224.000000 480.000000 -256.000000 -256.000000 480.000000 -256.000000 -256.000000 256.000000 256.000000 -224.000000 256.000000 256.000000 -224.000000 256.000000 -256.000000 -256.000000 256.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -224.000000 480.000000 256.000000 768.000000 480.000000 256.000000 768.000000 480.000000 224.000000 -224.000000 480.000000 224.000000 -224.000000 256.000000 256.000000 768.000000 256.000000 256.000000 768.000000 256.000000 224.000000 -224.000000 256.000000 224.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 736.000000 480.000000 224.000000 768.000000 480.000000 224.000000 768.000000 480.000000 -256.000000 736.000000 480.000000 -256.000000 736.000000 256.000000 224.000000 768.000000 256.000000 224.000000 768.000000 256.000000 -256.000000 736.000000 256.000000 -256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 1040.000000 128.000000 1840.000122 848.000000 128.000000 1840.000122 848.000000 128.000000 1904.000122 1040.000000 0.000000 1904.000122 1040.000000 128.000000 1904.000122 816.000000 0.000000 1840.000122 816.000000 0.000000 1904.000122 1040.000000 0.000000 1840.000122 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 1136.000000 128.000000 1840.000122 1040.000000 128.000000 1840.000122 1040.000000 128.000000 1904.000122 1136.000000 128.000000 1904.000122 1136.000000 64.000000 1840.000122 1040.000000 64.000000 1840.000122 1040.000000 64.000000 1904.000122 1136.000000 64.000000 1904.000122 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 911.999878 192.000000 1840.000122 847.999878 192.000000 1840.000122 847.999878 192.000000 1904.000122 1039.999756 128.000000 1904.000122 911.999878 192.000000 1904.000122 847.999878 128.000000 1840.000122 847.999878 128.000000 1904.000122 1039.999756 128.000000 1840.000122 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 1136.000000 160.000000 1840.000122 1104.000000 128.000000 1840.000122 1136.000000 128.000000 1904.000122 1136.000000 128.000000 1840.000122 1104.000000 128.000000 1904.000122 1136.000000 160.000000 1904.000122 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 5 0x00000000 brush vertices 1200.000000 208.000000 1840.000122 1136.000000 208.000000 1840.000122 1136.000000 208.000000 1904.000122 1200.000000 208.000000 1904.000122 1200.000000 64.000000 1840.000122 1136.000000 64.000000 1840.000122 1136.000000 64.000000 1904.000122 1200.000000 64.000000 1904.000122 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 1232.000000 208.000000 1840.000122 1200.000000 208.000000 1840.000122 1200.000000 208.000000 1904.000122 1232.000000 208.000000 1904.000122 1232.000000 64.000000 1840.000122 1200.000000 64.000000 1840.000122 1200.000000 64.000000 1904.000122 1232.000000 64.000000 1904.000122 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 975.999878 64.000000 1616.000000 719.999878 0.000000 1616.000000 975.999878 0.000000 2128.000000 975.999878 0.000000 1616.000000 719.999878 0.000000 2128.000000 975.999878 64.000000 2128.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 3 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 5 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 4 5 0x00000000 brush vertices 1232.000000 64.000000 1616.000000 976.000061 64.000000 1616.000000 976.000061 64.000000 2128.000000 1232.000000 64.000000 2128.000000 1232.000000 0.000000 1616.000000 976.000061 0.000000 1616.000000 976.000061 0.000000 2128.000000 1232.000000 0.000000 2128.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 -1536.000000 256.000000 2848.000000 -1120.000000 256.000000 2848.000000 -1120.000000 256.000000 2784.000000 -1536.000000 256.000000 2784.000000 -1536.000000 32.000000 2848.000000 -1120.000000 32.000000 2848.000000 -1120.000000 32.000000 2784.000000 -1536.000000 32.000000 2784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 784.000000 256.000000 1904.000000 1200.000000 256.000000 1904.000000 1200.000000 256.000000 1840.000000 784.000000 256.000000 1840.000000 784.000000 32.000000 1904.000000 1200.000000 32.000000 1904.000000 1200.000000 32.000000 1840.000000 784.000000 32.000000 1840.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 816.000000 256.000000 2128.000000 1200.000000 256.000000 2128.000000 1200.000000 256.000000 2096.000000 816.000000 256.000000 2096.000000 816.000000 0.000000 2128.000000 1200.000000 0.000000 2128.000000 1200.000000 0.000000 2096.000000 816.000000 0.000000 2096.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 1200.000000 256.000000 2128.000000 1232.000000 256.000000 2128.000000 1232.000000 256.000000 1840.000000 1200.000000 256.000000 1840.000000 1200.000000 0.000000 2128.000000 1232.000000 0.000000 2128.000000 1232.000000 0.000000 1840.000000 1200.000000 0.000000 1840.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 832.000000 16.000000 1904.000000 1200.000000 255.999985 1984.000000 1200.000000 255.999985 1904.000000 1200.000000 16.000000 1984.000000 1200.000000 16.000000 1904.000000 832.000000 255.999985 1904.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000 internal/editor/textures/editor_clip brush vertices 784.000000 256.000000 2128.000000 816.000000 256.000000 2128.000000 816.000000 256.000000 1904.000000 784.000000 256.000000 1904.000000 784.000000 32.000000 2128.000000 816.000000 32.000000 2128.000000 816.000000 32.000000 1904.000000 784.000000 32.000000 1904.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 1168.000000 64.000000 1968.000000 1200.000000 256.000000 2096.000000 1200.000000 256.000000 1968.000000 1200.000000 64.000000 2096.000000 1200.000000 64.000000 1968.000000 1168.000000 256.000000 1968.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 1 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 4 0 5 0x00000000 internal/editor/textures/editor_clip brush vertices 816.000000 240.000000 2096.000000 880.000000 240.000000 2096.000000 816.000000 32.000000 1904.000000 816.000000 32.000000 2096.000000 880.000000 32.000000 2096.000000 816.000000 240.000000 1904.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 5 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 4 2 5 0x00000000 internal/editor/textures/editor_clip entity type PlayerSpawn Vector3 position 256.000000 256.000000 176.000000 Bool8 teamB 0 entity type CameraPath UInt8 posLerp 2 UInt8 angleLerp 2 entity type Target Vector3 position 864.000000 864.000000 2368.000000 Vector3 angles -135.000000 30.000000 0.000000 String32 name end entity type PlayerSpawn Vector3 position 320.000000 128.000000 1248.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 192.000000 128.000000 1248.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -1280.000122 64.000000 2944.000000 Vector3 angles -180.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 1576.000000 144.000000 1568.000000 Vector3 angles 270.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 1576.000000 320.000000 1568.000000 Vector3 angles 270.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 1656.000000 512.000000 1240.000000 Vector3 angles 225.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -256.000000 368.000000 2336.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 896.000000 64.000000 3648.000000 Vector3 angles -180.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 1664.000000 96.000000 3648.000000 Vector3 angles -180.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -384.000000 32.000000 1984.000000 Vector3 angles -180.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 384.000000 64.000000 1984.000000 Vector3 angles -180.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -1424.000000 256.000000 784.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -1424.000000 256.000000 1312.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -576.000000 864.000000 3808.000000 Vector3 angles -180.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -1440.000000 832.000000 3808.000000 Vector3 angles -180.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 1008.000000 64.000000 1984.000000 Vector3 angles -180.000000 0.000000 0.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 192.000000 256.000000 176.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 320.000000 256.000000 176.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 448.000000 256.000000 176.000000 Bool8 teamB 0 entity type PlayerSpawn Vector3 position 64.000000 256.000000 176.000000 Bool8 teamB 0
badff2780234b2a7d67ecd51607f3f70b0ddb5c8
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.5/macros/m2sci/sci_planerot.sci
2587ff68ffe1b7886930ff67b35a5095c362093b
[ "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
312
sci
sci_planerot.sci
function [stk,txt,top]=sci_planerot() // Copyright INRIA txt=[] m=stk(top)(3);n=stk(top)(4) if lhs==1 then stk=list('givens('+stk(top)(1)+')','0',m,m,stk(top)(5)) else stk=list(.. list('givens('+stk(top)(1)+')','-1',m,'1',stk(top)(5)),.. list('givens('+stk(top)(1)+')','-1',m,m,stk(top)(5))) end
0afb11d425240529b9f66065f0912c346d983570
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/sergeant vs pigeon.sce
e6d707dd218bc85474fb1ef60175851c959dff8f
[]
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
22,007
sce
sergeant vs pigeon.sce
Name=sergeant vs pigeon PlayerCharacters=Sergeant 87 BotCharacters=Pigeon.bot;Pigeon.bot;Pigeon.bot IsChallenge=true Timelimit=60.0 PlayerProfile=Sergeant 87 AddedBots=Pigeon.bot;Pigeon.bot;Pigeon.bot PlayerMaxLives=0 BotMaxLives=0;0;0 PlayerTeam=0 BotTeams=0;0;0 MapName=kovaim1.map MapScale=3.8125 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=false TimeRefilledByKill=0.0 ScoreToWin=1000.0 ScorePerDamage=1.0 ScorePerKill=0.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=ow, overwatch WeaponHeroTag=soldier76 DifficultyTag=2 AuthorsTag=BlinkinPark BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=false Description=Easy drill to practice against midair opponents like Pharahs, without getting knocked back all the time lul GameVersion=1.0.5 [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Bot Profile] Name=Pigeon DodgeProfileNames=Long Strafes 2 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=Clay Pigeon SeeThroughWalls=true [Character Profile] Name=Sergeant 87 MaxHealth=200.0 WeaponProfileNames=Rifle;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=30.0 CrouchHeightModifier=0.69 CrouchAnimationSpeed=5.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=1.0 MovementType=Base MaxSpeed=488.888885 MaxCrouchSpeed=270.0 Acceleration=10000.0 AirAcceleration=16000.0 Friction=100.0 BrakingFrictionFactor=0.0 JumpVelocity=270.0 Gravity=1.0 AirControl=0.04 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=true EnemyBodyColor=X=0.774 Y=0.000 Z=0.000 EnemyHeadColor=X=0.149 Y=0.542 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=0.771 TeamHeadColor=X=0.149 Y=0.542 Z=1.000 BlockSelfDamage=true InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=true AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=128.888885 MainBBRadius=20.0 MainBBHasHead=true MainBBHeadRadius=12.5 MainBBHeadOffset=-12.5 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=128.888885 ProjBBRadius=20.0 ProjBBHasHead=true ProjBBHeadRadius=12.5 ProjBBHeadOffset=-12.5 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.5 JetpackFullFuelTime=1000.0 JetpackFuelIncPerSec=100.0 JetpackFuelRegensInAir=true JetpackThrust=6000.0 JetpackMaxZVelocity=600.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=Run.abilsprint;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=0.9 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 [Character Profile] Name=Clay Pigeon MaxHealth=100.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=8.0 MovementType=Base MaxSpeed=1000.0 MaxCrouchSpeed=500.0 Acceleration=4000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=2500.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=255.000 Y=0.000 Z=0.000 EnemyHeadColor=X=255.000 Y=255.000 Z=255.000 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=230.0 MainBBRadius=55.0 MainBBHasHead=true MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=true ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 [Dodge Profile] Name=Long Strafes 2 MaxTargetDistance=100000.0 MinTargetDistance=0.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.5 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.1 MaxJumpTime=0.1 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.2 StrafeSwapMaxPause=0.5 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 [Weapon Profile] Name=Rifle Type=Hitscan ShotsPerClick=1 DamagePerShot=19.0 KnockbackFactor=0.1 TimeBetweenShots=0.1 Pierces=false Category=FullyAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=1.5 ReloadTimeFromPartial=1.5 DamageFalloffStartDistance=3000.0 DamageFalloffStopDistance=5500.0 DamageAtMaxRange=6.0 DelayBeforeShot=0.0 HitscanVisualEffect=None ProjectileGraphic=Ball VisualLifetime=0.001 WallParticleEffect=Gunshot HitParticleEffect=Blood BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.1 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=true DecalType=1 DecalSize=15.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=10.3 ADSFOVScale=Overwatch ADSAllowUserOverrideFOV=true Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.1 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=2.0,10.0,-2.6,2.4 SpreadSCA=2.0,10.0,-2.6,2.4 SpreadMSA=2.0,10.0,-2.6,2.4 SpreadMCA=2.0,10.0,-2.6,2.4 SpreadSSH=2.0,10.0,-2.6,2.4 SpreadSCH=2.0,10.0,-2.6,2.4 SpreadMSH=2.0,10.0,-2.6,2.4 SpreadMCH=2.0,10.0,-2.6,2.4 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.45 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.15 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Sprint Ability Profile] Name=Run MaxCharges=1.0 ChargeTimer=0.001 ChargesRefundedOnKill=0.0 DelayAfterUse=0.5 FullyAuto=false AbilityDuration=0.0 BlockAttackWhileSprinting=false AbilityBlockedWhenAttacking=true SpeedModifier=1.5 45DegreeSprint=true 90DegreeSprint=false 135DegreeSprint=false 180DegreeSprint=false TapToSprint=false Block45DegreesWhenSprinting=false AIUseInCombat=true AIUseOutOfCombat=false AIUseOnGround=true AIUseInAir=true AIReuseTimer=1.0 AIMinSelfHealth=0.0 AIMaxSelfHealth=100.0 AIMinTargHealth=0.0 AIMaxTargHealth=100.0 AIMinTargDist=0.0 AIMaxTargDist=2000.0 AIMaxTargFOV=15.0 AIDamageReaction=true AIDamageReactionIgnoreChance=0.0 AIDamageReactionMinDelay=0.125 AIDamageReactionMaxDelay=0.25 AIDamageReactionCooldown=1.0 AIDamageReactionThreshold=0.0 AIDamageReactionResetTimer=0.1 [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end UInt8 playersMin 1 UInt8 playersMax 16 brush vertices -576.000000 0.000000 256.000000 448.000000 0.000000 256.000000 448.000000 0.000000 -768.000000 -576.000000 0.000000 -768.000000 -576.000000 -16.000000 256.000000 448.000000 -16.000000 256.000000 448.000000 -16.000000 -768.000000 -576.000000 -16.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -576.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 272.000000 -784.000000 -576.000000 272.000000 -784.000000 -576.000000 0.000000 -768.000000 448.000000 0.000000 -768.000000 448.000000 0.000000 -784.000000 -576.000000 0.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -576.000000 272.000000 272.000000 448.000000 272.000000 272.000000 448.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 0.000000 272.000000 448.000000 0.000000 272.000000 448.000000 0.000000 256.000000 -576.000000 0.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 448.000000 272.000000 256.000000 464.000000 272.000000 256.000000 464.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 0.000000 256.000000 464.000000 0.000000 256.000000 464.000000 0.000000 -768.000000 448.000000 0.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -592.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 272.000000 -768.000000 -592.000000 272.000000 -768.000000 -592.000000 0.000000 256.000000 -576.000000 0.000000 256.000000 -576.000000 0.000000 -768.000000 -592.000000 0.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -592.000000 704.000000 256.000000 -576.000000 704.000000 256.000000 -576.000000 704.000000 -768.000000 -592.000000 704.000000 -768.000000 -592.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 -576.000000 272.000000 -768.000000 -592.000000 272.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 448.000000 704.000000 256.000000 464.000000 704.000000 256.000000 464.000000 704.000000 -768.000000 448.000000 704.000000 -768.000000 448.000000 272.000000 256.000000 464.000000 272.000000 256.000000 464.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 704.000000 -768.000000 448.000000 704.000000 -768.000000 448.000000 704.000000 -784.000000 -576.000000 704.000000 -784.000000 -576.000000 272.000000 -768.000000 448.000000 272.000000 -768.000000 448.000000 272.000000 -784.000000 -576.000000 272.000000 -784.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 704.000000 272.000000 448.000000 704.000000 272.000000 448.000000 704.000000 256.000000 -576.000000 704.000000 256.000000 -576.000000 272.000000 272.000000 448.000000 272.000000 272.000000 448.000000 272.000000 256.000000 -576.000000 272.000000 256.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 720.000000 256.000000 448.000000 720.000000 256.000000 448.000000 720.000000 -768.000000 -576.000000 720.000000 -768.000000 -576.000000 704.000000 256.000000 448.000000 704.000000 256.000000 448.000000 704.000000 -768.000000 -576.000000 704.000000 -768.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -576.000000 96.000000 -384.000000 -320.000000 96.000000 -384.000000 -320.000000 96.000000 -512.000000 -576.000000 96.000000 -512.000000 -576.000000 0.000000 -384.000000 -320.000000 0.000000 -384.000000 -320.000000 0.000000 -512.000000 -576.000000 0.000000 -512.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 192.000000 96.000000 0.000000 448.000000 96.000000 0.000000 448.000000 96.000000 -128.000000 192.000000 96.000000 -128.000000 192.000000 0.000000 0.000000 448.000000 0.000000 0.000000 448.000000 0.000000 -128.000000 192.000000 0.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 entity type PlayerSpawn Vector3 position -64.000000 0.000000 -736.000000 entity type CameraPath UInt32 entityIdAttachedTo 5 UInt8 posLerp 2 UInt8 angleLerp 2 entity type Effect Vector3 position 0.000000 256.000000 0.000000 String64 effectName internal/misc/reflectionprobe entity type Target Vector3 position 320.000000 256.000000 320.000000 Vector3 angles -135.000000 30.000000 0.000000 String32 name end entity type PlayerSpawn Vector3 position -64.000000 0.000000 224.000000 Vector3 angles 180.000000 0.000000 0.000000 entity type PlayerSpawn Vector3 position 416.000000 0.000000 -256.000000 Vector3 angles 270.000000 0.000000 0.000000 entity type PlayerSpawn Vector3 position -544.000000 0.000000 -256.000000 Vector3 angles 90.000000 0.000000 0.000000
f3519d9d1dd7eebc104ce992b2b75c4cc345a4fc
e0124ace5e8cdd9581e74c4e29f58b56f7f97611
/3883/CH1/EX1.8/EX1_8.sce
185fd248e3982bead75f6e27e0617e7c9c376880
[]
no_license
psinalkar1988/Scilab-TBC-Uploads-1
159b750ddf97aad1119598b124c8ea6508966e40
ae4c2ff8cbc3acc5033a9904425bc362472e09a3
refs/heads/master
2021-09-25T22:44:08.781062
2018-10-26T06:57:45
2018-10-26T06:57:45
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
241
sce
EX1_8.sce
//Chapter 1, Example 1.8 clc //Variable Declaration a1 = 0.00047 a2 = 0.002 b1 = 690000 b2 = 0.00000013 //Calculation a = a1/a2 b = b1/b2 //Results printf("(a) %.1f x 10^-2 \n",a*100) printf("(b) %.2f x 10^12",b/1000000000000)
9bae7045807d8e65ea6854cfc0350e402ea66f76
a29cde11dd7c5ad8b8e1237f61c7cd379b163cbe
/unitTesting/legs.sci
91c6765ca681680ac2d96422505e630666920154
[ "ISC" ]
permissive
jrl-umi3218/jrl-dynamics
0cab2f8fd7a7e6c8d72db0d2d91e76c85cd0c685
acaddd0fcb6d3b3ef73e520269af242c0f861232
refs/heads/master
2020-05-19T08:13:43.364161
2015-03-17T21:56:38
2015-03-17T21:56:38
944,193
1
2
null
2015-03-17T21:56:38
2010-09-28T00:57:11
C++
UTF-8
Scilab
false
false
2,341
sci
legs.sci
// These data are confidential // and describe the right leg of // HRP-2 10/14. // // Copyright 2010, // // Olivier Stasse, // // JRL/LAAS, CNRS/AIST // // This file is part of dynamicsJRLJapan. // dynamicsJRLJapan is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // dynamicsJRLJapan is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Lesser Public License for more details. // You should have received a copy of the GNU Lesser General Public License // along with dynamicsJRLJapan. If not, see <http://www.gnu.org/licenses/>. // // Research carried out within the scope of the Associated // International Laboratory: Joint Japanese-French Robotics // Laboratory (JRL) // // Masses m = ... [ 2.5; ... 2.0; ... 5.1; ... 7.0; ... 2.5; ... 1.9; ... ]; // Inertia Matrices I = ... [ ... // Body 1 [ 1.0 0.0 0.0]; ... [ 0.0 1.0 0.0]; ... [ 0.0 0.0 1.0]; ... ... // Body 2 [ 1.0 0.0 0.0]; ... [ 0.0 1.0 0.0]; ... [ 0.0 0.0 1.0]; ... ... // Body 3 [ 1.0 0.0 0.0]; ... [ 0.0 1.0 0.0]; ... [ 0.0 0.0 1.0]; ... ... // Body 4 [ 1.0 0.0 0.0]; ... [ 0.0 1.0 0.0]; ... [ 0.0 0.0 1.0]; ... ... // Body 5 [ 1.0 0.0 0.0]; ... [ 0.0 1.0 0.0]; ... [ 0.0 0.0 1.0]; ... ... // Body 6 [ 1.0 0.0 0.0]; ... [ 0.0 1.0 0.0]; ... [ 0.0 0.0 1.0]; ... ]; // Local center of masses lc = ... [ [0 0.1 0]; ... [0 0 -0.15]; ... [0 0.04 0.0]; ... [0 0 -0.3]; ... [-0.15 0.0 0.0]; ... [0.28 0 -0.2]; ... ]; // Local positions of joints p= ... [ [ 0.0 0.09 0.0]; ... [ 0.0 0.0 0.0]; ... [ 0.0 0.0 -0.3535]; ... [ 0.0 0.0 0.0]; ... [ 0.0 0.0 0.3]; ... [ 0.0 0.0 0.0]; ... ]; // Local rotation between frame RS = ... [ ... // Body 1 [1 0 0];[0 1 0];[0 0 1]; ... ... // Body 2 [0 1 0];[1 0 0];[0 0 -1];... ... // Body 3 [0 1 0];[1 0 0];[0 0 -1]; ... ... // Body 4 [1 0 0];[0 1 0];[0 0 1]; ... ... // Body 5 [1 0 0];[0 1 0];[0 0 1]; ... ... // Body 6 [0 1 0];[1 0 0];[0 0 -1]; ... ];
e8a60f6bf0fb7d92b313b1bd4c7272fff6df8a5e
449d555969bfd7befe906877abab098c6e63a0e8
/1040/CH5/EX5.3.b/Chapter5_Ex3_b.sce
fe0def3743724621a32e5ac787af661bbda45bae
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,702
sce
Chapter5_Ex3_b.sce
//Harriot P.,2003,Chemical Reactor Design (I-Edition) Marcel Dekker,Inc., USA,pp 436. //Chapter-5 Ex5.3.b Pg No. 209 //Title:Peak Radial average bed temperature for velocities //=========================================================================================================== clear clc format(16) //INPUT k_s= 8*10^(-4);//(cal/sec cm°C) M_air_avg=29.24;// Cp_air_mol=7.91;// cal/mol°C; Cp_air_g=Cp_air_mol/M_air_avg;//cal/g°C dp=0.4;//Size of the catalyst pellet (cm) D=3.8;//Diameter of tube (cm) R_pellet=D/2;//Radius f_EO=0.7;//Fraction of ethylene forming ethylene oxide f_CO2_H2O=1-f_EO;//Fraction of ethylene forming CO2 and H2O rho_p=2.5;//Density of catalyst particle (g/cm3) P=5;//System Pressure (atm) T_C=230;//System Temperature (°C) T=T_C+273;//System Temperature (K) u_ft=[1.5 3];//Velocity (ft/s) myu=0.026*(10^(-2));//Viscosity of air (Poise) M_wt=[28 32 44 28];//Molecular weight M_fraction=[0.04 0.07 0.06 0.83]; del_H_rxn=[-29.9 -317];//Heat of reaction(kcal/mol) E=18*1000;//Activation Energy (cal) R=1.987;//Gas Constant (cal/K.mol) U=[0.00275 0.00431 ];//Overall heat transfer coefficients calculated in Ex5.3.a //CALCULATION minus_delH=f_EO*(-del_H_rxn(1))+f_CO2_H2O*(-del_H_rxn(2)); T_max=T+20; del_Tc= R*(T_max)^2/E; T_new=250 +273; X_E=0.1; k250_by_k230=exp((E/R)*((1/T)-(1/T_new))); P_E=P*(1-X_E)*M_fraction(1); P_O2=P*(1-f_EO*X_E)*M_fraction(2); P_CO2=P*(1+f_CO2_H2O*X_E)*M_fraction(3); r=k250_by_k230*((0.076*P_E*P_O2)/(1+2*P_E+15*P_CO2)); Q_dash=r*minus_delH*10^3/3600; epsilon=0.4; rho_bed=rho_p*(1-0.4); A_percm3=4/D; Q=(Q_dash*rho_bed) for i=1:2 delta_T(i)=(Q/A_percm3)*(1/U(i)); end //OUTPUT //Console Output mprintf('\nThe Peak Radial average bed temperature for given Velocities' ) mprintf('\n==========================================================') mprintf('\n u(velocity) delta_T') mprintf('\n (ft/s) (°C)') mprintf('\n==========================================================') for i=1:2 mprintf('\n %0.1f \t \t %0.0f',u_ft(i),delta_T(i)) end //File Output fid= mopen('.\Chapter5_Ex3_b_Output.txt','w'); mfprintf(fid,'\nThe Peak Radial average bed temperature for given Velocities' ); mfprintf(fid,'\n=========================================================='); mfprintf(fid,'\n u(velocity) delta_T'); mfprintf(fid,'\n (ft/s) (°C)'); mfprintf(fid,'\n=========================================================='); for i=1:2 mfprintf(fid,'\n %0.1f \t \t %0.0f',u_ft(i),delta_T(i)); end mclose(fid); //======================================================END OF PROGRAM========================================
f86084f081eb4ea1f0844f48baf79c0ee9040e7d
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/rms/rms12.sce
55067cf16fd7945830e69ed4a8fd857e34ef2030
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
92
sce
rms12.sce
y=['a' 'v' 'c';'a' 'c' 'x']; Y=rms(y); disp(Y); //output // //97. 108.9151 110.00227
4290130e7a954dc82f71827f0267238a583869a5
717ddeb7e700373742c617a95e25a2376565112c
/3044/CH13/EX13.2/Ex13_2.sce
0e3b63368282134c7cd23d92fb82df82e36c10de
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
1,161
sce
Ex13_2.sce
// Variable declaration s_square = 0.25 // mean square error v = 10 // degree of freedom t_thr = 2.228 // theoritical value of t at 0.025 b = 2 r = 3 // Calculation l = [3.07, 2.30;7.17, 5.53;10.80, 7.33] a = l(:,1) b = l(:,2) l1 = [a(1),b(1)] l2 = [a(2),b(2)] l3 = [a(3),b(3)] // Result // first confidence interval y1 = mean(l1)-mean(l2) - 2.228*( sqrt(0.25 * (2.0/6)) ) y2 = mean(l1)-mean(l2) + 2.228*( sqrt(0.25 * (2.0/6)) ) printf ("first confidence interval: ( %.2f , %.2f )",y1,y2) // second confidence interval y1 = mean(l1)-mean(l3) - 2.228*( sqrt(0.25 * (2.0/6)) ) y2 = mean(l1)-mean(l3) + 2.228*( sqrt(0.25 * (2.0/6)) ) printf ( "second confidence interval: ( %.2f , %.2f )",y1,y2) // third confidence interval y1 = mean(l2)-mean(l3) - 2.228*( sqrt(0.25 * (2.0/6)) ) y2 = mean(l2)-mean(l3) + 2.228*( sqrt(0.25 * (2.0/6)) ) printf ( "third confidence interval: ( %.2f , %.2f )",y1,y2) // confidence interval for single difference in mean y1 = mean(a)-mean(b) - 2.228*( sqrt(0.25 * (2.0/9)) ) y2 = mean(a)-mean(b) + 2.228*( sqrt(0.25 * (2.0/9)) ) printf ( "interval for single difference in mean(in hours): ( %.2f , %.2f )",y1,y2)
40f0beace5094e106bb02b0f85ae22d5bae2560e
449d555969bfd7befe906877abab098c6e63a0e8
/2409/CH2/EX2.4/Ex2_4.sce
7e987acc016f174206c6f3bdc7ae5e2375119746
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
694
sce
Ex2_4.sce
//Variable Declaration aE=6378.141 //Earth's equitorial radius(km) e=0.002 //Eccentricity p=12 //period from perigee to perigee (hours) K1=66063.1704 //Constant (km^2) u=3.986005*(10**14) //Earth's Gravitational constant(m^3/sec^2) //Calculation n=(2*%pi)/(12*60*60) //Mean Motion(rad/sec) anp=((u/n**2)**(0.3333))/1000 //Radius of the orbit by kepler's 3rd law(km) k2=(1-e**2)**1.5 function [y]=f(a) y=(n-((u/a**3)**0.5)*(1+K1/a**2*k2)) endfunction a=fsolve(2,f) a=a/1000 //Converting a into km //Result printf("The nonperturbed value of semimajor axis is %.2f km",anp) printf("\nThe perturbed value of semimajor axis is %.2f km",a)
ba5923591f5b5d3f83e8e7ddbe4cf3ce5e245261
63c8bbe209f7a437f8bcc25dc1b7b1e9a100defa
/test/0008.tst
f1279938aefafa68d364bc74a4a2b202cccd2778
[]
no_license
fmeci/nfql-testing
e9e7edb03a7222cd4c5f17b9b4d2a8dd58ea547c
6b7d465b32fa50468e3694f63c803e3630c5187d
refs/heads/master
2021-01-11T04:09:48.579127
2013-05-02T13:30:17
2013-05-02T13:30:17
71,239,280
0
0
null
2016-10-18T11:01:57
2016-10-18T11:01:55
Python
UTF-8
Scilab
false
false
871
tst
0008.tst
SpLittER sm {} FiLTEr p { 252.29.255.206 iN Bc:a4:dE:eF:FE:Db not 7 >= 158.253.8.49 NOt B > IEU Or 1 <= ::a:F/22 oR NOT ::B5:Ce:Da:7.211.83.129 > q nOt z ( 1, 17.4.81.126, ) ba:5D:de:BB:0B:DE < CC:Ba:ac:db:da:CA biTAnd ( ) Or NOt Ff:BD:eD:ef:A6:B0 << BitaNd ( b, h, ) oR NoT BiTaNd ( ) = j noT 187.186.222.253/68 >> AFBC::F Or biTAnd ( 5, ) oR nOT qL ( ) = BF:AE:aF:Aa:2b:aE OR o NOt IN or BitoR (50.5.3.49, 3.110.16.187, ) or Hlq ( ) not BITaNd ( ) > Or NOT O nOt IN FF:CF:56:Fc:fD:D9 nOT bItOr () NOT whc >> 12 not XZgwiCZAr ( S ( ), ) >> z x ( ) } FIlter c {C lvzK oR w } W -> B GrOUPeR u {MODULe VgPjK{ } moDUlE v{ } AGgReGaTe u.u } unGRouPeR H { } grOupfILteR D {} merGer Uc { MoDule OV { bRAnCHES qWwmbQ } MOdUlE d { BrANcHEs B 248.251.208.128/72 <= fWPVYe ( ) } MoDUle x { bRANchEs t, zl, DZ, gqu } EXPoRt p }
7ceb3f3d4337343b90f79c070363b09517aa3382
449d555969bfd7befe906877abab098c6e63a0e8
/965/CH7/EX7.68/68.sci
2dd8f70b958f1a58ea0c8e11852a23535bcc223a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
462
sci
68.sci
clc; clear all; disp("heat transfer coefficient") to=25;//degree C ti=130;//degree C U=16.5;// m/s v=15.53*10^(-6);//m^2/s Q=100;//W D=20/1000;//m L=120/1000;//m dis=0.12;// power loss As=3.1416*D*L; h=Q*(1-dis)/(As*(ti-to)); disp("W/m^2.C",h,"heat transfer coefficient h =") Re=U*D/v; Pr=0.702; Prs=0.685; Nu=0.26*(Re^0.6)*(Pr^0.36)*(Pr/Prs)^0.25; disp (Nu,"Nusselt number Nu =") h=Nu*k/D; disp("W/m^2.C",h,"heat transfer coefficient ")
686c853ddc8b545143f0dc8a0352c6fa582c56c0
449d555969bfd7befe906877abab098c6e63a0e8
/1286/CH15/EX15.3/15_3.sce
9c7dbcba8efc22afa8dca2d147c350dd37acbfb4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
154
sce
15_3.sce
clc //initialisation n=12 p=2 //CALCULATIONS t=n/p a=factorial(n)/(factorial(t)*factorial(n-t)*p^n) //results printf(' \n probability= % 1f ',a)
78e4bd0ba633d3e374b84f1d38a68cdc03ff3f43
449d555969bfd7befe906877abab098c6e63a0e8
/2381/CH1/EX1.7/ex_7.sce
7271c0075ea6dde2d49c93f4b2ffb34ef30e2b42
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
242
sce
ex_7.sce
//Example 7 // ENERGY clc; clear; close; es=1;//joule l=2;//metre am=3;//cm am1=5;//cm e1=(am1^2/am^2)*es;//joules l2=1;//meter e2=(l/l2)*es;//joules disp(e1,"energy in first case is,(joules)=") disp(e2,"energy in second case is,(joules)= ")
6a8e7e53b300f301f8721e2b94093e728ce263e7
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/pulsewidth/pulsewidth9.sce
218c76cdea5bde6a6d83eb0d159f1e9278fef288
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
855
sce
pulsewidth9.sce
x=[0.0; 0.010753342790922; 0.0366777002919017; -0.045176937220073; 0.0172434664073624; 0.00637530479717962; -0.0261537659261055; -0.00867184044611367; 0.006852489330773; 0.0715679387945152; 0.0553887405976975; -0.0269977388031304; 0.0606984693266371; 5.01450808449892; 4.99873890253621; 5.01429485807652; 4.99590067883401; 4.99751711303567; 5.02979395215571; 0.0281806897960096; 0.0283438482685923; 0.0134299426721616; -0.0241497384537008; 0.0143447730265768; 0.0326047057832946; 0.00977787540623579; 0.0206938601983572; 0.0145377026676648; -0.00606881849572032; 0.00587742934193316; -0.0157456560751728; 0.0177679126351528; -0.022941402139383; 4.97862259083664; ] [d,initcross,fincross,midlev]= pulsewidth(x); disp(d) disp(initcross) disp(fincross) disp(midlev) //output // 6.0062812 // // 13.495979 // // 19.50226 // // 2.5176834
0462088fce464273daaec0bcad22c48d87c2e9eb
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH19/EX19.21/Ex19_21.sce
8b5ae5fcde6b47fa6caa9593837b0602adb912d6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
344
sce
Ex19_21.sce
clear //Given u0=-200.0 //cm fa=50.0 //cm ve=-25.0 //cm fe=5.0 //cm //Calculation v0=1/((1/fa)+1/u0) M0=v0/u0 ue=1/((1/ve)-1/fe) Me=ve/ue D=v0-ue M=M0*Me //Result printf("\n (i) Saparation between the objective and eyepiece is %0.2f cm",D)
02c599f72bbd992a2cc582af1849469b03e176f0
10009b400a1cb3f79eac088e0da3485079ab5ef5
/matlab/raschetka.sce
92620c7a07402106a7d39fb35d27b06efa5d303f
[]
no_license
Paimon97/7-semestr
36e14102688103ead95b2d515ce926929893e642
99d21228b1c5b0fa08cf35f5aee5eb38eed7084d
refs/heads/master
2020-07-31T10:57:10.938684
2019-12-24T15:22:54
2019-12-24T15:22:54
210,580,371
0
0
null
null
null
null
UTF-8
Scilab
false
false
411
sce
raschetka.sce
//бифуркационная диограмма логистического отображения x0 = 0; N = 1000; k = 0; h = 0.005; n = 2.25/h; c = zeros(n); x = zeros(n,N); for i = 1:n c(i) = -0.25 + h*i; for j = 1:N if j <= 1 then x(i,j)= x0; else x(i,j) = c(i) - (x0*x0); x0 = x(i,j); end end x0 = 0; end //plot(x) plot(x(:,501:N))
9f9b9911f07cbb13c1ac625c64314b6ceec08e4a
449d555969bfd7befe906877abab098c6e63a0e8
/1709/CH4/EX4.6/4_6.sce
5b7ee61fd408a65fb0a5413f9bcbe2bc83434c11
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
244
sce
4_6.sce
clc //Initialization of variables T1=500+460 //R P1=50 //psia P2=15 //psia g=1.4 cp=0.24 //calculations T2=T1*(P2/P1)^((g-1)/g) W=cp*(T2-T1) + (T1-460)^2 /(2*32.2*778) //results printf("Net work output from turbine = %.1f B/lbm",W)
ec96977d41ea6b35bc1f48b3b27b9a9e89710e56
e9d5f5cf984c905c31f197577d633705e835780a
/data_reconciliation/linear/scilab/functions/robust_structure.sci
50a7b28405daf8620dd926cb60233729e5db5f31
[]
no_license
faiz-hub/dr-ged-benchmarks
1ad57a69ed90fe7595c006efdc262d703e22d6c0
98b250db9e9f09d42b3413551ce7a346dd99400c
refs/heads/master
2021-05-18T23:12:18.631904
2020-03-30T21:12:16
2020-03-30T21:12:16
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
6,861
sci
robust_structure.sci
// Data Reconciliation Benchmark Problems From Literature Review // Author: Edson Cordeiro do Valle // Contact - edsoncv@{gmail.com}{vrtech.com.br} // Skype: edson.cv // aux functions to ipopt solver //*************************************************************** //This function analyses the structure of the problem //and return vectors and matrices that will be used by ipopt solver //Outputs: // // nc_eq number of equality constraints // n_non_lin_eq number of non-linear equality constraints // nv: number of variables // nnzjac_ineq number of non zero elements in the Jacobian of the inequality constraints // nnzjac_eq number of non zero elements in the Jacobian of the equality constraints // nnz_hess number of non zero elements in the Lagrangean Hessian's // sparse_dg sparsity structure of the Jacobian matrix of the constraints // sparse_dh sparsity structure of the Lagrangean Hessian's // lower lower bound of the variables // upper upper bound of the variables // var_lin_type type of the variable (linear or non-linear) // constr_lin_type type of the constraints (linear or non-linear) // constr_lhs lower bound of the constraints residuals // constr_rhs upper bound of the constraints residuals // //Inputs: // jac_eq: is the flowsheet jacobian matrix (regarding only total flows), // also known as the incidence matrix. // n_inequality_contraints since in classical reconciliation problems, no extra inequality constraints are used // it is necessary to tell the number of them // x_init measurements (used to calculate the hessian and jacobian structures in an initial point // iobjfun objective function // eqfun equality constraint function // eqfun inequality constraint function //***************************************************************************** function [nc_eq, n_non_lin_eq, nv, nnzjac_ineq, nnzjac_eq, nnz_hess, sparse_dg, sparse_dh, lower, upper, var_lin_type, constr_lin_type, constr_lhs, constr_rhs] = robust_structure(jac_eq, n_inequality_constraints,x_init, iobjfun, eqfun, ineqfun) // From here on, the problem generation is automatic // No need to edit below //The problem size: nc = number of constraints and an number of variables [nc_eq,nv] = size(jac_eq); if n_inequality_constraints > 0 then // Call Jacobian of inequality constraints to get its structure jac_ineqconstraints = diffcode_jacobian(ineqfun,x_init)'; jac_ineqconstr_sparse = sparse(jac_ineqconstraints); [ij_ineq,v_ineq,mn_ineq]=spget(jac_ineqconstr_sparse); else ij_ineq = []; end // Jacobian of equality constraints to get its structure [i1_eq,i2_eq]=find(jac<>0); // The sparsity structure of the equality constraints ij_eq = [i1_eq', i2_eq']; // organizing the indices of the non-zero elements ij_eq(:,1) = ij_eq(:,1) + n_inequality_constraints; // The sparsity structure of the constraints sparse_dg = [ij_ineq; ij_eq]; nnzjac_ineq = size(ij_ineq,1); nnzjac_eq = size(ij_eq,1); // The sparsity structure of the Hessian Lagrangian //first retrieve the constraints Hessian structure, notice that with diffcode_hessian, the // Hessian has the following dimensions: nvar x nvar x nconstr , so it is in fact a // 3 dimensional matrix. if n_inequality_constraints > 0 then hess_ineq_constr = diffcode_hessian(ineqfun,x_init + 10*rand(nv,1 )); end //since our jacobian is constant, the hessian is null, in case of a non-linear jacobian //the lines bellow must be uncommented/commented appropriatelly //hess_eq_constr = diffcode_hessian(eqfun,x_init); hess_eq_constr = []; // cumulative sums the constraints in one hessian hess_constr = zeros(nv,nv); //pause for i = 1: n_inequality_constraints // we sum the absolute values to avoid zero cancelation hess_constr = hess_constr + abs(hess_ineq_constr(:,:,i)); end size_hess_eq_constr = size(hess_eq_constr); if length(size_hess_eq_constr) > 2 then n_non_lin_eq = size_hess_eq_constr(1,3); for i = 1: nc_eq hess_constr = hess_constr + abs(hess_eq_constr(:,:,i)); end else n_non_lin_eq = 0; end // the Hessian of the objective function // For Hampel, we are using the finite difference formula due to a limitation of // diffcode when providing the exact differences of tanh if obj_function_type == 5 then [J,hs_f] = derivative(objfun, x_init , H_form = "hypermat"); diaghess = diag(hs_f); hess_f = diag(diaghess); else // hess_f = diffcode_hessian(objfun, 100*rand(nv,1 )); hess_f = diffcode_hessian(objfun, x_init + 10*rand(nv,1 )); end //pause // sum both of the Hessians if length(size_hess_eq_constr) > 2 then hess_Sparse=sparse(hess_constr + hess_f); else hess_Sparse=sparse(hess_f); end // get the hessian structure [ij_hess,v_hess,mn_hess]=spget(hess_Sparse); //filters the hessian to remove symmetric indexes ij_hess_filtered = filter_symmetric(ij_hess); // index of the non-zero elements of the Hessian sparse_dh = ij_hess_filtered; nnz_hess = length(ij_hess_filtered(:,1)); // in case of energy and/or compound balance added, user needs to check these limits! // the variables have lower bounds of 0 lower = zeros(nv,1); // the variables have upper bounds of 50000 upper = 50000*ones(nv,1); // if the user added extra constraints, these lines also need review var_lin_type(1:nv) = 1; // Non-Linear constr_lin_type (1:nc_eq) = 0; // Linear // These bounds must be changed in case of extra constraints are added to the problem // (eg. compound balances, energy balances etc) // the constraints has lower bound of 0 constr_lhs(1:nc_eq) = 0; // the constraints has upper bound of 0. constr_rhs(1:nc_eq) = 0; endfunction // filter_symmetric removes the symmetric coeficients of the Hessian matrix. // Since ipopt uses only the upper triangular part of the Hessian matrix // it is necessary to remove the lower triangular part of the matrix, // that is the purpose of this function. // inputs: // ij : The 2 column matrix of the hessian structure (first columns is the row indices) // and the second column is the column indices) // outputs // ijnew: The "filtered" Hessian structure where only the upper triangular part of the Hessian is // considered // Author: Edson Cordeiro do Valle // Contact - edsoncv@{gmail.com}{vrtech.com.br} // Skype: edson.cv function [ijnew] = filter_symmetric(ij) [isize, jsize] = size(ij); ijnew = []; count = 1; for i =1: isize if ij(i,1) <= ij(i,2) then ijnew(count,:) = ij(i,:); count = count + 1; end end endfunction
75aee84dba366b53a31d97e11d3f0e4fd6a48068
449d555969bfd7befe906877abab098c6e63a0e8
/2915/CH6/EX6.12/Ex6_12.sce
876856cfbd553427d013766bbe7bca2cfd3b4e80
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex6_12.sce
clc,clear //Example 6.12 //To find higher powers of complex number using demoivre theorem z= complex(1,1); r= abs(z);//modulus of z theta=phasemag(z) ;//arguement of z power=10; //using demoivre formula answer= (r^power)*(cosd(theta*power)+%i*sind(theta*power)); //printf('(1+i)^10 = (%.0f)*(cos(%.0f)+ i*sin(%.0f))',r^power,theta*power,theta*power); printf('\n %.0f + %.0f*i',real(answer),imag(answer)); printf('\n(OR)\n %.0f*i',imag(answer));
0536dce8bc60e5044e9258fb2058439ec4f0b5e0
449d555969bfd7befe906877abab098c6e63a0e8
/3665/CH3/EX3.1/Ex3_1.sce
f632144d25e0c32cee6c6ebcfaf11e039df92379
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
509
sce
Ex3_1.sce
clc// // // //Variable declaration d=0.313; //lattice spacing(m) theta=7+(48/60); //angle(degrees) n=1; //Calculation theta=theta*%pi/180; //angle(radian) lamda=2*d*sin(theta)/n; //wavelength of X-rays(nm) //when theta=90 n=2*d/lamda; //maximum order of diffraction possible //Result printf("\n wavelength of X-rays is %0.5f nm",lamda) printf("\n answer varies due to rounding off errors") printf("\n when theta=90, maximum order of diffraction possible is %0.3f ",n)
6d1c48542b3a065b5a3520371504ef12f047bc75
449d555969bfd7befe906877abab098c6e63a0e8
/2642/CH4/EX4.10/Ex4_10.sce
66839a9731198edeaec03086aeacb63b12fd43c2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
930
sce
Ex4_10.sce
// FUNDAMENTALS OF ELECTICAL MACHINES // M.A.SALAM // NAROSA PUBLISHING HOUSE // SECOND EDITION // Chapter 4 : DIRECT CURRENT GENERATORS // Example : 4.10 clc;clear; // clears the console and command history // Given data Pw = 12 // power in kW P = 4 // number of poles Z = 500 // number of conductors V_t = 250 // generator voltage in V N = 1000 // speed in rpm P_cu = 600 // full load copper loss in W brush_drop = 2 // brush drop in V // caclulations A = 4 // for lab wound A=P I_a = Pw*10^3/V_t // armature current in A R_a = P_cu/I_a^2 // from copper loss equestion R_a in ohm E_g = V_t+I_a*R_a+brush_drop // generated voltage in V phi = E_g*60*A/(P*Z*N) // flux per pole in Wb // display the result disp("Example 4.10 solution"); printf(" \n Flux per pole \n phi = %.3f Wb \n", phi );
a27a0e804aab4abebe91296d78d7697c6f4c7ec5
449d555969bfd7befe906877abab098c6e63a0e8
/2561/CH1/EX1.4/Ex1_4.sce
6c2d8da467d63de3178b346ce41ba34ad2a6a7df
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
733
sce
Ex1_4.sce
//Ex-1.4 clc q=1.6*10^(-19) disp("q = "+string(q)+"coulomb") //charge on an electron I=10 disp("I = "+string(I)+"Ampere") //initializing value of current r=64.25 disp("radius,r = "+string(r)+" mils")//initializing value of radius of wire function[metres]=mils2metres(mils) metres=(mils*2.54)/(1000*100) endfunction [r1]=mils2metres(r) disp("r1 = "+string(r1)+" metre") n=5*10^(28) disp("n = "+string(n)+" electrons/m^3") // electrons concentration in copper A=(%pi*r1^2) //formulae disp("cross sectional area,A =(%pi*r1^2)= "+string(A)+" square metre")//calculation v=(I)/(A*q*n)//formulae(I=A*q*n*v) disp("drift velocity,v=(I)/(A*q*n)="+string(v)+" metre/second")//calculation
cc1f5470654358e1a85bacd3519c6b994842a0f1
0e52518c6fe37e683dc04d785f174ce30408f8e7
/otimizacao/SimulatedAnnealing.sce
3c51f1cecdf681f139687935d5333dc46e152fbb
[]
no_license
thiago-franco/metodos-numericos
c3a7a10d00376c9b238825e9ff049635cc153a92
95ed4e0b1e05b10c7d0ef9cbc23f9c98d2cf8a65
refs/heads/master
2021-07-06T00:19:31.512668
2017-09-30T01:25:29
2017-09-30T01:25:29
104,950,926
0
0
null
null
null
null
UTF-8
Scilab
false
false
639
sce
SimulatedAnnealing.sce
close clear clc function g=f(x) g=(x(1)-2)^4 + (x(1)-(2*x(2)))^2 endfunction function U=matriz(y) r=0 for i=1:n r=r+y(i)^2 end r=sqrt(r) U=eye(n,n) for i=1:n U(i,i)=y(i)/r end endfunction function X=Simulated(x,tsa) deltar=[.1;.1] X(:,$)=x n=length(x) true=0 while(true==0) true=1 cont=1000 t=1 while(cont>t) y=rand(n,1,"normal") U=matriz(y) xnovo= x + U*deltar deltac=f(xnovo)-f(x) if(deltac<0) x=xnovo true=0 else z=exp(-deltac/tsa) p=rand(1,1,"uniform") if(z>p) x=xnovo true=0 end end t=t+1 end tsa=tsa*0.90 X(:,$+1)=x X=x end endfunction
fa06f2cf6cc20173ed97c37b9843bef418b2f3cc
449d555969bfd7befe906877abab098c6e63a0e8
/1397/CH10/EX10.3/10_3.sce
ee4f1bbdb3432b6ab49232392995e2c66dfa3602
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
594
sce
10_3.sce
//clc(); clear; //To compute the lattice specific heat and estimate the electronic specific heat T=300; //specific heat at constant volume Td=418; //debye temperature Ef=11.7; //fermi energy in ev R=1.99; p1=(%pi)^4; Cv=(12*p1*R*(T^3))/(5*(Td^3)); printf("vibrational specific heat in cal/mol-k is"); disp(Cv); Ef=Ef*4.2*1.6*10^-19; //converting from eV to cal k=5.796*10^-23; //boltzmann constant in cal/k Tf=Ef/k; p2=(%pi)^2; Ce=(p2*R*T)/(2*Tf); printf("electronic specific heat in cal/mol-k is"); disp(Ce); //answer in book is wrong
c3a7310fb77ca8a1330d7d0cf8c316fb323c2ac8
717ddeb7e700373742c617a95e25a2376565112c
/2792/CH9/EX9.8/Ex9_8.sce
7ba1a45b9d6108b328c9cacab3dab7b58e244569
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
1,940
sce
Ex9_8.sce
clc kbT = 0.026 disp("kbT = "+string(kbT)+"eV") //initializing value of kbT at 300K Z = 10*10^-4 disp("Z = "+string(Z)+"cm") //initializing value of channel width L = 1*10^-4 disp("L = "+string(L)+"cm") //initializing value of channel length mu_n=700 disp("mu_n = "+string(mu_n)+"cm^2(Vs)^-1") //initializing value of channel mobility apsilen = 11.9*8.85*10^-14 disp("apsilen = "+string(apsilen)+"F/cm") //initializing value of relative permitivity e = 1.6*10^-19 disp("e= "+string(e)+"C")//initializing value of charge of electron Na=4*10^14 disp("Na = "+string(Na)+"cm^-3") //initializing value of doped carrier concentration ni = 1.5*10^10 disp("ni= "+string(ni)+"cm^-3")//initializing value of intrinsic carrier concentration apsilen_ox = 3.9*8.85*10^-14 disp("apsilen_ox= "+string(apsilen_ox))//initializing value of relative permitivity of oxide dox = 200*10^-8 disp("dox= "+string(dox)+"cm")//initializing value of thickness of oxide VGS = 5 disp("VGS= "+string(VGS)+"V")//initializing value of gate voltage Qs = sqrt(4*apsilen*(-phi_F)*e*Na) disp("The maximum depletion width is ,Qs = sqrt(4*apsilen*(-phi_F)*e*Na)= "+string(Qs)+" cm^-2")//calculation phi_F= (-kbT*log(Na/ni)) disp("The potential phi_F= (-kbT*log(Na/ni))= "+string(phi_F)+" V")//calculation Cox = apsilen_ox/dox disp("The oxide capicitance per unit area is ,Cox = apsilen_ox/dox= "+string(Cox)+" cm^-1")//calculation Vs = -(2*phi_F) disp("The surface potential is ,Vs = -(2*QF)= "+string(Vs)+" V")//calculation VT = Vs+((Qs/Cox)) disp(" The threshold voltage is ,VT = Vs+((Qs/Cox)) = "+string(VT)+" V")//calculation VDS = VGS-VT disp("The saturation voltage is ,VDS = VGS-VT= "+string(VDS)+" V")//calculation ID = (Z*mu_n*Cox*(VDS)^2)/(2*L) disp("The saturation current is ,ID = (Z*mu_n*Cox*(VDS)^2)/(2*L)= "+string(ID)+" A")//calculation // Note : due to different precisions taken by me and the author ... my answer differ
9fb0da131312b1eb298224512fb5b267cf356077
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set6/s_Electronic_Circuits_M._H._Tooley_995.zip/Electronic_Circuits_M._H._Tooley_995/CH2/EX2.24/Ex2_24.sce
fa37f6e484fb64c6a770a28edc564ebf51f49892
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
113
sce
Ex2_24.sce
errcatch(-1,"stop");mode(2);//Ex:2.24 ; ; printf("Capacitance = 150 pF of 2%% tolerance at 100 V"); exit();
ef0cc72e035736974a43a140bca1976af72a9111
6e257f133dd8984b578f3c9fd3f269eabc0750be
/ScilabFromTheoryToPractice/Programming/testfunctionsansarg.sce
fbdca9ccda3fcde02ba37e82d06b6c6ee9d127b4
[]
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
225
sce
testfunctionsansarg.sce
function y=foo1() y=1 endfunction foo1() // outputs 1 function foo2() disp('hello') endfunction foo2() // doesn't output anything but displays 'hello' a=foo2() // no error a // but a isn't created
040e3d927271bdae6e89074d1e5cf20fc1161cc5
449d555969bfd7befe906877abab098c6e63a0e8
/2024/CH8/EX8.14/8_14.sce
ef14a6f43de56152472dac97d315fbbb2fdbef2b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
299
sce
8_14.sce
clc //Initialization of variables T1=900 //R p1=100 //psia p2=10 //psia w=50 //Btu/lbm //calculations h1=120.86 //Btu/lbm pr1=17.374 pr2=pr1*p2/p1 disp("From equilibrium charts,") T2=468 //R h2=16.3 //Btu/lbm ke=h1-h2-w //results printf("Change in kinetic energy = %.2f Btu/lbm",ke)
7e8ed9d035eafcfd298e42dfaeb034c0f22f67ac
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set7/s_Electronic_Measurements_And_Instrumentation_R._K._Rajput_2096.zip/Electronic_Measurements_And_Instrumentation_R._K._Rajput_2096/CH1/EX1.56/ex_1_56.sce
a7f44eb756bcd048e60fbe7a91e84580fd52c2cb
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
409
sce
ex_1_56.sce
errcatch(-1,"stop");mode(2);//Example 1.56://probability error and readings ; ; d=15;//deviation in r.p.m h=0.04;//precision index SD=(1/(sqrt(h)));//standard deviation y=d/SD;// py=0.3015;//probablity pr= 2*py;//probablity of an error r=0.6*20;//no. of readings lie between 1485 to 1515 r.p.m disp(pr,"probability of an error ±15 rpm is,=") disp(r,"no. of readings lie between 1485 to 1515 r.p.m") exit();
b98fcc49f1effc3e4e0c983d0f89ac5987f68757
449d555969bfd7befe906877abab098c6e63a0e8
/1184/CH2/EX2.5.b/Ex2_5b.sce
51691b04ac167a8f53576b2d322d5e88d94dbe94
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
133
sce
Ex2_5b.sce
clc; clear; A1=0.045; AT=1; A2=AT/A1; printf('\nThe amplifier gain need to offset the loss for overall gain of 1 is %.1f',A2);
1956e5ad72a2dbbb50c8f30d28455b993e80b6af
449d555969bfd7befe906877abab098c6e63a0e8
/291/CH8/EX8.4b/eg8_4b.sce
605ba7cd46c7fa976bdcf9bd2f2c31b95b96460e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
eg8_4b.sce
X = [5.5 6.0 7.0 6.0 7.5 6.0 7.5 5.5 7.0 6.5]; Y = [6.5 6.0 8.5 7.0 6.5 8.0 7.5 6.5 7.5 6.0 8.5 7.0 ]; n = length(X); m= length(Y); Xbar= mean(X); Ybar = mean(Y); Sx = variance(X); Sy = variance(Y); Sp = ((n-1)*Sx/(n+m-2)) + ((m-1)*Sy/(n+m-2)); den = sqrt(Sp*((1/n)+(1/m))); TS = (Xbar -Ybar)/den; disp(TS, "The test statistic is"); tvalue = cdft("T", m+n-2, 0.95, 0.05) //disp(tvalue) if(TS<tvalue) disp("Null hypothesis is rejected at 5% level of significance") else disp("Null hypothesis is accepted at 5% level of significance") end
8f099741f0575ac5908c4a2f13dbe32a3a94266a
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.4.1/macros/scicos/systexport.sci
af57420aa3207b3569ecf7dbe09e6e914cf31899
[ "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
389
sci
systexport.sci
function win=systexport(scs_m,exp_dir) //xbasc() // Copyright INRIA if getenv('WIN32','NO')=='OK' then do_export(scs_m,exp_dir+'\'+scs_m(1)(2)(1)) else do_export(scs_m,exp_dir+'/'+scs_m(1)(2)(1)) end nx=size(scs_m) for k=2:nx o=scs_m(k) if o(1)=='Block' then model=o(3) if model(1)=='super' then // win=win+1 win=systexport(model(8),exp_dir) end end end
3613cc48db6d1df109b2a66c936d9723ee5cb842
449d555969bfd7befe906877abab098c6e63a0e8
/3872/CH12/EX12.1/Ex12_1.sce
2240ec1c0b269406233a85c3838b7505c003b14f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
796
sce
Ex12_1.sce
//Book - Power System: Analysis & Design 5th Edition //Authors - J. Duncan Glover, Mulukutla S. Sarma, and Thomas J. Overbye //Chapter - 12 ; Example 12.1 //Scilab Version - 6.0.0 ; OS - Windows clc; clear; Tr=0; Ka=100; Ta=0.05; Vrmax=5; Vrmin=-5; Ke=1; Te=0.26; Kf=0.01; Tf=1; Efd=2.9135; //Value taken from Example 11.10 Vt=1.0946; //Value taken from Example 11.10 Vr=Ke*Efd; //Initial value of Vr Vf=0; //Initial value of vf Vref=(Vr/Ka)+Vt+Vf; //Initial value of Vref printf('The initial value of Vr is %.4f\n',Vr) printf('The initial value of Vf is %.4f\n',Vf) printf('The initial value of Vref is %.4f\n',Vref) //Section 'b' of this problem cannot be simulated using current version of Scilab
02db4a52bf2f1edf395f9e54b8c31226d7630917
449d555969bfd7befe906877abab098c6e63a0e8
/2063/CH10/EX10.5/10_5.sce
63b2ca755bb87ccc8c1e1216dd54cd8ee8baf26b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
916
sce
10_5.sce
clc clear //Input data T2=298;//Maximum temperature at which CO2 machine works in K T1=268;//Minimum temperature at which CO2 machine works in K sf1=-0.042;//Liquid entropy at 268 K in kJ/kg K hfg1=245.3;//Latent heat of gas at 268 K in kJ/kg sf2=0.251;//Liquid entropy in kJ/kg K hfg2=121.4;//Latent heat of gas at 298 K in kJ/kg hf1=-7.54;//Liquid enthalpy at 268 K in kJ/kg hf2=81.3;//Liquid enthalpy at 298 K in kJ/kg hf3=81.3;//Enthalpy at point 3 in graph in kJ/kg //Calculations s2=sf2+(hfg2/T2);//Entropy at point 2 from the graph in kJ/kg K x1=(s2-sf1)/(hfg1/T1);//Dryness fraction at point 1 h1=hf1+(x1*hfg1);//Enthalpy at point 1 in kJ/kg h2=hf2+hfg2;//Enthalpy at point 2 in kJ/kg COP=(h1-hf3)/(h2-h1);//Coefficient of performance for a CO2 machine working at given temperatures //Output data printf('Theoretical COP for a CO2 machine working at given temperatures is %3.2f',COP)
df561c03b6f1f908c1bf0de0ad12b4e13f1fb9ab
449d555969bfd7befe906877abab098c6e63a0e8
/3776/CH11/EX11.9/Ex11_9.sce
ecc7bb59750c982648c9230792cbc5228106162d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,505
sce
Ex11_9.sce
clear //Given //FOR FLANGE l = 5 //in - The length of the flange b = 5 //in - Teh width of the flange t = 0.312 //in - the thickness of the flange L = 20 //in - Length of the beam, Extracted from AISC manuals A = 4.563 //sq.in - The area of crossection of the beam r = 1.188 //in - radius of the gyration, Extracted from AISC manuals //b/t- value of the flange k = (5 -t)/(2*t) //b/t ratio //AISC, lets check maximum allowable stress for slang Stressf_all = 23.1 - 0.79*k //ksi The maximum allowable stress in case of flange,AISC //web width thickness ratio k_2 = (5 -2*t)/(t) if k_2<16 then Stressw_all = 19 //ksi - The allowable stress in case of web width end //a) Overall buckling investment k_31 = L/r //slenderness ratio Stressb_all = 20.2 - 0.126*k_31//ksi The maximum allowable stress in case of Buckling,AISC p_allow = A*Stressf_all //kips The allowable concentric load //b) Overall buckling investmen L_2 = 60 //in k_3 = L_2/r //slenderness ratio Stressb_all_2 = 20.2 - 0.126*k_3//ksi The maximum allowable stress in case of Buckling,AISC p_allow_2 = A*Stressb_all_2 //kips The allowable concentric load printf("\n The maximum allowable stress in case of web width %0.2f ksi",Stressw_all) printf("\n The maximum allowable stress in case of flange %0.2f ksi",Stressf_all) printf("\n a) The maximum allowable load in case of Buckling %0.2f kips",p_allow) printf("\n b) The maximum allowable load in case of Buckling %0.2f kips",p_allow_2) // small variation due to rounding off errors
c0b424bcc8f712509d549b07c58d68c1ed665f21
449d555969bfd7befe906877abab098c6e63a0e8
/1904/CH5/EX5.5/5_5.sce
af5249d8640981f83d3e68ab3738e65783af08c1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,653
sce
5_5.sce
//To find the percent voltage drop at the ends of the most remote laterals //Page 268 clc; clear; Vb=7200; //Base Voltage in V pf=0.9; //Power Factor Sm=10360; //Load on Main Feeder in kVA Vll=12.47; //Line to Line voltage in kV Imain=Sm/(sqrt(3)*Vll); //Current in Main Feeder //Note Suffix l means lateral and m means main Vph=7.2; //Phase Voltage in kV Sl=2*518; //Load on Lateral Feeder in kVA Ilateral=Sl/Vph; //Current in Laterals //Length of the Feeder //Length Constant Cm=5280; //Main Cl=1000; //Lateral Ll=5760/Cl; //Lateral Length Lm=3300/Cm; //Main Length //Constants for the particular cables from the tables rl=0.331; xLl=0.0300; rm=0.342; xam=0.458; xdm=0.1802; xLm=xam+xdm; //Voltage Drops for Normal Condition VDmainn=(Imain/2)*((rm*pf)+(xLm*sind(acosd(pf))))*Lm/2; VDlateraln=(Ilateral/2)*((rl*pf)+(xLl*sind(acosd(pf))))*Ll/2; perVDmainn=VDmainn*100/Vb; perVDlateraln=VDlateraln*100/Vb; TVDn=perVDmainn+perVDlateraln; //Voltage Drops for Worst Conditions VDmainw=(Imain)*((rm*pf)+(xLm*sind(acosd(pf))))*Lm/2; VDlateralw=(Ilateral)*((rl*pf)+(xLl*sind(acosd(pf))))*Ll; perVDmainw=VDmainw*100/Vb; perVDlateralw=VDlateralw*100/Vb; TVDw=perVDmainw+perVDlateralw; printf('\na)From Table A5, 300-kcmilACSR conductors, with 500A Ampacity is used for main\nand AWG #2 XLPE Al URD cable with 168A Ampacity\n') printf('b) The Total Voltage Drop in Percent for Normal Operation is %g percent\n',TVDn) printf('c) The Total Voltage Drop in Percent for Worst Condition is %g percent\n',TVDw) printf('d) The Voltage drop is met for Normal operation and NOT for emergency operation\n')
fa9e3f91fc7cdd376fb17923406ba7473b29a94c
717ddeb7e700373742c617a95e25a2376565112c
/1301/CH21/EX21.8/ex21_8.sce
1349fef1757e839441769b26e5f3aa16cc3e7ee5
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
136
sce
ex21_8.sce
clc; E=2.18*10^-18; //energy in Joule k=1.38*10^-23; //constant in J/K disp(E/h,"Frequency in Hz = "); //displaying result
db46f76015cdce8cc8cd75e92704bbfb5cccae7e
449d555969bfd7befe906877abab098c6e63a0e8
/3793/CH8/EX8.4/exp_8_4.sce
d37fbfc7f160f94203071735c89a72860db1d87b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
313
sce
exp_8_4.sce
clear; clc; g1=200; g2=300; f=50; fr=.5; dl=150; lg1=g1/(g1+g2)*dl; lg2=g2/(g1+g2)*dl; Rg1=-fr/lg1; Rg2=-fr/lg2; Rpu1=(fr*g1)/(f*lg1); Rpu2=(fr*g2)/(f*lg1); mprintf("Drop for G1 and G2 is Rg1=%.4f Hz/MW and Rg2=%.4f Hz/MW\n",Rg1,Rg2); mprintf("Drop in pu is Rg1=%.4f pu ad Rg2=%.4f pu",Rpu1,Rpu2);
58ee77e4f141e5947bd4616f53699b0597f3b5cb
bb44d6eb6adf8f21077f2a49f2eb44d2424b2a5b
/ODE.sci
2c177160166e482ab9e6b2a57665776327fb9caf
[]
no_license
prasadovhal/Scilab-Codes
c8ccc49feba4243d092d8a1eba7a708eb95dc89e
3af5566d62b1f1b6cf080ec20391c39b9d61897d
refs/heads/master
2020-03-29T16:50:45.738023
2018-09-24T16:05:50
2018-09-24T16:05:50
150,130,310
1
0
null
null
null
null
UTF-8
Scilab
false
false
192
sci
ODE.sci
function [f]=func(t,x) f(1) = x(2) f(2) = ((5 * x(2) - x(1))/2) endfunction function [sol]=ODE() y0 = [6,-1]; x0 = 3; x = 4:1:10 sol = ode(y0,x0,x,func) endfunction
8ae8efdd0d895f21d0b7e2bec8f3434ffd6431fe
449d555969bfd7befe906877abab098c6e63a0e8
/260/CH15/EX15.2/15_2.sce
88e655b831c96310bc7218dfb703138e8a59413a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,060
sce
15_2.sce
//Eg-15.2 //pg-608 clear clc // Using D in the place of greek alphabet delta // Taking square grid => Dx = Dy = 0.25 // Applying central difference approximation to the second derivatives, we obtain // [T(i+1,j) - 2*T(i,j) + T(i-1,j)]/(Dx)^2 + [T(i,j+1) - 2*T(i,j) + T(i,j-1)]/(Dy)^2 = 0. i = 1,2,3; j = 1,2,3.....this can be simplified as // T(i+1,j) + T(i-1,j) + T(i,j+1) + T(i,j-1) - 4*T(i,j) = 0 //Applying the above equation to the 9 points analytically leaves us with 9 equations and 9 variables T11 to T33. This can be written in the matrix equation form Ax = B. A = [4 -1 0 -1 0 0 0 0 0;-1 4 -1 0 -1 0 0 0 0;0 -1 4 0 0 -1 0 0 0;-1 0 0 4 -1 0 -1 0 0;0 -1 0 -1 4 -1 0 -1 0;0 0 -1 0 -1 4 0 0 -1;0 0 0 -1 0 0 4 -1 0;0 0 0 0 -1 0 -1 4 -1;0 0 0 0 0 -1 0 -1 4]; B = [65;25;125;40;0;100;90;50;150]; printf('Solving the Equation Ax = B will give the values of Temperatures, where A = \n') disp(A) printf('\nand B = ') disp(B) printf('\nTherefore the matrix representing T11 to T33 is \n') x = inv(A)*B; disp(x)
b3555530544b66a77b5d276bbed87daccf10518b
449d555969bfd7befe906877abab098c6e63a0e8
/3834/CH4/EX4.4.1/Ex4_4_1.sce
4c637c44dea3d19ae27fc9a326883c6b216ffd07
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
492
sce
Ex4_4_1.sce
//Fiber-optics communication technology, by Djafer K. Mynbaev and Lowell L. Scheiner //Example 4.4.1 //windows 7 //Scilab version-6.0.0 clc; clear; //given d=62.5E-6;//core diameter in SI units D=125E-6;//cladding diameter in SI units NA=0.275;//numerical aperture lambda=1300E-9;//operating wavelength lambda in m x=3.14*d*NA; V=x/lambda; PcladbyPtotal=2*sqrt(2)/(3*V)//Power carried by fiber cladding mprintf("\nPower carried by fiber cladding = %.3f",PcladbyPtotal);
9a11e1798f940e2af304b769168e6bead62874d4
449d555969bfd7befe906877abab098c6e63a0e8
/3020/CH18/EX18.20/ex18_20.sce
2b868511a0e70e94df6a2a12a903b32334d64841
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
286
sce
ex18_20.sce
clc; clear all; I=200;//current in Amp H=1.5;//applied megnetic field in Wb/m^2 n=8.4e28;//no of electrons per unit volume in electron/m^3 d=1e-3;//thickness of the strip in m e=1.6e-19;//charge of electron Vy=I*H/(n*e*d);//hall potential disp('Volt',Vy,'hall potential is:')
cf133d641476a04621ae03c298b96275fa58aafc
449d555969bfd7befe906877abab098c6e63a0e8
/1514/CH16/EX16.9/16_9.sce
e778f2a89d6ad9fe13d22459b1237c3e67ccd6b9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
913
sce
16_9.sce
//chapter 16 //example 16.9 //page 4 clear all; clc ; //given Ilmax=100;//maximum op current Vs=20;//supply voltage //maximum op voltage 10-15V Vomin=10;Vomax=15; Vz1=Vomin/2; Vz2=Vomax/2; printf("\nSuitable device is 1N753,from datasheet") Vz=6.2;//nominal voltage Izr=20; Iz=Izr; Voavg=12.5; R1=1000*(Voavg-Vz)/Iz; printf("\nR1=%d ohm,standard value 330 kohm",R1);R1=330; //I3>Ibmax for opAmp,let I3min=1; //Vo=min,wiper at top of R4 R3R4=Vz/I3min; VR3=Vz; R2=(Vomin-VR3)/I3min; printf("\nR2=%.1f kohm,standard value 3.3 kohm",R2);R2=3.3; //Vo=max,wiper at bottom of R4 I3max=Vomax/(R2+R3R4); R3=Vz/I3max; R4=(R3R4)-R3; printf("\nR3=%.1f kohm",R3); printf("\nR4=%.1f kohm,standard value 3 kohm",R4); //Q1 specification P1=(Vs-Vomin)*(Ilmax+Iz+I3min); P1=P1/1000; printf("\nP1=%.2f W",P1) Vcemax=Vs; ICmax=Ilmax+Iz+I3min; printf("\nVcemax=%d V,ICmax=%d mA",Vcemax,ICmax)
a8d24f6f713228b4ec933420e7e62a0b887875b1
449d555969bfd7befe906877abab098c6e63a0e8
/275/CH6/EX6.6.26/Ch6_6_26.sce
90e4883651dd4254047417bbad6673974bc41829
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
404
sce
Ch6_6_26.sce
clc disp("Example 6.26") printf("\n") disp("calculate the output voltage for a given input voltages") printf("given") disp("input voltages=0.2,0.5sin314t,-0.4") Rf=200*10^3 R1=20*10^3 Af=(-Rf)/R1// calculate open loop gain t=%pi/(2*314)//intialise t value Vi=[0.2,0.5*(sin(314*t)),-0.4] Vo=Af*Vi//calculate output voltage printf("Output voltages are=\n%f volt,\n%f volt,\n%f volt",Vo)
60a13d80ae2042f91b35cc1ae9e7965ea00b9457
449d555969bfd7befe906877abab098c6e63a0e8
/2159/CH4/EX4.8/48.sce
f091dfb4b1c1d563c4b1cb62b2e2cdc8f43055ed
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
248
sce
48.sce
// problem 4.8 l1=10 b1=5 l2=5 b2=2.5 a1=l1*b1 a2=l2*b2 d=0.2 a=3.142*d*d/4 H1=4 g=9.81 q=25 Cd=0.62 h1=q/a1 h2=q/a2 H2=H1-h1-h2 T=(2*a1*a2*((H1)^0.5-(H2)^0.5))/(a*Cd*(a1+a2)*((2*g)^0.5)) disp(T,"time taken to flow 25 m3 in sec")
193806030a89d20d57afc27cfd4e4c0e95fab0cb
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set7/s_Electronics_Devices_And_Circuits_G._S._N._Raju_2534.zip/Electronics_Devices_And_Circuits_G._S._N._Raju_2534/CH2/EX2.9/Ex2_9.sce
f9a8484b051e2a6048ea9f5b3b7e9908b4196851
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
297
sce
Ex2_9.sce
errcatch(-1,"stop");mode(2);//Ex2_9 C1 = 0.2*10^-12 C2 = 0.6*10^-12 C3 = 1.0*10^-12 disp("C1 = "+string(C1)+"F")//capacitance disp("C2 = "+string(C2)+"F")//capacitance disp("C3 = "+string(C3)+"F")//capacitance disp("CT = C1+C2+C3 = "+string(C1+C2+C3)+"F")//parallel capacitance exit();
8bed2fac616215f904f44c0e766962b85212aec6
7b040f1a7bbc570e36aab9b2ccf77a9e59d3e5c2
/Scilab/virtual/Self_tuning_controller/ConventionalTuning_Vikas/PIDControllersetpointchange/clientwrite.sce
efbedba213c444c22ae5cf945f4d79b17d828151
[]
no_license
advait23/sbhs-manual
e2c380051117e3a36398bb5ad046781f7b379cb9
d65043acd98334c44a0f0dbf480473c4c4451834
refs/heads/master
2021-01-16T19:50:40.218314
2012-11-16T04:11:12
2012-11-16T04:11:12
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
30,576
sce
clientwrite.sce
0.10000E+00 0.10000E+01 0.00000E+00 0.25100E+03 0.10000E+01 0.10000E+01 0.00000E+00 0.10000E+03 0.20000E+01 0.20000E+01 0.39000E+02 0.10000E+03 0.30000E+01 0.30000E+01 0.31309E+02 0.10000E+03 0.40000E+01 0.40000E+01 0.20981E+02 0.10000E+03 0.50000E+01 0.50000E+01 0.29331E+02 0.10000E+03 0.60000E+01 0.60000E+01 0.19223E+02 0.10000E+03 0.70000E+01 0.70000E+01 0.27793E+02 0.10000E+03 0.80000E+01 0.80000E+01 0.39000E+02 0.10000E+03 0.90000E+01 0.90000E+01 0.10425E+00 0.10000E+03 0.10000E+02 0.10000E+02 0.35484E+02 0.10000E+03 0.11000E+02 0.11000E+02 0.28892E+02 0.10000E+03 0.12000E+02 0.12000E+02 0.19662E+02 0.10000E+03 0.13000E+02 0.13000E+02 0.18344E+02 0.10000E+03 0.14000E+02 0.14000E+02 0.62573E+01 0.10000E+03 0.15000E+02 0.15000E+02 0.12630E+02 0.10000E+03 0.16000E+02 0.16000E+02 0.21860E+02 0.10000E+03 0.17000E+02 0.17000E+02 0.12630E+02 0.10000E+03 0.18000E+02 0.18000E+02 0.11312E+02 0.10000E+03 0.19000E+02 0.19000E+02 0.99930E+01 0.10000E+03 0.20000E+02 0.20000E+02 0.86745E+01 0.10000E+03 0.21000E+02 0.21000E+02 0.73560E+01 0.10000E+03 0.22000E+02 0.22000E+02 0.16805E+02 0.10000E+03 0.23000E+02 0.23000E+02 0.00000E+00 0.10000E+03 0.24000E+02 0.24000E+02 0.17360E+02 0.10000E+03 0.25000E+02 0.25000E+02 0.83505E+01 0.10000E+03 0.26000E+02 0.26000E+02 0.72518E+01 0.10000E+03 0.27000E+02 0.27000E+02 0.00000E+00 0.10000E+03 0.28000E+02 0.28000E+02 0.65925E+01 0.10000E+03 0.29000E+02 0.29000E+02 0.52740E+01 0.10000E+03 0.30000E+02 0.30000E+02 0.14723E+02 0.10000E+03 0.31000E+02 0.31000E+02 0.00000E+00 0.10000E+03 0.32000E+02 0.32000E+02 0.65925E+01 0.10000E+03 0.33000E+02 0.33000E+02 0.52740E+01 0.10000E+03 0.34000E+02 0.34000E+02 0.39555E+01 0.10000E+03 0.35000E+02 0.35000E+02 0.26370E+01 0.10000E+03 0.36000E+02 0.36000E+02 0.13185E+01 0.10000E+03 0.37000E+02 0.37000E+02 0.10768E+02 0.10000E+03 0.38000E+02 0.38000E+02 0.00000E+00 0.10000E+03 0.39000E+02 0.39000E+02 0.17360E+02 0.10000E+03 0.40000E+02 0.40000E+02 0.83505E+01 0.10000E+03 0.41000E+02 0.41000E+02 0.72518E+01 0.10000E+03 0.42000E+02 0.42000E+02 0.16921E+02 0.10000E+03 0.43000E+02 0.43000E+02 0.81308E+01 0.10000E+03 0.44000E+02 0.44000E+02 0.72518E+01 0.10000E+03 0.45000E+02 0.45000E+02 0.63728E+01 0.10000E+03 0.46000E+02 0.46000E+02 0.54938E+01 0.10000E+03 0.47000E+02 0.47000E+02 0.46148E+01 0.10000E+03 0.48000E+02 0.48000E+02 0.37358E+01 0.10000E+03 0.49000E+02 0.49000E+02 0.13625E+02 0.10000E+03 0.50000E+02 0.50000E+02 0.50543E+01 0.10000E+03 0.51000E+02 0.51000E+02 0.00000E+00 0.10000E+03 0.52000E+02 0.52000E+02 0.17800E+02 0.10000E+03 0.53000E+02 0.53000E+02 0.92295E+01 0.10000E+03 0.54000E+02 0.54000E+02 0.85703E+01 0.10000E+03 0.55000E+02 0.55000E+02 0.79110E+01 0.10000E+03 0.56000E+02 0.56000E+02 0.72518E+01 0.10000E+03 0.57000E+02 0.57000E+02 0.65925E+01 0.10000E+03 0.58000E+02 0.58000E+02 0.16701E+02 0.10000E+03 0.59000E+02 0.59000E+02 0.83505E+01 0.10000E+03 0.60000E+02 0.60000E+02 0.29447E+02 0.10000E+03 0.61000E+02 0.61000E+02 0.13625E+02 0.10000E+03 0.62000E+02 0.62000E+02 0.13625E+02 0.10000E+03 0.63000E+02 0.63000E+02 0.13625E+02 0.10000E+03 0.64000E+02 0.64000E+02 0.13625E+02 0.10000E+03 0.65000E+02 0.65000E+02 0.24392E+02 0.10000E+03 0.66000E+02 0.66000E+02 0.59332E+01 0.10000E+03 0.67000E+02 0.67000E+02 0.24612E+02 0.10000E+03 0.68000E+02 0.68000E+02 0.16921E+02 0.10000E+03 0.69000E+02 0.69000E+02 0.17141E+02 0.10000E+03 0.70000E+02 0.70000E+02 0.17360E+02 0.10000E+03 0.71000E+02 0.71000E+02 0.17580E+02 0.10000E+03 0.72000E+02 0.72000E+02 0.17800E+02 0.10000E+03 0.73000E+02 0.73000E+02 0.72518E+01 0.10000E+03 0.74000E+02 0.74000E+02 0.36698E+02 0.10000E+03 0.75000E+02 0.75000E+02 0.10548E+02 0.10000E+03 0.76000E+02 0.76000E+02 0.18679E+02 0.10000E+03 0.77000E+02 0.77000E+02 0.18899E+02 0.10000E+03 0.78000E+02 0.78000E+02 0.19118E+02 0.10000E+03 0.79000E+02 0.79000E+02 0.19338E+02 0.10000E+03 0.80000E+02 0.80000E+02 0.87900E+01 0.10000E+03 0.81000E+02 0.81000E+02 0.16701E+02 0.10000E+03 0.82000E+02 0.82000E+02 0.16701E+02 0.10000E+03 0.83000E+02 0.83000E+02 0.16701E+02 0.10000E+03 0.84000E+02 0.84000E+02 0.16701E+02 0.10000E+03 0.85000E+02 0.85000E+02 0.00000E+00 0.10000E+03 0.86000E+02 0.86000E+02 0.15383E+02 0.10000E+03 0.87000E+02 0.87000E+02 0.14943E+02 0.10000E+03 0.88000E+02 0.88000E+02 0.14504E+02 0.10000E+03 0.89000E+02 0.89000E+02 0.32963E+01 0.10000E+03 0.90000E+02 0.90000E+02 0.21316E+02 0.10000E+03 0.91000E+02 0.91000E+02 0.12965E+02 0.10000E+03 0.92000E+02 0.92000E+02 0.12526E+02 0.10000E+03 0.93000E+02 0.93000E+02 0.13185E+01 0.10000E+03 0.94000E+02 0.94000E+02 0.85703E+01 0.10000E+03 0.95000E+02 0.95000E+02 0.79110E+01 0.10000E+03 0.96000E+02 0.96000E+02 0.72518E+01 0.10000E+03 0.97000E+02 0.97000E+02 0.00000E+00 0.10000E+03 0.98000E+02 0.98000E+02 0.17800E+02 0.10000E+03 0.99000E+02 0.99000E+02 0.00000E+00 0.10000E+03 0.10000E+03 0.10000E+03 0.70320E+01 0.10000E+03 0.10100E+03 0.10100E+03 0.61530E+01 0.10000E+03 0.10200E+03 0.10200E+03 0.52740E+01 0.10000E+03 0.10300E+03 0.10300E+03 0.43950E+01 0.10000E+03 0.10400E+03 0.10400E+03 0.35160E+01 0.10000E+03 0.10500E+03 0.10500E+03 0.26370E+01 0.10000E+03 0.10600E+03 0.10600E+03 0.17580E+01 0.10000E+03 0.10700E+03 0.10700E+03 0.87900E+00 0.10000E+03 0.10800E+03 0.10800E+03 0.20250E-12 0.10000E+03 0.10900E+03 0.10900E+03 0.98888E+01 0.10000E+03 0.11000E+03 0.11000E+03 0.00000E+00 0.10000E+03 0.11100E+03 0.11100E+03 0.17800E+02 0.10000E+03 0.11200E+03 0.11200E+03 0.92295E+01 0.10000E+03 0.11300E+03 0.11300E+03 0.85703E+01 0.10000E+03 0.11400E+03 0.11400E+03 0.79110E+01 0.10000E+03 0.11500E+03 0.11500E+03 0.72518E+01 0.10000E+03 0.11600E+03 0.11600E+03 0.65925E+01 0.10000E+03 0.11700E+03 0.11700E+03 0.59333E+01 0.10000E+03 0.11800E+03 0.11800E+03 0.16042E+02 0.10000E+03 0.11900E+03 0.11900E+03 0.76913E+01 0.10000E+03 0.12000E+03 0.12000E+03 0.72518E+01 0.10000E+03 0.12100E+03 0.12100E+03 0.68123E+01 0.10000E+03 0.12200E+03 0.12200E+03 0.27908E+02 0.10000E+03 0.12300E+03 0.12300E+03 0.12086E+02 0.10000E+03 0.12400E+03 0.12400E+03 0.22854E+02 0.10000E+03 0.12500E+03 0.12500E+03 0.15163E+02 0.10000E+03 0.12600E+03 0.12600E+03 0.26150E+02 0.10000E+03 0.12700E+03 0.12700E+03 0.79110E+01 0.10000E+03 0.12800E+03 0.12800E+03 0.26809E+02 0.10000E+03 0.12900E+03 0.12900E+03 0.19338E+02 0.10000E+03 0.13000E+03 0.13000E+03 0.19778E+02 0.10000E+03 0.13100E+03 0.13100E+03 0.94493E+01 0.10000E+03 0.13200E+03 0.13200E+03 0.17580E+02 0.10000E+03 0.13300E+03 0.13300E+03 0.28567E+02 0.10000E+03 0.13400E+03 0.13400E+03 0.21096E+02 0.10000E+03 0.13500E+03 0.13500E+03 0.10768E+02 0.10000E+03 0.13600E+03 0.13600E+03 0.18899E+02 0.10000E+03 0.13700E+03 0.13700E+03 0.29886E+02 0.10000E+03 0.13800E+03 0.13800E+03 0.11647E+02 0.10000E+03 0.13900E+03 0.13900E+03 0.19778E+02 0.10000E+03 0.14000E+03 0.14000E+03 0.19997E+02 0.10000E+03 0.14100E+03 0.14100E+03 0.30985E+02 0.10000E+03 0.14200E+03 0.14200E+03 0.23513E+02 0.10000E+03 0.14300E+03 0.14300E+03 0.23953E+02 0.10000E+03 0.14400E+03 0.14400E+03 0.13625E+02 0.10000E+03 0.14500E+03 0.14500E+03 0.21755E+02 0.10000E+03 0.14600E+03 0.14600E+03 0.11207E+02 0.10000E+03 0.14700E+03 0.14700E+03 0.19118E+02 0.10000E+03 0.14800E+03 0.14800E+03 0.00000E+00 0.10000E+03 0.14900E+03 0.14900E+03 0.36918E+02 0.10000E+03 0.15000E+03 0.15000E+03 0.00000E+00 0.10000E+03 0.15100E+03 0.15100E+03 0.15383E+02 0.10000E+03 0.15200E+03 0.15200E+03 0.41753E+01 0.10000E+03 0.15300E+03 0.15300E+03 0.11427E+02 0.10000E+03 0.15400E+03 0.15400E+03 0.10768E+02 0.10000E+03 0.15500E+03 0.15500E+03 0.00000E+00 0.10000E+03 0.15600E+03 0.15600E+03 0.70320E+01 0.10000E+03 0.15700E+03 0.15700E+03 0.61530E+01 0.10000E+03 0.15800E+03 0.15800E+03 0.52740E+01 0.10000E+03 0.15900E+03 0.15900E+03 0.43950E+01 0.10000E+03 0.16000E+03 0.16000E+03 0.00000E+00 0.10000E+03 0.16100E+03 0.16100E+03 0.68123E+01 0.10000E+03 0.16200E+03 0.16200E+03 0.00000E+00 0.10000E+03 0.16300E+03 0.16300E+03 0.17360E+02 0.10000E+03 0.16400E+03 0.16400E+03 0.83505E+01 0.10000E+03 0.16500E+03 0.16500E+03 0.72518E+01 0.10000E+03 0.16600E+03 0.16600E+03 0.61530E+01 0.10000E+03 0.16700E+03 0.16700E+03 0.00000E+00 0.10000E+03 0.16800E+03 0.16800E+03 0.65925E+01 0.10000E+03 0.16900E+03 0.16900E+03 0.52740E+01 0.10000E+03 0.17000E+03 0.17000E+03 0.39555E+01 0.10000E+03 0.17100E+03 0.17100E+03 0.13405E+02 0.10000E+03 0.17200E+03 0.17200E+03 0.43950E+01 0.10000E+03 0.17300E+03 0.17300E+03 0.32963E+01 0.10000E+03 0.17400E+03 0.17400E+03 0.21975E+01 0.10000E+03 0.17500E+03 0.17500E+03 0.11867E+02 0.10000E+03 0.17600E+03 0.17600E+03 0.00000E+00 0.10000E+03 0.17700E+03 0.17700E+03 0.17580E+02 0.10000E+03 0.17800E+03 0.17800E+03 0.87900E+01 0.10000E+03 0.17900E+03 0.17900E+03 0.79110E+01 0.10000E+03 0.18000E+03 0.18000E+03 0.70320E+01 0.10000E+03 0.18100E+03 0.18100E+03 0.61530E+01 0.10000E+03 0.18200E+03 0.18200E+03 0.52740E+01 0.10000E+03 0.18300E+03 0.18300E+03 0.43950E+01 0.10000E+03 0.18400E+03 0.18400E+03 0.14284E+02 0.10000E+03 0.18500E+03 0.18500E+03 0.00000E+00 0.10000E+03 0.18600E+03 0.18600E+03 0.17800E+02 0.10000E+03 0.18700E+03 0.18700E+03 0.92295E+01 0.10000E+03 0.18800E+03 0.18800E+03 0.19338E+02 0.10000E+03 0.18900E+03 0.18900E+03 0.21975E+00 0.10000E+03 0.19000E+03 0.19000E+03 0.18239E+02 0.10000E+03 0.19100E+03 0.19100E+03 0.31424E+02 0.10000E+03 0.19200E+03 0.19200E+03 0.15602E+02 0.10000E+03 0.19300E+03 0.19300E+03 0.15602E+02 0.10000E+03 0.19400E+03 0.19400E+03 0.15602E+02 0.10000E+03 0.19500E+03 0.19500E+03 0.15602E+02 0.10000E+03 0.19600E+03 0.19600E+03 0.15602E+02 0.10000E+03 0.19700E+03 0.19700E+03 0.15602E+02 0.10000E+03 0.19800E+03 0.19800E+03 0.15602E+02 0.10000E+03 0.19900E+03 0.19900E+03 0.15602E+02 0.10000E+03 0.20000E+03 0.20000E+03 0.15602E+02 0.10000E+03 0.20100E+03 0.20100E+03 0.15602E+02 0.10000E+03 0.20200E+03 0.20200E+03 0.15602E+02 0.10000E+03 0.20300E+03 0.20300E+03 0.15602E+02 0.10000E+03 0.20400E+03 0.20400E+03 0.15602E+02 0.10000E+03 0.20500E+03 0.20500E+03 0.15602E+02 0.10000E+03 0.20600E+03 0.20600E+03 0.00000E+00 0.10000E+03 0.20700E+03 0.20700E+03 0.36918E+02 0.10000E+03 0.20800E+03 0.20800E+03 0.31864E+02 0.10000E+03 0.20900E+03 0.20900E+03 0.24173E+02 0.10000E+03 0.21000E+03 0.21000E+03 0.13625E+02 0.10000E+03 0.21100E+03 0.21100E+03 0.21536E+02 0.10000E+03 0.21200E+03 0.21200E+03 0.21536E+02 0.10000E+03 0.21300E+03 0.21300E+03 0.71054E-14 0.10000E+03 0.21400E+03 0.21400E+03 0.36918E+02 0.10000E+03 0.21500E+03 0.21500E+03 0.00000E+00 0.10000E+03 0.21600E+03 0.21600E+03 0.15383E+02 0.10000E+03 0.21700E+03 0.21700E+03 0.41753E+01 0.10000E+03 0.21800E+03 0.21800E+03 0.11427E+02 0.10000E+03 0.21900E+03 0.21900E+03 0.10768E+02 0.10000E+03 0.22000E+03 0.22000E+03 0.00000E+00 0.10000E+03 0.22100E+03 0.22100E+03 0.70320E+01 0.10000E+03 0.22200E+03 0.22200E+03 0.61530E+01 0.10000E+03 0.22300E+03 0.22300E+03 0.52740E+01 0.10000E+03 0.22400E+03 0.22400E+03 0.43950E+01 0.10000E+03 0.22500E+03 0.22500E+03 0.14284E+02 0.10000E+03 0.22600E+03 0.22600E+03 0.00000E+00 0.10000E+03 0.22700E+03 0.22700E+03 0.70320E+01 0.10000E+03 0.22800E+03 0.22800E+03 0.61530E+01 0.10000E+03 0.22900E+03 0.22900E+03 0.52740E+01 0.10000E+03 0.23000E+03 0.23000E+03 0.43950E+01 0.10000E+03 0.23100E+03 0.23100E+03 0.00000E+00 0.10000E+03 0.23200E+03 0.23200E+03 0.17580E+02 0.10000E+03 0.23300E+03 0.23300E+03 0.87900E+01 0.10000E+03 0.23400E+03 0.23400E+03 0.79110E+01 0.10000E+03 0.23500E+03 0.23500E+03 0.70320E+01 0.10000E+03 0.23600E+03 0.23600E+03 0.61530E+01 0.10000E+03 0.23700E+03 0.23700E+03 0.52740E+01 0.10000E+03 0.23800E+03 0.23800E+03 0.43950E+01 0.10000E+03 0.23900E+03 0.23900E+03 0.14284E+02 0.10000E+03 0.24000E+03 0.24000E+03 0.57135E+01 0.10000E+03 0.24100E+03 0.24100E+03 0.50543E+01 0.10000E+03 0.24200E+03 0.24200E+03 0.15163E+02 0.10000E+03 0.24300E+03 0.24300E+03 0.68123E+01 0.10000E+03 0.24400E+03 0.24400E+03 0.63728E+01 0.10000E+03 0.24500E+03 0.24500E+03 0.00000E+00 0.10000E+03 0.24600E+03 0.24600E+03 0.18019E+02 0.10000E+03 0.24700E+03 0.24700E+03 0.96690E+01 0.10000E+03 0.24800E+03 0.24800E+03 0.92295E+01 0.10000E+03 0.24900E+03 0.24900E+03 0.87900E+01 0.10000E+03 0.25000E+03 0.25000E+03 0.83505E+01 0.10000E+03 0.25100E+03 0.25100E+03 0.79110E+01 0.10000E+03 0.25200E+03 0.25200E+03 0.29007E+02 0.10000E+03 0.25300E+03 0.25300E+03 0.13185E+02 0.10000E+03 0.25400E+03 0.25400E+03 0.13185E+02 0.10000E+03 0.25500E+03 0.25500E+03 0.00000E+00 0.10000E+03 0.25600E+03 0.25600E+03 0.36918E+02 0.10000E+03 0.25700E+03 0.25700E+03 0.21096E+02 0.10000E+03 0.25800E+03 0.25800E+03 0.31864E+02 0.10000E+03 0.25900E+03 0.25900E+03 0.24173E+02 0.10000E+03 0.26000E+03 0.26000E+03 0.24392E+02 0.10000E+03 0.26100E+03 0.26100E+03 0.35380E+02 0.10000E+03 0.26200E+03 0.26200E+03 0.17141E+02 0.10000E+03 0.26300E+03 0.26300E+03 0.25271E+02 0.10000E+03 0.26400E+03 0.26400E+03 0.25491E+02 0.10000E+03 0.26500E+03 0.26500E+03 0.14943E+02 0.10000E+03 0.26600E+03 0.26600E+03 0.22854E+02 0.10000E+03 0.26700E+03 0.26700E+03 0.22854E+02 0.10000E+03 0.26800E+03 0.26800E+03 0.22854E+02 0.10000E+03 0.26900E+03 0.26900E+03 0.22854E+02 0.10000E+03 0.27000E+03 0.27000E+03 0.22854E+02 0.10000E+03 0.27100E+03 0.27100E+03 0.22854E+02 0.10000E+03 0.27200E+03 0.27200E+03 0.22854E+02 0.10000E+03 0.27300E+03 0.27300E+03 0.00000E+00 0.10000E+03 0.27400E+03 0.27400E+03 0.23074E+02 0.10000E+03 0.27500E+03 0.27500E+03 0.22414E+02 0.10000E+03 0.27600E+03 0.27600E+03 0.32523E+02 0.10000E+03 0.27700E+03 0.27700E+03 0.13405E+02 0.10000E+03 0.27800E+03 0.27800E+03 0.20656E+02 0.10000E+03 0.27900E+03 0.27900E+03 0.92295E+01 0.10000E+03 0.28000E+03 0.28000E+03 0.16261E+02 0.10000E+03 0.28100E+03 0.28100E+03 0.15382E+02 0.10000E+03 0.28200E+03 0.28200E+03 0.37357E+01 0.10000E+03 0.28300E+03 0.28300E+03 0.10548E+02 0.10000E+03 0.28400E+03 0.28400E+03 0.94492E+01 0.10000E+03 0.28500E+03 0.28500E+03 0.00000E+00 0.10000E+03 0.28600E+03 0.28600E+03 0.17360E+02 0.10000E+03 0.28700E+03 0.28700E+03 0.00000E+00 0.10000E+03 0.28800E+03 0.28800E+03 0.14284E+02 0.10000E+03 0.28900E+03 0.28900E+03 0.12746E+02 0.10000E+03 0.29000E+03 0.29000E+03 0.11207E+02 0.10000E+03 0.29100E+03 0.29100E+03 0.96690E+01 0.10000E+03 0.29200E+03 0.29200E+03 0.81308E+01 0.10000E+03 0.29300E+03 0.29300E+03 0.17360E+02 0.10000E+03 0.29400E+03 0.29400E+03 0.00000E+00 0.10000E+03 0.29500E+03 0.29500E+03 0.63728E+01 0.10000E+03 0.29600E+03 0.29600E+03 0.48345E+01 0.10000E+03 0.29700E+03 0.29700E+03 0.00000E+00 0.10000E+03 0.29800E+03 0.29800E+03 0.35380E+02 0.10000E+03 0.29900E+03 0.29900E+03 0.00000E+00 0.10000E+03 0.30000E+03 0.30000E+03 0.35380E+02 0.10000E+03 0.30100E+03 0.30100E+03 0.00000E+00 0.10000E+03 0.30200E+03 0.30200E+03 0.13844E+02 0.10000E+03 0.30300E+03 0.30300E+03 0.33402E+02 0.10000E+03 0.30400E+03 0.30400E+03 0.16042E+02 0.10000E+03 0.30500E+03 0.30500E+03 0.14503E+02 0.10000E+03 0.30600E+03 0.30600E+03 0.12965E+02 0.10000E+03 0.30700E+03 0.30700E+03 0.11427E+02 0.10000E+03 0.30800E+03 0.30800E+03 0.98887E+01 0.10000E+03 0.30900E+03 0.30900E+03 0.00000E+00 0.10000E+03 0.31000E+03 0.31000E+03 0.35380E+02 0.10000E+03 0.31100E+03 0.31100E+03 0.00000E+00 0.10000E+03 0.31200E+03 0.31200E+03 0.35380E+02 0.10000E+03 0.31300E+03 0.31300E+03 0.18019E+02 0.10000E+03 0.31400E+03 0.31400E+03 0.16481E+02 0.10000E+03 0.31500E+03 0.31500E+03 0.14943E+02 0.10000E+03 0.31600E+03 0.31600E+03 0.00000E+00 0.10000E+03 0.31700E+03 0.31700E+03 0.35380E+02 0.10000E+03 0.31800E+03 0.31800E+03 0.18019E+02 0.10000E+03 0.31900E+03 0.31900E+03 0.16481E+02 0.10000E+03 0.32000E+03 0.32000E+03 0.00000E+00 0.10000E+03 0.32100E+03 0.32100E+03 0.13844E+02 0.10000E+03 0.32200E+03 0.32200E+03 0.33402E+02 0.10000E+03 0.32300E+03 0.32300E+03 0.00000E+00 0.10000E+03 0.32400E+03 0.32400E+03 0.30765E+01 0.10000E+03 0.32500E+03 0.32500E+03 0.19558E+02 0.10000E+03 0.32600E+03 0.32600E+03 0.96690E+01 0.10000E+03 0.32700E+03 0.32700E+03 0.76912E+01 0.10000E+03 0.32800E+03 0.32800E+03 0.57135E+01 0.10000E+03 0.32900E+03 0.32900E+03 0.37357E+01 0.10000E+03 0.33000E+03 0.33000E+03 0.17580E+01 0.10000E+03 0.33100E+03 0.33100E+03 0.00000E+00 0.10000E+03 0.33200E+03 0.33200E+03 0.00000E+00 0.10000E+03 0.33300E+03 0.33300E+03 0.57135E+01 0.10000E+03 0.33400E+03 0.33400E+03 0.14284E+02 0.10000E+03 0.33500E+03 0.33500E+03 0.43950E+01 0.10000E+03 0.33600E+03 0.33600E+03 0.00000E+00 0.10000E+03 0.33700E+03 0.33700E+03 0.57135E+01 0.10000E+03 0.33800E+03 0.33800E+03 0.14284E+02 0.10000E+03 0.33900E+03 0.33900E+03 0.43950E+01 0.10000E+03 0.34000E+03 0.34000E+03 0.24173E+01 0.10000E+03 0.34100E+03 0.34100E+03 0.21975E+02 0.10000E+03 0.34200E+03 0.34200E+03 0.46148E+01 0.10000E+03 0.34300E+03 0.34300E+03 0.13844E+02 0.10000E+03 0.34400E+03 0.34400E+03 0.00000E+00 0.10000E+03 0.34500E+03 0.34500E+03 0.17141E+02 0.10000E+03 0.34600E+03 0.34600E+03 0.79110E+01 0.10000E+03 0.34700E+03 0.34700E+03 0.65925E+01 0.10000E+03 0.34800E+03 0.34800E+03 0.16042E+02 0.10000E+03 0.34900E+03 0.34900E+03 0.70320E+01 0.10000E+03 0.35000E+03 0.35000E+03 0.59333E+01 0.10000E+03 0.35100E+03 0.35100E+03 0.00000E+00 0.10000E+03 0.35200E+03 0.35200E+03 0.17360E+02 0.10000E+03 0.35300E+03 0.35300E+03 0.83505E+01 0.10000E+03 0.35400E+03 0.35400E+03 0.72518E+01 0.10000E+03 0.35500E+03 0.35500E+03 0.16921E+02 0.10000E+03 0.35600E+03 0.35600E+03 0.81308E+01 0.10000E+03 0.35700E+03 0.35700E+03 0.72518E+01 0.10000E+03 0.35800E+03 0.35800E+03 0.63728E+01 0.10000E+03 0.35900E+03 0.35900E+03 0.54938E+01 0.10000E+03 0.36000E+03 0.36000E+03 0.15383E+02 0.10000E+03 0.36100E+03 0.36100E+03 0.68123E+01 0.10000E+03 0.36200E+03 0.36200E+03 0.61530E+01 0.10000E+03 0.36300E+03 0.36300E+03 0.54938E+01 0.10000E+03 0.36400E+03 0.36400E+03 0.15602E+02 0.10000E+03 0.36500E+03 0.36500E+03 0.00000E+00 0.10000E+03 0.36600E+03 0.36600E+03 0.18019E+02 0.10000E+03 0.36700E+03 0.36700E+03 0.96690E+01 0.10000E+03 0.36800E+03 0.36800E+03 0.92295E+01 0.10000E+03 0.36900E+03 0.36900E+03 0.87900E+01 0.10000E+03 0.37000E+03 0.37000E+03 0.29886E+02 0.10000E+03 0.37100E+03 0.37100E+03 0.14064E+02 0.10000E+03 0.37200E+03 0.37200E+03 0.14064E+02 0.10000E+03 0.37300E+03 0.37300E+03 0.14064E+02 0.10000E+03 0.37400E+03 0.37400E+03 0.14064E+02 0.10000E+03 0.37500E+03 0.37500E+03 0.14064E+02 0.10000E+03 0.37600E+03 0.37600E+03 0.35599E+02 0.10000E+03 0.37700E+03 0.37700E+03 0.20217E+02 0.10000E+03 0.37800E+03 0.37800E+03 0.98887E+01 0.10000E+03 0.37900E+03 0.37900E+03 0.18019E+02 0.10000E+03 0.38000E+03 0.38000E+03 0.18239E+02 0.10000E+03 0.38100E+03 0.38100E+03 0.18459E+02 0.10000E+03 0.38200E+03 0.38200E+03 0.18679E+02 0.10000E+03 0.38300E+03 0.38300E+03 0.18898E+02 0.10000E+03 0.38400E+03 0.38400E+03 0.19118E+02 0.10000E+03 0.38500E+03 0.38500E+03 0.85702E+01 0.10000E+03 0.38600E+03 0.38600E+03 0.16481E+02 0.10000E+03 0.38700E+03 0.38700E+03 0.27249E+02 0.10000E+03 0.38800E+03 0.38800E+03 0.87900E+01 0.10000E+03 0.38900E+03 0.38900E+03 0.16701E+02 0.10000E+03 0.39000E+03 0.39000E+03 0.16701E+02 0.10000E+03 0.39100E+03 0.39100E+03 0.16701E+02 0.10000E+03 0.39200E+03 0.39200E+03 0.27469E+02 0.10000E+03 0.39300E+03 0.39300E+03 0.90097E+01 0.10000E+03 0.39400E+03 0.39400E+03 0.16921E+02 0.10000E+03 0.39500E+03 0.39500E+03 0.00000E+00 0.10000E+03 0.39600E+03 0.39600E+03 0.15383E+02 0.10000E+03 0.39700E+03 0.39700E+03 0.41753E+01 0.10000E+03 0.39800E+03 0.39800E+03 0.11427E+02 0.10000E+03 0.39900E+03 0.39900E+03 0.10768E+02 0.10000E+03 0.40000E+03 0.40000E+03 0.00000E+00 0.10000E+03 0.40100E+03 0.40100E+03 0.70320E+01 0.10000E+03 0.40200E+03 0.40200E+03 0.61530E+01 0.10000E+03 0.40300E+03 0.40300E+03 0.52740E+01 0.10000E+03 0.40400E+03 0.40400E+03 0.43950E+01 0.10000E+03 0.40500E+03 0.40500E+03 0.35160E+01 0.10000E+03 0.40600E+03 0.40600E+03 0.26370E+01 0.10000E+03 0.40700E+03 0.40700E+03 0.17580E+01 0.10000E+03 0.40800E+03 0.40800E+03 0.87900E+00 0.10000E+03 0.40900E+03 0.40900E+03 0.20250E-12 0.10000E+03 0.41000E+03 0.41000E+03 0.00000E+00 0.10000E+03 0.41100E+03 0.41100E+03 0.98888E+01 0.10000E+03 0.41200E+03 0.41200E+03 0.13185E+01 0.10000E+03 0.41300E+03 0.41300E+03 0.00000E+00 0.10000E+03 0.41400E+03 0.41400E+03 0.70320E+01 0.10000E+03 0.41500E+03 0.41500E+03 0.16921E+02 0.10000E+03 0.41600E+03 0.41600E+03 0.83505E+01 0.10000E+03 0.41700E+03 0.41700E+03 0.76913E+01 0.10000E+03 0.41800E+03 0.41800E+03 0.70320E+01 0.10000E+03 0.41900E+03 0.41900E+03 0.17140E+02 0.10000E+03 0.42000E+03 0.42000E+03 0.87900E+01 0.10000E+03 0.42100E+03 0.42100E+03 0.83505E+01 0.10000E+03 0.42200E+03 0.42200E+03 0.29447E+02 0.10000E+03 0.42300E+03 0.42300E+03 0.13625E+02 0.10000E+03 0.42400E+03 0.42400E+03 0.13625E+02 0.10000E+03 0.42500E+03 0.42500E+03 0.13625E+02 0.10000E+03 0.42600E+03 0.42600E+03 0.24392E+02 0.10000E+03 0.42700E+03 0.42700E+03 0.16701E+02 0.10000E+03 0.42800E+03 0.42800E+03 0.16921E+02 0.10000E+03 0.42900E+03 0.42900E+03 0.17141E+02 0.10000E+03 0.43000E+03 0.43000E+03 0.17360E+02 0.10000E+03 0.43100E+03 0.43100E+03 0.17580E+02 0.10000E+03 0.43200E+03 0.43200E+03 0.28567E+02 0.10000E+03 0.43300E+03 0.43300E+03 0.21096E+02 0.10000E+03 0.43400E+03 0.43400E+03 0.10768E+02 0.10000E+03 0.43500E+03 0.43500E+03 0.18899E+02 0.10000E+03 0.43600E+03 0.43600E+03 0.19118E+02 0.10000E+03 0.43700E+03 0.43700E+03 0.85702E+01 0.10000E+03 0.43800E+03 0.43800E+03 0.27249E+02 0.10000E+03 0.43900E+03 0.43900E+03 0.19558E+02 0.10000E+03 0.44000E+03 0.44000E+03 0.90097E+01 0.10000E+03 0.44100E+03 0.44100E+03 0.16921E+02 0.10000E+03 0.44200E+03 0.44200E+03 0.27689E+02 0.10000E+03 0.44300E+03 0.44300E+03 0.92295E+01 0.10000E+03 0.44400E+03 0.44400E+03 0.17141E+02 0.10000E+03 0.44500E+03 0.44500E+03 0.17141E+02 0.10000E+03 0.44600E+03 0.44600E+03 0.17141E+02 0.10000E+03 0.44700E+03 0.44700E+03 0.17141E+02 0.10000E+03 0.44800E+03 0.44800E+03 0.00000E+00 0.10000E+03 0.44900E+03 0.44900E+03 0.15383E+02 0.10000E+03 0.45000E+03 0.45000E+03 0.14943E+02 0.10000E+03 0.45100E+03 0.45100E+03 0.14504E+02 0.10000E+03 0.45200E+03 0.45200E+03 0.32963E+01 0.10000E+03 0.45300E+03 0.45300E+03 0.10548E+02 0.10000E+03 0.45400E+03 0.45400E+03 0.98888E+01 0.10000E+03 0.45500E+03 0.45500E+03 0.00000E+00 0.10000E+03 0.45600E+03 0.45600E+03 0.70320E+01 0.10000E+03 0.45700E+03 0.45700E+03 0.61530E+01 0.10000E+03 0.45800E+03 0.45800E+03 0.52740E+01 0.10000E+03 0.45900E+03 0.45900E+03 0.15163E+02 0.10000E+03 0.46000E+03 0.46000E+03 0.65925E+01 0.10000E+03 0.46100E+03 0.46100E+03 0.00000E+00 0.10000E+03 0.46200E+03 0.46200E+03 0.70320E+01 0.10000E+03 0.46300E+03 0.46300E+03 0.61530E+01 0.10000E+03 0.46400E+03 0.46400E+03 0.52740E+01 0.10000E+03 0.46500E+03 0.46500E+03 0.43950E+01 0.10000E+03 0.46600E+03 0.46600E+03 0.35160E+01 0.10000E+03 0.46700E+03 0.46700E+03 0.26370E+01 0.10000E+03 0.46800E+03 0.46800E+03 0.17580E+01 0.10000E+03 0.46900E+03 0.46900E+03 0.87900E+00 0.10000E+03 0.47000E+03 0.47000E+03 0.10768E+02 0.10000E+03 0.47100E+03 0.47100E+03 0.00000E+00 0.10000E+03 0.47200E+03 0.47200E+03 0.17800E+02 0.10000E+03 0.47300E+03 0.47300E+03 0.92295E+01 0.10000E+03 0.47400E+03 0.47400E+03 0.85703E+01 0.10000E+03 0.47500E+03 0.47500E+03 0.79110E+01 0.10000E+03 0.47600E+03 0.47600E+03 0.18019E+02 0.10000E+03 0.47700E+03 0.47700E+03 0.96690E+01 0.10000E+03 0.47800E+03 0.47800E+03 0.30765E+02 0.10000E+03 0.47900E+03 0.47900E+03 0.00000E+00 0.10000E+03 0.48000E+03 0.48000E+03 0.15383E+02 0.10000E+03 0.48100E+03 0.48100E+03 0.36479E+02 0.10000E+03 0.48200E+03 0.48200E+03 0.20657E+02 0.10000E+03 0.48300E+03 0.48300E+03 0.20657E+02 0.10000E+03 0.48400E+03 0.48400E+03 0.20657E+02 0.10000E+03 0.48500E+03 0.48500E+03 0.20657E+02 0.10000E+03 0.48600E+03 0.48600E+03 0.20657E+02 0.10000E+03 0.48700E+03 0.48700E+03 0.20657E+02 0.10000E+03 0.48800E+03 0.48800E+03 0.20657E+02 0.10000E+03 0.48900E+03 0.48900E+03 0.20657E+02 0.10000E+03 0.49000E+03 0.49000E+03 0.31424E+02 0.10000E+03 0.49100E+03 0.49100E+03 0.12965E+02 0.10000E+03 0.49200E+03 0.49200E+03 0.31644E+02 0.10000E+03 0.49300E+03 0.49300E+03 0.13185E+02 0.10000E+03 0.49400E+03 0.49400E+03 0.31864E+02 0.10000E+03 0.49500E+03 0.49500E+03 0.13405E+02 0.10000E+03 0.49600E+03 0.49600E+03 0.21316E+02 0.10000E+03 0.49700E+03 0.49700E+03 0.00000E+00 0.10000E+03 0.49800E+03 0.49800E+03 0.15383E+02 0.10000E+03 0.49900E+03 0.49900E+03 0.14943E+02 0.10000E+03 0.50000E+03 0.50000E+03 0.37358E+01 0.10000E+03 0.50100E+03 0.50100E+03 0.39000E+02 0.10000E+03 0.50200E+03 0.50200E+03 0.00000E+00 0.10000E+03 0.50300E+03 0.50300E+03 0.00000E+00 0.10000E+03 0.50400E+03 0.50400E+03 0.18020E+02 0.10000E+03 0.50500E+03 0.50500E+03 0.28128E+02 0.10000E+03 0.50600E+03 0.50600E+03 0.38237E+02 0.10000E+03 0.50700E+03 0.50700E+03 0.39000E+02 0.10000E+03 0.50800E+03 0.50800E+03 0.38341E+02 0.10000E+03 0.50900E+03 0.50900E+03 0.39000E+02 0.10000E+03 0.51000E+03 0.51000E+03 0.39000E+02 0.10000E+03 0.51100E+03 0.51100E+03 0.30649E+02 0.10000E+03 0.51200E+03 0.51200E+03 0.39000E+02 0.10000E+03 0.51300E+03 0.51300E+03 0.38341E+02 0.10000E+03 0.51400E+03 0.51400E+03 0.39000E+02 0.10000E+03 0.51500E+03 0.51500E+03 0.38121E+02 0.10000E+03 0.51600E+03 0.51600E+03 0.39000E+02 0.10000E+03 0.51700E+03 0.51700E+03 0.39000E+02 0.10000E+03 0.51800E+03 0.51800E+03 0.16146E+02 0.10000E+03 0.51900E+03 0.51900E+03 0.39000E+02 0.10000E+03 0.52000E+03 0.52000E+03 0.39000E+02 0.10000E+03 0.52100E+03 0.52100E+03 0.26254E+02 0.10000E+03 0.52200E+03 0.52200E+03 0.39000E+02 0.10000E+03 0.52300E+03 0.52300E+03 0.39000E+02 0.10000E+03 0.52400E+03 0.52400E+03 0.36363E+02 0.10000E+03 0.52500E+03 0.52500E+03 0.30649E+02 0.10000E+03 0.52600E+03 0.52600E+03 0.39000E+02 0.10000E+03 0.52700E+03 0.52700E+03 0.39000E+02 0.10000E+03 0.52800E+03 0.52800E+03 0.35704E+02 0.10000E+03 0.52900E+03 0.52900E+03 0.18563E+02 0.10000E+03 0.53000E+03 0.53000E+03 0.38121E+02 0.10000E+03 0.53100E+03 0.53100E+03 0.30869E+02 0.10000E+03 0.53200E+03 0.53200E+03 0.31089E+02 0.10000E+03 0.53300E+03 0.53300E+03 0.39000E+02 0.10000E+03 0.53400E+03 0.53400E+03 0.39000E+02 0.10000E+03 0.53500E+03 0.53500E+03 0.39000E+02 0.10000E+03 0.53600E+03 0.53600E+03 0.30210E+02 0.10000E+03 0.53700E+03 0.53700E+03 0.39000E+02 0.10000E+03 0.53800E+03 0.53800E+03 0.39000E+02 0.10000E+03 0.53900E+03 0.53900E+03 0.29331E+02 0.10000E+03 0.54000E+03 0.54000E+03 0.37901E+02 0.10000E+03 0.54100E+03 0.54100E+03 0.16805E+02 0.10000E+03 0.54200E+03 0.54200E+03 0.32408E+02 0.10000E+03 0.54300E+03 0.54300E+03 0.31968E+02 0.10000E+03 0.54400E+03 0.54400E+03 0.39000E+02 0.10000E+03 0.54500E+03 0.54500E+03 0.19662E+02 0.10000E+03 0.54600E+03 0.54600E+03 0.37242E+02 0.10000E+03 0.54700E+03 0.54700E+03 0.66968E+01 0.10000E+03 0.54800E+03 0.54800E+03 0.20761E+02 0.10000E+03 0.54900E+03 0.54900E+03 0.18783E+02 0.10000E+03 0.55000E+03 0.55000E+03 0.16586E+02 0.10000E+03 0.55100E+03 0.55100E+03 0.34005E+01 0.10000E+03 0.55200E+03 0.55200E+03 0.00000E+00 0.10000E+03 0.55300E+03 0.55300E+03 0.46148E+01 0.10000E+03 0.55400E+03 0.55400E+03 0.10988E+01 0.10000E+03 0.55500E+03 0.55500E+03 0.00000E+00 0.10000E+03 0.55600E+03 0.55600E+03 0.00000E+00 0.10000E+03 0.55700E+03 0.55700E+03 0.65925E+01 0.10000E+03 0.55800E+03 0.55800E+03 0.52740E+01 0.10000E+03 0.55900E+03 0.55900E+03 0.39555E+01 0.10000E+03 0.56000E+03 0.56000E+03 0.00000E+00 0.10000E+03 0.56100E+03 0.56100E+03 0.63728E+01 0.10000E+03 0.56200E+03 0.56200E+03 0.15602E+02 0.10000E+03 0.56300E+03 0.56300E+03 0.63728E+01 0.10000E+03 0.56400E+03 0.56400E+03 0.50543E+01 0.10000E+03 0.56500E+03 0.56500E+03 0.37358E+01 0.10000E+03 0.56600E+03 0.56600E+03 0.24173E+01 0.10000E+03 0.56700E+03 0.56700E+03 0.11867E+02 0.10000E+03 0.56800E+03 0.56800E+03 0.28568E+01 0.10000E+03 0.56900E+03 0.56900E+03 0.17580E+01 0.10000E+03 0.57000E+03 0.57000E+03 0.11427E+02 0.10000E+03 0.57100E+03 0.57100E+03 0.26370E+01 0.10000E+03 0.57200E+03 0.57200E+03 0.17580E+01 0.10000E+03 0.57300E+03 0.57300E+03 0.11647E+02 0.10000E+03 0.57400E+03 0.57400E+03 0.13844E+02 0.10000E+03 0.57500E+03 0.57500E+03 0.54938E+01 0.10000E+03 0.57600E+03 0.57600E+03 0.37358E+02 0.10000E+03 0.57700E+03 0.57700E+03 0.13844E+02 0.10000E+03 0.57800E+03 0.57800E+03 0.24832E+02 0.10000E+03 0.57900E+03 0.57900E+03 0.28128E+02 0.10000E+03 0.58000E+03 0.58000E+03 0.20876E+02 0.10000E+03 0.58100E+03 0.58100E+03 0.32303E+02 0.10000E+03 0.58200E+03 0.58200E+03 0.36039E+02 0.10000E+03 0.58300E+03 0.58300E+03 0.29227E+02 0.10000E+03 0.58400E+03 0.58400E+03 0.39000E+02 0.10000E+03 0.58500E+03 0.58500E+03 0.32407E+02 0.10000E+03 0.58600E+03 0.58600E+03 0.33726E+02 0.10000E+03 0.58700E+03 0.58700E+03 0.39000E+02 0.10000E+03 0.58800E+03 0.58800E+03 0.34005E+01 0.10000E+03 0.58900E+03 0.58900E+03 0.39000E+02 0.10000E+03 0.59000E+03 0.59000E+03 0.35704E+02 0.10000E+03 0.59100E+03 0.59100E+03 0.29771E+02 0.10000E+03 0.59200E+03 0.59200E+03 0.31748E+02 0.10000E+03 0.59300E+03 0.59300E+03 0.33726E+02 0.10000E+03 0.59400E+03 0.59400E+03 0.39000E+02 0.10000E+03 0.59500E+03 0.59500E+03 0.39000E+02 0.10000E+03 0.59600E+03 0.59600E+03 0.22738E+02 0.10000E+03 0.59700E+03 0.59700E+03 0.32847E+02 0.10000E+03 0.59800E+03 0.59800E+03 0.24277E+02 0.10000E+03 0.59900E+03 0.59900E+03 0.34165E+02 0.10000E+03 0.60000E+03 0.60000E+03 0.25375E+02 0.10000E+03 0.60100E+03 0.60100E+03 0.35044E+02 0.10000E+03 0.60200E+03 0.60200E+03 0.15267E+02 0.10000E+03 0.60300E+03 0.60300E+03 0.32407E+02 0.10000E+03 0.60400E+03 0.60400E+03 0.22958E+02 0.10000E+03 0.60500E+03 0.60500E+03 0.31968E+02 0.10000E+03 0.60600E+03 0.60600E+03 0.22299E+02 0.10000E+03 0.60700E+03 0.60700E+03 0.31089E+02 0.10000E+03 0.60800E+03 0.60800E+03 0.21200E+02 0.10000E+03 0.60900E+03 0.60900E+03 0.29770E+02 0.10000E+03 0.61000E+03 0.61000E+03 0.39000E+02 0.10000E+03 0.61100E+03 0.61100E+03 0.31968E+02 0.10000E+03 0.61200E+03 0.61200E+03 0.11312E+02 0.10000E+03 0.61300E+03 0.61300E+03 0.16805E+02 0.10000E+03 0.61400E+03 0.61400E+03 0.14168E+02 0.10000E+03 0.61500E+03 0.61500E+03 0.22079E+02 0.10000E+03 0.61600E+03 0.61600E+03 0.54375E+00 0.10000E+03 0.61700E+03 0.61700E+03 0.15926E+02 0.10000E+03 0.61800E+03 0.61800E+03 0.47190E+01 0.10000E+03 0.61900E+03 0.61900E+03 0.11971E+02 0.10000E+03 0.62000E+03 0.62000E+03 0.11312E+02 0.10000E+03 0.62100E+03 0.62100E+03 0.10652E+02 0.10000E+03 0.62200E+03 0.62200E+03 0.99930E+01 0.10000E+03 0.62300E+03 0.62300E+03 0.00000E+00 0.10000E+03
40555dafb3d62ddee9854a6318f79bad91d69f76
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH18/EX18.14/Ex18_14.sce
56cfb5b7d91c31b5cae0ad5dfdbc26f2a14fa269
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
159
sce
Ex18_14.sce
clc; VCC=24; RC=10*10**3; RE=270; VBE=0.7; B=45; VCE=5; IC=(VCC-VCE)/RC; disp('mA',IC*10**3,"IC="); RB=(2.6*10^3)*B; disp('kohm',RB*10**-3,"RB=")
6f099fb739befbe02c69fd9426b002d06285e6ae
449d555969bfd7befe906877abab098c6e63a0e8
/551/CH12/EX12.1/1.sce
e46175302dd2185058ea819bf4f1474f2859cf5d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,325
sce
1.sce
clc p1=60; //bar; Inlet to turbine p2=0.1; //bar; Exit from turbine p3=0.09; //bar; Exit from condenser p4=70; //bar ; Exit from pump p5=65; //bar; Exit from boiler t1=380; //0C t5=400; //0C x2=0.9; //Quality at exit from turbine C=200; //m/s; Velocity at the exit from turbine disp("(i) Power output of the turbine") //At 60 bar 380 0C, From steam tables h1=3123.5; //kJ/kg; By interpolation h_f2=191.8; //kJ/kg h_fg2=2392.8; //kJ/kg x2=0.9; h2=h_f2+x2*h_fg2; m_s=10000/3600; //Rate of stem flow in kg/s P=m_s*(h1-h2); disp("Power output of the turbine =") disp(P) disp("kW") disp("(ii) Heat transfer per hour in the boiler and condenser") h_f4=1267.4; //kJ/kg h_a=3167.6; //kJ/kg Q1=10000*(h_a - h_f4); disp("Heat transfer per hour in the boiler =") disp(Q1) disp("kJ/h") h_f3=183.3; //kJ/kg Q2=10000*(h2-h_f3); disp("Heat transfer per hour in the condenser =") disp(Q2) disp("kJ/h") disp("(iii) Mass of cooling water circulated per hour in the condenser") c_pw=4.18; t2=30; t1=20; m_w=Q2/c_pw/(t2-t1); disp("m_w=") disp(m_w) disp("kg/h") disp("This is the exact answer.") disp("(iv) Diameter of the pipe connecting turbine with condenser") v_g2=14.67; //m^3/kg d=sqrt(m_s*x2*v_g2*4/%pi/C)*1000; disp("Diameter =") disp(d) disp("mm")