blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 21 values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 141k 586M ⌀ | star_events_count int64 0 30.4k | fork_events_count int64 0 9.67k | gha_license_id stringclasses 8 values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 50 values | src_encoding stringclasses 23 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 29 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
08c05bbc529ff563ccf5fda5e815437c00dab1aa | 1d7cb1dbfad2558a4145c06cbe3f5fa3fc6d2c08 | /Scilab/S4P_ImpulseResponse/link_channel_gen.sci | a301b1116d1dc86d90bd2e2f7937731747ef4350 | [] | no_license | lrayzman/SI-Scripts | 5b5f6a8e4ae19ccff53b8dab7b5773e0acde710d | 9ab161c6deff2a27c9da906e37aa68964fabb036 | refs/heads/master | 2020-09-25T16:23:23.389526 | 2020-02-09T02:13:46 | 2020-02-09T02:13:46 | 66,975,754 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,391 | sci | link_channel_gen.sci | // Calculates impulse response for a system described by .s4p file and creates
// an impulse response file that can be used with "link_channel" CppSim primitive
//
// Adapted from Matlab code included in CppSim created by Prof. Vladimir Stojanovic of MIT
//
// IMPORTANT NOTE: The Touchstone file parser is not robust. Only 4-port files supported
//
//
stacksize(64*1024*1024);
clear;
//xdel;
//xdel;
//////////////////////////////////////SPECIFY//////////////////////////////////////
Tsym=100e-12; //Symbol Rate: e.g., Tsym = 1/fsym = 1/10 Gb/s
Ts=Tsym/100; //CppSim internal time step, also used to sample
nsym_short=300; // persistence of the impulse response
// tail in the channel in terms of the
// number of symbols.
// NOTE: Signal must completely settle to steady state=0 within this time.
channelname = "channel_data.s4p"; // Filename of S4P file describing the channel
impname = "link_channel.dat"; // Filename of the link channel impulse response
s_mode = "s21"; // S-parameters mode
Num_of_ports = 4; // Number of ports. Currently fixed to 4;
/////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////Extraction Function////////////////////////////////////
function [f, H] = extract_mode_from_s4p(filename, s_mode)
// Extracts selected 's_mode' parameters from s-parameters files
//
//
//
// Inputs:
// filename - Filename of the s-params file
// s_mode - S-parameter selector
//
//
// Outputs:
// f - frequency points
// H - transfer function
//
freq_unit="GHZ"; //Defaults
sim_type="S";
param_type="DB"
z_term_type = "R";
z_term_value = 50;
stop_readheader = %F;
num_of_freq = 0; // Number of s-param frequency points
freq_scale = 1e9; // Frequency points scaling factor
s_data=[];
param1=[];
param2=[];
[fhandle,err]=mopen(filename, "r");
//Parse the options header
while stop_readheader == %F,
if meof(fhandle) then //If end of file, stop
stop_readheader = %T;
else
if mgeti(1, "uc", fhandle) == 35 then //If reached options line
[scan_num, freq_unit, sim_type, param_type, z_term_type, z_term_value] = mfscanf(1, fhandle, '%s %c %s %c %f') //read in options
stop_readheader = %T; //Stop reading header
end
end
end
//Assign frequency scaling
select convstr(freq_unit, "u")
case "HZ" then
freq_scale = 1;
case "KHZ" then
freq_scale = 1e3;
case "MHZ" then
freq_scale = 1e6;
case "GHZ" then
freq_scale = 1e9;
else
error("Unknown frequency unit %s",freq_unit);
return;
end
while ~meof(fhandle),
textline = mgetl(fhandle, 1); //Read in line
if ~(length(textline) == 0) then //If blank line
if ~(part(textline, 1) == '!') then //or comment line. TODO: NEEDS IMPROVEMENT HERE
[scan_num, col0,col1,col2,col3,col4,col5,col6,col7,col8] = msscanf(textline, '%f%f%f%f%f%f%f%f%f'); //Read in the data
if (scan_num == 9) then //This is start of the data block for given frequency //Just read line containing frequenies
offset = 0;
num_of_freq = num_of_freq + 1;
f(num_of_freq) = col0*freq_scale;
s_data(num_of_freq, offset*8+1:offset*8+8) = [col1,col2,col3,col4,col5,col6,col7,col8];
elseif (scan_num == 8) then //This is continuation of the data block
offset = offset + 1;
s_data(num_of_freq, offset*8+1:offset*8+8) = [col0, col1,col2,col3,col4,col5,col6,col7];
end
end
end
end
mclose(fhandle);
//Select data for Port
select convstr(s_mode, "u")
case "S11"
param1=s_data(:,1)';
param2=s_data(:,2)';
case "S12"
param1=s_data(:,3)';
param2=s_data(:,4)';
case "S13"
param1=s_data(:,5)';
param2=s_data(:,6)';
case "S14"
param1=s_data(:,7)';
param2=s_data(:,8)';
case "S21"
param1=s_data(:,9)';
param2=s_data(:,10)';
case "S22"
param1=s_data(:,11)';
param2=s_data(:,12)';
case "S23"
param1=s_data(:,13)';
param2=s_data(:,14)';
case "S24"
param1=s_data(:,15)';
param2=s_data(:,16)';
case "S31"
param1=s_data(:,17)';
param2=s_data(:,18)';
case "S32"
param1=s_data(:,19)';
param2=s_data(:,20)';
case "S33"
param1=s_data(:,21)';
param2=s_data(:,22)';
case "S34"
param1=s_data(:,23)';
param2=s_data(:,24)';
case "S41"
param1=s_data(:,25)';
param2=s_data(:,26)';
case "S42"
param1=s_data(:,27)';
param2=s_data(:,28)';
case "S43"
param1=s_data(:,29)';
param2=s_data(:,30)';
case "S44"
param1=s_data(:,31)';
param2=s_data(:,32)';
else
error("unknown mode %s", s_mode);
end
//Frequency matrix conversion
select convstr(param_type, "u")
case 'MA'
H=param1.*exp(%i*param2*%pi/180);
case 'RI'
H=param1+%i*param2;
case 'DB'
H=10.^(param1/20).*exp(%i*param2*%pi/180);
else
error("Unknown parameter type %s",param_type)
return;
end
//Transpose frequency vector
f=f';
endfunction
//////////////////////////////////////Transfer Function to Impulse function////////////////////////////////////
function imp=xfr_fn_to_imp(f,H,Ts,Tsym)
// Create impulse response from transfer function in frequency domain
// Impulse response is interpolated to the sample time required by the
// simulator
//
//
// Inputs:
// f - frequency points in Hz
// H - Transfer function
// Ts - Simulator timestep
// Tsym - Symbol (UI) period
//
// Outputs:
// imp - impulse response
//
num_fft_pts=2^12;
// set the symbol frequency
f_sym=1/Tsym;
// get the maximum sampling frequency from the transfer function
f_sym_max=2*max(f);
// stop the simulation if the symbol frequency is smaller than the maximum
// measured sampling frequency
if (f_sym > f_sym_max) then
error("Max input frequency too low for requested symbol rate, can''t interpolate!\n");
return;
end
f_sym_max=f_sym*floor(f_sym_max/f_sym);
Hm=abs(H);
Hp=atan(imag(H),real(H))
// need to force phase to zero at zero frequency to avoid funky behavior
if f(1)==0 then
Hm_ds=[Hm(:, $-1:-1:2) Hm];
Hp_ds=[-Hp(:,$-1:-1:2) Hp];
fds=[-f(:,$-1:-1:2) f];
fds_m = fds;
fds_p = fds;
else
Hm_ds=[Hm(:, $-1:-1:1) Hm];
Hp_ds=[-Hp(:,$-1:-1:1) 0 Hp];
fds_m=[-f(:,$-1:-1:1) f];
fds_p=[-f(:,$-1:-1:1) 0 f];
end
//Spline interpolation
df = (f_sym_max/2)/num_fft_pts;
f_ds_interp = mtlb_imp(mtlb_a(-f_sym_max/2,df),df,f_sym_max/2);
Hm_ds_spln = splin(fds_m, Hm_ds);
Hm_ds_interp = interp(f_ds_interp, fds_m, Hm_ds, Hm_ds_spln, "natural")
Hp_ds_unwrap = unwrap(Hp_ds);
Hp_ds_spln = splin(fds_p, Hp_ds_unwrap);
Hp_ds_interp = interp(f_ds_interp, fds_p, Hp_ds_unwrap, Hp_ds_spln, "natural")
Hm_ds_interp_sh = mtlb_fftshift(Hm_ds_interp);
Hp_ds_interp_sh = mtlb_fftshift(Hp_ds_interp);
H_ds_interp_sh = Hm_ds_interp_sh .*exp(%i*Hp_ds_interp_sh);
// impulse response from ifft of interpolated frequency response
imp = mtlb_ifft(H_ds_interp_sh);
imp_r = real(imp);
dt_sym = 1/f_sym_max;
//refit data into simulator's time step
dt_time = mtlb_imp(0,dt_sym,dt_sym*(max(size(imp_r))-1));
time = mtlb_imp(0,Ts,dt_time($));
imp = (interp1(dt_time,imp_r,time,"spline")*Ts)/dt_sym;
endfunction
//////////////////////////////////////Unwrap Matlab Emulation function///////////////////////////////
function unwrp = unwrap(wrapped)
//
// Emulation of Matlab unwrap function which adjust largest deviation
// between adjacent phase entries to maximum of +pi or -pi
//
// Inputs:
// wrapped - wrapped phase vector. Must be 1-D vector with at least 2 entries
//
// Outputs:
// unrwp - unwrapped phase vector
//
//
// TODO: Implement a multi-dimensional vector unwrapping
//
vect_size = size(wrapped);
if vect_size(2) == 1 then //Transpose row vector into column vector, if necessary
wrapped = wrapped';
else
wrapped = wrapped;
end
lngth = size(wrapped,2);
//Set the phase at first entry
unwrp(1) = wrapped(1);
//Main loop
for i = 2:lngth,
k = 0; //Reset multiplier
ph_delta = wrapped(i) - unwrp(i-1);
if abs(ph_delta) > %pi then //If phase jump is greater than Pi
if ph_delta < 0 then //If negative phase jump
k = round(abs(ph_delta)/(2*%pi));
else //If positive phase jump
k = -round(abs(ph_delta)/(2*%pi));
end
end
unwrp(i) = wrapped(i) + 2*k*%pi; //Adjust phase by factor of k*2pi
end
unwrp=unwrp';
endfunction
//////////////////////////////////////Main Routine////////////////////////////////////
//Extract frequency response from S4P file
[f,H]=extract_mode_from_s4p(channelname,s_mode);
//Plot it
xinit("Graph1")
plot2d(f*1e-9,20*log10(abs(H)), axesflag=1, style=2);
xgrid(12)
xtitle("Transfer Function", "frequency [GHz]", "Transfer function [dB]");
//Calculate impulse response
imp=xfr_fn_to_imp(f,H,Ts,Tsym);
Ts_num_short = floor(nsym_short*(Tsym/Ts));
imp_short=imp(1:Ts_num_short);
xinit("Graph2")
//imp_plot_x = (1:Ts_num_short); //TODO: Plot in terms of Symbols
//imp_plot_x = floor(imp_plot_x/(Tsym/Ts));
plot2d(imp_short);
xtitle("Impulse response", "Sample", "Amplitude");
//Save data to file
savematfile(impname, "imp_short", "-ascii", "-tabs");
|
6ad0f4ac31609b421644b9797dc06b4768dfd63f | 9302f49be6fdfde3637ce743435bd9ce524c165f | /squelette/src/diff/dif-conv.sce | 3cfa6893bd8af2d2e2bb9ba1b0d38c7f1d565dfa | [] | no_license | OmarBenchekroun99/simu_ecoulement_fluide | 8eaf0ff7798c929c2eaf5c0c544664f4d80069aa | c5566d4f87428c10f4bf27037b4a28eaed8eb00c | refs/heads/master | 2020-08-07T01:03:10.012702 | 2019-10-06T19:38:54 | 2019-10-06T19:38:54 | 213,231,718 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,227 | sce | dif-conv.sce | Nx=50;
Nt=50;
kappa=0.01;
exec("my_cholesky.sce")
dt=1/Nt
dx=1/Nt
function y=phi0(x)
if (x>=0) & (x<0.25) then
y=0;
elseif (x>=0.25) & (x<0.375) then
y=2*(x-0.25);
elseif (x>=0.375) & (x<0.5) then
y=2*(0.5-x);
elseif (x>=0.5) & (x<=1) then
y=0;
end
endfunction
phi_0=[]
for i = 1:Nt
phi_0($+1)=phi0((i-1)*dx);
end
function y=conv(x)
y=0.4*(x-0.25)
endfunction
N=zeros(Nt, Nt)
for i=1:Nt
N(i,i)=1+2*kappa*(dt/dx^2);
if i+1<=Nt then
N(i,i+1)=-kappa*(dt/dx^2);
else //donc i=Nt
N(i,1)=-kappa*(dt/dx^2);
end;
if i-1>=1 then
N(i,i-1)=-kappa*(dt/dx^2);
else //donc i=1
N(i,Nt)=-kappa*(dt/dx^2);
end;
end;
M=zeros(Nt, Nt)
for j=1:Nt
c=conv((j-1)*dx);
M(j,j) = 1-c^2*dt^2/dx^2
if j>=2 then
M(j-1,j) = -c*dt/(2*dx) + c^2*dt^2/(2*dx^2);
else
M(Nt,1) = -c*dt/(2*dx) + c^2*dt^2/(2*dx^2);
end;
if j<=Nt-1 then
M(j+1,j) = c*dt/(2*dx) + c^2*dt^2/(2*dx^2);
else
M(1,Nt) = c*dt/(2*dx) + c^2*dt^2/(2*dx^2);
end;
end;
phi = phi_0;
fin=Nt;
for i=1:fin
phi=my_cholesky(N, M*phi);
end
scf;
maillage=linspace(0,1,Nx)';
plot(maillage,[phi_0, phi]);
|
102906346d96330c4dc37632119f945475679695 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1949/CH6/EX6.11/Ex6_11.sce | 08d731a946473e193072972f231fb18107184778 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 691 | sce | Ex6_11.sce | //Chapter-6,Example 6_11,Page 6-31
clc()
//Given Values:
B=1.0 //Flux density in tesla
u0=4*%pi*10^-7 //Permeability in free space
i=2.0 //current in the core
n=10*100 //n=N/l i.e. turns per meter
//Calculations:
H=n*i //Magnetising force produced in wire
printf('Magnetising force produced in wire is =%.2f Amp-turn/meter \n \n',H)
//We know that, B=u0(H+I).Thus,
I=B/u0-H //Magnetisation of material
printf(' Magnetisation of material is =%.2f Amp-turn/meter \n \n',I)
//u=B/H, i.e. ur*u0=B/H.
ur=B/(u0*H) //Relative permeability of core
printf(' Relative Permeability of core is =%.1f \n',ur)
|
66c689013e8a15be9d7a754e09a662b3a91e278b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1301/CH3/EX3.9/ex3_9.sce | fabae9a98bd6b867b3649eff79b27722a61cd292 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 219 | sce | ex3_9.sce | clc;
g=9.8; //gravitational constant in m/sec square
m=60; //mass in kg
a=2; //acc. in m/sec square
F=(m*g)+(m*a); //calculating force in Newton
disp(F,"Force in Newton = "); //displaying result
|
12ad7395766f93d09b22242f73ec98834dbb3f61 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH18/EX18.33/Ex18_33.sce | 15f382a4a78b319a478fa10d727af44061a0c36c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 697 | sce | Ex18_33.sce | //Initilization Of Variables
W1=2 //lb
W2=3 //lb
a=0 //Lower Limit oF the Integral
b=2 //Upper Limit of the Integral
n=10 //Interval of the integral
k=12/12 //lb/ft
g=32.2 //ft/s^2
//Calculation
//Work Done by the spring
//Using Trapezoidal Rule for Intergration
function[I1]=Trap_Composite1(f,a,b,n)
h=(b-a)/n
t=linspace(a,b,n+1)
I1=(h/2)*((2*sum(f(t)))-f(t(1))-f(t(n+1)))
endfunction
deff('[y]=f(t)','y=k*(2-t)')
W=Trap_Composite1(f,a,b,n) //ft-lb
//Solving the simultaneous equations
v3=sqrt(W/(0.5*(W2/g)+0.5*(W1/g)*(-W2/W1)^2)) //ft/s
v2=-(W2/W1)*v3 //ft/s
//Result
clc
printf('The speed of 2lb block is %f ft/s and that of 3lb block is %f ft/s',v2,v3)
|
de80ce59d9bda78dabff5e30e5d2045f60c2ef62 | d963a50c09b7380dd7b1b97cd9997e9bd17ea8f3 | /r37/packages/symmetry/symmetry.tst | 05af057c29d7c35f70c235a74f2fc6e9f5b58b4d | [
"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,514 | tst | symmetry.tst | % test symmetry package
% implementation of theory of linear representations
% for small groups
availablegroups();
printgroup(D4);
generators(D4);
charactertable(D4);
characternr(D4,1);
characternr(D4,2);
characternr(D4,3);
characternr(D4,4);
characternr(D4,5);
irreduciblereptable(D4);
irreduciblerepnr(D4,1);
irreduciblerepnr(D4,2);
irreduciblerepnr(D4,3);
irreduciblerepnr(D4,4);
irreduciblerepnr(D4,5);
rr:=mat((1,0,0,0,0),
(0,0,1,0,0),
(0,0,0,1,0),
(0,0,0,0,1),
(0,1,0,0,0));
sp:=mat((1,0,0,0,0),
(0,0,1,0,0),
(0,1,0,0,0),
(0,0,0,0,1),
(0,0,0,1,0));
rep:={D4,rD4=rr,sD4=sp};
canonicaldecomposition(rep);
character(rep);
symmetrybasis(rep,1);
symmetrybasis(rep,2);
symmetrybasis(rep,3);
symmetrybasis(rep,4);
symmetrybasis(rep,5);
symmetrybasispart(rep,5);
allsymmetrybases(rep);
% Ritz matrix from Stiefel, Faessler p. 200
m:=mat((eps,a,a,a,a),
(a ,d,b,g,b),
(a ,b,d,b,g),
(a ,g,b,d,b),
(a ,b,g,b,d));
diagonalize(m,rep);
% eigenvalues are obvious. Eigenvectors may be obtained with
% the coordinate transformation matrix given by allsymmetrybases.
r1:=mat((0,1,0),
(0,0,1),
(1,0,0));
repC3:={C3,rC3=r1};
mC3:=mat((a,b,c),
(c,a,b),
(b,c,a));
diagonalize(mC3,repC3);
% note difference between real and complex case
on complex;
diagonalize(mC3,repC3);
off complex;
end;
|
c78c2114e464a47d505b1181cd23b1b4634d2afa | 449d555969bfd7befe906877abab098c6e63a0e8 | /2330/CH5/EX5.1/ex5_1.sce | 96c77455e8cd55a04b0d72fdcd2a699736dd7750 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 419 | sce | ex5_1.sce | // Example 5.1
format('v',5)
clc;
clear;
close;
// given data
V_BB= 10;//in V
V_BE= 0.7;//in V
V_CC= 20;// in V
R_B= 1.5;// in MΩ
R_B= R_B*10^6;//in Ω
R_C= 5*10^3;//in Ω
bita= 125;// unit less
I_B= (V_BB-V_BE)/R_B;//in A
I_C= bita*I_B;//in A
// The dc voltage between the collector and emitter
V_CE= V_CC-I_C*R_C;//in V
disp(V_CE,"The dc voltage between the collector and emitter in volts is : ")
|
2d39fd2ca974c054f0a8a2e5bf446985037e0d4d | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH5/EX5.17.b/solution5_17.sce | 43a166916f65f7e83f0fc510a83e2349f2cd66d4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,313 | sce | solution5_17.sce |
//Obtain path of solution file
path = get_absolute_file_path('solution5_17.sce')
//Obtain path of data file
datapath = path + filesep() + 'data5_17.sci'
//Clear all
clc
//Execute the data file
exec(datapath)
//Permissible mean stress sigmaM (N/mm2)
sigmaM = (sigmaMax + sigmaMin)/2
//Permissible amplitude stress sigmaA (N/mm2)
sigmaA = (sigmaMax - sigmaMin)/2
//Assume factor of safety to be 1 n
n = 1
//Calculate maximum mean and amplitude stresses Sm, Sa (N/mm2)
Sm = n * sigmaM
Sa = n * sigmaA
//Factor of safety using Gerber theory n1
//Coefficients of resulting quadratic equation a(n^2)+b(n)+c = 0
a = (Se * (Sm^2))
b = ((Sut^2) * Sa)
c = (-1)*(Se * (Sut^2))
//Define polynomial
p = [a b c]
//Find roots
r = roots(p)
real_part = real(r)
if(real_part(1) > 0)
n1 = real_part(1)
else
n1 = real_part(2)
end
//Factor of safety using Soderberg line n2
n2 = 1/((Sa/Se) + (Sm/Syt))
//Factor of safety using Goodman line n3
n3 = 1/((Sa/Se) + (Sm/Sut))
//Factor of safety against static failure n4
n4 = Syt/sigmaMax
//Print results
printf('Factor of safety using Gerber theory = %f\n',n1)
printf('Factor of safety using Soderberg line = %f\n',n2)
printf('Factor of safety using Goodman line = %f\n',n3)
printf('Factor of safety against static failure = %f\n',n4)
|
22385455d77f43ac589970ca5ce3fbf77ca5655e | b2d3db891e489d6c9c22b9c1b7d78745a13f2ebc | /Convolution.sce | 0a4102c62a888f13ec8fa2d65c5d6537e586f740 | [] | no_license | rajas1612/Digital-Signal-Processing | 28f1eee626141f34b71f36fe4f338c2380065a0c | 7b040622bab80a30910a3cde431c7a253c76439d | refs/heads/main | 2023-04-02T22:46:16.605197 | 2021-04-01T12:05:32 | 2021-04-01T12:05:32 | 335,709,667 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,177 | sce | Convolution.sce | clear;
clc;
close;
x = [-3 -6 11 -8];
n1 = [0 1 2 3];
h = [5 -10 -4];
n2 = [0 1 2];
title('x[n]');
xlabel("No of Samples");
ylabel("Magnitude of x(n)")
plot2d3(n1, x);
e = gce();
e.children.thickness = 4;
a = gca();
a.x_location = "origin";
a.y_location = "origin";
scf(1);
title('h[n]');
plot2d3(n2, h);
e = gce();
e.children.thickness = 4;
a = gca();
a.x_location = "origin";
a.y_location = "origin";
//Linear Convolution
m = length(x);
n = length(h);
for i = 1:n+m-1
conv_sum = 0;
for j = 1:i
if (((i - j +1) <= n ) &(j <= m ))
conv_sum = conv_sum + x ( j ) * h (i -j +1) ;
end;
y ( i ) = conv_sum ;
end;
end;
disp("Linear Convolution Output=");
disp (y);
scf(2);
title('Linear Convolution');
n3 = 0: length(y)-1;
plot2d3(n3, y);
e = gce();
e.children.thickness = 4;
a = gca();
a.x_location = "origin";
a.y_location = "origin";
//Circular convolution
m=length(x);
n=length(h);
n4 = [0,1,2,3];
if (m>n)
for i = n + 1 : m
h(i) = 0;
end
elseif (n>m)
for i = m + 1 : n
x(i) = 0;
end
end
h1=circshift(h,1);
h2=circshift(h,2);
h3=circshift(h,3);
h_1= cat(2, h', h1', h2', h3');
y1=h_1*x';
printf("y(n) Circular convolution=");
disp(y1);
scf(3);
title("Circular Convolution y(n)","fontsize", 5);
xlabel("n", "fontsize", 4);
ylabel("mag of y(n)","fontsize",4);
plot2d3('gnn',n4,y1);
b = gca();
b.font_size = 3;
b.x_location = "origin";
b.y_location = "origin";
a = gce();
a.children.thickness = 3
//Linear Convolution using Circular Convolution
z =length(x)+length(h)-1;
h =[h,zeros(1,(z-length(h)))];
x =[x,zeros(1,(z-length(x)))] ;
for i=1:z
w(1,z)=0;
for j=1:z
k=i-j+1;
if k <=0 then
k=z+k;
end ;
w(i)=w(i)+x(j)*h(k);
end ;
end ;
disp ('Linear Convolution using Circular Convolution Output : ' ) ;
disp(w);
scf(4) ;
title('Linear Convolution using Circular Convolution' , 'fontsize' , 5 ) ;
n5 =0:length(w)-1;
plot2d3(n5,w);
e=gce();
e.children.thickness=4;
a = gca();
a.x_location = "origin";
a.y_location = "origin";
|
c14856033fb503f9c43f9ceabf7ebb6ba0a71eab | 449d555969bfd7befe906877abab098c6e63a0e8 | /2825/CH14/EX14.6/Ex14_6.sce | c570f9fc8b513ad844f9648d24748773d7987d46 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 487 | sce | Ex14_6.sce | //Ex14_6 Pg-697
clc
n2=1.59 //cladding refractive index
NA=0.2 //numerical apperture
n0=1 //when fiber is in air
n1=sqrt(n2^2+NA^2) //core refractive index
printf("Core refractive index = %.3f \n",n1)
n=1.33 //water refractive index
NA=sqrt(n1^2-n2^2)/n0 //numerical apperture
printf(" Numerical apperture = %.2f \n",NA)
AA_rad=asin(NA/n) //maximum Acceptance angle in rad
AA=AA_rad*180/%pi //maximum entrance angle in degree
printf(" The maximum entrance angle i0 = %.2f degree",AA) |
64aadb5dc5a4181b6ddc1628726d84c60a801600 | f2635c3a10a2508720f5d231581bbcf58664cf12 | /pl/math/test/testcases/directed/atan2f.tst | 85c5c5d47e10b3a7c006b17d02c7d9a04e8056b2 | [
"LLVM-exception",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | xboxfanj/optimized-routines | 9ed0fef9346076e3eaf952cecd9b6c39cca8d92b | e312306d13daf9c044145ca26fb34ef7704fae81 | refs/heads/master | 2023-01-21T08:14:26.298438 | 2022-12-21T00:02:54 | 2023-01-10T16:39:37 | 232,194,104 | 0 | 0 | MIT | 2020-01-06T22:07:31 | 2020-01-06T22:07:30 | null | UTF-8 | Scilab | false | false | 7,710 | tst | atan2f.tst | ; atan2f.tst
;
; Copyright (c) 1999-2023, Arm Limited.
; SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
func=atan2f op1=7f800001 op2=7f800001 result=7fc00001 errno=0 status=i
func=atan2f op1=7f800001 op2=ff800001 result=7fc00001 errno=0 status=i
func=atan2f op1=7f800001 op2=7fc00001 result=7fc00001 errno=0 status=i
func=atan2f op1=7f800001 op2=ffc00001 result=7fc00001 errno=0 status=i
func=atan2f op1=7f800001 op2=7f800000 result=7fc00001 errno=0 status=i
func=atan2f op1=7f800001 op2=ff800000 result=7fc00001 errno=0 status=i
func=atan2f op1=7f800001 op2=00000000 result=7fc00001 errno=0 status=i
func=atan2f op1=7f800001 op2=80000000 result=7fc00001 errno=0 status=i
func=atan2f op1=7f800001 op2=3f800000 result=7fc00001 errno=0 status=i
func=atan2f op1=7f800001 op2=bf800000 result=7fc00001 errno=0 status=i
func=atan2f op1=ff800001 op2=7f800001 result=7fc00001 errno=0 status=i
func=atan2f op1=ff800001 op2=ff800001 result=7fc00001 errno=0 status=i
func=atan2f op1=ff800001 op2=7fc00001 result=7fc00001 errno=0 status=i
func=atan2f op1=ff800001 op2=ffc00001 result=7fc00001 errno=0 status=i
func=atan2f op1=ff800001 op2=7f800000 result=7fc00001 errno=0 status=i
func=atan2f op1=ff800001 op2=ff800000 result=7fc00001 errno=0 status=i
func=atan2f op1=ff800001 op2=00000000 result=7fc00001 errno=0 status=i
func=atan2f op1=ff800001 op2=80000000 result=7fc00001 errno=0 status=i
func=atan2f op1=ff800001 op2=3f800000 result=7fc00001 errno=0 status=i
func=atan2f op1=ff800001 op2=bf800000 result=7fc00001 errno=0 status=i
func=atan2f op1=7fc00001 op2=7f800001 result=7fc00001 errno=0 status=i
func=atan2f op1=7fc00001 op2=ff800001 result=7fc00001 errno=0 status=i
func=atan2f op1=7fc00001 op2=7fc00001 result=7fc00001 errno=0
func=atan2f op1=7fc00001 op2=ffc00001 result=7fc00001 errno=0
func=atan2f op1=7fc00001 op2=7f800000 result=7fc00001 errno=0
func=atan2f op1=7fc00001 op2=ff800000 result=7fc00001 errno=0
func=atan2f op1=7fc00001 op2=00000000 result=7fc00001 errno=0
func=atan2f op1=7fc00001 op2=80000000 result=7fc00001 errno=0
func=atan2f op1=7fc00001 op2=3f800000 result=7fc00001 errno=0
func=atan2f op1=7fc00001 op2=bf800000 result=7fc00001 errno=0
func=atan2f op1=ffc00001 op2=7f800001 result=7fc00001 errno=0 status=i
func=atan2f op1=ffc00001 op2=ff800001 result=7fc00001 errno=0 status=i
func=atan2f op1=ffc00001 op2=7fc00001 result=ffc00001 errno=0
func=atan2f op1=ffc00001 op2=ffc00001 result=ffc00001 errno=0
func=atan2f op1=ffc00001 op2=7f800000 result=ffc00001 errno=0
func=atan2f op1=ffc00001 op2=ff800000 result=ffc00001 errno=0
func=atan2f op1=ffc00001 op2=00000000 result=ffc00001 errno=0
func=atan2f op1=ffc00001 op2=80000000 result=ffc00001 errno=0
func=atan2f op1=ffc00001 op2=3f800000 result=ffc00001 errno=0
func=atan2f op1=ffc00001 op2=bf800000 result=ffc00001 errno=0
func=atan2f op1=7f800000 op2=7f800001 result=7fc00001 errno=0 status=i
func=atan2f op1=7f800000 op2=ff800001 result=7fc00001 errno=0 status=i
func=atan2f op1=7f800000 op2=7fc00001 result=7fc00001 errno=0
func=atan2f op1=7f800000 op2=ffc00001 result=7fc00001 errno=0
func=atan2f op1=7f800000 op2=7f800000 result=3f490fda.a22 errno=0
func=atan2f op1=7f800000 op2=ff800000 result=4016cbe3.f99 errno=0
func=atan2f op1=7f800000 op2=00000000 result=3fc90fda.a22 errno=0
func=atan2f op1=7f800000 op2=80000000 result=3fc90fda.a22 errno=0
func=atan2f op1=7f800000 op2=3f800000 result=3fc90fda.a22 errno=0
func=atan2f op1=7f800000 op2=bf800000 result=3fc90fda.a22 errno=0
func=atan2f op1=ff800000 op2=7f800001 result=7fc00001 errno=0 status=i
func=atan2f op1=ff800000 op2=ff800001 result=7fc00001 errno=0 status=i
func=atan2f op1=ff800000 op2=7fc00001 result=7fc00001 errno=0
func=atan2f op1=ff800000 op2=ffc00001 result=ffc00001 errno=0
func=atan2f op1=ff800000 op2=7f800000 result=bf490fda.a22 errno=0
func=atan2f op1=ff800000 op2=ff800000 result=c016cbe3.f99 errno=0
func=atan2f op1=ff800000 op2=00000000 result=bfc90fda.a22 errno=0
func=atan2f op1=ff800000 op2=80000000 result=bfc90fda.a22 errno=0
func=atan2f op1=ff800000 op2=3f800000 result=bfc90fda.a22 errno=0
func=atan2f op1=ff800000 op2=bf800000 result=bfc90fda.a22 errno=0
func=atan2f op1=00000000 op2=7f800001 result=7fc00001 errno=0 status=i
func=atan2f op1=00000000 op2=ff800001 result=7fc00001 errno=0 status=i
func=atan2f op1=00000000 op2=7fc00001 result=7fc00001 errno=0
func=atan2f op1=00000000 op2=ffc00001 result=ffc00001 errno=0
func=atan2f op1=00000000 op2=7f800000 result=00000000 errno=0
func=atan2f op1=00000000 op2=ff800000 result=40490fda.a22 errno=0
func=atan2f op1=00000000 op2=00000000 result=00000000 errno=0
func=atan2f op1=00000000 op2=80000000 result=40490fda.a22 errno=0
func=atan2f op1=00000000 op2=3f800000 result=00000000 errno=0
func=atan2f op1=00000000 op2=bf800000 result=40490fda.a22 errno=0
; No exception is raised on certain machines (different version of glibc)
; Same issue encountered with other function similar to x close to 0
; Could be due to function so boring no flop is involved in some implementations
func=atan2f op1=00000001 op2=3f800000 result=00000001 errno=0 maybestatus=ux
func=atan2f op1=80000000 op2=7f800001 result=7fc00001 errno=0 status=i
func=atan2f op1=80000000 op2=ff800001 result=7fc00001 errno=0 status=i
func=atan2f op1=80000000 op2=7fc00001 result=7fc00001 errno=0
func=atan2f op1=80000000 op2=ffc00001 result=ffc00001 errno=0
func=atan2f op1=80000000 op2=7f800000 result=80000000 errno=0
func=atan2f op1=80000000 op2=ff800000 result=c0490fda.a22 errno=0
func=atan2f op1=80000000 op2=00000000 result=80000000 errno=0
func=atan2f op1=80000000 op2=80000000 result=c0490fda.a22 errno=0
func=atan2f op1=80000000 op2=3f800000 result=80000000 errno=0
func=atan2f op1=80000000 op2=bf800000 result=c0490fda.a22 errno=0
; No exception is raised on certain machines (different version of glibc)
; Same issue encountered with other function similar to x close to 0
; Could be due to function so boring no flop is involved in some implementations
func=atan2f op1=80000001 op2=3f800000 result=80000001 errno=0 maybestatus=ux
func=atan2f op1=3f800000 op2=7f800001 result=7fc00001 errno=0 status=i
func=atan2f op1=3f800000 op2=ff800001 result=7fc00001 errno=0 status=i
func=atan2f op1=3f800000 op2=7fc00001 result=7fc00001 errno=0
func=atan2f op1=3f800000 op2=ffc00001 result=ffc00001 errno=0
func=atan2f op1=3f800000 op2=7f800000 result=00000000 errno=0
func=atan2f op1=3f800000 op2=ff800000 result=40490fda.a22 errno=0
func=atan2f op1=3f800000 op2=00000000 result=3fc90fda.a22 errno=0
func=atan2f op1=3f800000 op2=80000000 result=3fc90fda.a22 errno=0
func=atan2f op1=3f800000 op2=3f800000 result=3f490fda.a22 errno=0
func=atan2f op1=3f800000 op2=bf800000 result=4016cbe3.f99 errno=0
func=atan2f op1=bf800000 op2=7f800001 result=7fc00001 errno=0 status=i
func=atan2f op1=bf800000 op2=ff800001 result=7fc00001 errno=0 status=i
func=atan2f op1=bf800000 op2=7fc00001 result=7fc00001 errno=0
func=atan2f op1=bf800000 op2=ffc00001 result=ffc00001 errno=0
func=atan2f op1=bf800000 op2=7f800000 result=80000000 errno=0
func=atan2f op1=bf800000 op2=ff800000 result=c0490fda.a22 errno=0
func=atan2f op1=bf800000 op2=00000000 result=bfc90fda.a22 errno=0
func=atan2f op1=bf800000 op2=80000000 result=bfc90fda.a22 errno=0
func=atan2f op1=bf800000 op2=3f800000 result=bf490fda.a22 errno=0
func=atan2f op1=bf800000 op2=bf800000 result=c016cbe3.f99 errno=0
func=atan2f op1=8005f16d op2=002bb601 result=be0a60a5.d88 error=0
func=atan2f op1=80818ec8 op2=80ba5db9 result=c0222eda.f42 error=0
func=atan2f op1=ff7fffff op2=ff7fffff result=c016cbe3.f99 errno=0
func=atan2f op1=bfc00001 op2=7f7fffff result=80300000.700 errno=0 status=u
func=atan2f op1=80800001 op2=40000000 result=80400000.800 errno=0 status=u
|
7e1f5c802919f4e42da5b07bb0a6fdbc66de08a7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH12/EX12.1/example12_1.sce | fe1deb87d4f4905fcd0988c7a74b16c5c63318dc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 495 | sce | example12_1.sce | clc
// Given that
E = 1.14 // energy of gamma radiation in Mev
l = 0.2 // length of aluminium in meter
p = 0.03 // reduce in intensity in beam
d = 2700 // density of aluminium in kg/m^3
// Sample Problem 1 on page no. 12.31
printf("\n # PROBLEM 1 # \n")
printf("Standard formula used \n")
printf("I = I_0*e^(-mu*x) \n")
mu = (1 / l) * log(1 / p)
k = mu / d
x = 0.693 / mu
printf("\n Mass absorption coeffiecient of Al for this radiation is %f m^2/kg.\n Half value thickness is %f meter.",k,x)
|
8a6c9c6efbef6500c8225b809b0d20796207fa7f | 449d555969bfd7befe906877abab098c6e63a0e8 | /62/CH6/EX6.42/ex_6_42.sce | 6721dda4f3633c830423373578ae582ef0d2a73b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 512 | sce | ex_6_42.sce | close;
clc;
clear;
n=-10:10;
h=[zeros(1,find(n==0)-1) 2 2 -2 -2 zeros(1,length(n)-find(n==0)-3)];
plot2d3(n,h)
plot(n,h,'r.')
title("impulse response h[n]")
disp("taking DTFT H(w)=sin(w/2)+sin(3*w/2)")
w=-3:0.01:3;
Hw=h*exp(-%i*n'*w);
figure
subplot(2,1,1)
plot(w,abs(Hw)/4)
xtitle('|H(w)|','w')
subplot(2,1,2)
plot(w(1:find(w==0)-1),phasemag(Hw(1:find(w==0)-1))*%pi/180)
a=gca();
a.y_location="origin";
xtitle('phase(H(w))','w')
plot(w(find(w==0)+1:$),phasemag(Hw(find(w==0)+1:$))*%pi/180)
|
534af9f6fd30e78d94b0f7c97de0cb50a396fe04 | 449d555969bfd7befe906877abab098c6e63a0e8 | /623/CH27/EX5.5.21/U5_C5_21.sce | 05d4aac6d62d54cca924e755a992e037c8dd2877 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,023 | sce | U5_C5_21.sce | //function for calculating the vibrational energy of O2 molecule
function[energy]=F(v)
energy=(((v+.5)*a)-(((v+.5)^2)*b))*h*c;
endfunction
//variable initialization
h=6.62*10^-34; //Plank's constant (joule second)
c=3*10^8; //Speed of light (m/s)
a=1580.36*100; //value of ωe (m-1)
b=12.07*100; //value of ωexe (m-1)
//Calculation of zero point energy
E0=F(0); //Zero point energy of the molecule (J)
//Calculation of vibrational Raman shift
shift=(F(1)-F(0))/(h*c); //Expected vibrational Raman shift (m-1)
printf("\nZero point energy = %.3e J\nExpected vibrational Raman shift = %.0f m-1",E0,shift);
|
1be3e2f1b98a49e54bfc1844bca603423282ef4e | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH14/EX14.11/11.sce | 6b75dc31dfba1d27d8e47a3f45c477651839d5a3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,016 | sce | 11.sce | clc
y=1.4;
cp=1.003; //kJ/kg K
T3=289; //K
T1=314; //K
p1=5.2; //bar
p2=1; //bar
capacity=6; //tonnes
R=287; //J/kg K
l=0.2; //m
T4=T3*(p1/p2)^((y-1)/y);
T2=T1*(p2/p1)^((y-1)/y);
disp("(i) C.O.P. =")
COP=T2/(T1-T2);
disp(COP)
disp("(ii) Mass of air in circulation")
e=cp*(T3-T2); //Refrigerating effect per kg of air
E=capacity*14000; //Refrigerating effect produced by the refrigerating machine in kJ/h
m=E/e/60;
disp("mass of air in circulation =")
disp(m)
disp("kg/min")
disp("Piston displacement of compressor")
V3=m*R*T3/p2/10^5;
V_swept=V3/2/240;
d_c=sqrt(V_swept/l/%pi*4);
disp("Diameter or bore of the compressor cylinder =")
disp(d_c*1000)
disp("mm")
disp("Piston displacement of expander")
V2=m*R*T2/p2/10^5;
V_swept=V2/2/240;
d_c=sqrt(V_swept/l/%pi*4);
disp("Diameter or bore of the expander cylinder =")
disp(d_c*1000)
disp("mm")
disp("(v) Power required to drive the unit")
W=capacity*14000/COP/3600;
disp("power =")
disp(W)
disp("kW") |
197d133e28c04eb98b319bde71eca3649a0b9d44 | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /Happy Halloween.sce | 5680a06f4cc4c6886d13fcfab32d037e7cc8ad6a | [] | no_license | Ahmad6543/Scenarios | cef76bf19d46e86249a6099c01928e4e33db5f20 | 6a4563d241e61a62020f76796762df5ae8817cc8 | refs/heads/master | 2023-03-18T23:30:49.653812 | 2020-09-23T06:26:05 | 2020-09-23T06:26:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 49,516 | sce | Happy Halloween.sce | Name=Happy Halloween
PlayerCharacters=HH Player
BotCharacters=HH Target L.bot;HH Target R.bot;HH Target B.bot
IsChallenge=true
Timelimit=30.0
PlayerProfile=HH Player
AddedBots=HH Target L.bot;HH Target R.bot;HH Target B.bot
PlayerMaxLives=0
BotMaxLives=0;0;0
PlayerTeam=1
BotTeams=2;2;2
MapName=happy_halloween_offset.map
MapScale=1.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1.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=Fun
WeaponHeroTag=
DifficultyTag=1
AuthorsTag=pleasewait
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=true
Description=Trick or Aiming
GameVersion=1.0.8.0
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
[Aim Profile]
Name=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=HH Target L
DodgeProfileNames=HH Dodging
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=100.0
DodgeProfileMinChangeTime=100.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=HH Target L
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=HH Target R
DodgeProfileNames=HH Dodging
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=100.0
DodgeProfileMinChangeTime=100.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=HH Target R
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=HH Target B
DodgeProfileNames=HH Dodging
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=100.0
DodgeProfileMinChangeTime=100.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=HH Target B
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Character Profile]
Name=HH Player
MaxHealth=100.0
WeaponProfileNames=HH Fully-auto;;;;;;;
MinRespawnDelay=0.000001
MaxRespawnDelay=0.000001
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=36.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=1.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=72.0
MainBBRadius=12.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=0.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=HH Target L
MaxHealth=120.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=3.0
MaxRespawnDelay=3.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=1.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=72.0
MainBBRadius=12.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=32.0
SpawnXOffset=-96.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=HH Target R
MaxHealth=120.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=3.0
MaxRespawnDelay=3.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=1.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=72.0
MainBBRadius=12.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=32.0
SpawnXOffset=96.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Character Profile]
Name=HH Target B
MaxHealth=120.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=3.0
MaxRespawnDelay=3.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=320.0
MaxCrouchSpeed=160.0
Acceleration=2560.0
AirAcceleration=16000.0
Friction=1.0
BrakingFrictionFactor=0.5
JumpVelocity=256.0
Gravity=1.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=1.000 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=1.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Spheroid
MainBBHeight=32.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=10.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Spheroid
ProjBBHeight=32.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=10.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.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=512.0
VerticalSpawnOffset=-128.0
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
[Dodge Profile]
Name=HH Dodging
MaxTargetDistance=100000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.1
BlockedMovementReactionMax=0.1
[Weapon Profile]
Name=HH Fully-auto
Type=Hitscan
ShotsPerClick=1
DamagePerShot=6.0
KnockbackFactor=0.0
TimeBetweenShots=0.05
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.1
ReloadTimeFromPartial=0.1
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=6.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=1.0
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.001
HitSoundCooldown=0.001
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
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=true
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=50
ADSFOVOverride=40.0
ADSFOVScale=Vertical (1:1)
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
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
128.000000 256.000000 272.000000
384.000000 256.000000 272.000000
384.000000 256.000000 192.000000
128.000000 256.000000 192.000000
128.000000 240.000000 272.000000
384.000000 240.000000 272.000000
384.000000 240.000000 192.000000
128.000000 240.000000 192.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 432.000000 272.000000
384.000000 432.000000 272.000000
384.000000 432.000000 192.000000
128.000000 432.000000 192.000000
128.000000 416.000000 272.000000
384.000000 416.000000 272.000000
384.000000 416.000000 192.000000
128.000000 416.000000 192.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 416.000000 192.000000
384.000000 416.000000 192.000000
384.000000 416.000000 176.000000
128.000000 416.000000 176.000000
128.000000 256.000000 192.000000
384.000000 256.000000 192.000000
384.000000 256.000000 176.000000
128.000000 256.000000 176.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 416.000000 272.000000
128.000000 416.000000 272.000000
128.000000 416.000000 192.000000
112.000000 416.000000 192.000000
112.000000 256.000000 272.000000
128.000000 256.000000 272.000000
128.000000 256.000000 192.000000
112.000000 256.000000 192.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 416.000000 288.000000
384.000000 416.000000 288.000000
384.000000 416.000000 272.000000
128.000000 416.000000 272.000000
128.000000 256.000000 288.000000
384.000000 256.000000 288.000000
384.000000 256.000000 272.000000
128.000000 256.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
384.000000 416.000000 272.000000
400.000000 416.000000 272.000000
400.000000 416.000000 192.000000
384.000000 416.000000 192.000000
384.000000 256.000000 272.000000
400.000000 256.000000 272.000000
400.000000 256.000000 192.000000
384.000000 256.000000 192.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
80.000000 224.000000 656.000000
160.000000 128.000000 656.000000
160.000000 144.000000 624.000000
160.000000 144.000000 656.000000
80.000000 224.000000 624.000000
80.000000 128.000000 624.000000
80.000000 128.000000 656.000000
160.000000 128.000000 624.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 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 3 1 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 1 6 5 7 0x00000000
brush
vertices
160.000000 144.000000 656.000000
352.000000 144.000000 656.000000
352.000000 144.000000 624.000000
160.000000 144.000000 624.000000
160.000000 128.000000 656.000000
352.000000 128.000000 656.000000
352.000000 128.000000 624.000000
160.000000 128.000000 624.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 144.000000 656.000000
432.000000 224.000000 656.000000
432.000000 224.000000 624.000000
352.000000 128.000000 624.000000
352.000000 144.000000 624.000000
432.000000 128.000000 656.000000
432.000000 128.000000 624.000000
352.000000 128.000000 656.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
80.000000 416.000000 656.000000
160.000000 416.000000 656.000000
160.000000 416.000000 624.000000
80.000000 288.000000 624.000000
80.000000 416.000000 624.000000
96.000000 288.000000 656.000000
96.000000 288.000000 624.000000
80.000000 288.000000 656.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
160.000000 416.000000 656.000000
352.000000 416.000000 656.000000
352.000000 416.000000 624.000000
224.000000 288.000000 624.000000
160.000000 416.000000 624.000000
288.000000 288.000000 656.000000
288.000000 288.000000 624.000000
224.000000 288.000000 656.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
320.000000 224.000000 656.000000
352.000000 224.000000 656.000000
352.000000 224.000000 624.000000
320.000000 224.000000 624.000000
320.000000 208.000000 656.000000
352.000000 208.000000 656.000000
352.000000 208.000000 624.000000
320.000000 208.000000 624.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
288.000000 160.000000 656.000000
320.000000 160.000000 656.000000
320.000000 160.000000 624.000000
288.000000 160.000000 624.000000
288.000000 144.000000 656.000000
320.000000 144.000000 656.000000
320.000000 144.000000 624.000000
288.000000 144.000000 624.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 160.000000 656.000000
224.000000 160.000000 656.000000
224.000000 160.000000 624.000000
192.000000 160.000000 624.000000
192.000000 144.000000 656.000000
224.000000 144.000000 656.000000
224.000000 144.000000 624.000000
192.000000 144.000000 624.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 224.000000 656.000000
192.000000 224.000000 656.000000
192.000000 224.000000 624.000000
160.000000 224.000000 624.000000
160.000000 208.000000 656.000000
192.000000 208.000000 656.000000
192.000000 208.000000 624.000000
160.000000 208.000000 624.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
80.000000 416.000000 672.000000
432.000000 416.000000 672.000000
432.000000 416.000000 656.000000
80.000000 416.000000 656.000000
80.000000 288.000000 672.000000
432.000000 288.000000 672.000000
432.000000 288.000000 656.000000
80.000000 288.000000 656.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 416.000000 656.000000
432.000000 416.000000 656.000000
432.000000 416.000000 624.000000
416.000000 288.000000 624.000000
352.000000 416.000000 624.000000
432.000000 288.000000 656.000000
432.000000 288.000000 624.000000
416.000000 288.000000 656.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
273.777710 448.000031 659.555542
284.444397 448.000031 670.222229
284.444397 480.000061 670.222229
256.000000 448.000031 688.000000
256.000000 480.000061 688.000000
273.777710 480.000061 659.555542
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 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 0 3 4 0x00000000
brush
vertices
256.000000 448.000000 656.000000
273.777710 448.000031 659.555542
273.777649 480.000061 659.555542
256.000000 448.000031 688.000000
255.999924 480.000061 688.000000
255.999924 480.000000 656.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 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
284.444397 448.000031 670.222229
288.000000 448.000000 688.000000
288.000000 480.000000 688.000061
256.000000 448.000000 688.000000
256.000000 480.000000 688.000061
284.444397 480.000061 670.222290
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 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
238.222244 448.000031 659.555603
256.000000 448.000000 656.000000
256.000061 480.000000 656.000000
256.000000 448.000000 688.000000
256.000061 480.000000 688.000000
238.222290 480.000061 659.555603
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 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
227.555573 448.000031 670.222290
238.222244 448.000031 659.555603
238.222244 480.000061 659.555603
256.000000 448.000031 688.000000
256.000000 480.000061 688.000000
227.555573 480.000061 670.222290
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 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 0 3 4 0x00000000
brush
vertices
224.000000 448.000000 688.000000
227.555573 448.000031 670.222290
227.555542 480.000061 670.222351
256.000000 448.000031 688.000000
255.999969 480.000061 688.000061
223.999969 480.000000 688.000061
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 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
227.555603 448.000031 705.777771
224.000000 448.000000 688.000000
224.000000 480.000000 687.999939
256.000000 448.000000 688.000000
256.000000 480.000000 687.999939
227.555603 480.000061 705.777710
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 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
238.222290 448.000031 716.444458
227.555603 448.000031 705.777771
227.555603 480.000061 705.777771
256.000000 448.000031 688.000000
256.000000 480.000061 688.000000
238.222290 480.000061 716.444458
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 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 0 3 4 0x00000000
brush
vertices
256.000000 448.000000 720.000000
238.222290 448.000031 716.444458
238.222366 480.000061 716.444458
256.000000 448.000031 688.000000
256.000061 480.000061 688.000000
256.000061 480.000000 720.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 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
273.777771 448.000031 716.444397
256.000000 448.000000 720.000000
255.999939 480.000000 720.000000
256.000000 448.000000 688.000000
255.999939 480.000000 688.000000
273.777710 480.000061 716.444397
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 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
284.444458 448.000031 705.777710
273.777771 448.000031 716.444397
273.777771 480.000061 716.444397
256.000000 448.000031 688.000000
256.000000 480.000061 688.000000
284.444458 480.000061 705.777710
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 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 0 3 4 0x00000000
brush
vertices
288.000000 448.000000 688.000000
284.444458 448.000031 705.777710
284.444427 480.000061 705.777649
256.000000 448.000031 688.000000
256.000031 480.000061 687.999939
288.000031 480.000000 687.999939
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 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 5 0x00000000
brush
vertices
80.000000 416.000000 784.000000
432.000000 416.000000 784.000000
432.000000 416.000000 768.000000
80.000000 416.000000 768.000000
80.000000 128.000000 784.000000
432.000000 128.000000 784.000000
432.000000 128.000000 768.000000
80.000000 128.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
128.000000 448.000000 784.000000
384.000000 448.000000 784.000000
384.000000 448.000000 624.000000
64.000000 416.000000 624.000000
128.000000 448.000000 624.000000
448.000000 416.000000 784.000000
448.000000 416.000000 624.000000
64.000000 416.000000 784.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
64.000000 416.000000 784.000000
80.000000 416.000000 784.000000
80.000000 416.000000 624.000000
64.000000 416.000000 624.000000
64.000000 128.000000 784.000000
80.000000 128.000000 784.000000
80.000000 128.000000 624.000000
64.000000 128.000000 624.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
432.000000 416.000000 784.000000
448.000000 416.000000 784.000000
448.000000 416.000000 624.000000
432.000000 416.000000 624.000000
432.000000 128.000000 784.000000
448.000000 128.000000 784.000000
448.000000 128.000000 624.000000
432.000000 128.000000 624.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
64.000000 128.000000 784.000000
448.000000 128.000000 784.000000
448.000000 128.000000 624.000000
96.000000 96.000000 624.000000
64.000000 128.000000 624.000000
416.000000 96.000000 784.000000
416.000000 96.000000 624.000000
96.000000 96.000000 784.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
256.000000 288.000000 768.000000
432.000000 288.000000 768.000000
432.000000 288.000000 624.000000
432.000000 240.000000 768.000000
256.000000 288.000000 624.000000
272.000000 240.000000 624.000000
272.000000 240.000000 768.000000
432.000000 240.000000 624.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
80.000000 288.000000 768.000000
256.000000 288.000000 768.000000
256.000000 288.000000 624.000000
80.000000 240.000000 624.000000
80.000000 288.000000 624.000000
240.000000 240.000000 768.000000
240.000000 240.000000 624.000000
80.000000 240.000000 768.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
80.000000 240.000000 768.000000
432.000000 240.000000 768.000000
432.000000 240.000000 624.000000
80.000000 240.000000 624.000000
80.000000 224.000000 768.000000
432.000000 224.000000 768.000000
432.000000 224.000000 624.000000
80.000000 224.000000 624.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
80.000000 224.000000 704.000000
432.000000 224.000000 704.000000
432.000000 224.000000 656.000000
80.000000 224.000000 656.000000
80.000000 128.000000 704.000000
432.000000 128.000000 704.000000
432.000000 128.000000 656.000000
80.000000 128.000000 656.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
80.000000 224.000000 768.000000
144.000000 224.000000 768.000000
144.000000 224.000000 704.000000
80.000000 224.000000 704.000000
80.000000 128.000000 768.000000
144.000000 128.000000 768.000000
144.000000 128.000000 704.000000
80.000000 128.000000 704.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
368.000000 224.000000 768.000000
432.000000 224.000000 768.000000
432.000000 224.000000 704.000000
368.000000 224.000000 704.000000
368.000000 128.000000 768.000000
432.000000 128.000000 768.000000
432.000000 128.000000 704.000000
368.000000 128.000000 704.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
80.000000 416.000000 768.000000
104.000000 416.000000 768.000000
104.000000 416.000000 672.000000
80.000000 416.000000 672.000000
80.000000 288.000000 768.000000
104.000000 288.000000 768.000000
104.000000 288.000000 672.000000
80.000000 288.000000 672.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
408.000000 416.000000 768.000000
432.000000 416.000000 768.000000
432.000000 416.000000 672.000000
408.000000 416.000000 672.000000
408.000000 288.000000 768.000000
432.000000 288.000000 768.000000
432.000000 288.000000 672.000000
408.000000 288.000000 672.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
104.000000 416.000000 768.000000
208.000000 416.000000 768.000000
208.000000 416.000000 736.000000
104.000000 416.000000 736.000000
104.000000 288.000000 768.000000
208.000000 288.000000 768.000000
208.000000 288.000000 736.000000
104.000000 288.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
208.000000 416.000000 768.000000
304.000000 416.000000 768.000000
304.000000 416.000000 672.000000
208.000000 416.000000 672.000000
208.000000 288.000000 768.000000
304.000000 288.000000 768.000000
304.000000 288.000000 672.000000
208.000000 288.000000 672.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
304.000000 416.000000 768.000000
408.000000 416.000000 768.000000
408.000000 416.000000 736.000000
304.000000 416.000000 736.000000
304.000000 288.000000 768.000000
408.000000 288.000000 768.000000
408.000000 288.000000 736.000000
304.000000 288.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
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 256.000000 256.000000 256.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 256.000000 256.000000 704.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
df76fb1bfe6213e7dce9154f10c6224dc3798334 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1241/DEPENDENCIES/decimal2binary.sci | 7b7b04259d9880a95b61fd2e4278c00a503cd262 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 866 | sci | decimal2binary.sci | clc
//clears the console//
clear
//clears all existing variables//
function y=decimal2binary(a)
q=0
b=0
s=0
//initialising//
d=modulo(a,1)
//separating the decimal part from the integer//
a=floor(a)
//removing the decimal part//
while(a>0)
//integer part converted to equivalent binary form//
x=modulo(a,2)
b=b+(10^q)*x
a=a/2
a=floor(a)
q=q+1
end
for i=1: 10
//taking values after the decimal part and converting to equivalent binary form//
d=d*2
q=floor(d)
s=s+q/(10^i)
if d>=1 then
d=d-1
end
end
y=b+s
endfunction
Scilab Code Exa 2-50
//Example 2-50//
//addition of binary numbers//
clc
//clears the window//
clear
//clears all existing variables//
x=binary2decimal(11.011)
y=binary2decimal(10.001)
z=x+y
a=decimal2binary(z)
disp('the addition of the binary numbers is :')
disp(a)
//result is displayed//
|
d577b80e022ed31cf21637c6c58d18d32447c4f4 | f7e8957b439bfb36ee8418d048e8bb3da2015c6b | /text1.tst | fb5333cb0d093928ca367c09b4da7cf3fc7428b1 | [] | no_license | DevOpsFirstBach1/Practise1Uma | 12934cc942113c9ca378609c4c4623e7f268d535 | 3a2f49d1e61fac2c4a0097d4b4ff6a7fe3c74a93 | refs/heads/master | 2020-03-25T04:14:24.251806 | 2018-08-08T17:31:45 | 2018-08-08T17:31:45 | 143,384,751 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 32 | tst | text1.tst | second file
pratice file
adding
|
04f3572225b4f30e7f6ac6a70babaa6f6e866ae7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3828/CH2/EX2.4/Ex2_4.sce | bb219d5dc7a045b48ec3f44446b2f92b618e84e8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sce | Ex2_4.sce |
//Chapter 2 : Diffraction
clear;
//Variable declaration
a=2*10**-4 //slit width
lamda=6*10**-7 //wavelength
//Calculations
theta=asin(lamda/a)
TLW=4*theta/10**-2
theta1=asin(lamda/a)/10**-3
//Result
mprintf("Total linear width= %.1f cm",TLW)
mprintf("\nAngular position of the minima= %d*10**-3 radian",theta1)
|
9a5791d5e5947ee6dd0d47518f36447962d37b28 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2267/CH10/EX2.5/Ex10_5.sce | 5501b69d598004ba13e56b38ed4517580ded9ec7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 758 | sce | Ex10_5.sce | //Part B Chapter 2 Example 5
clc;
clear;
close;
format('v',6);
sigma1=100;//N/m^2
sigma2=-50;//N/m^2
tau=0;//N/mm^2
theta=60;//degree
sigma_n=(sigma1+sigma2)/2+(sigma1-sigma2)/2*cosd(2*theta);//N/mm^2
sigma_t=(sigma1-sigma2)/2*sind(2*theta);//N/mm^2
sigma=sqrt(sigma_n^2+sigma_t^2);//N/mm^2
disp(sigma_n,"Value of sigma_n(compressive) in N/mm^2 : ");
disp(sigma_t,"Value of sigma_t in N/mm^2 : ");
disp(sigma,"Value of resultant stress in N/mm^2 : ");
alfa=1/2*asind(-(sigma1+sigma2)/2/sqrt((sigma1-sigma2)^2/4))-45;//degree
disp("Plane of whole shear is "+string(alfa)+" degree with plane AD");
sigma_t_alfa=(sigma1-sigma2)/2*sind(2*alfa)-tau*cosd(2*alfa);//N/mm^2
disp(sigma_t_alfa,"Value of shear stresses at this plane in N/mm^2 : ");
|
08faa83e0c77add0fa74e833a9d7b7817aa914a2 | 04101e89f0980b65ec0350667a3cbf16ccd56630 | /Lanczos_Eigenvalues.sce | 61f137c889bc8e6636ca42ef74413380e6106cc2 | [] | no_license | francissinco/Numerical-Analysis-in-Scilab | a810d30dc1ba032a6a9bc37a6f5345185781380e | 51f9d2da4d31e865be158bea2b7cf563ccbe21eb | refs/heads/master | 2021-01-10T11:45:15.197910 | 2016-05-06T10:34:45 | 2016-05-06T10:34:45 | 52,008,949 | 0 | 0 | null | 2016-05-06T10:34:45 | 2016-02-18T13:27:34 | Scilab | UTF-8 | Scilab | false | false | 1,207 | sce | Lanczos_Eigenvalues.sce | //Francis Brylle G. Sinco
//MS Applied Mathematics
//Math 271.1
//University of the Philippines - Diliman
//02 October 2010
//This program implements the Lanczos Method for finding the eigenvalues of a given symmetric matrix
n=10; //size of the matrix
b=0; //initial guess for beta
q0=zeros(n,1); //initial guess for the orthogonal vector
q=[1; zeros(n-1,1)];
dummy=b*q0;
Z=rand(n,n);
A=Z'*Z; //symmetric positive definite (spd) matrix
Q=zeros(n,n); //matrix whose column vectors are orthogonal each
F=zeros(n,1); // vector of alphas
B=zeros(n,1); //vector of betas
for i=1:n //iteration for the Lanczos Method
Q(:,i)=q;
p=A*q;
alpha=q'*p;
w=p-(alpha)*(q)-dummy;
b=sqrt(w'*w);
dummy=b*q;
q=w/b;
F(i)=alpha;
B(i)=b;
end;
F=diag(F);
B=B(1:n-1);
B=diag(B);
B1=[zeros(1,n); B zeros(n-1,1)]; //lower-diagonal matrix
B2=[zeros(n-1,1) B; zeros(1,n)]; //upper-diagonal matrix
B=B1+B2;
S=B+F; //tridiagonal matrix
disp(Q);
disp(S);
A0=Q*S*Q'; //approximation of A using the Lanczos method
disp(A);
disp(A0);
//note that since A=QSQ' and Q is orthogonal, then A and S have the same characteristic polynomial, and hence, eigenvalues.
spec(A) //eigenvalues of A
spec(S) //eigenvalues of S
|
585025c2f0e256b55f38c08475ee1c7ff86572ed | 449d555969bfd7befe906877abab098c6e63a0e8 | /3492/CH5/EX5.5/Ex5_5.sce | 323882548750dd08f740fa2fbf8887196b248141 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 550 | sce | Ex5_5.sce | clc
//Chapter5
//Ex_5
//Given
Na=2*10^17 //acceptor atoms /cm3
Nd=10^16 //acceptor atoms /cm3
ni=1.45*10^10 //in cm^-3
K=0.0259 // in eV
//since Nd>>ni
n=Nd
//let EFn-EFi=E
E=K*log(Nd/ni)
disp(E,"Position of the fermi energy w.r.t fermi energy in intrinsic Si in eV is")
//for intrinsic Si
//ni=Nc*exp(-(Ec-E_Fi)/(k*T))
//for doped Si
//Nd=Nc*exp(-(Ec-E_Fn)/(k*T))
//let x=Nd/ni
//let K=k*T
p=Na-Nd
//let E=EFp-EFi
//let n=p/ni
E=-K*log(p/ni)
disp(E,"Position of the fermi energy w.r.t fermi energy in n-type case in eV is")
|
1133816669ace6fc3507899273189532af25fc2a | 5c99f90e816244fbea65c73357432fb54ac25d09 | /dynamic_updated_varun.sce | 1c334a86affdc92f494fc5582bb384823d93c656 | [] | no_license | varunkamble/story_book | 6301153ce6898a4275f99017facd814ea1df1633 | 0bc1f9d059b9cc718e36ea0b8da4a53dd24812d3 | refs/heads/master | 2020-03-26T05:27:21.794874 | 2018-10-21T17:15:34 | 2018-10-21T17:15:34 | 144,558,147 | 0 | 1 | null | 2018-09-18T13:33:23 | 2018-08-13T09:31:05 | Python | UTF-8 | Scilab | false | false | 2,440 | sce | dynamic_updated_varun.sce | clc;
total_ch = 50;
control_ch = 12;
traffic_ch = 38;
prior(1:38) = grand(38,1,"uin",1,10);
x = zeros(1,38);
for i = 1:38
x(i) = prior(i);
end
count_high = 1;
count_low = 1;
for i = 1:traffic_ch
if (x(i) <= 5) then
high_index(count_high) = i;
high_priority(count_high) = prior(i);
count_high = count_high + 1;
else
low_index(count_low) = i;
low_priority(count_low) = prior(i);
count_low = count_low + 1;
end
end
printf("High priority channels:\n");
for i = 1:(count_high - 1)
printf("Ch num :%d, priorty : %d\n", high_index(i), high_priority(i));
end
printf("\nLow priority channels:\n");
for i = 1:(count_low - 1)
printf("Ch num :%d, priorty :%d\n", low_index(i), low_priority(i));
end
disp("Number of high proirity channels");
disp(count_high);
disp("Number of low proirity channels");
disp(count_low);
disp('Enter valid cluster size(upto 9): ');
clust = input("");
call_demand = zeros(1, clust);
total_demand = 0;
for i = 1:clust
printf("Enter call demand for cell %d: ",i);
temp = input("");
call_demand(i) = temp;
total_demand = total_demand + temp;
end
for i = 1:clust
percent_demand(i) = ( (call_demand(i))/ (total_demand) );
end
for i = 1:clust
num_channels(i) = traffic_ch * percent_demand(i);
end
disp(call_demand);
disp(total_demand);
disp(percent_demand);
disp(num_channels);
indh = 1
indl = 1
cnt = 1
for i = 1:clust
printf("\n Printing cell allocated to cell %d:\n",i);
ch_to_be_alloc = ceil(num_channels(i));
disp("Number of channels to be allotated");
disp(ch_to_be_alloc);
traffic_ch = traffic_ch - ch_to_be_alloc;
if traffic_ch < 0 then
traffic_ch = traffic_ch + ch_to_be_alloc;
ch_to_be_alloc = floor(num_channels(i));
traffic_ch = traffic_ch - ch_to_be_alloc;
end
high_alloc = floor(percent_demand(i)*count_high);
low_alloc = ch_to_be_alloc - high_alloc;
disp("number of high channels");
disp(high_alloc);
disp("number of low channels");
disp(low_alloc);
for k = 1:high_alloc
if indh < count_high then
printf("high %d:%d, ", high_index(indh),high_priority(indh));
indh = indh + 1;
end
end
for j = 1:low_alloc
if indl < count_low then
printf("low %d:%d, ", low_index(indl),low_priority(indl));
indl = indl + 1;
end
end
end
|
f4b27b3a0171767916f6911b4cdefb1ba74bc4db | 0cb85cd0c88a9b9f0cca4472742c2bf9febef2d8 | /klava/kernel/tests/klaviotest/tests/vio_data1.tst | a7fb79345e1c8bf41c1287c2dd1240c47b22ece5 | [] | no_license | seth1002/antivirus-1 | 9dfbadc68e16e51f141ac8b3bb283c1d25792572 | 3752a3b20e1a8390f0889f6192ee6b851e99e8a4 | refs/heads/master | 2020-07-15T00:30:19.131934 | 2016-07-21T13:59:11 | 2016-07-21T13:59:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 150 | tst | vio_data1.tst | # vio_data1.tst
#
# (open data1.dat in VIO mode with offset 0)
#
open "data1.dat"
expect 0
vio 0 on
expect 0
get_size
expect 0 5716
|
319d8d5203a32b24f45fda64e92ff81d1653539c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1658/CH27/EX27.12/Ex27_12.sce | 10d12cb65fa314102746474c31a51a5876b66daa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex27_12.sce | clc;
//e.g 27.12
AV=1000;
f1=50;
f2=200*10**3;
D=0.05;
beta=0.01;
AV1=AV/(1+beta*AV);
disp(AV1);
fl1=f1/(1+beta*AV);
disp('HZ',fl1,"fl1=");
fu2=(1+beta*AV)*f2;
disp('MHZ',fu2*10**-6,"fu2=");
D1=D/(1+beta*AV);
disp('%',D1*100,"D1=");
|
a10217e3df4dbd01bb1073a8fdf8f03abf1b1d1f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3363/CH11/EX11.5/Ex11_5.sce | 34c6e23a904b69712e3dcf958c3a943a319c7253 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sce | Ex11_5.sce | //Example 11.3, page 424
clc
disp('Part a')
A=108//in g/mole
M=10.5//in g/cm3
D=6.02*10^23//in atom/mole
n=(D*M)/A
h=6.6*10^-34
printf("\n The fermi energy is %e electron/cm^3",n)
m=9.1*10^-31//in kg
n=5.9*10^28//per m^2
x=((3*n)/(%pi))^(2/3)
Ef=(h^2/(8*m))*x
printf("\n The energy is %e J",Ef)
disp('part b')
K=1.38*10^-23//in J-K
T=300//in K
z=(n*h^3)/(2*%pi*m*K*T)^(3/2)
printf("\n The degeneracy term is %e ",z)
//Anser difference is because of round off
|
9a16b9ba12ff91b7202df9ba1868288f889d6e81 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2672/CH4/EX4.10/Ex4_10.sce | e68b8714fe2ade085c769ca51c4015729a59f665 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 328 | sce | Ex4_10.sce | //Example 4_10
clc;
clear;
close;
format('v',7)
//given data :
h=1.05*10^-34;//Js//Planks Constant
mc=0.067;//mo
mc=mc*0.91*10^-30;//kg
n0=10^18;//cm^-3
n0=n0*10^6;//m^-3
EF=(h^2/2/mc)*(3*%pi^2*n0)^(2/3);//J
EF=EF/(1.6*10^-19);//eV
disp(EF,"Position of fermi level(eV)");
//Answer given in the textbook is wrong
|
0cd2d67ad4315c0405a9c6663d4445002aeeedbb | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/NP75WZC/ATWM1_Working_Memory_MEG_NP75WZC_Session1/ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run1.sce | b74a490f93cb5a5deb458cde98f25c199ceedaf1 | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 49,600 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run1.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 28;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 300; width = 300; color = 0, 0, 0;} frame1;
box { height = 290; width = 290; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 290; width = 290; color = 128, 128, 128;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
43 62 292 292 399 125 1792 2992 2592 fixation_cross gabor_003 gabor_161 gabor_089 gabor_042 gabor_003_alt gabor_161 gabor_089 gabor_042_alt "1_1_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2600_gabor_patch_orientation_003_161_089_042_target_position_2_3_retrieval_position_2" gabor_circ gabor_161_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_1_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1942 2992 2142 fixation_cross gabor_062 gabor_091 gabor_151 gabor_033 gabor_062_alt gabor_091_alt gabor_151 gabor_033 "1_2_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2150_gabor_patch_orientation_062_091_151_033_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_172_framed blank blank blank blank fixation_cross_target_position_3_4 "1_2_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_172_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2042 2992 2342 fixation_cross gabor_003 gabor_175 gabor_065 gabor_087 gabor_003 gabor_175_alt gabor_065_alt gabor_087 "1_3_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_003_175_065_087_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_087_framed blank blank blank blank fixation_cross_target_position_1_4 "1_3_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1742 2992 2142 fixation_cross gabor_159 gabor_018 gabor_179 gabor_098 gabor_159_alt gabor_018_alt gabor_179 gabor_098 "1_4_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_159_018_179_098_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_179_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_4_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2142 2992 1992 fixation_cross gabor_143 gabor_003 gabor_109 gabor_126 gabor_143_alt gabor_003_alt gabor_109 gabor_126 "1_5_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2000_gabor_patch_orientation_143_003_109_126_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_109_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_5_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_109_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 2242 2992 2092 fixation_cross gabor_134 gabor_167 gabor_048 gabor_102 gabor_134 gabor_167_alt gabor_048 gabor_102_alt "1_6_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2100_gabor_patch_orientation_134_167_048_102_target_position_1_3_retrieval_position_2" gabor_circ gabor_118_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_6_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_118_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1942 2992 2292 fixation_cross gabor_134 gabor_028 gabor_001 gabor_091 gabor_134_alt gabor_028_alt gabor_001 gabor_091 "1_7_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2300_gabor_patch_orientation_134_028_001_091_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_046_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_7_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_046_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2242 2992 1942 fixation_cross gabor_059 gabor_079 gabor_033 gabor_165 gabor_059 gabor_079_alt gabor_033_alt gabor_165 "1_8_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_059_079_033_165_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_165_framed blank blank blank blank fixation_cross_target_position_1_4 "1_8_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_165_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1742 2992 2092 fixation_cross gabor_074 gabor_097 gabor_008 gabor_131 gabor_074 gabor_097_alt gabor_008 gabor_131_alt "1_9_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_074_097_008_131_target_position_1_3_retrieval_position_1" gabor_074_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_9_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_074_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2092 2992 2342 fixation_cross gabor_170 gabor_046 gabor_063 gabor_010 gabor_170 gabor_046 gabor_063_alt gabor_010_alt "1_10_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2350_gabor_patch_orientation_170_046_063_010_target_position_1_2_retrieval_position_1" gabor_170_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_10_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1792 2992 2192 fixation_cross gabor_110 gabor_150 gabor_040 gabor_089 gabor_110_alt gabor_150 gabor_040_alt gabor_089 "1_11_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_2200_gabor_patch_orientation_110_150_040_089_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_040_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_11_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_040_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2092 2992 2192 fixation_cross gabor_146 gabor_034 gabor_095 gabor_056 gabor_146_alt gabor_034 gabor_095 gabor_056_alt "1_12_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2200_gabor_patch_orientation_146_034_095_056_target_position_2_3_retrieval_position_2" gabor_circ gabor_034_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_12_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1842 2992 2542 fixation_cross gabor_090 gabor_063 gabor_174 gabor_143 gabor_090_alt gabor_063 gabor_174_alt gabor_143 "1_13_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2550_gabor_patch_orientation_090_063_174_143_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_003_framed blank blank blank blank fixation_cross_target_position_2_4 "1_13_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1842 2992 2242 fixation_cross gabor_088 gabor_016 gabor_148 gabor_178 gabor_088 gabor_016_alt gabor_148 gabor_178_alt "1_14_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_088_016_148_178_target_position_1_3_retrieval_position_1" gabor_088_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_14_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_088_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_094 gabor_008 gabor_070 gabor_113 gabor_094 gabor_008 gabor_070_alt gabor_113_alt "1_15_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_094_008_070_113_target_position_1_2_retrieval_position_1" gabor_094_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_15_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_094_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 2192 2992 2442 fixation_cross gabor_066 gabor_092 gabor_146 gabor_024 gabor_066_alt gabor_092 gabor_146_alt gabor_024 "1_16_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2200_3000_2450_gabor_patch_orientation_066_092_146_024_target_position_2_4_retrieval_position_1" gabor_066_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_16_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_066_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1942 2992 1942 fixation_cross gabor_163 gabor_123 gabor_013 gabor_047 gabor_163_alt gabor_123 gabor_013_alt gabor_047 "1_17_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_1950_gabor_patch_orientation_163_123_013_047_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_097_framed blank blank blank blank fixation_cross_target_position_2_4 "1_17_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2242 2992 2592 fixation_cross gabor_135 gabor_179 gabor_155 gabor_028 gabor_135 gabor_179_alt gabor_155 gabor_028_alt "1_18_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_135_179_155_028_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_105_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_18_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_105_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1892 2992 1942 fixation_cross gabor_068 gabor_013 gabor_174 gabor_047 gabor_068 gabor_013 gabor_174_alt gabor_047_alt "1_19_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_1950_gabor_patch_orientation_068_013_174_047_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_094_framed blank blank blank blank fixation_cross_target_position_1_2 "1_19_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_094_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1842 2992 1942 fixation_cross gabor_133 gabor_111 gabor_087 gabor_028 gabor_133_alt gabor_111_alt gabor_087 gabor_028 "1_20_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_133_111_087_028_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_163_framed blank blank blank blank fixation_cross_target_position_3_4 "1_20_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_163_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2042 2992 1992 fixation_cross gabor_137 gabor_163 gabor_007 gabor_074 gabor_137_alt gabor_163 gabor_007_alt gabor_074 "1_21_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_137_163_007_074_target_position_2_4_retrieval_position_2" gabor_circ gabor_117_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_21_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_117_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2242 2992 2292 fixation_cross gabor_058 gabor_118 gabor_140 gabor_035 gabor_058 gabor_118 gabor_140_alt gabor_035_alt "1_22_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_058_118_140_035_target_position_1_2_retrieval_position_1" gabor_010_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_22_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2042 2992 2192 fixation_cross gabor_067 gabor_027 gabor_134 gabor_152 gabor_067 gabor_027_alt gabor_134_alt gabor_152 "1_23_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_067_027_134_152_target_position_1_4_retrieval_position_1" gabor_067_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_23_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2142 2992 2392 fixation_cross gabor_175 gabor_057 gabor_032 gabor_141 gabor_175_alt gabor_057 gabor_032_alt gabor_141 "1_24_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2400_gabor_patch_orientation_175_057_032_141_target_position_2_4_retrieval_position_2" gabor_circ gabor_057_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_24_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_057_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1992 2992 2342 fixation_cross gabor_124 gabor_177 gabor_067 gabor_147 gabor_124_alt gabor_177_alt gabor_067 gabor_147 "1_25_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_124_177_067_147_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_067_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_25_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2092 2992 2592 fixation_cross gabor_171 gabor_058 gabor_089 gabor_013 gabor_171 gabor_058_alt gabor_089 gabor_013_alt "1_26_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2600_gabor_patch_orientation_171_058_089_013_target_position_1_3_retrieval_position_1" gabor_034_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_26_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1842 2992 1992 fixation_cross gabor_043 gabor_064 gabor_180 gabor_022 gabor_043_alt gabor_064 gabor_180_alt gabor_022 "1_27_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_043_064_180_022_target_position_2_4_retrieval_position_2" gabor_circ gabor_111_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_27_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_111_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 2142 2992 2292 fixation_cross gabor_080 gabor_016 gabor_064 gabor_146 gabor_080 gabor_016_alt gabor_064 gabor_146_alt "1_28_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2150_3000_2300_gabor_patch_orientation_080_016_064_146_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_146_framed blank blank blank blank fixation_cross_target_position_1_3 "1_28_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_146_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1742 2992 1892 fixation_cross gabor_113 gabor_008 gabor_150 gabor_042 gabor_113_alt gabor_008 gabor_150_alt gabor_042 "1_29_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_113_008_150_042_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_091_framed blank blank blank blank fixation_cross_target_position_2_4 "1_29_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_091_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1892 2992 2242 fixation_cross gabor_177 gabor_149 gabor_065 gabor_132 gabor_177_alt gabor_149 gabor_065 gabor_132_alt "1_30_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_177_149_065_132_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_019_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_30_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_019_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_059 gabor_025 gabor_133 gabor_089 gabor_059 gabor_025 gabor_133_alt gabor_089_alt "1_31_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_059_025_133_089_target_position_1_2_retrieval_position_1" gabor_059_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_31_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_059_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2042 2992 2142 fixation_cross gabor_071 gabor_055 gabor_180 gabor_026 gabor_071 gabor_055 gabor_180_alt gabor_026_alt "1_32_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2150_gabor_patch_orientation_071_055_180_026_target_position_1_2_retrieval_position_1" gabor_071_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_32_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1892 2992 2092 fixation_cross gabor_055 gabor_164 gabor_083 gabor_111 gabor_055_alt gabor_164_alt gabor_083 gabor_111 "1_33_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2100_gabor_patch_orientation_055_164_083_111_target_position_3_4_retrieval_position_1" gabor_055_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_33_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_055_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2192 2992 2392 fixation_cross gabor_017 gabor_167 gabor_148 gabor_040 gabor_017 gabor_167_alt gabor_148 gabor_040_alt "1_34_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_017_167_148_040_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_148_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_34_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1792 2992 2292 fixation_cross gabor_115 gabor_098 gabor_028 gabor_144 gabor_115_alt gabor_098 gabor_028 gabor_144_alt "1_35_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_115_098_028_144_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_075_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_35_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1792 2992 2192 fixation_cross gabor_128 gabor_067 gabor_019 gabor_096 gabor_128_alt gabor_067 gabor_019_alt gabor_096 "1_36_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2200_gabor_patch_orientation_128_067_019_096_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_096_framed blank blank blank blank fixation_cross_target_position_2_4 "1_36_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_096_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1892 2992 2442 fixation_cross gabor_096 gabor_010 gabor_121 gabor_032 gabor_096_alt gabor_010_alt gabor_121 gabor_032 "1_37_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_2450_gabor_patch_orientation_096_010_121_032_target_position_3_4_retrieval_position_1" gabor_048_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_37_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_048_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1792 2992 2292 fixation_cross gabor_093 gabor_038 gabor_003 gabor_062 gabor_093_alt gabor_038 gabor_003 gabor_062_alt "1_38_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_093_038_003_062_target_position_2_3_retrieval_position_2" gabor_circ gabor_176_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_38_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_176_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1792 2992 1992 fixation_cross gabor_172 gabor_142 gabor_091 gabor_004 gabor_172_alt gabor_142_alt gabor_091 gabor_004 "1_39_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_172_142_091_004_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_053_framed blank blank blank blank fixation_cross_target_position_3_4 "1_39_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_053_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1842 2992 2042 fixation_cross gabor_055 gabor_037 gabor_092 gabor_165 gabor_055_alt gabor_037_alt gabor_092 gabor_165 "1_40_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_055_037_092_165_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_165_framed blank blank blank blank fixation_cross_target_position_3_4 "1_40_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_165_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2092 2992 2392 fixation_cross gabor_001 gabor_063 gabor_108 gabor_133 gabor_001 gabor_063 gabor_108_alt gabor_133_alt "1_41_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_001_063_108_133_target_position_1_2_retrieval_position_1" gabor_001_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_41_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 2042 2992 2242 fixation_cross gabor_145 gabor_113 gabor_007 gabor_033 gabor_145 gabor_113_alt gabor_007_alt gabor_033 "1_42_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2050_3000_2250_gabor_patch_orientation_145_113_007_033_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_007_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_42_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_007_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2192 2992 2192 fixation_cross gabor_121 gabor_005 gabor_162 gabor_091 gabor_121 gabor_005 gabor_162_alt gabor_091_alt "1_43_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2200_gabor_patch_orientation_121_005_162_091_target_position_1_2_retrieval_position_1" gabor_073_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_43_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_073_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1992 2992 1992 fixation_cross gabor_168 gabor_010 gabor_086 gabor_057 gabor_168_alt gabor_010 gabor_086 gabor_057_alt "1_44_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_2000_gabor_patch_orientation_168_010_086_057_target_position_2_3_retrieval_position_1" gabor_168_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_44_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_168_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1842 2992 1942 fixation_cross gabor_046 gabor_068 gabor_085 gabor_018 gabor_046_alt gabor_068_alt gabor_085 gabor_018 "1_45_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_046_068_085_018_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_018_framed blank blank blank blank fixation_cross_target_position_3_4 "1_45_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_018_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2142 2992 2492 fixation_cross gabor_010 gabor_172 gabor_055 gabor_084 gabor_010_alt gabor_172_alt gabor_055 gabor_084 "1_46_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2500_gabor_patch_orientation_010_172_055_084_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_100_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_46_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_100_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2142 2992 2142 fixation_cross gabor_124 gabor_084 gabor_015 gabor_050 gabor_124_alt gabor_084 gabor_015_alt gabor_050 "1_47_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2150_gabor_patch_orientation_124_084_015_050_target_position_2_4_retrieval_position_2" gabor_circ gabor_034_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_47_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1742 2992 2492 fixation_cross gabor_085 gabor_103 gabor_137 gabor_163 gabor_085_alt gabor_103 gabor_137 gabor_163_alt "1_48_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2500_gabor_patch_orientation_085_103_137_163_target_position_2_3_retrieval_position_2" gabor_circ gabor_053_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_48_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_053_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1992 2992 2542 fixation_cross gabor_167 gabor_138 gabor_088 gabor_009 gabor_167 gabor_138_alt gabor_088 gabor_009_alt "1_49_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_167_138_088_009_target_position_1_3_retrieval_position_1" gabor_028_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_49_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_028_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1742 2992 2492 fixation_cross gabor_081 gabor_131 gabor_002 gabor_159 gabor_081_alt gabor_131 gabor_002_alt gabor_159 "1_50_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2500_gabor_patch_orientation_081_131_002_159_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_021_framed blank blank blank blank fixation_cross_target_position_2_4 "1_50_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_021_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1992 2992 1892 fixation_cross gabor_162 gabor_095 gabor_028 gabor_010 gabor_162_alt gabor_095_alt gabor_028 gabor_010 "1_51_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_162_095_028_010_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_078_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_51_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_078_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2092 2992 2542 fixation_cross gabor_089 gabor_173 gabor_055 gabor_144 gabor_089_alt gabor_173 gabor_055 gabor_144_alt "1_52_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_089_173_055_144_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_010_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_52_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 2142 2992 2542 fixation_cross gabor_004 gabor_115 gabor_085 gabor_026 gabor_004 gabor_115_alt gabor_085 gabor_026_alt "1_53_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2150_3000_2550_gabor_patch_orientation_004_115_085_026_target_position_1_3_retrieval_position_2" gabor_circ gabor_067_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_53_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_067_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1942 2992 2592 fixation_cross gabor_132 gabor_089 gabor_023 gabor_048 gabor_132 gabor_089_alt gabor_023 gabor_048_alt "1_54_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2600_gabor_patch_orientation_132_089_023_048_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_158_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_54_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1892 2992 2242 fixation_cross gabor_164 gabor_136 gabor_080 gabor_097 gabor_164 gabor_136 gabor_080_alt gabor_097_alt "1_55_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_164_136_080_097_target_position_1_2_retrieval_position_1" gabor_164_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_55_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_164_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1892 2992 1892 fixation_cross gabor_037 gabor_010 gabor_124 gabor_156 gabor_037 gabor_010_alt gabor_124 gabor_156_alt "1_56_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_037_010_124_156_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_174_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_56_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1892 2992 2092 fixation_cross gabor_064 gabor_148 gabor_129 gabor_019 gabor_064 gabor_148_alt gabor_129_alt gabor_019 "1_57_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_064_148_129_019_target_position_1_4_retrieval_position_1" gabor_064_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_57_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_064_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1942 2992 2442 fixation_cross gabor_063 gabor_148 gabor_008 gabor_033 gabor_063_alt gabor_148_alt gabor_008 gabor_033 "1_58_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_2450_gabor_patch_orientation_063_148_008_033_target_position_3_4_retrieval_position_2" gabor_circ gabor_098_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_58_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_098_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2192 2992 2442 fixation_cross gabor_082 gabor_008 gabor_137 gabor_122 gabor_082_alt gabor_008 gabor_137_alt gabor_122 "1_59_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2450_gabor_patch_orientation_082_008_137_122_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_122_framed blank blank blank blank fixation_cross_target_position_2_4 "1_59_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_122_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1992 2992 1892 fixation_cross gabor_094 gabor_138 gabor_162 gabor_111 gabor_094 gabor_138_alt gabor_162 gabor_111_alt "1_60_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_094_138_162_111_target_position_1_3_retrieval_position_1" gabor_094_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_60_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_094_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2192 2992 2142 fixation_cross gabor_081 gabor_012 gabor_047 gabor_065 gabor_081_alt gabor_012 gabor_047 gabor_065_alt "1_61_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2150_gabor_patch_orientation_081_012_047_065_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_047_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_61_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_047_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2042 2992 2492 fixation_cross gabor_102 gabor_135 gabor_079 gabor_028 gabor_102 gabor_135_alt gabor_079 gabor_028_alt "1_62_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2500_gabor_patch_orientation_102_135_079_028_target_position_1_3_retrieval_position_1" gabor_102_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_62_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1842 2992 2342 fixation_cross gabor_093 gabor_065 gabor_129 gabor_008 gabor_093_alt gabor_065 gabor_129 gabor_008_alt "1_63_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_2350_gabor_patch_orientation_093_065_129_008_target_position_2_3_retrieval_position_1" gabor_093_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_63_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_093_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2242 2992 2342 fixation_cross gabor_049 gabor_097 gabor_022 gabor_007 gabor_049 gabor_097_alt gabor_022 gabor_007_alt "1_64_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_049_097_022_007_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_069_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_64_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_069_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1942 2992 2092 fixation_cross gabor_087 gabor_026 gabor_006 gabor_114 gabor_087_alt gabor_026_alt gabor_006 gabor_114 "1_65_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_087_026_006_114_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_051_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_65_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_051_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2242 2992 2042 fixation_cross gabor_142 gabor_096 gabor_166 gabor_055 gabor_142_alt gabor_096_alt gabor_166 gabor_055 "1_66_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2050_gabor_patch_orientation_142_096_166_055_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_055_framed blank blank blank blank fixation_cross_target_position_3_4 "1_66_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1792 2992 2242 fixation_cross gabor_016 gabor_055 gabor_144 gabor_034 gabor_016 gabor_055_alt gabor_144_alt gabor_034 "1_67_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2250_gabor_patch_orientation_016_055_144_034_target_position_1_4_retrieval_position_2" gabor_circ gabor_104_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_67_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_104_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1992 2992 1892 fixation_cross gabor_143 gabor_089 gabor_060 gabor_179 gabor_143_alt gabor_089 gabor_060 gabor_179_alt "1_68_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_143_089_060_179_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_060_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_68_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 2192 2992 2392 fixation_cross gabor_156 gabor_177 gabor_112 gabor_048 gabor_156_alt gabor_177_alt gabor_112 gabor_048 "1_69_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2200_3000_2400_gabor_patch_orientation_156_177_112_048_target_position_3_4_retrieval_position_2" gabor_circ gabor_130_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_69_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_130_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2092 2992 2042 fixation_cross gabor_144 gabor_011 gabor_062 gabor_123 gabor_144_alt gabor_011 gabor_062_alt gabor_123 "1_70_Encoding_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2050_gabor_patch_orientation_144_011_062_123_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_173_framed blank blank blank blank fixation_cross_target_position_2_4 "1_70_Retrieval_Working_Memory_MEG_P7_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
d7b33ba528bd0a9a40ded36f3718713a58711b80 | 449d555969bfd7befe906877abab098c6e63a0e8 | /632/CH4/EX4.9/example4_9.sce | c8055a3e92978eb265a5c528ec9c071b9e7de78c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 511 | sce | example4_9.sce | //clc()
V = 100;//m^3
Ptotal = 100;//kPa
Pwater = 4;//kPa
Pair = Ptotal - Pwater;
T = 300;//K
T1 = 275;//K
Vstp = 22.4143;//m^3/kmol
Tstp = 273.15;//K
Pstp = 101.325;//kPa
Pwater1 = 1.8;//kPa
Pair1 = Ptotal - Pwater1;
V1 = V * Pair * T1 / ( T * Pair1);
Nwater = V * Pwater * Tstp/ (Vstp * Pstp * T);
Nwater1 = V1 * Pwater1 * Tstp/ (Vstp * Pstp * T1);
m = (Nwater - Nwater1) * 18.02;
disp("m^3",V1,"(a) volume of air after dehumidification = ")
disp("kg",m,"(b) Mass of water vapour removed = ") |
5dade39a6441f09b331ae67c9f1608e75bdd3d02 | f23e565144f1b0f63c7b613c0f549944d425a073 | /Cours/TP_INFO/TP_note/TD4-CITAThibault.sce | 4c33a3cfc58a007e2404c2990dc126e07b963036 | [] | no_license | Antoine-Gerard/Valar-Morghulis | c45766f03898241bd9c424256744b5ffa16dd82c | 796363bfbc6f2e3249c90f1762e041ff5a4e705a | refs/heads/master | 2021-08-31T06:06:55.296982 | 2017-12-20T13:54:33 | 2017-12-20T13:54:33 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 68 | sce | TD4-CITAThibault.sce | //Cita Thibault
//Exercie A
v0= zeros(1,50)
v1= 10*ones(1,50)
v2= |
13c37b52456180aa375e19455d5c8bd9b0cbeef6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH1/EX1.2/1_2.sce | 606d3307d2468046a584e987bb86ffc26bd6b0b6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 177 | sce | 1_2.sce | // X cos(w t+p)+Y sin(w t+q)
X=50
Y=-30
w=120
p=-45
p=p/180*%pi;
q=160
q=q/180*%pi;
//Part1
A=X*cos(p)+ Y*sin(q);
B=-X*sin(p)+ Y*cos(q);
disp(B,"B=",A,"A=")
|
5cdb938855b3733f438d82c290d319cb0a25f4da | 449d555969bfd7befe906877abab098c6e63a0e8 | /215/CH11/EX11.4/ex11_4.sce | d51e61522fc944850c33b12f65a8b8d1440afe61 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 651 | sce | ex11_4.sce | clc
//Example 11.4
//Calculate the Average power absorbed and average power supplied by source
//From figure 11.6
//By applying mesh analysis
I1mag=11.18;I1ang=-63.43;I2mag=7.071;I2ang=-45;R=2;Vleft=20;Vright=10;
//Current through 2 ohm resistor
printf("I1-I2=%d(%d ang) A \n",5,-90)
//Average power absorbed by resistor
PR=0.5*5^2*R
printf("Average power absorbed by resistor=%d W \n",PR)
//Power supplied by left source
Pleft=0.5*Vleft*I1mag*cos(0-I1ang*%pi/180)
//Power supplied by right source
Pright=0.5*Vright*I2mag*cos(0+I2ang*%pi/180)
printf("Power supplied by sources \t Pleft=%d W \t Pright=%3.1f W",Pleft,Pright);
|
993e8a7d18d22471248e20a8bc5d87e398683af1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2153/CH3/EX3.37/ex_3_37.sce | 55300a81def4ebbb3e80098748450bbf694262c3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 515 | sce | ex_3_37.sce | // Example 3.36: interplanner spacing and diffraction angle
clc;
clear;
close;
a=.2866;// in Ä
h=0.1542;// in nm
n=1;//
a1=[2;1;1];//miller indices
d211=a/(sqrt(a1(1,1)^2+a1(2,1)^2+a1(3,1)^2));//interplanar distance between (211)planes
snd=((n*h)/(2*d211));//
th=asind(snd);// bragg angle in degree
d1=floor(th);//
d2=th-floor(d1);//
disp("angle between planes (122) and (111) is "+string(d1)+" degree "+string(round(60*d2))+" minutes")
disp(d211,"interplanner spacing in Ä is")
//answer is wrong in the textbook
|
b746ae15e1f4f2b8f0b136ccce8c3c71c7d23ce2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1172/CH6/EX6.8.1/Example6_8a.sce | f2d73a16a4e9ddd33b9c74a2c718dfab8ed756c4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 351 | sce | Example6_8a.sce | clc
//Given that
ratio = 0.5 // Ratio of lengths of spaceship
c = 3e8 // speed of light in m/s
// sample problem 8a page No. 224
printf("\n \n\n # Problem 8a # \n")
printf("\n Standard formula used \n l = l_o* sqrt ( 1- (v/c)^2)")
v = c * sqrt(1 - ratio^2) // calculation of Speed of spaceship
printf ("\n Speed of spaceship is %e m/s.",v)
|
d5f9c9c00b9f32d8c4f5bd091d5f0346a0e6d47b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3860/CH2/EX2.16/Ex2_16.sce | d3531235d8e9dc6281a76fdafa8a0b07c364fa80 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 437 | sce | Ex2_16.sce | //Example 2.16: Reduce expression using Boolean laws
clc // Clears the console
disp('wx + wxy + w''yz + w''y''z + w''xyz''')
disp(' = (wx + wxy) + (w''yz + w''y''z'') + w''xyz''')
disp(' = wx + w''z + w''xyz''')
disp(' = wx + w''(z + xyz'')')
disp(' = wx + w''(z + xy)')
disp(' = wx + w''z + w''xy)')
disp(' =w''z + x( w + w''y)')
disp(' =w''z + x( w + y)')
disp(' =w''z + wx + xy')
//the reduced expression is displayed.
|
591c25db6f1cb652e3d8276eff1a5597a906a6ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /3673/CH9/EX9.24/Ex9_24.sce | 7e650d03416dd8613a6283a08efe41652e4d53af | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 347 | sce | Ex9_24.sce | //Example 9_24 page no:394
clc;
//given
Wr=-3000;//power in watts
Wy=8000;//power in watts
//calculating the input power
total_pow=Wr+Wy;
disp(total_pow,"the input power is (in watts)");
//the power factor at load
tan_phi=sqrt(3)*((Wr-Wy)/(Wr+Wy));
phi=atand(tan_phi);
pow_fac=cosd(phi);
disp(pow_fac,"the power factor at load is ");
|
9ffed08da3a10820368aee511476b23b91d32b5e | 67ba0a56bc27380e6e12782a5fb279adfc456bad | /STAMPER_PROG_7.4/CONSTANT_SPEED_AND_FEED.sce | f2f358a217a99c50c9d1e248a31b376f64f78367 | [] | no_license | 2-BiAs/STAMPER_PROG | 8c1e773700375cfab0933fc4c2b0f5be0ab8e8f0 | 4fdc0bcdaef7d6d11a0dcd97bd25a9463b9550d0 | refs/heads/master | 2021-01-18T19:30:06.506977 | 2016-11-10T23:32:40 | 2016-11-10T23:32:40 | 71,999,971 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,084 | sce | CONSTANT_SPEED_AND_FEED.sce | clear; clc; stacksize('max'); //Set Working Directory
directory = uigetdir(pwd(), "Select Working Directoy");
b = chdir(directory);
realpath = cd(directory);
sFile = uigetfile("*.*", pwd(), "Select Points to Fix");
[sPath, sFileName, sExt] = fileparts(sFile);
u = mopen(sFile);
[n, a, x, b, z, p]=mfscanf(-1, u,'%c %g %c %g %s\n') //Scan formatted file
mclose(sFile)
cutData = [x, z];
///////////////////////////////////
//Edit these parameters if you want to
///////////////////////////////////
fSurfaceFPM = 300; //250; // ft/min
fStepOver = .025; // mm
fStepOverPlunging = .005; //mm
fRapidFeed = 250; //Rapid feed for cut time calculation
fStartRPM = 300; //RPM
fMaxRPM = 300; //RPM
fWaitForSpindleThreshold = 10; //RPM (If the spindle is commanded to change more than X RPMs in a given iteration, then call M81 to wait for the spindle to come to speed.
////////////////////////////////////
////////////////////////////////////
iRampStartRad = 285; //mm (integer number only)
fMaxRampRate = 1; //RPM/mm
////////////////////////////////////
////////////////////////////////////
fTotalCutTime = [0];
fTotalDistance = [0];
bIsRamping = %T;
iLastRampRad = iRampStartRad;
fCurrentRPM = fStartRPM;
fPreviousRPM = fCurrentRPM;
j = 1;
winId=waitbar('Stitching in speeds and feeds');
progress = 0;
for i = 1:size(cutData, 1)
if cutData(i, 1) ~= 0 & cutData(i, 1) < iRampStartRad then
fRPM_ConstantSpeed = fSurfaceFPM / (.2618 * abs(cutData(i, 1)) * 2 / 25.4);
fCurrentRPM = min(round(fRPM_ConstantSpeed), fMaxRPM);
if abs(fCurrentRPM - fPreviousRPM) > fWaitForSpindleThreshold
outputData(j) = msprintf('G81');
j = j + 1;
end
fPreviousRPM = fCurrentRPM;
end
select p(i)
case 'F(P9)' then
outputData(j) = msprintf('X%1.6fZ%1.6f ' + p(i), [cutData(i, 1) cutData(i, 2)]);
if i ~= 1 & i ~= size(cutData, 1)
fCurrentDistance(i) = norm(cutData(i+1,1:2) - cutData(i, 1:2));
fCurrentTime(i) = fCurrentDistance(i) / fRapidFeed;
fTotalCutTime(i) = fTotalCutTime(i-1) + fCurrentTime(i);
fTotalDistance(i) = fTotalDistance(i-1) + fCurrentDistance(i);
end
case 'F(P8)' then
fFeedRate = fStepOverPlunging * fCurrentRPM;
outputData(j) = msprintf('X%1.6fZ%1.6f S%dM04F%1.3f', [cutData(i, 1) cutData(i, 2), fCurrentRPM, fFeedRate]);
if i ~= 1 & i ~= size(cutData, 1)
fCurrentDistance(i) = norm(cutData(i+1,1:2) - cutData(i, 1:2));
fCurrentTime(i) = fCurrentDistance(i) / fFeedRate;
fTotalCutTime(i) = fTotalCutTime(i-1) + fCurrentTime(i);
fTotalDistance(i) = fTotalDistance(i-1) + fCurrentDistance(i);
end
case 'F(P7)' then
fFeedRate = fStepOver * fCurrentRPM;
outputData(j) = msprintf('X%1.6fZ%1.6f S%dM04F%1.3f', [cutData(i, 1) cutData(i, 2), fCurrentRPM, fFeedRate]);
if i ~= 1 & i ~= size(cutData, 1)
fCurrentDistance(i) = norm(cutData(i+1,1:2) - cutData(i, 1:2));
fCurrentTime(i) = fCurrentDistance(i) / fFeedRate;
fTotalCutTime(i) = fTotalCutTime(i-1) + fCurrentTime(i);
fTotalDistance(i) = fTotalDistance(i-1) + fCurrentDistance(i);
end
else
outputData(j) = msprintf('ERROR READING FEEDRATE CODE');
break;
end
j = j + 1;
progress = progress + 1;
waitbar(progress/size(cutData, 1), winId);
end
close(winId);
sHeader($ + 1) = msprintf('Surface Speed = %d (SFM)', fSurfaceFPM);
sHeader($ + 1) = msprintf('Step-over = %1.3f (mm)', fStepOver);
sHeader($ + 1) = msprintf('Plunging Step-over = %1.3f (mm)', fStepOverPlunging);
sHeader($ + 1) = msprintf('Rapid Feed = %d (mm/min) (For cut time calc)', fRapidFeed);
sHeader($ + 1) = msprintf('Total Cut Time = %d (hr) = %1.2f (days)', [fTotalCutTime($) / 60, fTotalCutTime($) / 60 / 24]);
sHeader($ + 1) = '';
sHeader($ + 1) = '';
sHeader($ + 1) = '';
sHeader($ + 1) = '';
outputData = [sHeader; outputData];
csvWrite(outputData, 'CSSF_POINTS.txt');
|
872593a4f1512e9d26e5eba78eab0dfd17643173 | 28f88c035b368ddbe3efd8f5dbf48f01496d1ad0 | /lab2/Mux4Way16.tst | 3e0175fff9d486d2fde81fc1decffd589c9886e3 | [] | no_license | sandeepkasimalla/Computer_System_Design_CS4110 | 46c06acd04c7b0477ff37b76d127c15f005feb9b | 79d89db0b19f18b9a337fd8e18926114959c5323 | refs/heads/master | 2020-07-11T22:45:14.966087 | 2019-11-21T18:46:33 | 2019-11-21T18:46:33 | 204,659,866 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 545 | tst | Mux4Way16.tst | load Mux4Way16.hdl,
output-file Mux4Way16.out,
compare-to Mux4Way16.cmp,
output-list ip1%B1.16.1 ip2%B1.16.1 ip3%B1.16.1 ip4%B1.16.1 s%B2.2.2 out%B1.16.1;
set ip1 0,
set ip2 0,
set ip3 0,
set ip4 0,
set s 0,
eval,
output;
set s 1,
eval,
output;
set s 2,
eval,
output;
set s 3,
eval,
output;
set ip1 %B0001001000110100,
set ip2 %B1001100001110110,
set ip3 %B1010101010101010,
set ip4 %B0101010101010101,
set s 0,
eval,
output;
set s 1,
eval,
output;
set s 2,
eval,
output;
set s 3,
eval,
output; |
f5570a7d95c1c15d2a1ce9258f34f3da7ac0013f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1280/CH9/EX9.3/9_3.sce | 3432e09146359d018fc2beac007a18269826b895 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 211 | sce | 9_3.sce | clc
//initialisation of variables
P= 1500 //psi
d= 12 //in
V= 50 //gal
//CALCULATIONS
F= P*(%pi*d^2/4)
S= V*231*4/(%pi*d^2)
//RESULTS
printf ('Weight = %.f lb',F)
printf ('Stroke length = %.1f in',S)
|
697583788894fa51d4f3ad36a25ca94e18d2a140 | e176c804d3e82d065a9c9635dad92da21c1483a9 | /libs/soustraction.sci | 36724496d3a358739a09a0c2e35a515b52f19ca1 | [
"MIT"
] | permissive | Exia-Aix-2016/ExoLife | 38f7d5e54a1fd26333f19d99a8b63f0d64cc4c4c | a88d4bc3b852f8a85b6c8cc0979ced29fb28b751 | refs/heads/master | 2021-09-07T01:47:04.742247 | 2018-02-15T11:57:47 | 2018-02-15T11:57:47 | 120,471,380 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 481 | sci | soustraction.sci | //Calculate the soustraction from two images
//img1 : the first image
//img2 : the image to add to the first one
function render=soustraction(img1,img2)
//The size of the images
[wd,he]=size(img1);
//Create an empty image
render = zeros(wd,he);
//For each lines
for i=1:he
//For each columns
for j=1:wd
pix1 = img1(j,i);
pix2 = img2(j,i);
render(j,i) = max(pix1 - pix2,0);
end
end
endfunction
|
e5bdbe9a8634e636c53053bb51a230c6fa1ebb8b | 449d555969bfd7befe906877abab098c6e63a0e8 | /10/CH8/EX1/cha8_1.sce | 34fc0ac6be70fbad3c4400997b999c61f7a0f068 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 127 | sce | cha8_1.sce | T=0.2;V=115;N=3000;F=60;
J=10^-5;
Km=T/V
Wm=(N*2*%pi/F)
Fm=T/Wm
Tm=J/Fm
A=Km/Fm
Kmv=A*V
KmvT=A*Tm
|
a69458f67aa8f4e053962804c418d240bea7dca0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3784/CH4/EX4.44/Ex4_44.sce | 4783b1ee0a2d9f541a1d6e3e346d3d9d90a58e66 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 561 | sce | Ex4_44.sce | clc
//Variable Initialisation
Eb2=215//Average Value of Back EMF
Ia=300//Armature Current in Ampere
Ia1=310//Armature Current in Ampere
Ra=0.04//Armature resistance in ohm
N1=610//Rated Speed of Motor in rpm
N2=750//Rated Speed of Motor in rpm
dmin=0.05//Minimum Duty Ratio
//Solution
Eb1=(N2/N1)*Eb2
Rbe=(Eb1/Ia)-Ra
Rb=Rbe/(1-dmin)
R=Rb*(1-dmin)+Ra
K=Eb2/(2*%pi*N1/60)//The answer provided in the textbook is wrong
T=K*Ia
printf('\n\n Value of Braking Resistor=%0.1f ohm\n\n',Rb)
printf('\n\n Maximum Available Motor Torque=%0.1f N-m\n\n',T)
|
0c9c553c34912d533d056ffe9cc2b5d696fdfed4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3765/CH4/EX4.3/Ex4_3.sce | c387df1f907ca8b1715d35d24c1abcc8937e25f8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,052 | sce | Ex4_3.sce |
clc
// Example 4.3.py
// In Example 4.1, the free stream mach number is increased to 5.0.
// Calculate the pressure and Mach number behind the wave, and compare these
// results with those of Example 4.1.
// Variable declaration
M1 = 5.0 // upstream mach number
p1 = 1.0 // upstream pressure (in atm)
T1 = 288 // upstream temperature (in K)
theta = 20.0 // deflection (in degrees)
// Calculations
// subscript 2 means behind the shock
// from figure 4.5 from M1 = 5.0, theta = 20.0 deg.
beta1 = 30.0 // shock angle (in degrees)
// degree to radian conversion is done by multiplying by %pi/180
//
Mn1 = M1 * sin(beta1*%pi/180) // upstream mach number normal to the shock
// from Table A2 for Mn1 = 2.5
p2_by_p1 = 7.125 // p2/p1
Mn2 = 0.513
p2 = p2_by_p1 * p1 // p2 (in atm) = p2/p1 * p1
M2 = Mn2/(sin((beta1-theta)*%pi/180)) // mach number behind the shock
printf("\n Shock wave angle %.2f degrees",(beta1))
printf("\n p2 = %.3f atm", p2)
printf("\n M2 = %.2f ", M2)
|
0920778d939d581c0a795621d9c37b48afa81ab0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1046/CH5/EX5.4/5_4.sce | 5fa3e5f65f9881b0a31ca3e332bb69275e7aa983 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,587 | sce | 5_4.sce | //Example 5.4
//Calculate the rate of heat loss by free convection per meter length of pipe.
//given
id=78*10^-3 //m, internal diameter
od=89*10^-3 //m, outer diameter
Pg=15 //kg/cm^2, gauge pressure
t=2*10^-2 //m, thickness of preformed mineral fibre
k=0.05 //W/m C. thermal conductivity
Ta=25 //C, ambient air temp.
Pr=0.705 //Prandtl no.
//assume
Ts=50 //C, skin temp.
l=1 //m, length
Ti=200.5 //C, initial temp.
rs=od/2+t //m, outer radius of insulation
ri=od/2 //m, inner radius of insulation
//Rate of heat transfer through insulation per meter length of pipe
Q=2*%pi*l*k*(Ti-Ts)/(log(rs/ri)) //W
//properties of air at taken at the mean film temp.
Tf=(Ta+Ts)/2 //C
mu=1.76*10^-5 //m^2/s. viscosity
beeta=(1/(Tf+273)) //K^-1, coefficient of volumetric expansion
k1=0.027 //W/m C, thermal conductivity
ds=2*rs //m, outer dia. of insulated pipe
g=9.8 //m/s^2, gravitational constant
Grd=g*beeta*(Ts-Ta)*ds^3/(mu^2) //Grashof no.
Rad=Grd*Pr //Rayleigh no.
//from eq. 5.9
//Nusslet no.
Nu=(0.60+(0.387*(Rad)^(1/6))/(1+(0.559/Pr)^(9/16))^(8/27))^2
hav=Nu*k1/ds //W/ m^2 C, average heat transfer coefficient
Ts=(Q/(%pi*ds*l*hav))+Ta //C, skin temp.
//revised calculation by assuming
Ts1=70 //C, skin temp.
//Rate of heat transfer through insulation
Q1=2*%pi*l*k*(Ti-Ts1)/(log(rs/ri))
Tf1=(Ta+Ts1)/2 //C, average aie mean film temp.
mu1=1.8*10^-5 //m^2/s. viscosity
beeta1=(1/(Tf1+273)) //K^-1, coefficient of volumetric expansion
k1=0.0275 //W/m C, thermal conductivity
Pr1=0.703 //Prandtl no.
Grd1=g*beeta1*(Ts1-Ta)*ds^3/(mu1^2) //Grashof no.
Rad=Grd1*Pr1 //Rayleigh no.
//from eq. 5.9
// average heat transfer coefficient, in //W/ m^2 C,
hav1=(0.60+(0.387*(Rad)^(1/6))/(1+(0.559/Pr)^(9/16))^(8/27))^2*(k1/ds)
Ts2=(Q1/(%pi*ds*l*hav1))+Ta
//again assume skin temp.=74
Ts2=74 //C, assumed skin temp.
Q3=2*%pi*l*k*(Ti-Ts2)/(log(rs/ri))
printf("the rate of heat loss by free convection per meter length of pipe. is %f W",Q3)
|
d9a3c12f7bc7f94fd2f62e843bb3a757999c9d6e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1163/CH5/EX5.3/example_5_3.sce | 401751a2a28e73df31be85b4acd50fcea6cd11cc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sce | example_5_3.sce | clear;
clc;
disp("--------------Example 5.3---------------")
d=1;
r=1;
B=100; // 100 kHz
fl=200; // lower frequency=200 kHz
fh=300; // highest frequency =300 kHz
middle_bandwidth = (fl+fh)/2; // kHz
Fc=middle_bandwidth; // carrier frequency
N=(B*r)/2; // B= (1+d)*S = 2*N*(1/r) , N - bit rate
printf("\nThe carrier frequency is %d kHz.\nThe bit rate is %d kbps.",Fc,N); //display result
|
957f144878ded7778bd0df6da005fab45f9b9483 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1118/CH15/EX15.4/eg15_4.sce | 7218afe5ba6fcceca43cc2a22c44a1da4e261908 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 408 | sce | eg15_4.sce | clear;
clc;
zac=complex(.05,.2);
rac=real(zac);
vc=1;
i1=1.05;
i2=.9;
zbc=complex(.04,.16);
rbc=real(zbc);
zcd=complex(.03,.12);
rcd=real(zcd);
va=vc+zac*i1;
vb=vc+zbc*i2;
p1=real(va*conj(i1));
p2=real(vb*conj(i2));
b11=(rac+rcd)/(real(va)^2);
b12=rcd/(real(va)*real(vb));
b22=(rbc+rcd)/(real(vb)^2);
pl=p1*p1*b11+p2*p2*b22+2*p1*p2*b12;
printf("The transmission loss is:%.4f pu",pl);
|
e758553613d180a5e997250288f0835f749dc2ce | 449d555969bfd7befe906877abab098c6e63a0e8 | /1172/CH6/EX6.24/Example6_24.sce | 53c80e34e1dc7832c1c3b95db7ff2f387ca8fd17 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 506 | sce | Example6_24.sce | clc
//Given that
c = 3e8 // speed of light in m/s
p_rest_mass = 0.938 // rest mass energy of proton in BeV
KE = 1 // kinetic energy of proton in BeV
// sample problem 24 page No. 232
printf("\n \n\n # Problem 24 # \n")
printf("\n Standard formula used E^2 = p^2*c^2 + m_o^2*c^4*")
E = KE + p_rest_mass// calculation of energy of particle
p = (sqrt (E^2 *1e6 - (p_rest_mass * 1e3)^2)) *(1.6e-19)*(1e9) / c// calculation of Momentum of photon
printf( "\n Momentum of photon is %e kg m/s.", p)
|
6d050fdd2a586cd2005257e2d74812b1fd22b462 | 449d555969bfd7befe906877abab098c6e63a0e8 | /494/CH8/EX8.1/8_1.sce | b29ab05ebaef79b907e66b17d8a13ff10f0aa2ec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 710 | sce | 8_1.sce | //All the quantities are expressed in SI units
R = 287;
gam = 1.4;
V_inf = 250;
//(a)
//At sea level
T_inf = 288;
//the velocity of sound is given by
a_inf = sqrt(gam*R*T_inf);
//thus the mach number can be calculated as
M_inf = V_inf/a_inf;
printf("\n(a)\nThe Mach number at sea level is:\n M_inf = %1.3f\n",M_inf)
//similarly for (b) and (c)
//(b)
//at 5km
T_inf = 255.7;
a_inf = sqrt(gam*R*T_inf);
M_inf = V_inf/a_inf;
printf("\n(b)\nThe Mach number at 5 km is:\n M_inf = %1.2f\n",M_inf)
//(c)
//at 10km
T_inf = 223.3;
a_inf = sqrt(gam*R*T_inf);
M_inf = V_inf/a_inf;
printf("\n(c)\nThe Mach number at 10 km is:\n M_inf = %1.3f\n",M_inf) |
974d425306714990bb1ce3f8b206aeb94c0d7731 | 449d555969bfd7befe906877abab098c6e63a0e8 | /46/CH2/EX2.1/Example2_1.sce | 6b24ada8d1086eea94a2fbe2febf4d41a01495ad | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 68 | sce | Example2_1.sce | //Example 2.1
syms t s;
fs=laplace('1',t,s);
disp(fs,'f(s)=')
|
1d25206057e52755036aeacf88dd0b639ed485fc | 449d555969bfd7befe906877abab098c6e63a0e8 | /405/CH6/EX6.9/6_9.sce | 9a0c388c7e9422e207959d32535d5b9f17e04113 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,512 | sce | 6_9.sce | clear;
clc;
printf("\t\t\tExample Number 6.9\n\n\n");
// heat transfer from sphere
// illustration6.9
// solution
p = 101325;// [Pa] pressure of air
Ta = 27+273.15;// [K] temperature of air
d = 0.012;// [m] diameter of sphere
u = 4;// [m/s] velocity of air
Ts = 77+273.15;// [degree celsius] surface temperature of sphere
// consulting equation (6-30) we find that the reynolds number is evaluated at the free-stream temperature.
// we therefore need the following properties at Ta = 300.15K
v = 15.69*10^(-6);// [square meter/s]
k = 0.02624;// [W/m degree celsius]
Pr = 0.708;// prandtl number
mu_inf = 1.8462*10^(-5);// [kg/m s]
// at Ts = 350K
mu_w = 2.075*10^(-5);// [kg/m s]
Re_d = u*d/v;// reynolds number
// from equation (6-30),
Nu_bar = 2+((0.4)*(Re_d)^(1/2)+0.06*(Re_d)^(2/3))*(Pr^(0.4))*((mu_inf/mu_w)^(1/4));
// and
h_bar = Nu_bar*k/d;// [W/square meter degree celsius] heat transfer coefficient
// the heat transfer is then
A = 4*%pi*d^(2)/4;// [square meter] area of sphere
q = h_bar*A*(Ts-Ta);// [W]
// for comparison purposes let us also calculate the heat-transfer coefficient using equation(6-25). the film temperature is
Tf = (Ta+Ts)/2;// [K]
v_f = 18.23*10^(-6);// [square meter/s]
k_f = 0.02814;// [W/m degree celsius]
// reynolds number is
Re_d1 = u*d/v_f;
// from equation (6-25)
Nu_f = 0.37*(u*d/v_f)^(0.6);
// and h_bar is calculated as
h_bar = Nu_f*k_f/d;// [W/square meter degree celsius]
printf("heat lost by the sphere is %f W",q);
|
840b4eac81076f79766ef1fe31d36b88719f894d | 4014300a072f0492747983563943f01f78a1b16d | /test/unit_test/reports/tst-bakelit.tst | 2c31c3105e131c3f8ce177ee8d6886a341e27e23 | [
"BSD-3-Clause"
] | permissive | eyasuashenafi/ninja | e351cc90e8c815e018447750cd40fa38796f6c51 | daf739b82e48d3b60c43cf699fbb39f96d9fa27a | refs/heads/master | 2020-12-03T13:50:39.324069 | 2012-09-28T14:23:00 | 2012-09-28T14:23:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 444 | tst | tst-bakelit.tst | description = Bakelit
logfile = bakelit.log
ixx konstruktions-bakelit {
start_time = 1209160800
end_time = 1209247200
host_name {
kb-nas1.kb-01.konstruktions-bakelit.com
}
correct {
TIME_UP_UNSCHEDULED = 83303
TIME_UP_SCHEDULED = 2869
TIME_DOWN_UNSCHEDULED = 0
TIME_DOWN_SCHEDULED = 0
TIME_UNREACHABLE_UNSCHEDULED = 0
TIME_UNREACHABLE_SCHEDULED = 228
TIME_UNDETERMINED_NOT_RUNNING = 0
TIME_UNDETERMINED_NO_DATA = 0
}
}
|
2a4a11622a6e27d21207689dccda0266b6286218 | 449d555969bfd7befe906877abab098c6e63a0e8 | /51/CH8/EX8.7/8_7.sce | 43e0a9a45724984a17ceb47cf04f9c5eb521e5db | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 630 | sce | 8_7.sce | clc;
clear;
T=120;//degree F
D=8;//in
vavg=10;//ft/s
roughness=0;
kvis=1.89/10000;//(ft^2)/s
Re=vavg*(D/12)/kvis;
//from this value of Re and roughness/D=0, and using Moody's chart
f=0.022;
hLperl=f*(vavg^2)/(D*2*32.2/12);
//Dh=4*A/P=4*(a^2)/(4*a)=a
//Vs=(%pi*((D/12)^2)*vavg)/(4*a^2)
//a=f*((%pi*((D/12)^2)*vavg)/(4*a^2))/(2*32.2) and Reh=((%pi*((D/12)^2)*vavg)/(4*a^2))*a/kvis
//by trial and error
f=0.023;
x=(%pi*((D/12)^2)*vavg/4)^2;
y=x*f/(2*32.2);
a=((y/0.0512)^(1/5))*12;//in
disp("inches",a,"The duct size(a) for the square duct if the head loss per foot remains the same for the pipe and the duct=") |
fc1e977203dffe32ccdf1315bda8f83171a4a2e7 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.12_5.tst | 084022d548dd1ed0335c8b483e10ed7250f9da80 | [] | 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 | 4,326 | tst | bow.12_5.tst | 12 14:0.6666666666666666 43:0.2 57:0.15384615384615385 70:1.0 84:1.0 166:1.0 304:1.0 461:0.5 873:1.0 1222:2.0 1456:1.0 1493:1.0 1658:1.0
12 1:0.1111111111111111 3:0.015625 6:1.0 14:0.3333333333333333 78:0.5 84:0.5 141:1.0 448:1.0 660:1.0 998:1.0 1222:1.0 1518:1.0
12 1:0.4444444444444444 3:0.109375 6:1.0 11:1.0 16:0.5 25:1.0 32:0.3333333333333333 43:1.0 44:0.0625 57:0.15384615384615385 64:0.05 70:1.0 78:0.5 142:1.0 161:0.14285714285714285 162:1.0 165:1.0 168:0.5 175:1.0 253:0.4 261:0.125 264:0.3333333333333333 282:0.14285714285714285 304:2.0 341:1.0 381:1.0 406:4.0 425:1.0 614:1.0 742:2.0 802:1.0 820:1.0 895:0.5 917:0.25 942:1.0 966:1.0 971:2.0 1008:1.0 1048:0.5 1106:1.5 1129:1.0 1207:1.0 1208:1.0 1210:1.0 1312:1.0 1335:1.0 1363:1.0 1415:1.0 1508:1.0 1514:1.0 1632:1.0
12 3:0.015625 14:0.3333333333333333 43:0.2 51:1.0 53:1.0 55:1.0 186:1.0 246:1.0 673:1.0 1143:1.0 1234:1.0 1316:1.0
12 3:0.015625 591:1.0 1658:1.0
12 57:0.07692307692307693 162:1.0 1234:1.0 1297:1.0
12 43:0.4 162:2.0 308:0.3333333333333333 450:1.0 614:1.0 917:0.25 1297:1.0
12 3:0.015625 16:0.5 25:1.0 57:0.07692307692307693 246:1.0 408:1.0 593:0.5 1297:1.0
12 14:0.3333333333333333 53:1.0 64:0.05 175:1.0 408:1.0 593:0.5 1622:1.0
12 3:0.015625 32:0.3333333333333333 295:1.0 410:1.0 851:0.5 1154:1.0 1388:1.0
12 41:1.0 43:0.2 44:0.0625 50:0.0625 162:1.0 308:0.3333333333333333 1297:1.0
12 3:0.015625 14:0.6666666666666666 16:0.5 25:1.0 56:1.0 57:0.07692307692307693 64:0.05 106:0.5 162:1.0 165:1.0 341:1.0 584:1.0 857:1.0 895:0.5 1140:1.0 1156:1.0 1335:1.0
12 1:0.1111111111111111 14:1.0 43:0.2 53:1.0 57:0.07692307692307693 85:1.0 96:0.2 104:1.0 222:1.0 410:2.0 485:1.0 603:1.0 971:1.0 1222:2.0 1316:1.0
12 43:0.2 50:0.0625 55:1.0 57:0.07692307692307693 96:0.2 134:1.0 162:1.0 282:0.14285714285714285 1106:0.5 1210:1.0 1335:1.0
12 14:0.3333333333333333 134:1.0 406:1.0
12 3:0.015625 14:0.3333333333333333 175:2.0 246:1.0
12 3:0.03125 43:0.2 44:0.0625 57:0.07692307692307693 141:1.0 162:1.0 175:1.0 253:0.2 282:0.14285714285714285 308:0.3333333333333333 536:1.0 828:1.0 1392:1.0
12 1:0.1111111111111111 3:0.015625 5:1.0 57:0.07692307692307693 175:1.0 246:1.0 413:1.0 416:0.07692307692307693 821:1.0 1205:1.0 1222:1.0 1392:1.0 1452:1.0 1622:1.0
12 1:0.1111111111111111 3:0.046875 44:0.0625 89:1.0 141:1.0 165:1.0 416:0.07692307692307693 1205:1.0 1392:1.0 1525:1.0
12 44:0.0625 73:0.2 162:1.0 1583:1.0
12 1:0.1111111111111111 3:0.03125 46:1.0 141:1.0 175:1.0 1321:1.0 1521:1.0
12 44:0.0625 56:1.0 175:1.0 368:1.0 369:1.0 376:1.0 381:1.0 1312:1.0
12 1:0.1111111111111111 41:1.0 175:1.0 425:1.0 965:1.0 1106:0.5 1134:1.0
12 1:0.1111111111111111 3:0.015625 7:1.0 14:0.3333333333333333 32:0.3333333333333333 57:0.07692307692307693 96:0.2 119:0.14285714285714285 134:1.0 161:0.14285714285714285 368:1.0 373:1.0 406:1.0 417:1.0 676:0.6666666666666666 1106:0.5
12 43:0.2 55:1.0 56:1.0 450:1.0 857:1.0
12 3:0.015625 43:0.2 44:0.0625 55:1.0 57:0.07692307692307693 64:0.05 114:1.0 175:1.0 286:0.14285714285714285 308:0.3333333333333333 406:2.0 410:1.0 416:0.15384615384615385 873:1.0 1106:0.5 1222:1.0 1388:1.0 1524:1.0 1622:1.0
12 32:0.3333333333333333 55:1.0 57:0.07692307692307693 64:0.05 161:0.14285714285714285 175:1.0 286:0.14285714285714285 299:0.3333333333333333 406:2.0 416:0.07692307692307693 417:1.0 1277:1.0 1634:1.0
12 3:0.03125 57:0.23076923076923078 61:1.0 302:0.5 406:1.0 512:1.0 802:1.0 1140:1.0 1208:1.0
12 2:1.0 3:0.015625 14:0.6666666666666666 25:1.0 408:1.0
12 1:0.1111111111111111 56:1.0 119:0.14285714285714285 221:1.0 417:1.0
12 43:0.2 57:0.07692307692307693 109:1.0 114:1.0 134:1.0 175:1.0 308:0.3333333333333333 450:1.0 485:1.0 1106:0.5
12 43:0.2 73:0.2 92:1.0 282:0.14285714285714285 286:0.2857142857142857 660:1.0 1132:1.0 1321:1.0
12 43:0.4 175:1.0 253:0.2 1312:1.0 1321:1.0
12 3:0.03125 16:0.5 43:0.6 44:0.0625 175:1.0 282:0.14285714285714285 381:1.0 406:2.0 857:1.0 1106:0.5 1184:1.0 1200:1.0
12 1:0.1111111111111111 43:0.2 55:1.0 116:2.0 123:1.0 450:2.0
12 16:0.5 43:0.2 57:0.07692307692307693 64:0.05 116:1.0 182:1.0 406:1.0 442:1.0 488:1.0
12 1:0.1111111111111111 3:0.015625 55:1.0 96:0.2 123:1.0 175:1.0 406:1.0 425:1.0 802:1.0 1106:0.5 1521:1.0 1547:1.0
12 1:0.1111111111111111 14:0.3333333333333333 55:1.0 175:1.0 246:1.0 1251:1.0 1297:1.0 1316:1.0 1447:1.0
12 3:0.03125 43:0.2 96:0.2 114:1.0 246:1.0 308:0.3333333333333333
|
89957851522036a764488eea7d3301977fc17fea | 6d1f05d2074f1d6f18d3d473f2dbd867c94fc7ee | /giarratano/SOURCE/TESTING/drtest10.tst | 4c92ccd4aed71579eff778b712e25e5179fedb21 | [] | no_license | arranger1044/icse-1516 | c40d2c86892cd90c14042a95581cbb0e238190fb | ee4bafb57bb549ef40e29b8edf8cdad038e97162 | refs/heads/master | 2020-12-24T19:04:01.588095 | 2016-05-31T07:46:47 | 2016-05-31T07:46:47 | 56,578,768 | 14 | 5 | null | null | null | null | UTF-8 | Scilab | false | false | 321 | tst | drtest10.tst | (unwatch all)
(clear)
(set-strategy depth)
(open "drtest10.rsl" drtest10 "w")
(dribble-on "drtest10.out")
(batch "drtest10.bat")
(dribble-off)
(load "compline.clp")
(printout drtest10 "drtest10.bat differences are as follows:" crlf)
(compare-files drtest10.exp drtest10.out drtest10)
; close result file
(close drtest10)
|
00305733e81fda4d6df5b11dbfb4708cf3e2d843 | 449d555969bfd7befe906877abab098c6e63a0e8 | /779/CH8/EX8.19/8_19.sce | f039e0ea166334cd14127e07bd0681bcc19233c5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 298 | sce | 8_19.sce | T0 = 300; T = 1500;
Q = -8.5; W = 8.5;
// Case (a)
I = Q*(1-T0/T) + W;
R = Q*(1-T0/T);
disp("kW",I,"and",R,"Rate of availability transfer with heat and the irreversibility rate are")
// Case (b)
T1 = 500;
Ib = - Q*(1-T0/T) + Q*(1-T0/T1);
disp("kW",Ib,"Rate of availability in case b is")
|
d23d5fa155e296b08f8162769e16a2cc11b4b6b0 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set5/s_Electrical_And_Electronic_Principles_And_Technology_J._Bird_1529.zip/Electrical_And_Electronic_Principles_And_Technology_J._Bird_1529/CH14/EX14.8/14_08.sce | 2e393aa28cf153a958bfb0a9e526467c351ba319 | [] | 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 | 301 | sce | 14_08.sce | errcatch(-1,"stop");mode(2);//Chapter 14, Problem 8
;
Vav=150; //average value of voltage
Vp=Vav/0.637; //peak voltage
Vrms=0.707*Vp; //rms voltage
printf("Maximum value = %f V\n\n",Vp);
printf("r.m.s value = %f V",Vrms);
exit();
|
9217f5dfe78e93152be17bb998b26c298041c7da | 449d555969bfd7befe906877abab098c6e63a0e8 | /149/CH2/EX2.25/ex25.sce | de09b920aeb76c275b4ec1757d446bbdd34fac7a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 71 | sce | ex25.sce | clear
clc
A=[1 1 3;1 3 -3;-2 -4 -4]
disp("inverse of A is ")
inv(A) |
549820e34c0bffae61cc6d42f3f005f1da25e61c | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set5/s_Electrical_Machines_-_1_T._Singh_704.zip/Electrical_Machines_-_1_T._Singh_704/CH2/EX2.8/ex2_8.sce | 5ea9d62053aae7e465eb0793b36b5d6cf3e35e4b | [] | 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 | 631 | sce | ex2_8.sce | errcatch(-1,"stop");mode(2);//Caption:calculate the suitable number of conductor per slot hence determine the actual value of flux
//Exam:2.8
;
;
F_1=0.05;//flux per pole(in Wb )
N=350;//speed(in rpm)
P=8;//no of poles
A=P;//no of parallel path
E_g=240;//voltage generated (in V)
Z_1=E_g*60*A/(F_1*N*P);//total no of armature conductor required
C_s=ceil(Z_1/120);//number of conductor per slot
disp(C_s,'number of conductor per slot=');
A_s=120;//armature slots
Z_2=A_s*C_s;//total conductors in armature slot
F_2=E_g*60*A/(N*Z_2*P);//Actual value of flux(in Wb)
disp(F_2,'Actual value of flux(in Wb)=');
exit();
|
dcb866a4c3e5813592deb2f989ff8dd6ef33440e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1016/CH8/EX8.2/ex8_2.sce | c6ae6721e466b1e5a1b9da284e4f9a4c03efea1e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 341 | sce | ex8_2.sce | clc;clear;
//Example 8.2
//given data
V=12400;//Volatage applied in V
I=0.002;//current drop in A
e=1.6*10^-19;//the charge on electron in C
//calculations
n=I/e;
disp(n,'No. of electrons');
v=(5.93*10^5)*(sqrt(V));
disp(v,'the speed with which they strike in m/s');
Wmin=12400/V;
disp(Wmin,'shortest wavelength in Angstrom') |
69ec5c0ac1d006f995705ac24fd85322a0e7ff09 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1757/CH7/EX7.9/EX7_9.sce | 71e0ce712a4f6d9eb428a7ae58973904ac7d74b9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 535 | sce | EX7_9.sce | //Example7.9 // to calculate upper and lower cut-off frequency of the band pass filter
clc;
clear;
close;
R1 = 10*10^3 ; //K ohm
R2 = 10 ; //K ohm
C1 = 0.1*10^-6 ; // uF
C2 = 0.001 ; //uF
// the lower cut-off frequency of band pass filter is
fLC = 1/(2*%pi*R1*C1);
disp('The lower cut-off frequency FLC of band pass filter is = '+string(fLC)+' Hz ');
// The upper cut-off frequency of band pass filter is
fUC = 1/(2*%pi*R2*C2);
disp('The upper cut-off frequency FUC of band pass filter is = '+string(fUC)+' KHz ');
|
8e447c25407a3dc6151e235028d1f9262162817c | 78ff3e16a288175ff606f38ee5ee877d4844773e | /12_chapter/12_05_example.sci | 9d8abe3463e3e9f637a93d6c83403bf56ba466ba | [] | no_license | rngalvan/fluid-mech-cengel | 16c12ed8f71f25c812700be4322328c5663b71cf | ee45f924e73cbb8b5716fac43504dac15ffd1f64 | refs/heads/master | 2021-05-27T20:52:22.586023 | 2013-04-17T04:25:37 | 2013-04-17T04:25:37 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 313 | sci | 12_05_example.sci | //Example 12-5 Air loss from a Flat Tire
P_gage = 220 //tire pressure [kPa]
P_atm = 94 //atmospheric pressure [kPa]
T = 25 //air temperature inside the tire [C]
d = 4 //diameter of leak developed in the tire [mm]
k = 1.4 //specific heat ratio for air at room temperature
R = 0.287 //gas constant for air [kJ/kg.K] |
81d0461ffcc6750e8e843ac9cb02edfb69c792bb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1955/CH1/EX1.10/example10.sce | 519c855b29862af07bc23ca711eafbf9436d5e68 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,561 | sce | example10.sce | clc
clear
//input data
P=11//Overall pressure ratio in three stages of a gas turbine
nt=0.88//Overall efficiency in three stages of a gas turbine
T1=1500//Temperature at inlet of a gas turbine in K
r=1.4//ratio of specific heats for air
//calculations
T0=nt*T1*(1-(1/P)^((r-1)/r))//Overall change in temperature in all stages in K
TN1=T1-T0//Temperature at final stage of a gas turbine in K
np=((r/(r-1))*log10(T1/TN1))/(log10(P))//Overall polytropic efficiency of the gas turbine
Ts=T0/3//Individual stage change in temperature in K
T2=T1-Ts//Exit temperature at the end of first stage in K
P1=(T1/T2)^(r/(np*(r-1)))//Pressure ratio at first stage of gas turbine
ns1=((1-(1/P1)^((np*(r-1))/r))/(1-(1/P1)^((r-1)/r)))//Stage efficiency of first stage
T3=T2-Ts//Exit temperature at the end of second stage in K
P2=(T2/T3)^(r/(np*(r-1)))//Pressure ratio at second stage of gas turbine
ns2=((1-(1/P2)^((np*(r-1))/r))/(1-(1/P2)^((r-1)/r)))//Stage efficiency of second stage
T4=T3-Ts//Exit temperature at the end of third stage in K
P3=(T3/T4)^(r/(np*(r-1)))//Pressure ratio at the third stage of gas turbine
ns3=((1-(1/P3)^((np*(r-1))/r))/(1-(1/P3)^((r-1)/r)))//Stage efficiency of third stage
//output
printf('(a)The values for first stage are\n (1)Pressure ratio is %3.2f\n (2)stage efficiency is %3.4f\n(b)The values of second stage are\n (1)Pressure ratio is %3.3f\n (2)Stage efficiency is %3.3f\n(c)The values of third stage are\n (1)Pressure ratio is %3.2f\n (2)Stage efficiency is %3.4f\n',P1,ns1,P2,ns2,P3,ns3)
|
40e9409a13e9a223423203d8aef0ed4d92662fdf | 18c3e24d0638c6907f39d9268f0aaa665466df08 | /span.sce | 15b6604c8f0f0cc3f1733f404a819e4eb1a60a1c | [] | no_license | deeksha-d/linearAlgebra | 32df504c96fa1f0af12af0cd8776eb2267bd6bd0 | 6346220240cb597db7eec458d9872447c3af3402 | refs/heads/master | 2021-01-01T02:39:43.114734 | 2020-04-10T10:02:09 | 2020-04-10T10:02:09 | 239,145,370 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 954 | sce | span.sce | clc;clear;close;
function[a]=gaussElim(a)
disp(a)
if a(1,1)~=0 then
a(2,:) = a(2,:)-(a(2,1)/a(1,1))*a(1,:)
a(3,:) = a(3,:)-(a(3,1)/a(1,1))*a(1,:)
a(1,:) = a(1,:)/a(1,1)
end
if a(2,2)~=0 then
a(3,:) = a(3,:)-(a(3,2)/a(2,2))*a(2,:)
a(2,:) = a(2,:)/a(2,2)
end
disp(a)
for i=1:3
for j=1:3
if (a(i,j)<>0)
disp('is a pivot column',j,'column')
break
end
end
end
endfunction
function main()
A=[0,0,0;0,0,0;0,0,0]
A(1,1)=input("input a11: ")
A(1,2)=input("input a12: ")
A(1,3)=input("input a13: ")
A(2,1)=input("input a21: ")
A(2,2)=input("input a22: ")
A(2,3)=input("input a23: ")
A(3,1)=input("input a31: ")
A(3,2)=input("input a32: ")
A(3,3)=input("input a33: ")
[a]=gaussElim(A)
endfunction
main();
|
4b7a88d45d1f6151f2ff006918816c7a622e6459 | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/IncNavierStokesSolver/Tests/Pyr_channel_m6_par.tst | 826280cf5775befb52c90fa2a5f559df346b390f | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 1,052 | tst | Pyr_channel_m6_par.tst | <?xml version="1.0" encoding="utf-8" ?>
<test>
<description>3D channel flow, Pyramidic elements, P=6</description>
<executable>IncNavierStokesSolver</executable>
<parameters>--use-scotch Pyr_channel_m6.xml</parameters>
<processes>3</processes>
<files>
<file description="Session File">Pyr_channel_m6.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="u" tolerance="1e-12">3.77879e-14</value>
<value variable="v" tolerance="1e-12">4.29463e-14</value>
<value variable="w" tolerance="1e-11">3.96346e-13</value>
<value variable="p" tolerance="1e-8">5.15486e-12</value>
</metric>
<metric type="Linf" id="2">
<value variable="u" tolerance="1e-12">2.38835e-13</value>
<value variable="v" tolerance="1e-12">2.2169e-13</value>
<value variable="w" tolerance="1e-11">1.92338e-12</value>
<value variable="p" tolerance="1e-8">2.83573e-11</value>
</metric>
</metrics>
</test>
|
834c9274943000fa3aad914b0b045a7a750f47df | 449d555969bfd7befe906877abab098c6e63a0e8 | /575/DEPENDENCIES/954.sci | 76f09239e831e9efb1b7d7b6436c0354b8359ae7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 176 | sci | 954.sci | basis=150 //mol/s
x=0.9
HinEthanol= -212.19
HinEthanone= -147.07
HoutEthanol= -216.81
HoutEthanone= -150.9
HoutHydrogen=6.595
NinEthanol=135
NinEthanone=15
Q=2440 //KW |
c7555e29795862df78cb957d51d9761b3d931ade | 449d555969bfd7befe906877abab098c6e63a0e8 | /1619/CH6/EX6.10.4/Example6_10_4.sce | 523536aaf70a5165889e39ed6ad137fa876883d7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 246 | sce | Example6_10_4.sce | //Example 6.10.4 page 6.28
clc;
clear;
N=10;
L=0.5;
alpha=0.4;
Lthru=0.9;
Lc=1;
Ltap=10;
Li=0.5;
Total_loss= N*(alpha*L +2*Lc +Lthru+Li)-(alpha*L)-(2*Lthru)+(2*Ltap);
printf("The total loss in the coupler is :%d dB",Total_loss);
|
fe24bf673d9ac33883ee0e5faabace84ed1f48bb | 449d555969bfd7befe906877abab098c6e63a0e8 | /626/CH7/EX7.1/7_1.sce | 25715f16e1e35302c493cecd8c77968674f809e3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 7_1.sce | clear;
clc;
close;
disp("Example 7.1")
w=5600 //rpm
rm=0.5 //m
Ct2=145 //m/s
Um=w*2*%pi*rm/60 //Rotor tangential speed at pitchline in m/s
Ct1=0
dU=Ct2-Ct1
wc=Um*dU/1000 // in kJ/kg
tpm=rm*(dU)
disp(wc,"Specific work at pitchline in kJ/kg:")
disp(tpm,"Rotor torque per unit mass flow rate in m^2/s:") |
36c71ec12e04b6b8523901a5c0f93a14d265face | 449d555969bfd7befe906877abab098c6e63a0e8 | /564/CH5/EX5.9/5_9.sce | 3cb00572e76273e7287dc961577b9c915a4a9c5a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 710 | sce | 5_9.sce | pathname=get_absolute_file_path('5_9.sce')
filename=pathname+filesep()+'5_9data.sci'
exec(filename)
M=2^0.5;
L1=[L;M*L;L;L;M*L;M*L;L];
F0=[P;0;0;0;0;-M*P;0];
F1=[-0.71;0;0;-0.71;1;1;-0.71];
F1R2=[-2;-M;1;1;0;M;0];
for i=1:7
X(i)=F0(i)*F1(i)*L1(i);
X1(i)=F0(i)*F1R2(i)*L1(i);
X2(i)=F1(i)*F1(i)*L1(i);
X3(i)=F1R2(i)*F1R2(i)*L1(i);
X4(i)=F1(i)*F1R2(i)*L1(i);
end
X5=[sum(X2) sum(X4);
sum(X4) sum(X3)];
X6=-[sum(X);sum(X1)]
X7=inv(X5)*X6;
printf("\nX1: %f KN",X7(1,:));
printf("\nR2: %f KN",X7(2,:))
Fa=[X7(1,:)*M-X7(2,:)*(1+(1/M));-X7(2,:)*M;X7(2,:);X7(2,:)-X7(1,:)/M;X7(1,:);-X7(2,:)*(1+(1/M));-X7(1,:)/M]
disp("Forces in the Mambrane are:");
printf("\n %f KN",Fa); |
a48c235733f49733db9aa7d62e85eadc7a068b1b | 49b51e55dcaff49d015c1f5f412e74c18d60963e | /public_tests/test016.txt | 1bdc23766acf3a54858a999e427af424ca9b2233 | [
"MIT"
] | permissive | chinmaydd/Papyrus | 43e37fbf45fcc4142dfcfe4cc7867ca8cb26a674 | 89eaa53a643068fa8e8f05630fbf6042db6761ae | refs/heads/master | 2022-10-31T11:35:30.997030 | 2020-06-10T19:58:49 | 2020-06-10T19:58:49 | 232,270,434 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 500 | txt | test016.txt | main
var x, y;
procedure foo( );
var a, b;
{
let a <- 1;
let b <- 2;
let x <- a;
let y <- b
};
procedure bar( a );
var b, c;
{
let b <- 1;
let c <- 1;
let y <- b
};
procedure baz( a, b );
var c, d;
{
let c <- 1
};
function boo( a, b );
var i;
{
let i <- 0;
while i < y do
let x <- x * x
od;
return x + 4
};
{
call foo( );
call bar( 1 );
let x <- 3 + 7 - 2;
let y <- ( 895 * 2 * 2 ) / 2;
call baz( x, y );
let y <- y + call boo( 2, 4 )
}
. |
49dfa29bc8c6814d9f2d941b1b478a0a26ac5754 | f1d98f30cf89c5cd6339af6cecba8f945b5ec75a | /Project/Chapt6/normal.sce | 39f0ca06d1bf05dcc430c9ff6c79eaf31bd2fed5 | [] | no_license | robin29man/scilab_practice | 1a43a27b7fd732fb8ad8a34e0665351467a10678 | 5dbd37cd3a0f35d238bd1cc519f903924036ed51 | refs/heads/master | 2020-05-24T16:34:56.604967 | 2019-05-22T13:32:39 | 2019-05-22T13:32:39 | 187,362,476 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 515 | sce | normal.sce | for i=[1:n]
s(i)=mean(data([1:m],i))
end
disp(s)
for i=[1:n]
for j=[1:m]
d(j,i)=data(j,i)-s(i)
end
end
for i=[1:n]
for j=[1:n]
sigma(i,j)=0;
for k=[1:m]
sigma(i,j)=sigma(i,j)+d(k,i)*d(k,j)
end
sigma(i,j)=sigma(i,j)/m
end
end
disp(sigma)
de=det(sigma)
disp(de)
in=inv(sigma)
disp(in)
for i=[1:n]
y(i)=x(i)-s(i)
end
disp(y)
quad=y'*in*y
disp(quad)
normal=1/(sqrt(2*%pi))^n/sqrt(de)*exp(-0.5*quad)
disp(normal)
|
f9bfef7a12cd9c254140c25e095a7293d9dbf527 | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/REE1.prev.tst | 4665d6a621f0c1ae6d9a0f33cf36f55161fff6db | [
"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 | 316 | tst | REE1.prev.tst | Expanding for base=2, level=4, reasons+features=evenexp
Refined variables=a,b,c,d
ReasonFactory: evenexp, code="evenexp"
EvenExponentReason.consider(
"a+6a²+16a³+16a⁴+8b+24b²+32b³+16b⁴-c-6c²-16c³-16c⁴-16d⁴+1",
"27a+54a²+48a³+16a⁴+8b+24b²+32b³+16b⁴-c-6c²-16c³-16c⁴-16d⁴+6") =
unknown
|
ecf806b7ca01255edb91db13e4dcc569347dbe58 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3785/CH9/EX9.3/Ex9_3.sce | d39b27e2717d5ea5f925620ca30b89d30f1e228f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,859 | sce | Ex9_3.sce | // Example 9_3
clc;funcprot(0);
// Given data
dp=100;// The pressure drop in psi
rho=1*10^3;// The density of water in kg/m^3
g=9.807;// The acceleration due to gravity in m/s^2
Q=2000;// The flow rate of water in gal/min
D=4;// The next pipe size in inch
L=100;// Length in m
nu=1*10^-6;// m^2/s
// Calculation
deltah=(dp*6.895*10^3)/(rho*g);// m
printf("\nh_in-h_out=%2.2f m",deltah);
D=D*2.54*10^-2;// m
Q=Q*(3.782*10^-3)/60;// m^3/s
V=(4*Q)/(%pi*D^2);// m/s
Re_D=(V*D)/nu;// Reynolds number
epsilon=5*10^-5;// physical height
function[X]=frictionfactor(y)
X(1)=-(2.0*log10(((epsilon/D)/3.7)+(2.51/(Re_D*sqrt(y(1))))))-(1/sqrt(y(1)));
endfunction
// Guessing a value of f=1*10^-2;
y=[1*10^-2];
f=fsolve(y,frictionfactor);
K_f=f*((L)/D);// The head loss coefficient
deltah_f=K_f*((V^2)/(2*g));// The head loss in m
printf("\nD=%0.4f m \nQ=%1.3e m^3/s \nV=%2.2f m/s \nRe_D=%1.3e \nf=%1.3e \nK_f=%2.2f \nh_in-h_out=%3.1f m",D,Q,V,Re_D,f,K_f,deltah_f)
printf("\nThe head loss of 205.9 m is greater than the allowable los s of 70.31 m.");
// If we try the next size pipe, D = 6 in,
D=6;// inch
D=D*2.54*10^-2;// m
Q=2000;// The flow rate of water in gal/min
Q=Q*(3.782*10^-3)/60;// m^3/s
V=(4*Q)/(%pi*D^2);// m/s
Re_D=(V*D)/nu;// Reynolds number
epsilon=5*10^-5;// physical height
function[X]=frictionfactor(y)
X(1)=-(2.0*log10(((epsilon/D)/3.7)+(2.51/(Re_D*sqrt(y(1))))))-(1/sqrt(y(1)));
endfunction
// Guessing a value of f=1*10^-2;
y=[1*10^-2];
f=fsolve(y,frictionfactor);
K_f=f*((L)/D);// The head loss coefficient
deltah_f=K_f*((V^2)/(2*g));// The head loss in m
printf("\nD=%0.4f m \nQ=%1.3e m^3/s \nV=%1.3f m/s \nRe_D=%1.3e \nf=%1.3e \nK_f=%2.2f \nh_in-h_out=%2.2f m",D,Q,V,Re_D,f,K_f,deltah_f)
printf("\nThis is smaller than the allowable head loss so that a 6 in diameter pipe is acceptable.")
|
51ea2392c3f44e238ce42c141123b180452169c3 | 4be0defdbe24271cce8f61cece32e7a4b15c65af | /signal_s1/td3/ldussouc_td3.sce | 67a9941ab60877405031231965cb7faff6069ac7 | [] | no_license | imac2018/tds | 2c41830e26435bb2b8c4a40b3700c9f166bba4dc | 8712438b81088d2f2d9c691b3c689e0926c597f5 | refs/heads/master | 2020-05-30T07:19:34.709677 | 2017-05-24T09:42:23 | 2017-05-24T09:42:23 | 69,675,399 | 2 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 3,218 | sce | ldussouc_td3.sce | clf()
// exo 1
flute = 0
load('~/Documents/c++/tds/signal_s1/td3/flute.dat', 'flute')
N = 5000
// exo 2
x = flute
// CALCUL DE GAMMA_MIN
gammaMin = convol(x, x(length(x) :-1 :1))
// CALCUL DE GAMMA_L ET CL
gammaL1 = [gammaMin(length(x))]
C1 = [gammaMin(length(x) + 1)]
gammaL2 = [ gammaMin(length(x)), gammaMin(length(x) + 1);
gammaMin(length(x) + 1), gammaMin(length(x))];
C2 = [gammaMin(length(x) + 1); gammaMin(length(x) + 2)]
gammaL3 = [ gammaMin(length(x)), gammaMin(length(x) + 1), gammaMin(length(x) + 2);
gammaMin(length(x) + 1), gammaMin(length(x)), gammaMin(length(x) + 1);
gammaMin(length(x) + 2), gammaMin(length(x) + 1), gammaMin(length(x))];
C3 = [gammaMin(length(x) + 1); gammaMin(length(x) + 2); gammaMin(length(x) + 3)]
// CALCUL DE HL
h1 = inv(gammaL1)*C1
h2 = inv(gammaL2)*C2
h3 = inv(gammaL3)*C3
// exo 3
// INIATILISATION
xChapeau1(1) = x(1)
xChapeau2(1) = x(1)
xChapeau2(2) = x(2)
xChapeau3(1) = x(1)
xChapeau3(2) = x(2)
xChapeau3(3) = x(3)
// ITERATIONS
for n = 2:N
xChapeau1(n) = h1(1)*x(n-1)
end
for n = 3:N
xChapeau2(n) = h2(1)*x(n-1) + h2(2)*x(n-2)
end
for n = 4:N
xChapeau3(n) = h3(1)*x(n-1) + h3(2)*x(n-2) + h3(3)*x(n-3)
end
// CALCUL DES EQM
eqmL1 = 0
for n = 1:N
eqmL1 = eqmL1 + (x(n) - xChapeau1(n))^2
end
eqmL1ret = 1/N * eqmL1
eqmL2 = 0
for n = 1:N
eqmL2 = eqmL2 + (x(n) - xChapeau2(n))^2
end
eqmL2ret = 1/N * eqmL2
eqmL3 = 0
for n = 1:N
eqmL3 = eqmL3 + (x(n) - xChapeau3(n))^2
end
eqmL3ret = 1/N * eqmL3
// exo 4
//Calcul de dx
sortX = gsort(abs(x),'g','i')
dx = sortX(0.95*N)
// Calcul de dz
zTilde1 = x - xChapeau1
zTilde2 = x - xChapeau2
zTilde3 = x - xChapeau3
absZ1 = abs(zTilde1)
sortZ1 = gsort(absZ1,'g','i')
dz1 = sortZ1(0.95*N)
absZ2 = abs(zTilde2)
sortZ2 = gsort(absZ2,'g','i')
dz2 = sortZ2(0.95*N)
absZ3 = abs(zTilde3)
sortZ3 = gsort(absZ3,'g','i')
dz3 = sortZ3(0.95*N)
// exo 5 - cf papier
// exo 6
function y = quant(x,d,q)
// y = quant(x,d,q) : quantization
// x : input matrix
// d : decision levels
// q : quantization levels
if argn(2) ~= 3 then
error('Incorrect number of arguments');
end
N = length(q);
if length(d) ~= N+1 then
error('There must be N+1 decision levels for N quantization levels')
end
[P,Q] = size(x);
x = x(:);
y = zeros(P*Q,1);
d = d(:)';
d = [d(1:N) (1+%eps)*d(N+1)]
for n = 1:N
ind = find(d(n) <= x & x < d(n+1));
y(ind) = q(n)*ones(length(ind),1);
end
y = matrix(y,P,Q);
endfunction
function y = quantu(x,N,dm)
// y = quantu(x,N,dm) : uniform quantization
// x : input matrix
// N : number of quantization levels
// dm : vector of minimum and maximum decision levels
// (default value : dm = [min(x) max(x)])
if argn(2) == 2 then
dm = [min(x(:)) max(x(:))];
elseif argn(2) ~= 3 then
error('Incorrect number of arguments');
end
dm(2) = (1+%eps)*dm(2);
d = linspace(dm(1),dm(2),N+1)
q = (d(1:N)+d(2:N+1))/2;
//y = quant(x,d(2:N),q);
y = quant(x,d,q);
endfunction
// CALCUL DE QUANTU AVEC L=3 ET Q=5
dzm = [-dz3,dz3]
signalQuantu = quantu(zTilde3, 5, dzm)
distorsion3 = 0
for i = 1:N
distorsion3 = distorsion3 + (x(n) - zTilde3(n))^2
end
distorsion3ret = 1/N * distorsion3
|
4ec413732c7f69f2774c8edbf273df9e127c6deb | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/KW53TNP/ATWM1_Working_Memory_MEG_KW53TNP_Session2/ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run2.sce | 55fddb828dca8bb7a92e4ee0648a473f8ca60e7a | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 49,599 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run2.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 28;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 300; width = 300; color = 0, 0, 0;} frame1;
box { height = 290; width = 290; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 290; width = 290; color = 128, 128, 128;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
43 62 292 292 399 125 1892 2992 2442 fixation_cross gabor_086 gabor_128 gabor_058 gabor_102 gabor_086_alt gabor_128 gabor_058_alt gabor_102 "2_1_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_086_128_058_102_target_position_2_4_retrieval_position_2" gabor_circ gabor_128_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_1_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2192 2992 2292 fixation_cross gabor_005 gabor_173 gabor_061 gabor_127 gabor_005_alt gabor_173 gabor_061 gabor_127_alt "2_2_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2300_gabor_patch_orientation_005_173_061_127_target_position_2_3_retrieval_position_2" gabor_circ gabor_038_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_2_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1742 2992 1892 fixation_cross gabor_087 gabor_157 gabor_123 gabor_006 gabor_087 gabor_157_alt gabor_123_alt gabor_006 "2_3_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_087_157_123_006_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_006_framed blank blank blank blank fixation_cross_target_position_1_4 "2_3_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1792 2992 2492 fixation_cross gabor_129 gabor_101 gabor_069 gabor_015 gabor_129 gabor_101 gabor_069_alt gabor_015_alt "2_4_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_2500_gabor_patch_orientation_129_101_069_015_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_015_framed blank blank blank blank fixation_cross_target_position_1_2 "2_4_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_015_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1742 2992 2242 fixation_cross gabor_165 gabor_098 gabor_140 gabor_031 gabor_165 gabor_098_alt gabor_140_alt gabor_031 "2_5_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2250_gabor_patch_orientation_165_098_140_031_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_031_framed blank blank blank blank fixation_cross_target_position_1_4 "2_5_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_031_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2042 2992 2442 fixation_cross gabor_068 gabor_007 gabor_175 gabor_030 gabor_068 gabor_007_alt gabor_175 gabor_030_alt "2_6_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2450_gabor_patch_orientation_068_007_175_030_target_position_1_3_retrieval_position_1" gabor_068_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_6_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_068_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1942 2992 2242 fixation_cross gabor_137 gabor_154 gabor_120 gabor_076 gabor_137 gabor_154_alt gabor_120_alt gabor_076 "2_7_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2250_gabor_patch_orientation_137_154_120_076_target_position_1_4_retrieval_position_1" gabor_002_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_7_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2192 2992 2092 fixation_cross gabor_094 gabor_004 gabor_147 gabor_120 gabor_094_alt gabor_004 gabor_147_alt gabor_120 "2_8_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_094_004_147_120_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_120_framed blank blank blank blank fixation_cross_target_position_2_4 "2_8_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_120_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1992 2992 2142 fixation_cross gabor_108 gabor_152 gabor_176 gabor_133 gabor_108 gabor_152 gabor_176_alt gabor_133_alt "2_9_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_108_152_176_133_target_position_1_2_retrieval_position_1" gabor_108_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_9_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_108_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2142 2992 2392 fixation_cross gabor_179 gabor_010 gabor_094 gabor_144 gabor_179_alt gabor_010 gabor_094 gabor_144_alt "2_10_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2400_gabor_patch_orientation_179_010_094_144_target_position_2_3_retrieval_position_2" gabor_circ gabor_010_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_10_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1992 2992 1892 fixation_cross gabor_004 gabor_070 gabor_049 gabor_033 gabor_004_alt gabor_070 gabor_049 gabor_033_alt "2_11_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_004_070_049_033_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_049_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_11_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_049_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1742 2992 1892 fixation_cross gabor_157 gabor_179 gabor_129 gabor_051 gabor_157 gabor_179_alt gabor_129_alt gabor_051 "2_12_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_157_179_129_051_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_051_framed blank blank blank blank fixation_cross_target_position_1_4 "2_12_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_051_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1892 2992 2592 fixation_cross gabor_079 gabor_011 gabor_059 gabor_095 gabor_079 gabor_011_alt gabor_059 gabor_095_alt "2_13_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_2600_gabor_patch_orientation_079_011_059_095_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_141_framed blank blank blank blank fixation_cross_target_position_1_3 "2_13_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_141_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1992 2992 2292 fixation_cross gabor_068 gabor_095 gabor_129 gabor_005 gabor_068_alt gabor_095 gabor_129_alt gabor_005 "2_14_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2300_gabor_patch_orientation_068_095_129_005_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_005_framed blank blank blank blank fixation_cross_target_position_2_4 "2_14_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_005_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2042 2992 2042 fixation_cross gabor_063 gabor_121 gabor_146 gabor_096 gabor_063 gabor_121_alt gabor_146 gabor_096_alt "2_15_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_063_121_146_096_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_146_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_15_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_146_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1742 2992 2392 fixation_cross gabor_134 gabor_091 gabor_019 gabor_002 gabor_134_alt gabor_091 gabor_019 gabor_002_alt "2_16_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2400_gabor_patch_orientation_134_091_019_002_target_position_2_3_retrieval_position_1" gabor_179_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_16_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_179_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1842 2992 2592 fixation_cross gabor_035 gabor_144 gabor_069 gabor_005 gabor_035_alt gabor_144_alt gabor_069 gabor_005 "2_17_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2600_gabor_patch_orientation_035_144_069_005_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_118_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_17_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2142 2992 2242 fixation_cross gabor_091 gabor_072 gabor_003 gabor_157 gabor_091_alt gabor_072 gabor_003 gabor_157_alt "2_18_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_091_072_003_157_target_position_2_3_retrieval_position_2" gabor_circ gabor_122_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_18_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_122_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1742 2992 2192 fixation_cross gabor_043 gabor_004 gabor_178 gabor_119 gabor_043 gabor_004_alt gabor_178 gabor_119_alt "2_19_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2200_gabor_patch_orientation_043_004_178_119_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_071_framed blank blank blank blank fixation_cross_target_position_1_3 "2_19_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_071_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_175 gabor_012 gabor_144 gabor_093 gabor_175 gabor_012 gabor_144_alt gabor_093_alt "2_20_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_175_012_144_093_target_position_1_2_retrieval_position_2" gabor_circ gabor_062_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_20_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2042 2992 2042 fixation_cross gabor_093 gabor_050 gabor_137 gabor_029 gabor_093 gabor_050 gabor_137_alt gabor_029_alt "2_21_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_093_050_137_029_target_position_1_2_retrieval_position_2" gabor_circ gabor_004_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_21_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2042 2992 1992 fixation_cross gabor_092 gabor_004 gabor_033 gabor_155 gabor_092 gabor_004_alt gabor_033_alt gabor_155 "2_22_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_092_004_033_155_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_155_framed blank blank blank blank fixation_cross_target_position_1_4 "2_22_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_155_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2242 2992 1942 fixation_cross gabor_115 gabor_144 gabor_058 gabor_163 gabor_115 gabor_144_alt gabor_058_alt gabor_163 "2_23_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_115_144_058_163_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_027_framed blank blank blank blank fixation_cross_target_position_1_4 "2_23_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_027_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2092 2992 2042 fixation_cross gabor_069 gabor_090 gabor_033 gabor_012 gabor_069_alt gabor_090 gabor_033_alt gabor_012 "2_24_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2050_gabor_patch_orientation_069_090_033_012_target_position_2_4_retrieval_position_2" gabor_circ gabor_090_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_24_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1842 2992 2342 fixation_cross gabor_119 gabor_135 gabor_092 gabor_179 gabor_119_alt gabor_135_alt gabor_092 gabor_179 "2_25_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_119_135_092_179_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_047_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_25_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_047_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 2242 2992 2542 fixation_cross gabor_086 gabor_109 gabor_142 gabor_166 gabor_086 gabor_109_alt gabor_142 gabor_166_alt "2_26_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2550_gabor_patch_orientation_086_109_142_166_target_position_1_3_retrieval_position_2" gabor_circ gabor_060_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_26_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_060_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2242 2992 2592 fixation_cross gabor_139 gabor_032 gabor_115 gabor_053 gabor_139_alt gabor_032 gabor_115_alt gabor_053 "2_27_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_139_032_115_053_target_position_2_4_retrieval_position_2" gabor_circ gabor_167_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_27_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_167_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1792 2992 2092 fixation_cross gabor_155 gabor_067 gabor_135 gabor_018 gabor_155 gabor_067_alt gabor_135_alt gabor_018 "2_28_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2100_gabor_patch_orientation_155_067_135_018_target_position_1_4_retrieval_position_1" gabor_155_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_28_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_155_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1942 2992 2142 fixation_cross gabor_020 gabor_057 gabor_142 gabor_080 gabor_020 gabor_057 gabor_142_alt gabor_080_alt "2_29_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_2150_gabor_patch_orientation_020_057_142_080_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_126_framed blank blank blank blank fixation_cross_target_position_1_2 "2_29_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_126_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2142 2992 2192 fixation_cross gabor_049 gabor_093 gabor_004 gabor_156 gabor_049_alt gabor_093_alt gabor_004 gabor_156 "2_30_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2200_gabor_patch_orientation_049_093_004_156_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_139_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_30_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_139_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2242 2992 2342 fixation_cross gabor_174 gabor_016 gabor_153 gabor_036 gabor_174_alt gabor_016_alt gabor_153 gabor_036 "2_31_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_174_016_153_036_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_106_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_31_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_106_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1842 2992 2192 fixation_cross gabor_172 gabor_112 gabor_132 gabor_067 gabor_172_alt gabor_112 gabor_132_alt gabor_067 "2_32_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_172_112_132_067_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_022_framed blank blank blank blank fixation_cross_target_position_2_4 "2_32_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_022_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2092 2992 2092 fixation_cross gabor_017 gabor_101 gabor_172 gabor_141 gabor_017 gabor_101_alt gabor_172 gabor_141_alt "2_33_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2100_gabor_patch_orientation_017_101_172_141_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_034_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_33_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2192 2992 2542 fixation_cross gabor_070 gabor_102 gabor_031 gabor_015 gabor_070_alt gabor_102 gabor_031 gabor_015_alt "2_34_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2550_gabor_patch_orientation_070_102_031_015_target_position_2_3_retrieval_position_2" gabor_circ gabor_102_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_34_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1942 2992 2092 fixation_cross gabor_178 gabor_045 gabor_066 gabor_135 gabor_178_alt gabor_045 gabor_066 gabor_135_alt "2_35_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_2100_gabor_patch_orientation_178_045_066_135_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_135_framed blank blank blank blank fixation_cross_target_position_2_3 "2_35_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_135_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1792 2992 1892 fixation_cross gabor_146 gabor_019 gabor_037 gabor_106 gabor_146_alt gabor_019 gabor_037_alt gabor_106 "2_36_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_1900_gabor_patch_orientation_146_019_037_106_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_061_framed blank blank blank blank fixation_cross_target_position_2_4 "2_36_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_061_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1792 2992 2242 fixation_cross gabor_061 gabor_177 gabor_110 gabor_129 gabor_061 gabor_177 gabor_110_alt gabor_129_alt "2_37_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2250_gabor_patch_orientation_061_177_110_129_target_position_1_2_retrieval_position_2" gabor_circ gabor_041_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_37_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2242 2992 1892 fixation_cross gabor_109 gabor_003 gabor_075 gabor_026 gabor_109_alt gabor_003 gabor_075_alt gabor_026 "2_38_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_109_003_075_026_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_026_framed blank blank blank blank fixation_cross_target_position_2_4 "2_38_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1892 2992 2442 fixation_cross gabor_174 gabor_131 gabor_049 gabor_111 gabor_174_alt gabor_131_alt gabor_049 gabor_111 "2_39_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_174_131_049_111_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_003_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_39_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1942 2992 2342 fixation_cross gabor_021 gabor_004 gabor_081 gabor_038 gabor_021_alt gabor_004 gabor_081 gabor_038_alt "2_40_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2350_gabor_patch_orientation_021_004_081_038_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_128_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_40_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1742 2992 2442 fixation_cross gabor_099 gabor_177 gabor_144 gabor_120 gabor_099_alt gabor_177 gabor_144 gabor_120_alt "2_41_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2450_gabor_patch_orientation_099_177_144_120_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_009_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_41_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2142 2992 2292 fixation_cross gabor_066 gabor_083 gabor_045 gabor_154 gabor_066 gabor_083_alt gabor_045_alt gabor_154 "2_42_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_066_083_045_154_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_105_framed blank blank blank blank fixation_cross_target_position_1_4 "2_42_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_105_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1892 2992 2492 fixation_cross gabor_174 gabor_061 gabor_036 gabor_020 gabor_174_alt gabor_061_alt gabor_036 gabor_020 "2_43_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2500_gabor_patch_orientation_174_061_036_020_target_position_3_4_retrieval_position_1" gabor_174_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_43_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_174_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2092 2992 2542 fixation_cross gabor_131 gabor_100 gabor_057 gabor_012 gabor_131_alt gabor_100 gabor_057_alt gabor_012 "2_44_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_131_100_057_012_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_012_framed blank blank blank blank fixation_cross_target_position_2_4 "2_44_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_012_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1792 2992 1942 fixation_cross gabor_129 gabor_110 gabor_057 gabor_020 gabor_129 gabor_110_alt gabor_057_alt gabor_020 "2_45_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_129_110_057_020_target_position_1_4_retrieval_position_1" gabor_129_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_45_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_129_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2192 2992 2192 fixation_cross gabor_030 gabor_089 gabor_146 gabor_176 gabor_030_alt gabor_089 gabor_146 gabor_176_alt "2_46_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2200_gabor_patch_orientation_030_089_146_176_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_146_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_46_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_146_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1892 2992 1942 fixation_cross gabor_001 gabor_089 gabor_050 gabor_028 gabor_001 gabor_089_alt gabor_050_alt gabor_028 "2_47_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_1950_gabor_patch_orientation_001_089_050_028_target_position_1_4_retrieval_position_1" gabor_001_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_47_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1992 2992 2192 fixation_cross gabor_002 gabor_109 gabor_172 gabor_139 gabor_002_alt gabor_109 gabor_172 gabor_139_alt "2_48_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_2200_gabor_patch_orientation_002_109_172_139_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_139_framed blank blank blank blank fixation_cross_target_position_2_3 "2_48_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_139_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1942 2992 1992 fixation_cross gabor_108 gabor_063 gabor_126 gabor_083 gabor_108_alt gabor_063_alt gabor_126 gabor_083 "2_49_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2000_gabor_patch_orientation_108_063_126_083_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_172_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_49_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_172_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1842 2992 1992 fixation_cross gabor_099 gabor_084 gabor_115 gabor_032 gabor_099_alt gabor_084_alt gabor_115 gabor_032 "2_50_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_099_084_115_032_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_172_framed blank blank blank blank fixation_cross_target_position_3_4 "2_50_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_172_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2142 2992 1942 fixation_cross gabor_057 gabor_107 gabor_090 gabor_124 gabor_057 gabor_107_alt gabor_090 gabor_124_alt "2_51_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_057_107_090_124_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_090_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_51_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2192 2992 2142 fixation_cross gabor_130 gabor_152 gabor_082 gabor_016 gabor_130_alt gabor_152 gabor_082_alt gabor_016 "2_52_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2150_gabor_patch_orientation_130_152_082_016_target_position_2_4_retrieval_position_2" gabor_circ gabor_105_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_52_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_105_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1792 2992 2042 fixation_cross gabor_055 gabor_013 gabor_082 gabor_029 gabor_055_alt gabor_013 gabor_082_alt gabor_029 "2_53_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_2050_gabor_patch_orientation_055_013_082_029_target_position_2_4_retrieval_position_1" gabor_055_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_53_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_055_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1892 2992 2342 fixation_cross gabor_004 gabor_092 gabor_171 gabor_120 gabor_004 gabor_092 gabor_171_alt gabor_120_alt "2_54_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2350_gabor_patch_orientation_004_092_171_120_target_position_1_2_retrieval_position_2" gabor_circ gabor_092_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_54_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_092_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1792 2992 2392 fixation_cross gabor_127 gabor_040 gabor_092 gabor_008 gabor_127 gabor_040_alt gabor_092 gabor_008_alt "2_55_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2400_gabor_patch_orientation_127_040_092_008_target_position_1_3_retrieval_position_1" gabor_127_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_55_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1992 2992 2492 fixation_cross gabor_136 gabor_020 gabor_152 gabor_079 gabor_136 gabor_020_alt gabor_152_alt gabor_079 "2_56_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2000_3000_2500_gabor_patch_orientation_136_020_152_079_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_103_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_56_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_103_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1942 2992 2092 fixation_cross gabor_092 gabor_125 gabor_061 gabor_036 gabor_092_alt gabor_125 gabor_061_alt gabor_036 "2_57_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_092_125_061_036_target_position_2_4_retrieval_position_2" gabor_circ gabor_174_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_57_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2042 2992 2492 fixation_cross gabor_173 gabor_061 gabor_115 gabor_092 gabor_173_alt gabor_061_alt gabor_115 gabor_092 "2_58_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2500_gabor_patch_orientation_173_061_115_092_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_140_framed blank blank blank blank fixation_cross_target_position_3_4 "2_58_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_140_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2192 2992 2292 fixation_cross gabor_176 gabor_018 gabor_098 gabor_138 gabor_176 gabor_018_alt gabor_098 gabor_138_alt "2_59_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2300_gabor_patch_orientation_176_018_098_138_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_098_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_59_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_098_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2042 2992 1992 fixation_cross gabor_056 gabor_171 gabor_032 gabor_097 gabor_056_alt gabor_171 gabor_032_alt gabor_097 "2_60_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_056_171_032_097_target_position_2_4_retrieval_position_2" gabor_circ gabor_171_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_60_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2242 2992 2292 fixation_cross gabor_061 gabor_035 gabor_148 gabor_083 gabor_061_alt gabor_035 gabor_148_alt gabor_083 "2_61_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_061_035_148_083_target_position_2_4_retrieval_position_2" gabor_circ gabor_035_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_61_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_035_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1742 2992 2142 fixation_cross gabor_124 gabor_053 gabor_083 gabor_068 gabor_124_alt gabor_053_alt gabor_083 gabor_068 "2_62_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1750_3000_2150_gabor_patch_orientation_124_053_083_068_target_position_3_4_retrieval_position_2" gabor_circ gabor_053_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_62_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_053_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1892 2992 2592 fixation_cross gabor_048 gabor_094 gabor_066 gabor_155 gabor_048_alt gabor_094 gabor_066_alt gabor_155 "2_63_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2600_gabor_patch_orientation_048_094_066_155_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_016_framed blank blank blank blank fixation_cross_target_position_2_4 "2_63_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_016_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1842 2992 2342 fixation_cross gabor_081 gabor_159 gabor_098 gabor_135 gabor_081_alt gabor_159 gabor_098_alt gabor_135 "2_64_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_081_159_098_135_target_position_2_4_retrieval_position_2" gabor_circ gabor_022_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_64_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_022_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 2092 2992 2542 fixation_cross gabor_014 gabor_149 gabor_086 gabor_164 gabor_014 gabor_149 gabor_086_alt gabor_164_alt "2_65_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2100_3000_2550_gabor_patch_orientation_014_149_086_164_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_041_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_65_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_041_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1992 2992 2242 fixation_cross gabor_135 gabor_179 gabor_161 gabor_120 gabor_135 gabor_179 gabor_161_alt gabor_120_alt "2_66_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_135_179_161_120_target_position_1_2_retrieval_position_1" gabor_135_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_66_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_135_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1842 2992 2392 fixation_cross gabor_058 gabor_031 gabor_078 gabor_136 gabor_058_alt gabor_031 gabor_078_alt gabor_136 "2_67_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2400_gabor_patch_orientation_058_031_078_136_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_136_framed blank blank blank blank fixation_cross_target_position_2_4 "2_67_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2142 2992 1942 fixation_cross gabor_156 gabor_129 gabor_088 gabor_046 gabor_156_alt gabor_129 gabor_088_alt gabor_046 "2_68_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_156_129_088_046_target_position_2_4_retrieval_position_2" gabor_circ gabor_176_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_68_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_176_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 2092 2992 1992 fixation_cross gabor_080 gabor_118 gabor_095 gabor_012 gabor_080 gabor_118_alt gabor_095 gabor_012_alt "2_69_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2100_3000_2000_gabor_patch_orientation_080_118_095_012_target_position_1_3_retrieval_position_2" gabor_circ gabor_118_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_69_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_118_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2092 2992 2142 fixation_cross gabor_061 gabor_143 gabor_175 gabor_036 gabor_061_alt gabor_143 gabor_175_alt gabor_036 "2_70_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_061_143_175_036_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_085_framed blank blank blank blank fixation_cross_target_position_2_4 "2_70_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_085_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
d6026c441dae9661525e30f9b10c2a643b0138ee | 44dccf35d0d05580e3fc20af3b7697b3c638d82d | /testcases/detectMinEigenFeatures/1.sce | ea1332ea615609b48eb00419781355ef94c7b6d8 | [] | no_license | surirohit/Scilab-Image-Processing-Toolbox-Unclean | 213caacd69badd81ec0f99a800f44a2cf8f79b5d | 3a8057f8a8d05e7efd83704a0e732bdda23fa3a0 | refs/heads/master | 2020-04-09T07:31:20.042501 | 2016-06-28T09:33:57 | 2016-06-28T09:33:57 | 60,406,367 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 77 | sce | 1.sce | i = imread('test1.jpg');
corners = detectMinEigenFeatures(i);
disp(corners);
|
c4c4377980aacc0dd7e983f31083323d65e1e9da | 0919e454d74183a2ee1a4b05a37bcf9154e64d87 | /01/Nand2And16.tst | cdb0a2d45e65024123db2dcb75262589a8be5fe3 | [] | no_license | youkidearitai/nand2tetris | 311b2e8d2fdf9fccbda7c775b8d4cbb74254d07f | 0e67824885724ec8fe7a8f2dcd74763a42fbb703 | refs/heads/master | 2021-11-28T06:17:33.980008 | 2021-11-08T15:55:44 | 2021-11-08T15:55:44 | 42,762,825 | 7 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 523 | tst | Nand2And16.tst | load Nand2And16.hdl,
output-file Nand2And16.out,
compare-to Nand2And16.cmp,
output-list a%B1.16.1 b%B1.16.1 out%B1.16.1;
set a %B0000000000000000, set b %B1111111111111111,
eval, output;
set a %B1111111111111111, set b %B0000000000000000,
eval, output;
set a %B1010101010101010, set b %B0101010101010101,
eval, output;
set a %B0011110011000011, set b %B1100001100111100,
eval, output;
set a %B0001001000110100, set b %B1110110111001011,
eval, output;
set a %B1111111111111111, set b %B1111111111111111,
eval, output;
|
c8c721507ca9eda934a98011aa6318c16064bc10 | d7087cf730b37f76170323e080c090f8094979ac | /test/exec/for_command_big_list.tst | 495ab6aa829368bdeb33b08ecac227c982634ba0 | [] | no_license | VladimirMeshcheriakov/42sh | 025dffe358b86f48eaf7751a5cb08d4d5d5366c4 | 52d782255592526d0838bc40269f6e71f6a51017 | refs/heads/master | 2023-03-15T17:26:20.575439 | 2015-06-26T12:44:05 | 2015-06-26T12:44:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 290 | tst | for_command_big_list.tst | <cmd>
../build/42sh</cmd>
<ref>
bash</ref>
<stdin>
for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do for j in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19; do for k in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18; do echo $i; echo $j; echo $k; done; done; done;
</stdin>
|
a6232add803576670af2c6ea5dc1671c40e22d11 | 2e676e3b1cebfbb9d20f9b935ceacd507c57d36a | /Octave/octave-4.2.1/share/octave/4.2.1/etc/tests/fixed/bug-31371.tst | bc7b0d2626ce6c7b41a9300b777e467e15d4db2b | [] | no_license | vohrahul/ML-ang-coursera | 239469e763b290aa178b7aa8a86eda08e4e7f4be | 4c24fd2ecfb9f3de7df15e3a9f75627f782f9915 | refs/heads/master | 2022-12-28T03:45:54.810173 | 2020-10-16T12:33:25 | 2020-10-16T12:33:25 | 304,620,441 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,183 | tst | bug-31371.tst | %!test
%! % Work around MATLAB bug where f(x)(y) is invalid syntax
%! % (This bug does not apply to Octave)
%!
%! C = @(fcn,x) fcn(x);
%! C2 = @(fcn,x,y) fcn(x,y);
%!
%! % Church Booleans
%! T = @(t,f) t;
%! F = @(t,f) f;
%!
%! % Church Numerals
%! Zero = @(fcn,x) x;
%! One = @(fcn,x) fcn(x);
%! Two = @(fcn,x) fcn(fcn(x));
%! Three = @(fcn,x) fcn(fcn(fcn(x)));
%! Four = @(fcn,x) fcn(fcn(fcn(fcn(x))));
%!
%! % Arithmetic Operations
%! Inc = @(a) @(f,x) f(a(f,x)); % Increment
%! Add = @(a,b) @(f,x) a(f,b(f,x));
%! Mult = @(a,b) @(f,x) a(@(x) b(f,x),x);
%! Dec = @(a) @(f,x) C(a(@(g) @(h) h(g(f)), @(u) x), @(u) u); % Decrement
%! Sub = @(a,b) b(Dec, a);
%!
%! % Renderer - Convert church numeral to "real" number
%! Render = @(n) n(@(n) n+1,0);
%!
%! % Predicates
%! Iszero = @(n) n(@(x) F, T);
%!
%! % Y combinator implements recursion
%! Ycomb = @(f) C(@(g) f(@(x) C(g(g), x)), ...
%! @(g) f(@(x) C(g(g), x)));
%!
%! Factorial = Ycomb(@(f) @(n) C(C2(Iszero(n), ...
%! @(d) One, @(d) Mult(n, f(Dec(n)))),0));
%!
%! assert (Render (Factorial (Two)), 2);
%! assert (Render (Factorial (Three)), 6);
%! assert (Render (Factorial (Four)), 24);
|
c77a025bb89e12d9a344518827332699d6a521a3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3835/CH8/EX8.8/Ex8_8.sce | e66d4578946b2b8e4fb7cfc2247f85977fbac24c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 750 | sce | Ex8_8.sce | clear
//
//case a slip
f=50
p=4
ns=(120*f)/p //synchronous speed
printf("\n %0.1f",ns)
n=1440
s=(1500-1440)/(1500)
printf("\n slip= %e pu",s)
//case b rotor resistance loss
pd=25 //power developed
ml=1 //mechanical losses
pm=pd+ml //The total mechanical power developed
pag=pm/(1-s)
rl=s*pag
printf("\n rotor resistance loss= %0.1f kw",rl)
//case c the total input if stator losses are 1.75 kw
sl=1.75 //stator loss
ti=pag+sl
printf("\n total input= %0.1f kw",ti)
//case d efficiency
e=(pd*100)/ti
printf("\n %0.3f ",e)
//case e line current
pf=0.85 //power factor
e1=440
l=(ti*1000)/((3**0.5)*e1*pf)
printf("\n line current= %0.1f A",l)
//case f
fr=s*f
n=fr*60
printf("\n The number of complete cycles of the rotor emf per minute is= %0.0f ",n)
|
5e6b3504dbd119932750617268303b66f8dce5a4 | 6bd47868c9c7b3e9469b27f60a4757816a62060b | /Penyelesaian Persamaan Tak Linear/Metode Terbuka/secant.sci | 3c85bb86d1ded5058997c544955dd182877d7ff8 | [] | no_license | fahrioghanial/Program-Metode-Numerik | 555401132e47516ff38ab7d38e1056c16e45ab1a | 83cfe9144c72a3adbabbe71923f32ab6209b02e8 | refs/heads/master | 2023-02-28T16:14:24.353765 | 2021-02-04T08:04:46 | 2021-02-04T08:04:46 | 335,882,015 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 855 | sci | secant.sci | /*
Mohamad Fahrio Ghanial Fatihah
140810190005
Metode Sekan
*/
clear;
clc;
function hasil=f(x);
hasil = x^3-x-3;
endfunction
function sekan()
xi=input('Masukkan tebakan awal x0 = ');
xiplus1=input('Masukkan tebakan awal x1 = ');
printf('Toleransi yang digunakan berdasarkan |f(x[i+1])|');
tol=input('Masukkan nilai toleransi = ');
printf('Metode Sekan\n\n');
i = 0;
fxi = f(xi);
fxiplus1 = f(xiplus1);
absfxiplus1 = abs(f(xiplus1));
while absfxiplus1 > tol
printf('iterasi-%d ->\t x%d = %.6e\t x%d = %.6e\t f(x[%d]) = %.6e\t f(x[%d]) = %.6e\n', i, i, xi, i+1, xiplus1, i, fxi, i+1, fxiplus1);
absfxiplus1 = abs(f(xiplus1));
tempx = xiplus1;
xiplus1 = xiplus1-fxiplus1*(xiplus1-xi)/(fxiplus1-fxi);
xi = tempx;
fxi = f(xi);
fxiplus1 = f(xiplus1);
i = i + 1;
end
endfunction
|
28e242b5ce4b3db7b34f3d1ac19363a1b6f6f149 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1478/CH5/EX5.1/5_1.sce | 65504d7cebaadbc0f3bf4a32a45f49a61545b624 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 559 | sce | 5_1.sce | //phase rule and steels//
//problem 1//
clc
pc_tin=(73/100)//% composition of tin in alloy//
eutectic_tin=64//% composition of tin in eutectic alloy//
wt_alloy=1//weight of alloy in terms of kg//
w=wt_alloy*1000//weight of alloy in terms of gms//
wt_tin=pc_tin*w//wight of tin in alloy(gms)//
wt_lead=w-wt_tin//wight of lead in alloy(gms)//
wt_eutectic_tin=wt_lead*eutectic_tin/(100-eutectic_tin)//weight of eutectic tin(gms)//
To=wt_lead+wt_eutectic_tin//total mass of eutectic alloy(gms)//
printf("\nTotal mass of eutectic in alloy is %.f g",To); |
d88b16435f3662c0c3d30439c3325539e23f38b3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /48/CH15/EX15.15/eg_15_15.sce | ed93014d10426595f5b8916fea9664f4bb94cc20 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 256 | sce | eg_15_15.sce | clc;
clear;
n=4;
for i=1:4
for j=1:4
p(i,j)=modulo(i+j-2,4);
end
end
disp("modulo 4 Addition");
disp(p);
for i=1:4
for j=1:4
p(i,j)=modulo((i-1)*(j-1),4);
end
end
disp("modulo 4 Multiplication");
disp(p);
|
c4ca8b1b061911de97091bb70c43f0b832d4ab0c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3638/CH13/EX13.5/Ex13_5.sce | 1e75b2ef279deae17b24fe0e4dfaef553a79edd6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 779 | sce | Ex13_5.sce | //Introduction to Fiber Optics by A. Ghatak and K. Thyagarajan, Cambridge, New Delhi, 1999
//Example 13.5
//OS=Windows XP sp3
//Scilab version 5.5.2
clc;
clear;
//given
R=0.65;//Responsivity of a Si detector in A/W
Id=1e-9;//Dark current in A
e=1.6e-19;//Electronic charge in C
kB=1.38e-23;//Boltzmann constant in SI Units
Rl=1000;//Assumed value of load resistor Rl in Ohms
T=300;//Assumed value of temperature in K
NEP=1/R*sqrt(2*e*Id+4*kB*T/Rl);//Noise equivalent power in W/(Hz)^(1/2)
mprintf("\n NEP = %.2e W/(Hz)^(1/2)",NEP);//The answers vary due to round off error
//If Id is the major noise term :
NEP=1/R*sqrt(2*e*Id);//Noise equivalent power in W/(Hz)^(1/2)
mprintf("\n If Id is the major noise term:");
mprintf("\n NEP = %.2e W/(Hz)^(1/2)",NEP);
|
573df9c9eb090429e823d6eadf88d1f6347113b5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH2/EX2.15/15.sce | 8f5d40719856f64b7f5b7b1c7d5f90d306015963 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 119 | sce | 15.sce | clc
p=101.325; //kPa
V2=0.6; //m^3
V1=0; //m^3
W=p*(V2-V1);
disp("work done by atmosphere=")
disp(-W)
disp("kJ") |
257b9b99eb179b289fa7b5713bf1a02b95d12fc3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2021/CH7/EX7.12/EX7_12.sce | 939addd056705c799e3c2dd6b9ff9a0a65f4b5b5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 296 | sce | EX7_12.sce | //Finding of Maximum Power Outlet
//Given
d=0.4;
l=400;
H=420;
rho=1000;
f=0.025;
g=9.81;
pi=3.14;
//To Find
h=H/3;
h1=(f*l*100)/(2*g*d);
v=sqrt(h/h1);disp(h); disp(h1);
a=(pi/4)*d^2;
q=a*v;
h3=H-h;disp(h3);
p=(rho*g*q*h3)/1000;
disp(" Maximum Power Outlet ="+string(p)+" KW");
|
6992d9fda4f22e1158f2ca7474ac9b6c9b8f658c | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.4_8.tst | 29a8ecedc708d4401785d35c5929c9122e6dfbfc | [] | 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 | 5,834 | tst | bow.4_8.tst | 4 1:0.1111111111111111 16:0.012987012987012988 139:0.1111111111111111 142:1.0 143:0.5 146:1.0 168:1.0
4 16:0.012987012987012988 27:2.0 28:1.0 33:0.14285714285714285 41:0.3333333333333333 77:1.0 104:1.0 112:0.5 162:1.0 589:1.0 1336:1.0
4 1:0.1111111111111111 6:0.25 15:0.16666666666666666 16:0.012987012987012988 18:1.0 19:1.0 30:1.0 33:0.14285714285714285 48:1.0 139:0.1111111111111111 379:1.0 586:1.0 993:1.0
4 1:0.1111111111111111 18:1.0 41:0.3333333333333333 63:0.3333333333333333 98:1.0 171:0.3333333333333333 184:0.2 692:1.0
4 1:0.2222222222222222 18:1.0 23:1.0 30:1.0 33:0.14285714285714285 44:0.5 63:0.3333333333333333 122:1.0 137:0.5 154:1.0 184:0.2 241:0.25 356:1.0 375:1.0 796:1.0 818:1.0
4 12:0.3333333333333333 16:0.012987012987012988 18:3.0 39:1.0 56:0.125 77:1.0 112:0.5 135:1.0 139:0.1111111111111111 145:0.5 162:1.0 186:0.3333333333333333 189:0.25 227:1.0 435:1.0 462:1.0 584:1.0 751:1.0 1188:1.0 1243:1.0 1336:1.0
4 1:0.1111111111111111 15:0.16666666666666666 16:0.03896103896103896 18:2.0 19:1.0 20:1.0 27:1.0 30:3.0 33:0.14285714285714285 44:0.5 56:0.125 65:1.0 70:0.2 82:1.0 94:1.0 105:0.5 148:0.5 150:1.0 151:1.0 152:1.0 161:1.0 181:0.5 358:1.0 369:2.0 751:1.0 805:1.0 818:1.0 1564:1.0
4 1:0.1111111111111111 6:0.25 15:0.16666666666666666 16:0.03896103896103896 18:1.0 19:1.0 33:0.14285714285714285 35:0.5 48:1.0 56:0.125 92:0.2 94:1.0 112:0.5 119:1.0 154:1.0 235:1.0 268:1.0 310:0.25 332:1.0 493:1.0 518:1.0 586:1.0 637:1.0 799:1.0 901:1.0 993:1.0 1580:1.0
4 6:0.25 204:0.5 768:1.0
4 15:0.3333333333333333 46:0.037037037037037035 78:0.3333333333333333 134:1.0 136:1.0 186:0.3333333333333333 310:0.25 452:1.0 546:1.0 686:0.5 1533:1.0
4 4:0.3333333333333333 6:0.25 15:0.6666666666666666 16:0.025974025974025976 18:1.0 19:1.0 30:1.0 35:0.25 44:0.5 46:0.07407407407407407 48:1.0 115:1.0 126:1.0 130:0.25 134:1.0 139:0.1111111111111111 186:0.3333333333333333 239:1.0 240:1.0 355:1.0 358:1.0 447:1.0 533:1.0 546:1.0 663:1.0
4 184:0.2
4 6:0.25 16:0.012987012987012988 323:1.0
4 12:0.3333333333333333 15:0.16666666666666666 16:0.03896103896103896 18:1.0 23:1.0 28:1.0 30:2.0 33:0.14285714285714285 35:0.25 41:0.6666666666666666 42:1.0 43:2.0 45:2.0 46:0.037037037037037035 54:1.0 93:1.0 94:1.0 108:1.0 175:1.0 195:1.0 214:1.0 283:0.3333333333333333 310:0.25 406:0.5 452:1.0 469:1.0 484:1.0 744:1.0 777:1.0 797:1.0 1606:1.0
4 248:1.0 974:1.0
4 16:0.03896103896103896 104:1.0 105:0.5 160:1.0 162:1.0 238:1.0 504:1.0 864:0.5 1006:1.0 1429:0.2
4 12:0.3333333333333333 15:0.16666666666666666 16:0.012987012987012988 18:2.0 19:1.0 27:1.0 33:0.14285714285714285 35:0.5 43:2.0 106:1.0 112:0.5 145:0.5 161:1.0 186:0.6666666666666666 189:0.25 199:2.0 238:1.0 394:1.0 504:1.0 568:1.0 1285:1.0 1429:0.2
4 12:0.6666666666666666 18:1.0 46:0.037037037037037035 53:1.0 54:1.0 83:0.3333333333333333 94:1.0 105:0.5 122:1.0 160:1.0 174:1.0 212:0.5 347:1.0 372:0.25 375:1.0 770:0.5 793:1.0
4 6:0.5 12:0.3333333333333333 16:0.025974025974025976 18:1.0 30:1.0 33:0.2857142857142857 39:1.0 56:0.125 78:0.3333333333333333 92:0.2 94:1.0 177:1.0 181:0.5 252:1.0 406:0.5 923:1.0 1325:0.3333333333333333 1416:1.0
4 6:0.25 15:0.16666666666666666 16:0.012987012987012988 18:2.0 30:1.0 33:0.14285714285714285 67:1.0 82:1.0 112:0.5 186:0.3333333333333333 199:1.0 468:1.0 504:1.0 584:1.0 878:1.0
4 6:0.25 30:1.0 105:0.5 112:0.5 186:0.3333333333333333 241:0.5 713:1.0
4 1:0.1111111111111111 11:0.5 12:0.3333333333333333 16:0.03896103896103896 25:1.0 33:0.14285714285714285 35:0.25 92:0.2 125:1.0 152:1.0 181:1.0 238:1.0 546:1.0 774:2.0 1175:2.0
4 6:0.25 16:0.012987012987012988 92:0.2 143:0.5 543:1.0 818:1.0
4 33:0.14285714285714285 823:1.0
4 1:0.2222222222222222 16:0.03896103896103896 18:1.0 19:1.0 27:1.0 28:1.0 30:1.0 33:0.14285714285714285 44:0.5 63:0.3333333333333333 160:1.0 181:0.5 310:0.25 568:1.0 1325:0.3333333333333333
4 1:0.2222222222222222 16:0.012987012987012988 20:1.0 42:2.0 77:1.0 118:1.0 148:0.5 161:1.0 310:0.25 452:1.0 1325:0.3333333333333333
4 18:1.0 33:0.14285714285714285 35:0.25 39:1.0 68:1.0 79:1.0 80:1.0 90:0.5 118:1.0 133:1.0 155:0.3333333333333333 204:0.5 225:2.0 291:1.0 546:1.0 586:1.0 704:1.0 923:1.0 1325:0.3333333333333333 1416:1.0 1608:1.0
4 2:1.0 16:0.012987012987012988 35:0.25 56:0.125 125:1.0 181:1.0 586:1.0 809:1.0 821:1.0
4 6:0.5 16:0.025974025974025976 18:4.0 30:1.0 33:0.2857142857142857 41:0.3333333333333333 52:0.2 54:1.0 68:1.0 69:1.0 72:1.0 80:1.0 104:1.0 139:0.1111111111111111 147:1.0 186:0.3333333333333333 435:1.0 542:1.0 568:1.0 584:1.0 744:1.0 759:1.0 839:1.0 1218:1.0 1219:1.0
4 6:0.25 16:0.025974025974025976 30:1.0 33:0.14285714285714285 82:1.0 92:0.2 137:0.5 465:0.5 568:1.0 993:1.0
4 3:1.0 16:0.012987012987012988 30:1.0 33:0.14285714285714285 52:0.2 92:0.2 96:1.0 119:1.0 143:0.5 147:1.0 358:1.0 437:1.0 543:1.0 646:0.25
4 1:0.1111111111111111 16:0.025974025974025976 18:4.0 27:1.0 28:1.0 33:0.14285714285714285 70:0.4 92:0.2 122:1.0 161:2.0 251:1.0 774:1.0 815:1.0 1587:1.0
4 1:0.1111111111111111 12:0.3333333333333333 16:0.025974025974025976 18:1.0 19:1.0 30:1.0 44:0.5 135:1.0 175:1.0 191:1.0 268:1.0 612:1.0 646:0.25
4 6:0.25 12:0.3333333333333333 15:0.3333333333333333 16:0.012987012987012988 30:2.0 33:0.14285714285714285 35:0.25 43:1.0 69:1.0 70:0.2 137:0.5 148:0.5 156:1.0 186:0.3333333333333333 191:1.0 275:1.0 310:0.25 347:1.0 366:1.0 568:1.0 751:1.0 1280:1.0
4 16:0.012987012987012988 152:1.0 665:1.0
4 1:0.1111111111111111 6:0.25 16:0.03896103896103896 45:1.0 48:1.0 61:0.3333333333333333 134:1.0 135:1.0 139:0.1111111111111111 184:0.2 192:1.0 194:1.0
4 16:0.012987012987012988 30:1.0
4 1:0.2222222222222222 6:0.25 16:0.025974025974025976 65:2.0 98:1.0 145:1.0 189:0.25 243:1.0 370:1.0 373:0.5 609:1.0 619:0.25
4 16:0.012987012987012988 18:1.0 19:1.0 20:1.0 30:1.0 52:0.2 105:0.5
4 16:0.012987012987012988 18:1.0 30:1.0 46:0.1111111111111111 72:1.0 92:0.2 136:1.0 204:0.5 756:1.0
|
b3775f7a4247cf97f0b905ad3ff6455ee241d777 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1514/CH9/EX9.3/9_3.sce | 885cf2f403a70eae05b9b9285325df2d5b7ac621 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 466 | sce | 9_3.sce | //chapter 9
//example 9.3
//page 257
clear;
clc ;
//given
Idmax=2.5;//maximum drain current in mA
Vgs=2.7;//gate to source voltage in volts(from transfer characteristics)
//for fixed bias
Vg=Vgs;
Vdd=24; // supply voltage in volts
Vds=8;//drain to source voltage in volts
Rd=(Vdd-Vds)/Idmax;//drain resistance in kohm
Rg=1;//gate resistance in Mohm
printf('\nVgs=%.1f V\nVg=%.1f V\nRd=%.1f kohm,use standard value 5.6 kohm\nRg=%d Mohm',Vgs,Vg,Rd,Rg)
|
c550f3cde6c48d48e142e3c42e11873f0a223ce6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /40/CH10/EX10.6b/Exa_10_6b.sce | 92dabe3e514890c2969002451e05f2a5eb9c484b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 471 | sce | Exa_10_6b.sce | //optimal Fir band pass filter design
fp=8;fs=16;
Ap=1;As=50;S=48;
Fp=fp/S;Fs=fs/S;
FT=0.1;FC=0.25
//calculation of filter length
delp=(10^(Ap/20)-1)/(10^(Ap/20)+1);
dels=10^(-As/20);
del=min(delp,dels);
N=1+((-10*log10(del*del)-13)/(14.6*FT));
N1=19;
[hn]=eqfir(N1,[0 1/6;1/3 0.5],[1 0],[1 1]);
[HF,fr]=frmag(hn,200);
Hf=20*log10(HF);
a=gca();
plot(fr,Hf);
xlabel('Digital frequency F');
ylabel('Magnitude in dB');
xtitle('optimal Half band LPF N=17'); |
3f0c540f425b17fe44e79d662cf4ef332439273a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2459/CH28/EX28.3/Ex28_3.sce | 7708f253c7d6c91fb476adfececa7da7e573172a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 126 | sce | Ex28_3.sce | //chapter28
//example28.3
//page591
a= bin2dec ( ' 110001 ' )
printf("equivalent decimal of binary 110001 is %d \n",a)
|
0c1f37074bcf766666175cd75ff2c1a41b1bec8a | a2845a06ebac1138c6854d691780b120cdd556ab | /PSKmod.sce | 546dc5c3ddd2dd84bbd5431c8616757168e5bffa | [] | no_license | asp2809/Scilab-Programs | d734202084dc70e2b4e3281410833d315ce1558c | 6a49e9401ee81dd3ffc909fe6a3954b5e184c70c | refs/heads/master | 2020-03-10T15:11:33.831289 | 2018-10-05T09:50:06 | 2018-10-05T09:50:06 | 129,443,439 | 1 | 0 | null | 2018-10-05T09:50:07 | 2018-04-13T19:10:50 | Scilab | UTF-8 | Scilab | false | false | 374 | sce | PSKmod.sce | //program to generate a PSK modulated waveform
function []=PSKmod(data,fc,Ac)
t=0:0.001:1
x=Ac*sin(2*%pi*fc*t)
y=Ac*sin(2*%pi*fc*t+%pi)
z=data
mods=[]
for i=1:length(data)
if(z(i)==1) then
mods=[mods,x]
else
mods=[mods,y]
end
end
plot(mods)
title("ASK Signal")
endfunction
|
2168b349e25ab0b1880effa1284e2b8b0abcfeda | 449d555969bfd7befe906877abab098c6e63a0e8 | /2342/CH6/EX6.4/EX6_4.sce | 3666f9846dbb7632bc36a3f87a925c9592b38cb1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 431 | sce | EX6_4.sce | // Exa 6.4
format('v',6)
clc;
clear;
close;
// Given data
Beta= 100;
I_E= 10;// in mA
alpha= Beta/(1+Beta);
disp(alpha,"The value of alpha is : ")
// Formula alpha= I_C/I_E;
I_C= alpha*I_E;// in mA
I_B= I_E-I_C;// in mA
disp(I_C,"The collector current in mA is : ")
disp(I_B,"The base current in mA is : ")
// Note: The calculated value of alpha in the book is wrong, due to this the answer in the book is wrong.
|
c0404368d31e6c264b6991e13358c4ef7ab07847 | 9cb37875b74a713c93c09fa50ccc70ac0f71ecdb | /CostHriFunction/Justin/SCNARIOS_PRESENTATION/Justin_IROS_easy_tmp.sce | a28835c56e48b7614355adea2fcfbb1a39cbe87e | [] | no_license | jmainpri/move3d-assets | a5b621daaedaaf8784fed0da1e80d029c83f3983 | 939db49d17a14e052bb58324b70e6112803d3105 | refs/heads/master | 2021-01-16T17:48:56.669119 | 2016-02-16T14:04:09 | 2016-02-16T14:04:09 | 20,237,987 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,418 | sce | Justin_IROS_easy_tmp.sce | #************************************************************
# Scenario of Ikea
#
# date : Wed May 11 18:36:50 2011
#************************************************************
p3d_sel_desc_name P3D_ENV Ikea
p3d_sel_desc_name P3D_ROBOT ACHILE_HUMAN1
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.146000 0.230000 0.763000 0.000000 0.000000 -160.776000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 55.572000 0.000000 0.000000 60.494000 25.398000 -80.280000 2.648000 -59.543000 0.000000 0.000000 -60.494000 -14.112000 -74.628000 0.000000 0.000000 -86.927373 0.000000 97.041538 0.000000 -10.114165 0.000000 0.000000 -86.927373 0.000000 97.041538 0.000000 -10.114165 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT ROBOT_JUSTIN
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -1.568000 -1.352000 -124.056000 -69.586000 -13.480000 79.879000 -66.399000 -1.327433 3.871682 -45.000000 -94.000000 -50.000000 115.000000 2.000000 14.000000 40.000000 42.789630 -99.882479 -5.746000 28.339367 18.468345 -30.606243 10.988447 -2.828000 -1.257000 0.975000 0.000000 0.000000 60.444000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -1.568000 -1.352000 -124.056000 -110.862000 -0.806000 66.864000 -66.058000 -1.327433 3.871682 -45.000000 -94.000000 -50.000000 115.000000 2.000000 14.000000 40.000000 38.028631 -107.273056 -44.914000 29.634102 30.596943 -41.908380 -15.720483 -2.278000 -0.393000 0.857000 0.000000 0.000000 16.704000
p3d_constraint p3d_kuka_arm_ik 6 18 19 21 22 23 24 1 29 0 3 20 -1 1
p3d_set_cntrt_Tatt 0 -0.982797 0.018403 -0.183754 -0.036039 -0.003530 0.992963 0.118341 -0.346482 0.184640 0.116955 -0.975819 -0.017708
p3d_constraint p3d_min_max_dofs 0 2 4 3 2 0.000000 135.000000 0
#p3d_constraint p3d_lin_rel_dofs 1 5 2 3 4 3 -1.000000 -1.000000 0.000000 0
p3d_constraint p3d_fixed_jnt 1 1 0 3 -1.568000 -1.352000 -124.056000 0
p3d_constraint p3d_fixed_jnt 1 7 0 1 -1.327433 0
p3d_constraint p3d_fixed_jnt 1 8 0 1 3.871682 0
p3d_constraint p3d_fixed_jnt 1 10 0 1 -45.000000 0
p3d_constraint p3d_fixed_jnt 1 11 0 1 -94.000000 0
p3d_constraint p3d_fixed_jnt 1 12 0 1 -50.000000 0
p3d_constraint p3d_fixed_jnt 1 13 0 1 115.000000 0
p3d_constraint p3d_fixed_jnt 1 14 0 1 2.000000 0
p3d_constraint p3d_fixed_jnt 1 15 0 1 14.000000 0
p3d_constraint p3d_fixed_jnt 1 16 0 1 40.000000 0
p3d_set_object_base_and_arm_constraints 29 1 0 1 0
p3d_set_arm_data 0 1 29
p3d_set_object_to_carry 0 Verre
p3d_sel_desc_name P3D_ROBOT Lampe
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -1.966568 1.622419 0.983776 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT Assiette
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.884956 -1.573254 0.787611 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT Pommes
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.442478 -1.622419 0.762537 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT Verre
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT Tabouret
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.207317 0.219512 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT legLamp
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.436000 0.693000 0.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT sailLamp1
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029268 0.263415 3.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT sailLamp2
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029268 0.556098 3.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_sel_desc_name P3D_ROBOT sailLamp3
p3d_set_robot_steering_method Linear
p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.029268 0.848780 3.000000 0.000000 0.000000 0.000000
p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
p3d_set_camera_pos -0.068686 -0.258955 0.995614 2.853974 5.531310 0.734375 0.000000 0.000000 1.000000 0.000000
|
1340febd7262120d98c69205d64dfbaa74c008c7 | 37c2b0460ba03cff695b8776d6a6e5413cb45568 | /data/linear_speed_process.sce | 70d8d6aa00bf508eb3484d37f0a186032e14874e | [] | no_license | PascalBauer/Notre-bon-plaisir-Pascal-Bauer | 487a88aa0501a6e6ba3d9afb1c24ad429e4e10db | 2aa4557b4517a673e0e795d81acc0085a1077280 | refs/heads/master | 2021-01-13T08:23:28.534385 | 2016-03-18T16:25:17 | 2016-03-18T16:25:17 | 69,221,480 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,539 | sce | linear_speed_process.sce | clc
//get data from file
data_raw = read_csv("/home/serveur/catkin_ws/data/test_linear_speed_2015-11-13_17-42-31");
data = evstr(data_raw) ;
cmd = data(:,1)' ;
speed_x = data(:,6)' ;
dx = data(:,3)
size_c = size(cmd);
size_c = size_c(2);
// compute error
err_speed_x = (speed_x - cmd)./cmd ;
err_speed_x(size_c/2+1) = 0.0;
mean_error_x = mean(err_speed_x)
mean_error_x_array = ones(1,size_c)*mean_error_x;
disp(mean_error_x)
figure
plot(cmd,mean_error_x_array,"r+--")
plot(cmd,err_speed_x,"b+--")
xgrid(0)
figure
plot(cmd,cmd,"r+--")
plot(cmd,speed_x,"b+--")
xgrid(0)
///////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////
data_raw = read_csv("/home/serveur/catkin_ws/data/test_linear_speed_2015-11-13_17-59-40");
data = evstr(data_raw) ;
cmd = data(:,1)' ;
speed_x = data(:,6)' ;
size_c = size(cmd);
size_c = size_c(2);
// compute error
err_speed_x = (speed_x - cmd)./cmd ;
err_speed_x(size_c/2+1) = 0.0;
mean_error_x = mean(err_speed_x)
mean_error_x_array = ones(1,size_c)*mean_error_x;
disp(mean_error_x)
figure
plot(cmd,mean_error_x_array,"r+--")
plot(cmd,err_speed_x,"b+--")
xgrid(0)
figure
plot(cmd,cmd,"r+--")
plot(cmd,speed_x,"b+--")
xgrid(0)
///////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////
data_raw = read_csv("/home/serveur/catkin_ws/data/test_linear_speed_2015-11-13_17-60-19");
data = evstr(data_raw) ;
cmd = data(:,1)' ;
speed_x = data(:,6)' ;
size_c = size(cmd);
size_c = size_c(2);
// compute error
err_speed_x = (speed_x - cmd)./cmd ;
err_speed_x(size_c/2+1) = 0.0;
mean_error_x = mean(err_speed_x)
mean_error_x_array = ones(1,size_c)*mean_error_x;
disp(mean_error_x)
figure
plot(cmd,mean_error_x_array,"r+--")
plot(cmd,err_speed_x,"b+--")
xgrid(0)
figure
plot(cmd,cmd,"r+--")
plot(cmd,speed_x,"b+--")
xgrid(0)
///////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////
|
3036998aa4dedbe3f10640a8371b72fcc0fe172d | 449d555969bfd7befe906877abab098c6e63a0e8 | /46/CH17/EX17.4/Example17_4.sce | 1a2e58d94a2b73fb63e567f80e234709302272fd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 656 | sce | Example17_4.sce | //Example 17.4
clc
s=%s;
syms Kc K1 tauI tauD
K=0.09;
Kc=K1/K;
Gc=K1*(1+1/(tauI*s)+tauD*s)
g1=1/((s+1)*(s+2));
//g2=exp(-0.5*s), we can write it as g2=(2-0.5*s)/(2+0.5*s). Therefore,
g2=(2-0.5*s)/(2+0.5*s);
G=g1*g2;
G=syslin('c',G)
clf
bode(G)
show_margins(G)
//From the bode diagrams we get
wc0=1.56;//rad/min
A=0.145;
Ku=1/A
Pu=2*%pi/wc0
//By Z-N rules
//For P controller
K1=0.5*Ku
Gc=K1
G1=Gc*G/K1
//For PI controller
K1=0.45*Ku
tauI=Pu/1.2
Gc=K1*(1+1/(tauI*s))
G2=Gc*G/K1
//For PID controller
K1=0.6*Ku
tauI=Pu/2
tauD=Pu/8
Gc=K1*(1+1/(tauI*s)+tauD*s)
G3=Gc*G/K1
clf
bode([G1;G2;G3])
legend(['G1';'G2';'G3']);
|
44b26579e8eb9e1c0c4e24cb3b5fef73fc26359c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2471/CH9/EX9.9/Ex9_9.sce | 893329a4471c3bf12820956289e6200f03683da1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,599 | sce | Ex9_9.sce | clear ;
clc;
// Example 9.9
printf('Example 9.9\n\n');
printf('Page No. 277\n\n');
//given
A = 15;// glazing area in m^2
l = 10;// Length of office in m
h = 6;// height of office in m
w = 3.5;// width of office in m
Y_w = 4;// Admittance of wall in W/m^2-K
Y_f = 3;// Admittance of floor in W/m^2-K
Y_c = 3;// Admittance of ceiling in W/m^2-K
N = 1.5;//Ventilation rate (air changes per hour)
V = l*h*w;// Volume in m^3
U_G = 5.6;// Transmittance in W/m^2-K
//From table 9.18 and table 9.16
To = 16.5;// External temperature of June in degree celcius
T_O = 7.5;// Swing temperature in degre celcius
I = 155; //Vertical S in W-m^2
Is = 385;//Vertical S in W-m^2
S = 0.77;// Solar gain factor
Sa = 0.54;// Solar gain factor
//As For the mean internal temperature -Ti = To + ((A*I*S)/((0.33*N*V) + (A*U_G)))
Ti = To + ((A*I*S)/((0.33*N*V) + (A*U_G)));// in degree celcius
printf('the mean internal temperature is %.1f deg C \n',Ti)
A_G = (A*Is*Sa) + ((A*U_G) + (0.33*N*V))*T_O;// Swing in gain in W
Net_A = 2*((w*h) + (l*w)) - A;// Net wall area in m^2
A_f = l*h;// floor area in m^2
A_c = l*h;//ceiling area in m^2
A_Y_w = Net_A * Y_w;// Wall AY in W/K
A_Y_f = A_f * Y_f;// Floor AY in W/K
A_Y_c = A_c * Y_c;// ceiling AY in W/K
A_Y_wi = 84;// Window AY in W/K
Net_AY = A_Y_w + A_Y_f + A_Y_c + A_Y_wi// in W/K
Ti_s = ((A_G)/((0.33*N*V) + (Net_AY)))// Internal Temperature swing in deg C
T_p = Ti + Ti_s;// in deg C
printf('Peak internal temperature is %.1f deg C',T_p) // Deviation in the answer is due to some calculation approximation in the book
|
6d1f189f1c228cea2ed9e49a3023c2e8ec50c4fc | 446aae2100be19be6950fe030959e4ae6ebf75d3 | /laboratorios/laboratorio 2/laboratorio2.sce | 79e208f907b05bd489322ad9431233363a9a75cb | [] | no_license | jhont285/metodos-numericos | 492dcc5893707393d066ecc53ca6c5f82faaee66 | 388248e2df5a8c73069dfba53cd439f62bb14476 | refs/heads/master | 2021-06-07T18:27:18.337510 | 2016-07-21T22:17:24 | 2016-07-21T22:17:24 | 62,011,812 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,247 | sce | laboratorio2.sce | clc
format(5)
A1 = [
1 2 -2 1 1 -2
0 -15 5 12 11 4
0 0 -2 0 1 0
0 0 0 -2/5 -1/5 11/5
0 0 0 0 2 9
0 0 0 0 0 -2
];
B1 = [-4 112 -1 53/5 64 -12]';
X1 = UN_sustitucion_regresiva(A1,B1)'
disp(X1)
A2 = [
24/527 0 0 0 0 0
-167/122 527/122 0 0 0 0
4/13 -11/26 -61/26 0 0 0
-5/14 121/28 -187/28 -13/7 0 0
10 -37 -9 52 56 0
0 -3 1 2 2 1
];
B2 = [-144/527 -1633/122 251/26 359/28 -107 0]';
X2 = UN_sustitucion_progre(A2,B2)'
disp(X2)
A3 = [
0 -18 0 14 16 7
1 2 -2 1 1 -2
8 16 -18 8 9 -16
9 3 -13 21 20 -14
0 -3 1 2 2 1
10 -1 -21 28 32 -12
];
B3 = [142 -4 -33 76 21 145]';
[U,C] = UN_eliminacion_gauss(A3,B3)
disp(U)
disp(C')
X3 = UN_sustitucion_regresiva(U,C)'
disp(X3)
A4 = [
1 2 -2 1 1 -2
9 3 -13 21 20 -14
8 16 -18 8 9 -16
0 -18 0 14 16 7
10 -1 -21 28 32 -12
0 -3 1 2 2 1
];
[L,U] = UN_factorizacion_LU(A4)
disp(L)
disp(U)
B4 = [-4 76 -33 142 145 21]';
B5 = [-11 -106 -82 9 -107 0]';
X4 = UN_solucion_LU(L,U,B4)
disp(X4')
X5 = UN_solucion_LU(L,U,B5)
disp(X5')
|
a332ab96ab9f2a611ac16d365cd20452477deafd | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/TEE30.prev.tst | 3fd00c9bad4407acc0564fb3eb1a1190c090a981 | [
"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 | 274,577 | tst | TEE30.prev.tst | TranspositionSet={[2,1,0,3],[1,2,0,3],[2,0,1,3],[0,2,1,3],[1,0,2,3]}
isHomogeneous
Expanding for base=30, level=1, reasons+features=base,transpose,primitive,same,similiar,evenexp invall,norm
Refined variables=a,b,c,d
[0+1a,0+1b,0+1c,0+1d]: unknown -> [1] [0,0,0,0] a⁴+b⁴+c⁴-d⁴
-> solution [0,0,0,0],trivial(3) [1,0,0,1],trivial(3) [0,1,0,1],trivial(3) [0,0,1,1],trivial(3)
---------------- level 0
expanding queue[0]^-1,meter=[30,30,30,30]: a⁴+b⁴+c⁴-d⁴
[0+30a,0+30b,0+30c,0+30d]: non-primitive
-> solution [0,0,0,0],trivial(3) [30,0,0,30],trivial(3) [0,30,0,30],trivial(3) [0,0,30,30],trivial(3)
[10+30a,10+30b,10+30c,0+30d]: unknown -> [1] [10,10,10,0] 4a+18a²+36a³+27a⁴+4b+18b²+36b³+27b⁴+4c+18c²+36c³+27c⁴-27d⁴+1
[20+30a,10+30b,10+30c,0+30d]: negative-1 [1] by {a=>-a-1}
[10+30a,20+30b,10+30c,0+30d]: negative-1 [1] by {b=>-b-1}
[20+30a,20+30b,10+30c,0+30d]: negative-1 [1] by {a=>-a-1,b=>-b-1}
[10+30a,10+30b,20+30c,0+30d]: negative-1 [1] by {c=>-c-1}
[20+30a,10+30b,20+30c,0+30d]: negative-1 [1] by {a=>-a-1,c=>-c-1}
[10+30a,20+30b,20+30c,0+30d]: negative-1 [1] by {b=>-b-1,c=>-c-1}
[20+30a,20+30b,20+30c,0+30d]: negative-1 [1] by {a=>-a-1,b=>-b-1,c=>-c-1}
[1+30a,0+30b,0+30c,1+30d]: unknown -> [2] [1,0,0,1] a+45a²+900a³+6750a⁴+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴
-> solution [1,0,0,1],trivial(3) [31,0,0,31],trivial(3)
[7+30a,0+30b,0+30c,1+30d]: unknown -> [3] [7,0,0,1] 343a+2205a²+6300a³+6750a⁴+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+20
[11+30a,0+30b,0+30c,1+30d]: unknown -> [4] [11,0,0,1] 1331a+5445a²+9900a³+6750a⁴+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+122
[13+30a,0+30b,0+30c,1+30d]: unknown -> [5] [13,0,0,1] 2197a+7605a²+11700a³+6750a⁴+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+238
[17+30a,0+30b,0+30c,1+30d]: negative-1 [5] by {a=>-a-1}
[19+30a,0+30b,0+30c,1+30d]: negative-1 [4] by {a=>-a-1}
[23+30a,0+30b,0+30c,1+30d]: negative-1 [3] by {a=>-a-1}
[29+30a,0+30b,0+30c,1+30d]: negative-1 [2] by {a=>-a-1}
[0+30a,1+30b,0+30c,1+30d]: transposed [2] by [1,0,2,3]
[15+30a,2+30b,0+30c,1+30d]: unknown -> [6] [15,2,0,1] 3375a+10125a²+13500a³+6750a⁴+8b+180b²+1800b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+422
[10+30a,3+30b,0+30c,1+30d]: unknown -> [7] [10,3,0,1] 1000a+4500a²+9000a³+6750a⁴+27b+405b²+2700b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+84
[20+30a,3+30b,0+30c,1+30d]: negative-1 [7] by {a=>-a-1}
[15+30a,4+30b,0+30c,1+30d]: unknown -> [8] [15,4,0,1] 3375a+10125a²+13500a³+6750a⁴+64b+720b²+3600b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+424
[6+30a,5+30b,0+30c,1+30d]: unknown -> [9] [6,5,0,1] 216a+1620a²+5400a³+6750a⁴+125b+1125b²+4500b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+16
[12+30a,5+30b,0+30c,1+30d]: unknown -> [10] [12,5,0,1] 1728a+6480a²+10800a³+6750a⁴+125b+1125b²+4500b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+178
[18+30a,5+30b,0+30c,1+30d]: negative-1 [10] by {a=>-a-1}
[24+30a,5+30b,0+30c,1+30d]: negative-1 [9] by {a=>-a-1}
[5+30a,6+30b,0+30c,1+30d]: transposed [9] by [1,0,2,3]
[25+30a,6+30b,0+30c,1+30d]: unknown -> [11] [25,6,0,1] 15625a+28125a²+22500a³+6750a⁴+216b+1620b²+5400b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+3266
[0+30a,7+30b,0+30c,1+30d]: transposed [3] by [1,0,2,3]
[15+30a,8+30b,0+30c,1+30d]: unknown -> [12] [15,8,0,1] 3375a+10125a²+13500a³+6750a⁴+512b+2880b²+7200b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+456
[10+30a,9+30b,0+30c,1+30d]: unknown -> [13] [10,9,0,1] 1000a+4500a²+9000a³+6750a⁴+729b+3645b²+8100b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+138
[20+30a,9+30b,0+30c,1+30d]: negative-1 [13] by {a=>-a-1}
[3+30a,10+30b,0+30c,1+30d]: transposed [7] by [1,0,2,3]
[9+30a,10+30b,0+30c,1+30d]: transposed [13] by [1,0,2,3]
[21+30a,10+30b,0+30c,1+30d]: unknown -> [14] [21,10,0,1] 9261a+19845a²+18900a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+1704
[27+30a,10+30b,0+30c,1+30d]: unknown -> [15] [27,10,0,1] 19683a+32805a²+24300a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+4512
[0+30a,11+30b,0+30c,1+30d]: transposed [4] by [1,0,2,3]
[5+30a,12+30b,0+30c,1+30d]: transposed [10] by [1,0,2,3]
[25+30a,12+30b,0+30c,1+30d]: unknown -> [16] [25,12,0,1] 15625a+28125a²+22500a³+6750a⁴+1728b+6480b²+10800b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+3428
[0+30a,13+30b,0+30c,1+30d]: transposed [5] by [1,0,2,3]
[15+30a,14+30b,0+30c,1+30d]: unknown -> [17] [15,14,0,1] 3375a+10125a²+13500a³+6750a⁴+2744b+8820b²+12600b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+742
[2+30a,15+30b,0+30c,1+30d]: transposed [6] by [1,0,2,3]
[4+30a,15+30b,0+30c,1+30d]: transposed [8] by [1,0,2,3]
[8+30a,15+30b,0+30c,1+30d]: transposed [12] by [1,0,2,3]
[14+30a,15+30b,0+30c,1+30d]: transposed [17] by [1,0,2,3]
[16+30a,15+30b,0+30c,1+30d]: unknown -> [18] [16,15,0,1] 4096a+11520a²+14400a³+6750a⁴+3375b+10125b²+13500b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+968
[22+30a,15+30b,0+30c,1+30d]: unknown -> [19] [22,15,0,1] 10648a+21780a²+19800a³+6750a⁴+3375b+10125b²+13500b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+2374
[26+30a,15+30b,0+30c,1+30d]: unknown -> [20] [26,15,0,1] 17576a+30420a²+23400a³+6750a⁴+3375b+10125b²+13500b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+4230
[28+30a,15+30b,0+30c,1+30d]: unknown -> [21] [28,15,0,1] 21952a+35280a²+25200a³+6750a⁴+3375b+10125b²+13500b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+5544
[15+30a,16+30b,0+30c,1+30d]: transposed [18] by [1,0,2,3]
[0+30a,17+30b,0+30c,1+30d]: unknown -> [22] [0,17,0,1] 6750a⁴+4913b+13005b²+15300b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+696
[5+30a,18+30b,0+30c,1+30d]: negative-1 [16] by {a=>-a-1,b=>-b-1}
[25+30a,18+30b,0+30c,1+30d]: negative-1 [16] by {b=>-b-1}
[0+30a,19+30b,0+30c,1+30d]: unknown -> [23] [0,19,0,1] 6750a⁴+6859b+16245b²+17100b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+1086
[3+30a,20+30b,0+30c,1+30d]: negative-1 [15] by {a=>-a-1,b=>-b-1}
[9+30a,20+30b,0+30c,1+30d]: negative-1 [15] by {b=>-b-1}
[21+30a,20+30b,0+30c,1+30d]: negative-1 [15] by {b=>-b-1}
[27+30a,20+30b,0+30c,1+30d]: negative-1 [15] by {b=>-b-1}
[10+30a,21+30b,0+30c,1+30d]: transposed [14] by [1,0,2,3]
[20+30a,21+30b,0+30c,1+30d]: negative-1 [13] by {a=>-a-1,b=>-b-1}
[15+30a,22+30b,0+30c,1+30d]: transposed [19] by [1,0,2,3]
[0+30a,23+30b,0+30c,1+30d]: unknown -> [24] [0,23,0,1] 6750a⁴+12167b+23805b²+20700b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+2332
[5+30a,24+30b,0+30c,1+30d]: negative-1 [16] by {a=>-a-1}
[25+30a,24+30b,0+30c,1+30d]: negative-1 [11] by {b=>-b-1}
[6+30a,25+30b,0+30c,1+30d]: transposed [11] by [1,0,2,3]
[12+30a,25+30b,0+30c,1+30d]: transposed [16] by [1,0,2,3]
[18+30a,25+30b,0+30c,1+30d]: negative-1 [10] by {a=>-a-1,b=>-b-1}
[24+30a,25+30b,0+30c,1+30d]: negative-1 [10] by {b=>-b-1}
[15+30a,26+30b,0+30c,1+30d]: transposed [20] by [1,0,2,3]
[10+30a,27+30b,0+30c,1+30d]: transposed [15] by [1,0,2,3]
[20+30a,27+30b,0+30c,1+30d]: negative-1 [13] by {a=>-a-1}
[15+30a,28+30b,0+30c,1+30d]: transposed [21] by [1,0,2,3]
[0+30a,29+30b,0+30c,1+30d]: unknown -> [25] [0,29,0,1] 6750a⁴+24389b+37845b²+26100b³+6750b⁴+6750c⁴-d-45d²-900d³-6750d⁴+5894
[0+30a,0+30b,1+30c,1+30d]: transposed [2] by [1,2,0,3]
[15+30a,0+30b,2+30c,1+30d]: transposed [6] by [0,2,1,3]
[0+30a,15+30b,2+30c,1+30d]: transposed [6] by [2,0,1,3]
[10+30a,0+30b,3+30c,1+30d]: transposed [7] by [0,2,1,3]
[20+30a,0+30b,3+30c,1+30d]: negative-1 [13] by {a=>-a-1}
[0+30a,10+30b,3+30c,1+30d]: transposed [7] by [2,0,1,3]
[0+30a,20+30b,3+30c,1+30d]: negative-1 [15] by {b=>-b-1}
[15+30a,0+30b,4+30c,1+30d]: transposed [8] by [0,2,1,3]
[0+30a,15+30b,4+30c,1+30d]: transposed [8] by [2,0,1,3]
[6+30a,0+30b,5+30c,1+30d]: transposed [9] by [0,2,1,3]
[12+30a,0+30b,5+30c,1+30d]: transposed [10] by [0,2,1,3]
[18+30a,0+30b,5+30c,1+30d]: negative-1 [10] by {a=>-a-1}
[24+30a,0+30b,5+30c,1+30d]: negative-1 [9] by {a=>-a-1}
[0+30a,6+30b,5+30c,1+30d]: transposed [9] by [2,0,1,3]
[0+30a,12+30b,5+30c,1+30d]: transposed [10] by [2,0,1,3]
[0+30a,18+30b,5+30c,1+30d]: negative-1 [16] by {b=>-b-1}
[0+30a,24+30b,5+30c,1+30d]: negative-1 [11] by {b=>-b-1}
[5+30a,0+30b,6+30c,1+30d]: transposed [9] by [1,2,0,3]
[25+30a,0+30b,6+30c,1+30d]: transposed [11] by [0,2,1,3]
[0+30a,5+30b,6+30c,1+30d]: transposed [9] by [2,1,0,3]
[15+30a,10+30b,6+30c,1+30d]: unknown -> [26] [15,10,6,1] 3375a+10125a²+13500a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+216c+1620c²+5400c³+6750c⁴-d-45d²-900d³-6750d⁴+516
[10+30a,15+30b,6+30c,1+30d]: transposed [26] by [1,0,2,3]
[20+30a,15+30b,6+30c,1+30d]: negative-1 [13] by {a=>-a-1}
[15+30a,20+30b,6+30c,1+30d]: negative-1 [26] by {b=>-b-1}
[0+30a,25+30b,6+30c,1+30d]: transposed [11] by [2,0,1,3]
[0+30a,0+30b,7+30c,1+30d]: transposed [3] by [1,2,0,3]
[15+30a,0+30b,8+30c,1+30d]: transposed [12] by [0,2,1,3]
[0+30a,15+30b,8+30c,1+30d]: transposed [12] by [2,0,1,3]
[10+30a,0+30b,9+30c,1+30d]: transposed [13] by [0,2,1,3]
[20+30a,0+30b,9+30c,1+30d]: negative-1 [13] by {a=>-a-1}
[0+30a,10+30b,9+30c,1+30d]: transposed [13] by [2,0,1,3]
[0+30a,20+30b,9+30c,1+30d]: negative-1 [26] by {b=>-b-1}
[3+30a,0+30b,10+30c,1+30d]: transposed [7] by [1,2,0,3]
[9+30a,0+30b,10+30c,1+30d]: transposed [13] by [1,2,0,3]
[21+30a,0+30b,10+30c,1+30d]: transposed [14] by [0,2,1,3]
[27+30a,0+30b,10+30c,1+30d]: transposed [15] by [0,2,1,3]
[0+30a,3+30b,10+30c,1+30d]: transposed [7] by [2,1,0,3]
[15+30a,6+30b,10+30c,1+30d]: transposed [26] by [0,2,1,3]
[0+30a,9+30b,10+30c,1+30d]: transposed [13] by [2,1,0,3]
[15+30a,12+30b,10+30c,1+30d]: unknown -> [27] [15,12,10,1] 3375a+10125a²+13500a³+6750a⁴+1728b+6480b²+10800b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-d-45d²-900d³-6750d⁴+678
[6+30a,15+30b,10+30c,1+30d]: transposed [26] by [2,0,1,3]
[12+30a,15+30b,10+30c,1+30d]: transposed [27] by [1,0,2,3]
[18+30a,15+30b,10+30c,1+30d]: negative-1 [10] by {a=>-a-1}
[24+30a,15+30b,10+30c,1+30d]: negative-1 [9] by {a=>-a-1}
[15+30a,18+30b,10+30c,1+30d]: negative-1 [27] by {b=>-b-1}
[0+30a,21+30b,10+30c,1+30d]: transposed [14] by [2,0,1,3]
[15+30a,24+30b,10+30c,1+30d]: negative-1 [11] by {b=>-b-1}
[0+30a,27+30b,10+30c,1+30d]: transposed [15] by [2,0,1,3]
[0+30a,0+30b,11+30c,1+30d]: transposed [4] by [1,2,0,3]
[5+30a,0+30b,12+30c,1+30d]: transposed [10] by [1,2,0,3]
[25+30a,0+30b,12+30c,1+30d]: transposed [16] by [0,2,1,3]
[0+30a,5+30b,12+30c,1+30d]: transposed [10] by [2,1,0,3]
[15+30a,10+30b,12+30c,1+30d]: transposed [27] by [0,2,1,3]
[10+30a,15+30b,12+30c,1+30d]: transposed [27] by [2,0,1,3]
[20+30a,15+30b,12+30c,1+30d]: negative-1 [13] by {a=>-a-1}
[15+30a,20+30b,12+30c,1+30d]: negative-1 [26] by {b=>-b-1}
[0+30a,25+30b,12+30c,1+30d]: transposed [16] by [2,0,1,3]
[0+30a,0+30b,13+30c,1+30d]: transposed [5] by [1,2,0,3]
[15+30a,0+30b,14+30c,1+30d]: transposed [17] by [0,2,1,3]
[0+30a,15+30b,14+30c,1+30d]: transposed [17] by [2,0,1,3]
[2+30a,0+30b,15+30c,1+30d]: transposed [6] by [1,2,0,3]
[4+30a,0+30b,15+30c,1+30d]: transposed [8] by [1,2,0,3]
[8+30a,0+30b,15+30c,1+30d]: transposed [12] by [1,2,0,3]
[14+30a,0+30b,15+30c,1+30d]: transposed [17] by [1,2,0,3]
[16+30a,0+30b,15+30c,1+30d]: transposed [18] by [0,2,1,3]
[22+30a,0+30b,15+30c,1+30d]: transposed [19] by [0,2,1,3]
[26+30a,0+30b,15+30c,1+30d]: transposed [20] by [0,2,1,3]
[28+30a,0+30b,15+30c,1+30d]: transposed [21] by [0,2,1,3]
[0+30a,2+30b,15+30c,1+30d]: transposed [6] by [2,1,0,3]
[0+30a,4+30b,15+30c,1+30d]: transposed [8] by [2,1,0,3]
[10+30a,6+30b,15+30c,1+30d]: transposed [26] by [1,2,0,3]
[20+30a,6+30b,15+30c,1+30d]: negative-1 [13] by {a=>-a-1}
[0+30a,8+30b,15+30c,1+30d]: transposed [12] by [2,1,0,3]
[6+30a,10+30b,15+30c,1+30d]: transposed [26] by [2,1,0,3]
[12+30a,10+30b,15+30c,1+30d]: transposed [27] by [1,2,0,3]
[18+30a,10+30b,15+30c,1+30d]: negative-1 [10] by {a=>-a-1}
[24+30a,10+30b,15+30c,1+30d]: negative-1 [9] by {a=>-a-1}
[10+30a,12+30b,15+30c,1+30d]: transposed [27] by [2,1,0,3]
[20+30a,12+30b,15+30c,1+30d]: negative-1 [13] by {a=>-a-1}
[0+30a,14+30b,15+30c,1+30d]: transposed [17] by [2,1,0,3]
[0+30a,16+30b,15+30c,1+30d]: transposed [18] by [2,0,1,3]
[10+30a,18+30b,15+30c,1+30d]: negative-1 [27] by {b=>-b-1}
[20+30a,18+30b,15+30c,1+30d]: negative-1 [27] by {b=>-b-1}
[6+30a,20+30b,15+30c,1+30d]: negative-1 [26] by {b=>-b-1}
[12+30a,20+30b,15+30c,1+30d]: negative-1 [26] by {b=>-b-1}
[18+30a,20+30b,15+30c,1+30d]: negative-1 [26] by {b=>-b-1}
[24+30a,20+30b,15+30c,1+30d]: negative-1 [26] by {b=>-b-1}
[0+30a,22+30b,15+30c,1+30d]: transposed [19] by [2,0,1,3]
[10+30a,24+30b,15+30c,1+30d]: negative-1 [11] by {b=>-b-1}
[20+30a,24+30b,15+30c,1+30d]: negative-1 [13] by {a=>-a-1}
[0+30a,26+30b,15+30c,1+30d]: transposed [20] by [2,0,1,3]
[0+30a,28+30b,15+30c,1+30d]: transposed [21] by [2,0,1,3]
[15+30a,0+30b,16+30c,1+30d]: transposed [18] by [1,2,0,3]
[0+30a,15+30b,16+30c,1+30d]: transposed [18] by [2,1,0,3]
[0+30a,0+30b,17+30c,1+30d]: transposed [22] by [0,2,1,3]
[5+30a,0+30b,18+30c,1+30d]: negative-1 [16] by {a=>-a-1}
[25+30a,0+30b,18+30c,1+30d]: unknown -> [28] [25,0,18,1] 15625a+28125a²+22500a³+6750a⁴+6750b⁴+5832c+14580c²+16200c³+6750c⁴-d-45d²-900d³-6750d⁴+4130
[0+30a,5+30b,18+30c,1+30d]: unknown -> [29] [0,5,18,1] 6750a⁴+125b+1125b²+4500b³+6750b⁴+5832c+14580c²+16200c³+6750c⁴-d-45d²-900d³-6750d⁴+880
[15+30a,10+30b,18+30c,1+30d]: unknown -> [30] [15,10,18,1] 3375a+10125a²+13500a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+5832c+14580c²+16200c³+6750c⁴-d-45d²-900d³-6750d⁴+1380
[10+30a,15+30b,18+30c,1+30d]: transposed [30] by [1,0,2,3]
[20+30a,15+30b,18+30c,1+30d]: negative-1 [13] by {a=>-a-1}
[15+30a,20+30b,18+30c,1+30d]: negative-1 [30] by {b=>-b-1}
[0+30a,25+30b,18+30c,1+30d]: transposed [28] by [1,0,2,3]
[0+30a,0+30b,19+30c,1+30d]: transposed [23] by [0,2,1,3]
[3+30a,0+30b,20+30c,1+30d]: negative-1 [27] by {c=>-c-1}
[9+30a,0+30b,20+30c,1+30d]: negative-1 [27] by {c=>-c-1}
[21+30a,0+30b,20+30c,1+30d]: negative-1 [27] by {c=>-c-1}
[27+30a,0+30b,20+30c,1+30d]: negative-1 [27] by {c=>-c-1}
[0+30a,3+30b,20+30c,1+30d]: negative-1 [27] by {c=>-c-1}
[15+30a,6+30b,20+30c,1+30d]: negative-1 [27] by {c=>-c-1}
[0+30a,9+30b,20+30c,1+30d]: negative-1 [27] by {c=>-c-1}
[15+30a,12+30b,20+30c,1+30d]: negative-1 [27] by {c=>-c-1}
[6+30a,15+30b,20+30c,1+30d]: negative-1 [27] by {c=>-c-1}
[12+30a,15+30b,20+30c,1+30d]: negative-1 [27] by {c=>-c-1}
[18+30a,15+30b,20+30c,1+30d]: negative-1 [27] by {c=>-c-1}
[24+30a,15+30b,20+30c,1+30d]: negative-1 [27] by {c=>-c-1}
[15+30a,18+30b,20+30c,1+30d]: negative-1 [27] by {b=>-b-1,c=>-c-1}
[0+30a,21+30b,20+30c,1+30d]: negative-1 [27] by {c=>-c-1}
[15+30a,24+30b,20+30c,1+30d]: negative-1 [27] by {c=>-c-1}
[0+30a,27+30b,20+30c,1+30d]: negative-1 [27] by {c=>-c-1}
[10+30a,0+30b,21+30c,1+30d]: transposed [14] by [1,2,0,3]
[20+30a,0+30b,21+30c,1+30d]: negative-1 [13] by {a=>-a-1}
[0+30a,10+30b,21+30c,1+30d]: transposed [14] by [2,1,0,3]
[0+30a,20+30b,21+30c,1+30d]: negative-1 [30] by {b=>-b-1}
[15+30a,0+30b,22+30c,1+30d]: transposed [19] by [1,2,0,3]
[0+30a,15+30b,22+30c,1+30d]: transposed [19] by [2,1,0,3]
[0+30a,0+30b,23+30c,1+30d]: transposed [24] by [0,2,1,3]
[5+30a,0+30b,24+30c,1+30d]: negative-1 [28] by {a=>-a-1}
[25+30a,0+30b,24+30c,1+30d]: negative-1 [26] by {c=>-c-1}
[0+30a,5+30b,24+30c,1+30d]: negative-1 [26] by {c=>-c-1}
[15+30a,10+30b,24+30c,1+30d]: negative-1 [26] by {c=>-c-1}
[10+30a,15+30b,24+30c,1+30d]: negative-1 [26] by {c=>-c-1}
[20+30a,15+30b,24+30c,1+30d]: negative-1 [26] by {c=>-c-1}
[15+30a,20+30b,24+30c,1+30d]: negative-1 [30] by {b=>-b-1}
[0+30a,25+30b,24+30c,1+30d]: negative-1 [29] by {b=>-b-1}
[6+30a,0+30b,25+30c,1+30d]: transposed [11] by [1,2,0,3]
[12+30a,0+30b,25+30c,1+30d]: transposed [16] by [1,2,0,3]
[18+30a,0+30b,25+30c,1+30d]: transposed [28] by [2,1,0,3]
[24+30a,0+30b,25+30c,1+30d]: negative-1 [9] by {a=>-a-1}
[0+30a,6+30b,25+30c,1+30d]: transposed [11] by [2,1,0,3]
[0+30a,12+30b,25+30c,1+30d]: transposed [16] by [2,1,0,3]
[0+30a,18+30b,25+30c,1+30d]: transposed [28] by [1,2,0,3]
[0+30a,24+30b,25+30c,1+30d]: negative-1 [11] by {b=>-b-1}
[15+30a,0+30b,26+30c,1+30d]: transposed [20] by [1,2,0,3]
[0+30a,15+30b,26+30c,1+30d]: transposed [20] by [2,1,0,3]
[10+30a,0+30b,27+30c,1+30d]: transposed [15] by [1,2,0,3]
[20+30a,0+30b,27+30c,1+30d]: negative-1 [13] by {a=>-a-1}
[0+30a,10+30b,27+30c,1+30d]: transposed [15] by [2,1,0,3]
[0+30a,20+30b,27+30c,1+30d]: negative-1 [30] by {b=>-b-1}
[15+30a,0+30b,28+30c,1+30d]: transposed [21] by [1,2,0,3]
[0+30a,15+30b,28+30c,1+30d]: transposed [21] by [2,1,0,3]
[0+30a,0+30b,29+30c,1+30d]: transposed [25] by [0,2,1,3]
[2+30a,0+30b,0+30c,2+30d]: negative-1 [21] by {a=>-a-1}
-> solution [2,0,0,2],trivial(3) [32,0,0,32],trivial(3)
[4+30a,0+30b,0+30c,2+30d]: negative-1 [20] by {a=>-a-1}
[8+30a,0+30b,0+30c,2+30d]: negative-1 [19] by {a=>-a-1}
[14+30a,0+30b,0+30c,2+30d]: negative-1 [18] by {a=>-a-1}
[16+30a,0+30b,0+30c,2+30d]: unknown -> [31] [16,0,0,2] 2048a+5760a²+7200a³+3375a⁴+3375b⁴+3375c⁴-4d-90d²-900d³-3375d⁴+273
[22+30a,0+30b,0+30c,2+30d]: unknown -> [32] [22,0,0,2] 5324a+10890a²+9900a³+3375a⁴+3375b⁴+3375c⁴-4d-90d²-900d³-3375d⁴+976
[26+30a,0+30b,0+30c,2+30d]: unknown -> [33] [26,0,0,2] 8788a+15210a²+11700a³+3375a⁴+3375b⁴+3375c⁴-4d-90d²-900d³-3375d⁴+1904
[28+30a,0+30b,0+30c,2+30d]: unknown -> [34] [28,0,0,2] 10976a+17640a²+12600a³+3375a⁴+3375b⁴+3375c⁴-4d-90d²-900d³-3375d⁴+2561
[0+30a,2+30b,0+30c,2+30d]: unknown -> [35] [0,2,0,2] 3375a⁴+4b+90b²+900b³+3375b⁴+3375c⁴-4d-90d²-900d³-3375d⁴
-> solution [0,2,0,2],trivial(3) [0,32,0,32],trivial(3)
[0+30a,4+30b,0+30c,2+30d]: unknown -> [36] [0,4,0,2] 3375a⁴+32b+360b²+1800b³+3375b⁴+3375c⁴-4d-90d²-900d³-3375d⁴+1
[10+30a,6+30b,0+30c,2+30d]: unknown -> [37] [10,6,0,2] 500a+2250a²+4500a³+3375a⁴+108b+810b²+2700b³+3375b⁴+3375c⁴-4d-90d²-900d³-3375d⁴+47
[20+30a,6+30b,0+30c,2+30d]: negative-1 [37] by {a=>-a-1}
[0+30a,8+30b,0+30c,2+30d]: unknown -> [38] [0,8,0,2] 3375a⁴+256b+1440b²+3600b³+3375b⁴+3375c⁴-4d-90d²-900d³-3375d⁴+17
[6+30a,10+30b,0+30c,2+30d]: transposed [37] by [1,0,2,3]
[12+30a,10+30b,0+30c,2+30d]: unknown -> [39] [12,10,0,2] 864a+3240a²+5400a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+3375c⁴-4d-90d²-900d³-3375d⁴+128
[18+30a,10+30b,0+30c,2+30d]: negative-1 [39] by {a=>-a-1}
[24+30a,10+30b,0+30c,2+30d]: negative-1 [9] by {a=>-a-1}
[10+30a,12+30b,0+30c,2+30d]: transposed [39] by [1,0,2,3]
[20+30a,12+30b,0+30c,2+30d]: negative-1 [37] by {a=>-a-1}
[0+30a,14+30b,0+30c,2+30d]: unknown -> [40] [0,14,0,2] 3375a⁴+1372b+4410b²+6300b³+3375b⁴+3375c⁴-4d-90d²-900d³-3375d⁴+160
[0+30a,16+30b,0+30c,2+30d]: transposed [31] by [1,0,2,3]
[10+30a,18+30b,0+30c,2+30d]: negative-1 [27] by {b=>-b-1}
[20+30a,18+30b,0+30c,2+30d]: negative-1 [37] by {a=>-a-1}
[6+30a,20+30b,0+30c,2+30d]: negative-1 [39] by {b=>-b-1}
[12+30a,20+30b,0+30c,2+30d]: negative-1 [39] by {b=>-b-1}
[18+30a,20+30b,0+30c,2+30d]: negative-1 [39] by {a=>-a-1,b=>-b-1}
[24+30a,20+30b,0+30c,2+30d]: negative-1 [39] by {b=>-b-1}
[0+30a,22+30b,0+30c,2+30d]: transposed [32] by [1,0,2,3]
[10+30a,24+30b,0+30c,2+30d]: negative-1 [37] by {b=>-b-1}
[20+30a,24+30b,0+30c,2+30d]: negative-1 [37] by {a=>-a-1,b=>-b-1}
[0+30a,26+30b,0+30c,2+30d]: transposed [33] by [1,0,2,3]
[0+30a,28+30b,0+30c,2+30d]: transposed [34] by [1,0,2,3]
[0+30a,0+30b,2+30c,2+30d]: transposed [35] by [0,2,1,3]
[0+30a,0+30b,4+30c,2+30d]: transposed [36] by [0,2,1,3]
[10+30a,0+30b,6+30c,2+30d]: transposed [37] by [0,2,1,3]
[20+30a,0+30b,6+30c,2+30d]: negative-1 [37] by {a=>-a-1}
[0+30a,10+30b,6+30c,2+30d]: transposed [37] by [2,0,1,3]
[0+30a,20+30b,6+30c,2+30d]: negative-1 [39] by {b=>-b-1}
[0+30a,0+30b,8+30c,2+30d]: transposed [38] by [0,2,1,3]
[6+30a,0+30b,10+30c,2+30d]: transposed [37] by [1,2,0,3]
[12+30a,0+30b,10+30c,2+30d]: transposed [39] by [0,2,1,3]
[18+30a,0+30b,10+30c,2+30d]: negative-1 [39] by {a=>-a-1}
[24+30a,0+30b,10+30c,2+30d]: negative-1 [9] by {a=>-a-1}
[0+30a,6+30b,10+30c,2+30d]: transposed [37] by [2,1,0,3]
[0+30a,12+30b,10+30c,2+30d]: transposed [39] by [2,0,1,3]
[0+30a,18+30b,10+30c,2+30d]: negative-1 [27] by {b=>-b-1}
[0+30a,24+30b,10+30c,2+30d]: negative-1 [37] by {b=>-b-1}
[10+30a,0+30b,12+30c,2+30d]: transposed [39] by [1,2,0,3]
[20+30a,0+30b,12+30c,2+30d]: negative-1 [37] by {a=>-a-1}
[0+30a,10+30b,12+30c,2+30d]: transposed [39] by [2,1,0,3]
[0+30a,20+30b,12+30c,2+30d]: negative-1 [39] by {b=>-b-1}
[0+30a,0+30b,14+30c,2+30d]: transposed [40] by [0,2,1,3]
[0+30a,0+30b,16+30c,2+30d]: transposed [31] by [1,2,0,3]
[10+30a,0+30b,18+30c,2+30d]: unknown -> [41] [10,0,18,2] 500a+2250a²+4500a³+3375a⁴+3375b⁴+2916c+7290c²+8100c³+3375c⁴-4d-90d²-900d³-3375d⁴+479
[20+30a,0+30b,18+30c,2+30d]: negative-1 [41] by {a=>-a-1}
[0+30a,10+30b,18+30c,2+30d]: transposed [41] by [1,0,2,3]
[0+30a,20+30b,18+30c,2+30d]: negative-1 [39] by {b=>-b-1}
[6+30a,0+30b,20+30c,2+30d]: negative-1 [27] by {c=>-c-1}
[12+30a,0+30b,20+30c,2+30d]: negative-1 [27] by {c=>-c-1}
[18+30a,0+30b,20+30c,2+30d]: negative-1 [39] by {a=>-a-1}
[24+30a,0+30b,20+30c,2+30d]: negative-1 [27] by {c=>-c-1}
[0+30a,6+30b,20+30c,2+30d]: negative-1 [27] by {c=>-c-1}
[0+30a,12+30b,20+30c,2+30d]: negative-1 [27] by {c=>-c-1}
[0+30a,18+30b,20+30c,2+30d]: negative-1 [27] by {b=>-b-1,c=>-c-1}
[0+30a,24+30b,20+30c,2+30d]: negative-1 [37] by {b=>-b-1}
[0+30a,0+30b,22+30c,2+30d]: transposed [32] by [1,2,0,3]
[10+30a,0+30b,24+30c,2+30d]: negative-1 [26] by {c=>-c-1}
[20+30a,0+30b,24+30c,2+30d]: negative-1 [41] by {a=>-a-1}
[0+30a,10+30b,24+30c,2+30d]: negative-1 [26] by {c=>-c-1}
[0+30a,20+30b,24+30c,2+30d]: negative-1 [39] by {b=>-b-1}
[0+30a,0+30b,26+30c,2+30d]: transposed [33] by [1,2,0,3]
[0+30a,0+30b,28+30c,2+30d]: transposed [34] by [1,2,0,3]
[3+30a,0+30b,0+30c,3+30d]: negative-1 [15] by {a=>-a-1}
-> solution [3,0,0,3],trivial(3) [33,0,0,33],trivial(3)
[9+30a,0+30b,0+30c,3+30d]: negative-1 [14] by {a=>-a-1}
[21+30a,0+30b,0+30c,3+30d]: unknown -> [42] [21,0,0,3] 343a+735a²+700a³+250a⁴+250b⁴+250c⁴-d-15d²-100d³-250d⁴+60
[27+30a,0+30b,0+30c,3+30d]: unknown -> [43] [27,0,0,3] 729a+1215a²+900a³+250a⁴+250b⁴+250c⁴-d-15d²-100d³-250d⁴+164
[0+30a,3+30b,0+30c,3+30d]: unknown -> [44] [0,3,0,3] 250a⁴+b+15b²+100b³+250b⁴+250c⁴-d-15d²-100d³-250d⁴
-> solution [0,3,0,3],trivial(3) [0,33,0,33],trivial(3)
[15+30a,6+30b,0+30c,3+30d]: unknown -> [45] [15,6,0,3] 125a+375a²+500a³+250a⁴+8b+60b²+200b³+250b⁴+250c⁴-d-15d²-100d³-250d⁴+16
[0+30a,9+30b,0+30c,3+30d]: unknown -> [46] [0,9,0,3] 250a⁴+27b+135b²+300b³+250b⁴+250c⁴-d-15d²-100d³-250d⁴+2
[15+30a,12+30b,0+30c,3+30d]: unknown -> [47] [15,12,0,3] 125a+375a²+500a³+250a⁴+64b+240b²+400b³+250b⁴+250c⁴-d-15d²-100d³-250d⁴+22
[6+30a,15+30b,0+30c,3+30d]: transposed [45] by [1,0,2,3]
[12+30a,15+30b,0+30c,3+30d]: transposed [47] by [1,0,2,3]
[18+30a,15+30b,0+30c,3+30d]: negative-1 [39] by {a=>-a-1}
[24+30a,15+30b,0+30c,3+30d]: negative-1 [9] by {a=>-a-1}
[15+30a,18+30b,0+30c,3+30d]: negative-1 [47] by {b=>-b-1}
[0+30a,21+30b,0+30c,3+30d]: transposed [42] by [1,0,2,3]
[15+30a,24+30b,0+30c,3+30d]: negative-1 [45] by {b=>-b-1}
[0+30a,27+30b,0+30c,3+30d]: transposed [43] by [1,0,2,3]
[10+30a,10+30b,1+30c,3+30d]: unknown -> [48] [10,10,1,3] 1000a+4500a²+9000a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+c+45c²+900c³+6750c⁴-27d-405d²-2700d³-6750d⁴+166
[20+30a,10+30b,1+30c,3+30d]: negative-1 [48] by {a=>-a-1}
[10+30a,20+30b,1+30c,3+30d]: negative-1 [48] by {b=>-b-1}
[20+30a,20+30b,1+30c,3+30d]: negative-1 [48] by {a=>-a-1,b=>-b-1}
[10+30a,5+30b,2+30c,3+30d]: unknown -> [49] [10,5,2,3] 1000a+4500a²+9000a³+6750a⁴+125b+1125b²+4500b³+6750b⁴+8c+180c²+1800c³+6750c⁴-27d-405d²-2700d³-6750d⁴+88
[20+30a,5+30b,2+30c,3+30d]: negative-1 [49] by {a=>-a-1}
[5+30a,10+30b,2+30c,3+30d]: transposed [49] by [1,0,2,3]
[25+30a,10+30b,2+30c,3+30d]: unknown -> [50] [25,10,2,3] 15625a+28125a²+22500a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+8c+180c²+1800c³+6750c⁴-27d-405d²-2700d³-6750d⁴+3338
[5+30a,20+30b,2+30c,3+30d]: negative-1 [50] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,2+30c,3+30d]: negative-1 [50] by {b=>-b-1}
[10+30a,25+30b,2+30c,3+30d]: transposed [50] by [1,0,2,3]
[20+30a,25+30b,2+30c,3+30d]: negative-1 [49] by {a=>-a-1,b=>-b-1}
[0+30a,0+30b,3+30c,3+30d]: transposed [44] by [0,2,1,3]
[10+30a,5+30b,4+30c,3+30d]: unknown -> [51] [10,5,4,3] 1000a+4500a²+9000a³+6750a⁴+125b+1125b²+4500b³+6750b⁴+64c+720c²+3600c³+6750c⁴-27d-405d²-2700d³-6750d⁴+90
[20+30a,5+30b,4+30c,3+30d]: negative-1 [51] by {a=>-a-1}
[5+30a,10+30b,4+30c,3+30d]: transposed [51] by [1,0,2,3]
[25+30a,10+30b,4+30c,3+30d]: unknown -> [52] [25,10,4,3] 15625a+28125a²+22500a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+64c+720c²+3600c³+6750c⁴-27d-405d²-2700d³-6750d⁴+3340
[5+30a,20+30b,4+30c,3+30d]: negative-1 [52] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,4+30c,3+30d]: negative-1 [52] by {b=>-b-1}
[10+30a,25+30b,4+30c,3+30d]: transposed [52] by [1,0,2,3]
[20+30a,25+30b,4+30c,3+30d]: negative-1 [51] by {a=>-a-1,b=>-b-1}
[10+30a,2+30b,5+30c,3+30d]: transposed [49] by [0,2,1,3]
[20+30a,2+30b,5+30c,3+30d]: negative-1 [51] by {a=>-a-1}
[10+30a,4+30b,5+30c,3+30d]: transposed [51] by [0,2,1,3]
[20+30a,4+30b,5+30c,3+30d]: negative-1 [51] by {a=>-a-1}
[10+30a,8+30b,5+30c,3+30d]: unknown -> [53] [10,8,5,3] 1000a+4500a²+9000a³+6750a⁴+512b+2880b²+7200b³+6750b⁴+125c+1125c²+4500c³+6750c⁴-27d-405d²-2700d³-6750d⁴+122
[20+30a,8+30b,5+30c,3+30d]: negative-1 [53] by {a=>-a-1}
[2+30a,10+30b,5+30c,3+30d]: transposed [49] by [2,0,1,3]
[4+30a,10+30b,5+30c,3+30d]: transposed [51] by [2,0,1,3]
[8+30a,10+30b,5+30c,3+30d]: transposed [53] by [1,0,2,3]
[14+30a,10+30b,5+30c,3+30d]: negative-1 [31] by {a=>-a-1}
[16+30a,10+30b,5+30c,3+30d]: unknown -> [54] [16,10,5,3] 4096a+11520a²+14400a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+125c+1125c²+4500c³+6750c⁴-27d-405d²-2700d³-6750d⁴+634
[22+30a,10+30b,5+30c,3+30d]: unknown -> [55] [22,10,5,3] 10648a+21780a²+19800a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+125c+1125c²+4500c³+6750c⁴-27d-405d²-2700d³-6750d⁴+2040
[26+30a,10+30b,5+30c,3+30d]: unknown -> [56] [26,10,5,3] 17576a+30420a²+23400a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+125c+1125c²+4500c³+6750c⁴-27d-405d²-2700d³-6750d⁴+3896
[28+30a,10+30b,5+30c,3+30d]: unknown -> [57] [28,10,5,3] 21952a+35280a²+25200a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+125c+1125c²+4500c³+6750c⁴-27d-405d²-2700d³-6750d⁴+5210
[10+30a,14+30b,5+30c,3+30d]: unknown -> [58] [10,14,5,3] 1000a+4500a²+9000a³+6750a⁴+2744b+8820b²+12600b³+6750b⁴+125c+1125c²+4500c³+6750c⁴-27d-405d²-2700d³-6750d⁴+408
[20+30a,14+30b,5+30c,3+30d]: negative-1 [58] by {a=>-a-1}
[10+30a,16+30b,5+30c,3+30d]: transposed [54] by [1,0,2,3]
[20+30a,16+30b,5+30c,3+30d]: negative-1 [58] by {a=>-a-1,b=>-b-1}
[2+30a,20+30b,5+30c,3+30d]: negative-1 [57] by {a=>-a-1,b=>-b-1}
[4+30a,20+30b,5+30c,3+30d]: negative-1 [57] by {b=>-b-1}
[8+30a,20+30b,5+30c,3+30d]: negative-1 [57] by {b=>-b-1}
[14+30a,20+30b,5+30c,3+30d]: negative-1 [57] by {b=>-b-1}
[16+30a,20+30b,5+30c,3+30d]: negative-1 [57] by {b=>-b-1}
[22+30a,20+30b,5+30c,3+30d]: negative-1 [57] by {b=>-b-1}
[26+30a,20+30b,5+30c,3+30d]: negative-1 [57] by {b=>-b-1}
[28+30a,20+30b,5+30c,3+30d]: negative-1 [57] by {b=>-b-1}
[10+30a,22+30b,5+30c,3+30d]: transposed [55] by [1,0,2,3]
[20+30a,22+30b,5+30c,3+30d]: negative-1 [58] by {a=>-a-1}
[10+30a,26+30b,5+30c,3+30d]: transposed [56] by [1,0,2,3]
[20+30a,26+30b,5+30c,3+30d]: negative-1 [58] by {a=>-a-1}
[10+30a,28+30b,5+30c,3+30d]: transposed [57] by [1,0,2,3]
[20+30a,28+30b,5+30c,3+30d]: negative-1 [58] by {a=>-a-1}
[15+30a,0+30b,6+30c,3+30d]: transposed [45] by [0,2,1,3]
[0+30a,15+30b,6+30c,3+30d]: transposed [45] by [2,0,1,3]
[10+30a,10+30b,7+30c,3+30d]: unknown -> [59] [10,10,7,3] 1000a+4500a²+9000a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+343c+2205c²+6300c³+6750c⁴-27d-405d²-2700d³-6750d⁴+186
[20+30a,10+30b,7+30c,3+30d]: negative-1 [59] by {a=>-a-1}
[10+30a,20+30b,7+30c,3+30d]: negative-1 [59] by {b=>-b-1}
[20+30a,20+30b,7+30c,3+30d]: negative-1 [59] by {a=>-a-1,b=>-b-1}
[10+30a,5+30b,8+30c,3+30d]: transposed [53] by [0,2,1,3]
[20+30a,5+30b,8+30c,3+30d]: negative-1 [59] by {a=>-a-1}
[5+30a,10+30b,8+30c,3+30d]: transposed [53] by [2,0,1,3]
[25+30a,10+30b,8+30c,3+30d]: unknown -> [60] [25,10,8,3] 15625a+28125a²+22500a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+512c+2880c²+7200c³+6750c⁴-27d-405d²-2700d³-6750d⁴+3372
[5+30a,20+30b,8+30c,3+30d]: negative-1 [60] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,8+30c,3+30d]: negative-1 [60] by {b=>-b-1}
[10+30a,25+30b,8+30c,3+30d]: transposed [60] by [1,0,2,3]
[20+30a,25+30b,8+30c,3+30d]: negative-1 [59] by {a=>-a-1}
[0+30a,0+30b,9+30c,3+30d]: transposed [46] by [0,2,1,3]
[10+30a,1+30b,10+30c,3+30d]: transposed [48] by [0,2,1,3]
[20+30a,1+30b,10+30c,3+30d]: negative-1 [59] by {a=>-a-1}
[5+30a,2+30b,10+30c,3+30d]: transposed [49] by [1,2,0,3]
[25+30a,2+30b,10+30c,3+30d]: transposed [50] by [0,2,1,3]
[5+30a,4+30b,10+30c,3+30d]: transposed [51] by [1,2,0,3]
[25+30a,4+30b,10+30c,3+30d]: transposed [52] by [0,2,1,3]
[2+30a,5+30b,10+30c,3+30d]: transposed [49] by [2,1,0,3]
[4+30a,5+30b,10+30c,3+30d]: transposed [51] by [2,1,0,3]
[8+30a,5+30b,10+30c,3+30d]: transposed [53] by [1,2,0,3]
[14+30a,5+30b,10+30c,3+30d]: transposed [58] by [1,2,0,3]
[16+30a,5+30b,10+30c,3+30d]: transposed [54] by [0,2,1,3]
[22+30a,5+30b,10+30c,3+30d]: transposed [55] by [0,2,1,3]
[26+30a,5+30b,10+30c,3+30d]: transposed [56] by [0,2,1,3]
[28+30a,5+30b,10+30c,3+30d]: transposed [57] by [0,2,1,3]
[10+30a,7+30b,10+30c,3+30d]: transposed [59] by [0,2,1,3]
[20+30a,7+30b,10+30c,3+30d]: negative-1 [59] by {a=>-a-1}
[5+30a,8+30b,10+30c,3+30d]: transposed [53] by [2,1,0,3]
[25+30a,8+30b,10+30c,3+30d]: transposed [60] by [0,2,1,3]
[1+30a,10+30b,10+30c,3+30d]: transposed [48] by [2,0,1,3]
[7+30a,10+30b,10+30c,3+30d]: transposed [59] by [2,0,1,3]
[11+30a,10+30b,10+30c,3+30d]: unknown -> [61] [11,10,10,3] 1331a+5445a²+9900a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-27d-405d²-2700d³-6750d⁴+288
[13+30a,10+30b,10+30c,3+30d]: unknown -> [62] [13,10,10,3] 2197a+7605a²+11700a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-27d-405d²-2700d³-6750d⁴+404
[17+30a,10+30b,10+30c,3+30d]: negative-1 [62] by {a=>-a-1}
[19+30a,10+30b,10+30c,3+30d]: negative-1 [61] by {a=>-a-1}
[23+30a,10+30b,10+30c,3+30d]: negative-1 [3] by {a=>-a-1}
[29+30a,10+30b,10+30c,3+30d]: negative-1 [2] by {a=>-a-1}
[10+30a,11+30b,10+30c,3+30d]: transposed [61] by [1,0,2,3]
[20+30a,11+30b,10+30c,3+30d]: negative-1 [59] by {a=>-a-1}
[10+30a,13+30b,10+30c,3+30d]: transposed [62] by [1,0,2,3]
[20+30a,13+30b,10+30c,3+30d]: negative-1 [59] by {a=>-a-1}
[5+30a,14+30b,10+30c,3+30d]: transposed [58] by [2,1,0,3]
[25+30a,14+30b,10+30c,3+30d]: unknown -> [63] [25,14,10,3] 15625a+28125a²+22500a³+6750a⁴+2744b+8820b²+12600b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-27d-405d²-2700d³-6750d⁴+3658
[5+30a,16+30b,10+30c,3+30d]: transposed [54] by [2,0,1,3]
[25+30a,16+30b,10+30c,3+30d]: negative-1 [63] by {b=>-b-1}
[10+30a,17+30b,10+30c,3+30d]: unknown -> [64] [10,17,10,3] 1000a+4500a²+9000a³+6750a⁴+4913b+13005b²+15300b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-27d-405d²-2700d³-6750d⁴+862
[20+30a,17+30b,10+30c,3+30d]: negative-1 [64] by {a=>-a-1}
[10+30a,19+30b,10+30c,3+30d]: unknown -> [65] [10,19,10,3] 1000a+4500a²+9000a³+6750a⁴+6859b+16245b²+17100b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-27d-405d²-2700d³-6750d⁴+1252
[20+30a,19+30b,10+30c,3+30d]: negative-1 [65] by {a=>-a-1}
[1+30a,20+30b,10+30c,3+30d]: negative-1 [62] by {b=>-b-1}
[7+30a,20+30b,10+30c,3+30d]: negative-1 [62] by {b=>-b-1}
[11+30a,20+30b,10+30c,3+30d]: negative-1 [62] by {b=>-b-1}
[13+30a,20+30b,10+30c,3+30d]: negative-1 [62] by {b=>-b-1}
[17+30a,20+30b,10+30c,3+30d]: negative-1 [62] by {a=>-a-1,b=>-b-1}
[19+30a,20+30b,10+30c,3+30d]: negative-1 [62] by {b=>-b-1}
[23+30a,20+30b,10+30c,3+30d]: negative-1 [62] by {b=>-b-1}
[29+30a,20+30b,10+30c,3+30d]: negative-1 [62] by {b=>-b-1}
[5+30a,22+30b,10+30c,3+30d]: transposed [55] by [2,0,1,3]
[25+30a,22+30b,10+30c,3+30d]: negative-1 [53] by {b=>-b-1}
[10+30a,23+30b,10+30c,3+30d]: unknown -> [66] [10,23,10,3] 1000a+4500a²+9000a³+6750a⁴+12167b+23805b²+20700b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-27d-405d²-2700d³-6750d⁴+2498
[20+30a,23+30b,10+30c,3+30d]: negative-1 [66] by {a=>-a-1}
[2+30a,25+30b,10+30c,3+30d]: transposed [50] by [2,0,1,3]
[4+30a,25+30b,10+30c,3+30d]: transposed [52] by [2,0,1,3]
[8+30a,25+30b,10+30c,3+30d]: transposed [60] by [2,0,1,3]
[14+30a,25+30b,10+30c,3+30d]: transposed [63] by [1,0,2,3]
[16+30a,25+30b,10+30c,3+30d]: negative-1 [51] by {b=>-b-1}
[22+30a,25+30b,10+30c,3+30d]: negative-1 [51] by {b=>-b-1}
[26+30a,25+30b,10+30c,3+30d]: negative-1 [51] by {b=>-b-1}
[28+30a,25+30b,10+30c,3+30d]: negative-1 [51] by {b=>-b-1}
[5+30a,26+30b,10+30c,3+30d]: transposed [56] by [2,0,1,3]
[25+30a,26+30b,10+30c,3+30d]: negative-1 [36] by {b=>-b-1}
[5+30a,28+30b,10+30c,3+30d]: transposed [57] by [2,0,1,3]
[25+30a,28+30b,10+30c,3+30d]: negative-1 [35] by {b=>-b-1}
[10+30a,29+30b,10+30c,3+30d]: unknown -> [67] [10,29,10,3] 1000a+4500a²+9000a³+6750a⁴+24389b+37845b²+26100b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-27d-405d²-2700d³-6750d⁴+6060
[20+30a,29+30b,10+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[10+30a,10+30b,11+30c,3+30d]: transposed [61] by [1,2,0,3]
[20+30a,10+30b,11+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[10+30a,20+30b,11+30c,3+30d]: negative-1 [62] by {b=>-b-1}
[20+30a,20+30b,11+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[15+30a,0+30b,12+30c,3+30d]: transposed [47] by [0,2,1,3]
[0+30a,15+30b,12+30c,3+30d]: transposed [47] by [2,0,1,3]
[10+30a,10+30b,13+30c,3+30d]: transposed [62] by [1,2,0,3]
[20+30a,10+30b,13+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[10+30a,20+30b,13+30c,3+30d]: negative-1 [62] by {b=>-b-1}
[20+30a,20+30b,13+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[10+30a,5+30b,14+30c,3+30d]: transposed [58] by [0,2,1,3]
[20+30a,5+30b,14+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[5+30a,10+30b,14+30c,3+30d]: transposed [58] by [2,0,1,3]
[25+30a,10+30b,14+30c,3+30d]: transposed [63] by [0,2,1,3]
[5+30a,20+30b,14+30c,3+30d]: negative-1 [63] by {a=>-a-1}
[25+30a,20+30b,14+30c,3+30d]: negative-1 [62] by {b=>-b-1}
[10+30a,25+30b,14+30c,3+30d]: transposed [63] by [2,0,1,3]
[20+30a,25+30b,14+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[6+30a,0+30b,15+30c,3+30d]: transposed [45] by [1,2,0,3]
[12+30a,0+30b,15+30c,3+30d]: transposed [47] by [1,2,0,3]
[18+30a,0+30b,15+30c,3+30d]: negative-1 [39] by {a=>-a-1}
[24+30a,0+30b,15+30c,3+30d]: negative-1 [9] by {a=>-a-1}
[0+30a,6+30b,15+30c,3+30d]: transposed [45] by [2,1,0,3]
[0+30a,12+30b,15+30c,3+30d]: transposed [47] by [2,1,0,3]
[0+30a,18+30b,15+30c,3+30d]: negative-1 [47] by {b=>-b-1}
[0+30a,24+30b,15+30c,3+30d]: negative-1 [45] by {b=>-b-1}
[10+30a,5+30b,16+30c,3+30d]: transposed [54] by [1,2,0,3]
[20+30a,5+30b,16+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[5+30a,10+30b,16+30c,3+30d]: transposed [54] by [2,1,0,3]
[25+30a,10+30b,16+30c,3+30d]: unknown -> [68] [25,10,16,3] 15625a+28125a²+22500a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+4096c+11520c²+14400c³+6750c⁴-27d-405d²-2700d³-6750d⁴+3884
[5+30a,20+30b,16+30c,3+30d]: negative-1 [68] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,16+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[10+30a,25+30b,16+30c,3+30d]: transposed [68] by [1,0,2,3]
[20+30a,25+30b,16+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[10+30a,10+30b,17+30c,3+30d]: transposed [64] by [0,2,1,3]
[20+30a,10+30b,17+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[10+30a,20+30b,17+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[20+30a,20+30b,17+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[15+30a,0+30b,18+30c,3+30d]: unknown -> [69] [15,0,18,3] 125a+375a²+500a³+250a⁴+250b⁴+216c+540c²+600c³+250c⁴-d-15d²-100d³-250d⁴+48
[0+30a,15+30b,18+30c,3+30d]: transposed [69] by [1,0,2,3]
[10+30a,10+30b,19+30c,3+30d]: transposed [65] by [0,2,1,3]
[20+30a,10+30b,19+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[10+30a,20+30b,19+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[20+30a,20+30b,19+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[10+30a,1+30b,20+30c,3+30d]: negative-1 [67] by {b=>-b-1,c=>-c-1}
[20+30a,1+30b,20+30c,3+30d]: negative-1 [67] by {a=>-a-1,b=>-b-1,c=>-c-1}
[5+30a,2+30b,20+30c,3+30d]: negative-1 [68] by {a=>-a-1}
[25+30a,2+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[5+30a,4+30b,20+30c,3+30d]: negative-1 [68] by {a=>-a-1}
[25+30a,4+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[2+30a,5+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[4+30a,5+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[8+30a,5+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[14+30a,5+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[16+30a,5+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[22+30a,5+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[26+30a,5+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[28+30a,5+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[10+30a,7+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[20+30a,7+30b,20+30c,3+30d]: negative-1 [67] by {a=>-a-1,c=>-c-1}
[5+30a,8+30b,20+30c,3+30d]: negative-1 [68] by {a=>-a-1}
[25+30a,8+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[1+30a,10+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[7+30a,10+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[11+30a,10+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[13+30a,10+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[17+30a,10+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[19+30a,10+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[23+30a,10+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[29+30a,10+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[10+30a,11+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[20+30a,11+30b,20+30c,3+30d]: negative-1 [67] by {a=>-a-1,c=>-c-1}
[10+30a,13+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[20+30a,13+30b,20+30c,3+30d]: negative-1 [67] by {a=>-a-1,c=>-c-1}
[5+30a,14+30b,20+30c,3+30d]: negative-1 [68] by {a=>-a-1}
[25+30a,14+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[5+30a,16+30b,20+30c,3+30d]: negative-1 [68] by {a=>-a-1}
[25+30a,16+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[10+30a,17+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[20+30a,17+30b,20+30c,3+30d]: negative-1 [67] by {a=>-a-1,c=>-c-1}
[10+30a,19+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[20+30a,19+30b,20+30c,3+30d]: negative-1 [67] by {a=>-a-1,c=>-c-1}
[1+30a,20+30b,20+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[7+30a,20+30b,20+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[11+30a,20+30b,20+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[13+30a,20+30b,20+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[17+30a,20+30b,20+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[19+30a,20+30b,20+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[23+30a,20+30b,20+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[29+30a,20+30b,20+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[5+30a,22+30b,20+30c,3+30d]: negative-1 [68] by {a=>-a-1}
[25+30a,22+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[10+30a,23+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[20+30a,23+30b,20+30c,3+30d]: negative-1 [67] by {a=>-a-1,c=>-c-1}
[2+30a,25+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[4+30a,25+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[8+30a,25+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[14+30a,25+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[16+30a,25+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[22+30a,25+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[26+30a,25+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[28+30a,25+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[5+30a,26+30b,20+30c,3+30d]: negative-1 [68] by {a=>-a-1}
[25+30a,26+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[5+30a,28+30b,20+30c,3+30d]: negative-1 [68] by {a=>-a-1}
[25+30a,28+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[10+30a,29+30b,20+30c,3+30d]: negative-1 [67] by {c=>-c-1}
[20+30a,29+30b,20+30c,3+30d]: negative-1 [67] by {a=>-a-1,c=>-c-1}
[0+30a,0+30b,21+30c,3+30d]: transposed [42] by [1,2,0,3]
[10+30a,5+30b,22+30c,3+30d]: transposed [55] by [1,2,0,3]
[20+30a,5+30b,22+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[5+30a,10+30b,22+30c,3+30d]: transposed [55] by [2,1,0,3]
[25+30a,10+30b,22+30c,3+30d]: negative-1 [60] by {c=>-c-1}
[5+30a,20+30b,22+30c,3+30d]: negative-1 [68] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,22+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[10+30a,25+30b,22+30c,3+30d]: negative-1 [60] by {c=>-c-1}
[20+30a,25+30b,22+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[10+30a,10+30b,23+30c,3+30d]: transposed [66] by [0,2,1,3]
[20+30a,10+30b,23+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[10+30a,20+30b,23+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[20+30a,20+30b,23+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[15+30a,0+30b,24+30c,3+30d]: negative-1 [26] by {c=>-c-1}
[0+30a,15+30b,24+30c,3+30d]: negative-1 [26] by {c=>-c-1}
[10+30a,2+30b,25+30c,3+30d]: transposed [50] by [1,2,0,3]
[20+30a,2+30b,25+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[10+30a,4+30b,25+30c,3+30d]: transposed [52] by [1,2,0,3]
[20+30a,4+30b,25+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[10+30a,8+30b,25+30c,3+30d]: transposed [60] by [1,2,0,3]
[20+30a,8+30b,25+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[2+30a,10+30b,25+30c,3+30d]: transposed [50] by [2,1,0,3]
[4+30a,10+30b,25+30c,3+30d]: transposed [52] by [2,1,0,3]
[8+30a,10+30b,25+30c,3+30d]: transposed [60] by [2,1,0,3]
[14+30a,10+30b,25+30c,3+30d]: transposed [63] by [1,2,0,3]
[16+30a,10+30b,25+30c,3+30d]: transposed [68] by [2,1,0,3]
[22+30a,10+30b,25+30c,3+30d]: negative-1 [58] by {c=>-c-1}
[26+30a,10+30b,25+30c,3+30d]: negative-1 [58] by {c=>-c-1}
[28+30a,10+30b,25+30c,3+30d]: negative-1 [58] by {c=>-c-1}
[10+30a,14+30b,25+30c,3+30d]: transposed [63] by [2,1,0,3]
[20+30a,14+30b,25+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[10+30a,16+30b,25+30c,3+30d]: transposed [68] by [1,2,0,3]
[20+30a,16+30b,25+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[2+30a,20+30b,25+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[4+30a,20+30b,25+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[8+30a,20+30b,25+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[14+30a,20+30b,25+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[16+30a,20+30b,25+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[22+30a,20+30b,25+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[26+30a,20+30b,25+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[28+30a,20+30b,25+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[10+30a,22+30b,25+30c,3+30d]: negative-1 [58] by {c=>-c-1}
[20+30a,22+30b,25+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[10+30a,26+30b,25+30c,3+30d]: negative-1 [58] by {c=>-c-1}
[20+30a,26+30b,25+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[10+30a,28+30b,25+30c,3+30d]: negative-1 [58] by {c=>-c-1}
[20+30a,28+30b,25+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[10+30a,5+30b,26+30c,3+30d]: transposed [56] by [1,2,0,3]
[20+30a,5+30b,26+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[5+30a,10+30b,26+30c,3+30d]: transposed [56] by [2,1,0,3]
[25+30a,10+30b,26+30c,3+30d]: negative-1 [52] by {c=>-c-1}
[5+30a,20+30b,26+30c,3+30d]: negative-1 [68] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,26+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[10+30a,25+30b,26+30c,3+30d]: negative-1 [52] by {c=>-c-1}
[20+30a,25+30b,26+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[0+30a,0+30b,27+30c,3+30d]: transposed [43] by [1,2,0,3]
[10+30a,5+30b,28+30c,3+30d]: transposed [57] by [1,2,0,3]
[20+30a,5+30b,28+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[5+30a,10+30b,28+30c,3+30d]: transposed [57] by [2,1,0,3]
[25+30a,10+30b,28+30c,3+30d]: negative-1 [50] by {c=>-c-1}
[5+30a,20+30b,28+30c,3+30d]: negative-1 [68] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,28+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[10+30a,25+30b,28+30c,3+30d]: negative-1 [51] by {b=>-b-1}
[20+30a,25+30b,28+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[10+30a,10+30b,29+30c,3+30d]: transposed [67] by [0,2,1,3]
[20+30a,10+30b,29+30c,3+30d]: negative-1 [67] by {a=>-a-1}
[10+30a,20+30b,29+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[20+30a,20+30b,29+30c,3+30d]: negative-1 [68] by {b=>-b-1}
[2+30a,0+30b,0+30c,4+30d]: negative-1 [57] by {a=>-a-1}
[4+30a,0+30b,0+30c,4+30d]: negative-1 [56] by {a=>-a-1}
-> solution [4,0,0,4],trivial(3) [34,0,0,34],trivial(3)
[8+30a,0+30b,0+30c,4+30d]: negative-1 [55] by {a=>-a-1}
[14+30a,0+30b,0+30c,4+30d]: negative-1 [54] by {a=>-a-1}
[16+30a,0+30b,0+30c,4+30d]: unknown -> [70] [16,0,0,4] 2048a+5760a²+7200a³+3375a⁴+3375b⁴+3375c⁴-32d-360d²-1800d³-3375d⁴+272
[22+30a,0+30b,0+30c,4+30d]: unknown -> [71] [22,0,0,4] 5324a+10890a²+9900a³+3375a⁴+3375b⁴+3375c⁴-32d-360d²-1800d³-3375d⁴+975
[26+30a,0+30b,0+30c,4+30d]: unknown -> [72] [26,0,0,4] 8788a+15210a²+11700a³+3375a⁴+3375b⁴+3375c⁴-32d-360d²-1800d³-3375d⁴+1903
[28+30a,0+30b,0+30c,4+30d]: unknown -> [73] [28,0,0,4] 10976a+17640a²+12600a³+3375a⁴+3375b⁴+3375c⁴-32d-360d²-1800d³-3375d⁴+2560
[0+30a,2+30b,0+30c,4+30d]: unknown -> [74] [0,2,0,4] 3375a⁴+4b+90b²+900b³+3375b⁴+3375c⁴-32d-360d²-1800d³-3375d⁴-1
[0+30a,4+30b,0+30c,4+30d]: unknown -> [75] [0,4,0,4] 3375a⁴+32b+360b²+1800b³+3375b⁴+3375c⁴-32d-360d²-1800d³-3375d⁴
-> solution [0,4,0,4],trivial(3) [0,34,0,34],trivial(3)
[10+30a,6+30b,0+30c,4+30d]: unknown -> [76] [10,6,0,4] 500a+2250a²+4500a³+3375a⁴+108b+810b²+2700b³+3375b⁴+3375c⁴-32d-360d²-1800d³-3375d⁴+46
[20+30a,6+30b,0+30c,4+30d]: negative-1 [76] by {a=>-a-1}
[0+30a,8+30b,0+30c,4+30d]: unknown -> [77] [0,8,0,4] 3375a⁴+256b+1440b²+3600b³+3375b⁴+3375c⁴-32d-360d²-1800d³-3375d⁴+16
[6+30a,10+30b,0+30c,4+30d]: transposed [76] by [1,0,2,3]
[12+30a,10+30b,0+30c,4+30d]: unknown -> [78] [12,10,0,4] 864a+3240a²+5400a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+3375c⁴-32d-360d²-1800d³-3375d⁴+127
[18+30a,10+30b,0+30c,4+30d]: negative-1 [78] by {a=>-a-1}
[24+30a,10+30b,0+30c,4+30d]: negative-1 [9] by {a=>-a-1}
[10+30a,12+30b,0+30c,4+30d]: transposed [78] by [1,0,2,3]
[20+30a,12+30b,0+30c,4+30d]: negative-1 [76] by {a=>-a-1}
[0+30a,14+30b,0+30c,4+30d]: unknown -> [79] [0,14,0,4] 3375a⁴+1372b+4410b²+6300b³+3375b⁴+3375c⁴-32d-360d²-1800d³-3375d⁴+159
[0+30a,16+30b,0+30c,4+30d]: transposed [70] by [1,0,2,3]
[10+30a,18+30b,0+30c,4+30d]: negative-1 [47] by {b=>-b-1}
[20+30a,18+30b,0+30c,4+30d]: negative-1 [76] by {a=>-a-1}
[6+30a,20+30b,0+30c,4+30d]: negative-1 [78] by {b=>-b-1}
[12+30a,20+30b,0+30c,4+30d]: negative-1 [78] by {b=>-b-1}
[18+30a,20+30b,0+30c,4+30d]: negative-1 [78] by {a=>-a-1,b=>-b-1}
[24+30a,20+30b,0+30c,4+30d]: negative-1 [78] by {b=>-b-1}
[0+30a,22+30b,0+30c,4+30d]: transposed [71] by [1,0,2,3]
[10+30a,24+30b,0+30c,4+30d]: negative-1 [76] by {b=>-b-1}
[20+30a,24+30b,0+30c,4+30d]: negative-1 [76] by {a=>-a-1,b=>-b-1}
[0+30a,26+30b,0+30c,4+30d]: transposed [72] by [1,0,2,3]
[0+30a,28+30b,0+30c,4+30d]: transposed [73] by [1,0,2,3]
[0+30a,0+30b,2+30c,4+30d]: transposed [74] by [0,2,1,3]
[0+30a,0+30b,4+30c,4+30d]: transposed [75] by [0,2,1,3]
[10+30a,0+30b,6+30c,4+30d]: transposed [76] by [0,2,1,3]
[20+30a,0+30b,6+30c,4+30d]: negative-1 [76] by {a=>-a-1}
[0+30a,10+30b,6+30c,4+30d]: transposed [76] by [2,0,1,3]
[0+30a,20+30b,6+30c,4+30d]: negative-1 [78] by {b=>-b-1}
[0+30a,0+30b,8+30c,4+30d]: transposed [77] by [0,2,1,3]
[6+30a,0+30b,10+30c,4+30d]: transposed [76] by [1,2,0,3]
[12+30a,0+30b,10+30c,4+30d]: transposed [78] by [0,2,1,3]
[18+30a,0+30b,10+30c,4+30d]: negative-1 [78] by {a=>-a-1}
[24+30a,0+30b,10+30c,4+30d]: negative-1 [9] by {a=>-a-1}
[0+30a,6+30b,10+30c,4+30d]: transposed [76] by [2,1,0,3]
[0+30a,12+30b,10+30c,4+30d]: transposed [78] by [2,0,1,3]
[0+30a,18+30b,10+30c,4+30d]: negative-1 [47] by {b=>-b-1}
[0+30a,24+30b,10+30c,4+30d]: negative-1 [76] by {b=>-b-1}
[10+30a,0+30b,12+30c,4+30d]: transposed [78] by [1,2,0,3]
[20+30a,0+30b,12+30c,4+30d]: negative-1 [76] by {a=>-a-1}
[0+30a,10+30b,12+30c,4+30d]: transposed [78] by [2,1,0,3]
[0+30a,20+30b,12+30c,4+30d]: negative-1 [78] by {b=>-b-1}
[0+30a,0+30b,14+30c,4+30d]: transposed [79] by [0,2,1,3]
[0+30a,0+30b,16+30c,4+30d]: transposed [70] by [1,2,0,3]
[10+30a,0+30b,18+30c,4+30d]: unknown -> [80] [10,0,18,4] 500a+2250a²+4500a³+3375a⁴+3375b⁴+2916c+7290c²+8100c³+3375c⁴-32d-360d²-1800d³-3375d⁴+478
[20+30a,0+30b,18+30c,4+30d]: negative-1 [80] by {a=>-a-1}
[0+30a,10+30b,18+30c,4+30d]: transposed [80] by [1,0,2,3]
[0+30a,20+30b,18+30c,4+30d]: negative-1 [78] by {b=>-b-1}
[6+30a,0+30b,20+30c,4+30d]: negative-1 [67] by {c=>-c-1}
[12+30a,0+30b,20+30c,4+30d]: negative-1 [67] by {c=>-c-1}
[18+30a,0+30b,20+30c,4+30d]: negative-1 [78] by {a=>-a-1}
[24+30a,0+30b,20+30c,4+30d]: negative-1 [67] by {c=>-c-1}
[0+30a,6+30b,20+30c,4+30d]: negative-1 [67] by {c=>-c-1}
[0+30a,12+30b,20+30c,4+30d]: negative-1 [67] by {c=>-c-1}
[0+30a,18+30b,20+30c,4+30d]: negative-1 [67] by {c=>-c-1}
[0+30a,24+30b,20+30c,4+30d]: negative-1 [76] by {b=>-b-1}
[0+30a,0+30b,22+30c,4+30d]: transposed [71] by [1,2,0,3]
[10+30a,0+30b,24+30c,4+30d]: negative-1 [26] by {c=>-c-1}
[20+30a,0+30b,24+30c,4+30d]: negative-1 [80] by {a=>-a-1}
[0+30a,10+30b,24+30c,4+30d]: negative-1 [26] by {c=>-c-1}
[0+30a,20+30b,24+30c,4+30d]: negative-1 [78] by {b=>-b-1}
[0+30a,0+30b,26+30c,4+30d]: transposed [72] by [1,2,0,3]
[0+30a,0+30b,28+30c,4+30d]: transposed [73] by [1,2,0,3]
[5+30a,0+30b,0+30c,5+30d]: negative-1 [68] by {a=>-a-1}
-> solution [5,0,0,5],trivial(3) [35,0,0,35],trivial(3)
[25+30a,0+30b,0+30c,5+30d]: unknown -> [81] [25,0,0,5] 125a+225a²+180a³+54a⁴+54b⁴+54c⁴-d-9d²-36d³-54d⁴+26
[0+30a,5+30b,0+30c,5+30d]: unknown -> [82] [0,5,0,5] 54a⁴+b+9b²+36b³+54b⁴+54c⁴-d-9d²-36d³-54d⁴
-> solution [0,5,0,5],trivial(3) [0,35,0,35],trivial(3)
[15+30a,10+30b,0+30c,5+30d]: unknown -> [83] [15,10,0,5] 27a+81a²+108a³+54a⁴+8b+36b²+72b³+54b⁴+54c⁴-d-9d²-36d³-54d⁴+4
[10+30a,15+30b,0+30c,5+30d]: transposed [83] by [1,0,2,3]
[20+30a,15+30b,0+30c,5+30d]: negative-1 [80] by {a=>-a-1}
[15+30a,20+30b,0+30c,5+30d]: negative-1 [83] by {b=>-b-1}
[0+30a,25+30b,0+30c,5+30d]: transposed [81] by [1,0,2,3]
[0+30a,0+30b,5+30c,5+30d]: transposed [82] by [0,2,1,3]
[15+30a,0+30b,10+30c,5+30d]: transposed [83] by [0,2,1,3]
[0+30a,15+30b,10+30c,5+30d]: transposed [83] by [2,0,1,3]
[10+30a,0+30b,15+30c,5+30d]: transposed [83] by [1,2,0,3]
[20+30a,0+30b,15+30c,5+30d]: negative-1 [80] by {a=>-a-1}
[0+30a,10+30b,15+30c,5+30d]: transposed [83] by [2,1,0,3]
[0+30a,20+30b,15+30c,5+30d]: negative-1 [83] by {b=>-b-1}
[15+30a,0+30b,20+30c,5+30d]: negative-1 [67] by {c=>-c-1}
[0+30a,15+30b,20+30c,5+30d]: negative-1 [67] by {c=>-c-1}
[0+30a,0+30b,25+30c,5+30d]: transposed [81] by [1,2,0,3]
[6+30a,0+30b,0+30c,6+30d]: unknown -> [84] [6,0,0,6] 4a+30a²+100a³+125a⁴+125b⁴+125c⁴-4d-30d²-100d³-125d⁴
-> solution [6,0,0,6],trivial(3) [36,0,0,36],trivial(3)
[12+30a,0+30b,0+30c,6+30d]: unknown -> [85] [12,0,0,6] 32a+120a²+200a³+125a⁴+125b⁴+125c⁴-4d-30d²-100d³-125d⁴+3
[18+30a,0+30b,0+30c,6+30d]: negative-1 [85] by {a=>-a-1}
[24+30a,0+30b,0+30c,6+30d]: negative-1 [84] by {a=>-a-1}
[0+30a,6+30b,0+30c,6+30d]: transposed [84] by [1,0,2,3]
[0+30a,12+30b,0+30c,6+30d]: transposed [85] by [1,0,2,3]
[0+30a,18+30b,0+30c,6+30d]: negative-1 [47] by {b=>-b-1}
[0+30a,24+30b,0+30c,6+30d]: negative-1 [76] by {b=>-b-1}
[10+30a,10+30b,2+30c,6+30d]: unknown -> [86] [10,10,2,6] 500a+2250a²+4500a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+4c+90c²+900c³+3375c⁴-108d-810d²-2700d³-3375d⁴+78
[20+30a,10+30b,2+30c,6+30d]: negative-1 [86] by {a=>-a-1}
[10+30a,20+30b,2+30c,6+30d]: negative-1 [86] by {b=>-b-1}
[20+30a,20+30b,2+30c,6+30d]: negative-1 [86] by {a=>-a-1,b=>-b-1}
[10+30a,10+30b,4+30c,6+30d]: unknown -> [87] [10,10,4,6] 500a+2250a²+4500a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+32c+360c²+1800c³+3375c⁴-108d-810d²-2700d³-3375d⁴+79
[20+30a,10+30b,4+30c,6+30d]: negative-1 [87] by {a=>-a-1}
[10+30a,20+30b,4+30c,6+30d]: negative-1 [87] by {b=>-b-1}
[20+30a,20+30b,4+30c,6+30d]: negative-1 [87] by {a=>-a-1,b=>-b-1}
[0+30a,0+30b,6+30c,6+30d]: transposed [84] by [1,2,0,3]
[10+30a,10+30b,8+30c,6+30d]: unknown -> [88] [10,10,8,6] 500a+2250a²+4500a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+256c+1440c²+3600c³+3375c⁴-108d-810d²-2700d³-3375d⁴+95
[20+30a,10+30b,8+30c,6+30d]: negative-1 [88] by {a=>-a-1}
[10+30a,20+30b,8+30c,6+30d]: negative-1 [88] by {b=>-b-1}
[20+30a,20+30b,8+30c,6+30d]: negative-1 [88] by {a=>-a-1,b=>-b-1}
[10+30a,2+30b,10+30c,6+30d]: transposed [86] by [0,2,1,3]
[20+30a,2+30b,10+30c,6+30d]: negative-1 [88] by {a=>-a-1}
[10+30a,4+30b,10+30c,6+30d]: transposed [87] by [0,2,1,3]
[20+30a,4+30b,10+30c,6+30d]: negative-1 [88] by {a=>-a-1}
[10+30a,8+30b,10+30c,6+30d]: transposed [88] by [0,2,1,3]
[20+30a,8+30b,10+30c,6+30d]: negative-1 [88] by {a=>-a-1}
[2+30a,10+30b,10+30c,6+30d]: transposed [86] by [2,0,1,3]
[4+30a,10+30b,10+30c,6+30d]: transposed [87] by [2,0,1,3]
[8+30a,10+30b,10+30c,6+30d]: transposed [88] by [2,0,1,3]
[14+30a,10+30b,10+30c,6+30d]: negative-1 [70] by {a=>-a-1}
[16+30a,10+30b,10+30c,6+30d]: unknown -> [89] [16,10,10,6] 2048a+5760a²+7200a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+500c+2250c²+4500c³+3375c⁴-108d-810d²-2700d³-3375d⁴+351
[22+30a,10+30b,10+30c,6+30d]: unknown -> [90] [22,10,10,6] 5324a+10890a²+9900a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+500c+2250c²+4500c³+3375c⁴-108d-810d²-2700d³-3375d⁴+1054
[26+30a,10+30b,10+30c,6+30d]: unknown -> [91] [26,10,10,6] 8788a+15210a²+11700a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+500c+2250c²+4500c³+3375c⁴-108d-810d²-2700d³-3375d⁴+1982
[28+30a,10+30b,10+30c,6+30d]: unknown -> [92] [28,10,10,6] 10976a+17640a²+12600a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+500c+2250c²+4500c³+3375c⁴-108d-810d²-2700d³-3375d⁴+2639
[10+30a,14+30b,10+30c,6+30d]: unknown -> [93] [10,14,10,6] 500a+2250a²+4500a³+3375a⁴+1372b+4410b²+6300b³+3375b⁴+500c+2250c²+4500c³+3375c⁴-108d-810d²-2700d³-3375d⁴+238
[20+30a,14+30b,10+30c,6+30d]: negative-1 [93] by {a=>-a-1}
[10+30a,16+30b,10+30c,6+30d]: transposed [89] by [1,0,2,3]
[20+30a,16+30b,10+30c,6+30d]: negative-1 [93] by {a=>-a-1,b=>-b-1}
[2+30a,20+30b,10+30c,6+30d]: negative-1 [92] by {a=>-a-1,b=>-b-1}
[4+30a,20+30b,10+30c,6+30d]: negative-1 [92] by {b=>-b-1}
[8+30a,20+30b,10+30c,6+30d]: negative-1 [92] by {b=>-b-1}
[14+30a,20+30b,10+30c,6+30d]: negative-1 [92] by {b=>-b-1}
[16+30a,20+30b,10+30c,6+30d]: negative-1 [92] by {b=>-b-1}
[22+30a,20+30b,10+30c,6+30d]: negative-1 [92] by {b=>-b-1}
[26+30a,20+30b,10+30c,6+30d]: negative-1 [92] by {b=>-b-1}
[28+30a,20+30b,10+30c,6+30d]: negative-1 [92] by {b=>-b-1}
[10+30a,22+30b,10+30c,6+30d]: transposed [90] by [1,0,2,3]
[20+30a,22+30b,10+30c,6+30d]: negative-1 [93] by {a=>-a-1}
[10+30a,26+30b,10+30c,6+30d]: transposed [91] by [1,0,2,3]
[20+30a,26+30b,10+30c,6+30d]: negative-1 [93] by {a=>-a-1}
[10+30a,28+30b,10+30c,6+30d]: transposed [92] by [1,0,2,3]
[20+30a,28+30b,10+30c,6+30d]: negative-1 [93] by {a=>-a-1}
[0+30a,0+30b,12+30c,6+30d]: transposed [85] by [1,2,0,3]
[10+30a,10+30b,14+30c,6+30d]: transposed [93] by [0,2,1,3]
[20+30a,10+30b,14+30c,6+30d]: negative-1 [93] by {a=>-a-1}
[10+30a,20+30b,14+30c,6+30d]: negative-1 [92] by {b=>-b-1}
[20+30a,20+30b,14+30c,6+30d]: negative-1 [93] by {a=>-a-1}
[10+30a,10+30b,16+30c,6+30d]: transposed [89] by [1,2,0,3]
[20+30a,10+30b,16+30c,6+30d]: negative-1 [93] by {a=>-a-1}
[10+30a,20+30b,16+30c,6+30d]: negative-1 [92] by {b=>-b-1}
[20+30a,20+30b,16+30c,6+30d]: negative-1 [93] by {a=>-a-1}
[0+30a,0+30b,18+30c,6+30d]: unknown -> [94] [0,0,18,6] 125a⁴+125b⁴+108c+270c²+300c³+125c⁴-4d-30d²-100d³-125d⁴+16
[10+30a,2+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[20+30a,2+30b,20+30c,6+30d]: negative-1 [93] by {a=>-a-1,c=>-c-1}
[10+30a,4+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[20+30a,4+30b,20+30c,6+30d]: negative-1 [93] by {a=>-a-1,c=>-c-1}
[10+30a,8+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[20+30a,8+30b,20+30c,6+30d]: negative-1 [93] by {a=>-a-1,c=>-c-1}
[2+30a,10+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[4+30a,10+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[8+30a,10+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[14+30a,10+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[16+30a,10+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[22+30a,10+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[26+30a,10+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[28+30a,10+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[10+30a,14+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[20+30a,14+30b,20+30c,6+30d]: negative-1 [93] by {a=>-a-1,c=>-c-1}
[10+30a,16+30b,20+30c,6+30d]: negative-1 [93] by {b=>-b-1,c=>-c-1}
[20+30a,16+30b,20+30c,6+30d]: negative-1 [93] by {a=>-a-1,b=>-b-1,c=>-c-1}
[2+30a,20+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[4+30a,20+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[8+30a,20+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[14+30a,20+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[16+30a,20+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[22+30a,20+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[26+30a,20+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[28+30a,20+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[10+30a,22+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[20+30a,22+30b,20+30c,6+30d]: negative-1 [93] by {a=>-a-1,c=>-c-1}
[10+30a,26+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[20+30a,26+30b,20+30c,6+30d]: negative-1 [93] by {a=>-a-1,c=>-c-1}
[10+30a,28+30b,20+30c,6+30d]: negative-1 [93] by {c=>-c-1}
[20+30a,28+30b,20+30c,6+30d]: negative-1 [93] by {a=>-a-1,c=>-c-1}
[10+30a,10+30b,22+30c,6+30d]: transposed [90] by [1,2,0,3]
[20+30a,10+30b,22+30c,6+30d]: negative-1 [93] by {a=>-a-1}
[10+30a,20+30b,22+30c,6+30d]: negative-1 [92] by {b=>-b-1}
[20+30a,20+30b,22+30c,6+30d]: negative-1 [93] by {a=>-a-1}
[0+30a,0+30b,24+30c,6+30d]: negative-1 [26] by {c=>-c-1}
[10+30a,10+30b,26+30c,6+30d]: transposed [91] by [1,2,0,3]
[20+30a,10+30b,26+30c,6+30d]: negative-1 [93] by {a=>-a-1}
[10+30a,20+30b,26+30c,6+30d]: negative-1 [92] by {b=>-b-1}
[20+30a,20+30b,26+30c,6+30d]: negative-1 [93] by {a=>-a-1}
[10+30a,10+30b,28+30c,6+30d]: transposed [92] by [1,2,0,3]
[20+30a,10+30b,28+30c,6+30d]: negative-1 [93] by {a=>-a-1}
[10+30a,20+30b,28+30c,6+30d]: negative-1 [92] by {b=>-b-1}
[20+30a,20+30b,28+30c,6+30d]: negative-1 [93] by {a=>-a-1}
[1+30a,0+30b,0+30c,7+30d]: unknown -> [95] [1,0,0,7] a+45a²+900a³+6750a⁴+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴-20
[7+30a,0+30b,0+30c,7+30d]: unknown -> [96] [7,0,0,7] 343a+2205a²+6300a³+6750a⁴+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴
-> solution [7,0,0,7],trivial(3) [37,0,0,37],trivial(3)
[11+30a,0+30b,0+30c,7+30d]: unknown -> [97] [11,0,0,7] 1331a+5445a²+9900a³+6750a⁴+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+102
[13+30a,0+30b,0+30c,7+30d]: unknown -> [98] [13,0,0,7] 2197a+7605a²+11700a³+6750a⁴+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+218
[17+30a,0+30b,0+30c,7+30d]: negative-1 [98] by {a=>-a-1}
[19+30a,0+30b,0+30c,7+30d]: negative-1 [97] by {a=>-a-1}
[23+30a,0+30b,0+30c,7+30d]: negative-1 [96] by {a=>-a-1}
[29+30a,0+30b,0+30c,7+30d]: negative-1 [95] by {a=>-a-1}
[0+30a,1+30b,0+30c,7+30d]: transposed [95] by [1,0,2,3]
[15+30a,2+30b,0+30c,7+30d]: unknown -> [99] [15,2,0,7] 3375a+10125a²+13500a³+6750a⁴+8b+180b²+1800b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+402
[10+30a,3+30b,0+30c,7+30d]: unknown -> [100] [10,3,0,7] 1000a+4500a²+9000a³+6750a⁴+27b+405b²+2700b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+64
[20+30a,3+30b,0+30c,7+30d]: negative-1 [100] by {a=>-a-1}
[15+30a,4+30b,0+30c,7+30d]: unknown -> [101] [15,4,0,7] 3375a+10125a²+13500a³+6750a⁴+64b+720b²+3600b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+404
[6+30a,5+30b,0+30c,7+30d]: unknown -> [102] [6,5,0,7] 216a+1620a²+5400a³+6750a⁴+125b+1125b²+4500b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴-4
[12+30a,5+30b,0+30c,7+30d]: unknown -> [103] [12,5,0,7] 1728a+6480a²+10800a³+6750a⁴+125b+1125b²+4500b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+158
[18+30a,5+30b,0+30c,7+30d]: negative-1 [103] by {a=>-a-1}
[24+30a,5+30b,0+30c,7+30d]: negative-1 [102] by {a=>-a-1}
[5+30a,6+30b,0+30c,7+30d]: transposed [102] by [1,0,2,3]
[25+30a,6+30b,0+30c,7+30d]: unknown -> [104] [25,6,0,7] 15625a+28125a²+22500a³+6750a⁴+216b+1620b²+5400b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+3246
[0+30a,7+30b,0+30c,7+30d]: transposed [96] by [1,0,2,3]
[15+30a,8+30b,0+30c,7+30d]: unknown -> [105] [15,8,0,7] 3375a+10125a²+13500a³+6750a⁴+512b+2880b²+7200b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+436
[10+30a,9+30b,0+30c,7+30d]: unknown -> [106] [10,9,0,7] 1000a+4500a²+9000a³+6750a⁴+729b+3645b²+8100b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+118
[20+30a,9+30b,0+30c,7+30d]: negative-1 [106] by {a=>-a-1}
[3+30a,10+30b,0+30c,7+30d]: transposed [100] by [1,0,2,3]
[9+30a,10+30b,0+30c,7+30d]: transposed [106] by [1,0,2,3]
[21+30a,10+30b,0+30c,7+30d]: unknown -> [107] [21,10,0,7] 9261a+19845a²+18900a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+1684
[27+30a,10+30b,0+30c,7+30d]: unknown -> [108] [27,10,0,7] 19683a+32805a²+24300a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+4492
[0+30a,11+30b,0+30c,7+30d]: transposed [97] by [1,0,2,3]
[5+30a,12+30b,0+30c,7+30d]: transposed [103] by [1,0,2,3]
[25+30a,12+30b,0+30c,7+30d]: unknown -> [109] [25,12,0,7] 15625a+28125a²+22500a³+6750a⁴+1728b+6480b²+10800b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+3408
[0+30a,13+30b,0+30c,7+30d]: transposed [98] by [1,0,2,3]
[15+30a,14+30b,0+30c,7+30d]: unknown -> [110] [15,14,0,7] 3375a+10125a²+13500a³+6750a⁴+2744b+8820b²+12600b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+722
[2+30a,15+30b,0+30c,7+30d]: transposed [99] by [1,0,2,3]
[4+30a,15+30b,0+30c,7+30d]: transposed [101] by [1,0,2,3]
[8+30a,15+30b,0+30c,7+30d]: transposed [105] by [1,0,2,3]
[14+30a,15+30b,0+30c,7+30d]: transposed [110] by [1,0,2,3]
[16+30a,15+30b,0+30c,7+30d]: unknown -> [111] [16,15,0,7] 4096a+11520a²+14400a³+6750a⁴+3375b+10125b²+13500b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+948
[22+30a,15+30b,0+30c,7+30d]: unknown -> [112] [22,15,0,7] 10648a+21780a²+19800a³+6750a⁴+3375b+10125b²+13500b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+2354
[26+30a,15+30b,0+30c,7+30d]: unknown -> [113] [26,15,0,7] 17576a+30420a²+23400a³+6750a⁴+3375b+10125b²+13500b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+4210
[28+30a,15+30b,0+30c,7+30d]: unknown -> [114] [28,15,0,7] 21952a+35280a²+25200a³+6750a⁴+3375b+10125b²+13500b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+5524
[15+30a,16+30b,0+30c,7+30d]: transposed [111] by [1,0,2,3]
[0+30a,17+30b,0+30c,7+30d]: unknown -> [115] [0,17,0,7] 6750a⁴+4913b+13005b²+15300b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+676
[5+30a,18+30b,0+30c,7+30d]: negative-1 [109] by {a=>-a-1,b=>-b-1}
[25+30a,18+30b,0+30c,7+30d]: negative-1 [109] by {b=>-b-1}
[0+30a,19+30b,0+30c,7+30d]: unknown -> [116] [0,19,0,7] 6750a⁴+6859b+16245b²+17100b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+1066
[3+30a,20+30b,0+30c,7+30d]: negative-1 [108] by {a=>-a-1,b=>-b-1}
[9+30a,20+30b,0+30c,7+30d]: negative-1 [108] by {b=>-b-1}
[21+30a,20+30b,0+30c,7+30d]: negative-1 [108] by {b=>-b-1}
[27+30a,20+30b,0+30c,7+30d]: negative-1 [108] by {b=>-b-1}
[10+30a,21+30b,0+30c,7+30d]: transposed [107] by [1,0,2,3]
[20+30a,21+30b,0+30c,7+30d]: negative-1 [106] by {a=>-a-1,b=>-b-1}
[15+30a,22+30b,0+30c,7+30d]: transposed [112] by [1,0,2,3]
[0+30a,23+30b,0+30c,7+30d]: unknown -> [117] [0,23,0,7] 6750a⁴+12167b+23805b²+20700b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+2312
[5+30a,24+30b,0+30c,7+30d]: negative-1 [109] by {a=>-a-1}
[25+30a,24+30b,0+30c,7+30d]: negative-1 [104] by {b=>-b-1}
[6+30a,25+30b,0+30c,7+30d]: transposed [104] by [1,0,2,3]
[12+30a,25+30b,0+30c,7+30d]: transposed [109] by [1,0,2,3]
[18+30a,25+30b,0+30c,7+30d]: negative-1 [103] by {a=>-a-1,b=>-b-1}
[24+30a,25+30b,0+30c,7+30d]: negative-1 [103] by {b=>-b-1}
[15+30a,26+30b,0+30c,7+30d]: transposed [113] by [1,0,2,3]
[10+30a,27+30b,0+30c,7+30d]: transposed [108] by [1,0,2,3]
[20+30a,27+30b,0+30c,7+30d]: negative-1 [106] by {a=>-a-1}
[15+30a,28+30b,0+30c,7+30d]: transposed [114] by [1,0,2,3]
[0+30a,29+30b,0+30c,7+30d]: unknown -> [118] [0,29,0,7] 6750a⁴+24389b+37845b²+26100b³+6750b⁴+6750c⁴-343d-2205d²-6300d³-6750d⁴+5874
[0+30a,0+30b,1+30c,7+30d]: transposed [95] by [1,2,0,3]
[15+30a,0+30b,2+30c,7+30d]: transposed [99] by [0,2,1,3]
[0+30a,15+30b,2+30c,7+30d]: transposed [99] by [2,0,1,3]
[10+30a,0+30b,3+30c,7+30d]: transposed [100] by [0,2,1,3]
[20+30a,0+30b,3+30c,7+30d]: negative-1 [106] by {a=>-a-1}
[0+30a,10+30b,3+30c,7+30d]: transposed [100] by [2,0,1,3]
[0+30a,20+30b,3+30c,7+30d]: negative-1 [108] by {b=>-b-1}
[15+30a,0+30b,4+30c,7+30d]: transposed [101] by [0,2,1,3]
[0+30a,15+30b,4+30c,7+30d]: transposed [101] by [2,0,1,3]
[6+30a,0+30b,5+30c,7+30d]: transposed [102] by [0,2,1,3]
[12+30a,0+30b,5+30c,7+30d]: transposed [103] by [0,2,1,3]
[18+30a,0+30b,5+30c,7+30d]: negative-1 [103] by {a=>-a-1}
[24+30a,0+30b,5+30c,7+30d]: negative-1 [102] by {a=>-a-1}
[0+30a,6+30b,5+30c,7+30d]: transposed [102] by [2,0,1,3]
[0+30a,12+30b,5+30c,7+30d]: transposed [103] by [2,0,1,3]
[0+30a,18+30b,5+30c,7+30d]: negative-1 [109] by {b=>-b-1}
[0+30a,24+30b,5+30c,7+30d]: negative-1 [104] by {b=>-b-1}
[5+30a,0+30b,6+30c,7+30d]: transposed [102] by [1,2,0,3]
[25+30a,0+30b,6+30c,7+30d]: transposed [104] by [0,2,1,3]
[0+30a,5+30b,6+30c,7+30d]: transposed [102] by [2,1,0,3]
[15+30a,10+30b,6+30c,7+30d]: unknown -> [119] [15,10,6,7] 3375a+10125a²+13500a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+216c+1620c²+5400c³+6750c⁴-343d-2205d²-6300d³-6750d⁴+496
[10+30a,15+30b,6+30c,7+30d]: transposed [119] by [1,0,2,3]
[20+30a,15+30b,6+30c,7+30d]: negative-1 [106] by {a=>-a-1}
[15+30a,20+30b,6+30c,7+30d]: negative-1 [119] by {b=>-b-1}
[0+30a,25+30b,6+30c,7+30d]: transposed [104] by [2,0,1,3]
[0+30a,0+30b,7+30c,7+30d]: transposed [96] by [1,2,0,3]
[15+30a,0+30b,8+30c,7+30d]: transposed [105] by [0,2,1,3]
[0+30a,15+30b,8+30c,7+30d]: transposed [105] by [2,0,1,3]
[10+30a,0+30b,9+30c,7+30d]: transposed [106] by [0,2,1,3]
[20+30a,0+30b,9+30c,7+30d]: negative-1 [106] by {a=>-a-1}
[0+30a,10+30b,9+30c,7+30d]: transposed [106] by [2,0,1,3]
[0+30a,20+30b,9+30c,7+30d]: negative-1 [119] by {b=>-b-1}
[3+30a,0+30b,10+30c,7+30d]: transposed [100] by [1,2,0,3]
[9+30a,0+30b,10+30c,7+30d]: transposed [106] by [1,2,0,3]
[21+30a,0+30b,10+30c,7+30d]: transposed [107] by [0,2,1,3]
[27+30a,0+30b,10+30c,7+30d]: transposed [108] by [0,2,1,3]
[0+30a,3+30b,10+30c,7+30d]: transposed [100] by [2,1,0,3]
[15+30a,6+30b,10+30c,7+30d]: transposed [119] by [0,2,1,3]
[0+30a,9+30b,10+30c,7+30d]: transposed [106] by [2,1,0,3]
[15+30a,12+30b,10+30c,7+30d]: unknown -> [120] [15,12,10,7] 3375a+10125a²+13500a³+6750a⁴+1728b+6480b²+10800b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-343d-2205d²-6300d³-6750d⁴+658
[6+30a,15+30b,10+30c,7+30d]: transposed [119] by [2,0,1,3]
[12+30a,15+30b,10+30c,7+30d]: transposed [120] by [1,0,2,3]
[18+30a,15+30b,10+30c,7+30d]: negative-1 [103] by {a=>-a-1}
[24+30a,15+30b,10+30c,7+30d]: negative-1 [102] by {a=>-a-1}
[15+30a,18+30b,10+30c,7+30d]: negative-1 [120] by {b=>-b-1}
[0+30a,21+30b,10+30c,7+30d]: transposed [107] by [2,0,1,3]
[15+30a,24+30b,10+30c,7+30d]: negative-1 [104] by {b=>-b-1}
[0+30a,27+30b,10+30c,7+30d]: transposed [108] by [2,0,1,3]
[0+30a,0+30b,11+30c,7+30d]: transposed [97] by [1,2,0,3]
[5+30a,0+30b,12+30c,7+30d]: transposed [103] by [1,2,0,3]
[25+30a,0+30b,12+30c,7+30d]: transposed [109] by [0,2,1,3]
[0+30a,5+30b,12+30c,7+30d]: transposed [103] by [2,1,0,3]
[15+30a,10+30b,12+30c,7+30d]: transposed [120] by [0,2,1,3]
[10+30a,15+30b,12+30c,7+30d]: transposed [120] by [2,0,1,3]
[20+30a,15+30b,12+30c,7+30d]: negative-1 [106] by {a=>-a-1}
[15+30a,20+30b,12+30c,7+30d]: negative-1 [119] by {b=>-b-1}
[0+30a,25+30b,12+30c,7+30d]: transposed [109] by [2,0,1,3]
[0+30a,0+30b,13+30c,7+30d]: transposed [98] by [1,2,0,3]
[15+30a,0+30b,14+30c,7+30d]: transposed [110] by [0,2,1,3]
[0+30a,15+30b,14+30c,7+30d]: transposed [110] by [2,0,1,3]
[2+30a,0+30b,15+30c,7+30d]: transposed [99] by [1,2,0,3]
[4+30a,0+30b,15+30c,7+30d]: transposed [101] by [1,2,0,3]
[8+30a,0+30b,15+30c,7+30d]: transposed [105] by [1,2,0,3]
[14+30a,0+30b,15+30c,7+30d]: transposed [110] by [1,2,0,3]
[16+30a,0+30b,15+30c,7+30d]: transposed [111] by [0,2,1,3]
[22+30a,0+30b,15+30c,7+30d]: transposed [112] by [0,2,1,3]
[26+30a,0+30b,15+30c,7+30d]: transposed [113] by [0,2,1,3]
[28+30a,0+30b,15+30c,7+30d]: transposed [114] by [0,2,1,3]
[0+30a,2+30b,15+30c,7+30d]: transposed [99] by [2,1,0,3]
[0+30a,4+30b,15+30c,7+30d]: transposed [101] by [2,1,0,3]
[10+30a,6+30b,15+30c,7+30d]: transposed [119] by [1,2,0,3]
[20+30a,6+30b,15+30c,7+30d]: negative-1 [106] by {a=>-a-1}
[0+30a,8+30b,15+30c,7+30d]: transposed [105] by [2,1,0,3]
[6+30a,10+30b,15+30c,7+30d]: transposed [119] by [2,1,0,3]
[12+30a,10+30b,15+30c,7+30d]: transposed [120] by [1,2,0,3]
[18+30a,10+30b,15+30c,7+30d]: negative-1 [103] by {a=>-a-1}
[24+30a,10+30b,15+30c,7+30d]: negative-1 [102] by {a=>-a-1}
[10+30a,12+30b,15+30c,7+30d]: transposed [120] by [2,1,0,3]
[20+30a,12+30b,15+30c,7+30d]: negative-1 [106] by {a=>-a-1}
[0+30a,14+30b,15+30c,7+30d]: transposed [110] by [2,1,0,3]
[0+30a,16+30b,15+30c,7+30d]: transposed [111] by [2,0,1,3]
[10+30a,18+30b,15+30c,7+30d]: negative-1 [120] by {b=>-b-1}
[20+30a,18+30b,15+30c,7+30d]: negative-1 [120] by {b=>-b-1}
[6+30a,20+30b,15+30c,7+30d]: negative-1 [119] by {b=>-b-1}
[12+30a,20+30b,15+30c,7+30d]: negative-1 [119] by {b=>-b-1}
[18+30a,20+30b,15+30c,7+30d]: negative-1 [119] by {b=>-b-1}
[24+30a,20+30b,15+30c,7+30d]: negative-1 [119] by {b=>-b-1}
[0+30a,22+30b,15+30c,7+30d]: transposed [112] by [2,0,1,3]
[10+30a,24+30b,15+30c,7+30d]: negative-1 [104] by {b=>-b-1}
[20+30a,24+30b,15+30c,7+30d]: negative-1 [106] by {a=>-a-1}
[0+30a,26+30b,15+30c,7+30d]: transposed [113] by [2,0,1,3]
[0+30a,28+30b,15+30c,7+30d]: transposed [114] by [2,0,1,3]
[15+30a,0+30b,16+30c,7+30d]: transposed [111] by [1,2,0,3]
[0+30a,15+30b,16+30c,7+30d]: transposed [111] by [2,1,0,3]
[0+30a,0+30b,17+30c,7+30d]: transposed [115] by [0,2,1,3]
[5+30a,0+30b,18+30c,7+30d]: negative-1 [109] by {a=>-a-1}
[25+30a,0+30b,18+30c,7+30d]: unknown -> [121] [25,0,18,7] 15625a+28125a²+22500a³+6750a⁴+6750b⁴+5832c+14580c²+16200c³+6750c⁴-343d-2205d²-6300d³-6750d⁴+4110
[0+30a,5+30b,18+30c,7+30d]: unknown -> [122] [0,5,18,7] 6750a⁴+125b+1125b²+4500b³+6750b⁴+5832c+14580c²+16200c³+6750c⁴-343d-2205d²-6300d³-6750d⁴+860
[15+30a,10+30b,18+30c,7+30d]: unknown -> [123] [15,10,18,7] 3375a+10125a²+13500a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+5832c+14580c²+16200c³+6750c⁴-343d-2205d²-6300d³-6750d⁴+1360
[10+30a,15+30b,18+30c,7+30d]: transposed [123] by [1,0,2,3]
[20+30a,15+30b,18+30c,7+30d]: negative-1 [106] by {a=>-a-1}
[15+30a,20+30b,18+30c,7+30d]: negative-1 [123] by {b=>-b-1}
[0+30a,25+30b,18+30c,7+30d]: transposed [121] by [1,0,2,3]
[0+30a,0+30b,19+30c,7+30d]: transposed [116] by [0,2,1,3]
[3+30a,0+30b,20+30c,7+30d]: negative-1 [120] by {c=>-c-1}
[9+30a,0+30b,20+30c,7+30d]: negative-1 [120] by {c=>-c-1}
[21+30a,0+30b,20+30c,7+30d]: negative-1 [120] by {c=>-c-1}
[27+30a,0+30b,20+30c,7+30d]: negative-1 [120] by {c=>-c-1}
[0+30a,3+30b,20+30c,7+30d]: negative-1 [120] by {c=>-c-1}
[15+30a,6+30b,20+30c,7+30d]: negative-1 [120] by {c=>-c-1}
[0+30a,9+30b,20+30c,7+30d]: negative-1 [120] by {c=>-c-1}
[15+30a,12+30b,20+30c,7+30d]: negative-1 [120] by {c=>-c-1}
[6+30a,15+30b,20+30c,7+30d]: negative-1 [120] by {c=>-c-1}
[12+30a,15+30b,20+30c,7+30d]: negative-1 [120] by {c=>-c-1}
[18+30a,15+30b,20+30c,7+30d]: negative-1 [120] by {c=>-c-1}
[24+30a,15+30b,20+30c,7+30d]: negative-1 [120] by {c=>-c-1}
[15+30a,18+30b,20+30c,7+30d]: negative-1 [120] by {b=>-b-1,c=>-c-1}
[0+30a,21+30b,20+30c,7+30d]: negative-1 [120] by {c=>-c-1}
[15+30a,24+30b,20+30c,7+30d]: negative-1 [120] by {c=>-c-1}
[0+30a,27+30b,20+30c,7+30d]: negative-1 [120] by {c=>-c-1}
[10+30a,0+30b,21+30c,7+30d]: transposed [107] by [1,2,0,3]
[20+30a,0+30b,21+30c,7+30d]: negative-1 [106] by {a=>-a-1}
[0+30a,10+30b,21+30c,7+30d]: transposed [107] by [2,1,0,3]
[0+30a,20+30b,21+30c,7+30d]: negative-1 [123] by {b=>-b-1}
[15+30a,0+30b,22+30c,7+30d]: transposed [112] by [1,2,0,3]
[0+30a,15+30b,22+30c,7+30d]: transposed [112] by [2,1,0,3]
[0+30a,0+30b,23+30c,7+30d]: transposed [117] by [0,2,1,3]
[5+30a,0+30b,24+30c,7+30d]: negative-1 [121] by {a=>-a-1}
[25+30a,0+30b,24+30c,7+30d]: negative-1 [119] by {c=>-c-1}
[0+30a,5+30b,24+30c,7+30d]: negative-1 [119] by {c=>-c-1}
[15+30a,10+30b,24+30c,7+30d]: negative-1 [119] by {c=>-c-1}
[10+30a,15+30b,24+30c,7+30d]: negative-1 [119] by {c=>-c-1}
[20+30a,15+30b,24+30c,7+30d]: negative-1 [119] by {c=>-c-1}
[15+30a,20+30b,24+30c,7+30d]: negative-1 [123] by {b=>-b-1}
[0+30a,25+30b,24+30c,7+30d]: negative-1 [122] by {b=>-b-1}
[6+30a,0+30b,25+30c,7+30d]: transposed [104] by [1,2,0,3]
[12+30a,0+30b,25+30c,7+30d]: transposed [109] by [1,2,0,3]
[18+30a,0+30b,25+30c,7+30d]: transposed [121] by [2,1,0,3]
[24+30a,0+30b,25+30c,7+30d]: negative-1 [102] by {a=>-a-1}
[0+30a,6+30b,25+30c,7+30d]: transposed [104] by [2,1,0,3]
[0+30a,12+30b,25+30c,7+30d]: transposed [109] by [2,1,0,3]
[0+30a,18+30b,25+30c,7+30d]: transposed [121] by [1,2,0,3]
[0+30a,24+30b,25+30c,7+30d]: negative-1 [104] by {b=>-b-1}
[15+30a,0+30b,26+30c,7+30d]: transposed [113] by [1,2,0,3]
[0+30a,15+30b,26+30c,7+30d]: transposed [113] by [2,1,0,3]
[10+30a,0+30b,27+30c,7+30d]: transposed [108] by [1,2,0,3]
[20+30a,0+30b,27+30c,7+30d]: negative-1 [106] by {a=>-a-1}
[0+30a,10+30b,27+30c,7+30d]: transposed [108] by [2,1,0,3]
[0+30a,20+30b,27+30c,7+30d]: negative-1 [123] by {b=>-b-1}
[15+30a,0+30b,28+30c,7+30d]: transposed [114] by [1,2,0,3]
[0+30a,15+30b,28+30c,7+30d]: transposed [114] by [2,1,0,3]
[0+30a,0+30b,29+30c,7+30d]: transposed [118] by [0,2,1,3]
[2+30a,0+30b,0+30c,8+30d]: negative-1 [114] by {a=>-a-1}
[4+30a,0+30b,0+30c,8+30d]: negative-1 [113] by {a=>-a-1}
[8+30a,0+30b,0+30c,8+30d]: negative-1 [112] by {a=>-a-1}
-> solution [8,0,0,8],trivial(3) [38,0,0,38],trivial(3)
[14+30a,0+30b,0+30c,8+30d]: negative-1 [111] by {a=>-a-1}
[16+30a,0+30b,0+30c,8+30d]: unknown -> [124] [16,0,0,8] 2048a+5760a²+7200a³+3375a⁴+3375b⁴+3375c⁴-256d-1440d²-3600d³-3375d⁴+256
[22+30a,0+30b,0+30c,8+30d]: unknown -> [125] [22,0,0,8] 5324a+10890a²+9900a³+3375a⁴+3375b⁴+3375c⁴-256d-1440d²-3600d³-3375d⁴+959
[26+30a,0+30b,0+30c,8+30d]: unknown -> [126] [26,0,0,8] 8788a+15210a²+11700a³+3375a⁴+3375b⁴+3375c⁴-256d-1440d²-3600d³-3375d⁴+1887
[28+30a,0+30b,0+30c,8+30d]: unknown -> [127] [28,0,0,8] 10976a+17640a²+12600a³+3375a⁴+3375b⁴+3375c⁴-256d-1440d²-3600d³-3375d⁴+2544
[0+30a,2+30b,0+30c,8+30d]: unknown -> [128] [0,2,0,8] 3375a⁴+4b+90b²+900b³+3375b⁴+3375c⁴-256d-1440d²-3600d³-3375d⁴-17
[0+30a,4+30b,0+30c,8+30d]: unknown -> [129] [0,4,0,8] 3375a⁴+32b+360b²+1800b³+3375b⁴+3375c⁴-256d-1440d²-3600d³-3375d⁴-16
[10+30a,6+30b,0+30c,8+30d]: unknown -> [130] [10,6,0,8] 500a+2250a²+4500a³+3375a⁴+108b+810b²+2700b³+3375b⁴+3375c⁴-256d-1440d²-3600d³-3375d⁴+30
[20+30a,6+30b,0+30c,8+30d]: negative-1 [130] by {a=>-a-1}
[0+30a,8+30b,0+30c,8+30d]: unknown -> [131] [0,8,0,8] 3375a⁴+256b+1440b²+3600b³+3375b⁴+3375c⁴-256d-1440d²-3600d³-3375d⁴
-> solution [0,8,0,8],trivial(3) [0,38,0,38],trivial(3)
[6+30a,10+30b,0+30c,8+30d]: transposed [130] by [1,0,2,3]
[12+30a,10+30b,0+30c,8+30d]: unknown -> [132] [12,10,0,8] 864a+3240a²+5400a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+3375c⁴-256d-1440d²-3600d³-3375d⁴+111
[18+30a,10+30b,0+30c,8+30d]: negative-1 [132] by {a=>-a-1}
[24+30a,10+30b,0+30c,8+30d]: negative-1 [102] by {a=>-a-1}
[10+30a,12+30b,0+30c,8+30d]: transposed [132] by [1,0,2,3]
[20+30a,12+30b,0+30c,8+30d]: negative-1 [130] by {a=>-a-1}
[0+30a,14+30b,0+30c,8+30d]: unknown -> [133] [0,14,0,8] 3375a⁴+1372b+4410b²+6300b³+3375b⁴+3375c⁴-256d-1440d²-3600d³-3375d⁴+143
[0+30a,16+30b,0+30c,8+30d]: transposed [124] by [1,0,2,3]
[10+30a,18+30b,0+30c,8+30d]: negative-1 [120] by {b=>-b-1}
[20+30a,18+30b,0+30c,8+30d]: negative-1 [130] by {a=>-a-1}
[6+30a,20+30b,0+30c,8+30d]: negative-1 [132] by {b=>-b-1}
[12+30a,20+30b,0+30c,8+30d]: negative-1 [132] by {b=>-b-1}
[18+30a,20+30b,0+30c,8+30d]: negative-1 [132] by {a=>-a-1,b=>-b-1}
[24+30a,20+30b,0+30c,8+30d]: negative-1 [132] by {b=>-b-1}
[0+30a,22+30b,0+30c,8+30d]: transposed [125] by [1,0,2,3]
[10+30a,24+30b,0+30c,8+30d]: negative-1 [130] by {b=>-b-1}
[20+30a,24+30b,0+30c,8+30d]: negative-1 [130] by {a=>-a-1,b=>-b-1}
[0+30a,26+30b,0+30c,8+30d]: transposed [126] by [1,0,2,3]
[0+30a,28+30b,0+30c,8+30d]: transposed [127] by [1,0,2,3]
[0+30a,0+30b,2+30c,8+30d]: transposed [128] by [0,2,1,3]
[0+30a,0+30b,4+30c,8+30d]: transposed [129] by [0,2,1,3]
[10+30a,0+30b,6+30c,8+30d]: transposed [130] by [0,2,1,3]
[20+30a,0+30b,6+30c,8+30d]: negative-1 [130] by {a=>-a-1}
[0+30a,10+30b,6+30c,8+30d]: transposed [130] by [2,0,1,3]
[0+30a,20+30b,6+30c,8+30d]: negative-1 [132] by {b=>-b-1}
[0+30a,0+30b,8+30c,8+30d]: transposed [131] by [0,2,1,3]
[6+30a,0+30b,10+30c,8+30d]: transposed [130] by [1,2,0,3]
[12+30a,0+30b,10+30c,8+30d]: transposed [132] by [0,2,1,3]
[18+30a,0+30b,10+30c,8+30d]: negative-1 [132] by {a=>-a-1}
[24+30a,0+30b,10+30c,8+30d]: negative-1 [102] by {a=>-a-1}
[0+30a,6+30b,10+30c,8+30d]: transposed [130] by [2,1,0,3]
[0+30a,12+30b,10+30c,8+30d]: transposed [132] by [2,0,1,3]
[0+30a,18+30b,10+30c,8+30d]: negative-1 [120] by {b=>-b-1}
[0+30a,24+30b,10+30c,8+30d]: negative-1 [130] by {b=>-b-1}
[10+30a,0+30b,12+30c,8+30d]: transposed [132] by [1,2,0,3]
[20+30a,0+30b,12+30c,8+30d]: negative-1 [130] by {a=>-a-1}
[0+30a,10+30b,12+30c,8+30d]: transposed [132] by [2,1,0,3]
[0+30a,20+30b,12+30c,8+30d]: negative-1 [132] by {b=>-b-1}
[0+30a,0+30b,14+30c,8+30d]: transposed [133] by [0,2,1,3]
[0+30a,0+30b,16+30c,8+30d]: transposed [124] by [1,2,0,3]
[10+30a,0+30b,18+30c,8+30d]: unknown -> [134] [10,0,18,8] 500a+2250a²+4500a³+3375a⁴+3375b⁴+2916c+7290c²+8100c³+3375c⁴-256d-1440d²-3600d³-3375d⁴+462
[20+30a,0+30b,18+30c,8+30d]: negative-1 [134] by {a=>-a-1}
[0+30a,10+30b,18+30c,8+30d]: transposed [134] by [1,0,2,3]
[0+30a,20+30b,18+30c,8+30d]: negative-1 [132] by {b=>-b-1}
[6+30a,0+30b,20+30c,8+30d]: negative-1 [120] by {c=>-c-1}
[12+30a,0+30b,20+30c,8+30d]: negative-1 [120] by {c=>-c-1}
[18+30a,0+30b,20+30c,8+30d]: negative-1 [132] by {a=>-a-1}
[24+30a,0+30b,20+30c,8+30d]: negative-1 [120] by {c=>-c-1}
[0+30a,6+30b,20+30c,8+30d]: negative-1 [120] by {c=>-c-1}
[0+30a,12+30b,20+30c,8+30d]: negative-1 [120] by {c=>-c-1}
[0+30a,18+30b,20+30c,8+30d]: negative-1 [120] by {b=>-b-1,c=>-c-1}
[0+30a,24+30b,20+30c,8+30d]: negative-1 [130] by {b=>-b-1}
[0+30a,0+30b,22+30c,8+30d]: transposed [125] by [1,2,0,3]
[10+30a,0+30b,24+30c,8+30d]: negative-1 [119] by {c=>-c-1}
[20+30a,0+30b,24+30c,8+30d]: negative-1 [134] by {a=>-a-1}
[0+30a,10+30b,24+30c,8+30d]: negative-1 [119] by {c=>-c-1}
[0+30a,20+30b,24+30c,8+30d]: negative-1 [132] by {b=>-b-1}
[0+30a,0+30b,26+30c,8+30d]: transposed [126] by [1,2,0,3]
[0+30a,0+30b,28+30c,8+30d]: transposed [127] by [1,2,0,3]
[3+30a,0+30b,0+30c,9+30d]: negative-1 [108] by {a=>-a-1}
[9+30a,0+30b,0+30c,9+30d]: negative-1 [107] by {a=>-a-1}
-> solution [9,0,0,9],trivial(3) [39,0,0,39],trivial(3)
[21+30a,0+30b,0+30c,9+30d]: unknown -> [135] [21,0,0,9] 343a+735a²+700a³+250a⁴+250b⁴+250c⁴-27d-135d²-300d³-250d⁴+58
[27+30a,0+30b,0+30c,9+30d]: unknown -> [136] [27,0,0,9] 729a+1215a²+900a³+250a⁴+250b⁴+250c⁴-27d-135d²-300d³-250d⁴+162
[0+30a,3+30b,0+30c,9+30d]: unknown -> [137] [0,3,0,9] 250a⁴+b+15b²+100b³+250b⁴+250c⁴-27d-135d²-300d³-250d⁴-2
[15+30a,6+30b,0+30c,9+30d]: unknown -> [138] [15,6,0,9] 125a+375a²+500a³+250a⁴+8b+60b²+200b³+250b⁴+250c⁴-27d-135d²-300d³-250d⁴+14
[0+30a,9+30b,0+30c,9+30d]: unknown -> [139] [0,9,0,9] 250a⁴+27b+135b²+300b³+250b⁴+250c⁴-27d-135d²-300d³-250d⁴
-> solution [0,9,0,9],trivial(3) [0,39,0,39],trivial(3)
[15+30a,12+30b,0+30c,9+30d]: unknown -> [140] [15,12,0,9] 125a+375a²+500a³+250a⁴+64b+240b²+400b³+250b⁴+250c⁴-27d-135d²-300d³-250d⁴+20
[6+30a,15+30b,0+30c,9+30d]: transposed [138] by [1,0,2,3]
[12+30a,15+30b,0+30c,9+30d]: transposed [140] by [1,0,2,3]
[18+30a,15+30b,0+30c,9+30d]: negative-1 [132] by {a=>-a-1}
[24+30a,15+30b,0+30c,9+30d]: negative-1 [102] by {a=>-a-1}
[15+30a,18+30b,0+30c,9+30d]: negative-1 [140] by {b=>-b-1}
[0+30a,21+30b,0+30c,9+30d]: transposed [135] by [1,0,2,3]
[15+30a,24+30b,0+30c,9+30d]: negative-1 [138] by {b=>-b-1}
[0+30a,27+30b,0+30c,9+30d]: transposed [136] by [1,0,2,3]
[10+30a,10+30b,1+30c,9+30d]: unknown -> [141] [10,10,1,9] 1000a+4500a²+9000a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+c+45c²+900c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+112
[20+30a,10+30b,1+30c,9+30d]: negative-1 [141] by {a=>-a-1}
[10+30a,20+30b,1+30c,9+30d]: negative-1 [141] by {b=>-b-1}
[20+30a,20+30b,1+30c,9+30d]: negative-1 [141] by {a=>-a-1,b=>-b-1}
[10+30a,5+30b,2+30c,9+30d]: unknown -> [142] [10,5,2,9] 1000a+4500a²+9000a³+6750a⁴+125b+1125b²+4500b³+6750b⁴+8c+180c²+1800c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+34
[20+30a,5+30b,2+30c,9+30d]: negative-1 [142] by {a=>-a-1}
[5+30a,10+30b,2+30c,9+30d]: transposed [142] by [1,0,2,3]
[25+30a,10+30b,2+30c,9+30d]: unknown -> [143] [25,10,2,9] 15625a+28125a²+22500a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+8c+180c²+1800c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+3284
[5+30a,20+30b,2+30c,9+30d]: negative-1 [143] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,2+30c,9+30d]: negative-1 [143] by {b=>-b-1}
[10+30a,25+30b,2+30c,9+30d]: transposed [143] by [1,0,2,3]
[20+30a,25+30b,2+30c,9+30d]: negative-1 [142] by {a=>-a-1,b=>-b-1}
[0+30a,0+30b,3+30c,9+30d]: transposed [137] by [0,2,1,3]
[10+30a,5+30b,4+30c,9+30d]: unknown -> [144] [10,5,4,9] 1000a+4500a²+9000a³+6750a⁴+125b+1125b²+4500b³+6750b⁴+64c+720c²+3600c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+36
[20+30a,5+30b,4+30c,9+30d]: negative-1 [144] by {a=>-a-1}
[5+30a,10+30b,4+30c,9+30d]: transposed [144] by [1,0,2,3]
[25+30a,10+30b,4+30c,9+30d]: unknown -> [145] [25,10,4,9] 15625a+28125a²+22500a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+64c+720c²+3600c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+3286
[5+30a,20+30b,4+30c,9+30d]: negative-1 [145] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,4+30c,9+30d]: negative-1 [145] by {b=>-b-1}
[10+30a,25+30b,4+30c,9+30d]: transposed [145] by [1,0,2,3]
[20+30a,25+30b,4+30c,9+30d]: negative-1 [144] by {a=>-a-1,b=>-b-1}
[10+30a,2+30b,5+30c,9+30d]: transposed [142] by [0,2,1,3]
[20+30a,2+30b,5+30c,9+30d]: negative-1 [144] by {a=>-a-1}
[10+30a,4+30b,5+30c,9+30d]: transposed [144] by [0,2,1,3]
[20+30a,4+30b,5+30c,9+30d]: negative-1 [144] by {a=>-a-1}
[10+30a,8+30b,5+30c,9+30d]: unknown -> [146] [10,8,5,9] 1000a+4500a²+9000a³+6750a⁴+512b+2880b²+7200b³+6750b⁴+125c+1125c²+4500c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+68
[20+30a,8+30b,5+30c,9+30d]: negative-1 [146] by {a=>-a-1}
[2+30a,10+30b,5+30c,9+30d]: transposed [142] by [2,0,1,3]
[4+30a,10+30b,5+30c,9+30d]: transposed [144] by [2,0,1,3]
[8+30a,10+30b,5+30c,9+30d]: transposed [146] by [1,0,2,3]
[14+30a,10+30b,5+30c,9+30d]: negative-1 [124] by {a=>-a-1}
[16+30a,10+30b,5+30c,9+30d]: unknown -> [147] [16,10,5,9] 4096a+11520a²+14400a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+125c+1125c²+4500c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+580
[22+30a,10+30b,5+30c,9+30d]: unknown -> [148] [22,10,5,9] 10648a+21780a²+19800a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+125c+1125c²+4500c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+1986
[26+30a,10+30b,5+30c,9+30d]: unknown -> [149] [26,10,5,9] 17576a+30420a²+23400a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+125c+1125c²+4500c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+3842
[28+30a,10+30b,5+30c,9+30d]: unknown -> [150] [28,10,5,9] 21952a+35280a²+25200a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+125c+1125c²+4500c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+5156
[10+30a,14+30b,5+30c,9+30d]: unknown -> [151] [10,14,5,9] 1000a+4500a²+9000a³+6750a⁴+2744b+8820b²+12600b³+6750b⁴+125c+1125c²+4500c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+354
[20+30a,14+30b,5+30c,9+30d]: negative-1 [151] by {a=>-a-1}
[10+30a,16+30b,5+30c,9+30d]: transposed [147] by [1,0,2,3]
[20+30a,16+30b,5+30c,9+30d]: negative-1 [151] by {a=>-a-1,b=>-b-1}
[2+30a,20+30b,5+30c,9+30d]: negative-1 [150] by {a=>-a-1,b=>-b-1}
[4+30a,20+30b,5+30c,9+30d]: negative-1 [150] by {b=>-b-1}
[8+30a,20+30b,5+30c,9+30d]: negative-1 [150] by {b=>-b-1}
[14+30a,20+30b,5+30c,9+30d]: negative-1 [150] by {b=>-b-1}
[16+30a,20+30b,5+30c,9+30d]: negative-1 [150] by {b=>-b-1}
[22+30a,20+30b,5+30c,9+30d]: negative-1 [150] by {b=>-b-1}
[26+30a,20+30b,5+30c,9+30d]: negative-1 [150] by {b=>-b-1}
[28+30a,20+30b,5+30c,9+30d]: negative-1 [150] by {b=>-b-1}
[10+30a,22+30b,5+30c,9+30d]: transposed [148] by [1,0,2,3]
[20+30a,22+30b,5+30c,9+30d]: negative-1 [151] by {a=>-a-1}
[10+30a,26+30b,5+30c,9+30d]: transposed [149] by [1,0,2,3]
[20+30a,26+30b,5+30c,9+30d]: negative-1 [151] by {a=>-a-1}
[10+30a,28+30b,5+30c,9+30d]: transposed [150] by [1,0,2,3]
[20+30a,28+30b,5+30c,9+30d]: negative-1 [151] by {a=>-a-1}
[15+30a,0+30b,6+30c,9+30d]: transposed [138] by [0,2,1,3]
[0+30a,15+30b,6+30c,9+30d]: transposed [138] by [2,0,1,3]
[10+30a,10+30b,7+30c,9+30d]: unknown -> [152] [10,10,7,9] 1000a+4500a²+9000a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+343c+2205c²+6300c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+132
[20+30a,10+30b,7+30c,9+30d]: negative-1 [152] by {a=>-a-1}
[10+30a,20+30b,7+30c,9+30d]: negative-1 [152] by {b=>-b-1}
[20+30a,20+30b,7+30c,9+30d]: negative-1 [152] by {a=>-a-1,b=>-b-1}
[10+30a,5+30b,8+30c,9+30d]: transposed [146] by [0,2,1,3]
[20+30a,5+30b,8+30c,9+30d]: negative-1 [152] by {a=>-a-1}
[5+30a,10+30b,8+30c,9+30d]: transposed [146] by [2,0,1,3]
[25+30a,10+30b,8+30c,9+30d]: unknown -> [153] [25,10,8,9] 15625a+28125a²+22500a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+512c+2880c²+7200c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+3318
[5+30a,20+30b,8+30c,9+30d]: negative-1 [153] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,8+30c,9+30d]: negative-1 [153] by {b=>-b-1}
[10+30a,25+30b,8+30c,9+30d]: transposed [153] by [1,0,2,3]
[20+30a,25+30b,8+30c,9+30d]: negative-1 [152] by {a=>-a-1}
[0+30a,0+30b,9+30c,9+30d]: transposed [139] by [0,2,1,3]
[10+30a,1+30b,10+30c,9+30d]: transposed [141] by [0,2,1,3]
[20+30a,1+30b,10+30c,9+30d]: negative-1 [152] by {a=>-a-1}
[5+30a,2+30b,10+30c,9+30d]: transposed [142] by [1,2,0,3]
[25+30a,2+30b,10+30c,9+30d]: transposed [143] by [0,2,1,3]
[5+30a,4+30b,10+30c,9+30d]: transposed [144] by [1,2,0,3]
[25+30a,4+30b,10+30c,9+30d]: transposed [145] by [0,2,1,3]
[2+30a,5+30b,10+30c,9+30d]: transposed [142] by [2,1,0,3]
[4+30a,5+30b,10+30c,9+30d]: transposed [144] by [2,1,0,3]
[8+30a,5+30b,10+30c,9+30d]: transposed [146] by [1,2,0,3]
[14+30a,5+30b,10+30c,9+30d]: transposed [151] by [1,2,0,3]
[16+30a,5+30b,10+30c,9+30d]: transposed [147] by [0,2,1,3]
[22+30a,5+30b,10+30c,9+30d]: transposed [148] by [0,2,1,3]
[26+30a,5+30b,10+30c,9+30d]: transposed [149] by [0,2,1,3]
[28+30a,5+30b,10+30c,9+30d]: transposed [150] by [0,2,1,3]
[10+30a,7+30b,10+30c,9+30d]: transposed [152] by [0,2,1,3]
[20+30a,7+30b,10+30c,9+30d]: negative-1 [152] by {a=>-a-1}
[5+30a,8+30b,10+30c,9+30d]: transposed [146] by [2,1,0,3]
[25+30a,8+30b,10+30c,9+30d]: transposed [153] by [0,2,1,3]
[1+30a,10+30b,10+30c,9+30d]: transposed [141] by [2,0,1,3]
[7+30a,10+30b,10+30c,9+30d]: transposed [152] by [2,0,1,3]
[11+30a,10+30b,10+30c,9+30d]: unknown -> [154] [11,10,10,9] 1331a+5445a²+9900a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+234
[13+30a,10+30b,10+30c,9+30d]: unknown -> [155] [13,10,10,9] 2197a+7605a²+11700a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+350
[17+30a,10+30b,10+30c,9+30d]: negative-1 [155] by {a=>-a-1}
[19+30a,10+30b,10+30c,9+30d]: negative-1 [154] by {a=>-a-1}
[23+30a,10+30b,10+30c,9+30d]: negative-1 [96] by {a=>-a-1}
[29+30a,10+30b,10+30c,9+30d]: negative-1 [95] by {a=>-a-1}
[10+30a,11+30b,10+30c,9+30d]: transposed [154] by [1,0,2,3]
[20+30a,11+30b,10+30c,9+30d]: negative-1 [152] by {a=>-a-1}
[10+30a,13+30b,10+30c,9+30d]: transposed [155] by [1,0,2,3]
[20+30a,13+30b,10+30c,9+30d]: negative-1 [152] by {a=>-a-1}
[5+30a,14+30b,10+30c,9+30d]: transposed [151] by [2,1,0,3]
[25+30a,14+30b,10+30c,9+30d]: unknown -> [156] [25,14,10,9] 15625a+28125a²+22500a³+6750a⁴+2744b+8820b²+12600b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+3604
[5+30a,16+30b,10+30c,9+30d]: transposed [147] by [2,0,1,3]
[25+30a,16+30b,10+30c,9+30d]: negative-1 [156] by {b=>-b-1}
[10+30a,17+30b,10+30c,9+30d]: unknown -> [157] [10,17,10,9] 1000a+4500a²+9000a³+6750a⁴+4913b+13005b²+15300b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+808
[20+30a,17+30b,10+30c,9+30d]: negative-1 [157] by {a=>-a-1}
[10+30a,19+30b,10+30c,9+30d]: unknown -> [158] [10,19,10,9] 1000a+4500a²+9000a³+6750a⁴+6859b+16245b²+17100b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+1198
[20+30a,19+30b,10+30c,9+30d]: negative-1 [158] by {a=>-a-1}
[1+30a,20+30b,10+30c,9+30d]: negative-1 [155] by {b=>-b-1}
[7+30a,20+30b,10+30c,9+30d]: negative-1 [155] by {b=>-b-1}
[11+30a,20+30b,10+30c,9+30d]: negative-1 [155] by {b=>-b-1}
[13+30a,20+30b,10+30c,9+30d]: negative-1 [155] by {b=>-b-1}
[17+30a,20+30b,10+30c,9+30d]: negative-1 [155] by {a=>-a-1,b=>-b-1}
[19+30a,20+30b,10+30c,9+30d]: negative-1 [155] by {b=>-b-1}
[23+30a,20+30b,10+30c,9+30d]: negative-1 [155] by {b=>-b-1}
[29+30a,20+30b,10+30c,9+30d]: negative-1 [155] by {b=>-b-1}
[5+30a,22+30b,10+30c,9+30d]: transposed [148] by [2,0,1,3]
[25+30a,22+30b,10+30c,9+30d]: negative-1 [146] by {b=>-b-1}
[10+30a,23+30b,10+30c,9+30d]: unknown -> [159] [10,23,10,9] 1000a+4500a²+9000a³+6750a⁴+12167b+23805b²+20700b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+2444
[20+30a,23+30b,10+30c,9+30d]: negative-1 [159] by {a=>-a-1}
[2+30a,25+30b,10+30c,9+30d]: transposed [143] by [2,0,1,3]
[4+30a,25+30b,10+30c,9+30d]: transposed [145] by [2,0,1,3]
[8+30a,25+30b,10+30c,9+30d]: transposed [153] by [2,0,1,3]
[14+30a,25+30b,10+30c,9+30d]: transposed [156] by [1,0,2,3]
[16+30a,25+30b,10+30c,9+30d]: negative-1 [144] by {b=>-b-1}
[22+30a,25+30b,10+30c,9+30d]: negative-1 [144] by {b=>-b-1}
[26+30a,25+30b,10+30c,9+30d]: negative-1 [144] by {b=>-b-1}
[28+30a,25+30b,10+30c,9+30d]: negative-1 [144] by {b=>-b-1}
[5+30a,26+30b,10+30c,9+30d]: transposed [149] by [2,0,1,3]
[25+30a,26+30b,10+30c,9+30d]: negative-1 [129] by {b=>-b-1}
[5+30a,28+30b,10+30c,9+30d]: transposed [150] by [2,0,1,3]
[25+30a,28+30b,10+30c,9+30d]: negative-1 [128] by {b=>-b-1}
[10+30a,29+30b,10+30c,9+30d]: unknown -> [160] [10,29,10,9] 1000a+4500a²+9000a³+6750a⁴+24389b+37845b²+26100b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+6006
[20+30a,29+30b,10+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[10+30a,10+30b,11+30c,9+30d]: transposed [154] by [1,2,0,3]
[20+30a,10+30b,11+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[10+30a,20+30b,11+30c,9+30d]: negative-1 [155] by {b=>-b-1}
[20+30a,20+30b,11+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[15+30a,0+30b,12+30c,9+30d]: transposed [140] by [0,2,1,3]
[0+30a,15+30b,12+30c,9+30d]: transposed [140] by [2,0,1,3]
[10+30a,10+30b,13+30c,9+30d]: transposed [155] by [1,2,0,3]
[20+30a,10+30b,13+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[10+30a,20+30b,13+30c,9+30d]: negative-1 [155] by {b=>-b-1}
[20+30a,20+30b,13+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[10+30a,5+30b,14+30c,9+30d]: transposed [151] by [0,2,1,3]
[20+30a,5+30b,14+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[5+30a,10+30b,14+30c,9+30d]: transposed [151] by [2,0,1,3]
[25+30a,10+30b,14+30c,9+30d]: transposed [156] by [0,2,1,3]
[5+30a,20+30b,14+30c,9+30d]: negative-1 [156] by {a=>-a-1}
[25+30a,20+30b,14+30c,9+30d]: negative-1 [155] by {b=>-b-1}
[10+30a,25+30b,14+30c,9+30d]: transposed [156] by [2,0,1,3]
[20+30a,25+30b,14+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[6+30a,0+30b,15+30c,9+30d]: transposed [138] by [1,2,0,3]
[12+30a,0+30b,15+30c,9+30d]: transposed [140] by [1,2,0,3]
[18+30a,0+30b,15+30c,9+30d]: negative-1 [132] by {a=>-a-1}
[24+30a,0+30b,15+30c,9+30d]: negative-1 [102] by {a=>-a-1}
[0+30a,6+30b,15+30c,9+30d]: transposed [138] by [2,1,0,3]
[0+30a,12+30b,15+30c,9+30d]: transposed [140] by [2,1,0,3]
[0+30a,18+30b,15+30c,9+30d]: negative-1 [140] by {b=>-b-1}
[0+30a,24+30b,15+30c,9+30d]: negative-1 [138] by {b=>-b-1}
[10+30a,5+30b,16+30c,9+30d]: transposed [147] by [1,2,0,3]
[20+30a,5+30b,16+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[5+30a,10+30b,16+30c,9+30d]: transposed [147] by [2,1,0,3]
[25+30a,10+30b,16+30c,9+30d]: unknown -> [161] [25,10,16,9] 15625a+28125a²+22500a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+4096c+11520c²+14400c³+6750c⁴-729d-3645d²-8100d³-6750d⁴+3830
[5+30a,20+30b,16+30c,9+30d]: negative-1 [161] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,16+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[10+30a,25+30b,16+30c,9+30d]: transposed [161] by [1,0,2,3]
[20+30a,25+30b,16+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[10+30a,10+30b,17+30c,9+30d]: transposed [157] by [0,2,1,3]
[20+30a,10+30b,17+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[10+30a,20+30b,17+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[20+30a,20+30b,17+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[15+30a,0+30b,18+30c,9+30d]: unknown -> [162] [15,0,18,9] 125a+375a²+500a³+250a⁴+250b⁴+216c+540c²+600c³+250c⁴-27d-135d²-300d³-250d⁴+46
[0+30a,15+30b,18+30c,9+30d]: transposed [162] by [1,0,2,3]
[10+30a,10+30b,19+30c,9+30d]: transposed [158] by [0,2,1,3]
[20+30a,10+30b,19+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[10+30a,20+30b,19+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[20+30a,20+30b,19+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[10+30a,1+30b,20+30c,9+30d]: negative-1 [160] by {b=>-b-1,c=>-c-1}
[20+30a,1+30b,20+30c,9+30d]: negative-1 [160] by {a=>-a-1,b=>-b-1,c=>-c-1}
[5+30a,2+30b,20+30c,9+30d]: negative-1 [161] by {a=>-a-1}
[25+30a,2+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[5+30a,4+30b,20+30c,9+30d]: negative-1 [161] by {a=>-a-1}
[25+30a,4+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[2+30a,5+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[4+30a,5+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[8+30a,5+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[14+30a,5+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[16+30a,5+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[22+30a,5+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[26+30a,5+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[28+30a,5+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[10+30a,7+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[20+30a,7+30b,20+30c,9+30d]: negative-1 [160] by {a=>-a-1,c=>-c-1}
[5+30a,8+30b,20+30c,9+30d]: negative-1 [161] by {a=>-a-1}
[25+30a,8+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[1+30a,10+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[7+30a,10+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[11+30a,10+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[13+30a,10+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[17+30a,10+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[19+30a,10+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[23+30a,10+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[29+30a,10+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[10+30a,11+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[20+30a,11+30b,20+30c,9+30d]: negative-1 [160] by {a=>-a-1,c=>-c-1}
[10+30a,13+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[20+30a,13+30b,20+30c,9+30d]: negative-1 [160] by {a=>-a-1,c=>-c-1}
[5+30a,14+30b,20+30c,9+30d]: negative-1 [161] by {a=>-a-1}
[25+30a,14+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[5+30a,16+30b,20+30c,9+30d]: negative-1 [161] by {a=>-a-1}
[25+30a,16+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[10+30a,17+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[20+30a,17+30b,20+30c,9+30d]: negative-1 [160] by {a=>-a-1,c=>-c-1}
[10+30a,19+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[20+30a,19+30b,20+30c,9+30d]: negative-1 [160] by {a=>-a-1,c=>-c-1}
[1+30a,20+30b,20+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[7+30a,20+30b,20+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[11+30a,20+30b,20+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[13+30a,20+30b,20+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[17+30a,20+30b,20+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[19+30a,20+30b,20+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[23+30a,20+30b,20+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[29+30a,20+30b,20+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[5+30a,22+30b,20+30c,9+30d]: negative-1 [161] by {a=>-a-1}
[25+30a,22+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[10+30a,23+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[20+30a,23+30b,20+30c,9+30d]: negative-1 [160] by {a=>-a-1,c=>-c-1}
[2+30a,25+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[4+30a,25+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[8+30a,25+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[14+30a,25+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[16+30a,25+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[22+30a,25+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[26+30a,25+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[28+30a,25+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[5+30a,26+30b,20+30c,9+30d]: negative-1 [161] by {a=>-a-1}
[25+30a,26+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[5+30a,28+30b,20+30c,9+30d]: negative-1 [161] by {a=>-a-1}
[25+30a,28+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[10+30a,29+30b,20+30c,9+30d]: negative-1 [160] by {c=>-c-1}
[20+30a,29+30b,20+30c,9+30d]: negative-1 [160] by {a=>-a-1,c=>-c-1}
[0+30a,0+30b,21+30c,9+30d]: transposed [135] by [1,2,0,3]
[10+30a,5+30b,22+30c,9+30d]: transposed [148] by [1,2,0,3]
[20+30a,5+30b,22+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[5+30a,10+30b,22+30c,9+30d]: transposed [148] by [2,1,0,3]
[25+30a,10+30b,22+30c,9+30d]: negative-1 [153] by {c=>-c-1}
[5+30a,20+30b,22+30c,9+30d]: negative-1 [161] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,22+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[10+30a,25+30b,22+30c,9+30d]: negative-1 [153] by {c=>-c-1}
[20+30a,25+30b,22+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[10+30a,10+30b,23+30c,9+30d]: transposed [159] by [0,2,1,3]
[20+30a,10+30b,23+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[10+30a,20+30b,23+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[20+30a,20+30b,23+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[15+30a,0+30b,24+30c,9+30d]: negative-1 [119] by {c=>-c-1}
[0+30a,15+30b,24+30c,9+30d]: negative-1 [119] by {c=>-c-1}
[10+30a,2+30b,25+30c,9+30d]: transposed [143] by [1,2,0,3]
[20+30a,2+30b,25+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[10+30a,4+30b,25+30c,9+30d]: transposed [145] by [1,2,0,3]
[20+30a,4+30b,25+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[10+30a,8+30b,25+30c,9+30d]: transposed [153] by [1,2,0,3]
[20+30a,8+30b,25+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[2+30a,10+30b,25+30c,9+30d]: transposed [143] by [2,1,0,3]
[4+30a,10+30b,25+30c,9+30d]: transposed [145] by [2,1,0,3]
[8+30a,10+30b,25+30c,9+30d]: transposed [153] by [2,1,0,3]
[14+30a,10+30b,25+30c,9+30d]: transposed [156] by [1,2,0,3]
[16+30a,10+30b,25+30c,9+30d]: transposed [161] by [2,1,0,3]
[22+30a,10+30b,25+30c,9+30d]: negative-1 [151] by {c=>-c-1}
[26+30a,10+30b,25+30c,9+30d]: negative-1 [151] by {c=>-c-1}
[28+30a,10+30b,25+30c,9+30d]: negative-1 [151] by {c=>-c-1}
[10+30a,14+30b,25+30c,9+30d]: transposed [156] by [2,1,0,3]
[20+30a,14+30b,25+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[10+30a,16+30b,25+30c,9+30d]: transposed [161] by [1,2,0,3]
[20+30a,16+30b,25+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[2+30a,20+30b,25+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[4+30a,20+30b,25+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[8+30a,20+30b,25+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[14+30a,20+30b,25+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[16+30a,20+30b,25+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[22+30a,20+30b,25+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[26+30a,20+30b,25+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[28+30a,20+30b,25+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[10+30a,22+30b,25+30c,9+30d]: negative-1 [151] by {c=>-c-1}
[20+30a,22+30b,25+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[10+30a,26+30b,25+30c,9+30d]: negative-1 [151] by {c=>-c-1}
[20+30a,26+30b,25+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[10+30a,28+30b,25+30c,9+30d]: negative-1 [151] by {c=>-c-1}
[20+30a,28+30b,25+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[10+30a,5+30b,26+30c,9+30d]: transposed [149] by [1,2,0,3]
[20+30a,5+30b,26+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[5+30a,10+30b,26+30c,9+30d]: transposed [149] by [2,1,0,3]
[25+30a,10+30b,26+30c,9+30d]: negative-1 [145] by {c=>-c-1}
[5+30a,20+30b,26+30c,9+30d]: negative-1 [161] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,26+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[10+30a,25+30b,26+30c,9+30d]: negative-1 [145] by {c=>-c-1}
[20+30a,25+30b,26+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[0+30a,0+30b,27+30c,9+30d]: transposed [136] by [1,2,0,3]
[10+30a,5+30b,28+30c,9+30d]: transposed [150] by [1,2,0,3]
[20+30a,5+30b,28+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[5+30a,10+30b,28+30c,9+30d]: transposed [150] by [2,1,0,3]
[25+30a,10+30b,28+30c,9+30d]: negative-1 [143] by {c=>-c-1}
[5+30a,20+30b,28+30c,9+30d]: negative-1 [161] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,28+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[10+30a,25+30b,28+30c,9+30d]: negative-1 [144] by {b=>-b-1}
[20+30a,25+30b,28+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[10+30a,10+30b,29+30c,9+30d]: transposed [160] by [0,2,1,3]
[20+30a,10+30b,29+30c,9+30d]: negative-1 [160] by {a=>-a-1}
[10+30a,20+30b,29+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[20+30a,20+30b,29+30c,9+30d]: negative-1 [161] by {b=>-b-1}
[10+30a,0+30b,0+30c,10+30d]: unknown -> [163] [10,0,0,10] 4a+18a²+36a³+27a⁴+27b⁴+27c⁴-4d-18d²-36d³-27d⁴
-> solution [10,0,0,10],trivial(3) [40,0,0,40],trivial(3)
[20+30a,0+30b,0+30c,10+30d]: negative-1 [163] by {a=>-a-1}
[0+30a,10+30b,0+30c,10+30d]: transposed [163] by [1,0,2,3]
[0+30a,20+30b,0+30c,10+30d]: negative-1 [161] by {b=>-b-1}
[0+30a,0+30b,10+30c,10+30d]: transposed [163] by [1,2,0,3]
[0+30a,0+30b,20+30c,10+30d]: negative-1 [160] by {c=>-c-1}
[1+30a,0+30b,0+30c,11+30d]: unknown -> [164] [1,0,0,11] a+45a²+900a³+6750a⁴+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴-122
[7+30a,0+30b,0+30c,11+30d]: unknown -> [165] [7,0,0,11] 343a+2205a²+6300a³+6750a⁴+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴-102
[11+30a,0+30b,0+30c,11+30d]: unknown -> [166] [11,0,0,11] 1331a+5445a²+9900a³+6750a⁴+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴
-> solution [11,0,0,11],trivial(3) [41,0,0,41],trivial(3)
[13+30a,0+30b,0+30c,11+30d]: unknown -> [167] [13,0,0,11] 2197a+7605a²+11700a³+6750a⁴+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+116
[17+30a,0+30b,0+30c,11+30d]: negative-1 [167] by {a=>-a-1}
[19+30a,0+30b,0+30c,11+30d]: negative-1 [166] by {a=>-a-1}
[23+30a,0+30b,0+30c,11+30d]: negative-1 [165] by {a=>-a-1}
[29+30a,0+30b,0+30c,11+30d]: negative-1 [164] by {a=>-a-1}
[0+30a,1+30b,0+30c,11+30d]: transposed [164] by [1,0,2,3]
[15+30a,2+30b,0+30c,11+30d]: unknown -> [168] [15,2,0,11] 3375a+10125a²+13500a³+6750a⁴+8b+180b²+1800b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+300
[10+30a,3+30b,0+30c,11+30d]: unknown -> [169] [10,3,0,11] 1000a+4500a²+9000a³+6750a⁴+27b+405b²+2700b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴-38
[20+30a,3+30b,0+30c,11+30d]: negative-1 [169] by {a=>-a-1}
[15+30a,4+30b,0+30c,11+30d]: unknown -> [170] [15,4,0,11] 3375a+10125a²+13500a³+6750a⁴+64b+720b²+3600b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+302
[6+30a,5+30b,0+30c,11+30d]: unknown -> [171] [6,5,0,11] 216a+1620a²+5400a³+6750a⁴+125b+1125b²+4500b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴-106
[12+30a,5+30b,0+30c,11+30d]: unknown -> [172] [12,5,0,11] 1728a+6480a²+10800a³+6750a⁴+125b+1125b²+4500b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+56
[18+30a,5+30b,0+30c,11+30d]: negative-1 [172] by {a=>-a-1}
[24+30a,5+30b,0+30c,11+30d]: negative-1 [171] by {a=>-a-1}
[5+30a,6+30b,0+30c,11+30d]: transposed [171] by [1,0,2,3]
[25+30a,6+30b,0+30c,11+30d]: unknown -> [173] [25,6,0,11] 15625a+28125a²+22500a³+6750a⁴+216b+1620b²+5400b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+3144
[0+30a,7+30b,0+30c,11+30d]: transposed [165] by [1,0,2,3]
[15+30a,8+30b,0+30c,11+30d]: unknown -> [174] [15,8,0,11] 3375a+10125a²+13500a³+6750a⁴+512b+2880b²+7200b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+334
[10+30a,9+30b,0+30c,11+30d]: unknown -> [175] [10,9,0,11] 1000a+4500a²+9000a³+6750a⁴+729b+3645b²+8100b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+16
[20+30a,9+30b,0+30c,11+30d]: negative-1 [175] by {a=>-a-1}
[3+30a,10+30b,0+30c,11+30d]: transposed [169] by [1,0,2,3]
[9+30a,10+30b,0+30c,11+30d]: transposed [175] by [1,0,2,3]
[21+30a,10+30b,0+30c,11+30d]: unknown -> [176] [21,10,0,11] 9261a+19845a²+18900a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+1582
[27+30a,10+30b,0+30c,11+30d]: unknown -> [177] [27,10,0,11] 19683a+32805a²+24300a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+4390
[0+30a,11+30b,0+30c,11+30d]: transposed [166] by [1,0,2,3]
[5+30a,12+30b,0+30c,11+30d]: transposed [172] by [1,0,2,3]
[25+30a,12+30b,0+30c,11+30d]: unknown -> [178] [25,12,0,11] 15625a+28125a²+22500a³+6750a⁴+1728b+6480b²+10800b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+3306
[0+30a,13+30b,0+30c,11+30d]: transposed [167] by [1,0,2,3]
[15+30a,14+30b,0+30c,11+30d]: unknown -> [179] [15,14,0,11] 3375a+10125a²+13500a³+6750a⁴+2744b+8820b²+12600b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+620
[2+30a,15+30b,0+30c,11+30d]: transposed [168] by [1,0,2,3]
[4+30a,15+30b,0+30c,11+30d]: transposed [170] by [1,0,2,3]
[8+30a,15+30b,0+30c,11+30d]: transposed [174] by [1,0,2,3]
[14+30a,15+30b,0+30c,11+30d]: transposed [179] by [1,0,2,3]
[16+30a,15+30b,0+30c,11+30d]: unknown -> [180] [16,15,0,11] 4096a+11520a²+14400a³+6750a⁴+3375b+10125b²+13500b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+846
[22+30a,15+30b,0+30c,11+30d]: unknown -> [181] [22,15,0,11] 10648a+21780a²+19800a³+6750a⁴+3375b+10125b²+13500b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+2252
[26+30a,15+30b,0+30c,11+30d]: unknown -> [182] [26,15,0,11] 17576a+30420a²+23400a³+6750a⁴+3375b+10125b²+13500b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+4108
[28+30a,15+30b,0+30c,11+30d]: unknown -> [183] [28,15,0,11] 21952a+35280a²+25200a³+6750a⁴+3375b+10125b²+13500b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+5422
[15+30a,16+30b,0+30c,11+30d]: transposed [180] by [1,0,2,3]
[0+30a,17+30b,0+30c,11+30d]: unknown -> [184] [0,17,0,11] 6750a⁴+4913b+13005b²+15300b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+574
[5+30a,18+30b,0+30c,11+30d]: negative-1 [178] by {a=>-a-1,b=>-b-1}
[25+30a,18+30b,0+30c,11+30d]: negative-1 [178] by {b=>-b-1}
[0+30a,19+30b,0+30c,11+30d]: unknown -> [185] [0,19,0,11] 6750a⁴+6859b+16245b²+17100b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+964
[3+30a,20+30b,0+30c,11+30d]: negative-1 [177] by {a=>-a-1,b=>-b-1}
[9+30a,20+30b,0+30c,11+30d]: negative-1 [177] by {b=>-b-1}
[21+30a,20+30b,0+30c,11+30d]: negative-1 [177] by {b=>-b-1}
[27+30a,20+30b,0+30c,11+30d]: negative-1 [177] by {b=>-b-1}
[10+30a,21+30b,0+30c,11+30d]: transposed [176] by [1,0,2,3]
[20+30a,21+30b,0+30c,11+30d]: negative-1 [175] by {a=>-a-1,b=>-b-1}
[15+30a,22+30b,0+30c,11+30d]: transposed [181] by [1,0,2,3]
[0+30a,23+30b,0+30c,11+30d]: unknown -> [186] [0,23,0,11] 6750a⁴+12167b+23805b²+20700b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+2210
[5+30a,24+30b,0+30c,11+30d]: negative-1 [178] by {a=>-a-1}
[25+30a,24+30b,0+30c,11+30d]: negative-1 [173] by {b=>-b-1}
[6+30a,25+30b,0+30c,11+30d]: transposed [173] by [1,0,2,3]
[12+30a,25+30b,0+30c,11+30d]: transposed [178] by [1,0,2,3]
[18+30a,25+30b,0+30c,11+30d]: negative-1 [172] by {a=>-a-1,b=>-b-1}
[24+30a,25+30b,0+30c,11+30d]: negative-1 [172] by {b=>-b-1}
[15+30a,26+30b,0+30c,11+30d]: transposed [182] by [1,0,2,3]
[10+30a,27+30b,0+30c,11+30d]: transposed [177] by [1,0,2,3]
[20+30a,27+30b,0+30c,11+30d]: negative-1 [175] by {a=>-a-1}
[15+30a,28+30b,0+30c,11+30d]: transposed [183] by [1,0,2,3]
[0+30a,29+30b,0+30c,11+30d]: unknown -> [187] [0,29,0,11] 6750a⁴+24389b+37845b²+26100b³+6750b⁴+6750c⁴-1331d-5445d²-9900d³-6750d⁴+5772
[0+30a,0+30b,1+30c,11+30d]: transposed [164] by [1,2,0,3]
[15+30a,0+30b,2+30c,11+30d]: transposed [168] by [0,2,1,3]
[0+30a,15+30b,2+30c,11+30d]: transposed [168] by [2,0,1,3]
[10+30a,0+30b,3+30c,11+30d]: transposed [169] by [0,2,1,3]
[20+30a,0+30b,3+30c,11+30d]: negative-1 [175] by {a=>-a-1}
[0+30a,10+30b,3+30c,11+30d]: transposed [169] by [2,0,1,3]
[0+30a,20+30b,3+30c,11+30d]: negative-1 [177] by {b=>-b-1}
[15+30a,0+30b,4+30c,11+30d]: transposed [170] by [0,2,1,3]
[0+30a,15+30b,4+30c,11+30d]: transposed [170] by [2,0,1,3]
[6+30a,0+30b,5+30c,11+30d]: transposed [171] by [0,2,1,3]
[12+30a,0+30b,5+30c,11+30d]: transposed [172] by [0,2,1,3]
[18+30a,0+30b,5+30c,11+30d]: negative-1 [172] by {a=>-a-1}
[24+30a,0+30b,5+30c,11+30d]: negative-1 [171] by {a=>-a-1}
[0+30a,6+30b,5+30c,11+30d]: transposed [171] by [2,0,1,3]
[0+30a,12+30b,5+30c,11+30d]: transposed [172] by [2,0,1,3]
[0+30a,18+30b,5+30c,11+30d]: negative-1 [178] by {b=>-b-1}
[0+30a,24+30b,5+30c,11+30d]: negative-1 [173] by {b=>-b-1}
[5+30a,0+30b,6+30c,11+30d]: transposed [171] by [1,2,0,3]
[25+30a,0+30b,6+30c,11+30d]: transposed [173] by [0,2,1,3]
[0+30a,5+30b,6+30c,11+30d]: transposed [171] by [2,1,0,3]
[15+30a,10+30b,6+30c,11+30d]: unknown -> [188] [15,10,6,11] 3375a+10125a²+13500a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+216c+1620c²+5400c³+6750c⁴-1331d-5445d²-9900d³-6750d⁴+394
[10+30a,15+30b,6+30c,11+30d]: transposed [188] by [1,0,2,3]
[20+30a,15+30b,6+30c,11+30d]: negative-1 [175] by {a=>-a-1}
[15+30a,20+30b,6+30c,11+30d]: negative-1 [188] by {b=>-b-1}
[0+30a,25+30b,6+30c,11+30d]: transposed [173] by [2,0,1,3]
[0+30a,0+30b,7+30c,11+30d]: transposed [165] by [1,2,0,3]
[15+30a,0+30b,8+30c,11+30d]: transposed [174] by [0,2,1,3]
[0+30a,15+30b,8+30c,11+30d]: transposed [174] by [2,0,1,3]
[10+30a,0+30b,9+30c,11+30d]: transposed [175] by [0,2,1,3]
[20+30a,0+30b,9+30c,11+30d]: negative-1 [175] by {a=>-a-1}
[0+30a,10+30b,9+30c,11+30d]: transposed [175] by [2,0,1,3]
[0+30a,20+30b,9+30c,11+30d]: negative-1 [188] by {b=>-b-1}
[3+30a,0+30b,10+30c,11+30d]: transposed [169] by [1,2,0,3]
[9+30a,0+30b,10+30c,11+30d]: transposed [175] by [1,2,0,3]
[21+30a,0+30b,10+30c,11+30d]: transposed [176] by [0,2,1,3]
[27+30a,0+30b,10+30c,11+30d]: transposed [177] by [0,2,1,3]
[0+30a,3+30b,10+30c,11+30d]: transposed [169] by [2,1,0,3]
[15+30a,6+30b,10+30c,11+30d]: transposed [188] by [0,2,1,3]
[0+30a,9+30b,10+30c,11+30d]: transposed [175] by [2,1,0,3]
[15+30a,12+30b,10+30c,11+30d]: unknown -> [189] [15,12,10,11] 3375a+10125a²+13500a³+6750a⁴+1728b+6480b²+10800b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-1331d-5445d²-9900d³-6750d⁴+556
[6+30a,15+30b,10+30c,11+30d]: transposed [188] by [2,0,1,3]
[12+30a,15+30b,10+30c,11+30d]: transposed [189] by [1,0,2,3]
[18+30a,15+30b,10+30c,11+30d]: negative-1 [172] by {a=>-a-1}
[24+30a,15+30b,10+30c,11+30d]: negative-1 [171] by {a=>-a-1}
[15+30a,18+30b,10+30c,11+30d]: negative-1 [189] by {b=>-b-1}
[0+30a,21+30b,10+30c,11+30d]: transposed [176] by [2,0,1,3]
[15+30a,24+30b,10+30c,11+30d]: negative-1 [173] by {b=>-b-1}
[0+30a,27+30b,10+30c,11+30d]: transposed [177] by [2,0,1,3]
[0+30a,0+30b,11+30c,11+30d]: transposed [166] by [1,2,0,3]
[5+30a,0+30b,12+30c,11+30d]: transposed [172] by [1,2,0,3]
[25+30a,0+30b,12+30c,11+30d]: transposed [178] by [0,2,1,3]
[0+30a,5+30b,12+30c,11+30d]: transposed [172] by [2,1,0,3]
[15+30a,10+30b,12+30c,11+30d]: transposed [189] by [0,2,1,3]
[10+30a,15+30b,12+30c,11+30d]: transposed [189] by [2,0,1,3]
[20+30a,15+30b,12+30c,11+30d]: negative-1 [175] by {a=>-a-1}
[15+30a,20+30b,12+30c,11+30d]: negative-1 [188] by {b=>-b-1}
[0+30a,25+30b,12+30c,11+30d]: transposed [178] by [2,0,1,3]
[0+30a,0+30b,13+30c,11+30d]: transposed [167] by [1,2,0,3]
[15+30a,0+30b,14+30c,11+30d]: transposed [179] by [0,2,1,3]
[0+30a,15+30b,14+30c,11+30d]: transposed [179] by [2,0,1,3]
[2+30a,0+30b,15+30c,11+30d]: transposed [168] by [1,2,0,3]
[4+30a,0+30b,15+30c,11+30d]: transposed [170] by [1,2,0,3]
[8+30a,0+30b,15+30c,11+30d]: transposed [174] by [1,2,0,3]
[14+30a,0+30b,15+30c,11+30d]: transposed [179] by [1,2,0,3]
[16+30a,0+30b,15+30c,11+30d]: transposed [180] by [0,2,1,3]
[22+30a,0+30b,15+30c,11+30d]: transposed [181] by [0,2,1,3]
[26+30a,0+30b,15+30c,11+30d]: transposed [182] by [0,2,1,3]
[28+30a,0+30b,15+30c,11+30d]: transposed [183] by [0,2,1,3]
[0+30a,2+30b,15+30c,11+30d]: transposed [168] by [2,1,0,3]
[0+30a,4+30b,15+30c,11+30d]: transposed [170] by [2,1,0,3]
[10+30a,6+30b,15+30c,11+30d]: transposed [188] by [1,2,0,3]
[20+30a,6+30b,15+30c,11+30d]: negative-1 [175] by {a=>-a-1}
[0+30a,8+30b,15+30c,11+30d]: transposed [174] by [2,1,0,3]
[6+30a,10+30b,15+30c,11+30d]: transposed [188] by [2,1,0,3]
[12+30a,10+30b,15+30c,11+30d]: transposed [189] by [1,2,0,3]
[18+30a,10+30b,15+30c,11+30d]: negative-1 [172] by {a=>-a-1}
[24+30a,10+30b,15+30c,11+30d]: negative-1 [171] by {a=>-a-1}
[10+30a,12+30b,15+30c,11+30d]: transposed [189] by [2,1,0,3]
[20+30a,12+30b,15+30c,11+30d]: negative-1 [175] by {a=>-a-1}
[0+30a,14+30b,15+30c,11+30d]: transposed [179] by [2,1,0,3]
[0+30a,16+30b,15+30c,11+30d]: transposed [180] by [2,0,1,3]
[10+30a,18+30b,15+30c,11+30d]: negative-1 [189] by {b=>-b-1}
[20+30a,18+30b,15+30c,11+30d]: negative-1 [189] by {b=>-b-1}
[6+30a,20+30b,15+30c,11+30d]: negative-1 [188] by {b=>-b-1}
[12+30a,20+30b,15+30c,11+30d]: negative-1 [188] by {b=>-b-1}
[18+30a,20+30b,15+30c,11+30d]: negative-1 [188] by {b=>-b-1}
[24+30a,20+30b,15+30c,11+30d]: negative-1 [188] by {b=>-b-1}
[0+30a,22+30b,15+30c,11+30d]: transposed [181] by [2,0,1,3]
[10+30a,24+30b,15+30c,11+30d]: negative-1 [173] by {b=>-b-1}
[20+30a,24+30b,15+30c,11+30d]: negative-1 [175] by {a=>-a-1}
[0+30a,26+30b,15+30c,11+30d]: transposed [182] by [2,0,1,3]
[0+30a,28+30b,15+30c,11+30d]: transposed [183] by [2,0,1,3]
[15+30a,0+30b,16+30c,11+30d]: transposed [180] by [1,2,0,3]
[0+30a,15+30b,16+30c,11+30d]: transposed [180] by [2,1,0,3]
[0+30a,0+30b,17+30c,11+30d]: transposed [184] by [0,2,1,3]
[5+30a,0+30b,18+30c,11+30d]: negative-1 [178] by {a=>-a-1}
[25+30a,0+30b,18+30c,11+30d]: unknown -> [190] [25,0,18,11] 15625a+28125a²+22500a³+6750a⁴+6750b⁴+5832c+14580c²+16200c³+6750c⁴-1331d-5445d²-9900d³-6750d⁴+4008
[0+30a,5+30b,18+30c,11+30d]: unknown -> [191] [0,5,18,11] 6750a⁴+125b+1125b²+4500b³+6750b⁴+5832c+14580c²+16200c³+6750c⁴-1331d-5445d²-9900d³-6750d⁴+758
[15+30a,10+30b,18+30c,11+30d]: unknown -> [192] [15,10,18,11] 3375a+10125a²+13500a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+5832c+14580c²+16200c³+6750c⁴-1331d-5445d²-9900d³-6750d⁴+1258
[10+30a,15+30b,18+30c,11+30d]: transposed [192] by [1,0,2,3]
[20+30a,15+30b,18+30c,11+30d]: negative-1 [175] by {a=>-a-1}
[15+30a,20+30b,18+30c,11+30d]: negative-1 [192] by {b=>-b-1}
[0+30a,25+30b,18+30c,11+30d]: transposed [190] by [1,0,2,3]
[0+30a,0+30b,19+30c,11+30d]: transposed [185] by [0,2,1,3]
[3+30a,0+30b,20+30c,11+30d]: negative-1 [189] by {c=>-c-1}
[9+30a,0+30b,20+30c,11+30d]: negative-1 [189] by {c=>-c-1}
[21+30a,0+30b,20+30c,11+30d]: negative-1 [189] by {c=>-c-1}
[27+30a,0+30b,20+30c,11+30d]: negative-1 [189] by {c=>-c-1}
[0+30a,3+30b,20+30c,11+30d]: negative-1 [189] by {c=>-c-1}
[15+30a,6+30b,20+30c,11+30d]: negative-1 [189] by {c=>-c-1}
[0+30a,9+30b,20+30c,11+30d]: negative-1 [189] by {c=>-c-1}
[15+30a,12+30b,20+30c,11+30d]: negative-1 [189] by {c=>-c-1}
[6+30a,15+30b,20+30c,11+30d]: negative-1 [189] by {c=>-c-1}
[12+30a,15+30b,20+30c,11+30d]: negative-1 [189] by {c=>-c-1}
[18+30a,15+30b,20+30c,11+30d]: negative-1 [189] by {c=>-c-1}
[24+30a,15+30b,20+30c,11+30d]: negative-1 [189] by {c=>-c-1}
[15+30a,18+30b,20+30c,11+30d]: negative-1 [189] by {b=>-b-1,c=>-c-1}
[0+30a,21+30b,20+30c,11+30d]: negative-1 [189] by {c=>-c-1}
[15+30a,24+30b,20+30c,11+30d]: negative-1 [189] by {c=>-c-1}
[0+30a,27+30b,20+30c,11+30d]: negative-1 [189] by {c=>-c-1}
[10+30a,0+30b,21+30c,11+30d]: transposed [176] by [1,2,0,3]
[20+30a,0+30b,21+30c,11+30d]: negative-1 [175] by {a=>-a-1}
[0+30a,10+30b,21+30c,11+30d]: transposed [176] by [2,1,0,3]
[0+30a,20+30b,21+30c,11+30d]: negative-1 [192] by {b=>-b-1}
[15+30a,0+30b,22+30c,11+30d]: transposed [181] by [1,2,0,3]
[0+30a,15+30b,22+30c,11+30d]: transposed [181] by [2,1,0,3]
[0+30a,0+30b,23+30c,11+30d]: transposed [186] by [0,2,1,3]
[5+30a,0+30b,24+30c,11+30d]: negative-1 [190] by {a=>-a-1}
[25+30a,0+30b,24+30c,11+30d]: negative-1 [188] by {c=>-c-1}
[0+30a,5+30b,24+30c,11+30d]: negative-1 [188] by {c=>-c-1}
[15+30a,10+30b,24+30c,11+30d]: negative-1 [188] by {c=>-c-1}
[10+30a,15+30b,24+30c,11+30d]: negative-1 [188] by {c=>-c-1}
[20+30a,15+30b,24+30c,11+30d]: negative-1 [188] by {c=>-c-1}
[15+30a,20+30b,24+30c,11+30d]: negative-1 [192] by {b=>-b-1}
[0+30a,25+30b,24+30c,11+30d]: negative-1 [191] by {b=>-b-1}
[6+30a,0+30b,25+30c,11+30d]: transposed [173] by [1,2,0,3]
[12+30a,0+30b,25+30c,11+30d]: transposed [178] by [1,2,0,3]
[18+30a,0+30b,25+30c,11+30d]: transposed [190] by [2,1,0,3]
[24+30a,0+30b,25+30c,11+30d]: negative-1 [171] by {a=>-a-1}
[0+30a,6+30b,25+30c,11+30d]: transposed [173] by [2,1,0,3]
[0+30a,12+30b,25+30c,11+30d]: transposed [178] by [2,1,0,3]
[0+30a,18+30b,25+30c,11+30d]: transposed [190] by [1,2,0,3]
[0+30a,24+30b,25+30c,11+30d]: negative-1 [173] by {b=>-b-1}
[15+30a,0+30b,26+30c,11+30d]: transposed [182] by [1,2,0,3]
[0+30a,15+30b,26+30c,11+30d]: transposed [182] by [2,1,0,3]
[10+30a,0+30b,27+30c,11+30d]: transposed [177] by [1,2,0,3]
[20+30a,0+30b,27+30c,11+30d]: negative-1 [175] by {a=>-a-1}
[0+30a,10+30b,27+30c,11+30d]: transposed [177] by [2,1,0,3]
[0+30a,20+30b,27+30c,11+30d]: negative-1 [192] by {b=>-b-1}
[15+30a,0+30b,28+30c,11+30d]: transposed [183] by [1,2,0,3]
[0+30a,15+30b,28+30c,11+30d]: transposed [183] by [2,1,0,3]
[0+30a,0+30b,29+30c,11+30d]: transposed [187] by [0,2,1,3]
[6+30a,0+30b,0+30c,12+30d]: unknown -> [193] [6,0,0,12] 4a+30a²+100a³+125a⁴+125b⁴+125c⁴-32d-120d²-200d³-125d⁴-3
[12+30a,0+30b,0+30c,12+30d]: unknown -> [194] [12,0,0,12] 32a+120a²+200a³+125a⁴+125b⁴+125c⁴-32d-120d²-200d³-125d⁴
-> solution [12,0,0,12],trivial(3) [42,0,0,42],trivial(3)
[18+30a,0+30b,0+30c,12+30d]: negative-1 [194] by {a=>-a-1}
[24+30a,0+30b,0+30c,12+30d]: negative-1 [193] by {a=>-a-1}
[0+30a,6+30b,0+30c,12+30d]: transposed [193] by [1,0,2,3]
[0+30a,12+30b,0+30c,12+30d]: transposed [194] by [1,0,2,3]
[0+30a,18+30b,0+30c,12+30d]: negative-1 [189] by {b=>-b-1}
[0+30a,24+30b,0+30c,12+30d]: negative-1 [173] by {b=>-b-1}
[10+30a,10+30b,2+30c,12+30d]: unknown -> [195] [10,10,2,12] 500a+2250a²+4500a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+4c+90c²+900c³+3375c⁴-864d-3240d²-5400d³-3375d⁴-3
[20+30a,10+30b,2+30c,12+30d]: negative-1 [195] by {a=>-a-1}
[10+30a,20+30b,2+30c,12+30d]: negative-1 [195] by {b=>-b-1}
[20+30a,20+30b,2+30c,12+30d]: negative-1 [195] by {a=>-a-1,b=>-b-1}
[10+30a,10+30b,4+30c,12+30d]: unknown -> [196] [10,10,4,12] 500a+2250a²+4500a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+32c+360c²+1800c³+3375c⁴-864d-3240d²-5400d³-3375d⁴-2
[20+30a,10+30b,4+30c,12+30d]: negative-1 [196] by {a=>-a-1}
[10+30a,20+30b,4+30c,12+30d]: negative-1 [196] by {b=>-b-1}
[20+30a,20+30b,4+30c,12+30d]: negative-1 [196] by {a=>-a-1,b=>-b-1}
[0+30a,0+30b,6+30c,12+30d]: transposed [193] by [1,2,0,3]
[10+30a,10+30b,8+30c,12+30d]: unknown -> [197] [10,10,8,12] 500a+2250a²+4500a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+256c+1440c²+3600c³+3375c⁴-864d-3240d²-5400d³-3375d⁴+14
[20+30a,10+30b,8+30c,12+30d]: negative-1 [197] by {a=>-a-1}
[10+30a,20+30b,8+30c,12+30d]: negative-1 [197] by {b=>-b-1}
[20+30a,20+30b,8+30c,12+30d]: negative-1 [197] by {a=>-a-1,b=>-b-1}
[10+30a,2+30b,10+30c,12+30d]: transposed [195] by [0,2,1,3]
[20+30a,2+30b,10+30c,12+30d]: negative-1 [197] by {a=>-a-1}
[10+30a,4+30b,10+30c,12+30d]: transposed [196] by [0,2,1,3]
[20+30a,4+30b,10+30c,12+30d]: negative-1 [197] by {a=>-a-1}
[10+30a,8+30b,10+30c,12+30d]: transposed [197] by [0,2,1,3]
[20+30a,8+30b,10+30c,12+30d]: negative-1 [197] by {a=>-a-1}
[2+30a,10+30b,10+30c,12+30d]: transposed [195] by [2,0,1,3]
[4+30a,10+30b,10+30c,12+30d]: transposed [196] by [2,0,1,3]
[8+30a,10+30b,10+30c,12+30d]: transposed [197] by [2,0,1,3]
[14+30a,10+30b,10+30c,12+30d]: negative-1 [180] by {a=>-a-1}
[16+30a,10+30b,10+30c,12+30d]: unknown -> [198] [16,10,10,12] 2048a+5760a²+7200a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+500c+2250c²+4500c³+3375c⁴-864d-3240d²-5400d³-3375d⁴+270
[22+30a,10+30b,10+30c,12+30d]: unknown -> [199] [22,10,10,12] 5324a+10890a²+9900a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+500c+2250c²+4500c³+3375c⁴-864d-3240d²-5400d³-3375d⁴+973
[26+30a,10+30b,10+30c,12+30d]: unknown -> [200] [26,10,10,12] 8788a+15210a²+11700a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+500c+2250c²+4500c³+3375c⁴-864d-3240d²-5400d³-3375d⁴+1901
[28+30a,10+30b,10+30c,12+30d]: unknown -> [201] [28,10,10,12] 10976a+17640a²+12600a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+500c+2250c²+4500c³+3375c⁴-864d-3240d²-5400d³-3375d⁴+2558
[10+30a,14+30b,10+30c,12+30d]: unknown -> [202] [10,14,10,12] 500a+2250a²+4500a³+3375a⁴+1372b+4410b²+6300b³+3375b⁴+500c+2250c²+4500c³+3375c⁴-864d-3240d²-5400d³-3375d⁴+157
[20+30a,14+30b,10+30c,12+30d]: negative-1 [202] by {a=>-a-1}
[10+30a,16+30b,10+30c,12+30d]: transposed [198] by [1,0,2,3]
[20+30a,16+30b,10+30c,12+30d]: negative-1 [202] by {a=>-a-1,b=>-b-1}
[2+30a,20+30b,10+30c,12+30d]: negative-1 [201] by {a=>-a-1,b=>-b-1}
[4+30a,20+30b,10+30c,12+30d]: negative-1 [201] by {b=>-b-1}
[8+30a,20+30b,10+30c,12+30d]: negative-1 [201] by {b=>-b-1}
[14+30a,20+30b,10+30c,12+30d]: negative-1 [201] by {b=>-b-1}
[16+30a,20+30b,10+30c,12+30d]: negative-1 [201] by {b=>-b-1}
[22+30a,20+30b,10+30c,12+30d]: negative-1 [201] by {b=>-b-1}
[26+30a,20+30b,10+30c,12+30d]: negative-1 [201] by {b=>-b-1}
[28+30a,20+30b,10+30c,12+30d]: negative-1 [201] by {b=>-b-1}
[10+30a,22+30b,10+30c,12+30d]: transposed [199] by [1,0,2,3]
[20+30a,22+30b,10+30c,12+30d]: negative-1 [202] by {a=>-a-1}
[10+30a,26+30b,10+30c,12+30d]: transposed [200] by [1,0,2,3]
[20+30a,26+30b,10+30c,12+30d]: negative-1 [202] by {a=>-a-1}
[10+30a,28+30b,10+30c,12+30d]: transposed [201] by [1,0,2,3]
[20+30a,28+30b,10+30c,12+30d]: negative-1 [202] by {a=>-a-1}
[0+30a,0+30b,12+30c,12+30d]: transposed [194] by [1,2,0,3]
[10+30a,10+30b,14+30c,12+30d]: transposed [202] by [0,2,1,3]
[20+30a,10+30b,14+30c,12+30d]: negative-1 [202] by {a=>-a-1}
[10+30a,20+30b,14+30c,12+30d]: negative-1 [201] by {b=>-b-1}
[20+30a,20+30b,14+30c,12+30d]: negative-1 [202] by {a=>-a-1}
[10+30a,10+30b,16+30c,12+30d]: transposed [198] by [1,2,0,3]
[20+30a,10+30b,16+30c,12+30d]: negative-1 [202] by {a=>-a-1}
[10+30a,20+30b,16+30c,12+30d]: negative-1 [201] by {b=>-b-1}
[20+30a,20+30b,16+30c,12+30d]: negative-1 [202] by {a=>-a-1}
[0+30a,0+30b,18+30c,12+30d]: unknown -> [203] [0,0,18,12] 125a⁴+125b⁴+108c+270c²+300c³+125c⁴-32d-120d²-200d³-125d⁴+13
[10+30a,2+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[20+30a,2+30b,20+30c,12+30d]: negative-1 [202] by {a=>-a-1,c=>-c-1}
[10+30a,4+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[20+30a,4+30b,20+30c,12+30d]: negative-1 [202] by {a=>-a-1,c=>-c-1}
[10+30a,8+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[20+30a,8+30b,20+30c,12+30d]: negative-1 [202] by {a=>-a-1,c=>-c-1}
[2+30a,10+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[4+30a,10+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[8+30a,10+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[14+30a,10+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[16+30a,10+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[22+30a,10+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[26+30a,10+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[28+30a,10+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[10+30a,14+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[20+30a,14+30b,20+30c,12+30d]: negative-1 [202] by {a=>-a-1,c=>-c-1}
[10+30a,16+30b,20+30c,12+30d]: negative-1 [202] by {b=>-b-1,c=>-c-1}
[20+30a,16+30b,20+30c,12+30d]: negative-1 [202] by {a=>-a-1,b=>-b-1,c=>-c-1}
[2+30a,20+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[4+30a,20+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[8+30a,20+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[14+30a,20+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[16+30a,20+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[22+30a,20+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[26+30a,20+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[28+30a,20+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[10+30a,22+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[20+30a,22+30b,20+30c,12+30d]: negative-1 [202] by {a=>-a-1,c=>-c-1}
[10+30a,26+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[20+30a,26+30b,20+30c,12+30d]: negative-1 [202] by {a=>-a-1,c=>-c-1}
[10+30a,28+30b,20+30c,12+30d]: negative-1 [202] by {c=>-c-1}
[20+30a,28+30b,20+30c,12+30d]: negative-1 [202] by {a=>-a-1,c=>-c-1}
[10+30a,10+30b,22+30c,12+30d]: transposed [199] by [1,2,0,3]
[20+30a,10+30b,22+30c,12+30d]: negative-1 [202] by {a=>-a-1}
[10+30a,20+30b,22+30c,12+30d]: negative-1 [201] by {b=>-b-1}
[20+30a,20+30b,22+30c,12+30d]: negative-1 [202] by {a=>-a-1}
[0+30a,0+30b,24+30c,12+30d]: negative-1 [188] by {c=>-c-1}
[10+30a,10+30b,26+30c,12+30d]: transposed [200] by [1,2,0,3]
[20+30a,10+30b,26+30c,12+30d]: negative-1 [202] by {a=>-a-1}
[10+30a,20+30b,26+30c,12+30d]: negative-1 [201] by {b=>-b-1}
[20+30a,20+30b,26+30c,12+30d]: negative-1 [202] by {a=>-a-1}
[10+30a,10+30b,28+30c,12+30d]: transposed [201] by [1,2,0,3]
[20+30a,10+30b,28+30c,12+30d]: negative-1 [202] by {a=>-a-1}
[10+30a,20+30b,28+30c,12+30d]: negative-1 [201] by {b=>-b-1}
[20+30a,20+30b,28+30c,12+30d]: negative-1 [202] by {a=>-a-1}
[1+30a,0+30b,0+30c,13+30d]: unknown -> [204] [1,0,0,13] a+45a²+900a³+6750a⁴+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴-238
[7+30a,0+30b,0+30c,13+30d]: unknown -> [205] [7,0,0,13] 343a+2205a²+6300a³+6750a⁴+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴-218
[11+30a,0+30b,0+30c,13+30d]: unknown -> [206] [11,0,0,13] 1331a+5445a²+9900a³+6750a⁴+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴-116
[13+30a,0+30b,0+30c,13+30d]: unknown -> [207] [13,0,0,13] 2197a+7605a²+11700a³+6750a⁴+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴
-> solution [13,0,0,13],trivial(3) [43,0,0,43],trivial(3)
[17+30a,0+30b,0+30c,13+30d]: negative-1 [207] by {a=>-a-1}
[19+30a,0+30b,0+30c,13+30d]: negative-1 [206] by {a=>-a-1}
[23+30a,0+30b,0+30c,13+30d]: negative-1 [205] by {a=>-a-1}
[29+30a,0+30b,0+30c,13+30d]: negative-1 [204] by {a=>-a-1}
[0+30a,1+30b,0+30c,13+30d]: transposed [204] by [1,0,2,3]
[15+30a,2+30b,0+30c,13+30d]: unknown -> [208] [15,2,0,13] 3375a+10125a²+13500a³+6750a⁴+8b+180b²+1800b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴+184
[10+30a,3+30b,0+30c,13+30d]: unknown -> [209] [10,3,0,13] 1000a+4500a²+9000a³+6750a⁴+27b+405b²+2700b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴-154
[20+30a,3+30b,0+30c,13+30d]: negative-1 [209] by {a=>-a-1}
[15+30a,4+30b,0+30c,13+30d]: unknown -> [210] [15,4,0,13] 3375a+10125a²+13500a³+6750a⁴+64b+720b²+3600b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴+186
[6+30a,5+30b,0+30c,13+30d]: unknown -> [211] [6,5,0,13] 216a+1620a²+5400a³+6750a⁴+125b+1125b²+4500b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴-222
[12+30a,5+30b,0+30c,13+30d]: unknown -> [212] [12,5,0,13] 1728a+6480a²+10800a³+6750a⁴+125b+1125b²+4500b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴-60
[18+30a,5+30b,0+30c,13+30d]: negative-1 [212] by {a=>-a-1}
[24+30a,5+30b,0+30c,13+30d]: negative-1 [211] by {a=>-a-1}
[5+30a,6+30b,0+30c,13+30d]: transposed [211] by [1,0,2,3]
[25+30a,6+30b,0+30c,13+30d]: unknown -> [213] [25,6,0,13] 15625a+28125a²+22500a³+6750a⁴+216b+1620b²+5400b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴+3028
[0+30a,7+30b,0+30c,13+30d]: transposed [205] by [1,0,2,3]
[15+30a,8+30b,0+30c,13+30d]: unknown -> [214] [15,8,0,13] 3375a+10125a²+13500a³+6750a⁴+512b+2880b²+7200b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴+218
[10+30a,9+30b,0+30c,13+30d]: unknown -> [215] [10,9,0,13] 1000a+4500a²+9000a³+6750a⁴+729b+3645b²+8100b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴-100
[20+30a,9+30b,0+30c,13+30d]: negative-1 [215] by {a=>-a-1}
[3+30a,10+30b,0+30c,13+30d]: transposed [209] by [1,0,2,3]
[9+30a,10+30b,0+30c,13+30d]: transposed [215] by [1,0,2,3]
[21+30a,10+30b,0+30c,13+30d]: unknown -> [216] [21,10,0,13] 9261a+19845a²+18900a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴+1466
[27+30a,10+30b,0+30c,13+30d]: unknown -> [217] [27,10,0,13] 19683a+32805a²+24300a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴+4274
[0+30a,11+30b,0+30c,13+30d]: transposed [206] by [1,0,2,3]
[5+30a,12+30b,0+30c,13+30d]: transposed [212] by [1,0,2,3]
[25+30a,12+30b,0+30c,13+30d]: unknown -> [218] [25,12,0,13] 15625a+28125a²+22500a³+6750a⁴+1728b+6480b²+10800b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴+3190
[0+30a,13+30b,0+30c,13+30d]: transposed [207] by [1,0,2,3]
[15+30a,14+30b,0+30c,13+30d]: unknown -> [219] [15,14,0,13] 3375a+10125a²+13500a³+6750a⁴+2744b+8820b²+12600b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴+504
[2+30a,15+30b,0+30c,13+30d]: transposed [208] by [1,0,2,3]
[4+30a,15+30b,0+30c,13+30d]: transposed [210] by [1,0,2,3]
[8+30a,15+30b,0+30c,13+30d]: transposed [214] by [1,0,2,3]
[14+30a,15+30b,0+30c,13+30d]: transposed [219] by [1,0,2,3]
[16+30a,15+30b,0+30c,13+30d]: unknown -> [220] [16,15,0,13] 4096a+11520a²+14400a³+6750a⁴+3375b+10125b²+13500b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴+730
[22+30a,15+30b,0+30c,13+30d]: unknown -> [221] [22,15,0,13] 10648a+21780a²+19800a³+6750a⁴+3375b+10125b²+13500b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴+2136
[26+30a,15+30b,0+30c,13+30d]: unknown -> [222] [26,15,0,13] 17576a+30420a²+23400a³+6750a⁴+3375b+10125b²+13500b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴+3992
[28+30a,15+30b,0+30c,13+30d]: unknown -> [223] [28,15,0,13] 21952a+35280a²+25200a³+6750a⁴+3375b+10125b²+13500b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴+5306
[15+30a,16+30b,0+30c,13+30d]: transposed [220] by [1,0,2,3]
[0+30a,17+30b,0+30c,13+30d]: unknown -> [224] [0,17,0,13] 6750a⁴+4913b+13005b²+15300b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴+458
[5+30a,18+30b,0+30c,13+30d]: negative-1 [218] by {a=>-a-1,b=>-b-1}
[25+30a,18+30b,0+30c,13+30d]: negative-1 [218] by {b=>-b-1}
[0+30a,19+30b,0+30c,13+30d]: unknown -> [225] [0,19,0,13] 6750a⁴+6859b+16245b²+17100b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴+848
[3+30a,20+30b,0+30c,13+30d]: negative-1 [217] by {a=>-a-1,b=>-b-1}
[9+30a,20+30b,0+30c,13+30d]: negative-1 [217] by {b=>-b-1}
[21+30a,20+30b,0+30c,13+30d]: negative-1 [217] by {b=>-b-1}
[27+30a,20+30b,0+30c,13+30d]: negative-1 [217] by {b=>-b-1}
[10+30a,21+30b,0+30c,13+30d]: transposed [216] by [1,0,2,3]
[20+30a,21+30b,0+30c,13+30d]: negative-1 [215] by {a=>-a-1,b=>-b-1}
[15+30a,22+30b,0+30c,13+30d]: transposed [221] by [1,0,2,3]
[0+30a,23+30b,0+30c,13+30d]: unknown -> [226] [0,23,0,13] 6750a⁴+12167b+23805b²+20700b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴+2094
[5+30a,24+30b,0+30c,13+30d]: negative-1 [218] by {a=>-a-1}
[25+30a,24+30b,0+30c,13+30d]: negative-1 [213] by {b=>-b-1}
[6+30a,25+30b,0+30c,13+30d]: transposed [213] by [1,0,2,3]
[12+30a,25+30b,0+30c,13+30d]: transposed [218] by [1,0,2,3]
[18+30a,25+30b,0+30c,13+30d]: negative-1 [212] by {a=>-a-1,b=>-b-1}
[24+30a,25+30b,0+30c,13+30d]: negative-1 [212] by {b=>-b-1}
[15+30a,26+30b,0+30c,13+30d]: transposed [222] by [1,0,2,3]
[10+30a,27+30b,0+30c,13+30d]: transposed [217] by [1,0,2,3]
[20+30a,27+30b,0+30c,13+30d]: negative-1 [215] by {a=>-a-1}
[15+30a,28+30b,0+30c,13+30d]: transposed [223] by [1,0,2,3]
[0+30a,29+30b,0+30c,13+30d]: unknown -> [227] [0,29,0,13] 6750a⁴+24389b+37845b²+26100b³+6750b⁴+6750c⁴-2197d-7605d²-11700d³-6750d⁴+5656
[0+30a,0+30b,1+30c,13+30d]: transposed [204] by [1,2,0,3]
[15+30a,0+30b,2+30c,13+30d]: transposed [208] by [0,2,1,3]
[0+30a,15+30b,2+30c,13+30d]: transposed [208] by [2,0,1,3]
[10+30a,0+30b,3+30c,13+30d]: transposed [209] by [0,2,1,3]
[20+30a,0+30b,3+30c,13+30d]: negative-1 [215] by {a=>-a-1}
[0+30a,10+30b,3+30c,13+30d]: transposed [209] by [2,0,1,3]
[0+30a,20+30b,3+30c,13+30d]: negative-1 [217] by {b=>-b-1}
[15+30a,0+30b,4+30c,13+30d]: transposed [210] by [0,2,1,3]
[0+30a,15+30b,4+30c,13+30d]: transposed [210] by [2,0,1,3]
[6+30a,0+30b,5+30c,13+30d]: transposed [211] by [0,2,1,3]
[12+30a,0+30b,5+30c,13+30d]: transposed [212] by [0,2,1,3]
[18+30a,0+30b,5+30c,13+30d]: negative-1 [212] by {a=>-a-1}
[24+30a,0+30b,5+30c,13+30d]: negative-1 [211] by {a=>-a-1}
[0+30a,6+30b,5+30c,13+30d]: transposed [211] by [2,0,1,3]
[0+30a,12+30b,5+30c,13+30d]: transposed [212] by [2,0,1,3]
[0+30a,18+30b,5+30c,13+30d]: negative-1 [218] by {b=>-b-1}
[0+30a,24+30b,5+30c,13+30d]: negative-1 [213] by {b=>-b-1}
[5+30a,0+30b,6+30c,13+30d]: transposed [211] by [1,2,0,3]
[25+30a,0+30b,6+30c,13+30d]: transposed [213] by [0,2,1,3]
[0+30a,5+30b,6+30c,13+30d]: transposed [211] by [2,1,0,3]
[15+30a,10+30b,6+30c,13+30d]: unknown -> [228] [15,10,6,13] 3375a+10125a²+13500a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+216c+1620c²+5400c³+6750c⁴-2197d-7605d²-11700d³-6750d⁴+278
[10+30a,15+30b,6+30c,13+30d]: transposed [228] by [1,0,2,3]
[20+30a,15+30b,6+30c,13+30d]: negative-1 [215] by {a=>-a-1}
[15+30a,20+30b,6+30c,13+30d]: negative-1 [228] by {b=>-b-1}
[0+30a,25+30b,6+30c,13+30d]: transposed [213] by [2,0,1,3]
[0+30a,0+30b,7+30c,13+30d]: transposed [205] by [1,2,0,3]
[15+30a,0+30b,8+30c,13+30d]: transposed [214] by [0,2,1,3]
[0+30a,15+30b,8+30c,13+30d]: transposed [214] by [2,0,1,3]
[10+30a,0+30b,9+30c,13+30d]: transposed [215] by [0,2,1,3]
[20+30a,0+30b,9+30c,13+30d]: negative-1 [215] by {a=>-a-1}
[0+30a,10+30b,9+30c,13+30d]: transposed [215] by [2,0,1,3]
[0+30a,20+30b,9+30c,13+30d]: negative-1 [228] by {b=>-b-1}
[3+30a,0+30b,10+30c,13+30d]: transposed [209] by [1,2,0,3]
[9+30a,0+30b,10+30c,13+30d]: transposed [215] by [1,2,0,3]
[21+30a,0+30b,10+30c,13+30d]: transposed [216] by [0,2,1,3]
[27+30a,0+30b,10+30c,13+30d]: transposed [217] by [0,2,1,3]
[0+30a,3+30b,10+30c,13+30d]: transposed [209] by [2,1,0,3]
[15+30a,6+30b,10+30c,13+30d]: transposed [228] by [0,2,1,3]
[0+30a,9+30b,10+30c,13+30d]: transposed [215] by [2,1,0,3]
[15+30a,12+30b,10+30c,13+30d]: unknown -> [229] [15,12,10,13] 3375a+10125a²+13500a³+6750a⁴+1728b+6480b²+10800b³+6750b⁴+1000c+4500c²+9000c³+6750c⁴-2197d-7605d²-11700d³-6750d⁴+440
[6+30a,15+30b,10+30c,13+30d]: transposed [228] by [2,0,1,3]
[12+30a,15+30b,10+30c,13+30d]: transposed [229] by [1,0,2,3]
[18+30a,15+30b,10+30c,13+30d]: negative-1 [212] by {a=>-a-1}
[24+30a,15+30b,10+30c,13+30d]: negative-1 [211] by {a=>-a-1}
[15+30a,18+30b,10+30c,13+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,21+30b,10+30c,13+30d]: transposed [216] by [2,0,1,3]
[15+30a,24+30b,10+30c,13+30d]: negative-1 [213] by {b=>-b-1}
[0+30a,27+30b,10+30c,13+30d]: transposed [217] by [2,0,1,3]
[0+30a,0+30b,11+30c,13+30d]: transposed [206] by [1,2,0,3]
[5+30a,0+30b,12+30c,13+30d]: transposed [212] by [1,2,0,3]
[25+30a,0+30b,12+30c,13+30d]: transposed [218] by [0,2,1,3]
[0+30a,5+30b,12+30c,13+30d]: transposed [212] by [2,1,0,3]
[15+30a,10+30b,12+30c,13+30d]: transposed [229] by [0,2,1,3]
[10+30a,15+30b,12+30c,13+30d]: transposed [229] by [2,0,1,3]
[20+30a,15+30b,12+30c,13+30d]: negative-1 [215] by {a=>-a-1}
[15+30a,20+30b,12+30c,13+30d]: negative-1 [228] by {b=>-b-1}
[0+30a,25+30b,12+30c,13+30d]: transposed [218] by [2,0,1,3]
[0+30a,0+30b,13+30c,13+30d]: transposed [207] by [1,2,0,3]
[15+30a,0+30b,14+30c,13+30d]: transposed [219] by [0,2,1,3]
[0+30a,15+30b,14+30c,13+30d]: transposed [219] by [2,0,1,3]
[2+30a,0+30b,15+30c,13+30d]: transposed [208] by [1,2,0,3]
[4+30a,0+30b,15+30c,13+30d]: transposed [210] by [1,2,0,3]
[8+30a,0+30b,15+30c,13+30d]: transposed [214] by [1,2,0,3]
[14+30a,0+30b,15+30c,13+30d]: transposed [219] by [1,2,0,3]
[16+30a,0+30b,15+30c,13+30d]: transposed [220] by [0,2,1,3]
[22+30a,0+30b,15+30c,13+30d]: transposed [221] by [0,2,1,3]
[26+30a,0+30b,15+30c,13+30d]: transposed [222] by [0,2,1,3]
[28+30a,0+30b,15+30c,13+30d]: transposed [223] by [0,2,1,3]
[0+30a,2+30b,15+30c,13+30d]: transposed [208] by [2,1,0,3]
[0+30a,4+30b,15+30c,13+30d]: transposed [210] by [2,1,0,3]
[10+30a,6+30b,15+30c,13+30d]: transposed [228] by [1,2,0,3]
[20+30a,6+30b,15+30c,13+30d]: negative-1 [215] by {a=>-a-1}
[0+30a,8+30b,15+30c,13+30d]: transposed [214] by [2,1,0,3]
[6+30a,10+30b,15+30c,13+30d]: transposed [228] by [2,1,0,3]
[12+30a,10+30b,15+30c,13+30d]: transposed [229] by [1,2,0,3]
[18+30a,10+30b,15+30c,13+30d]: negative-1 [212] by {a=>-a-1}
[24+30a,10+30b,15+30c,13+30d]: negative-1 [211] by {a=>-a-1}
[10+30a,12+30b,15+30c,13+30d]: transposed [229] by [2,1,0,3]
[20+30a,12+30b,15+30c,13+30d]: negative-1 [215] by {a=>-a-1}
[0+30a,14+30b,15+30c,13+30d]: transposed [219] by [2,1,0,3]
[0+30a,16+30b,15+30c,13+30d]: transposed [220] by [2,0,1,3]
[10+30a,18+30b,15+30c,13+30d]: negative-1 [229] by {b=>-b-1}
[20+30a,18+30b,15+30c,13+30d]: negative-1 [229] by {b=>-b-1}
[6+30a,20+30b,15+30c,13+30d]: negative-1 [228] by {b=>-b-1}
[12+30a,20+30b,15+30c,13+30d]: negative-1 [228] by {b=>-b-1}
[18+30a,20+30b,15+30c,13+30d]: negative-1 [228] by {b=>-b-1}
[24+30a,20+30b,15+30c,13+30d]: negative-1 [228] by {b=>-b-1}
[0+30a,22+30b,15+30c,13+30d]: transposed [221] by [2,0,1,3]
[10+30a,24+30b,15+30c,13+30d]: negative-1 [213] by {b=>-b-1}
[20+30a,24+30b,15+30c,13+30d]: negative-1 [215] by {a=>-a-1}
[0+30a,26+30b,15+30c,13+30d]: transposed [222] by [2,0,1,3]
[0+30a,28+30b,15+30c,13+30d]: transposed [223] by [2,0,1,3]
[15+30a,0+30b,16+30c,13+30d]: transposed [220] by [1,2,0,3]
[0+30a,15+30b,16+30c,13+30d]: transposed [220] by [2,1,0,3]
[0+30a,0+30b,17+30c,13+30d]: transposed [224] by [0,2,1,3]
[5+30a,0+30b,18+30c,13+30d]: negative-1 [218] by {a=>-a-1}
[25+30a,0+30b,18+30c,13+30d]: unknown -> [230] [25,0,18,13] 15625a+28125a²+22500a³+6750a⁴+6750b⁴+5832c+14580c²+16200c³+6750c⁴-2197d-7605d²-11700d³-6750d⁴+3892
[0+30a,5+30b,18+30c,13+30d]: unknown -> [231] [0,5,18,13] 6750a⁴+125b+1125b²+4500b³+6750b⁴+5832c+14580c²+16200c³+6750c⁴-2197d-7605d²-11700d³-6750d⁴+642
[15+30a,10+30b,18+30c,13+30d]: unknown -> [232] [15,10,18,13] 3375a+10125a²+13500a³+6750a⁴+1000b+4500b²+9000b³+6750b⁴+5832c+14580c²+16200c³+6750c⁴-2197d-7605d²-11700d³-6750d⁴+1142
[10+30a,15+30b,18+30c,13+30d]: transposed [232] by [1,0,2,3]
[20+30a,15+30b,18+30c,13+30d]: negative-1 [215] by {a=>-a-1}
[15+30a,20+30b,18+30c,13+30d]: negative-1 [232] by {b=>-b-1}
[0+30a,25+30b,18+30c,13+30d]: transposed [230] by [1,0,2,3]
[0+30a,0+30b,19+30c,13+30d]: transposed [225] by [0,2,1,3]
[3+30a,0+30b,20+30c,13+30d]: negative-1 [229] by {c=>-c-1}
[9+30a,0+30b,20+30c,13+30d]: negative-1 [229] by {c=>-c-1}
[21+30a,0+30b,20+30c,13+30d]: negative-1 [229] by {c=>-c-1}
[27+30a,0+30b,20+30c,13+30d]: negative-1 [229] by {c=>-c-1}
[0+30a,3+30b,20+30c,13+30d]: negative-1 [229] by {c=>-c-1}
[15+30a,6+30b,20+30c,13+30d]: negative-1 [229] by {c=>-c-1}
[0+30a,9+30b,20+30c,13+30d]: negative-1 [229] by {c=>-c-1}
[15+30a,12+30b,20+30c,13+30d]: negative-1 [229] by {c=>-c-1}
[6+30a,15+30b,20+30c,13+30d]: negative-1 [229] by {c=>-c-1}
[12+30a,15+30b,20+30c,13+30d]: negative-1 [229] by {c=>-c-1}
[18+30a,15+30b,20+30c,13+30d]: negative-1 [229] by {c=>-c-1}
[24+30a,15+30b,20+30c,13+30d]: negative-1 [229] by {c=>-c-1}
[15+30a,18+30b,20+30c,13+30d]: negative-1 [229] by {b=>-b-1,c=>-c-1}
[0+30a,21+30b,20+30c,13+30d]: negative-1 [229] by {c=>-c-1}
[15+30a,24+30b,20+30c,13+30d]: negative-1 [229] by {c=>-c-1}
[0+30a,27+30b,20+30c,13+30d]: negative-1 [229] by {c=>-c-1}
[10+30a,0+30b,21+30c,13+30d]: transposed [216] by [1,2,0,3]
[20+30a,0+30b,21+30c,13+30d]: negative-1 [215] by {a=>-a-1}
[0+30a,10+30b,21+30c,13+30d]: transposed [216] by [2,1,0,3]
[0+30a,20+30b,21+30c,13+30d]: negative-1 [232] by {b=>-b-1}
[15+30a,0+30b,22+30c,13+30d]: transposed [221] by [1,2,0,3]
[0+30a,15+30b,22+30c,13+30d]: transposed [221] by [2,1,0,3]
[0+30a,0+30b,23+30c,13+30d]: transposed [226] by [0,2,1,3]
[5+30a,0+30b,24+30c,13+30d]: negative-1 [230] by {a=>-a-1}
[25+30a,0+30b,24+30c,13+30d]: negative-1 [228] by {c=>-c-1}
[0+30a,5+30b,24+30c,13+30d]: negative-1 [228] by {c=>-c-1}
[15+30a,10+30b,24+30c,13+30d]: negative-1 [228] by {c=>-c-1}
[10+30a,15+30b,24+30c,13+30d]: negative-1 [228] by {c=>-c-1}
[20+30a,15+30b,24+30c,13+30d]: negative-1 [228] by {c=>-c-1}
[15+30a,20+30b,24+30c,13+30d]: negative-1 [232] by {b=>-b-1}
[0+30a,25+30b,24+30c,13+30d]: negative-1 [231] by {b=>-b-1}
[6+30a,0+30b,25+30c,13+30d]: transposed [213] by [1,2,0,3]
[12+30a,0+30b,25+30c,13+30d]: transposed [218] by [1,2,0,3]
[18+30a,0+30b,25+30c,13+30d]: transposed [230] by [2,1,0,3]
[24+30a,0+30b,25+30c,13+30d]: negative-1 [211] by {a=>-a-1}
[0+30a,6+30b,25+30c,13+30d]: transposed [213] by [2,1,0,3]
[0+30a,12+30b,25+30c,13+30d]: transposed [218] by [2,1,0,3]
[0+30a,18+30b,25+30c,13+30d]: transposed [230] by [1,2,0,3]
[0+30a,24+30b,25+30c,13+30d]: negative-1 [213] by {b=>-b-1}
[15+30a,0+30b,26+30c,13+30d]: transposed [222] by [1,2,0,3]
[0+30a,15+30b,26+30c,13+30d]: transposed [222] by [2,1,0,3]
[10+30a,0+30b,27+30c,13+30d]: transposed [217] by [1,2,0,3]
[20+30a,0+30b,27+30c,13+30d]: negative-1 [215] by {a=>-a-1}
[0+30a,10+30b,27+30c,13+30d]: transposed [217] by [2,1,0,3]
[0+30a,20+30b,27+30c,13+30d]: negative-1 [232] by {b=>-b-1}
[15+30a,0+30b,28+30c,13+30d]: transposed [223] by [1,2,0,3]
[0+30a,15+30b,28+30c,13+30d]: transposed [223] by [2,1,0,3]
[0+30a,0+30b,29+30c,13+30d]: transposed [227] by [0,2,1,3]
[2+30a,0+30b,0+30c,14+30d]: negative-1 [223] by {a=>-a-1}
[4+30a,0+30b,0+30c,14+30d]: negative-1 [222] by {a=>-a-1}
[8+30a,0+30b,0+30c,14+30d]: negative-1 [221] by {a=>-a-1}
[14+30a,0+30b,0+30c,14+30d]: negative-1 [220] by {a=>-a-1}
-> solution [14,0,0,14],trivial(3) [44,0,0,44],trivial(3)
[16+30a,0+30b,0+30c,14+30d]: unknown -> [233] [16,0,0,14] 2048a+5760a²+7200a³+3375a⁴+3375b⁴+3375c⁴-1372d-4410d²-6300d³-3375d⁴+113
[22+30a,0+30b,0+30c,14+30d]: unknown -> [234] [22,0,0,14] 5324a+10890a²+9900a³+3375a⁴+3375b⁴+3375c⁴-1372d-4410d²-6300d³-3375d⁴+816
[26+30a,0+30b,0+30c,14+30d]: unknown -> [235] [26,0,0,14] 8788a+15210a²+11700a³+3375a⁴+3375b⁴+3375c⁴-1372d-4410d²-6300d³-3375d⁴+1744
[28+30a,0+30b,0+30c,14+30d]: unknown -> [236] [28,0,0,14] 10976a+17640a²+12600a³+3375a⁴+3375b⁴+3375c⁴-1372d-4410d²-6300d³-3375d⁴+2401
[0+30a,2+30b,0+30c,14+30d]: unknown -> [237] [0,2,0,14] 3375a⁴+4b+90b²+900b³+3375b⁴+3375c⁴-1372d-4410d²-6300d³-3375d⁴-160
[0+30a,4+30b,0+30c,14+30d]: unknown -> [238] [0,4,0,14] 3375a⁴+32b+360b²+1800b³+3375b⁴+3375c⁴-1372d-4410d²-6300d³-3375d⁴-159
[10+30a,6+30b,0+30c,14+30d]: unknown -> [239] [10,6,0,14] 500a+2250a²+4500a³+3375a⁴+108b+810b²+2700b³+3375b⁴+3375c⁴-1372d-4410d²-6300d³-3375d⁴-113
[20+30a,6+30b,0+30c,14+30d]: negative-1 [239] by {a=>-a-1}
[0+30a,8+30b,0+30c,14+30d]: unknown -> [240] [0,8,0,14] 3375a⁴+256b+1440b²+3600b³+3375b⁴+3375c⁴-1372d-4410d²-6300d³-3375d⁴-143
[6+30a,10+30b,0+30c,14+30d]: transposed [239] by [1,0,2,3]
[12+30a,10+30b,0+30c,14+30d]: unknown -> [241] [12,10,0,14] 864a+3240a²+5400a³+3375a⁴+500b+2250b²+4500b³+3375b⁴+3375c⁴-1372d-4410d²-6300d³-3375d⁴-32
[18+30a,10+30b,0+30c,14+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,10+30b,0+30c,14+30d]: negative-1 [211] by {a=>-a-1}
[10+30a,12+30b,0+30c,14+30d]: transposed [241] by [1,0,2,3]
[20+30a,12+30b,0+30c,14+30d]: negative-1 [239] by {a=>-a-1}
[0+30a,14+30b,0+30c,14+30d]: unknown -> [242] [0,14,0,14] 3375a⁴+1372b+4410b²+6300b³+3375b⁴+3375c⁴-1372d-4410d²-6300d³-3375d⁴
-> solution [0,14,0,14],trivial(3) [0,44,0,44],trivial(3)
[0+30a,16+30b,0+30c,14+30d]: transposed [233] by [1,0,2,3]
[10+30a,18+30b,0+30c,14+30d]: negative-1 [229] by {b=>-b-1}
[20+30a,18+30b,0+30c,14+30d]: negative-1 [239] by {a=>-a-1}
[6+30a,20+30b,0+30c,14+30d]: negative-1 [241] by {b=>-b-1}
[12+30a,20+30b,0+30c,14+30d]: negative-1 [241] by {b=>-b-1}
[18+30a,20+30b,0+30c,14+30d]: negative-1 [241] by {a=>-a-1,b=>-b-1}
[24+30a,20+30b,0+30c,14+30d]: negative-1 [241] by {b=>-b-1}
[0+30a,22+30b,0+30c,14+30d]: transposed [234] by [1,0,2,3]
[10+30a,24+30b,0+30c,14+30d]: negative-1 [239] by {b=>-b-1}
[20+30a,24+30b,0+30c,14+30d]: negative-1 [239] by {a=>-a-1,b=>-b-1}
[0+30a,26+30b,0+30c,14+30d]: transposed [235] by [1,0,2,3]
[0+30a,28+30b,0+30c,14+30d]: transposed [236] by [1,0,2,3]
[0+30a,0+30b,2+30c,14+30d]: transposed [237] by [0,2,1,3]
[0+30a,0+30b,4+30c,14+30d]: transposed [238] by [0,2,1,3]
[10+30a,0+30b,6+30c,14+30d]: transposed [239] by [0,2,1,3]
[20+30a,0+30b,6+30c,14+30d]: negative-1 [239] by {a=>-a-1}
[0+30a,10+30b,6+30c,14+30d]: transposed [239] by [2,0,1,3]
[0+30a,20+30b,6+30c,14+30d]: negative-1 [241] by {b=>-b-1}
[0+30a,0+30b,8+30c,14+30d]: transposed [240] by [0,2,1,3]
[6+30a,0+30b,10+30c,14+30d]: transposed [239] by [1,2,0,3]
[12+30a,0+30b,10+30c,14+30d]: transposed [241] by [0,2,1,3]
[18+30a,0+30b,10+30c,14+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,0+30b,10+30c,14+30d]: negative-1 [211] by {a=>-a-1}
[0+30a,6+30b,10+30c,14+30d]: transposed [239] by [2,1,0,3]
[0+30a,12+30b,10+30c,14+30d]: transposed [241] by [2,0,1,3]
[0+30a,18+30b,10+30c,14+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,24+30b,10+30c,14+30d]: negative-1 [239] by {b=>-b-1}
[10+30a,0+30b,12+30c,14+30d]: transposed [241] by [1,2,0,3]
[20+30a,0+30b,12+30c,14+30d]: negative-1 [239] by {a=>-a-1}
[0+30a,10+30b,12+30c,14+30d]: transposed [241] by [2,1,0,3]
[0+30a,20+30b,12+30c,14+30d]: negative-1 [241] by {b=>-b-1}
[0+30a,0+30b,14+30c,14+30d]: transposed [242] by [0,2,1,3]
[0+30a,0+30b,16+30c,14+30d]: transposed [233] by [1,2,0,3]
[10+30a,0+30b,18+30c,14+30d]: unknown -> [243] [10,0,18,14] 500a+2250a²+4500a³+3375a⁴+3375b⁴+2916c+7290c²+8100c³+3375c⁴-1372d-4410d²-6300d³-3375d⁴+319
[20+30a,0+30b,18+30c,14+30d]: negative-1 [243] by {a=>-a-1}
[0+30a,10+30b,18+30c,14+30d]: transposed [243] by [1,0,2,3]
[0+30a,20+30b,18+30c,14+30d]: negative-1 [241] by {b=>-b-1}
[6+30a,0+30b,20+30c,14+30d]: negative-1 [229] by {c=>-c-1}
[12+30a,0+30b,20+30c,14+30d]: negative-1 [229] by {c=>-c-1}
[18+30a,0+30b,20+30c,14+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,0+30b,20+30c,14+30d]: negative-1 [229] by {c=>-c-1}
[0+30a,6+30b,20+30c,14+30d]: negative-1 [229] by {c=>-c-1}
[0+30a,12+30b,20+30c,14+30d]: negative-1 [229] by {c=>-c-1}
[0+30a,18+30b,20+30c,14+30d]: negative-1 [229] by {b=>-b-1,c=>-c-1}
[0+30a,24+30b,20+30c,14+30d]: negative-1 [239] by {b=>-b-1}
[0+30a,0+30b,22+30c,14+30d]: transposed [234] by [1,2,0,3]
[10+30a,0+30b,24+30c,14+30d]: negative-1 [228] by {c=>-c-1}
[20+30a,0+30b,24+30c,14+30d]: negative-1 [243] by {a=>-a-1}
[0+30a,10+30b,24+30c,14+30d]: negative-1 [228] by {c=>-c-1}
[0+30a,20+30b,24+30c,14+30d]: negative-1 [241] by {b=>-b-1}
[0+30a,0+30b,26+30c,14+30d]: transposed [235] by [1,2,0,3]
[0+30a,0+30b,28+30c,14+30d]: transposed [236] by [1,2,0,3]
[15+30a,0+30b,0+30c,15+30d]: unknown -> [244] [15,0,0,15] a+3a²+4a³+2a⁴+2b⁴+2c⁴-d-3d²-4d³-2d⁴
-> solution [15,0,0,15],trivial(3) [45,0,0,45],trivial(3)
[0+30a,15+30b,0+30c,15+30d]: transposed [244] by [1,0,2,3]
[10+30a,10+30b,5+30c,15+30d]: unknown -> [245] [10,10,5,15] 8a+36a²+72a³+54a⁴+8b+36b²+72b³+54b⁴+c+9c²+36c³+54c⁴-27d-81d²-108d³-54d⁴-2
[20+30a,10+30b,5+30c,15+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,5+30c,15+30d]: negative-1 [245] by {b=>-b-1}
[20+30a,20+30b,5+30c,15+30d]: negative-1 [245] by {a=>-a-1,b=>-b-1}
[10+30a,5+30b,10+30c,15+30d]: transposed [245] by [0,2,1,3]
[20+30a,5+30b,10+30c,15+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,10+30b,10+30c,15+30d]: transposed [245] by [2,0,1,3]
[25+30a,10+30b,10+30c,15+30d]: unknown -> [246] [25,10,10,15] 125a+225a²+180a³+54a⁴+8b+36b²+72b³+54b⁴+8c+36c²+72c³+54c⁴-27d-81d²-108d³-54d⁴+24
[5+30a,20+30b,10+30c,15+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,10+30c,15+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,25+30b,10+30c,15+30d]: transposed [246] by [1,0,2,3]
[20+30a,25+30b,10+30c,15+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,0+30b,15+30c,15+30d]: transposed [244] by [1,2,0,3]
[10+30a,5+30b,20+30c,15+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,5+30b,20+30c,15+30d]: negative-1 [246] by {c=>-c-1}
[5+30a,10+30b,20+30c,15+30d]: negative-1 [246] by {a=>-a-1,c=>-c-1}
[25+30a,10+30b,20+30c,15+30d]: negative-1 [246] by {c=>-c-1}
[5+30a,20+30b,20+30c,15+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1,c=>-c-1}
[25+30a,20+30b,20+30c,15+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[10+30a,25+30b,20+30c,15+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,25+30b,20+30c,15+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,10+30b,25+30c,15+30d]: transposed [246] by [1,2,0,3]
[20+30a,10+30b,25+30c,15+30d]: negative-1 [245] by {a=>-a-1,c=>-c-1}
[10+30a,20+30b,25+30c,15+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,25+30c,15+30d]: negative-1 [246] by {b=>-b-1}
[2+30a,0+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[4+30a,0+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[8+30a,0+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[14+30a,0+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[16+30a,0+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
-> solution [16,0,0,16],trivial(3) [46,0,0,46],trivial(3)
[22+30a,0+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[26+30a,0+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[28+30a,0+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[0+30a,2+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[0+30a,4+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[10+30a,6+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[20+30a,6+30b,0+30c,16+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,8+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[6+30a,10+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[12+30a,10+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[18+30a,10+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[24+30a,10+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[10+30a,12+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[20+30a,12+30b,0+30c,16+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,14+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[0+30a,16+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
-> solution [0,16,0,16],trivial(3) [0,46,0,46],trivial(3)
[10+30a,18+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[20+30a,18+30b,0+30c,16+30d]: negative-1 [245] by {a=>-a-1}
[6+30a,20+30b,0+30c,16+30d]: negative-1 [246] by {b=>-b-1}
[12+30a,20+30b,0+30c,16+30d]: negative-1 [246] by {b=>-b-1}
[18+30a,20+30b,0+30c,16+30d]: negative-1 [246] by {b=>-b-1}
[24+30a,20+30b,0+30c,16+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,22+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[10+30a,24+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[20+30a,24+30b,0+30c,16+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,26+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[0+30a,28+30b,0+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[0+30a,0+30b,2+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[0+30a,0+30b,4+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[10+30a,0+30b,6+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[20+30a,0+30b,6+30c,16+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,6+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[0+30a,20+30b,6+30c,16+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,8+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[6+30a,0+30b,10+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[12+30a,0+30b,10+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[18+30a,0+30b,10+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[24+30a,0+30b,10+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[0+30a,6+30b,10+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[0+30a,12+30b,10+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[0+30a,18+30b,10+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[0+30a,24+30b,10+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[10+30a,0+30b,12+30c,16+30d]: negative-1 [243] by {c=>-c-1,d=>-d-1}
[20+30a,0+30b,12+30c,16+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,12+30c,16+30d]: negative-1 [243] by {c=>-c-1,d=>-d-1}
[0+30a,20+30b,12+30c,16+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,14+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[0+30a,0+30b,16+30c,16+30d]: negative-1 [243] by {d=>-d-1}
-> solution [0,0,16,16],trivial(3) [0,0,46,46],trivial(3)
[10+30a,0+30b,18+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[20+30a,0+30b,18+30c,16+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,18+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[0+30a,20+30b,18+30c,16+30d]: negative-1 [246] by {b=>-b-1}
[6+30a,0+30b,20+30c,16+30d]: negative-1 [246] by {c=>-c-1}
[12+30a,0+30b,20+30c,16+30d]: negative-1 [246] by {c=>-c-1}
[18+30a,0+30b,20+30c,16+30d]: negative-1 [246] by {c=>-c-1}
[24+30a,0+30b,20+30c,16+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,6+30b,20+30c,16+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,12+30b,20+30c,16+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,18+30b,20+30c,16+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,24+30b,20+30c,16+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,0+30b,22+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[10+30a,0+30b,24+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[20+30a,0+30b,24+30c,16+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,24+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[0+30a,20+30b,24+30c,16+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,26+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[0+30a,0+30b,28+30c,16+30d]: negative-1 [243] by {d=>-d-1}
[1+30a,0+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[7+30a,0+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[11+30a,0+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[13+30a,0+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[17+30a,0+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
-> solution [17,0,0,17],trivial(3) [47,0,0,47],trivial(3)
[19+30a,0+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[23+30a,0+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[29+30a,0+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,1+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[15+30a,2+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[10+30a,3+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[20+30a,3+30b,0+30c,17+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,4+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[6+30a,5+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[12+30a,5+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[18+30a,5+30b,0+30c,17+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,5+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[5+30a,6+30b,0+30c,17+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,6+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,7+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[15+30a,8+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[10+30a,9+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[20+30a,9+30b,0+30c,17+30d]: negative-1 [245] by {a=>-a-1}
[3+30a,10+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[9+30a,10+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[21+30a,10+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[27+30a,10+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,11+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[5+30a,12+30b,0+30c,17+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,12+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,13+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[15+30a,14+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[2+30a,15+30b,0+30c,17+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,15+30b,0+30c,17+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,15+30b,0+30c,17+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,15+30b,0+30c,17+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,15+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[22+30a,15+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[26+30a,15+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[28+30a,15+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[15+30a,16+30b,0+30c,17+30d]: negative-1 [242] by {b=>-b-1}
[0+30a,17+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
-> solution [0,17,0,17],trivial(3) [0,47,0,47],trivial(3)
[5+30a,18+30b,0+30c,17+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,18+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,19+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[3+30a,20+30b,0+30c,17+30d]: negative-1 [246] by {b=>-b-1}
[9+30a,20+30b,0+30c,17+30d]: negative-1 [246] by {b=>-b-1}
[21+30a,20+30b,0+30c,17+30d]: negative-1 [246] by {b=>-b-1}
[27+30a,20+30b,0+30c,17+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,21+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[20+30a,21+30b,0+30c,17+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,22+30b,0+30c,17+30d]: negative-1 [240] by {b=>-b-1}
[0+30a,23+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[5+30a,24+30b,0+30c,17+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,24+30b,0+30c,17+30d]: negative-1 [239] by {b=>-b-1}
[6+30a,25+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[12+30a,25+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[18+30a,25+30b,0+30c,17+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,25+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[15+30a,26+30b,0+30c,17+30d]: negative-1 [238] by {b=>-b-1}
[10+30a,27+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[20+30a,27+30b,0+30c,17+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,28+30b,0+30c,17+30d]: negative-1 [237] by {b=>-b-1}
[0+30a,29+30b,0+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,0+30b,1+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[15+30a,0+30b,2+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,15+30b,2+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[10+30a,0+30b,3+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[20+30a,0+30b,3+30c,17+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,3+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,20+30b,3+30c,17+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,4+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,15+30b,4+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[6+30a,0+30b,5+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[12+30a,0+30b,5+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[18+30a,0+30b,5+30c,17+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,0+30b,5+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,6+30b,5+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,12+30b,5+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,18+30b,5+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,24+30b,5+30c,17+30d]: negative-1 [239] by {b=>-b-1}
[5+30a,0+30b,6+30c,17+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,0+30b,6+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,5+30b,6+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[15+30a,10+30b,6+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[10+30a,15+30b,6+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[20+30a,15+30b,6+30c,17+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,20+30b,6+30c,17+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,25+30b,6+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,0+30b,7+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[15+30a,0+30b,8+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,15+30b,8+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[10+30a,0+30b,9+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[20+30a,0+30b,9+30c,17+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,9+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,20+30b,9+30c,17+30d]: negative-1 [246] by {b=>-b-1}
[3+30a,0+30b,10+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[9+30a,0+30b,10+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[21+30a,0+30b,10+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[27+30a,0+30b,10+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,3+30b,10+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[15+30a,6+30b,10+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,9+30b,10+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[15+30a,12+30b,10+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[6+30a,15+30b,10+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[12+30a,15+30b,10+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[18+30a,15+30b,10+30c,17+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,15+30b,10+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[15+30a,18+30b,10+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,21+30b,10+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[15+30a,24+30b,10+30c,17+30d]: negative-1 [239] by {b=>-b-1}
[0+30a,27+30b,10+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,0+30b,11+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[5+30a,0+30b,12+30c,17+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,0+30b,12+30c,17+30d]: negative-1 [243] by {c=>-c-1}
[0+30a,5+30b,12+30c,17+30d]: negative-1 [243] by {c=>-c-1}
[15+30a,10+30b,12+30c,17+30d]: negative-1 [243] by {c=>-c-1}
[10+30a,15+30b,12+30c,17+30d]: negative-1 [243] by {c=>-c-1}
[20+30a,15+30b,12+30c,17+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,20+30b,12+30c,17+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,25+30b,12+30c,17+30d]: negative-1 [243] by {c=>-c-1}
[0+30a,0+30b,13+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[15+30a,0+30b,14+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,15+30b,14+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[2+30a,0+30b,15+30c,17+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,0+30b,15+30c,17+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,0+30b,15+30c,17+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,0+30b,15+30c,17+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,0+30b,15+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[22+30a,0+30b,15+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[26+30a,0+30b,15+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[28+30a,0+30b,15+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,2+30b,15+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,4+30b,15+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[10+30a,6+30b,15+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[20+30a,6+30b,15+30c,17+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,8+30b,15+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[6+30a,10+30b,15+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[12+30a,10+30b,15+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[18+30a,10+30b,15+30c,17+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,10+30b,15+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[10+30a,12+30b,15+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[20+30a,12+30b,15+30c,17+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,14+30b,15+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,16+30b,15+30c,17+30d]: negative-1 [242] by {b=>-b-1}
[10+30a,18+30b,15+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[20+30a,18+30b,15+30c,17+30d]: negative-1 [245] by {a=>-a-1}
[6+30a,20+30b,15+30c,17+30d]: negative-1 [246] by {b=>-b-1}
[12+30a,20+30b,15+30c,17+30d]: negative-1 [246] by {b=>-b-1}
[18+30a,20+30b,15+30c,17+30d]: negative-1 [246] by {b=>-b-1}
[24+30a,20+30b,15+30c,17+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,22+30b,15+30c,17+30d]: negative-1 [240] by {b=>-b-1}
[10+30a,24+30b,15+30c,17+30d]: negative-1 [239] by {b=>-b-1}
[20+30a,24+30b,15+30c,17+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,26+30b,15+30c,17+30d]: negative-1 [238] by {b=>-b-1}
[0+30a,28+30b,15+30c,17+30d]: negative-1 [237] by {b=>-b-1}
[15+30a,0+30b,16+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,15+30b,16+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,0+30b,17+30c,17+30d]: negative-1 [232] by {d=>-d-1}
-> solution [0,0,17,17],trivial(3) [0,0,47,47],trivial(3)
[5+30a,0+30b,18+30c,17+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,0+30b,18+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,5+30b,18+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[15+30a,10+30b,18+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[10+30a,15+30b,18+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[20+30a,15+30b,18+30c,17+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,20+30b,18+30c,17+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,25+30b,18+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,0+30b,19+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[3+30a,0+30b,20+30c,17+30d]: negative-1 [246] by {c=>-c-1}
[9+30a,0+30b,20+30c,17+30d]: negative-1 [246] by {c=>-c-1}
[21+30a,0+30b,20+30c,17+30d]: negative-1 [246] by {c=>-c-1}
[27+30a,0+30b,20+30c,17+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,3+30b,20+30c,17+30d]: negative-1 [246] by {c=>-c-1}
[15+30a,6+30b,20+30c,17+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,9+30b,20+30c,17+30d]: negative-1 [246] by {c=>-c-1}
[15+30a,12+30b,20+30c,17+30d]: negative-1 [246] by {c=>-c-1}
[6+30a,15+30b,20+30c,17+30d]: negative-1 [246] by {c=>-c-1}
[12+30a,15+30b,20+30c,17+30d]: negative-1 [246] by {c=>-c-1}
[18+30a,15+30b,20+30c,17+30d]: negative-1 [246] by {c=>-c-1}
[24+30a,15+30b,20+30c,17+30d]: negative-1 [246] by {c=>-c-1}
[15+30a,18+30b,20+30c,17+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,21+30b,20+30c,17+30d]: negative-1 [246] by {c=>-c-1}
[15+30a,24+30b,20+30c,17+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,27+30b,20+30c,17+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,0+30b,21+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[20+30a,0+30b,21+30c,17+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,21+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,20+30b,21+30c,17+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,22+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,15+30b,22+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,0+30b,23+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[5+30a,0+30b,24+30c,17+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,0+30b,24+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,5+30b,24+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[15+30a,10+30b,24+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[10+30a,15+30b,24+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[20+30a,15+30b,24+30c,17+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,20+30b,24+30c,17+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,25+30b,24+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[6+30a,0+30b,25+30c,17+30d]: negative-1 [245] by {c=>-c-1}
[12+30a,0+30b,25+30c,17+30d]: negative-1 [245] by {c=>-c-1}
[18+30a,0+30b,25+30c,17+30d]: negative-1 [245] by {c=>-c-1}
[24+30a,0+30b,25+30c,17+30d]: negative-1 [245] by {c=>-c-1}
[0+30a,6+30b,25+30c,17+30d]: negative-1 [245] by {c=>-c-1}
[0+30a,12+30b,25+30c,17+30d]: negative-1 [245] by {c=>-c-1}
[0+30a,18+30b,25+30c,17+30d]: negative-1 [245] by {c=>-c-1}
[0+30a,24+30b,25+30c,17+30d]: negative-1 [245] by {c=>-c-1}
[15+30a,0+30b,26+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,15+30b,26+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[10+30a,0+30b,27+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[20+30a,0+30b,27+30c,17+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,27+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,20+30b,27+30c,17+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,28+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,15+30b,28+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[0+30a,0+30b,29+30c,17+30d]: negative-1 [232] by {d=>-d-1}
[6+30a,0+30b,0+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[12+30a,0+30b,0+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[18+30a,0+30b,0+30c,18+30d]: negative-1 [241] by {a=>-a-1}
-> solution [18,0,0,18],trivial(3) [48,0,0,48],trivial(3)
[24+30a,0+30b,0+30c,18+30d]: negative-1 [211] by {a=>-a-1}
[0+30a,6+30b,0+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[0+30a,12+30b,0+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[0+30a,18+30b,0+30c,18+30d]: negative-1 [229] by {b=>-b-1}
-> solution [0,18,0,18],trivial(3) [0,48,0,48],trivial(3)
[0+30a,24+30b,0+30c,18+30d]: negative-1 [239] by {b=>-b-1}
[10+30a,10+30b,2+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[20+30a,10+30b,2+30c,18+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,2+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,2+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,10+30b,4+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[20+30a,10+30b,4+30c,18+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,4+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,4+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,6+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[10+30a,10+30b,8+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[20+30a,10+30b,8+30c,18+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,8+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,8+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,2+30b,10+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[20+30a,2+30b,10+30c,18+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,4+30b,10+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[20+30a,4+30b,10+30c,18+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,8+30b,10+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[20+30a,8+30b,10+30c,18+30d]: negative-1 [245] by {a=>-a-1}
[2+30a,10+30b,10+30c,18+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,10+30b,10+30c,18+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,10+30b,10+30c,18+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,10+30b,10+30c,18+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,10+30b,10+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[22+30a,10+30b,10+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[26+30a,10+30b,10+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[28+30a,10+30b,10+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[10+30a,14+30b,10+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[20+30a,14+30b,10+30c,18+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,16+30b,10+30c,18+30d]: negative-1 [242] by {b=>-b-1}
[20+30a,16+30b,10+30c,18+30d]: negative-1 [245] by {a=>-a-1}
[2+30a,20+30b,10+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[4+30a,20+30b,10+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[8+30a,20+30b,10+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[14+30a,20+30b,10+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[16+30a,20+30b,10+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[22+30a,20+30b,10+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[26+30a,20+30b,10+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[28+30a,20+30b,10+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,22+30b,10+30c,18+30d]: negative-1 [240] by {b=>-b-1}
[20+30a,22+30b,10+30c,18+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,26+30b,10+30c,18+30d]: negative-1 [238] by {b=>-b-1}
[20+30a,26+30b,10+30c,18+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,28+30b,10+30c,18+30d]: negative-1 [237] by {b=>-b-1}
[20+30a,28+30b,10+30c,18+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,0+30b,12+30c,18+30d]: negative-1 [243] by {c=>-c-1}
[10+30a,10+30b,14+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[20+30a,10+30b,14+30c,18+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,14+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,14+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,10+30b,16+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[20+30a,10+30b,16+30c,18+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,16+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,16+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,18+30c,18+30d]: negative-1 [203] by {d=>-d-1}
-> solution [0,0,18,18],trivial(3) [0,0,48,48],trivial(3)
[10+30a,2+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,2+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,4+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,4+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,8+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,8+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[2+30a,10+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[4+30a,10+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[8+30a,10+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[14+30a,10+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[16+30a,10+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[22+30a,10+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[26+30a,10+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[28+30a,10+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,14+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,14+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,16+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,16+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[2+30a,20+30b,20+30c,18+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[4+30a,20+30b,20+30c,18+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[8+30a,20+30b,20+30c,18+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[14+30a,20+30b,20+30c,18+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[16+30a,20+30b,20+30c,18+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[22+30a,20+30b,20+30c,18+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[26+30a,20+30b,20+30c,18+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[28+30a,20+30b,20+30c,18+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[10+30a,22+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,22+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,26+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,26+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,28+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,28+30b,20+30c,18+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,10+30b,22+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[20+30a,10+30b,22+30c,18+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,22+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,22+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,24+30c,18+30d]: negative-1 [228] by {c=>-c-1}
[10+30a,10+30b,26+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[20+30a,10+30b,26+30c,18+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,26+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,26+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,10+30b,28+30c,18+30d]: negative-1 [203] by {d=>-d-1}
[20+30a,10+30b,28+30c,18+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,28+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,28+30c,18+30d]: negative-1 [246] by {b=>-b-1}
[1+30a,0+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[7+30a,0+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[11+30a,0+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[13+30a,0+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[17+30a,0+30b,0+30c,19+30d]: negative-1 [207] by {a=>-a-1}
[19+30a,0+30b,0+30c,19+30d]: negative-1 [206] by {a=>-a-1}
-> solution [19,0,0,19],trivial(3) [49,0,0,49],trivial(3)
[23+30a,0+30b,0+30c,19+30d]: negative-1 [205] by {a=>-a-1}
[29+30a,0+30b,0+30c,19+30d]: negative-1 [204] by {a=>-a-1}
[0+30a,1+30b,0+30c,19+30d]: negative-1 [227] by {b=>-b-1}
[15+30a,2+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[10+30a,3+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[20+30a,3+30b,0+30c,19+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,4+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[6+30a,5+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[12+30a,5+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[18+30a,5+30b,0+30c,19+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,5+30b,0+30c,19+30d]: negative-1 [211] by {a=>-a-1}
[5+30a,6+30b,0+30c,19+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,6+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,7+30b,0+30c,19+30d]: negative-1 [226] by {b=>-b-1}
[15+30a,8+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[10+30a,9+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[20+30a,9+30b,0+30c,19+30d]: negative-1 [245] by {a=>-a-1}
[3+30a,10+30b,0+30c,19+30d]: negative-1 [217] by {a=>-a-1}
[9+30a,10+30b,0+30c,19+30d]: negative-1 [216] by {a=>-a-1}
[21+30a,10+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[27+30a,10+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,11+30b,0+30c,19+30d]: negative-1 [225] by {b=>-b-1}
[5+30a,12+30b,0+30c,19+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,12+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,13+30b,0+30c,19+30d]: negative-1 [224] by {b=>-b-1}
[15+30a,14+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[2+30a,15+30b,0+30c,19+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,15+30b,0+30c,19+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,15+30b,0+30c,19+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,15+30b,0+30c,19+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,15+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[22+30a,15+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[26+30a,15+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[28+30a,15+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[15+30a,16+30b,0+30c,19+30d]: negative-1 [242] by {b=>-b-1}
[0+30a,17+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[5+30a,18+30b,0+30c,19+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,18+30b,0+30c,19+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,19+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
-> solution [0,19,0,19],trivial(3) [0,49,0,49],trivial(3)
[3+30a,20+30b,0+30c,19+30d]: negative-1 [246] by {b=>-b-1}
[9+30a,20+30b,0+30c,19+30d]: negative-1 [246] by {b=>-b-1}
[21+30a,20+30b,0+30c,19+30d]: negative-1 [246] by {b=>-b-1}
[27+30a,20+30b,0+30c,19+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,21+30b,0+30c,19+30d]: negative-1 [215] by {b=>-b-1}
[20+30a,21+30b,0+30c,19+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,22+30b,0+30c,19+30d]: negative-1 [240] by {b=>-b-1}
[0+30a,23+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[5+30a,24+30b,0+30c,19+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,24+30b,0+30c,19+30d]: negative-1 [239] by {b=>-b-1}
[6+30a,25+30b,0+30c,19+30d]: negative-1 [231] by {b=>-b-1}
[12+30a,25+30b,0+30c,19+30d]: negative-1 [231] by {b=>-b-1}
[18+30a,25+30b,0+30c,19+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,25+30b,0+30c,19+30d]: negative-1 [231] by {b=>-b-1}
[15+30a,26+30b,0+30c,19+30d]: negative-1 [238] by {b=>-b-1}
[10+30a,27+30b,0+30c,19+30d]: negative-1 [209] by {b=>-b-1}
[20+30a,27+30b,0+30c,19+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,28+30b,0+30c,19+30d]: negative-1 [237] by {b=>-b-1}
[0+30a,29+30b,0+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,0+30b,1+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[15+30a,0+30b,2+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,15+30b,2+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[10+30a,0+30b,3+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[20+30a,0+30b,3+30c,19+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,3+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,20+30b,3+30c,19+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,4+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,15+30b,4+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[6+30a,0+30b,5+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[12+30a,0+30b,5+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[18+30a,0+30b,5+30c,19+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,0+30b,5+30c,19+30d]: negative-1 [211] by {a=>-a-1}
[0+30a,6+30b,5+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,12+30b,5+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,18+30b,5+30c,19+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,24+30b,5+30c,19+30d]: negative-1 [239] by {b=>-b-1}
[5+30a,0+30b,6+30c,19+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,0+30b,6+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,5+30b,6+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[15+30a,10+30b,6+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[10+30a,15+30b,6+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[20+30a,15+30b,6+30c,19+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,20+30b,6+30c,19+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,25+30b,6+30c,19+30d]: negative-1 [231] by {b=>-b-1}
[0+30a,0+30b,7+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[15+30a,0+30b,8+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,15+30b,8+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[10+30a,0+30b,9+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[20+30a,0+30b,9+30c,19+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,9+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,20+30b,9+30c,19+30d]: negative-1 [246] by {b=>-b-1}
[3+30a,0+30b,10+30c,19+30d]: negative-1 [217] by {a=>-a-1}
[9+30a,0+30b,10+30c,19+30d]: negative-1 [216] by {a=>-a-1}
[21+30a,0+30b,10+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[27+30a,0+30b,10+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,3+30b,10+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[15+30a,6+30b,10+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,9+30b,10+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[15+30a,12+30b,10+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[6+30a,15+30b,10+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[12+30a,15+30b,10+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[18+30a,15+30b,10+30c,19+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,15+30b,10+30c,19+30d]: negative-1 [211] by {a=>-a-1}
[15+30a,18+30b,10+30c,19+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,21+30b,10+30c,19+30d]: negative-1 [215] by {b=>-b-1}
[15+30a,24+30b,10+30c,19+30d]: negative-1 [239] by {b=>-b-1}
[0+30a,27+30b,10+30c,19+30d]: negative-1 [209] by {b=>-b-1}
[0+30a,0+30b,11+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[5+30a,0+30b,12+30c,19+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,0+30b,12+30c,19+30d]: negative-1 [243] by {c=>-c-1}
[0+30a,5+30b,12+30c,19+30d]: negative-1 [243] by {c=>-c-1}
[15+30a,10+30b,12+30c,19+30d]: negative-1 [243] by {c=>-c-1}
[10+30a,15+30b,12+30c,19+30d]: negative-1 [243] by {c=>-c-1}
[20+30a,15+30b,12+30c,19+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,20+30b,12+30c,19+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,25+30b,12+30c,19+30d]: negative-1 [243] by {c=>-c-1}
[0+30a,0+30b,13+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[15+30a,0+30b,14+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,15+30b,14+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[2+30a,0+30b,15+30c,19+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,0+30b,15+30c,19+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,0+30b,15+30c,19+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,0+30b,15+30c,19+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,0+30b,15+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[22+30a,0+30b,15+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[26+30a,0+30b,15+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[28+30a,0+30b,15+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,2+30b,15+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,4+30b,15+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[10+30a,6+30b,15+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[20+30a,6+30b,15+30c,19+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,8+30b,15+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[6+30a,10+30b,15+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[12+30a,10+30b,15+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[18+30a,10+30b,15+30c,19+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,10+30b,15+30c,19+30d]: negative-1 [211] by {a=>-a-1}
[10+30a,12+30b,15+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[20+30a,12+30b,15+30c,19+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,14+30b,15+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,16+30b,15+30c,19+30d]: negative-1 [242] by {b=>-b-1}
[10+30a,18+30b,15+30c,19+30d]: negative-1 [229] by {b=>-b-1}
[20+30a,18+30b,15+30c,19+30d]: negative-1 [245] by {a=>-a-1}
[6+30a,20+30b,15+30c,19+30d]: negative-1 [246] by {b=>-b-1}
[12+30a,20+30b,15+30c,19+30d]: negative-1 [246] by {b=>-b-1}
[18+30a,20+30b,15+30c,19+30d]: negative-1 [246] by {b=>-b-1}
[24+30a,20+30b,15+30c,19+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,22+30b,15+30c,19+30d]: negative-1 [240] by {b=>-b-1}
[10+30a,24+30b,15+30c,19+30d]: negative-1 [239] by {b=>-b-1}
[20+30a,24+30b,15+30c,19+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,26+30b,15+30c,19+30d]: negative-1 [238] by {b=>-b-1}
[0+30a,28+30b,15+30c,19+30d]: negative-1 [237] by {b=>-b-1}
[15+30a,0+30b,16+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,15+30b,16+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,0+30b,17+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[5+30a,0+30b,18+30c,19+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,0+30b,18+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,5+30b,18+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[15+30a,10+30b,18+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[10+30a,15+30b,18+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[20+30a,15+30b,18+30c,19+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,20+30b,18+30c,19+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,25+30b,18+30c,19+30d]: negative-1 [231] by {b=>-b-1}
[0+30a,0+30b,19+30c,19+30d]: negative-1 [192] by {d=>-d-1}
-> solution [0,0,19,19],trivial(3) [0,0,49,49],trivial(3)
[3+30a,0+30b,20+30c,19+30d]: negative-1 [246] by {c=>-c-1}
[9+30a,0+30b,20+30c,19+30d]: negative-1 [246] by {c=>-c-1}
[21+30a,0+30b,20+30c,19+30d]: negative-1 [246] by {c=>-c-1}
[27+30a,0+30b,20+30c,19+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,3+30b,20+30c,19+30d]: negative-1 [246] by {c=>-c-1}
[15+30a,6+30b,20+30c,19+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,9+30b,20+30c,19+30d]: negative-1 [246] by {c=>-c-1}
[15+30a,12+30b,20+30c,19+30d]: negative-1 [246] by {c=>-c-1}
[6+30a,15+30b,20+30c,19+30d]: negative-1 [246] by {c=>-c-1}
[12+30a,15+30b,20+30c,19+30d]: negative-1 [246] by {c=>-c-1}
[18+30a,15+30b,20+30c,19+30d]: negative-1 [246] by {c=>-c-1}
[24+30a,15+30b,20+30c,19+30d]: negative-1 [246] by {c=>-c-1}
[15+30a,18+30b,20+30c,19+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,21+30b,20+30c,19+30d]: negative-1 [246] by {c=>-c-1}
[15+30a,24+30b,20+30c,19+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,27+30b,20+30c,19+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,0+30b,21+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[20+30a,0+30b,21+30c,19+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,21+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,20+30b,21+30c,19+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,22+30c,19+30d]: negative-1 [197] by {c=>-c-1}
[0+30a,15+30b,22+30c,19+30d]: negative-1 [197] by {c=>-c-1}
[0+30a,0+30b,23+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[5+30a,0+30b,24+30c,19+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,0+30b,24+30c,19+30d]: negative-1 [228] by {c=>-c-1}
[0+30a,5+30b,24+30c,19+30d]: negative-1 [228] by {c=>-c-1}
[15+30a,10+30b,24+30c,19+30d]: negative-1 [228] by {c=>-c-1}
[10+30a,15+30b,24+30c,19+30d]: negative-1 [228] by {c=>-c-1}
[20+30a,15+30b,24+30c,19+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,20+30b,24+30c,19+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,25+30b,24+30c,19+30d]: negative-1 [231] by {b=>-b-1}
[6+30a,0+30b,25+30c,19+30d]: negative-1 [245] by {c=>-c-1}
[12+30a,0+30b,25+30c,19+30d]: negative-1 [245] by {c=>-c-1}
[18+30a,0+30b,25+30c,19+30d]: negative-1 [245] by {c=>-c-1}
[24+30a,0+30b,25+30c,19+30d]: negative-1 [245] by {c=>-c-1}
[0+30a,6+30b,25+30c,19+30d]: negative-1 [245] by {c=>-c-1}
[0+30a,12+30b,25+30c,19+30d]: negative-1 [245] by {c=>-c-1}
[0+30a,18+30b,25+30c,19+30d]: negative-1 [245] by {c=>-c-1}
[0+30a,24+30b,25+30c,19+30d]: negative-1 [245] by {c=>-c-1}
[15+30a,0+30b,26+30c,19+30d]: negative-1 [196] by {c=>-c-1}
[0+30a,15+30b,26+30c,19+30d]: negative-1 [196] by {c=>-c-1}
[10+30a,0+30b,27+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[20+30a,0+30b,27+30c,19+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,27+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[0+30a,20+30b,27+30c,19+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,28+30c,19+30d]: negative-1 [195] by {c=>-c-1}
[0+30a,15+30b,28+30c,19+30d]: negative-1 [195] by {c=>-c-1}
[0+30a,0+30b,29+30c,19+30d]: negative-1 [192] by {d=>-d-1}
[10+30a,0+30b,0+30c,20+30d]: negative-1 [163] by {d=>-d-1}
[20+30a,0+30b,0+30c,20+30d]: negative-1 [245] by {a=>-a-1}
-> solution [20,0,0,20],trivial(3) [50,0,0,50],trivial(3)
[0+30a,10+30b,0+30c,20+30d]: negative-1 [163] by {d=>-d-1}
[0+30a,20+30b,0+30c,20+30d]: negative-1 [246] by {b=>-b-1}
-> solution [0,20,0,20],trivial(3) [0,50,0,50],trivial(3)
[0+30a,0+30b,10+30c,20+30d]: negative-1 [163] by {d=>-d-1}
[0+30a,0+30b,20+30c,20+30d]: negative-1 [246] by {c=>-c-1}
-> solution [0,0,20,20],trivial(3) [0,0,50,50],trivial(3)
[3+30a,0+30b,0+30c,21+30d]: negative-1 [217] by {a=>-a-1}
[9+30a,0+30b,0+30c,21+30d]: negative-1 [216] by {a=>-a-1}
[21+30a,0+30b,0+30c,21+30d]: negative-1 [162] by {d=>-d-1}
-> solution [21,0,0,21],trivial(3) [51,0,0,51],trivial(3)
[27+30a,0+30b,0+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[0+30a,3+30b,0+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[15+30a,6+30b,0+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[0+30a,9+30b,0+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[15+30a,12+30b,0+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[6+30a,15+30b,0+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[12+30a,15+30b,0+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[18+30a,15+30b,0+30c,21+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,15+30b,0+30c,21+30d]: negative-1 [211] by {a=>-a-1}
[15+30a,18+30b,0+30c,21+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,21+30b,0+30c,21+30d]: negative-1 [215] by {b=>-b-1}
-> solution [0,21,0,21],trivial(3) [0,51,0,51],trivial(3)
[15+30a,24+30b,0+30c,21+30d]: negative-1 [239] by {b=>-b-1}
[0+30a,27+30b,0+30c,21+30d]: negative-1 [209] by {b=>-b-1}
[10+30a,10+30b,1+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,10+30b,1+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,1+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,1+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,5+30b,2+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,5+30b,2+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,10+30b,2+30c,21+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,10+30b,2+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[5+30a,20+30b,2+30c,21+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,2+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,25+30b,2+30c,21+30d]: negative-1 [231] by {b=>-b-1}
[20+30a,25+30b,2+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,0+30b,3+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[10+30a,5+30b,4+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,5+30b,4+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,10+30b,4+30c,21+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,10+30b,4+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[5+30a,20+30b,4+30c,21+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,4+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,25+30b,4+30c,21+30d]: negative-1 [231] by {b=>-b-1}
[20+30a,25+30b,4+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,2+30b,5+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,2+30b,5+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,4+30b,5+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,4+30b,5+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,8+30b,5+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,8+30b,5+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[2+30a,10+30b,5+30c,21+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,10+30b,5+30c,21+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,10+30b,5+30c,21+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,10+30b,5+30c,21+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,10+30b,5+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[22+30a,10+30b,5+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[26+30a,10+30b,5+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[28+30a,10+30b,5+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[10+30a,14+30b,5+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,14+30b,5+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,16+30b,5+30c,21+30d]: negative-1 [242] by {b=>-b-1}
[20+30a,16+30b,5+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[2+30a,20+30b,5+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[4+30a,20+30b,5+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[8+30a,20+30b,5+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[14+30a,20+30b,5+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[16+30a,20+30b,5+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[22+30a,20+30b,5+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[26+30a,20+30b,5+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[28+30a,20+30b,5+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,22+30b,5+30c,21+30d]: negative-1 [240] by {b=>-b-1}
[20+30a,22+30b,5+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,26+30b,5+30c,21+30d]: negative-1 [238] by {b=>-b-1}
[20+30a,26+30b,5+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,28+30b,5+30c,21+30d]: negative-1 [237] by {b=>-b-1}
[20+30a,28+30b,5+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,0+30b,6+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[0+30a,15+30b,6+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[10+30a,10+30b,7+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,10+30b,7+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,7+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,7+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,5+30b,8+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,5+30b,8+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,10+30b,8+30c,21+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,10+30b,8+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[5+30a,20+30b,8+30c,21+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,8+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,25+30b,8+30c,21+30d]: negative-1 [231] by {b=>-b-1}
[20+30a,25+30b,8+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,0+30b,9+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[10+30a,1+30b,10+30c,21+30d]: negative-1 [227] by {b=>-b-1}
[20+30a,1+30b,10+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,2+30b,10+30c,21+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,2+30b,10+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[5+30a,4+30b,10+30c,21+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,4+30b,10+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[2+30a,5+30b,10+30c,21+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,5+30b,10+30c,21+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,5+30b,10+30c,21+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,5+30b,10+30c,21+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,5+30b,10+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[22+30a,5+30b,10+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[26+30a,5+30b,10+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[28+30a,5+30b,10+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[10+30a,7+30b,10+30c,21+30d]: negative-1 [226] by {b=>-b-1}
[20+30a,7+30b,10+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,8+30b,10+30c,21+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,8+30b,10+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[1+30a,10+30b,10+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[7+30a,10+30b,10+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[11+30a,10+30b,10+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[13+30a,10+30b,10+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[17+30a,10+30b,10+30c,21+30d]: negative-1 [207] by {a=>-a-1}
[19+30a,10+30b,10+30c,21+30d]: negative-1 [206] by {a=>-a-1}
[23+30a,10+30b,10+30c,21+30d]: negative-1 [205] by {a=>-a-1}
[29+30a,10+30b,10+30c,21+30d]: negative-1 [204] by {a=>-a-1}
[10+30a,11+30b,10+30c,21+30d]: negative-1 [225] by {b=>-b-1}
[20+30a,11+30b,10+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,13+30b,10+30c,21+30d]: negative-1 [224] by {b=>-b-1}
[20+30a,13+30b,10+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,14+30b,10+30c,21+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,14+30b,10+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[5+30a,16+30b,10+30c,21+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,16+30b,10+30c,21+30d]: negative-1 [242] by {b=>-b-1}
[10+30a,17+30b,10+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,17+30b,10+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,19+30b,10+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,19+30b,10+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[1+30a,20+30b,10+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[7+30a,20+30b,10+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[11+30a,20+30b,10+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[13+30a,20+30b,10+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[17+30a,20+30b,10+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[19+30a,20+30b,10+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[23+30a,20+30b,10+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[29+30a,20+30b,10+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[5+30a,22+30b,10+30c,21+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,22+30b,10+30c,21+30d]: negative-1 [240] by {b=>-b-1}
[10+30a,23+30b,10+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,23+30b,10+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[2+30a,25+30b,10+30c,21+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,25+30b,10+30c,21+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,25+30b,10+30c,21+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,25+30b,10+30c,21+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,25+30b,10+30c,21+30d]: negative-1 [231] by {b=>-b-1}
[22+30a,25+30b,10+30c,21+30d]: negative-1 [231] by {b=>-b-1}
[26+30a,25+30b,10+30c,21+30d]: negative-1 [231] by {b=>-b-1}
[28+30a,25+30b,10+30c,21+30d]: negative-1 [231] by {b=>-b-1}
[5+30a,26+30b,10+30c,21+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,26+30b,10+30c,21+30d]: negative-1 [238] by {b=>-b-1}
[5+30a,28+30b,10+30c,21+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,28+30b,10+30c,21+30d]: negative-1 [237] by {b=>-b-1}
[10+30a,29+30b,10+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,29+30b,10+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,10+30b,11+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,10+30b,11+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,11+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,11+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,12+30c,21+30d]: negative-1 [243] by {c=>-c-1}
[0+30a,15+30b,12+30c,21+30d]: negative-1 [243] by {c=>-c-1}
[10+30a,10+30b,13+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,10+30b,13+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,13+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,13+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,5+30b,14+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,5+30b,14+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,10+30b,14+30c,21+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,10+30b,14+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[5+30a,20+30b,14+30c,21+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,14+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,25+30b,14+30c,21+30d]: negative-1 [231] by {b=>-b-1}
[20+30a,25+30b,14+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[6+30a,0+30b,15+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[12+30a,0+30b,15+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[18+30a,0+30b,15+30c,21+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,0+30b,15+30c,21+30d]: negative-1 [211] by {a=>-a-1}
[0+30a,6+30b,15+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[0+30a,12+30b,15+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[0+30a,18+30b,15+30c,21+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,24+30b,15+30c,21+30d]: negative-1 [239] by {b=>-b-1}
[10+30a,5+30b,16+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,5+30b,16+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,10+30b,16+30c,21+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,10+30b,16+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[5+30a,20+30b,16+30c,21+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,16+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,25+30b,16+30c,21+30d]: negative-1 [231] by {b=>-b-1}
[20+30a,25+30b,16+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,10+30b,17+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,10+30b,17+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,17+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,17+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,18+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[0+30a,15+30b,18+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[10+30a,10+30b,19+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,10+30b,19+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,19+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,19+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,1+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,1+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[5+30a,2+30b,20+30c,21+30d]: negative-1 [246] by {a=>-a-1,c=>-c-1}
[25+30a,2+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[5+30a,4+30b,20+30c,21+30d]: negative-1 [246] by {a=>-a-1,c=>-c-1}
[25+30a,4+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[2+30a,5+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[4+30a,5+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[8+30a,5+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[14+30a,5+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[16+30a,5+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[22+30a,5+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[26+30a,5+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[28+30a,5+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,7+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,7+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[5+30a,8+30b,20+30c,21+30d]: negative-1 [246] by {a=>-a-1,c=>-c-1}
[25+30a,8+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[1+30a,10+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[7+30a,10+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[11+30a,10+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[13+30a,10+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[17+30a,10+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[19+30a,10+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[23+30a,10+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[29+30a,10+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,11+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,11+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,13+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,13+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[5+30a,14+30b,20+30c,21+30d]: negative-1 [246] by {a=>-a-1,c=>-c-1}
[25+30a,14+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[5+30a,16+30b,20+30c,21+30d]: negative-1 [246] by {a=>-a-1,c=>-c-1}
[25+30a,16+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,17+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,17+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,19+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,19+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[1+30a,20+30b,20+30c,21+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[7+30a,20+30b,20+30c,21+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[11+30a,20+30b,20+30c,21+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[13+30a,20+30b,20+30c,21+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[17+30a,20+30b,20+30c,21+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[19+30a,20+30b,20+30c,21+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[23+30a,20+30b,20+30c,21+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[29+30a,20+30b,20+30c,21+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[5+30a,22+30b,20+30c,21+30d]: negative-1 [246] by {a=>-a-1,c=>-c-1}
[25+30a,22+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,23+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,23+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[2+30a,25+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[4+30a,25+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[8+30a,25+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[14+30a,25+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[16+30a,25+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[22+30a,25+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[26+30a,25+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[28+30a,25+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[5+30a,26+30b,20+30c,21+30d]: negative-1 [246] by {a=>-a-1,c=>-c-1}
[25+30a,26+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[5+30a,28+30b,20+30c,21+30d]: negative-1 [246] by {a=>-a-1,c=>-c-1}
[25+30a,28+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,29+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,29+30b,20+30c,21+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,0+30b,21+30c,21+30d]: negative-1 [162] by {d=>-d-1}
-> solution [0,0,21,21],trivial(3) [0,0,51,51],trivial(3)
[10+30a,5+30b,22+30c,21+30d]: negative-1 [197] by {c=>-c-1}
[20+30a,5+30b,22+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,10+30b,22+30c,21+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,10+30b,22+30c,21+30d]: negative-1 [197] by {c=>-c-1}
[5+30a,20+30b,22+30c,21+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,22+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,25+30b,22+30c,21+30d]: negative-1 [231] by {b=>-b-1}
[20+30a,25+30b,22+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,10+30b,23+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,10+30b,23+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,23+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,23+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,24+30c,21+30d]: negative-1 [228] by {c=>-c-1}
[0+30a,15+30b,24+30c,21+30d]: negative-1 [228] by {c=>-c-1}
[10+30a,2+30b,25+30c,21+30d]: negative-1 [245] by {c=>-c-1}
[20+30a,2+30b,25+30c,21+30d]: negative-1 [245] by {a=>-a-1,c=>-c-1}
[10+30a,4+30b,25+30c,21+30d]: negative-1 [245] by {c=>-c-1}
[20+30a,4+30b,25+30c,21+30d]: negative-1 [245] by {a=>-a-1,c=>-c-1}
[10+30a,8+30b,25+30c,21+30d]: negative-1 [245] by {c=>-c-1}
[20+30a,8+30b,25+30c,21+30d]: negative-1 [245] by {a=>-a-1,c=>-c-1}
[2+30a,10+30b,25+30c,21+30d]: negative-1 [245] by {c=>-c-1}
[4+30a,10+30b,25+30c,21+30d]: negative-1 [245] by {c=>-c-1}
[8+30a,10+30b,25+30c,21+30d]: negative-1 [245] by {c=>-c-1}
[14+30a,10+30b,25+30c,21+30d]: negative-1 [245] by {c=>-c-1}
[16+30a,10+30b,25+30c,21+30d]: negative-1 [245] by {c=>-c-1}
[22+30a,10+30b,25+30c,21+30d]: negative-1 [245] by {c=>-c-1}
[26+30a,10+30b,25+30c,21+30d]: negative-1 [245] by {c=>-c-1}
[28+30a,10+30b,25+30c,21+30d]: negative-1 [245] by {c=>-c-1}
[10+30a,14+30b,25+30c,21+30d]: negative-1 [245] by {c=>-c-1}
[20+30a,14+30b,25+30c,21+30d]: negative-1 [245] by {a=>-a-1,c=>-c-1}
[10+30a,16+30b,25+30c,21+30d]: negative-1 [245] by {c=>-c-1}
[20+30a,16+30b,25+30c,21+30d]: negative-1 [245] by {a=>-a-1,c=>-c-1}
[2+30a,20+30b,25+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[4+30a,20+30b,25+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[8+30a,20+30b,25+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[14+30a,20+30b,25+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[16+30a,20+30b,25+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[22+30a,20+30b,25+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[26+30a,20+30b,25+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[28+30a,20+30b,25+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,22+30b,25+30c,21+30d]: negative-1 [245] by {c=>-c-1}
[20+30a,22+30b,25+30c,21+30d]: negative-1 [245] by {a=>-a-1,c=>-c-1}
[10+30a,26+30b,25+30c,21+30d]: negative-1 [245] by {c=>-c-1}
[20+30a,26+30b,25+30c,21+30d]: negative-1 [245] by {a=>-a-1,c=>-c-1}
[10+30a,28+30b,25+30c,21+30d]: negative-1 [245] by {c=>-c-1}
[20+30a,28+30b,25+30c,21+30d]: negative-1 [245] by {a=>-a-1,c=>-c-1}
[10+30a,5+30b,26+30c,21+30d]: negative-1 [196] by {c=>-c-1}
[20+30a,5+30b,26+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,10+30b,26+30c,21+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,10+30b,26+30c,21+30d]: negative-1 [196] by {c=>-c-1}
[5+30a,20+30b,26+30c,21+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,26+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,25+30b,26+30c,21+30d]: negative-1 [231] by {b=>-b-1}
[20+30a,25+30b,26+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,0+30b,27+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[10+30a,5+30b,28+30c,21+30d]: negative-1 [195] by {c=>-c-1}
[20+30a,5+30b,28+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,10+30b,28+30c,21+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,10+30b,28+30c,21+30d]: negative-1 [195] by {c=>-c-1}
[5+30a,20+30b,28+30c,21+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,28+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,25+30b,28+30c,21+30d]: negative-1 [231] by {b=>-b-1}
[20+30a,25+30b,28+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,10+30b,29+30c,21+30d]: negative-1 [162] by {d=>-d-1}
[20+30a,10+30b,29+30c,21+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,29+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,29+30c,21+30d]: negative-1 [246] by {b=>-b-1}
[2+30a,0+30b,0+30c,22+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,0+30b,0+30c,22+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,0+30b,0+30c,22+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,0+30b,0+30c,22+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,0+30b,0+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[22+30a,0+30b,0+30c,22+30d]: negative-1 [134] by {d=>-d-1}
-> solution [22,0,0,22],trivial(3) [52,0,0,52],trivial(3)
[26+30a,0+30b,0+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[28+30a,0+30b,0+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[0+30a,2+30b,0+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[0+30a,4+30b,0+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[10+30a,6+30b,0+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[20+30a,6+30b,0+30c,22+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,8+30b,0+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[6+30a,10+30b,0+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[12+30a,10+30b,0+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[18+30a,10+30b,0+30c,22+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,10+30b,0+30c,22+30d]: negative-1 [211] by {a=>-a-1}
[10+30a,12+30b,0+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[20+30a,12+30b,0+30c,22+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,14+30b,0+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[0+30a,16+30b,0+30c,22+30d]: negative-1 [242] by {b=>-b-1}
[10+30a,18+30b,0+30c,22+30d]: negative-1 [229] by {b=>-b-1}
[20+30a,18+30b,0+30c,22+30d]: negative-1 [245] by {a=>-a-1}
[6+30a,20+30b,0+30c,22+30d]: negative-1 [246] by {b=>-b-1}
[12+30a,20+30b,0+30c,22+30d]: negative-1 [246] by {b=>-b-1}
[18+30a,20+30b,0+30c,22+30d]: negative-1 [246] by {b=>-b-1}
[24+30a,20+30b,0+30c,22+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,22+30b,0+30c,22+30d]: negative-1 [240] by {b=>-b-1}
-> solution [0,22,0,22],trivial(3) [0,52,0,52],trivial(3)
[10+30a,24+30b,0+30c,22+30d]: negative-1 [239] by {b=>-b-1}
[20+30a,24+30b,0+30c,22+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,26+30b,0+30c,22+30d]: negative-1 [238] by {b=>-b-1}
[0+30a,28+30b,0+30c,22+30d]: negative-1 [237] by {b=>-b-1}
[0+30a,0+30b,2+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[0+30a,0+30b,4+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[10+30a,0+30b,6+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[20+30a,0+30b,6+30c,22+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,6+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[0+30a,20+30b,6+30c,22+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,8+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[6+30a,0+30b,10+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[12+30a,0+30b,10+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[18+30a,0+30b,10+30c,22+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,0+30b,10+30c,22+30d]: negative-1 [211] by {a=>-a-1}
[0+30a,6+30b,10+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[0+30a,12+30b,10+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[0+30a,18+30b,10+30c,22+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,24+30b,10+30c,22+30d]: negative-1 [239] by {b=>-b-1}
[10+30a,0+30b,12+30c,22+30d]: negative-1 [243] by {c=>-c-1}
[20+30a,0+30b,12+30c,22+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,12+30c,22+30d]: negative-1 [243] by {c=>-c-1}
[0+30a,20+30b,12+30c,22+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,14+30c,22+30d]: negative-1 [161] by {c=>-c-1}
[0+30a,0+30b,16+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[10+30a,0+30b,18+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[20+30a,0+30b,18+30c,22+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,18+30c,22+30d]: negative-1 [134] by {d=>-d-1}
[0+30a,20+30b,18+30c,22+30d]: negative-1 [246] by {b=>-b-1}
[6+30a,0+30b,20+30c,22+30d]: negative-1 [246] by {c=>-c-1}
[12+30a,0+30b,20+30c,22+30d]: negative-1 [246] by {c=>-c-1}
[18+30a,0+30b,20+30c,22+30d]: negative-1 [246] by {c=>-c-1}
[24+30a,0+30b,20+30c,22+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,6+30b,20+30c,22+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,12+30b,20+30c,22+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,18+30b,20+30c,22+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,24+30b,20+30c,22+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,0+30b,22+30c,22+30d]: negative-1 [197] by {c=>-c-1}
-> solution [0,0,22,22],trivial(3) [0,0,52,52],trivial(3)
[10+30a,0+30b,24+30c,22+30d]: negative-1 [228] by {c=>-c-1}
[20+30a,0+30b,24+30c,22+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,24+30c,22+30d]: negative-1 [228] by {c=>-c-1}
[0+30a,20+30b,24+30c,22+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,26+30c,22+30d]: negative-1 [196] by {c=>-c-1}
[0+30a,0+30b,28+30c,22+30d]: negative-1 [195] by {c=>-c-1}
[1+30a,0+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[7+30a,0+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[11+30a,0+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[13+30a,0+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[17+30a,0+30b,0+30c,23+30d]: negative-1 [207] by {a=>-a-1}
[19+30a,0+30b,0+30c,23+30d]: negative-1 [206] by {a=>-a-1}
[23+30a,0+30b,0+30c,23+30d]: negative-1 [205] by {a=>-a-1}
-> solution [23,0,0,23],trivial(3) [53,0,0,53],trivial(3)
[29+30a,0+30b,0+30c,23+30d]: negative-1 [204] by {a=>-a-1}
[0+30a,1+30b,0+30c,23+30d]: negative-1 [227] by {b=>-b-1}
[15+30a,2+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[10+30a,3+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[20+30a,3+30b,0+30c,23+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,4+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[6+30a,5+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[12+30a,5+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[18+30a,5+30b,0+30c,23+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,5+30b,0+30c,23+30d]: negative-1 [211] by {a=>-a-1}
[5+30a,6+30b,0+30c,23+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,6+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,7+30b,0+30c,23+30d]: negative-1 [226] by {b=>-b-1}
[15+30a,8+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[10+30a,9+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[20+30a,9+30b,0+30c,23+30d]: negative-1 [245] by {a=>-a-1}
[3+30a,10+30b,0+30c,23+30d]: negative-1 [217] by {a=>-a-1}
[9+30a,10+30b,0+30c,23+30d]: negative-1 [216] by {a=>-a-1}
[21+30a,10+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[27+30a,10+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,11+30b,0+30c,23+30d]: negative-1 [225] by {b=>-b-1}
[5+30a,12+30b,0+30c,23+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,12+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,13+30b,0+30c,23+30d]: negative-1 [224] by {b=>-b-1}
[15+30a,14+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[2+30a,15+30b,0+30c,23+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,15+30b,0+30c,23+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,15+30b,0+30c,23+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,15+30b,0+30c,23+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,15+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[22+30a,15+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[26+30a,15+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[28+30a,15+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[15+30a,16+30b,0+30c,23+30d]: negative-1 [242] by {b=>-b-1}
[0+30a,17+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[5+30a,18+30b,0+30c,23+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,18+30b,0+30c,23+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,19+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[3+30a,20+30b,0+30c,23+30d]: negative-1 [246] by {b=>-b-1}
[9+30a,20+30b,0+30c,23+30d]: negative-1 [246] by {b=>-b-1}
[21+30a,20+30b,0+30c,23+30d]: negative-1 [246] by {b=>-b-1}
[27+30a,20+30b,0+30c,23+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,21+30b,0+30c,23+30d]: negative-1 [215] by {b=>-b-1}
[20+30a,21+30b,0+30c,23+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,22+30b,0+30c,23+30d]: negative-1 [240] by {b=>-b-1}
[0+30a,23+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
-> solution [0,23,0,23],trivial(3) [0,53,0,53],trivial(3)
[5+30a,24+30b,0+30c,23+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,24+30b,0+30c,23+30d]: negative-1 [239] by {b=>-b-1}
[6+30a,25+30b,0+30c,23+30d]: negative-1 [231] by {b=>-b-1}
[12+30a,25+30b,0+30c,23+30d]: negative-1 [231] by {b=>-b-1}
[18+30a,25+30b,0+30c,23+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,25+30b,0+30c,23+30d]: negative-1 [231] by {b=>-b-1}
[15+30a,26+30b,0+30c,23+30d]: negative-1 [238] by {b=>-b-1}
[10+30a,27+30b,0+30c,23+30d]: negative-1 [209] by {b=>-b-1}
[20+30a,27+30b,0+30c,23+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,28+30b,0+30c,23+30d]: negative-1 [237] by {b=>-b-1}
[0+30a,29+30b,0+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,0+30b,1+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[15+30a,0+30b,2+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,15+30b,2+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[10+30a,0+30b,3+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[20+30a,0+30b,3+30c,23+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,3+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,20+30b,3+30c,23+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,4+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,15+30b,4+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[6+30a,0+30b,5+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[12+30a,0+30b,5+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[18+30a,0+30b,5+30c,23+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,0+30b,5+30c,23+30d]: negative-1 [211] by {a=>-a-1}
[0+30a,6+30b,5+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,12+30b,5+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,18+30b,5+30c,23+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,24+30b,5+30c,23+30d]: negative-1 [239] by {b=>-b-1}
[5+30a,0+30b,6+30c,23+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,0+30b,6+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,5+30b,6+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[15+30a,10+30b,6+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[10+30a,15+30b,6+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[20+30a,15+30b,6+30c,23+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,20+30b,6+30c,23+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,25+30b,6+30c,23+30d]: negative-1 [231] by {b=>-b-1}
[0+30a,0+30b,7+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[15+30a,0+30b,8+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,15+30b,8+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[10+30a,0+30b,9+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[20+30a,0+30b,9+30c,23+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,9+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,20+30b,9+30c,23+30d]: negative-1 [246] by {b=>-b-1}
[3+30a,0+30b,10+30c,23+30d]: negative-1 [217] by {a=>-a-1}
[9+30a,0+30b,10+30c,23+30d]: negative-1 [216] by {a=>-a-1}
[21+30a,0+30b,10+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[27+30a,0+30b,10+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,3+30b,10+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[15+30a,6+30b,10+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,9+30b,10+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[15+30a,12+30b,10+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[6+30a,15+30b,10+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[12+30a,15+30b,10+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[18+30a,15+30b,10+30c,23+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,15+30b,10+30c,23+30d]: negative-1 [211] by {a=>-a-1}
[15+30a,18+30b,10+30c,23+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,21+30b,10+30c,23+30d]: negative-1 [215] by {b=>-b-1}
[15+30a,24+30b,10+30c,23+30d]: negative-1 [239] by {b=>-b-1}
[0+30a,27+30b,10+30c,23+30d]: negative-1 [209] by {b=>-b-1}
[0+30a,0+30b,11+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[5+30a,0+30b,12+30c,23+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,0+30b,12+30c,23+30d]: negative-1 [243] by {c=>-c-1}
[0+30a,5+30b,12+30c,23+30d]: negative-1 [243] by {c=>-c-1}
[15+30a,10+30b,12+30c,23+30d]: negative-1 [243] by {c=>-c-1}
[10+30a,15+30b,12+30c,23+30d]: negative-1 [243] by {c=>-c-1}
[20+30a,15+30b,12+30c,23+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,20+30b,12+30c,23+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,25+30b,12+30c,23+30d]: negative-1 [243] by {c=>-c-1}
[0+30a,0+30b,13+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[15+30a,0+30b,14+30c,23+30d]: negative-1 [161] by {c=>-c-1}
[0+30a,15+30b,14+30c,23+30d]: negative-1 [161] by {c=>-c-1}
[2+30a,0+30b,15+30c,23+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,0+30b,15+30c,23+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,0+30b,15+30c,23+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,0+30b,15+30c,23+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,0+30b,15+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[22+30a,0+30b,15+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[26+30a,0+30b,15+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[28+30a,0+30b,15+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,2+30b,15+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,4+30b,15+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[10+30a,6+30b,15+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[20+30a,6+30b,15+30c,23+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,8+30b,15+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[6+30a,10+30b,15+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[12+30a,10+30b,15+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[18+30a,10+30b,15+30c,23+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,10+30b,15+30c,23+30d]: negative-1 [211] by {a=>-a-1}
[10+30a,12+30b,15+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[20+30a,12+30b,15+30c,23+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,14+30b,15+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,16+30b,15+30c,23+30d]: negative-1 [242] by {b=>-b-1}
[10+30a,18+30b,15+30c,23+30d]: negative-1 [229] by {b=>-b-1}
[20+30a,18+30b,15+30c,23+30d]: negative-1 [245] by {a=>-a-1}
[6+30a,20+30b,15+30c,23+30d]: negative-1 [246] by {b=>-b-1}
[12+30a,20+30b,15+30c,23+30d]: negative-1 [246] by {b=>-b-1}
[18+30a,20+30b,15+30c,23+30d]: negative-1 [246] by {b=>-b-1}
[24+30a,20+30b,15+30c,23+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,22+30b,15+30c,23+30d]: negative-1 [240] by {b=>-b-1}
[10+30a,24+30b,15+30c,23+30d]: negative-1 [239] by {b=>-b-1}
[20+30a,24+30b,15+30c,23+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,26+30b,15+30c,23+30d]: negative-1 [238] by {b=>-b-1}
[0+30a,28+30b,15+30c,23+30d]: negative-1 [237] by {b=>-b-1}
[15+30a,0+30b,16+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,15+30b,16+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,0+30b,17+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[5+30a,0+30b,18+30c,23+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,0+30b,18+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,5+30b,18+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[15+30a,10+30b,18+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[10+30a,15+30b,18+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[20+30a,15+30b,18+30c,23+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,20+30b,18+30c,23+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,25+30b,18+30c,23+30d]: negative-1 [231] by {b=>-b-1}
[0+30a,0+30b,19+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[3+30a,0+30b,20+30c,23+30d]: negative-1 [246] by {c=>-c-1}
[9+30a,0+30b,20+30c,23+30d]: negative-1 [246] by {c=>-c-1}
[21+30a,0+30b,20+30c,23+30d]: negative-1 [246] by {c=>-c-1}
[27+30a,0+30b,20+30c,23+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,3+30b,20+30c,23+30d]: negative-1 [246] by {c=>-c-1}
[15+30a,6+30b,20+30c,23+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,9+30b,20+30c,23+30d]: negative-1 [246] by {c=>-c-1}
[15+30a,12+30b,20+30c,23+30d]: negative-1 [246] by {c=>-c-1}
[6+30a,15+30b,20+30c,23+30d]: negative-1 [246] by {c=>-c-1}
[12+30a,15+30b,20+30c,23+30d]: negative-1 [246] by {c=>-c-1}
[18+30a,15+30b,20+30c,23+30d]: negative-1 [246] by {c=>-c-1}
[24+30a,15+30b,20+30c,23+30d]: negative-1 [246] by {c=>-c-1}
[15+30a,18+30b,20+30c,23+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,21+30b,20+30c,23+30d]: negative-1 [246] by {c=>-c-1}
[15+30a,24+30b,20+30c,23+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,27+30b,20+30c,23+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,0+30b,21+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[20+30a,0+30b,21+30c,23+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,21+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,20+30b,21+30c,23+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,22+30c,23+30d]: negative-1 [197] by {c=>-c-1}
[0+30a,15+30b,22+30c,23+30d]: negative-1 [197] by {c=>-c-1}
[0+30a,0+30b,23+30c,23+30d]: negative-1 [152] by {c=>-c-1}
-> solution [0,0,23,23],trivial(3) [0,0,53,53],trivial(3)
[5+30a,0+30b,24+30c,23+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,0+30b,24+30c,23+30d]: negative-1 [228] by {c=>-c-1}
[0+30a,5+30b,24+30c,23+30d]: negative-1 [228] by {c=>-c-1}
[15+30a,10+30b,24+30c,23+30d]: negative-1 [228] by {c=>-c-1}
[10+30a,15+30b,24+30c,23+30d]: negative-1 [228] by {c=>-c-1}
[20+30a,15+30b,24+30c,23+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,20+30b,24+30c,23+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,25+30b,24+30c,23+30d]: negative-1 [231] by {b=>-b-1}
[6+30a,0+30b,25+30c,23+30d]: negative-1 [245] by {c=>-c-1}
[12+30a,0+30b,25+30c,23+30d]: negative-1 [245] by {c=>-c-1}
[18+30a,0+30b,25+30c,23+30d]: negative-1 [245] by {c=>-c-1}
[24+30a,0+30b,25+30c,23+30d]: negative-1 [245] by {c=>-c-1}
[0+30a,6+30b,25+30c,23+30d]: negative-1 [245] by {c=>-c-1}
[0+30a,12+30b,25+30c,23+30d]: negative-1 [245] by {c=>-c-1}
[0+30a,18+30b,25+30c,23+30d]: negative-1 [245] by {c=>-c-1}
[0+30a,24+30b,25+30c,23+30d]: negative-1 [245] by {c=>-c-1}
[15+30a,0+30b,26+30c,23+30d]: negative-1 [196] by {c=>-c-1}
[0+30a,15+30b,26+30c,23+30d]: negative-1 [196] by {c=>-c-1}
[10+30a,0+30b,27+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[20+30a,0+30b,27+30c,23+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,27+30c,23+30d]: negative-1 [123] by {d=>-d-1}
[0+30a,20+30b,27+30c,23+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,28+30c,23+30d]: negative-1 [195] by {c=>-c-1}
[0+30a,15+30b,28+30c,23+30d]: negative-1 [195] by {c=>-c-1}
[0+30a,0+30b,29+30c,23+30d]: negative-1 [141] by {c=>-c-1}
[6+30a,0+30b,0+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[12+30a,0+30b,0+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[18+30a,0+30b,0+30c,24+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,0+30b,0+30c,24+30d]: negative-1 [211] by {a=>-a-1}
-> solution [24,0,0,24],trivial(3) [54,0,0,54],trivial(3)
[0+30a,6+30b,0+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[0+30a,12+30b,0+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[0+30a,18+30b,0+30c,24+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,24+30b,0+30c,24+30d]: negative-1 [239] by {b=>-b-1}
-> solution [0,24,0,24],trivial(3) [0,54,0,54],trivial(3)
[10+30a,10+30b,2+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[20+30a,10+30b,2+30c,24+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,2+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,2+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,10+30b,4+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[20+30a,10+30b,4+30c,24+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,4+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,4+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,6+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[10+30a,10+30b,8+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[20+30a,10+30b,8+30c,24+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,8+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,8+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,2+30b,10+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[20+30a,2+30b,10+30c,24+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,4+30b,10+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[20+30a,4+30b,10+30c,24+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,8+30b,10+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[20+30a,8+30b,10+30c,24+30d]: negative-1 [245] by {a=>-a-1}
[2+30a,10+30b,10+30c,24+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,10+30b,10+30c,24+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,10+30b,10+30c,24+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,10+30b,10+30c,24+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,10+30b,10+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[22+30a,10+30b,10+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[26+30a,10+30b,10+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[28+30a,10+30b,10+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[10+30a,14+30b,10+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[20+30a,14+30b,10+30c,24+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,16+30b,10+30c,24+30d]: negative-1 [242] by {b=>-b-1}
[20+30a,16+30b,10+30c,24+30d]: negative-1 [245] by {a=>-a-1}
[2+30a,20+30b,10+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[4+30a,20+30b,10+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[8+30a,20+30b,10+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[14+30a,20+30b,10+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[16+30a,20+30b,10+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[22+30a,20+30b,10+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[26+30a,20+30b,10+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[28+30a,20+30b,10+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,22+30b,10+30c,24+30d]: negative-1 [240] by {b=>-b-1}
[20+30a,22+30b,10+30c,24+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,26+30b,10+30c,24+30d]: negative-1 [238] by {b=>-b-1}
[20+30a,26+30b,10+30c,24+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,28+30b,10+30c,24+30d]: negative-1 [237] by {b=>-b-1}
[20+30a,28+30b,10+30c,24+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,0+30b,12+30c,24+30d]: negative-1 [243] by {c=>-c-1}
[10+30a,10+30b,14+30c,24+30d]: negative-1 [161] by {c=>-c-1}
[20+30a,10+30b,14+30c,24+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,14+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,14+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,10+30b,16+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[20+30a,10+30b,16+30c,24+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,16+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,16+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,18+30c,24+30d]: negative-1 [94] by {d=>-d-1}
[10+30a,2+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,2+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,4+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,4+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,8+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,8+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[2+30a,10+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[4+30a,10+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[8+30a,10+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[14+30a,10+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[16+30a,10+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[22+30a,10+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[26+30a,10+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[28+30a,10+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,14+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,14+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,16+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,16+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[2+30a,20+30b,20+30c,24+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[4+30a,20+30b,20+30c,24+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[8+30a,20+30b,20+30c,24+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[14+30a,20+30b,20+30c,24+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[16+30a,20+30b,20+30c,24+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[22+30a,20+30b,20+30c,24+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[26+30a,20+30b,20+30c,24+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[28+30a,20+30b,20+30c,24+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[10+30a,22+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,22+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,26+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,26+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,28+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,28+30b,20+30c,24+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,10+30b,22+30c,24+30d]: negative-1 [197] by {c=>-c-1}
[20+30a,10+30b,22+30c,24+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,22+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,22+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,24+30c,24+30d]: negative-1 [228] by {c=>-c-1}
-> solution [0,0,24,24],trivial(3) [0,0,54,54],trivial(3)
[10+30a,10+30b,26+30c,24+30d]: negative-1 [196] by {c=>-c-1}
[20+30a,10+30b,26+30c,24+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,26+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,26+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,10+30b,28+30c,24+30d]: negative-1 [195] by {c=>-c-1}
[20+30a,10+30b,28+30c,24+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,28+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,28+30c,24+30d]: negative-1 [246] by {b=>-b-1}
[5+30a,0+30b,0+30c,25+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,0+30b,0+30c,25+30d]: negative-1 [83] by {d=>-d-1}
-> solution [25,0,0,25],trivial(3) [55,0,0,55],trivial(3)
[0+30a,5+30b,0+30c,25+30d]: negative-1 [83] by {d=>-d-1}
[15+30a,10+30b,0+30c,25+30d]: negative-1 [83] by {d=>-d-1}
[10+30a,15+30b,0+30c,25+30d]: negative-1 [83] by {d=>-d-1}
[20+30a,15+30b,0+30c,25+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,20+30b,0+30c,25+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,25+30b,0+30c,25+30d]: negative-1 [231] by {b=>-b-1}
-> solution [0,25,0,25],trivial(3) [0,55,0,55],trivial(3)
[0+30a,0+30b,5+30c,25+30d]: negative-1 [83] by {d=>-d-1}
[15+30a,0+30b,10+30c,25+30d]: negative-1 [83] by {d=>-d-1}
[0+30a,15+30b,10+30c,25+30d]: negative-1 [83] by {d=>-d-1}
[10+30a,0+30b,15+30c,25+30d]: negative-1 [83] by {d=>-d-1}
[20+30a,0+30b,15+30c,25+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,15+30c,25+30d]: negative-1 [83] by {d=>-d-1}
[0+30a,20+30b,15+30c,25+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,20+30c,25+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,15+30b,20+30c,25+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,0+30b,25+30c,25+30d]: negative-1 [245] by {c=>-c-1}
-> solution [0,0,25,25],trivial(3) [0,0,55,55],trivial(3)
[2+30a,0+30b,0+30c,26+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,0+30b,0+30c,26+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,0+30b,0+30c,26+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,0+30b,0+30c,26+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,0+30b,0+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[22+30a,0+30b,0+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[26+30a,0+30b,0+30c,26+30d]: negative-1 [80] by {d=>-d-1}
-> solution [26,0,0,26],trivial(3) [56,0,0,56],trivial(3)
[28+30a,0+30b,0+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[0+30a,2+30b,0+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[0+30a,4+30b,0+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[10+30a,6+30b,0+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[20+30a,6+30b,0+30c,26+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,8+30b,0+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[6+30a,10+30b,0+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[12+30a,10+30b,0+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[18+30a,10+30b,0+30c,26+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,10+30b,0+30c,26+30d]: negative-1 [211] by {a=>-a-1}
[10+30a,12+30b,0+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[20+30a,12+30b,0+30c,26+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,14+30b,0+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[0+30a,16+30b,0+30c,26+30d]: negative-1 [242] by {b=>-b-1}
[10+30a,18+30b,0+30c,26+30d]: negative-1 [229] by {b=>-b-1}
[20+30a,18+30b,0+30c,26+30d]: negative-1 [245] by {a=>-a-1}
[6+30a,20+30b,0+30c,26+30d]: negative-1 [246] by {b=>-b-1}
[12+30a,20+30b,0+30c,26+30d]: negative-1 [246] by {b=>-b-1}
[18+30a,20+30b,0+30c,26+30d]: negative-1 [246] by {b=>-b-1}
[24+30a,20+30b,0+30c,26+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,22+30b,0+30c,26+30d]: negative-1 [240] by {b=>-b-1}
[10+30a,24+30b,0+30c,26+30d]: negative-1 [239] by {b=>-b-1}
[20+30a,24+30b,0+30c,26+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,26+30b,0+30c,26+30d]: negative-1 [238] by {b=>-b-1}
-> solution [0,26,0,26],trivial(3) [0,56,0,56],trivial(3)
[0+30a,28+30b,0+30c,26+30d]: negative-1 [237] by {b=>-b-1}
[0+30a,0+30b,2+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[0+30a,0+30b,4+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[10+30a,0+30b,6+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[20+30a,0+30b,6+30c,26+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,6+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[0+30a,20+30b,6+30c,26+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,8+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[6+30a,0+30b,10+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[12+30a,0+30b,10+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[18+30a,0+30b,10+30c,26+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,0+30b,10+30c,26+30d]: negative-1 [211] by {a=>-a-1}
[0+30a,6+30b,10+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[0+30a,12+30b,10+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[0+30a,18+30b,10+30c,26+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,24+30b,10+30c,26+30d]: negative-1 [239] by {b=>-b-1}
[10+30a,0+30b,12+30c,26+30d]: negative-1 [243] by {c=>-c-1}
[20+30a,0+30b,12+30c,26+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,12+30c,26+30d]: negative-1 [243] by {c=>-c-1}
[0+30a,20+30b,12+30c,26+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,14+30c,26+30d]: negative-1 [161] by {c=>-c-1}
[0+30a,0+30b,16+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[10+30a,0+30b,18+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[20+30a,0+30b,18+30c,26+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,18+30c,26+30d]: negative-1 [80] by {d=>-d-1}
[0+30a,20+30b,18+30c,26+30d]: negative-1 [246] by {b=>-b-1}
[6+30a,0+30b,20+30c,26+30d]: negative-1 [246] by {c=>-c-1}
[12+30a,0+30b,20+30c,26+30d]: negative-1 [246] by {c=>-c-1}
[18+30a,0+30b,20+30c,26+30d]: negative-1 [246] by {c=>-c-1}
[24+30a,0+30b,20+30c,26+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,6+30b,20+30c,26+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,12+30b,20+30c,26+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,18+30b,20+30c,26+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,24+30b,20+30c,26+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,0+30b,22+30c,26+30d]: negative-1 [197] by {c=>-c-1}
[10+30a,0+30b,24+30c,26+30d]: negative-1 [228] by {c=>-c-1}
[20+30a,0+30b,24+30c,26+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,24+30c,26+30d]: negative-1 [228] by {c=>-c-1}
[0+30a,20+30b,24+30c,26+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,26+30c,26+30d]: negative-1 [196] by {c=>-c-1}
-> solution [0,0,26,26],trivial(3) [0,0,56,56],trivial(3)
[0+30a,0+30b,28+30c,26+30d]: negative-1 [195] by {c=>-c-1}
[3+30a,0+30b,0+30c,27+30d]: negative-1 [217] by {a=>-a-1}
[9+30a,0+30b,0+30c,27+30d]: negative-1 [216] by {a=>-a-1}
[21+30a,0+30b,0+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[27+30a,0+30b,0+30c,27+30d]: negative-1 [69] by {d=>-d-1}
-> solution [27,0,0,27],trivial(3) [57,0,0,57],trivial(3)
[0+30a,3+30b,0+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[15+30a,6+30b,0+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[0+30a,9+30b,0+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[15+30a,12+30b,0+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[6+30a,15+30b,0+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[12+30a,15+30b,0+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[18+30a,15+30b,0+30c,27+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,15+30b,0+30c,27+30d]: negative-1 [211] by {a=>-a-1}
[15+30a,18+30b,0+30c,27+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,21+30b,0+30c,27+30d]: negative-1 [215] by {b=>-b-1}
[15+30a,24+30b,0+30c,27+30d]: negative-1 [239] by {b=>-b-1}
[0+30a,27+30b,0+30c,27+30d]: negative-1 [209] by {b=>-b-1}
-> solution [0,27,0,27],trivial(3) [0,57,0,57],trivial(3)
[10+30a,10+30b,1+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,10+30b,1+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,1+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,1+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,5+30b,2+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,5+30b,2+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,10+30b,2+30c,27+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,10+30b,2+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[5+30a,20+30b,2+30c,27+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,2+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,25+30b,2+30c,27+30d]: negative-1 [231] by {b=>-b-1}
[20+30a,25+30b,2+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,0+30b,3+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[10+30a,5+30b,4+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,5+30b,4+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,10+30b,4+30c,27+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,10+30b,4+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[5+30a,20+30b,4+30c,27+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,4+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,25+30b,4+30c,27+30d]: negative-1 [231] by {b=>-b-1}
[20+30a,25+30b,4+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,2+30b,5+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,2+30b,5+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,4+30b,5+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,4+30b,5+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,8+30b,5+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,8+30b,5+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[2+30a,10+30b,5+30c,27+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,10+30b,5+30c,27+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,10+30b,5+30c,27+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,10+30b,5+30c,27+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,10+30b,5+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[22+30a,10+30b,5+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[26+30a,10+30b,5+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[28+30a,10+30b,5+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[10+30a,14+30b,5+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,14+30b,5+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,16+30b,5+30c,27+30d]: negative-1 [242] by {b=>-b-1}
[20+30a,16+30b,5+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[2+30a,20+30b,5+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[4+30a,20+30b,5+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[8+30a,20+30b,5+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[14+30a,20+30b,5+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[16+30a,20+30b,5+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[22+30a,20+30b,5+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[26+30a,20+30b,5+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[28+30a,20+30b,5+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,22+30b,5+30c,27+30d]: negative-1 [240] by {b=>-b-1}
[20+30a,22+30b,5+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,26+30b,5+30c,27+30d]: negative-1 [238] by {b=>-b-1}
[20+30a,26+30b,5+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,28+30b,5+30c,27+30d]: negative-1 [237] by {b=>-b-1}
[20+30a,28+30b,5+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,0+30b,6+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[0+30a,15+30b,6+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[10+30a,10+30b,7+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,10+30b,7+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,7+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,7+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,5+30b,8+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,5+30b,8+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,10+30b,8+30c,27+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,10+30b,8+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[5+30a,20+30b,8+30c,27+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,8+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,25+30b,8+30c,27+30d]: negative-1 [231] by {b=>-b-1}
[20+30a,25+30b,8+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,0+30b,9+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[10+30a,1+30b,10+30c,27+30d]: negative-1 [227] by {b=>-b-1}
[20+30a,1+30b,10+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,2+30b,10+30c,27+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,2+30b,10+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[5+30a,4+30b,10+30c,27+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,4+30b,10+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[2+30a,5+30b,10+30c,27+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,5+30b,10+30c,27+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,5+30b,10+30c,27+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,5+30b,10+30c,27+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,5+30b,10+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[22+30a,5+30b,10+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[26+30a,5+30b,10+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[28+30a,5+30b,10+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[10+30a,7+30b,10+30c,27+30d]: negative-1 [226] by {b=>-b-1}
[20+30a,7+30b,10+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,8+30b,10+30c,27+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,8+30b,10+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[1+30a,10+30b,10+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[7+30a,10+30b,10+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[11+30a,10+30b,10+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[13+30a,10+30b,10+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[17+30a,10+30b,10+30c,27+30d]: negative-1 [207] by {a=>-a-1}
[19+30a,10+30b,10+30c,27+30d]: negative-1 [206] by {a=>-a-1}
[23+30a,10+30b,10+30c,27+30d]: negative-1 [205] by {a=>-a-1}
[29+30a,10+30b,10+30c,27+30d]: negative-1 [204] by {a=>-a-1}
[10+30a,11+30b,10+30c,27+30d]: negative-1 [225] by {b=>-b-1}
[20+30a,11+30b,10+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,13+30b,10+30c,27+30d]: negative-1 [224] by {b=>-b-1}
[20+30a,13+30b,10+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,14+30b,10+30c,27+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,14+30b,10+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[5+30a,16+30b,10+30c,27+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,16+30b,10+30c,27+30d]: negative-1 [242] by {b=>-b-1}
[10+30a,17+30b,10+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,17+30b,10+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,19+30b,10+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,19+30b,10+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[1+30a,20+30b,10+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[7+30a,20+30b,10+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[11+30a,20+30b,10+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[13+30a,20+30b,10+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[17+30a,20+30b,10+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[19+30a,20+30b,10+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[23+30a,20+30b,10+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[29+30a,20+30b,10+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[5+30a,22+30b,10+30c,27+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,22+30b,10+30c,27+30d]: negative-1 [240] by {b=>-b-1}
[10+30a,23+30b,10+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,23+30b,10+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[2+30a,25+30b,10+30c,27+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,25+30b,10+30c,27+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,25+30b,10+30c,27+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,25+30b,10+30c,27+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,25+30b,10+30c,27+30d]: negative-1 [231] by {b=>-b-1}
[22+30a,25+30b,10+30c,27+30d]: negative-1 [231] by {b=>-b-1}
[26+30a,25+30b,10+30c,27+30d]: negative-1 [231] by {b=>-b-1}
[28+30a,25+30b,10+30c,27+30d]: negative-1 [231] by {b=>-b-1}
[5+30a,26+30b,10+30c,27+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,26+30b,10+30c,27+30d]: negative-1 [238] by {b=>-b-1}
[5+30a,28+30b,10+30c,27+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,28+30b,10+30c,27+30d]: negative-1 [237] by {b=>-b-1}
[10+30a,29+30b,10+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,29+30b,10+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,10+30b,11+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,10+30b,11+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,11+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,11+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,12+30c,27+30d]: negative-1 [243] by {c=>-c-1}
[0+30a,15+30b,12+30c,27+30d]: negative-1 [243] by {c=>-c-1}
[10+30a,10+30b,13+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,10+30b,13+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,13+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,13+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,5+30b,14+30c,27+30d]: negative-1 [161] by {c=>-c-1}
[20+30a,5+30b,14+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,10+30b,14+30c,27+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,10+30b,14+30c,27+30d]: negative-1 [161] by {c=>-c-1}
[5+30a,20+30b,14+30c,27+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,14+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,25+30b,14+30c,27+30d]: negative-1 [231] by {b=>-b-1}
[20+30a,25+30b,14+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[6+30a,0+30b,15+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[12+30a,0+30b,15+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[18+30a,0+30b,15+30c,27+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,0+30b,15+30c,27+30d]: negative-1 [211] by {a=>-a-1}
[0+30a,6+30b,15+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[0+30a,12+30b,15+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[0+30a,18+30b,15+30c,27+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,24+30b,15+30c,27+30d]: negative-1 [239] by {b=>-b-1}
[10+30a,5+30b,16+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,5+30b,16+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,10+30b,16+30c,27+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,10+30b,16+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[5+30a,20+30b,16+30c,27+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,16+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,25+30b,16+30c,27+30d]: negative-1 [231] by {b=>-b-1}
[20+30a,25+30b,16+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,10+30b,17+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,10+30b,17+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,17+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,17+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,18+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[0+30a,15+30b,18+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[10+30a,10+30b,19+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[20+30a,10+30b,19+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,19+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,19+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,1+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,1+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[5+30a,2+30b,20+30c,27+30d]: negative-1 [246] by {a=>-a-1,c=>-c-1}
[25+30a,2+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[5+30a,4+30b,20+30c,27+30d]: negative-1 [246] by {a=>-a-1,c=>-c-1}
[25+30a,4+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[2+30a,5+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[4+30a,5+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[8+30a,5+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[14+30a,5+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[16+30a,5+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[22+30a,5+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[26+30a,5+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[28+30a,5+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,7+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,7+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[5+30a,8+30b,20+30c,27+30d]: negative-1 [246] by {a=>-a-1,c=>-c-1}
[25+30a,8+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[1+30a,10+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[7+30a,10+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[11+30a,10+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[13+30a,10+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[17+30a,10+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[19+30a,10+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[23+30a,10+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[29+30a,10+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,11+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,11+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,13+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,13+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[5+30a,14+30b,20+30c,27+30d]: negative-1 [246] by {a=>-a-1,c=>-c-1}
[25+30a,14+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[5+30a,16+30b,20+30c,27+30d]: negative-1 [246] by {a=>-a-1,c=>-c-1}
[25+30a,16+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,17+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,17+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,19+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,19+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[1+30a,20+30b,20+30c,27+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[7+30a,20+30b,20+30c,27+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[11+30a,20+30b,20+30c,27+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[13+30a,20+30b,20+30c,27+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[17+30a,20+30b,20+30c,27+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[19+30a,20+30b,20+30c,27+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[23+30a,20+30b,20+30c,27+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[29+30a,20+30b,20+30c,27+30d]: negative-1 [246] by {b=>-b-1,c=>-c-1}
[5+30a,22+30b,20+30c,27+30d]: negative-1 [246] by {a=>-a-1,c=>-c-1}
[25+30a,22+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,23+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,23+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[2+30a,25+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[4+30a,25+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[8+30a,25+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[14+30a,25+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[16+30a,25+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[22+30a,25+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[26+30a,25+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[28+30a,25+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[5+30a,26+30b,20+30c,27+30d]: negative-1 [246] by {a=>-a-1,c=>-c-1}
[25+30a,26+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[5+30a,28+30b,20+30c,27+30d]: negative-1 [246] by {a=>-a-1,c=>-c-1}
[25+30a,28+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,29+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[20+30a,29+30b,20+30c,27+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,0+30b,21+30c,27+30d]: negative-1 [69] by {d=>-d-1}
[10+30a,5+30b,22+30c,27+30d]: negative-1 [197] by {c=>-c-1}
[20+30a,5+30b,22+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,10+30b,22+30c,27+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,10+30b,22+30c,27+30d]: negative-1 [197] by {c=>-c-1}
[5+30a,20+30b,22+30c,27+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,22+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,25+30b,22+30c,27+30d]: negative-1 [231] by {b=>-b-1}
[20+30a,25+30b,22+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,10+30b,23+30c,27+30d]: negative-1 [152] by {c=>-c-1}
[20+30a,10+30b,23+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,23+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,23+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,24+30c,27+30d]: negative-1 [228] by {c=>-c-1}
[0+30a,15+30b,24+30c,27+30d]: negative-1 [228] by {c=>-c-1}
[10+30a,2+30b,25+30c,27+30d]: negative-1 [245] by {c=>-c-1}
[20+30a,2+30b,25+30c,27+30d]: negative-1 [245] by {a=>-a-1,c=>-c-1}
[10+30a,4+30b,25+30c,27+30d]: negative-1 [245] by {c=>-c-1}
[20+30a,4+30b,25+30c,27+30d]: negative-1 [245] by {a=>-a-1,c=>-c-1}
[10+30a,8+30b,25+30c,27+30d]: negative-1 [245] by {c=>-c-1}
[20+30a,8+30b,25+30c,27+30d]: negative-1 [245] by {a=>-a-1,c=>-c-1}
[2+30a,10+30b,25+30c,27+30d]: negative-1 [245] by {c=>-c-1}
[4+30a,10+30b,25+30c,27+30d]: negative-1 [245] by {c=>-c-1}
[8+30a,10+30b,25+30c,27+30d]: negative-1 [245] by {c=>-c-1}
[14+30a,10+30b,25+30c,27+30d]: negative-1 [245] by {c=>-c-1}
[16+30a,10+30b,25+30c,27+30d]: negative-1 [245] by {c=>-c-1}
[22+30a,10+30b,25+30c,27+30d]: negative-1 [245] by {c=>-c-1}
[26+30a,10+30b,25+30c,27+30d]: negative-1 [245] by {c=>-c-1}
[28+30a,10+30b,25+30c,27+30d]: negative-1 [245] by {c=>-c-1}
[10+30a,14+30b,25+30c,27+30d]: negative-1 [245] by {c=>-c-1}
[20+30a,14+30b,25+30c,27+30d]: negative-1 [245] by {a=>-a-1,c=>-c-1}
[10+30a,16+30b,25+30c,27+30d]: negative-1 [245] by {c=>-c-1}
[20+30a,16+30b,25+30c,27+30d]: negative-1 [245] by {a=>-a-1,c=>-c-1}
[2+30a,20+30b,25+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[4+30a,20+30b,25+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[8+30a,20+30b,25+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[14+30a,20+30b,25+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[16+30a,20+30b,25+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[22+30a,20+30b,25+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[26+30a,20+30b,25+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[28+30a,20+30b,25+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,22+30b,25+30c,27+30d]: negative-1 [245] by {c=>-c-1}
[20+30a,22+30b,25+30c,27+30d]: negative-1 [245] by {a=>-a-1,c=>-c-1}
[10+30a,26+30b,25+30c,27+30d]: negative-1 [245] by {c=>-c-1}
[20+30a,26+30b,25+30c,27+30d]: negative-1 [245] by {a=>-a-1,c=>-c-1}
[10+30a,28+30b,25+30c,27+30d]: negative-1 [245] by {c=>-c-1}
[20+30a,28+30b,25+30c,27+30d]: negative-1 [245] by {a=>-a-1,c=>-c-1}
[10+30a,5+30b,26+30c,27+30d]: negative-1 [196] by {c=>-c-1}
[20+30a,5+30b,26+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,10+30b,26+30c,27+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,10+30b,26+30c,27+30d]: negative-1 [196] by {c=>-c-1}
[5+30a,20+30b,26+30c,27+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,26+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,25+30b,26+30c,27+30d]: negative-1 [231] by {b=>-b-1}
[20+30a,25+30b,26+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,0+30b,27+30c,27+30d]: negative-1 [69] by {d=>-d-1}
-> solution [0,0,27,27],trivial(3) [0,0,57,57],trivial(3)
[10+30a,5+30b,28+30c,27+30d]: negative-1 [195] by {c=>-c-1}
[20+30a,5+30b,28+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[5+30a,10+30b,28+30c,27+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,10+30b,28+30c,27+30d]: negative-1 [195] by {c=>-c-1}
[5+30a,20+30b,28+30c,27+30d]: negative-1 [246] by {a=>-a-1,b=>-b-1}
[25+30a,20+30b,28+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,25+30b,28+30c,27+30d]: negative-1 [231] by {b=>-b-1}
[20+30a,25+30b,28+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,10+30b,29+30c,27+30d]: negative-1 [141] by {c=>-c-1}
[20+30a,10+30b,29+30c,27+30d]: negative-1 [245] by {a=>-a-1}
[10+30a,20+30b,29+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[20+30a,20+30b,29+30c,27+30d]: negative-1 [246] by {b=>-b-1}
[2+30a,0+30b,0+30c,28+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,0+30b,0+30c,28+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,0+30b,0+30c,28+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,0+30b,0+30c,28+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,0+30b,0+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[22+30a,0+30b,0+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[26+30a,0+30b,0+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[28+30a,0+30b,0+30c,28+30d]: negative-1 [41] by {d=>-d-1}
-> solution [28,0,0,28],trivial(3) [58,0,0,58],trivial(3)
[0+30a,2+30b,0+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[0+30a,4+30b,0+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[10+30a,6+30b,0+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[20+30a,6+30b,0+30c,28+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,8+30b,0+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[6+30a,10+30b,0+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[12+30a,10+30b,0+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[18+30a,10+30b,0+30c,28+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,10+30b,0+30c,28+30d]: negative-1 [211] by {a=>-a-1}
[10+30a,12+30b,0+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[20+30a,12+30b,0+30c,28+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,14+30b,0+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[0+30a,16+30b,0+30c,28+30d]: negative-1 [242] by {b=>-b-1}
[10+30a,18+30b,0+30c,28+30d]: negative-1 [229] by {b=>-b-1}
[20+30a,18+30b,0+30c,28+30d]: negative-1 [245] by {a=>-a-1}
[6+30a,20+30b,0+30c,28+30d]: negative-1 [246] by {b=>-b-1}
[12+30a,20+30b,0+30c,28+30d]: negative-1 [246] by {b=>-b-1}
[18+30a,20+30b,0+30c,28+30d]: negative-1 [246] by {b=>-b-1}
[24+30a,20+30b,0+30c,28+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,22+30b,0+30c,28+30d]: negative-1 [240] by {b=>-b-1}
[10+30a,24+30b,0+30c,28+30d]: negative-1 [239] by {b=>-b-1}
[20+30a,24+30b,0+30c,28+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,26+30b,0+30c,28+30d]: negative-1 [238] by {b=>-b-1}
[0+30a,28+30b,0+30c,28+30d]: negative-1 [237] by {b=>-b-1}
-> solution [0,28,0,28],trivial(3) [0,58,0,58],trivial(3)
[0+30a,0+30b,2+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[0+30a,0+30b,4+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[10+30a,0+30b,6+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[20+30a,0+30b,6+30c,28+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,6+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[0+30a,20+30b,6+30c,28+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,8+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[6+30a,0+30b,10+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[12+30a,0+30b,10+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[18+30a,0+30b,10+30c,28+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,0+30b,10+30c,28+30d]: negative-1 [211] by {a=>-a-1}
[0+30a,6+30b,10+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[0+30a,12+30b,10+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[0+30a,18+30b,10+30c,28+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,24+30b,10+30c,28+30d]: negative-1 [239] by {b=>-b-1}
[10+30a,0+30b,12+30c,28+30d]: negative-1 [243] by {c=>-c-1}
[20+30a,0+30b,12+30c,28+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,12+30c,28+30d]: negative-1 [243] by {c=>-c-1}
[0+30a,20+30b,12+30c,28+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,14+30c,28+30d]: negative-1 [161] by {c=>-c-1}
[0+30a,0+30b,16+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[10+30a,0+30b,18+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[20+30a,0+30b,18+30c,28+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,18+30c,28+30d]: negative-1 [41] by {d=>-d-1}
[0+30a,20+30b,18+30c,28+30d]: negative-1 [246] by {b=>-b-1}
[6+30a,0+30b,20+30c,28+30d]: negative-1 [246] by {c=>-c-1}
[12+30a,0+30b,20+30c,28+30d]: negative-1 [246] by {c=>-c-1}
[18+30a,0+30b,20+30c,28+30d]: negative-1 [246] by {c=>-c-1}
[24+30a,0+30b,20+30c,28+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,6+30b,20+30c,28+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,12+30b,20+30c,28+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,18+30b,20+30c,28+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,24+30b,20+30c,28+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,0+30b,22+30c,28+30d]: negative-1 [197] by {c=>-c-1}
[10+30a,0+30b,24+30c,28+30d]: negative-1 [228] by {c=>-c-1}
[20+30a,0+30b,24+30c,28+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,24+30c,28+30d]: negative-1 [228] by {c=>-c-1}
[0+30a,20+30b,24+30c,28+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,0+30b,26+30c,28+30d]: negative-1 [196] by {c=>-c-1}
[0+30a,0+30b,28+30c,28+30d]: negative-1 [195] by {c=>-c-1}
-> solution [0,0,28,28],trivial(3) [0,0,58,58],trivial(3)
[1+30a,0+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[7+30a,0+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[11+30a,0+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[13+30a,0+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[17+30a,0+30b,0+30c,29+30d]: negative-1 [207] by {a=>-a-1}
[19+30a,0+30b,0+30c,29+30d]: negative-1 [206] by {a=>-a-1}
[23+30a,0+30b,0+30c,29+30d]: negative-1 [205] by {a=>-a-1}
[29+30a,0+30b,0+30c,29+30d]: negative-1 [204] by {a=>-a-1}
-> solution [29,0,0,29],trivial(3) [59,0,0,59],trivial(3)
[0+30a,1+30b,0+30c,29+30d]: negative-1 [227] by {b=>-b-1}
[15+30a,2+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[10+30a,3+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[20+30a,3+30b,0+30c,29+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,4+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[6+30a,5+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[12+30a,5+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[18+30a,5+30b,0+30c,29+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,5+30b,0+30c,29+30d]: negative-1 [211] by {a=>-a-1}
[5+30a,6+30b,0+30c,29+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,6+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,7+30b,0+30c,29+30d]: negative-1 [226] by {b=>-b-1}
[15+30a,8+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[10+30a,9+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[20+30a,9+30b,0+30c,29+30d]: negative-1 [245] by {a=>-a-1}
[3+30a,10+30b,0+30c,29+30d]: negative-1 [217] by {a=>-a-1}
[9+30a,10+30b,0+30c,29+30d]: negative-1 [216] by {a=>-a-1}
[21+30a,10+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[27+30a,10+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,11+30b,0+30c,29+30d]: negative-1 [225] by {b=>-b-1}
[5+30a,12+30b,0+30c,29+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,12+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,13+30b,0+30c,29+30d]: negative-1 [224] by {b=>-b-1}
[15+30a,14+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[2+30a,15+30b,0+30c,29+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,15+30b,0+30c,29+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,15+30b,0+30c,29+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,15+30b,0+30c,29+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,15+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[22+30a,15+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[26+30a,15+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[28+30a,15+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[15+30a,16+30b,0+30c,29+30d]: negative-1 [242] by {b=>-b-1}
[0+30a,17+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[5+30a,18+30b,0+30c,29+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,18+30b,0+30c,29+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,19+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[3+30a,20+30b,0+30c,29+30d]: negative-1 [246] by {b=>-b-1}
[9+30a,20+30b,0+30c,29+30d]: negative-1 [246] by {b=>-b-1}
[21+30a,20+30b,0+30c,29+30d]: negative-1 [246] by {b=>-b-1}
[27+30a,20+30b,0+30c,29+30d]: negative-1 [246] by {b=>-b-1}
[10+30a,21+30b,0+30c,29+30d]: negative-1 [215] by {b=>-b-1}
[20+30a,21+30b,0+30c,29+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,22+30b,0+30c,29+30d]: negative-1 [240] by {b=>-b-1}
[0+30a,23+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[5+30a,24+30b,0+30c,29+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,24+30b,0+30c,29+30d]: negative-1 [239] by {b=>-b-1}
[6+30a,25+30b,0+30c,29+30d]: negative-1 [231] by {b=>-b-1}
[12+30a,25+30b,0+30c,29+30d]: negative-1 [231] by {b=>-b-1}
[18+30a,25+30b,0+30c,29+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,25+30b,0+30c,29+30d]: negative-1 [231] by {b=>-b-1}
[15+30a,26+30b,0+30c,29+30d]: negative-1 [238] by {b=>-b-1}
[10+30a,27+30b,0+30c,29+30d]: negative-1 [209] by {b=>-b-1}
[20+30a,27+30b,0+30c,29+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,28+30b,0+30c,29+30d]: negative-1 [237] by {b=>-b-1}
[0+30a,29+30b,0+30c,29+30d]: negative-1 [30] by {d=>-d-1}
-> solution [0,29,0,29],trivial(3) [0,59,0,59],trivial(3)
[0+30a,0+30b,1+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[15+30a,0+30b,2+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,15+30b,2+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[10+30a,0+30b,3+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[20+30a,0+30b,3+30c,29+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,3+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,20+30b,3+30c,29+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,4+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,15+30b,4+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[6+30a,0+30b,5+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[12+30a,0+30b,5+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[18+30a,0+30b,5+30c,29+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,0+30b,5+30c,29+30d]: negative-1 [211] by {a=>-a-1}
[0+30a,6+30b,5+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,12+30b,5+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,18+30b,5+30c,29+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,24+30b,5+30c,29+30d]: negative-1 [239] by {b=>-b-1}
[5+30a,0+30b,6+30c,29+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,0+30b,6+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,5+30b,6+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[15+30a,10+30b,6+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[10+30a,15+30b,6+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[20+30a,15+30b,6+30c,29+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,20+30b,6+30c,29+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,25+30b,6+30c,29+30d]: negative-1 [231] by {b=>-b-1}
[0+30a,0+30b,7+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[15+30a,0+30b,8+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,15+30b,8+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[10+30a,0+30b,9+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[20+30a,0+30b,9+30c,29+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,9+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,20+30b,9+30c,29+30d]: negative-1 [246] by {b=>-b-1}
[3+30a,0+30b,10+30c,29+30d]: negative-1 [217] by {a=>-a-1}
[9+30a,0+30b,10+30c,29+30d]: negative-1 [216] by {a=>-a-1}
[21+30a,0+30b,10+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[27+30a,0+30b,10+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,3+30b,10+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[15+30a,6+30b,10+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,9+30b,10+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[15+30a,12+30b,10+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[6+30a,15+30b,10+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[12+30a,15+30b,10+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[18+30a,15+30b,10+30c,29+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,15+30b,10+30c,29+30d]: negative-1 [211] by {a=>-a-1}
[15+30a,18+30b,10+30c,29+30d]: negative-1 [229] by {b=>-b-1}
[0+30a,21+30b,10+30c,29+30d]: negative-1 [215] by {b=>-b-1}
[15+30a,24+30b,10+30c,29+30d]: negative-1 [239] by {b=>-b-1}
[0+30a,27+30b,10+30c,29+30d]: negative-1 [209] by {b=>-b-1}
[0+30a,0+30b,11+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[5+30a,0+30b,12+30c,29+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,0+30b,12+30c,29+30d]: negative-1 [243] by {c=>-c-1}
[0+30a,5+30b,12+30c,29+30d]: negative-1 [243] by {c=>-c-1}
[15+30a,10+30b,12+30c,29+30d]: negative-1 [243] by {c=>-c-1}
[10+30a,15+30b,12+30c,29+30d]: negative-1 [243] by {c=>-c-1}
[20+30a,15+30b,12+30c,29+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,20+30b,12+30c,29+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,25+30b,12+30c,29+30d]: negative-1 [243] by {c=>-c-1}
[0+30a,0+30b,13+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[15+30a,0+30b,14+30c,29+30d]: negative-1 [161] by {c=>-c-1}
[0+30a,15+30b,14+30c,29+30d]: negative-1 [161] by {c=>-c-1}
[2+30a,0+30b,15+30c,29+30d]: negative-1 [236] by {a=>-a-1}
[4+30a,0+30b,15+30c,29+30d]: negative-1 [235] by {a=>-a-1}
[8+30a,0+30b,15+30c,29+30d]: negative-1 [234] by {a=>-a-1}
[14+30a,0+30b,15+30c,29+30d]: negative-1 [233] by {a=>-a-1}
[16+30a,0+30b,15+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[22+30a,0+30b,15+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[26+30a,0+30b,15+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[28+30a,0+30b,15+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,2+30b,15+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,4+30b,15+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[10+30a,6+30b,15+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[20+30a,6+30b,15+30c,29+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,8+30b,15+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[6+30a,10+30b,15+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[12+30a,10+30b,15+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[18+30a,10+30b,15+30c,29+30d]: negative-1 [241] by {a=>-a-1}
[24+30a,10+30b,15+30c,29+30d]: negative-1 [211] by {a=>-a-1}
[10+30a,12+30b,15+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[20+30a,12+30b,15+30c,29+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,14+30b,15+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,16+30b,15+30c,29+30d]: negative-1 [242] by {b=>-b-1}
[10+30a,18+30b,15+30c,29+30d]: negative-1 [229] by {b=>-b-1}
[20+30a,18+30b,15+30c,29+30d]: negative-1 [245] by {a=>-a-1}
[6+30a,20+30b,15+30c,29+30d]: negative-1 [246] by {b=>-b-1}
[12+30a,20+30b,15+30c,29+30d]: negative-1 [246] by {b=>-b-1}
[18+30a,20+30b,15+30c,29+30d]: negative-1 [246] by {b=>-b-1}
[24+30a,20+30b,15+30c,29+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,22+30b,15+30c,29+30d]: negative-1 [240] by {b=>-b-1}
[10+30a,24+30b,15+30c,29+30d]: negative-1 [239] by {b=>-b-1}
[20+30a,24+30b,15+30c,29+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,26+30b,15+30c,29+30d]: negative-1 [238] by {b=>-b-1}
[0+30a,28+30b,15+30c,29+30d]: negative-1 [237] by {b=>-b-1}
[15+30a,0+30b,16+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,15+30b,16+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,0+30b,17+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[5+30a,0+30b,18+30c,29+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,0+30b,18+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,5+30b,18+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[15+30a,10+30b,18+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[10+30a,15+30b,18+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[20+30a,15+30b,18+30c,29+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,20+30b,18+30c,29+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,25+30b,18+30c,29+30d]: negative-1 [231] by {b=>-b-1}
[0+30a,0+30b,19+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[3+30a,0+30b,20+30c,29+30d]: negative-1 [246] by {c=>-c-1}
[9+30a,0+30b,20+30c,29+30d]: negative-1 [246] by {c=>-c-1}
[21+30a,0+30b,20+30c,29+30d]: negative-1 [246] by {c=>-c-1}
[27+30a,0+30b,20+30c,29+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,3+30b,20+30c,29+30d]: negative-1 [246] by {c=>-c-1}
[15+30a,6+30b,20+30c,29+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,9+30b,20+30c,29+30d]: negative-1 [246] by {c=>-c-1}
[15+30a,12+30b,20+30c,29+30d]: negative-1 [246] by {c=>-c-1}
[6+30a,15+30b,20+30c,29+30d]: negative-1 [246] by {c=>-c-1}
[12+30a,15+30b,20+30c,29+30d]: negative-1 [246] by {c=>-c-1}
[18+30a,15+30b,20+30c,29+30d]: negative-1 [246] by {c=>-c-1}
[24+30a,15+30b,20+30c,29+30d]: negative-1 [246] by {c=>-c-1}
[15+30a,18+30b,20+30c,29+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,21+30b,20+30c,29+30d]: negative-1 [246] by {c=>-c-1}
[15+30a,24+30b,20+30c,29+30d]: negative-1 [246] by {c=>-c-1}
[0+30a,27+30b,20+30c,29+30d]: negative-1 [246] by {c=>-c-1}
[10+30a,0+30b,21+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[20+30a,0+30b,21+30c,29+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,21+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,20+30b,21+30c,29+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,22+30c,29+30d]: negative-1 [197] by {c=>-c-1}
[0+30a,15+30b,22+30c,29+30d]: negative-1 [197] by {c=>-c-1}
[0+30a,0+30b,23+30c,29+30d]: negative-1 [152] by {c=>-c-1}
[5+30a,0+30b,24+30c,29+30d]: negative-1 [246] by {a=>-a-1}
[25+30a,0+30b,24+30c,29+30d]: negative-1 [228] by {c=>-c-1}
[0+30a,5+30b,24+30c,29+30d]: negative-1 [228] by {c=>-c-1}
[15+30a,10+30b,24+30c,29+30d]: negative-1 [228] by {c=>-c-1}
[10+30a,15+30b,24+30c,29+30d]: negative-1 [228] by {c=>-c-1}
[20+30a,15+30b,24+30c,29+30d]: negative-1 [245] by {a=>-a-1}
[15+30a,20+30b,24+30c,29+30d]: negative-1 [246] by {b=>-b-1}
[0+30a,25+30b,24+30c,29+30d]: negative-1 [231] by {b=>-b-1}
[6+30a,0+30b,25+30c,29+30d]: negative-1 [245] by {c=>-c-1}
[12+30a,0+30b,25+30c,29+30d]: negative-1 [245] by {c=>-c-1}
[18+30a,0+30b,25+30c,29+30d]: negative-1 [245] by {c=>-c-1}
[24+30a,0+30b,25+30c,29+30d]: negative-1 [245] by {c=>-c-1}
[0+30a,6+30b,25+30c,29+30d]: negative-1 [245] by {c=>-c-1}
[0+30a,12+30b,25+30c,29+30d]: negative-1 [245] by {c=>-c-1}
[0+30a,18+30b,25+30c,29+30d]: negative-1 [245] by {c=>-c-1}
[0+30a,24+30b,25+30c,29+30d]: negative-1 [245] by {c=>-c-1}
[15+30a,0+30b,26+30c,29+30d]: negative-1 [196] by {c=>-c-1}
[0+30a,15+30b,26+30c,29+30d]: negative-1 [196] by {c=>-c-1}
[10+30a,0+30b,27+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[20+30a,0+30b,27+30c,29+30d]: negative-1 [245] by {a=>-a-1}
[0+30a,10+30b,27+30c,29+30d]: negative-1 [30] by {d=>-d-1}
[0+30a,20+30b,27+30c,29+30d]: negative-1 [246] by {b=>-b-1}
[15+30a,0+30b,28+30c,29+30d]: negative-1 [195] by {c=>-c-1}
[0+30a,15+30b,28+30c,29+30d]: negative-1 [195] by {c=>-c-1}
[0+30a,0+30b,29+30c,29+30d]: negative-1 [141] by {c=>-c-1}
-> solution [0,0,29,29],trivial(3) [0,0,59,59],trivial(3)
endexp[0]
---------------- level 1
Maximum level 1 [247] mod 30: a⁴+b⁴+c⁴-d⁴
|
16398fc7c544db748c31ea0c19c45028c7559b07 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3554/CH17/EX17.4/Ex17_4.sce | db85b52366949d27a7107c0300c9142d31129d36 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 777 | sce | Ex17_4.sce | // Exa 17.4
clc;
clear all;
// Given data
Vref=5;//Reference voltage(V)
R=5;// k Ohms
// Solution
disp("From fig. 17.18(c) , for a 4-bit D/A converter I=Vref/R* (D3+D2*2^-1+D1*2^-2+D0*^-3)");
//16-input combinations are as follows
Ip={[0 0 0 0];[0 0 0 1];[0 0 1 0];[0 0 1 1];[0 1 0 0];[0 1 0 1];[0 1 1 0];[0 1 1 1];[1 0 0 0];[1 0 0 1];
[1 0 1 0];[1 0 1 1];[1 1 0 0];[1 1 0 1];[1 1 1 0];[1 1 1 1]};//[D3 D2 D1 D0 bits]
disp(" Input Bits Output Current(mA) percent Fraction of maximum ");
for i=1:16
Iout(i)=Vref/R * (Ip(i,1)+Ip(i,2)*2^-1+Ip(i,3)*2^-2+Ip(i,4)*2^-3);
printf(' %d %d %d %d %.3f %.3f \n',Ip(i,1),Ip(i,2),Ip(i,3),Ip(i,4),Iout(i),(Iout(i)/1.875)*100);//1.875(mA) is the highest output current
end
|
cbcae3a73aa3ac264d68e05eecad32c03ef7cf3c | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Computing/testevstr.sce | 33f6e0db26ecfe52ff7506583865ffa5c47bca10 | [] | 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 | 87 | sce | testevstr.sce | a=evstr('123/2') // evaluate a string
execstr('b=2*11') // execute a string
b
|
106b5dddec05527ae53f9f241c3f8a308be04d20 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3850/CH39/EX39.3/Ex39_3.sce | d989ae8b3768f3b40053841f118dcbb72ca4b7ea | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 829 | sce | Ex39_3.sce |
//To Find the Peak Value of Current and the Instantaneous Voltage of the source when the current is at its peak value
//Example 39.3
clear;
clc;
f=50;//Frequency of AC source in Hz
L=200*10^-3;//Self Inductance of Inductor in Henry
Xl=2*%pi*f*L;//Reactance of the Inductor in ohms
E0=210;//Peak EMF Value of AC source in Volts
i0=E0/Xl;//Peak Value of Current in Amperes
printf("Peak Value of current = %.1f A",i0);
i=i0;//Instantaneous Value of Current when current attains its peak value
phi=-%pi/2;//Phase Difference in Radians for a purely Inductive Circuit
t=(asin(i/i0)-phi)/(2*%pi*f);//Time at which current attains its peak value
E=E0*sin(2*%pi*f*t);//Instantaneous Voltage for a purely inductive circuit
printf("\n Instantaneous voltage at peak value of Current = %.0f V",E);
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.