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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1315fca9ff61b84f825baa9bd773f0efcd290dd6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2381/CH1/EX1.3/ex_3.sce | 4f109bb7c14f78620e312ecaf0c4f647a3605ef6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 151 | sce | ex_3.sce | //Example 3 // ENERGY
clc;
clear;
close;
ke=5;//joule
pe=5;//joule
rep=10;//joule
eo=rep+ke+pe;//joule
disp(eo,"energy of the oscillator is,(joule)=")
|
fc5c827a6de0700f0155ac7b95934e02a63ed804 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2273/CH9/EX9.11/ex9_11.sce | 0d3f92e8ddbed4b227e666615b8296891858141e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 911 | sce | ex9_11.sce | //find the position and voltage on the intersheaths and max and min stress
clear;
clc;
//soltion
//given
d=2;//cm
D=5.3;//cm
V=66*sqrt(2/3);//kV
V1=poly(0,"V1");
V2=poly(0,"V2");
V3=poly(0,"V3");
d1=poly(0,"d1")
d1d2=D*d;//d1*d2
d2=(d1^2)/2;
printf("d2= ");
disp(d2);
d1=(2*d1d2)^(1/3);//after putting value of d2 in d1*d2
d2=(d1^2)/2;
printf("d1= %.3f cm \nd2= %.1f cm \n",d1,d2);
V2=(d1/d)*V1;
V3=(d2/d)*V1;
V1=roots(V1+V2+V3-V);
V2=(d1/d)*V1;
V3=(d2/d)*V1;
Vf=V-V1;
Vs=V-V1-V2;
printf("Voltage on first intersheath(i.e. near to the core) = %.3f kV\n",Vf);
printf("Voltage on second intersheath= %.f kV\n",Vs);
Gmax=V1/((d/2)*log(d1/d));
Gmin=V1/((d1/2)*log(d1/d));
printf("Maximum stress= %.f kV/cm \nMinimum stress= %.2f kV/cm",Gmax,Gmin);
//There is an error in in book it is Voltage on second intersheath= 23.91 kV & Gmax and Gmin in book it is 39kV/cm & Gmin= 28.35 kV/cm
|
51ab0f40a328385268309db35894ce9c388375be | 27fecbbeb6c49dcf03b9bddf1b867c31e13a3825 | /Simulações/Relatório 01/adams_e_runge_kutta.sci | 88bc29ba49b971183624e0a2d9cb0cd90d8bc11b | [] | no_license | LucasHattoriCosta/Poli | 42c9fc2d34c31e01336265fbdac3e4921d56e096 | b1ac609c3675539b4e921909c35ea196ffc44df3 | refs/heads/master | 2023-03-15T12:22:03.745943 | 2020-06-29T17:32:48 | 2020-06-29T17:32:48 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 940 | sci | adams_e_runge_kutta.sci | clc
clear
//Condições iniciais
s0=0;
vs0=0;
S0=[s0;vs0]
g=9.78;
mu0 = 0.15;
Nt = 0.08;
m=0.033;
c=0.01;
t0=0;
tf=20;
teta=(%pi)/6;
//Passo de integração
h=0.5;
dt=h;
t=t0:dt:tf;
//Função para cálculo das derivadas temporais (letra b)
function dS=f(t,S)
ds1=S(2);
ds2=g*sin(teta)-4*mu0*Nt*(1/m);
dS=[ds1;ds2];
endfunction
//Método de Adams
S=ode("adams", S0,t0,t,f);
scf(0);
xtitle('Adams: Posição x (m) para h = '+string(h)+' e para vx0 = '+string(vs0));
plot(t,S(1,:),'y')
scf(1);
xtitle('Adams: Velocidade Vx (m/s) para h = '+string(h)+' e para vx0 = '+string(vs0));
plot(t,S(2,:), 'y')
//Método de Runge Kutta
T=ode("rk", S0,t0,t,f);
scf(2);
xtitle('Runge-Kutta: Posição s (m) por tempo (s) para h = '+string(h)+' e para vx0 = '+string(vs0));
plot(t,S(1,:),'y')
scf(3);
xtitle('Runge-Kutta: Velocidade Vs (m/s) por tempo (s) para h = '+string(h)+' e para vx0 = '+string(vs0));
plot(t,S(2,:),'y')
|
34afd8653963223ac9f3b3886212608306a6bcf4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1736/CH2/EX2.5/Ch02Ex5.sce | 873fcc7229cd37312336d1204c9f1e3294833cf4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 676 | sce | Ch02Ex5.sce | // Scilab Code Ex2.5 : Page-63 (2006)
clc; clear;
epsilon_0 = 8.854e-012; // Absolute electrical permittivity of free space, F/m
N = 6.023e+023; // Avogadro's number
e = 1.6e-019; // Energy equivalent of 1 eV, eV/J
r0 = 6.46e-010; // Nearest neighbour distance of NaI
E = 157.1e+03; // Binding energy of NaI, cal/mol
A = 1.747; // Madelung constant for lattice binding energy
// As lattice binding energy, E = -A*e^2/(4*%pi*epsilon_0*r0)*(n-1)/n, solving for n
n = 1/(1+(4.186*E*4*%pi*epsilon_0*r0)/(N*A*e^2)); // Repulsive exponent of NaI
printf("\nThe repulsive exponent of NaI = %5.3f", n);
// Result
// The repulsive exponent of NaI = 0.363
|
b170e5e8e3b030aa7653dae833981f0ad906248c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1379/CH9/EX9.1.4/example9_4.sce | 78a2ffdb95f1fe224260f8284a1343c2bfe43585 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 337 | sce | example9_4.sce | //exapple 9.4
clc; funcprot(0);
// Initialization of Variable
rhoa=1.218;//density of air
mu=1.73/100000;
pi=3.1428;
g=9.81;
rhog = 1200;
rhop=2280;//density of polythene
d=0.0034;//diameter
a=4*d^3*(rhop-rhoa)*rhoa*g/3/mu^2;//a=Cd*Re^2
//using graph of Cd*Re^2 vs Re
Re=2200;
v=Re*mu/d/rhog;
disp(v , "The terminal vrlocity in (m/s)"); |
583b57b59c54d137fa6a3f5d502eb73b393d551b | 46ffb5fda9448453eba4d6787a1568028b241d88 | /ABMLangangen/calibration/calLast.sci | 7bcbf1aa4063799ba980a25f1558e97416acdbb7 | [] | no_license | JusteRaimbault/Models | f81f886dc050445dae68e933e0c052c7f9c0b59c | 52f9c28fe20c8e491fb83e22ef162256eb966d32 | refs/heads/master | 2016-09-10T23:23:05.419418 | 2013-07-30T22:02:34 | 2013-07-30T22:02:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 645,879 | sci | calLast.sci | bref=[];bnorm=[];incomemean=[];rents=[];incomes=[];
bref(1)=5000;
bnorm(1)=20000;
incomemean(1)=10000;
rents(1,1)=99.22529588530496;
rents(1,2)=74.42568868647493;
rents(1,3)=92.88122614559285;
rents(1,4)=110.30678493239462;
rents(1,5)=127.4363451782466;
rents(1,6)=144.1830905757753;
rents(1,7)=159.1999919495849;
rents(1,8)=166.51460118063864;
rents(1,9)=173.56976988368066;
incomes(1,1)=19692.49912450132;
incomes(1,2)=19535.117295281096;
incomes(1,3)=19379.422461722526;
incomes(1,4)=19397.469206962152;
incomes(1,5)=19971.538986796968;
incomes(1,6)=20353.804368729256;
incomes(1,7)=19706.38322094278;
incomes(1,8)=19959.142005797676;
incomes(1,9)=19714.286682764447;
bref(2)=5000;
bnorm(2)=20000;
incomemean(2)=11000;
rents(2,1)=101.4593569728911;
rents(2,2)=76.08937845296646;
rents(2,3)=97.00618522779318;
rents(2,4)=117.94034597368979;
rents(2,5)=138.7554370450004;
rents(2,6)=158.55870475374448;
rents(2,7)=175.96091516915342;
rents(2,8)=183.98802793576317;
rents(2,9)=187.6283675164331;
incomes(2,1)=19935.472556382425;
incomes(2,2)=20240.220853435923;
incomes(2,3)=20143.119083251222;
incomes(2,4)=20489.955026809886;
incomes(2,5)=21040.874161313626;
incomes(2,6)=21460.662408499767;
incomes(2,7)=21004.788962549104;
incomes(2,8)=20910.18998485432;
incomes(2,9)=21005.375761693158;
bref(3)=5000;
bnorm(3)=20000;
incomemean(3)=12000;
rents(3,1)=100.47805247547706;
rents(3,2)=75.35180186873039;
rents(3,3)=101.52849707513337;
rents(3,4)=129.77903621217126;
rents(3,5)=157.4295497736999;
rents(3,6)=182.5769201539918;
rents(3,7)=195.03885806082633;
rents(3,8)=197.92692066588486;
rents(3,9)=199.540742644874;
incomes(3,1)=21429.467066784997;
incomes(3,2)=21970.79907385715;
incomes(3,3)=22083.483432889985;
incomes(3,4)=22242.495726607467;
incomes(3,5)=22717.150159172685;
incomes(3,6)=22789.977909845802;
incomes(3,7)=22233.285418332867;
incomes(3,8)=22064.40199355557;
incomes(3,9)=22334.315237425435;
bref(4)=5000;
bnorm(4)=20000;
incomemean(4)=13000;
rents(4,1)=102.33228036789387;
rents(4,2)=76.74677581576628;
rents(4,3)=105.86458167544625;
rents(4,4)=139.49936928050914;
rents(4,5)=171.42669166029208;
rents(4,6)=195.22958832002055;
rents(4,7)=199.83840749421182;
rents(4,8)=200;
rents(4,9)=200;
incomes(4,1)=22380.0533812318;
incomes(4,2)=22746.584088945314;
incomes(4,3)=23048.660774733555;
incomes(4,4)=23200.136603655843;
incomes(4,5)=24160.283723303855;
incomes(4,6)=24048.428938803412;
incomes(4,7)=23389.159993274043;
incomes(4,8)=22884.961003655164;
incomes(4,9)=23105.287424200662;
bref(5)=5000;
bnorm(5)=20000;
incomemean(5)=14000;
rents(5,1)=99.6766774449983;
rents(5,2)=74.75427817782392;
rents(5,3)=108.82004610049829;
rents(5,4)=149.54215107902095;
rents(5,5)=189.30458406758353;
rents(5,6)=199.99991777323277;
rents(5,7)=200;
rents(5,8)=200;
rents(5,9)=200;
incomes(5,1)=24036.91847366555;
incomes(5,2)=24302.48047464477;
incomes(5,3)=24660.40620587517;
incomes(5,4)=24833.14926481421;
incomes(5,5)=25375.93064561628;
incomes(5,6)=25041.073241516136;
incomes(5,7)=24171.49851843536;
incomes(5,8)=24328.070616942085;
incomes(5,9)=24552.528974027704;
bref(6)=5000;
bnorm(6)=20000;
incomemean(6)=15000;
rents(6,1)=97.03169683472981;
rents(6,2)=72.77577382499503;
rents(6,3)=111.01756829505254;
rents(6,4)=157.346239804057;
rents(6,5)=196.7753408975783;
rents(6,6)=200;
rents(6,7)=200;
rents(6,8)=200;
rents(6,9)=200;
incomes(6,1)=25061.74514972641;
incomes(6,2)=25646.642913350275;
incomes(6,3)=25790.166569914774;
incomes(6,4)=25912.465744935234;
incomes(6,5)=27005.088016928592;
incomes(6,6)=26852.951601606037;
incomes(6,7)=26030.695162420463;
incomes(6,8)=26031.147888107458;
incomes(6,9)=26000.673974156576;
bref(7)=5000;
bnorm(7)=20000;
incomemean(7)=16000;
rents(7,1)=98.77536781598886;
rents(7,2)=74.07765609273635;
rents(7,3)=118.00393502497015;
rents(7,4)=174.3925122096725;
rents(7,5)=199.9750678826731;
rents(7,6)=200;
rents(7,7)=200;
rents(7,8)=200;
rents(7,9)=200;
incomes(7,1)=26822.382915659215;
incomes(7,2)=27285.11236507055;
incomes(7,3)=27677.269616895283;
incomes(7,4)=27680.83751111236;
incomes(7,5)=28666.314282337895;
incomes(7,6)=28693.00225159606;
incomes(7,7)=28058.645339602866;
incomes(7,8)=27887.418714142677;
incomes(7,9)=28205.95274866773;
bref(8)=5000;
bnorm(8)=20000;
incomemean(8)=17000;
rents(8,1)=101.65632106357887;
rents(8,2)=76.24573723422965;
rents(8,3)=126.89961415098047;
rents(8,4)=190.18757405195305;
rents(8,5)=200;
rents(8,6)=200;
rents(8,7)=200;
rents(8,8)=200;
rents(8,9)=200;
incomes(8,1)=28648.985381028808;
incomes(8,2)=29018.888017897883;
incomes(8,3)=28983.129638849394;
incomes(8,4)=29463.241524537763;
incomes(8,5)=29706.03284075715;
incomes(8,6)=29817.552329703012;
incomes(8,7)=28931.315385441147;
incomes(8,8)=29240.639173534044;
incomes(8,9)=29590.78625625976;
bref(9)=5000;
bnorm(9)=20000;
incomemean(9)=18000;
rents(9,1)=101.68352242420664;
rents(9,2)=76.25946676441694;
rents(9,3)=130.495396080529;
rents(9,4)=196.9005784733091;
rents(9,5)=200;
rents(9,6)=200;
rents(9,7)=200;
rents(9,8)=200;
rents(9,9)=200;
incomes(9,1)=29701.111167435392;
incomes(9,2)=30093.818345978638;
incomes(9,3)=30290.15467274454;
incomes(9,4)=30395.352765115273;
incomes(9,5)=31336.220491998338;
incomes(9,6)=31101.18192266521;
incomes(9,7)=30955.122498701305;
incomes(9,8)=30250.068033884432;
incomes(9,9)=31048.190498815387;
bref(10)=5000;
bnorm(10)=20000;
incomemean(10)=19000;
rents(10,1)=100.09693419398732;
rents(10,2)=75.07227043643014;
rents(10,3)=133.40451673974127;
rents(10,4)=199.11761115880324;
rents(10,5)=200;
rents(10,6)=200;
rents(10,7)=200;
rents(10,8)=200;
rents(10,9)=200;
incomes(10,1)=30524.3093234814;
incomes(10,2)=31342.332098031387;
incomes(10,3)=31644.33605906315;
incomes(10,4)=32092.425403684218;
incomes(10,5)=32433.32071264143;
incomes(10,6)=32708.96605101055;
incomes(10,7)=31484.89183848192;
incomes(10,8)=31811.818640270143;
incomes(10,9)=32279.13746554966;
bref(11)=5000;
bnorm(11)=23000;
incomemean(11)=10000;
rents(11,1)=100.1661951766729;
rents(11,2)=78.39768480210276;
rents(11,3)=93.60481205965426;
rents(11,4)=108.29171896269062;
rents(11,5)=121.90449575097618;
rents(11,6)=136.85346185067195;
rents(11,7)=150.33162606724343;
rents(11,8)=159.91302106491173;
rents(11,9)=166.9095868346806;
incomes(11,1)=18929.154299972834;
incomes(11,2)=19347.86748569548;
incomes(11,3)=19283.73545882;
incomes(11,4)=19208.24597228192;
incomes(11,5)=20054.492072497946;
incomes(11,6)=20182.176652248712;
incomes(11,7)=19888.28772195279;
incomes(11,8)=19828.943571987656;
incomes(11,9)=19954.893476244106;
bref(12)=5000;
bnorm(12)=23000;
incomemean(12)=11000;
rents(12,1)=99.84238766371031;
rents(12,2)=78.13947396631148;
rents(12,3)=96.4029405648956;
rents(12,4)=114.81583696832314;
rents(12,5)=132.61925431445295;
rents(12,6)=150.07204413705784;
rents(12,7)=164.827720287295;
rents(12,8)=173.4457007807152;
rents(12,9)=179.42365671764992;
incomes(12,1)=20324.54455110776;
incomes(12,2)=20342.742739319357;
incomes(12,3)=20347.37628132738;
incomes(12,4)=20367.210337508768;
incomes(12,5)=20937.1247273731;
incomes(12,6)=20933.618557110545;
incomes(12,7)=20126.301363346003;
incomes(12,8)=20358.938086720755;
incomes(12,9)=20415.808300464036;
bref(13)=5000;
bnorm(13)=23000;
incomemean(13)=12000;
rents(13,1)=99.72516617858456;
rents(13,2)=78.04893249670272;
rents(13,3)=100.15979976055856;
rents(13,4)=123.18866321329732;
rents(13,5)=146.47966804954814;
rents(13,6)=168.10317347458096;
rents(13,7)=184.96161055277278;
rents(13,8)=193.64198353597854;
rents(13,9)=197.7637169538123;
incomes(13,1)=21185.16693192257;
incomes(13,2)=21682.176596527708;
incomes(13,3)=21604.07529676618;
incomes(13,4)=22029.787884328685;
incomes(13,5)=22221.056346107023;
incomes(13,6)=22387.50568376139;
incomes(13,7)=21964.172426285113;
incomes(13,8)=21858.476479401666;
incomes(13,9)=22052.312823871132;
bref(14)=5000;
bnorm(14)=23000;
incomemean(14)=13000;
rents(14,1)=100.30483148369466;
rents(14,2)=78.50033043854748;
rents(14,3)=104.4899795661992;
rents(14,4)=132.28410215620468;
rents(14,5)=161.44355976613363;
rents(14,6)=186.5153146784308;
rents(14,7)=198.51991685856058;
rents(14,8)=199.93224773164746;
rents(14,9)=200;
incomes(14,1)=22548.413797210236;
incomes(14,2)=22828.923995782352;
incomes(14,3)=22856.051034380387;
incomes(14,4)=23361.05800562819;
incomes(14,5)=23455.62437474961;
incomes(14,6)=23953.822591949272;
incomes(14,7)=23330.099839790204;
incomes(14,8)=23251.187359638738;
incomes(14,9)=23205.826999090725;
bref(15)=5000;
bnorm(15)=23000;
incomemean(15)=14000;
rents(15,1)=105.0002468078052;
rents(15,2)=82.17174502517712;
rents(15,3)=112.3610643488436;
rents(15,4)=145.48763498249463;
rents(15,5)=179.2322853898263;
rents(15,6)=196.3251161224811;
rents(15,7)=199.36538526364492;
rents(15,8)=200;
rents(15,9)=200;
incomes(15,1)=23697.124003084795;
incomes(15,2)=24162.622910019658;
incomes(15,3)=24049.933559636986;
incomes(15,4)=24387.05961736674;
incomes(15,5)=25248.02584794539;
incomes(15,6)=25269.79573981706;
incomes(15,7)=24328.417501381835;
incomes(15,8)=24299.71637953815;
incomes(15,9)=24725.95882838259;
bref(16)=5000;
bnorm(16)=23000;
incomemean(16)=15000;
rents(16,1)=100.71088685904758;
rents(16,2)=78.81383730685125;
rents(16,3)=113.30071473079605;
rents(16,4)=152.9982487931051;
rents(16,5)=192.09215695449828;
rents(16,6)=200;
rents(16,7)=200;
rents(16,8)=200;
rents(16,9)=200;
incomes(16,1)=25246.027363230038;
incomes(16,2)=25625.780290044288;
incomes(16,3)=25596.06512927405;
incomes(16,4)=26232.174932363116;
incomes(16,5)=26879.510588016503;
incomes(16,6)=27158.382158469194;
incomes(16,7)=26282.36133173269;
incomes(16,8)=25969.450837795728;
incomes(16,9)=26688.409319238835;
bref(17)=5000;
bnorm(17)=23000;
incomemean(17)=16000;
rents(17,1)=99.78339811724804;
rents(17,2)=78.09481256595693;
rents(17,3)=115.81290347890526;
rents(17,4)=161.01268214649863;
rents(17,5)=198.0315359813222;
rents(17,6)=200;
rents(17,7)=200;
rents(17,8)=200;
rents(17,9)=200;
incomes(17,1)=26480.03979517065;
incomes(17,2)=26804.349268201247;
incomes(17,3)=26968.52162987215;
incomes(17,4)=27614.44385857118;
incomes(17,5)=28642.132288659246;
incomes(17,6)=28863.599169955203;
incomes(17,7)=28178.349308727546;
incomes(17,8)=28144.641103776634;
incomes(17,9)=28239.224557081652;
bref(18)=5000;
bnorm(18)=23000;
incomemean(18)=17000;
rents(18,1)=100.31330935277188;
rents(18,2)=78.50616304099933;
rents(18,3)=121.49635650248085;
rents(18,4)=174.87565121313656;
rents(18,5)=200;
rents(18,6)=200;
rents(18,7)=200;
rents(18,8)=200;
rents(18,9)=200;
incomes(18,1)=28237.70098930619;
incomes(18,2)=28426.379139740602;
incomes(18,3)=28425.316020645496;
incomes(18,4)=28491.805806318127;
incomes(18,5)=30016.34283584513;
incomes(18,6)=29396.828533831922;
incomes(18,7)=29038.96108803615;
incomes(18,8)=28964.317902160157;
incomes(18,9)=29525.188078137366;
bref(19)=5000;
bnorm(19)=23000;
incomemean(19)=18000;
rents(19,1)=101.15181517854447;
rents(19,2)=79.15977592018285;
rents(19,3)=129.9046551479303;
rents(19,4)=193.681536207874;
rents(19,5)=200;
rents(19,6)=200;
rents(19,7)=200;
rents(19,8)=200;
rents(19,9)=200;
incomes(19,1)=30225.77214754938;
incomes(19,2)=30891.47065140642;
incomes(19,3)=31055.95128720977;
incomes(19,4)=31721.07611000703;
incomes(19,5)=32375.346138203742;
incomes(19,6)=32194.805482456046;
incomes(19,7)=31386.6754982118;
incomes(19,8)=31811.76271072686;
incomes(19,9)=31495.05854003581;
bref(20)=5000;
bnorm(20)=23000;
incomemean(20)=19000;
rents(20,1)=102.99068364819115;
rents(20,2)=80.59958926260826;
rents(20,3)=135.96623381606096;
rents(20,4)=198.56090402777835;
rents(20,5)=200;
rents(20,6)=200;
rents(20,7)=200;
rents(20,8)=200;
rents(20,9)=200;
incomes(20,1)=31474.34460039068;
incomes(20,2)=32158.767728515704;
incomes(20,3)=32209.697770125673;
incomes(20,4)=32462.957178272994;
incomes(20,5)=33356.04764434916;
incomes(20,6)=33430.05412720344;
incomes(20,7)=32478.88887226348;
incomes(20,8)=33009.43946802707;
incomes(20,9)=32556.765520019857;
bref(21)=5000;
bnorm(21)=26000;
incomemean(21)=10000;
rents(21,1)=101.6030273482971;
rents(21,2)=82.06432834544715;
rents(21,3)=95.3752726256498;
rents(21,4)=108.83648675974024;
rents(21,5)=121.20156018634142;
rents(21,6)=133.80639926083109;
rents(21,7)=144.7137491010024;
rents(21,8)=153.6471579222382;
rents(21,9)=160.9700852487511;
incomes(21,1)=19034.244874089305;
incomes(21,2)=19263.81642916656;
incomes(21,3)=19367.14758194236;
incomes(21,4)=19223.050334179516;
incomes(21,5)=19624.85739834849;
incomes(21,6)=19809.186293412935;
incomes(21,7)=19581.41339970976;
incomes(21,8)=19728.931284621038;
incomes(21,9)=20294.04404618061;
bref(22)=5000;
bnorm(22)=26000;
incomemean(22)=11000;
rents(22,1)=99.6648100530446;
rents(22,2)=80.49762582894341;
rents(22,3)=96.86685690375207;
rents(22,4)=113.51820207442262;
rents(22,5)=129.94179639703287;
rents(22,6)=146.82279304829544;
rents(22,7)=161.71934533892343;
rents(22,8)=172.08363422832525;
rents(22,9)=178.50351170938188;
incomes(22,1)=20107.84943218164;
incomes(22,2)=20394.156029831112;
incomes(22,3)=20426.769998894408;
incomes(22,4)=20636.64792747082;
incomes(22,5)=21144.36533064938;
incomes(22,6)=21225.108858654727;
incomes(22,7)=20768.98558223406;
incomes(22,8)=20548.180958407105;
incomes(22,9)=21036.501168700644;
bref(23)=5000;
bnorm(23)=26000;
incomemean(23)=12000;
rents(23,1)=99.48429506159324;
rents(23,2)=80.35037374504518;
rents(23,3)=99.88343067250055;
rents(23,4)=120.23327997707894;
rents(23,5)=140.78843023290491;
rents(23,6)=160.0408988820244;
rents(23,7)=177.14954240441818;
rents(23,8)=188.72779645145184;
rents(23,9)=194.41397971088836;
incomes(23,1)=21437.75634126485;
incomes(23,2)=21665.330321979833;
incomes(23,3)=21618.593926355687;
incomes(23,4)=21921.95441296828;
incomes(23,5)=22192.603568364768;
incomes(23,6)=22530.600059549648;
incomes(23,7)=21991.346954147783;
incomes(23,8)=21800.927943401333;
incomes(23,9)=21925.909574930396;
bref(24)=5000;
bnorm(24)=26000;
incomemean(24)=13000;
rents(24,1)=100.27009717572125;
rents(24,2)=80.98775432009016;
rents(24,3)=103.4785034209743;
rents(24,4)=127.23041423595;
rents(24,5)=152.98328531759074;
rents(24,6)=177.36932618711552;
rents(24,7)=193.49637558402233;
rents(24,8)=198.27671320871124;
rents(24,9)=199.79960718048295;
incomes(24,1)=22447.35184834459;
incomes(24,2)=22645.073665871954;
incomes(24,3)=22681.960236908384;
incomes(24,4)=23380.90829186707;
incomes(24,5)=23704.056462656827;
incomes(24,6)=23729.381416602464;
incomes(24,7)=22930.245883051142;
incomes(24,8)=23442.546239477546;
incomes(24,9)=23233.63670961092;
bref(25)=5000;
bnorm(25)=26000;
incomemean(25)=14000;
rents(25,1)=99.58252934812487;
rents(25,2)=80.43288102183655;
rents(25,3)=108.44248082747777;
rents(25,4)=139.96537358480722;
rents(25,5)=172.18738768686083;
rents(25,6)=196.62689344143527;
rents(25,7)=200;
rents(25,8)=200;
rents(25,9)=200;
incomes(25,1)=24262.993107211554;
incomes(25,2)=24590.862651011426;
incomes(25,3)=24641.093950171962;
incomes(25,4)=24666.92592640516;
incomes(25,5)=25522.570898208356;
incomes(25,6)=25365.104764264554;
incomes(25,7)=24875.436746914846;
incomes(25,8)=24642.664760642896;
incomes(25,9)=25133.641221242924;
bref(26)=5000;
bnorm(26)=26000;
incomemean(26)=15000;
rents(26,1)=100.82746590868663;
rents(26,2)=81.43106171960248;
rents(26,3)=112.82300987415965;
rents(26,4)=148.04078633518742;
rents(26,5)=183.68015051667683;
rents(26,6)=199.23105867776232;
rents(26,7)=200;
rents(26,8)=200;
rents(26,9)=200;
incomes(26,1)=24915.896235735403;
incomes(26,2)=25650.278567134035;
incomes(26,3)=25492.730136723276;
incomes(26,4)=25637.30451389322;
incomes(26,5)=26829.11532776783;
incomes(26,6)=26682.451762814217;
incomes(26,7)=26094.133541112173;
incomes(26,8)=26002.71717291085;
incomes(26,9)=25927.775670876425;
bref(27)=5000;
bnorm(27)=26000;
incomemean(27)=16000;
rents(27,1)=97.96033414897799;
rents(27,2)=79.11740344173201;
rents(27,3)=115.96075451065047;
rents(27,4)=159.18564589560714;
rents(27,5)=196.15390676839513;
rents(27,6)=200;
rents(27,7)=200;
rents(27,8)=200;
rents(27,9)=200;
incomes(27,1)=26710.787206719586;
incomes(27,2)=28016.250970122637;
incomes(27,3)=27726.852046823922;
incomes(27,4)=27837.473770594628;
incomes(27,5)=28650.529862816;
incomes(27,6)=28549.869391845245;
incomes(27,7)=28275.40466375386;
incomes(27,8)=27993.53924550674;
incomes(27,9)=28110.41853261353;
bref(28)=5000;
bnorm(28)=26000;
incomemean(28)=17000;
rents(28,1)=100.31890820010939;
rents(28,2)=81.02589037695078;
rents(28,3)=120.8711725598249;
rents(28,4)=168.7266456468573;
rents(28,5)=199.36933838658135;
rents(28,6)=200;
rents(28,7)=200;
rents(28,8)=200;
rents(28,9)=200;
incomes(28,1)=28466.2944460859;
incomes(28,2)=28859.799341694983;
incomes(28,3)=28705.958265070156;
incomes(28,4)=28613.21500681731;
incomes(28,5)=29324.509163399976;
incomes(28,6)=29804.98057519633;
incomes(28,7)=28760.826270427868;
incomes(28,8)=28715.808941002713;
incomes(28,9)=29421.5069098661;
bref(29)=5000;
bnorm(29)=26000;
incomemean(29)=18000;
rents(29,1)=100.72263978690825;
rents(29,2)=81.35107744760239;
rents(29,3)=125.73255324384981;
rents(29,4)=182.34597761830676;
rents(29,5)=200;
rents(29,6)=200;
rents(29,7)=200;
rents(29,8)=200;
rents(29,9)=200;
incomes(29,1)=29648.176608265156;
incomes(29,2)=30269.506917348586;
incomes(29,3)=30567.47650031061;
incomes(29,4)=30942.557854001603;
incomes(29,5)=31398.794253017302;
incomes(29,6)=31067.262793141625;
incomes(29,7)=30382.42713572981;
incomes(29,8)=31078.08378613382;
incomes(29,9)=30954.58097404553;
bref(30)=5000;
bnorm(30)=26000;
incomemean(30)=19000;
rents(30,1)=101.67657118777966;
rents(30,2)=82.12819636321619;
rents(30,3)=133.10698071702507;
rents(30,4)=192.8757117395922;
rents(30,5)=200;
rents(30,6)=200;
rents(30,7)=200;
rents(30,8)=200;
rents(30,9)=200;
incomes(30,1)=31773.812821412634;
incomes(30,2)=32716.70814488979;
incomes(30,3)=32726.807606835075;
incomes(30,4)=33038.926870008836;
incomes(30,5)=33396.82869160805;
incomes(30,6)=33887.65873940172;
incomes(30,7)=33200.09127264346;
incomes(30,8)=33320.11885067034;
incomes(30,9)=33771.57564249704;
bref(31)=5000;
bnorm(31)=29000;
incomemean(31)=10000;
rents(31,1)=101.03714876728515;
rents(31,2)=83.62311155529136;
rents(31,3)=96.64120334824649;
rents(31,4)=108.85884306341963;
rents(31,5)=122.22389038295142;
rents(31,6)=135.7658266220301;
rents(31,7)=148.25157020777954;
rents(31,8)=158.18622559163424;
rents(31,9)=165.7914411341792;
incomes(31,1)=19573.004371120187;
incomes(31,2)=19784.986545757663;
incomes(31,3)=19525.206893267397;
incomes(31,4)=19974.652423709093;
incomes(31,5)=20472.622744134547;
incomes(31,6)=20659.794897821495;
incomes(31,7)=20297.07563968116;
incomes(31,8)=20088.802445956182;
incomes(31,9)=20330.25491114218;
bref(32)=5000;
bnorm(32)=29000;
incomemean(32)=11000;
rents(32,1)=99.19777073727715;
rents(32,2)=82.09101069082108;
rents(32,3)=97.30774269868682;
rents(32,4)=112.77230434148271;
rents(32,5)=127.94227364228394;
rents(32,6)=143.43207216291677;
rents(32,7)=157.6801346003121;
rents(32,8)=166.84885519294022;
rents(32,9)=174.46138995464642;
incomes(32,1)=20406.834162732794;
incomes(32,2)=20580.5441007416;
incomes(32,3)=20664.92302050794;
incomes(32,4)=20647.481670419933;
incomes(32,5)=21140.533431262338;
incomes(32,6)=21355.279691164702;
incomes(32,7)=20447.92749092971;
incomes(32,8)=20447.791334024263;
incomes(32,9)=20692.990509415034;
bref(33)=5000;
bnorm(33)=29000;
incomemean(33)=12000;
rents(33,1)=102.02606478145651;
rents(33,2)=84.43000743941705;
rents(33,3)=102.31231392591701;
rents(33,4)=121.01334195442044;
rents(33,5)=138.8814779402678;
rents(33,6)=156.74647403375377;
rents(33,7)=171.60512994215864;
rents(33,8)=183.14013123662096;
rents(33,9)=190.6155622727774;
incomes(33,1)=21151.59598863899;
incomes(33,2)=21636.235601557455;
incomes(33,3)=21732.43207366739;
incomes(33,4)=21625.307499943436;
incomes(33,5)=22086.905334444837;
incomes(33,6)=22024.975343710747;
incomes(33,7)=21912.770307361105;
incomes(33,8)=21835.892683878963;
incomes(33,9)=22288.462958230288;
bref(34)=5000;
bnorm(34)=29000;
incomemean(34)=13000;
rents(34,1)=98.82466678678945;
rents(34,2)=81.78680547368712;
rents(34,3)=102.81280253575893;
rents(34,4)=124.62504037731603;
rents(34,5)=148.6294686169004;
rents(34,6)=171.85538517431948;
rents(34,7)=190.32040463079358;
rents(34,8)=197.51352594684235;
rents(34,9)=199.5212836954328;
incomes(34,1)=22713.686796456783;
incomes(34,2)=23051.445919987047;
incomes(34,3)=22904.460760450955;
incomes(34,4)=23665.062249218874;
incomes(34,5)=23799.15757187804;
incomes(34,6)=23773.100654241844;
incomes(34,7)=23328.249674538765;
incomes(34,8)=23483.037848209962;
incomes(34,9)=23467.02856776071;
bref(35)=5000;
bnorm(35)=29000;
incomemean(35)=14000;
rents(35,1)=99.78851190910828;
rents(35,2)=82.58362386043213;
rents(35,3)=106.1810271928493;
rents(35,4)=132.31257486744786;
rents(35,5)=158.312447517076;
rents(35,6)=185.29700040700823;
rents(35,7)=198.54570887870076;
rents(35,8)=200;
rents(35,9)=200;
incomes(35,1)=23634.767186064157;
incomes(35,2)=23803.297391329746;
incomes(35,3)=23980.480374415278;
incomes(35,4)=23667.364603582417;
incomes(35,5)=24705.179185432193;
incomes(35,6)=24810.376506587367;
incomes(35,7)=24480.379252828232;
incomes(35,8)=24364.236540461534;
incomes(35,9)=24385.458294166176;
bref(36)=5000;
bnorm(36)=29000;
incomemean(36)=15000;
rents(36,1)=99.63245351716189;
rents(36,2)=82.44960709194379;
rents(36,3)=111.39698429666247;
rents(36,4)=143.02538167338287;
rents(36,5)=177.96094801665203;
rents(36,6)=199.28271387889842;
rents(36,7)=200;
rents(36,8)=200;
rents(36,9)=200;
incomes(36,1)=25573.455268391106;
incomes(36,2)=26081.607543546143;
incomes(36,3)=25707.864882090787;
incomes(36,4)=26216.614348450752;
incomes(36,5)=26829.652378847753;
incomes(36,6)=27041.78840917244;
incomes(36,7)=26819.641819448;
incomes(36,8)=26281.45524113786;
incomes(36,9)=26616.836617544086;
bref(37)=5000;
bnorm(37)=29000;
incomemean(37)=16000;
rents(37,1)=99.69755272529174;
rents(37,2)=82.50969773978618;
rents(37,3)=115.27149903628587;
rents(37,4)=152.58107181106854;
rents(37,5)=190.8584966260662;
rents(37,6)=200;
rents(37,7)=200;
rents(37,8)=200;
rents(37,9)=200;
incomes(37,1)=26900.811474294365;
incomes(37,2)=27478.649247863057;
incomes(37,3)=27117.2524000022;
incomes(37,4)=27300.34184822772;
incomes(37,5)=28016.10998881097;
incomes(37,6)=28172.752337087837;
incomes(37,7)=27336.590746370046;
incomes(37,8)=27409.300883154378;
incomes(37,9)=27466.38576956208;
bref(38)=5000;
bnorm(38)=29000;
incomemean(38)=17000;
rents(38,1)=102.81212814722862;
rents(38,2)=85.08629922477338;
rents(38,3)=121.70857345077218;
rents(38,4)=165.77317098320285;
rents(38,5)=197.90457277453817;
rents(38,6)=200;
rents(38,7)=200;
rents(38,8)=200;
rents(38,9)=200;
incomes(38,1)=28308.562238807936;
incomes(38,2)=28898.522524037344;
incomes(38,3)=29099.485901394;
incomes(38,4)=29229.243956758986;
incomes(38,5)=30352.048307916364;
incomes(38,6)=29876.86239810051;
incomes(38,7)=29311.62455518003;
incomes(38,8)=29091.778454132458;
incomes(38,9)=29246.807699942226;
bref(39)=5000;
bnorm(39)=29000;
incomemean(39)=18000;
rents(39,1)=100.38130922415363;
rents(39,2)=83.0798012211462;
rents(39,3)=124.46550163305946;
rents(39,4)=176.51203438362407;
rents(39,5)=200;
rents(39,6)=200;
rents(39,7)=200;
rents(39,8)=200;
rents(39,9)=200;
incomes(39,1)=30077.138147355286;
incomes(39,2)=30905.590853268564;
incomes(39,3)=31050.704081933865;
incomes(39,4)=30727.0620138985;
incomes(39,5)=31536.60461876423;
incomes(39,6)=31995.217969932044;
incomes(39,7)=30977.725786232742;
incomes(39,8)=31061.67661114255;
incomes(39,9)=31559.770314644615;
bref(40)=5000;
bnorm(40)=29000;
incomemean(40)=19000;
rents(40,1)=100.54274640856474;
rents(40,2)=83.20480224638955;
rents(40,3)=127.15751775496994;
rents(40,4)=182.46226249411248;
rents(40,5)=200;
rents(40,6)=200;
rents(40,7)=200;
rents(40,8)=200;
rents(40,9)=200;
incomes(40,1)=31218.779642166213;
incomes(40,2)=31694.759438847366;
incomes(40,3)=31738.19360094691;
incomes(40,4)=31909.264515383366;
incomes(40,5)=32716.312162557813;
incomes(40,6)=32929.07346414901;
incomes(40,7)=31904.39781689864;
incomes(40,8)=31705.095031726796;
incomes(40,9)=32172.13283204465;
bref(41)=5000;
bnorm(41)=32000;
incomemean(41)=10000;
rents(41,1)=98.68046721161207;
rents(41,2)=83.25645743340355;
rents(41,3)=94.39162490086208;
rents(41,4)=105.27398620102593;
rents(41,5)=115.44875238749299;
rents(41,6)=126.43237711866867;
rents(41,7)=137.55773621424783;
rents(41,8)=146.9865860076618;
rents(41,9)=155.41147494210247;
incomes(41,1)=19155.639051307873;
incomes(41,2)=19487.72842145548;
incomes(41,3)=19352.825861337336;
incomes(41,4)=19119.10915029419;
incomes(41,5)=19761.48066973785;
incomes(41,6)=20061.991162349164;
incomes(41,7)=19790.2631697075;
incomes(41,8)=19919.81949257695;
incomes(41,9)=20143.66938699287;
bref(42)=5000;
bnorm(42)=32000;
incomemean(42)=11000;
rents(42,1)=99.87517774514033;
rents(42,2)=84.26745253950406;
rents(42,3)=97.2175154593704;
rents(42,4)=110.14555882515371;
rents(42,5)=123.45256225741392;
rents(42,6)=136.7218780372066;
rents(42,7)=148.43849678012086;
rents(42,8)=158.51002623900118;
rents(42,9)=167.5145728295583;
incomes(42,1)=19885.89327144738;
incomes(42,2)=20187.736286599335;
incomes(42,3)=20236.85911310483;
incomes(42,4)=20389.601996020683;
incomes(42,5)=20746.14214983865;
incomes(42,6)=20677.385200954024;
incomes(42,7)=20516.127046645437;
incomes(42,8)=20582.272158188418;
incomes(42,9)=20835.03913052513;
bref(43)=5000;
bnorm(43)=32000;
incomemean(43)=12000;
rents(43,1)=98.40195504787968;
rents(43,2)=83.02610205117008;
rents(43,3)=99.31004898380903;
rents(43,4)=116.04268402052708;
rents(43,5)=132.78473937707804;
rents(43,6)=149.73372049128287;
rents(43,7)=166.03944468019452;
rents(43,8)=177.4841037810064;
rents(43,9)=186.178462467898;
incomes(43,1)=21507.429548810243;
incomes(43,2)=21575.84409996056;
incomes(43,3)=21515.39256226014;
incomes(43,4)=21664.613182205114;
incomes(43,5)=22053.93369637097;
incomes(43,6)=22369.443722274358;
incomes(43,7)=21696.215098682696;
incomes(43,8)=21738.431075721222;
incomes(43,9)=21554.96290112076;
bref(44)=5000;
bnorm(44)=32000;
incomemean(44)=13000;
rents(44,1)=96.96835421191581;
rents(44,2)=81.81398632442072;
rents(44,3)=100.16894419062955;
rents(44,4)=120.10450039990977;
rents(44,5)=139.2327481740201;
rents(44,6)=159.1501858859319;
rents(44,7)=178.24833262140592;
rents(44,8)=188.71804482787832;
rents(44,9)=195.28298792817122;
incomes(44,1)=22500.571694025057;
incomes(44,2)=22629.69742770351;
incomes(44,3)=22821.97363052167;
incomes(44,4)=22495.079471652385;
incomes(44,5)=23290.938464794293;
incomes(44,6)=23646.22101331017;
incomes(44,7)=22906.333351233472;
incomes(44,8)=22803.757493135425;
incomes(44,9)=22785.8306525079;
bref(45)=5000;
bnorm(45)=32000;
incomemean(45)=14000;
rents(45,1)=99.99642002360686;
rents(45,2)=84.36828593844388;
rents(45,3)=106.44052266908399;
rents(45,4)=131.3684812286169;
rents(45,5)=157.41844537612894;
rents(45,6)=182.70303311189326;
rents(45,7)=195.09093609131844;
rents(45,8)=199.04928516860912;
rents(45,9)=200;
incomes(45,1)=23967.323198675484;
incomes(45,2)=23991.98102715463;
incomes(45,3)=24431.349817278973;
incomes(45,4)=24536.67235872311;
incomes(45,5)=25100.629222824362;
incomes(45,6)=25540.97872011801;
incomes(45,7)=25058.416971029408;
incomes(45,8)=24607.098986512716;
incomes(45,9)=25236.0486154105;
bref(46)=5000;
bnorm(46)=32000;
incomemean(46)=15000;
rents(46,1)=101.25695001468804;
rents(46,2)=85.43739064059936;
rents(46,3)=111.14785918322377;
rents(46,4)=139.9519090092858;
rents(46,5)=169.82782819470953;
rents(46,6)=194.54494998044683;
rents(46,7)=200;
rents(46,8)=200;
rents(46,9)=200;
incomes(46,1)=25373.398421061964;
incomes(46,2)=25482.041809190683;
incomes(46,3)=25652.926472156156;
incomes(46,4)=25793.27206448509;
incomes(46,5)=26383.5752123155;
incomes(46,6)=26845.35844739387;
incomes(46,7)=26344.02407446205;
incomes(46,8)=26029.636934737773;
incomes(46,9)=25970.07326758341;
bref(47)=5000;
bnorm(47)=32000;
incomemean(47)=16000;
rents(47,1)=99.67969300780798;
rents(47,2)=84.10169376142456;
rents(47,3)=113.34780430100231;
rents(47,4)=147.0356541058044;
rents(47,5)=181.12345226594914;
rents(47,6)=199.66531883503202;
rents(47,7)=200;
rents(47,8)=200;
rents(47,9)=200;
incomes(47,1)=26459.524843192376;
incomes(47,2)=27361.396237532845;
incomes(47,3)=27483.966319563708;
incomes(47,4)=27305.30857220843;
incomes(47,5)=28084.053057074936;
incomes(47,6)=28344.473147250068;
incomes(47,7)=27913.833977751357;
incomes(47,8)=27620.10735669099;
incomes(47,9)=28144.824577627955;
bref(48)=5000;
bnorm(48)=32000;
incomemean(48)=17000;
rents(48,1)=99.06004421791928;
rents(48,2)=83.58485446896039;
rents(48,3)=117.20009187208804;
rents(48,4)=157.46210798856595;
rents(48,5)=195.43792464934987;
rents(48,6)=200;
rents(48,7)=200;
rents(48,8)=200;
rents(48,9)=200;
incomes(48,1)=28427.647778885006;
incomes(48,2)=29007.828615139973;
incomes(48,3)=29141.055284122584;
incomes(48,4)=29141.609329557527;
incomes(48,5)=29967.497636017863;
incomes(48,6)=30006.54290360218;
incomes(48,7)=29247.3289650371;
incomes(48,8)=29146.075604682857;
incomes(48,9)=29175.026426913984;
bref(49)=5000;
bnorm(49)=32000;
incomemean(49)=18000;
rents(49,1)=98.53874544570637;
rents(49,2)=83.14376821015259;
rents(49,3)=120.42337493241605;
rents(49,4)=165.4683973536276;
rents(49,5)=197.8347305414534;
rents(49,6)=200;
rents(49,7)=200;
rents(49,8)=200;
rents(49,9)=200;
incomes(49,1)=30290.09640848762;
incomes(49,2)=30848.01634497577;
incomes(49,3)=30620.625885465717;
incomes(49,4)=30919.532933516315;
incomes(49,5)=31868.975477537584;
incomes(49,6)=31963.29617719492;
incomes(49,7)=31368.74375758024;
incomes(49,8)=31086.577777706145;
incomes(49,9)=31469.239415535216;
bref(50)=5000;
bnorm(50)=32000;
incomemean(50)=19000;
rents(50,1)=101.70549658071627;
rents(50,2)=85.81073536095829;
rents(50,3)=127.17157331118693;
rents(50,4)=179.52155852597213;
rents(50,5)=200;
rents(50,6)=200;
rents(50,7)=200;
rents(50,8)=200;
rents(50,9)=200;
incomes(50,1)=31562.255874694725;
incomes(50,2)=32004.397233296713;
incomes(50,3)=32237.428168172395;
incomes(50,4)=32268.0194423534;
incomes(50,5)=33226.24416340468;
incomes(50,6)=32766.680623743465;
incomes(50,7)=32078.413387859717;
incomes(50,8)=31720.152859001515;
incomes(50,9)=32463.250020447922;
bref(51)=5000;
bnorm(51)=35000;
incomemean(51)=10000;
rents(51,1)=101.92850931535877;
rents(51,2)=87.36552804617298;
rents(51,3)=97.57751620180073;
rents(51,4)=107.61091238682329;
rents(51,5)=117.33577906560218;
rents(51,6)=127.81745894723547;
rents(51,7)=137.4276783495971;
rents(51,8)=145.72959494503198;
rents(51,9)=152.68363308537195;
incomes(51,1)=19179.916608077976;
incomes(51,2)=19466.53346373106;
incomes(51,3)=19459.464347809888;
incomes(51,4)=19514.95376636862;
incomes(51,5)=19890.034057840145;
incomes(51,6)=19994.461467211026;
incomes(51,7)=19722.14270652142;
incomes(51,8)=19535.490406101693;
incomes(51,9)=19794.664330454485;
bref(52)=5000;
bnorm(52)=35000;
incomemean(52)=11000;
rents(52,1)=100.17418734593767;
rents(52,2)=85.86987123047187;
rents(52,3)=99.0789204006256;
rents(52,4)=111.54619078989849;
rents(52,5)=123.85780496848987;
rents(52,6)=136.6107409275044;
rents(52,7)=149.43625111182908;
rents(52,8)=159.7260737993237;
rents(52,9)=169.12027360832795;
incomes(52,1)=20313.251295961818;
incomes(52,2)=21008.590507629964;
incomes(52,3)=20574.121634472613;
incomes(52,4)=20557.710074758736;
incomes(52,5)=21211.956524270427;
incomes(52,6)=21414.20988426573;
incomes(52,7)=20916.352684790156;
incomes(52,8)=21182.4292165646;
incomes(52,9)=21054.051381739926;
bref(53)=5000;
bnorm(53)=35000;
incomemean(53)=12000;
rents(53,1)=100.32765391456793;
rents(53,2)=85.99005629936563;
rents(53,3)=100.22990621728093;
rents(53,4)=114.9480407887429;
rents(53,5)=129.34582530940506;
rents(53,6)=143.40797357149927;
rents(53,7)=157.49528832611193;
rents(53,8)=168.78636940099446;
rents(53,9)=178.2604456091856;
incomes(53,1)=20941.513554963894;
incomes(53,2)=21207.321270907585;
incomes(53,3)=21437.880740999502;
incomes(53,4)=21359.13605943277;
incomes(53,5)=21619.648965769284;
incomes(53,6)=22129.043145618343;
incomes(53,7)=21516.810053269197;
incomes(53,8)=21510.77539427423;
incomes(53,9)=21676.433303991114;
bref(54)=5000;
bnorm(54)=35000;
incomemean(54)=13000;
rents(54,1)=100.92002952226782;
rents(54,2)=86.50320407616839;
rents(54,3)=104.21417877747498;
rents(54,4)=122.37913052185904;
rents(54,5)=140.68842830673952;
rents(54,6)=159.4691818183044;
rents(54,7)=177.45252862374485;
rents(54,8)=189.05985165081972;
rents(54,9)=195.46185507817182;
incomes(54,1)=22252.28372403519;
incomes(54,2)=22863.001169946012;
incomes(54,3)=22693.424576063648;
incomes(54,4)=22765.572805713062;
incomes(54,5)=23241.283128183146;
incomes(54,6)=23540.358431079487;
incomes(54,7)=22939.93198590886;
incomes(54,8)=22951.1045545223;
incomes(54,9)=23141.8823644619;
bref(55)=5000;
bnorm(55)=35000;
incomemean(55)=14000;
rents(55,1)=98.2084289872495;
rents(55,2)=84.17601958623159;
rents(55,3)=104.1459503786724;
rents(55,4)=125.75090191472638;
rents(55,5)=147.40255671428417;
rents(55,6)=171.58160739258105;
rents(55,7)=191.7853159264573;
rents(55,8)=198.97871762015203;
rents(55,9)=199.8702202413899;
incomes(55,1)=23504.38626210449;
incomes(55,2)=23972.369979931387;
incomes(55,3)=24148.66221621887;
incomes(55,4)=23870.958655874296;
incomes(55,5)=25119.12496873811;
incomes(55,6)=25096.872679572574;
incomes(55,7)=25043.693522075788;
incomes(55,8)=24528.80397578103;
incomes(55,9)=24658.26021215356;
bref(56)=5000;
bnorm(56)=35000;
incomemean(56)=15000;
rents(56,1)=103.32368355285925;
rents(56,2)=88.56258273623516;
rents(56,3)=113.03335242091568;
rents(56,4)=140.08224852438656;
rents(56,5)=168.8374818740483;
rents(56,6)=193.9241934507679;
rents(56,7)=199.98823223379264;
rents(56,8)=200;
rents(56,9)=200;
incomes(56,1)=25347.18287451369;
incomes(56,2)=25889.208390404816;
incomes(56,3)=25912.002292213718;
incomes(56,4)=26078.28626549351;
incomes(56,5)=26829.312214153284;
incomes(56,6)=27078.653427243287;
incomes(56,7)=26710.54125136996;
incomes(56,8)=26079.16501879798;
incomes(56,9)=26305.397165331848;
bref(57)=5000;
bnorm(57)=35000;
incomemean(57)=16000;
rents(57,1)=99.4949691526531;
rents(57,2)=85.27906458931668;
rents(57,3)=111.99624832730763;
rents(57,4)=142.74980129270398;
rents(57,5)=174.79779264622036;
rents(57,6)=198.97883393394793;
rents(57,7)=200;
rents(57,8)=200;
rents(57,9)=200;
incomes(57,1)=26719.49148415097;
incomes(57,2)=27012.92750925702;
incomes(57,3)=27223.83483524518;
incomes(57,4)=27063.58788940863;
incomes(57,5)=28060.146750279433;
incomes(57,6)=28206.63174464653;
incomes(57,7)=27374.816877636014;
incomes(57,8)=27745.902123678647;
incomes(57,9)=27711.076384326705;
bref(58)=5000;
bnorm(58)=35000;
incomemean(58)=17000;
rents(58,1)=98.1838735483179;
rents(58,2)=84.15396426373924;
rents(58,3)=115.43506544300912;
rents(58,4)=151.8159429885056;
rents(58,5)=189.5090632711928;
rents(58,6)=200;
rents(58,7)=200;
rents(58,8)=200;
rents(58,9)=200;
incomes(58,1)=28612.062734349158;
incomes(58,2)=29350.690513921487;
incomes(58,3)=29111.560960884628;
incomes(58,4)=29448.31030665044;
incomes(58,5)=30487.64483338792;
incomes(58,6)=30248.052756559828;
incomes(58,7)=29282.202253017673;
incomes(58,8)=29530.990407228004;
incomes(58,9)=30058.179270974728;
bref(59)=5000;
bnorm(59)=35000;
incomemean(59)=18000;
rents(59,1)=100.40920823974152;
rents(59,2)=86.06411165079939;
rents(59,3)=120.41729577372244;
rents(59,4)=161.71062176346865;
rents(59,5)=197.94232160431656;
rents(59,6)=200;
rents(59,7)=200;
rents(59,8)=200;
rents(59,9)=200;
incomes(59,1)=29517.685423470248;
incomes(59,2)=30329.838441119467;
incomes(59,3)=30408.420440820337;
incomes(59,4)=30330.97058695923;
incomes(59,5)=31021.412180770105;
incomes(59,6)=31453.92501873485;
incomes(59,7)=30533.80862192361;
incomes(59,8)=30401.42084170504;
incomes(59,9)=30658.316264095494;
bref(60)=5000;
bnorm(60)=35000;
incomemean(60)=19000;
rents(60,1)=99.7987898345872;
rents(60,2)=85.53896572363895;
rents(60,3)=124.69455602212993;
rents(60,4)=172.45378706141028;
rents(60,5)=199.40144116372403;
rents(60,6)=200;
rents(60,7)=200;
rents(60,8)=200;
rents(60,9)=200;
incomes(60,1)=32390.074012334408;
incomes(60,2)=32699.492188463813;
incomes(60,3)=32370.692422373068;
incomes(60,4)=32779.632839714766;
incomes(60,5)=33683.55914295446;
incomes(60,6)=33740.13708748666;
incomes(60,7)=32897.85645354592;
incomes(60,8)=33490.55043759571;
incomes(60,9)=33955.00012382423;
bref(61)=5000;
bnorm(61)=38000;
incomemean(61)=10000;
rents(61,1)=100.44962539881624;
rents(61,2)=87.22779120847136;
rents(61,3)=96.60442486555156;
rents(61,4)=105.69382622014447;
rents(61,5)=114.626700755193;
rents(61,6)=124.47592555255987;
rents(61,7)=133.85013978359112;
rents(61,8)=141.25719714324356;
rents(61,9)=148.50002063044371;
incomes(61,1)=19197.196738489816;
incomes(61,2)=19429.272012578178;
incomes(61,3)=19314.090108222543;
incomes(61,4)=19266.3939732627;
incomes(61,5)=19736.831937714553;
incomes(61,6)=19982.835013793785;
incomes(61,7)=19358.589800362595;
incomes(61,8)=19554.736896421502;
incomes(61,9)=19672.080890863104;
bref(62)=5000;
bnorm(62)=38000;
incomemean(62)=11000;
rents(62,1)=101.88328225581964;
rents(62,2)=88.4776424885655;
rents(62,3)=99.42080169814213;
rents(62,4)=109.96150157567469;
rents(62,5)=120.58642480782706;
rents(62,6)=132.1227189459126;
rents(62,7)=143.13956930781046;
rents(62,8)=152.7445015886925;
rents(62,9)=161.03689997304832;
incomes(62,1)=20027.500347425004;
incomes(62,2)=20297.7430866517;
incomes(62,3)=20086.282992563116;
incomes(62,4)=20219.133419955062;
incomes(62,5)=20904.81893664353;
incomes(62,6)=20982.431556531843;
incomes(62,7)=20831.944772959992;
incomes(62,8)=20495.819721285952;
incomes(62,9)=20900.635785534898;
bref(63)=5000;
bnorm(63)=38000;
incomemean(63)=12000;
rents(63,1)=99.7030855743159;
rents(63,2)=86.58306183957417;
rents(63,3)=100.50791848704083;
rents(63,4)=114.03955712987253;
rents(63,5)=127.26016279507519;
rents(63,6)=141.29312055451072;
rents(63,7)=154.7542313105839;
rents(63,8)=166.002840997016;
rents(63,9)=176.23463224146505;
incomes(63,1)=21092.65855198624;
incomes(63,2)=21635.322478743514;
incomes(63,3)=21253.838099803437;
incomes(63,4)=21132.813554014338;
incomes(63,5)=21800.717104638723;
incomes(63,6)=21962.069389979177;
incomes(63,7)=21448.87251727414;
incomes(63,8)=21722.21953613164;
incomes(63,9)=22001.285295374488;
bref(64)=5000;
bnorm(64)=38000;
incomemean(64)=13000;
rents(64,1)=100.97403967721088;
rents(64,2)=87.69190933163559;
rents(64,3)=103.74981368580917;
rents(64,4)=120.56417896868714;
rents(64,5)=137.30239004570637;
rents(64,6)=154.2149203539691;
rents(64,7)=169.59034050278092;
rents(64,8)=182.92482623610792;
rents(64,9)=191.0627098601121;
incomes(64,1)=21998.363776359005;
incomes(64,2)=22852.38166525649;
incomes(64,3)=22807.072978218188;
incomes(64,4)=22795.082455885058;
incomes(64,5)=23219.05944712362;
incomes(64,6)=23224.994521582914;
incomes(64,7)=23032.073200666182;
incomes(64,8)=22828.68570000875;
incomes(64,9)=23029.869935356608;
bref(65)=5000;
bnorm(65)=38000;
incomemean(65)=14000;
rents(65,1)=97.61377329091053;
rents(65,2)=84.77300087980379;
rents(65,3)=104.7579705266788;
rents(65,4)=125.37218163801495;
rents(65,5)=146.33718265665817;
rents(65,6)=168.78606605573648;
rents(65,7)=186.75137760243976;
rents(65,8)=196.39716532049883;
rents(65,9)=199.5223646435651;
incomes(65,1)=24463.70836391823;
incomes(65,2)=24789.38463200487;
incomes(65,3)=24257.40133545428;
incomes(65,4)=24205.69426956621;
incomes(65,5)=25006.265799020934;
incomes(65,6)=25204.453721169142;
incomes(65,7)=24534.527658579074;
incomes(65,8)=24665.284059508147;
incomes(65,9)=24994.943050483158;
bref(66)=5000;
bnorm(66)=38000;
incomemean(66)=15000;
rents(66,1)=100.23953758664679;
rents(66,2)=87.05076976252361;
rents(66,3)=109.81220839074234;
rents(66,4)=134.25518761453776;
rents(66,5)=159.49922191868956;
rents(66,6)=185.62691546295608;
rents(66,7)=199.20715150312287;
rents(66,8)=199.963014851962;
rents(66,9)=200;
incomes(66,1)=25499.367329381024;
incomes(66,2)=26080.214518555116;
incomes(66,3)=25626.469398001114;
incomes(66,4)=25643.552736013346;
incomes(66,5)=26447.634509476662;
incomes(66,6)=26502.80099580909;
incomes(66,7)=25936.46717958266;
incomes(66,8)=26107.668037082392;
incomes(66,9)=26604.190022065257;
bref(67)=5000;
bnorm(67)=38000;
incomemean(67)=16000;
rents(67,1)=100.17987673419832;
rents(67,2)=86.99876414110928;
rents(67,3)=112.15848833072859;
rents(67,4)=140.32406355725365;
rents(67,5)=170.34114934664603;
rents(67,6)=195.75756277074035;
rents(67,7)=200;
rents(67,8)=200;
rents(67,9)=200;
incomes(67,1)=26935.57955472219;
incomes(67,2)=27248.162254481176;
incomes(67,3)=27085.36416370363;
incomes(67,4)=27262.538128377815;
incomes(67,5)=28044.497535061717;
incomes(67,6)=28106.724362788278;
incomes(67,7)=27869.55510695168;
incomes(67,8)=27398.723954458674;
incomes(67,9)=27629.52027694665;
bref(68)=5000;
bnorm(68)=38000;
incomemean(68)=17000;
rents(68,1)=100.86104622247305;
rents(68,2)=87.58731666564098;
rents(68,3)=115.67363004337493;
rents(68,4)=148.19068795570925;
rents(68,5)=182.12627003822917;
rents(68,6)=199.9607962880798;
rents(68,7)=200;
rents(68,8)=200;
rents(68,9)=200;
incomes(68,1)=28261.800790576777;
incomes(68,2)=28493.063923880614;
incomes(68,3)=28642.559684791122;
incomes(68,4)=28485.718731719455;
incomes(68,5)=29729.818104696944;
incomes(68,6)=29850.595539597813;
incomes(68,7)=28940.71200987548;
incomes(68,8)=29479.093542632618;
incomes(68,9)=29623.44500767137;
bref(69)=5000;
bnorm(69)=38000;
incomemean(69)=18000;
rents(69,1)=97.37501671688977;
rents(69,2)=84.56527438154693;
rents(69,3)=114.73029229169217;
rents(69,4)=150.7304807855574;
rents(69,5)=187.07108833773523;
rents(69,6)=199.32733458379968;
rents(69,7)=200;
rents(69,8)=200;
rents(69,9)=200;
incomes(69,1)=30014.612550083853;
incomes(69,2)=29975.82647159275;
incomes(69,3)=30338.31516039142;
incomes(69,4)=29675.822118235923;
incomes(69,5)=30892.66581050757;
incomes(69,6)=31342.67149419056;
incomes(69,7)=30710.42781467872;
incomes(69,8)=30892.162108015626;
incomes(69,9)=31082.69538193844;
bref(70)=5000;
bnorm(70)=38000;
incomemean(70)=19000;
rents(70,1)=100.95414991904242;
rents(70,2)=87.67011373858448;
rents(70,3)=122.40240570587808;
rents(70,4)=165.10593384986973;
rents(70,5)=198.94610516950812;
rents(70,6)=200;
rents(70,7)=200;
rents(70,8)=200;
rents(70,9)=200;
incomes(70,1)=31830.244367798237;
incomes(70,2)=31829.21765859476;
incomes(70,3)=32061.863473520265;
incomes(70,4)=31955.58413319113;
incomes(70,5)=33001.17435294405;
incomes(70,6)=33631.75128270039;
incomes(70,7)=32088.710290997045;
incomes(70,8)=32503.642306010992;
incomes(70,9)=32763.588567886076;
bref(71)=5000;
bnorm(71)=41000;
incomemean(71)=10000;
rents(71,1)=97.13250313862396;
rents(71,2)=85.29031282234472;
rents(71,3)=93.93292375309343;
rents(71,4)=101.95497631027432;
rents(71,5)=109.7954211056701;
rents(71,6)=118.37643204447158;
rents(71,7)=126.76848640568613;
rents(71,8)=134.5153911845428;
rents(71,9)=141.42009353480688;
incomes(71,1)=18909.198997163126;
incomes(71,2)=19498.500410059492;
incomes(71,3)=19230.304294494996;
incomes(71,4)=19137.263811545632;
incomes(71,5)=19668.110729952812;
incomes(71,6)=19782.267706058672;
incomes(71,7)=19776.384662381035;
incomes(71,8)=19518.339060026654;
incomes(71,9)=19743.114769233434;
bref(72)=5000;
bnorm(72)=41000;
incomemean(72)=11000;
rents(72,1)=97.17588576665148;
rents(72,2)=85.32163263797885;
rents(72,3)=96.06116851400749;
rents(72,4)=106.38665235478263;
rents(72,5)=116.44716565866894;
rents(72,6)=127.24179861442929;
rents(72,7)=138.06268356627783;
rents(72,8)=147.76586612684332;
rents(72,9)=156.46607182283446;
incomes(72,1)=20127.60513014295;
incomes(72,2)=20632.318953358114;
incomes(72,3)=20344.168143502335;
incomes(72,4)=20118.224116258833;
incomes(72,5)=20715.57597699841;
incomes(72,6)=21010.27831158158;
incomes(72,7)=20627.98717863328;
incomes(72,8)=20771.14760952857;
incomes(72,9)=20810.157455092125;
bref(73)=5000;
bnorm(73)=41000;
incomemean(73)=12000;
rents(73,1)=100.26929670743492;
rents(73,2)=88.03705281135409;
rents(73,3)=100.96709395991702;
rents(73,4)=113.39115087682535;
rents(73,5)=126.14104407051428;
rents(73,6)=139.24377213563943;
rents(73,7)=152.94417199741378;
rents(73,8)=164.47498010191242;
rents(73,9)=174.89498050385313;
incomes(73,1)=21280.848656608952;
incomes(73,2)=21756.781801457513;
incomes(73,3)=21326.808340083695;
incomes(73,4)=21529.743078809082;
incomes(73,5)=21969.532944322833;
incomes(73,6)=22295.42436065795;
incomes(73,7)=21752.225325046988;
incomes(73,8)=21793.87218644997;
incomes(73,9)=21773.713178813192;
bref(74)=5000;
bnorm(74)=41000;
incomemean(74)=13000;
rents(74,1)=99.59906123494497;
rents(74,2)=87.45061522888052;
rents(74,3)=102.85277549361905;
rents(74,4)=118.66567774604084;
rents(74,5)=134.2957792701986;
rents(74,6)=151.11917797380053;
rents(74,7)=167.1591745675914;
rents(74,8)=180.82756767609453;
rents(74,9)=191.39792028477035;
incomes(74,1)=22766.570163702803;
incomes(74,2)=22973.099597968685;
incomes(74,3)=22892.74170656718;
incomes(74,4)=22799.8966451721;
incomes(74,5)=23588.09558151305;
incomes(74,6)=23522.998254982056;
incomes(74,7)=22978.862700051803;
incomes(74,8)=23213.22683443071;
incomes(74,9)=23223.80142441412;
bref(75)=5000;
bnorm(75)=41000;
incomemean(75)=14000;
rents(75,1)=98.88730525634067;
rents(75,2)=86.82436709020814;
rents(75,3)=104.16022725687777;
rents(75,4)=122.40600965841223;
rents(75,5)=141.8569305547785;
rents(75,6)=162.0511634268897;
rents(75,7)=180.66020883292714;
rents(75,8)=193.36193714774305;
rents(75,9)=198.53735969768667;
incomes(75,1)=23887.63013824854;
incomes(75,2)=24054.78939967367;
incomes(75,3)=23962.931267755655;
incomes(75,4)=24397.779952750832;
incomes(75,5)=24850.15661310659;
incomes(75,6)=24834.319107910847;
incomes(75,7)=24461.409075381565;
incomes(75,8)=24570.597972518557;
incomes(75,9)=24677.111020534456;
bref(76)=5000;
bnorm(76)=41000;
incomemean(76)=15000;
rents(76,1)=96.4720711920549;
rents(76,2)=84.70312309729073;
rents(76,3)=104.8097153105552;
rents(76,4)=127.10942552119985;
rents(76,5)=150.62428233975098;
rents(76,6)=175.8058009829213;
rents(76,7)=194.7763231666362;
rents(76,8)=198.36419703572835;
rents(76,9)=199.9999117811799;
incomes(76,1)=25132.396409371042;
incomes(76,2)=25608.624903504806;
incomes(76,3)=25856.96224960751;
incomes(76,4)=25778.71570416283;
incomes(76,5)=26722.25203295528;
incomes(76,6)=26559.399214430818;
incomes(76,7)=26421.96049802173;
incomes(76,8)=26497.15576447462;
incomes(76,9)=26695.869861578678;
bref(77)=5000;
bnorm(77)=41000;
incomemean(77)=16000;
rents(77,1)=100.56736318224681;
rents(77,2)=88.30239005803143;
rents(77,3)=111.03093986956496;
rents(77,4)=135.8943696276977;
rents(77,5)=161.9622772598839;
rents(77,6)=187.9879963598758;
rents(77,7)=199.42297737375145;
rents(77,8)=200;
rents(77,9)=200;
incomes(77,1)=26354.64326793353;
incomes(77,2)=26779.723256728514;
incomes(77,3)=26739.30528434087;
incomes(77,4)=26790.742566826582;
incomes(77,5)=27576.070722203294;
incomes(77,6)=28116.780163457213;
incomes(77,7)=27044.399124208412;
incomes(77,8)=27312.91442520443;
incomes(77,9)=27669.302755020104;
bref(78)=5000;
bnorm(78)=41000;
incomemean(78)=17000;
rents(78,1)=99.67797619721244;
rents(78,2)=87.52050150108327;
rents(78,3)=113.97172022794739;
rents(78,4)=143.8241271579583;
rents(78,5)=175.35523968559625;
rents(78,6)=196.53518791718852;
rents(78,7)=200;
rents(78,8)=200;
rents(78,9)=200;
incomes(78,1)=28529.615074350713;
incomes(78,2)=28846.85046347767;
incomes(78,3)=28652.160364776708;
incomes(78,4)=28491.067753429503;
incomes(78,5)=29459.667244969678;
incomes(78,6)=29973.396596394203;
incomes(78,7)=29282.36403816783;
incomes(78,8)=29507.217166442784;
incomes(78,9)=29934.424373442616;
bref(79)=5000;
bnorm(79)=41000;
incomemean(79)=18000;
rents(79,1)=101.6625626533448;
rents(79,2)=89.26736438953394;
rents(79,3)=119.16137291580617;
rents(79,4)=153.52210688161617;
rents(79,5)=188.69728921108464;
rents(79,6)=199.97674045702317;
rents(79,7)=200;
rents(79,8)=200;
rents(79,9)=200;
incomes(79,1)=30286.87941360747;
incomes(79,2)=30408.991922279027;
incomes(79,3)=30176.482086478467;
incomes(79,4)=30525.931833554023;
incomes(79,5)=31087.971710444137;
incomes(79,6)=31431.14140990848;
incomes(79,7)=30842.905298277077;
incomes(79,8)=30794.18970747153;
incomes(79,9)=31080.639358008564;
bref(80)=5000;
bnorm(80)=41000;
incomemean(80)=19000;
rents(80,1)=98.98735913571768;
rents(80,2)=86.91180110569344;
rents(80,3)=119.34651908718227;
rents(80,4)=158.32585263628926;
rents(80,5)=195.052270971224;
rents(80,6)=200;
rents(80,7)=200;
rents(80,8)=200;
rents(80,9)=200;
incomes(80,1)=31369.698136893665;
incomes(80,2)=31947.73486326501;
incomes(80,3)=31929.882526509253;
incomes(80,4)=31592.86343921103;
incomes(80,5)=32984.79263680786;
incomes(80,6)=33288.05951979162;
incomes(80,7)=32538.068167213652;
incomes(80,8)=32426.33532276831;
incomes(80,9)=32812.684735343144;
bref(81)=5000;
bnorm(81)=44000;
incomemean(81)=10000;
rents(81,1)=100.07664097265608;
rents(81,2)=88.70747179658919;
rents(81,3)=96.5440720870654;
rents(81,4)=104.6237560338152;
rents(81,5)=112.43792544191547;
rents(81,6)=121.03885971305837;
rents(81,7)=128.37240502437896;
rents(81,8)=135.63565677677414;
rents(81,9)=141.74862442512574;
incomes(81,1)=19063.58628266727;
incomes(81,2)=19314.393676631593;
incomes(81,3)=19375.91356275395;
incomes(81,4)=19288.540333370274;
incomes(81,5)=19766.492326556217;
incomes(81,6)=19401.14129399933;
incomes(81,7)=19484.633755391165;
incomes(81,8)=19232.536082551916;
incomes(81,9)=19489.715859095846;
bref(82)=5000;
bnorm(82)=44000;
incomemean(82)=11000;
rents(82,1)=103.13343900893469;
rents(82,2)=91.41433031016726;
rents(82,3)=101.01767610939478;
rents(82,4)=110.32569378943099;
rents(82,5)=120.15058103683414;
rents(82,6)=129.48286597742197;
rents(82,7)=138.38125818751365;
rents(82,8)=146.82144063671367;
rents(82,9)=154.7378584952922;
incomes(82,1)=19942.95939339193;
incomes(82,2)=20324.66504274861;
incomes(82,3)=20110.61228585462;
incomes(82,4)=20373.14901859515;
incomes(82,5)=20512.05855871927;
incomes(82,6)=20637.876172519133;
incomes(82,7)=20619.299418248025;
incomes(82,8)=20749.933820580532;
incomes(82,9)=20825.17626609314;
bref(83)=5000;
bnorm(83)=44000;
incomemean(83)=12000;
rents(83,1)=101.82061592732595;
rents(83,2)=90.25023386890769;
rents(83,3)=102.49350215503871;
rents(83,4)=115.38318741677895;
rents(83,5)=128.51952120875177;
rents(83,6)=141.97611827494623;
rents(83,7)=154.8307532878549;
rents(83,8)=165.96859835166785;
rents(83,9)=176.20586386646104;
incomes(83,1)=21421.135185533276;
incomes(83,2)=21746.23101005724;
incomes(83,3)=21926.833169377052;
incomes(83,4)=22013.82483200384;
incomes(83,5)=22302.433095613345;
incomes(83,6)=22490.727839099534;
incomes(83,7)=22108.473170975143;
incomes(83,8)=22354.04015596288;
incomes(83,9)=21947.09925158873;
bref(84)=5000;
bnorm(84)=44000;
incomemean(84)=13000;
rents(84,1)=96.89830349415777;
rents(84,2)=85.89231141611677;
rents(84,3)=100.18958796542928;
rents(84,4)=114.81288496633712;
rents(84,5)=129.21271388510525;
rents(84,6)=143.64411171497306;
rents(84,7)=158.69068094458441;
rents(84,8)=171.860655085075;
rents(84,9)=183.26571140351464;
incomes(84,1)=22438.41239281654;
incomes(84,2)=22961.60623940388;
incomes(84,3)=22818.371714593344;
incomes(84,4)=22595.97924171688;
incomes(84,5)=22783.511188993743;
incomes(84,6)=23374.651897414304;
incomes(84,7)=22888.815427617443;
incomes(84,8)=23068.02027787092;
incomes(84,9)=23634.369093364658;
bref(85)=5000;
bnorm(85)=44000;
incomemean(85)=14000;
rents(85,1)=101.93886049487752;
rents(85,2)=90.35702954570812;
rents(85,3)=107.48679869769747;
rents(85,4)=125.79013774517014;
rents(85,5)=144.2740016319246;
rents(85,6)=163.42617236120336;
rents(85,7)=181.47297985470516;
rents(85,8)=193.37155173167113;
rents(85,9)=198.7729770021617;
incomes(85,1)=24033.83246263304;
incomes(85,2)=24493.82783218484;
incomes(85,3)=24663.92219951278;
incomes(85,4)=24411.589481977266;
incomes(85,5)=24892.976191613365;
incomes(85,6)=25303.656140996794;
incomes(85,7)=24151.729084246716;
incomes(85,8)=24689.192987391896;
incomes(85,9)=24910.731794441894;
bref(86)=5000;
bnorm(86)=44000;
incomemean(86)=15000;
rents(86,1)=99.96778044760018;
rents(86,2)=88.60768598051051;
rents(86,3)=108.19291792476187;
rents(86,4)=129.62094711209573;
rents(86,5)=151.28562032410107;
rents(86,6)=173.85278403745764;
rents(86,7)=193.10191553902337;
rents(86,8)=198.57846619392438;
rents(86,9)=199.79221329518464;
incomes(86,1)=25151.89545353242;
incomes(86,2)=25888.377803821353;
incomes(86,3)=25918.608177697013;
incomes(86,4)=25645.567019965954;
incomes(86,5)=26051.300994400262;
incomes(86,6)=26288.842000206725;
incomes(86,7)=26145.721434068695;
incomes(86,8)=26204.649126858123;
incomes(86,9)=26574.01794972611;
bref(87)=5000;
bnorm(87)=44000;
incomemean(87)=16000;
rents(87,1)=100.8809495630198;
rents(87,2)=89.41747289050078;
rents(87,3)=110.69222087607223;
rents(87,4)=133.99424750862352;
rents(87,5)=158.70898362893792;
rents(87,6)=184.04523942712942;
rents(87,7)=197.3719339037827;
rents(87,8)=199.9996204974422;
rents(87,9)=200;
incomes(87,1)=26594.548016491026;
incomes(87,2)=26696.295335295723;
incomes(87,3)=26745.94539928241;
incomes(87,4)=26793.69802110929;
incomes(87,5)=27328.09144504693;
incomes(87,6)=27407.945897928308;
incomes(87,7)=27336.048758584428;
incomes(87,8)=26456.91079277182;
incomes(87,9)=27464.20677540246;
bref(88)=5000;
bnorm(88)=44000;
incomemean(88)=17000;
rents(88,1)=99.54945671190785;
rents(88,2)=88.23506604253355;
rents(88,3)=112.83937599015495;
rents(88,4)=140.11774876862236;
rents(88,5)=169.76753623893615;
rents(88,6)=196.0201837769268;
rents(88,7)=200;
rents(88,8)=200;
rents(88,9)=200;
incomes(88,1)=27992.64999991455;
incomes(88,2)=28648.816552670138;
incomes(88,3)=28387.46606136674;
incomes(88,4)=28556.154473941704;
incomes(88,5)=29263.090592106055;
incomes(88,6)=29546.35106474474;
incomes(88,7)=28651.27714785726;
incomes(88,8)=28889.33803068861;
incomes(88,9)=29055.57601000663;
bref(89)=5000;
bnorm(89)=44000;
incomemean(89)=18000;
rents(89,1)=103.89816784614312;
rents(89,2)=92.08919025289863;
rents(89,3)=120.30987229670377;
rents(89,4)=152.54943600488062;
rents(89,5)=186.7712616745216;
rents(89,6)=199.92950847807305;
rents(89,7)=200;
rents(89,8)=200;
rents(89,9)=200;
incomes(89,1)=29835.231319079157;
incomes(89,2)=30422.70128961318;
incomes(89,3)=30355.40750727463;
incomes(89,4)=30192.15896379734;
incomes(89,5)=31028.8285587976;
incomes(89,6)=31753.516299859824;
incomes(89,7)=31271.13764397638;
incomes(89,8)=30749.035019728253;
incomes(89,9)=30586.313690150924;
bref(90)=5000;
bnorm(90)=44000;
incomemean(90)=19000;
rents(90,1)=99.26033249760461;
rents(90,2)=87.98457148766872;
rents(90,3)=118.38241064580505;
rents(90,4)=154.5493407673928;
rents(90,5)=190.97927186359473;
rents(90,6)=199.77534569014992;
rents(90,7)=200;
rents(90,8)=200;
rents(90,9)=200;
incomes(90,1)=31828.2912625368;
incomes(90,2)=31798.05360523143;
incomes(90,3)=31814.85454337628;
incomes(90,4)=31670.571382292364;
incomes(90,5)=32601.93462121215;
incomes(90,6)=32972.97744872848;
incomes(90,7)=32430.02561516956;
incomes(90,8)=32344.64691541022;
incomes(90,9)=32847.67460553558;
bref(91)=5000;
bnorm(91)=47000;
incomemean(91)=10000;
rents(91,1)=100.2015950350973;
rents(91,2)=89.54020764628102;
rents(91,3)=96.9997535326231;
rents(91,4)=104.28572393142731;
rents(91,5)=111.53818070154273;
rents(91,6)=119.42646871083551;
rents(91,7)=127.2114967768475;
rents(91,8)=133.79545541907652;
rents(91,9)=140.00271448455055;
incomes(91,1)=19077.185220098334;
incomes(91,2)=19370.165054853216;
incomes(91,3)=19272.540283492173;
incomes(91,4)=19260.36033423249;
incomes(91,5)=19762.604407683397;
incomes(91,6)=19934.493448462898;
incomes(91,7)=19375.079757769683;
incomes(91,8)=19331.967686318163;
incomes(91,9)=19982.548553908808;
bref(92)=5000;
bnorm(92)=47000;
incomemean(92)=11000;
rents(92,1)=99.71915760438335;
rents(92,2)=89.11206995342191;
rents(92,3)=98.56518571778014;
rents(92,4)=108.14261376738338;
rents(92,5)=117.57318454110306;
rents(92,6)=127.6475383942652;
rents(92,7)=137.28874985051476;
rents(92,8)=145.8652878398923;
rents(92,9)=153.93113311641758;
incomes(92,1)=20518.01869647376;
incomes(92,2)=20670.836318777645;
incomes(92,3)=20654.89619665199;
incomes(92,4)=20524.741477715044;
incomes(92,5)=21170.233617811813;
incomes(92,6)=21210.245442724136;
incomes(92,7)=20690.786200151175;
incomes(92,8)=20911.41444384493;
incomes(92,9)=20921.00166904642;
bref(93)=5000;
bnorm(93)=47000;
incomemean(93)=12000;
rents(93,1)=98.7295069048321;
rents(93,2)=88.22173866482984;
rents(93,3)=99.06429406344287;
rents(93,4)=109.96218128520303;
rents(93,5)=120.98356176971146;
rents(93,6)=132.46533300144554;
rents(93,7)=144.0255989408424;
rents(93,8)=154.971707759012;
rents(93,9)=165.09996632812022;
incomes(93,1)=20555.255724655355;
incomes(93,2)=21353.333577337165;
incomes(93,3)=21275.270041638934;
incomes(93,4)=21334.36060596488;
incomes(93,5)=21663.552873755973;
incomes(93,6)=21815.632295620067;
incomes(93,7)=21787.535929731435;
incomes(93,8)=21740.02434527323;
incomes(93,9)=21770.471204366837;
bref(94)=5000;
bnorm(94)=47000;
incomemean(94)=13000;
rents(94,1)=98.64492316266175;
rents(94,2)=88.14535228974368;
rents(94,3)=100.80557521286102;
rents(94,4)=113.85571202671689;
rents(94,5)=127.96124336163481;
rents(94,6)=141.69581724369792;
rents(94,7)=156.20054825134972;
rents(94,8)=169.5450377387179;
rents(94,9)=179.4127473301903;
incomes(94,1)=22302.057981892336;
incomes(94,2)=22472.28630010176;
incomes(94,3)=22481.483189671693;
incomes(94,4)=22881.065971918506;
incomes(94,5)=22894.06896158522;
incomes(94,6)=23474.257318049153;
incomes(94,7)=23212.174898092224;
incomes(94,8)=22186.5682766355;
incomes(94,9)=22764.158171407795;
bref(95)=5000;
bnorm(95)=47000;
incomemean(95)=14000;
rents(95,1)=100.36353619795646;
rents(95,2)=89.67958706685512;
rents(95,3)=104.293409805436;
rents(95,4)=120.00933870445158;
rents(95,5)=135.42665247153897;
rents(95,6)=151.5548194607987;
rents(95,7)=167.63723332809062;
rents(95,8)=182.19916489159922;
rents(95,9)=192.94232114886472;
incomes(95,1)=23527.028924541635;
incomes(95,2)=23651.693268260224;
incomes(95,3)=23899.33068751403;
incomes(95,4)=23580.444694893427;
incomes(95,5)=24201.337619417147;
incomes(95,6)=24355.74631706566;
incomes(95,7)=24212.796662632827;
incomes(95,8)=24020.970069067876;
incomes(95,9)=24480.637501760662;
bref(96)=5000;
bnorm(96)=47000;
incomemean(96)=15000;
rents(96,1)=102.378196636067;
rents(96,2)=91.48040978626925;
rents(96,3)=109.7282304779915;
rents(96,4)=129.82874363443673;
rents(96,5)=150.38212815144354;
rents(96,6)=172.13693042835507;
rents(96,7)=191.63815621367976;
rents(96,8)=198.5573081711023;
rents(96,9)=199.8152660511906;
incomes(96,1)=25154.25637607134;
incomes(96,2)=25599.383259462833;
incomes(96,3)=25977.463399039112;
incomes(96,4)=25749.43658618548;
incomes(96,5)=26422.816673595455;
incomes(96,6)=26513.019371209386;
incomes(96,7)=26058.098570168986;
incomes(96,8)=26252.21375664019;
incomes(96,9)=26421.144091176757;
bref(97)=5000;
bnorm(97)=47000;
incomemean(97)=16000;
rents(97,1)=98.71822456703897;
rents(97,2)=88.21930004109304;
rents(97,3)=108.88925522512919;
rents(97,4)=131.96956597834688;
rents(97,5)=155.97718607266606;
rents(97,6)=180.5837293665224;
rents(97,7)=196.58249661606308;
rents(97,8)=199.09546001966882;
rents(97,9)=200;
incomes(97,1)=26696.168780900756;
incomes(97,2)=27232.0022185286;
incomes(97,3)=27440.542668723898;
incomes(97,4)=27312.80579519395;
incomes(97,5)=27776.444930037756;
incomes(97,6)=28115.351747514986;
incomes(97,7)=27191.010720563532;
incomes(97,8)=27878.027782269943;
incomes(97,9)=27726.481595221656;
bref(98)=5000;
bnorm(98)=47000;
incomemean(98)=17000;
rents(98,1)=97.23638276580003;
rents(98,2)=86.89096726456039;
rents(98,3)=109.82397381858786;
rents(98,4)=135.09282815072436;
rents(98,5)=161.8634402751935;
rents(98,6)=189.33355079673066;
rents(98,7)=199.21190119209754;
rents(98,8)=200;
rents(98,9)=200;
incomes(98,1)=28347.496203051174;
incomes(98,2)=28651.321045721364;
incomes(98,3)=28303.594974850846;
incomes(98,4)=28136.281434478013;
incomes(98,5)=28773.471518925275;
incomes(98,6)=29235.898639000607;
incomes(98,7)=28824.773864392082;
incomes(98,8)=28311.53983996696;
incomes(98,9)=28782.28138649107;
bref(99)=5000;
bnorm(99)=47000;
incomemean(99)=18000;
rents(99,1)=98.81334236240907;
rents(99,2)=88.30759398508297;
rents(99,3)=113.73481937548992;
rents(99,4)=143.11364843819422;
rents(99,5)=175.16479561275327;
rents(99,6)=196.54383808924752;
rents(99,7)=200;
rents(99,8)=200;
rents(99,9)=200;
incomes(99,1)=29597.33534549114;
incomes(99,2)=30030.91392254715;
incomes(99,3)=30163.941468880246;
incomes(99,4)=30316.191269215873;
incomes(99,5)=31065.221897203624;
incomes(99,6)=31193.231651986214;
incomes(99,7)=30972.029905509782;
incomes(99,8)=31021.405030940106;
incomes(99,9)=30786.88411442213;
bref(100)=5000;
bnorm(100)=47000;
incomemean(100)=19000;
rents(100,1)=102.9981660062907;
rents(100,2)=92.0433231728342;
rents(100,3)=121.32182846048019;
rents(100,4)=155.54932823830984;
rents(100,5)=190.1008408429502;
rents(100,6)=200;
rents(100,7)=200;
rents(100,8)=200;
rents(100,9)=200;
incomes(100,1)=31456.65822960297;
incomes(100,2)=31968.830561807565;
incomes(100,3)=31878.752296521503;
incomes(100,4)=31507.97633549835;
incomes(100,5)=32720.471547927413;
incomes(100,6)=33103.333963684294;
incomes(100,7)=32116.030439405742;
incomes(100,8)=32349.023416813478;
incomes(100,9)=32474.13000765813;
bref(101)=6000;
bnorm(101)=20000;
incomemean(101)=10000;
rents(101,1)=99.75227969329586;
rents(101,2)=69.82726845053817;
rents(101,3)=85.37240622237151;
rents(101,4)=100.07906040037827;
rents(101,5)=113.48265186686925;
rents(101,6)=127.76962142798152;
rents(101,7)=140.18048654073587;
rents(101,8)=146.92549744986633;
rents(101,9)=151.88092899081929;
incomes(101,1)=19220.450354788776;
incomes(101,2)=19906.833391716485;
incomes(101,3)=19751.71176439621;
incomes(101,4)=19591.619410394516;
incomes(101,5)=20322.12883014746;
incomes(101,6)=20381.32864085439;
incomes(101,7)=19705.791800347597;
incomes(101,8)=19662.222259196722;
incomes(101,9)=20071.148920790718;
bref(102)=6000;
bnorm(102)=20000;
incomemean(102)=11000;
rents(102,1)=99.794624262924;
rents(102,2)=69.89131587922691;
rents(102,3)=86.93792803845766;
rents(102,4)=102.59011684684427;
rents(102,5)=118.84330504308;
rents(102,6)=135.2967465475905;
rents(102,7)=148.75737853986433;
rents(102,8)=157.57260495343752;
rents(102,9)=163.87607197429338;
incomes(102,1)=20066.691416448957;
incomes(102,2)=20380.34398062843;
incomes(102,3)=19967.132895991814;
incomes(102,4)=20385.472386119967;
incomes(102,5)=21082.321710153024;
incomes(102,6)=21111.71568553084;
incomes(102,7)=20798.337147134185;
incomes(102,8)=20784.63726257079;
incomes(102,9)=20668.325386946388;
bref(103)=6000;
bnorm(103)=20000;
incomemean(103)=12000;
rents(103,1)=99.53297694652977;
rents(103,2)=69.67478316863314;
rents(103,3)=90.69077125752513;
rents(103,4)=111.43634067908722;
rents(103,5)=132.4289500990164;
rents(103,6)=152.68623765698376;
rents(103,7)=169.84879481340008;
rents(103,8)=181.61416586283968;
rents(103,9)=186.16294040798775;
incomes(103,1)=21056.553197597783;
incomes(103,2)=21539.126462124;
incomes(103,3)=21287.346884767965;
incomes(103,4)=21436.33501951744;
incomes(103,5)=22002.47814495773;
incomes(103,6)=22313.08959327114;
incomes(103,7)=22076.00357625228;
incomes(103,8)=21565.55245976911;
incomes(103,9)=22059.92770381847;
bref(104)=6000;
bnorm(104)=20000;
incomemean(104)=13000;
rents(104,1)=98.45300566785679;
rents(104,2)=68.91768739667147;
rents(104,3)=92.70127834797037;
rents(104,4)=119.21420363353116;
rents(104,5)=144.93469944872857;
rents(104,6)=171.1339969163081;
rents(104,7)=189.1870362061689;
rents(104,8)=196.74826835006868;
rents(104,9)=199.44607256553564;
incomes(104,1)=22460.010432475658;
incomes(104,2)=22618.03758956747;
incomes(104,3)=22841.49671609065;
incomes(104,4)=22746.952717790173;
incomes(104,5)=23745.73009765217;
incomes(104,6)=23787.507697961108;
incomes(104,7)=23346.181534204956;
incomes(104,8)=23429.71374295275;
incomes(104,9)=23129.40761654335;
bref(105)=6000;
bnorm(105)=20000;
incomemean(105)=14000;
rents(105,1)=100.83175985857429;
rents(105,2)=70.58131317937284;
rents(105,3)=98.73083620182065;
rents(105,4)=129.05102510211134;
rents(105,5)=158.10756128823428;
rents(105,6)=187.12830423878856;
rents(105,7)=198.43225452590514;
rents(105,8)=199.65622899968855;
rents(105,9)=199.855933747921;
incomes(105,1)=23516.260590579506;
incomes(105,2)=23920.46993480202;
incomes(105,3)=23703.75077537552;
incomes(105,4)=23740.560873623872;
incomes(105,5)=24590.7385555533;
incomes(105,6)=25172.301064524836;
incomes(105,7)=24451.48908253303;
incomes(105,8)=24282.560907125942;
incomes(105,9)=25006.979055383694;
bref(106)=6000;
bnorm(106)=20000;
incomemean(106)=15000;
rents(106,1)=101.56669001452957;
rents(106,2)=71.09696583887974;
rents(106,3)=104.4843473660255;
rents(106,4)=144.038160308487;
rents(106,5)=182.09583058712505;
rents(106,6)=199.63851976072988;
rents(106,7)=200;
rents(106,8)=200;
rents(106,9)=200;
incomes(106,1)=24876.30050180793;
incomes(106,2)=25425.676806932202;
incomes(106,3)=25576.0067901388;
incomes(106,4)=25526.50683819819;
incomes(106,5)=26435.116274986874;
incomes(106,6)=26694.654629216566;
incomes(106,7)=25596.209247104292;
incomes(106,8)=25950.4337222033;
incomes(106,9)=25921.630084811884;
bref(107)=6000;
bnorm(107)=20000;
incomemean(107)=16000;
rents(107,1)=95.91627375005972;
rents(107,2)=67.14088597374291;
rents(107,3)=103.07134887245543;
rents(107,4)=147.60012707616963;
rents(107,5)=192.64584128563413;
rents(107,6)=200;
rents(107,7)=200;
rents(107,8)=200;
rents(107,9)=200;
incomes(107,1)=26486.578417049837;
incomes(107,2)=26632.377730590993;
incomes(107,3)=26764.582858592144;
incomes(107,4)=27150.92904442769;
incomes(107,5)=27985.518863437414;
incomes(107,6)=28005.218103974956;
incomes(107,7)=27331.07266972073;
incomes(107,8)=27093.6977099045;
incomes(107,9)=27699.602050552152;
bref(108)=6000;
bnorm(108)=20000;
incomemean(108)=17000;
rents(108,1)=100.45158036110901;
rents(108,2)=70.31544937628898;
rents(108,3)=115.23370278209234;
rents(108,4)=171.77778430152392;
rents(108,5)=199.9626829334489;
rents(108,6)=200;
rents(108,7)=200;
rents(108,8)=200;
rents(108,9)=200;
incomes(108,1)=28663.324046357895;
incomes(108,2)=29249.552492908166;
incomes(108,3)=28892.392336210847;
incomes(108,4)=29241.32856744493;
incomes(108,5)=30284.64767423401;
incomes(108,6)=30528.269776520487;
incomes(108,7)=29898.724407101152;
incomes(108,8)=29531.122724415756;
incomes(108,9)=29848.207738064735;
bref(109)=6000;
bnorm(109)=20000;
incomemean(109)=18000;
rents(109,1)=100.31253091193463;
rents(109,2)=70.2217291031612;
rents(109,3)=118.5222804827025;
rents(109,4)=183.31924629007074;
rents(109,5)=200;
rents(109,6)=200;
rents(109,7)=200;
rents(109,8)=200;
rents(109,9)=200;
incomes(109,1)=29945.097051201596;
incomes(109,2)=30305.065919044573;
incomes(109,3)=30485.169877045384;
incomes(109,4)=30766.587743693544;
incomes(109,5)=31527.138630854286;
incomes(109,6)=31316.873834628674;
incomes(109,7)=30580.474265367557;
incomes(109,8)=30942.562283672803;
incomes(109,9)=31181.42431007722;
bref(110)=6000;
bnorm(110)=20000;
incomemean(110)=19000;
rents(110,1)=97.71584876452087;
rents(110,2)=68.40523333125151;
rents(110,3)=122.59701610656772;
rents(110,4)=195.57262262073746;
rents(110,5)=200;
rents(110,6)=200;
rents(110,7)=200;
rents(110,8)=200;
rents(110,9)=200;
incomes(110,1)=31860.31272837394;
incomes(110,2)=32531.7502294162;
incomes(110,3)=32553.697619747032;
incomes(110,4)=33036.75997776401;
incomes(110,5)=33570.16689759539;
incomes(110,6)=33508.03739175841;
incomes(110,7)=33093.89049467711;
incomes(110,8)=32559.81015623567;
incomes(110,9)=32814.3275840926;
bref(111)=6000;
bnorm(111)=23000;
incomemean(111)=10000;
rents(111,1)=102.56609351553072;
rents(111,2)=75.81059381086564;
rents(111,3)=88.85019821462247;
rents(111,4)=100.90284466743816;
rents(111,5)=111.9494759999671;
rents(111,6)=124.4390572019893;
rents(111,7)=135.25754530766824;
rents(111,8)=143.62788040006498;
rents(111,9)=149.8463751311419;
incomes(111,1)=19604.0544579112;
incomes(111,2)=19793.382197097057;
incomes(111,3)=19634.25616824742;
incomes(111,4)=19631.626042998414;
incomes(111,5)=20256.7685132481;
incomes(111,6)=20283.887865084187;
incomes(111,7)=20086.622630581976;
incomes(111,8)=20047.341460067542;
incomes(111,9)=20099.29122622733;
bref(112)=6000;
bnorm(112)=23000;
incomemean(112)=11000;
rents(112,1)=98.02988109605565;
rents(112,2)=72.45700016750361;
rents(112,3)=87.54576630510553;
rents(112,4)=101.54387536744281;
rents(112,5)=115.08689683023093;
rents(112,6)=128.43221704177716;
rents(112,7)=141.38282903574915;
rents(112,8)=151.01044833715258;
rents(112,9)=157.80158478828454;
incomes(112,1)=19950.10978397773;
incomes(112,2)=20287.818358759647;
incomes(112,3)=19967.516035366672;
incomes(112,4)=20125.50117299225;
incomes(112,5)=20547.679469363557;
incomes(112,6)=20752.9637641154;
incomes(112,7)=20348.9293077998;
incomes(112,8)=20369.97635477632;
incomes(112,9)=20537.00041454299;
bref(113)=6000;
bnorm(113)=23000;
incomemean(113)=12000;
rents(113,1)=98.98556763972407;
rents(113,2)=73.16773666591192;
rents(113,3)=91.28733374839607;
rents(113,4)=109.95198680672132;
rents(113,5)=128.15555985170278;
rents(113,6)=146.19251804154771;
rents(113,7)=160.67197019472536;
rents(113,8)=170.2358205523725;
rents(113,9)=176.2255864980665;
incomes(113,1)=20987.501784085813;
incomes(113,2)=21488.845813607822;
incomes(113,3)=21508.71055376982;
incomes(113,4)=21428.486408333007;
incomes(113,5)=21938.3304928144;
incomes(113,6)=21940.862362188105;
incomes(113,7)=21479.84061030339;
incomes(113,8)=21262.26745495552;
incomes(113,9)=21802.302143682493;
bref(114)=6000;
bnorm(114)=23000;
incomemean(114)=13000;
rents(114,1)=98.38273598504983;
rents(114,2)=72.718264551127;
rents(114,3)=93.28211556529138;
rents(114,4)=114.67172941044628;
rents(114,5)=136.26027273049962;
rents(114,6)=159.25991068926987;
rents(114,7)=178.075482536523;
rents(114,8)=187.44819628992894;
rents(114,9)=191.86592547129283;
incomes(114,1)=22484.046732984643;
incomes(114,2)=22382.16761618442;
incomes(114,3)=22193.963153342942;
incomes(114,4)=22504.743525022284;
incomes(114,5)=23448.746310507406;
incomes(114,6)=23482.59059689421;
incomes(114,7)=22774.65950150372;
incomes(114,8)=22572.66340775101;
incomes(114,9)=22914.56773486365;
bref(115)=6000;
bnorm(115)=23000;
incomemean(115)=14000;
rents(115,1)=100.7914977528946;
rents(115,2)=74.49344105964315;
rents(115,3)=100.8645221215575;
rents(115,4)=128.8050488599148;
rents(115,5)=157.87211228545397;
rents(115,6)=187.64928719641438;
rents(115,7)=198.79514829080756;
rents(115,8)=199.93761696475534;
rents(115,9)=200;
incomes(115,1)=24113.028743710187;
incomes(115,2)=24332.14830597846;
incomes(115,3)=24071.276771504505;
incomes(115,4)=24354.24943744149;
incomes(115,5)=25427.645701622158;
incomes(115,6)=25665.20246483525;
incomes(115,7)=24739.55645572544;
incomes(115,8)=24729.260211824796;
incomes(115,9)=24574.168685341225;
bref(116)=6000;
bnorm(116)=23000;
incomemean(116)=15000;
rents(116,1)=101.14315466958489;
rents(116,2)=74.75699247438865;
rents(116,3)=105.57253003481179;
rents(116,4)=139.9315627705038;
rents(116,5)=175.71001243809854;
rents(116,6)=198.36830002764;
rents(116,7)=200;
rents(116,8)=200;
rents(116,9)=200;
incomes(116,1)=25157.216461466156;
incomes(116,2)=25892.428743739278;
incomes(116,3)=25497.998230071265;
incomes(116,4)=25874.083792398586;
incomes(116,5)=26475.63433558507;
incomes(116,6)=26594.84153697702;
incomes(116,7)=25997.171783787875;
incomes(116,8)=26108.019850558165;
incomes(116,9)=26211.4444252158;
bref(117)=6000;
bnorm(117)=23000;
incomemean(117)=16000;
rents(117,1)=98.13816966290538;
rents(117,2)=72.53672735138599;
rents(117,3)=106.96591159946436;
rents(117,4)=148.65944177993003;
rents(117,5)=190.06498585228331;
rents(117,6)=199.9984835750167;
rents(117,7)=200;
rents(117,8)=200;
rents(117,9)=200;
incomes(117,1)=26669.45715869231;
incomes(117,2)=27302.239120498634;
incomes(117,3)=27239.072374083105;
incomes(117,4)=27607.35139722526;
incomes(117,5)=28978.030198999368;
incomes(117,6)=28652.57762888915;
incomes(117,7)=28065.224986274672;
incomes(117,8)=27719.30304523805;
incomes(117,9)=28198.746705873673;
bref(118)=6000;
bnorm(118)=23000;
incomemean(118)=17000;
rents(118,1)=100.46633737420902;
rents(118,2)=74.24959048346018;
rents(118,3)=113.41538615085447;
rents(118,4)=162.27288181715377;
rents(118,5)=199.13343973756156;
rents(118,6)=200;
rents(118,7)=200;
rents(118,8)=200;
rents(118,9)=200;
incomes(118,1)=28195.18911755778;
incomes(118,2)=28761.427029763134;
incomes(118,3)=28959.81851696248;
incomes(118,4)=28684.664158586085;
incomes(118,5)=29667.186994776206;
incomes(118,6)=29468.264860956966;
incomes(118,7)=28688.337999824307;
incomes(118,8)=28784.26803457217;
incomes(118,9)=29248.029109239156;
bref(119)=6000;
bnorm(119)=23000;
incomemean(119)=18000;
rents(119,1)=100.06736992907854;
rents(119,2)=73.96182887705562;
rents(119,3)=118.8010411940614;
rents(119,4)=176.64379406569088;
rents(119,5)=199.98322109028462;
rents(119,6)=200;
rents(119,7)=200;
rents(119,8)=200;
rents(119,9)=200;
incomes(119,1)=30219.232760540464;
incomes(119,2)=30770.126083179373;
incomes(119,3)=30554.775491964596;
incomes(119,4)=30932.400934303343;
incomes(119,5)=31576.195680526176;
incomes(119,6)=31553.362100845345;
incomes(119,7)=30615.0603807001;
incomes(119,8)=30816.037380210702;
incomes(119,9)=31251.510716849825;
bref(120)=6000;
bnorm(120)=23000;
incomemean(120)=19000;
rents(120,1)=101.81048118204112;
rents(120,2)=75.2514970954945;
rents(120,3)=125.6075499122334;
rents(120,4)=188.7260079134065;
rents(120,5)=200;
rents(120,6)=200;
rents(120,7)=200;
rents(120,8)=200;
rents(120,9)=200;
incomes(120,1)=31389.10356941264;
incomes(120,2)=32370.480298539347;
incomes(120,3)=32068.866166882475;
incomes(120,4)=32492.518276996307;
incomes(120,5)=33275.05007231549;
incomes(120,6)=33229.92020077225;
incomes(120,7)=32796.89534941044;
incomes(120,8)=32359.90426998242;
incomes(120,9)=32774.84504022681;
bref(121)=6000;
bnorm(121)=26000;
incomemean(121)=10000;
rents(121,1)=98.68885546370859;
rents(121,2)=75.91464621571012;
rents(121,3)=87.43050943033225;
rents(121,4)=97.96233647477467;
rents(121,5)=107.37514025721892;
rents(121,6)=117.59585909168345;
rents(121,7)=126.0380719600877;
rents(121,8)=131.6684698592742;
rents(121,9)=137.29669581379622;
incomes(121,1)=19280.623561603206;
incomes(121,2)=19656.793339715172;
incomes(121,3)=19436.888646048916;
incomes(121,4)=19328.272954739652;
incomes(121,5)=19809.48709653068;
incomes(121,6)=19637.222863144125;
incomes(121,7)=19264.611210941985;
incomes(121,8)=19284.495890450646;
incomes(121,9)=19694.901636860337;
bref(122)=6000;
bnorm(122)=26000;
incomemean(122)=11000;
rents(122,1)=98.29317939400914;
rents(122,2)=75.6037191395584;
rents(122,3)=89.23528972536305;
rents(122,4)=102.06425122595945;
rents(122,5)=114.9626557480949;
rents(122,6)=127.23596205883145;
rents(122,7)=139.46594116496425;
rents(122,8)=147.71759732237246;
rents(122,9)=154.7808042399261;
incomes(122,1)=20530.87640381409;
incomes(122,2)=20643.53342318942;
incomes(122,3)=20409.127420936537;
incomes(122,4)=20604.342226184708;
incomes(122,5)=20739.060339498166;
incomes(122,6)=21213.448850401826;
incomes(122,7)=20588.98681880084;
incomes(122,8)=20976.31874928894;
incomes(122,9)=20901.80920673143;
bref(123)=6000;
bnorm(123)=26000;
incomemean(123)=12000;
rents(123,1)=100.24508873506699;
rents(123,2)=77.11339154638402;
rents(123,3)=93.25178192141188;
rents(123,4)=109.82904033921086;
rents(123,5)=127.13254727185033;
rents(123,6)=144.2309526772283;
rents(123,7)=159.39591771422295;
rents(123,8)=171.57904074579588;
rents(123,9)=179.71901363167677;
incomes(123,1)=21320.1714019692;
incomes(123,2)=21423.711075727737;
incomes(123,3)=21529.81533050458;
incomes(123,4)=21890.714130085646;
incomes(123,5)=22186.538195411573;
incomes(123,6)=22370.187457180135;
incomes(123,7)=22099.58658695029;
incomes(123,8)=21911.381377061556;
incomes(123,9)=21981.203105727356;
bref(124)=6000;
bnorm(124)=26000;
incomemean(124)=13000;
rents(124,1)=98.3886997915041;
rents(124,2)=75.68789044877441;
rents(124,3)=94.51249419652058;
rents(124,4)=114.62012375362158;
rents(124,5)=134.78555188426128;
rents(124,6)=155.24580090355167;
rents(124,7)=172.24275345926253;
rents(124,8)=183.35031340046027;
rents(124,9)=190.36766919431165;
incomes(124,1)=22154.216059600527;
incomes(124,2)=22530.5133148504;
incomes(124,3)=22564.12925659487;
incomes(124,4)=22771.148076491936;
incomes(124,5)=23262.92586935237;
incomes(124,6)=23281.096643033685;
incomes(124,7)=22989.444048151126;
incomes(124,8)=22787.977317804383;
incomes(124,9)=23361.841669309575;
bref(125)=6000;
bnorm(125)=26000;
incomemean(125)=14000;
rents(125,1)=99.01235113087809;
rents(125,2)=76.16357219697397;
rents(125,3)=99.6461603366977;
rents(125,4)=125.83993471308354;
rents(125,5)=151.66554050204252;
rents(125,6)=178.13532166466032;
rents(125,7)=194.9788883714087;
rents(125,8)=198.61028599514438;
rents(125,9)=199.8568926878326;
incomes(125,1)=23956.29664869269;
incomes(125,2)=24313.132868554534;
incomes(125,3)=24427.082415510766;
incomes(125,4)=24225.134172939852;
incomes(125,5)=25071.814891373124;
incomes(125,6)=25316.433157150135;
incomes(125,7)=24755.62966187062;
incomes(125,8)=24890.425473327778;
incomes(125,9)=24965.519369016194;
bref(126)=6000;
bnorm(126)=26000;
incomemean(126)=15000;
rents(126,1)=101.97185302974505;
rents(126,2)=78.43766298605101;
rents(126,3)=106.35283882952218;
rents(126,4)=136.27995700712253;
rents(126,5)=167.80984969683698;
rents(126,6)=193.05719958180856;
rents(126,7)=199.73847779462182;
rents(126,8)=200;
rents(126,9)=200;
incomes(126,1)=25318.827187939885;
incomes(126,2)=25855.01512518983;
incomes(126,3)=25403.63546984658;
incomes(126,4)=25823.509820057592;
incomes(126,5)=26285.363050481836;
incomes(126,6)=26723.295057263982;
incomes(126,7)=25811.830041675654;
incomes(126,8)=26169.717155698043;
incomes(126,9)=25977.269917339625;
bref(127)=6000;
bnorm(127)=26000;
incomemean(127)=16000;
rents(127,1)=103.04947267759322;
rents(127,2)=79.26210123158275;
rents(127,3)=112.37328414692387;
rents(127,4)=151.7777200865455;
rents(127,5)=189.7405138190288;
rents(127,6)=200;
rents(127,7)=200;
rents(127,8)=200;
rents(127,9)=200;
incomes(127,1)=27347.4118177964;
incomes(127,2)=27739.859000265587;
incomes(127,3)=27903.555746450194;
incomes(127,4)=27873.659901452287;
incomes(127,5)=28436.0379447674;
incomes(127,6)=28791.442452911808;
incomes(127,7)=28302.27028092972;
incomes(127,8)=28081.998938497054;
incomes(127,9)=27801.581049192497;
bref(128)=6000;
bnorm(128)=26000;
incomemean(128)=17000;
rents(128,1)=101.08918175346912;
rents(128,2)=77.76476944267132;
rents(128,3)=112.2165409127172;
rents(128,4)=153.6827197559879;
rents(128,5)=191.4509270470505;
rents(128,6)=200;
rents(128,7)=200;
rents(128,8)=200;
rents(128,9)=200;
incomes(128,1)=27629.132862246777;
incomes(128,2)=28300.874122896395;
incomes(128,3)=28517.73139622603;
incomes(128,4)=28364.396800701496;
incomes(128,5)=29276.172938771786;
incomes(128,6)=29278.25872846655;
incomes(128,7)=28832.422264519933;
incomes(128,8)=28891.105361122365;
incomes(128,9)=28557.90880679819;
bref(129)=6000;
bnorm(129)=26000;
incomemean(129)=18000;
rents(129,1)=99.5096335410143;
rents(129,2)=76.54451023388611;
rents(129,3)=116.20023579326467;
rents(129,4)=166.29236248031214;
rents(129,5)=199.7264824790122;
rents(129,6)=200;
rents(129,7)=200;
rents(129,8)=200;
rents(129,9)=200;
incomes(129,1)=29572.481844582242;
incomes(129,2)=30251.977500940502;
incomes(129,3)=30295.21057527701;
incomes(129,4)=30009.74188514303;
incomes(129,5)=31580.580987623325;
incomes(129,6)=31298.893551937308;
incomes(129,7)=30790.128014608243;
incomes(129,8)=30613.08573742587;
incomes(129,9)=30875.90889313328;
bref(130)=6000;
bnorm(130)=26000;
incomemean(130)=19000;
rents(130,1)=100.6376990510675;
rents(130,2)=77.41435302133881;
rents(130,3)=121.86040996328184;
rents(130,4)=178.2678478014666;
rents(130,5)=200;
rents(130,6)=200;
rents(130,7)=200;
rents(130,8)=200;
rents(130,9)=200;
incomes(130,1)=31403.21375720177;
incomes(130,2)=31940.694083203187;
incomes(130,3)=31645.131995801283;
incomes(130,4)=32483.51452287198;
incomes(130,5)=33275.00478374627;
incomes(130,6)=32652.270144053153;
incomes(130,7)=32532.733140548837;
incomes(130,8)=32395.08778327626;
incomes(130,9)=33013.22185133445;
bref(131)=6000;
bnorm(131)=29000;
incomemean(131)=10000;
rents(131,1)=100.40058129974042;
rents(131,2)=79.62637691227988;
rents(131,3)=88.70723652315843;
rents(131,4)=97.22949808424147;
rents(131,5)=105.13026938568561;
rents(131,6)=113.65620107673053;
rents(131,7)=121.51305570553923;
rents(131,8)=127.67808214719898;
rents(131,9)=133.67294287231;
incomes(131,1)=19011.024989784688;
incomes(131,2)=19166.79223511069;
incomes(131,3)=19173.101189095443;
incomes(131,4)=18953.13312666462;
incomes(131,5)=19526.0757875763;
incomes(131,6)=19647.29175545711;
incomes(131,7)=19140.637237028437;
incomes(131,8)=19405.76645340655;
incomes(131,9)=19468.7845160047;
bref(132)=6000;
bnorm(132)=29000;
incomemean(132)=11000;
rents(132,1)=98.90607102021099;
rents(132,2)=78.44100146373839;
rents(132,3)=90.82896160590263;
rents(132,4)=102.42120565311738;
rents(132,5)=113.54477869064831;
rents(132,6)=125.7963738880442;
rents(132,7)=137.01069671227017;
rents(132,8)=146.25487127988973;
rents(132,9)=154.40474478167965;
incomes(132,1)=20306.539757985232;
incomes(132,2)=20519.3839654302;
incomes(132,3)=20332.669223704317;
incomes(132,4)=20259.87581875595;
incomes(132,5)=20968.45260629553;
incomes(132,6)=20974.638599479953;
incomes(132,7)=20716.571222031514;
incomes(132,8)=20895.461124820955;
incomes(132,9)=20944.910352488234;
bref(133)=6000;
bnorm(133)=29000;
incomemean(133)=12000;
rents(133,1)=100.53476577985505;
rents(133,2)=79.73885293971547;
rents(133,3)=94.00214829346417;
rents(133,4)=108.26676512371981;
rents(133,5)=122.3405753184649;
rents(133,6)=136.71041317083387;
rents(133,7)=149.69580072674293;
rents(133,8)=158.65152550479536;
rents(133,9)=167.82178771741013;
incomes(133,1)=21136.15970480192;
incomes(133,2)=21499.82027669023;
incomes(133,3)=21452.05069701168;
incomes(133,4)=21599.400866075954;
incomes(133,5)=22153.58485373841;
incomes(133,6)=22212.720015568677;
incomes(133,7)=21732.723243583856;
incomes(133,8)=21895.806716235118;
incomes(133,9)=22327.947320034174;
bref(134)=6000;
bnorm(134)=29000;
incomemean(134)=13000;
rents(134,1)=100.36273719005747;
rents(134,2)=79.59703477027325;
rents(134,3)=97.35708347308423;
rents(134,4)=116.1038538158674;
rents(134,5)=134.26145092194787;
rents(134,6)=151.79829329199003;
rents(134,7)=170.05723705686313;
rents(134,8)=183.22244195019476;
rents(134,9)=190.9658247009863;
incomes(134,1)=21983.8479708127;
incomes(134,2)=22627.89386254296;
incomes(134,3)=22724.22951464276;
incomes(134,4)=22595.99373719858;
incomes(134,5)=22957.00044957096;
incomes(134,6)=23555.61840018048;
incomes(134,7)=23139.599957976272;
incomes(134,8)=22802.67551784742;
incomes(134,9)=22876.952966784178;
bref(135)=6000;
bnorm(135)=29000;
incomemean(135)=14000;
rents(135,1)=100.78865529388986;
rents(135,2)=79.93096323621698;
rents(135,3)=101.28618546260289;
rents(135,4)=124.79401326031157;
rents(135,5)=147.49970994995851;
rents(135,6)=170.85699933455754;
rents(135,7)=190.42868864006036;
rents(135,8)=197.65576254111102;
rents(135,9)=199.5985729572975;
incomes(135,1)=24179.729041941715;
incomes(135,2)=24127.888163137955;
incomes(135,3)=24402.484610308922;
incomes(135,4)=24097.09485230881;
incomes(135,5)=24981.919868496283;
incomes(135,6)=25004.746318182155;
incomes(135,7)=24490.537510031092;
incomes(135,8)=24443.137875988523;
incomes(135,9)=24322.999647190838;
bref(136)=6000;
bnorm(136)=29000;
incomemean(136)=15000;
rents(136,1)=96.53104799473195;
rents(136,2)=76.5598754929936;
rents(136,3)=100.9103719640837;
rents(136,4)=129.6728221174173;
rents(136,5)=157.40812736738047;
rents(136,6)=183.76305710282188;
rents(136,7)=198.29970865370314;
rents(136,8)=200;
rents(136,9)=200;
incomes(136,1)=24949.08671259321;
incomes(136,2)=25600.157215690953;
incomes(136,3)=26092.26531500977;
incomes(136,4)=25572.425751901977;
incomes(136,5)=26236.991123083662;
incomes(136,6)=26307.03643893382;
incomes(136,7)=26047.74674086962;
incomes(136,8)=26096.193472377123;
incomes(136,9)=25916.001675687145;
bref(137)=6000;
bnorm(137)=29000;
incomemean(137)=16000;
rents(137,1)=97.96810784893313;
rents(137,2)=77.69561304440506;
rents(137,3)=106.94414070237394;
rents(137,4)=140.6382525684544;
rents(137,5)=174.71192101058236;
rents(137,6)=197.902186465531;
rents(137,7)=200;
rents(137,8)=200;
rents(137,9)=200;
incomes(137,1)=27241.769098256576;
incomes(137,2)=27712.954914274258;
incomes(137,3)=27623.78736338883;
incomes(137,4)=27388.004910789798;
incomes(137,5)=28141.200974443884;
incomes(137,6)=28702.508577655368;
incomes(137,7)=28325.494807865176;
incomes(137,8)=28119.911025242698;
incomes(137,9)=28412.27568467183;
bref(138)=6000;
bnorm(138)=29000;
incomemean(138)=17000;
rents(138,1)=100.24298097785051;
rents(138,2)=79.50564120206309;
rents(138,3)=111.05212138637226;
rents(138,4)=148.63776720146205;
rents(138,5)=187.60783001852343;
rents(138,6)=199.94643567212864;
rents(138,7)=200;
rents(138,8)=200;
rents(138,9)=200;
incomes(138,1)=27632.438065443825;
incomes(138,2)=28346.055989868004;
incomes(138,3)=28425.47750207399;
incomes(138,4)=28627.77594974887;
incomes(138,5)=29599.3074741656;
incomes(138,6)=29745.67461855016;
incomes(138,7)=29114.33853207057;
incomes(138,8)=29012.991759365505;
incomes(138,9)=29541.797220576624;
bref(139)=6000;
bnorm(139)=29000;
incomemean(139)=18000;
rents(139,1)=98.77603709248906;
rents(139,2)=78.33538797525529;
rents(139,3)=114.09494980956634;
rents(139,4)=156.3712127553057;
rents(139,5)=195.47589850449748;
rents(139,6)=200;
rents(139,7)=200;
rents(139,8)=200;
rents(139,9)=200;
incomes(139,1)=29385.696643721993;
incomes(139,2)=30105.176755902925;
incomes(139,3)=29668.407576045898;
incomes(139,4)=29705.007278969213;
incomes(139,5)=31278.924721107545;
incomes(139,6)=31349.64072270429;
incomes(139,7)=30658.48186749031;
incomes(139,8)=30696.405068508957;
incomes(139,9)=31297.996197683937;
bref(140)=6000;
bnorm(140)=29000;
incomemean(140)=19000;
rents(140,1)=101.44456040047125;
rents(140,2)=80.45582015702885;
rents(140,3)=122.41637170539754;
rents(140,4)=175.34479251200563;
rents(140,5)=199.8590383115001;
rents(140,6)=200;
rents(140,7)=200;
rents(140,8)=200;
rents(140,9)=200;
incomes(140,1)=31753.161340013994;
incomes(140,2)=32503.5904950631;
incomes(140,3)=32379.89536060878;
incomes(140,4)=32426.02599730612;
incomes(140,5)=33012.800192787654;
incomes(140,6)=33358.75918773992;
incomes(140,7)=32890.9580903723;
incomes(140,8)=32917.03818180396;
incomes(140,9)=32778.80402927114;
bref(141)=6000;
bnorm(141)=32000;
incomemean(141)=10000;
rents(141,1)=98.74483142303585;
rents(141,2)=80.22883785112052;
rents(141,3)=89.2802757018522;
rents(141,4)=97.88943736444568;
rents(141,5)=105.95826056200676;
rents(141,6)=113.60250117279121;
rents(141,7)=121.45761680812636;
rents(141,8)=127.0481978217851;
rents(141,9)=132.64879885961128;
incomes(141,1)=19606.050994380825;
incomes(141,2)=19778.775589504407;
incomes(141,3)=19760.664841473543;
incomes(141,4)=19535.434924341294;
incomes(141,5)=19750.75209023102;
incomes(141,6)=19972.760386793503;
incomes(141,7)=19521.019690973917;
incomes(141,8)=19774.388929097055;
incomes(141,9)=19697.933035696286;
bref(142)=6000;
bnorm(142)=32000;
incomemean(142)=11000;
rents(142,1)=100.7122407377943;
rents(142,2)=81.82871781293005;
rents(142,3)=93.26514256796143;
rents(142,4)=103.53454975566264;
rents(142,5)=113.48687668772642;
rents(142,6)=123.70308183530331;
rents(142,7)=133.25344356110293;
rents(142,8)=141.0372835788188;
rents(142,9)=148.31530098637842;
incomes(142,1)=20188.896179860414;
incomes(142,2)=20619.608608786075;
incomes(142,3)=20303.668762277037;
incomes(142,4)=20223.634011918417;
incomes(142,5)=20699.70459573537;
incomes(142,6)=20715.591455390484;
incomes(142,7)=20371.946443785462;
incomes(142,8)=20629.207988904298;
incomes(142,9)=20824.73391365685;
bref(143)=6000;
bnorm(143)=32000;
incomemean(143)=12000;
rents(143,1)=100.74573937533147;
rents(143,2)=81.85662805442995;
rents(143,3)=95.03284149219395;
rents(143,4)=108.2803987663269;
rents(143,5)=121.72288756344145;
rents(143,6)=134.71600412848014;
rents(143,7)=147.80706108274345;
rents(143,8)=158.37792283909295;
rents(143,9)=167.33030311918054;
incomes(143,1)=21122.63533622407;
incomes(143,2)=21479.789703406208;
incomes(143,3)=21417.585829071246;
incomes(143,4)=21694.7672594146;
incomes(143,5)=21858.78747157824;
incomes(143,6)=22131.456235814;
incomes(143,7)=21883.633707225443;
incomes(143,8)=21842.01514862528;
incomes(143,9)=21746.91331975552;
bref(144)=6000;
bnorm(144)=32000;
incomemean(144)=13000;
rents(144,1)=100.20254629859458;
rents(144,2)=81.41690639723473;
rents(144,3)=97.38709312995883;
rents(144,4)=113.0953999652008;
rents(144,5)=128.75668918099663;
rents(144,6)=144.798928440365;
rents(144,7)=160.25098955176466;
rents(144,8)=172.87972739558543;
rents(144,9)=184.0132013258664;
incomes(144,1)=22324.681108745935;
incomes(144,2)=22726.07882172826;
incomes(144,3)=22428.48535747281;
incomes(144,4)=22509.02937274713;
incomes(144,5)=23062.515940745438;
incomes(144,6)=23328.81151216436;
incomes(144,7)=23021.833071309135;
incomes(144,8)=23424.634101801126;
incomes(144,9)=23475.665029814878;
bref(145)=6000;
bnorm(145)=32000;
incomemean(145)=14000;
rents(145,1)=98.72986818200962;
rents(145,2)=80.21953628498262;
rents(145,3)=99.05198599107364;
rents(145,4)=118.27375156045868;
rents(145,5)=139.35557979840686;
rents(145,6)=160.42398928128765;
rents(145,7)=179.75791242198227;
rents(145,8)=193.23732178157215;
rents(145,9)=197.9461547142966;
incomes(145,1)=23270.602231186833;
incomes(145,2)=24001.54259320096;
incomes(145,3)=23689.601600731618;
incomes(145,4)=24325.292793192715;
incomes(145,5)=24776.171175380743;
incomes(145,6)=24806.28526492906;
incomes(145,7)=25050.377050700474;
incomes(145,8)=24823.044729523088;
incomes(145,9)=25144.08685905143;
bref(146)=6000;
bnorm(146)=32000;
incomemean(146)=15000;
rents(146,1)=97.45315415279569;
rents(146,2)=79.1745702270282;
rents(146,3)=101.29842611999115;
rents(146,4)=125.23663846413362;
rents(146,5)=149.24021505339283;
rents(146,6)=173.41211738926552;
rents(146,7)=191.77885425314173;
rents(146,8)=198.45280528857592;
rents(146,9)=199.93264603446627;
incomes(146,1)=24881.940913442213;
incomes(146,2)=25496.704801746593;
incomes(146,3)=25310.437091887507;
incomes(146,4)=25205.8120445119;
incomes(146,5)=25748.39284833998;
incomes(146,6)=26341.016981732533;
incomes(146,7)=26055.67033730918;
incomes(146,8)=25763.55891545063;
incomes(146,9)=26261.117841027382;
bref(147)=6000;
bnorm(147)=32000;
incomemean(147)=16000;
rents(147,1)=102.19659236510321;
rents(147,2)=83.03354452425376;
rents(147,3)=110.7995162860649;
rents(147,4)=141.52064474102593;
rents(147,5)=174.81345142579735;
rents(147,6)=198.39316391416352;
rents(147,7)=199.7892516541687;
rents(147,8)=200;
rents(147,9)=200;
incomes(147,1)=27274.695633807503;
incomes(147,2)=27647.877130354544;
incomes(147,3)=27465.62149928815;
incomes(147,4)=27746.894394334893;
incomes(147,5)=28045.307503700795;
incomes(147,6)=28551.599546540026;
incomes(147,7)=27833.36248045418;
incomes(147,8)=27836.2936038652;
incomes(147,9)=27975.54372630276;
bref(148)=6000;
bnorm(148)=32000;
incomemean(148)=17000;
rents(148,1)=99.75054875665946;
rents(148,2)=81.04117881363635;
rents(148,3)=111.17393534707784;
rents(148,4)=145.95191564726724;
rents(148,5)=181.64919470328948;
rents(148,6)=199.97152347198673;
rents(148,7)=200;
rents(148,8)=200;
rents(148,9)=200;
incomes(148,1)=28284.41120468619;
incomes(148,2)=28886.416805803474;
incomes(148,3)=28778.02472084746;
incomes(148,4)=28446.583083448313;
incomes(148,5)=29760.397143783877;
incomes(148,6)=29714.83318494561;
incomes(148,7)=29436.611259412246;
incomes(148,8)=29071.507287295182;
incomes(148,9)=29867.037442687033;
bref(149)=6000;
bnorm(149)=32000;
incomemean(149)=18000;
rents(149,1)=100.79833652401429;
rents(149,2)=81.90215403090824;
rents(149,3)=115.81480179888308;
rents(149,4)=156.21779877633037;
rents(149,5)=194.89702123116948;
rents(149,6)=200;
rents(149,7)=200;
rents(149,8)=200;
rents(149,9)=200;
incomes(149,1)=30050.25628015407;
incomes(149,2)=30384.54512593106;
incomes(149,3)=30300.51039879239;
incomes(149,4)=30225.31862065525;
incomes(149,5)=31590.246217305637;
incomes(149,6)=31439.7407338947;
incomes(149,7)=31145.600061271303;
incomes(149,8)=30829.16232451952;
incomes(149,9)=31645.685028531003;
bref(150)=6000;
bnorm(150)=32000;
incomemean(150)=19000;
rents(150,1)=101.36360587700767;
rents(150,2)=82.36186669012241;
rents(150,3)=120.51916851477226;
rents(150,4)=167.70533293034052;
rents(150,5)=199.5144218593622;
rents(150,6)=200;
rents(150,7)=200;
rents(150,8)=200;
rents(150,9)=200;
incomes(150,1)=31439.276718678495;
incomes(150,2)=32273.94017773491;
incomes(150,3)=32243.432042695455;
incomes(150,4)=31814.561251664458;
incomes(150,5)=33065.39777965899;
incomes(150,6)=33285.30612347286;
incomes(150,7)=32622.735780278832;
incomes(150,8)=32564.870510590838;
incomes(150,9)=32722.13300729955;
bref(151)=6000;
bnorm(151)=35000;
incomemean(151)=10000;
rents(151,1)=100.92624466434759;
rents(151,2)=83.62219856704301;
rents(151,3)=92.23540685020824;
rents(151,4)=100.22420554322959;
rents(151,5)=107.55011126707548;
rents(151,6)=115.08235232950791;
rents(151,7)=122.38258930563798;
rents(151,8)=128.78974055699894;
rents(151,9)=134.87780418998994;
incomes(151,1)=19359.005526542638;
incomes(151,2)=19898.654878131165;
incomes(151,3)=19695.30760408065;
incomes(151,4)=19457.594503467724;
incomes(151,5)=19788.007226857862;
incomes(151,6)=20089.76051005207;
incomes(151,7)=19808.13109863752;
incomes(151,8)=19804.111804387885;
incomes(151,9)=19919.159188613667;
bref(152)=6000;
bnorm(152)=35000;
incomemean(152)=11000;
rents(152,1)=98.21941214229629;
rents(152,2)=81.37755403509398;
rents(152,3)=91.48158514978707;
rents(152,4)=101.4415393819802;
rents(152,5)=111.35480655066324;
rents(152,6)=120.89688016325779;
rents(152,7)=130.52643550767272;
rents(152,8)=138.21696164729883;
rents(152,9)=145.56810608605267;
incomes(152,1)=20271.033041644834;
incomes(152,2)=20570.27736033005;
incomes(152,3)=20615.094342223485;
incomes(152,4)=20636.32583182823;
incomes(152,5)=20817.010798206004;
incomes(152,6)=21135.849952319193;
incomes(152,7)=20744.238687817262;
incomes(152,8)=20817.86019860339;
incomes(152,9)=20986.80815556749;
bref(153)=6000;
bnorm(153)=35000;
incomemean(153)=12000;
rents(153,1)=100.00562450414662;
rents(153,2)=82.86395486389092;
rents(153,3)=95.14184857737541;
rents(153,4)=107.50273993787329;
rents(153,5)=119.46836812190013;
rents(153,6)=131.9519148341165;
rents(153,7)=143.57663206042116;
rents(153,8)=155.0496868126092;
rents(153,9)=165.34400777498786;
incomes(153,1)=21009.109676917185;
incomes(153,2)=21614.191490275985;
incomes(153,3)=21550.201998561843;
incomes(153,4)=21505.29095099729;
incomes(153,5)=22064.124221601614;
incomes(153,6)=21990.7962051144;
incomes(153,7)=22302.265535738865;
incomes(153,8)=22251.751351072722;
incomes(153,9)=22316.618919514232;
bref(154)=6000;
bnorm(154)=35000;
incomemean(154)=13000;
rents(154,1)=100.74400473491916;
rents(154,2)=83.4768915551389;
rents(154,3)=98.586133273025;
rents(154,4)=114.20226853924937;
rents(154,5)=129.5808422637193;
rents(154,6)=145.34192623832726;
rents(154,7)=159.97996124724477;
rents(154,8)=172.0211997736683;
rents(154,9)=181.4913141562275;
incomes(154,1)=22905.661283753398;
incomes(154,2)=22986.95174601425;
incomes(154,3)=23027.895796854667;
incomes(154,4)=22952.367663373374;
incomes(154,5)=23505.98821677143;
incomes(154,6)=23576.645756987837;
incomes(154,7)=23240.959256738992;
incomes(154,8)=23103.729297586888;
incomes(154,9)=23716.88967026313;
bref(155)=6000;
bnorm(155)=35000;
incomemean(155)=14000;
rents(155,1)=98.97485791124389;
rents(155,2)=82.00320489981713;
rents(155,3)=99.79394482301015;
rents(155,4)=117.56333617066848;
rents(155,5)=136.99307819971526;
rents(155,6)=156.71300969264342;
rents(155,7)=175.26466791309286;
rents(155,8)=188.6745798061589;
rents(155,9)=197.00161877962205;
incomes(155,1)=23700.80034797113;
incomes(155,2)=24131.53430217669;
incomes(155,3)=23570.805814010844;
incomes(155,4)=24186.898545073644;
incomes(155,5)=24632.42858791929;
incomes(155,6)=24745.06118094908;
incomes(155,7)=24178.8923997201;
incomes(155,8)=24202.023445066454;
incomes(155,9)=24930.280773066606;
bref(156)=6000;
bnorm(156)=35000;
incomemean(156)=15000;
rents(156,1)=99.5848968483721;
rents(156,2)=82.5155233379094;
rents(156,3)=103.65736946433488;
rents(156,4)=126.62882214149327;
rents(156,5)=150.21050193945126;
rents(156,6)=174.3408537018752;
rents(156,7)=192.25345248580274;
rents(156,8)=198.9807689004522;
rents(156,9)=200;
incomes(156,1)=25477.555238125336;
incomes(156,2)=25847.991359443306;
incomes(156,3)=25867.982118285276;
incomes(156,4)=25728.293379632298;
incomes(156,5)=26491.400909956956;
incomes(156,6)=26690.368952607558;
incomes(156,7)=26541.968782941694;
incomes(156,8)=26506.34657803624;
incomes(156,9)=26305.589369071717;
bref(157)=6000;
bnorm(157)=35000;
incomemean(157)=16000;
rents(157,1)=99.74366225369369;
rents(157,2)=82.64992882713128;
rents(157,3)=106.64747824281082;
rents(157,4)=133.38712443105524;
rents(157,5)=160.25777715006174;
rents(157,6)=188.4040932005621;
rents(157,7)=199.78465378943292;
rents(157,8)=200;
rents(157,9)=200;
incomes(157,1)=26555.60784905627;
incomes(157,2)=27065.02318024892;
incomes(157,3)=27117.641080453082;
incomes(157,4)=26801.312118575195;
incomes(157,5)=27701.685595634546;
incomes(157,6)=28227.969866930336;
incomes(157,7)=27669.304782423995;
incomes(157,8)=27331.594860885158;
incomes(157,9)=27983.349031616053;
bref(158)=6000;
bnorm(158)=35000;
incomemean(158)=17000;
rents(158,1)=99.88242666613925;
rents(158,2)=82.75595319769418;
rents(158,3)=110.24966323904343;
rents(158,4)=141.757934340587;
rents(158,5)=175.1896396577523;
rents(158,6)=198.76272120219355;
rents(158,7)=199.9654268494505;
rents(158,8)=200;
rents(158,9)=200;
incomes(158,1)=28031.739102778793;
incomes(158,2)=28761.604911959515;
incomes(158,3)=28713.151924018795;
incomes(158,4)=28642.739138521574;
incomes(158,5)=29347.748535895866;
incomes(158,6)=30015.522848205754;
incomes(158,7)=29337.362162469522;
incomes(158,8)=29457.386168722074;
incomes(158,9)=29000.334665621394;
bref(159)=6000;
bnorm(159)=35000;
incomemean(159)=18000;
rents(159,1)=97.42303631818682;
rents(159,2)=80.72494164097202;
rents(159,3)=110.6226009541974;
rents(159,4)=145.3334636274327;
rents(159,5)=182.33129268911543;
rents(159,6)=199.8508943054199;
rents(159,7)=200;
rents(159,8)=200;
rents(159,9)=200;
incomes(159,1)=29459.193598436144;
incomes(159,2)=30034.34948743833;
incomes(159,3)=29771.292540015133;
incomes(159,4)=29717.827627681363;
incomes(159,5)=30898.89412863395;
incomes(159,6)=31316.65589990494;
incomes(159,7)=30754.076473565823;
incomes(159,8)=30511.529697301692;
incomes(159,9)=30497.472570068618;
bref(160)=6000;
bnorm(160)=35000;
incomemean(160)=19000;
rents(160,1)=101.20127149050828;
rents(160,2)=83.85989238440065;
rents(160,3)=119.21201927260826;
rents(160,4)=162.24167044689273;
rents(160,5)=198.07558949369636;
rents(160,6)=200;
rents(160,7)=200;
rents(160,8)=200;
rents(160,9)=200;
incomes(160,1)=31678.511368618194;
incomes(160,2)=32347.122444775407;
incomes(160,3)=32317.804358361882;
incomes(160,4)=32290.338124841197;
incomes(160,5)=33163.722901386696;
incomes(160,6)=33094.44474799162;
incomes(160,7)=32517.245808860123;
incomes(160,8)=32724.914334197725;
incomes(160,9)=32760.33155146408;
bref(161)=6000;
bnorm(161)=38000;
incomemean(161)=10000;
rents(161,1)=99.6303609887325;
rents(161,2)=83.89418686240839;
rents(161,3)=91.92662190705354;
rents(161,4)=99.33510031222686;
rents(161,5)=105.89528180511847;
rents(161,6)=112.96544404609847;
rents(161,7)=120.39679296364699;
rents(161,8)=126.92522311259147;
rents(161,9)=133.022796368184;
incomes(161,1)=19391.520379838024;
incomes(161,2)=19869.935036803676;
incomes(161,3)=19604.946791165963;
incomes(161,4)=19283.85392263235;
incomes(161,5)=19712.955898214805;
incomes(161,6)=20066.63683425384;
incomes(161,7)=19870.21284636164;
incomes(161,8)=19797.005763446232;
incomes(161,9)=20229.038715209223;
bref(162)=6000;
bnorm(162)=38000;
incomemean(162)=11000;
rents(162,1)=102.51648247670794;
rents(162,2)=86.32831030190869;
rents(162,3)=95.59359041795103;
rents(162,4)=103.98259135538004;
rents(162,5)=111.72831809059853;
rents(162,6)=120.50352674988082;
rents(162,7)=129.5470120602832;
rents(162,8)=136.53401083496988;
rents(162,9)=143.54068179140617;
incomes(162,1)=19790.111515819593;
incomes(162,2)=20627.88684981298;
incomes(162,3)=20183.16112781169;
incomes(162,4)=20149.003497082325;
incomes(162,5)=20864.833401524404;
incomes(162,6)=21018.23306679107;
incomes(162,7)=20474.920214230187;
incomes(162,8)=20688.434694880252;
incomes(162,9)=20837.140936522184;
bref(163)=6000;
bnorm(163)=38000;
incomemean(163)=12000;
rents(163,1)=96.21725778838024;
rents(163,2)=81.03048968710303;
rents(163,3)=92.41007520058677;
rents(163,4)=103.12702635031467;
rents(163,5)=114.33789460655284;
rents(163,6)=126.47208242161692;
rents(163,7)=138.56352268174322;
rents(163,8)=148.6076140158037;
rents(163,9)=158.18290197914766;
incomes(163,1)=21017.69860884999;
incomes(163,2)=21725.341276516618;
incomes(163,3)=21288.726931122466;
incomes(163,4)=21586.402147133693;
incomes(163,5)=22067.472741656846;
incomes(163,6)=22383.02074001194;
incomes(163,7)=21869.370700756717;
incomes(163,8)=22117.932571519006;
incomes(163,9)=22249.98432155639;
bref(164)=6000;
bnorm(164)=38000;
incomemean(164)=13000;
rents(164,1)=98.59217975977027;
rents(164,2)=83.02601418524246;
rents(164,3)=97.87848381173596;
rents(164,4)=113.2856475859276;
rents(164,5)=128.71309535309285;
rents(164,6)=144.56290612830645;
rents(164,7)=160.05514908164693;
rents(164,8)=171.97645975724717;
rents(164,9)=181.62271507659912;
incomes(164,1)=22600.01557697077;
incomes(164,2)=23349.21582673568;
incomes(164,3)=23448.26891315845;
incomes(164,4)=23379.974239735173;
incomes(164,5)=23821.14221173779;
incomes(164,6)=23966.499674554227;
incomes(164,7)=23283.185960888244;
incomes(164,8)=23245.41574601642;
incomes(164,9)=23498.295622445457;
bref(165)=6000;
bnorm(165)=38000;
incomemean(165)=14000;
rents(165,1)=100.0387291503625;
rents(165,2)=84.24891384014238;
rents(165,3)=101.01112770319637;
rents(165,4)=119.66605656514857;
rents(165,5)=137.5594474675272;
rents(165,6)=156.22287885590924;
rents(165,7)=174.32549539397147;
rents(165,8)=187.35404235008914;
rents(165,9)=195.01312574644908;
incomes(165,1)=24274.233030286778;
incomes(165,2)=24370.072368795616;
incomes(165,3)=24915.62904690038;
incomes(165,4)=24498.800863223063;
incomes(165,5)=25068.435027176245;
incomes(165,6)=25407.232268042993;
incomes(165,7)=24927.03778818141;
incomes(165,8)=25176.77811212173;
incomes(165,9)=24924.975639275843;
bref(166)=6000;
bnorm(166)=38000;
incomemean(166)=15000;
rents(166,1)=102.78729389533461;
rents(166,2)=86.56229213624245;
rents(166,3)=105.75578101599531;
rents(166,4)=125.83469614497405;
rents(166,5)=146.0530535684477;
rents(166,6)=167.06293679580202;
rents(166,7)=187.01022572892737;
rents(166,8)=196.85067097925815;
rents(166,9)=199.54013119059766;
incomes(166,1)=25129.424035940247;
incomes(166,2)=25463.319607910926;
incomes(166,3)=25349.26178944433;
incomes(166,4)=25269.694787428656;
incomes(166,5)=25803.527822165484;
incomes(166,6)=26111.15354340136;
incomes(166,7)=25853.67231816481;
incomes(166,8)=25470.636967276725;
incomes(166,9)=25657.735888316147;
bref(167)=6000;
bnorm(167)=38000;
incomemean(167)=16000;
rents(167,1)=98.72835910121492;
rents(167,2)=83.13651956487946;
rents(167,3)=105.3575425792769;
rents(167,4)=130.45648341182707;
rents(167,5)=155.71327407153694;
rents(167,6)=181.93386004332157;
rents(167,7)=197.40724660131912;
rents(167,8)=199.82212427834375;
rents(167,9)=200;
incomes(167,1)=26814.371055502703;
incomes(167,2)=27081.019347475598;
incomes(167,3)=27226.535838535572;
incomes(167,4)=26872.598239502782;
incomes(167,5)=27546.790067254533;
incomes(167,6)=27637.19180850126;
incomes(167,7)=27171.417642070173;
incomes(167,8)=27531.28010373408;
incomes(167,9)=27806.47053527509;
bref(168)=6000;
bnorm(168)=38000;
incomemean(168)=17000;
rents(168,1)=101.12396355345352;
rents(168,2)=85.15305363177467;
rents(168,3)=111.99139894182943;
rents(168,4)=142.79610849826204;
rents(168,5)=175.3378550007614;
rents(168,6)=198.13124899644512;
rents(168,7)=199.8417758160151;
rents(168,8)=200;
rents(168,9)=200;
incomes(168,1)=28768.034331893665;
incomes(168,2)=29335.35389564146;
incomes(168,3)=29264.441490074572;
incomes(168,4)=29264.98874681066;
incomes(168,5)=30073.07976762741;
incomes(168,6)=31190.455445907737;
incomes(168,7)=29948.10611118119;
incomes(168,8)=30196.387654655096;
incomes(168,9)=30027.36602792722;
bref(169)=6000;
bnorm(169)=38000;
incomemean(169)=18000;
rents(169,1)=99.76535693798532;
rents(169,2)=84.00690561065173;
rents(169,3)=112.3894987870517;
rents(169,4)=145.85243127951074;
rents(169,5)=180.959393086052;
rents(169,6)=199.2645879454441;
rents(169,7)=200;
rents(169,8)=200;
rents(169,9)=200;
incomes(169,1)=29501.441581794497;
incomes(169,2)=30062.080162956772;
incomes(169,3)=30279.698045890127;
incomes(169,4)=29970.88950749835;
incomes(169,5)=31316.856483980126;
incomes(169,6)=31459.795388841827;
incomes(169,7)=30700.640735023077;
incomes(169,8)=31081.875315267458;
incomes(169,9)=31326.46628925123;
bref(170)=6000;
bnorm(170)=38000;
incomemean(170)=19000;
rents(170,1)=99.46875494155975;
rents(170,2)=83.76583968884624;
rents(170,3)=115.78068528504019;
rents(170,4)=153.24741384886403;
rents(170,5)=192.1381407472928;
rents(170,6)=200;
rents(170,7)=200;
rents(170,8)=200;
rents(170,9)=200;
incomes(170,1)=31253.59065892547;
incomes(170,2)=32013.105704716145;
incomes(170,3)=31476.462627811852;
incomes(170,4)=31233.890402095363;
incomes(170,5)=32655.596748574022;
incomes(170,6)=32332.263336206484;
incomes(170,7)=32355.94434509756;
incomes(170,8)=32461.239517710066;
incomes(170,9)=32569.22961462503;
bref(171)=6000;
bnorm(171)=41000;
incomemean(171)=10000;
rents(171,1)=100.60301615308298;
rents(171,2)=85.88050442355114;
rents(171,3)=92.82427312772568;
rents(171,4)=99.61117634310959;
rents(171,5)=105.85977356160979;
rents(171,6)=112.39256298761653;
rents(171,7)=119.04736992174401;
rents(171,8)=125.00281976890683;
rents(171,9)=130.3239254104339;
incomes(171,1)=19078.015859435072;
incomes(171,2)=19638.283632423663;
incomes(171,3)=19588.859073778465;
incomes(171,4)=19280.037573128666;
incomes(171,5)=19714.72544576883;
incomes(171,6)=19849.008361196684;
incomes(171,7)=19670.11330424786;
incomes(171,8)=19630.201972922787;
incomes(171,9)=19625.593539374353;
bref(172)=6000;
bnorm(172)=41000;
incomemean(172)=11000;
rents(172,1)=101.78164851270063;
rents(172,2)=86.88685095370619;
rents(172,3)=94.68312348544477;
rents(172,4)=102.67720291311812;
rents(172,5)=109.85879241294195;
rents(172,6)=117.78785180168614;
rents(172,7)=125.75068013823429;
rents(172,8)=132.03334160362857;
rents(172,9)=137.3198352739165;
incomes(172,1)=19740.185938929353;
incomes(172,2)=20183.049030413862;
incomes(172,3)=20326.125175946283;
incomes(172,4)=20149.683136781437;
incomes(172,5)=20632.279774934595;
incomes(172,6)=20811.71694064567;
incomes(172,7)=20134.805200519993;
incomes(172,8)=20089.24345767685;
incomes(172,9)=20793.809083438446;
bref(173)=6000;
bnorm(173)=41000;
incomemean(173)=12000;
rents(173,1)=102.78526680489922;
rents(173,2)=87.74159378517933;
rents(173,3)=98.16468491900203;
rents(173,4)=108.30397699107527;
rents(173,5)=118.04089024544294;
rents(173,6)=128.71016421232133;
rents(173,7)=138.5880091894551;
rents(173,8)=147.14677930552932;
rents(173,9)=154.74535919706017;
incomes(173,1)=21023.675348916506;
incomes(173,2)=21475.376123791684;
incomes(173,3)=21398.471317504933;
incomes(173,4)=21318.033935633786;
incomes(173,5)=22023.03738671601;
incomes(173,6)=21791.002691948786;
incomes(173,7)=21438.745848487244;
incomes(173,8)=21390.663160437656;
incomes(173,9)=21704.590992201658;
bref(174)=6000;
bnorm(174)=41000;
incomemean(174)=13000;
rents(174,1)=99.29379833552784;
rents(174,2)=84.76174058299576;
rents(174,3)=97.54369881047234;
rents(174,4)=110.45988019597358;
rents(174,5)=122.7631643159718;
rents(174,6)=136.25308062563127;
rents(174,7)=148.41298271841276;
rents(174,8)=158.90792339697003;
rents(174,9)=169.57910129471426;
incomes(174,1)=22279.594870124398;
incomes(174,2)=22801.047277788395;
incomes(174,3)=22731.69698778752;
incomes(174,4)=22617.142778394013;
incomes(174,5)=23375.676443662105;
incomes(174,6)=23200.141076902964;
incomes(174,7)=22984.86632898374;
incomes(174,8)=23310.746802786034;
incomes(174,9)=23335.891065215208;
bref(175)=6000;
bnorm(175)=41000;
incomemean(175)=14000;
rents(175,1)=99.44542772857118;
rents(175,2)=84.89004687732668;
rents(175,3)=99.60197988826057;
rents(175,4)=115.64855407550218;
rents(175,5)=131.73353999404372;
rents(175,6)=148.56759170670122;
rents(175,7)=165.04132797102295;
rents(175,8)=178.79434525420717;
rents(175,9)=188.40225487095395;
incomes(175,1)=23758.617079065818;
incomes(175,2)=23885.176204228883;
incomes(175,3)=24255.346307377706;
incomes(175,4)=24128.074961988154;
incomes(175,5)=24744.221665966037;
incomes(175,6)=24958.554186635378;
incomes(175,7)=24612.66627124892;
incomes(175,8)=24136.61366455426;
incomes(175,9)=24615.197207443536;
bref(176)=6000;
bnorm(176)=41000;
incomemean(176)=15000;
rents(176,1)=98.83770961369234;
rents(176,2)=84.3707103219735;
rents(176,3)=101.89330997287817;
rents(176,4)=121.09764509580086;
rents(176,5)=140.28899955764044;
rents(176,6)=159.6320719387247;
rents(176,7)=178.2971192749597;
rents(176,8)=191.24510044409902;
rents(176,9)=198.33327064835584;
incomes(176,1)=24878.63268131742;
incomes(176,2)=25450.714834811206;
incomes(176,3)=25566.19892260203;
incomes(176,4)=25271.40873462556;
incomes(176,5)=25666.421453805047;
incomes(176,6)=26206.80479750302;
incomes(176,7)=25602.60408548388;
incomes(176,8)=25725.866291703805;
incomes(176,9)=26365.833118949577;
bref(177)=6000;
bnorm(177)=41000;
incomemean(177)=16000;
rents(177,1)=99.76056669801642;
rents(177,2)=85.15988712354927;
rents(177,3)=106.90897884124838;
rents(177,4)=130.8086024244688;
rents(177,5)=156.60786789151246;
rents(177,6)=183.38543500740212;
rents(177,7)=197.9148673641186;
rents(177,8)=199.86672235389852;
rents(177,9)=200;
incomes(177,1)=26782.14414728254;
incomes(177,2)=27580.76736977053;
incomes(177,3)=27538.217100645616;
incomes(177,4)=27757.747168138;
incomes(177,5)=28385.99128687162;
incomes(177,6)=28687.422832584798;
incomes(177,7)=28045.579609772758;
incomes(177,8)=28132.363285847256;
incomes(177,9)=28431.40661716298;
bref(178)=6000;
bnorm(178)=41000;
incomemean(178)=17000;
rents(178,1)=97.51300687119712;
rents(178,2)=83.24425656698631;
rents(178,3)=107.01411321476397;
rents(178,4)=133.90882913229714;
rents(178,5)=162.6488229534294;
rents(178,6)=191.53608815542952;
rents(178,7)=199.88903373813955;
rents(178,8)=200;
rents(178,9)=200;
incomes(178,1)=28300.935562215105;
incomes(178,2)=28911.26894274765;
incomes(178,3)=28897.175567360973;
incomes(178,4)=28969.308081012474;
incomes(178,5)=29567.254440198638;
incomes(178,6)=30244.135797365987;
incomes(178,7)=29264.429444403526;
incomes(178,8)=29649.447339981252;
incomes(178,9)=29941.14906544375;
bref(179)=6000;
bnorm(179)=41000;
incomemean(179)=18000;
rents(179,1)=103.0073094115503;
rents(179,2)=87.93041388964039;
rents(179,3)=115.57024677474689;
rents(179,4)=147.8327252249554;
rents(179,5)=181.02618529061988;
rents(179,6)=198.84765348523666;
rents(179,7)=200;
rents(179,8)=200;
rents(179,9)=200;
incomes(179,1)=30288.728950100038;
incomes(179,2)=30498.91959456658;
incomes(179,3)=30738.365146528962;
incomes(179,4)=30261.466572937723;
incomes(179,5)=31062.4250858275;
incomes(179,6)=31647.30350489131;
incomes(179,7)=30880.85108266229;
incomes(179,8)=31199.940834577348;
incomes(179,9)=31190.056882725752;
bref(180)=6000;
bnorm(180)=41000;
incomemean(180)=19000;
rents(180,1)=97.77980440313121;
rents(180,2)=83.47843354880048;
rents(180,3)=112.86286243245873;
rents(180,4)=148.5512963922551;
rents(180,5)=185.8291175095247;
rents(180,6)=200;
rents(180,7)=200;
rents(180,8)=200;
rents(180,9)=200;
incomes(180,1)=31610.808488387982;
incomes(180,2)=31959.64553959094;
incomes(180,3)=32290.26247958498;
incomes(180,4)=31681.74381599772;
incomes(180,5)=32750.28400227392;
incomes(180,6)=33214.606023998145;
incomes(180,7)=32614.63232345936;
incomes(180,8)=32691.62441521919;
incomes(180,9)=33027.81753843907;
bref(181)=6000;
bnorm(181)=44000;
incomemean(181)=10000;
rents(181,1)=98.98526096294133;
rents(181,2)=85.48932468820672;
rents(181,3)=91.93814533881168;
rents(181,4)=98.3861590484261;
rents(181,5)=104.27858042521521;
rents(181,6)=110.69226226414649;
rents(181,7)=117.392464665845;
rents(181,8)=123.62546451267767;
rents(181,9)=129.76652164818864;
incomes(181,1)=19476.224467875225;
incomes(181,2)=19701.2456326741;
incomes(181,3)=19822.83081497406;
incomes(181,4)=19501.460664224145;
incomes(181,5)=19931.996184604483;
incomes(181,6)=20276.114598628137;
incomes(181,7)=19785.721145528118;
incomes(181,8)=20078.503241544087;
incomes(181,9)=20009.14883445719;
bref(182)=6000;
bnorm(182)=44000;
incomemean(182)=11000;
rents(182,1)=102.99791908157708;
rents(182,2)=88.95096097591485;
rents(182,3)=96.64369295905148;
rents(182,4)=103.99442681788054;
rents(182,5)=110.95275769775952;
rents(182,6)=118.5693971631021;
rents(182,7)=126.16414556768086;
rents(182,8)=132.09714947768316;
rents(182,9)=138.21361971836694;
incomes(182,1)=20185.6815732863;
incomes(182,2)=20470.627608580795;
incomes(182,3)=20299.72593490653;
incomes(182,4)=20225.222869777845;
incomes(182,5)=20840.244678629948;
incomes(182,6)=20978.311523833072;
incomes(182,7)=20382.1162996589;
incomes(182,8)=20812.281176655797;
incomes(182,9)=21062.172309133475;
bref(183)=6000;
bnorm(183)=44000;
incomemean(183)=12000;
rents(183,1)=97.8668146239182;
rents(183,2)=84.52085225213786;
rents(183,3)=94.27816109479015;
rents(183,4)=103.73794179968417;
rents(183,5)=113.14452513960025;
rents(183,6)=122.81085882905204;
rents(183,7)=131.56346839011843;
rents(183,8)=140.088324433521;
rents(183,9)=149.14801395006478;
incomes(183,1)=20971.170801863107;
incomes(183,2)=21521.592428637356;
incomes(183,3)=21316.19849221839;
incomes(183,4)=21184.00751717891;
incomes(183,5)=21692.454303917795;
incomes(183,6)=21628.943923584975;
incomes(183,7)=21602.792326445655;
incomes(183,8)=22015.302220389316;
incomes(183,9)=22340.10042814531;
bref(184)=6000;
bnorm(184)=44000;
incomemean(184)=13000;
rents(184,1)=99.16523296860395;
rents(184,2)=85.63957651173442;
rents(184,3)=97.41898692621928;
rents(184,4)=109.35469118425505;
rents(184,5)=121.27755865776562;
rents(184,6)=133.7462407287046;
rents(184,7)=146.03651422531203;
rents(184,8)=156.3662354101451;
rents(184,9)=166.27775426709957;
incomes(184,1)=22324.70189764092;
incomes(184,2)=22712.40604664161;
incomes(184,3)=22714.852946566334;
incomes(184,4)=22619.56701231552;
incomes(184,5)=23210.42899958258;
incomes(184,6)=23276.13245347244;
incomes(184,7)=22688.279072667345;
incomes(184,8)=22965.753732220855;
incomes(184,9)=23083.767281419423;
bref(185)=6000;
bnorm(185)=44000;
incomemean(185)=14000;
rents(185,1)=99.89464326346098;
rents(185,2)=86.27425321957827;
rents(185,3)=100.26216767300207;
rents(185,4)=114.79290827435975;
rents(185,5)=129.93093066767028;
rents(185,6)=145.7233981766309;
rents(185,7)=160.4892551459331;
rents(185,8)=173.06243015018245;
rents(185,9)=183.72068631466004;
incomes(185,1)=23551.044986702556;
incomes(185,2)=23917.602761154165;
incomes(185,3)=23825.721979562306;
incomes(185,4)=24080.28627932261;
incomes(185,5)=24632.59404086332;
incomes(185,6)=24398.268201059298;
incomes(185,7)=24004.936134131767;
incomes(185,8)=23749.639025180317;
incomes(185,9)=24652.77897108958;
bref(186)=6000;
bnorm(186)=44000;
incomemean(186)=15000;
rents(186,1)=100.239881657419;
rents(186,2)=86.57395773629922;
rents(186,3)=104.16993477642113;
rents(186,4)=122.71839686066728;
rents(186,5)=142.373013590548;
rents(186,6)=162.68540376773205;
rents(186,7)=182.42162950680574;
rents(186,8)=195.65532977114572;
rents(186,9)=199.85840774319834;
incomes(186,1)=25712.653050669524;
incomes(186,2)=26053.849216050323;
incomes(186,3)=25853.411434805777;
incomes(186,4)=26069.61629695031;
incomes(186,5)=26559.083220822034;
incomes(186,6)=26791.544460234723;
incomes(186,7)=26490.237005522646;
incomes(186,8)=26444.64686752316;
incomes(186,9)=26822.720765797487;
bref(187)=6000;
bnorm(187)=44000;
incomemean(187)=16000;
rents(187,1)=102.67915940280167;
rents(187,2)=88.6772947350156;
rents(187,3)=108.86642928937158;
rents(187,4)=130.74311802726456;
rents(187,5)=152.86336880623176;
rents(187,6)=175.81364986271768;
rents(187,7)=194.23158100626642;
rents(187,8)=199.13064248796553;
rents(187,9)=200;
incomes(187,1)=27080.38271842319;
incomes(187,2)=27221.970988300818;
incomes(187,3)=27112.773036232036;
incomes(187,4)=26944.941853587152;
incomes(187,5)=27361.879072598676;
incomes(187,6)=27969.05705165714;
incomes(187,7)=27468.993215377643;
incomes(187,8)=27965.262883409137;
incomes(187,9)=28222.503210334617;
bref(188)=6000;
bnorm(188)=44000;
incomemean(188)=17000;
rents(188,1)=100.86797089527765;
rents(188,2)=87.10961175448462;
rents(188,3)=110.06884167210188;
rents(188,4)=136.27814210674157;
rents(188,5)=164.8996210324059;
rents(188,6)=192.62718758492548;
rents(188,7)=199.9647683162137;
rents(188,8)=200;
rents(188,9)=200;
incomes(188,1)=28639.411087954533;
incomes(188,2)=28905.29107037529;
incomes(188,3)=29029.568404200272;
incomes(188,4)=29256.520544589657;
incomes(188,5)=29439.785832893554;
incomes(188,6)=30124.066443629137;
incomes(188,7)=29182.289584490547;
incomes(188,8)=29387.02304223281;
incomes(188,9)=29682.21246465178;
bref(189)=6000;
bnorm(189)=44000;
incomemean(189)=18000;
rents(189,1)=100.69622265600682;
rents(189,2)=86.96149028733927;
rents(189,3)=113.40967412893085;
rents(189,4)=143.92820723745666;
rents(189,5)=175.53280382185488;
rents(189,6)=198.16384016793305;
rents(189,7)=200;
rents(189,8)=200;
rents(189,9)=200;
incomes(189,1)=30493.157422071843;
incomes(189,2)=31117.503232505398;
incomes(189,3)=31222.089935214055;
incomes(189,4)=30789.240780687607;
incomes(189,5)=31304.49513097395;
incomes(189,6)=32138.518807539247;
incomes(189,7)=31471.551206112264;
incomes(189,8)=31115.230248847794;
incomes(189,9)=31704.47959009269;
bref(190)=6000;
bnorm(190)=44000;
incomemean(190)=19000;
rents(190,1)=99.55453563793606;
rents(190,2)=85.97525160791558;
rents(190,3)=114.8884489419467;
rents(190,4)=148.70750335303708;
rents(190,5)=184.95953156073065;
rents(190,6)=199.72407706762607;
rents(190,7)=200;
rents(190,8)=200;
rents(190,9)=200;
incomes(190,1)=32175.57351938189;
incomes(190,2)=32541.233212336414;
incomes(190,3)=32201.32472156064;
incomes(190,4)=32552.738119455214;
incomes(190,5)=32995.64758331571;
incomes(190,6)=33712.7333089484;
incomes(190,7)=33070.96522569719;
incomes(190,8)=33100.66247078073;
incomes(190,9)=33596.673727239824;
bref(191)=6000;
bnorm(191)=47000;
incomemean(191)=10000;
rents(191,1)=100.16717824579467;
rents(191,2)=87.3817032733296;
rents(191,3)=93.3207502312306;
rents(191,4)=98.8463675481742;
rents(191,5)=103.949720637345;
rents(191,6)=109.50946096558866;
rents(191,7)=114.78958859192144;
rents(191,8)=119.49704684621163;
rents(191,9)=124.19796183663132;
incomes(191,1)=19475.95576788435;
incomes(191,2)=19649.871915138832;
incomes(191,3)=19419.891288190116;
incomes(191,4)=19237.145367878766;
incomes(191,5)=19644.038320966105;
incomes(191,6)=19683.00782837577;
incomes(191,7)=19350.601089602034;
incomes(191,8)=19364.144585837523;
incomes(191,9)=19614.683959195634;
bref(192)=6000;
bnorm(192)=47000;
incomemean(192)=11000;
rents(192,1)=100.74751279245832;
rents(192,2)=87.89078887606067;
rents(192,3)=95.17999640671246;
rents(192,4)=102.72113513193086;
rents(192,5)=109.5291523776486;
rents(192,6)=116.43696150653712;
rents(192,7)=123.7284998495339;
rents(192,8)=130.5475464957243;
rents(192,9)=135.95717109158778;
incomes(192,1)=20224.082641823687;
incomes(192,2)=20474.994364087772;
incomes(192,3)=20722.56602646766;
incomes(192,4)=20319.996575075013;
incomes(192,5)=20592.533989084066;
incomes(192,6)=20930.574083423282;
incomes(192,7)=20876.18216704454;
incomes(192,8)=20264.674712160122;
incomes(192,9)=20623.44868465045;
bref(193)=6000;
bnorm(193)=47000;
incomemean(193)=12000;
rents(193,1)=102.32516465250424;
rents(193,2)=89.26136832870274;
rents(193,3)=97.93163701680147;
rents(193,4)=106.87247582894622;
rents(193,5)=115.84373461528963;
rents(193,6)=125.03434577512921;
rents(193,7)=134.69829387692025;
rents(193,8)=143.29781778744606;
rents(193,9)=151.39555071089927;
incomes(193,1)=21224.98710507795;
incomes(193,2)=21289.341598540315;
incomes(193,3)=21339.49379427039;
incomes(193,4)=21484.818860731;
incomes(193,5)=21770.910955058527;
incomes(193,6)=22329.523865451214;
incomes(193,7)=22079.844525916596;
incomes(193,8)=21918.739854534208;
incomes(193,9)=22230.539918710863;
bref(194)=6000;
bnorm(194)=47000;
incomemean(194)=13000;
rents(194,1)=101.39640930221476;
rents(194,2)=88.45408160898927;
rents(194,3)=99.76683112751543;
rents(194,4)=111.12376312107807;
rents(194,5)=123.16293148464553;
rents(194,6)=135.08752042396458;
rents(194,7)=146.75998974415214;
rents(194,8)=156.72163206023342;
rents(194,9)=166.13192486772195;
incomes(194,1)=22543.587707823135;
incomes(194,2)=22883.36612524564;
incomes(194,3)=22724.40695762836;
incomes(194,4)=23121.283693374568;
incomes(194,5)=23188.57403189777;
incomes(194,6)=23513.948922887692;
incomes(194,7)=23041.01060699407;
incomes(194,8)=23108.177235708696;
incomes(194,9)=23717.851963581263;
bref(195)=6000;
bnorm(195)=47000;
incomemean(195)=14000;
rents(195,1)=100.89748529734538;
rents(195,2)=88.02163097479878;
rents(195,3)=101.33819776885636;
rents(195,4)=115.18280378722562;
rents(195,5)=129.06231040910606;
rents(195,6)=143.61837129964545;
rents(195,7)=158.1982072659472;
rents(195,8)=170.5856526162341;
rents(195,9)=182.02195985172392;
incomes(195,1)=23715.92889671611;
incomes(195,2)=24027.349358719028;
incomes(195,3)=24128.861811088198;
incomes(195,4)=23986.225836674254;
incomes(195,5)=24446.461134144003;
incomes(195,6)=24720.55364414658;
incomes(195,7)=24322.595286064556;
incomes(195,8)=24291.906849342256;
incomes(195,9)=24992.24427033907;
bref(196)=6000;
bnorm(196)=47000;
incomemean(196)=15000;
rents(196,1)=101.39792615086819;
rents(196,2)=88.44940012674392;
rents(196,3)=104.2766591760459;
rents(196,4)=120.6127609315918;
rents(196,5)=137.49437139623203;
rents(196,6)=155.3267447438065;
rents(196,7)=172.50602298846457;
rents(196,8)=186.85188474064694;
rents(196,9)=195.36492575343772;
incomes(196,1)=25226.81315388291;
incomes(196,2)=25485.281688087394;
incomes(196,3)=25272.688237363032;
incomes(196,4)=25451.099273939915;
incomes(196,5)=26043.05347005387;
incomes(196,6)=25955.931606747985;
incomes(196,7)=25345.193186296074;
incomes(196,8)=25696.811018935976;
incomes(196,9)=26019.463737775288;
bref(197)=6000;
bnorm(197)=47000;
incomemean(197)=16000;
rents(197,1)=98.89349445245644;
rents(197,2)=86.27366897507821;
rents(197,3)=104.7113396055665;
rents(197,4)=124.62564068277254;
rents(197,5)=145.25907776662393;
rents(197,6)=168.08763362944993;
rents(197,7)=188.5537215947358;
rents(197,8)=197.51440938145785;
rents(197,9)=199.99965481464602;
incomes(197,1)=26609.53867916938;
incomes(197,2)=27294.368248519397;
incomes(197,3)=27186.546319277466;
incomes(197,4)=27115.355256772636;
incomes(197,5)=28126.231093865794;
incomes(197,6)=28142.24986154593;
incomes(197,7)=27422.676846016726;
incomes(197,8)=27835.260341056368;
incomes(197,9)=27939.23008857364;
bref(198)=6000;
bnorm(198)=47000;
incomemean(198)=17000;
rents(198,1)=104.73605922702706;
rents(198,2)=91.36986467367105;
rents(198,3)=112.33418097434944;
rents(198,4)=135.28265895903633;
rents(198,5)=158.92287301433964;
rents(198,6)=183.61938172062398;
rents(198,7)=198.86142182434327;
rents(198,8)=199.89917218719626;
rents(198,9)=200;
incomes(198,1)=28159.664875476847;
incomes(198,2)=28333.784184086922;
incomes(198,3)=28478.386019824382;
incomes(198,4)=28204.55352493783;
incomes(198,5)=28798.611013135604;
incomes(198,6)=29510.331075949587;
incomes(198,7)=28928.558341848806;
incomes(198,8)=29167.453784610232;
incomes(198,9)=29809.31500826035;
bref(199)=6000;
bnorm(199)=47000;
incomemean(199)=18000;
rents(199,1)=101.92863651514082;
rents(199,2)=88.91631768962125;
rents(199,3)=112.94277839481516;
rents(199,4)=140.0162107087698;
rents(199,5)=167.90725673280505;
rents(199,6)=193.4173238837242;
rents(199,7)=199.7144180137917;
rents(199,8)=200;
rents(199,9)=200;
incomes(199,1)=29805.829036339346;
incomes(199,2)=30176.83162788196;
incomes(199,3)=30125.481011440068;
incomes(199,4)=29562.341501779512;
incomes(199,5)=30652.96896334568;
incomes(199,6)=30978.57644149538;
incomes(199,7)=30277.078754074366;
incomes(199,8)=30700.463380002373;
incomes(199,9)=30767.0729472511;
bref(200)=6000;
bnorm(200)=47000;
incomemean(200)=19000;
rents(200,1)=102.4425915055937;
rents(200,2)=89.35992085820814;
rents(200,3)=116.60641024681375;
rents(200,4)=148.64207963383424;
rents(200,5)=183.77279225713755;
rents(200,6)=199.16285213755063;
rents(200,7)=200;
rents(200,8)=200;
rents(200,9)=200;
incomes(200,1)=31874.747526767675;
incomes(200,2)=32336.019636928555;
incomes(200,3)=32463.87400899682;
incomes(200,4)=32427.329404487078;
incomes(200,5)=33178.6970094069;
incomes(200,6)=33846.941176925924;
incomes(200,7)=33492.39094145723;
incomes(200,8)=32857.993877999266;
incomes(200,9)=33583.67174617565;
bref(201)=7000;
bnorm(201)=20000;
incomemean(201)=10000;
rents(201,1)=101.90891944610301;
rents(201,2)=66.24520237539626;
rents(201,3)=77.12381018790994;
rents(201,4)=86.77893935259316;
rents(201,5)=94.03188712901635;
rents(201,6)=102.44833057814708;
rents(201,7)=109.50138811216122;
rents(201,8)=114.83116154105876;
rents(201,9)=119.88955377484695;
incomes(201,1)=19022.925087358883;
incomes(201,2)=19403.941841591506;
incomes(201,3)=19232.83306087577;
incomes(201,4)=18880.067509738412;
incomes(201,5)=19362.133227723793;
incomes(201,6)=19372.2314573501;
incomes(201,7)=19006.595863559356;
incomes(201,8)=19397.18459890882;
incomes(201,9)=19412.686257879635;
bref(202)=7000;
bnorm(202)=20000;
incomemean(202)=11000;
rents(202,1)=100.16995973998091;
rents(202,2)=65.11413790137522;
rents(202,3)=78.97690586353707;
rents(202,4)=91.50418801815195;
rents(202,5)=102.02393669139857;
rents(202,6)=112.84067529158541;
rents(202,7)=123.90773664590303;
rents(202,8)=132.18136892416345;
rents(202,9)=138.3311312425438;
incomes(202,1)=19908.408546981;
incomes(202,2)=20484.211357452154;
incomes(202,3)=20139.44482396816;
incomes(202,4)=19881.425383137077;
incomes(202,5)=20363.114208625302;
incomes(202,6)=20769.229646143678;
incomes(202,7)=20592.179882466397;
incomes(202,8)=20507.97989342525;
incomes(202,9)=20747.082788474727;
bref(203)=7000;
bnorm(203)=20000;
incomemean(203)=12000;
rents(203,1)=100.88313209626308;
rents(203,2)=65.57813912444418;
rents(203,3)=82.73224212487798;
rents(203,4)=100.30790305097209;
rents(203,5)=114.90533759106755;
rents(203,6)=132.09361822433675;
rents(203,7)=145.41812862352248;
rents(203,8)=153.94747739667562;
rents(203,9)=160.9938586059792;
incomes(203,1)=21369.614619815155;
incomes(203,2)=21586.422380451222;
incomes(203,3)=21661.401749237255;
incomes(203,4)=21067.03314602533;
incomes(203,5)=22178.939888858542;
incomes(203,6)=22053.1964681049;
incomes(203,7)=21606.661199526017;
incomes(203,8)=21778.48246587946;
incomes(203,9)=21982.543681439565;
bref(204)=7000;
bnorm(204)=20000;
incomemean(204)=13000;
rents(204,1)=100.10651161092582;
rents(204,2)=65.07448453399054;
rents(204,3)=86.10844584693771;
rents(204,4)=108.19820529109204;
rents(204,5)=128.86317658709785;
rents(204,6)=149.71973631748534;
rents(204,7)=168.12571239292976;
rents(204,8)=177.509705396739;
rents(204,9)=182.63395694014693;
incomes(204,1)=22244.70712769712;
incomes(204,2)=22888.029357745523;
incomes(204,3)=22808.822641101655;
incomes(204,4)=22713.967495394565;
incomes(204,5)=23344.075984382533;
incomes(204,6)=23629.09430453186;
incomes(204,7)=22848.18862429116;
incomes(204,8)=22690.366831319214;
incomes(204,9)=23093.297448676432;
bref(205)=7000;
bnorm(205)=20000;
incomemean(205)=14000;
rents(205,1)=100.06035917590219;
rents(205,2)=65.04011262449536;
rents(205,3)=88.86215297062746;
rents(205,4)=114.67327232006068;
rents(205,5)=141.71420710215963;
rents(205,6)=169.54363796323827;
rents(205,7)=190.52902897732304;
rents(205,8)=196.75122730213502;
rents(205,9)=198.92268172953524;
incomes(205,1)=23535.698136344578;
incomes(205,2)=23833.339938106586;
incomes(205,3)=23709.791475819165;
incomes(205,4)=24117.457766702515;
incomes(205,5)=24908.42833341149;
incomes(205,6)=25429.87388378885;
incomes(205,7)=24789.349865934008;
incomes(205,8)=24684.38619886673;
incomes(205,9)=24616.64092817388;
bref(206)=7000;
bnorm(206)=20000;
incomemean(206)=15000;
rents(206,1)=102.22832318613581;
rents(206,2)=66.44871017007817;
rents(206,3)=95.69025680060324;
rents(206,4)=128.3925625031601;
rents(206,5)=163.3995513107537;
rents(206,6)=194.13564814321745;
rents(206,7)=199.3922735150835;
rents(206,8)=200;
rents(206,9)=200;
incomes(206,1)=25007.14996220037;
incomes(206,2)=25543.557683568662;
incomes(206,3)=25230.723131584633;
incomes(206,4)=25934.571696538424;
incomes(206,5)=26644.083260282874;
incomes(206,6)=26715.146162441724;
incomes(206,7)=26077.49876838846;
incomes(206,8)=26143.428781411054;
incomes(206,9)=26577.378441876317;
bref(207)=7000;
bnorm(207)=20000;
incomemean(207)=16000;
rents(207,1)=99.08137779806844;
rents(207,2)=64.40067670223023;
rents(207,3)=96.47593766811066;
rents(207,4)=134.23225216283473;
rents(207,5)=176.36982704480522;
rents(207,6)=199.37568168431386;
rents(207,7)=200;
rents(207,8)=200;
rents(207,9)=200;
incomes(207,1)=26422.94766558385;
incomes(207,2)=26725.37913293584;
incomes(207,3)=26419.788691589354;
incomes(207,4)=27104.53411130683;
incomes(207,5)=27549.988246373276;
incomes(207,6)=28067.708609931044;
incomes(207,7)=27064.239362541495;
incomes(207,8)=27020.036274822764;
incomes(207,9)=27665.721785940157;
bref(208)=7000;
bnorm(208)=20000;
incomemean(208)=17000;
rents(208,1)=101.8401002680268;
rents(208,2)=66.19782713346395;
rents(208,3)=105.13042938945503;
rents(208,4)=153.88139373064536;
rents(208,5)=196.99429542058238;
rents(208,6)=200;
rents(208,7)=200;
rents(208,8)=200;
rents(208,9)=200;
incomes(208,1)=28050.140912032282;
incomes(208,2)=28936.87902236521;
incomes(208,3)=28741.008399617887;
incomes(208,4)=28870.15862112266;
incomes(208,5)=29985.346682213385;
incomes(208,6)=29839.169097232385;
incomes(208,7)=29463.148708854347;
incomes(208,8)=29279.951009867924;
incomes(208,9)=29813.38293122932;
bref(209)=7000;
bnorm(209)=20000;
incomemean(209)=18000;
rents(209,1)=100.7733208524583;
rents(209,2)=65.50319837965263;
rents(209,3)=108.04803106478224;
rents(209,4)=163.77236665256788;
rents(209,5)=199.94530635420395;
rents(209,6)=200;
rents(209,7)=200;
rents(209,8)=200;
rents(209,9)=200;
incomes(209,1)=29725.92838876403;
incomes(209,2)=30183.12065072166;
incomes(209,3)=29835.240328901364;
incomes(209,4)=30205.147908587875;
incomes(209,5)=31218.640898475925;
incomes(209,6)=31078.59922912043;
incomes(209,7)=30267.004736402734;
incomes(209,8)=30522.635649084154;
incomes(209,9)=30838.058151043173;
bref(210)=7000;
bnorm(210)=20000;
incomemean(210)=19000;
rents(210,1)=101.35956441694256;
rents(210,2)=65.88587120555933;
rents(210,3)=113.26867106800302;
rents(210,4)=176.10595399263423;
rents(210,5)=199.97363128936405;
rents(210,6)=200;
rents(210,7)=200;
rents(210,8)=200;
rents(210,9)=200;
incomes(210,1)=31539.966353785203;
incomes(210,2)=31712.848750269957;
incomes(210,3)=31203.120938025015;
incomes(210,4)=31998.896066788962;
incomes(210,5)=32760.11057708386;
incomes(210,6)=32684.787534890558;
incomes(210,7)=32254.361872718564;
incomes(210,8)=31588.533884767723;
incomes(210,9)=32606.057290611694;
bref(211)=7000;
bnorm(211)=23000;
incomemean(211)=10000;
rents(211,1)=97.82785401900327;
rents(211,2)=68.05339934753472;
rents(211,3)=76.89243570800173;
rents(211,4)=85.77046462859137;
rents(211,5)=92.74307377125162;
rents(211,6)=99.3866918967449;
rents(211,7)=105.40548399742632;
rents(211,8)=110.10595728703952;
rents(211,9)=113.67587126890416;
incomes(211,1)=19279.52864116801;
incomes(211,2)=19199.946910976392;
incomes(211,3)=19371.56607421813;
incomes(211,4)=19108.539169004845;
incomes(211,5)=19352.514762920677;
incomes(211,6)=19413.1182817432;
incomes(211,7)=19201.162251645663;
incomes(211,8)=19035.71544624851;
incomes(211,9)=19691.954547936344;
bref(212)=7000;
bnorm(212)=23000;
incomemean(212)=11000;
rents(212,1)=99.74441321510956;
rents(212,2)=69.37624905810031;
rents(212,3)=81.76402823046246;
rents(212,4)=92.83164339938537;
rents(212,5)=103.05434535961095;
rents(212,6)=112.53323480618971;
rents(212,7)=121.04030568206194;
rents(212,8)=128.63841429997203;
rents(212,9)=135.71460894349354;
incomes(212,1)=20165.796276802135;
incomes(212,2)=20486.731061826267;
incomes(212,3)=20179.410443854573;
incomes(212,4)=20062.666990954258;
incomes(212,5)=20210.535665031493;
incomes(212,6)=20333.0138331575;
incomes(212,7)=20465.481549577155;
incomes(212,8)=20550.594729366167;
incomes(212,9)=20539.091687726122;
bref(213)=7000;
bnorm(213)=23000;
incomemean(213)=12000;
rents(213,1)=99.6054095908714;
rents(213,2)=69.28886809128734;
rents(213,3)=83.99504358499374;
rents(213,4)=98.59613141445729;
rents(213,5)=112.06355298199891;
rents(213,6)=125.44629030786105;
rents(213,7)=137.33889070840704;
rents(213,8)=146.05682291237147;
rents(213,9)=153.6135311217364;
incomes(213,1)=21377.28129372118;
incomes(213,2)=21490.74555584895;
incomes(213,3)=21478.048500045996;
incomes(213,4)=21361.01534729464;
incomes(213,5)=21664.930123465616;
incomes(213,6)=21773.36464630181;
incomes(213,7)=21573.77195614951;
incomes(213,8)=21734.87565499426;
incomes(213,9)=21959.602885033473;
bref(214)=7000;
bnorm(214)=23000;
incomemean(214)=13000;
rents(214,1)=100.93142436608923;
rents(214,2)=70.21518668498884;
rents(214,3)=88.51467256767391;
rents(214,4)=106.45265570975158;
rents(214,5)=124.22847132875613;
rents(214,6)=141.94263114387502;
rents(214,7)=158.18037110082997;
rents(214,8)=170.19251161246547;
rents(214,9)=178.7702072348618;
incomes(214,1)=22191.578981645675;
incomes(214,2)=22761.410707910713;
incomes(214,3)=22363.847435719512;
incomes(214,4)=22461.24452163238;
incomes(214,5)=22907.54571124853;
incomes(214,6)=23226.838396098756;
incomes(214,7)=23262.918379594274;
incomes(214,8)=23155.334418375878;
incomes(214,9)=23328.196474620945;
bref(215)=7000;
bnorm(215)=23000;
incomemean(215)=14000;
rents(215,1)=99.48325545915884;
rents(215,2)=69.204055359793;
rents(215,3)=91.93282432725289;
rents(215,4)=115.42543223835965;
rents(215,5)=139.90955083440215;
rents(215,6)=165.51665252498373;
rents(215,7)=186.27590297089853;
rents(215,8)=195.30842641149997;
rents(215,9)=197.74863603973657;
incomes(215,1)=23772.26211405568;
incomes(215,2)=24383.183502553507;
incomes(215,3)=24015.074213350705;
incomes(215,4)=24344.689095103546;
incomes(215,5)=25102.073159926476;
incomes(215,6)=25104.977806192914;
incomes(215,7)=24926.06368207553;
incomes(215,8)=24553.907826831906;
incomes(215,9)=25003.10263547841;
bref(216)=7000;
bnorm(216)=23000;
incomemean(216)=15000;
rents(216,1)=100.9281274352911;
rents(216,2)=70.20636431557979;
rents(216,3)=95.69392797895925;
rents(216,4)=124.31791797861266;
rents(216,5)=153.08166404615898;
rents(216,6)=181.92194328638686;
rents(216,7)=197.5924248437031;
rents(216,8)=199.96667841631512;
rents(216,9)=200;
incomes(216,1)=25389.583827894818;
incomes(216,2)=25294.806758027084;
incomes(216,3)=25353.556139192868;
incomes(216,4)=25264.051991822547;
incomes(216,5)=26170.004665158816;
incomes(216,6)=26323.16615823519;
incomes(216,7)=25915.77541376879;
incomes(216,8)=25827.50803034406;
incomes(216,9)=26584.40203421041;
bref(217)=7000;
bnorm(217)=23000;
incomemean(217)=16000;
rents(217,1)=99.84573720256755;
rents(217,2)=69.46011472408097;
rents(217,3)=98.42415901566896;
rents(217,4)=133.27892731258294;
rents(217,5)=169.97871746587077;
rents(217,6)=196.1256576753083;
rents(217,7)=199.90894949426294;
rents(217,8)=200;
rents(217,9)=200;
incomes(217,1)=26526.06433884791;
incomes(217,2)=26663.233560340992;
incomes(217,3)=26932.5710894314;
incomes(217,4)=27085.204451852784;
incomes(217,5)=27456.808906605827;
incomes(217,6)=28298.66441821927;
incomes(217,7)=27280.577877560783;
incomes(217,8)=26887.51390294463;
incomes(217,9)=27641.710921682476;
bref(218)=7000;
bnorm(218)=23000;
incomemean(218)=17000;
rents(218,1)=100.034550252302;
rents(218,2)=69.59477351881914;
rents(218,3)=103.53002932360565;
rents(218,4)=143.88977805903244;
rents(218,5)=185.83450250505692;
rents(218,6)=199.99207070118135;
rents(218,7)=200;
rents(218,8)=200;
rents(218,9)=200;
incomes(218,1)=27835.43820765504;
incomes(218,2)=28385.500895633206;
incomes(218,3)=28145.93646045497;
incomes(218,4)=28142.701532513547;
incomes(218,5)=29322.66741460466;
incomes(218,6)=29816.234389214453;
incomes(218,7)=29106.739074882695;
incomes(218,8)=28669.59220087487;
incomes(218,9)=29155.57599383371;
bref(219)=7000;
bnorm(219)=23000;
incomemean(219)=18000;
rents(219,1)=100.52586182047685;
rents(219,2)=69.92970215108136;
rents(219,3)=109.20088242468569;
rents(219,4)=159.77510274472374;
rents(219,5)=199.36590511129202;
rents(219,6)=200;
rents(219,7)=200;
rents(219,8)=200;
rents(219,9)=200;
incomes(219,1)=29860.149568120338;
incomes(219,2)=30415.078037517105;
incomes(219,3)=30465.03079346545;
incomes(219,4)=30317.844776862927;
incomes(219,5)=31552.447513460214;
incomes(219,6)=31242.58251075766;
incomes(219,7)=31039.046027150416;
incomes(219,8)=30584.649436214182;
incomes(219,9)=31163.59247255746;
bref(220)=7000;
bnorm(220)=23000;
incomemean(220)=19000;
rents(220,1)=101.24480620585994;
rents(220,2)=70.43032592616345;
rents(220,3)=113.89150647420269;
rents(220,4)=171.04891420664703;
rents(220,5)=199.82243699089378;
rents(220,6)=200;
rents(220,7)=200;
rents(220,8)=200;
rents(220,9)=200;
incomes(220,1)=31412.94292010861;
incomes(220,2)=31892.977521231132;
incomes(220,3)=31870.4903501163;
incomes(220,4)=31787.487882052345;
incomes(220,5)=32718.61444809529;
incomes(220,6)=32883.597470462424;
incomes(220,7)=32736.642119555527;
incomes(220,8)=32312.80458425146;
incomes(220,9)=32417.408429100135;
bref(221)=7000;
bnorm(221)=26000;
incomemean(221)=10000;
rents(221,1)=99.44087636154494;
rents(221,2)=72.66919368187475;
rents(221,3)=80.95174884756617;
rents(221,4)=88.57529727232149;
rents(221,5)=94.45403814715189;
rents(221,6)=100.52924323186747;
rents(221,7)=106.22551929286296;
rents(221,8)=110.44931941272486;
rents(221,9)=114.18908010315816;
incomes(221,1)=19406.889635779757;
incomes(221,2)=19536.672514288315;
incomes(221,3)=19392.631978449568;
incomes(221,4)=19005.57340405653;
incomes(221,5)=19419.810266740795;
incomes(221,6)=19518.521980814578;
incomes(221,7)=19267.924287963073;
incomes(221,8)=19207.896377164125;
incomes(221,9)=19719.296293708197;
bref(222)=7000;
bnorm(222)=26000;
incomemean(222)=11000;
rents(222,1)=100.55500751617299;
rents(222,2)=73.48469161803605;
rents(222,3)=84.12863205941629;
rents(222,4)=94.49419682034899;
rents(222,5)=103.58149486103538;
rents(222,6)=113.2259280542831;
rents(222,7)=123.07899945373747;
rents(222,8)=129.66708069037765;
rents(222,9)=135.2492156043003;
incomes(222,1)=20275.90092722647;
incomes(222,2)=20418.45724383206;
incomes(222,3)=20477.591349595266;
incomes(222,4)=20266.955189564098;
incomes(222,5)=20789.938377994265;
incomes(222,6)=21155.20576530713;
incomes(222,7)=20542.890174864995;
incomes(222,8)=20578.96785634679;
incomes(222,9)=20739.85752564411;
bref(223)=7000;
bnorm(223)=26000;
incomemean(223)=12000;
rents(223,1)=101.22433780989144;
rents(223,2)=73.96407909387668;
rents(223,3)=86.91839301679133;
rents(223,4)=99.5995520885529;
rents(223,5)=110.3561594837392;
rents(223,6)=121.4123056413827;
rents(223,7)=131.65279663737073;
rents(223,8)=140.37977937460988;
rents(223,9)=148.18398588215084;
incomes(223,1)=20758.178772572686;
incomes(223,2)=21335.364674650922;
incomes(223,3)=21357.50261272434;
incomes(223,4)=20844.717804797652;
incomes(223,5)=21370.56565422683;
incomes(223,6)=21372.2924896141;
incomes(223,7)=21371.99571939221;
incomes(223,8)=21560.896197754766;
incomes(223,9)=21561.195407928983;
bref(224)=7000;
bnorm(224)=26000;
incomemean(224)=13000;
rents(224,1)=101.17135476239423;
rents(224,2)=73.92598019644853;
rents(224,3)=90.07122258257309;
rents(224,4)=106.50441036350716;
rents(224,5)=121.90758884643621;
rents(224,6)=137.95702907746315;
rents(224,7)=152.102985587374;
rents(224,8)=163.56604307926057;
rents(224,9)=172.18378336768623;
incomes(224,1)=22276.54958970441;
incomes(224,2)=22617.986807191606;
incomes(224,3)=22636.38569328273;
incomes(224,4)=22415.884758201933;
incomes(224,5)=23056.40898361407;
incomes(224,6)=23112.093517235968;
incomes(224,7)=22774.49445424791;
incomes(224,8)=22818.89510321838;
incomes(224,9)=23200.94957644764;
bref(225)=7000;
bnorm(225)=26000;
incomemean(225)=14000;
rents(225,1)=99.53780244241304;
rents(225,2)=72.74142565735849;
rents(225,3)=91.97080590325085;
rents(225,4)=112.5444901618143;
rents(225,5)=133.2186780888047;
rents(225,6)=153.28196677128705;
rents(225,7)=172.34980225645572;
rents(225,8)=183.21615038770585;
rents(225,9)=191.18835058686287;
incomes(225,1)=23427.775827211444;
incomes(225,2)=23879.11847560833;
incomes(225,3)=23873.786691418165;
incomes(225,4)=23883.706437129273;
incomes(225,5)=24462.19528872055;
incomes(225,6)=24893.271051934815;
incomes(225,7)=24095.78344625158;
incomes(225,8)=24271.55954599134;
incomes(225,9)=24484.799047950735;
bref(226)=7000;
bnorm(226)=26000;
incomemean(226)=15000;
rents(226,1)=96.15507767479129;
rents(226,2)=70.26157548753334;
rents(226,3)=94.87992282814086;
rents(226,4)=121.45747119219526;
rents(226,5)=148.74229214718088;
rents(226,6)=175.19034728046788;
rents(226,7)=192.90422818671004;
rents(226,8)=197.292240318113;
rents(226,9)=199.24925495441624;
incomes(226,1)=25549.159508731464;
incomes(226,2)=26232.100287315636;
incomes(226,3)=25764.70871013845;
incomes(226,4)=25977.163683190232;
incomes(226,5)=26459.780439221548;
incomes(226,6)=26480.939492397585;
incomes(226,7)=26156.354699842293;
incomes(226,8)=26065.524743895607;
incomes(226,9)=26315.27738347301;
bref(227)=7000;
bnorm(227)=26000;
incomemean(227)=16000;
rents(227,1)=100.50275647282595;
rents(227,2)=73.44028517367809;
rents(227,3)=101.59075609959909;
rents(227,4)=134.1319836915475;
rents(227,5)=166.7219016798603;
rents(227,6)=192.34335156379262;
rents(227,7)=198.90444870661221;
rents(227,8)=200;
rents(227,9)=200;
incomes(227,1)=26819.712405068803;
incomes(227,2)=27440.36375842615;
incomes(227,3)=27392.90257212565;
incomes(227,4)=27219.059735880972;
incomes(227,5)=27891.38773054291;
incomes(227,6)=28367.725753666415;
incomes(227,7)=27306.064132712716;
incomes(227,8)=27512.728310820035;
incomes(227,9)=27542.414427059117;
bref(228)=7000;
bnorm(228)=26000;
incomemean(228)=17000;
rents(228,1)=103.1535656708428;
rents(228,2)=75.38541604640702;
rents(228,3)=107.70238476158586;
rents(228,4)=146.00637195247293;
rents(228,5)=185.83295771621127;
rents(228,6)=199.83916240645243;
rents(228,7)=200;
rents(228,8)=200;
rents(228,9)=200;
incomes(228,1)=28689.65985518716;
incomes(228,2)=28742.23465035343;
incomes(228,3)=28798.94217860629;
incomes(228,4)=28853.637992702472;
incomes(228,5)=29871.623213558258;
incomes(228,6)=29958.825754306003;
incomes(228,7)=29080.992189039567;
incomes(228,8)=28896.289040892047;
incomes(228,9)=29377.935668294413;
bref(229)=7000;
bnorm(229)=26000;
incomemean(229)=18000;
rents(229,1)=99.33195762347772;
rents(229,2)=72.58532025947424;
rents(229,3)=107.30126405599502;
rents(229,4)=149.18154329798006;
rents(229,5)=192.90130005112135;
rents(229,6)=200;
rents(229,7)=200;
rents(229,8)=200;
rents(229,9)=200;
incomes(229,1)=29131.42400531523;
incomes(229,2)=29998.260759198947;
incomes(229,3)=29768.19432775409;
incomes(229,4)=29909.577628837586;
incomes(229,5)=30931.858150783388;
incomes(229,6)=31269.533706391303;
incomes(229,7)=30486.878528356232;
incomes(229,8)=30165.66111767815;
incomes(229,9)=30624.731466407848;
bref(230)=7000;
bnorm(230)=26000;
incomemean(230)=19000;
rents(230,1)=101.52848220109811;
rents(230,2)=74.19637580482949;
rents(230,3)=115.75469291242206;
rents(230,4)=168.53200666413392;
rents(230,5)=199.981964041503;
rents(230,6)=200;
rents(230,7)=200;
rents(230,8)=200;
rents(230,9)=200;
incomes(230,1)=32112.04608397143;
incomes(230,2)=32517.445921333852;
incomes(230,3)=32206.924216760373;
incomes(230,4)=32333.11823083307;
incomes(230,5)=33193.5774867474;
incomes(230,6)=33027.9119693746;
incomes(230,7)=32645.94749929163;
incomes(230,8)=32513.28666261739;
incomes(230,9)=32954.36151324598;
bref(231)=7000;
bnorm(231)=29000;
incomemean(231)=10000;
rents(231,1)=97.61080299686415;
rents(231,2)=74.0490301413257;
rents(231,3)=81.69254261709925;
rents(231,4)=89.0038383873425;
rents(231,5)=95.11184066856569;
rents(231,6)=101.11962114437443;
rents(231,7)=106.92175853356376;
rents(231,8)=111.5747626666821;
rents(231,9)=116.33512601752844;
incomes(231,1)=19328.151200312583;
incomes(231,2)=19688.213150595297;
incomes(231,3)=19758.448452670746;
incomes(231,4)=19489.700457490977;
incomes(231,5)=19730.149949887476;
incomes(231,6)=19762.924861758816;
incomes(231,7)=19469.105947061296;
incomes(231,8)=19617.069589070543;
incomes(231,9)=19861.35708649042;
bref(232)=7000;
bnorm(232)=29000;
incomemean(232)=11000;
rents(232,1)=100.91970793938813;
rents(232,2)=76.56223019832454;
rents(232,3)=85.71544887383453;
rents(232,4)=94.27410799045269;
rents(232,5)=101.0644922640636;
rents(232,6)=108.82586586320768;
rents(232,7)=115.88027166745518;
rents(232,8)=122.46257274442151;
rents(232,9)=128.51044110618815;
incomes(232,1)=19946.252304654045;
incomes(232,2)=20383.799109294298;
incomes(232,3)=20264.583553923912;
incomes(232,4)=19720.1241256103;
incomes(232,5)=20376.13146366432;
incomes(232,6)=20427.147376242523;
incomes(232,7)=20378.508726443248;
incomes(232,8)=20464.57770792241;
incomes(232,9)=20548.625733446388;
bref(233)=7000;
bnorm(233)=29000;
incomemean(233)=12000;
rents(233,1)=99.22701374047891;
rents(233,2)=75.26873447268339;
rents(233,3)=87.078652037203;
rents(233,4)=98.5501208817231;
rents(233,5)=109.19720841208623;
rents(233,6)=120.49647708633428;
rents(233,7)=131.4206186531076;
rents(233,8)=140.8993865598715;
rents(233,9)=148.10744253245815;
incomes(233,1)=20908.79752264314;
incomes(233,2)=21498.63383680837;
incomes(233,3)=21404.169855894746;
incomes(233,4)=21217.695088905675;
incomes(233,5)=21846.573694370858;
incomes(233,6)=22128.205361402466;
incomes(233,7)=22125.29589794764;
incomes(233,8)=21838.30969544804;
incomes(233,9)=22252.28782567114;
bref(234)=7000;
bnorm(234)=29000;
incomemean(234)=13000;
rents(234,1)=100.34301333740295;
rents(234,2)=76.12132566568945;
rents(234,3)=91.1091658406246;
rents(234,4)=105.81000724314772;
rents(234,5)=120.82096722208533;
rents(234,6)=136.25820967997225;
rents(234,7)=149.37407716206948;
rents(234,8)=159.28946048441884;
rents(234,9)=169.99995339811792;
incomes(234,1)=22882.682287915904;
incomes(234,2)=22908.46806129656;
incomes(234,3)=22609.621444595425;
incomes(234,4)=22825.27257620819;
incomes(234,5)=23279.091444777936;
incomes(234,6)=22956.124431534856;
incomes(234,7)=22615.718405652977;
incomes(234,8)=23384.429882011118;
incomes(234,9)=23542.93617113265;
bref(235)=7000;
bnorm(235)=29000;
incomemean(235)=14000;
rents(235,1)=100.83609478967772;
rents(235,2)=76.4924741524423;
rents(235,3)=94.67589237260071;
rents(235,4)=113.64268492989108;
rents(235,5)=132.70674160480573;
rents(235,6)=152.16964539359157;
rents(235,7)=171.00412248072615;
rents(235,8)=182.87296036410794;
rents(235,9)=191.4172025625775;
incomes(235,1)=23849.80764397287;
incomes(235,2)=24205.84234621857;
incomes(235,3)=24144.08002007328;
incomes(235,4)=24228.194247499225;
incomes(235,5)=24900.669565631193;
incomes(235,6)=25237.439789614116;
incomes(235,7)=24095.326706282616;
incomes(235,8)=24417.148746429495;
incomes(235,9)=24638.860198558425;
bref(236)=7000;
bnorm(236)=29000;
incomemean(236)=15000;
rents(236,1)=97.47834271848681;
rents(236,2)=73.95250512211018;
rents(236,3)=95.69016069159504;
rents(236,4)=119.25621168116427;
rents(236,5)=142.0279622138575;
rents(236,6)=166.65684477970996;
rents(236,7)=188.3237254522147;
rents(236,8)=197.14432483685897;
rents(236,9)=199.44107783386036;
incomes(236,1)=25219.507605149556;
incomes(236,2)=25800.46926162377;
incomes(236,3)=25670.862409443343;
incomes(236,4)=25312.1987119366;
incomes(236,5)=26226.280264129316;
incomes(236,6)=26641.349993952274;
incomes(236,7)=26122.57510280066;
incomes(236,8)=26097.20429090599;
incomes(236,9)=26359.71417651497;
bref(237)=7000;
bnorm(237)=29000;
incomemean(237)=16000;
rents(237,1)=100.16257854093399;
rents(237,2)=75.97909369677276;
rents(237,3)=100.75170987354939;
rents(237,4)=128.6112755277113;
rents(237,5)=156.05442230674623;
rents(237,6)=183.53303815432628;
rents(237,7)=198.30702129718475;
rents(237,8)=199.85936967075705;
rents(237,9)=200;
incomes(237,1)=26146.837830976096;
incomes(237,2)=26970.896226906283;
incomes(237,3)=26938.762875217555;
incomes(237,4)=26635.791959367558;
incomes(237,5)=27203.03300837259;
incomes(237,6)=27487.401424830474;
incomes(237,7)=26942.898217859103;
incomes(237,8)=26941.700697561842;
incomes(237,9)=27222.29832713935;
bref(238)=7000;
bnorm(238)=29000;
incomemean(238)=17000;
rents(238,1)=102.25116022607658;
rents(238,2)=77.57116594303629;
rents(238,3)=106.665173084991;
rents(238,4)=140.81947366943433;
rents(238,5)=175.1086982313958;
rents(238,6)=197.9091717890605;
rents(238,7)=200;
rents(238,8)=200;
rents(238,9)=200;
incomes(238,1)=28373.95252150479;
incomes(238,2)=28683.23280310457;
incomes(238,3)=28754.474511753324;
incomes(238,4)=28324.46816476475;
incomes(238,5)=29678.435657116483;
incomes(238,6)=29991.26408016777;
incomes(238,7)=29561.709341630027;
incomes(238,8)=28897.341726488983;
incomes(238,9)=29375.677965601946;
bref(239)=7000;
bnorm(239)=29000;
incomemean(239)=18000;
rents(239,1)=98.71791482312757;
rents(239,2)=74.89216350991984;
rents(239,3)=108.7746853959992;
rents(239,4)=149.88337139334945;
rents(239,5)=190.8739024427366;
rents(239,6)=200;
rents(239,7)=200;
rents(239,8)=200;
rents(239,9)=200;
incomes(239,1)=30611.961213368897;
incomes(239,2)=31032.4512447286;
incomes(239,3)=30784.69233544128;
incomes(239,4)=30719.823917284182;
incomes(239,5)=32224.273413635343;
incomes(239,6)=31837.365986751014;
incomes(239,7)=31144.45879762722;
incomes(239,8)=31317.536582709716;
incomes(239,9)=31525.137063476122;
bref(240)=7000;
bnorm(240)=29000;
incomemean(240)=19000;
rents(240,1)=101.42529024423665;
rents(240,2)=76.94895019210759;
rents(240,3)=115.38987726875388;
rents(240,4)=163.0905024061659;
rents(240,5)=198.60729858789475;
rents(240,6)=200;
rents(240,7)=200;
rents(240,8)=200;
rents(240,9)=200;
incomes(240,1)=32063.201916415288;
incomes(240,2)=32705.015676741008;
incomes(240,3)=32311.52229140447;
incomes(240,4)=32443.60068046363;
incomes(240,5)=33548.122492031194;
incomes(240,6)=33186.43004605044;
incomes(240,7)=32789.56629630698;
incomes(240,8)=32434.404149466518;
incomes(240,9)=33288.567380152665;
bref(241)=7000;
bnorm(241)=32000;
incomemean(241)=10000;
rents(241,1)=98.87452077532463;
rents(241,2)=77.24343881404066;
rents(241,3)=83.78916589247574;
rents(241,4)=89.55068544788291;
rents(241,5)=94.93134205036527;
rents(241,6)=100.17598457082259;
rents(241,7)=104.81921972375231;
rents(241,8)=109.03485583335218;
rents(241,9)=112.58660230799678;
incomes(241,1)=18977.376783905103;
incomes(241,2)=19511.270561860136;
incomes(241,3)=19351.9114158129;
incomes(241,4)=19353.66725397406;
incomes(241,5)=19503.74190233695;
incomes(241,6)=19456.66574721131;
incomes(241,7)=19216.721799287097;
incomes(241,8)=18993.411782764233;
incomes(241,9)=19657.06842558387;
bref(242)=7000;
bnorm(242)=32000;
incomemean(242)=11000;
rents(242,1)=97.12985185431009;
rents(242,2)=75.87682435790055;
rents(242,3)=84.6956928439495;
rents(242,4)=92.03439430562993;
rents(242,5)=99.01249439210042;
rents(242,6)=105.99327745048923;
rents(242,7)=112.82259004994525;
rents(242,8)=118.13736647602114;
rents(242,9)=123.63209959409573;
incomes(242,1)=20214.808871346635;
incomes(242,2)=20640.94081012381;
incomes(242,3)=20060.299273803637;
incomes(242,4)=20068.205447266246;
incomes(242,5)=20267.72721680304;
incomes(242,6)=20462.675219706685;
incomes(242,7)=20049.159285006117;
incomes(242,8)=20372.76850766671;
incomes(242,9)=20696.859167397302;
bref(243)=7000;
bnorm(243)=32000;
incomemean(243)=12000;
rents(243,1)=97.83149382729233;
rents(243,2)=76.42732539391766;
rents(243,3)=87.62507709153041;
rents(243,4)=99.2271836108256;
rents(243,5)=109.47606145449423;
rents(243,6)=120.52559523427807;
rents(243,7)=131.41811081406652;
rents(243,8)=140.04730478970902;
rents(243,9)=147.2469279824195;
incomes(243,1)=21616.587723802586;
incomes(243,2)=21748.12862247376;
incomes(243,3)=21951.819596834805;
incomes(243,4)=21469.598932622204;
incomes(243,5)=22003.666855528216;
incomes(243,6)=22279.12434383431;
incomes(243,7)=21886.7330108788;
incomes(243,8)=22004.63586091458;
incomes(243,9)=22213.73480676216;
bref(244)=7000;
bnorm(244)=32000;
incomemean(244)=13000;
rents(244,1)=102.59252285901101;
rents(244,2)=80.15415180766745;
rents(244,3)=92.71330074119491;
rents(244,4)=104.52785407111239;
rents(244,5)=117.16260504680571;
rents(244,6)=130.55751476905326;
rents(244,7)=142.96745603202154;
rents(244,8)=153.63345710669202;
rents(244,9)=163.6766827815277;
incomes(244,1)=22155.791821118328;
incomes(244,2)=22223.797549264178;
incomes(244,3)=22012.602642442183;
incomes(244,4)=22321.224704155433;
incomes(244,5)=22987.197811534705;
incomes(244,6)=22882.492991265615;
incomes(244,7)=22597.58000925347;
incomes(244,8)=23024.00242214181;
incomes(244,9)=22840.702475328086;
bref(245)=7000;
bnorm(245)=32000;
incomemean(245)=14000;
rents(245,1)=99.95583277005122;
rents(245,2)=78.09678534453029;
rents(245,3)=94.62021168595342;
rents(245,4)=111.62584058131516;
rents(245,5)=129.0211342370163;
rents(245,6)=147.18236306383167;
rents(245,7)=163.81761012993397;
rents(245,8)=176.47447106020547;
rents(245,9)=186.04260113656903;
incomes(245,1)=23737.240963434957;
incomes(245,2)=24116.081897071348;
incomes(245,3)=24054.939922808204;
incomes(245,4)=24087.356555738836;
incomes(245,5)=24678.25811622461;
incomes(245,6)=24795.492455887164;
incomes(245,7)=24475.64874309561;
incomes(245,8)=24581.464555520866;
incomes(245,9)=24284.211845320486;
bref(246)=7000;
bnorm(246)=32000;
incomemean(246)=15000;
rents(246,1)=101.23187491963819;
rents(246,2)=79.08759142039028;
rents(246,3)=99.48198622776249;
rents(246,4)=120.2995113936035;
rents(246,5)=141.78361299597816;
rents(246,6)=163.93775424459974;
rents(246,7)=182.1574021054792;
rents(246,8)=194.09046480371504;
rents(246,9)=198.9107000249649;
incomes(246,1)=25267.54674044534;
incomes(246,2)=25760.146791231415;
incomes(246,3)=25277.986325698097;
incomes(246,4)=25476.87633913483;
incomes(246,5)=26120.377564021437;
incomes(246,6)=26008.83091826877;
incomes(246,7)=25745.55349108972;
incomes(246,8)=25974.21375011832;
incomes(246,9)=26175.70215503507;
bref(247)=7000;
bnorm(247)=32000;
incomemean(247)=16000;
rents(247,1)=100.44823733577695;
rents(247,2)=78.47198370450565;
rents(247,3)=100.68619020520575;
rents(247,4)=125.88741087983686;
rents(247,5)=150.53092197163633;
rents(247,6)=175.03714908849912;
rents(247,7)=194.8029910347103;
rents(247,8)=199.5627326922997;
rents(247,9)=199.95145001288745;
incomes(247,1)=26586.65984628039;
incomes(247,2)=26656.74161638514;
incomes(247,3)=26942.008420761023;
incomes(247,4)=26360.12788833168;
incomes(247,5)=26879.339887796967;
incomes(247,6)=27794.005178559608;
incomes(247,7)=26999.776184720406;
incomes(247,8)=27116.32264347003;
incomes(247,9)=27773.596507555692;
bref(248)=7000;
bnorm(248)=32000;
incomemean(248)=17000;
rents(248,1)=98.89855985570422;
rents(248,2)=77.26549107186842;
rents(248,3)=103.75673390382714;
rents(248,4)=134.32761318607197;
rents(248,5)=166.6703328250192;
rents(248,6)=194.49601738581174;
rents(248,7)=199.83480041204092;
rents(248,8)=200;
rents(248,9)=200;
incomes(248,1)=28201.448585531034;
incomes(248,2)=28745.88687888825;
incomes(248,3)=28765.923368314572;
incomes(248,4)=28683.302055209548;
incomes(248,5)=29545.647093928907;
incomes(248,6)=29996.235728801606;
incomes(248,7)=28936.679671037444;
incomes(248,8)=29283.20231320985;
incomes(248,9)=29606.85932603128;
bref(249)=7000;
bnorm(249)=32000;
incomemean(249)=18000;
rents(249,1)=102.25179205901537;
rents(249,2)=79.88621366415828;
rents(249,3)=110.87880180868709;
rents(249,4)=147.54739516021377;
rents(249,5)=185.3023147929181;
rents(249,6)=199.7562486734535;
rents(249,7)=200;
rents(249,8)=200;
rents(249,9)=200;
incomes(249,1)=29509.01406148557;
incomes(249,2)=30559.204658011022;
incomes(249,3)=30609.03509947273;
incomes(249,4)=30168.89706371158;
incomes(249,5)=31169.23508814932;
incomes(249,6)=31277.73687118953;
incomes(249,7)=30583.803967248085;
incomes(249,8)=30625.999243434017;
incomes(249,9)=30901.470637890892;
bref(250)=7000;
bnorm(250)=32000;
incomemean(250)=19000;
rents(250,1)=101.52614579709066;
rents(250,2)=79.32068748551785;
rents(250,3)=114.29462737435796;
rents(250,4)=156.8169074318507;
rents(250,5)=194.00495671599066;
rents(250,6)=200;
rents(250,7)=200;
rents(250,8)=200;
rents(250,9)=200;
incomes(250,1)=31850.714285869668;
incomes(250,2)=32409.527358748925;
incomes(250,3)=32322.23979657417;
incomes(250,4)=31988.41766258549;
incomes(250,5)=33369.85408953456;
incomes(250,6)=33499.8916719315;
incomes(250,7)=32470.82793490118;
incomes(250,8)=32722.290585916282;
incomes(250,9)=33316.73100515997;
bref(251)=7000;
bnorm(251)=35000;
incomemean(251)=10000;
rents(251,1)=98.512326397451;
rents(251,2)=78.81440102461062;
rents(251,3)=84.7794355758619;
rents(251,4)=89.79465740998506;
rents(251,5)=94.13473782631938;
rents(251,6)=98.34714621435671;
rents(251,7)=102.5213749263037;
rents(251,8)=105.66826064619796;
rents(251,9)=108.78280451813055;
incomes(251,1)=19305.543395779066;
incomes(251,2)=19554.544613882532;
incomes(251,3)=19305.68367911781;
incomes(251,4)=19102.852735928853;
incomes(251,5)=19222.125595824364;
incomes(251,6)=19362.779434959513;
incomes(251,7)=19056.294625966624;
incomes(251,8)=18983.34479130115;
incomes(251,9)=19556.41016284118;
bref(252)=7000;
bnorm(252)=35000;
incomemean(252)=11000;
rents(252,1)=99.30836118731298;
rents(252,2)=79.44615174547158;
rents(252,3)=87.09276695904148;
rents(252,4)=93.89624947712048;
rents(252,5)=100.25863607669807;
rents(252,6)=106.69728144035263;
rents(252,7)=112.81123806110057;
rents(252,8)=117.95858647503344;
rents(252,9)=123.49025772804936;
incomes(252,1)=20187.24810523898;
incomes(252,2)=20471.715822990573;
incomes(252,3)=20217.5259561408;
incomes(252,4)=20189.45515325268;
incomes(252,5)=20387.97229631655;
incomes(252,6)=20672.665796605015;
incomes(252,7)=20242.226401913293;
incomes(252,8)=20669.032646843094;
incomes(252,9)=20970.2401709132;
bref(253)=7000;
bnorm(253)=35000;
incomemean(253)=12000;
rents(253,1)=101.64691800070878;
rents(253,2)=81.31827752877668;
rents(253,3)=91.09335757596207;
rents(253,4)=100.21542508159735;
rents(253,5)=109.09926582850645;
rents(253,6)=118.51711856814114;
rents(253,7)=127.47120266051904;
rents(253,8)=134.37747071165083;
rents(253,9)=140.21593065629636;
incomes(253,1)=21209.497172367886;
incomes(253,2)=21647.24284387305;
incomes(253,3)=21369.84122550015;
incomes(253,4)=21426.57492528282;
incomes(253,5)=21810.833747868233;
incomes(253,6)=21957.784327951897;
incomes(253,7)=21542.658322906413;
incomes(253,8)=21516.970392014126;
incomes(253,9)=22011.038962966377;
bref(254)=7000;
bnorm(254)=35000;
incomemean(254)=13000;
rents(254,1)=98.47962766063904;
rents(254,2)=78.78642136553606;
rents(254,3)=90.36742091490677;
rents(254,4)=102.47203956945052;
rents(254,5)=114.11191307106529;
rents(254,6)=126.45012855353015;
rents(254,7)=138.94609628947165;
rents(254,8)=148.32109944102584;
rents(254,9)=156.6457325739916;
incomes(254,1)=22223.447961145757;
incomes(254,2)=22269.948942245144;
incomes(254,3)=22518.548823330126;
incomes(254,4)=22325.248885290064;
incomes(254,5)=22989.13412806337;
incomes(254,6)=23321.755347387607;
incomes(254,7)=22467.98486245488;
incomes(254,8)=22627.86895552024;
incomes(254,9)=22843.653882538965;
bref(255)=7000;
bnorm(255)=35000;
incomemean(255)=14000;
rents(255,1)=100.0005828978039;
rents(255,2)=80.00237400896334;
rents(255,3)=95.93744487573495;
rents(255,4)=112.0282967159326;
rents(255,5)=128.96410872628095;
rents(255,6)=146.5229162081445;
rents(255,7)=163.29195118048386;
rents(255,8)=175.90536779182938;
rents(255,9)=185.79004541906747;
incomes(255,1)=23839.783894188546;
incomes(255,2)=24511.465712007866;
incomes(255,3)=24233.938245385896;
incomes(255,4)=24468.39654965433;
incomes(255,5)=25095.813968456932;
incomes(255,6)=25252.53920836996;
incomes(255,7)=24621.51362890944;
incomes(255,8)=24712.968999725566;
incomes(255,9)=24923.82615090411;
bref(256)=7000;
bnorm(256)=35000;
incomemean(256)=15000;
rents(256,1)=98.52520413051596;
rents(256,2)=78.82375714791382;
rents(256,3)=97.41234106099135;
rents(256,4)=117.34924226517907;
rents(256,5)=138.3191893733273;
rents(256,6)=159.6364820364242;
rents(256,7)=177.87733356507619;
rents(256,8)=192.1702265210269;
rents(256,9)=198.36903326100872;
incomes(256,1)=25641.3092567792;
incomes(256,2)=25776.275931218806;
incomes(256,3)=25784.98032009934;
incomes(256,4)=25945.36989522031;
incomes(256,5)=26350.966048229915;
incomes(256,6)=26020.65867194346;
incomes(256,7)=26014.37495442286;
incomes(256,8)=25630.847814277848;
incomes(256,9)=26525.882656544;
bref(257)=7000;
bnorm(257)=35000;
incomemean(257)=16000;
rents(257,1)=100.32270525206847;
rents(257,2)=80.25389757490865;
rents(257,3)=101.58499653285145;
rents(257,4)=124.86211536692085;
rents(257,5)=148.33287213546885;
rents(257,6)=172.33704694596594;
rents(257,7)=193.05545280050694;
rents(257,8)=199.63089994417922;
rents(257,9)=200;
incomes(257,1)=26533.11868151041;
incomes(257,2)=27121.7334019095;
incomes(257,3)=27141.244125988418;
incomes(257,4)=26942.18282861176;
incomes(257,5)=27471.2428001884;
incomes(257,6)=28136.278883038485;
incomes(257,7)=28091.49844892442;
incomes(257,8)=27878.362624376132;
incomes(257,9)=27929.852407423376;
bref(258)=7000;
bnorm(258)=35000;
incomemean(258)=17000;
rents(258,1)=100.48660378754576;
rents(258,2)=80.39121742369974;
rents(258,3)=105.24414073368555;
rents(258,4)=132.84277893716674;
rents(258,5)=160.3344071271384;
rents(258,6)=186.8378058524215;
rents(258,7)=198.72351987274598;
rents(258,8)=200;
rents(258,9)=200;
incomes(258,1)=28205.375106297743;
incomes(258,2)=28785.70102190897;
incomes(258,3)=28649.485040338197;
incomes(258,4)=28205.388308215435;
incomes(258,5)=29038.11323491398;
incomes(258,6)=29451.94664854241;
incomes(258,7)=29205.03979638714;
incomes(258,8)=29265.58788923642;
incomes(258,9)=29565.378905429174;
bref(259)=7000;
bnorm(259)=35000;
incomemean(259)=18000;
rents(259,1)=100.15925693753607;
rents(259,2)=80.1256188645376;
rents(259,3)=107.5267551813815;
rents(259,4)=139.25069831569712;
rents(259,5)=172.22340656516988;
rents(259,6)=198.5821622724355;
rents(259,7)=200;
rents(259,8)=200;
rents(259,9)=200;
incomes(259,1)=29388.150370379535;
incomes(259,2)=30033.26573842471;
incomes(259,3)=30009.463081757534;
incomes(259,4)=29758.08115924867;
incomes(259,5)=30845.95086268211;
incomes(259,6)=31651.264861480933;
incomes(259,7)=30525.08389240069;
incomes(259,8)=29786.121947907064;
incomes(259,9)=30756.37693637429;
bref(260)=7000;
bnorm(260)=35000;
incomemean(260)=19000;
rents(260,1)=100.54219423638182;
rents(260,2)=80.429556232958;
rents(260,3)=110.73535902520112;
rents(260,4)=146.9325581320006;
rents(260,5)=185.30392988674072;
rents(260,6)=200;
rents(260,7)=200;
rents(260,8)=200;
rents(260,9)=200;
incomes(260,1)=31087.291637296;
incomes(260,2)=31456.970122052655;
incomes(260,3)=31435.26549030846;
incomes(260,4)=31303.701009295775;
incomes(260,5)=32503.731836635565;
incomes(260,6)=32819.14028520039;
incomes(260,7)=31461.75022140609;
incomes(260,8)=32616.89216600829;
incomes(260,9)=32482.570686097923;
bref(261)=7000;
bnorm(261)=38000;
incomemean(261)=10000;
rents(261,1)=97.39083824976954;
rents(261,2)=79.44718159021173;
rents(261,3)=85.41148454819228;
rents(261,4)=90.66849820195894;
rents(261,5)=95.74645719384175;
rents(261,6)=100.58859844250415;
rents(261,7)=105.4009183403504;
rents(261,8)=108.96602960624288;
rents(261,9)=112.43729881544508;
incomes(261,1)=19650.310092871412;
incomes(261,2)=19977.73169226122;
incomes(261,3)=19718.58061470553;
incomes(261,4)=19765.513882552976;
incomes(261,5)=19825.44901265243;
incomes(261,6)=19944.158474558895;
incomes(261,7)=19461.49940434833;
incomes(261,8)=19469.719856425214;
incomes(261,9)=19914.129486985697;
bref(262)=7000;
bnorm(262)=38000;
incomemean(262)=11000;
rents(262,1)=99.765350191302;
rents(262,2)=81.39169830101747;
rents(262,3)=88.37898789222352;
rents(262,4)=94.83985737272153;
rents(262,5)=100.60417149855597;
rents(262,6)=106.73564853852197;
rents(262,7)=112.97545450338191;
rents(262,8)=117.80459904220677;
rents(262,9)=122.26686846284584;
incomes(262,1)=19962.35719865876;
incomes(262,2)=20473.223732848062;
incomes(262,3)=20370.11780593941;
incomes(262,4)=20064.569243616108;
incomes(262,5)=20564.084768815854;
incomes(262,6)=20704.121443697455;
incomes(262,7)=20183.113158606502;
incomes(262,8)=20252.3104226556;
incomes(262,9)=20779.413589874814;
bref(263)=7000;
bnorm(263)=38000;
incomemean(263)=12000;
rents(263,1)=100.03571685675597;
rents(263,2)=81.61141729997205;
rents(263,3)=90.76638511881424;
rents(263,4)=100.11495450972994;
rents(263,5)=108.17922639576668;
rents(263,6)=116.83003370728471;
rents(263,7)=125.42926004657855;
rents(263,8)=133.7123649085613;
rents(263,9)=140.8396477518719;
incomes(263,1)=21335.64816337381;
incomes(263,2)=21522.522421796075;
incomes(263,3)=21561.213705738428;
incomes(263,4)=21046.311019547113;
incomes(263,5)=21679.181587213072;
incomes(263,6)=21907.900186561204;
incomes(263,7)=21991.221336361545;
incomes(263,8)=21722.488383219414;
incomes(263,9)=21825.080698818434;
bref(264)=7000;
bnorm(264)=38000;
incomemean(264)=13000;
rents(264,1)=100.82152721891482;
rents(264,2)=82.25259475529013;
rents(264,3)=93.63642675051382;
rents(264,4)=104.74385125744112;
rents(264,5)=115.23331765347143;
rents(264,6)=126.26953268245424;
rents(264,7)=137.52611980430584;
rents(264,8)=146.98905085783926;
rents(264,9)=155.2551093611227;
incomes(264,1)=22323.424043578194;
incomes(264,2)=22812.731908366586;
incomes(264,3)=22613.070078876503;
incomes(264,4)=22427.6953886317;
incomes(264,5)=22994.727128943345;
incomes(264,6)=23201.47613328232;
incomes(264,7)=22815.88245975617;
incomes(264,8)=22914.55666458732;
incomes(264,9)=23637.25448915763;
bref(265)=7000;
bnorm(265)=38000;
incomemean(265)=14000;
rents(265,1)=99.40069490063253;
rents(265,2)=81.08973640693897;
rents(265,3)=96.40272173811283;
rents(265,4)=112.14529112487106;
rents(265,5)=127.76610577013983;
rents(265,6)=143.54504656702443;
rents(265,7)=158.1745205207658;
rents(265,8)=170.5844171670934;
rents(265,9)=181.36170511980177;
incomes(265,1)=23777.205195820938;
incomes(265,2)=24777.386249580362;
incomes(265,3)=24702.50773063613;
incomes(265,4)=24565.946365389937;
incomes(265,5)=24905.1891895318;
incomes(265,6)=25022.498168805374;
incomes(265,7)=24705.90162050534;
incomes(265,8)=24871.976032501;
incomes(265,9)=25108.256001196165;
bref(266)=7000;
bnorm(266)=38000;
incomemean(266)=15000;
rents(266,1)=99.43601573220103;
rents(266,2)=81.11944555764867;
rents(266,3)=98.20744828468169;
rents(266,4)=116.25056039635444;
rents(266,5)=133.30533152724004;
rents(266,6)=152.48120382739788;
rents(266,7)=171.64997910299024;
rents(266,8)=187.11230506289817;
rents(266,9)=195.39051760354172;
incomes(266,1)=25104.70163618642;
incomes(266,2)=25586.853431335276;
incomes(266,3)=25646.19362162376;
incomes(266,4)=25084.59673989966;
incomes(266,5)=26042.7677884813;
incomes(266,6)=26402.188290346545;
incomes(266,7)=25890.66461907534;
incomes(266,8)=26077.89331764379;
incomes(266,9)=26440.227314938704;
bref(267)=7000;
bnorm(267)=38000;
incomemean(267)=16000;
rents(267,1)=99.00824311567867;
rents(267,2)=80.76980885235156;
rents(267,3)=100.31848863982137;
rents(267,4)=121.80126893814574;
rents(267,5)=144.17058856329842;
rents(267,6)=167.32852796216545;
rents(267,7)=187.10320929573882;
rents(267,8)=196.0704825848673;
rents(267,9)=199.82994066608975;
incomes(267,1)=26956.538045442845;
incomes(267,2)=26955.83443668599;
incomes(267,3)=27068.415394927877;
incomes(267,4)=27096.31200888032;
incomes(267,5)=27788.11570474658;
incomes(267,6)=28092.042093909044;
incomes(267,7)=27731.763078788143;
incomes(267,8)=27599.332786581053;
incomes(267,9)=27965.40969631777;
bref(268)=7000;
bnorm(268)=38000;
incomemean(268)=17000;
rents(268,1)=100.11385235891886;
rents(268,2)=81.66594656070339;
rents(268,3)=105.58005435632981;
rents(268,4)=132.06018814764397;
rents(268,5)=159.68511048061245;
rents(268,6)=186.79806767963746;
rents(268,7)=199.28900200553971;
rents(268,8)=200;
rents(268,9)=200;
incomes(268,1)=28683.1720108253;
incomes(268,2)=29211.634162369275;
incomes(268,3)=29003.679875228943;
incomes(268,4)=28961.089719728436;
incomes(268,5)=29297.029952215067;
incomes(268,6)=29842.491787788167;
incomes(268,7)=29473.881719028523;
incomes(268,8)=30024.377561510915;
incomes(268,9)=29722.36829594125;
bref(269)=7000;
bnorm(269)=38000;
incomemean(269)=18000;
rents(269,1)=100.23007302037135;
rents(269,2)=81.76552982188502;
rents(269,3)=107.81104445440396;
rents(269,4)=137.06418304189273;
rents(269,5)=167.25974812309386;
rents(269,6)=194.63097049333962;
rents(269,7)=199.75242635490662;
rents(269,8)=200;
rents(269,9)=200;
incomes(269,1)=29696.527705936547;
incomes(269,2)=30341.117123063734;
incomes(269,3)=30070.64506761735;
incomes(269,4)=29707.06881549681;
incomes(269,5)=30639.918727771677;
incomes(269,6)=31113.14214210324;
incomes(269,7)=30772.825521506773;
incomes(269,8)=30765.325544514046;
incomes(269,9)=30762.57255655976;
bref(270)=7000;
bnorm(270)=38000;
incomemean(270)=19000;
rents(270,1)=100.18299861562497;
rents(270,2)=81.7269890295654;
rents(270,3)=112.30666658672905;
rents(270,4)=147.56927734031868;
rents(270,5)=184.2533245955628;
rents(270,6)=199.6187071073021;
rents(270,7)=200;
rents(270,8)=200;
rents(270,9)=200;
incomes(270,1)=31781.992336074032;
incomes(270,2)=32704.04420080431;
incomes(270,3)=32142.2545043576;
incomes(270,4)=31951.332358862903;
incomes(270,5)=33125.37268424205;
incomes(270,6)=33257.78025317107;
incomes(270,7)=32351.439194996958;
incomes(270,8)=32275.99106461638;
incomes(270,9)=32565.470605738225;
bref(271)=7000;
bnorm(271)=41000;
incomemean(271)=10000;
rents(271,1)=99.08655224085528;
rents(271,2)=82.16963623939505;
rents(271,3)=86.84512077953465;
rents(271,4)=91.13434383303039;
rents(271,5)=94.83650148297339;
rents(271,6)=98.9790562035584;
rents(271,7)=102.51266620124026;
rents(271,8)=105.66665827123606;
rents(271,9)=108.60705472888849;
incomes(271,1)=19434.34557800794;
incomes(271,2)=19571.457035605763;
incomes(271,3)=19468.912410066278;
incomes(271,4)=19193.740292032213;
incomes(271,5)=19623.22123494151;
incomes(271,6)=19362.050368695956;
incomes(271,7)=19303.13874981546;
incomes(271,8)=19378.421940061304;
incomes(271,9)=19866.185657361424;
bref(272)=7000;
bnorm(272)=41000;
incomemean(272)=11000;
rents(272,1)=95.7874477438578;
rents(272,2)=79.42843606411685;
rents(272,3)=86.01952649980385;
rents(272,4)=92.36893330934492;
rents(272,5)=97.80610778249977;
rents(272,6)=103.20599878908328;
rents(272,7)=108.73857526092091;
rents(272,8)=113.40404318497009;
rents(272,9)=118.17288444627194;
incomes(272,1)=20400.29134190197;
incomes(272,2)=20547.011878560515;
incomes(272,3)=20530.946065356256;
incomes(272,4)=20166.789989801175;
incomes(272,5)=20289.743628586326;
incomes(272,6)=20472.36138773907;
incomes(272,7)=20159.82232465756;
incomes(272,8)=20313.620782247726;
incomes(272,9)=20502.647399681842;
bref(273)=7000;
bnorm(273)=41000;
incomemean(273)=12000;
rents(273,1)=97.15652121727902;
rents(273,2)=80.56454008865526;
rents(273,3)=89.67162525757762;
rents(273,4)=98.62519816286857;
rents(273,5)=106.27007105193034;
rents(273,6)=114.42319248377285;
rents(273,7)=122.42989071749575;
rents(273,8)=128.42119599878868;
rents(273,9)=133.73099641660562;
incomes(273,1)=21529.671794204187;
incomes(273,2)=22056.84685245373;
incomes(273,3)=21957.900435064104;
incomes(273,4)=21319.568440697545;
incomes(273,5)=21903.475954919686;
incomes(273,6)=22091.889455482233;
incomes(273,7)=21468.93439264777;
incomes(273,8)=21450.300975780472;
incomes(273,9)=21805.538935783727;
bref(274)=7000;
bnorm(274)=41000;
incomemean(274)=13000;
rents(274,1)=99.70893883028377;
rents(274,2)=82.68603830430149;
rents(274,3)=93.91499053303917;
rents(274,4)=104.80756535515417;
rents(274,5)=114.95419293374744;
rents(274,6)=126.31589993253091;
rents(274,7)=136.84667243134072;
rents(274,8)=146.73619154405486;
rents(274,9)=155.57151080347353;
incomes(274,1)=22437.910675935957;
incomes(274,2)=23001.303415108203;
incomes(274,3)=22785.42851039538;
incomes(274,4)=22565.37154863231;
incomes(274,5)=23420.37902675725;
incomes(274,6)=23335.460417775786;
incomes(274,7)=23364.14788147559;
incomes(274,8)=23273.834820882923;
incomes(274,9)=23530.314073217254;
bref(275)=7000;
bnorm(275)=41000;
incomemean(275)=14000;
rents(275,1)=99.77352837960828;
rents(275,2)=82.74027665406314;
rents(275,3)=95.20008507521656;
rents(275,4)=107.83738136186396;
rents(275,5)=120.47613567327554;
rents(275,6)=133.2979249792986;
rents(275,7)=145.50890305131554;
rents(275,8)=156.1440909753691;
rents(275,9)=165.20575956309682;
incomes(275,1)=23412.668735485102;
incomes(275,2)=23708.357830015895;
incomes(275,3)=23698.213976199095;
incomes(275,4)=23540.41050182679;
incomes(275,5)=23880.815135655637;
incomes(275,6)=24174.780384919235;
incomes(275,7)=23704.516130086417;
incomes(275,8)=23759.697189269787;
incomes(275,9)=24397.17056527563;
bref(276)=7000;
bnorm(276)=41000;
incomemean(276)=15000;
rents(276,1)=101.64307087599488;
rents(276,2)=84.29554087739713;
rents(276,3)=100.87739793884553;
rents(276,4)=118.54597664499539;
rents(276,5)=136.6505458931489;
rents(276,6)=154.60348290765555;
rents(276,7)=172.30909645379793;
rents(276,8)=185.8170387155843;
rents(276,9)=193.90293417795507;
incomes(276,1)=25384.684820883256;
incomes(276,2)=26003.637726145847;
incomes(276,3)=26044.79867778028;
incomes(276,4)=26100.78112005358;
incomes(276,5)=26317.827980674476;
incomes(276,6)=26735.358190111692;
incomes(276,7)=25918.12685400167;
incomes(276,8)=26114.315693579047;
incomes(276,9)=26905.355345788226;
bref(277)=7000;
bnorm(277)=41000;
incomemean(277)=16000;
rents(277,1)=101.21772252271582;
rents(277,2)=83.9361234732;
rents(277,3)=103.15519936878047;
rents(277,4)=124.56572921625045;
rents(277,5)=145.43707246695888;
rents(277,6)=167.77417171803347;
rents(277,7)=188.1911787253352;
rents(277,8)=198.03380034344292;
rents(277,9)=199.92357512076808;
incomes(277,1)=27122.18544092649;
incomes(277,2)=27391.773106476387;
incomes(277,3)=27670.446070258942;
incomes(277,4)=27076.31835653841;
incomes(277,5)=27850.871173618518;
incomes(277,6)=27945.552057216;
incomes(277,7)=27834.67349842582;
incomes(277,8)=28105.462599662715;
incomes(277,9)=28317.4514502935;
bref(278)=7000;
bnorm(278)=41000;
incomemean(278)=17000;
rents(278,1)=98.43406363441943;
rents(278,2)=81.62541977946175;
rents(278,3)=102.88393681796741;
rents(278,4)=126.66270404789857;
rents(278,5)=150.19967997220408;
rents(278,6)=175.62134088735124;
rents(278,7)=194.89019779970906;
rents(278,8)=199.69355026892114;
rents(278,9)=200;
incomes(278,1)=27976.777744808296;
incomes(278,2)=28763.106975409377;
incomes(278,3)=28801.84302220619;
incomes(278,4)=28209.749404794242;
incomes(278,5)=29139.12532255996;
incomes(278,6)=29355.588362062095;
incomes(278,7)=29165.117421311093;
incomes(278,8)=28956.355261596185;
incomes(278,9)=29569.62487944768;
bref(279)=7000;
bnorm(279)=41000;
incomemean(279)=18000;
rents(279,1)=100.54178164820588;
rents(279,2)=83.37772177692396;
rents(279,3)=106.80172407991809;
rents(279,4)=132.94685682030138;
rents(279,5)=161.1033142996775;
rents(279,6)=188.8090361399191;
rents(279,7)=199.33038298584472;
rents(279,8)=199.99988958512225;
rents(279,9)=200;
incomes(279,1)=29344.811283326617;
incomes(279,2)=29789.4993415022;
incomes(279,3)=29693.71967532656;
incomes(279,4)=29929.16945827627;
incomes(279,5)=30523.956316361928;
incomes(279,6)=31136.264923320086;
incomes(279,7)=30492.47604526327;
incomes(279,8)=30364.539876226423;
incomes(279,9)=31163.075094579093;
bref(280)=7000;
bnorm(280)=41000;
incomemean(280)=19000;
rents(280,1)=99.83414598971949;
rents(280,2)=82.79220749339487;
rents(280,3)=110.50399985515504;
rents(280,4)=142.6225899207044;
rents(280,5)=177.93690963236352;
rents(280,6)=198.57316172356593;
rents(280,7)=200;
rents(280,8)=200;
rents(280,9)=200;
incomes(280,1)=31391.232418739823;
incomes(280,2)=32035.461786740107;
incomes(280,3)=31904.11004754954;
incomes(280,4)=32124.524705615626;
incomes(280,5)=33000.562284591055;
incomes(280,6)=33228.36322735743;
incomes(280,7)=32706.180313582132;
incomes(280,8)=32482.885544598874;
incomes(280,9)=32832.22993606942;
bref(281)=7000;
bnorm(281)=44000;
incomemean(281)=10000;
rents(281,1)=99.15981882063528;
rents(281,2)=83.38039739104497;
rents(281,3)=87.59817157795678;
rents(281,4)=91.49847145749098;
rents(281,5)=94.80790557407983;
rents(281,6)=98.52585182990936;
rents(281,7)=101.94659684802407;
rents(281,8)=104.65159442408898;
rents(281,9)=107.11381237369395;
incomes(281,1)=19108.412837903597;
incomes(281,2)=19325.609772606276;
incomes(281,3)=19277.27640959481;
incomes(281,4)=19087.003670289967;
incomes(281,5)=19408.16230780747;
incomes(281,6)=19307.75787952635;
incomes(281,7)=18981.373827176845;
incomes(281,8)=18880.42173363028;
incomes(281,9)=19145.471353999557;
bref(282)=7000;
bnorm(282)=44000;
incomemean(282)=11000;
rents(282,1)=100.17010525711707;
rents(282,2)=84.23389275956451;
rents(282,3)=90.08054574359794;
rents(282,4)=95.60800002140095;
rents(282,5)=100.43614869385611;
rents(282,6)=105.05506918562538;
rents(282,7)=109.6408284617412;
rents(282,8)=113.65303933080669;
rents(282,9)=117.56425831284025;
incomes(282,1)=19970.27293675841;
incomes(282,2)=20357.579780575496;
incomes(282,3)=20396.455609232376;
incomes(282,4)=20084.79826036845;
incomes(282,5)=20113.089627628313;
incomes(282,6)=20182.49470859875;
incomes(282,7)=20002.847257308957;
incomes(282,8)=19977.030937768726;
incomes(282,9)=19949.595321784756;
bref(283)=7000;
bnorm(283)=44000;
incomemean(283)=12000;
rents(283,1)=101.43545425290648;
rents(283,2)=85.30110603443231;
rents(283,3)=93.11298474831217;
rents(283,4)=100.66764853661557;
rents(283,5)=108.0623538565517;
rents(283,6)=115.99942883056833;
rents(283,7)=123.71371744685177;
rents(283,8)=129.73973557463165;
rents(283,9)=136.18251321229295;
incomes(283,1)=21059.615464671675;
incomes(283,2)=21419.2828223413;
incomes(283,3)=21438.67027357849;
incomes(283,4)=21369.937463459475;
incomes(283,5)=21700.883553761636;
incomes(283,6)=21910.497568517894;
incomes(283,7)=21258.07188559159;
incomes(283,8)=21736.392914571254;
incomes(283,9)=22070.48339434545;
bref(284)=7000;
bnorm(284)=44000;
incomemean(284)=13000;
rents(284,1)=100.23944671559902;
rents(284,2)=84.2978598872888;
rents(284,3)=95.18997597817017;
rents(284,4)=105.63980732898241;
rents(284,5)=116.31787638996268;
rents(284,6)=127.80906568506514;
rents(284,7)=139.27375207519262;
rents(284,8)=148.08962234409248;
rents(284,9)=156.4746773822729;
incomes(284,1)=23122.409782141913;
incomes(284,2)=23375.87009078722;
incomes(284,3)=23201.96017677575;
incomes(284,4)=23189.808996484582;
incomes(284,5)=23815.149499238312;
incomes(284,6)=24051.97046950882;
incomes(284,7)=23229.19439929284;
incomes(284,8)=23504.26625023412;
incomes(284,9)=23605.13959582277;
bref(285)=7000;
bnorm(285)=44000;
incomemean(285)=14000;
rents(285,1)=101.7286971640435;
rents(285,2)=85.55150191275554;
rents(285,3)=97.08712800347946;
rents(285,4)=109.0106526134817;
rents(285,5)=120.17109822357352;
rents(285,6)=132.1795597977848;
rents(285,7)=144.31284674423384;
rents(285,8)=154.07698950817385;
rents(285,9)=162.976131103708;
incomes(285,1)=23119.508719903857;
incomes(285,2)=23714.251690221987;
incomes(285,3)=23784.83834700381;
incomes(285,4)=23402.90084286265;
incomes(285,5)=24140.49243369103;
incomes(285,6)=24363.76575531623;
incomes(285,7)=23758.43605123651;
incomes(285,8)=23762.441469628568;
incomes(285,9)=24756.574474772377;
bref(286)=7000;
bnorm(286)=44000;
incomemean(286)=15000;
rents(286,1)=99.60756327957547;
rents(286,2)=83.76205812010662;
rents(286,3)=98.0692671454769;
rents(286,4)=112.49550485983504;
rents(286,5)=126.57636063017519;
rents(286,6)=142.50033157641568;
rents(286,7)=157.7702972647075;
rents(286,8)=171.28515430335912;
rents(286,9)=183.11916084091413;
incomes(286,1)=25300.51354716082;
incomes(286,2)=25242.769357716814;
incomes(286,3)=24960.340463009583;
incomes(286,4)=24805.14768663209;
incomes(286,5)=25746.047963186735;
incomes(286,6)=25931.42348286855;
incomes(286,7)=25482.94508047096;
incomes(286,8)=25522.54782387843;
incomes(286,9)=26172.019114388488;
bref(287)=7000;
bnorm(287)=44000;
incomemean(287)=16000;
rents(287,1)=99.3588834709253;
rents(287,2)=83.55046677099115;
rents(287,3)=99.94516170650891;
rents(287,4)=117.7060261857338;
rents(287,5)=135.5240553178702;
rents(287,6)=154.57212110680769;
rents(287,7)=172.95068339052563;
rents(287,8)=188.7400670476556;
rents(287,9)=197.17349321521309;
incomes(287,1)=26434.562326266238;
incomes(287,2)=26442.831624501134;
incomes(287,3)=26619.281779206995;
incomes(287,4)=26445.473516697413;
incomes(287,5)=27057.449146369898;
incomes(287,6)=27026.40727034569;
incomes(287,7)=27045.463204482006;
incomes(287,8)=27115.222127285862;
incomes(287,9)=27400.14805647486;
bref(288)=7000;
bnorm(288)=44000;
incomemean(288)=17000;
rents(288,1)=100.33905748276982;
rents(288,2)=84.3693757601875;
rents(288,3)=104.96692796120803;
rents(288,4)=127.53445399761716;
rents(288,5)=151.61233678519304;
rents(288,6)=176.65033340755915;
rents(288,7)=192.012644541712;
rents(288,8)=198.56858256739525;
rents(288,9)=200;
incomes(288,1)=28845.69500290637;
incomes(288,2)=28912.21445743583;
incomes(288,3)=28839.877651654915;
incomes(288,4)=28986.042892071564;
incomes(288,5)=29519.730063674066;
incomes(288,6)=29603.50968604515;
incomes(288,7)=29066.14350863624;
incomes(288,8)=28824.361905288075;
incomes(288,9)=29384.26073403691;
bref(289)=7000;
bnorm(289)=44000;
incomemean(289)=18000;
rents(289,1)=98.23926818065621;
rents(289,2)=82.60488175926501;
rents(289,3)=105.36215484210574;
rents(289,4)=131.09330574796368;
rents(289,5)=158.94760515108976;
rents(289,6)=186.84223560748666;
rents(289,7)=199.2340690476916;
rents(289,8)=200;
rents(289,9)=200;
incomes(289,1)=30198.267011933338;
incomes(289,2)=30448.08955921965;
incomes(289,3)=30333.550721641477;
incomes(289,4)=30510.413755986745;
incomes(289,5)=30895.408673573576;
incomes(289,6)=31480.485031568882;
incomes(289,7)=31562.571581824184;
incomes(289,8)=30870.884209157724;
incomes(289,9)=31374.162893044828;
bref(290)=7000;
bnorm(290)=44000;
incomemean(290)=19000;
rents(290,1)=100.79283855156517;
rents(290,2)=84.75163181950833;
rents(290,3)=110.4837448734264;
rents(290,4)=139.1673137481647;
rents(290,5)=169.79102606033456;
rents(290,6)=196.75905803225484;
rents(290,7)=200;
rents(290,8)=200;
rents(290,9)=200;
incomes(290,1)=31484.05004362285;
incomes(290,2)=31967.40239443912;
incomes(290,3)=31486.772143784754;
incomes(290,4)=31432.032436249756;
incomes(290,5)=32024.73076210241;
incomes(290,6)=32708.970027215888;
incomes(290,7)=32283.93471062757;
incomes(290,8)=32105.401529233794;
incomes(290,9)=32248.67180329469;
bref(291)=7000;
bnorm(291)=47000;
incomemean(291)=10000;
rents(291,1)=98.91767184920172;
rents(291,2)=84.18474861026486;
rents(291,3)=88.08857271982437;
rents(291,4)=91.4248906382181;
rents(291,5)=94.8610228578083;
rents(291,6)=98.08570919725507;
rents(291,7)=101.10092615222615;
rents(291,8)=103.46367204627704;
rents(291,9)=105.3659051713077;
incomes(291,1)=19019.275559143913;
incomes(291,2)=19307.257443260034;
incomes(291,3)=19133.864202595778;
incomes(291,4)=19279.870129903244;
incomes(291,5)=19225.35927708422;
incomes(291,6)=19088.17529194582;
incomes(291,7)=18819.95208705856;
incomes(291,8)=18637.550791284488;
incomes(291,9)=18696.34373419695;
bref(292)=7000;
bnorm(292)=47000;
incomemean(292)=11000;
rents(292,1)=101.93916144801155;
rents(292,2)=86.75864780481797;
rents(292,3)=91.76174318221564;
rents(292,4)=96.76844243648223;
rents(292,5)=101.03593269529155;
rents(292,6)=105.61598726652605;
rents(292,7)=110.18408172886589;
rents(292,8)=113.96241677727024;
rents(292,9)=117.62524576923838;
incomes(292,1)=20058.06540635077;
incomes(292,2)=20105.041536122215;
incomes(292,3)=20316.008887060143;
incomes(292,4)=19881.191385608057;
incomes(292,5)=20279.46733428824;
incomes(292,6)=20466.663558849687;
incomes(292,7)=19996.177186829937;
incomes(292,8)=20042.99984789808;
incomes(292,9)=20180.260083917667;
bref(293)=7000;
bnorm(293)=47000;
incomemean(293)=12000;
rents(293,1)=101.46189093882919;
rents(293,2)=86.34673737420849;
rents(293,3)=93.51779668615278;
rents(293,4)=100.39993169386607;
rents(293,5)=106.85338363079855;
rents(293,6)=113.80599852486662;
rents(293,7)=120.82550185241209;
rents(293,8)=126.81920701086703;
rents(293,9)=132.1115378376317;
incomes(293,1)=21070.412404567578;
incomes(293,2)=21558.124995872553;
incomes(293,3)=21468.117247053793;
incomes(293,4)=21227.461664426264;
incomes(293,5)=21758.090303147215;
incomes(293,6)=22032.869488367225;
incomes(293,7)=21647.335107350107;
incomes(293,8)=21477.56435033322;
incomes(293,9)=21994.6494687335;
bref(294)=7000;
bnorm(294)=47000;
incomemean(294)=13000;
rents(294,1)=99.92679674053235;
rents(294,2)=85.03852261395339;
rents(294,3)=94.1255685856919;
rents(294,4)=103.55104250205031;
rents(294,5)=112.32522390783852;
rents(294,6)=121.79122088498335;
rents(294,7)=131.01535003589967;
rents(294,8)=139.10878031397112;
rents(294,9)=147.21120951440432;
incomes(294,1)=22607.843578280557;
incomes(294,2)=22729.980633563777;
incomes(294,3)=22882.83816770973;
incomes(294,4)=22657.318025609442;
incomes(294,5)=23225.905289720897;
incomes(294,6)=23352.99887616449;
incomes(294,7)=22885.77038122921;
incomes(294,8)=23256.77705936032;
incomes(294,9)=23512.508801213986;
bref(295)=7000;
bnorm(295)=47000;
incomemean(295)=14000;
rents(295,1)=101.19857510687703;
rents(295,2)=86.12265866477456;
rents(295,3)=98.08782160131115;
rents(295,4)=109.84781581155342;
rents(295,5)=121.31471873278709;
rents(295,6)=133.2377407028714;
rents(295,7)=145.3258919725748;
rents(295,8)=155.63005496217949;
rents(295,9)=165.13382993276397;
incomes(295,1)=23901.7398060348;
incomes(295,2)=24478.941285428406;
incomes(295,3)=24158.762413173252;
incomes(295,4)=23951.859608358718;
incomes(295,5)=24199.328236029993;
incomes(295,6)=24643.97786385698;
incomes(295,7)=24083.719330040312;
incomes(295,8)=24079.59360674086;
incomes(295,9)=24080.848311254107;
bref(296)=7000;
bnorm(296)=47000;
incomemean(296)=15000;
rents(296,1)=98.03611664509368;
rents(296,2)=83.43166231734918;
rents(296,3)=97.3351116999314;
rents(296,4)=111.85754817030387;
rents(296,5)=126.3410516864744;
rents(296,6)=141.70663359472948;
rents(296,7)=156.93906786257398;
rents(296,8)=170.83126452051886;
rents(296,9)=183.2606710132208;
incomes(296,1)=25435.661135577855;
incomes(296,2)=25759.384096755246;
incomes(296,3)=25672.03588823217;
incomes(296,4)=25443.918743413666;
incomes(296,5)=26146.31298296352;
incomes(296,6)=26225.96730826569;
incomes(296,7)=25945.13442707077;
incomes(296,8)=26148.003921127587;
incomes(296,9)=26140.244326339118;
bref(297)=7000;
bnorm(297)=47000;
incomemean(297)=16000;
rents(297,1)=98.61558998814539;
rents(297,2)=83.93297741630785;
rents(297,3)=99.7672489848375;
rents(297,4)=116.77424246557538;
rents(297,5)=134.70060125777917;
rents(297,6)=153.19175139117445;
rents(297,7)=171.47601613226516;
rents(297,8)=186.9682123566904;
rents(297,9)=196.7610696302264;
incomes(297,1)=26856.703788495535;
incomes(297,2)=26907.74368756029;
incomes(297,3)=26941.89638127681;
incomes(297,4)=26958.94733094642;
incomes(297,5)=27365.431173917903;
incomes(297,6)=27700.634148850302;
incomes(297,7)=27251.1946154651;
incomes(297,8)=27655.26301353067;
incomes(297,9)=27946.25657453442;
bref(298)=7000;
bnorm(298)=47000;
incomemean(298)=17000;
rents(298,1)=99.75653712328227;
rents(298,2)=84.90065405072336;
rents(298,3)=104.76657547597136;
rents(298,4)=126.8538474047417;
rents(298,5)=149.46092401951114;
rents(298,6)=173.20586987065406;
rents(298,7)=193.8645387186251;
rents(298,8)=199.52247743937858;
rents(298,9)=200;
incomes(298,1)=28607.651245162546;
incomes(298,2)=29218.466970160902;
incomes(298,3)=29310.729427624916;
incomes(298,4)=28933.66203323396;
incomes(298,5)=29522.84687916815;
incomes(298,6)=29734.855694656282;
incomes(298,7)=29689.905999776893;
incomes(298,8)=29823.915311324155;
incomes(298,9)=30057.37898053926;
bref(299)=7000;
bnorm(299)=47000;
incomemean(299)=18000;
rents(299,1)=101.56385547086562;
rents(299,2)=86.44614202999728;
rents(299,3)=108.78566335952242;
rents(299,4)=134.5109666491506;
rents(299,5)=161.29122181251478;
rents(299,6)=188.16230711731882;
rents(299,7)=199.18844414704878;
rents(299,8)=200;
rents(299,9)=200;
incomes(299,1)=30411.045411212253;
incomes(299,2)=30746.781720755484;
incomes(299,3)=31014.854855496324;
incomes(299,4)=30683.13871799597;
incomes(299,5)=31306.724881785056;
incomes(299,6)=31898.441751405146;
incomes(299,7)=31312.150939381834;
incomes(299,8)=31282.608597574388;
incomes(299,9)=30994.57056274012;
bref(300)=7000;
bnorm(300)=47000;
incomemean(300)=19000;
rents(300,1)=102.36742824494927;
rents(300,2)=87.12470108600772;
rents(300,3)=111.9931157399602;
rents(300,4)=140.06605339098994;
rents(300,5)=169.61625485322529;
rents(300,6)=194.8451424796708;
rents(300,7)=199.7942040808832;
rents(300,8)=200;
rents(300,9)=200;
incomes(300,1)=31469.41731650509;
incomes(300,2)=32174.61060308977;
incomes(300,3)=31940.58189757631;
incomes(300,4)=31695.69747058373;
incomes(300,5)=32203.05144495077;
incomes(300,6)=33087.934697121425;
incomes(300,7)=32919.956708613456;
incomes(300,8)=32440.208935564813;
incomes(300,9)=32696.14529588677;
bref(301)=8000;
bnorm(301)=20000;
incomemean(301)=10000;
rents(301,1)=98.74609106894026;
rents(301,2)=59.27169545077365;
rents(301,3)=67.8269883793373;
rents(301,4)=75.03662556162205;
rents(301,5)=82.04599927020521;
rents(301,6)=88.04400227667965;
rents(301,7)=92.44119167667688;
rents(301,8)=95.20950113557687;
rents(301,9)=98.04920907854695;
incomes(301,1)=19165.522455397964;
incomes(301,2)=19603.23882726571;
incomes(301,3)=19352.422512106194;
incomes(301,4)=19501.662949662354;
incomes(301,5)=19533.620281109135;
incomes(301,6)=19361.581651962326;
incomes(301,7)=19070.982887837068;
incomes(301,8)=19249.027086683152;
incomes(301,9)=19523.323722102647;
bref(302)=8000;
bnorm(302)=20000;
incomemean(302)=11000;
rents(302,1)=100.21242186514672;
rents(302,2)=60.312700902091606;
rents(302,3)=71.27346155238081;
rents(302,4)=81.69991564563902;
rents(302,5)=90.9016645563624;
rents(302,6)=99.00010403307247;
rents(302,7)=105.28182608621307;
rents(302,8)=109.75240814755135;
rents(302,9)=113.62381812278406;
incomes(302,1)=20471.452114842938;
incomes(302,2)=20623.549727314632;
incomes(302,3)=20587.588427750194;
incomes(302,4)=20486.6390563696;
incomes(302,5)=20484.745819569496;
incomes(302,6)=20489.868326661992;
incomes(302,7)=20250.62627482215;
incomes(302,8)=20230.627383853174;
incomes(302,9)=20872.972231221018;
bref(303)=8000;
bnorm(303)=20000;
incomemean(303)=12000;
rents(303,1)=101.07599516179741;
rents(303,2)=60.64511841296952;
rents(303,3)=74.20284917478136;
rents(303,4)=87.80333742843591;
rents(303,5)=99.80693119132171;
rents(303,6)=110.50246007496062;
rents(303,7)=121.3294406211605;
rents(303,8)=128.39539689300676;
rents(303,9)=135.09034090619383;
incomes(303,1)=21047.39412613281;
incomes(303,2)=21529.07943401597;
incomes(303,3)=21489.357184544508;
incomes(303,4)=21228.78593654587;
incomes(303,5)=21275.112568337365;
incomes(303,6)=21757.606978346692;
incomes(303,7)=21512.536922647225;
incomes(303,8)=21705.012541643;
incomes(303,9)=21880.48482408105;
bref(304)=8000;
bnorm(304)=20000;
incomemean(304)=13000;
rents(304,1)=98.94435628741456;
rents(304,2)=59.367529678267054;
rents(304,3)=77.15099010466388;
rents(304,4)=95.54082930815345;
rents(304,5)=112.97906345494592;
rents(304,6)=130.54884598045612;
rents(304,7)=145.54725876274776;
rents(304,8)=155.23962322650416;
rents(304,9)=163.65339178645638;
incomes(304,1)=22693.72385661003;
incomes(304,2)=23164.06514476611;
incomes(304,3)=22920.441359277807;
incomes(304,4)=22780.833408799033;
incomes(304,5)=23253.199755767277;
incomes(304,6)=23494.12598156129;
incomes(304,7)=23041.211756258;
incomes(304,8)=23375.565555562694;
incomes(304,9)=23052.35801529818;
bref(305)=8000;
bnorm(305)=20000;
incomemean(305)=14000;
rents(305,1)=100.01866896139389;
rents(305,2)=60.01349179917192;
rents(305,3)=83.03900300274624;
rents(305,4)=109.16339317506207;
rents(305,5)=135.06286517451272;
rents(305,6)=161.06177917047341;
rents(305,7)=179.65947739601108;
rents(305,8)=189.50854296271228;
rents(305,9)=195.4322697407496;
incomes(305,1)=24409.666013599;
incomes(305,2)=25047.12026989492;
incomes(305,3)=25084.128122621274;
incomes(305,4)=25021.141500764294;
incomes(305,5)=25646.05936885911;
incomes(305,6)=25570.871690808224;
incomes(305,7)=25078.24326867882;
incomes(305,8)=25351.247440091112;
incomes(305,9)=25662.37321170328;
bref(306)=8000;
bnorm(306)=20000;
incomemean(306)=15000;
rents(306,1)=99.10012565556896;
rents(306,2)=59.46661892019371;
rents(306,3)=84.73210924071739;
rents(306,4)=114.06589549246613;
rents(306,5)=144.8409779681703;
rents(306,6)=176.25468596086387;
rents(306,7)=194.40366827441122;
rents(306,8)=198.89945038415405;
rents(306,9)=199.94882071318003;
incomes(306,1)=26126.801946601063;
incomes(306,2)=25917.855560196473;
incomes(306,3)=25806.83986186633;
incomes(306,4)=25945.177077068147;
incomes(306,5)=26662.188703295848;
incomes(306,6)=26847.68792294739;
incomes(306,7)=26643.013030396196;
incomes(306,8)=26426.106658044224;
incomes(306,9)=26355.648699233316;
bref(307)=8000;
bnorm(307)=20000;
incomemean(307)=16000;
rents(307,1)=100.42224105904131;
rents(307,2)=60.264408044389825;
rents(307,3)=89.67403442066036;
rents(307,4)=125.26340586176228;
rents(307,5)=162.0139258385547;
rents(307,6)=196.3068574430244;
rents(307,7)=199.84775892425498;
rents(307,8)=200;
rents(307,9)=200;
incomes(307,1)=26965.66481013314;
incomes(307,2)=27392.623009621617;
incomes(307,3)=27331.1053022511;
incomes(307,4)=27294.10741403024;
incomes(307,5)=28230.23048028051;
incomes(307,6)=28319.141392396232;
incomes(307,7)=27780.70728306145;
incomes(307,8)=27794.092147011557;
incomes(307,9)=27831.841055119905;
bref(308)=8000;
bnorm(308)=20000;
incomemean(308)=17000;
rents(308,1)=101.8206730388877;
rents(308,2)=61.09833610171881;
rents(308,3)=94.91482082135587;
rents(308,4)=137.9293069126921;
rents(308,5)=182.4089566019617;
rents(308,6)=199.74330915394714;
rents(308,7)=200;
rents(308,8)=200;
rents(308,9)=200;
incomes(308,1)=28363.130962621868;
incomes(308,2)=28837.32207263022;
incomes(308,3)=28767.30568383932;
incomes(308,4)=28669.735677718763;
incomes(308,5)=29752.08549356638;
incomes(308,6)=29886.842331365482;
incomes(308,7)=29449.24936781378;
incomes(308,8)=28871.820441011507;
incomes(308,9)=29621.641575425798;
bref(309)=8000;
bnorm(309)=20000;
incomemean(309)=18000;
rents(309,1)=99.54857159888257;
rents(309,2)=59.791505375886835;
rents(309,3)=97.35680398783794;
rents(309,4)=146.82608818301588;
rents(309,5)=195.47379993424715;
rents(309,6)=200;
rents(309,7)=200;
rents(309,8)=200;
rents(309,9)=200;
incomes(309,1)=30433.674059537236;
incomes(309,2)=30491.91102872822;
incomes(309,3)=30326.974800069296;
incomes(309,4)=30422.80907607852;
incomes(309,5)=31801.276051036177;
incomes(309,6)=31715.649685016047;
incomes(309,7)=31156.84053825403;
incomes(309,8)=31091.786289156473;
incomes(309,9)=31381.399444395647;
bref(310)=8000;
bnorm(310)=20000;
incomemean(310)=19000;
rents(310,1)=98.25988159564253;
rents(310,2)=58.9653912319209;
rents(310,3)=100.25624949023039;
rents(310,4)=158.58028144821526;
rents(310,5)=199.64232073677033;
rents(310,6)=200;
rents(310,7)=200;
rents(310,8)=200;
rents(310,9)=200;
incomes(310,1)=31337.00933919964;
incomes(310,2)=32042.432384267817;
incomes(310,3)=32047.300264248493;
incomes(310,4)=31748.669396906902;
incomes(310,5)=33244.873106329185;
incomes(310,6)=32637.351409424067;
incomes(310,7)=32700.96291510997;
incomes(310,8)=32778.017784019525;
incomes(310,9)=33236.47132388854;
bref(311)=8000;
bnorm(311)=23000;
incomemean(311)=10000;
rents(311,1)=100.40744997741433;
rents(311,2)=65.48232901781826;
rents(311,3)=72.46015954769851;
rents(311,4)=78.86177741782615;
rents(311,5)=83.94604261200985;
rents(311,6)=88.66910081356455;
rents(311,7)=92.67951894669194;
rents(311,8)=94.39787095939;
rents(311,9)=96.17326233023843;
incomes(311,1)=19255.46208984802;
incomes(311,2)=19438.49456800375;
incomes(311,3)=19428.210527293035;
incomes(311,4)=19271.56446622584;
incomes(311,5)=19286.5042786271;
incomes(311,6)=19400.25910048022;
incomes(311,7)=18810.78469023435;
incomes(311,8)=18960.70326557928;
incomes(311,9)=19005.376641918952;
bref(312)=8000;
bnorm(312)=23000;
incomemean(312)=11000;
rents(312,1)=100.06598163843768;
rents(312,2)=65.25926897814635;
rents(312,3)=74.48691782710183;
rents(312,4)=83.44431227068179;
rents(312,5)=91.1170140560568;
rents(312,6)=97.4567583635396;
rents(312,7)=103.50810446203911;
rents(312,8)=107.37541026628396;
rents(312,9)=112.1936669795244;
incomes(312,1)=20175.05598753801;
incomes(312,2)=20461.769269977427;
incomes(312,3)=20524.103621483777;
incomes(312,4)=20180.920734560783;
incomes(312,5)=20170.316684739937;
incomes(312,6)=20475.207999666356;
incomes(312,7)=19996.630364711284;
incomes(312,8)=20435.542811205258;
incomes(312,9)=20277.540206432466;
bref(313)=8000;
bnorm(313)=23000;
incomemean(313)=12000;
rents(313,1)=100.67927713016981;
rents(313,2)=65.66558125669232;
rents(313,3)=77.24222942744078;
rents(313,4)=88.25215659900618;
rents(313,5)=97.8054518053052;
rents(313,6)=107.25436069203498;
rents(313,7)=116.20796531584715;
rents(313,8)=123.5701647708748;
rents(313,9)=128.72986968427065;
incomes(313,1)=20981.0112954025;
incomes(313,2)=21429.214634215114;
incomes(313,3)=21250.66394977216;
incomes(313,4)=21061.065937103653;
incomes(313,5)=21391.17031594496;
incomes(313,6)=21661.354471712464;
incomes(313,7)=21504.32673576864;
incomes(313,8)=21313.677823036414;
incomes(313,9)=21481.940728057718;
bref(314)=8000;
bnorm(314)=23000;
incomemean(314)=13000;
rents(314,1)=99.51922960124729;
rents(314,2)=64.89853193618504;
rents(314,3)=79.96540887685006;
rents(314,4)=95.44628753407127;
rents(314,5)=109.69328582456578;
rents(314,6)=124.188686446724;
rents(314,7)=137.46487655730678;
rents(314,8)=146.49258805471766;
rents(314,9)=154.8659557544833;
incomes(314,1)=22362.15144818128;
incomes(314,2)=22729.165895600214;
incomes(314,3)=22665.5038109464;
incomes(314,4)=22407.572076156343;
incomes(314,5)=22799.18126373947;
incomes(314,6)=23146.685356288774;
incomes(314,7)=22615.706073940135;
incomes(314,8)=22975.877208539023;
incomes(314,9)=23230.16661347265;
bref(315)=8000;
bnorm(315)=23000;
incomemean(315)=14000;
rents(315,1)=98.50381965545556;
rents(315,2)=64.2432045843699;
rents(315,3)=83.31676010866062;
rents(315,4)=104.23518179471334;
rents(315,5)=124.25268094382226;
rents(315,6)=143.95597234678755;
rents(315,7)=160.8856972770194;
rents(315,8)=171.4916098118464;
rents(315,9)=179.2474234945722;
incomes(315,1)=23921.784998664447;
incomes(315,2)=24375.54670079535;
incomes(315,3)=24497.83625267871;
incomes(315,4)=24213.91919509905;
incomes(315,5)=24649.040553274655;
incomes(315,6)=24822.972867923854;
incomes(315,7)=24037.91434752756;
incomes(315,8)=24156.1048568461;
incomes(315,9)=24975.968457878967;
bref(316)=8000;
bnorm(316)=23000;
incomemean(316)=15000;
rents(316,1)=99.16722714379645;
rents(316,2)=64.67157823450863;
rents(316,3)=87.03443131608189;
rents(316,4)=109.71594173426412;
rents(316,5)=133.64141738954433;
rents(316,6)=157.066888138187;
rents(316,7)=177.20768954194358;
rents(316,8)=190.05610865867698;
rents(316,9)=195.42278626849455;
incomes(316,1)=25311.76850259146;
incomes(316,2)=25662.35680531974;
incomes(316,3)=24828.557948424197;
incomes(316,4)=25040.96775530671;
incomes(316,5)=25542.31858902756;
incomes(316,6)=25917.354380800443;
incomes(316,7)=25660.980255662347;
incomes(316,8)=25756.609876342485;
incomes(316,9)=26335.762424627992;
bref(317)=8000;
bnorm(317)=23000;
incomemean(317)=16000;
rents(317,1)=102.95428443250302;
rents(317,2)=67.14575921817556;
rents(317,3)=93.70248961343901;
rents(317,4)=125.03033620033264;
rents(317,5)=155.80746715368016;
rents(317,6)=187.3148040910703;
rents(317,7)=199.07294843374058;
rents(317,8)=199.9963809538296;
rents(317,9)=200;
incomes(317,1)=26774.46149362144;
incomes(317,2)=27113.64395236021;
incomes(317,3)=27239.74447870719;
incomes(317,4)=26834.925599661165;
incomes(317,5)=27804.710858083614;
incomes(317,6)=28124.149841411323;
incomes(317,7)=27331.193196771415;
incomes(317,8)=27871.166455666335;
incomes(317,9)=27914.138335849155;
bref(318)=8000;
bnorm(318)=23000;
incomemean(318)=17000;
rents(318,1)=98.6080136767961;
rents(318,2)=64.30736571335277;
rents(318,3)=95.28495709022008;
rents(318,4)=132.9045988366677;
rents(318,5)=173.33671982687892;
rents(318,6)=198.7189670579463;
rents(318,7)=199.97216927739348;
rents(318,8)=200;
rents(318,9)=200;
incomes(318,1)=28773.71773433107;
incomes(318,2)=29169.1658324468;
incomes(318,3)=29007.65443286597;
incomes(318,4)=29022.750695290713;
incomes(318,5)=29861.213364984313;
incomes(318,6)=29854.865637374543;
incomes(318,7)=29470.1215303153;
incomes(318,8)=29786.29764190899;
incomes(318,9)=29522.3500138045;
bref(319)=8000;
bnorm(319)=23000;
incomemean(319)=18000;
rents(319,1)=102.12598934316509;
rents(319,2)=66.6038452535864;
rents(319,3)=101.80335550093078;
rents(319,4)=145.7184500162131;
rents(319,5)=190.0223284944581;
rents(319,6)=200;
rents(319,7)=200;
rents(319,8)=200;
rents(319,9)=200;
incomes(319,1)=29777.718731870333;
incomes(319,2)=30509.14660791772;
incomes(319,3)=30273.471997123605;
incomes(319,4)=30046.08371060018;
incomes(319,5)=31551.196570764623;
incomes(319,6)=31271.502086001892;
incomes(319,7)=30621.643310665873;
incomes(319,8)=30569.627689444937;
incomes(319,9)=30970.321695102248;
bref(320)=8000;
bnorm(320)=23000;
incomemean(320)=19000;
rents(320,1)=100.76830606936151;
rents(320,2)=65.71475324392482;
rents(320,3)=104.87052558877281;
rents(320,4)=155.5131595034081;
rents(320,5)=198.89974434681244;
rents(320,6)=200;
rents(320,7)=200;
rents(320,8)=200;
rents(320,9)=200;
incomes(320,1)=31687.195042363448;
incomes(320,2)=32108.181442542595;
incomes(320,3)=31743.717445502425;
incomes(320,4)=31752.76120775872;
incomes(320,5)=32836.30923186648;
incomes(320,6)=32832.60295842276;
incomes(320,7)=32620.985529247697;
incomes(320,8)=32682.692238550895;
incomes(320,9)=32529.03865387568;
bref(321)=8000;
bnorm(321)=26000;
incomemean(321)=10000;
rents(321,1)=101.03113176702206;
rents(321,2)=69.9446181938198;
rents(321,3)=75.85944108480126;
rents(321,4)=81.54223494891443;
rents(321,5)=86.48163495040714;
rents(321,6)=90.31170053935499;
rents(321,7)=94.30120214947486;
rents(321,8)=95.97913669305503;
rents(321,9)=97.62394138453936;
incomes(321,1)=19541.931779683284;
incomes(321,2)=19585.158687687424;
incomes(321,3)=19721.33049305553;
incomes(321,4)=19575.094278648976;
incomes(321,5)=19492.733641242936;
incomes(321,6)=19705.650299102945;
incomes(321,7)=18963.218800090883;
incomes(321,8)=18873.042985629032;
incomes(321,9)=19227.344759304317;
bref(322)=8000;
bnorm(322)=26000;
incomemean(322)=11000;
rents(322,1)=100.04050642440646;
rents(322,2)=69.25986132267887;
rents(322,3)=78.0582714618738;
rents(322,4)=86.2506683334482;
rents(322,5)=92.86864345795938;
rents(322,6)=99.8583898817737;
rents(322,7)=106.16563863322054;
rents(322,8)=111.45201926790895;
rents(322,9)=116.73215573266206;
incomes(322,1)=20801.99764323817;
incomes(322,2)=20811.337112792517;
incomes(322,3)=20747.756075316585;
incomes(322,4)=20425.842340532585;
incomes(322,5)=20920.534578401894;
incomes(322,6)=20822.533199291116;
incomes(322,7)=20617.4916312897;
incomes(322,8)=20797.34288785409;
incomes(322,9)=21057.80954116648;
bref(323)=8000;
bnorm(323)=26000;
incomemean(323)=12000;
rents(323,1)=98.9554712355102;
rents(323,2)=68.50528871064708;
rents(323,3)=78.46274398354846;
rents(323,4)=88.62978040874354;
rents(323,5)=97.42562860349011;
rents(323,6)=105.73931302393376;
rents(323,7)=113.90497425355107;
rents(323,8)=119.93566757180847;
rents(323,9)=125.91899434030009;
incomes(323,1)=20876.372136517966;
incomes(323,2)=21320.284484567692;
incomes(323,3)=21645.791682835305;
incomes(323,4)=21290.56734323624;
incomes(323,5)=21414.7531467522;
incomes(323,6)=21713.736966029323;
incomes(323,7)=21280.86077036692;
incomes(323,8)=21467.61383294995;
incomes(323,9)=22042.066823440535;
bref(324)=8000;
bnorm(324)=26000;
incomemean(324)=13000;
rents(324,1)=101.59266116583237;
rents(324,2)=70.33640098537279;
rents(324,3)=83.87781813498007;
rents(324,4)=96.53313261224558;
rents(324,5)=109.08624252905082;
rents(324,6)=122.55629437711987;
rents(324,7)=134.2415073324333;
rents(324,8)=143.76634992991293;
rents(324,9)=149.89169444380107;
incomes(324,1)=22178.579211453158;
incomes(324,2)=22708.527894230563;
incomes(324,3)=22446.306333864297;
incomes(324,4)=22631.81051512494;
incomes(324,5)=23218.849757662643;
incomes(324,6)=23214.870543271845;
incomes(324,7)=23126.853672534537;
incomes(324,8)=22705.353084657694;
incomes(324,9)=23203.957647435236;
bref(325)=8000;
bnorm(325)=26000;
incomemean(325)=14000;
rents(325,1)=100.0016560733384;
rents(325,2)=69.2323499493831;
rents(325,3)=84.49986167218252;
rents(325,4)=100.35259224723464;
rents(325,5)=115.90714412833705;
rents(325,6)=132.6974310637203;
rents(325,7)=147.69128186717978;
rents(325,8)=158.26647991885437;
rents(325,9)=167.37541460364204;
incomes(325,1)=23177.943111464836;
incomes(325,2)=23414.099803841567;
incomes(325,3)=23421.63062801832;
incomes(325,4)=23308.268457662853;
incomes(325,5)=24067.142974946986;
incomes(325,6)=24306.040282809146;
incomes(325,7)=23779.027736809934;
incomes(325,8)=23989.329338303356;
incomes(325,9)=24214.28432701421;
bref(326)=8000;
bnorm(326)=26000;
incomemean(326)=15000;
rents(326,1)=99.4263126298986;
rents(326,2)=68.8309886667485;
rents(326,3)=89.01324898859073;
rents(326,4)=110.89862292977041;
rents(326,5)=133.06449902743412;
rents(326,6)=155.3495140491212;
rents(326,7)=174.54265716033336;
rents(326,8)=188.37383026677844;
rents(326,9)=196.4122026063016;
incomes(326,1)=24984.22198092081;
incomes(326,2)=25609.144889291016;
incomes(326,3)=25392.301788156263;
incomes(326,4)=25560.954480416913;
incomes(326,5)=26034.517139496475;
incomes(326,6)=26135.70259186353;
incomes(326,7)=25989.278177216132;
incomes(326,8)=26242.43106661789;
incomes(326,9)=26034.945666253752;
bref(327)=8000;
bnorm(327)=26000;
incomemean(327)=16000;
rents(327,1)=100.89709507207967;
rents(327,2)=69.85120653654735;
rents(327,3)=95.20493186456268;
rents(327,4)=123.5330768944766;
rents(327,5)=153.1293059725734;
rents(327,6)=181.28252244515846;
rents(327,7)=198.1901732122543;
rents(327,8)=199.67215130471354;
rents(327,9)=200;
incomes(327,1)=27123.100120412608;
incomes(327,2)=27609.426172007847;
incomes(327,3)=27300.24010474051;
incomes(327,4)=27318.169689576756;
incomes(327,5)=27864.369301608287;
incomes(327,6)=28703.641954141942;
incomes(327,7)=27892.60453671963;
incomes(327,8)=28052.98770134713;
incomes(327,9)=27894.677903421696;
bref(328)=8000;
bnorm(328)=26000;
incomemean(328)=17000;
rents(328,1)=100.37736729807796;
rents(328,2)=69.49152813715229;
rents(328,3)=97.7743608987758;
rents(328,4)=130.15518561508762;
rents(328,5)=163.55348004305785;
rents(328,6)=194.1557652068174;
rents(328,7)=199.30623234824802;
rents(328,8)=200;
rents(328,9)=200;
incomes(328,1)=28407.96604446352;
incomes(328,2)=28985.487748609445;
incomes(328,3)=28583.11173441414;
incomes(328,4)=28540.822460934873;
incomes(328,5)=29328.370939432472;
incomes(328,6)=30238.006175477647;
incomes(328,7)=29340.721316614705;
incomes(328,8)=29161.932977745644;
incomes(328,9)=29644.55549208362;
bref(329)=8000;
bnorm(329)=26000;
incomemean(329)=18000;
rents(329,1)=100.97332813698763;
rents(329,2)=69.91073215946503;
rents(329,3)=101.24867700815524;
rents(329,4)=139.50890784287785;
rents(329,5)=180.70032708873865;
rents(329,6)=199.63104932784617;
rents(329,7)=200;
rents(329,8)=200;
rents(329,9)=200;
incomes(329,1)=29562.484226432403;
incomes(329,2)=30060.401611757454;
incomes(329,3)=30105.678298226037;
incomes(329,4)=30389.002028746665;
incomes(329,5)=30885.712784415075;
incomes(329,6)=31443.375626261746;
incomes(329,7)=30634.06825229477;
incomes(329,8)=30706.420588398527;
incomes(329,9)=30870.06510332501;
bref(330)=8000;
bnorm(330)=26000;
incomemean(330)=19000;
rents(330,1)=102.86306728341314;
rents(330,2)=71.21330606230131;
rents(330,3)=107.49922619805231;
rents(330,4)=154.2522114064647;
rents(330,5)=197.43496693843426;
rents(330,6)=200;
rents(330,7)=200;
rents(330,8)=200;
rents(330,9)=200;
incomes(330,1)=31941.21348761277;
incomes(330,2)=31950.61321759075;
incomes(330,3)=32103.371225165363;
incomes(330,4)=31903.016943195656;
incomes(330,5)=32472.167313397436;
incomes(330,6)=32973.44207602858;
incomes(330,7)=32542.198678764053;
incomes(330,8)=32957.149934023415;
incomes(330,9)=32813.51498894205;
bref(331)=8000;
bnorm(331)=29000;
incomemean(331)=10000;
rents(331,1)=99.5935419738958;
rents(331,2)=72.11882288875589;
rents(331,3)=76.85094145072793;
rents(331,4)=80.9859450529098;
rents(331,5)=84.24298127696174;
rents(331,6)=87.12296448431644;
rents(331,7)=89.98996695748708;
rents(331,8)=91.83819271783815;
rents(331,9)=93.04193663071503;
incomes(331,1)=19221.528552292566;
incomes(331,2)=19383.589350713723;
incomes(331,3)=19323.92032528282;
incomes(331,4)=19097.66478310072;
incomes(331,5)=19117.374170850562;
incomes(331,6)=19308.690270935625;
incomes(331,7)=19062.68459895321;
incomes(331,8)=18757.87787813951;
incomes(331,9)=19009.689197934327;
bref(332)=8000;
bnorm(332)=29000;
incomemean(332)=11000;
rents(332,1)=102.014565315065;
rents(332,2)=73.86926588132009;
rents(332,3)=80.75202160691478;
rents(332,4)=86.96600250914479;
rents(332,5)=91.89120402479134;
rents(332,6)=97.09644960234198;
rents(332,7)=101.64664091941638;
rents(332,8)=105.21305284888685;
rents(332,9)=107.98603970289734;
incomes(332,1)=20028.462833675374;
incomes(332,2)=20384.442059214798;
incomes(332,3)=20269.656751757775;
incomes(332,4)=20030.988817605037;
incomes(332,5)=20420.786600345302;
incomes(332,6)=20363.84397990066;
incomes(332,7)=19988.25640084904;
incomes(332,8)=19947.78274062664;
incomes(332,9)=20213.2489757495;
bref(333)=8000;
bnorm(333)=29000;
incomemean(333)=12000;
rents(333,1)=99.16480916844318;
rents(333,2)=71.8081119560615;
rents(333,3)=81.92575593821725;
rents(333,4)=91.4820607618458;
rents(333,5)=100.12616615166917;
rents(333,6)=108.6527064455914;
rents(333,7)=117.43433073464625;
rents(333,8)=123.35122579380219;
rents(333,9)=128.65487680599466;
incomes(333,1)=21414.07709297217;
incomes(333,2)=21730.889269240266;
incomes(333,3)=21582.7949434593;
incomes(333,4)=21458.484029830197;
incomes(333,5)=21842.311720991882;
incomes(333,6)=22111.267216726752;
incomes(333,7)=21394.770549558216;
incomes(333,8)=21417.374461181826;
incomes(333,9)=21958.300460143295;
bref(334)=8000;
bnorm(334)=29000;
incomemean(334)=13000;
rents(334,1)=98.52709071392339;
rents(334,2)=71.35458626278104;
rents(334,3)=82.96138067337667;
rents(334,4)=93.725735004419;
rents(334,5)=104.1247232320431;
rents(334,6)=114.66549592154578;
rents(334,7)=124.1391735047177;
rents(334,8)=132.39274132964462;
rents(334,9)=138.11345780847424;
incomes(334,1)=22143.050541220236;
incomes(334,2)=22497.297395116126;
incomes(334,3)=22205.996295806526;
incomes(334,4)=22083.95158464976;
incomes(334,5)=22581.35695663784;
incomes(334,6)=22685.201108093224;
incomes(334,7)=22619.459208954973;
incomes(334,8)=22141.549528250216;
incomes(334,9)=22898.76180388934;
bref(335)=8000;
bnorm(335)=29000;
incomemean(335)=14000;
rents(335,1)=102.03579603068886;
rents(335,2)=73.88336062855517;
rents(335,3)=88.34598855892405;
rents(335,4)=102.7953740632812;
rents(335,5)=116.37207333246582;
rents(335,6)=130.84739159108724;
rents(335,7)=143.51101565687534;
rents(335,8)=153.45792660160487;
rents(335,9)=159.6913857611717;
incomes(335,1)=23202.168322304795;
incomes(335,2)=23628.70815614829;
incomes(335,3)=23646.24726034523;
incomes(335,4)=23287.828039442513;
incomes(335,5)=24138.03926376555;
incomes(335,6)=24033.603246125425;
incomes(335,7)=23542.76898282686;
incomes(335,8)=23204.200566473828;
incomes(335,9)=23691.83167370114;
bref(336)=8000;
bnorm(336)=29000;
incomemean(336)=15000;
rents(336,1)=98.03514829524185;
rents(336,2)=70.98892236586094;
rents(336,3)=90.50397755823654;
rents(336,4)=111.81650246154649;
rents(336,5)=134.52606573372265;
rents(336,6)=155.29011097552794;
rents(336,7)=176.86997795426024;
rents(336,8)=191.54680784013715;
rents(336,9)=197.52447319027223;
incomes(336,1)=25760.90634307926;
incomes(336,2)=26076.3896303152;
incomes(336,3)=26069.481128843527;
incomes(336,4)=26258.979815379305;
incomes(336,5)=26203.692595896773;
incomes(336,6)=26914.387674103076;
incomes(336,7)=26805.16037857066;
incomes(336,8)=26109.210473314863;
incomes(336,9)=26753.94426088484;
bref(337)=8000;
bnorm(337)=29000;
incomemean(337)=16000;
rents(337,1)=97.7721413916857;
rents(337,2)=70.79883008413461;
rents(337,3)=92.83538840328458;
rents(337,4)=117.03456701347685;
rents(337,5)=140.9203321325971;
rents(337,6)=164.92243872731336;
rents(337,7)=186.55045369002806;
rents(337,8)=198.29405830683476;
rents(337,9)=199.60286262486002;
incomes(337,1)=26621.11791932885;
incomes(337,2)=27324.918630972323;
incomes(337,3)=26963.553715908663;
incomes(337,4)=26688.9911163296;
incomes(337,5)=27096.572722418587;
incomes(337,6)=27417.104348029883;
incomes(337,7)=27513.824879675536;
incomes(337,8)=27542.07232730151;
incomes(337,9)=28259.739882631755;
bref(338)=8000;
bnorm(338)=29000;
incomemean(338)=17000;
rents(338,1)=98.27506541123643;
rents(338,2)=71.17080565338755;
rents(338,3)=97.40891632900626;
rents(338,4)=126.9665176598222;
rents(338,5)=157.92246047623806;
rents(338,6)=189.67896212441292;
rents(338,7)=200;
rents(338,8)=200;
rents(338,9)=200;
incomes(338,1)=28848.000150892134;
incomes(338,2)=29168.498061222595;
incomes(338,3)=28678.765781758804;
incomes(338,4)=28654.518316056165;
incomes(338,5)=29702.64861350403;
incomes(338,6)=30076.9326315524;
incomes(338,7)=29445.312715291675;
incomes(338,8)=29644.130817199646;
incomes(338,9)=29743.442344781055;
bref(339)=8000;
bnorm(339)=29000;
incomemean(339)=18000;
rents(339,1)=98.96622229658568;
rents(339,2)=71.66748917079694;
rents(339,3)=99.86975425892977;
rents(339,4)=133.31265182743633;
rents(339,5)=169.10102621342222;
rents(339,6)=197.0807981662798;
rents(339,7)=200;
rents(339,8)=200;
rents(339,9)=200;
incomes(339,1)=29892.22070728758;
incomes(339,2)=29861.42230189367;
incomes(339,3)=29828.17119667342;
incomes(339,4)=29831.484724744798;
incomes(339,5)=30431.749873248114;
incomes(339,6)=31518.79873791434;
incomes(339,7)=30796.40058551075;
incomes(339,8)=30795.206717140347;
incomes(339,9)=31233.541414301995;
bref(340)=8000;
bnorm(340)=29000;
incomemean(340)=19000;
rents(340,1)=100.97946540835964;
rents(340,2)=73.12349647980595;
rents(340,3)=106.98441896710929;
rents(340,4)=147.95133406572742;
rents(340,5)=189.34953285201902;
rents(340,6)=200;
rents(340,7)=200;
rents(340,8)=200;
rents(340,9)=200;
incomes(340,1)=31579.653802721055;
incomes(340,2)=32380.91060352824;
incomes(340,3)=32019.48872045317;
incomes(340,4)=32403.910342155636;
incomes(340,5)=32956.26809346961;
incomes(340,6)=33221.60329914686;
incomes(340,7)=32418.661802097577;
incomes(340,8)=32574.293711965776;
incomes(340,9)=33034.716646543326;
bref(341)=8000;
bnorm(341)=32000;
incomemean(341)=10000;
rents(341,1)=99.8735266289865;
rents(341,2)=74.90152378920793;
rents(341,3)=79.49473102285891;
rents(341,4)=83.32737766315442;
rents(341,5)=86.35951408247759;
rents(341,6)=89.13765581979091;
rents(341,7)=92.01316875787333;
rents(341,8)=92.8525917039709;
rents(341,9)=93.78707437652196;
incomes(341,1)=19303.272142082278;
incomes(341,2)=19686.176840199005;
incomes(341,3)=19510.026310127403;
incomes(341,4)=19277.653097423863;
incomes(341,5)=19396.506869402103;
incomes(341,6)=19625.6111592239;
incomes(341,7)=18688.95237927275;
incomes(341,8)=18815.385950025855;
incomes(341,9)=19025.484091605762;
bref(342)=8000;
bnorm(342)=32000;
incomemean(342)=11000;
rents(342,1)=99.8838085340151;
rents(342,2)=74.91291976982492;
rents(342,3)=81.59607977627584;
rents(342,4)=87.7128042828866;
rents(342,5)=93.17261767368738;
rents(342,6)=98.61975460303154;
rents(342,7)=103.19317831947534;
rents(342,8)=106.6909889713591;
rents(342,9)=110.34090369236858;
incomes(342,1)=20572.317825831644;
incomes(342,2)=20606.60644882002;
incomes(342,3)=20600.046339327237;
incomes(342,4)=20552.12408796136;
incomes(342,5)=20624.565095403454;
incomes(342,6)=20488.245168804035;
incomes(342,7)=20155.237122320108;
incomes(342,8)=20461.859469845283;
incomes(342,9)=20913.32842421912;
bref(343)=8000;
bnorm(343)=32000;
incomemean(343)=12000;
rents(343,1)=101.61636794625706;
rents(343,2)=76.2114139333242;
rents(343,3)=84.00056508105554;
rents(343,4)=91.74849639882626;
rents(343,5)=98.27974026696828;
rents(343,6)=104.93340551700793;
rents(343,7)=111.81185906406189;
rents(343,8)=117.02404897855797;
rents(343,9)=121.23304606483224;
incomes(343,1)=20972.95983874344;
incomes(343,2)=21239.10108296834;
incomes(343,3)=21388.913114948635;
incomes(343,4)=21056.585978351566;
incomes(343,5)=21420.94534920746;
incomes(343,6)=21668.524943431374;
incomes(343,7)=21239.92499890987;
incomes(343,8)=20880.83092637692;
incomes(343,9)=21377.232753138753;
bref(344)=8000;
bnorm(344)=32000;
incomemean(344)=13000;
rents(344,1)=99.57319508322087;
rents(344,2)=74.67837470284277;
rents(344,3)=86.13184200044843;
rents(344,4)=97.4418690435344;
rents(344,5)=108.17420853878562;
rents(344,6)=119.50581386729787;
rents(344,7)=130.5457836663559;
rents(344,8)=139.91517492143814;
rents(344,9)=147.64386451949414;
incomes(344,1)=22787.36115046142;
incomes(344,2)=23099.880914433663;
incomes(344,3)=23018.073756632537;
incomes(344,4)=22841.33373564175;
incomes(344,5)=23424.0835739459;
incomes(344,6)=23823.66794435125;
incomes(344,7)=23659.03108248163;
incomes(344,8)=23404.36830327737;
incomes(344,9)=23616.949674692074;
bref(345)=8000;
bnorm(345)=32000;
incomemean(345)=14000;
rents(345,1)=98.55923632580179;
rents(345,2)=73.92087909255501;
rents(345,3)=88.07984528487611;
rents(345,4)=102.42829507341423;
rents(345,5)=116.2482799897985;
rents(345,6)=131.31964115855732;
rents(345,7)=145.214206748522;
rents(345,8)=155.5201205351258;
rents(345,9)=163.8427837240383;
incomes(345,1)=24153.87354905062;
incomes(345,2)=24215.901383061093;
incomes(345,3)=24116.173663379665;
incomes(345,4)=24004.583457427627;
incomes(345,5)=24711.327892425612;
incomes(345,6)=24847.146102307153;
incomes(345,7)=24097.913182857683;
incomes(345,8)=24172.69449926545;
incomes(345,9)=24969.654735485023;
bref(346)=8000;
bnorm(346)=32000;
incomemean(346)=15000;
rents(346,1)=100.80885859744299;
rents(346,2)=75.60558174627683;
rents(346,3)=91.92549075783641;
rents(346,4)=108.37037684391396;
rents(346,5)=124.22011927317969;
rents(346,6)=140.61674564451926;
rents(346,7)=156.77338115347806;
rents(346,8)=169.4085906682915;
rents(346,9)=179.4373226774818;
incomes(346,1)=24474.812682482578;
incomes(346,2)=25163.653868628004;
incomes(346,3)=24856.283523418166;
incomes(346,4)=24531.56692696939;
incomes(346,5)=25122.714779540827;
incomes(346,6)=25563.01345120133;
incomes(346,7)=25108.638520808265;
incomes(346,8)=25554.835511928035;
incomes(346,9)=25580.47703064791;
bref(347)=8000;
bnorm(347)=32000;
incomemean(347)=16000;
rents(347,1)=100.5082243272906;
rents(347,2)=75.38039588407015;
rents(347,3)=96.82893258981156;
rents(347,4)=119.39925289243098;
rents(347,5)=141.9865211783677;
rents(347,6)=166.09519097756103;
rents(347,7)=186.8142285474836;
rents(347,8)=196.51973122057365;
rents(347,9)=199.53550210594744;
incomes(347,1)=27153.97121780714;
incomes(347,2)=27750.548071088986;
incomes(347,3)=27272.46920306426;
incomes(347,4)=27017.130850097845;
incomes(347,5)=27880.90583113157;
incomes(347,6)=27865.579123668766;
incomes(347,7)=27843.048213929804;
incomes(347,8)=27757.21119377696;
incomes(347,9)=27843.0535204616;
bref(348)=8000;
bnorm(348)=32000;
incomemean(348)=17000;
rents(348,1)=97.69842764343863;
rents(348,2)=73.27629413723781;
rents(348,3)=96.31625154182635;
rents(348,4)=122.08028733348709;
rents(348,5)=149.29724777049282;
rents(348,6)=176.93377520972743;
rents(348,7)=197.46575719262427;
rents(348,8)=200;
rents(348,9)=200;
incomes(348,1)=28218.650401802344;
incomes(348,2)=28501.959657943607;
incomes(348,3)=28227.838303093456;
incomes(348,4)=28297.09752170485;
incomes(348,5)=28825.927699751006;
incomes(348,6)=29230.884497851206;
incomes(348,7)=28513.45744286906;
incomes(348,8)=28346.72978575956;
incomes(348,9)=28754.54963715968;
bref(349)=8000;
bnorm(349)=32000;
incomemean(349)=18000;
rents(349,1)=101.20618105556592;
rents(349,2)=75.91004940850085;
rents(349,3)=104.07003462175403;
rents(349,4)=137.22812697507507;
rents(349,5)=171.1554316718231;
rents(349,6)=196.1123608970277;
rents(349,7)=200;
rents(349,8)=200;
rents(349,9)=200;
incomes(349,1)=30325.529325097043;
incomes(349,2)=30774.006840200735;
incomes(349,3)=30670.428170031144;
incomes(349,4)=30344.839789960362;
incomes(349,5)=31223.70613147407;
incomes(349,6)=31985.315139878127;
incomes(349,7)=31238.93076173887;
incomes(349,8)=31170.920134387394;
incomes(349,9)=31744.17654202779;
bref(350)=8000;
bnorm(350)=32000;
incomemean(350)=19000;
rents(350,1)=97.73672779252664;
rents(350,2)=73.29845777649344;
rents(350,3)=103.21421060264706;
rents(350,4)=139.9685359762524;
rents(350,5)=179.3431902373819;
rents(350,6)=199.84429151590328;
rents(350,7)=200;
rents(350,8)=200;
rents(350,9)=200;
incomes(350,1)=31693.958164797557;
incomes(350,2)=31922.60523397399;
incomes(350,3)=32070.41941626982;
incomes(350,4)=32174.392995255814;
incomes(350,5)=32267.170203167825;
incomes(350,6)=33076.34385483853;
incomes(350,7)=32235.021152547626;
incomes(350,8)=32727.118367509003;
incomes(350,9)=33236.008593983155;
bref(351)=8000;
bnorm(351)=35000;
incomemean(351)=10000;
rents(351,1)=99.51462176419902;
rents(351,2)=76.77191195599015;
rents(351,3)=80.33808456048027;
rents(351,4)=83.88456849662315;
rents(351,5)=87.04532560524542;
rents(351,6)=89.6091637568638;
rents(351,7)=92.28520517563797;
rents(351,8)=93.98633557563765;
rents(351,9)=95.14258752399262;
incomes(351,1)=19714.209861944837;
incomes(351,2)=19481.44964273151;
incomes(351,3)=19614.620844518915;
incomes(351,4)=19453.995576859714;
incomes(351,5)=19342.954678140326;
incomes(351,6)=19512.34203833433;
incomes(351,7)=19176.90129756331;
incomes(351,8)=18908.568560503863;
incomes(351,9)=19399.54518088319;
bref(352)=8000;
bnorm(352)=35000;
incomemean(352)=11000;
rents(352,1)=102.40835537054204;
rents(352,2)=79.0040530145568;
rents(352,3)=84.14931914348534;
rents(352,4)=88.93407464952661;
rents(352,5)=92.78856733076366;
rents(352,6)=96.88314814118098;
rents(352,7)=100.84387841168378;
rents(352,8)=103.63470064449795;
rents(352,9)=105.75924239130285;
incomes(352,1)=20179.77975034574;
incomes(352,2)=20432.05693266259;
incomes(352,3)=20432.478826596875;
incomes(352,4)=20127.693124918453;
incomes(352,5)=20461.45994398061;
incomes(352,6)=20511.66169006261;
incomes(352,7)=20094.532488730645;
incomes(352,8)=19821.16950140906;
incomes(352,9)=20170.941345004805;
bref(353)=8000;
bnorm(353)=35000;
incomemean(353)=12000;
rents(353,1)=99.27645419451187;
rents(353,2)=76.58297151103254;
rents(353,3)=83.8935114300654;
rents(353,4)=90.93973194726233;
rents(353,5)=97.35804684435216;
rents(353,6)=103.57228904856626;
rents(353,7)=109.67738520432178;
rents(353,8)=113.87874213203848;
rents(353,9)=118.22912394159381;
incomes(353,1)=21243.376367363264;
incomes(353,2)=21287.799051539732;
incomes(353,3)=21295.53202288354;
incomes(353,4)=21192.648323694895;
incomes(353,5)=21335.896176245085;
incomes(353,6)=21503.350069001448;
incomes(353,7)=20803.171095543737;
incomes(353,8)=21073.30092328427;
incomes(353,9)=21423.978194049647;
bref(354)=8000;
bnorm(354)=35000;
incomemean(354)=13000;
rents(354,1)=100.42082302257514;
rents(354,2)=77.46855744147733;
rents(354,3)=87.60825810830924;
rents(354,4)=96.79332013741958;
rents(354,5)=105.46504089157153;
rents(354,6)=114.52377910728588;
rents(354,7)=123.61099003162728;
rents(354,8)=130.94543048019838;
rents(354,9)=138.333333883242;
incomes(354,1)=22493.636307633795;
incomes(354,2)=22714.91022991404;
incomes(354,3)=22278.921106618483;
incomes(354,4)=22292.202912174533;
incomes(354,5)=22707.709080290613;
incomes(354,6)=23008.232996184768;
incomes(354,7)=22398.49595511349;
incomes(354,8)=22793.57615540036;
incomes(354,9)=22925.075564461407;
bref(355)=8000;
bnorm(355)=35000;
incomemean(355)=14000;
rents(355,1)=102.39389127174883;
rents(355,2)=78.98806290876404;
rents(355,3)=92.33187988932677;
rents(355,4)=106.08971643028727;
rents(355,5)=118.29651484142119;
rents(355,6)=131.26776514497945;
rents(355,7)=143.54842235468743;
rents(355,8)=153.69198993545675;
rents(355,9)=162.59258788338397;
incomes(355,1)=24183.22895808263;
incomes(355,2)=24309.54867565712;
incomes(355,3)=24410.82669027802;
incomes(355,4)=23808.419527861704;
incomes(355,5)=24416.056720096367;
incomes(355,6)=24701.65053060279;
incomes(355,7)=24270.488182493766;
incomes(355,8)=24342.021842209342;
incomes(355,9)=25012.31859104918;
bref(356)=8000;
bnorm(356)=35000;
incomemean(356)=15000;
rents(356,1)=98.39453692237805;
rents(356,2)=75.90356724283514;
rents(356,3)=92.44857101218253;
rents(356,4)=109.82179892436336;
rents(356,5)=126.9636623585386;
rents(356,6)=145.6210450662277;
rents(356,7)=162.6979740785256;
rents(356,8)=176.9816604566667;
rents(356,9)=188.0231526750678;
incomes(356,1)=25605.273142464386;
incomes(356,2)=25965.086025873145;
incomes(356,3)=25883.399084843448;
incomes(356,4)=25708.229011889372;
incomes(356,5)=26539.48684463999;
incomes(356,6)=26524.438287625384;
incomes(356,7)=26076.809439077533;
incomes(356,8)=26392.79603631948;
incomes(356,9)=26501.300870746905;
bref(357)=8000;
bnorm(357)=35000;
incomemean(357)=16000;
rents(357,1)=99.33437220499826;
rents(357,2)=76.62306867803683;
rents(357,3)=95.69476475735618;
rents(357,4)=115.22106080009783;
rents(357,5)=135.44676927614287;
rents(357,6)=156.82052489678026;
rents(357,7)=176.90498796797883;
rents(357,8)=192.3125388423788;
rents(357,9)=198.4423893289884;
incomes(357,1)=26703.79091251544;
incomes(357,2)=27241.99532964609;
incomes(357,3)=26621.783609432736;
incomes(357,4)=26827.53306098347;
incomes(357,5)=27310.74668496764;
incomes(357,6)=27584.118047177362;
incomes(357,7)=27311.31002610417;
incomes(357,8)=27505.405829338662;
incomes(357,9)=27642.299300769686;
bref(358)=8000;
bnorm(358)=35000;
incomemean(358)=17000;
rents(358,1)=98.80714662171978;
rents(358,2)=76.21618326379794;
rents(358,3)=98.17152461620174;
rents(358,4)=122.88569600362405;
rents(358,5)=148.69046079016093;
rents(358,6)=175.61980280397782;
rents(358,7)=194.97261032480637;
rents(358,8)=199.60253406271724;
rents(358,9)=200;
incomes(358,1)=28271.07164394888;
incomes(358,2)=28915.610931947795;
incomes(358,3)=28936.385067369247;
incomes(358,4)=28872.246912205595;
incomes(358,5)=29378.680405924755;
incomes(358,6)=29848.93280142082;
incomes(358,7)=29505.520896353126;
incomes(358,8)=29743.40918824861;
incomes(358,9)=30201.067330720438;
bref(359)=8000;
bnorm(359)=35000;
incomemean(359)=18000;
rents(359,1)=100.24992999674643;
rents(359,2)=77.33655438621572;
rents(359,3)=104.29603954376707;
rents(359,4)=135.43531764232938;
rents(359,5)=167.37093888673456;
rents(359,6)=195.8927514928541;
rents(359,7)=200;
rents(359,8)=200;
rents(359,9)=200;
incomes(359,1)=30815.2414134277;
incomes(359,2)=31339.411022411285;
incomes(359,3)=31187.788943659743;
incomes(359,4)=30742.109099935846;
incomes(359,5)=31844.271848876426;
incomes(359,6)=32135.648429558918;
incomes(359,7)=31241.025446590716;
incomes(359,8)=31671.615640959233;
incomes(359,9)=32027.53906763147;
bref(360)=8000;
bnorm(360)=35000;
incomemean(360)=19000;
rents(360,1)=99.11024443298054;
rents(360,2)=76.45657065601571;
rents(360,3)=105.291924814101;
rents(360,4)=138.28792251950674;
rents(360,5)=173.6878183791612;
rents(360,6)=197.87321672872488;
rents(360,7)=200;
rents(360,8)=200;
rents(360,9)=200;
incomes(360,1)=31409.933388660404;
incomes(360,2)=32438.38365916385;
incomes(360,3)=31835.5304419616;
incomes(360,4)=31708.215031387288;
incomes(360,5)=32361.520910424686;
incomes(360,6)=33317.6933969973;
incomes(360,7)=32675.775002195536;
incomes(360,8)=32709.610975001942;
incomes(360,9)=32596.252361470517;
bref(361)=8000;
bnorm(361)=38000;
incomemean(361)=10000;
rents(361,1)=99.70027988897611;
rents(361,2)=78.71376744969173;
rents(361,3)=82.5927366388396;
rents(361,4)=85.6837850690359;
rents(361,5)=88.04583011448307;
rents(361,6)=91.01386359554607;
rents(361,7)=93.75567974093454;
rents(361,8)=95.24223672130749;
rents(361,9)=96.69173774773684;
incomes(361,1)=19530.806480687977;
incomes(361,2)=19805.927030340277;
incomes(361,3)=19498.738508849903;
incomes(361,4)=19117.913944955777;
incomes(361,5)=19687.256923037527;
incomes(361,6)=19686.600317834807;
incomes(361,7)=19142.89938560162;
incomes(361,8)=19069.61725474789;
incomes(361,9)=19206.940167792727;
bref(362)=8000;
bnorm(362)=38000;
incomemean(362)=11000;
rents(362,1)=102.53582806609634;
rents(362,2)=80.94891316228549;
rents(362,3)=85.50323042863536;
rents(362,4)=89.73351052583175;
rents(362,5)=93.01654342313468;
rents(362,6)=96.62132864099411;
rents(362,7)=99.94340350721467;
rents(362,8)=102.25209275299125;
rents(362,9)=104.31963202360467;
incomes(362,1)=20010.42053117598;
incomes(362,2)=20209.33486809562;
incomes(362,3)=20204.638375032973;
incomes(362,4)=19830.94215457462;
incomes(362,5)=20217.385273313874;
incomes(362,6)=20173.31315285519;
incomes(362,7)=19674.673882654595;
incomes(362,8)=19612.039151327568;
incomes(362,9)=20066.523656541372;
bref(363)=8000;
bnorm(363)=38000;
incomemean(363)=12000;
rents(363,1)=101.779501933254;
rents(363,2)=80.34998484224634;
rents(363,3)=88.05854768273336;
rents(363,4)=95.21272743056574;
rents(363,5)=101.92416125905433;
rents(363,6)=108.609328598922;
rents(363,7)=115.25852542769215;
rents(363,8)=120.78713093393296;
rents(363,9)=126.16441830110801;
incomes(363,1)=21761.949143869162;
incomes(363,2)=22048.768695421906;
incomes(363,3)=21848.774384839246;
incomes(363,4)=21827.305427436302;
incomes(363,5)=22053.14874846834;
incomes(363,6)=22234.87283322008;
incomes(363,7)=21783.911676848802;
incomes(363,8)=21997.357644050462;
incomes(363,9)=21984.95321844238;
bref(364)=8000;
bnorm(364)=38000;
incomemean(364)=13000;
rents(364,1)=99.83250376672179;
rents(364,2)=78.80889858558086;
rents(364,3)=88.00640877669397;
rents(364,4)=97.06635861456826;
rents(364,5)=105.57891465360699;
rents(364,6)=113.97973712027382;
rents(364,7)=122.64326123288859;
rents(364,8)=128.9159566038558;
rents(364,9)=135.4190757148488;
incomes(364,1)=22538.165480236035;
incomes(364,2)=22585.572169178915;
incomes(364,3)=22611.88305872982;
incomes(364,4)=22413.879422323396;
incomes(364,5)=22648.94302039553;
incomes(364,6)=22990.215381852708;
incomes(364,7)=22314.36827525637;
incomes(364,8)=22666.798745669363;
incomes(364,9)=22646.25406395508;
bref(365)=8000;
bnorm(365)=38000;
incomemean(365)=14000;
rents(365,1)=100.72295393535667;
rents(365,2)=79.51750739090942;
rents(365,3)=91.16949609872961;
rents(365,4)=102.8739090259212;
rents(365,5)=114.25230865780598;
rents(365,6)=125.89818704361588;
rents(365,7)=137.68314574925284;
rents(365,8)=148.39306411127208;
rents(365,9)=157.00253817448765;
incomes(365,1)=23537.558650117433;
incomes(365,2)=24077.527333346537;
incomes(365,3)=24002.01178012302;
incomes(365,4)=24053.294961669344;
incomes(365,5)=24390.89774124644;
incomes(365,6)=24769.630119946254;
incomes(365,7)=24651.576529076057;
incomes(365,8)=24186.147667544872;
incomes(365,9)=24934.72076583853;
bref(366)=8000;
bnorm(366)=38000;
incomemean(366)=15000;
rents(366,1)=102.16058745790414;
rents(366,2)=80.64999087025404;
rents(366,3)=94.81745165191505;
rents(366,4)=109.18564881953799;
rents(366,5)=123.27378599282925;
rents(366,6)=138.192144664955;
rents(366,7)=152.30185190588054;
rents(366,8)=164.9755331570503;
rents(366,9)=176.4898279032891;
incomes(366,1)=25129.481761026876;
incomes(366,2)=25138.205068677038;
incomes(366,3)=25062.56963344981;
incomes(366,4)=24915.518622088344;
incomes(366,5)=25612.957083023914;
incomes(366,6)=25849.504871475074;
incomes(366,7)=25636.661840075925;
incomes(366,8)=25783.711897542795;
incomes(366,9)=25899.55209957284;
bref(367)=8000;
bnorm(367)=38000;
incomemean(367)=16000;
rents(367,1)=97.47443471480412;
rents(367,2)=76.95819723612871;
rents(367,3)=93.7632960944385;
rents(367,4)=110.80822436873281;
rents(367,5)=128.69749917630668;
rents(367,6)=146.83577472478666;
rents(367,7)=165.46542908261574;
rents(367,8)=181.88345927241122;
rents(367,9)=192.8310858038231;
incomes(367,1)=26067.61039987414;
incomes(367,2)=26836.128708104203;
incomes(367,3)=26419.875604960474;
incomes(367,4)=26528.853824568014;
incomes(367,5)=26868.229699814332;
incomes(367,6)=27447.43660565377;
incomes(367,7)=27297.277243811488;
incomes(367,8)=27148.324378244306;
incomes(367,9)=27662.666860088248;
bref(368)=8000;
bnorm(368)=38000;
incomemean(368)=17000;
rents(368,1)=100.37496535743117;
rents(368,2)=79.24828387948168;
rents(368,3)=100.23878220403182;
rents(368,4)=123.14185621446867;
rents(368,5)=144.71374255572437;
rents(368,6)=167.85435074591294;
rents(368,7)=190.27274784514114;
rents(368,8)=198.99493506804103;
rents(368,9)=200;
incomes(368,1)=28145.977868860857;
incomes(368,2)=28963.029035016418;
incomes(368,3)=28783.49826121841;
incomes(368,4)=27992.09997899637;
incomes(368,5)=28702.58999154208;
incomes(368,6)=29366.455957443464;
incomes(368,7)=28807.850758994653;
incomes(368,8)=29512.913771403804;
incomes(368,9)=29806.82550333759;
bref(369)=8000;
bnorm(369)=38000;
incomemean(369)=18000;
rents(369,1)=98.81582638271144;
rents(369,2)=78.00755238056223;
rents(369,3)=102.61957547440714;
rents(369,4)=129.52301851387304;
rents(369,5)=157.48641623627208;
rents(369,6)=185.366433878141;
rents(369,7)=197.92113746611463;
rents(369,8)=200;
rents(369,9)=200;
incomes(369,1)=30398.213876042486;
incomes(369,2)=31141.70164676474;
incomes(369,3)=30504.557833598992;
incomes(369,4)=30256.43400647305;
incomes(369,5)=30935.890724039782;
incomes(369,6)=31691.141854708898;
incomes(369,7)=31743.87031658539;
incomes(369,8)=31579.43423621221;
incomes(369,9)=31840.64300089527;
bref(370)=8000;
bnorm(370)=38000;
incomemean(370)=19000;
rents(370,1)=100.5949636728131;
rents(370,2)=79.4177575796609;
rents(370,3)=106.31579371340783;
rents(370,4)=137.93399760146812;
rents(370,5)=171.59184122577716;
rents(370,6)=197.50362562131437;
rents(370,7)=200;
rents(370,8)=200;
rents(370,9)=200;
incomes(370,1)=31290.1504376746;
incomes(370,2)=32187.735636726266;
incomes(370,3)=32137.440495722483;
incomes(370,4)=31807.882974275475;
incomes(370,5)=32803.99813614893;
incomes(370,6)=33236.213970684315;
incomes(370,7)=31967.758513101537;
incomes(370,8)=32235.281005519566;
incomes(370,9)=32561.84461817388;
bref(371)=8000;
bnorm(371)=41000;
incomemean(371)=10000;
rents(371,1)=97.61498909606857;
rents(371,2)=78.56633525021377;
rents(371,3)=81.85267181646752;
rents(371,4)=84.99800241176547;
rents(371,5)=87.15535333420758;
rents(371,6)=89.62063946285889;
rents(371,7)=91.94448011798673;
rents(371,8)=93.73189960063677;
rents(371,9)=94.9820378459961;
incomes(371,1)=19738.406298630412;
incomes(371,2)=19724.036739625175;
incomes(371,3)=19674.05264026574;
incomes(371,4)=19267.6056510389;
incomes(371,5)=19600.819465244233;
incomes(371,6)=19579.25990038067;
incomes(371,7)=19305.03118144666;
incomes(371,8)=19079.870273802182;
incomes(371,9)=19462.293049046242;
bref(372)=8000;
bnorm(372)=41000;
incomemean(372)=11000;
rents(372,1)=101.53451480023031;
rents(372,2)=81.72611893281588;
rents(372,3)=86.31361690901223;
rents(372,4)=90.78092917837161;
rents(372,5)=94.10785060671691;
rents(372,6)=97.49806901650173;
rents(372,7)=100.76666181865221;
rents(372,8)=103.13813272686855;
rents(372,9)=105.53892881878451;
incomes(372,1)=20382.534190321832;
incomes(372,2)=20567.080896214244;
incomes(372,3)=20616.034957231077;
incomes(372,4)=20099.111131528964;
incomes(372,5)=20282.753337351736;
incomes(372,6)=20358.767890788735;
incomes(372,7)=19921.1077800605;
incomes(372,8)=19996.082692490003;
incomes(372,9)=19933.982833165606;
bref(373)=8000;
bnorm(373)=41000;
incomemean(373)=12000;
rents(373,1)=100.72986454648914;
rents(373,2)=81.07538010506595;
rents(373,3)=87.10374783451395;
rents(373,4)=92.711510839919;
rents(373,5)=97.98744029042554;
rents(373,6)=102.92365317719403;
rents(373,7)=107.67186076484097;
rents(373,8)=111.55145249366231;
rents(373,9)=115.83697669260114;
incomes(373,1)=20614.456700065868;
incomes(373,2)=21225.975349270848;
incomes(373,3)=21099.22592475062;
incomes(373,4)=21155.46945797225;
incomes(373,5)=21041.893824630442;
incomes(373,6)=21166.244496812807;
incomes(373,7)=20741.74594211767;
incomes(373,8)=21055.359826579268;
incomes(373,9)=21530.748931905076;
bref(374)=8000;
bnorm(374)=41000;
incomemean(374)=13000;
rents(374,1)=102.7407310204756;
rents(374,2)=82.69314134679666;
rents(374,3)=91.05717825072796;
rents(374,4)=99.50373169878974;
rents(374,5)=107.41198732331567;
rents(374,6)=115.5914740471726;
rents(374,7)=123.97409935657087;
rents(374,8)=131.1623712359852;
rents(374,9)=136.7973787401043;
incomes(374,1)=22215.169746608575;
incomes(374,2)=22714.230347556284;
incomes(374,3)=22791.795687942555;
incomes(374,4)=22690.686254301396;
incomes(374,5)=23044.053204219534;
incomes(374,6)=23344.74633666014;
incomes(374,7)=23125.737818610054;
incomes(374,8)=22677.090976137657;
incomes(374,9)=22738.54490023648;
bref(375)=8000;
bnorm(375)=41000;
incomemean(375)=14000;
rents(375,1)=99.8450987850195;
rents(375,2)=80.36367466840031;
rents(375,3)=91.82017894717409;
rents(375,4)=103.63630151701837;
rents(375,5)=114.78587262165556;
rents(375,6)=126.65035449809503;
rents(375,7)=138.13398431910295;
rents(375,8)=147.24278228043954;
rents(375,9)=155.58945725932296;
incomes(375,1)=23941.040189334115;
incomes(375,2)=24346.32261138313;
incomes(375,3)=24524.688592505267;
incomes(375,4)=24172.63073553764;
incomes(375,5)=24805.466315026562;
incomes(375,6)=24910.025520929208;
incomes(375,7)=24160.20487496659;
incomes(375,8)=24478.851979569186;
incomes(375,9)=24760.118750425405;
bref(376)=8000;
bnorm(376)=41000;
incomemean(376)=15000;
rents(376,1)=101.78685848284793;
rents(376,2)=81.92358666826482;
rents(376,3)=95.45503034444633;
rents(376,4)=108.8327690977956;
rents(376,5)=122.35739508939565;
rents(376,6)=136.2584829505523;
rents(376,7)=150.21018195064752;
rents(376,8)=162.08067353896644;
rents(376,9)=172.7266423527635;
incomes(376,1)=25047.547162664992;
incomes(376,2)=25508.679554743965;
incomes(376,3)=25275.895693163708;
incomes(376,4)=25373.772790748386;
incomes(376,5)=25695.835397571747;
incomes(376,6)=26250.930716512103;
incomes(376,7)=25779.577776997634;
incomes(376,8)=25795.321711952933;
incomes(376,9)=26264.761527521547;
bref(377)=8000;
bnorm(377)=41000;
incomemean(377)=16000;
rents(377,1)=98.08596047086327;
rents(377,2)=78.95642768076078;
rents(377,3)=95.43256506994815;
rents(377,4)=113.32378883018971;
rents(377,5)=131.3538652505732;
rents(377,6)=149.5221487112649;
rents(377,7)=168.1783181087738;
rents(377,8)=183.78537558989828;
rents(377,9)=194.17298791645055;
incomes(377,1)=26795.262815443824;
incomes(377,2)=27436.571305640646;
incomes(377,3)=27513.563526341466;
incomes(377,4)=27396.77348681816;
incomes(377,5)=27610.015025703087;
incomes(377,6)=28258.0514991627;
incomes(377,7)=27735.487658739163;
incomes(377,8)=27963.91629479278;
incomes(377,9)=28238.34747703051;
bref(378)=8000;
bnorm(378)=41000;
incomemean(378)=17000;
rents(378,1)=98.81309319689929;
rents(378,2)=79.53664661092472;
rents(378,3)=98.94134090176443;
rents(378,4)=120.2503709040693;
rents(378,5)=141.52409354824846;
rents(378,6)=164.78430409601378;
rents(378,7)=187.47426604290897;
rents(378,8)=197.94875660193725;
rents(378,9)=199.53502961060252;
incomes(378,1)=28885.473181708618;
incomes(378,2)=28974.157528178974;
incomes(378,3)=28882.90775104162;
incomes(378,4)=28573.35290621768;
incomes(378,5)=29450.760861077775;
incomes(378,6)=29850.838323012897;
incomes(378,7)=29092.60620627049;
incomes(378,8)=29377.770491867126;
incomes(378,9)=29851.296056974752;
bref(379)=8000;
bnorm(379)=41000;
incomemean(379)=18000;
rents(379,1)=100.21345513368037;
rents(379,2)=80.66536147800538;
rents(379,3)=102.76605068223066;
rents(379,4)=127.11732025882006;
rents(379,5)=153.126657180169;
rents(379,6)=179.10310265922766;
rents(379,7)=197.62240181767777;
rents(379,8)=199.99957532699725;
rents(379,9)=200;
incomes(379,1)=29980.846842675983;
incomes(379,2)=30501.044072035053;
incomes(379,3)=30192.626022468674;
incomes(379,4)=30328.597695239914;
incomes(379,5)=30343.99801275099;
incomes(379,6)=31146.85679359562;
incomes(379,7)=30846.003665687014;
incomes(379,8)=30996.27076101756;
incomes(379,9)=31243.499615632187;
bref(380)=8000;
bnorm(380)=41000;
incomemean(380)=19000;
rents(380,1)=98.32599239312847;
rents(380,2)=79.15177511145171;
rents(380,3)=103.33307459978074;
rents(380,4)=131.07742484768912;
rents(380,5)=160.00627889941757;
rents(380,6)=188.9016536723302;
rents(380,7)=199.735334332478;
rents(380,8)=200;
rents(380,9)=200;
incomes(380,1)=31586.84319579871;
incomes(380,2)=31632.22206533612;
incomes(380,3)=31560.61086500433;
incomes(380,4)=31103.5022436402;
incomes(380,5)=32057.02286580538;
incomes(380,6)=32406.75591170988;
incomes(380,7)=31722.488866460768;
incomes(380,8)=31888.507166699048;
incomes(380,9)=32239.0612213694;
bref(381)=8000;
bnorm(381)=44000;
incomemean(381)=10000;
rents(381,1)=102.5126224078891;
rents(381,2)=83.86941842496255;
rents(381,3)=86.27988869559903;
rents(381,4)=88.57098629677517;
rents(381,5)=90.07476489722326;
rents(381,6)=91.84632655929224;
rents(381,7)=93.42925422508061;
rents(381,8)=94.4314748409759;
rents(381,9)=95.56167178786326;
incomes(381,1)=18932.14451443107;
incomes(381,2)=19278.190745934364;
incomes(381,3)=19348.303373464943;
incomes(381,4)=18895.00685028575;
incomes(381,5)=19186.501218660324;
incomes(381,6)=19207.193339858124;
incomes(381,7)=18813.314003748488;
incomes(381,8)=18905.310677715177;
incomes(381,9)=19120.599689092207;
bref(382)=8000;
bnorm(382)=44000;
incomemean(382)=11000;
rents(382,1)=101.69097585600638;
rents(382,2)=83.19442518109096;
rents(382,3)=87.54270155110399;
rents(382,4)=91.67569420614865;
rents(382,5)=95.10303688646563;
rents(382,6)=98.63463926626964;
rents(382,7)=102.32112997043048;
rents(382,8)=104.70661023009143;
rents(382,9)=106.68856895085409;
incomes(382,1)=20019.390013870063;
incomes(382,2)=20452.223747469336;
incomes(382,3)=20442.723372808472;
incomes(382,4)=19995.933964635915;
incomes(382,5)=20364.639823380105;
incomes(382,6)=20471.40237074761;
incomes(382,7)=19863.849424226064;
incomes(382,8)=19767.587478257654;
incomes(382,9)=20303.861926164802;
bref(383)=8000;
bnorm(383)=44000;
incomemean(383)=12000;
rents(383,1)=102.27869521529975;
rents(383,2)=83.6831478163624;
rents(383,3)=89.38605417497081;
rents(383,4)=94.88495875611045;
rents(383,5)=99.70585168825778;
rents(383,6)=105.0591385549102;
rents(383,7)=110.38091904197158;
rents(383,8)=114.64762192844367;
rents(383,9)=119.27863329297074;
incomes(383,1)=20772.811836794095;
incomes(383,2)=21403.936817195605;
incomes(383,3)=21416.32331063383;
incomes(383,4)=21145.611666251025;
incomes(383,5)=21623.287826998803;
incomes(383,6)=21790.35591429285;
incomes(383,7)=21408.286690515008;
incomes(383,8)=21612.239996088516;
incomes(383,9)=21650.2181894818;
bref(384)=8000;
bnorm(384)=44000;
incomemean(384)=13000;
rents(384,1)=99.36611323835798;
rents(384,2)=81.30001639521467;
rents(384,3)=89.36811490772614;
rents(384,4)=97.37258192951569;
rents(384,5)=105.11947932338752;
rents(384,6)=113.12136357149966;
rents(384,7)=120.28319210936407;
rents(384,8)=126.06395616157981;
rents(384,9)=130.81058438076033;
incomes(384,1)=22633.891003052;
incomes(384,2)=22865.915705938336;
incomes(384,3)=22964.307106065608;
incomes(384,4)=22769.509511484233;
incomes(384,5)=23192.516454715493;
incomes(384,6)=23140.89110234891;
incomes(384,7)=22469.83605093227;
incomes(384,8)=22290.340468771155;
incomes(384,9)=23105.176406269307;
bref(385)=8000;
bnorm(385)=44000;
incomemean(385)=14000;
rents(385,1)=100.58767332005303;
rents(385,2)=82.29753965240641;
rents(385,3)=92.42672179723904;
rents(385,4)=102.48733726749111;
rents(385,5)=112.18889506000835;
rents(385,6)=121.86526771915837;
rents(385,7)=131.64524349097954;
rents(385,8)=139.35825200625754;
rents(385,9)=147.02815809616706;
incomes(385,1)=23345.221580499572;
incomes(385,2)=24014.354731193424;
incomes(385,3)=23944.74118110778;
incomes(385,4)=23749.008912098234;
incomes(385,5)=24064.768936525077;
incomes(385,6)=24386.642888439226;
incomes(385,7)=23874.70494554898;
incomes(385,8)=24081.42970375218;
incomes(385,9)=24552.614189859218;
bref(386)=8000;
bnorm(386)=44000;
incomemean(386)=15000;
rents(386,1)=98.92834982187277;
rents(386,2)=80.9438539744349;
rents(386,3)=93.92282039228564;
rents(386,4)=107.53966682236326;
rents(386,5)=120.65174857947314;
rents(386,6)=134.83808657259206;
rents(386,7)=148.90677838261652;
rents(386,8)=160.12243322587932;
rents(386,9)=170.5472260572972;
incomes(386,1)=25308.77373640734;
incomes(386,2)=25748.085203014645;
incomes(386,3)=25761.689037807995;
incomes(386,4)=25374.80784048425;
incomes(386,5)=26125.67404818433;
incomes(386,6)=26297.622697511033;
incomes(386,7)=25500.870058590936;
incomes(386,8)=25645.57324533539;
incomes(386,9)=26046.514202785966;
bref(387)=8000;
bnorm(387)=44000;
incomemean(387)=16000;
rents(387,1)=100.745492685574;
rents(387,2)=82.42825561803724;
rents(387,3)=97.56869726308888;
rents(387,4)=113.3816169452922;
rents(387,5)=128.52754249291996;
rents(387,6)=144.96767821493242;
rents(387,7)=161.74418897939097;
rents(387,8)=175.12106050368718;
rents(387,9)=186.95882422095306;
incomes(387,1)=26572.687846920813;
incomes(387,2)=26882.14745077242;
incomes(387,3)=26714.606704756374;
incomes(387,4)=26304.821894542027;
incomes(387,5)=27162.931502293766;
incomes(387,6)=27581.309340219887;
incomes(387,7)=26688.47605640094;
incomes(387,8)=26801.12841811634;
incomes(387,9)=27287.287727073694;
bref(388)=8000;
bnorm(388)=44000;
incomemean(388)=17000;
rents(388,1)=99.93251938170941;
rents(388,2)=81.76173648759084;
rents(388,3)=99.50533673273371;
rents(388,4)=118.92592800278581;
rents(388,5)=138.5326159909574;
rents(388,6)=159.9652242466359;
rents(388,7)=180.75878849918615;
rents(388,8)=193.29227232949754;
rents(388,9)=198.65373482787155;
incomes(388,1)=28122.039416534913;
incomes(388,2)=28606.358639580416;
incomes(388,3)=28745.718618809507;
incomes(388,4)=28281.27893650925;
incomes(388,5)=29228.275189787277;
incomes(388,6)=29458.123382763875;
incomes(388,7)=28458.34496343826;
incomes(388,8)=28971.02071103343;
incomes(388,9)=29444.81295540553;
bref(389)=8000;
bnorm(389)=44000;
incomemean(389)=18000;
rents(389,1)=101.54236599887687;
rents(389,2)=83.08022889008811;
rents(389,3)=103.7401593987354;
rents(389,4)=126.51454455438211;
rents(389,5)=149.93879026105526;
rents(389,6)=174.3546074414661;
rents(389,7)=193.37108989815925;
rents(389,8)=199.6900750381186;
rents(389,9)=200;
incomes(389,1)=29996.195212602976;
incomes(389,2)=29994.917750247183;
incomes(389,3)=29973.668909918946;
incomes(389,4)=29844.203719891437;
incomes(389,5)=30542.28878469873;
incomes(389,6)=30374.913901107397;
incomes(389,7)=30038.470063031327;
incomes(389,8)=30437.458191366142;
incomes(389,9)=31283.029885395397;
bref(390)=8000;
bnorm(390)=44000;
incomemean(390)=19000;
rents(390,1)=99.91181645237367;
rents(390,2)=81.74558411611416;
rents(390,3)=104.75853661387379;
rents(390,4)=131.08436234793976;
rents(390,5)=158.66763702906272;
rents(390,6)=188.57169613169555;
rents(390,7)=199.73810705127406;
rents(390,8)=200;
rents(390,9)=200;
incomes(390,1)=31821.277176415937;
incomes(390,2)=31833.18756668888;
incomes(390,3)=31903.257638834944;
incomes(390,4)=31480.851836838323;
incomes(390,5)=32375.005843248957;
incomes(390,6)=33044.47930246324;
incomes(390,7)=32778.65795840502;
incomes(390,8)=32776.50819908112;
incomes(390,9)=33133.21579904542;
bref(391)=8000;
bnorm(391)=47000;
incomemean(391)=10000;
rents(391,1)=97.21761008437812;
rents(391,2)=80.67185569093304;
rents(391,3)=83.18921532175025;
rents(391,4)=85.44135411317244;
rents(391,5)=87.39211399954395;
rents(391,6)=89.50313648374484;
rents(391,7)=91.22096857424191;
rents(391,8)=91.89089932402847;
rents(391,9)=92.91224421121113;
incomes(391,1)=19020.468119669113;
incomes(391,2)=19576.600320096466;
incomes(391,3)=19437.562171477195;
incomes(391,4)=19334.81898723671;
incomes(391,5)=19553.210700665706;
incomes(391,6)=19408.978348587716;
incomes(391,7)=18847.046138557525;
incomes(391,8)=18899.95368630419;
incomes(391,9)=19263.63306402508;
bref(392)=8000;
bnorm(392)=47000;
incomemean(392)=11000;
rents(392,1)=100.15028612584828;
rents(392,2)=83.10138401807833;
rents(392,3)=86.57154926747755;
rents(392,4)=89.22891666960619;
rents(392,5)=91.55473012884151;
rents(392,6)=93.87222850094012;
rents(392,7)=96.07386152089133;
rents(392,8)=97.86084802164605;
rents(392,9)=99.29870160020297;
incomes(392,1)=19722.266180574752;
incomes(392,2)=20112.160461293293;
incomes(392,3)=19748.62044786107;
incomes(392,4)=19607.74408813961;
incomes(392,5)=19708.905765125946;
incomes(392,6)=19809.374388160493;
incomes(392,7)=19482.087397520718;
incomes(392,8)=19272.381977278565;
incomes(392,9)=19557.515118008985;
bref(393)=8000;
bnorm(393)=47000;
incomemean(393)=12000;
rents(393,1)=102.258191475879;
rents(393,2)=84.85467439914213;
rents(393,3)=90.29126814919945;
rents(393,4)=95.48387088519887;
rents(393,5)=100.317921316377;
rents(393,6)=105.15743700853372;
rents(393,7)=110.00261419207554;
rents(393,8)=113.9884282254193;
rents(393,9)=118.08840448046882;
incomes(393,1)=21151.71849212474;
incomes(393,2)=21385.944632713752;
incomes(393,3)=21349.662141940593;
incomes(393,4)=21254.111166442577;
incomes(393,5)=21408.300298458573;
incomes(393,6)=21568.556830522666;
incomes(393,7)=21153.474615254523;
incomes(393,8)=21409.672415041136;
incomes(393,9)=21671.3163381028;
bref(394)=8000;
bnorm(394)=47000;
incomemean(394)=13000;
rents(394,1)=98.42983216717285;
rents(394,2)=81.67239596393092;
rents(394,3)=89.19819126389447;
rents(394,4)=96.55723623694486;
rents(394,5)=103.24330570668656;
rents(394,6)=109.99135368162896;
rents(394,7)=116.72904449654132;
rents(394,8)=121.20428055286175;
rents(394,9)=126.62489081497618;
incomes(394,1)=22324.91310101782;
incomes(394,2)=22749.88527586293;
incomes(394,3)=22625.14573172476;
incomes(394,4)=22299.15625633318;
incomes(394,5)=22607.552841280587;
incomes(394,6)=22747.024061827728;
incomes(394,7)=21721.37817145597;
incomes(394,8)=22551.129732173853;
incomes(394,9)=22750.088938293688;
bref(395)=8000;
bnorm(395)=47000;
incomemean(395)=14000;
rents(395,1)=99.12025141800781;
rents(395,2)=82.24809836877456;
rents(395,3)=92.21599765285247;
rents(395,4)=102.01381402677887;
rents(395,5)=111.78558167797716;
rents(395,6)=121.58048552489885;
rents(395,7)=130.54874085564666;
rents(395,8)=138.54893554391293;
rents(395,9)=145.9719754565037;
incomes(395,1)=23620.58620401941;
incomes(395,2)=24494.190826330036;
incomes(395,3)=24367.57130433061;
incomes(395,4)=24337.788284369395;
incomes(395,5)=24631.924011570445;
incomes(395,6)=24476.419255454035;
incomes(395,7)=24311.491263977183;
incomes(395,8)=24379.477917381882;
incomes(395,9)=24246.952478287305;
bref(396)=8000;
bnorm(396)=47000;
incomemean(396)=15000;
rents(396,1)=102.08016601160253;
rents(396,2)=84.70917219244564;
rents(396,3)=96.45785603488447;
rents(396,4)=109.03223392871995;
rents(396,5)=121.32026096668343;
rents(396,6)=133.01983179618802;
rents(396,7)=144.76943674517867;
rents(396,8)=155.4256508197491;
rents(396,9)=164.92956666620336;
incomes(396,1)=25144.45121512612;
incomes(396,2)=25479.91134202195;
incomes(396,3)=25770.356135588256;
incomes(396,4)=25523.116428465568;
incomes(396,5)=25490.192840680575;
incomes(396,6)=25935.530701267446;
incomes(396,7)=25553.65389628374;
incomes(396,8)=25565.727808102154;
incomes(396,9)=26164.56274898591;
bref(397)=8000;
bnorm(397)=47000;
incomemean(397)=16000;
rents(397,1)=100.37499385635849;
rents(397,2)=83.29583582773955;
rents(397,3)=98.58308447898379;
rents(397,4)=114.03198246252367;
rents(397,5)=129.6973272664105;
rents(397,6)=146.2839791187439;
rents(397,7)=162.37850989424402;
rents(397,8)=176.22836374643748;
rents(397,9)=187.99828216685572;
incomes(397,1)=26843.573818248344;
incomes(397,2)=27659.930169164363;
incomes(397,3)=27205.879286614032;
incomes(397,4)=26969.740655363104;
incomes(397,5)=27584.43669009959;
incomes(397,6)=27696.86401488448;
incomes(397,7)=27194.798571828484;
incomes(397,8)=27016.646890536213;
incomes(397,9)=27943.542493107165;
bref(398)=8000;
bnorm(398)=47000;
incomemean(398)=17000;
rents(398,1)=103.32224497444814;
rents(398,2)=85.72872028506194;
rents(398,3)=104.06311366493861;
rents(398,4)=123.03094009426648;
rents(398,5)=141.8779488195047;
rents(398,6)=161.480483422409;
rents(398,7)=181.03771440299516;
rents(398,8)=195.29236373447478;
rents(398,9)=199.613502233136;
incomes(398,1)=28403.690371654026;
incomes(398,2)=29418.56550861348;
incomes(398,3)=28877.464824834453;
incomes(398,4)=28635.111363578308;
incomes(398,5)=28993.512781313515;
incomes(398,6)=29434.021322919634;
incomes(398,7)=29196.825202590993;
incomes(398,8)=29789.434265622065;
incomes(398,9)=29582.16686774516;
bref(399)=8000;
bnorm(399)=47000;
incomemean(399)=18000;
rents(399,1)=99.92743304875266;
rents(399,2)=82.91509387863827;
rents(399,3)=101.91430941162047;
rents(399,4)=123.0279115012581;
rents(399,5)=144.89213180318936;
rents(399,6)=168.62252399817172;
rents(399,7)=189.96805148144924;
rents(399,8)=199.54367806506752;
rents(399,9)=200;
incomes(399,1)=29615.856526222145;
incomes(399,2)=30001.67017925179;
incomes(399,3)=30058.71666633736;
incomes(399,4)=29677.937477951375;
incomes(399,5)=30484.770422111862;
incomes(399,6)=30342.7977140977;
incomes(399,7)=30122.47852075558;
incomes(399,8)=30315.39706035043;
incomes(399,9)=30592.735736283186;
bref(400)=8000;
bnorm(400)=47000;
incomemean(400)=19000;
rents(400,1)=102.57648213009688;
rents(400,2)=85.12967063236664;
rents(400,3)=108.32009307767437;
rents(400,4)=134.29491421903404;
rents(400,5)=161.51963845574443;
rents(400,6)=188.71436917188888;
rents(400,7)=199.5454629395224;
rents(400,8)=200;
rents(400,9)=200;
incomes(400,1)=31839.5110185404;
incomes(400,2)=32615.314705541903;
incomes(400,3)=32310.951164852304;
incomes(400,4)=31928.491976778005;
incomes(400,5)=32615.20519466647;
incomes(400,6)=33345.634444778116;
incomes(400,7)=32251.672924403367;
incomes(400,8)=31625.079024752828;
incomes(400,9)=32678.091682364826;
bref(401)=9000;
bnorm(401)=20000;
incomemean(401)=10000;
rents(401,1)=99.91501742330868;
rents(401,2)=55.10423824690072;
rents(401,3)=60.88127928425116;
rents(401,4)=65.59096776905537;
rents(401,5)=69.30463321251082;
rents(401,6)=72.93109112687887;
rents(401,7)=75.234511707864;
rents(401,8)=75.94305982637854;
rents(401,9)=76.73484933711772;
incomes(401,1)=19191.558564335537;
incomes(401,2)=19655.651799849573;
incomes(401,3)=19298.00777696019;
incomes(401,4)=19225.188431384264;
incomes(401,5)=19383.75319947963;
incomes(401,6)=19149.16199376503;
incomes(401,7)=18704.067680348304;
incomes(401,8)=18862.64982891764;
incomes(401,9)=18966.16642402043;
bref(402)=9000;
bnorm(402)=20000;
incomemean(402)=11000;
rents(402,1)=100.58673079864647;
rents(402,2)=55.463165085443244;
rents(402,3)=63.13724453259818;
rents(402,4)=69.74689529098059;
rents(402,5)=74.96749544231727;
rents(402,6)=80.70903933167618;
rents(402,7)=85.32088045755556;
rents(402,8)=87.66715383450412;
rents(402,9)=90.17583804875626;
incomes(402,1)=20000.243616173477;
incomes(402,2)=20461.642258869433;
incomes(402,3)=20128.687559981834;
incomes(402,4)=19895.565592040493;
incomes(402,5)=20336.033483933577;
incomes(402,6)=20272.809775643378;
incomes(402,7)=19814.853138294162;
incomes(402,8)=19899.17288798702;
incomes(402,9)=19799.496975524733;
bref(403)=9000;
bnorm(403)=20000;
incomemean(403)=12000;
rents(403,1)=101.24802540311501;
rents(403,2)=55.87227360558894;
rents(403,3)=66.71187475208694;
rents(403,4)=76.90845366297948;
rents(403,5)=85.94065500157792;
rents(403,6)=94.48997549703444;
rents(403,7)=102.19081949264238;
rents(403,8)=107.05972163221102;
rents(403,9)=111.47235693139183;
incomes(403,1)=21489.96636881675;
incomes(403,2)=21708.63192328476;
incomes(403,3)=21475.182752688164;
incomes(403,4)=21439.768480708557;
incomes(403,5)=21467.81066303411;
incomes(403,6)=21679.10575180152;
incomes(403,7)=21350.20716065279;
incomes(403,8)=21317.726737512345;
incomes(403,9)=21779.794403728538;
bref(404)=9000;
bnorm(404)=20000;
incomemean(404)=13000;
rents(404,1)=100.63993587744656;
rents(404,2)=55.58755089597883;
rents(404,3)=69.7763523121846;
rents(404,4)=83.99250280830378;
rents(404,5)=96.8518485811453;
rents(404,6)=108.13880708411689;
rents(404,7)=120.43074842371902;
rents(404,8)=128.65187696560346;
rents(404,9)=134.42704078290527;
incomes(404,1)=22404.17137292819;
incomes(404,2)=23109.585363586302;
incomes(404,3)=22869.459291665404;
incomes(404,4)=22712.84457239167;
incomes(404,5)=22735.69165467332;
incomes(404,6)=23290.66162097886;
incomes(404,7)=22967.761888510533;
incomes(404,8)=22984.608744340123;
incomes(404,9)=23438.363315959195;
bref(405)=9000;
bnorm(405)=20000;
incomemean(405)=14000;
rents(405,1)=101.19869341019765;
rents(405,2)=55.661207720165784;
rents(405,3)=72.72094262344419;
rents(405,4)=89.75358502622986;
rents(405,5)=107.87946022917663;
rents(405,6)=125.77180661361773;
rents(405,7)=141.07977866269968;
rents(405,8)=150.62640538262823;
rents(405,9)=159.71216973997505;
incomes(405,1)=23625.295565446322;
incomes(405,2)=24045.619763328385;
incomes(405,3)=23458.78543518139;
incomes(405,4)=23946.80835686334;
incomes(405,5)=24352.713617557787;
incomes(405,6)=24402.211781719154;
incomes(405,7)=23739.276392958705;
incomes(405,8)=24141.605349314457;
incomes(405,9)=24371.026791357865;
bref(406)=9000;
bnorm(406)=20000;
incomemean(406)=15000;
rents(406,1)=100.58702843056798;
rents(406,2)=55.39559276024996;
rents(406,3)=76.63797387273085;
rents(406,4)=100.46532646541627;
rents(406,5)=124.63984658964891;
rents(406,6)=149.26327121979847;
rents(406,7)=170.3054888297226;
rents(406,8)=182.75875555684166;
rents(406,9)=187.6463932721474;
incomes(406,1)=25531.137129726492;
incomes(406,2)=25963.944056803426;
incomes(406,3)=25688.28646046054;
incomes(406,4)=25572.420109940977;
incomes(406,5)=26300.726740654667;
incomes(406,6)=26616.544548760863;
incomes(406,7)=26084.874121784032;
incomes(406,8)=25794.56037819548;
incomes(406,9)=26280.05361820193;
bref(407)=9000;
bnorm(407)=20000;
incomemean(407)=16000;
rents(407,1)=101.54973666058522;
rents(407,2)=56.045902604981904;
rents(407,3)=82.34301848236547;
rents(407,4)=113.21671977268639;
rents(407,5)=145.26870549696287;
rents(407,6)=179.39448349351417;
rents(407,7)=197.0893027859945;
rents(407,8)=200;
rents(407,9)=200;
incomes(407,1)=27574.3288819358;
incomes(407,2)=27772.789800037972;
incomes(407,3)=27379.65807818088;
incomes(407,4)=27408.550958682445;
incomes(407,5)=28478.73646418986;
incomes(407,6)=28758.889604374686;
incomes(407,7)=28071.978087536758;
incomes(407,8)=27759.738806060952;
incomes(407,9)=27823.640282402706;
bref(408)=9000;
bnorm(408)=20000;
incomemean(408)=17000;
rents(408,1)=100.17093326465417;
rents(408,2)=55.11937328436291;
rents(408,3)=83.08240268854698;
rents(408,4)=118.20397045219346;
rents(408,5)=155.57620806884032;
rents(408,6)=191.567510812323;
rents(408,7)=200;
rents(408,8)=200;
rents(408,9)=200;
incomes(408,1)=28002.52278809987;
incomes(408,2)=28604.52875618757;
incomes(408,3)=28526.260788332216;
incomes(408,4)=28487.800883637494;
incomes(408,5)=29207.752596440274;
incomes(408,6)=29891.787911921514;
incomes(408,7)=29927.902365156882;
incomes(408,8)=29338.77402688689;
incomes(408,9)=30072.20725880772;
bref(409)=9000;
bnorm(409)=20000;
incomemean(409)=18000;
rents(409,1)=99.10859763375792;
rents(409,2)=54.60783410200616;
rents(409,3)=86.60814015742434;
rents(409,4)=130.01955078672023;
rents(409,5)=176.85904667540575;
rents(409,6)=200;
rents(409,7)=200;
rents(409,8)=200;
rents(409,9)=200;
incomes(409,1)=29646.721904186557;
incomes(409,2)=30310.731453400214;
incomes(409,3)=30599.04256576651;
incomes(409,4)=30270.85946777046;
incomes(409,5)=30744.708480732803;
incomes(409,6)=31509.74423950581;
incomes(409,7)=30904.95855564408;
incomes(409,8)=31080.064418531536;
incomes(409,9)=31391.51891637554;
bref(410)=9000;
bnorm(410)=20000;
incomemean(410)=19000;
rents(410,1)=99.19369424746596;
rents(410,2)=54.85732994886993;
rents(410,3)=90.89692546938312;
rents(410,4)=140.0367035359122;
rents(410,5)=193.29734064915925;
rents(410,6)=200;
rents(410,7)=200;
rents(410,8)=200;
rents(410,9)=200;
incomes(410,1)=31758.32637276441;
incomes(410,2)=31915.62587771406;
incomes(410,3)=31619.381896113806;
incomes(410,4)=31976.07554850115;
incomes(410,5)=33202.95879942747;
incomes(410,6)=33150.96012855439;
incomes(410,7)=32247.46986571801;
incomes(410,8)=32491.053395115454;
incomes(410,9)=32788.27447541491;
bref(411)=9000;
bnorm(411)=23000;
incomemean(411)=10000;
rents(411,1)=98.68980022144346;
rents(411,2)=60.08376755669027;
rents(411,3)=64.7591454379461;
rents(411,4)=68.83252616226578;
rents(411,5)=71.14732880100803;
rents(411,6)=74.13490427207479;
rents(411,7)=76.82647464962764;
rents(411,8)=78.20094717392502;
rents(411,9)=78.53811627788141;
incomes(411,1)=19317.826816605986;
incomes(411,2)=19594.25070169211;
incomes(411,3)=19504.138655917763;
incomes(411,4)=18889.495745436;
incomes(411,5)=19290.42805112063;
incomes(411,6)=19450.363161541336;
incomes(411,7)=19037.504309168376;
incomes(411,8)=18831.472705824686;
incomes(411,9)=19260.29855728936;
bref(412)=9000;
bnorm(412)=23000;
incomemean(412)=11000;
rents(412,1)=98.87999882181401;
rents(412,2)=60.18869140743421;
rents(412,3)=67.62002614257038;
rents(412,4)=74.3355032135994;
rents(412,5)=80.06896708207859;
rents(412,6)=85.58292316329327;
rents(412,7)=90.85954891563483;
rents(412,8)=93.45348864885375;
rents(412,9)=95.26055548667746;
incomes(412,1)=20381.061623745987;
incomes(412,2)=20763.956597381573;
incomes(412,3)=20635.981468021026;
incomes(412,4)=20451.392098559274;
incomes(412,5)=20653.462183184227;
incomes(412,6)=20832.85647223517;
incomes(412,7)=20098.40766479669;
incomes(412,8)=20081.926937355704;
incomes(412,9)=20300.099592272843;
bref(413)=9000;
bnorm(413)=23000;
incomemean(413)=12000;
rents(413,1)=97.57312630111784;
rents(413,2)=59.395247453611866;
rents(413,3)=68.87072161033821;
rents(413,4)=77.64458671108058;
rents(413,5)=85.26530016597299;
rents(413,6)=92.68125245020252;
rents(413,7)=98.31057041733014;
rents(413,8)=102.25914278428179;
rents(413,9)=106.07788662739009;
incomes(413,1)=20951.318713929897;
incomes(413,2)=21665.153656542152;
incomes(413,3)=21431.148159096374;
incomes(413,4)=21195.56212951697;
incomes(413,5)=21540.356211425482;
incomes(413,6)=21329.449554066454;
incomes(413,7)=21048.459709285424;
incomes(413,8)=21170.215674342588;
incomes(413,9)=21483.890657058513;
bref(414)=9000;
bnorm(414)=23000;
incomemean(414)=13000;
rents(414,1)=102.53343573857617;
rents(414,2)=62.40768123501694;
rents(414,3)=74.68035322400982;
rents(414,4)=86.85682296406186;
rents(414,5)=97.85318515272591;
rents(414,6)=109.72234909851807;
rents(414,7)=120.9493091904653;
rents(414,8)=128.2269784458785;
rents(414,9)=135.87027693257755;
incomes(414,1)=22694.059826783312;
incomes(414,2)=22726.161347947418;
incomes(414,3)=22682.793118895435;
incomes(414,4)=22399.175954942755;
incomes(414,5)=23210.99179969819;
incomes(414,6)=23434.119821940836;
incomes(414,7)=22791.829640308388;
incomes(414,8)=23247.22736496885;
incomes(414,9)=23391.152533035063;
bref(415)=9000;
bnorm(415)=23000;
incomemean(415)=14000;
rents(415,1)=100.94956880705125;
rents(415,2)=61.44526564628448;
rents(415,3)=76.75036568748754;
rents(415,4)=91.63591559275444;
rents(415,5)=105.62705069632528;
rents(415,6)=119.4990856771414;
rents(415,7)=131.29390850503324;
rents(415,8)=139.42916164138836;
rents(415,9)=147.20105669775512;
incomes(415,1)=23477.95438490701;
incomes(415,2)=23942.74269241148;
incomes(415,3)=23492.344352236214;
incomes(415,4)=23389.031134287517;
incomes(415,5)=23748.284093477363;
incomes(415,6)=23708.015905572363;
incomes(415,7)=23488.027318142347;
incomes(415,8)=23791.239341298522;
incomes(415,9)=23888.456037415195;
bref(416)=9000;
bnorm(416)=23000;
incomemean(416)=15000;
rents(416,1)=99.09490242814567;
rents(416,2)=60.31953124442031;
rents(416,3)=79.10252150962218;
rents(416,4)=100.47506213586092;
rents(416,5)=120.61382668231158;
rents(416,6)=142.00654083545527;
rents(416,7)=161.55743699395822;
rents(416,8)=173.49739847885752;
rents(416,9)=183.2911292478373;
incomes(416,1)=25469.528811914624;
incomes(416,2)=25571.596060147313;
incomes(416,3)=25832.007773413003;
incomes(416,4)=25327.49613700527;
incomes(416,5)=26082.89840475785;
incomes(416,6)=26499.07857164684;
incomes(416,7)=25801.269402308317;
incomes(416,8)=26082.160814221643;
incomes(416,9)=26415.014365755575;
bref(417)=9000;
bnorm(417)=23000;
incomemean(417)=16000;
rents(417,1)=101.40219911722569;
rents(417,2)=61.72660378700701;
rents(417,3)=84.67257550101777;
rents(417,4)=111.40506789244058;
rents(417,5)=138.7500467434797;
rents(417,6)=164.82699043311405;
rents(417,7)=186.4650956043409;
rents(417,8)=195.85482801803442;
rents(417,9)=199.55001452504507;
incomes(417,1)=26729.474946437218;
incomes(417,2)=27278.952457541138;
incomes(417,3)=27364.131286905547;
incomes(417,4)=27175.889444462657;
incomes(417,5)=27560.263547412585;
incomes(417,6)=28072.91163217783;
incomes(417,7)=27925.455319021894;
incomes(417,8)=27949.655034798358;
incomes(417,9)=27635.416287537384;
bref(418)=9000;
bnorm(418)=23000;
incomemean(418)=17000;
rents(418,1)=104.04022495025457;
rents(418,2)=63.32451783046852;
rents(418,3)=91.23678342372776;
rents(418,4)=124.67504032901007;
rents(418,5)=157.44997718397082;
rents(418,6)=189.09267767476985;
rents(418,7)=199.78412681416413;
rents(418,8)=200;
rents(418,9)=200;
incomes(418,1)=28967.237671288975;
incomes(418,2)=29176.892611501742;
incomes(418,3)=29080.995222210364;
incomes(418,4)=28512.71761071658;
incomes(418,5)=29169.514087857748;
incomes(418,6)=30290.662545043466;
incomes(418,7)=29413.27156977091;
incomes(418,8)=29480.86322884206;
incomes(418,9)=30001.61160456282;
bref(419)=9000;
bnorm(419)=23000;
incomemean(419)=18000;
rents(419,1)=97.84156972739592;
rents(419,2)=59.564217473744705;
rents(419,3)=88.94049883624939;
rents(419,4)=126.3498769775472;
rents(419,5)=165.79743771548186;
rents(419,6)=196.29644997167398;
rents(419,7)=200;
rents(419,8)=200;
rents(419,9)=200;
incomes(419,1)=30078.573175290272;
incomes(419,2)=30197.69355084136;
incomes(419,3)=30275.33693126977;
incomes(419,4)=29688.994892555515;
incomes(419,5)=30242.28441799004;
incomes(419,6)=31413.411438992847;
incomes(419,7)=30825.217004607133;
incomes(419,8)=30331.476849924653;
incomes(419,9)=31081.415263614752;
bref(420)=9000;
bnorm(420)=23000;
incomemean(420)=19000;
rents(420,1)=100.32730259860817;
rents(420,2)=61.0638053547623;
rents(420,3)=97.15774475434641;
rents(420,4)=143.3749683233334;
rents(420,5)=193.25943342428926;
rents(420,6)=200;
rents(420,7)=200;
rents(420,8)=200;
rents(420,9)=200;
incomes(420,1)=32526.3784447359;
incomes(420,2)=32747.083271942432;
incomes(420,3)=32166.929556167204;
incomes(420,4)=32465.042830927072;
incomes(420,5)=33377.22219227951;
incomes(420,6)=33458.26789821902;
incomes(420,7)=32766.325464935628;
incomes(420,8)=33299.755429898854;
incomes(420,9)=33515.207785936735;
bref(421)=9000;
bnorm(421)=26000;
incomemean(421)=10000;
rents(421,1)=99.49979828792732;
rents(421,2)=65.06196556389997;
rents(421,3)=69.13768955204226;
rents(421,4)=72.20982918957462;
rents(421,5)=74.40725021129894;
rents(421,6)=76.69795235733027;
rents(421,7)=78.61836325129326;
rents(421,8)=78.71359522453008;
rents(421,9)=79.14378646824026;
incomes(421,1)=19289.611681928192;
incomes(421,2)=19733.43545992146;
incomes(421,3)=19345.45038467592;
incomes(421,4)=19196.378428352553;
incomes(421,5)=19300.90755465375;
incomes(421,6)=19403.587535366813;
incomes(421,7)=18698.47545357546;
incomes(421,8)=18780.53693438999;
incomes(421,9)=19284.371503421302;
bref(422)=9000;
bnorm(422)=26000;
incomemean(422)=11000;
rents(422,1)=102.05917910964183;
rents(422,2)=66.72909232511576;
rents(422,3)=72.78872332296845;
rents(422,4)=77.51620049856697;
rents(422,5)=81.4643806950211;
rents(422,6)=85.62807047270384;
rents(422,7)=88.62130596004344;
rents(422,8)=90.71054200420062;
rents(422,9)=91.85238569678984;
incomes(422,1)=20240.5986088916;
incomes(422,2)=20762.527738430068;
incomes(422,3)=20329.599086127622;
incomes(422,4)=20188.224690885778;
incomes(422,5)=20501.228836059185;
incomes(422,6)=20304.537873888006;
incomes(422,7)=20119.023237904894;
incomes(422,8)=19837.91956288709;
incomes(422,9)=20179.001957754394;
bref(423)=9000;
bnorm(423)=26000;
incomemean(423)=12000;
rents(423,1)=100.2298697692018;
rents(423,2)=65.53122671769768;
rents(423,3)=73.11049699081705;
rents(423,4)=80.34625032142281;
rents(423,5)=85.63990758984215;
rents(423,6)=91.74040828261542;
rents(423,7)=97.22434551717787;
rents(423,8)=102.3051107471911;
rents(423,9)=105.67450925046339;
incomes(423,1)=21218.134898158725;
incomes(423,2)=21284.76586517041;
incomes(423,3)=21288.317219060682;
incomes(423,4)=20765.083598186397;
incomes(423,5)=21305.347932257802;
incomes(423,6)=21320.226062182224;
incomes(423,7)=21443.24934812018;
incomes(423,8)=21048.083751726303;
incomes(423,9)=21118.20936184634;
bref(424)=9000;
bnorm(424)=26000;
incomemean(424)=13000;
rents(424,1)=99.11955286919778;
rents(424,2)=64.79866709793234;
rents(424,3)=76.74143506371328;
rents(424,4)=88.08514060872075;
rents(424,5)=98.14337822008157;
rents(424,6)=107.73635575753403;
rents(424,7)=117.44124465173795;
rents(424,8)=124.82653933630777;
rents(424,9)=131.18573179650338;
incomes(424,1)=23095.984070383864;
incomes(424,2)=23347.15828344396;
incomes(424,3)=23001.009400919116;
incomes(424,4)=22802.019661320675;
incomes(424,5)=22944.467568621672;
incomes(424,6)=23414.929881012416;
incomes(424,7)=23052.053717965948;
incomes(424,8)=23137.76397683764;
incomes(424,9)=23602.372015276072;
bref(425)=9000;
bnorm(425)=26000;
incomemean(425)=14000;
rents(425,1)=98.90128584481295;
rents(425,2)=64.66608443039938;
rents(425,3)=79.09201597270933;
rents(425,4)=93.32735532291319;
rents(425,5)=106.38292364937779;
rents(425,6)=120.57099756608997;
rents(425,7)=133.74974914054468;
rents(425,8)=142.88205274270695;
rents(425,9)=152.18265867195737;
incomes(425,1)=23827.323399099638;
incomes(425,2)=24460.848136195113;
incomes(425,3)=24164.587768970403;
incomes(425,4)=23808.425703171393;
incomes(425,5)=24562.701619579828;
incomes(425,6)=24810.745501335205;
incomes(425,7)=24113.570312710224;
incomes(425,8)=24618.02697733407;
incomes(425,9)=24938.514152689782;
bref(426)=9000;
bnorm(426)=26000;
incomemean(426)=15000;
rents(426,1)=98.44800029343062;
rents(426,2)=64.36510254642057;
rents(426,3)=82.48884619495635;
rents(426,4)=101.60345251509621;
rents(426,5)=120.01823093948971;
rents(426,6)=139.49408407312072;
rents(426,7)=156.5555091833091;
rents(426,8)=169.41229313486886;
rents(426,9)=178.05961311038817;
incomes(426,1)=25246.215046223984;
incomes(426,2)=26021.672463619678;
incomes(426,3)=25745.923487857755;
incomes(426,4)=25347.959953523074;
incomes(426,5)=26026.811990452105;
incomes(426,6)=26203.772310363605;
incomes(426,7)=25917.54235048857;
incomes(426,8)=25785.39173466561;
incomes(426,9)=25834.796207071013;
bref(427)=9000;
bnorm(427)=26000;
incomemean(427)=16000;
rents(427,1)=101.95035199741197;
rents(427,2)=66.6603283048533;
rents(427,3)=87.48050732829215;
rents(427,4)=109.51432387145837;
rents(427,5)=132.2916598657732;
rents(427,6)=154.53445904370807;
rents(427,7)=173.87402888388206;
rents(427,8)=186.7604846706432;
rents(427,9)=194.79565829639932;
incomes(427,1)=26867.593126736552;
incomes(427,2)=27124.330815699992;
incomes(427,3)=26775.28115508116;
incomes(427,4)=26768.99285810736;
incomes(427,5)=27193.8418305898;
incomes(427,6)=27320.883422365616;
incomes(427,7)=26820.167378482452;
incomes(427,8)=27237.6871162886;
incomes(427,9)=27956.689801992696;
bref(428)=9000;
bnorm(428)=26000;
incomemean(428)=17000;
rents(428,1)=101.3776787265937;
rents(428,2)=66.28664768437106;
rents(428,3)=90.17256621079565;
rents(428,4)=117.26432592176543;
rents(428,5)=146.6820402335441;
rents(428,6)=176.25691056432566;
rents(428,7)=195.63578105998192;
rents(428,8)=199.30154341659357;
rents(428,9)=200;
incomes(428,1)=27872.09106960715;
incomes(428,2)=28415.055763803728;
incomes(428,3)=28125.33263157009;
incomes(428,4)=28527.773178986106;
incomes(428,5)=29025.707827451577;
incomes(428,6)=29158.706482626694;
incomes(428,7)=29323.351670533786;
incomes(428,8)=29442.7816273157;
incomes(428,9)=29541.08540751456;
bref(429)=9000;
bnorm(429)=26000;
incomemean(429)=18000;
rents(429,1)=99.07554188534958;
rents(429,2)=64.77949503673666;
rents(429,3)=92.40287457140032;
rents(429,4)=124.99091047634337;
rents(429,5)=158.78139315480766;
rents(429,6)=190.09014447427035;
rents(429,7)=200;
rents(429,8)=200;
rents(429,9)=200;
incomes(429,1)=29854.353850569336;
incomes(429,2)=30159.976530343956;
incomes(429,3)=29805.46731648391;
incomes(429,4)=29553.302628376103;
incomes(429,5)=29968.996896226825;
incomes(429,6)=31091.116363080288;
incomes(429,7)=30606.2225233168;
incomes(429,8)=29836.006635664133;
incomes(429,9)=30613.801553930083;
bref(430)=9000;
bnorm(430)=26000;
incomemean(430)=19000;
rents(430,1)=98.71071366848376;
rents(430,2)=64.5397548048253;
rents(430,3)=95.77464241982993;
rents(430,4)=134.89608863639168;
rents(430,5)=173.81275516763066;
rents(430,6)=199.00787927065454;
rents(430,7)=200;
rents(430,8)=200;
rents(430,9)=200;
incomes(430,1)=31244.3498872214;
incomes(430,2)=31931.363203589168;
incomes(430,3)=31872.564709667266;
incomes(430,4)=30668.58711570606;
incomes(430,5)=32124.55650804554;
incomes(430,6)=33151.341468850194;
incomes(430,7)=32269.272270833768;
incomes(430,8)=32580.991732537757;
incomes(430,9)=32793.56659160976;
bref(431)=9000;
bnorm(431)=29000;
incomemean(431)=10000;
rents(431,1)=100.55517961229816;
rents(431,2)=69.35496236585755;
rents(431,3)=72.2673219887221;
rents(431,4)=74.52074597968048;
rents(431,5)=76.58862697964044;
rents(431,6)=78.60384532647923;
rents(431,7)=80.09020056766487;
rents(431,8)=80.24894080894028;
rents(431,9)=80.25516477371994;
incomes(431,1)=19218.20513369052;
incomes(431,2)=19614.956140914608;
incomes(431,3)=19390.416998364668;
incomes(431,4)=19422.90888111793;
incomes(431,5)=19502.026901902682;
incomes(431,6)=19447.108509994807;
incomes(431,7)=18913.041596134786;
incomes(431,8)=18899.560863459137;
incomes(431,9)=19079.33231716139;
bref(432)=9000;
bnorm(432)=29000;
incomemean(432)=11000;
rents(432,1)=101.92205064855284;
rents(432,2)=70.29417753411238;
rents(432,3)=75.39823096516176;
rents(432,4)=79.56527298984709;
rents(432,5)=82.71256800056811;
rents(432,6)=86.31341220795379;
rents(432,7)=89.42477373472376;
rents(432,8)=90.94176853492365;
rents(432,9)=92.89396247681375;
incomes(432,1)=20498.34163719105;
incomes(432,2)=20736.845096998444;
incomes(432,3)=20523.4776093729;
incomes(432,4)=20193.64189125109;
incomes(432,5)=20573.305247273285;
incomes(432,6)=20573.713559417665;
incomes(432,7)=20055.609448390616;
incomes(432,8)=20280.9103928601;
incomes(432,9)=20391.263237073385;
bref(433)=9000;
bnorm(433)=29000;
incomemean(433)=12000;
rents(433,1)=99.23111049057164;
rents(433,2)=68.43198693147394;
rents(433,3)=76.46572574639072;
rents(433,4)=83.87725070733607;
rents(433,5)=90.2106229071827;
rents(433,6)=96.67183859906245;
rents(433,7)=102.65528509399086;
rents(433,8)=106.19027045080306;
rents(433,9)=109.93009017919428;
incomes(433,1)=21388.016303621207;
incomes(433,2)=21889.027183370643;
incomes(433,3)=21746.3438686913;
incomes(433,4)=21505.800646560805;
incomes(433,5)=21887.022059283616;
incomes(433,6)=21764.90310260275;
incomes(433,7)=21107.560560758695;
incomes(433,8)=21419.868383420544;
incomes(433,9)=21723.683435353978;
bref(434)=9000;
bnorm(434)=29000;
incomemean(434)=13000;
rents(434,1)=100.17266060232038;
rents(434,2)=69.08587416080829;
rents(434,3)=78.99832450962406;
rents(434,4)=88.74342554202157;
rents(434,5)=97.2058422178936;
rents(434,6)=105.91069167619376;
rents(434,7)=115.0341704732657;
rents(434,8)=121.58763855181985;
rents(434,9)=127.72451576420156;
incomes(434,1)=22540.5875200803;
incomes(434,2)=22966.089115915875;
incomes(434,3)=22864.198622059055;
incomes(434,4)=22496.766625121672;
incomes(434,5)=23024.507127974004;
incomes(434,6)=23421.19658474614;
incomes(434,7)=22800.444046889304;
incomes(434,8)=23027.81500895149;
incomes(434,9)=23587.487659536455;
bref(435)=9000;
bnorm(435)=29000;
incomemean(435)=14000;
rents(435,1)=96.32494634864214;
rents(435,2)=66.43291572133306;
rents(435,3)=79.5022070318902;
rents(435,4)=92.56871006006749;
rents(435,5)=105.38504113541386;
rents(435,6)=118.15605095719636;
rents(435,7)=130.44413500843663;
rents(435,8)=140.54481200530472;
rents(435,9)=150.38246307043886;
incomes(435,1)=23816.83355415411;
incomes(435,2)=24402.040078134636;
incomes(435,3)=24214.791178939933;
incomes(435,4)=24179.825935897294;
incomes(435,5)=24464.355092379443;
incomes(435,6)=24636.67191469333;
incomes(435,7)=24348.520327497004;
incomes(435,8)=24753.29802077696;
incomes(435,9)=25109.005557879183;
bref(436)=9000;
bnorm(436)=29000;
incomemean(436)=15000;
rents(436,1)=101.21408695080903;
rents(436,2)=69.81000339175455;
rents(436,3)=86.80207628579677;
rents(436,4)=104.82231826478073;
rents(436,5)=122.07365778141866;
rents(436,6)=140.78162680649635;
rents(436,7)=157.43284860089403;
rents(436,8)=170.973846210966;
rents(436,9)=184.39163265604438;
incomes(436,1)=25851.639799217344;
incomes(436,2)=26159.534990259734;
incomes(436,3)=26033.296489530785;
incomes(436,4)=25827.89810515856;
incomes(436,5)=26695.575903123263;
incomes(436,6)=26669.608246886295;
incomes(436,7)=26350.18600393256;
incomes(436,8)=26879.16533970199;
incomes(436,9)=26718.642469563805;
bref(437)=9000;
bnorm(437)=29000;
incomemean(437)=16000;
rents(437,1)=101.32184112740816;
rents(437,2)=69.87112000225983;
rents(437,3)=89.14232626051783;
rents(437,4)=110.13813071319106;
rents(437,5)=130.41943530352535;
rents(437,6)=151.1914671226297;
rents(437,7)=170.87164355203814;
rents(437,8)=185.07018038689736;
rents(437,9)=193.7419768550966;
incomes(437,1)=26740.355610001137;
incomes(437,2)=27118.15213133126;
incomes(437,3)=27093.982995091505;
incomes(437,4)=26679.427024808236;
incomes(437,5)=27303.80371812286;
incomes(437,6)=27616.036980383164;
incomes(437,7)=27395.374800830257;
incomes(437,8)=27551.425284509827;
incomes(437,9)=28193.106924629614;
bref(438)=9000;
bnorm(438)=29000;
incomemean(438)=17000;
rents(438,1)=100.5327639613937;
rents(438,2)=69.32913267931353;
rents(438,3)=91.40743270073018;
rents(438,4)=116.88752163381989;
rents(438,5)=143.13024446359074;
rents(438,6)=170.47108875037748;
rents(438,7)=192.6306942944484;
rents(438,8)=199.3093175430602;
rents(438,9)=200;
incomes(438,1)=28061.489938711107;
incomes(438,2)=28460.318191592105;
incomes(438,3)=28637.652304957275;
incomes(438,4)=28500.72075349099;
incomes(438,5)=29183.97176740562;
incomes(438,6)=29531.255129536716;
incomes(438,7)=28932.436431261405;
incomes(438,8)=29482.201706611173;
incomes(438,9)=29422.894078105743;
bref(439)=9000;
bnorm(439)=29000;
incomemean(439)=18000;
rents(439,1)=100.61983973121627;
rents(439,2)=69.39750217674049;
rents(439,3)=95.80808659524196;
rents(439,4)=126.65296725565443;
rents(439,5)=160.0549828218639;
rents(439,6)=192.63454218292492;
rents(439,7)=199.99711356333665;
rents(439,8)=200;
rents(439,9)=200;
incomes(439,1)=29621.16593785739;
incomes(439,2)=30573.87810455045;
incomes(439,3)=30356.206959731226;
incomes(439,4)=30548.516878453196;
incomes(439,5)=31140.742857022953;
incomes(439,6)=31563.42117828843;
incomes(439,7)=31170.57206355529;
incomes(439,8)=30979.485080699338;
incomes(439,9)=31255.569123113568;
bref(440)=9000;
bnorm(440)=29000;
incomemean(440)=19000;
rents(440,1)=101.86108892552167;
rents(440,2)=70.24256628104423;
rents(440,3)=99.4091091217279;
rents(440,4)=134.21432891538132;
rents(440,5)=173.11159156626854;
rents(440,6)=198.69913767558344;
rents(440,7)=200;
rents(440,8)=200;
rents(440,9)=200;
incomes(440,1)=30848.693435623976;
incomes(440,2)=31623.10196358096;
incomes(440,3)=31324.15265308202;
incomes(440,4)=31721.125850674784;
incomes(440,5)=31974.0894055383;
incomes(440,6)=32594.857507258635;
incomes(440,7)=31992.507607461597;
incomes(440,8)=32142.873078407916;
incomes(440,9)=32208.821148951658;
bref(441)=9000;
bnorm(441)=32000;
incomemean(441)=10000;
rents(441,1)=100.72301830915232;
rents(441,2)=72.39387256959162;
rents(441,3)=74.57347697326264;
rents(441,4)=76.68987696781775;
rents(441,5)=78.17788847164225;
rents(441,6)=79.72366911567286;
rents(441,7)=80.87120102108388;
rents(441,8)=81.3665591790621;
rents(441,9)=81.4463052785863;
incomes(441,1)=19611.876736115508;
incomes(441,2)=19464.10666182804;
incomes(441,3)=19608.41677724621;
incomes(441,4)=19413.589693417485;
incomes(441,5)=19517.09951206957;
incomes(441,6)=19393.855641923987;
incomes(441,7)=19116.029651057124;
incomes(441,8)=18967.972744480336;
incomes(441,9)=18999.54253589565;
bref(442)=9000;
bnorm(442)=32000;
incomemean(442)=11000;
rents(442,1)=98.1647161315138;
rents(442,2)=70.54915134308507;
rents(442,3)=74.16647992473892;
rents(442,4)=78.11350275571955;
rents(442,5)=79.89313831330175;
rents(442,6)=82.73660963791355;
rents(442,7)=85.42250817418694;
rents(442,8)=86.7087759641856;
rents(442,9)=87.51545085759746;
incomes(442,1)=19688.27960342952;
incomes(442,2)=20236.636878526486;
incomes(442,3)=20573.34546219123;
incomes(442,4)=19587.876732787547;
incomes(442,5)=20236.211104834758;
incomes(442,6)=20411.982265869417;
incomes(442,7)=19811.779795641705;
incomes(442,8)=19646.134687156886;
incomes(442,9)=19553.0073169046;
bref(443)=9000;
bnorm(443)=32000;
incomemean(443)=12000;
rents(443,1)=98.68616974681505;
rents(443,2)=70.9291503878695;
rents(443,3)=77.05960935742064;
rents(443,4)=82.84200891817261;
rents(443,5)=87.79063670749879;
rents(443,6)=92.69311825814809;
rents(443,7)=96.89157623434166;
rents(443,8)=100.78115812623174;
rents(443,9)=104.25094488135147;
incomes(443,1)=21580.069976282728;
incomes(443,2)=21466.86471303342;
incomes(443,3)=21458.18924128481;
incomes(443,4)=21327.39158498317;
incomes(443,5)=21558.517757412028;
incomes(443,6)=21453.46402444475;
incomes(443,7)=21419.97054481259;
incomes(443,8)=21362.070297814505;
incomes(443,9)=21858.816060021512;
bref(444)=9000;
bnorm(444)=32000;
incomemean(444)=13000;
rents(444,1)=98.81061178193038;
rents(444,2)=71.01466865267699;
rents(444,3)=79.83018979429595;
rents(444,4)=88.07822688279246;
rents(444,5)=95.52045764870995;
rents(444,6)=102.89907699574458;
rents(444,7)=109.0965329336195;
rents(444,8)=114.16065619565336;
rents(444,9)=118.2690828552956;
incomes(444,1)=22379.394983885155;
incomes(444,2)=22866.025518448925;
incomes(444,3)=22678.08053711262;
incomes(444,4)=22398.8785122551;
incomes(444,5)=22736.4512072136;
incomes(444,6)=22428.991410365674;
incomes(444,7)=22422.26905311977;
incomes(444,8)=22192.385519446867;
incomes(444,9)=22896.67190737876;
bref(445)=9000;
bnorm(445)=32000;
incomemean(445)=14000;
rents(445,1)=100.19404365285907;
rents(445,2)=72.00980109803905;
rents(445,3)=84.38792815271545;
rents(445,4)=96.53853439512089;
rents(445,5)=108.31471377490945;
rents(445,6)=119.2709918765689;
rents(445,7)=130.94483437326608;
rents(445,8)=138.61766050928279;
rents(445,9)=146.16006901691432;
incomes(445,1)=24253.730926231492;
incomes(445,2)=24608.719997648754;
incomes(445,3)=24423.479811166697;
incomes(445,4)=24317.77306026442;
incomes(445,5)=24493.85634720761;
incomes(445,6)=25087.092966140634;
incomes(445,7)=24158.89864431778;
incomes(445,8)=24539.076055544778;
incomes(445,9)=24868.054671246817;
bref(446)=9000;
bnorm(446)=32000;
incomemean(446)=15000;
rents(446,1)=98.51836712800132;
rents(446,2)=70.80773448244508;
rents(446,3)=84.30105321162135;
rents(446,4)=98.47618808909053;
rents(446,5)=112.69416416760717;
rents(446,6)=126.43867352521454;
rents(446,7)=139.4123649445499;
rents(446,8)=150.5174430548078;
rents(446,9)=158.9379371699626;
incomes(446,1)=24778.21195982289;
incomes(446,2)=25031.5108056526;
incomes(446,3)=25137.430025117;
incomes(446,4)=25209.480126655024;
incomes(446,5)=25420.274635582515;
incomes(446,6)=25530.968875383154;
incomes(446,7)=25368.382525671845;
incomes(446,8)=24996.40941499372;
incomes(446,9)=25668.157815296545;
bref(447)=9000;
bnorm(447)=32000;
incomemean(447)=16000;
rents(447,1)=102.08734565711798;
rents(447,2)=73.37398439904618;
rents(447,3)=91.41579290903555;
rents(447,4)=110.24700208502621;
rents(447,5)=129.19611064800625;
rents(447,6)=148.9920843622009;
rents(447,7)=167.17836029128662;
rents(447,8)=180.33396822924036;
rents(447,9)=189.40921184078937;
incomes(447,1)=27170.227566594946;
incomes(447,2)=27315.661587471168;
incomes(447,3)=27064.456466100695;
incomes(447,4)=26972.84063408528;
incomes(447,5)=27558.792495406946;
incomes(447,6)=27788.003219252612;
incomes(447,7)=27239.16179983753;
incomes(447,8)=27142.17235417162;
incomes(447,9)=27741.64840732442;
bref(448)=9000;
bnorm(448)=32000;
incomemean(448)=17000;
rents(448,1)=102.4534966857373;
rents(448,2)=73.63352418606094;
rents(448,3)=95.87819987034874;
rents(448,4)=119.4466633748376;
rents(448,5)=143.5013357738181;
rents(448,6)=168.10861270970207;
rents(448,7)=189.06763719924618;
rents(448,8)=198.1093915244963;
rents(448,9)=199.75677045352472;
incomes(448,1)=28740.391800850324;
incomes(448,2)=29236.52190151646;
incomes(448,3)=28691.990874469753;
incomes(448,4)=28732.269729741496;
incomes(448,5)=29066.931204389086;
incomes(448,6)=29566.143068960628;
incomes(448,7)=29282.09469340869;
incomes(448,8)=29514.462835581853;
incomes(448,9)=29542.151298988756;
bref(449)=9000;
bnorm(449)=32000;
incomemean(449)=18000;
rents(449,1)=100.79381277441392;
rents(449,2)=72.45506236447865;
rents(449,3)=97.16507703418367;
rents(449,4)=125.6108731684765;
rents(449,5)=155.54704524776272;
rents(449,6)=186.0198622737545;
rents(449,7)=198.99335033340319;
rents(449,8)=200;
rents(449,9)=200;
incomes(449,1)=29861.255940823285;
incomes(449,2)=30595.143437514056;
incomes(449,3)=30474.804980703775;
incomes(449,4)=30445.270247057004;
incomes(449,5)=30835.034794847008;
incomes(449,6)=31529.78891453241;
incomes(449,7)=30754.253755668145;
incomes(449,8)=31459.456302787396;
incomes(449,9)=31500.849947376464;
bref(450)=9000;
bnorm(450)=32000;
incomemean(450)=19000;
rents(450,1)=97.86084513460615;
rents(450,2)=70.33582522779157;
rents(450,3)=96.54679689285541;
rents(450,4)=127.54394532030051;
rents(450,5)=161.78913488120824;
rents(450,6)=193.09204677786977;
rents(450,7)=200;
rents(450,8)=200;
rents(450,9)=200;
incomes(450,1)=31169.961128676983;
incomes(450,2)=31538.215180565625;
incomes(450,3)=31335.358732954715;
incomes(450,4)=31474.005394019638;
incomes(450,5)=32333.44790758033;
incomes(450,6)=32495.60315014595;
incomes(450,7)=32323.329176540978;
incomes(450,8)=31984.696833695627;
incomes(450,9)=32431.959935144536;
bref(451)=9000;
bnorm(451)=35000;
incomemean(451)=10000;
rents(451,1)=99.37259025344463;
rents(451,2)=73.82028687948218;
rents(451,3)=75.91376237656364;
rents(451,4)=77.3727740875529;
rents(451,5)=77.74348866307002;
rents(451,6)=78.77330084360896;
rents(451,7)=80.05049653619186;
rents(451,8)=80.34156898769105;
rents(451,9)=80.33086097510196;
incomes(451,1)=19145.52916953734;
incomes(451,2)=19651.679454468405;
incomes(451,3)=19400.056842373706;
incomes(451,4)=18818.37332298684;
incomes(451,5)=19282.11521301477;
incomes(451,6)=19487.10445069316;
incomes(451,7)=18931.88717107193;
incomes(451,8)=18685.231521208963;
incomes(451,9)=19269.794651308028;
bref(452)=9000;
bnorm(452)=35000;
incomemean(452)=11000;
rents(452,1)=98.54628744179801;
rents(452,2)=73.20428833998513;
rents(452,3)=76.19513241276486;
rents(452,4)=78.96822820817114;
rents(452,5)=81.56678990655614;
rents(452,6)=84.76445725308362;
rents(452,7)=86.82195205233653;
rents(452,8)=88.21976865098007;
rents(452,9)=89.3115443682188;
incomes(452,1)=20078.047970712625;
incomes(452,2)=20092.916606696348;
incomes(452,3)=20044.324793206455;
incomes(452,4)=20000.730309233928;
incomes(452,5)=20504.85817646732;
incomes(452,6)=20083.997758677837;
incomes(452,7)=19819.501795198637;
incomes(452,8)=19821.131157795764;
incomes(452,9)=19844.271880782133;
bref(453)=9000;
bnorm(453)=35000;
incomemean(453)=12000;
rents(453,1)=99.11978623494174;
rents(453,2)=73.63441153774352;
rents(453,3)=79.66747229234241;
rents(453,4)=85.46632824112257;
rents(453,5)=90.15292618836519;
rents(453,6)=95.33490938087436;
rents(453,7)=99.83574245732335;
rents(453,8)=102.50742312257051;
rents(453,9)=105.44215345111658;
incomes(453,1)=21242.97298162519;
incomes(453,2)=21834.214203859865;
incomes(453,3)=21820.155627821237;
incomes(453,4)=21370.22823005895;
incomes(453,5)=21866.58268017624;
incomes(453,6)=21831.333222999965;
incomes(453,7)=21148.14214531953;
incomes(453,8)=21198.811066935727;
incomes(453,9)=21505.869289857623;
bref(454)=9000;
bnorm(454)=35000;
incomemean(454)=13000;
rents(454,1)=99.1085514744825;
rents(454,2)=73.61932943722233;
rents(454,3)=82.10137721094335;
rents(454,4)=89.99923388448352;
rents(454,5)=96.67268531492894;
rents(454,6)=103.82408480446792;
rents(454,7)=110.20023534657795;
rents(454,8)=116.0588061906233;
rents(454,9)=121.70294827174341;
incomes(454,1)=22728.43089073907;
incomes(454,2)=23095.31008808188;
incomes(454,3)=22883.137840275223;
incomes(454,4)=22281.456535467114;
incomes(454,5)=22886.485078034817;
incomes(454,6)=22805.342205243716;
incomes(454,7)=22746.591074414442;
incomes(454,8)=22947.84056401835;
incomes(454,9)=23038.460865207395;
bref(455)=9000;
bnorm(455)=35000;
incomemean(455)=14000;
rents(455,1)=97.22103304144159;
rents(455,2)=72.22347894062054;
rents(455,3)=82.61867632666925;
rents(455,4)=92.46249680865468;
rents(455,5)=102.00327430859518;
rents(455,6)=112.26200350878959;
rents(455,7)=121.60820616126999;
rents(455,8)=129.3713043975399;
rents(455,9)=136.71519625942094;
incomes(455,1)=23858.647728931897;
incomes(455,2)=24059.122279193914;
incomes(455,3)=23752.047773688897;
incomes(455,4)=23668.877093352636;
incomes(455,5)=24171.198951178754;
incomes(455,6)=24206.19683136715;
incomes(455,7)=23928.51941815966;
incomes(455,8)=24051.113489210864;
incomes(455,9)=24305.341920122086;
bref(456)=9000;
bnorm(456)=35000;
incomemean(456)=15000;
rents(456,1)=100.53480578273107;
rents(456,2)=74.68089919464254;
rents(456,3)=88.44894756819613;
rents(456,4)=102.24038269081872;
rents(456,5)=116.04347897428828;
rents(456,6)=129.53315993216955;
rents(456,7)=142.25809685724025;
rents(456,8)=154.46488329638888;
rents(456,9)=164.37176452466923;
incomes(456,1)=25480.16981315092;
incomes(456,2)=25774.65577182761;
incomes(456,3)=25438.37655367265;
incomes(456,4)=25530.575290037174;
incomes(456,5)=25780.528061149333;
incomes(456,6)=25950.823480178522;
incomes(456,7)=26138.66587796021;
incomes(456,8)=25858.19304622524;
incomes(456,9)=26244.28867510011;
bref(457)=9000;
bnorm(457)=35000;
incomemean(457)=16000;
rents(457,1)=97.73698539156464;
rents(457,2)=72.59926461877303;
rents(457,3)=88.75038099207389;
rents(457,4)=105.70463600094162;
rents(457,5)=122.54443900282388;
rents(457,6)=140.62449915499636;
rents(457,7)=159.0424860294073;
rents(457,8)=174.24467316332013;
rents(457,9)=187.3269543862742;
incomes(457,1)=26855.587076223957;
incomes(457,2)=27160.35132753313;
incomes(457,3)=26983.876570939945;
incomes(457,4)=26623.98078146631;
incomes(457,5)=27344.300877088335;
incomes(457,6)=27916.476663698584;
incomes(457,7)=27480.534183511383;
incomes(457,8)=27819.609848053842;
incomes(457,9)=28070.134188132026;
bref(458)=9000;
bnorm(458)=35000;
incomemean(458)=17000;
rents(458,1)=99.57059496231803;
rents(458,2)=73.96954697327682;
rents(458,3)=93.21682198844553;
rents(458,4)=114.24146955903204;
rents(458,5)=135.68370837854457;
rents(458,6)=157.72375114516072;
rents(458,7)=178.3261743828588;
rents(458,8)=191.94142740601927;
rents(458,9)=198.0315640068269;
incomes(458,1)=28339.31343349414;
incomes(458,2)=28684.071629842765;
incomes(458,3)=28610.733474312623;
incomes(458,4)=28450.65182793311;
incomes(458,5)=28868.79290951003;
incomes(458,6)=29199.963959372246;
incomes(458,7)=28775.55641857484;
incomes(458,8)=29034.662771435047;
incomes(458,9)=29729.74508595513;
bref(459)=9000;
bnorm(459)=35000;
incomemean(459)=18000;
rents(459,1)=100.14043082302851;
rents(459,2)=74.38316403001171;
rents(459,3)=97.08936196787518;
rents(459,4)=122.14160801773791;
rents(459,5)=146.8188998213239;
rents(459,6)=172.66767107329485;
rents(459,7)=194.99346304182416;
rents(459,8)=199.61388423204832;
rents(459,9)=200;
incomes(459,1)=29908.586016180736;
incomes(459,2)=30530.270240724938;
incomes(459,3)=30239.311384774654;
incomes(459,4)=29585.30861933378;
incomes(459,5)=30278.205639727486;
incomes(459,6)=31153.575286612504;
incomes(459,7)=30391.1030769091;
incomes(459,8)=30876.341594386315;
incomes(459,9)=31074.253345595098;
bref(460)=9000;
bnorm(460)=35000;
incomemean(460)=19000;
rents(460,1)=98.68520735481769;
rents(460,2)=73.30445365782616;
rents(460,3)=99.58039921396274;
rents(460,4)=130.37561467752025;
rents(460,5)=164.62624637369183;
rents(460,6)=194.0201081209252;
rents(460,7)=200;
rents(460,8)=200;
rents(460,9)=200;
incomes(460,1)=32070.87679906848;
incomes(460,2)=32554.517863807192;
incomes(460,3)=32285.127117743454;
incomes(460,4)=32451.831963255965;
incomes(460,5)=32845.823920074174;
incomes(460,6)=33622.7490632675;
incomes(460,7)=33130.11862545621;
incomes(460,8)=33075.342621801865;
incomes(460,9)=33280.53044250749;
bref(461)=9000;
bnorm(461)=38000;
incomemean(461)=10000;
rents(461,1)=99.244042234859;
rents(461,2)=75.73512621909845;
rents(461,3)=77.0194969403796;
rents(461,4)=77.72732662545754;
rents(461,5)=77.90999882444095;
rents(461,6)=78.85194059962038;
rents(461,7)=79.68009073646395;
rents(461,8)=79.37817458437509;
rents(461,9)=79.3155368819012;
incomes(461,1)=18857.98952522848;
incomes(461,2)=19300.224765371127;
incomes(461,3)=19016.83386623179;
incomes(461,4)=18724.185536169825;
incomes(461,5)=19167.925423195706;
incomes(461,6)=19230.900718587858;
incomes(461,7)=18468.60925034447;
incomes(461,8)=18526.55240042332;
incomes(461,9)=18628.735090330112;
bref(462)=9000;
bnorm(462)=38000;
incomemean(462)=11000;
rents(462,1)=98.25920083146251;
rents(462,2)=74.9871870791363;
rents(462,3)=78.08507683437487;
rents(462,4)=80.93561748966358;
rents(462,5)=83.54390112813925;
rents(462,6)=85.90280760073199;
rents(462,7)=87.85449429126226;
rents(462,8)=88.90572474804408;
rents(462,9)=89.33002815024336;
incomes(462,1)=20004.32994990708;
incomes(462,2)=20250.486153283236;
incomes(462,3)=20233.6285998463;
incomes(462,4)=20220.862529058075;
incomes(462,5)=20224.4074692038;
incomes(462,6)=20232.062330713572;
incomes(462,7)=19815.577050078926;
incomes(462,8)=19517.435962832446;
incomes(462,9)=19882.83539665292;
bref(463)=9000;
bnorm(463)=38000;
incomemean(463)=12000;
rents(463,1)=104.0372000203209;
rents(463,2)=79.39979116211092;
rents(463,3)=84.47236963958265;
rents(463,4)=89.33290656419481;
rents(463,5)=93.14636458385932;
rents(463,6)=97.0029434582967;
rents(463,7)=100.10113170675453;
rents(463,8)=102.3207401466673;
rents(463,9)=104.43250542790997;
incomes(463,1)=20933.54778513698;
incomes(463,2)=21607.128261764945;
incomes(463,3)=21661.77480955221;
incomes(463,4)=21361.492571987896;
incomes(463,5)=21535.01716670105;
incomes(463,6)=21386.710046952212;
incomes(463,7)=20926.05278448701;
incomes(463,8)=20974.216074959742;
incomes(463,9)=21349.86092949256;
bref(464)=9000;
bnorm(464)=38000;
incomemean(464)=13000;
rents(464,1)=100.35547865971196;
rents(464,2)=76.58994616039398;
rents(464,3)=83.88124082210398;
rents(464,4)=90.93168129211851;
rents(464,5)=97.34762348489123;
rents(464,6)=103.99203450265071;
rents(464,7)=110.73799278710986;
rents(464,8)=116.07746387500616;
rents(464,9)=120.11063542328164;
incomes(464,1)=22661.378721971832;
incomes(464,2)=22819.200790727533;
incomes(464,3)=22792.440304135263;
incomes(464,4)=22586.389981474313;
incomes(464,5)=22905.9142547357;
incomes(464,6)=23188.5295684379;
incomes(464,7)=22716.78890519034;
incomes(464,8)=22469.344149286815;
incomes(464,9)=22893.05162711225;
bref(465)=9000;
bnorm(465)=38000;
incomemean(465)=14000;
rents(465,1)=101.20539195806758;
rents(465,2)=77.23035756326222;
rents(465,3)=86.86863600652062;
rents(465,4)=96.30718866622094;
rents(465,5)=104.95950804942379;
rents(465,6)=113.71772401947088;
rents(465,7)=122.15486282051607;
rents(465,8)=129.58413919306992;
rents(465,9)=134.79766277907353;
incomes(465,1)=24203.923436848858;
incomes(465,2)=24044.130234253065;
incomes(465,3)=24062.590343431566;
incomes(465,4)=23697.93358332697;
incomes(465,5)=24056.255011364858;
incomes(465,6)=24289.925278177325;
incomes(465,7)=24138.918485482307;
incomes(465,8)=23597.27831718398;
incomes(465,9)=24293.58424132893;
bref(466)=9000;
bnorm(466)=38000;
incomemean(466)=15000;
rents(466,1)=100.85543983738148;
rents(466,2)=76.97122337861546;
rents(466,3)=89.72312982475732;
rents(466,4)=102.57130825829869;
rents(466,5)=115.01530430500169;
rents(466,6)=128.76623991277378;
rents(466,7)=140.25542585859424;
rents(466,8)=150.22882368969442;
rents(466,9)=159.20692521744178;
incomes(466,1)=25448.12501999487;
incomes(466,2)=25817.757658261933;
incomes(466,3)=25726.90414502703;
incomes(466,4)=25597.032562371205;
incomes(466,5)=26450.399923173176;
incomes(466,6)=25940.078043283243;
incomes(466,7)=25802.806359530376;
incomes(466,8)=25875.2353646197;
incomes(466,9)=26234.72496866549;
bref(467)=9000;
bnorm(467)=38000;
incomemean(467)=16000;
rents(467,1)=99.47689706059877;
rents(467,2)=75.92098752112389;
rents(467,3)=90.97798045252863;
rents(467,4)=107.40857615113894;
rents(467,5)=123.53288254243405;
rents(467,6)=139.5190144943527;
rents(467,7)=155.48222708210213;
rents(467,8)=167.1883133458804;
rents(467,9)=178.1172938146848;
incomes(467,1)=26924.52535158957;
incomes(467,2)=26979.688468618435;
incomes(467,3)=27123.35925765403;
incomes(467,4)=26898.078794170804;
incomes(467,5)=27080.292376165195;
incomes(467,6)=27549.2650362991;
incomes(467,7)=26639.48336942289;
incomes(467,8)=26946.482955002666;
incomes(467,9)=27499.235188757153;
bref(468)=9000;
bnorm(468)=38000;
incomemean(468)=17000;
rents(468,1)=102.56031707223994;
rents(468,2)=78.27262310447124;
rents(468,3)=96.25746889706542;
rents(468,4)=116.02527356077317;
rents(468,5)=135.92099200165623;
rents(468,6)=156.4380772744384;
rents(468,7)=176.135004683554;
rents(468,8)=188.3679869145117;
rents(468,9)=195.8612576595725;
incomes(468,1)=28138.79072842142;
incomes(468,2)=28593.74515870843;
incomes(468,3)=28677.79561470474;
incomes(468,4)=28390.265987049035;
incomes(468,5)=28929.623450628136;
incomes(468,6)=29334.453600853496;
incomes(468,7)=28347.125964044903;
incomes(468,8)=28731.517407863717;
incomes(468,9)=29415.121567791244;
bref(469)=9000;
bnorm(469)=38000;
incomemean(469)=18000;
rents(469,1)=99.24892454168871;
rents(469,2)=75.74701417580016;
rents(469,3)=97.65005271761952;
rents(469,4)=121.58201910271106;
rents(469,5)=146.4249203965185;
rents(469,6)=172.06482201039955;
rents(469,7)=194.27366381773268;
rents(469,8)=200;
rents(469,9)=200;
incomes(469,1)=30488.164890038308;
incomes(469,2)=30907.400863720155;
incomes(469,3)=30420.887213287977;
incomes(469,4)=30270.08236232374;
incomes(469,5)=30622.702823106207;
incomes(469,6)=31173.80178418177;
incomes(469,7)=31690.26613679979;
incomes(469,8)=31631.83295124257;
incomes(469,9)=31685.834567431564;
bref(470)=9000;
bnorm(470)=38000;
incomemean(470)=19000;
rents(470,1)=98.6644756094005;
rents(470,2)=75.29494441552318;
rents(470,3)=99.31560733527952;
rents(470,4)=127.25383163274515;
rents(470,5)=157.3677936361492;
rents(470,6)=187.6931687283728;
rents(470,7)=199.78173311849355;
rents(470,8)=200;
rents(470,9)=200;
incomes(470,1)=31992.111750482727;
incomes(470,2)=32176.668984655964;
incomes(470,3)=32092.284031052244;
incomes(470,4)=32069.937884742933;
incomes(470,5)=32578.658250373246;
incomes(470,6)=32857.94528806188;
incomes(470,7)=32642.578614556856;
incomes(470,8)=33029.48459233512;
incomes(470,9)=33199.430434093745;
bref(471)=9000;
bnorm(471)=41000;
incomemean(471)=10000;
rents(471,1)=99.31663640025936;
rents(471,2)=77.51897564455984;
rents(471,3)=78.8830486840636;
rents(471,4)=80.13593496825777;
rents(471,5)=79.98659212026247;
rents(471,6)=81.15758585512827;
rents(471,7)=82.11397486311012;
rents(471,8)=82.13083153508335;
rents(471,9)=81.7811645294519;
incomes(471,1)=19159.907554003355;
incomes(471,2)=19563.90693567103;
incomes(471,3)=19515.094931859014;
incomes(471,4)=18675.60334076295;
incomes(471,5)=19577.384682128428;
incomes(471,6)=19562.80109219011;
incomes(471,7)=19124.65449043227;
incomes(471,8)=18748.916535365108;
incomes(471,9)=19206.903021514252;
bref(472)=9000;
bnorm(472)=41000;
incomemean(472)=11000;
rents(472,1)=100.06221539812066;
rents(472,2)=78.09514206612015;
rents(472,3)=80.6052872983262;
rents(472,4)=82.96032918347284;
rents(472,5)=85.24008605373169;
rents(472,6)=87.57099035563043;
rents(472,7)=89.62954119195518;
rents(472,8)=90.439152491076;
rents(472,9)=91.11730136181158;
incomes(472,1)=20289.118625339994;
incomes(472,2)=20329.382848933743;
incomes(472,3)=20341.60518581892;
incomes(472,4)=20361.102400213775;
incomes(472,5)=20566.885880351838;
incomes(472,6)=20450.358117640713;
incomes(472,7)=19766.357494082717;
incomes(472,8)=19882.403523868277;
incomes(472,9)=20185.281846271195;
bref(473)=9000;
bnorm(473)=41000;
incomemean(473)=12000;
rents(473,1)=98.07592921966972;
rents(473,2)=76.53891722041398;
rents(473,3)=81.76382971560196;
rents(473,4)=86.62573741290736;
rents(473,5)=90.8079001144027;
rents(473,6)=95.12915974603519;
rents(473,7)=98.56948968977466;
rents(473,8)=101.04879990876668;
rents(473,9)=103.58018399762601;
incomes(473,1)=21236.693319854545;
incomes(473,2)=21722.508148347162;
incomes(473,3)=21761.754787760456;
incomes(473,4)=21409.438407476446;
incomes(473,5)=21703.892164737783;
incomes(473,6)=21352.60132315744;
incomes(473,7)=20979.383223110137;
incomes(473,8)=21115.992902139784;
incomes(473,9)=21248.364549301015;
bref(474)=9000;
bnorm(474)=41000;
incomemean(474)=13000;
rents(474,1)=98.80120180302701;
rents(474,2)=77.11442267803703;
rents(474,3)=83.07344010566824;
rents(474,4)=89.24023959970941;
rents(474,5)=94.69604517420018;
rents(474,6)=100.31343734501637;
rents(474,7)=105.97356368572102;
rents(474,8)=110.3163881331477;
rents(474,9)=114.37728745769417;
incomes(474,1)=22722.587055946828;
incomes(474,2)=22230.40429373671;
incomes(474,3)=22497.73717799351;
incomes(474,4)=22320.427561249555;
incomes(474,5)=22590.21545385512;
incomes(474,6)=22726.66905644545;
incomes(474,7)=22371.85719239675;
incomes(474,8)=22339.470547962264;
incomes(474,9)=23080.678692831967;
bref(475)=9000;
bnorm(475)=41000;
incomemean(475)=14000;
rents(475,1)=97.40904625335291;
rents(475,2)=76.02514095013639;
rents(475,3)=85.568942424067;
rents(475,4)=95.18815365799135;
rents(475,5)=104.09741736357977;
rents(475,6)=113.34427381652999;
rents(475,7)=122.11343630584902;
rents(475,8)=129.3704356846508;
rents(475,9)=136.54781364020843;
incomes(475,1)=23981.8911872295;
incomes(475,2)=24485.54548228639;
incomes(475,3)=24455.99802861467;
incomes(475,4)=24138.620253836718;
incomes(475,5)=24506.349635568382;
incomes(475,6)=24590.44851090712;
incomes(475,7)=24178.784726441587;
incomes(475,8)=24413.88125354949;
incomes(475,9)=24510.296138145648;
bref(476)=9000;
bnorm(476)=41000;
incomemean(476)=15000;
rents(476,1)=97.49012813997528;
rents(476,2)=76.08464118323599;
rents(476,3)=88.18670791049857;
rents(476,4)=100.5755869349406;
rents(476,5)=112.94100231389352;
rents(476,6)=126.21244741727288;
rents(476,7)=138.6155202667848;
rents(476,8)=149.71097517292108;
rents(476,9)=158.82566142203643;
incomes(476,1)=25825.245475920816;
incomes(476,2)=25853.501986589166;
incomes(476,3)=25811.943800655466;
incomes(476,4)=25733.631300379722;
incomes(476,5)=26409.557707395736;
incomes(476,6)=26301.167531686617;
incomes(476,7)=26025.928306655987;
incomes(476,8)=25758.17973801008;
incomes(476,9)=26362.246108678224;
bref(477)=9000;
bnorm(477)=41000;
incomemean(477)=16000;
rents(477,1)=99.4029943570962;
rents(477,2)=77.57370406174506;
rents(477,3)=92.83005239393755;
rents(477,4)=107.9268583816709;
rents(477,5)=123.6627483364351;
rents(477,6)=139.6209304820058;
rents(477,7)=155.64900806880502;
rents(477,8)=169.02697881243589;
rents(477,9)=181.4840906273928;
incomes(477,1)=27177.621106632756;
incomes(477,2)=27741.99377687214;
incomes(477,3)=27182.066142138472;
incomes(477,4)=27355.161675160565;
incomes(477,5)=27652.039973385952;
incomes(477,6)=27922.720637074643;
incomes(477,7)=27440.8237514322;
incomes(477,8)=27544.171347724532;
incomes(477,9)=27744.961588863694;
bref(478)=9000;
bnorm(478)=41000;
incomemean(478)=17000;
rents(478,1)=99.469876752319;
rents(478,2)=77.63860942850587;
rents(478,3)=94.50608883840832;
rents(478,4)=113.18864435986558;
rents(478,5)=130.91853602428267;
rents(478,6)=150.04387471313098;
rents(478,7)=169.64197018432318;
rents(478,8)=183.57999573703157;
rents(478,9)=193.92619940104262;
incomes(478,1)=28344.39251181987;
incomes(478,2)=28564.164265691474;
incomes(478,3)=28803.434945980145;
incomes(478,4)=27968.72523418718;
incomes(478,5)=28694.383132671162;
incomes(478,6)=29392.928094528237;
incomes(478,7)=28387.937296165845;
incomes(478,8)=28682.285820036388;
incomes(478,9)=29273.98040819094;
bref(479)=9000;
bnorm(479)=41000;
incomemean(479)=18000;
rents(479,1)=100.0904485845038;
rents(479,2)=78.11515310494529;
rents(479,3)=98.63889624730358;
rents(479,4)=121.02693358288128;
rents(479,5)=143.81154140699033;
rents(479,6)=167.59337979496667;
rents(479,7)=188.1139705313813;
rents(479,8)=198.92528649662603;
rents(479,9)=199.93778303721874;
incomes(479,1)=30231.79808626822;
incomes(479,2)=30805.69672583965;
incomes(479,3)=30535.761492678583;
incomes(479,4)=30094.5600080658;
incomes(479,5)=30575.556882416946;
incomes(479,6)=30651.831993950895;
incomes(479,7)=30903.178262358735;
incomes(479,8)=31215.19776119778;
incomes(479,9)=31541.331820473788;
bref(480)=9000;
bnorm(480)=41000;
incomemean(480)=19000;
rents(480,1)=101.66062228481869;
rents(480,2)=79.34596269530618;
rents(480,3)=101.51043847393515;
rents(480,4)=126.25412147976208;
rents(480,5)=151.62072295616014;
rents(480,6)=177.3956891739356;
rents(480,7)=196.00558640364721;
rents(480,8)=199.88013228318607;
rents(480,9)=200;
incomes(480,1)=30766.672024958778;
incomes(480,2)=31614.4319475327;
incomes(480,3)=31468.017348053436;
incomes(480,4)=31101.61047734342;
incomes(480,5)=31363.729713037024;
incomes(480,6)=31880.90955454718;
incomes(480,7)=32479.927006856924;
incomes(480,8)=32027.818437305265;
incomes(480,9)=32738.5672941264;
bref(481)=9000;
bnorm(481)=44000;
incomemean(481)=10000;
rents(481,1)=101.43479573812014;
rents(481,2)=80.6919198743286;
rents(481,3)=81.7426050750846;
rents(481,4)=82.73635445611521;
rents(481,5)=83.39287544161573;
rents(481,6)=83.96143937941667;
rents(481,7)=84.80465167885194;
rents(481,8)=84.7044275282968;
rents(481,9)=84.6502682054998;
incomes(481,1)=19450.842333098353;
incomes(481,2)=19612.219530857183;
incomes(481,3)=19727.63297168215;
incomes(481,4)=19540.16614702807;
incomes(481,5)=19485.18130531972;
incomes(481,6)=19703.99792155586;
incomes(481,7)=19049.157454307406;
incomes(481,8)=19060.425310910403;
incomes(481,9)=19182.243264666515;
bref(482)=9000;
bnorm(482)=44000;
incomemean(482)=11000;
rents(482,1)=100.00100987990518;
rents(482,2)=79.53463086455133;
rents(482,3)=81.61457645714654;
rents(482,4)=83.23384024933463;
rents(482,5)=84.65853740181261;
rents(482,6)=85.96039241796883;
rents(482,7)=86.95661680750412;
rents(482,8)=87.31574328001207;
rents(482,9)=87.73215488379321;
incomes(482,1)=19724.40433822337;
incomes(482,2)=20236.54384250134;
incomes(482,3)=19946.492626187035;
incomes(482,4)=19982.349481382884;
incomes(482,5)=19948.32990010419;
incomes(482,6)=19844.80808536501;
incomes(482,7)=19396.222975431992;
incomes(482,8)=19571.745555895617;
incomes(482,9)=19694.715417559564;
bref(483)=9000;
bnorm(483)=44000;
incomemean(483)=12000;
rents(483,1)=97.94181932646671;
rents(483,2)=77.90589597508509;
rents(483,3)=81.5936101594833;
rents(483,4)=84.89215703151403;
rents(483,5)=86.94892088916363;
rents(483,6)=89.93809806292396;
rents(483,7)=92.42621435259139;
rents(483,8)=94.39638250234952;
rents(483,9)=96.23862918830677;
incomes(483,1)=20775.974432429924;
incomes(483,2)=21023.122498174933;
incomes(483,3)=20931.469249653182;
incomes(483,4)=20153.504592181103;
incomes(483,5)=20916.112124639043;
incomes(483,6)=20804.268632004638;
incomes(483,7)=20586.022342445427;
incomes(483,8)=20447.03156344138;
incomes(483,9)=20691.771071542826;
bref(484)=9000;
bnorm(484)=44000;
incomemean(484)=13000;
rents(484,1)=97.60275249168342;
rents(484,2)=77.6447867526283;
rents(484,3)=84.49826083175431;
rents(484,4)=91.13715081198882;
rents(484,5)=97.11046130023095;
rents(484,6)=103.0192088208593;
rents(484,7)=108.50618217517152;
rents(484,8)=113.05594522619499;
rents(484,9)=117.84870853858264;
incomes(484,1)=22809.875496776654;
incomes(484,2)=23175.73775375735;
incomes(484,3)=23080.036845553626;
incomes(484,4)=22803.894039675266;
incomes(484,5)=23012.593309740194;
incomes(484,6)=23069.59857488739;
incomes(484,7)=22587.197162423177;
incomes(484,8)=23005.213672163074;
incomes(484,9)=23018.554081662784;
bref(485)=9000;
bnorm(485)=44000;
incomemean(485)=14000;
rents(485,1)=101.4121569087642;
rents(485,2)=80.67082920215718;
rents(485,3)=89.54519720501031;
rents(485,4)=97.77863452725025;
rents(485,5)=105.88536549863299;
rents(485,6)=114.10448377938752;
rents(485,7)=122.21702630454313;
rents(485,8)=130.11028103213465;
rents(485,9)=136.13437662715958;
incomes(485,1)=24007.233917533827;
incomes(485,2)=24461.04679093034;
incomes(485,3)=24059.78878952097;
incomes(485,4)=24049.89251480724;
incomes(485,5)=24400.984677082055;
incomes(485,6)=24567.228260549808;
incomes(485,7)=24780.507113689157;
incomes(485,8)=24249.027620694127;
incomes(485,9)=24308.513427252816;
bref(486)=9000;
bnorm(486)=44000;
incomemean(486)=15000;
rents(486,1)=100.84155559606059;
rents(486,2)=80.22159111134823;
rents(486,3)=91.16802668993847;
rents(486,4)=101.95114767057046;
rents(486,5)=112.21857724984052;
rents(486,6)=123.40863284816855;
rents(486,7)=134.51307602039435;
rents(486,8)=142.64600576857558;
rents(486,9)=151.84359291234034;
incomes(486,1)=25167.615239783103;
incomes(486,2)=25731.937359776606;
incomes(486,3)=25476.162615751386;
incomes(486,4)=25257.490205127888;
incomes(486,5)=25937.649945993307;
incomes(486,6)=26167.982106773365;
incomes(486,7)=25013.07288994837;
incomes(486,8)=25793.7475915696;
incomes(486,9)=26184.869500504432;
bref(487)=9000;
bnorm(487)=44000;
incomemean(487)=16000;
rents(487,1)=98.59272878196876;
rents(487,2)=78.42369269892768;
rents(487,3)=91.75437113535013;
rents(487,4)=105.567491722089;
rents(487,5)=119.90267611407172;
rents(487,6)=134.65522125058632;
rents(487,7)=149.38996878856597;
rents(487,8)=162.4787505725873;
rents(487,9)=174.16594241491651;
incomes(487,1)=26649.366163371837;
incomes(487,2)=27077.83482052076;
incomes(487,3)=26933.399074999965;
incomes(487,4)=27169.16465204061;
incomes(487,5)=27559.537524899155;
incomes(487,6)=27796.166296565698;
incomes(487,7)=27491.4268223994;
incomes(487,8)=27338.47795256574;
incomes(487,9)=27501.655800999844;
bref(488)=9000;
bnorm(488)=44000;
incomemean(488)=17000;
rents(488,1)=100.48023115581852;
rents(488,2)=79.92942116111885;
rents(488,3)=96.08452877768646;
rents(488,4)=113.5389990357202;
rents(488,5)=131.79195045875437;
rents(488,6)=150.35690363667024;
rents(488,7)=167.59301516737384;
rents(488,8)=181.73587955122323;
rents(488,9)=192.42446963300546;
incomes(488,1)=28684.76869579116;
incomes(488,2)=28686.019094239753;
incomes(488,3)=28792.69128461749;
incomes(488,4)=28790.056712653506;
incomes(488,5)=29051.03947585195;
incomes(488,6)=28962.7136410631;
incomes(488,7)=28257.313116854137;
incomes(488,8)=28836.116432856645;
incomes(488,9)=29673.56113108565;
bref(489)=9000;
bnorm(489)=44000;
incomemean(489)=18000;
rents(489,1)=102.12946018364005;
rents(489,2)=81.23759242641637;
rents(489,3)=99.96184370168507;
rents(489,4)=120.23475194514491;
rents(489,5)=141.25920151104341;
rents(489,6)=162.712459428599;
rents(489,7)=184.18434433650316;
rents(489,8)=196.37080016347565;
rents(489,9)=199.34855732311897;
incomes(489,1)=29707.97642805791;
incomes(489,2)=30182.791873615835;
incomes(489,3)=30118.566322584968;
incomes(489,4)=29970.54679966292;
incomes(489,5)=30158.184128694196;
incomes(489,6)=30852.66314168388;
incomes(489,7)=30216.140750124494;
incomes(489,8)=29999.230528150205;
incomes(489,9)=30902.651726861885;
bref(490)=9000;
bnorm(490)=44000;
incomemean(490)=19000;
rents(490,1)=100.81609890485343;
rents(490,2)=80.20224662358387;
rents(490,3)=102.66641235633425;
rents(490,4)=126.999627566771;
rents(490,5)=152.73161027362468;
rents(490,6)=178.58574616024615;
rents(490,7)=194.94994725286043;
rents(490,8)=199.34056534779216;
rents(490,9)=200;
incomes(490,1)=31896.06645199081;
incomes(490,2)=32751.138723334487;
incomes(490,3)=32070.758787762246;
incomes(490,4)=31881.610317930474;
incomes(490,5)=32110.734802560615;
incomes(490,6)=32899.72929347246;
incomes(490,7)=32365.093866960004;
incomes(490,8)=32103.696578872554;
incomes(490,9)=32351.08875975847;
bref(491)=9000;
bnorm(491)=47000;
incomemean(491)=10000;
rents(491,1)=100.34526755243253;
rents(491,2)=81.12860716333043;
rents(491,3)=82.45601350191988;
rents(491,4)=83.521219769308;
rents(491,5)=84.1204650621502;
rents(491,6)=84.63764295185457;
rents(491,7)=85.15328942723615;
rents(491,8)=85.0438689764888;
rents(491,9)=84.83015527834566;
incomes(491,1)=19299.77020425957;
incomes(491,2)=19811.400249274502;
incomes(491,3)=19657.744596572014;
incomes(491,4)=19471.111181014807;
incomes(491,5)=19472.98130155937;
incomes(491,6)=19407.483341537725;
incomes(491,7)=19036.4161314506;
incomes(491,8)=19007.146425942123;
incomes(491,9)=19042.151643937184;
bref(492)=9000;
bnorm(492)=47000;
incomemean(492)=11000;
rents(492,1)=102.24442052048347;
rents(492,2)=82.66003406503256;
rents(492,3)=84.32826781965102;
rents(492,4)=85.95678795262785;
rents(492,5)=87.7254504531295;
rents(492,6)=89.06179081609422;
rents(492,7)=90.48767508840955;
rents(492,8)=91.53405759658763;
rents(492,9)=92.01613588986642;
incomes(492,1)=20084.637870501894;
incomes(492,2)=20215.397502588592;
incomes(492,3)=20240.797963812798;
incomes(492,4)=20403.30696598295;
incomes(492,5)=20229.209975689562;
incomes(492,6)=20352.304669470534;
incomes(492,7)=20121.516744449895;
incomes(492,8)=19677.635863647058;
incomes(492,9)=20153.420603586597;
bref(493)=9000;
bnorm(493)=47000;
incomemean(493)=12000;
rents(493,1)=99.23364623303169;
rents(493,2)=80.23137636082703;
rents(493,3)=84.25365212489886;
rents(493,4)=88.24883997266326;
rents(493,5)=91.6026550503068;
rents(493,6)=94.78643255411477;
rents(493,7)=97.97228813051152;
rents(493,8)=100.17288796216066;
rents(493,9)=102.28329486767117;
incomes(493,1)=21332.670742847007;
incomes(493,2)=21611.733473244592;
incomes(493,3)=21757.924336760712;
incomes(493,4)=21378.732911946932;
incomes(493,5)=21435.56089020069;
incomes(493,6)=21529.129686690238;
incomes(493,7)=21072.585871783005;
incomes(493,8)=21106.367291862294;
incomes(493,9)=21187.45835415931;
bref(494)=9000;
bnorm(494)=47000;
incomemean(494)=13000;
rents(494,1)=100.7644023448888;
rents(494,2)=81.46629923875128;
rents(494,3)=86.99793193749245;
rents(494,4)=92.14339118261765;
rents(494,5)=97.14884480825823;
rents(494,6)=102.41425210447638;
rents(494,7)=107.35015331876973;
rents(494,8)=111.40302016190462;
rents(494,9)=115.51138267080145;
incomes(494,1)=22312.529992396394;
incomes(494,2)=22479.337036638717;
incomes(494,3)=22302.744781817626;
incomes(494,4)=22389.16457684552;
incomes(494,5)=22744.099207966538;
incomes(494,6)=22625.762703787248;
incomes(494,7)=22280.907561656666;
incomes(494,8)=22526.67003763362;
incomes(494,9)=23206.379915742575;
bref(495)=9000;
bnorm(495)=47000;
incomemean(495)=14000;
rents(495,1)=101.79094122353524;
rents(495,2)=82.29595306130777;
rents(495,3)=90.18313866304865;
rents(495,4)=97.70237972023219;
rents(495,5)=104.79111130148875;
rents(495,6)=112.73901793955162;
rents(495,7)=119.76080927164186;
rents(495,8)=125.86794399151096;
rents(495,9)=130.86399728868213;
incomes(495,1)=23328.192078480344;
incomes(495,2)=23986.20699399541;
incomes(495,3)=23817.487364502165;
incomes(495,4)=23660.406820861463;
incomes(495,5)=24401.381616543484;
incomes(495,6)=24108.90222822956;
incomes(495,7)=23861.614391195442;
incomes(495,8)=23409.089547536645;
incomes(495,9)=24261.65256654006;
bref(496)=9000;
bnorm(496)=47000;
incomemean(496)=15000;
rents(496,1)=98.75051319228747;
rents(496,2)=79.84720055924846;
rents(496,3)=90.9620865727359;
rents(496,4)=102.04880901747595;
rents(496,5)=112.61508108713599;
rents(496,6)=124.75882214205743;
rents(496,7)=135.89566323550102;
rents(496,8)=145.69865965870798;
rents(496,9)=153.90970850898472;
incomes(496,1)=25615.77959189882;
incomes(496,2)=26245.99197289878;
incomes(496,3)=26060.406947252584;
incomes(496,4)=25746.46856747293;
incomes(496,5)=26817.849663471123;
incomes(496,6)=26495.692164397115;
incomes(496,7)=26100.324936223067;
incomes(496,8)=25888.827185731596;
incomes(496,9)=26598.871495262116;
bref(497)=9000;
bnorm(497)=47000;
incomemean(497)=16000;
rents(497,1)=99.7186878110487;
rents(497,2)=80.62238599358456;
rents(497,3)=93.09153047269068;
rents(497,4)=105.97053425108462;
rents(497,5)=118.31032037964509;
rents(497,6)=131.33243665560738;
rents(497,7)=144.69133054824536;
rents(497,8)=155.80566554029448;
rents(497,9)=166.50432455632975;
incomes(497,1)=26699.566825283964;
incomes(497,2)=27146.682981884096;
incomes(497,3)=27103.550777018856;
incomes(497,4)=26643.58081064003;
incomes(497,5)=27185.61013081085;
incomes(497,6)=27693.63656173272;
incomes(497,7)=27100.92943177417;
incomes(497,8)=27242.831842190262;
incomes(497,9)=27284.162668840978;
bref(498)=9000;
bnorm(498)=47000;
incomemean(498)=17000;
rents(498,1)=102.54043055885502;
rents(498,2)=82.90832943730454;
rents(498,3)=98.98029522702515;
rents(498,4)=115.04734336606543;
rents(498,5)=132.43936333179815;
rents(498,6)=149.7036090373143;
rents(498,7)=166.09894879462954;
rents(498,8)=179.24751724527016;
rents(498,9)=191.70163157199013;
incomes(498,1)=28662.13865584688;
incomes(498,2)=29357.765705984268;
incomes(498,3)=28603.90218825823;
incomes(498,4)=29135.656515118077;
incomes(498,5)=29182.395751220913;
incomes(498,6)=29159.02657185201;
incomes(498,7)=28337.721057388397;
incomes(498,8)=29236.731198938913;
incomes(498,9)=30265.128402482613;
bref(499)=9000;
bnorm(499)=47000;
incomemean(499)=18000;
rents(499,1)=99.41247886437846;
rents(499,2)=80.37035572126896;
rents(499,3)=98.15268399062873;
rents(499,4)=117.49895715202783;
rents(499,5)=137.46534142923818;
rents(499,6)=158.506694097672;
rents(499,7)=180.42542326502596;
rents(499,8)=195.58833448544024;
rents(499,9)=199.29135365190984;
incomes(499,1)=30141.349452729526;
incomes(499,2)=30375.114863000657;
incomes(499,3)=30183.16902129013;
incomes(499,4)=29927.249940727255;
incomes(499,5)=30497.003771062413;
incomes(499,6)=31180.151471060773;
incomes(499,7)=30671.26875602938;
incomes(499,8)=30572.24707814249;
incomes(499,9)=31045.294839611033;
bref(500)=9000;
bnorm(500)=47000;
incomemean(500)=19000;
rents(500,1)=101.80634095056234;
rents(500,2)=82.3169447556734;
rents(500,3)=102.92015886618388;
rents(500,4)=125.82461843814255;
rents(500,5)=148.80104439151205;
rents(500,6)=173.32582702039136;
rents(500,7)=194.3089855682139;
rents(500,8)=199.84423110337409;
rents(500,9)=200;
incomes(500,1)=31571.922416850095;
incomes(500,2)=32285.7646334249;
incomes(500,3)=32042.742561624695;
incomes(500,4)=31479.737640865398;
incomes(500,5)=32101.379607574316;
incomes(500,6)=32782.14491398063;
incomes(500,7)=32263.08771691042;
incomes(500,8)=32885.61309204667;
incomes(500,9)=33036.308423634204;
bref(501)=10000;
bnorm(501)=20000;
incomemean(501)=10000;
rents(501,1)=99.43177563604748;
rents(501,2)=51.48215795147287;
rents(501,3)=54.540323382658656;
rents(501,4)=56.950423603641674;
rents(501,5)=58.6676142350334;
rents(501,6)=60.63119388227448;
rents(501,7)=62.47988165034849;
rents(501,8)=63.09124545560247;
rents(501,9)=63.0135495504501;
incomes(501,1)=18949.64800588952;
incomes(501,2)=19388.292602891666;
incomes(501,3)=19217.3229851569;
incomes(501,4)=19034.83346256377;
incomes(501,5)=19263.178296949645;
incomes(501,6)=19243.050762176645;
incomes(501,7)=18846.800042799576;
incomes(501,8)=18606.700600929904;
incomes(501,9)=19141.179201470335;
bref(502)=10000;
bnorm(502)=20000;
incomemean(502)=11000;
rents(502,1)=98.8415508943595;
rents(502,2)=51.0484617280084;
rents(502,3)=56.38461972004955;
rents(502,4)=60.876176898980916;
rents(502,5)=64.19618758488303;
rents(502,6)=67.76205842971177;
rents(502,7)=70.1586008006477;
rents(502,8)=71.25287610860684;
rents(502,9)=71.9546588757417;
incomes(502,1)=19765.62408314889;
incomes(502,2)=20407.453627857732;
incomes(502,3)=20173.829097366066;
incomes(502,4)=19883.45693774044;
incomes(502,5)=20277.118142024698;
incomes(502,6)=20019.838074261315;
incomes(502,7)=19612.126068718066;
incomes(502,8)=19507.287038796876;
incomes(502,9)=20059.013764272917;
bref(503)=10000;
bnorm(503)=20000;
incomemean(503)=12000;
rents(503,1)=98.45382425089417;
rents(503,2)=50.6620654154976;
rents(503,3)=58.0539398752985;
rents(503,4)=65.42499036154055;
rents(503,5)=71.32054728674865;
rents(503,6)=77.21996489016898;
rents(503,7)=82.40992430843677;
rents(503,8)=86.00366839578744;
rents(503,9)=86.87497044705617;
incomes(503,1)=20774.533761493534;
incomes(503,2)=21298.867937080042;
incomes(503,3)=21352.825438324857;
incomes(503,4)=21036.83874877135;
incomes(503,5)=21277.303821025187;
incomes(503,6)=21283.137800445173;
incomes(503,7)=21049.571597494585;
incomes(503,8)=20450.252525364;
incomes(503,9)=21230.608478397182;
bref(504)=10000;
bnorm(504)=20000;
incomemean(504)=13000;
rents(504,1)=98.8538087962433;
rents(504,2)=50.951304259315954;
rents(504,3)=62.00641066188858;
rents(504,4)=73.5385162959358;
rents(504,5)=82.58503063491568;
rents(504,6)=92.44406929330465;
rents(504,7)=99.10609950407824;
rents(504,8)=103.75023992679468;
rents(504,9)=108.1240814231306;
incomes(504,1)=22274.619994329038;
incomes(504,2)=22984.527999030124;
incomes(504,3)=23063.758216572925;
incomes(504,4)=22338.47245992848;
incomes(504,5)=22972.42488069928;
incomes(504,6)=22495.10417200407;
incomes(504,7)=22188.366071528395;
incomes(504,8)=22450.942683645306;
incomes(504,9)=22454.896179382416;
bref(505)=10000;
bnorm(505)=20000;
incomemean(505)=14000;
rents(505,1)=102.0018615389541;
rents(505,2)=52.33151245361732;
rents(505,3)=66.63804385235962;
rents(505,4)=81.23977023997577;
rents(505,5)=95.00279742357547;
rents(505,6)=107.49366802690467;
rents(505,7)=119.13009172104773;
rents(505,8)=126.27448879117462;
rents(505,9)=130.70715799052874;
incomes(505,1)=23554.69791689852;
incomes(505,2)=24344.29960926994;
incomes(505,3)=24119.7485975495;
incomes(505,4)=23845.40315559966;
incomes(505,5)=23907.826648181046;
incomes(505,6)=24282.961540613753;
incomes(505,7)=23792.216267160027;
incomes(505,8)=23671.264348757446;
incomes(505,9)=24005.362648334827;
bref(506)=10000;
bnorm(506)=20000;
incomemean(506)=15000;
rents(506,1)=99.33224456110534;
rents(506,2)=51.30233027192032;
rents(506,3)=68.35199219697404;
rents(506,4)=88.03855492838939;
rents(506,5)=107.550913633332;
rents(506,6)=125.8088488161427;
rents(506,7)=142.73566611186084;
rents(506,8)=153.60923336062012;
rents(506,9)=164.05443667383113;
incomes(506,1)=25303.50745569751;
incomes(506,2)=25481.61609482922;
incomes(506,3)=25642.297048587203;
incomes(506,4)=25330.061702536856;
incomes(506,5)=25580.692928516542;
incomes(506,6)=25884.26418834341;
incomes(506,7)=25509.134559996837;
incomes(506,8)=26119.603364319664;
incomes(506,9)=26126.35433793406;
bref(507)=10000;
bnorm(507)=20000;
incomemean(507)=16000;
rents(507,1)=100.9379491529427;
rents(507,2)=51.63463129930579;
rents(507,3)=72.38889087249359;
rents(507,4)=96.98212055735962;
rents(507,5)=122.57871002089018;
rents(507,6)=145.52658290431998;
rents(507,7)=165.23938555529998;
rents(507,8)=178.02466255658854;
rents(507,9)=186.76730104000498;
incomes(507,1)=26409.26349059878;
incomes(507,2)=27036.937018472938;
incomes(507,3)=27031.25972263159;
incomes(507,4)=26993.9314537846;
incomes(507,5)=26659.225812263518;
incomes(507,6)=27145.98483982432;
incomes(507,7)=26899.351161308758;
incomes(507,8)=27072.957207773758;
incomes(507,9)=27388.636025325683;
bref(508)=10000;
bnorm(508)=20000;
incomemean(508)=17000;
rents(508,1)=97.82519904399152;
rents(508,2)=51.02726621706405;
rents(508,3)=74.7078780644286;
rents(508,4)=103.63391607507027;
rents(508,5)=132.40972360274623;
rents(508,6)=162.22974990056946;
rents(508,7)=190.14327531586903;
rents(508,8)=200;
rents(508,9)=200;
incomes(508,1)=27743.808676264307;
incomes(508,2)=28382.632404558823;
incomes(508,3)=28221.524640255044;
incomes(508,4)=27568.691512147216;
incomes(508,5)=28353.408771937207;
incomes(508,6)=29220.99555021831;
incomes(508,7)=29389.22052119976;
incomes(508,8)=29587.325993061422;
incomes(508,9)=30073.76176190701;
bref(509)=10000;
bnorm(509)=20000;
incomemean(509)=18000;
rents(509,1)=98.96483724522538;
rents(509,2)=51.48119238571807;
rents(509,3)=79.55774572761062;
rents(509,4)=115.41458980979644;
rents(509,5)=153.70951192222694;
rents(509,6)=188.49305652836884;
rents(509,7)=200;
rents(509,8)=200;
rents(509,9)=200;
incomes(509,1)=29636.91384269051;
incomes(509,2)=30233.938953694753;
incomes(509,3)=29987.539507803842;
incomes(509,4)=29695.646738078114;
incomes(509,5)=30084.305443532212;
incomes(509,6)=31068.63070980857;
incomes(509,7)=30641.44343304843;
incomes(509,8)=30678.136322913768;
incomes(509,9)=30438.711597171627;
bref(510)=10000;
bnorm(510)=20000;
incomemean(510)=19000;
rents(510,1)=100.37613957304019;
rents(510,2)=51.96592293913251;
rents(510,3)=84.32869046733626;
rents(510,4)=128.3549437998829;
rents(510,5)=179.27701912867678;
rents(510,6)=200;
rents(510,7)=200;
rents(510,8)=200;
rents(510,9)=200;
incomes(510,1)=31538.483000394986;
incomes(510,2)=32123.180409840566;
incomes(510,3)=31913.37802481208;
incomes(510,4)=32094.014204676663;
incomes(510,5)=32944.055809351936;
incomes(510,6)=33141.88385352088;
incomes(510,7)=33463.16157568631;
incomes(510,8)=32874.44772588197;
incomes(510,9)=33010.16061614597;
bref(511)=10000;
bnorm(511)=23000;
incomemean(511)=10000;
rents(511,1)=98.17082543279749;
rents(511,2)=55.52638362154442;
rents(511,3)=57.543720075758216;
rents(511,4)=59.431793135601424;
rents(511,5)=60.713335861993166;
rents(511,6)=62.319520732503456;
rents(511,7)=63.21890290152602;
rents(511,8)=63.642796277345745;
rents(511,9)=63.787037752487926;
incomes(511,1)=19293.20896837528;
incomes(511,2)=19403.934524559507;
incomes(511,3)=19405.33413572458;
incomes(511,4)=19235.727861639443;
incomes(511,5)=19497.184963975535;
incomes(511,6)=19319.045516923765;
incomes(511,7)=19157.50024465055;
incomes(511,8)=19009.56175452145;
incomes(511,9)=19181.998254933413;
bref(512)=10000;
bnorm(512)=23000;
incomemean(512)=11000;
rents(512,1)=100.72558098294334;
rents(512,2)=56.982024845958726;
rents(512,3)=61.04132529386099;
rents(512,4)=64.93486631050679;
rents(512,5)=67.57342270240673;
rents(512,6)=70.5989396565882;
rents(512,7)=72.93506785589659;
rents(512,8)=74.54043058879085;
rents(512,9)=75.2008322040418;
incomes(512,1)=20249.447990033943;
incomes(512,2)=20330.478236229013;
incomes(512,3)=20353.01145189561;
incomes(512,4)=20026.56250962247;
incomes(512,5)=20218.06276253534;
incomes(512,6)=20130.566685232658;
incomes(512,7)=20123.72642425773;
incomes(512,8)=19734.195135307353;
incomes(512,9)=20389.168589126544;
bref(513)=10000;
bnorm(513)=23000;
incomemean(513)=12000;
rents(513,1)=98.65863969002542;
rents(513,2)=55.874042239999405;
rents(513,3)=62.43192932194257;
rents(513,4)=68.33194897991746;
rents(513,5)=73.93008419632245;
rents(513,6)=78.29668086673246;
rents(513,7)=82.71918077148965;
rents(513,8)=84.8590933434191;
rents(513,9)=87.24977377895715;
incomes(513,1)=21150.952974995784;
incomes(513,2)=21586.046296059063;
incomes(513,3)=21347.89968049501;
incomes(513,4)=21485.819540556684;
incomes(513,5)=21233.155591074305;
incomes(513,6)=21459.648446063147;
incomes(513,7)=20768.8214502119;
incomes(513,8)=21076.434292331145;
incomes(513,9)=20788.264560647596;
bref(514)=10000;
bnorm(514)=23000;
incomemean(514)=13000;
rents(514,1)=97.43312208501187;
rents(514,2)=55.7588809224983;
rents(514,3)=64.4441797282359;
rents(514,4)=73.15444861777561;
rents(514,5)=80.69491519423426;
rents(514,6)=87.9420132812601;
rents(514,7)=93.69041492278959;
rents(514,8)=96.87682021365418;
rents(514,9)=100.27180670634786;
incomes(514,1)=22301.42162381484;
incomes(514,2)=22408.803995940507;
incomes(514,3)=22371.49888464305;
incomes(514,4)=22198.10842986443;
incomes(514,5)=22456.43628536587;
incomes(514,6)=22239.416900097982;
incomes(514,7)=21664.288395907282;
incomes(514,8)=21879.287534430106;
incomes(514,9)=21805.921590277976;
bref(515)=10000;
bnorm(515)=23000;
incomemean(515)=14000;
rents(515,1)=100.07729654861907;
rents(515,2)=56.68741463124542;
rents(515,3)=69.6411978046683;
rents(515,4)=83.50641298087096;
rents(515,5)=96.41966318496885;
rents(515,6)=108.77108730794716;
rents(515,7)=121.28431315550078;
rents(515,8)=130.73935120058906;
rents(515,9)=136.87389922404859;
incomes(515,1)=23974.844081011655;
incomes(515,2)=24382.68116424801;
incomes(515,3)=24415.917162413967;
incomes(515,4)=24144.364149070294;
incomes(515,5)=24385.216295688457;
incomes(515,6)=24793.592695492072;
incomes(515,7)=24591.817378585358;
incomes(515,8)=24290.48341910142;
incomes(515,9)=24721.67078752557;
bref(516)=10000;
bnorm(516)=23000;
incomemean(516)=15000;
rents(516,1)=98.77466335560254;
rents(516,2)=55.84105206114562;
rents(516,3)=71.74774400912688;
rents(516,4)=88.68421899860292;
rents(516,5)=106.39432676678766;
rents(516,6)=124.60793166052123;
rents(516,7)=140.89725021141666;
rents(516,8)=151.6679815582833;
rents(516,9)=161.03955644098744;
incomes(516,1)=25613.086417898146;
incomes(516,2)=25670.823744392772;
incomes(516,3)=25438.930548461383;
incomes(516,4)=25659.105169729504;
incomes(516,5)=26093.50862449681;
incomes(516,6)=26149.999628451445;
incomes(516,7)=25728.533202562212;
incomes(516,8)=26021.58144143928;
incomes(516,9)=26292.266354850948;
bref(517)=10000;
bnorm(517)=23000;
incomemean(517)=16000;
rents(517,1)=100.75312174346578;
rents(517,2)=56.954940698444496;
rents(517,3)=75.86046525498502;
rents(517,4)=97.51212494605424;
rents(517,5)=117.90605048126822;
rents(517,6)=138.94018649329456;
rents(517,7)=157.6623365031685;
rents(517,8)=169.30919046627375;
rents(517,9)=178.49033881095502;
incomes(517,1)=26743.88601916073;
incomes(517,2)=27042.82584452963;
incomes(517,3)=27020.282276279686;
incomes(517,4)=26447.37818964868;
incomes(517,5)=27062.677910028502;
incomes(517,6)=27115.51626507996;
incomes(517,7)=26576.83743067076;
incomes(517,8)=26831.698571068486;
incomes(517,9)=27420.505106700333;
bref(518)=10000;
bnorm(518)=23000;
incomemean(518)=17000;
rents(518,1)=97.70456777366911;
rents(518,2)=55.67998429462323;
rents(518,3)=78.12390288800687;
rents(518,4)=104.47640502930763;
rents(518,5)=132.35268646591317;
rents(518,6)=160.75032059656886;
rents(518,7)=185.21917761094036;
rents(518,8)=195.88719966439604;
rents(518,9)=198.99572818852818;
incomes(518,1)=28706.970706880773;
incomes(518,2)=28791.839377191947;
incomes(518,3)=28595.012133564673;
incomes(518,4)=28516.958553719036;
incomes(518,5)=28995.55906332199;
incomes(518,6)=29260.07151208838;
incomes(518,7)=29176.652530478532;
incomes(518,8)=28486.424408548955;
incomes(518,9)=29201.493741928618;
bref(519)=10000;
bnorm(519)=23000;
incomemean(519)=18000;
rents(519,1)=98.64910196368261;
rents(519,2)=55.78291925161029;
rents(519,3)=82.49782555932129;
rents(519,4)=115.80993843176708;
rents(519,5)=152.89393107389208;
rents(519,6)=189.35106532966955;
rents(519,7)=199.96120586094918;
rents(519,8)=200;
rents(519,9)=200;
incomes(519,1)=30400.292888208358;
incomes(519,2)=30802.268685265863;
incomes(519,3)=30664.357467602233;
incomes(519,4)=30660.482189335373;
incomes(519,5)=31297.499471256182;
incomes(519,6)=31500.327584602474;
incomes(519,7)=30896.563561587594;
incomes(519,8)=30888.887359018427;
incomes(519,9)=31249.877677258482;
bref(520)=10000;
bnorm(520)=23000;
incomemean(520)=19000;
rents(520,1)=97.40790714568024;
rents(520,2)=55.32450905236198;
rents(520,3)=85.19331573578083;
rents(520,4)=124.33257364315985;
rents(520,5)=165.7377357901313;
rents(520,6)=197.94161132939078;
rents(520,7)=200;
rents(520,8)=200;
rents(520,9)=200;
incomes(520,1)=31381.690285090714;
incomes(520,2)=32195.320860610474;
incomes(520,3)=32075.527634279908;
incomes(520,4)=31274.7137652056;
incomes(520,5)=32263.915486385144;
incomes(520,6)=33002.162387850425;
incomes(520,7)=32321.238125947777;
incomes(520,8)=32607.428184996643;
incomes(520,9)=32620.726351974852;
bref(521)=10000;
bnorm(521)=26000;
incomemean(521)=10000;
rents(521,1)=101.02861853613506;
rents(521,2)=62.168519428493674;
rents(521,3)=63.61554209414603;
rents(521,4)=64.992457988081;
rents(521,5)=65.85943748763194;
rents(521,6)=65.9805471101268;
rents(521,7)=66.0295907287635;
rents(521,8)=65.3651312015273;
rents(521,9)=64.8388844843599;
incomes(521,1)=19081.158873332744;
incomes(521,2)=19517.481447803024;
incomes(521,3)=19512.525826934747;
incomes(521,4)=19290.57934855613;
incomes(521,5)=19069.61284112414;
incomes(521,6)=19048.82984408964;
incomes(521,7)=18700.552953138766;
incomes(521,8)=18700.778304547242;
incomes(521,9)=18791.33838290947;
bref(522)=10000;
bnorm(522)=26000;
incomemean(522)=11000;
rents(522,1)=100.05784370608207;
rents(522,2)=61.58166479850667;
rents(522,3)=65.0036039574838;
rents(522,4)=67.18223519839574;
rents(522,5)=68.79662512943756;
rents(522,6)=70.16768193372997;
rents(522,7)=72.11280055783189;
rents(522,8)=71.96344868678247;
rents(522,9)=71.67718683484657;
incomes(522,1)=19683.071964245388;
incomes(522,2)=20369.59469403966;
incomes(522,3)=19935.291000001023;
incomes(522,4)=19739.503758703286;
incomes(522,5)=19757.565488940378;
incomes(522,6)=20068.726485940137;
incomes(522,7)=19266.025719609635;
incomes(522,8)=19215.24610263739;
incomes(522,9)=19669.51760556763;
bref(523)=10000;
bnorm(523)=26000;
incomemean(523)=12000;
rents(523,1)=96.64680478138649;
rents(523,2)=59.476517649121696;
rents(523,3)=65.81586527645337;
rents(523,4)=71.7241536697612;
rents(523,5)=75.87989106374474;
rents(523,6)=80.52305480885094;
rents(523,7)=84.71853626020801;
rents(523,8)=87.25442959691021;
rents(523,9)=89.42859784394146;
incomes(523,1)=21298.250363261635;
incomes(523,2)=21746.95119630607;
incomes(523,3)=21713.134535031117;
incomes(523,4)=21052.702376370027;
incomes(523,5)=21530.47635011777;
incomes(523,6)=21650.413206136942;
incomes(523,7)=21105.16857630546;
incomes(523,8)=21247.604891788218;
incomes(523,9)=21187.229326112745;
bref(524)=10000;
bnorm(524)=26000;
incomemean(524)=13000;
rents(524,1)=100.3124929957289;
rents(524,2)=61.73284000549986;
rents(524,3)=70.35611833137924;
rents(524,4)=78.40781768894952;
rents(524,5)=85.82617653071821;
rents(524,6)=92.35889163014419;
rents(524,7)=98.95596567813202;
rents(524,8)=102.34591148558141;
rents(524,9)=105.9740685872136;
incomes(524,1)=22340.325663080028;
incomes(524,2)=22832.697446612256;
incomes(524,3)=22593.699631174364;
incomes(524,4)=22573.45069156891;
incomes(524,5)=22543.133296090808;
incomes(524,6)=22784.43491099932;
incomes(524,7)=21940.357048435017;
incomes(524,8)=22316.29647028242;
incomes(524,9)=22590.506574855455;
bref(525)=10000;
bnorm(525)=26000;
incomemean(525)=14000;
rents(525,1)=101.07591027067242;
rents(525,2)=62.20201683474759;
rents(525,3)=72.72896001027529;
rents(525,4)=83.75725777047951;
rents(525,5)=93.12523503094197;
rents(525,6)=102.53182420387759;
rents(525,7)=111.37002843668331;
rents(525,8)=118.88461452957478;
rents(525,9)=123.86416350173556;
incomes(525,1)=23507.27268042462;
incomes(525,2)=23717.15520714323;
incomes(525,3)=23864.427948474302;
incomes(525,4)=23428.48075260981;
incomes(525,5)=23770.351636800937;
incomes(525,6)=24046.843283676102;
incomes(525,7)=23892.759826297886;
incomes(525,8)=23475.405753092095;
incomes(525,9)=24117.649333022113;
bref(526)=10000;
bnorm(526)=26000;
incomemean(526)=15000;
rents(526,1)=98.85931469415233;
rents(526,2)=60.839968215680955;
rents(526,3)=74.47106027547333;
rents(526,4)=88.73595784170142;
rents(526,5)=102.8884581944864;
rents(526,6)=116.60319002128976;
rents(526,7)=128.97085983214882;
rents(526,8)=138.0506210997145;
rents(526,9)=145.1846773285857;
incomes(526,1)=24972.95245000591;
incomes(526,2)=25269.697184431505;
incomes(526,3)=25296.772495199966;
incomes(526,4)=25216.267245853272;
incomes(526,5)=25374.542972779753;
incomes(526,6)=25531.0393607259;
incomes(526,7)=25190.314255816913;
incomes(526,8)=25180.62414737934;
incomes(526,9)=25445.278724061794;
bref(527)=10000;
bnorm(527)=26000;
incomemean(527)=16000;
rents(527,1)=99.92678157290692;
rents(527,2)=61.493866453918606;
rents(527,3)=78.75960830916955;
rents(527,4)=97.21079444368002;
rents(527,5)=114.7921965168627;
rents(527,6)=133.56153845841288;
rents(527,7)=150.5579059638054;
rents(527,8)=162.7663443108753;
rents(527,9)=173.48744744734455;
incomes(527,1)=26062.54289722911;
incomes(527,2)=26968.801034495104;
incomes(527,3)=26772.454140670627;
incomes(527,4)=26323.570213990413;
incomes(527,5)=27103.58812708244;
incomes(527,6)=27217.462206136912;
incomes(527,7)=26789.545744079474;
incomes(527,8)=27022.96295322837;
incomes(527,9)=27419.87285852635;
bref(528)=10000;
bnorm(528)=26000;
incomemean(528)=17000;
rents(528,1)=96.64058388238513;
rents(528,2)=59.46734098965774;
rents(528,3)=79.42759372541799;
rents(528,4)=102.54377159032057;
rents(528,5)=125.25186675543466;
rents(528,6)=148.54706948376068;
rents(528,7)=166.97851571761157;
rents(528,8)=181.61484524248704;
rents(528,9)=192.64313407464945;
incomes(528,1)=27509.14443725037;
incomes(528,2)=28287.21515554925;
incomes(528,3)=28335.871825862167;
incomes(528,4)=27712.734273987855;
incomes(528,5)=28432.057016377083;
incomes(528,6)=27969.02214940764;
incomes(528,7)=28044.146123338414;
incomes(528,8)=28382.080095492973;
incomes(528,9)=28743.884670936666;
bref(529)=10000;
bnorm(529)=26000;
incomemean(529)=18000;
rents(529,1)=101.59680450661747;
rents(529,2)=62.52321090662272;
rents(529,3)=86.37884149403303;
rents(529,4)=115.39130630487189;
rents(529,5)=144.40948983974872;
rents(529,6)=175.6920833479957;
rents(529,7)=196.94652132333488;
rents(529,8)=199.9549516073955;
rents(529,9)=200;
incomes(529,1)=29692.03364744585;
incomes(529,2)=29916.975509624364;
incomes(529,3)=30155.390683962192;
incomes(529,4)=29557.883855586882;
incomes(529,5)=30503.153329246165;
incomes(529,6)=30659.786277117837;
incomes(529,7)=30524.091805514447;
incomes(529,8)=30567.733970018915;
incomes(529,9)=30847.10075309683;
bref(530)=10000;
bnorm(530)=26000;
incomemean(530)=19000;
rents(530,1)=102.65183920903037;
rents(530,2)=63.177597126976494;
rents(530,3)=90.34218413675305;
rents(530,4)=123.04514932640303;
rents(530,5)=157.57921245511204;
rents(530,6)=190.93539017923212;
rents(530,7)=200;
rents(530,8)=200;
rents(530,9)=200;
incomes(530,1)=30605.04871042158;
incomes(530,2)=31366.854458214544;
incomes(530,3)=31108.44472723106;
incomes(530,4)=30913.668661044612;
incomes(530,5)=31562.93848533322;
incomes(530,6)=32394.123241120364;
incomes(530,7)=31961.33480715259;
incomes(530,8)=31546.417396394118;
incomes(530,9)=31654.537694835177;
bref(531)=10000;
bnorm(531)=29000;
incomemean(531)=10000;
rents(531,1)=100.63501397089831;
rents(531,2)=65.93211497422975;
rents(531,3)=66.34309571125661;
rents(531,4)=66.45762814550359;
rents(531,5)=66.20643760531226;
rents(531,6)=66.2517506260084;
rents(531,7)=66.56739392079727;
rents(531,8)=66.02581524585582;
rents(531,9)=65.31233664490382;
incomes(531,1)=18950.526603283004;
incomes(531,2)=19337.578098057904;
incomes(531,3)=19232.55002687492;
incomes(531,4)=18874.381864575153;
incomes(531,5)=19126.501322145647;
incomes(531,6)=19349.437709838323;
incomes(531,7)=18780.211864258417;
incomes(531,8)=18744.095951533363;
incomes(531,9)=18864.7804650584;
bref(532)=10000;
bnorm(532)=29000;
incomemean(532)=11000;
rents(532,1)=98.89453025125187;
rents(532,2)=64.79493352124429;
rents(532,3)=67.17162189648002;
rents(532,4)=68.7566654919003;
rents(532,5)=69.76932741533906;
rents(532,6)=71.34928683741686;
rents(532,7)=72.87438436382226;
rents(532,8)=73.67743686745922;
rents(532,9)=74.33621038957446;
incomes(532,1)=19877.4322246875;
incomes(532,2)=20136.013219166463;
incomes(532,3)=19919.33751504108;
incomes(532,4)=19670.20848174327;
incomes(532,5)=20039.764968654712;
incomes(532,6)=20033.28699791827;
incomes(532,7)=19833.816574219967;
incomes(532,8)=19864.04435604769;
incomes(532,9)=19537.384108008628;
bref(533)=10000;
bnorm(533)=29000;
incomemean(533)=12000;
rents(533,1)=99.68598160331932;
rents(533,2)=65.31430380816246;
rents(533,3)=70.1001712280462;
rents(533,4)=73.53516100157373;
rents(533,5)=76.66571910679312;
rents(533,6)=79.47565137940163;
rents(533,7)=82.26693782823315;
rents(533,8)=84.00622868922933;
rents(533,9)=85.80698915311072;
incomes(533,1)=20744.26148212857;
incomes(533,2)=21399.38870232005;
incomes(533,3)=20892.60753331417;
incomes(533,4)=20879.08930803633;
incomes(533,5)=20885.167191078443;
incomes(533,6)=21012.269181480515;
incomes(533,7)=20725.528847412275;
incomes(533,8)=20826.01653990556;
incomes(533,9)=20831.270338860148;
bref(534)=10000;
bnorm(534)=29000;
incomemean(534)=13000;
rents(534,1)=98.61823321513374;
rents(534,2)=64.61172447911494;
rents(534,3)=71.77509232496926;
rents(534,4)=78.33514716901735;
rents(534,5)=83.85929027895972;
rents(534,6)=89.53507056076778;
rents(534,7)=94.50422681884037;
rents(534,8)=97.48036399049853;
rents(534,9)=100.88343556506776;
incomes(534,1)=22244.251503490083;
incomes(534,2)=22646.82839743199;
incomes(534,3)=22429.585705432168;
incomes(534,4)=22106.64664540293;
incomes(534,5)=22507.530440667968;
incomes(534,6)=22506.40059261877;
incomes(534,7)=21830.66950129438;
incomes(534,8)=22112.29836136732;
incomes(534,9)=22254.547871148825;
bref(535)=10000;
bnorm(535)=29000;
incomemean(535)=14000;
rents(535,1)=100.93303626313208;
rents(535,2)=66.12027758398555;
rents(535,3)=77.43998777023587;
rents(535,4)=87.5638524380073;
rents(535,5)=96.4611588641217;
rents(535,6)=106.00240641917513;
rents(535,7)=114.99889980295507;
rents(535,8)=121.6041457481136;
rents(535,9)=128.25041675597956;
incomes(535,1)=24039.91373923928;
incomes(535,2)=24682.14768414206;
incomes(535,3)=24081.487110602644;
incomes(535,4)=23732.170234744794;
incomes(535,5)=24281.93262526312;
incomes(535,6)=24426.27240681835;
incomes(535,7)=23894.434313329617;
incomes(535,8)=24312.670764999868;
incomes(535,9)=24781.254267461918;
bref(536)=10000;
bnorm(536)=29000;
incomemean(536)=15000;
rents(536,1)=100.2874088213477;
rents(536,2)=65.70901009058468;
rents(536,3)=79.18159267637617;
rents(536,4)=93.90907346948008;
rents(536,5)=106.47145208907335;
rents(536,6)=119.72939887536097;
rents(536,7)=131.19566783498408;
rents(536,8)=139.0404968819205;
rents(536,9)=146.1547801824291;
incomes(536,1)=24881.532499012043;
incomes(536,2)=25567.69097758844;
incomes(536,3)=25806.70041917897;
incomes(536,4)=25054.10477530067;
incomes(536,5)=25566.608008473184;
incomes(536,6)=25563.914316763876;
incomes(536,7)=24717.374330255527;
incomes(536,8)=24917.170853532167;
incomes(536,9)=24822.262649078628;
bref(537)=10000;
bnorm(537)=29000;
incomemean(537)=16000;
rents(537,1)=100.45867873066844;
rents(537,2)=65.82230958648712;
rents(537,3)=83.07243219158292;
rents(537,4)=101.11279752751942;
rents(537,5)=119.74058310922348;
rents(537,6)=137.16632648010346;
rents(537,7)=152.91680773413577;
rents(537,8)=164.6500418867529;
rents(537,9)=174.65304761157935;
incomes(537,1)=26940.793414730888;
incomes(537,2)=27640.379493438748;
incomes(537,3)=27359.131610820088;
incomes(537,4)=27450.279949926604;
incomes(537,5)=27341.67305979496;
incomes(537,6)=27584.157100067932;
incomes(537,7)=27187.786814331863;
incomes(537,8)=27381.355860778272;
incomes(537,9)=27834.25404119662;
bref(538)=10000;
bnorm(538)=29000;
incomemean(538)=17000;
rents(538,1)=96.57511244362989;
rents(538,2)=63.26792497832378;
rents(538,3)=82.43427547612502;
rents(538,4)=102.63563422047835;
rents(538,5)=123.46428487690338;
rents(538,6)=146.48377186038132;
rents(538,7)=168.36958820054994;
rents(538,8)=184.28573143584282;
rents(538,9)=194.1307697644507;
incomes(538,1)=27871.56415741483;
incomes(538,2)=28625.53587434384;
incomes(538,3)=27953.654638664222;
incomes(538,4)=27813.87524758225;
incomes(538,5)=28791.55307387692;
incomes(538,6)=29108.474532410168;
incomes(538,7)=28540.935336692914;
incomes(538,8)=28877.69219021149;
incomes(538,9)=29536.05671267759;
bref(539)=10000;
bnorm(539)=29000;
incomemean(539)=18000;
rents(539,1)=97.78133345442177;
rents(539,2)=64.05799163380539;
rents(539,3)=87.07098075110467;
rents(539,4)=113.46391756428392;
rents(539,5)=139.89534110832585;
rents(539,6)=166.36117742539687;
rents(539,7)=189.89831586261636;
rents(539,8)=199.5338934886096;
rents(539,9)=199.9107871961847;
incomes(539,1)=29951.730780049795;
incomes(539,2)=30543.655137052556;
incomes(539,3)=30327.404760438374;
incomes(539,4)=29683.5310967433;
incomes(539,5)=30000.38971480681;
incomes(539,6)=30508.36369367831;
incomes(539,7)=30627.299553047327;
incomes(539,8)=30682.68781633569;
incomes(539,9)=30513.072781382056;
bref(540)=10000;
bnorm(540)=29000;
incomemean(540)=19000;
rents(540,1)=97.71425300719983;
rents(540,2)=64.0163221029864;
rents(540,3)=90.3471909285736;
rents(540,4)=122.0018806988054;
rents(540,5)=156.0877843593039;
rents(540,6)=187.54362669988282;
rents(540,7)=199.8888395523287;
rents(540,8)=200;
rents(540,9)=200;
incomes(540,1)=31573.47186686587;
incomes(540,2)=32280.038786524092;
incomes(540,3)=32068.250880145704;
incomes(540,4)=31850.784860046148;
incomes(540,5)=32090.310023827045;
incomes(540,6)=32932.841137763426;
incomes(540,7)=32415.304784833887;
incomes(540,8)=32770.62408813213;
incomes(540,9)=32674.546010700375;
bref(541)=10000;
bnorm(541)=32000;
incomemean(541)=10000;
rents(541,1)=100.82658549770794;
rents(541,2)=69.32145434314708;
rents(541,3)=69.51921337734943;
rents(541,4)=69.34025230726806;
rents(541,5)=68.83958358037033;
rents(541,6)=69.04301056219144;
rents(541,7)=69.28541709799359;
rents(541,8)=68.82624801849363;
rents(541,9)=68.26184595199062;
incomes(541,1)=19142.86632503575;
incomes(541,2)=19525.434482592726;
incomes(541,3)=19306.672220630342;
incomes(541,4)=19098.01690853399;
incomes(541,5)=19481.22727262876;
incomes(541,6)=19430.210288831837;
incomes(541,7)=19027.60982805513;
incomes(541,8)=18961.9066679936;
incomes(541,9)=19109.95031119086;
bref(542)=10000;
bnorm(542)=32000;
incomemean(542)=11000;
rents(542,1)=98.67538799939234;
rents(542,2)=67.84064784111253;
rents(542,3)=70.1440767779673;
rents(542,4)=71.97727663852625;
rents(542,5)=73.00985745786448;
rents(542,6)=74.39267162508303;
rents(542,7)=75.55284184998834;
rents(542,8)=75.513139425482;
rents(542,9)=75.35632926622358;
incomes(542,1)=19927.713493938783;
incomes(542,2)=20431.16632224781;
incomes(542,3)=20289.190639035;
incomes(542,4)=19933.261903474326;
incomes(542,5)=20198.789431041074;
incomes(542,6)=20191.308097407004;
incomes(542,7)=19604.81896872777;
incomes(542,8)=19594.119235776292;
incomes(542,9)=19986.884677520906;
bref(543)=10000;
bnorm(543)=32000;
incomemean(543)=12000;
rents(543,1)=99.6317202548032;
rents(543,2)=68.49824925456285;
rents(543,3)=73.37727610765886;
rents(543,4)=77.15060893178273;
rents(543,5)=80.20545926378229;
rents(543,6)=83.34471090542988;
rents(543,7)=86.14812180495623;
rents(543,8)=88.40265600679486;
rents(543,9)=90.93036202302802;
incomes(543,1)=21562.891474322918;
incomes(543,2)=21825.999885400703;
incomes(543,3)=21495.7683952226;
incomes(543,4)=21324.154473092607;
incomes(543,5)=21511.870336159;
incomes(543,6)=21517.680449960502;
incomes(543,7)=21337.62602280543;
incomes(543,8)=21644.144369834954;
incomes(543,9)=21407.20653160956;
bref(544)=10000;
bnorm(544)=32000;
incomemean(544)=13000;
rents(544,1)=100.2632705513136;
rents(544,2)=68.92272546416093;
rents(544,3)=75.29445752880925;
rents(544,4)=81.25821936924171;
rents(544,5)=86.66627253812774;
rents(544,6)=91.05066270369994;
rents(544,7)=95.53100711537867;
rents(544,8)=98.6475547544773;
rents(544,9)=101.73482075550055;
incomes(544,1)=22195.076858321332;
incomes(544,2)=22615.272596005027;
incomes(544,3)=22503.728830775013;
incomes(544,4)=22469.54898602414;
incomes(544,5)=22222.10392474356;
incomes(544,6)=22483.916310744225;
incomes(544,7)=22049.84573923478;
incomes(544,8)=22208.661949915295;
incomes(544,9)=22308.850788048716;
bref(545)=10000;
bnorm(545)=32000;
incomemean(545)=14000;
rents(545,1)=99.41918529017272;
rents(545,2)=68.35101533959661;
rents(545,3)=77.85287743853495;
rents(545,4)=87.22661046137277;
rents(545,5)=95.5182401538321;
rents(545,6)=103.64379879583517;
rents(545,7)=110.81837235980323;
rents(545,8)=116.27493481176204;
rents(545,9)=121.45054024973783;
incomes(545,1)=24202.989613066646;
incomes(545,2)=24243.55938614921;
incomes(545,3)=24262.987896214054;
incomes(545,4)=23959.823969164976;
incomes(545,5)=24265.340065986118;
incomes(545,6)=24079.96798053734;
incomes(545,7)=23765.382837061563;
incomes(545,8)=23907.65045659723;
incomes(545,9)=24369.79599079856;
bref(546)=10000;
bnorm(546)=32000;
incomemean(546)=15000;
rents(546,1)=101.72840171443498;
rents(546,2)=69.9358565617823;
rents(546,3)=82.32945765406464;
rents(546,4)=94.20975404366786;
rents(546,5)=105.27349052275618;
rents(546,6)=116.19557446063669;
rents(546,7)=127.26666036328974;
rents(546,8)=136.09295066542646;
rents(546,9)=142.80922398303707;
incomes(546,1)=25212.149534871947;
incomes(546,2)=25641.7567727945;
incomes(546,3)=25307.68593146851;
incomes(546,4)=25115.274231803625;
incomes(546,5)=25350.271673955445;
incomes(546,6)=25814.915893317157;
incomes(546,7)=25380.528360851928;
incomes(546,8)=25183.755682779134;
incomes(546,9)=26202.374389248307;
bref(547)=10000;
bnorm(547)=32000;
incomemean(547)=16000;
rents(547,1)=97.81373549900621;
rents(547,2)=67.2411000007316;
rents(547,3)=82.43383657645255;
rents(547,4)=98.39549171132408;
rents(547,5)=112.9151141805867;
rents(547,6)=129.86228927010555;
rents(547,7)=145.5460748611233;
rents(547,8)=157.0865696674787;
rents(547,9)=167.01952742904012;
incomes(547,1)=26498.972986745383;
incomes(547,2)=27217.19180743957;
incomes(547,3)=27027.77142184821;
incomes(547,4)=26272.71684713653;
incomes(547,5)=27426.461028764086;
incomes(547,6)=27622.751417189866;
incomes(547,7)=26913.275238993774;
incomes(547,8)=26804.756740628465;
incomes(547,9)=27520.145679803412;
bref(548)=10000;
bnorm(548)=32000;
incomemean(548)=17000;
rents(548,1)=99.2548742192826;
rents(548,2)=68.24314612703067;
rents(548,3)=86.89257537944687;
rents(548,4)=107.86388382621871;
rents(548,5)=129.19921866517728;
rents(548,6)=150.5583568951777;
rents(548,7)=170.80510005919047;
rents(548,8)=186.24956535003238;
rents(548,9)=193.87377646969756;
incomes(548,1)=28762.468264821324;
incomes(548,2)=29058.123470335082;
incomes(548,3)=29116.150076293598;
incomes(548,4)=28906.88550948816;
incomes(548,5)=29058.956563307216;
incomes(548,6)=29417.246039505488;
incomes(548,7)=29202.24283391252;
incomes(548,8)=29178.14077945272;
incomes(548,9)=29338.17232046162;
bref(549)=10000;
bnorm(549)=32000;
incomemean(549)=18000;
rents(549,1)=96.90552463061552;
rents(549,2)=66.61639530897271;
rents(549,3)=88.39987038912247;
rents(549,4)=113.79339841983646;
rents(549,5)=140.02406586047414;
rents(549,6)=167.1593755853058;
rents(549,7)=189.98615047289255;
rents(549,8)=198.1314725967527;
rents(549,9)=200;
incomes(549,1)=29872.523444883915;
incomes(549,2)=30760.911692220863;
incomes(549,3)=30883.73479688932;
incomes(549,4)=30431.659924971435;
incomes(549,5)=30961.517409848315;
incomes(549,6)=30927.884511451764;
incomes(549,7)=31204.220709507837;
incomes(549,8)=30866.009593859057;
incomes(549,9)=31283.395573193928;
bref(550)=10000;
bnorm(550)=32000;
incomemean(550)=19000;
rents(550,1)=100.24321271758545;
rents(550,2)=68.91868871167777;
rents(550,3)=92.97341799392062;
rents(550,4)=120.97974203446927;
rents(550,5)=150.53087725877646;
rents(550,6)=180.3682539177293;
rents(550,7)=197.5700518164844;
rents(550,8)=199.92600990885234;
rents(550,9)=200;
incomes(550,1)=30923.12420054273;
incomes(550,2)=31559.072377740486;
incomes(550,3)=31553.50419221013;
incomes(550,4)=31249.747812471884;
incomes(550,5)=31612.189479375866;
incomes(550,6)=32001.66628300256;
incomes(550,7)=31843.558527252157;
incomes(550,8)=31855.59978065086;
incomes(550,9)=32312.99105702958;
bref(551)=10000;
bnorm(551)=35000;
incomemean(551)=10000;
rents(551,1)=101.12127380993361;
rents(551,2)=72.23113229993565;
rents(551,3)=72.28136162267779;
rents(551,4)=72.10648114498781;
rents(551,5)=71.83355780727481;
rents(551,6)=71.53557628839467;
rents(551,7)=71.28565901432236;
rents(551,8)=70.58948482414668;
rents(551,9)=69.97703247990259;
incomes(551,1)=19094.139840742562;
incomes(551,2)=19527.60389945399;
incomes(551,3)=19355.689063182628;
incomes(551,4)=19324.983194985292;
incomes(551,5)=19357.87159592779;
incomes(551,6)=19365.3992553892;
incomes(551,7)=18934.045614979575;
incomes(551,8)=19057.404025330277;
incomes(551,9)=19022.36781025375;
bref(552)=10000;
bnorm(552)=35000;
incomemean(552)=11000;
rents(552,1)=99.49542549441195;
rents(552,2)=71.07457981718296;
rents(552,3)=72.77986636650407;
rents(552,4)=74.26109223127293;
rents(552,5)=74.70307813634318;
rents(552,6)=75.32998335377924;
rents(552,7)=76.12920298780897;
rents(552,8)=75.70471198348835;
rents(552,9)=75.96038476714989;
incomes(552,1)=20104.08720514452;
incomes(552,2)=20429.02073492849;
incomes(552,3)=20341.88972580416;
incomes(552,4)=19825.773955820692;
incomes(552,5)=20056.587618452522;
incomes(552,6)=20206.367237665745;
incomes(552,7)=19363.461819665816;
incomes(552,8)=19823.922964582132;
incomes(552,9)=20052.91530601733;
bref(553)=10000;
bnorm(553)=35000;
incomemean(553)=12000;
rents(553,1)=101.52287065396222;
rents(553,2)=72.5200417777722;
rents(553,3)=76.56943371662416;
rents(553,4)=79.9286816908992;
rents(553,5)=82.65021204731339;
rents(553,6)=85.38790407339413;
rents(553,7)=88.21601672377103;
rents(553,8)=89.90545641213511;
rents(553,9)=90.9678863588269;
incomes(553,1)=21250.337497496923;
incomes(553,2)=21672.038541074766;
incomes(553,3)=21478.640560674332;
incomes(553,4)=21305.121968435356;
incomes(553,5)=21461.967859239714;
incomes(553,6)=21692.298494155373;
incomes(553,7)=21225.05053207216;
incomes(553,8)=20929.202053722856;
incomes(553,9)=21051.464116523333;
bref(554)=10000;
bnorm(554)=35000;
incomemean(554)=13000;
rents(554,1)=99.90413673060951;
rents(554,2)=71.36168986890627;
rents(554,3)=78.38140736326083;
rents(554,4)=85.19636444596979;
rents(554,5)=91.15054869242763;
rents(554,6)=96.73097719381072;
rents(554,7)=102.0486107264184;
rents(554,8)=106.25441072530491;
rents(554,9)=109.16322293851688;
incomes(554,1)=22721.349997781253;
incomes(554,2)=23321.771837668042;
incomes(554,3)=23351.993734521086;
incomes(554,4)=23123.425076634398;
incomes(554,5)=23177.5197607044;
incomes(554,6)=23196.071148395044;
incomes(554,7)=22929.898647181984;
incomes(554,8)=22562.81899716104;
incomes(554,9)=23051.494808136347;
bref(555)=10000;
bnorm(555)=35000;
incomemean(555)=14000;
rents(555,1)=101.66280195785751;
rents(555,2)=72.60861720348578;
rents(555,3)=81.68814384250626;
rents(555,4)=90.36917053206191;
rents(555,5)=98.64946659452913;
rents(555,6)=106.20783818699282;
rents(555,7)=113.40655545705043;
rents(555,8)=118.56881686785604;
rents(555,9)=123.60514111244477;
incomes(555,1)=23743.801823414775;
incomes(555,2)=24378.36654686714;
incomes(555,3)=24285.20614907113;
incomes(555,4)=24197.210028906557;
incomes(555,5)=24144.145703672228;
incomes(555,6)=24320.171241320124;
incomes(555,7)=23591.852958165826;
incomes(555,8)=23703.33219555953;
incomes(555,9)=24436.85760047973;
bref(556)=10000;
bnorm(556)=35000;
incomemean(556)=15000;
rents(556,1)=100.09394774818644;
rents(556,2)=71.49721361007197;
rents(556,3)=81.90388721555696;
rents(556,4)=92.56895652443112;
rents(556,5)=101.93850636784818;
rents(556,6)=111.53585960565006;
rents(556,7)=121.34936107298817;
rents(556,8)=128.40182975402377;
rents(556,9)=133.84157077360496;
incomes(556,1)=25158.45534712096;
incomes(556,2)=25075.61299616478;
incomes(556,3)=25206.76484926219;
incomes(556,4)=24620.45678416194;
incomes(556,5)=25042.612459559346;
incomes(556,6)=25519.470323182315;
incomes(556,7)=24679.176528215336;
incomes(556,8)=24387.23020512891;
incomes(556,9)=25406.692090175762;
bref(557)=10000;
bnorm(557)=35000;
incomemean(557)=16000;
rents(557,1)=97.49868590174225;
rents(557,2)=69.64382914342876;
rents(557,3)=83.4456613887532;
rents(557,4)=98.30888518194213;
rents(557,5)=112.96916332569752;
rents(557,6)=128.1647625808581;
rents(557,7)=142.54144583308545;
rents(557,8)=153.76303111047497;
rents(557,9)=162.3078813159426;
incomes(557,1)=26854.721718356792;
incomes(557,2)=27103.43312121427;
incomes(557,3)=27194.275427782257;
incomes(557,4)=26982.447449776308;
incomes(557,5)=27395.673432526157;
incomes(557,6)=27576.376033091015;
incomes(557,7)=27006.78036609396;
incomes(557,8)=26584.383736005868;
incomes(557,9)=27581.47790199898;
bref(558)=10000;
bnorm(558)=35000;
incomemean(558)=17000;
rents(558,1)=102.7535080721053;
rents(558,2)=73.39127292470198;
rents(558,3)=91.0972175065487;
rents(558,4)=109.7864921934947;
rents(558,5)=128.4625371995555;
rents(558,6)=147.20809942804442;
rents(558,7)=165.3902387801227;
rents(558,8)=179.3140253519943;
rents(558,9)=190.01636446385265;
incomes(558,1)=28714.459049878096;
incomes(558,2)=28911.757547683043;
incomes(558,3)=28753.266491198112;
incomes(558,4)=28620.928911446423;
incomes(558,5)=28903.54929086697;
incomes(558,6)=29362.03018968481;
incomes(558,7)=28785.203277018132;
incomes(558,8)=28838.69858974171;
incomes(558,9)=29536.170892052724;
bref(559)=10000;
bnorm(559)=35000;
incomemean(559)=18000;
rents(559,1)=99.48859284629543;
rents(559,2)=71.06734472448323;
rents(559,3)=90.78827927430144;
rents(559,4)=111.85186853236846;
rents(559,5)=132.4374915660189;
rents(559,6)=155.26370573689485;
rents(559,7)=177.74908614037952;
rents(559,8)=192.29279515760442;
rents(559,9)=198.02850682737454;
incomes(559,1)=30291.242583508007;
incomes(559,2)=30382.68127107029;
incomes(559,3)=29866.5437240693;
incomes(559,4)=29386.553521917416;
incomes(559,5)=30426.381446339674;
incomes(559,6)=30840.020513451083;
incomes(559,7)=30128.876972369668;
incomes(559,8)=30773.56741732292;
incomes(559,9)=31078.623361858103;
bref(560)=10000;
bnorm(560)=35000;
incomemean(560)=19000;
rents(560,1)=100.54824664811093;
rents(560,2)=71.82120364518153;
rents(560,3)=93.82651731102362;
rents(560,4)=119.2773385546303;
rents(560,5)=146.59667354489446;
rents(560,6)=174.61699381615912;
rents(560,7)=196.90423744063153;
rents(560,8)=200;
rents(560,9)=200;
incomes(560,1)=31034.800740543935;
incomes(560,2)=31329.897528371588;
incomes(560,3)=31354.78524734863;
incomes(560,4)=31295.044222965673;
incomes(560,5)=31634.657519819008;
incomes(560,6)=32185.813081478864;
incomes(560,7)=32186.774116710516;
incomes(560,8)=32189.23109850861;
incomes(560,9)=32122.243083397298;
bref(561)=10000;
bnorm(561)=38000;
incomemean(561)=10000;
rents(561,1)=99.87484049538702;
rents(561,2)=73.59456689257686;
rents(561,3)=73.54676458870074;
rents(561,4)=73.09260152267443;
rents(561,5)=72.19011003982352;
rents(561,6)=71.7981709220731;
rents(561,7)=71.16564987741111;
rents(561,8)=70.47880435612618;
rents(561,9)=69.66992527142843;
incomes(561,1)=19084.301839497624;
incomes(561,2)=19621.082357790303;
incomes(561,3)=19347.003603278157;
incomes(561,4)=19033.569905581153;
incomes(561,5)=19285.645731762907;
incomes(561,6)=19082.07702486313;
incomes(561,7)=18900.678762732776;
incomes(561,8)=18730.135138594153;
incomes(561,9)=19150.163333564087;
bref(562)=10000;
bnorm(562)=38000;
incomemean(562)=11000;
rents(562,1)=101.02047302978735;
rents(562,2)=74.43412064543077;
rents(562,3)=75.85564514510794;
rents(562,4)=77.11475222986341;
rents(562,5)=78.33418502070002;
rents(562,6)=79.29782542361409;
rents(562,7)=80.28031590804416;
rents(562,8)=80.48715476099497;
rents(562,9)=80.63974355579849;
incomes(562,1)=20200.994075376286;
incomes(562,2)=20524.332113091263;
incomes(562,3)=20464.88598763689;
incomes(562,4)=20462.668546408047;
incomes(562,5)=20531.221290213933;
incomes(562,6)=20554.931236157845;
incomes(562,7)=20083.56395845385;
incomes(562,8)=20151.292244291017;
incomes(562,9)=20221.17503232082;
bref(563)=10000;
bnorm(563)=38000;
incomemean(563)=12000;
rents(563,1)=97.32784237684093;
rents(563,2)=71.70822159575957;
rents(563,3)=75.5276112528941;
rents(563,4)=78.98500580902198;
rents(563,5)=81.51183791414938;
rents(563,6)=84.4495994627932;
rents(563,7)=87.16932080857471;
rents(563,8)=88.52913688273274;
rents(563,9)=89.4050700813543;
incomes(563,1)=21560.80049485261;
incomes(563,2)=21750.57624395429;
incomes(563,3)=21658.01338257476;
incomes(563,4)=21266.64911721727;
incomes(563,5)=21756.525972758707;
incomes(563,6)=21723.9974322153;
incomes(563,7)=21074.594970533642;
incomes(563,8)=20929.66981986478;
incomes(563,9)=21192.14789692273;
bref(564)=10000;
bnorm(564)=38000;
incomemean(564)=13000;
rents(564,1)=100.45048816788103;
rents(564,2)=74.01380436570471;
rents(564,3)=79.31245366927809;
rents(564,4)=84.71365630056222;
rents(564,5)=89.62586421716539;
rents(564,6)=93.87889863676463;
rents(564,7)=97.36537828421373;
rents(564,8)=100.31375681283741;
rents(564,9)=103.20678408651652;
incomes(564,1)=22147.240321672187;
incomes(564,2)=22658.137189850007;
incomes(564,3)=22844.9837213277;
incomes(564,4)=22725.998891799107;
incomes(564,5)=22642.807498805585;
incomes(564,6)=22454.025511878797;
incomes(564,7)=22329.528036056374;
incomes(564,8)=22455.64985901256;
incomes(564,9)=22223.973474567098;
bref(565)=10000;
bnorm(565)=38000;
incomemean(565)=14000;
rents(565,1)=99.52666947623936;
rents(565,2)=73.34227383135324;
rents(565,3)=81.7845127085409;
rents(565,4)=89.86647905496575;
rents(565,5)=97.4297404062436;
rents(565,6)=104.46799843402918;
rents(565,7)=110.69125055725095;
rents(565,8)=115.8560849917459;
rents(565,9)=120.38194295255998;
incomes(565,1)=23952.687646057842;
incomes(565,2)=24496.037724218328;
incomes(565,3)=24361.802347906552;
incomes(565,4)=24178.77322292016;
incomes(565,5)=24241.910378540822;
incomes(565,6)=24053.57098966932;
incomes(565,7)=23722.498458925573;
incomes(565,8)=23899.191090108085;
incomes(565,9)=24402.14374872794;
bref(566)=10000;
bnorm(566)=38000;
incomemean(566)=15000;
rents(566,1)=99.4402460494628;
rents(566,2)=73.27460832696296;
rents(566,3)=84.069779205154;
rents(566,4)=94.14507550143972;
rents(566,5)=103.81242803023535;
rents(566,6)=114.39962966657458;
rents(566,7)=123.64065692838042;
rents(566,8)=131.31189323092295;
rents(566,9)=138.94159345803922;
incomes(566,1)=25416.599612633618;
incomes(566,2)=25851.50270151966;
incomes(566,3)=25426.814006593864;
incomes(566,4)=25187.099936472656;
incomes(566,5)=25992.7645489246;
incomes(566,6)=25641.0192701147;
incomes(566,7)=25322.25474906686;
incomes(566,8)=25566.97754495548;
incomes(566,9)=25963.995026276814;
bref(567)=10000;
bnorm(567)=38000;
incomemean(567)=16000;
rents(567,1)=102.71071236734944;
rents(567,2)=75.6847454462616;
rents(567,3)=89.21040657432293;
rents(567,4)=103.09277630496173;
rents(567,5)=116.16706958459883;
rents(567,6)=129.9739142981253;
rents(567,7)=142.2891339858425;
rents(567,8)=151.68844769365458;
rents(567,9)=161.088262820361;
incomes(567,1)=26938.687179964796;
incomes(567,2)=27453.21835920122;
incomes(567,3)=27329.877561298137;
incomes(567,4)=26862.28452126192;
incomes(567,5)=27404.270377537716;
incomes(567,6)=27340.873681965048;
incomes(567,7)=26616.73547031042;
incomes(567,8)=27090.714196041055;
incomes(567,9)=27678.867914084534;
bref(568)=10000;
bnorm(568)=38000;
incomemean(568)=17000;
rents(568,1)=100.09719332595489;
rents(568,2)=73.75291379627728;
rents(568,3)=88.6668652533291;
rents(568,4)=105.0465835736411;
rents(568,5)=121.4576683889881;
rents(568,6)=138.47849453294884;
rents(568,7)=155.79382819448202;
rents(568,8)=170.7011475062999;
rents(568,9)=182.68261920723918;
incomes(568,1)=27984.935821306226;
incomes(568,2)=28179.1376408028;
incomes(568,3)=28422.822157642666;
incomes(568,4)=28298.285156590307;
incomes(568,5)=28845.6771971551;
incomes(568,6)=29329.12151244774;
incomes(568,7)=29049.106206452023;
incomes(568,8)=28888.623536740633;
incomes(568,9)=29750.623413865887;
bref(569)=10000;
bnorm(569)=38000;
incomemean(569)=18000;
rents(569,1)=97.00988961562835;
rents(569,2)=71.48090191727225;
rents(569,3)=89.43942160136399;
rents(569,4)=109.33707433141748;
rents(569,5)=129.66452972098512;
rents(569,6)=150.6362463855341;
rents(569,7)=171.77277620051927;
rents(569,8)=187.7692714036443;
rents(569,9)=195.7028345244859;
incomes(569,1)=29985.301610764032;
incomes(569,2)=30074.059069687966;
incomes(569,3)=30058.544063488625;
incomes(569,4)=29870.20617793662;
incomes(569,5)=30225.729407587245;
incomes(569,6)=30545.161221371924;
incomes(569,7)=30256.177300400777;
incomes(569,8)=30853.63831303852;
incomes(569,9)=31256.529189725024;
bref(570)=10000;
bnorm(570)=38000;
incomemean(570)=19000;
rents(570,1)=99.57659164474265;
rents(570,2)=73.37590520894068;
rents(570,3)=95.06345996923254;
rents(570,4)=118.91611709531652;
rents(570,5)=144.76943096995583;
rents(570,6)=170.66183350785388;
rents(570,7)=191.42158434344103;
rents(570,8)=198.0970000200941;
rents(570,9)=200;
incomes(570,1)=31117.42470395358;
incomes(570,2)=32129.69792532883;
incomes(570,3)=31600.862815118686;
incomes(570,4)=31727.48625164116;
incomes(570,5)=31840.798557704293;
incomes(570,6)=32190.127845408955;
incomes(570,7)=32182.330561003884;
incomes(570,8)=32386.95972483161;
incomes(570,9)=32849.98154210155;
bref(571)=10000;
bnorm(571)=41000;
incomemean(571)=10000;
rents(571,1)=101.46063720782912;
rents(571,2)=76.72051417034402;
rents(571,3)=76.32437142576104;
rents(571,4)=75.51913224539597;
rents(571,5)=74.723266366509;
rents(571,6)=74.41425684231875;
rents(571,7)=73.79082642952659;
rents(571,8)=73.19480931533272;
rents(571,9)=72.72815568531692;
incomes(571,1)=19444.479657293825;
incomes(571,2)=19694.559149691817;
incomes(571,3)=19324.30877726843;
incomes(571,4)=19243.54447033186;
incomes(571,5)=19560.029441917297;
incomes(571,6)=19273.371401847737;
incomes(571,7)=19194.364953011693;
incomes(571,8)=19280.413029637675;
incomes(571,9)=19407.470487021816;
bref(572)=10000;
bnorm(572)=41000;
incomemean(572)=11000;
rents(572,1)=100.76757602996719;
rents(572,2)=76.18829677867546;
rents(572,3)=77.68171208552216;
rents(572,4)=78.63254191724577;
rents(572,5)=79.18672083739459;
rents(572,6)=79.9564527065886;
rents(572,7)=80.11742032897924;
rents(572,8)=80.02059517639836;
rents(572,9)=79.98119446385238;
incomes(572,1)=20339.7329561149;
incomes(572,2)=20779.442608813653;
incomes(572,3)=20382.992677755654;
incomes(572,4)=20167.340601630756;
incomes(572,5)=20358.215410337045;
incomes(572,6)=20110.206952234596;
incomes(572,7)=19925.401981432035;
incomes(572,8)=19899.780855052973;
incomes(572,9)=20129.527196361516;
bref(573)=10000;
bnorm(573)=41000;
incomemean(573)=12000;
rents(573,1)=99.34459202512419;
rents(573,2)=75.11795344515471;
rents(573,3)=78.41086851788751;
rents(573,4)=81.0802581024253;
rents(573,5)=83.18958996863465;
rents(573,6)=85.43744505030689;
rents(573,7)=87.56511001207622;
rents(573,8)=88.64726328505729;
rents(573,9)=89.6639434191347;
incomes(573,1)=21455.478990746487;
incomes(573,2)=21657.889465900185;
incomes(573,3)=21515.01040536434;
incomes(573,4)=21244.816384205442;
incomes(573,5)=21443.40532066839;
incomes(573,6)=21551.16272629284;
incomes(573,7)=20921.59656143834;
incomes(573,8)=20918.748851797514;
incomes(573,9)=21006.171287334342;
bref(574)=10000;
bnorm(574)=41000;
incomemean(574)=13000;
rents(574,1)=100.07720922779663;
rents(574,2)=75.67023121481753;
rents(574,3)=80.89804466930028;
rents(574,4)=85.6980273391678;
rents(574,5)=90.00461221985805;
rents(574,6)=94.50118289606692;
rents(574,7)=99.00539283374424;
rents(574,8)=101.73125476320976;
rents(574,9)=103.97323940529711;
incomes(574,1)=22809.616383851095;
incomes(574,2)=22901.87795170321;
incomes(574,3)=22818.043385905443;
incomes(574,4)=22567.936832524745;
incomes(574,5)=22883.11268911846;
incomes(574,6)=23212.548563148008;
incomes(574,7)=22338.220074624285;
incomes(574,8)=22275.472856671222;
incomes(574,9)=22910.411357576224;
bref(575)=10000;
bnorm(575)=41000;
incomemean(575)=14000;
rents(575,1)=98.65025518786354;
rents(575,2)=74.58904725336983;
rents(575,3)=81.61490691375785;
rents(575,4)=88.54671215202231;
rents(575,5)=94.78515909758087;
rents(575,6)=101.41323307056255;
rents(575,7)=107.19195039082933;
rents(575,8)=111.95253323930154;
rents(575,9)=116.5576374721877;
incomes(575,1)=23548.79365723207;
incomes(575,2)=24024.57391063508;
incomes(575,3)=24017.309086035948;
incomes(575,4)=23716.28921090483;
incomes(575,5)=24178.693477234665;
incomes(575,6)=24008.26878902375;
incomes(575,7)=23713.291484750316;
incomes(575,8)=23827.208774628183;
incomes(575,9)=23999.287673911993;
bref(576)=10000;
bnorm(576)=41000;
incomemean(576)=15000;
rents(576,1)=100.0524043401689;
rents(576,2)=75.64785602572603;
rents(576,3)=84.91680887799849;
rents(576,4)=93.91944618807766;
rents(576,5)=102.54062340966249;
rents(576,6)=111.72785891223968;
rents(576,7)=119.8507307334039;
rents(576,8)=126.58023826478595;
rents(576,9)=133.1604857071329;
incomes(576,1)=25055.486828404035;
incomes(576,2)=25360.1837080122;
incomes(576,3)=25206.9159685745;
incomes(576,4)=25100.56326191532;
incomes(576,5)=25624.02201859942;
incomes(576,6)=25410.4217641765;
incomes(576,7)=25002.582831259406;
incomes(576,8)=25192.899217243626;
incomes(576,9)=25633.13198899291;
bref(577)=10000;
bnorm(577)=41000;
incomemean(577)=16000;
rents(577,1)=98.56848820123683;
rents(577,2)=74.52741011929659;
rents(577,3)=87.18669031526606;
rents(577,4)=99.67599630766772;
rents(577,5)=111.97434777592031;
rents(577,6)=124.87098639148961;
rents(577,7)=137.28203126009186;
rents(577,8)=147.1074791505684;
rents(577,9)=157.6410658229721;
incomes(577,1)=27445.103671470923;
incomes(577,2)=27445.76146479699;
incomes(577,3)=27021.383096894486;
incomes(577,4)=26934.583641909998;
incomes(577,5)=27360.36759282852;
incomes(577,6)=27555.51739567383;
incomes(577,7)=26852.695595337875;
incomes(577,8)=27555.879030126893;
incomes(577,9)=27540.80647670038;
bref(578)=10000;
bnorm(578)=41000;
incomemean(578)=17000;
rents(578,1)=98.7806045281167;
rents(578,2)=74.68635994411034;
rents(578,3)=89.83949891288837;
rents(578,4)=105.71245439012112;
rents(578,5)=121.36041140207541;
rents(578,6)=138.07894470180892;
rents(578,7)=154.1617686949284;
rents(578,8)=166.55499727782924;
rents(578,9)=178.50712558807237;
incomes(578,1)=28393.17090292549;
incomes(578,2)=29020.271812325413;
incomes(578,3)=28739.03424247829;
incomes(578,4)=28444.1967121168;
incomes(578,5)=29101.56959279006;
incomes(578,6)=29350.24998131092;
incomes(578,7)=28477.807525381;
incomes(578,8)=29128.09770566308;
incomes(578,9)=29481.236585926836;
bref(579)=10000;
bnorm(579)=41000;
incomemean(579)=18000;
rents(579,1)=100.23654691040498;
rents(579,2)=75.79030002608006;
rents(579,3)=93.05704985163509;
rents(579,4)=111.68612163984679;
rents(579,5)=129.25762007327933;
rents(579,6)=149.09705028254905;
rents(579,7)=168.72317074941452;
rents(579,8)=182.2168532522465;
rents(579,9)=192.3779234234517;
incomes(579,1)=29238.12887224656;
incomes(579,2)=30165.961291514806;
incomes(579,3)=30065.36773787264;
incomes(579,4)=29293.3801132725;
incomes(579,5)=30277.373795150233;
incomes(579,6)=30542.955859933085;
incomes(579,7)=29790.39938788472;
incomes(579,8)=30275.65568369521;
incomes(579,9)=30835.99822843674;
bref(580)=10000;
bnorm(580)=41000;
incomemean(580)=19000;
rents(580,1)=96.1875566732275;
rents(580,2)=72.72511792436406;
rents(580,3)=92.53975094375693;
rents(580,4)=114.51417504502061;
rents(580,5)=137.6841101826553;
rents(580,6)=162.5549315896181;
rents(580,7)=184.53850657318705;
rents(580,8)=197.77177378377544;
rents(580,9)=199.9584202474128;
incomes(580,1)=31258.59464590212;
incomes(580,2)=31961.515001667984;
incomes(580,3)=31702.266858152823;
incomes(580,4)=31581.486038627547;
incomes(580,5)=32211.183812884254;
incomes(580,6)=31695.67088908367;
incomes(580,7)=31683.89217183042;
incomes(580,8)=32159.307843530725;
incomes(580,9)=32520.080067460927;
bref(581)=10000;
bnorm(581)=44000;
incomemean(581)=10000;
rents(581,1)=99.6274792722927;
rents(581,2)=76.98860829745017;
rents(581,3)=76.72497000162058;
rents(581,4)=76.63645346569636;
rents(581,5)=76.10690290250427;
rents(581,6)=75.68255780207413;
rents(581,7)=75.28456297842843;
rents(581,8)=74.47182767669793;
rents(581,9)=73.65288092099816;
incomes(581,1)=19398.098327335145;
incomes(581,2)=19686.52582345184;
incomes(581,3)=19760.91012797437;
incomes(581,4)=19472.76990069347;
incomes(581,5)=19549.250590424308;
incomes(581,6)=19520.46864006112;
incomes(581,7)=19165.874878555816;
incomes(581,8)=19046.108641402454;
incomes(581,9)=19056.09480519633;
bref(582)=10000;
bnorm(582)=44000;
incomemean(582)=11000;
rents(582,1)=100.76533894083433;
rents(582,2)=77.86297054399118;
rents(582,3)=78.63720125596558;
rents(582,4)=79.10545979885356;
rents(582,5)=78.94488722290824;
rents(582,6)=78.94115520511414;
rents(582,7)=79.08872069789805;
rents(582,8)=78.83720601061005;
rents(582,9)=78.58739318286909;
incomes(582,1)=19941.7232030209;
incomes(582,2)=20300.028131336;
incomes(582,3)=20186.82507616648;
incomes(582,4)=19713.439439211932;
incomes(582,5)=19765.11761613503;
incomes(582,6)=19946.05528310199;
incomes(582,7)=19638.461898087662;
incomes(582,8)=19651.85603752784;
incomes(582,9)=19729.549513586404;
bref(583)=10000;
bnorm(583)=44000;
incomemean(583)=12000;
rents(583,1)=100.7723361168378;
rents(583,2)=77.86923992823077;
rents(583,3)=80.26113857671342;
rents(583,4)=82.31628623585372;
rents(583,5)=83.65346291283038;
rents(583,6)=85.24455644268511;
rents(583,7)=87.19609320065099;
rents(583,8)=88.41863743643086;
rents(583,9)=88.77848056516683;
incomes(583,1)=20942.10223293757;
incomes(583,2)=21361.778424519383;
incomes(583,3)=21177.21150924863;
incomes(583,4)=20855.44489376054;
incomes(583,5)=21034.41143329918;
incomes(583,6)=21341.429652443814;
incomes(583,7)=20985.143927143246;
incomes(583,8)=20603.805987069925;
incomes(583,9)=20968.379947378005;
bref(584)=10000;
bnorm(584)=44000;
incomemean(584)=13000;
rents(584,1)=100.2755399706224;
rents(584,2)=77.48912167712135;
rents(584,3)=82.58149928314226;
rents(584,4)=87.20447709733028;
rents(584,5)=91.05735496730048;
rents(584,6)=94.84570128339602;
rents(584,7)=98.27621158952701;
rents(584,8)=100.89246121648794;
rents(584,9)=103.44200575676011;
incomes(584,1)=22446.589540287114;
incomes(584,2)=23060.675677328258;
incomes(584,3)=22937.30849863556;
incomes(584,4)=22549.6980921004;
incomes(584,5)=22741.184509725943;
incomes(584,6)=22667.98178138529;
incomes(584,7)=22361.084549387684;
incomes(584,8)=22400.64544074652;
incomes(584,9)=22856.438508698688;
bref(585)=10000;
bnorm(585)=44000;
incomemean(585)=14000;
rents(585,1)=101.01701705806163;
rents(585,2)=78.06246106653447;
rents(585,3)=84.57456926685423;
rents(585,4)=90.59204785537774;
rents(585,5)=96.19200354216214;
rents(585,6)=102.02311267956568;
rents(585,7)=107.60407967269265;
rents(585,8)=111.9455591314389;
rents(585,9)=116.12942476150654;
incomes(585,1)=23870.847764836464;
incomes(585,2)=23970.169930758228;
incomes(585,3)=23765.92296439365;
incomes(585,4)=23745.624433010194;
incomes(585,5)=24015.21396308344;
incomes(585,6)=24189.00486894314;
incomes(585,7)=23635.10542076257;
incomes(585,8)=23711.59978924567;
incomes(585,9)=23880.17328593247;
bref(586)=10000;
bnorm(586)=44000;
incomemean(586)=15000;
rents(586,1)=100.2911055932802;
rents(586,2)=77.49280857499801;
rents(586,3)=86.32210350947842;
rents(586,4)=95.31789623339047;
rents(586,5)=103.85049486131166;
rents(586,6)=112.69361101963379;
rents(586,7)=120.49236977352017;
rents(586,8)=127.14087018076941;
rents(586,9)=133.3149805627208;
incomes(586,1)=25386.490005763273;
incomes(586,2)=25573.847899409906;
incomes(586,3)=25621.959011963612;
incomes(586,4)=25387.012489149187;
incomes(586,5)=25801.393408670105;
incomes(586,6)=25663.109356704743;
incomes(586,7)=25234.794619606084;
incomes(586,8)=25244.383003942155;
incomes(586,9)=26027.490592455684;
bref(587)=10000;
bnorm(587)=44000;
incomemean(587)=16000;
rents(587,1)=100.57263264373242;
rents(587,2)=77.71630636849741;
rents(587,3)=89.79959042191784;
rents(587,4)=101.68858215257613;
rents(587,5)=113.52357202640401;
rents(587,6)=125.7000109072728;
rents(587,7)=137.48322590170713;
rents(587,8)=147.18838192301055;
rents(587,9)=156.82786346392663;
incomes(587,1)=27079.018147338924;
incomes(587,2)=27570.81998474253;
incomes(587,3)=27131.00593045075;
incomes(587,4)=27115.589777659057;
incomes(587,5)=27514.76023164138;
incomes(587,6)=27589.14713649713;
incomes(587,7)=27102.711550961758;
incomes(587,8)=27484.460188835692;
incomes(587,9)=27658.35099079425;
bref(588)=10000;
bnorm(588)=44000;
incomemean(588)=17000;
rents(588,1)=100.98878352287825;
rents(588,2)=78.02915117687503;
rents(588,3)=92.60374705176423;
rents(588,4)=107.60166928118761;
rents(588,5)=122.0891944397173;
rents(588,6)=138.17625835945955;
rents(588,7)=153.18869060987626;
rents(588,8)=167.12867195694912;
rents(588,9)=180.64889436104633;
incomes(588,1)=29050.362372734675;
incomes(588,2)=29114.422004139014;
incomes(588,3)=28855.924444754943;
incomes(588,4)=28453.75909274123;
incomes(588,5)=29270.50815595118;
incomes(588,6)=29182.302154341007;
incomes(588,7)=29067.034174072032;
incomes(588,8)=29601.361119209094;
incomes(588,9)=29888.64384969338;
bref(589)=10000;
bnorm(589)=44000;
incomemean(589)=18000;
rents(589,1)=100.67408678961196;
rents(589,2)=77.79158994433796;
rents(589,3)=94.45158315068545;
rents(589,4)=112.95822192107848;
rents(589,5)=132.31676783044304;
rents(589,6)=151.4445337026843;
rents(589,7)=171.15202377848746;
rents(589,8)=186.54991950484376;
rents(589,9)=195.3519396567145;
incomes(589,1)=29861.36721423366;
incomes(589,2)=30253.5211666844;
incomes(589,3)=30355.263186343538;
incomes(589,4)=30425.641004642493;
incomes(589,5)=30262.1983664142;
incomes(589,6)=30922.17692189878;
incomes(589,7)=30541.820123479763;
incomes(589,8)=30518.031299604136;
incomes(589,9)=30731.10257785451;
bref(590)=10000;
bnorm(590)=44000;
incomemean(590)=19000;
rents(590,1)=97.99489320787222;
rents(590,2)=75.7238526156437;
rents(590,3)=95.21907554389468;
rents(590,4)=116.24706024128332;
rents(590,5)=138.95938608625553;
rents(590,6)=162.52384280370308;
rents(590,7)=185.84027980818138;
rents(590,8)=197.22666991373856;
rents(590,9)=199.961402456795;
incomes(590,1)=31887.585317037505;
incomes(590,2)=32230.473028730128;
incomes(590,3)=31637.288738739862;
incomes(590,4)=31714.85990735346;
incomes(590,5)=31980.047193749884;
incomes(590,6)=32547.017413736074;
incomes(590,7)=31572.22121997712;
incomes(590,8)=32078.043703855772;
incomes(590,9)=32147.953734503953;
bref(591)=10000;
bnorm(591)=47000;
incomemean(591)=10000;
rents(591,1)=99.9513251531786;
rents(591,2)=78.69119276949921;
rents(591,3)=78.2059566572637;
rents(591,4)=77.37786808282463;
rents(591,5)=76.64152938846341;
rents(591,6)=76.06963082857443;
rents(591,7)=75.49297357942825;
rents(591,8)=74.63075058308156;
rents(591,9)=73.3716544988544;
incomes(591,1)=19341.850642715242;
incomes(591,2)=19620.685396330406;
incomes(591,3)=19359.119726576537;
incomes(591,4)=19300.474690846477;
incomes(591,5)=19415.218458792835;
incomes(591,6)=19416.601509623928;
incomes(591,7)=19148.107479201753;
incomes(591,8)=18625.215397628297;
incomes(591,9)=19256.330883176277;
bref(592)=10000;
bnorm(592)=47000;
incomemean(592)=11000;
rents(592,1)=97.7743073089357;
rents(592,2)=76.97272103799341;
rents(592,3)=78.02915911537423;
rents(592,4)=79.15051659664681;
rents(592,5)=79.75408209877872;
rents(592,6)=80.24234475703648;
rents(592,7)=80.8201340016933;
rents(592,8)=80.87866780346812;
rents(592,9)=80.56237756460904;
incomes(592,1)=20331.869172433795;
incomes(592,2)=20516.962550953354;
incomes(592,3)=20624.220443081413;
incomes(592,4)=20285.507600152047;
incomes(592,5)=20221.182062573036;
incomes(592,6)=20360.61708917264;
incomes(592,7)=19917.815534086763;
incomes(592,8)=19794.45422899757;
incomes(592,9)=20192.16504143964;
bref(593)=10000;
bnorm(593)=47000;
incomemean(593)=12000;
rents(593,1)=100.87794968959342;
rents(593,2)=79.41339145123537;
rents(593,3)=81.31704180121966;
rents(593,4)=82.711143210821;
rents(593,5)=83.89423773939842;
rents(593,6)=84.93250670774385;
rents(593,7)=85.95978068961746;
rents(593,8)=86.31142263887057;
rents(593,9)=86.57166808535882;
incomes(593,1)=21086.998939349338;
incomes(593,2)=21243.15295192156;
incomes(593,3)=20992.032631684157;
incomes(593,4)=20923.21660009723;
incomes(593,5)=20955.608364427568;
incomes(593,6)=21039.793285853168;
incomes(593,7)=20546.434155386865;
incomes(593,8)=20379.58025305322;
incomes(593,9)=20741.283823120655;
bref(594)=10000;
bnorm(594)=47000;
incomemean(594)=13000;
rents(594,1)=99.07082722705448;
rents(594,2)=77.9871071370185;
rents(594,3)=82.44973846096094;
rents(594,4)=86.8705274533438;
rents(594,5)=90.64995353629256;
rents(594,6)=94.44645495387668;
rents(594,7)=98.30715737847143;
rents(594,8)=101.14900384225048;
rents(594,9)=103.76125702516653;
incomes(594,1)=22439.97850939276;
incomes(594,2)=22916.5856838752;
incomes(594,3)=23004.70070424946;
incomes(594,4)=22689.767899255425;
incomes(594,5)=22875.10083327149;
incomes(594,6)=23074.127085292894;
incomes(594,7)=22349.955486975938;
incomes(594,8)=22499.631151687394;
incomes(594,9)=22637.784700901975;
bref(595)=10000;
bnorm(595)=47000;
incomemean(595)=14000;
rents(595,1)=101.1348938086901;
rents(595,2)=79.61186222995788;
rents(595,3)=86.51103291826104;
rents(595,4)=92.54126021209487;
rents(595,5)=98.0170844312396;
rents(595,6)=103.75336200256382;
rents(595,7)=109.16879134156478;
rents(595,8)=113.77764988905581;
rents(595,9)=117.99135964833573;
incomes(595,1)=24178.797682705746;
incomes(595,2)=24635.449034382225;
incomes(595,3)=24115.749753184744;
incomes(595,4)=23867.924488019056;
incomes(595,5)=24330.132812680367;
incomes(595,6)=24292.162656968372;
incomes(595,7)=23978.191050848556;
incomes(595,8)=23926.730378929842;
incomes(595,9)=24561.13121789267;
bref(596)=10000;
bnorm(596)=47000;
incomemean(596)=15000;
rents(596,1)=100.82523774958196;
rents(596,2)=79.37502815994262;
rents(596,3)=88.00028424289725;
rents(596,4)=96.08958716121589;
rents(596,5)=103.65658330162769;
rents(596,6)=111.11717201954687;
rents(596,7)=117.79113254045497;
rents(596,8)=124.4386113531485;
rents(596,9)=129.77371399500817;
incomes(596,1)=25655.55705960033;
incomes(596,2)=25627.21897866493;
incomes(596,3)=25437.56385563834;
incomes(596,4)=25055.773256406977;
incomes(596,5)=25363.102746915007;
incomes(596,6)=25029.574684316958;
incomes(596,7)=25381.334661812063;
incomes(596,8)=24965.618886014792;
incomes(596,9)=25499.282500950656;
bref(597)=10000;
bnorm(597)=47000;
incomemean(597)=16000;
rents(597,1)=100.59601895078268;
rents(597,2)=79.19062844853708;
rents(597,3)=89.91074612693512;
rents(597,4)=100.18644113825108;
rents(597,5)=111.22370074162147;
rents(597,6)=121.45840028645082;
rents(597,7)=131.01060733871972;
rents(597,8)=139.3064294915712;
rents(597,9)=146.43790454620233;
incomes(597,1)=26828.261372536486;
incomes(597,2)=27062.80772289773;
incomes(597,3)=26697.05932324819;
incomes(597,4)=27208.171161515904;
incomes(597,5)=26914.200375265733;
incomes(597,6)=26898.772189538267;
incomes(597,7)=26572.42832472172;
incomes(597,8)=26432.82548763404;
incomes(597,9)=26804.23413494836;
bref(598)=10000;
bnorm(598)=47000;
incomemean(598)=17000;
rents(598,1)=98.99287570585992;
rents(598,2)=77.93411898086599;
rents(598,3)=91.32942497038925;
rents(598,4)=105.63113830416651;
rents(598,5)=119.1514736780189;
rents(598,6)=133.00607496245746;
rents(598,7)=146.59175053556757;
rents(598,8)=158.46530078839314;
rents(598,9)=168.91847621597736;
incomes(598,1)=28193.889576014077;
incomes(598,2)=28856.424648515705;
incomes(598,3)=29039.036564636033;
incomes(598,4)=28397.590334583074;
incomes(598,5)=28779.12361905631;
incomes(598,6)=28930.36464890107;
incomes(598,7)=28468.325239003814;
incomes(598,8)=28441.901297187727;
incomes(598,9)=29116.733579679334;
bref(599)=10000;
bnorm(599)=47000;
incomemean(599)=18000;
rents(599,1)=100.36024025782585;
rents(599,2)=79.00790772433122;
rents(599,3)=94.71492451941555;
rents(599,4)=111.09020142978464;
rents(599,5)=128.09492542289263;
rents(599,6)=145.74892796486168;
rents(599,7)=161.57191798547134;
rents(599,8)=177.14523915944653;
rents(599,9)=189.41562744086795;
incomes(599,1)=29894.16298824685;
incomes(599,2)=30328.548046024072;
incomes(599,3)=29860.767074904546;
incomes(599,4)=30037.08700395163;
incomes(599,5)=30335.4525483128;
incomes(599,6)=29915.25892359885;
incomes(599,7)=30209.781289556275;
incomes(599,8)=30509.684222227865;
incomes(599,9)=31008.523407964796;
bref(600)=10000;
bnorm(600)=47000;
incomemean(600)=19000;
rents(600,1)=101.69981786094836;
rents(600,2)=80.06379003348405;
rents(600,3)=99.24395381598818;
rents(600,4)=120.2559652080945;
rents(600,5)=142.08197110197622;
rents(600,6)=165.55529973552305;
rents(600,7)=188.1188276717351;
rents(600,8)=198.708214020285;
rents(600,9)=200;
incomes(600,1)=31749.467831989554;
incomes(600,2)=32578.931574368024;
incomes(600,3)=32353.652224991903;
incomes(600,4)=32151.669136269895;
incomes(600,5)=32842.34614687769;
incomes(600,6)=32969.82901649965;
incomes(600,7)=32600.17669003603;
incomes(600,8)=33156.436291715225;
incomes(600,9)=32720.12068943472;
bref(601)=11000;
bnorm(601)=20000;
incomemean(601)=10000;
rents(601,1)=100.80306458257547;
rents(601,2)=50.04315936198866;
rents(601,3)=50.26441671886671;
rents(601,4)=50.14084950151812;
rents(601,5)=50.034598866411024;
rents(601,6)=50.03394053585335;
rents(601,7)=50.0318222820688;
rents(601,8)=50.01537154728605;
rents(601,9)=50.002509598858275;
incomes(601,1)=18938.91743910335;
incomes(601,2)=19203.21052101725;
incomes(601,3)=19051.035319747014;
incomes(601,4)=18880.763503427646;
incomes(601,5)=19051.284321352214;
incomes(601,6)=19015.53497990936;
incomes(601,7)=18688.420904484417;
incomes(601,8)=18455.696616544705;
incomes(601,9)=18589.948228959765;
bref(602)=11000;
bnorm(602)=20000;
incomemean(602)=11000;
rents(602,1)=95.03579374186972;
rents(602,2)=50.03526378878421;
rents(602,3)=52.7623928860109;
rents(602,4)=55.10843314381553;
rents(602,5)=56.515994554084266;
rents(602,6)=58.51163089830944;
rents(602,7)=59.99574469174932;
rents(602,8)=60.07509732636831;
rents(602,9)=60.27090735578892;
incomes(602,1)=19890.079861334325;
incomes(602,2)=20273.090785232867;
incomes(602,3)=20346.387591797957;
incomes(602,4)=19967.819773675783;
incomes(602,5)=20307.097426590804;
incomes(602,6)=20233.855715112157;
incomes(602,7)=19714.612451270208;
incomes(602,8)=19765.081252286564;
incomes(602,9)=19799.198683855968;
bref(603)=11000;
bnorm(603)=20000;
incomemean(603)=12000;
rents(603,1)=102.2361043162462;
rents(603,2)=50.07172149478476;
rents(603,3)=53.95430562371923;
rents(603,4)=57.720140878511195;
rents(603,5)=61.169047764197806;
rents(603,6)=64.15022027374386;
rents(603,7)=66.30683757053451;
rents(603,8)=66.44110472881977;
rents(603,9)=67.30493668739263;
incomes(603,1)=20940.809564994455;
incomes(603,2)=20976.69500217403;
incomes(603,3)=21042.266405688824;
incomes(603,4)=20966.464399714627;
incomes(603,5)=21009.179045684286;
incomes(603,6)=20889.799453819858;
incomes(603,7)=20292.362447717023;
incomes(603,8)=20475.420254585715;
incomes(603,9)=20702.60981973099;
bref(604)=11000;
bnorm(604)=20000;
incomemean(604)=13000;
rents(604,1)=99.79329885470818;
rents(604,2)=50.2231157796782;
rents(604,3)=58.08968789760393;
rents(604,4)=65.67680877931423;
rents(604,5)=71.99163919732199;
rents(604,6)=77.78703640799053;
rents(604,7)=83.51459621682939;
rents(604,8)=86.43054810558478;
rents(604,9)=89.1398597814458;
incomes(604,1)=22234.18481250363;
incomes(604,2)=22675.51419481522;
incomes(604,3)=22554.148153484948;
incomes(604,4)=22228.820593304183;
incomes(604,5)=22281.21352817524;
incomes(604,6)=22622.431747657156;
incomes(604,7)=21857.24921688475;
incomes(604,8)=22087.814618613702;
incomes(604,9)=22389.069628008863;
bref(605)=11000;
bnorm(605)=20000;
incomemean(605)=14000;
rents(605,1)=98.35138900426053;
rents(605,2)=50.01118614776468;
rents(605,3)=61.70625119925954;
rents(605,4)=73.22122312892607;
rents(605,5)=83.63074692664792;
rents(605,6)=93.29535986173917;
rents(605,7)=101.10850177936442;
rents(605,8)=104.94600623779547;
rents(605,9)=108.680520595778;
incomes(605,1)=23901.099691925763;
incomes(605,2)=24499.35471148019;
incomes(605,3)=24214.937333269878;
incomes(605,4)=23910.198413596037;
incomes(605,5)=24088.333721914634;
incomes(605,6)=23974.91706108651;
incomes(605,7)=23276.050817996158;
incomes(605,8)=23594.689171396938;
incomes(605,9)=23965.79695416262;
bref(606)=11000;
bnorm(606)=20000;
incomemean(606)=15000;
rents(606,1)=98.61294666229327;
rents(606,2)=50.014505637733784;
rents(606,3)=64.51447213267565;
rents(606,4)=79.18802650794318;
rents(606,5)=93.66131722349786;
rents(606,6)=107.75529146347829;
rents(606,7)=120.45294427347554;
rents(606,8)=130.2549433495943;
rents(606,9)=137.69421769124233;
incomes(606,1)=24559.640388636464;
incomes(606,2)=25659.57212411142;
incomes(606,3)=25168.601515707338;
incomes(606,4)=25068.334361859976;
incomes(606,5)=25406.44116136003;
incomes(606,6)=25616.06989446966;
incomes(606,7)=25636.021038977815;
incomes(606,8)=25526.91689535193;
incomes(606,9)=25392.428814203307;
bref(607)=11000;
bnorm(607)=20000;
incomemean(607)=16000;
rents(607,1)=102.06826604511595;
rents(607,2)=50.320107709737876;
rents(607,3)=68.77023365397284;
rents(607,4)=89.23619990871688;
rents(607,5)=110.37666243460703;
rents(607,6)=130.55442718848587;
rents(607,7)=146.44603739136278;
rents(607,8)=155.34243138458652;
rents(607,9)=162.3820136056127;
incomes(607,1)=27073.720867447308;
incomes(607,2)=27367.09094015458;
incomes(607,3)=27046.303433187695;
incomes(607,4)=26988.651117203797;
incomes(607,5)=27175.476412469463;
incomes(607,6)=27063.251468069306;
incomes(607,7)=26462.824301351175;
incomes(607,8)=26693.084039347938;
incomes(607,9)=26907.786662445356;
bref(608)=11000;
bnorm(608)=20000;
incomemean(608)=17000;
rents(608,1)=101.3369076015139;
rents(608,2)=50.08564721102791;
rents(608,3)=71.59884550149418;
rents(608,4)=97.23657385423458;
rents(608,5)=124.66568872721471;
rents(608,6)=154.38873814308613;
rents(608,7)=175.56091898052762;
rents(608,8)=189.60014256528905;
rents(608,9)=199.98809187974823;
incomes(608,1)=28277.928595074653;
incomes(608,2)=28731.227545805446;
incomes(608,3)=28519.649332179306;
incomes(608,4)=28445.468687194712;
incomes(608,5)=29342.186263589487;
incomes(608,6)=28878.11587527178;
incomes(608,7)=28665.01824188091;
incomes(608,8)=29342.777829532006;
incomes(608,9)=29644.630591976074;
bref(609)=11000;
bnorm(609)=20000;
incomemean(609)=18000;
rents(609,1)=101.25377017839753;
rents(609,2)=50.31411044422933;
rents(609,3)=75.90838234343845;
rents(609,4)=108.17857111664914;
rents(609,5)=142.6838675549874;
rents(609,6)=175.20609715207345;
rents(609,7)=199.99985179921737;
rents(609,8)=200;
rents(609,9)=200;
incomes(609,1)=29748.02422891212;
incomes(609,2)=30425.90237777818;
incomes(609,3)=30197.64791173654;
incomes(609,4)=29884.035418528547;
incomes(609,5)=30098.573984523708;
incomes(609,6)=30655.852366099552;
incomes(609,7)=30694.742840747043;
incomes(609,8)=30619.423185634583;
incomes(609,9)=31254.13222902414;
bref(610)=11000;
bnorm(610)=20000;
incomemean(610)=19000;
rents(610,1)=99.95019325198255;
rents(610,2)=50.2641400763159;
rents(610,3)=79.33834728783773;
rents(610,4)=118.16572385833457;
rents(610,5)=161.70558696973094;
rents(610,6)=200;
rents(610,7)=200;
rents(610,8)=200;
rents(610,9)=200;
incomes(610,1)=31350.020299575015;
incomes(610,2)=32005.018302277997;
incomes(610,3)=31919.92139657387;
incomes(610,4)=31722.31360748398;
incomes(610,5)=32404.63039029602;
incomes(610,6)=33222.66722140163;
incomes(610,7)=32490.823191053718;
incomes(610,8)=32631.84922116766;
incomes(610,9)=32743.664278274184;
bref(611)=11000;
bnorm(611)=23000;
incomemean(611)=10000;
rents(611,1)=97.92766649044258;
rents(611,2)=51.65519982007386;
rents(611,3)=52.54009228498801;
rents(611,4)=53.247198575214554;
rents(611,5)=53.39758195557117;
rents(611,6)=53.73596752113346;
rents(611,7)=53.84114238349563;
rents(611,8)=53.70832979084058;
rents(611,9)=53.06751631827977;
incomes(611,1)=19434.62475790002;
incomes(611,2)=19766.361094529067;
incomes(611,3)=19707.594128417026;
incomes(611,4)=19404.33990435792;
incomes(611,5)=19611.498593176508;
incomes(611,6)=19503.47564007982;
incomes(611,7)=19361.021877569314;
incomes(611,8)=19095.802967378037;
incomes(611,9)=19257.49857949591;
bref(612)=11000;
bnorm(612)=23000;
incomemean(612)=11000;
rents(612,1)=102.44598308145687;
rents(612,2)=53.735673104560675;
rents(612,3)=55.88607916336138;
rents(612,4)=57.969244509203854;
rents(612,5)=58.72347737941205;
rents(612,6)=59.59529711103822;
rents(612,7)=60.85749116263608;
rents(612,8)=61.51189527412867;
rents(612,9)=62.05835066377143;
incomes(612,1)=20004.74512586606;
incomes(612,2)=20330.71521125998;
incomes(612,3)=20444.24676710077;
incomes(612,4)=19830.809007268588;
incomes(612,5)=20053.047097038332;
incomes(612,6)=20357.160635130498;
incomes(612,7)=20079.106548099397;
incomes(612,8)=20047.942478910638;
incomes(612,9)=19922.212540191405;
bref(613)=11000;
bnorm(613)=23000;
incomemean(613)=12000;
rents(613,1)=99.75107770764723;
rents(613,2)=52.85588989465362;
rents(613,3)=56.97847121513607;
rents(613,4)=60.61087869914118;
rents(613,5)=63.42488255069635;
rents(613,6)=66.68670225075672;
rents(613,7)=69.40689389435215;
rents(613,8)=69.90958853908346;
rents(613,9)=70.6812126664288;
incomes(613,1)=20928.82261551919;
incomes(613,2)=21247.980641565115;
incomes(613,3)=21086.28140242298;
incomes(613,4)=20857.785969761506;
incomes(613,5)=21268.656945374314;
incomes(613,6)=21151.069652400878;
incomes(613,7)=20426.40586917191;
incomes(613,8)=20595.48470007438;
incomes(613,9)=20858.301120455213;
bref(614)=11000;
bnorm(614)=23000;
incomemean(614)=13000;
rents(614,1)=100.25238493937712;
rents(614,2)=52.98517302814785;
rents(614,3)=59.92516321502033;
rents(614,4)=66.24902538453463;
rents(614,5)=72.09128993965837;
rents(614,6)=77.38147194406751;
rents(614,7)=82.3749533856193;
rents(614,8)=85.02976973135141;
rents(614,9)=87.70073644241829;
incomes(614,1)=22281.757537092937;
incomes(614,2)=22762.922445386834;
incomes(614,3)=22511.311159065324;
incomes(614,4)=22483.535487903533;
incomes(614,5)=22624.141271038192;
incomes(614,6)=22707.68208656431;
incomes(614,7)=22104.30640436757;
incomes(614,8)=22284.494729426777;
incomes(614,9)=22487.688814339024;
bref(615)=11000;
bnorm(615)=23000;
incomemean(615)=14000;
rents(615,1)=101.82412779755103;
rents(615,2)=53.614697998152444;
rents(615,3)=62.69093538859583;
rents(615,4)=71.12703839853731;
rents(615,5)=78.87850082096267;
rents(615,6)=87.08124012524281;
rents(615,7)=93.52004881218282;
rents(615,8)=97.60889278607212;
rents(615,9)=101.05810936927172;
incomes(615,1)=23103.842980505553;
incomes(615,2)=23722.965615030993;
incomes(615,3)=23353.13316427817;
incomes(615,4)=23262.703602482852;
incomes(615,5)=23775.542874878585;
incomes(615,6)=23542.914423917155;
incomes(615,7)=23027.979241678724;
incomes(615,8)=23071.428463273554;
incomes(615,9)=23519.80321745034;
bref(616)=11000;
bnorm(616)=23000;
incomemean(616)=15000;
rents(616,1)=97.3108104199065;
rents(616,2)=51.39261558562359;
rents(616,3)=64.05145635671116;
rents(616,4)=77.04433749346286;
rents(616,5)=89.61484538208427;
rents(616,6)=102.62776683804798;
rents(616,7)=114.78179179473993;
rents(616,8)=124.2979671687578;
rents(616,9)=131.29806095234812;
incomes(616,1)=24875.957182540413;
incomes(616,2)=25516.11267230859;
incomes(616,3)=25255.51976357429;
incomes(616,4)=25102.79993244729;
incomes(616,5)=25515.352866214995;
incomes(616,6)=25626.270440376982;
incomes(616,7)=25265.278877201923;
incomes(616,8)=25200.44804465155;
incomes(616,9)=25862.706979066643;
bref(617)=11000;
bnorm(617)=23000;
incomemean(617)=16000;
rents(617,1)=97.64215302685363;
rents(617,2)=51.89353897571873;
rents(617,3)=67.93515992256943;
rents(617,4)=85.95376528911612;
rents(617,5)=104.80855270080207;
rents(617,6)=124.33582667335637;
rents(617,7)=142.21248501565654;
rents(617,8)=153.11927201193257;
rents(617,9)=161.28992138818595;
incomes(617,1)=26569.025475878;
incomes(617,2)=27193.09527554733;
incomes(617,3)=27017.62803816255;
incomes(617,4)=27017.83553877513;
incomes(617,5)=27498.665947863636;
incomes(617,6)=27638.43562494874;
incomes(617,7)=27028.220086065994;
incomes(617,8)=26818.843791974825;
incomes(617,9)=27233.0677184459;
bref(618)=11000;
bnorm(618)=23000;
incomemean(618)=17000;
rents(618,1)=99.99482633988319;
rents(618,2)=52.59023997467855;
rents(618,3)=71.70758328936492;
rents(618,4)=94.41081234058747;
rents(618,5)=116.74806585852176;
rents(618,6)=139.54729552597388;
rents(618,7)=160.52166459903862;
rents(618,8)=174.383055390156;
rents(618,9)=185.804215830806;
incomes(618,1)=28302.042406077195;
incomes(618,2)=28590.135095786107;
incomes(618,3)=28574.83786525994;
incomes(618,4)=27994.916478798677;
incomes(618,5)=28500.00997743383;
incomes(618,6)=28886.144152357447;
incomes(618,7)=28205.288841495676;
incomes(618,8)=28636.157201762493;
incomes(618,9)=28845.88181600994;
bref(619)=11000;
bnorm(619)=23000;
incomemean(619)=18000;
rents(619,1)=97.301441358919;
rents(619,2)=52.199796781707;
rents(619,3)=75.21344138755516;
rents(619,4)=103.93863551838503;
rents(619,5)=134.76471156335123;
rents(619,6)=167.62894493953235;
rents(619,7)=193.00943667930784;
rents(619,8)=200;
rents(619,9)=200;
incomes(619,1)=30524.256790163374;
incomes(619,2)=30668.991419434806;
incomes(619,3)=30599.26339877799;
incomes(619,4)=30158.50794408606;
incomes(619,5)=31025.657108430903;
incomes(619,6)=31124.572835235085;
incomes(619,7)=31110.042592510592;
incomes(619,8)=31312.274402273608;
incomes(619,9)=31709.570933877465;
bref(620)=11000;
bnorm(620)=23000;
incomemean(620)=19000;
rents(620,1)=100.1014870493056;
rents(620,2)=53.08674306622393;
rents(620,3)=79.50952267606468;
rents(620,4)=113.57660223964928;
rents(620,5)=149.61186806369147;
rents(620,6)=185.01277011346014;
rents(620,7)=200;
rents(620,8)=200;
rents(620,9)=200;
incomes(620,1)=31867.045318418473;
incomes(620,2)=32177.328594386756;
incomes(620,3)=32255.40461148254;
incomes(620,4)=31575.245970632477;
incomes(620,5)=32054.26028432445;
incomes(620,6)=32429.330442700513;
incomes(620,7)=32605.35357682407;
incomes(620,8)=32992.53282348777;
incomes(620,9)=32880.420374794245;
bref(621)=11000;
bnorm(621)=26000;
incomemean(621)=10000;
rents(621,1)=100.4498311707436;
rents(621,2)=57.96216513127313;
rents(621,3)=57.301136839367935;
rents(621,4)=56.24020419318992;
rents(621,5)=54.975079469131224;
rents(621,6)=54.11425165104605;
rents(621,7)=53.65663329372018;
rents(621,8)=52.66818248269616;
rents(621,9)=51.47848133995939;
incomes(621,1)=19035.974669225077;
incomes(621,2)=19303.89571555994;
incomes(621,3)=18960.171657206713;
incomes(621,4)=18739.62719043206;
incomes(621,5)=18924.510919026052;
incomes(621,6)=19117.605852171982;
incomes(621,7)=18674.94136001869;
incomes(621,8)=18279.361531249288;
incomes(621,9)=18556.418327554984;
bref(622)=11000;
bnorm(622)=26000;
incomemean(622)=11000;
rents(622,1)=99.78101149266539;
rents(622,2)=57.580137278466665;
rents(622,3)=59.055468542172264;
rents(622,4)=60.03896349557424;
rents(622,5)=60.72685080966667;
rents(622,6)=61.58681217567769;
rents(622,7)=62.18217469429043;
rents(622,8)=62.52079989069502;
rents(622,9)=61.98750544958537;
incomes(622,1)=20080.274681543127;
incomes(622,2)=20404.557981936618;
incomes(622,3)=20220.004304364433;
incomes(622,4)=20087.14799157897;
incomes(622,5)=20166.42120941038;
incomes(622,6)=20168.12147405774;
incomes(622,7)=20003.55434981411;
incomes(622,8)=19601.438921126453;
incomes(622,9)=20068.692683292556;
bref(623)=11000;
bnorm(623)=26000;
incomemean(623)=12000;
rents(623,1)=102.11010708499441;
rents(623,2)=58.90993279939967;
rents(623,3)=63.24610193492438;
rents(623,4)=66.7752609966004;
rents(623,5)=69.73875436556762;
rents(623,6)=73.02968034295165;
rents(623,7)=75.0896508541543;
rents(623,8)=76.73776102434343;
rents(623,9)=77.33312105996396;
incomes(623,1)=21881.369097531235;
incomes(623,2)=21859.45970153295;
incomes(623,3)=21642.786179385756;
incomes(623,4)=21486.199851897974;
incomes(623,5)=21824.739194699017;
incomes(623,6)=21450.065211642363;
incomes(623,7)=21468.334351088382;
incomes(623,8)=21062.993271558953;
incomes(623,9)=21771.32680285578;
bref(624)=11000;
bnorm(624)=26000;
incomemean(624)=13000;
rents(624,1)=101.1169949122763;
rents(624,2)=58.406127115913655;
rents(624,3)=64.43417246005093;
rents(624,4)=70.28467577976252;
rents(624,5)=74.97041771216348;
rents(624,6)=78.83609203287473;
rents(624,7)=82.93673477615634;
rents(624,8)=85.38191663354316;
rents(624,9)=86.78322233604933;
incomes(624,1)=22312.10888591933;
incomes(624,2)=22745.3080312337;
incomes(624,3)=22775.912686997457;
incomes(624,4)=22376.82685358535;
incomes(624,5)=22348.509600891975;
incomes(624,6)=22587.954203298304;
incomes(624,7)=22104.713977217372;
incomes(624,8)=21956.280596070843;
incomes(624,9)=22057.070752202697;
bref(625)=11000;
bnorm(625)=26000;
incomemean(625)=14000;
rents(625,1)=99.96970456224919;
rents(625,2)=57.680518002029416;
rents(625,3)=66.63283967571303;
rents(625,4)=76.07638199343351;
rents(625,5)=83.27051259989098;
rents(625,6)=90.06146105871613;
rents(625,7)=96.21141093226544;
rents(625,8)=100.52775024539773;
rents(625,9)=105.655282906863;
incomes(625,1)=24019.999127504332;
incomes(625,2)=24122.556170531483;
incomes(625,3)=24314.27938899039;
incomes(625,4)=23583.72854483616;
incomes(625,5)=23681.323061375926;
incomes(625,6)=23672.274716730386;
incomes(625,7)=23355.90281163933;
incomes(625,8)=23792.358782182924;
incomes(625,9)=23985.444141891454;
bref(626)=11000;
bnorm(626)=26000;
incomemean(626)=15000;
rents(626,1)=103.63834260046727;
rents(626,2)=59.802321906786034;
rents(626,3)=72.48708994095983;
rents(626,4)=85.81247937112079;
rents(626,5)=98.16885326428635;
rents(626,6)=109.96006293712189;
rents(626,7)=121.08730563019047;
rents(626,8)=130.32474980776703;
rents(626,9)=139.80292134370748;
incomes(626,1)=25609.36019417857;
incomes(626,2)=25973.210051487684;
incomes(626,3)=25932.152354647787;
incomes(626,4)=25614.158438104943;
incomes(626,5)=25778.12839869387;
incomes(626,6)=25887.268340896553;
incomes(626,7)=25940.05461714364;
incomes(626,8)=26326.064384762984;
incomes(626,9)=26050.93189674195;
bref(627)=11000;
bnorm(627)=26000;
incomemean(627)=16000;
rents(627,1)=99.86555701672468;
rents(627,2)=57.80574703283728;
rents(627,3)=73.23768848786302;
rents(627,4)=89.09759584695769;
rents(627,5)=105.1528364556437;
rents(627,6)=120.76833543873435;
rents(627,7)=135.70107903593393;
rents(627,8)=147.23345031797317;
rents(627,9)=155.80856771292505;
incomes(627,1)=26877.159552451707;
incomes(627,2)=27367.796794580405;
incomes(627,3)=26891.487812533298;
incomes(627,4)=26974.0451282941;
incomes(627,5)=27026.59214758958;
incomes(627,6)=27406.206586224485;
incomes(627,7)=27041.9443006062;
incomes(627,8)=27060.323612074593;
incomes(627,9)=27158.23209637573;
bref(628)=11000;
bnorm(628)=26000;
incomemean(628)=17000;
rents(628,1)=100.92943146423407;
rents(628,2)=58.24226457169731;
rents(628,3)=76.49360101056925;
rents(628,4)=97.09834317135672;
rents(628,5)=117.57439863993656;
rents(628,6)=138.27670818231815;
rents(628,7)=156.77333397208287;
rents(628,8)=169.51381811974758;
rents(628,9)=179.72817066663967;
incomes(628,1)=27990.51032656514;
incomes(628,2)=28816.663072191284;
incomes(628,3)=28738.03706126608;
incomes(628,4)=28324.41760581356;
incomes(628,5)=28701.518561319994;
incomes(628,6)=28931.391291734224;
incomes(628,7)=28301.150525438083;
incomes(628,8)=28524.208504082257;
incomes(628,9)=29090.0907987515;
bref(629)=11000;
bnorm(629)=26000;
incomemean(629)=18000;
rents(629,1)=102.56288419176299;
rents(629,2)=59.1718048173728;
rents(629,3)=80.146656797804;
rents(629,4)=104.01576872854324;
rents(629,5)=127.76125052692433;
rents(629,6)=152.80942157392587;
rents(629,7)=176.49415756026255;
rents(629,8)=189.89171305713484;
rents(629,9)=196.4572766829193;
incomes(629,1)=29224.074124258175;
incomes(629,2)=30111.899616959094;
incomes(629,3)=29765.534193841795;
incomes(629,4)=29305.531017456804;
incomes(629,5)=29980.668214649704;
incomes(629,6)=30602.615543237003;
incomes(629,7)=29874.240917581945;
incomes(629,8)=30498.076553704326;
incomes(629,9)=30488.07875345471;
bref(630)=11000;
bnorm(630)=26000;
incomemean(630)=19000;
rents(630,1)=101.34581058091116;
rents(630,2)=58.46713556061745;
rents(630,3)=81.9941045772906;
rents(630,4)=111.78593137897938;
rents(630,5)=143.47021772401354;
rents(630,6)=174.88484680724224;
rents(630,7)=196.49489028390167;
rents(630,8)=199.98187402145132;
rents(630,9)=200;
incomes(630,1)=31592.11869262077;
incomes(630,2)=31337.317696860147;
incomes(630,3)=31738.021494207194;
incomes(630,4)=31357.627858722284;
incomes(630,5)=31553.818154899134;
incomes(630,6)=32276.68059258398;
incomes(630,7)=32013.647918655857;
incomes(630,8)=31998.226447284535;
incomes(630,9)=32516.268412328278;
bref(631)=11000;
bnorm(631)=29000;
incomemean(631)=10000;
rents(631,1)=100.90991175483985;
rents(631,2)=62.63520045073947;
rents(631,3)=61.31649377515288;
rents(631,4)=60.094592884909595;
rents(631,5)=58.57849840612218;
rents(631,6)=58.16020784665988;
rents(631,7)=57.88612486462225;
rents(631,8)=56.28600085991599;
rents(631,9)=55.221958686693945;
incomes(631,1)=19355.809598925916;
incomes(631,2)=19398.374752297812;
incomes(631,3)=19433.768891057585;
incomes(631,4)=19040.011230254928;
incomes(631,5)=19588.247693098318;
incomes(631,6)=19688.557178604187;
incomes(631,7)=18747.21088199775;
incomes(631,8)=18915.343965932396;
incomes(631,9)=19110.863640423162;
bref(632)=11000;
bnorm(632)=29000;
incomemean(632)=11000;
rents(632,1)=98.49431619043003;
rents(632,2)=61.13864499674101;
rents(632,3)=62.015023627174386;
rents(632,4)=62.68380890277851;
rents(632,5)=63.12552709751576;
rents(632,6)=64.03043688802288;
rents(632,7)=64.82645828099257;
rents(632,8)=64.45289866436246;
rents(632,9)=64.29672308001385;
incomes(632,1)=20025.91621266141;
incomes(632,2)=20358.029801904595;
incomes(632,3)=20274.74368424461;
incomes(632,4)=20103.077517862544;
incomes(632,5)=20448.704502948447;
incomes(632,6)=20397.81257453262;
incomes(632,7)=19754.161736661237;
incomes(632,8)=19909.158423194705;
incomes(632,9)=19964.679975676703;
bref(633)=11000;
bnorm(633)=29000;
incomemean(633)=12000;
rents(633,1)=102.63225382541799;
rents(633,2)=63.70739198476775;
rents(633,3)=66.67995463928894;
rents(633,4)=69.5915907455175;
rents(633,5)=71.801618927445;
rents(633,6)=73.93153007257024;
rents(633,7)=75.69762274066439;
rents(633,8)=76.4936120408325;
rents(633,9)=76.83094850716736;
incomes(633,1)=21358.063057387735;
incomes(633,2)=21693.64137247538;
incomes(633,3)=21757.144417744534;
incomes(633,4)=21460.333512709436;
incomes(633,5)=21655.609000314922;
incomes(633,6)=21596.331071842975;
incomes(633,7)=21204.0365468874;
incomes(633,8)=21011.29787284671;
incomes(633,9)=21225.285546800664;
bref(634)=11000;
bnorm(634)=29000;
incomemean(634)=13000;
rents(634,1)=101.0596891328786;
rents(634,2)=62.73081253626939;
rents(634,3)=67.92662113703872;
rents(634,4)=72.89795869340558;
rents(634,5)=76.80193620026755;
rents(634,6)=81.06162450450222;
rents(634,7)=84.6259116642561;
rents(634,8)=86.5594110281841;
rents(634,9)=88.8388310034891;
incomes(634,1)=22504.615225669426;
incomes(634,2)=22726.925541483404;
incomes(634,3)=22729.01479987165;
incomes(634,4)=22388.080098954764;
incomes(634,5)=22820.704014616247;
incomes(634,6)=22675.846503175067;
incomes(634,7)=22187.731860088646;
incomes(634,8)=22369.793738756332;
incomes(634,9)=22861.836840512824;
bref(635)=11000;
bnorm(635)=29000;
incomemean(635)=14000;
rents(635,1)=98.16204699503822;
rents(635,2)=60.931140704973;
rents(635,3)=68.94646888832807;
rents(635,4)=76.03060698369121;
rents(635,5)=82.6800781697683;
rents(635,6)=89.25616545456332;
rents(635,7)=94.97732638682142;
rents(635,8)=99.6354715474965;
rents(635,9)=103.53555733086749;
incomes(635,1)=23776.838417759784;
incomes(635,2)=24175.69361370553;
incomes(635,3)=23753.40244254657;
incomes(635,4)=23722.912243012703;
incomes(635,5)=23974.679498542904;
incomes(635,6)=23842.28147116015;
incomes(635,7)=23705.30921424109;
incomes(635,8)=23555.576984108975;
incomes(635,9)=23834.855705635462;
bref(636)=11000;
bnorm(636)=29000;
incomemean(636)=15000;
rents(636,1)=100.13930644639882;
rents(636,2)=62.15744714752702;
rents(636,3)=72.09843638814577;
rents(636,4)=82.47058452648885;
rents(636,5)=91.19805069183295;
rents(636,6)=99.82867637844232;
rents(636,7)=108.66777025253101;
rents(636,8)=114.16909953004333;
rents(636,9)=119.02257412189476;
incomes(636,1)=24589.968089162492;
incomes(636,2)=25148.482669435904;
incomes(636,3)=25241.11864890869;
incomes(636,4)=24684.29649700948;
incomes(636,5)=24826.37820909478;
incomes(636,6)=25224.890717717044;
incomes(636,7)=24430.49927225727;
incomes(636,8)=24574.072380136844;
incomes(636,9)=24657.55627602184;
bref(637)=11000;
bnorm(637)=29000;
incomemean(637)=16000;
rents(637,1)=98.21588673896566;
rents(637,2)=60.96124035809569;
rents(637,3)=74.33695285287942;
rents(637,4)=88.4271999929874;
rents(637,5)=101.62770198066414;
rents(637,6)=115.62493672987684;
rents(637,7)=128.49128015304336;
rents(637,8)=138.68203777016348;
rents(637,9)=146.0741346990113;
incomes(637,1)=27040.41080252187;
incomes(637,2)=26934.52496471708;
incomes(637,3)=26932.087813759626;
incomes(637,4)=26505.428389826415;
incomes(637,5)=27019.825993817158;
incomes(637,6)=27122.31878093174;
incomes(637,7)=26656.48506424204;
incomes(637,8)=26385.624036495938;
incomes(637,9)=26784.345440460893;
bref(638)=11000;
bnorm(638)=29000;
incomemean(638)=17000;
rents(638,1)=102.42430498995759;
rents(638,2)=63.574687319084326;
rents(638,3)=80.71093120983285;
rents(638,4)=98.96200888826361;
rents(638,5)=116.51744267634211;
rents(638,6)=134.8178025284741;
rents(638,7)=151.5450825208262;
rents(638,8)=165.76195215262618;
rents(638,9)=174.69423818723632;
incomes(638,1)=28207.454569641202;
incomes(638,2)=28790.83561206409;
incomes(638,3)=28493.593045658916;
incomes(638,4)=28064.963870136144;
incomes(638,5)=28610.535709030977;
incomes(638,6)=28726.146787154918;
incomes(638,7)=28683.178951653637;
incomes(638,8)=28128.42950764613;
incomes(638,9)=29380.453489187737;
bref(639)=11000;
bnorm(639)=29000;
incomemean(639)=18000;
rents(639,1)=98.30568151826542;
rents(639,2)=61.00886185276725;
rents(639,3)=81.60919760910171;
rents(639,4)=105.90592822452423;
rents(639,5)=130.92092694404502;
rents(639,6)=157.09762143442737;
rents(639,7)=180.23539414430056;
rents(639,8)=193.336734592101;
rents(639,9)=198.86963285265966;
incomes(639,1)=30336.675772072154;
incomes(639,2)=30852.99314865175;
incomes(639,3)=30956.381324537586;
incomes(639,4)=30446.851238874453;
incomes(639,5)=31060.176396257724;
incomes(639,6)=31096.13853384786;
incomes(639,7)=30793.847793855657;
incomes(639,8)=31006.40614316207;
incomes(639,9)=31860.400265919427;
bref(640)=11000;
bnorm(640)=29000;
incomemean(640)=19000;
rents(640,1)=99.45766952952631;
rents(640,2)=61.72777075330427;
rents(640,3)=84.9213448977176;
rents(640,4)=112.50325422985962;
rents(640,5)=141.61771129046963;
rents(640,6)=172.80895244773393;
rents(640,7)=196.91293584172234;
rents(640,8)=199.82996671609052;
rents(640,9)=200;
incomes(640,1)=31671.364373137472;
incomes(640,2)=32055.186245959347;
incomes(640,3)=32001.94380868982;
incomes(640,4)=31709.890466967856;
incomes(640,5)=32328.186732048118;
incomes(640,6)=32939.895613769586;
incomes(640,7)=32664.378226555113;
incomes(640,8)=32677.143120036995;
incomes(640,9)=32760.18507818629;
bref(641)=11000;
bnorm(641)=32000;
incomemean(641)=10000;
rents(641,1)=100.32710042896917;
rents(641,2)=65.8375737241469;
rents(641,3)=64.54354189568164;
rents(641,4)=63.21173646187885;
rents(641,5)=61.82457960786402;
rents(641,6)=61.19963406649776;
rents(641,7)=60.30178204438854;
rents(641,8)=59.10547321537356;
rents(641,9)=57.51940550668921;
incomes(641,1)=19313.172506082046;
incomes(641,2)=19513.425882265157;
incomes(641,3)=19365.934443304755;
incomes(641,4)=19248.662542932816;
incomes(641,5)=19564.596872940983;
incomes(641,6)=19336.59630708045;
incomes(641,7)=19096.821795862947;
incomes(641,8)=18645.48718649855;
incomes(641,9)=18899.395604882913;
bref(642)=11000;
bnorm(642)=32000;
incomemean(642)=11000;
rents(642,1)=99.55384842257321;
rents(642,2)=65.33092810993396;
rents(642,3)=66.20077161363938;
rents(642,4)=66.88294501991541;
rents(642,5)=66.7290560235109;
rents(642,6)=67.16996601458989;
rents(642,7)=67.6098776141074;
rents(642,8)=66.49821498439064;
rents(642,9)=66.11210435490467;
incomes(642,1)=20229.369509021242;
incomes(642,2)=20631.93385024581;
incomes(642,3)=20505.936556976067;
incomes(642,4)=20090.13080320408;
incomes(642,5)=20419.065860761395;
incomes(642,6)=20452.909154247973;
incomes(642,7)=19590.005766000093;
incomes(642,8)=19942.761582435356;
incomes(642,9)=20300.219886030965;
bref(643)=11000;
bnorm(643)=32000;
incomemean(643)=12000;
rents(643,1)=99.16139826002674;
rents(643,2)=65.07757875714331;
rents(643,3)=67.47362650955489;
rents(643,4)=69.86859306300431;
rents(643,5)=71.43497183684762;
rents(643,6)=72.9310297813318;
rents(643,7)=74.34009630417245;
rents(643,8)=73.87338215978131;
rents(643,9)=74.19184009537773;
incomes(643,1)=21041.6611543138;
incomes(643,2)=21530.907471836963;
incomes(643,3)=21653.705737952558;
incomes(643,4)=21285.483231820897;
incomes(643,5)=21395.384892091864;
incomes(643,6)=21391.23796024337;
incomes(643,7)=20517.796653262434;
incomes(643,8)=20897.390879567556;
incomes(643,9)=20922.449160612578;
bref(644)=11000;
bnorm(644)=32000;
incomemean(644)=13000;
rents(644,1)=99.80057006701578;
rents(644,2)=65.49449820610042;
rents(644,3)=70.29842545789298;
rents(644,4)=74.66321380235051;
rents(644,5)=77.955707347829;
rents(644,6)=81.65242798357265;
rents(644,7)=85.5310725623832;
rents(644,8)=87.06876944031994;
rents(644,9)=88.7616194925494;
incomes(644,1)=22446.386395744386;
incomes(644,2)=22751.025242701093;
incomes(644,3)=22684.961797454223;
incomes(644,4)=22321.950827173656;
incomes(644,5)=22671.786670722344;
incomes(644,6)=22977.665267684013;
incomes(644,7)=21979.06741673657;
incomes(644,8)=22089.155048437584;
incomes(644,9)=22433.33457943039;
bref(645)=11000;
bnorm(645)=32000;
incomemean(645)=14000;
rents(645,1)=100.30747424207321;
rents(645,2)=65.82116257116584;
rents(645,3)=73.12134994246375;
rents(645,4)=79.9645901685998;
rents(645,5)=86.21710044962336;
rents(645,6)=92.58084816115358;
rents(645,7)=97.63286033798897;
rents(645,8)=101.48609372810228;
rents(645,9)=104.18436183702558;
incomes(645,1)=23858.15873627271;
incomes(645,2)=24218.88174579083;
incomes(645,3)=24043.202613823352;
incomes(645,4)=23858.66364643799;
incomes(645,5)=24181.35499357044;
incomes(645,6)=23934.562968787348;
incomes(645,7)=23671.698471390522;
incomes(645,8)=23258.225392016575;
incomes(645,9)=23448.973762570276;
bref(646)=11000;
bnorm(646)=32000;
incomemean(646)=15000;
rents(646,1)=100.84445641208987;
rents(646,2)=66.18042896123684;
rents(646,3)=75.83331738862326;
rents(646,4)=85.50987780020643;
rents(646,5)=94.18656082818485;
rents(646,6)=103.03304163411059;
rents(646,7)=111.77201303196507;
rents(646,8)=117.27772013818992;
rents(646,9)=123.88839570664574;
incomes(646,1)=24906.412369624024;
incomes(646,2)=25385.55298923005;
incomes(646,3)=25364.498933026654;
incomes(646,4)=24995.901350456577;
incomes(646,5)=25333.764132038294;
incomes(646,6)=25544.37594081256;
incomes(646,7)=24658.20755408718;
incomes(646,8)=25202.520903232857;
incomes(646,9)=25161.56544394115;
bref(647)=11000;
bnorm(647)=32000;
incomemean(647)=16000;
rents(647,1)=100.01421218458657;
rents(647,2)=65.64100946287535;
rents(647,3)=78.31603625644773;
rents(647,4)=90.89935023310996;
rents(647,5)=102.90163947025445;
rents(647,6)=115.56175220057692;
rents(647,7)=127.3549169167725;
rents(647,8)=136.37531602065158;
rents(647,9)=144.68936470290717;
incomes(647,1)=26390.181972317627;
incomes(647,2)=27086.62701784828;
incomes(647,3)=26704.561982507537;
incomes(647,4)=26494.518159359053;
incomes(647,5)=27015.918466387877;
incomes(647,6)=27071.650749750086;
incomes(647,7)=26547.764455225275;
incomes(647,8)=26734.15520354454;
incomes(647,9)=26947.01902357809;
bref(648)=11000;
bnorm(648)=32000;
incomemean(648)=17000;
rents(648,1)=102.36820294967127;
rents(648,2)=67.1814972300519;
rents(648,3)=82.90958914342437;
rents(648,4)=99.89087559277667;
rents(648,5)=115.60992439362059;
rents(648,6)=132.12280489724154;
rents(648,7)=146.0611026299232;
rents(648,8)=156.89941426747967;
rents(648,9)=166.30185155535705;
incomes(648,1)=28040.515788959772;
incomes(648,2)=28714.94006390166;
incomes(648,3)=28702.484675128842;
incomes(648,4)=28079.83068238662;
incomes(648,5)=28693.509506764178;
incomes(648,6)=28286.25556597942;
incomes(648,7)=27963.034730846073;
incomes(648,8)=28211.355102474437;
incomes(648,9)=28798.956649067342;
bref(649)=11000;
bnorm(649)=32000;
incomemean(649)=18000;
rents(649,1)=99.10828199240429;
rents(649,2)=65.04274879138414;
rents(649,3)=83.44850743308793;
rents(649,4)=103.16787124873642;
rents(649,5)=123.64909780630103;
rents(649,6)=145.0535946257832;
rents(649,7)=165.52431626595978;
rents(649,8)=180.1985475317712;
rents(649,9)=192.37850900670696;
incomes(649,1)=30010.746566230948;
incomes(649,2)=30187.700682660823;
incomes(649,3)=29865.889915067903;
incomes(649,4)=29720.96918610717;
incomes(649,5)=30208.742366354123;
incomes(649,6)=30484.563595848682;
incomes(649,7)=29707.236453898586;
incomes(649,8)=30096.06327571965;
incomes(649,9)=30782.497073883496;
bref(650)=11000;
bnorm(650)=32000;
incomemean(650)=19000;
rents(650,1)=101.28804844065789;
rents(650,2)=66.46648316327713;
rents(650,3)=88.42362218747107;
rents(650,4)=114.22956762584782;
rents(650,5)=139.99125783413803;
rents(650,6)=167.64307309837164;
rents(650,7)=190.17640190160142;
rents(650,8)=198.10450636254564;
rents(650,9)=199.9995178231424;
incomes(650,1)=31575.18112350744;
incomes(650,2)=32023.220080798274;
incomes(650,3)=32117.948598012154;
incomes(650,4)=31371.826256342614;
incomes(650,5)=32259.802830555873;
incomes(650,6)=32254.775259764996;
incomes(650,7)=31581.710636531338;
incomes(650,8)=32312.31987775515;
incomes(650,9)=32337.564146277156;
bref(651)=11000;
bnorm(651)=35000;
incomemean(651)=10000;
rents(651,1)=101.15758419053286;
rents(651,2)=69.36870796627508;
rents(651,3)=67.8123354753863;
rents(651,4)=66.68843400456888;
rents(651,5)=65.46740517411962;
rents(651,6)=64.02479024632717;
rents(651,7)=63.01452601551672;
rents(651,8)=61.465505638327414;
rents(651,9)=60.354487876100876;
incomes(651,1)=19343.29592955379;
incomes(651,2)=19511.748500096797;
incomes(651,3)=19582.584078689593;
incomes(651,4)=19400.829058805575;
incomes(651,5)=19227.980637861598;
incomes(651,6)=19377.39549129265;
incomes(651,7)=18980.30762019163;
incomes(651,8)=19178.359378047753;
incomes(651,9)=19084.728600939183;
bref(652)=11000;
bnorm(652)=35000;
incomemean(652)=11000;
rents(652,1)=100.41043504319693;
rents(652,2)=68.85671399827316;
rents(652,3)=69.03996718898193;
rents(652,4)=69.25136804472592;
rents(652,5)=69.23819100323958;
rents(652,6)=68.97030685324796;
rents(652,7)=68.52140594365143;
rents(652,8)=67.52453489216121;
rents(652,9)=66.6880009500874;
incomes(652,1)=20225.74490783086;
incomes(652,2)=20559.858060076203;
incomes(652,3)=20534.123870899766;
incomes(652,4)=20432.769963753228;
incomes(652,5)=20325.999694409675;
incomes(652,6)=20241.32138086359;
incomes(652,7)=19812.06046055285;
incomes(652,8)=19793.290835863103;
incomes(652,9)=19887.766077130724;
bref(653)=11000;
bnorm(653)=35000;
incomemean(653)=12000;
rents(653,1)=100.1092163725829;
rents(653,2)=68.64876763321901;
rents(653,3)=70.61268588754095;
rents(653,4)=72.31179997398696;
rents(653,5)=73.76195635952128;
rents(653,6)=75.1577268166299;
rents(653,7)=75.97517596551634;
rents(653,8)=75.90567958798367;
rents(653,9)=76.21885108141191;
incomes(653,1)=21132.176396537554;
incomes(653,2)=21509.760714469918;
incomes(653,3)=21428.256330250413;
incomes(653,4)=21276.683121979808;
incomes(653,5)=21415.139178310084;
incomes(653,6)=21258.873796690455;
incomes(653,7)=20740.358166402963;
incomes(653,8)=20989.132542433774;
incomes(653,9)=20775.967355739205;
bref(654)=11000;
bnorm(654)=35000;
incomemean(654)=13000;
rents(654,1)=99.94471073849705;
rents(654,2)=68.53511317621631;
rents(654,3)=73.28286846155977;
rents(654,4)=77.47019400267655;
rents(654,5)=81.12677668761548;
rents(654,6)=84.60277979085846;
rents(654,7)=87.46785094743372;
rents(654,8)=89.14772975274926;
rents(654,9)=90.23881865538668;
incomes(654,1)=22898.70843525414;
incomes(654,2)=23102.435093991968;
incomes(654,3)=22868.24599644194;
incomes(654,4)=22693.4779297925;
incomes(654,5)=22836.783464471155;
incomes(654,6)=22691.925788515706;
incomes(654,7)=22165.61618571514;
incomes(654,8)=21995.824152440782;
incomes(654,9)=22166.15760275416;
bref(655)=11000;
bnorm(655)=35000;
incomemean(655)=14000;
rents(655,1)=100.31682910897217;
rents(655,2)=68.7857367894117;
rents(655,3)=75.45882235579319;
rents(655,4)=81.475224632655;
rents(655,5)=86.95057458450599;
rents(655,6)=92.28470789893348;
rents(655,7)=97.12463258212462;
rents(655,8)=100.425015254487;
rents(655,9)=103.6064319024745;
incomes(655,1)=23738.523708448618;
incomes(655,2)=24233.41552548757;
incomes(655,3)=23945.933988222765;
incomes(655,4)=23838.53169549928;
incomes(655,5)=24006.559390557635;
incomes(655,6)=23944.505849806745;
incomes(655,7)=23521.05954203329;
incomes(655,8)=23598.6773022412;
incomes(655,9)=24071.14140112998;
bref(656)=11000;
bnorm(656)=35000;
incomemean(656)=15000;
rents(656,1)=98.22885364042182;
rents(656,2)=67.36321922832936;
rents(656,3)=77.40286685642309;
rents(656,4)=86.94454790153917;
rents(656,5)=95.51502833163642;
rents(656,6)=104.23215346925022;
rents(656,7)=113.05136226731408;
rents(656,8)=119.24683991857783;
rents(656,9)=125.67308473936815;
incomes(656,1)=25600.35944641598;
incomes(656,2)=26160.042139257017;
incomes(656,3)=25690.822223124676;
incomes(656,4)=25291.584058261644;
incomes(656,5)=25595.8004475241;
incomes(656,6)=26032.355648009278;
incomes(656,7)=25176.781857771122;
incomes(656,8)=25684.81210520732;
incomes(656,9)=25949.165190714648;
bref(657)=11000;
bnorm(657)=35000;
incomemean(657)=16000;
rents(657,1)=100.04733095865843;
rents(657,2)=68.6000512519484;
rents(657,3)=80.30842529581025;
rents(657,4)=91.92970115138645;
rents(657,5)=103.19417351439482;
rents(657,6)=115.00527168771931;
rents(657,7)=126.27749473309731;
rents(657,8)=135.01434677233294;
rents(657,9)=143.17053963433236;
incomes(657,1)=26611.261582057927;
incomes(657,2)=27065.174966538747;
incomes(657,3)=26723.01644816885;
incomes(657,4)=26625.330449517463;
incomes(657,5)=27219.099092889304;
incomes(657,6)=27242.56421433892;
incomes(657,7)=26773.86241931904;
incomes(657,8)=26987.497504995412;
incomes(657,9)=27316.76701362439;
bref(658)=11000;
bnorm(658)=35000;
incomemean(658)=17000;
rents(658,1)=101.90059452250937;
rents(658,2)=69.87470684842873;
rents(658,3)=84.70388234590904;
rents(658,4)=100.11482031485008;
rents(658,5)=114.8762659932772;
rents(658,6)=131.35115246157974;
rents(658,7)=146.1984963786321;
rents(658,8)=155.9040387252427;
rents(658,9)=166.71920702076358;
incomes(658,1)=28275.73957427415;
incomes(658,2)=28689.865959724033;
incomes(658,3)=28465.911366700824;
incomes(658,4)=28092.36469164218;
incomes(658,5)=29016.783857249276;
incomes(658,6)=28854.95071122293;
incomes(658,7)=27828.39170065975;
incomes(658,8)=28614.162223601517;
incomes(658,9)=28560.81900063448;
bref(659)=11000;
bnorm(659)=35000;
incomemean(659)=18000;
rents(659,1)=99.84326723669484;
rents(659,2)=68.45260974068172;
rents(659,3)=86.07746907326032;
rents(659,4)=105.15095117260024;
rents(659,5)=123.92488201010775;
rents(659,6)=144.07682368956668;
rents(659,7)=162.24839052835503;
rents(659,8)=176.21522852350137;
rents(659,9)=189.09248384124376;
incomes(659,1)=30021.45090104705;
incomes(659,2)=30435.514800336372;
incomes(659,3)=30211.06726261387;
incomes(659,4)=29770.187800833675;
incomes(659,5)=30513.86723544969;
incomes(659,6)=30326.64258786581;
incomes(659,7)=29793.86156024905;
incomes(659,8)=30510.030651955145;
incomes(659,9)=30977.53278926493;
bref(660)=11000;
bnorm(660)=35000;
incomemean(660)=19000;
rents(660,1)=100.45356618477507;
rents(660,2)=68.88287113454882;
rents(660,3)=89.25409735887271;
rents(660,4)=112.0169257635829;
rents(660,5)=136.42238762663447;
rents(660,6)=160.82231953154795;
rents(660,7)=183.57889832371882;
rents(660,8)=194.75203033287116;
rents(660,9)=199.00095468558396;
incomes(660,1)=30877.000433063702;
incomes(660,2)=31919.442137975402;
incomes(660,3)=31621.6490369262;
incomes(660,4)=31728.430311304608;
incomes(660,5)=31808.444593172462;
incomes(660,6)=32019.10878907125;
incomes(660,7)=31581.152489014254;
incomes(660,8)=31692.953249406943;
incomes(660,9)=32702.850055975727;
bref(661)=11000;
bnorm(661)=38000;
incomemean(661)=10000;
rents(661,1)=100.65649622201815;
rents(661,2)=71.517847720243;
rents(661,3)=69.47980237137557;
rents(661,4)=67.67224056448588;
rents(661,5)=66.02731124701933;
rents(661,6)=64.76498542680336;
rents(661,7)=63.65665275967586;
rents(661,8)=62.34818555710974;
rents(661,9)=61.182186587174115;
incomes(661,1)=18843.827625710303;
incomes(661,2)=19249.40540863089;
incomes(661,3)=19151.012432932403;
incomes(661,4)=19139.157299545794;
incomes(661,5)=19347.52152746075;
incomes(661,6)=19380.417128217818;
incomes(661,7)=19037.198658012887;
incomes(661,8)=19038.623088027503;
incomes(661,9)=19116.907126384947;
bref(662)=11000;
bnorm(662)=38000;
incomemean(662)=11000;
rents(662,1)=100.87601088883821;
rents(662,2)=71.67542374088728;
rents(662,3)=71.18124398788468;
rents(662,4)=70.43141480095237;
rents(662,5)=69.66380249512098;
rents(662,6)=69.12293073260447;
rents(662,7)=68.45545720130211;
rents(662,8)=66.8812320033994;
rents(662,9)=65.75735743748389;
incomes(662,1)=19894.80426065029;
incomes(662,2)=20375.06944058514;
incomes(662,3)=20164.108409827455;
incomes(662,4)=20069.78879210501;
incomes(662,5)=20165.334077012547;
incomes(662,6)=19947.694942974424;
incomes(662,7)=19314.74895548118;
incomes(662,8)=19546.342876804338;
incomes(662,9)=20070.26819023761;
bref(663)=11000;
bnorm(663)=38000;
incomemean(663)=12000;
rents(663,1)=100.91771468752604;
rents(663,2)=71.70974543646945;
rents(663,3)=73.14715491821784;
rents(663,4)=74.4762616058464;
rents(663,5)=75.30853577641133;
rents(663,6)=76.48777629881226;
rents(663,7)=77.06455283210359;
rents(663,8)=77.03122153313011;
rents(663,9)=77.51139585614224;
incomes(663,1)=21205.871987505387;
incomes(663,2)=21469.051135853915;
incomes(663,3)=21468.807797423706;
incomes(663,4)=21169.129659276245;
incomes(663,5)=21447.068457495956;
incomes(663,6)=21186.15242899448;
incomes(663,7)=20736.237816596684;
incomes(663,8)=21164.664340864932;
incomes(663,9)=21263.50300283439;
bref(664)=11000;
bnorm(664)=38000;
incomemean(664)=13000;
rents(664,1)=99.87644276274557;
rents(664,2)=70.95752596810881;
rents(664,3)=74.51324770026322;
rents(664,4)=78.0826903836496;
rents(664,5)=80.7483923851176;
rents(664,6)=83.59527683590669;
rents(664,7)=86.18598064252052;
rents(664,8)=87.68085311354201;
rents(664,9)=89.2091952998868;
incomes(664,1)=22674.865078699437;
incomes(664,2)=22603.252991354708;
incomes(664,3)=22761.828981993018;
incomes(664,4)=22420.59387730983;
incomes(664,5)=22720.161547491996;
incomes(664,6)=22706.027461768077;
incomes(664,7)=22157.22552371667;
incomes(664,8)=22306.021846253923;
incomes(664,9)=22265.04722478127;
bref(665)=11000;
bnorm(665)=38000;
incomemean(665)=14000;
rents(665,1)=101.48001810063137;
rents(665,2)=72.10628474227553;
rents(665,3)=78.44328026102119;
rents(665,4)=84.20581641768648;
rents(665,5)=89.01038910000399;
rents(665,6)=93.86496888656717;
rents(665,7)=98.5787518903842;
rents(665,8)=102.09833579382165;
rents(665,9)=104.84575979629122;
incomes(665,1)=23968.14213297168;
incomes(665,2)=24389.807410592148;
incomes(665,3)=24106.51528900882;
incomes(665,4)=23755.957137203863;
incomes(665,5)=24080.476602310613;
incomes(665,6)=24239.42405043326;
incomes(665,7)=23735.975452059007;
incomes(665,8)=23591.28175781036;
incomes(665,9)=23746.47645517727;
bref(666)=11000;
bnorm(666)=38000;
incomemean(666)=15000;
rents(666,1)=99.31195808849249;
rents(666,2)=70.56216660976109;
rents(666,3)=79.62143396563273;
rents(666,4)=88.52377658381047;
rents(666,5)=96.3564803301747;
rents(666,6)=103.97349232380559;
rents(666,7)=111.55873416726992;
rents(666,8)=116.3859717219892;
rents(666,9)=121.78634336958757;
incomes(666,1)=25590.331098459115;
incomes(666,2)=26025.693746232544;
incomes(666,3)=25864.47382614552;
incomes(666,4)=25461.600406494596;
incomes(666,5)=25570.123388806067;
incomes(666,6)=25816.734572387293;
incomes(666,7)=24809.032516709005;
incomes(666,8)=25386.278953953988;
incomes(666,9)=25442.270881126457;
bref(667)=11000;
bnorm(667)=38000;
incomemean(667)=16000;
rents(667,1)=100.06730649564531;
rents(667,2)=71.09886180557825;
rents(667,3)=83.19480670408309;
rents(667,4)=95.27596237034021;
rents(667,5)=107.58029981322153;
rents(667,6)=119.74660788742133;
rents(667,7)=131.1607297796493;
rents(667,8)=140.8820003049955;
rents(667,9)=150.45485570656805;
incomes(667,1)=27378.987177667437;
incomes(667,2)=27894.020757867052;
incomes(667,3)=27604.632144569714;
incomes(667,4)=27693.912357576344;
incomes(667,5)=27843.550379208948;
incomes(667,6)=28009.317356348387;
incomes(667,7)=27794.23524225484;
incomes(667,8)=27987.984839663222;
incomes(667,9)=28023.76748821613;
bref(668)=11000;
bnorm(668)=38000;
incomemean(668)=17000;
rents(668,1)=98.51465881050133;
rents(668,2)=69.99959635078612;
rents(668,3)=84.50157351401096;
rents(668,4)=99.85368860318952;
rents(668,5)=114.9629665614924;
rents(668,6)=129.23707420489194;
rents(668,7)=144.1027853528953;
rents(668,8)=156.19881992538566;
rents(668,9)=167.04508602132037;
incomes(668,1)=29121.09162954035;
incomes(668,2)=29307.568421024538;
incomes(668,3)=29063.75732139856;
incomes(668,4)=28766.230786947755;
incomes(668,5)=28612.108817172302;
incomes(668,6)=29297.287952155973;
incomes(668,7)=28748.336235012157;
incomes(668,8)=28923.205995519293;
incomes(668,9)=29160.919729392557;
bref(669)=11000;
bnorm(669)=38000;
incomemean(669)=18000;
rents(669,1)=101.21312496883343;
rents(669,2)=71.91059282638913;
rents(669,3)=88.38996187095715;
rents(669,4)=106.2091846209121;
rents(669,5)=124.28940666954055;
rents(669,6)=143.59552139441627;
rents(669,7)=161.80794478797804;
rents(669,8)=176.12897061583914;
rents(669,9)=187.45581090085312;
incomes(669,1)=30144.54170652153;
incomes(669,2)=30380.99690705077;
incomes(669,3)=30225.538042379045;
incomes(669,4)=30084.537472760672;
incomes(669,5)=30675.592916556267;
incomes(669,6)=30822.66329716769;
incomes(669,7)=30272.01226815674;
incomes(669,8)=30396.95604315449;
incomes(669,9)=30874.165154080434;
bref(670)=11000;
bnorm(670)=38000;
incomemean(670)=19000;
rents(670,1)=99.08415643290424;
rents(670,2)=70.40468063369484;
rents(670,3)=90.10160675942339;
rents(670,4)=113.11317628968372;
rents(670,5)=135.2954965217126;
rents(670,6)=159.36063228543452;
rents(670,7)=183.24613991784778;
rents(670,8)=196.60284594280262;
rents(670,9)=199.94817224014454;
incomes(670,1)=32216.651764015838;
incomes(670,2)=32357.054397246844;
incomes(670,3)=32765.112783772205;
incomes(670,4)=31679.7398683959;
incomes(670,5)=32442.517300160118;
incomes(670,6)=32842.34143771161;
incomes(670,7)=32098.838429570522;
incomes(670,8)=33287.936323965805;
incomes(670,9)=33030.42676200504;
bref(671)=11000;
bnorm(671)=41000;
incomemean(671)=10000;
rents(671,1)=97.01613725922402;
rents(671,2)=70.99286205763359;
rents(671,3)=69.01803743298034;
rents(671,4)=67.14510384897237;
rents(671,5)=65.52580656413545;
rents(671,6)=64.1942305918481;
rents(671,7)=62.975672553142545;
rents(671,8)=61.5174365751703;
rents(671,9)=59.92415053743527;
incomes(671,1)=18937.03317203972;
incomes(671,2)=19186.096412134128;
incomes(671,3)=19070.021119503414;
incomes(671,4)=19073.240886962547;
incomes(671,5)=19183.400237044076;
incomes(671,6)=19069.428597722403;
incomes(671,7)=18796.886888315577;
incomes(671,8)=18507.203390068335;
incomes(671,9)=18613.072050596085;
bref(672)=11000;
bnorm(672)=41000;
incomemean(672)=11000;
rents(672,1)=99.29095100730596;
rents(672,2)=72.64756829297698;
rents(672,3)=71.768382975857;
rents(672,4)=70.95480481519515;
rents(672,5)=69.716078915973;
rents(672,6)=69.0073172217236;
rents(672,7)=68.35819651747704;
rents(672,8)=67.32467538145742;
rents(672,9)=66.32222437358632;
incomes(672,1)=19826.203643635512;
incomes(672,2)=20068.53965067771;
incomes(672,3)=20043.962468642894;
incomes(672,4)=19669.06817649988;
incomes(672,5)=19990.172997375576;
incomes(672,6)=19967.99394428203;
incomes(672,7)=19610.595064839108;
incomes(672,8)=19527.14458538762;
incomes(672,9)=19434.533508341596;
bref(673)=11000;
bnorm(673)=41000;
incomemean(673)=12000;
rents(673,1)=97.14656263911382;
rents(673,2)=71.08261908265233;
rents(673,3)=72.59938163919028;
rents(673,4)=73.88444773509009;
rents(673,5)=74.7119070602666;
rents(673,6)=75.64656252235292;
rents(673,7)=76.55240912678548;
rents(673,8)=76.7106569139176;
rents(673,9)=76.82485866829747;
incomes(673,1)=21238.905826302183;
incomes(673,2)=21520.905171005536;
incomes(673,3)=21531.322096872682;
incomes(673,4)=21179.95075334172;
incomes(673,5)=21380.982007654733;
incomes(673,6)=21486.325034472302;
incomes(673,7)=20915.934204239675;
incomes(673,8)=20863.352972414363;
incomes(673,9)=21138.93987582306;
bref(674)=11000;
bnorm(674)=41000;
incomemean(674)=13000;
rents(674,1)=100.16313936583934;
rents(674,2)=73.28910022523841;
rents(674,3)=76.91412413020325;
rents(674,4)=79.93327286811787;
rents(674,5)=82.66881985697364;
rents(674,6)=85.24991367318724;
rents(674,7)=87.463115465409;
rents(674,8)=88.67512774555289;
rents(674,9)=89.44778163164072;
incomes(674,1)=22772.824197752107;
incomes(674,2)=23067.942301352876;
incomes(674,3)=22839.916782057953;
incomes(674,4)=22727.938905900664;
incomes(674,5)=22737.60850440733;
incomes(674,6)=22678.15555034136;
incomes(674,7)=22185.00123372671;
incomes(674,8)=21985.60497576801;
incomes(674,9)=22360.686457556636;
bref(675)=11000;
bnorm(675)=41000;
incomemean(675)=14000;
rents(675,1)=99.80738359396533;
rents(675,2)=73.03412202734347;
rents(675,3)=78.33618964740472;
rents(675,4)=83.1983348805048;
rents(675,5)=87.06418934349476;
rents(675,6)=91.22576426264457;
rents(675,7)=94.90348552531772;
rents(675,8)=97.48396504312907;
rents(675,9)=99.86726491386591;
incomes(675,1)=23419.838102956062;
incomes(675,2)=24082.513295916895;
incomes(675,3)=23930.85683801176;
incomes(675,4)=23415.899397650635;
incomes(675,5)=23858.094650232546;
incomes(675,6)=23822.198205631492;
incomes(675,7)=23360.170531041582;
incomes(675,8)=23276.944461912106;
incomes(675,9)=24060.440805948467;
bref(676)=11000;
bnorm(676)=41000;
incomemean(676)=15000;
rents(676,1)=101.75862616752502;
rents(676,2)=74.45486586845121;
rents(676,3)=82.22050129426917;
rents(676,4)=89.88547367451179;
rents(676,5)=97.02330369839731;
rents(676,6)=104.05471555921687;
rents(676,7)=110.16011678057079;
rents(676,8)=115.01357896736175;
rents(676,9)=119.74572978395085;
incomes(676,1)=25281.816826113518;
incomes(676,2)=25637.14642935469;
incomes(676,3)=25725.87422396391;
incomes(676,4)=25416.675676134673;
incomes(676,5)=25680.690429869188;
incomes(676,6)=25466.637946574105;
incomes(676,7)=25064.738570603364;
incomes(676,8)=25201.522141820726;
incomes(676,9)=25368.889658869462;
bref(677)=11000;
bnorm(677)=41000;
incomemean(677)=16000;
rents(677,1)=101.63253423634453;
rents(677,2)=74.363902263792;
rents(677,3)=85.07101092776911;
rents(677,4)=95.9849057411192;
rents(677,5)=105.82385771755524;
rents(677,6)=115.7551056413174;
rents(677,7)=125.83503117105793;
rents(677,8)=134.51466888623563;
rents(677,9)=141.69056082251615;
incomes(677,1)=26777.097700918446;
incomes(677,2)=27361.60055871173;
incomes(677,3)=27298.774675269015;
incomes(677,4)=26797.90797522634;
incomes(677,5)=26991.540375297423;
incomes(677,6)=27298.6183799119;
incomes(677,7)=26979.281659433003;
incomes(677,8)=26817.48330016179;
incomes(677,9)=27336.324694242474;
bref(678)=11000;
bnorm(678)=41000;
incomemean(678)=17000;
rents(678,1)=100.37570085101345;
rents(678,2)=73.45265806512919;
rents(678,3)=87.22613603511591;
rents(678,4)=101.25393675159472;
rents(678,5)=115.62395178760266;
rents(678,6)=130.47570565965052;
rents(678,7)=144.42667101698393;
rents(678,8)=155.4636336398479;
rents(678,9)=166.52278973490635;
incomes(678,1)=28610.955870987138;
incomes(678,2)=29249.815310560793;
incomes(678,3)=28807.0815853763;
incomes(678,4)=28885.062941235363;
incomes(678,5)=29299.947455828;
incomes(678,6)=29218.84541109239;
incomes(678,7)=28671.771856678624;
incomes(678,8)=29053.4197200587;
incomes(678,9)=29430.265582234406;
bref(679)=11000;
bnorm(679)=41000;
incomemean(679)=18000;
rents(679,1)=102.47185912750993;
rents(679,2)=74.98344160388663;
rents(679,3)=89.88389694460373;
rents(679,4)=106.20686660484412;
rents(679,5)=121.77902309702273;
rents(679,6)=139.06803961237594;
rents(679,7)=155.0465054120614;
rents(679,8)=167.96774614982934;
rents(679,9)=180.13118112881156;
incomes(679,1)=30130.14922106672;
incomes(679,2)=29815.581676683385;
incomes(679,3)=29964.72730742768;
incomes(679,4)=29443.558645721376;
incomes(679,5)=30275.556743803543;
incomes(679,6)=30259.720079246265;
incomes(679,7)=29456.424716913847;
incomes(679,8)=29960.51551047182;
incomes(679,9)=29866.486895633825;
bref(680)=11000;
bnorm(680)=41000;
incomemean(680)=19000;
rents(680,1)=98.1992480734343;
rents(680,2)=71.85440523908632;
rents(680,3)=89.82433879656867;
rents(680,4)=110.01763125067593;
rents(680,5)=130.4260294324621;
rents(680,6)=152.325108454814;
rents(680,7)=172.44751122549053;
rents(680,8)=188.47170173426136;
rents(680,9)=196.69905781461352;
incomes(680,1)=31637.153268227983;
incomes(680,2)=31986.351168522637;
incomes(680,3)=31994.767210714992;
incomes(680,4)=31493.358418329324;
incomes(680,5)=32114.30877819266;
incomes(680,6)=31843.710731042094;
incomes(680,7)=31543.16904814648;
incomes(680,8)=31748.744347792657;
incomes(680,9)=32450.16652876497;
bref(681)=11000;
bnorm(681)=44000;
incomemean(681)=10000;
rents(681,1)=100.71046748067421;
rents(681,2)=75.5265219485157;
rents(681,3)=73.68317335453915;
rents(681,4)=72.1772886287118;
rents(681,5)=70.19359383733294;
rents(681,6)=68.90041686051127;
rents(681,7)=67.17071118817823;
rents(681,8)=65.31986953681718;
rents(681,9)=63.44243997448342;
incomes(681,1)=19344.05898172187;
incomes(681,2)=19734.419642593864;
incomes(681,3)=19705.338528501157;
incomes(681,4)=19259.831007856075;
incomes(681,5)=19648.19422661909;
incomes(681,6)=19209.25618322138;
incomes(681,7)=18895.268368603625;
incomes(681,8)=18684.33468902303;
incomes(681,9)=19191.76023967402;
bref(682)=11000;
bnorm(682)=44000;
incomemean(682)=11000;
rents(682,1)=99.498890951833;
rents(682,2)=74.62692329989287;
rents(682,3)=74.40179233599297;
rents(682,4)=73.7920655401885;
rents(682,5)=73.20954287729035;
rents(682,6)=72.99917674386906;
rents(682,7)=72.61150958486922;
rents(682,8)=71.64467763280014;
rents(682,9)=70.50838246120446;
incomes(682,1)=20027.296743411953;
incomes(682,2)=20689.361642992615;
incomes(682,3)=20421.409553984777;
incomes(682,4)=20454.746259759264;
incomes(682,5)=20624.371105579812;
incomes(682,6)=20427.738140181424;
incomes(682,7)=19981.328246613215;
incomes(682,8)=19685.63676495026;
incomes(682,9)=20333.968600832297;
bref(683)=11000;
bnorm(683)=44000;
incomemean(683)=12000;
rents(683,1)=100.32424062848779;
rents(683,2)=75.23818707473946;
rents(683,3)=76.29472816413504;
rents(683,4)=76.5962897764648;
rents(683,5)=76.90621926533215;
rents(683,6)=77.27012974014104;
rents(683,7)=77.70545848745941;
rents(683,8)=77.47161052835051;
rents(683,9)=77.42364961317027;
incomes(683,1)=21277.522935990895;
incomes(683,2)=21577.014499639186;
incomes(683,3)=21118.98599814101;
incomes(683,4)=21044.86869546574;
incomes(683,5)=21160.724691933057;
incomes(683,6)=21193.91381073617;
incomes(683,7)=20768.631887428866;
incomes(683,8)=20878.38782386104;
incomes(683,9)=21191.618969200583;
bref(684)=11000;
bnorm(684)=44000;
incomemean(684)=13000;
rents(684,1)=101.05082432260006;
rents(684,2)=75.79167190814627;
rents(684,3)=78.41092160925552;
rents(684,4)=80.94357744828109;
rents(684,5)=82.91457859141266;
rents(684,6)=84.91012699351637;
rents(684,7)=86.72539556077834;
rents(684,8)=87.61767879463416;
rents(684,9)=88.61678025573659;
incomes(684,1)=22285.079366417893;
incomes(684,2)=22604.144182396267;
incomes(684,3)=22659.1664405601;
incomes(684,4)=22263.339678611253;
incomes(684,5)=22431.477308040143;
incomes(684,6)=22429.80990676217;
incomes(684,7)=21920.575035361097;
incomes(684,8)=21998.2499159287;
incomes(684,9)=22323.582175964835;
bref(685)=11000;
bnorm(685)=44000;
incomemean(685)=14000;
rents(685,1)=98.98895002478777;
rents(685,2)=74.23763833732133;
rents(685,3)=80.18353957402334;
rents(685,4)=85.83982484374415;
rents(685,5)=89.95531216362605;
rents(685,6)=94.9709833435767;
rents(685,7)=99.34149375026809;
rents(685,8)=101.5798439525746;
rents(685,9)=103.97155799005955;
incomes(685,1)=24316.397745464008;
incomes(685,2)=24729.508098792416;
incomes(685,3)=24626.233516270277;
incomes(685,4)=23792.863824532124;
incomes(685,5)=24558.615299746572;
incomes(685,6)=24373.309734881583;
incomes(685,7)=23352.835065967418;
incomes(685,8)=23537.251916885478;
incomes(685,9)=24342.988240300558;
bref(686)=11000;
bnorm(686)=44000;
incomemean(686)=15000;
rents(686,1)=100.8321957849847;
rents(686,2)=75.62437264316328;
rents(686,3)=82.26639331266685;
rents(686,4)=88.39167365760997;
rents(686,5)=93.9803016553749;
rents(686,6)=99.57305872586039;
rents(686,7)=104.98655491685778;
rents(686,8)=109.1448565034513;
rents(686,9)=113.31714273728892;
incomes(686,1)=24708.14779678445;
incomes(686,2)=25152.191997407102;
incomes(686,3)=24876.03945363557;
incomes(686,4)=24704.529233409186;
incomes(686,5)=24909.385169509424;
incomes(686,6)=25085.20015811443;
incomes(686,7)=24557.5890235868;
incomes(686,8)=24754.944257279552;
incomes(686,9)=25260.817693935074;
bref(687)=11000;
bnorm(687)=44000;
incomemean(687)=16000;
rents(687,1)=99.94828716776665;
rents(687,2)=74.95656339758195;
rents(687,3)=84.41648174002295;
rents(687,4)=93.62658350462483;
rents(687,5)=102.77991001103847;
rents(687,6)=112.39176992092025;
rents(687,7)=121.44875740108486;
rents(687,8)=129.58301501716332;
rents(687,9)=136.97692946452324;
incomes(687,1)=26420.273397592206;
incomes(687,2)=27053.696925646098;
incomes(687,3)=26777.29463604148;
incomes(687,4)=26764.63972059478;
incomes(687,5)=27313.818320621544;
incomes(687,6)=27109.551454853292;
incomes(687,7)=26875.85168252434;
incomes(687,8)=27009.34865955947;
incomes(687,9)=27175.927506516124;
bref(688)=11000;
bnorm(688)=44000;
incomemean(688)=17000;
rents(688,1)=99.17932657492806;
rents(688,2)=74.37833683057647;
rents(688,3)=86.46493776611784;
rents(688,4)=98.06968564644924;
rents(688,5)=109.34245273999703;
rents(688,6)=121.15701961310667;
rents(688,7)=132.70688447485358;
rents(688,8)=141.87684298526204;
rents(688,9)=149.92882302761805;
incomes(688,1)=28084.568620984985;
incomes(688,2)=28787.718188889976;
incomes(688,3)=28155.919908439395;
incomes(688,4)=27943.122631637434;
incomes(688,5)=28506.139200131904;
incomes(688,6)=28651.59315205887;
incomes(688,7)=27866.65431546275;
incomes(688,8)=27873.786419994103;
incomes(688,9)=28714.888748893696;
bref(689)=11000;
bnorm(689)=44000;
incomemean(689)=18000;
rents(689,1)=100.1148079037043;
rents(689,2)=75.08864277789324;
rents(689,3)=88.97865591002322;
rents(689,4)=102.89150707800373;
rents(689,5)=117.58075693063779;
rents(689,6)=132.3106687720156;
rents(689,7)=145.9155304452384;
rents(689,8)=157.61421394733233;
rents(689,9)=169.00625927791492;
incomes(689,1)=29044.836445685236;
incomes(689,2)=29787.12440208416;
incomes(689,3)=29207.242547077294;
incomes(689,4)=29452.857582780784;
incomes(689,5)=29560.728164392225;
incomes(689,6)=29518.39810588065;
incomes(689,7)=29037.492804833197;
incomes(689,8)=29474.48184893812;
incomes(689,9)=29333.01174976358;
bref(690)=11000;
bnorm(690)=44000;
incomemean(690)=19000;
rents(690,1)=97.88414342464863;
rents(690,2)=73.4137904542043;
rents(690,3)=90.85588482440205;
rents(690,4)=110.68191397544577;
rents(690,5)=130.22262605228883;
rents(690,6)=152.03043821224844;
rents(690,7)=172.57363410623182;
rents(690,8)=189.55744023344644;
rents(690,9)=198.22905641364275;
incomes(690,1)=31735.91234735476;
incomes(690,2)=32267.054319665163;
incomes(690,3)=32504.668618101365;
incomes(690,4)=31547.178662054772;
incomes(690,5)=32487.091799528684;
incomes(690,6)=32251.779436363697;
incomes(690,7)=31726.34878496039;
incomes(690,8)=32318.894446095976;
incomes(690,9)=32876.038062274005;
bref(691)=11000;
bnorm(691)=47000;
incomemean(691)=10000;
rents(691,1)=98.91398506568972;
rents(691,2)=75.75708946093317;
rents(691,3)=73.80608189949103;
rents(691,4)=72.21061684001589;
rents(691,5)=70.35417613192274;
rents(691,6)=69.10422725572454;
rents(691,7)=68.1279291699164;
rents(691,8)=66.61673244473815;
rents(691,9)=65.14137765659042;
incomes(691,1)=19497.037324931618;
incomes(691,2)=19617.986483186483;
incomes(691,3)=19577.200887306713;
incomes(691,4)=19251.650115088964;
incomes(691,5)=19671.854129644256;
incomes(691,6)=19723.138684866008;
incomes(691,7)=19065.307871005683;
incomes(691,8)=18990.805099910744;
incomes(691,9)=19138.670126770467;
bref(692)=11000;
bnorm(692)=47000;
incomemean(692)=11000;
rents(692,1)=98.11332403809726;
rents(692,2)=75.15075165644029;
rents(692,3)=74.99134398553252;
rents(692,4)=74.6326107558256;
rents(692,5)=73.84215103059248;
rents(692,6)=73.70341470879667;
rents(692,7)=73.42679813739097;
rents(692,8)=72.51518695442273;
rents(692,9)=71.82993399232943;
incomes(692,1)=20193.873531524812;
incomes(692,2)=20712.3670923237;
incomes(692,3)=20532.79732136313;
incomes(692,4)=20152.640711248878;
incomes(692,5)=20615.772310877088;
incomes(692,6)=20573.271949186197;
incomes(692,7)=20020.83263301558;
incomes(692,8)=20138.660075999753;
incomes(692,9)=20365.751974486888;
bref(693)=11000;
bnorm(693)=47000;
incomemean(693)=12000;
rents(693,1)=98.35915648001578;
rents(693,2)=75.33948691860661;
rents(693,3)=76.70667428442447;
rents(693,4)=78.06649160558018;
rents(693,5)=78.57323682141875;
rents(693,6)=79.41658051386766;
rents(693,7)=80.40848455906554;
rents(693,8)=80.22786950120343;
rents(693,9)=79.93564861793243;
incomes(693,1)=21319.806279484335;
incomes(693,2)=21721.482124961036;
incomes(693,3)=21823.05835218852;
incomes(693,4)=21155.06968894107;
incomes(693,5)=21377.379181535496;
incomes(693,6)=21618.562168144766;
incomes(693,7)=20786.102934883867;
incomes(693,8)=20707.65481823927;
incomes(693,9)=21257.6640421886;
bref(694)=11000;
bnorm(694)=47000;
incomemean(694)=13000;
rents(694,1)=98.18624024442353;
rents(694,2)=75.20477068011068;
rents(694,3)=78.7207888445077;
rents(694,4)=81.77001139205846;
rents(694,5)=84.4295295584417;
rents(694,6)=87.05543437908571;
rents(694,7)=89.06754046482301;
rents(694,8)=90.32403147049033;
rents(694,9)=91.519956398065;
incomes(694,1)=22721.259860646875;
incomes(694,2)=23256.81326355507;
incomes(694,3)=23005.09018566722;
incomes(694,4)=22829.314747859797;
incomes(694,5)=23007.128613332523;
incomes(694,6)=22800.551368646342;
incomes(694,7)=22334.233310747666;
incomes(694,8)=22349.942535711056;
incomes(694,9)=22559.64663313533;
bref(695)=11000;
bnorm(695)=47000;
incomemean(695)=14000;
rents(695,1)=97.67160849988835;
rents(695,2)=74.8117190818284;
rents(695,3)=80.02316860307353;
rents(695,4)=84.35007779971158;
rents(695,5)=88.31538607650515;
rents(695,6)=92.73133537482126;
rents(695,7)=96.56844144312868;
rents(695,8)=99.09089150922924;
rents(695,9)=102.18369918052815;
incomes(695,1)=23796.612572720107;
incomes(695,2)=24442.17597074523;
incomes(695,3)=23913.44502511501;
incomes(695,4)=23758.717380121863;
incomes(695,5)=24287.026261494702;
incomes(695,6)=24120.121044224245;
incomes(695,7)=23520.89712356762;
incomes(695,8)=23984.821510181955;
incomes(695,9)=24259.975842470674;
bref(696)=11000;
bnorm(696)=47000;
incomemean(696)=15000;
rents(696,1)=98.91766182610088;
rents(696,2)=75.76284729777599;
rents(696,3)=82.62799731987816;
rents(696,4)=89.6517682883387;
rents(696,5)=95.95667165744209;
rents(696,6)=102.75079760142863;
rents(696,7)=109.17610421714939;
rents(696,8)=113.84574303502752;
rents(696,9)=118.75595597104876;
incomes(696,1)=25300.59570834383;
incomes(696,2)=25570.405980715608;
incomes(696,3)=25700.63399645926;
incomes(696,4)=25239.298018135567;
incomes(696,5)=25847.30078408494;
incomes(696,6)=25848.59940556036;
incomes(696,7)=25095.810377553804;
incomes(696,8)=25332.289265585263;
incomes(696,9)=25744.0532632862;
bref(697)=11000;
bnorm(697)=47000;
incomemean(697)=16000;
rents(697,1)=100.28434459849457;
rents(697,2)=76.81320832283902;
rents(697,3)=85.66255905676078;
rents(697,4)=94.4547541995577;
rents(697,5)=102.7976143499225;
rents(697,6)=111.48801119677238;
rents(697,7)=120.03138270507264;
rents(697,8)=127.15948152192173;
rents(697,9)=132.9780768698077;
incomes(697,1)=26902.27247270284;
incomes(697,2)=27013.422286534827;
incomes(697,3)=26927.59576131547;
incomes(697,4)=26629.68350265914;
incomes(697,5)=27169.984699950215;
incomes(697,6)=27242.725999794075;
incomes(697,7)=26811.915470237564;
incomes(697,8)=26567.25016870096;
incomes(697,9)=27214.34232535132;
bref(698)=11000;
bnorm(698)=47000;
incomemean(698)=17000;
rents(698,1)=100.69492351299856;
rents(698,2)=77.12759508106943;
rents(698,3)=88.38330582524891;
rents(698,4)=100.02339742163157;
rents(698,5)=110.96834119873354;
rents(698,6)=122.7123661736403;
rents(698,7)=133.1222697303278;
rents(698,8)=142.373320368047;
rents(698,9)=150.7536853599679;
incomes(698,1)=28488.988957642006;
incomes(698,2)=28637.01799390662;
incomes(698,3)=28558.26245899034;
incomes(698,4)=28244.333598994235;
incomes(698,5)=28844.944820030887;
incomes(698,6)=28365.02280479041;
incomes(698,7)=28154.1891557795;
incomes(698,8)=28206.448003129644;
incomes(698,9)=28515.875388908822;
bref(699)=11000;
bnorm(699)=47000;
incomemean(699)=18000;
rents(699,1)=98.90436011272296;
rents(699,2)=75.75761921714331;
rents(699,3)=89.2301086347234;
rents(699,4)=103.70756524140317;
rents(699,5)=118.70229433982297;
rents(699,6)=133.69195197066205;
rents(699,7)=148.05583725368567;
rents(699,8)=159.97369792026075;
rents(699,9)=170.45305585027316;
incomes(699,1)=30166.171468164517;
incomes(699,2)=30198.564608796845;
incomes(699,3)=30332.37833925393;
incomes(699,4)=30364.61897662978;
incomes(699,5)=30484.066037987093;
incomes(699,6)=30456.776412238836;
incomes(699,7)=29799.0871417841;
incomes(699,8)=29820.060206493727;
incomes(699,9)=30049.083622968265;
bref(700)=11000;
bnorm(700)=47000;
incomemean(700)=19000;
rents(700,1)=97.7100860090974;
rents(700,2)=74.84283035018396;
rents(700,3)=91.08550311708099;
rents(700,4)=108.68530855312042;
rents(700,5)=126.6961097956231;
rents(700,6)=145.3301784100396;
rents(700,7)=163.8604658354613;
rents(700,8)=180.81132338729412;
rents(700,9)=191.8717437052503;
incomes(700,1)=31786.406300570678;
incomes(700,2)=32236.346107670473;
incomes(700,3)=32060.535879592262;
incomes(700,4)=31660.458397856142;
incomes(700,5)=31969.167251160972;
incomes(700,6)=32299.233665208627;
incomes(700,7)=32266.86145755974;
incomes(700,8)=32013.610214744283;
incomes(700,9)=32500.820796559095;
bref(701)=12000;
bnorm(701)=20000;
incomemean(701)=10000;
rents(701,1)=96.98191928072207;
rents(701,2)=50;
rents(701,3)=50;
rents(701,4)=50;
rents(701,5)=50;
rents(701,6)=50;
rents(701,7)=50;
rents(701,8)=50;
rents(701,9)=50;
incomes(701,1)=19278.402167158223;
incomes(701,2)=19674.38805024202;
incomes(701,3)=19446.255970057202;
incomes(701,4)=19101.288606286937;
incomes(701,5)=19465.060334782458;
incomes(701,6)=19269.164929505976;
incomes(701,7)=18799.481728960473;
incomes(701,8)=19109.28906626924;
incomes(701,9)=19114.161309716957;
bref(702)=12000;
bnorm(702)=20000;
incomemean(702)=11000;
rents(702,1)=100.54230019493875;
rents(702,2)=50;
rents(702,3)=50.97659768188485;
rents(702,4)=51.25153910677461;
rents(702,5)=51.38756686508451;
rents(702,6)=51.95395141175392;
rents(702,7)=51.50212956374449;
rents(702,8)=51.52831210649716;
rents(702,9)=51.297824072276576;
incomes(702,1)=20302.392127573556;
incomes(702,2)=20742.74512585647;
incomes(702,3)=20472.575263025017;
incomes(702,4)=20418.50677337107;
incomes(702,5)=20646.897331636424;
incomes(702,6)=20201.948811429487;
incomes(702,7)=20388.727891036982;
incomes(702,8)=20277.36836273937;
incomes(702,9)=20440.3690714025;
bref(703)=12000;
bnorm(703)=20000;
incomemean(703)=12000;
rents(703,1)=103.51000628737154;
rents(703,2)=50;
rents(703,3)=52.514795490704486;
rents(703,4)=54.57228806284874;
rents(703,5)=55.47255297134791;
rents(703,6)=57.03914819210905;
rents(703,7)=58.23880580031605;
rents(703,8)=57.869441124818465;
rents(703,9)=58.59931829542012;
incomes(703,1)=20808.725475482843;
incomes(703,2)=21352.722324131173;
incomes(703,3)=21189.532130304153;
incomes(703,4)=20758.2393275783;
incomes(703,5)=21164.29836356977;
incomes(703,6)=21069.054343323434;
incomes(703,7)=20535.538286547246;
incomes(703,8)=20916.916913947898;
incomes(703,9)=20769.149953344076;
bref(704)=12000;
bnorm(704)=20000;
incomemean(704)=13000;
rents(704,1)=97.97508601595642;
rents(704,2)=50;
rents(704,3)=56.08773842700148;
rents(704,4)=60.80341121973304;
rents(704,5)=65.26261250162705;
rents(704,6)=69.37580277421816;
rents(704,7)=72.55629777987555;
rents(704,8)=74.23151002842737;
rents(704,9)=75.15762023647399;
incomes(704,1)=22214.656073116224;
incomes(704,2)=22933.084537044837;
incomes(704,3)=22422.711132618217;
incomes(704,4)=22488.467290067176;
incomes(704,5)=22510.1254965589;
incomes(704,6)=22438.074030752803;
incomes(704,7)=22131.09395273073;
incomes(704,8)=21968.302948290504;
incomes(704,9)=22083.60351073409;
bref(705)=12000;
bnorm(705)=20000;
incomemean(705)=14000;
rents(705,1)=101.91665093806637;
rents(705,2)=50;
rents(705,3)=58.3717593207055;
rents(705,4)=66.91158937822638;
rents(705,5)=74.19905258705245;
rents(705,6)=80.84443572882982;
rents(705,7)=86.80608373146053;
rents(705,8)=89.91124587722653;
rents(705,9)=91.66224214074981;
incomes(705,1)=23720.271875026792;
incomes(705,2)=23935.224370936277;
incomes(705,3)=24018.976062775448;
incomes(705,4)=23734.399276260043;
incomes(705,5)=23773.448550882546;
incomes(705,6)=23858.736297639825;
incomes(705,7)=23223.726997053043;
incomes(705,8)=23191.460280258798;
incomes(705,9)=23913.726281900286;
bref(706)=12000;
bnorm(706)=20000;
incomemean(706)=15000;
rents(706,1)=102.35297360282505;
rents(706,2)=50;
rents(706,3)=62.939084820266125;
rents(706,4)=76.51423976141038;
rents(706,5)=88.23089849967613;
rents(706,6)=100.41808586343504;
rents(706,7)=110.59119515490505;
rents(706,8)=118.2408345220679;
rents(706,9)=123.82194853258855;
incomes(706,1)=25559.708686522565;
incomes(706,2)=26089.746042303832;
incomes(706,3)=26008.835771331913;
incomes(706,4)=25438.459347638418;
incomes(706,5)=25820.520875588503;
incomes(706,6)=25836.210142098997;
incomes(706,7)=25779.82191302325;
incomes(706,8)=25596.566301614544;
incomes(706,9)=26067.49764910933;
bref(707)=12000;
bnorm(707)=20000;
incomemean(707)=16000;
rents(707,1)=101.61791130170073;
rents(707,2)=50;
rents(707,3)=65.67403247006618;
rents(707,4)=82.46895629848737;
rents(707,5)=98.66104876815669;
rents(707,6)=115.89047916294153;
rents(707,7)=129.75732126524505;
rents(707,8)=138.99082863803292;
rents(707,9)=145.03594902090197;
incomes(707,1)=27189.974205927487;
incomes(707,2)=27216.131516704194;
incomes(707,3)=26924.078811694642;
incomes(707,4)=26677.429355144217;
incomes(707,5)=27344.97099246315;
incomes(707,6)=27062.15050626057;
incomes(707,7)=26764.856029325285;
incomes(707,8)=26767.925211735786;
incomes(707,9)=27373.265325682776;
bref(708)=12000;
bnorm(708)=20000;
incomemean(708)=17000;
rents(708,1)=97.85265703422967;
rents(708,2)=50;
rents(708,3)=68.01869446222683;
rents(708,4)=89.25766658068868;
rents(708,5)=110.06132302275377;
rents(708,6)=130.15434844575194;
rents(708,7)=146.95113659586417;
rents(708,8)=158.9071699085428;
rents(708,9)=167.32958916700042;
incomes(708,1)=27994.384750736648;
incomes(708,2)=28226.976922302943;
incomes(708,3)=28348.225190897734;
incomes(708,4)=27939.181456046255;
incomes(708,5)=28271.434633055727;
incomes(708,6)=28399.508847086192;
incomes(708,7)=28265.15430526648;
incomes(708,8)=28073.12219879045;
incomes(708,9)=28319.81477523075;
bref(709)=12000;
bnorm(709)=20000;
incomemean(709)=18000;
rents(709,1)=99.13102362651009;
rents(709,2)=50;
rents(709,3)=73.51075319978106;
rents(709,4)=102.84868500776042;
rents(709,5)=132.03012553877213;
rents(709,6)=162.26021474605906;
rents(709,7)=185.6116958274444;
rents(709,8)=200;
rents(709,9)=200;
incomes(709,1)=30592.98372682004;
incomes(709,2)=30676.535924679578;
incomes(709,3)=30697.869869395094;
incomes(709,4)=30021.355480896502;
incomes(709,5)=30738.195211707425;
incomes(709,6)=30937.755131970935;
incomes(709,7)=31046.410927556186;
incomes(709,8)=31218.86331949732;
incomes(709,9)=31137.322415815506;
bref(710)=12000;
bnorm(710)=20000;
incomemean(710)=19000;
rents(710,1)=99.53245043112766;
rents(710,2)=50;
rents(710,3)=76.8875151431116;
rents(710,4)=110.93778528648801;
rents(710,5)=151.4951612626264;
rents(710,6)=188.40568662221747;
rents(710,7)=200;
rents(710,8)=200;
rents(710,9)=200;
incomes(710,1)=31978.338034818502;
incomes(710,2)=32258.57647494677;
incomes(710,3)=31892.13683999709;
incomes(710,4)=32358.71744122249;
incomes(710,5)=32208.35726853884;
incomes(710,6)=32584.88271814004;
incomes(710,7)=32242.108717647603;
incomes(710,8)=32155.82264454848;
incomes(710,9)=32817.13112516538;
bref(711)=12000;
bnorm(711)=23000;
incomemean(711)=10000;
rents(711,1)=98.66746450482444;
rents(711,2)=50.28903055096645;
rents(711,3)=50.12858002022116;
rents(711,4)=50.026585739953305;
rents(711,5)=50;
rents(711,6)=50;
rents(711,7)=50;
rents(711,8)=50;
rents(711,9)=50;
incomes(711,1)=19200.17406089883;
incomes(711,2)=19493.097576190234;
incomes(711,3)=19382.814372804292;
incomes(711,4)=18989.74153535282;
incomes(711,5)=19409.481905288954;
incomes(711,6)=19505.598516550202;
incomes(711,7)=18903.8690067798;
incomes(711,8)=19040.55756985874;
incomes(711,9)=19302.091364616426;
bref(712)=12000;
bnorm(712)=23000;
incomemean(712)=11000;
rents(712,1)=99.74614881464986;
rents(712,2)=50.64250893553036;
rents(712,3)=51.10573229539731;
rents(712,4)=50.978943270081;
rents(712,5)=50.57686658518672;
rents(712,6)=50.55368037097736;
rents(712,7)=50.457944490516496;
rents(712,8)=50.3556626645603;
rents(712,9)=50.21424256518729;
incomes(712,1)=19923.864992120027;
incomes(712,2)=20408.50811243603;
incomes(712,3)=20156.276590346162;
incomes(712,4)=19840.67516946066;
incomes(712,5)=20214.332664717876;
incomes(712,6)=19934.047952394212;
incomes(712,7)=19862.543471000234;
incomes(712,8)=19649.913012809622;
incomes(712,9)=20149.03350546975;
bref(713)=12000;
bnorm(713)=23000;
incomemean(713)=12000;
rents(713,1)=100.25859066921092;
rents(713,2)=50.52576826294592;
rents(713,3)=53.26694677121063;
rents(713,4)=55.382631640524714;
rents(713,5)=57.13894572398998;
rents(713,6)=59.13737812103801;
rents(713,7)=61.48360235533734;
rents(713,8)=62.03310416727889;
rents(713,9)=62.34693682904682;
incomes(713,1)=21191.6535277875;
incomes(713,2)=21587.529349149692;
incomes(713,3)=21430.206999333674;
incomes(713,4)=21291.20521414964;
incomes(713,5)=21570.623762296767;
incomes(713,6)=21864.420939321324;
incomes(713,7)=21103.349499225817;
incomes(713,8)=21064.844442943508;
incomes(713,9)=21050.3637296874;
bref(714)=12000;
bnorm(714)=23000;
incomemean(714)=13000;
rents(714,1)=101.7662320891202;
rents(714,2)=50.67815162572719;
rents(714,3)=55.96425079688768;
rents(714,4)=60.4207174935112;
rents(714,5)=64.75981943658934;
rents(714,6)=68.0290051641022;
rents(714,7)=71.39088490962298;
rents(714,8)=73.54113817581737;
rents(714,9)=75.34704025036494;
incomes(714,1)=22330.742054065322;
incomes(714,2)=22990.82880199503;
incomes(714,3)=22709.38951021005;
incomes(714,4)=22783.245331378315;
incomes(714,5)=22568.584935496954;
incomes(714,6)=22720.194159041595;
incomes(714,7)=22388.4342967446;
incomes(714,8)=22358.224361282;
incomes(714,9)=22363.44368719744;
bref(715)=12000;
bnorm(715)=23000;
incomemean(715)=14000;
rents(715,1)=101.31017617904686;
rents(715,2)=51.09168481614425;
rents(715,3)=59.63789324998383;
rents(715,4)=67.37077260791992;
rents(715,5)=74.86222778834062;
rents(715,6)=81.62563581549568;
rents(715,7)=87.89507716969612;
rents(715,8)=91.1365190589053;
rents(715,9)=93.32781557146829;
incomes(715,1)=24092.05207572612;
incomes(715,2)=24513.02968054684;
incomes(715,3)=24058.589702252968;
incomes(715,4)=24111.706868236117;
incomes(715,5)=24001.916867081767;
incomes(715,6)=24297.16150838209;
incomes(715,7)=23582.25405841063;
incomes(715,8)=23300.57250998354;
incomes(715,9)=23961.398160930705;
bref(716)=12000;
bnorm(716)=23000;
incomemean(716)=15000;
rents(716,1)=101.59144583078884;
rents(716,2)=50.76304411110913;
rents(716,3)=62.44023881833542;
rents(716,4)=74.44594676405788;
rents(716,5)=86.41375619164896;
rents(716,6)=97.38300760640278;
rents(716,7)=107.76704835706487;
rents(716,8)=114.63977504650693;
rents(716,9)=121.56162789955826;
incomes(716,1)=25543.73015038356;
incomes(716,2)=26238.578405377215;
incomes(716,3)=26027.042485569007;
incomes(716,4)=25961.300017115314;
incomes(716,5)=25949.325081577757;
incomes(716,6)=26215.22014525289;
incomes(716,7)=25602.13400614311;
incomes(716,8)=25960.002191108953;
incomes(716,9)=26232.176606667683;
bref(717)=12000;
bnorm(717)=23000;
incomemean(717)=16000;
rents(717,1)=97.72832971028903;
rents(717,2)=50.15811606917861;
rents(717,3)=64.27906000909896;
rents(717,4)=78.90647149282745;
rents(717,5)=92.11845325476065;
rents(717,6)=106.92892803457708;
rents(717,7)=119.40225328838181;
rents(717,8)=128.65365956072824;
rents(717,9)=136.92026190514838;
incomes(717,1)=26792.944487321583;
incomes(717,2)=27517.224097448267;
incomes(717,3)=27075.21523080173;
incomes(717,4)=26429.93791853174;
incomes(717,5)=27195.449010508448;
incomes(717,6)=26967.236745581245;
incomes(717,7)=26638.87940439978;
incomes(717,8)=26977.814026903;
incomes(717,9)=26791.15041657928;
bref(718)=12000;
bnorm(718)=23000;
incomemean(718)=17000;
rents(718,1)=97.86649297707103;
rents(718,2)=50.160525023397696;
rents(718,3)=66.96836418604988;
rents(718,4)=86.93704781726439;
rents(718,5)=105.72675482748042;
rents(718,6)=125.85492990363332;
rents(718,7)=143.5063973902203;
rents(718,8)=155.85296222400842;
rents(718,9)=163.79921800389914;
incomes(718,1)=27889.701389826016;
incomes(718,2)=28881.185019701657;
incomes(718,3)=28990.79239722409;
incomes(718,4)=28121.32331972927;
incomes(718,5)=28847.087763406962;
incomes(718,6)=28749.497755076307;
incomes(718,7)=28486.5950523638;
incomes(718,8)=28197.398084009004;
incomes(718,9)=28944.59675428793;
bref(719)=12000;
bnorm(719)=23000;
incomemean(719)=18000;
rents(719,1)=98.87179654372291;
rents(719,2)=50.21093689767518;
rents(719,3)=69.07910079954;
rents(719,4)=92.47473570158928;
rents(719,5)=116.39764420550702;
rents(719,6)=141.29259598352522;
rents(719,7)=163.11595654569294;
rents(719,8)=176.8375937479596;
rents(719,9)=188.04014237711735;
incomes(719,1)=28971.300611082977;
incomes(719,2)=29885.404152739327;
incomes(719,3)=30174.317234240796;
incomes(719,4)=29551.52106415943;
incomes(719,5)=30056.869040808833;
incomes(719,6)=30219.10065827989;
incomes(719,7)=29507.4481947397;
incomes(719,8)=29707.218416161973;
incomes(719,9)=30546.193922805578;
bref(720)=12000;
bnorm(720)=23000;
incomemean(720)=19000;
rents(720,1)=101.4736156992463;
rents(720,2)=51.131990398757175;
rents(720,3)=73.92763194926597;
rents(720,4)=102.63361927391321;
rents(720,5)=132.36578065847814;
rents(720,6)=163.38773146930055;
rents(720,7)=189.3612715939597;
rents(720,8)=200;
rents(720,9)=200;
incomes(720,1)=31076.358387774388;
incomes(720,2)=31774.334272377404;
incomes(720,3)=31751.132093834447;
incomes(720,4)=31103.25741265301;
incomes(720,5)=31751.408564683337;
incomes(720,6)=31729.4711173701;
incomes(720,7)=32292.089261068733;
incomes(720,8)=32305.989895215316;
incomes(720,9)=32539.755577549913;
bref(721)=12000;
bnorm(721)=26000;
incomemean(721)=10000;
rents(721,1)=99.98409994493976;
rents(721,2)=53.98805439670263;
rents(721,3)=52.59782857295708;
rents(721,4)=51.384535490819594;
rents(721,5)=50.37206355386825;
rents(721,6)=50.08244477878057;
rents(721,7)=50.00745120198869;
rents(721,8)=50;
rents(721,9)=50;
incomes(721,1)=19595.87331339567;
incomes(721,2)=19782.36884029538;
incomes(721,3)=19632.368900507496;
incomes(721,4)=19309.530577805555;
incomes(721,5)=19735.41932638982;
incomes(721,6)=19540.464629106697;
incomes(721,7)=19036.8663298876;
incomes(721,8)=19123.226883026244;
incomes(721,9)=19198.19145201329;
bref(722)=12000;
bnorm(722)=26000;
incomemean(722)=11000;
rents(722,1)=102.20968783782452;
rents(722,2)=55.12151907258613;
rents(722,3)=54.719012960152924;
rents(722,4)=53.995676583743894;
rents(722,5)=53.46109924453952;
rents(722,6)=53.142833077669586;
rents(722,7)=52.50590227106996;
rents(722,8)=51.77256373859897;
rents(722,9)=51.24820194329842;
incomes(722,1)=20075.111488042043;
incomes(722,2)=20334.19562780488;
incomes(722,3)=20047.762261171;
incomes(722,4)=20083.05698023569;
incomes(722,5)=20223.505140568766;
incomes(722,6)=19848.61909186459;
incomes(722,7)=19726.176498799825;
incomes(722,8)=19741.724359026106;
incomes(722,9)=19936.87286235497;
bref(723)=12000;
bnorm(723)=26000;
incomemean(723)=12000;
rents(723,1)=100.74080866482619;
rents(723,2)=54.349288305865905;
rents(723,3)=55.667085567158765;
rents(723,4)=57.219835461674776;
rents(723,5)=57.49324555797222;
rents(723,6)=58.36713660573144;
rents(723,7)=59.06615638783136;
rents(723,8)=58.58529580574188;
rents(723,9)=58.236929735325646;
incomes(723,1)=21110.50710931458;
incomes(723,2)=21348.883743383325;
incomes(723,3)=21606.504653136548;
incomes(723,4)=20985.91545482772;
incomes(723,5)=21325.596510176318;
incomes(723,6)=21393.08365551764;
incomes(723,7)=20681.33066500757;
incomes(723,8)=20726.226098852523;
incomes(723,9)=21117.88814249413;
bref(724)=12000;
bnorm(724)=26000;
incomemean(724)=13000;
rents(724,1)=99.02104074820157;
rents(724,2)=53.679486871002865;
rents(724,3)=58.46113070355503;
rents(724,4)=63.24489268305246;
rents(724,5)=66.96909407335357;
rents(724,6)=70.45867880752691;
rents(724,7)=73.47205794082461;
rents(724,8)=75.34185952290525;
rents(724,9)=77.06800368814315;
incomes(724,1)=22989.643809119127;
incomes(724,2)=23135.995158429945;
incomes(724,3)=23241.432734398048;
incomes(724,4)=22837.61466568568;
incomes(724,5)=22887.285089472825;
incomes(724,6)=22944.186010810405;
incomes(724,7)=22480.906539826843;
incomes(724,8)=22550.268780386272;
incomes(724,9)=22499.20650959606;
bref(725)=12000;
bnorm(725)=26000;
incomemean(725)=14000;
rents(725,1)=100.06346249350034;
rents(725,2)=54.19270706973305;
rents(725,3)=60.720119717041726;
rents(725,4)=66.99720329508274;
rents(725,5)=72.51702981542111;
rents(725,6)=78.10999101212397;
rents(725,7)=83.68499676938146;
rents(725,8)=86.41323390024047;
rents(725,9)=89.54093702157735;
incomes(725,1)=23780.4285675911;
incomes(725,2)=24099.88128765009;
incomes(725,3)=24014.39918263407;
incomes(725,4)=23817.421827375885;
incomes(725,5)=24123.19322994666;
incomes(725,6)=24238.018607537204;
incomes(725,7)=23430.14727598035;
incomes(725,8)=23697.56718726242;
incomes(725,9)=24056.56825471103;
bref(726)=12000;
bnorm(726)=26000;
incomemean(726)=15000;
rents(726,1)=100.47194270030872;
rents(726,2)=54.21722215371886;
rents(726,3)=63.605157265195764;
rents(726,4)=72.8370438470616;
rents(726,5)=81.18754477960181;
rents(726,6)=89.55586121303337;
rents(726,7)=98.05451796133214;
rents(726,8)=103.87750899654922;
rents(726,9)=108.29173702338134;
incomes(726,1)=25059.822539707122;
incomes(726,2)=25581.123255477887;
incomes(726,3)=25437.352808561893;
incomes(726,4)=25067.83153690044;
incomes(726,5)=25338.117658285562;
incomes(726,6)=25659.05744350641;
incomes(726,7)=25103.635476472216;
incomes(726,8)=24893.363297729444;
incomes(726,9)=25481.477446694993;
bref(727)=12000;
bnorm(727)=26000;
incomemean(727)=16000;
rents(727,1)=99.96106668987048;
rents(727,2)=53.99059169641523;
rents(727,3)=66.07507799870147;
rents(727,4)=79.10439148382798;
rents(727,5)=91.43126403795212;
rents(727,6)=103.46876549428285;
rents(727,7)=116.29765302256197;
rents(727,8)=125.15257256743558;
rents(727,9)=131.6742530291333;
incomes(727,1)=26497.957332035643;
incomes(727,2)=27040.90361575891;
incomes(727,3)=27089.12824071137;
incomes(727,4)=26705.230369919063;
incomes(727,5)=26847.617116717538;
incomes(727,6)=27476.989510111172;
incomes(727,7)=26808.347145226136;
incomes(727,8)=26582.209609439207;
incomes(727,9)=26890.990739035395;
bref(728)=12000;
bnorm(728)=26000;
incomemean(728)=17000;
rents(728,1)=103.91858513585998;
rents(728,2)=56.04888147223584;
rents(728,3)=71.70490990741823;
rents(728,4)=88.86953726232628;
rents(728,5)=105.97006136869776;
rents(728,6)=124.50884442532927;
rents(728,7)=141.08706494950758;
rents(728,8)=152.84499053203226;
rents(728,9)=162.03366952248984;
incomes(728,1)=28581.635241505955;
incomes(728,2)=28733.422495700688;
incomes(728,3)=28621.83986403044;
incomes(728,4)=28386.51892374622;
incomes(728,5)=29011.00080718491;
incomes(728,6)=29049.72662292416;
incomes(728,7)=28470.097040615186;
incomes(728,8)=28429.73610737402;
incomes(728,9)=28897.241559964983;
bref(729)=12000;
bnorm(729)=26000;
incomemean(729)=18000;
rents(729,1)=99.10997621410027;
rents(729,2)=54.19014613987735;
rents(729,3)=73.20890130274591;
rents(729,4)=94.5339133082409;
rents(729,5)=116.09227856298001;
rents(729,6)=139.5244808769669;
rents(729,7)=159.4435091076627;
rents(729,8)=172.52154061195523;
rents(729,9)=184.97057172975403;
incomes(729,1)=29995.7430110339;
incomes(729,2)=30744.72024130777;
incomes(729,3)=30199.286949618778;
incomes(729,4)=29773.33130884411;
incomes(729,5)=30456.40881730429;
incomes(729,6)=30279.943311449297;
incomes(729,7)=29529.66215655356;
incomes(729,8)=30190.02456847549;
incomes(729,9)=30074.660182917876;
bref(730)=12000;
bnorm(730)=26000;
incomemean(730)=19000;
rents(730,1)=101.35697057020553;
rents(730,2)=54.64666040040349;
rents(730,3)=75.91849046711228;
rents(730,4)=100.62627216140433;
rents(730,5)=127.35804956553572;
rents(730,6)=155.44481194340236;
rents(730,7)=180.836886966651;
rents(730,8)=194.70066880480692;
rents(730,9)=199.85560305837606;
incomes(730,1)=31156.86559746001;
incomes(730,2)=31829.789252454204;
incomes(730,3)=31332.725324965217;
incomes(730,4)=31279.93114370635;
incomes(730,5)=31867.59424467705;
incomes(730,6)=32026.18908776558;
incomes(730,7)=31999.717826022184;
incomes(730,8)=31956.21396913879;
incomes(730,9)=32686.31250239671;
bref(731)=12000;
bnorm(731)=29000;
incomemean(731)=10000;
rents(731,1)=102.06252663546204;
rents(731,2)=59.83617969164876;
rents(731,3)=57.28619825387139;
rents(731,4)=55.27234550643511;
rents(731,5)=53.32896481840211;
rents(731,6)=52.0352102676773;
rents(731,7)=51.177754903515314;
rents(731,8)=50.49250111001082;
rents(731,9)=50.17939587729245;
incomes(731,1)=19153.59813754568;
incomes(731,2)=19649.66146556805;
incomes(731,3)=19638.00409715643;
incomes(731,4)=19502.93913317857;
incomes(731,5)=19646.81518821607;
incomes(731,6)=19568.863241871673;
incomes(731,7)=19058.457884298623;
incomes(731,8)=19045.4842398147;
incomes(731,9)=19502.277065744798;
bref(732)=12000;
bnorm(732)=29000;
incomemean(732)=11000;
rents(732,1)=100.01322423466235;
rents(732,2)=58.62949078567689;
rents(732,3)=57.36528709723466;
rents(732,4)=56.44373218031557;
rents(732,5)=55.45633302114115;
rents(732,6)=55.02720743609438;
rents(732,7)=54.521155113045374;
rents(732,8)=53.29436169924805;
rents(732,9)=52.11264889175932;
incomes(732,1)=19705.014113178706;
incomes(732,2)=20167.682896435046;
incomes(732,3)=20242.07389255331;
incomes(732,4)=20101.911505881304;
incomes(732,5)=20344.80226601845;
incomes(732,6)=20347.681641829517;
incomes(732,7)=19704.456517730036;
incomes(732,8)=19520.778557598893;
incomes(732,9)=19964.93466674811;
bref(733)=12000;
bnorm(733)=29000;
incomemean(733)=12000;
rents(733,1)=98.35288928009996;
rents(733,2)=57.68115580956404;
rents(733,3)=59.06308498513405;
rents(733,4)=60.22211766932626;
rents(733,5)=60.97161606023932;
rents(733,6)=62.07516766071056;
rents(733,7)=63.16538127167902;
rents(733,8)=62.972247633274655;
rents(733,9)=62.85778105682252;
incomes(733,1)=21153.07010031693;
incomes(733,2)=21588.113025302853;
incomes(733,3)=21532.505351094624;
incomes(733,4)=21313.354100046516;
incomes(733,5)=21591.348736933534;
incomes(733,6)=21688.083226421084;
incomes(733,7)=20969.131156819425;
incomes(733,8)=21045.598366608698;
incomes(733,9)=21382.817367446605;
bref(734)=12000;
bnorm(734)=29000;
incomemean(734)=13000;
rents(734,1)=98.82042522303578;
rents(734,2)=57.94150565884892;
rents(734,3)=61.432925129513755;
rents(734,4)=65.14927767746316;
rents(734,5)=68.00894747134674;
rents(734,6)=70.3557658593976;
rents(734,7)=72.5184456025458;
rents(734,8)=73.75746154279486;
rents(734,9)=74.91131147663353;
incomes(734,1)=22391.777935644237;
incomes(734,2)=22836.98480074952;
incomes(734,3)=23043.289116064196;
incomes(734,4)=22683.271895318536;
incomes(734,5)=22675.998248247786;
incomes(734,6)=22705.273347926337;
incomes(734,7)=22372.682881531837;
incomes(734,8)=22413.69077156366;
incomes(734,9)=22253.176343946918;
bref(735)=12000;
bnorm(735)=29000;
incomemean(735)=14000;
rents(735,1)=100.37487417615263;
rents(735,2)=58.842592953320235;
rents(735,3)=64.47986725492481;
rents(735,4)=69.72238706275714;
rents(735,5)=73.5341207473436;
rents(735,6)=77.79838981688042;
rents(735,7)=82.21963476351814;
rents(735,8)=84.80564691751496;
rents(735,9)=86.96801879967259;
incomes(735,1)=23485.822416619565;
incomes(735,2)=23910.40968193717;
incomes(735,3)=23789.996745911074;
incomes(735,4)=23133.300068581942;
incomes(735,5)=23664.368756840024;
incomes(735,6)=23934.207467626013;
incomes(735,7)=23335.44981678111;
incomes(735,8)=23340.40366309811;
incomes(735,9)=23281.572111006026;
bref(736)=12000;
bnorm(736)=29000;
incomemean(736)=15000;
rents(736,1)=102.14431690640622;
rents(736,2)=59.883851404361664;
rents(736,3)=69.19848215669363;
rents(736,4)=78.80582764483027;
rents(736,5)=87.11058790323996;
rents(736,6)=94.88214081769054;
rents(736,7)=102.8163940859268;
rents(736,8)=107.68568128277985;
rents(736,9)=113.27212961871054;
incomes(736,1)=25561.28337345062;
incomes(736,2)=26127.5331932811;
incomes(736,3)=26123.225864531698;
incomes(736,4)=25637.38740566529;
incomes(736,5)=25713.833366394996;
incomes(736,6)=25999.35768921947;
incomes(736,7)=25170.46540169746;
incomes(736,8)=25764.53587881685;
incomes(736,9)=26116.671745696694;
bref(737)=12000;
bnorm(737)=29000;
incomemean(737)=16000;
rents(737,1)=98.69793690492622;
rents(737,2)=57.85646861280004;
rents(737,3)=69.41432246968756;
rents(737,4)=81.70837027788117;
rents(737,5)=93.19048129810344;
rents(737,6)=105.01126970271825;
rents(737,7)=115.74084942138265;
rents(737,8)=123.87630880181347;
rents(737,9)=130.56053082328674;
incomes(737,1)=26820.514529384964;
incomes(737,2)=27158.05684030437;
incomes(737,3)=27222.31005913844;
incomes(737,4)=26740.78272658403;
incomes(737,5)=27191.861597816107;
incomes(737,6)=27150.665055515015;
incomes(737,7)=26646.142740191393;
incomes(737,8)=26662.478473736763;
incomes(737,9)=27187.114865525393;
bref(738)=12000;
bnorm(738)=29000;
incomemean(738)=17000;
rents(738,1)=99.5140655588072;
rents(738,2)=58.35263487865819;
rents(738,3)=72.77536838010019;
rents(738,4)=88.45501102230966;
rents(738,5)=103.48875534243459;
rents(738,6)=119.94061242967621;
rents(738,7)=134.20225926668883;
rents(738,8)=145.80289471773997;
rents(738,9)=155.9333497993877;
incomes(738,1)=28326.060330057946;
incomes(738,2)=28861.588976695937;
incomes(738,3)=28765.186463401606;
incomes(738,4)=28357.896818688525;
incomes(738,5)=29078.06280802318;
incomes(738,6)=28895.16476351512;
incomes(738,7)=28611.540441422654;
incomes(738,8)=28794.392456322854;
incomes(738,9)=28872.125437635834;
bref(739)=12000;
bnorm(739)=29000;
incomemean(739)=18000;
rents(739,1)=99.180708987833;
rents(739,2)=58.18272465508457;
rents(739,3)=73.98984777322123;
rents(739,4)=92.04990879239416;
rents(739,5)=110.44488722262797;
rents(739,6)=130.20340427723661;
rents(739,7)=149.1276727784079;
rents(739,8)=163.79928132178782;
rents(739,9)=174.52300239392062;
incomes(739,1)=29521.017623485255;
incomes(739,2)=29419.43452823252;
incomes(739,3)=29641.324204085915;
incomes(739,4)=29319.114873678114;
incomes(739,5)=29958.52781937803;
incomes(739,6)=30142.361518957343;
incomes(739,7)=29599.94853275224;
incomes(739,8)=29484.667860474146;
incomes(739,9)=29912.81567491925;
bref(740)=12000;
bnorm(740)=29000;
incomemean(740)=19000;
rents(740,1)=98.32259847584287;
rents(740,2)=57.62954253491471;
rents(740,3)=78.05454294500008;
rents(740,4)=101.54151433069889;
rents(740,5)=127.08195563962678;
rents(740,6)=154.32464282491676;
rents(740,7)=178.50969990041875;
rents(740,8)=193.66675136750072;
rents(740,9)=199.66795834798478;
incomes(740,1)=31877.48553156827;
incomes(740,2)=32215.27021634286;
incomes(740,3)=31771.76621288269;
incomes(740,4)=31791.492332601432;
incomes(740,5)=32294.198424692746;
incomes(740,6)=32047.30222031583;
incomes(740,7)=32190.558904057958;
incomes(740,8)=32366.50881614538;
incomes(740,9)=33331.12150902745;
bref(741)=12000;
bnorm(741)=32000;
incomemean(741)=10000;
rents(741,1)=97.99178870333209;
rents(741,2)=61.24670143388722;
rents(741,3)=58.794850921149155;
rents(741,4)=56.55213397007077;
rents(741,5)=54.30625022250208;
rents(741,6)=53.09393408897006;
rents(741,7)=51.88833507620089;
rents(741,8)=50.95167320049792;
rents(741,9)=50.45868699677952;
incomes(741,1)=19202.650166886055;
incomes(741,2)=19534.423027376313;
incomes(741,3)=19284.996857418915;
incomes(741,4)=18969.66195573679;
incomes(741,5)=19436.777303886436;
incomes(741,6)=19222.48652085717;
incomes(741,7)=18973.607389835415;
incomes(741,8)=18990.171692097032;
incomes(741,9)=19128.17810418304;
bref(742)=12000;
bnorm(742)=32000;
incomemean(742)=11000;
rents(742,1)=98.79288819128054;
rents(742,2)=61.74379590386188;
rents(742,3)=60.704401577140715;
rents(742,4)=59.75292349743166;
rents(742,5)=58.19162255647792;
rents(742,6)=57.240794356467234;
rents(742,7)=56.62317605292681;
rents(742,8)=55.205183902888585;
rents(742,9)=54.28457013800825;
incomes(742,1)=20158.90509545045;
incomes(742,2)=20346.97456321233;
incomes(742,3)=20335.13177738229;
incomes(742,4)=19864.157310573948;
incomes(742,5)=20131.583826377882;
incomes(742,6)=20378.880389821592;
incomes(742,7)=19590.726975807833;
incomes(742,8)=19885.687618547003;
incomes(742,9)=19880.723692887303;
bref(743)=12000;
bnorm(743)=32000;
incomemean(743)=12000;
rents(743,1)=99.08971936712715;
rents(743,2)=61.93564041563361;
rents(743,3)=62.7871811153368;
rents(743,4)=63.23599788659242;
rents(743,5)=63.564926623620515;
rents(743,6)=63.812546531582555;
rents(743,7)=64.06230008853365;
rents(743,8)=63.43255818648213;
rents(743,9)=62.53939249999895;
incomes(743,1)=21381.29791988459;
incomes(743,2)=21539.034352363524;
incomes(743,3)=21366.97724090373;
incomes(743,4)=21289.061107994992;
incomes(743,5)=21265.300801062425;
incomes(743,6)=21311.491041017918;
incomes(743,7)=20778.292248958038;
incomes(743,8)=20512.71347243103;
incomes(743,9)=21017.985333853947;
bref(744)=12000;
bnorm(744)=32000;
incomemean(744)=13000;
rents(744,1)=97.209389427688;
rents(744,2)=60.762259239405466;
rents(744,3)=63.77644873251513;
rents(744,4)=66.70174768745787;
rents(744,5)=68.9834276759446;
rents(744,6)=71.09626496794965;
rents(744,7)=73.00457794919974;
rents(744,8)=74.2615055634683;
rents(744,9)=74.80123612949203;
incomes(744,1)=22459.950367551115;
incomes(744,2)=22693.24420750534;
incomes(744,3)=22776.785827277425;
incomes(744,4)=22483.97666656093;
incomes(744,5)=22552.013560496922;
incomes(744,6)=22576.652472333055;
incomes(744,7)=22192.721583836166;
incomes(744,8)=21926.58905834614;
incomes(744,9)=22464.010343011858;
bref(745)=12000;
bnorm(745)=32000;
incomemean(745)=14000;
rents(745,1)=99.89214174493756;
rents(745,2)=62.435734439245394;
rents(745,3)=67.91561896699447;
rents(745,4)=72.91052861699194;
rents(745,5)=77.0482204417949;
rents(745,6)=81.57654396545331;
rents(745,7)=85.65447365725737;
rents(745,8)=87.6471054465261;
rents(745,9)=90.18029392540186;
incomes(745,1)=24151.81758291189;
incomes(745,2)=24269.005918751358;
incomes(745,3)=24105.33223273982;
incomes(745,4)=23742.178822001664;
incomes(745,5)=24144.797496295643;
incomes(745,6)=24252.328855900585;
incomes(745,7)=23442.615870335718;
incomes(745,8)=23841.406004514887;
incomes(745,9)=23733.393105251274;
bref(746)=12000;
bnorm(746)=32000;
incomemean(746)=15000;
rents(746,1)=100.59849376684325;
rents(746,2)=62.88120142177053;
rents(746,3)=71.32846759643851;
rents(746,4)=79.33901340626447;
rents(746,5)=87.00460083346283;
rents(746,6)=94.7088612600372;
rents(746,7)=101.4900210295724;
rents(746,8)=106.18007490930214;
rents(746,9)=109.1050497482851;
incomes(746,1)=25421.53423138044;
incomes(746,2)=25913.3887393996;
incomes(746,3)=25632.630356874713;
incomes(746,4)=25585.943473758107;
incomes(746,5)=25749.275939299027;
incomes(746,6)=25693.842926727946;
incomes(746,7)=25260.23483978827;
incomes(746,8)=24699.84498818583;
incomes(746,9)=25067.954142745628;
bref(747)=12000;
bnorm(747)=32000;
incomemean(747)=16000;
rents(747,1)=99.01588537786967;
rents(747,2)=61.8854200436774;
rents(747,3)=73.13775031353455;
rents(747,4)=85.11766199826363;
rents(747,5)=95.89096836661042;
rents(747,6)=107.70020126522473;
rents(747,7)=119.60707136743105;
rents(747,8)=128.0194743095127;
rents(747,9)=135.5011620280962;
incomes(747,1)=27482.694605903776;
incomes(747,2)=27559.395893688972;
incomes(747,3)=27618.31784665081;
incomes(747,4)=27092.828828411533;
incomes(747,5)=27838.375794245654;
incomes(747,6)=28180.928970606587;
incomes(747,7)=27384.78293044828;
incomes(747,8)=27459.315889722246;
incomes(747,9)=27318.934835201635;
bref(748)=12000;
bnorm(748)=32000;
incomemean(748)=17000;
rents(748,1)=99.75710687825894;
rents(748,2)=62.344987917346884;
rents(748,3)=76.18091596416615;
rents(748,4)=91.02633160061876;
rents(748,5)=105.55508787262173;
rents(748,6)=120.3816856662096;
rents(748,7)=133.82563213123873;
rents(748,8)=142.74765448588366;
rents(748,9)=151.49941814831897;
incomes(748,1)=28454.46154209317;
incomes(748,2)=28986.74392973267;
incomes(748,3)=28915.704694899305;
incomes(748,4)=28681.28548139568;
incomes(748,5)=28935.341137964762;
incomes(748,6)=28848.12946554731;
incomes(748,7)=28116.06304964983;
incomes(748,8)=28306.2834038805;
incomes(748,9)=28720.973547787944;
bref(749)=12000;
bnorm(749)=32000;
incomemean(749)=18000;
rents(749,1)=100.73728803941044;
rents(749,2)=62.956235006098666;
rents(749,3)=79.53084105997752;
rents(749,4)=97.21501828489673;
rents(749,5)=114.61923909708189;
rents(749,6)=132.28909306706385;
rents(749,7)=149.8601754158577;
rents(749,8)=162.7330617371262;
rents(749,9)=173.40035226750007;
incomes(749,1)=29899.453704530122;
incomes(749,2)=30532.669223942314;
incomes(749,3)=30101.14299559823;
incomes(749,4)=29598.50968283622;
incomes(749,5)=29990.53506904638;
incomes(749,6)=30423.256021024237;
incomes(749,7)=29756.227277025526;
incomes(749,8)=29728.79095885541;
incomes(749,9)=30134.073525436685;
bref(750)=12000;
bnorm(750)=32000;
incomemean(750)=19000;
rents(750,1)=100.72547034769015;
rents(750,2)=62.962828472973726;
rents(750,3)=81.14147456521076;
rents(750,4)=101.93976775985388;
rents(750,5)=123.1847267594892;
rents(750,6)=145.01927019510995;
rents(750,7)=166.2458488588999;
rents(750,8)=184.11581843230945;
rents(750,9)=194.89387275619222;
incomes(750,1)=31474.616354344245;
incomes(750,2)=31329.868578108413;
incomes(750,3)=31418.744126473295;
incomes(750,4)=30982.527222255387;
incomes(750,5)=31425.808367294336;
incomes(750,6)=31758.876634544453;
incomes(750,7)=31651.34486790347;
incomes(750,8)=32009.87037014796;
incomes(750,9)=32682.04025938888;
bref(751)=12000;
bnorm(751)=35000;
incomemean(751)=10000;
rents(751,1)=97.8377012371283;
rents(751,2)=64.29592476370523;
rents(751,3)=61.46902099472734;
rents(751,4)=58.91599513205364;
rents(751,5)=56.5822362656328;
rents(751,6)=55.028794859920765;
rents(751,7)=53.69862479385727;
rents(751,8)=52.121458189983244;
rents(751,9)=51.15689234076663;
incomes(751,1)=19403.753494474153;
incomes(751,2)=19481.597020418805;
incomes(751,3)=19369.671809922143;
incomes(751,4)=19195.525698908452;
incomes(751,5)=19591.163290110362;
incomes(751,6)=19664.725951584925;
incomes(751,7)=18961.691737655994;
incomes(751,8)=18967.2110848676;
incomes(751,9)=19134.64483372351;
bref(752)=12000;
bnorm(752)=35000;
incomemean(752)=11000;
rents(752,1)=100.59719046326875;
rents(752,2)=66.1039771021003;
rents(752,3)=64.38911849953953;
rents(752,4)=62.921221204631195;
rents(752,5)=61.34627371528572;
rents(752,6)=60.31956681129879;
rents(752,7)=59.289459864658674;
rents(752,8)=58.0632575541962;
rents(752,9)=56.933009698275946;
incomes(752,1)=20251.494510629098;
incomes(752,2)=20413.568679943037;
incomes(752,3)=20400.096298878118;
incomes(752,4)=20207.3505171059;
incomes(752,5)=20468.622996299615;
incomes(752,6)=20326.893893450488;
incomes(752,7)=20146.00230039068;
incomes(752,8)=20042.326449453656;
incomes(752,9)=20190.614910459586;
bref(753)=12000;
bnorm(753)=35000;
incomemean(753)=12000;
rents(753,1)=100.22339495730186;
rents(753,2)=65.87141267868756;
rents(753,3)=66.24260337327058;
rents(753,4)=66.11017534957263;
rents(753,5)=65.71860408595208;
rents(753,6)=66.00784675617446;
rents(753,7)=66.15358256265175;
rents(753,8)=65.69259264224074;
rents(753,9)=65.16598319765498;
incomes(753,1)=20993.3376091027;
incomes(753,2)=21559.727460716884;
incomes(753,3)=21229.30686378305;
incomes(753,4)=21036.458969479427;
incomes(753,5)=21503.12300195358;
incomes(753,6)=21391.334063287868;
incomes(753,7)=21036.484671343973;
incomes(753,8)=20974.645156011575;
incomes(753,9)=21091.01399931878;
bref(754)=12000;
bnorm(754)=35000;
incomemean(754)=13000;
rents(754,1)=100.29277075311836;
rents(754,2)=65.904555703463;
rents(754,3)=68.65727049211249;
rents(754,4)=71.09432726344686;
rents(754,5)=72.85143754983064;
rents(754,6)=75.16014835525334;
rents(754,7)=77.19793914683352;
rents(754,8)=77.81771865805955;
rents(754,9)=78.31930322791646;
incomes(754,1)=23044.968239450413;
incomes(754,2)=23048.3687053772;
incomes(754,3)=23016.588478765643;
incomes(754,4)=22695.389467355464;
incomes(754,5)=23089.004542499322;
incomes(754,6)=23155.51376805859;
incomes(754,7)=22350.19507798058;
incomes(754,8)=22394.95769437079;
incomes(754,9)=22506.97835924037;
bref(755)=12000;
bnorm(755)=35000;
incomemean(755)=14000;
rents(755,1)=100.7293866382909;
rents(755,2)=66.2000438850046;
rents(755,3)=70.6045121903743;
rents(755,4)=74.35645087658128;
rents(755,5)=76.84606200832631;
rents(755,6)=80.03837489359972;
rents(755,7)=83.28217148260225;
rents(755,8)=85.04573490961586;
rents(755,9)=86.50863679265812;
incomes(755,1)=23540.859083804135;
incomes(755,2)=23985.640151183186;
incomes(755,3)=23723.78094925074;
incomes(755,4)=23113.49113429964;
incomes(755,5)=23715.493209190867;
incomes(755,6)=23834.299968264826;
incomes(755,7)=23180.853326350607;
incomes(755,8)=23160.528562241994;
incomes(755,9)=23267.382381483374;
bref(756)=12000;
bnorm(756)=35000;
incomemean(756)=15000;
rents(756,1)=99.26430890433534;
rents(756,2)=65.22692073379963;
rents(756,3)=72.21561327392762;
rents(756,4)=78.82480682310566;
rents(756,5)=84.8042444659883;
rents(756,6)=90.56076421471528;
rents(756,7)=96.11509941234061;
rents(756,8)=100.3414990404122;
rents(756,9)=103.91781616926758;
incomes(756,1)=25111.54379105599;
incomes(756,2)=25390.314133351945;
incomes(756,3)=25109.808636077465;
incomes(756,4)=24914.01442551622;
incomes(756,5)=25047.589931761857;
incomes(756,6)=25233.256341123073;
incomes(756,7)=24811.69429378283;
incomes(756,8)=24582.497276355876;
incomes(756,9)=25092.849824813402;
bref(757)=12000;
bnorm(757)=35000;
incomemean(757)=16000;
rents(757,1)=101.39651055195148;
rents(757,2)=66.6331695863033;
rents(757,3)=76.35960150171915;
rents(757,4)=86.13012406012838;
rents(757,5)=95.30109103433745;
rents(757,6)=105.7555757726987;
rents(757,7)=115.05535296389904;
rents(757,8)=121.81257910312998;
rents(757,9)=127.81040017984658;
incomes(757,1)=26688.574812569503;
incomes(757,2)=26965.44459852123;
incomes(757,3)=26831.122201120234;
incomes(757,4)=26574.642478022422;
incomes(757,5)=27476.49683978758;
incomes(757,6)=27360.520165253878;
incomes(757,7)=26609.751907060912;
incomes(757,8)=26637.55849222968;
incomes(757,9)=26866.156658135344;
bref(758)=12000;
bnorm(758)=35000;
incomemean(758)=17000;
rents(758,1)=100.49427175799389;
rents(758,2)=66.03385232388617;
rents(758,3)=78.27428358175352;
rents(758,4)=90.62867528233541;
rents(758,5)=103.68309369132129;
rents(758,6)=117.15438142093214;
rents(758,7)=128.61263145159194;
rents(758,8)=138.84919754184654;
rents(758,9)=148.24251005536257;
incomes(758,1)=27863.01270708092;
incomes(758,2)=28560.999535957024;
incomes(758,3)=28308.67834869158;
incomes(758,4)=28585.878576168558;
incomes(758,5)=28940.88417141796;
incomes(758,6)=28675.63554452042;
incomes(758,7)=28665.8139098862;
incomes(758,8)=28654.899739341323;
incomes(758,9)=28706.75275723077;
bref(759)=12000;
bnorm(759)=35000;
incomemean(759)=18000;
rents(759,1)=102.16705733281749;
rents(759,2)=67.14080969311378;
rents(759,3)=81.88488246390253;
rents(759,4)=98.45875196158724;
rents(759,5)=115.16821189703907;
rents(759,6)=131.3265971927156;
rents(759,7)=146.9486407521941;
rents(759,8)=158.9298044182982;
rents(759,9)=169.7539591852316;
incomes(759,1)=29609.179916608507;
incomes(759,2)=29885.247660991212;
incomes(759,3)=30236.907231593465;
incomes(759,4)=30039.04408740535;
incomes(759,5)=30020.71221503473;
incomes(759,6)=30249.315108452687;
incomes(759,7)=29675.72893322545;
incomes(759,8)=29767.893428860214;
incomes(759,9)=30803.702400268325;
bref(760)=12000;
bnorm(760)=35000;
incomemean(760)=19000;
rents(760,1)=101.90551535541746;
rents(760,2)=66.96191446298717;
rents(760,3)=85.00550121756538;
rents(760,4)=105.03115948022311;
rents(760,5)=125.51023240604907;
rents(760,6)=146.9485698212239;
rents(760,7)=166.6283636373584;
rents(760,8)=182.4448799808143;
rents(760,9)=192.88609615375404;
incomes(760,1)=31382.255088784535;
incomes(760,2)=31956.671967234408;
incomes(760,3)=31724.63050290542;
incomes(760,4)=31493.55971427581;
incomes(760,5)=31980.307195285743;
incomes(760,6)=31921.860659721777;
incomes(760,7)=31381.43907234179;
incomes(760,8)=31606.221314393555;
incomes(760,9)=32261.207155332544;
bref(761)=12000;
bnorm(761)=38000;
incomemean(761)=10000;
rents(761,1)=100.00679887811852;
rents(761,2)=68.4205679909805;
rents(761,3)=65.29573553224498;
rents(761,4)=62.529233635627854;
rents(761,5)=60.12234054950137;
rents(761,6)=58.21456601275772;
rents(761,7)=56.63410428008514;
rents(761,8)=54.80727117716042;
rents(761,9)=53.263107972148035;
incomes(761,1)=19350.64204072021;
incomes(761,2)=19582.615931581113;
incomes(761,3)=19501.72584027768;
incomes(761,4)=19486.984139505927;
incomes(761,5)=19608.521778329887;
incomes(761,6)=19704.783372096477;
incomes(761,7)=19244.097732725673;
incomes(761,8)=19196.94170903629;
incomes(761,9)=19231.9934646562;
bref(762)=12000;
bnorm(762)=38000;
incomemean(762)=11000;
rents(762,1)=98.63783962714132;
rents(762,2)=67.48434760214535;
rents(762,3)=65.79795141427967;
rents(762,4)=64.67492937061067;
rents(762,5)=63.15851807672602;
rents(762,6)=62.07464294010898;
rents(762,7)=61.21331815308722;
rents(762,8)=59.9039185581685;
rents(762,9)=58.74455289744267;
incomes(762,1)=20528.71101855267;
incomes(762,2)=20312.863760214743;
incomes(762,3)=20490.497765777407;
incomes(762,4)=20198.716897621583;
incomes(762,5)=20374.701725621664;
incomes(762,6)=20480.125824495808;
incomes(762,7)=20000.10006353795;
incomes(762,8)=20026.315282444724;
incomes(762,9)=20260.713310448667;
bref(763)=12000;
bnorm(763)=38000;
incomemean(763)=12000;
rents(763,1)=98.86249134264119;
rents(763,2)=67.64395632865461;
rents(763,3)=68.04188931424888;
rents(763,4)=68.17554618140633;
rents(763,5)=67.79695667639045;
rents(763,6)=67.68888696487885;
rents(763,7)=67.58426247096504;
rents(763,8)=66.31007121144363;
rents(763,9)=66.08788635701431;
incomes(763,1)=21351.31065311423;
incomes(763,2)=21727.08149804778;
incomes(763,3)=21589.273301580786;
incomes(763,4)=21251.231729804822;
incomes(763,5)=21409.82602391229;
incomes(763,6)=21394.53238435787;
incomes(763,7)=20571.706947557;
incomes(763,8)=21317.583053606944;
incomes(763,9)=21385.016227382817;
bref(764)=12000;
bnorm(764)=38000;
incomemean(764)=13000;
rents(764,1)=100.331600560165;
rents(764,2)=68.65697460364552;
rents(764,3)=70.94525094114174;
rents(764,4)=72.60436562295061;
rents(764,5)=73.97073210724673;
rents(764,6)=75.5706223778558;
rents(764,7)=77.10596343299306;
rents(764,8)=77.56362775658967;
rents(764,9)=77.44585448830343;
incomes(764,1)=22447.909576514856;
incomes(764,2)=22933.695152109784;
incomes(764,3)=22559.657573621404;
incomes(764,4)=22513.39567194831;
incomes(764,5)=22785.52807409329;
incomes(764,6)=22880.484183918597;
incomes(764,7)=22222.31401874444;
incomes(764,8)=21904.351321425547;
incomes(764,9)=22363.90865021697;
bref(765)=12000;
bnorm(765)=38000;
incomemean(765)=14000;
rents(765,1)=99.69271536350836;
rents(765,2)=68.20507687149232;
rents(765,3)=72.90163800953725;
rents(765,4)=76.53406106590518;
rents(765,5)=79.47262918621352;
rents(765,6)=82.49229602747677;
rents(765,7)=85.436302835189;
rents(765,8)=87.63264665625762;
rents(765,9)=89.16954499645628;
incomes(765,1)=23857.978250208045;
incomes(765,2)=24530.871383668033;
incomes(765,3)=23995.243325759144;
incomes(765,4)=23724.322285386657;
incomes(765,5)=23920.812206809558;
incomes(765,6)=24059.033278359508;
incomes(765,7)=23769.574527460936;
incomes(765,8)=23418.29699247977;
incomes(765,9)=23931.4083229318;
bref(766)=12000;
bnorm(766)=38000;
incomemean(766)=15000;
rents(766,1)=102.37698738396672;
rents(766,2)=70.0489924963933;
rents(766,3)=76.46373311471748;
rents(766,4)=82.69564039609682;
rents(766,5)=88.28642789039478;
rents(766,6)=93.19433189423667;
rents(766,7)=97.8602437274031;
rents(766,8)=101.37292570248796;
rents(766,9)=103.89905579133533;
incomes(766,1)=24956.97784751892;
incomes(766,2)=25593.251128055173;
incomes(766,3)=25482.489944036708;
incomes(766,4)=25355.90265587693;
incomes(766,5)=25156.15529364697;
incomes(766,6)=25261.69536295331;
incomes(766,7)=24840.157464652533;
incomes(766,8)=24590.162718444204;
incomes(766,9)=25572.100513394398;
bref(767)=12000;
bnorm(767)=38000;
incomemean(767)=16000;
rents(767,1)=99.58071732833265;
rents(767,2)=68.13562355951986;
rents(767,3)=77.50777950499348;
rents(767,4)=87.04454131791374;
rents(767,5)=96.45003959525515;
rents(767,6)=105.60698103686575;
rents(767,7)=114.47024326435512;
rents(767,8)=121.51357533350746;
rents(767,9)=128.39186003140512;
incomes(767,1)=26921.479944055543;
incomes(767,2)=27246.44234553144;
incomes(767,3)=27238.790350454463;
incomes(767,4)=27195.923505294857;
incomes(767,5)=27365.15742386551;
incomes(767,6)=27503.19687494242;
incomes(767,7)=26950.022201040745;
incomes(767,8)=27255.636911762456;
incomes(767,9)=27449.72910913388;
bref(768)=12000;
bnorm(768)=38000;
incomemean(768)=17000;
rents(768,1)=98.18008831587028;
rents(768,2)=67.17514766584621;
rents(768,3)=79.21914614043794;
rents(768,4)=91.12775870863094;
rents(768,5)=103.39890565714904;
rents(768,6)=115.9847594771984;
rents(768,7)=127.69548071599098;
rents(768,8)=136.83471725895208;
rents(768,9)=145.7162193425947;
incomes(768,1)=28786.301493337185;
incomes(768,2)=28935.531995433274;
incomes(768,3)=28557.61784213339;
incomes(768,4)=28605.862354309844;
incomes(768,5)=28913.665334444602;
incomes(768,6)=28888.15122524761;
incomes(768,7)=28213.207846024285;
incomes(768,8)=28484.44063296981;
incomes(768,9)=28734.435799021052;
bref(769)=12000;
bnorm(769)=38000;
incomemean(769)=18000;
rents(769,1)=99.50181113235784;
rents(769,2)=68.07504813883114;
rents(769,3)=82.91723159991572;
rents(769,4)=97.1454872869577;
rents(769,5)=112.39258685204649;
rents(769,6)=128.74864233781392;
rents(769,7)=144.5523257674499;
rents(769,8)=156.89051554603736;
rents(769,9)=167.43245894014512;
incomes(769,1)=29830.386266661113;
incomes(769,2)=30693.07273700489;
incomes(769,3)=29639.715043993943;
incomes(769,4)=29929.73261278273;
incomes(769,5)=30416.65162566711;
incomes(769,6)=30555.326598742966;
incomes(769,7)=29799.194343381223;
incomes(769,8)=29814.19780945298;
incomes(769,9)=30610.59152864629;
bref(770)=12000;
bnorm(770)=38000;
incomemean(770)=19000;
rents(770,1)=99.24214252375279;
rents(770,2)=67.90123577391897;
rents(770,3)=84.33701671598703;
rents(770,4)=101.78758794251753;
rents(770,5)=120.35372445853999;
rents(770,6)=139.9578036319612;
rents(770,7)=158.2629896911228;
rents(770,8)=172.57075485786024;
rents(770,9)=185.09284293684544;
incomes(770,1)=31133.46010104936;
incomes(770,2)=31698.432382810188;
incomes(770,3)=31265.855393339323;
incomes(770,4)=31306.214128947446;
incomes(770,5)=31715.78977387929;
incomes(770,6)=31802.813692517768;
incomes(770,7)=31158.41370187128;
incomes(770,8)=31963.92357430239;
incomes(770,9)=32125.070925961463;
bref(771)=12000;
bnorm(771)=41000;
incomemean(771)=10000;
rents(771,1)=99.23560190823014;
rents(771,2)=70.19418739232182;
rents(771,3)=67.53556295364177;
rents(771,4)=65.19269790168211;
rents(771,5)=62.91626304095945;
rents(771,6)=60.777214096485196;
rents(771,7)=59.00741116712262;
rents(771,8)=57.01435097457749;
rents(771,9)=55.121615498606936;
incomes(771,1)=19574.528203556103;
incomes(771,2)=19976.248819297096;
incomes(771,3)=19964.25430138275;
incomes(771,4)=19706.04523839049;
incomes(771,5)=19634.937242603115;
incomes(771,6)=19711.821345876724;
incomes(771,7)=19263.113385863275;
incomes(771,8)=19097.326077582085;
incomes(771,9)=19484.346928699848;
bref(772)=12000;
bnorm(772)=41000;
incomemean(772)=11000;
rents(772,1)=104.67295566172342;
rents(772,2)=74.03857883198708;
rents(772,3)=72.00508229859571;
rents(772,4)=70.03887982712993;
rents(772,5)=68.13245512720106;
rents(772,6)=66.41716189597383;
rents(772,7)=65.14230928673862;
rents(772,8)=63.271595337627474;
rents(772,9)=61.97723074298457;
incomes(772,1)=20221.96631065251;
incomes(772,2)=20652.805073600604;
incomes(772,3)=20429.76788097457;
incomes(772,4)=20293.87168008296;
incomes(772,5)=20250.716901727348;
incomes(772,6)=20388.11889829917;
incomes(772,7)=19880.136291069033;
incomes(772,8)=20174.467708746335;
incomes(772,9)=20193.133289410816;
bref(773)=12000;
bnorm(773)=41000;
incomemean(773)=12000;
rents(773,1)=100.31812439216874;
rents(773,2)=70.96085453802431;
rents(773,3)=70.86797643107347;
rents(773,4)=70.82473964338622;
rents(773,5)=70.0965708305815;
rents(773,6)=70.4806766431581;
rents(773,7)=70.49702530052288;
rents(773,8)=69.85873599318096;
rents(773,9)=69.40291549614658;
incomes(773,1)=21395.965496839402;
incomes(773,2)=21599.977007216246;
incomes(773,3)=21678.430828991917;
incomes(773,4)=21099.023795826866;
incomes(773,5)=21837.479963470978;
incomes(773,6)=21632.372748580612;
incomes(773,7)=21115.657721983232;
incomes(773,8)=21164.017043603995;
incomes(773,9)=21267.55882309036;
bref(774)=12000;
bnorm(774)=41000;
incomemean(774)=13000;
rents(774,1)=101.70471972906068;
rents(774,2)=71.94351497516833;
rents(774,3)=73.56103689725168;
rents(774,4)=75.0126928558484;
rents(774,5)=76.0591647591309;
rents(774,6)=77.1457359078376;
rents(774,7)=77.70626434232437;
rents(774,8)=78.08589429080963;
rents(774,9)=78.21875215585209;
incomes(774,1)=22447.207462376606;
incomes(774,2)=22787.90301418892;
incomes(774,3)=22707.628239828984;
incomes(774,4)=22551.85758455075;
incomes(774,5)=22550.484289085558;
incomes(774,6)=22366.73255454861;
incomes(774,7)=22227.7737664169;
incomes(774,8)=22169.29582140105;
incomes(774,9)=22282.46864740453;
bref(775)=12000;
bnorm(775)=41000;
incomemean(775)=14000;
rents(775,1)=100.37067055064914;
rents(775,2)=70.99684306956689;
rents(775,3)=75.38470322482564;
rents(775,4)=78.85926091747939;
rents(775,5)=81.54480589745718;
rents(775,6)=84.71114962015373;
rents(775,7)=87.56182853390455;
rents(775,8)=89.19585771696933;
rents(775,9)=91.32643276992593;
incomes(775,1)=23763.666369897208;
incomes(775,2)=24425.81267761512;
incomes(775,3)=23919.885459362315;
incomes(775,4)=23612.69196650661;
incomes(775,5)=24192.930947178953;
incomes(775,6)=24144.744754646403;
incomes(775,7)=23496.17402390677;
incomes(775,8)=23919.839030973322;
incomes(775,9)=23765.61978339843;
bref(776)=12000;
bnorm(776)=41000;
incomemean(776)=15000;
rents(776,1)=103.67624072392628;
rents(776,2)=73.33195293253534;
rents(776,3)=79.88840574432948;
rents(776,4)=85.379642739233;
rents(776,5)=90.65738673704328;
rents(776,6)=96.32867759275882;
rents(776,7)=101.10957913824645;
rents(776,8)=104.4710508089252;
rents(776,9)=107.59580288521772;
incomes(776,1)=25542.548157900048;
incomes(776,2)=25911.81394860644;
incomes(776,3)=25376.56038542102;
incomes(776,4)=25341.819592913336;
incomes(776,5)=25792.016005190755;
incomes(776,6)=25504.182205326448;
incomes(776,7)=24981.596917657538;
incomes(776,8)=25095.96961152419;
incomes(776,9)=25428.6726327758;
bref(777)=12000;
bnorm(777)=41000;
incomemean(777)=16000;
rents(777,1)=100.5059260333821;
rents(777,2)=71.09056033175153;
rents(777,3)=80.00997631671727;
rents(777,4)=88.62528649177544;
rents(777,5)=96.35184079629181;
rents(777,6)=104.38925347654975;
rents(777,7)=111.70604104760842;
rents(777,8)=117.98067477559515;
rents(777,9)=124.42916675130026;
incomes(777,1)=26639.211214357292;
incomes(777,2)=27281.382133487583;
incomes(777,3)=27057.211042012706;
incomes(777,4)=26576.91609295306;
incomes(777,5)=27031.131882307956;
incomes(777,6)=26969.066365302147;
incomes(777,7)=26598.259106714373;
incomes(777,8)=27089.02100956744;
incomes(777,9)=27030.408993781795;
bref(778)=12000;
bnorm(778)=41000;
incomemean(778)=17000;
rents(778,1)=103.00678852941869;
rents(778,2)=72.86206057418477;
rents(778,3)=83.50705285988145;
rents(778,4)=94.08719545676793;
rents(778,5)=104.06249383099328;
rents(778,6)=114.28668667266639;
rents(778,7)=123.6766206551741;
rents(778,8)=131.55691066513697;
rents(778,9)=138.12009225386922;
incomes(778,1)=27849.400189185948;
incomes(778,2)=28450.620083117603;
incomes(778,3)=28229.986144893548;
incomes(778,4)=27969.890992398665;
incomes(778,5)=28336.044534275476;
incomes(778,6)=28225.256379054517;
incomes(778,7)=27816.893859458065;
incomes(778,8)=27706.300694297817;
incomes(778,9)=28123.16809071751;
bref(779)=12000;
bnorm(779)=41000;
incomemean(779)=18000;
rents(779,1)=100.08784867566403;
rents(779,2)=70.79482635856037;
rents(779,3)=84.03260922072523;
rents(779,4)=98.0149434479715;
rents(779,5)=111.48482616272355;
rents(779,6)=125.49607002901193;
rents(779,7)=138.52718952617795;
rents(779,8)=148.55371601272515;
rents(779,9)=157.57739147563075;
incomes(779,1)=30015.302284085486;
incomes(779,2)=30090.568583217224;
incomes(779,3)=29983.090337627586;
incomes(779,4)=29468.479952449045;
incomes(779,5)=29854.86770376895;
incomes(779,6)=29776.953600921377;
incomes(779,7)=28948.171847819558;
incomes(779,8)=29078.910331470972;
incomes(779,9)=30009.268641990922;
bref(780)=12000;
bnorm(780)=41000;
incomemean(780)=19000;
rents(780,1)=100.48369273335143;
rents(780,2)=71.07851064522913;
rents(780,3)=87.11898602970057;
rents(780,4)=104.02586115723582;
rents(780,5)=120.98666531714915;
rents(780,6)=138.67259963167314;
rents(780,7)=155.78651318446904;
rents(780,8)=169.87682468714289;
rents(780,9)=182.39750838231353;
incomes(780,1)=31248.69291333273;
incomes(780,2)=32005.983177585742;
incomes(780,3)=31518.157246060582;
incomes(780,4)=31308.33781012151;
incomes(780,5)=31646.819517991156;
incomes(780,6)=31901.689774133985;
incomes(780,7)=31106.870756575492;
incomes(780,8)=31590.10592377091;
incomes(780,9)=32027.592176885893;
bref(781)=12000;
bnorm(781)=44000;
incomemean(781)=10000;
rents(781,1)=95.85028108725594;
rents(781,2)=69.70719709766874;
rents(781,3)=67.13971949070596;
rents(781,4)=64.7542019392541;
rents(781,5)=62.21520057840719;
rents(781,6)=60.6398874389421;
rents(781,7)=58.947826002229085;
rents(781,8)=56.91475309116154;
rents(781,9)=55.03283447837108;
incomes(781,1)=19435.85381745412;
incomes(781,2)=19724.84004788795;
incomes(781,3)=19619.40385228849;
incomes(781,4)=19288.43588529689;
incomes(781,5)=19924.974946492053;
incomes(781,6)=19666.379206588164;
incomes(781,7)=19107.881486799735;
incomes(781,8)=18922.4894464548;
incomes(781,9)=19303.12788930151;
bref(782)=12000;
bnorm(782)=44000;
incomemean(782)=11000;
rents(782,1)=99.08455681538327;
rents(782,2)=72.05766580046577;
rents(782,3)=70.26957882061289;
rents(782,4)=68.56542516398865;
rents(782,5)=66.75718526890309;
rents(782,6)=65.45985645378079;
rents(782,7)=64.23471577520137;
rents(782,8)=62.547585693253524;
rents(782,9)=61.02131276830219;
incomes(782,1)=19809.94683967579;
incomes(782,2)=20572.64703805978;
incomes(782,3)=20462.659913658976;
incomes(782,4)=20164.43712246343;
incomes(782,5)=20490.77894596036;
incomes(782,6)=20457.823078949576;
incomes(782,7)=19879.877243818748;
incomes(782,8)=19905.98005300538;
incomes(782,9)=19979.17949137361;
bref(783)=12000;
bnorm(783)=44000;
incomemean(783)=12000;
rents(783,1)=98.83177945251738;
rents(783,2)=71.87413083217035;
rents(783,3)=70.9484720562501;
rents(783,4)=70.12149294662456;
rents(783,5)=68.85017075536273;
rents(783,6)=68.30737814111842;
rents(783,7)=68.00173520334738;
rents(783,8)=66.86117998100009;
rents(783,9)=65.98605430472522;
incomes(783,1)=21009.440635469407;
incomes(783,2)=21125.26742574006;
incomes(783,3)=21112.6322562735;
incomes(783,4)=20689.04966321443;
incomes(783,5)=21234.49704957976;
incomes(783,6)=21376.080128822894;
incomes(783,7)=20527.830514720412;
incomes(783,8)=20664.819533247864;
incomes(783,9)=21045.927985688046;
bref(784)=12000;
bnorm(784)=44000;
incomemean(784)=13000;
rents(784,1)=98.37177719874215;
rents(784,2)=71.5417443829989;
rents(784,3)=73.53634735835591;
rents(784,4)=75.19545264472599;
rents(784,5)=76.43279236148452;
rents(784,6)=78.01667087209309;
rents(784,7)=79.04919511959332;
rents(784,8)=79.11780469196191;
rents(784,9)=79.21025545587678;
incomes(784,1)=22946.337482138762;
incomes(784,2)=23121.579240771065;
incomes(784,3)=23008.381909987125;
incomes(784,4)=22699.258244603712;
incomes(784,5)=23094.129729936863;
incomes(784,6)=22841.170204795202;
incomes(784,7)=22189.67403124811;
incomes(784,8)=22169.56305832981;
incomes(784,9)=22531.22893493;
bref(785)=12000;
bnorm(785)=44000;
incomemean(785)=14000;
rents(785,1)=100.17724586258815;
rents(785,2)=72.85681651619936;
rents(785,3)=75.99939524264772;
rents(785,4)=78.89283542085914;
rents(785,5)=81.04735221405222;
rents(785,6)=83.16623553622678;
rents(785,7)=85.00268433806559;
rents(785,8)=86.27475497085571;
rents(785,9)=87.33230206307907;
incomes(785,1)=23513.444702279226;
incomes(785,2)=23895.385778472362;
incomes(785,3)=23775.05923251826;
incomes(785,4)=23421.031819870645;
incomes(785,5)=23578.30893511102;
incomes(785,6)=23549.825249966365;
incomes(785,7)=23254.47605679577;
incomes(785,8)=23149.64653538061;
incomes(785,9)=23409.491024915016;
bref(786)=12000;
bnorm(786)=44000;
incomemean(786)=15000;
rents(786,1)=98.21251805865643;
rents(786,2)=71.42909946140144;
rents(786,3)=76.52020026021194;
rents(786,4)=81.95761189094932;
rents(786,5)=86.7736796417176;
rents(786,6)=92.19212698873613;
rents(786,7)=96.96583212144927;
rents(786,8)=101.15971170748786;
rents(786,9)=104.41949112962166;
incomes(786,1)=25407.238540180537;
incomes(786,2)=24968.441776091022;
incomes(786,3)=25390.81369297291;
incomes(786,4)=25034.27461398549;
incomes(786,5)=25677.875204764143;
incomes(786,6)=25560.619349814377;
incomes(786,7)=25267.489955465233;
incomes(786,8)=24935.46759162275;
incomes(786,9)=25127.63477098237;
bref(787)=12000;
bnorm(787)=44000;
incomemean(787)=16000;
rents(787,1)=99.87961142009246;
rents(787,2)=72.6384592184976;
rents(787,3)=80.49690190926432;
rents(787,4)=88.07704961616238;
rents(787,5)=95.55958140541539;
rents(787,6)=103.71170036020963;
rents(787,7)=110.69000037135251;
rents(787,8)=117.05161996750277;
rents(787,9)=122.24705657722016;
incomes(787,1)=26669.374808444703;
incomes(787,2)=27064.16227650074;
incomes(787,3)=26873.502839936657;
incomes(787,4)=26785.25138880664;
incomes(787,5)=27490.031599089933;
incomes(787,6)=26986.018718192245;
incomes(787,7)=26947.369856999798;
incomes(787,8)=26663.777251936925;
incomes(787,9)=26923.162892596567;
bref(788)=12000;
bnorm(788)=44000;
incomemean(788)=17000;
rents(788,1)=100.27736283882003;
rents(788,2)=72.93188750466335;
rents(788,3)=83.4742183186158;
rents(788,4)=94.02002733108444;
rents(788,5)=103.65621116124275;
rents(788,6)=114.01398997922443;
rents(788,7)=124.08012383844378;
rents(788,8)=132.02693457041366;
rents(788,9)=139.06044894338436;
incomes(788,1)=28271.436227665494;
incomes(788,2)=28856.580436902095;
incomes(788,3)=28628.919619024968;
incomes(788,4)=28231.064303834915;
incomes(788,5)=28676.92400223666;
incomes(788,6)=28764.42102659534;
incomes(788,7)=28093.189436461944;
incomes(788,8)=28033.29439596797;
incomes(788,9)=28787.180632972664;
bref(789)=12000;
bnorm(789)=44000;
incomemean(789)=18000;
rents(789,1)=100.46058414615375;
rents(789,2)=73.06704884473535;
rents(789,3)=85.31065797940605;
rents(789,4)=98.37076723688259;
rents(789,5)=110.95567753354727;
rents(789,6)=124.14530359203076;
rents(789,7)=137.09791080233393;
rents(789,8)=148.3877217155138;
rents(789,9)=157.68829490962455;
incomes(789,1)=29375.403616507563;
incomes(789,2)=30064.563203982176;
incomes(789,3)=30202.310923664656;
incomes(789,4)=29750.73726589475;
incomes(789,5)=30171.95548070864;
incomes(789,6)=30343.637557299768;
incomes(789,7)=30019.41817546222;
incomes(789,8)=29680.457226544167;
incomes(789,9)=30137.908754447162;
bref(790)=12000;
bnorm(790)=44000;
incomemean(790)=19000;
rents(790,1)=101.25716794940114;
rents(790,2)=73.64311451978043;
rents(790,3)=88.83403768486392;
rents(790,4)=104.91932862989381;
rents(790,5)=121.40831519098218;
rents(790,6)=138.78358389669023;
rents(790,7)=155.88946258307843;
rents(790,8)=169.50093104678976;
rents(790,9)=182.22787395394394;
incomes(790,1)=31290.88776894822;
incomes(790,2)=31943.941908610806;
incomes(790,3)=31702.826393104217;
incomes(790,4)=31581.520226562392;
incomes(790,5)=31977.2740668766;
incomes(790,6)=32193.379912651417;
incomes(790,7)=31275.371918068577;
incomes(790,8)=31627.84158058918;
incomes(790,9)=32444.376014911486;
bref(791)=12000;
bnorm(791)=47000;
incomemean(791)=10000;
rents(791,1)=98.37637138071173;
rents(791,2)=73.25113513975822;
rents(791,3)=70.18639524613185;
rents(791,4)=67.50762733886259;
rents(791,5)=64.80687428181051;
rents(791,6)=62.65330845442755;
rents(791,7)=60.71990675538943;
rents(791,8)=58.645434018462815;
rents(791,9)=56.74609277615272;
incomes(791,1)=19104.43181016115;
incomes(791,2)=19703.888976713293;
incomes(791,3)=19608.270396042684;
incomes(791,4)=19243.278054818456;
incomes(791,5)=19508.233590626147;
incomes(791,6)=19489.797647100822;
incomes(791,7)=19127.770328745362;
incomes(791,8)=19121.522452065758;
incomes(791,9)=19303.98001866048;
bref(792)=12000;
bnorm(792)=47000;
incomemean(792)=11000;
rents(792,1)=101.16060995654034;
rents(792,2)=75.32950212594638;
rents(792,3)=72.85613748742819;
rents(792,4)=70.69442633928585;
rents(792,5)=68.5401673288233;
rents(792,6)=66.8382177082154;
rents(792,7)=65.30681813086026;
rents(792,8)=63.08923995204976;
rents(792,9)=61.73606488472272;
incomes(792,1)=20014.60125798888;
incomes(792,2)=20114.18838398599;
incomes(792,3)=20133.29114663231;
incomes(792,4)=19880.85248296516;
incomes(792,5)=20056.644273275662;
incomes(792,6)=20047.916903201683;
incomes(792,7)=19120.385717547957;
incomes(792,8)=19850.579959713134;
incomes(792,9)=19805.48388489002;
bref(793)=12000;
bnorm(793)=47000;
incomemean(793)=12000;
rents(793,1)=101.8349295341566;
rents(793,2)=75.83122780366641;
rents(793,3)=74.91606064728964;
rents(793,4)=74.19766151397434;
rents(793,5)=73.42311506721083;
rents(793,6)=73.03061270453969;
rents(793,7)=72.18625382496168;
rents(793,8)=70.97503361106759;
rents(793,9)=70.092792275484;
incomes(793,1)=21081.85596761189;
incomes(793,2)=21329.134835763736;
incomes(793,3)=21451.406128454273;
incomes(793,4)=21256.245757476805;
incomes(793,5)=21540.059139553316;
incomes(793,6)=21140.350837434093;
incomes(793,7)=20735.46193073623;
incomes(793,8)=20946.14916341996;
incomes(793,9)=21195.83041703083;
bref(794)=12000;
bnorm(794)=47000;
incomemean(794)=13000;
rents(794,1)=97.66901030268603;
rents(794,2)=72.73398320327267;
rents(794,3)=73.92018582999766;
rents(794,4)=75.21359588661784;
rents(794,5)=75.91162594569371;
rents(794,6)=76.6270888323083;
rents(794,7)=77.4248038318298;
rents(794,8)=77.35035971431286;
rents(794,9)=77.28117075212145;
incomes(794,1)=22301.570467239493;
incomes(794,2)=22512.60466469567;
incomes(794,3)=22686.952238500828;
incomes(794,4)=22299.584462945222;
incomes(794,5)=22291.752853518974;
incomes(794,6)=22489.262826267408;
incomes(794,7)=21896.46212679755;
incomes(794,8)=21887.841953483738;
incomes(794,9)=22115.593803242544;
bref(795)=12000;
bnorm(795)=47000;
incomemean(795)=14000;
rents(795,1)=100.48145420967414;
rents(795,2)=74.82234580576666;
rents(795,3)=78.43085849426254;
rents(795,4)=81.28000571771828;
rents(795,5)=83.52565799261806;
rents(795,6)=85.78184378795225;
rents(795,7)=87.79108088434766;
rents(795,8)=89.23306809831904;
rents(795,9)=90.77447421123604;
incomes(795,1)=23594.738336952945;
incomes(795,2)=24420.2777715666;
incomes(795,3)=23976.59245626744;
incomes(795,4)=23789.298581558083;
incomes(795,5)=23834.32601342098;
incomes(795,6)=23807.727452003583;
incomes(795,7)=23543.734665297645;
incomes(795,8)=23707.386258277253;
incomes(795,9)=23610.859775108478;
bref(796)=12000;
bnorm(796)=47000;
incomemean(796)=15000;
rents(796,1)=99.18401497114463;
rents(796,2)=73.86263944984204;
rents(796,3)=78.64123432748312;
rents(796,4)=83.03834324436386;
rents(796,5)=86.79293229364683;
rents(796,6)=90.71471288358246;
rents(796,7)=94.17759346466408;
rents(796,8)=96.58268986100386;
rents(796,9)=98.74440746115864;
incomes(796,1)=24976.049286867183;
incomes(796,2)=25192.821228198834;
incomes(796,3)=25023.991754815648;
incomes(796,4)=24699.956751142723;
incomes(796,5)=24950.672277342266;
incomes(796,6)=24824.425742298037;
incomes(796,7)=24348.7401371756;
incomes(796,8)=24297.16719839463;
incomes(796,9)=24794.87631119751;
bref(797)=12000;
bnorm(797)=47000;
incomemean(797)=16000;
rents(797,1)=99.40141590613746;
rents(797,2)=74.02647681011878;
rents(797,3)=81.55067618651982;
rents(797,4)=88.72292543866426;
rents(797,5)=95.59182034156478;
rents(797,6)=102.44790957552719;
rents(797,7)=108.99625627702147;
rents(797,8)=113.81057240624887;
rents(797,9)=118.94969306991113;
incomes(797,1)=26826.076420582656;
incomes(797,2)=27315.618830091404;
incomes(797,3)=27026.279818083254;
incomes(797,4)=26951.249901578914;
incomes(797,5)=27163.03165765416;
incomes(797,6)=27348.159370862024;
incomes(797,7)=26500.96024722389;
incomes(797,8)=26922.817385176695;
incomes(797,9)=26739.352010379458;
bref(798)=12000;
bnorm(798)=47000;
incomemean(798)=17000;
rents(798,1)=100.0095695593508;
rents(798,2)=74.47250357514054;
rents(798,3)=83.99580448806245;
rents(798,4)=93.5197122004467;
rents(798,5)=102.02312960680585;
rents(798,6)=111.30298803733967;
rents(798,7)=120.09116170595561;
rents(798,8)=127.4674646567275;
rents(798,9)=134.27718633479395;
incomes(798,1)=27649.586503962306;
incomes(798,2)=28533.69796619265;
incomes(798,3)=28408.20913627034;
incomes(798,4)=27722.5589588338;
incomes(798,5)=28318.400869581656;
incomes(798,6)=28415.75060799119;
incomes(798,7)=27968.3306707468;
incomes(798,8)=28044.015429104034;
incomes(798,9)=28161.1688117903;
bref(799)=12000;
bnorm(799)=47000;
incomemean(799)=18000;
rents(799,1)=99.45706103726839;
rents(799,2)=74.06296538843279;
rents(799,3)=86.61965524440933;
rents(799,4)=99.9225782515171;
rents(799,5)=113.20518967210774;
rents(799,6)=126.68145817815184;
rents(799,7)=139.8354239516509;
rents(799,8)=151.5242206700833;
rents(799,9)=161.97853662542755;
incomes(799,1)=30415.67024008063;
incomes(799,2)=30762.41098974399;
incomes(799,3)=30668.68488989335;
incomes(799,4)=30383.32032159441;
incomes(799,5)=30559.980508680746;
incomes(799,6)=30640.237102191466;
incomes(799,7)=30285.576205781446;
incomes(799,8)=30302.56388151314;
incomes(799,9)=30748.405099348198;
bref(800)=12000;
bnorm(800)=47000;
incomemean(800)=19000;
rents(800,1)=99.70089865646177;
rents(800,2)=74.23514400714758;
rents(800,3)=89.53816435345296;
rents(800,4)=105.50340561883019;
rents(800,5)=120.9980856821195;
rents(800,6)=138.18025583662606;
rents(800,7)=154.36232517489273;
rents(800,8)=166.7636798901808;
rents(800,9)=178.02035600616162;
incomes(800,1)=31929.39539717765;
incomes(800,2)=32796.88232971501;
incomes(800,3)=32303.365205443908;
incomes(800,4)=31652.041023455644;
incomes(800,5)=32624.238233263786;
incomes(800,6)=32478.356817509488;
incomes(800,7)=31302.69253521292;
incomes(800,8)=31833.88828720267;
incomes(800,9)=31882.706587344615;
bref(801)=13000;
bnorm(801)=20000;
incomemean(801)=10000;
rents(801,1)=98.05203084229574;
rents(801,2)=50;
rents(801,3)=50;
rents(801,4)=50;
rents(801,5)=50;
rents(801,6)=50;
rents(801,7)=50;
rents(801,8)=50;
rents(801,9)=50;
incomes(801,1)=18954.35368167191;
incomes(801,2)=19459.41358455753;
incomes(801,3)=19094.715314401437;
incomes(801,4)=19092.341789007438;
incomes(801,5)=19463.11158570663;
incomes(801,6)=19360.398311939247;
incomes(801,7)=18642.13029264944;
incomes(801,8)=18732.590456736325;
incomes(801,9)=19071.01782814451;
bref(802)=13000;
bnorm(802)=20000;
incomemean(802)=11000;
rents(802,1)=100.02594786476455;
rents(802,2)=50;
rents(802,3)=50;
rents(802,4)=50;
rents(802,5)=50;
rents(802,6)=50;
rents(802,7)=50;
rents(802,8)=50;
rents(802,9)=50;
incomes(802,1)=20302.87332585071;
incomes(802,2)=20248.211730855124;
incomes(802,3)=20094.4632710264;
incomes(802,4)=20192.390652017777;
incomes(802,5)=20343.031875602348;
incomes(802,6)=20408.220440864436;
incomes(802,7)=19715.10045497159;
incomes(802,8)=19880.321159739604;
incomes(802,9)=19882.56415091792;
bref(803)=13000;
bnorm(803)=20000;
incomemean(803)=12000;
rents(803,1)=97.8725745591119;
rents(803,2)=50;
rents(803,3)=50.3943069176334;
rents(803,4)=50.68613984918266;
rents(803,5)=50.224049657928546;
rents(803,6)=50.42792493153709;
rents(803,7)=50.868004343833434;
rents(803,8)=51.04170725595613;
rents(803,9)=50.72750433329068;
incomes(803,1)=21122.874584281686;
incomes(803,2)=21467.438040693814;
incomes(803,3)=21425.326449463424;
incomes(803,4)=21027.077512398966;
incomes(803,5)=21375.402575411128;
incomes(803,6)=21417.635156836877;
incomes(803,7)=21309.931190292744;
incomes(803,8)=21189.23195449916;
incomes(803,9)=21078.03061039781;
bref(804)=13000;
bnorm(804)=20000;
incomemean(804)=13000;
rents(804,1)=98.6226889708275;
rents(804,2)=50;
rents(804,3)=53.15866276968789;
rents(804,4)=55.84566196676746;
rents(804,5)=56.450951623286045;
rents(804,6)=58.1441011023071;
rents(804,7)=60.09304339471829;
rents(804,8)=60.24892169691193;
rents(804,9)=59.58800393101149;
incomes(804,1)=22361.8976159191;
incomes(804,2)=22798.345091117048;
incomes(804,3)=22723.785475057968;
incomes(804,4)=21965.88722729235;
incomes(804,5)=22507.88981487335;
incomes(804,6)=22742.911176359557;
incomes(804,7)=22080.061919012845;
incomes(804,8)=21757.587100234767;
incomes(804,9)=22405.150043131165;
bref(805)=13000;
bnorm(805)=20000;
incomemean(805)=14000;
rents(805,1)=100.58301287502972;
rents(805,2)=50;
rents(805,3)=56.803353300223996;
rents(805,4)=63.1129841907221;
rents(805,5)=67.71944784103117;
rents(805,6)=72.7187320135345;
rents(805,7)=77.03135921624985;
rents(805,8)=78.11145899872595;
rents(805,9)=77.9362374875187;
incomes(805,1)=23627.58096472046;
incomes(805,2)=24487.586325037246;
incomes(805,3)=24392.77104107547;
incomes(805,4)=23874.934457876887;
incomes(805,5)=24231.245412395096;
incomes(805,6)=24303.875871469994;
incomes(805,7)=23504.7003045653;
incomes(805,8)=23089.20001051741;
incomes(805,9)=23861.528214291622;
bref(806)=13000;
bnorm(806)=20000;
incomemean(806)=15000;
rents(806,1)=98.36558922553662;
rents(806,2)=50;
rents(806,3)=59.26736113475389;
rents(806,4)=68.21428994625948;
rents(806,5)=75.47161747502011;
rents(806,6)=83.42167271339866;
rents(806,7)=89.80568791076517;
rents(806,8)=92.9832105347136;
rents(806,9)=93.83285519834601;
incomes(806,1)=25312.92324077455;
incomes(806,2)=25443.126516436754;
incomes(806,3)=25389.29725099842;
incomes(806,4)=24917.40687132171;
incomes(806,5)=25412.888264913203;
incomes(806,6)=25217.962152575037;
incomes(806,7)=24627.879939756876;
incomes(806,8)=24179.31564160211;
incomes(806,9)=25312.56211863285;
bref(807)=13000;
bnorm(807)=20000;
incomemean(807)=16000;
rents(807,1)=99.0857250048253;
rents(807,2)=50;
rents(807,3)=63.48329881024069;
rents(807,4)=76.92780203830495;
rents(807,5)=89.53834484630079;
rents(807,6)=102.59098631202365;
rents(807,7)=113.35077762755255;
rents(807,8)=120.7637830098848;
rents(807,9)=126.30439483604648;
incomes(807,1)=26962.822707914387;
incomes(807,2)=27435.75470302281;
incomes(807,3)=26925.277953620367;
incomes(807,4)=26745.42768084242;
incomes(807,5)=27174.57068618277;
incomes(807,6)=27110.715086422137;
incomes(807,7)=26706.25490714488;
incomes(807,8)=26949.449442733814;
incomes(807,9)=27136.093586161594;
bref(808)=13000;
bnorm(808)=20000;
incomemean(808)=17000;
rents(808,1)=100.19476845457248;
rents(808,2)=50;
rents(808,3)=65.57088626312098;
rents(808,4)=83.02108450082665;
rents(808,5)=99.12968412011568;
rents(808,6)=116.25431071403554;
rents(808,7)=130.54902383734532;
rents(808,8)=139.8245028034544;
rents(808,9)=146.62000536342893;
incomes(808,1)=27872.454855998752;
incomes(808,2)=28286.79313945675;
incomes(808,3)=28226.85539211956;
incomes(808,4)=27663.566176747878;
incomes(808,5)=28341.630948692644;
incomes(808,6)=28348.5845706303;
incomes(808,7)=27939.382893832102;
incomes(808,8)=27995.529720257604;
incomes(808,9)=28389.899353380977;
bref(809)=13000;
bnorm(809)=20000;
incomemean(809)=18000;
rents(809,1)=102.89133295066088;
rents(809,2)=50;
rents(809,3)=71.13652226800083;
rents(809,4)=95.74031941082671;
rents(809,5)=120.72337562697759;
rents(809,6)=146.28827608091137;
rents(809,7)=165.2100026875939;
rents(809,8)=177.00742009486856;
rents(809,9)=181.8115978292882;
incomes(809,1)=29751.108593574514;
incomes(809,2)=30822.61290337997;
incomes(809,3)=30433.09249748862;
incomes(809,4)=30100.775322153288;
incomes(809,5)=30783.467930822404;
incomes(809,6)=30628.51004553151;
incomes(809,7)=30491.376955668296;
incomes(809,8)=30114.30114468391;
incomes(809,9)=30809.475316265612;
bref(810)=13000;
bnorm(810)=20000;
incomemean(810)=19000;
rents(810,1)=98.80623451058769;
rents(810,2)=50;
rents(810,3)=74.95052195383053;
rents(810,4)=106.31788585000211;
rents(810,5)=139.29491142746718;
rents(810,6)=170.3558469977389;
rents(810,7)=195.93531912247394;
rents(810,8)=200;
rents(810,9)=200;
incomes(810,1)=31763.80597676225;
incomes(810,2)=32606.14234097918;
incomes(810,3)=32429.201444653067;
incomes(810,4)=32059.732407754786;
incomes(810,5)=32317.25571843816;
incomes(810,6)=32694.845705013064;
incomes(810,7)=32335.013780401237;
incomes(810,8)=32561.535096572134;
incomes(810,9)=32752.75409700187;
bref(811)=13000;
bnorm(811)=23000;
incomemean(811)=10000;
rents(811,1)=98.96892725891345;
rents(811,2)=50.00008247458882;
rents(811,3)=50;
rents(811,4)=50;
rents(811,5)=50;
rents(811,6)=50;
rents(811,7)=50;
rents(811,8)=50;
rents(811,9)=50;
incomes(811,1)=19285.43856752875;
incomes(811,2)=19675.209931527188;
incomes(811,3)=19653.706275059896;
incomes(811,4)=19114.948344467048;
incomes(811,5)=19519.995918529832;
incomes(811,6)=19785.09911395508;
incomes(811,7)=19297.711641647664;
incomes(811,8)=19195.065239345266;
incomes(811,9)=19379.256534808606;
bref(812)=13000;
bnorm(812)=23000;
incomemean(812)=11000;
rents(812,1)=100.01072469296734;
rents(812,2)=50;
rents(812,3)=50;
rents(812,4)=50;
rents(812,5)=50;
rents(812,6)=50;
rents(812,7)=50;
rents(812,8)=50;
rents(812,9)=50;
incomes(812,1)=19698.36500504148;
incomes(812,2)=20369.67427344043;
incomes(812,3)=20133.329139650825;
incomes(812,4)=19855.995227284202;
incomes(812,5)=19941.092091145954;
incomes(812,6)=20026.616034422157;
incomes(812,7)=19756.459102545457;
incomes(812,8)=19252.342972167;
incomes(812,9)=19878.760670487995;
bref(813)=13000;
bnorm(813)=23000;
incomemean(813)=12000;
rents(813,1)=102.31084691203371;
rents(813,2)=50.44628064392087;
rents(813,3)=50.7608541865446;
rents(813,4)=50.938479251999205;
rents(813,5)=50.57191646417279;
rents(813,6)=50.625126520274634;
rents(813,7)=50.42517099304677;
rents(813,8)=50.24722537986164;
rents(813,9)=50.177383316214474;
incomes(813,1)=21080.3602860918;
incomes(813,2)=21545.68926888275;
incomes(813,3)=21452.56438064035;
incomes(813,4)=21152.187901314264;
incomes(813,5)=21388.46011353113;
incomes(813,6)=21125.385556599143;
incomes(813,7)=20595.48895455126;
incomes(813,8)=21025.16572368016;
incomes(813,9)=20851.490423428524;
bref(814)=13000;
bnorm(814)=23000;
incomemean(814)=13000;
rents(814,1)=103.3523032545152;
rents(814,2)=50.311843798951486;
rents(814,3)=53.199741279875134;
rents(814,4)=55.682096052684614;
rents(814,5)=57.520149210790734;
rents(814,6)=59.802645173162226;
rents(814,7)=62.16434492825799;
rents(814,8)=63.07971069565283;
rents(814,9)=63.03195539587111;
incomes(814,1)=22452.360628116603;
incomes(814,2)=22864.027044784743;
incomes(814,3)=22775.466875097773;
incomes(814,4)=22486.961362006114;
incomes(814,5)=22873.879203127282;
incomes(814,6)=23045.46081003902;
incomes(814,7)=22459.925759249254;
incomes(814,8)=22119.498802451057;
incomes(814,9)=22308.631032603058;
bref(815)=13000;
bnorm(815)=23000;
incomemean(815)=14000;
rents(815,1)=99.68450654007496;
rents(815,2)=50.01152256401626;
rents(815,3)=55.45648531014774;
rents(815,4)=60.73470328343048;
rents(815,5)=65.43168850482104;
rents(815,6)=70.68408535146567;
rents(815,7)=74.91529502919589;
rents(815,8)=76.76221749876187;
rents(815,9)=77.69237858919521;
incomes(815,1)=24389.8130969762;
incomes(815,2)=24193.220151199504;
incomes(815,3)=24224.72110218912;
incomes(815,4)=24093.25950524483;
incomes(815,5)=24529.416754837508;
incomes(815,6)=24342.572250850528;
incomes(815,7)=23599.359901369793;
incomes(815,8)=23413.87857507837;
incomes(815,9)=23516.74993022552;
bref(816)=13000;
bnorm(816)=23000;
incomemean(816)=15000;
rents(816,1)=97.90644115130436;
rents(816,2)=50;
rents(816,3)=57.61123053237915;
rents(816,4)=64.99339236173644;
rents(816,5)=71.39674938472278;
rents(816,6)=78.48534361838412;
rents(816,7)=84.69329920897353;
rents(816,8)=89.25895187628635;
rents(816,9)=92.26438694394044;
incomes(816,1)=24792.168638568124;
incomes(816,2)=25305.92873306385;
incomes(816,3)=25110.439419753813;
incomes(816,4)=24809.515065639953;
incomes(816,5)=25367.423513752845;
incomes(816,6)=25270.433219985898;
incomes(816,7)=24959.51857185421;
incomes(816,8)=24649.42544255234;
incomes(816,9)=25026.612770158637;
bref(817)=13000;
bnorm(817)=23000;
incomemean(817)=16000;
rents(817,1)=99.95973256343107;
rents(817,2)=50.00795400688489;
rents(817,3)=61.32716913771843;
rents(817,4)=73.51322575173829;
rents(817,5)=84.27659916559945;
rents(817,6)=94.63719448483099;
rents(817,7)=104.73339571629919;
rents(817,8)=111.7599734876627;
rents(817,9)=118.16816392366601;
incomes(817,1)=26980.09633912418;
incomes(817,2)=27208.43635931007;
incomes(817,3)=27236.306906204143;
incomes(817,4)=26673.00963447945;
incomes(817,5)=26859.343888344167;
incomes(817,6)=27083.194752883064;
incomes(817,7)=26757.78290628432;
incomes(817,8)=26889.338595836438;
incomes(817,9)=27321.538577850082;
bref(818)=13000;
bnorm(818)=23000;
incomemean(818)=17000;
rents(818,1)=99.02079805790645;
rents(818,2)=50.001428200612125;
rents(818,3)=64.66248963080714;
rents(818,4)=80.79572340985902;
rents(818,5)=97.14047347335969;
rents(818,6)=112.95227900318395;
rents(818,7)=128.12253980876818;
rents(818,8)=138.6785609556874;
rents(818,9)=146.78545264178348;
incomes(818,1)=28670.62207909055;
incomes(818,2)=28845.087470197795;
incomes(818,3)=28749.270117158627;
incomes(818,4)=28523.948701410354;
incomes(818,5)=28645.22079107346;
incomes(818,6)=29109.905341640315;
incomes(818,7)=28573.408650756162;
incomes(818,8)=28536.749963162776;
incomes(818,9)=29025.99693270936;
bref(819)=13000;
bnorm(819)=23000;
incomemean(819)=18000;
rents(819,1)=100.3099029166365;
rents(819,2)=50;
rents(819,3)=67.5136888578729;
rents(819,4)=87.3467412433361;
rents(819,5)=107.89922973218225;
rents(819,6)=129.94567774356182;
rents(819,7)=149.29852982727098;
rents(819,8)=159.73783948239176;
rents(819,9)=168.4192862218237;
incomes(819,1)=29759.749498771456;
incomes(819,2)=30282.674924918672;
incomes(819,3)=29987.396598588737;
incomes(819,4)=29897.123479198293;
incomes(819,5)=30429.78232507713;
incomes(819,6)=30399.89471728625;
incomes(819,7)=29460.04389007898;
incomes(819,8)=29764.326662075448;
incomes(819,9)=30468.50314256687;
bref(820)=13000;
bnorm(820)=23000;
incomemean(820)=19000;
rents(820,1)=100.4584834702889;
rents(820,2)=50.04808488744453;
rents(820,3)=70.0932584646897;
rents(820,4)=94.74560665074019;
rents(820,5)=120.38551119014912;
rents(820,6)=147.50916098078625;
rents(820,7)=169.34508291892195;
rents(820,8)=184.32395398459863;
rents(820,9)=199.0207963695172;
incomes(820,1)=31377.27767838256;
incomes(820,2)=31663.20230821036;
incomes(820,3)=31793.133874310854;
incomes(820,4)=31262.02127398225;
incomes(820,5)=31922.784071136757;
incomes(820,6)=31617.502408159926;
incomes(820,7)=31425.791970801783;
incomes(820,8)=32329.764602986914;
incomes(820,9)=32272.191232814836;
bref(821)=13000;
bnorm(821)=26000;
incomemean(821)=10000;
rents(821,1)=97.20168572555582;
rents(821,2)=50.92954940775159;
rents(821,3)=50.23157727653402;
rents(821,4)=50;
rents(821,5)=50;
rents(821,6)=50;
rents(821,7)=50;
rents(821,8)=50;
rents(821,9)=50;
incomes(821,1)=19115.551873902958;
incomes(821,2)=19409.703714350064;
incomes(821,3)=19350.913472353408;
incomes(821,4)=19170.667338161187;
incomes(821,5)=19620.115022237722;
incomes(821,6)=19172.5765113453;
incomes(821,7)=19085.383080377127;
incomes(821,8)=18673.788659112477;
incomes(821,9)=19111.618925541447;
bref(822)=13000;
bnorm(822)=26000;
incomemean(822)=11000;
rents(822,1)=100.8577752235246;
rents(822,2)=51.54651747338438;
rents(822,3)=50.85496575488672;
rents(822,4)=50.51739774636098;
rents(822,5)=50.261313492404064;
rents(822,6)=50.139651785384615;
rents(822,7)=50.03454688808835;
rents(822,8)=50;
rents(822,9)=50;
incomes(822,1)=20135.509428274945;
incomes(822,2)=20459.85160808913;
incomes(822,3)=20354.0709739261;
incomes(822,4)=20091.34307082116;
incomes(822,5)=20531.982797101533;
incomes(822,6)=20570.391668658525;
incomes(822,7)=19586.734023889072;
incomes(822,8)=19930.754549303758;
incomes(822,9)=20126.722486063863;
bref(823)=13000;
bnorm(823)=26000;
incomemean(823)=12000;
rents(823,1)=96.59451149548306;
rents(823,2)=50.772072965583746;
rents(823,3)=50.826974319327796;
rents(823,4)=50.757960194516905;
rents(823,5)=50.645486096932665;
rents(823,6)=50.58206651031958;
rents(823,7)=50.58643879335243;
rents(823,8)=50.4553954182668;
rents(823,9)=50.3462818975176;
incomes(823,1)=20940.400025389015;
incomes(823,2)=21392.72002112222;
incomes(823,3)=21317.30012920889;
incomes(823,4)=21175.946487768753;
incomes(823,5)=21223.91854154366;
incomes(823,6)=21421.25573675791;
incomes(823,7)=21025.318531569552;
incomes(823,8)=20858.853952670117;
incomes(823,9)=20842.514354555897;
bref(824)=13000;
bnorm(824)=26000;
incomemean(824)=13000;
rents(824,1)=99.82345509286974;
rents(824,2)=51.20657848955437;
rents(824,3)=53.962516313262014;
rents(824,4)=56.266544399607824;
rents(824,5)=57.74186628179753;
rents(824,6)=59.5207917919761;
rents(824,7)=61.338131639525585;
rents(824,8)=62.56277864063047;
rents(824,9)=62.60075396924912;
incomes(824,1)=22700.384099502553;
incomes(824,2)=23056.589841268447;
incomes(824,3)=22920.72686110345;
incomes(824,4)=22497.99968046987;
incomes(824,5)=22752.150910906883;
incomes(824,6)=22930.32670658798;
incomes(824,7)=22737.71231175003;
incomes(824,8)=22194.20427766227;
incomes(824,9)=22061.551683880094;
bref(825)=13000;
bnorm(825)=26000;
incomemean(825)=14000;
rents(825,1)=98.87216662088767;
rents(825,2)=51.05586906536438;
rents(825,3)=55.20636792541537;
rents(825,4)=58.21778659368064;
rents(825,5)=60.824391814911976;
rents(825,6)=63.92345283713796;
rents(825,7)=66.30680039939784;
rents(825,8)=67.0868727836371;
rents(825,9)=67.77142349723128;
incomes(825,1)=23290.04106711879;
incomes(825,2)=23852.434894426766;
incomes(825,3)=23246.616452623028;
incomes(825,4)=23271.119737345507;
incomes(825,5)=23638.416626295293;
incomes(825,6)=23394.84323765399;
incomes(825,7)=22826.664863993574;
incomes(825,8)=22704.416479831692;
incomes(825,9)=23188.083945137605;
bref(826)=13000;
bnorm(826)=26000;
incomemean(826)=15000;
rents(826,1)=99.17539241958276;
rents(826,2)=51.04227875455735;
rents(826,3)=58.34196059257356;
rents(826,4)=65.09566240158621;
rents(826,5)=71.02771217286526;
rents(826,6)=77.47152874408852;
rents(826,7)=82.81554449952412;
rents(826,8)=87.01908438905608;
rents(826,9)=89.26879984366391;
incomes(826,1)=24987.251099823967;
incomes(826,2)=25639.87517236856;
incomes(826,3)=25206.460024025047;
incomes(826,4)=25001.40747672683;
incomes(826,5)=25411.87973661452;
incomes(826,6)=25136.555855474482;
incomes(826,7)=24933.6589502594;
incomes(826,8)=24512.95938687778;
incomes(826,9)=25426.30408287454;
bref(827)=13000;
bnorm(827)=26000;
incomemean(827)=16000;
rents(827,1)=97.8019056133385;
rents(827,2)=50.57367254401758;
rents(827,3)=60.34087794319447;
rents(827,4)=70.37241609885255;
rents(827,5)=80.7569097373966;
rents(827,6)=90.06935208343155;
rents(827,7)=98.95419007917043;
rents(827,8)=105.08734677315711;
rents(827,9)=109.77840316162971;
incomes(827,1)=26436.57268854623;
incomes(827,2)=27004.820748759343;
incomes(827,3)=26914.056349535378;
incomes(827,4)=26935.220521516683;
incomes(827,5)=26694.86282285718;
incomes(827,6)=26872.17933168335;
incomes(827,7)=26202.470350639844;
incomes(827,8)=26182.554518780245;
incomes(827,9)=26969.353407165538;
bref(828)=13000;
bnorm(828)=26000;
incomemean(828)=17000;
rents(828,1)=100.60822827892981;
rents(828,2)=51.41460147553074;
rents(828,3)=63.88157006026806;
rents(828,4)=77.33482057065466;
rents(828,5)=90.84059277709409;
rents(828,6)=104.50179237948153;
rents(828,7)=117.70063466564469;
rents(828,8)=127.15435019196478;
rents(828,9)=133.23732038657369;
incomes(828,1)=28053.536688169126;
incomes(828,2)=28462.27525062398;
incomes(828,3)=28312.11315964022;
incomes(828,4)=28189.2874126886;
incomes(828,5)=28364.95512635957;
incomes(828,6)=28667.389235407227;
incomes(828,7)=28090.37683385585;
incomes(828,8)=27699.942159917573;
incomes(828,9)=28316.387089773343;
bref(829)=13000;
bnorm(829)=26000;
incomemean(829)=18000;
rents(829,1)=101.31180723380878;
rents(829,2)=51.390666141622056;
rents(829,3)=66.21930413401037;
rents(829,4)=83.18995054562768;
rents(829,5)=100.25989809591586;
rents(829,6)=118.26920467552219;
rents(829,7)=134.3821988315396;
rents(829,8)=147.4693029329196;
rents(829,9)=154.83820751637361;
incomes(829,1)=29919.33540316216;
incomes(829,2)=29841.245185684977;
incomes(829,3)=29876.25205878283;
incomes(829,4)=29506.750398514465;
incomes(829,5)=29936.250382670918;
incomes(829,6)=29864.499572700985;
incomes(829,7)=29672.566293562664;
incomes(829,8)=28964.476414948633;
incomes(829,9)=29912.22257950348;
bref(830)=13000;
bnorm(830)=26000;
incomemean(830)=19000;
rents(830,1)=98.62915322412894;
rents(830,2)=51.2333511830289;
rents(830,3)=70.17589680882055;
rents(830,4)=94.18194995291749;
rents(830,5)=119.0953938809623;
rents(830,6)=145.52837241719502;
rents(830,7)=169.29450961933017;
rents(830,8)=184.9257448078117;
rents(830,9)=195.09162739845027;
incomes(830,1)=31541.917218175233;
incomes(830,2)=32251.26053646863;
incomes(830,3)=32729.70926770949;
incomes(830,4)=31993.27914053397;
incomes(830,5)=32434.511311295002;
incomes(830,6)=32510.087837760148;
incomes(830,7)=31783.511743221647;
incomes(830,8)=31914.184589572742;
incomes(830,9)=32814.65845440804;
bref(831)=13000;
bnorm(831)=29000;
incomemean(831)=10000;
rents(831,1)=101.06361326781555;
rents(831,2)=55.98492288619401;
rents(831,3)=52.62077632257913;
rents(831,4)=50.787773132590225;
rents(831,5)=50.20900659426188;
rents(831,6)=50.00021702613002;
rents(831,7)=50;
rents(831,8)=50;
rents(831,9)=50;
incomes(831,1)=19396.335493287723;
incomes(831,2)=19464.38205061371;
incomes(831,3)=19456.75120428828;
incomes(831,4)=19397.901896426625;
incomes(831,5)=19510.99655943466;
incomes(831,6)=19254.326650132312;
incomes(831,7)=19036.644470183524;
incomes(831,8)=18605.088959488472;
incomes(831,9)=19253.4328043324;
bref(832)=13000;
bnorm(832)=29000;
incomemean(832)=11000;
rents(832,1)=97.69085494558355;
rents(832,2)=53.999746907266235;
rents(832,3)=52.17188044388826;
rents(832,4)=50.86449173504415;
rents(832,5)=50.31546118359;
rents(832,6)=50.133912848412656;
rents(832,7)=50.086989788982365;
rents(832,8)=50.04118679803142;
rents(832,9)=50.013594792225874;
incomes(832,1)=19823.895438848664;
incomes(832,2)=20485.69425035252;
incomes(832,3)=20178.6745929815;
incomes(832,4)=19918.74612186788;
incomes(832,5)=20177.453604126877;
incomes(832,6)=20233.002326424983;
incomes(832,7)=20124.323368674177;
incomes(832,8)=20133.23083456544;
incomes(832,9)=20082.130166642888;
bref(833)=13000;
bnorm(833)=29000;
incomemean(833)=12000;
rents(833,1)=100.12079720659911;
rents(833,2)=55.358138054779495;
rents(833,3)=54.93984902781739;
rents(833,4)=54.84391560921986;
rents(833,5)=54.39043874436136;
rents(833,6)=54.23809030709843;
rents(833,7)=54.130201087974896;
rents(833,8)=53.12503540229014;
rents(833,9)=52.523625909374914;
incomes(833,1)=21664.71102260886;
incomes(833,2)=21448.116922893732;
incomes(833,3)=21678.946012189135;
incomes(833,4)=21448.60952287883;
incomes(833,5)=21579.478889530885;
incomes(833,6)=21581.79950966058;
incomes(833,7)=20881.80330573534;
incomes(833,8)=21024.240269101752;
incomes(833,9)=21190.65874704991;
bref(834)=13000;
bnorm(834)=29000;
incomemean(834)=13000;
rents(834,1)=100.79159069163181;
rents(834,2)=55.638453796072845;
rents(834,3)=57.69158951230247;
rents(834,4)=59.035006759240396;
rents(834,5)=59.66964981974101;
rents(834,6)=60.92738236110085;
rents(834,7)=62.38103347253124;
rents(834,8)=62.668494001074315;
rents(834,9)=62.89417714231959;
incomes(834,1)=22687.30448606856;
incomes(834,2)=22953.721455835243;
incomes(834,3)=22581.208120534167;
incomes(834,4)=22243.490163979957;
incomes(834,5)=22714.7199962798;
incomes(834,6)=22843.15495431647;
incomes(834,7)=22308.162086136486;
incomes(834,8)=22306.862426426305;
incomes(834,9)=22542.279185554;
bref(835)=13000;
bnorm(835)=29000;
incomemean(835)=14000;
rents(835,1)=101.88713341652935;
rents(835,2)=56.21066234852496;
rents(835,3)=60.108646533789354;
rents(835,4)=63.98936456175097;
rents(835,5)=67.21103668645198;
rents(835,6)=70.21342152620687;
rents(835,7)=73.30306397140848;
rents(835,8)=75.07081155682278;
rents(835,9)=76.54514714038606;
incomes(835,1)=23653.059139370132;
incomes(835,2)=24065.29104536224;
incomes(835,3)=24142.459216452884;
incomes(835,4)=23825.854466923858;
incomes(835,5)=23920.55847348653;
incomes(835,6)=24123.620433486583;
incomes(835,7)=23627.803387426407;
incomes(835,8)=23643.29768530068;
incomes(835,9)=23945.590707114337;
bref(836)=13000;
bnorm(836)=29000;
incomemean(836)=15000;
rents(836,1)=98.40797804313672;
rents(836,2)=54.46435133864439;
rents(836,3)=61.40722827953525;
rents(836,4)=67.96438711649031;
rents(836,5)=74.09591928272015;
rents(836,6)=80.24102530627373;
rents(836,7)=85.48191890054318;
rents(836,8)=88.67466883378474;
rents(836,9)=91.91191930314709;
incomes(836,1)=25374.269641864186;
incomes(836,2)=25889.88168549931;
incomes(836,3)=25636.190005412835;
incomes(836,4)=25501.05952333584;
incomes(836,5)=25718.820277445626;
incomes(836,6)=25566.338138799685;
incomes(836,7)=24995.939843825072;
incomes(836,8)=25232.704253827807;
incomes(836,9)=25132.40528261307;
bref(837)=13000;
bnorm(837)=29000;
incomemean(837)=16000;
rents(837,1)=101.67364387900271;
rents(837,2)=56.105251815667856;
rents(837,3)=65.8215541232375;
rents(837,4)=75.36162114583064;
rents(837,5)=83.66339002593756;
rents(837,6)=92.29157317675063;
rents(837,7)=100.8239071862996;
rents(837,8)=106.64964113481594;
rents(837,9)=112.91294370349566;
incomes(837,1)=26600.32012602896;
incomes(837,2)=27362.24398778142;
incomes(837,3)=27040.587745410045;
incomes(837,4)=26424.784750957264;
incomes(837,5)=26864.595846185373;
incomes(837,6)=27122.3242170764;
incomes(837,7)=26391.32770696773;
incomes(837,8)=26895.58460807412;
incomes(837,9)=26790.259588837635;
bref(838)=13000;
bnorm(838)=29000;
incomemean(838)=17000;
rents(838,1)=98.67487812584908;
rents(838,2)=54.540138269134;
rents(838,3)=66.71142337499545;
rents(838,4)=79.5396673279752;
rents(838,5)=91.41492989071601;
rents(838,6)=104.36347863941167;
rents(838,7)=116.40677711333282;
rents(838,8)=126.06710867224409;
rents(838,9)=134.08028573978174;
incomes(838,1)=28607.78825906642;
incomes(838,2)=28912.71377773708;
incomes(838,3)=28714.247733886194;
incomes(838,4)=28152.46222685519;
incomes(838,5)=28620.180995969644;
incomes(838,6)=28710.54333323472;
incomes(838,7)=28272.598021836853;
incomes(838,8)=28274.626890825435;
incomes(838,9)=28542.873929696307;
bref(839)=13000;
bnorm(839)=29000;
incomemean(839)=18000;
rents(839,1)=99.08132710225067;
rents(839,2)=54.67893501413837;
rents(839,3)=69.6778779581388;
rents(839,4)=86.63918870296094;
rents(839,5)=102.92162195441432;
rents(839,6)=120.73080993648382;
rents(839,7)=136.72683105313826;
rents(839,8)=148.61026502667386;
rents(839,9)=158.21130384134108;
incomes(839,1)=30068.986706427673;
incomes(839,2)=30551.641375430667;
incomes(839,3)=30539.66685939877;
incomes(839,4)=29673.524643815916;
incomes(839,5)=30462.54568421931;
incomes(839,6)=30334.379039919597;
incomes(839,7)=29852.39327849008;
incomes(839,8)=29790.9426202382;
incomes(839,9)=30250.563870940612;
bref(840)=13000;
bnorm(840)=29000;
incomemean(840)=19000;
rents(840,1)=101.96028838567426;
rents(840,2)=56.28482447420716;
rents(840,3)=74.2295516615666;
rents(840,4)=94.80307894234392;
rents(840,5)=116.36589241956777;
rents(840,6)=137.322360016225;
rents(840,7)=157.7453483308094;
rents(840,8)=174.92148315641512;
rents(840,9)=186.07767480202753;
incomes(840,1)=31478.98308779515;
incomes(840,2)=32082.448423971666;
incomes(840,3)=31888.96332181923;
incomes(840,4)=31541.58146271519;
incomes(840,5)=31460.484065766883;
incomes(840,6)=31772.775684694752;
incomes(840,7)=31655.292115594497;
incomes(840,8)=31539.986869266493;
incomes(840,9)=32212.693647053387;
bref(841)=13000;
bnorm(841)=32000;
incomemean(841)=10000;
rents(841,1)=103.29553229562288;
rents(841,2)=61.32916680883753;
rents(841,3)=56.50914061254739;
rents(841,4)=53.062420917616926;
rents(841,5)=50.74809860896269;
rents(841,6)=50.01575136820672;
rents(841,7)=50;
rents(841,8)=50;
rents(841,9)=50;
incomes(841,1)=18968.695893800865;
incomes(841,2)=19219.786283536618;
incomes(841,3)=19128.88979228471;
incomes(841,4)=19067.115031781243;
incomes(841,5)=19183.224837974376;
incomes(841,6)=19103.490956341564;
incomes(841,7)=18623.756385279376;
incomes(841,8)=18843.613012541042;
incomes(841,9)=18543.36019724965;
bref(842)=13000;
bnorm(842)=32000;
incomemean(842)=11000;
rents(842,1)=99.89989538105209;
rents(842,2)=59.31274632030247;
rents(842,3)=56.508842063953495;
rents(842,4)=53.82853783040175;
rents(842,5)=51.96741924074662;
rents(842,6)=50.948879337003866;
rents(842,7)=50.38753840514976;
rents(842,8)=50.02858167114089;
rents(842,9)=50;
incomes(842,1)=20361.502426781426;
incomes(842,2)=20264.599190821864;
incomes(842,3)=20043.119204620703;
incomes(842,4)=20025.23478763766;
incomes(842,5)=19996.294907385167;
incomes(842,6)=19846.80582575166;
incomes(842,7)=19333.68121989722;
incomes(842,8)=19396.90223614546;
incomes(842,9)=19839.65980713042;
bref(843)=13000;
bnorm(843)=32000;
incomemean(843)=12000;
rents(843,1)=100.6358981882926;
rents(843,2)=59.75370950699333;
rents(843,3)=59.28738651554249;
rents(843,4)=58.447516653827236;
rents(843,5)=57.71802447638262;
rents(843,6)=56.93689012670803;
rents(843,7)=56.62650141538575;
rents(843,8)=55.95422251090265;
rents(843,9)=55.213202530143;
incomes(843,1)=21026.419767263596;
incomes(843,2)=21656.200137063217;
incomes(843,3)=21418.37515755694;
incomes(843,4)=21282.52375783085;
incomes(843,5)=21280.51449474658;
incomes(843,6)=21550.100862485397;
incomes(843,7)=21192.581388678926;
incomes(843,8)=21155.654828871793;
incomes(843,9)=21444.06121274266;
bref(844)=13000;
bnorm(844)=32000;
incomemean(844)=13000;
rents(844,1)=101.47645219589472;
rents(844,2)=60.260195397386575;
rents(844,3)=61.437004149636266;
rents(844,4)=62.20715851737181;
rents(844,5)=62.78010520726073;
rents(844,6)=63.80444062853033;
rents(844,7)=64.75634337568343;
rents(844,8)=64.43742442187545;
rents(844,9)=64.4893941999263;
incomes(844,1)=22297.031740069386;
incomes(844,2)=22618.56254579661;
incomes(844,3)=22520.976735716824;
incomes(844,4)=22380.348727797445;
incomes(844,5)=22696.184556437565;
incomes(844,6)=22737.21009766879;
incomes(844,7)=22013.941243815752;
incomes(844,8)=22214.983009440395;
incomes(844,9)=22088.994750668004;
bref(845)=13000;
bnorm(845)=32000;
incomemean(845)=14000;
rents(845,1)=100.6143410174803;
rents(845,2)=59.79169904712657;
rents(845,3)=63.17607226133511;
rents(845,4)=66.29185719144412;
rents(845,5)=68.41771234017118;
rents(845,6)=70.95693579300445;
rents(845,7)=72.82316221902627;
rents(845,8)=73.76855288991842;
rents(845,9)=74.76710918451904;
incomes(845,1)=23758.13487590835;
incomes(845,2)=24097.767406471703;
incomes(845,3)=24017.42526173783;
incomes(845,4)=23604.397719479908;
incomes(845,5)=24009.137894450276;
incomes(845,6)=23704.288654300468;
incomes(845,7)=23326.846450698402;
incomes(845,8)=23422.51858586789;
incomes(845,9)=23690.143963462888;
bref(846)=13000;
bnorm(846)=32000;
incomemean(846)=15000;
rents(846,1)=99.15687510932376;
rents(846,2)=58.88144620246324;
rents(846,3)=64.11457199286784;
rents(846,4)=69.09884456840308;
rents(846,5)=74.08229356519978;
rents(846,6)=78.88077073148267;
rents(846,7)=83.3848692413858;
rents(846,8)=85.41108337936839;
rents(846,9)=87.4332287754057;
incomes(846,1)=24955.590429454584;
incomes(846,2)=25097.051089243407;
incomes(846,3)=25006.53313415395;
incomes(846,4)=25141.73488964891;
incomes(846,5)=25235.98132558053;
incomes(846,6)=25224.37616916336;
incomes(846,7)=24248.281618206955;
incomes(846,8)=24415.60037209868;
incomes(846,9)=24915.508158467135;
bref(847)=13000;
bnorm(847)=32000;
incomemean(847)=16000;
rents(847,1)=99.59044566647407;
rents(847,2)=59.12813970583063;
rents(847,3)=68.27631499149385;
rents(847,4)=77.71256124901731;
rents(847,5)=86.21472023105319;
rents(847,6)=94.89270538574935;
rents(847,7)=102.4998728328662;
rents(847,8)=108.14943170237906;
rents(847,9)=112.20476938083691;
incomes(847,1)=26964.35019951206;
incomes(847,2)=27480.479355264975;
incomes(847,3)=27505.25379060566;
incomes(847,4)=27067.07572705657;
incomes(847,5)=27431.673132064247;
incomes(847,6)=27273.352163755808;
incomes(847,7)=26729.93673093694;
incomes(847,8)=26436.767223029776;
incomes(847,9)=27099.489519375962;
bref(848)=13000;
bnorm(848)=32000;
incomemean(848)=17000;
rents(848,1)=94.1983179318721;
rents(848,2)=56.30629245996263;
rents(848,3)=67.9863972060113;
rents(848,4)=80.41809326018985;
rents(848,5)=91.48227947962337;
rents(848,6)=103.75995376434724;
rents(848,7)=114.52827458712922;
rents(848,8)=122.57941205959028;
rents(848,9)=131.34230413931576;
incomes(848,1)=28455.022124210762;
incomes(848,2)=29213.600592368344;
incomes(848,3)=29060.049873396936;
incomes(848,4)=28171.869968210085;
incomes(848,5)=28882.336597170568;
incomes(848,6)=28575.51198853139;
incomes(848,7)=27836.805464699806;
incomes(848,8)=28604.84128875397;
incomes(848,9)=29020.690086297607;
bref(849)=13000;
bnorm(849)=32000;
incomemean(849)=18000;
rents(849,1)=100.13562816489873;
rents(849,2)=59.45611659773595;
rents(849,3)=74.42872233537682;
rents(849,4)=90.73680722640154;
rents(849,5)=106.69785469663316;
rents(849,6)=123.77795055204822;
rents(849,7)=139.275861971266;
rents(849,8)=153.18683168165575;
rents(849,9)=164.27706522908622;
incomes(849,1)=30604.785774830147;
incomes(849,2)=31009.58260865184;
incomes(849,3)=30857.929655043034;
incomes(849,4)=30330.12174754369;
incomes(849,5)=30901.37218086513;
incomes(849,6)=30653.87899408996;
incomes(849,7)=30742.230345287375;
incomes(849,8)=30623.503942299307;
incomes(849,9)=30256.212229387922;
bref(850)=13000;
bnorm(850)=32000;
incomemean(850)=19000;
rents(850,1)=102.5538801669817;
rents(850,2)=60.92038442626123;
rents(850,3)=78.3662511915482;
rents(850,4)=97.6829674911933;
rents(850,5)=117.35215009415705;
rents(850,6)=137.65009693439114;
rents(850,7)=154.9069226253147;
rents(850,8)=170.10773057060211;
rents(850,9)=182.10047180162968;
incomes(850,1)=31485.132780906297;
incomes(850,2)=32302.330525835823;
incomes(850,3)=32028.332058325537;
incomes(850,4)=31621.600528315095;
incomes(850,5)=31964.26981952055;
incomes(850,6)=31598.27061484751;
incomes(850,7)=31645.072633069096;
incomes(850,8)=31514.01375857942;
incomes(850,9)=32350.65090641628;
bref(851)=13000;
bnorm(851)=35000;
incomemean(851)=10000;
rents(851,1)=98.1659642962803;
rents(851,2)=61.702647765521206;
rents(851,3)=58.23699042195592;
rents(851,4)=55.35216535119146;
rents(851,5)=52.62993059850597;
rents(851,6)=50.81377470504845;
rents(851,7)=50.17670569373245;
rents(851,8)=50.02494819812111;
rents(851,9)=50;
incomes(851,1)=19584.863723977443;
incomes(851,2)=19963.476676905328;
incomes(851,3)=19980.901666952177;
incomes(851,4)=19590.542457863336;
incomes(851,5)=19823.380641878186;
incomes(851,6)=19926.7219962912;
incomes(851,7)=19456.400990997303;
incomes(851,8)=19303.532279968982;
incomes(851,9)=19525.63781570703;
bref(852)=13000;
bnorm(852)=35000;
incomemean(852)=11000;
rents(852,1)=99.16692821547555;
rents(852,2)=62.33363653229766;
rents(852,3)=59.19890565564201;
rents(852,4)=56.76086779990118;
rents(852,5)=54.01370545906417;
rents(852,6)=52.50403472751072;
rents(852,7)=51.18800293346721;
rents(852,8)=50.50800548033123;
rents(852,9)=50.22173442475335;
incomes(852,1)=20142.706556805275;
incomes(852,2)=20288.55151352748;
incomes(852,3)=20218.532764263717;
incomes(852,4)=19555.477283251148;
incomes(852,5)=20318.56489225564;
incomes(852,6)=20008.074737772116;
incomes(852,7)=19989.301645518903;
incomes(852,8)=20030.329108834285;
incomes(852,9)=19855.189497148414;
bref(853)=13000;
bnorm(853)=35000;
incomemean(853)=12000;
rents(853,1)=100.67763186440813;
rents(853,2)=63.285867040146734;
rents(853,3)=61.91644569603069;
rents(853,4)=60.96183359726918;
rents(853,5)=60.14626839236388;
rents(853,6)=59.78769969891436;
rents(853,7)=59.33782678451625;
rents(853,8)=58.09037925967734;
rents(853,9)=57.183639092188095;
incomes(853,1)=21388.640642523296;
incomes(853,2)=21363.675644695526;
incomes(853,3)=21548.7148378693;
incomes(853,4)=21542.23422868495;
incomes(853,5)=21761.454741767422;
incomes(853,6)=21716.46037510348;
incomes(853,7)=21057.783430623436;
incomes(853,8)=21204.435824704302;
incomes(853,9)=21212.74067407031;
bref(854)=13000;
bnorm(854)=35000;
incomemean(854)=13000;
rents(854,1)=100.68271395782605;
rents(854,2)=63.29146682663908;
rents(854,3)=64.86401995314857;
rents(854,4)=66.23560859516373;
rents(854,5)=67.17941281405393;
rents(854,6)=67.83235197447071;
rents(854,7)=68.61133094052201;
rents(854,8)=68.36689742941797;
rents(854,9)=68.31040935312065;
incomes(854,1)=23161.09733302623;
incomes(854,2)=23228.392615776476;
incomes(854,3)=23150.723127835565;
incomes(854,4)=22972.33443664932;
incomes(854,5)=22931.730311766954;
incomes(854,6)=23023.306365717446;
incomes(854,7)=22500.972060215943;
incomes(854,8)=22581.37460092264;
incomes(854,9)=22883.072533646216;
bref(855)=13000;
bnorm(855)=35000;
incomemean(855)=14000;
rents(855,1)=99.94551541689036;
rents(855,2)=62.81946915347681;
rents(855,3)=66.1423099935423;
rents(855,4)=69.09830353423246;
rents(855,5)=71.03786041872654;
rents(855,6)=73.12692621176794;
rents(855,7)=75.24808866980669;
rents(855,8)=76.58048504950305;
rents(855,9)=77.77311508322349;
incomes(855,1)=24023.55170730208;
incomes(855,2)=24413.775830722516;
incomes(855,3)=24281.76865714393;
incomes(855,4)=23865.30856559102;
incomes(855,5)=24056.746835233676;
incomes(855,6)=24199.75444860822;
incomes(855,7)=23837.44133536137;
incomes(855,8)=23802.60437214207;
incomes(855,9)=23646.15200786939;
bref(856)=13000;
bnorm(856)=35000;
incomemean(856)=15000;
rents(856,1)=100.03065769641998;
rents(856,2)=62.874054414633164;
rents(856,3)=68.32104176445502;
rents(856,4)=73.39270488076016;
rents(856,5)=77.24680359406004;
rents(856,6)=81.90652307151873;
rents(856,7)=85.3922521376226;
rents(856,8)=87.36927795056185;
rents(856,9)=89.90223021485953;
incomes(856,1)=25068.277410821625;
incomes(856,2)=25573.820224913205;
incomes(856,3)=25410.08002341343;
incomes(856,4)=24907.869932371483;
incomes(856,5)=25471.43442044208;
incomes(856,6)=25079.555505462904;
incomes(856,7)=24534.1957740001;
incomes(856,8)=24909.79279807842;
incomes(856,9)=24883.423510674635;
bref(857)=13000;
bnorm(857)=35000;
incomemean(857)=16000;
rents(857,1)=99.50166616730341;
rents(857,2)=62.54421026784255;
rents(857,3)=70.7235616469378;
rents(857,4)=78.66004962228698;
rents(857,5)=86.34460836880905;
rents(857,6)=93.78005513564776;
rents(857,7)=101.27218429995466;
rents(857,8)=107.09063555310223;
rents(857,9)=112.42939794881714;
incomes(857,1)=27173.98115306976;
incomes(857,2)=27416.000217129094;
incomes(857,3)=27210.653728629146;
incomes(857,4)=27142.951719293666;
incomes(857,5)=27211.53602891175;
incomes(857,6)=27551.59429160501;
incomes(857,7)=27113.063809160325;
incomes(857,8)=27074.850052591362;
incomes(857,9)=27040.10735456705;
bref(858)=13000;
bnorm(858)=35000;
incomemean(858)=17000;
rents(858,1)=100.48564651073234;
rents(858,2)=63.16194719031401;
rents(858,3)=73.74263460787944;
rents(858,4)=84.57495280141397;
rents(858,5)=94.32375108490545;
rents(858,6)=104.76985906885758;
rents(858,7)=114.61032476384545;
rents(858,8)=120.50548798964812;
rents(858,9)=127.53979651808403;
incomes(858,1)=28092.238513607037;
incomes(858,2)=28732.46097988957;
incomes(858,3)=28699.013688586452;
incomes(858,4)=28101.11355249809;
incomes(858,5)=28526.965286368853;
incomes(858,6)=28623.47080127786;
incomes(858,7)=27497.905235547034;
incomes(858,8)=28215.626169104267;
incomes(858,9)=28617.839240465266;
bref(859)=13000;
bnorm(859)=35000;
incomemean(859)=18000;
rents(859,1)=99.66543068418783;
rents(859,2)=62.64370559448513;
rents(859,3)=75.46324547315501;
rents(859,4)=89.10598433749529;
rents(859,5)=103.00621005364258;
rents(859,6)=116.80906700063424;
rents(859,7)=130.68883334296805;
rents(859,8)=142.52074427474975;
rents(859,9)=152.10111412852717;
incomes(859,1)=30052.177838836313;
incomes(859,2)=30122.579533177686;
incomes(859,3)=30032.703718586796;
incomes(859,4)=30063.924557706923;
incomes(859,5)=30111.68160324161;
incomes(859,6)=30351.61545055683;
incomes(859,7)=30123.3878717298;
incomes(859,8)=29954.093503509772;
incomes(859,9)=30103.19085228288;
bref(860)=13000;
bnorm(860)=35000;
incomemean(860)=19000;
rents(860,1)=98.3774929412306;
rents(860,2)=61.83200719841567;
rents(860,3)=76.93378210166532;
rents(860,4)=93.89936385892638;
rents(860,5)=110.99229911235317;
rents(860,6)=129.3868987607411;
rents(860,7)=147.58203255102063;
rents(860,8)=160.99224641135604;
rents(860,9)=171.56878607232312;
incomes(860,1)=30946.997837196363;
incomes(860,2)=31654.799507123014;
incomes(860,3)=31786.82248781243;
incomes(860,4)=31243.6140861131;
incomes(860,5)=31857.25024892877;
incomes(860,6)=32102.539092240386;
incomes(860,7)=31124.349926410756;
incomes(860,8)=31072.185539539758;
incomes(860,9)=31806.909062372244;
bref(861)=13000;
bnorm(861)=38000;
incomemean(861)=10000;
rents(861,1)=100.84186469771885;
rents(861,2)=66.34250530880385;
rents(861,3)=62.19606361755088;
rents(861,4)=58.17831614582008;
rents(861,5)=54.733558519590886;
rents(861,6)=52.146929224418734;
rents(861,7)=50.48824747824035;
rents(861,8)=50.02931523060453;
rents(861,9)=50;
incomes(861,1)=19237.10641419429;
incomes(861,2)=19780.939815911777;
incomes(861,3)=19347.546334882576;
incomes(861,4)=19347.904091448057;
incomes(861,5)=19299.96028082512;
incomes(861,6)=19332.695867715003;
incomes(861,7)=19111.75260421887;
incomes(861,8)=18728.926491911745;
incomes(861,9)=19321.926174266493;
bref(862)=13000;
bnorm(862)=38000;
incomemean(862)=11000;
rents(862,1)=100.65328064614008;
rents(862,2)=66.22088873942917;
rents(862,3)=63.26532328875549;
rents(862,4)=60.366906222011;
rents(862,5)=57.91750335746959;
rents(862,6)=55.74423879654636;
rents(862,7)=54.08070864358609;
rents(862,8)=52.34539866090205;
rents(862,9)=51.20004931482675;
incomes(862,1)=20239.782093827416;
incomes(862,2)=20682.84859665518;
incomes(862,3)=20278.84597599941;
incomes(862,4)=20331.171456250824;
incomes(862,5)=20314.903311513233;
incomes(862,6)=20524.01424451892;
incomes(862,7)=19943.37906724437;
incomes(862,8)=19879.18287716833;
incomes(862,9)=20089.24497767924;
bref(863)=13000;
bnorm(863)=38000;
incomemean(863)=12000;
rents(863,1)=99.63042163666456;
rents(863,2)=65.54465139193606;
rents(863,3)=64.64586750831307;
rents(863,4)=63.68628604326815;
rents(863,5)=61.950879204466915;
rents(863,6)=60.7550136941265;
rents(863,7)=59.89987609558114;
rents(863,8)=58.235167998042826;
rents(863,9)=57.015061304691415;
incomes(863,1)=21640.34509961915;
incomes(863,2)=21849.398095331297;
incomes(863,3)=21731.62761639705;
incomes(863,4)=21096.179637985642;
incomes(863,5)=21385.728763239564;
incomes(863,6)=21495.733251142243;
incomes(863,7)=20765.646434275204;
incomes(863,8)=21011.868152034687;
incomes(863,9)=21238.645935850356;
bref(864)=13000;
bnorm(864)=38000;
incomemean(864)=13000;
rents(864,1)=100.49281748751275;
rents(864,2)=66.11545057187706;
rents(864,3)=66.14035146877187;
rents(864,4)=66.20244893224421;
rents(864,5)=65.65445643509695;
rents(864,6)=65.32072354749214;
rents(864,7)=65.30790519492164;
rents(864,8)=65.00238321306551;
rents(864,9)=64.32954324534337;
incomes(864,1)=22124.900861910068;
incomes(864,2)=22363.482521118454;
incomes(864,3)=22431.524081800704;
incomes(864,4)=22003.87130725719;
incomes(864,5)=22142.993303802243;
incomes(864,6)=22327.420129229933;
incomes(864,7)=22132.919287521567;
incomes(864,8)=21827.43250788413;
incomes(864,9)=21755.345974054715;
bref(865)=13000;
bnorm(865)=38000;
incomemean(865)=14000;
rents(865,1)=100.7472305393427;
rents(865,2)=66.28137602835298;
rents(865,3)=69.12407555180013;
rents(865,4)=71.81220505678999;
rents(865,5)=73.57162125716371;
rents(865,6)=76.04850731056942;
rents(865,7)=78.27959747280185;
rents(865,8)=78.93398019711124;
rents(865,9)=79.6380463332462;
incomes(865,1)=23957.281415061443;
incomes(865,2)=24462.535843812955;
incomes(865,3)=24364.388407215334;
incomes(865,4)=23864.27597005324;
incomes(865,5)=24456.87111050867;
incomes(865,6)=24471.78681038367;
incomes(865,7)=23630.05176313147;
incomes(865,8)=23662.539474592195;
incomes(865,9)=23703.95435457743;
bref(866)=13000;
bnorm(866)=38000;
incomemean(866)=15000;
rents(866,1)=99.96361579757115;
rents(866,2)=65.77081174687015;
rents(866,3)=70.97941866001024;
rents(866,4)=75.52736443809924;
rents(866,5)=80.23338319412407;
rents(866,6)=84.31171377489406;
rents(866,7)=88.43736014863555;
rents(866,8)=91.89871562218971;
rents(866,9)=94.31515235324015;
incomes(866,1)=25558.32302361398;
incomes(866,2)=25664.180487990467;
incomes(866,3)=25445.5375839314;
incomes(866,4)=25692.80482469158;
incomes(866,5)=25515.95919960642;
incomes(866,6)=25743.291068072653;
incomes(866,7)=25510.66495635176;
incomes(866,8)=25207.14165857833;
incomes(866,9)=25320.782557445375;
bref(867)=13000;
bnorm(867)=38000;
incomemean(867)=16000;
rents(867,1)=100.70225200190414;
rents(867,2)=66.25240752627482;
rents(867,3)=73.3374974208641;
rents(867,4)=80.43980476720925;
rents(867,5)=86.52812471850285;
rents(867,6)=93.24355962847196;
rents(867,7)=98.81528826391538;
rents(867,8)=103.37560763457937;
rents(867,9)=107.31279390390866;
incomes(867,1)=26706.57042372686;
incomes(867,2)=27020.725081325683;
incomes(867,3)=27141.23334947335;
incomes(867,4)=26652.495461627044;
incomes(867,5)=27133.368989180915;
incomes(867,6)=26858.380513990593;
incomes(867,7)=26638.067112325658;
incomes(867,8)=26505.4370866559;
incomes(867,9)=26809.913024383313;
bref(868)=13000;
bnorm(868)=38000;
incomemean(868)=17000;
rents(868,1)=100.3005300472136;
rents(868,2)=65.97807310957758;
rents(868,3)=76.4290741268077;
rents(868,4)=86.29709957992264;
rents(868,5)=96.07842065343237;
rents(868,6)=105.62376063965172;
rents(868,7)=115.17708787700961;
rents(868,8)=122.22708358269374;
rents(868,9)=127.60501245802276;
incomes(868,1)=28288.77947892465;
incomes(868,2)=29081.83767639931;
incomes(868,3)=28551.906568200237;
incomes(868,4)=28470.86474730605;
incomes(868,5)=28531.50168639053;
incomes(868,6)=28850.937771416724;
incomes(868,7)=28099.5305445511;
incomes(868,8)=27731.28436712675;
incomes(868,9)=28335.98056485945;
bref(869)=13000;
bnorm(869)=38000;
incomemean(869)=18000;
rents(869,1)=102.36388288895668;
rents(869,2)=67.34556410818671;
rents(869,3)=79.8863202132867;
rents(869,4)=93.06278600588774;
rents(869,5)=105.67314751580545;
rents(869,6)=118.44939601064465;
rents(869,7)=130.7008515245279;
rents(869,8)=140.15617204711992;
rents(869,9)=149.88200018099062;
incomes(869,1)=29683.825033264424;
incomes(869,2)=30392.83906725457;
incomes(869,3)=30255.15170503457;
incomes(869,4)=29835.551072179882;
incomes(869,5)=30058.445023762997;
incomes(869,6)=30124.482149750704;
incomes(869,7)=29433.022783826695;
incomes(869,8)=30019.33021029594;
incomes(869,9)=29807.54141296496;
bref(870)=13000;
bnorm(870)=38000;
incomemean(870)=19000;
rents(870,1)=99.62849306183604;
rents(870,2)=65.54315202655364;
rents(870,3)=81.13910142208199;
rents(870,4)=97.85660078992058;
rents(870,5)=114.6795378374231;
rents(870,6)=131.8920894004629;
rents(870,7)=149.24328153249778;
rents(870,8)=162.50999964781536;
rents(870,9)=174.27261087532634;
incomes(870,1)=31885.74776437818;
incomes(870,2)=32594.3162932791;
incomes(870,3)=32132.465199491427;
incomes(870,4)=31833.414280221605;
incomes(870,5)=32076.859654581513;
incomes(870,6)=32477.98063723455;
incomes(870,7)=31824.330609373494;
incomes(870,8)=31816.927311562304;
incomes(870,9)=32442.208512096295;
bref(871)=13000;
bnorm(871)=41000;
incomemean(871)=10000;
rents(871,1)=100.20903220197621;
rents(871,2)=68.42857351424388;
rents(871,3)=63.735323521817335;
rents(871,4)=59.685141486920486;
rents(871,5)=56.08297053778075;
rents(871,6)=53.23529953017961;
rents(871,7)=51.49582509952643;
rents(871,8)=50.33370509626007;
rents(871,9)=50.00536496869519;
incomes(871,1)=19171.91858899208;
incomes(871,2)=19468.165277684217;
incomes(871,3)=19351.201775666974;
incomes(871,4)=19119.218001361853;
incomes(871,5)=19114.083339794593;
incomes(871,6)=19256.92163696564;
incomes(871,7)=18654.23386907523;
incomes(871,8)=18786.06158052688;
incomes(871,9)=18861.818443649394;
bref(872)=13000;
bnorm(872)=41000;
incomemean(872)=11000;
rents(872,1)=102.07093522595017;
rents(872,2)=69.70450668818856;
rents(872,3)=66.7174781984926;
rents(872,4)=63.69949752031943;
rents(872,5)=61.12932829947709;
rents(872,6)=58.63479642648968;
rents(872,7)=56.74844812936716;
rents(872,8)=54.70588272550793;
rents(872,9)=52.94534626747015;
incomes(872,1)=20365.994033117175;
incomes(872,2)=20804.527074104077;
incomes(872,3)=20435.59094278011;
incomes(872,4)=20418.066417890906;
incomes(872,5)=20253.609087798926;
incomes(872,6)=20434.778532480083;
incomes(872,7)=19932.57251512899;
incomes(872,8)=19766.306753418994;
incomes(872,9)=19992.662787793044;
bref(873)=13000;
bnorm(873)=41000;
incomemean(873)=12000;
rents(873,1)=97.73469199276995;
rents(873,2)=66.75181158142297;
rents(873,3)=65.08216432855501;
rents(873,4)=63.27860982580457;
rents(873,5)=61.529253899324615;
rents(873,6)=60.35257555720642;
rents(873,7)=59.17878410036003;
rents(873,8)=57.71975652785456;
rents(873,9)=56.02580359951899;
incomes(873,1)=21039.214822510694;
incomes(873,2)=21338.931344714925;
incomes(873,3)=21065.43759013347;
incomes(873,4)=20857.55938551087;
incomes(873,5)=21176.89213513706;
incomes(873,6)=21154.069682867565;
incomes(873,7)=20760.468049877116;
incomes(873,8)=20435.088431082746;
incomes(873,9)=21025.832467416618;
bref(874)=13000;
bnorm(874)=41000;
incomemean(874)=13000;
rents(874,1)=99.6957813376044;
rents(874,2)=68.08758365814487;
rents(874,3)=68.2570823014389;
rents(874,4)=68.28296564311462;
rents(874,5)=67.72307533179686;
rents(874,6)=67.78884035030126;
rents(874,7)=67.8384212899061;
rents(874,8)=67.31674107646604;
rents(874,9)=66.62414184675683;
incomes(874,1)=21850.618798745625;
incomes(874,2)=22716.842862536087;
incomes(874,3)=22511.846906404135;
incomes(874,4)=22107.05088817183;
incomes(874,5)=22619.820916311146;
incomes(874,6)=22627.015929355344;
incomes(874,7)=22087.45129503323;
incomes(874,8)=21925.071713057707;
incomes(874,9)=22161.5293428496;
bref(875)=13000;
bnorm(875)=41000;
incomemean(875)=14000;
rents(875,1)=100.33900703678074;
rents(875,2)=68.5195705666937;
rents(875,3)=70.56946399528319;
rents(875,4)=72.32822304290922;
rents(875,5)=73.39386844066856;
rents(875,6)=74.92125924916336;
rents(875,7)=76.296353033037;
rents(875,8)=77.19691886372554;
rents(875,9)=77.21246968397244;
incomes(875,1)=23415.9668194426;
incomes(875,2)=24002.079479548924;
incomes(875,3)=23872.121161658033;
incomes(875,4)=23460.219281289053;
incomes(875,5)=23898.819220802325;
incomes(875,6)=23982.61359756345;
incomes(875,7)=23706.346155753614;
incomes(875,8)=23173.44804207529;
incomes(875,9)=23771.896902232314;
bref(876)=13000;
bnorm(876)=41000;
incomemean(876)=15000;
rents(876,1)=101.01266268896316;
rents(876,2)=68.98356879552126;
rents(876,3)=72.99856496796426;
rents(876,4)=76.56904354618109;
rents(876,5)=79.3778009937651;
rents(876,6)=82.6050872837366;
rents(876,7)=85.15940391758853;
rents(876,8)=86.19839467362463;
rents(876,9)=87.4022409401355;
incomes(876,1)=24518.545961218715;
incomes(876,2)=25224.389338598452;
incomes(876,3)=24994.8506988527;
incomes(876,4)=24623.034402676854;
incomes(876,5)=25067.258307928972;
incomes(876,6)=24823.056651301158;
incomes(876,7)=24000.026424136948;
incomes(876,8)=24246.37330666504;
incomes(876,9)=24687.169238133578;
bref(877)=13000;
bnorm(877)=41000;
incomemean(877)=16000;
rents(877,1)=101.55103902119451;
rents(877,2)=69.35028724361507;
rents(877,3)=76.68623445955987;
rents(877,4)=84.0668210714318;
rents(877,5)=90.24837297005901;
rents(877,6)=97.01893222605732;
rents(877,7)=103.05247379108644;
rents(877,8)=107.40811956503453;
rents(877,9)=111.16517252600339;
incomes(877,1)=27850.35224547755;
incomes(877,2)=27537.963553205773;
incomes(877,3)=27552.02371485604;
incomes(877,4)=27000.23715718952;
incomes(877,5)=27477.11504336309;
incomes(877,6)=27260.440975421272;
incomes(877,7)=26724.31554034719;
incomes(877,8)=26758.98000679657;
incomes(877,9)=26987.696749353767;
bref(878)=13000;
bnorm(878)=41000;
incomemean(878)=17000;
rents(878,1)=98.51795393752629;
rents(878,2)=67.27499828922936;
rents(878,3)=77.2059556683969;
rents(878,4)=87.19727322899575;
rents(878,5)=96.97275846669615;
rents(878,6)=107.06386675372183;
rents(878,7)=116.78811001711911;
rents(878,8)=124.87576163083949;
rents(878,9)=130.73291561366048;
incomes(878,1)=28456.884265563105;
incomes(878,2)=29349.20657330734;
incomes(878,3)=29089.16427960077;
incomes(878,4)=28934.640109751595;
incomes(878,5)=29302.360127890053;
incomes(878,6)=29305.566697431736;
incomes(878,7)=28890.69785049861;
incomes(878,8)=28222.776933141955;
incomes(878,9)=28947.652060825643;
bref(879)=13000;
bnorm(879)=41000;
incomemean(879)=18000;
rents(879,1)=101.1257849431835;
rents(879,2)=69.05576784977916;
rents(879,3)=80.60810279291402;
rents(879,4)=93.08906310804899;
rents(879,5)=104.46870202014883;
rents(879,6)=116.94591844578905;
rents(879,7)=129.14330782612885;
rents(879,8)=137.64826400283928;
rents(879,9)=146.64440484590543;
incomes(879,1)=29812.79909403344;
incomes(879,2)=30189.97768850195;
incomes(879,3)=30405.691325766613;
incomes(879,4)=29678.077631254324;
incomes(879,5)=30425.021327138784;
incomes(879,6)=30481.67793093306;
incomes(879,7)=29382.17195811561;
incomes(879,8)=29996.20256575149;
incomes(879,9)=30235.995095800623;
bref(880)=13000;
bnorm(880)=41000;
incomemean(880)=19000;
rents(880,1)=101.65509657730641;
rents(880,2)=69.42927545616658;
rents(880,3)=83.32449562495066;
rents(880,4)=98.62124728117868;
rents(880,5)=114.11749443692119;
rents(880,6)=130.1482459222526;
rents(880,7)=145.29056380813347;
rents(880,8)=158.48675128360068;
rents(880,9)=169.7894639899218;
incomes(880,1)=31574.53516794568;
incomes(880,2)=31876.17118957201;
incomes(880,3)=31959.593238156096;
incomes(880,4)=31822.421488010015;
incomes(880,5)=32000.126988850607;
incomes(880,6)=32214.510074431782;
incomes(880,7)=31788.301367056876;
incomes(880,8)=31549.445233028673;
incomes(880,9)=31927.660819294124;
bref(881)=13000;
bnorm(881)=44000;
incomemean(881)=10000;
rents(881,1)=101.35978349748964;
rents(881,2)=71.41471546986412;
rents(881,3)=66.70976962495861;
rents(881,4)=62.86222090048306;
rents(881,5)=59.2399859939701;
rents(881,6)=56.43084190921655;
rents(881,7)=54.15852867759115;
rents(881,8)=51.981701116792486;
rents(881,9)=50.63709573579542;
incomes(881,1)=19491.805701760986;
incomes(881,2)=19624.652103799;
incomes(881,3)=19677.632839899587;
incomes(881,4)=19451.358961951628;
incomes(881,5)=19691.257123978467;
incomes(881,6)=19693.275185493287;
incomes(881,7)=19108.348734692434;
incomes(881,8)=19168.467882213066;
incomes(881,9)=19421.744960657965;
bref(882)=13000;
bnorm(882)=44000;
incomemean(882)=11000;
rents(882,1)=100.37310838731523;
rents(882,2)=70.71489412743476;
rents(882,3)=67.63305449457133;
rents(882,4)=64.53692837773447;
rents(882,5)=61.586822955068335;
rents(882,6)=59.28818798090723;
rents(882,7)=57.259952406831005;
rents(882,8)=55.320223139123335;
rents(882,9)=53.207858798560245;
incomes(882,1)=20244.42244360086;
incomes(882,2)=20657.82135386852;
incomes(882,3)=20344.281629404846;
incomes(882,4)=19976.844912886092;
incomes(882,5)=20315.440545408237;
incomes(882,6)=20281.5887812592;
incomes(882,7)=20104.4716218792;
incomes(882,8)=19422.32169872673;
incomes(882,9)=19916.120224497554;
bref(883)=13000;
bnorm(883)=44000;
incomemean(883)=12000;
rents(883,1)=100.12477019375058;
rents(883,2)=70.53630256958544;
rents(883,3)=68.7826859470474;
rents(883,4)=67.40199890198326;
rents(883,5)=65.40165667700757;
rents(883,6)=63.763230101449786;
rents(883,7)=62.246470703021735;
rents(883,8)=60.33823107144796;
rents(883,9)=58.69983834914909;
incomes(883,1)=20895.50440660925;
incomes(883,2)=21477.62443197373;
incomes(883,3)=21675.275032720947;
incomes(883,4)=20910.024835500706;
incomes(883,5)=21101.493053822483;
incomes(883,6)=21103.248507853234;
incomes(883,7)=20574.370596539924;
incomes(883,8)=20633.846354053432;
incomes(883,9)=20727.795158251003;
bref(884)=13000;
bnorm(884)=44000;
incomemean(884)=13000;
rents(884,1)=96.9048150545266;
rents(884,2)=68.27219090610366;
rents(884,3)=68.2355452866933;
rents(884,4)=67.90637347178892;
rents(884,5)=67.26048130580963;
rents(884,6)=66.83394577634304;
rents(884,7)=66.59893405320638;
rents(884,8)=65.88113679419936;
rents(884,9)=65.3118714915249;
incomes(884,1)=22183.15710473821;
incomes(884,2)=22579.83853487446;
incomes(884,3)=22319.09071536678;
incomes(884,4)=21971.03167846268;
incomes(884,5)=22119.959530613334;
incomes(884,6)=22324.756608764426;
incomes(884,7)=21880.152789862692;
incomes(884,8)=21946.639584272838;
incomes(884,9)=22077.296883816813;
bref(885)=13000;
bnorm(885)=44000;
incomemean(885)=14000;
rents(885,1)=100.26395784478814;
rents(885,2)=70.63635687592217;
rents(885,3)=72.05182669732926;
rents(885,4)=72.93703878886095;
rents(885,5)=74.27693662823448;
rents(885,6)=76.23188474751535;
rents(885,7)=77.70650758846544;
rents(885,8)=78.77701989564024;
rents(885,9)=79.36157179735996;
incomes(885,1)=24034.870907984627;
incomes(885,2)=23639.2030101726;
incomes(885,3)=23333.615883008584;
incomes(885,4)=23707.566788679094;
incomes(885,5)=24238.20032763069;
incomes(885,6)=23939.35672411607;
incomes(885,7)=23775.064774641236;
incomes(885,8)=23441.808901796554;
incomes(885,9)=23847.636253091125;
bref(886)=13000;
bnorm(886)=44000;
incomemean(886)=15000;
rents(886,1)=96.63036469557603;
rents(886,2)=68.08263543967101;
rents(886,3)=72.05698362268105;
rents(886,4)=75.64128324785503;
rents(886,5)=78.54340604813305;
rents(886,6)=81.9587541087867;
rents(886,7)=84.47127806068472;
rents(886,8)=86.32505417622097;
rents(886,9)=87.46411043204743;
incomes(886,1)=25019.426272294484;
incomes(886,2)=25509.168620832646;
incomes(886,3)=25225.315167628687;
incomes(886,4)=24948.19443714281;
incomes(886,5)=25466.712632153703;
incomes(886,6)=24989.408140835305;
incomes(886,7)=24638.31975715174;
incomes(886,8)=24366.877973885163;
incomes(886,9)=24637.551118839056;
bref(887)=13000;
bnorm(887)=44000;
incomemean(887)=16000;
rents(887,1)=100.7371189389515;
rents(887,2)=70.97404293702685;
rents(887,3)=77.33945917338079;
rents(887,4)=83.5520801404694;
rents(887,5)=88.44643574478258;
rents(887,6)=94.04643804820735;
rents(887,7)=99.71187802546046;
rents(887,8)=104.03243897282593;
rents(887,9)=107.84279429323742;
incomes(887,1)=26901.829873599738;
incomes(887,2)=27350.4559102325;
incomes(887,3)=27200.670120478433;
incomes(887,4)=26507.288959973313;
incomes(887,5)=27172.99554220166;
incomes(887,6)=27372.7109406156;
incomes(887,7)=26750.527417723035;
incomes(887,8)=26645.209347591634;
incomes(887,9)=26438.83345227762;
bref(888)=13000;
bnorm(888)=44000;
incomemean(888)=17000;
rents(888,1)=99.00685490859362;
rents(888,2)=69.74502243792213;
rents(888,3)=78.45195159856088;
rents(888,4)=87.27322278616411;
rents(888,5)=95.23857784637863;
rents(888,6)=103.11597375450415;
rents(888,7)=111.15251424254247;
rents(888,8)=117.41308360265013;
rents(888,9)=123.23260825552937;
incomes(888,1)=27940.69362863408;
incomes(888,2)=28681.742038911994;
incomes(888,3)=28698.825311230692;
incomes(888,4)=28256.009957865816;
incomes(888,5)=28389.352042347058;
incomes(888,6)=28661.526552605537;
incomes(888,7)=27911.635322535763;
incomes(888,8)=28068.483377875935;
incomes(888,9)=28538.182102790575;
bref(889)=13000;
bnorm(889)=44000;
incomemean(889)=18000;
rents(889,1)=101.72376434328643;
rents(889,2)=71.67348550960122;
rents(889,3)=83.4757765808053;
rents(889,4)=95.49906744163737;
rents(889,5)=106.69199817156758;
rents(889,6)=118.51814191636878;
rents(889,7)=130.4099722105845;
rents(889,8)=138.7092305870758;
rents(889,9)=148.22864566535577;
incomes(889,1)=30179.836839557276;
incomes(889,2)=30843.29873573772;
incomes(889,3)=30568.4535307607;
incomes(889,4)=29868.971574380146;
incomes(889,5)=30445.741114852783;
incomes(889,6)=30667.827258900652;
incomes(889,7)=29522.312792619698;
incomes(889,8)=30324.999704366994;
incomes(889,9)=30566.37210543896;
bref(890)=13000;
bnorm(890)=44000;
incomemean(890)=19000;
rents(890,1)=99.19663687380506;
rents(890,2)=69.89354719734878;
rents(890,3)=83.49005847357108;
rents(890,4)=98.49032047397083;
rents(890,5)=113.51000902879784;
rents(890,6)=129.1635135371409;
rents(890,7)=143.74982703270877;
rents(890,8)=156.14840515779622;
rents(890,9)=166.34352445184817;
incomes(890,1)=31657.4430596491;
incomes(890,2)=32308.354440763684;
incomes(890,3)=32419.959722086536;
incomes(890,4)=32042.457123313583;
incomes(890,5)=32512.51770400941;
incomes(890,6)=32301.30573906986;
incomes(890,7)=31869.10340354773;
incomes(890,8)=31447.804925987475;
incomes(890,9)=32307.128699486555;
bref(891)=13000;
bnorm(891)=47000;
incomemean(891)=10000;
rents(891,1)=99.12528587825564;
rents(891,2)=71.70813792560534;
rents(891,3)=67.27718183644939;
rents(891,4)=63.468763157803636;
rents(891,5)=59.76014276324048;
rents(891,6)=56.80895838565287;
rents(891,7)=54.433334467826064;
rents(891,8)=52.405954328985025;
rents(891,9)=51.296011979135514;
incomes(891,1)=19130.84494299097;
incomes(891,2)=19709.206223037963;
incomes(891,3)=19626.661297375245;
incomes(891,4)=19156.598943098365;
incomes(891,5)=19484.730689712436;
incomes(891,6)=19404.128257609522;
incomes(891,7)=18812.12631452545;
incomes(891,8)=19063.658158569375;
incomes(891,9)=19386.97505016619;
bref(892)=13000;
bnorm(892)=47000;
incomemean(892)=11000;
rents(892,1)=100.34201390978922;
rents(892,2)=72.58866729629474;
rents(892,3)=69.157764659529;
rents(892,4)=66.16999904545095;
rents(892,5)=63.23459622651198;
rents(892,6)=61.104626802639174;
rents(892,7)=59.13687665501253;
rents(892,8)=56.93758392212834;
rents(892,9)=54.94246325736929;
incomes(892,1)=20026.868707827078;
incomes(892,2)=20388.952570501187;
incomes(892,3)=20356.826405899206;
incomes(892,4)=20005.57122517854;
incomes(892,5)=20463.182872632584;
incomes(892,6)=20331.112837795656;
incomes(892,7)=19926.862678755104;
incomes(892,8)=19837.75917327194;
incomes(892,9)=19692.123520433488;
bref(893)=13000;
bnorm(893)=47000;
incomemean(893)=12000;
rents(893,1)=101.49679106506538;
rents(893,2)=73.42350560362256;
rents(893,3)=71.91667488849733;
rents(893,4)=70.63386007269263;
rents(893,5)=69.00302431360679;
rents(893,6)=67.87620782776277;
rents(893,7)=66.76092631688736;
rents(893,8)=65.13794542916926;
rents(893,9)=63.538785834222885;
incomes(893,1)=21607.896335065754;
incomes(893,2)=21827.839336065597;
incomes(893,3)=21900.12263204292;
incomes(893,4)=21492.969912158085;
incomes(893,5)=21802.833656386163;
incomes(893,6)=21684.77581289336;
incomes(893,7)=21216.110735842987;
incomes(893,8)=21058.990173434006;
incomes(893,9)=21295.848868897858;
bref(894)=13000;
bnorm(894)=47000;
incomemean(894)=13000;
rents(894,1)=98.82326114947158;
rents(894,2)=71.49092005468475;
rents(894,3)=71.40172952111438;
rents(894,4)=71.27805367851428;
rents(894,5)=70.80655991321969;
rents(894,6)=70.40792319298794;
rents(894,7)=70.15685909832578;
rents(894,8)=69.44757747744515;
rents(894,9)=68.5964899367445;
incomes(894,1)=22339.472151976617;
incomes(894,2)=22714.29265100669;
incomes(894,3)=22713.13655682923;
incomes(894,4)=22308.544218505962;
incomes(894,5)=22363.70698312768;
incomes(894,6)=22467.65844010061;
incomes(894,7)=22019.306650228566;
incomes(894,8)=21957.57833341063;
incomes(894,9)=22156.39928154233;
bref(895)=13000;
bnorm(895)=47000;
incomemean(895)=14000;
rents(895,1)=97.88123876064166;
rents(895,2)=70.80932389599597;
rents(895,3)=72.54146456637854;
rents(895,4)=73.89150603687497;
rents(895,5)=74.75811261724502;
rents(895,6)=75.90168685917006;
rents(895,7)=77.10358686402627;
rents(895,8)=77.42505843868521;
rents(895,9)=77.45873652260181;
incomes(895,1)=23547.958473642768;
incomes(895,2)=24133.833481690228;
incomes(895,3)=23922.49303896686;
incomes(895,4)=23572.735899077343;
incomes(895,5)=23858.05682170094;
incomes(895,6)=23942.45740614827;
incomes(895,7)=23352.693195870048;
incomes(895,8)=23207.618545215137;
incomes(895,9)=23418.614087908034;
bref(896)=13000;
bnorm(896)=47000;
incomemean(896)=15000;
rents(896,1)=102.60337974571482;
rents(896,2)=74.22017884399312;
rents(896,3)=78.12235577581531;
rents(896,4)=82.14217251424715;
rents(896,5)=85.46731128455983;
rents(896,6)=88.63659278939589;
rents(896,7)=91.49511318404086;
rents(896,8)=93.18795245105052;
rents(896,9)=94.9451607236556;
incomes(896,1)=25446.988374956094;
incomes(896,2)=25783.871326136476;
incomes(896,3)=25981.673859421542;
incomes(896,4)=25717.77315519267;
incomes(896,5)=25760.75376363558;
incomes(896,6)=25641.049881815106;
incomes(896,7)=24987.679230668437;
incomes(896,8)=25181.05684787062;
incomes(896,9)=25468.04563617687;
bref(897)=13000;
bnorm(897)=47000;
incomemean(897)=16000;
rents(897,1)=101.28118368409292;
rents(897,2)=73.27297934344666;
rents(897,3)=79.19922431748287;
rents(897,4)=85.2091748697608;
rents(897,5)=90.44733079908038;
rents(897,6)=95.87261489084939;
rents(897,7)=101.15338488979623;
rents(897,8)=105.16236479163067;
rents(897,9)=108.66349243418986;
incomes(897,1)=26925.29371780358;
incomes(897,2)=27229.04585842416;
incomes(897,3)=27317.37241271626;
incomes(897,4)=26966.69323544917;
incomes(897,5)=27272.98776534488;
incomes(897,6)=27394.04800352982;
incomes(897,7)=26892.73852968995;
incomes(897,8)=26841.082054195384;
incomes(897,9)=26969.33828067535;
bref(898)=13000;
bnorm(898)=47000;
incomemean(898)=17000;
rents(898,1)=99.16918345944956;
rents(898,2)=71.74036710333328;
rents(898,3)=80.46581552103272;
rents(898,4)=89.14644763328316;
rents(898,5)=97.67743718166744;
rents(898,6)=105.77951136937281;
rents(898,7)=113.72222039606353;
rents(898,8)=120.01817693846318;
rents(898,9)=126.1532875769969;
incomes(898,1)=28594.260498793254;
incomes(898,2)=29177.118421686682;
incomes(898,3)=29130.335030157825;
incomes(898,4)=29113.004280759804;
incomes(898,5)=28943.045462259128;
incomes(898,6)=29052.691039184607;
incomes(898,7)=28368.497067451994;
incomes(898,8)=28631.631369600327;
incomes(898,9)=28430.60232584032;
bref(899)=13000;
bnorm(899)=47000;
incomemean(899)=18000;
rents(899,1)=100.05131287632247;
rents(899,2)=72.37815293351;
rents(899,3)=82.48733341927742;
rents(899,4)=92.91176353928262;
rents(899,5)=103.10881923691417;
rents(899,6)=113.49079762479022;
rents(899,7)=123.1405852569996;
rents(899,8)=131.65296578754433;
rents(899,9)=138.70953148916166;
incomes(899,1)=29851.965626446963;
incomes(899,2)=30123.197374638294;
incomes(899,3)=30086.436157446573;
incomes(899,4)=29874.211482102168;
incomes(899,5)=30149.841881011736;
incomes(899,6)=29984.25903119802;
incomes(899,7)=29700.966808812973;
incomes(899,8)=29387.589808003595;
incomes(899,9)=30215.825369310965;
bref(900)=13000;
bnorm(900)=47000;
incomemean(900)=19000;
rents(900,1)=99.40131003031965;
rents(900,2)=71.90641477770012;
rents(900,3)=84.38309389328595;
rents(900,4)=97.85716221281768;
rents(900,5)=110.50956854524765;
rents(900,6)=124.08861636122732;
rents(900,7)=137.59612922230795;
rents(900,8)=148.32263388097286;
rents(900,9)=158.2496201504674;
incomes(900,1)=31576.396478294082;
incomes(900,2)=31938.864254976528;
incomes(900,3)=32026.303047996462;
incomes(900,4)=31193.768456678394;
incomes(900,5)=31841.66647123052;
incomes(900,6)=32051.861227242807;
incomes(900,7)=31137.7487510464;
incomes(900,8)=31396.081963396446;
incomes(900,9)=31322.74294008449;
bref(901)=14000;
bnorm(901)=20000;
incomemean(901)=10000;
rents(901,1)=98.90312748628445;
rents(901,2)=50;
rents(901,3)=50;
rents(901,4)=50;
rents(901,5)=50;
rents(901,6)=50;
rents(901,7)=50;
rents(901,8)=50;
rents(901,9)=50;
incomes(901,1)=19438.736461311335;
incomes(901,2)=19744.232415757593;
incomes(901,3)=19869.000591759243;
incomes(901,4)=19537.560573274754;
incomes(901,5)=19502.377991612917;
incomes(901,6)=19594.98822841368;
incomes(901,7)=19212.557036382153;
incomes(901,8)=19206.44662372619;
incomes(901,9)=18974.637000214345;
bref(902)=14000;
bnorm(902)=20000;
incomemean(902)=11000;
rents(902,1)=102.47845882724494;
rents(902,2)=50;
rents(902,3)=50;
rents(902,4)=50;
rents(902,5)=50;
rents(902,6)=50;
rents(902,7)=50;
rents(902,8)=50;
rents(902,9)=50;
incomes(902,1)=20308.70462554578;
incomes(902,2)=20652.37573435905;
incomes(902,3)=20277.027154830474;
incomes(902,4)=19994.353110380933;
incomes(902,5)=20405.035557083404;
incomes(902,6)=20404.64126133565;
incomes(902,7)=20130.005694069896;
incomes(902,8)=20121.100521676773;
incomes(902,9)=20218.558470459153;
bref(903)=14000;
bnorm(903)=20000;
incomemean(903)=12000;
rents(903,1)=102.07112859950276;
rents(903,2)=50;
rents(903,3)=50;
rents(903,4)=50;
rents(903,5)=50;
rents(903,6)=50;
rents(903,7)=50;
rents(903,8)=50;
rents(903,9)=50;
incomes(903,1)=21329.819340997434;
incomes(903,2)=21698.583000626866;
incomes(903,3)=21489.449122051847;
incomes(903,4)=21137.156500929257;
incomes(903,5)=21492.69503061281;
incomes(903,6)=21273.824076166893;
incomes(903,7)=21015.708566070516;
incomes(903,8)=21017.933698595643;
incomes(903,9)=21248.23166217502;
bref(904)=14000;
bnorm(904)=20000;
incomemean(904)=13000;
rents(904,1)=98.4009102284286;
rents(904,2)=50;
rents(904,3)=50.78144958416515;
rents(904,4)=51.293686163923056;
rents(904,5)=50.66876635252981;
rents(904,6)=50.72211944451742;
rents(904,7)=50.934353555515486;
rents(904,8)=50.013269178791575;
rents(904,9)=50.0002589105707;
incomes(904,1)=22788.798552970944;
incomes(904,2)=22828.91888087807;
incomes(904,3)=22793.968082371834;
incomes(904,4)=22279.372087341006;
incomes(904,5)=22546.35625041833;
incomes(904,6)=22709.18352272614;
incomes(904,7)=21965.089880541345;
incomes(904,8)=22167.28216769539;
incomes(904,9)=22467.059616861003;
bref(905)=14000;
bnorm(905)=20000;
incomemean(905)=14000;
rents(905,1)=101.15228460038608;
rents(905,2)=50;
rents(905,3)=54.21253763987908;
rents(905,4)=58.22199413364119;
rents(905,5)=61.17331229814676;
rents(905,6)=63.358906765803376;
rents(905,7)=66.20651597543076;
rents(905,8)=66.88065016502438;
rents(905,9)=67.08057526992822;
incomes(905,1)=24062.71348701594;
incomes(905,2)=24297.43906928111;
incomes(905,3)=24374.889110966862;
incomes(905,4)=24118.56901160942;
incomes(905,5)=23967.10445531834;
incomes(905,6)=24389.741938006606;
incomes(905,7)=23700.587723519617;
incomes(905,8)=23548.503486480848;
incomes(905,9)=23711.151426724624;
bref(906)=14000;
bnorm(906)=20000;
incomemean(906)=15000;
rents(906,1)=99.60899198426834;
rents(906,2)=50;
rents(906,3)=57.779443284607;
rents(906,4)=64.73788754301279;
rents(906,5)=69.96326266763903;
rents(906,6)=74.98444477923233;
rents(906,7)=79.62444259702335;
rents(906,8)=81.69743787264248;
rents(906,9)=83.41675416092232;
incomes(906,1)=25372.211603101034;
incomes(906,2)=25959.33214407967;
incomes(906,3)=25619.828131461076;
incomes(906,4)=25217.72344973222;
incomes(906,5)=25379.661216485114;
incomes(906,6)=25449.080444591415;
incomes(906,7)=24865.497138662107;
incomes(906,8)=25008.007295997704;
incomes(906,9)=25510.48329608573;
bref(907)=14000;
bnorm(907)=20000;
incomemean(907)=16000;
rents(907,1)=103.90591956540788;
rents(907,2)=50;
rents(907,3)=60.48635562711867;
rents(907,4)=70.76758997501952;
rents(907,5)=79.50387829057057;
rents(907,6)=88.73241358574279;
rents(907,7)=96.53325660530685;
rents(907,8)=100.60064106515132;
rents(907,9)=104.25458503163078;
incomes(907,1)=26912.985515889268;
incomes(907,2)=27154.327691203267;
incomes(907,3)=26908.675467127665;
incomes(907,4)=26445.52081691277;
incomes(907,5)=26951.78182137726;
incomes(907,6)=27049.49333059845;
incomes(907,7)=26427.117308837787;
incomes(907,8)=26523.280991939402;
incomes(907,9)=26845.275420454873;
bref(908)=14000;
bnorm(908)=20000;
incomemean(908)=17000;
rents(908,1)=97.79564407084997;
rents(908,2)=50;
rents(908,3)=63.274578626143665;
rents(908,4)=78.32653671490138;
rents(908,5)=92.43814701447171;
rents(908,6)=106.06471397414859;
rents(908,7)=116.40018868485843;
rents(908,8)=123.23937827546834;
rents(908,9)=128.04738960423472;
incomes(908,1)=28164.459820379183;
incomes(908,2)=28311.01636233754;
incomes(908,3)=28581.56698009088;
incomes(908,4)=28268.408760633913;
incomes(908,5)=28570.236062950647;
incomes(908,6)=28300.746636426997;
incomes(908,7)=28086.324700217847;
incomes(908,8)=28144.678745335048;
incomes(908,9)=28116.689631453173;
bref(909)=14000;
bnorm(909)=20000;
incomemean(909)=18000;
rents(909,1)=98.99468648721263;
rents(909,2)=50;
rents(909,3)=67.13349943127078;
rents(909,4)=86.50535568069051;
rents(909,5)=103.92849731976779;
rents(909,6)=122.12156021382313;
rents(909,7)=137.04877826904044;
rents(909,8)=146.1054447631761;
rents(909,9)=153.52630052394971;
incomes(909,1)=29567.033981447905;
incomes(909,2)=29987.489346322116;
incomes(909,3)=29793.231461356867;
incomes(909,4)=29128.423691174852;
incomes(909,5)=29750.89823264067;
incomes(909,6)=29778.05379363367;
incomes(909,7)=29250.380321767727;
incomes(909,8)=29571.750279497468;
incomes(909,9)=29665.72161412491;
bref(910)=14000;
bnorm(910)=20000;
incomemean(910)=19000;
rents(910,1)=96.55957887620775;
rents(910,2)=50;
rents(910,3)=72.14991040011988;
rents(910,4)=100.27896686012103;
rents(910,5)=128.3285102224291;
rents(910,6)=155.49642328247023;
rents(910,7)=176.52176777015111;
rents(910,8)=185.35877763820778;
rents(910,9)=194.8631882844859;
incomes(910,1)=31505.086591845225;
incomes(910,2)=32386.931840476984;
incomes(910,3)=32679.350920308905;
incomes(910,4)=32021.82031072976;
incomes(910,5)=32333.40753371299;
incomes(910,6)=32454.9586858407;
incomes(910,7)=31778.75804722418;
incomes(910,8)=32481.07242624269;
incomes(910,9)=33351.241064587804;
bref(911)=14000;
bnorm(911)=23000;
incomemean(911)=10000;
rents(911,1)=98.71729494838804;
rents(911,2)=50;
rents(911,3)=50;
rents(911,4)=50;
rents(911,5)=50;
rents(911,6)=50;
rents(911,7)=50;
rents(911,8)=50;
rents(911,9)=50;
incomes(911,1)=18945.881814000473;
incomes(911,2)=19321.15261918542;
incomes(911,3)=19101.417700246973;
incomes(911,4)=19069.958758984125;
incomes(911,5)=19216.001879423573;
incomes(911,6)=19228.4471496693;
incomes(911,7)=18550.49339951742;
incomes(911,8)=18891.697522486313;
incomes(911,9)=19014.634011151396;
bref(912)=14000;
bnorm(912)=23000;
incomemean(912)=11000;
rents(912,1)=101.50658540071635;
rents(912,2)=50;
rents(912,3)=50;
rents(912,4)=50;
rents(912,5)=50;
rents(912,6)=50;
rents(912,7)=50;
rents(912,8)=50;
rents(912,9)=50;
incomes(912,1)=19871.774624517024;
incomes(912,2)=20237.26398483058;
incomes(912,3)=20201.07481116662;
incomes(912,4)=19907.828120834834;
incomes(912,5)=20097.57175740103;
incomes(912,6)=20323.542500164687;
incomes(912,7)=19948.268053004344;
incomes(912,8)=19882.689446616463;
incomes(912,9)=19781.827230076964;
bref(913)=14000;
bnorm(913)=23000;
incomemean(913)=12000;
rents(913,1)=100.71275847539232;
rents(913,2)=50;
rents(913,3)=50;
rents(913,4)=50;
rents(913,5)=50;
rents(913,6)=50;
rents(913,7)=50;
rents(913,8)=50;
rents(913,9)=50;
incomes(913,1)=21447.637971712225;
incomes(913,2)=21950.718940588362;
incomes(913,3)=21718.651604311788;
incomes(913,4)=21260.403186056297;
incomes(913,5)=21480.81597617316;
incomes(913,6)=21681.04356639617;
incomes(913,7)=21141.416392008778;
incomes(913,8)=21135.09790474513;
incomes(913,9)=21236.57094455745;
bref(914)=14000;
bnorm(914)=23000;
incomemean(914)=13000;
rents(914,1)=101.39388734688197;
rents(914,2)=50;
rents(914,3)=50.419016182102304;
rents(914,4)=50.78083364590421;
rents(914,5)=50.58130988642816;
rents(914,6)=50.35221150498606;
rents(914,7)=50.424633688793755;
rents(914,8)=50.00941472753843;
rents(914,9)=50;
incomes(914,1)=22763.158765140346;
incomes(914,2)=22696.56902521873;
incomes(914,3)=22736.27369374237;
incomes(914,4)=22474.32283073944;
incomes(914,5)=22394.727811364715;
incomes(914,6)=22495.43542333167;
incomes(914,7)=21980.444190526887;
incomes(914,8)=21869.008966902376;
incomes(914,9)=22042.170471766774;
bref(915)=14000;
bnorm(915)=23000;
incomemean(915)=14000;
rents(915,1)=100.32687007223169;
rents(915,2)=50;
rents(915,3)=53.59748056349655;
rents(915,4)=56.92654430325685;
rents(915,5)=59.24916999890834;
rents(915,6)=61.70106030173779;
rents(915,7)=63.63729873763728;
rents(915,8)=64.24073317190889;
rents(915,9)=64.84610762373248;
incomes(915,1)=23898.904007404028;
incomes(915,2)=24370.63534245446;
incomes(915,3)=24269.253803209718;
incomes(915,4)=23938.52168172512;
incomes(915,5)=24220.288907212387;
incomes(915,6)=24123.29190719486;
incomes(915,7)=23535.831206422736;
incomes(915,8)=23525.844337041402;
incomes(915,9)=24316.034211646172;
bref(916)=14000;
bnorm(916)=23000;
incomemean(916)=15000;
rents(916,1)=101.08680764435647;
rents(916,2)=50;
rents(916,3)=55.41976373983837;
rents(916,4)=60.94373037049216;
rents(916,5)=65.2870622013365;
rents(916,6)=70.04937172558706;
rents(916,7)=74.18008793945285;
rents(916,8)=76.614663166607;
rents(916,9)=77.98578745951427;
incomes(916,1)=25355.581002847528;
incomes(916,2)=25195.452308002186;
incomes(916,3)=25362.877296183848;
incomes(916,4)=24904.381866174674;
incomes(916,5)=25311.067207416763;
incomes(916,6)=25231.884353770187;
incomes(916,7)=24827.467652099116;
incomes(916,8)=24640.28076946827;
incomes(916,9)=24706.56244071067;
bref(917)=14000;
bnorm(917)=23000;
incomemean(917)=16000;
rents(917,1)=100.14162750957617;
rents(917,2)=50;
rents(917,3)=60.18085768260131;
rents(917,4)=70.55161596908644;
rents(917,5)=79.88982483259069;
rents(917,6)=89.42841832818492;
rents(917,7)=97.15515226170616;
rents(917,8)=102.75057297378336;
rents(917,9)=105.25802431467464;
incomes(917,1)=27012.445827411586;
incomes(917,2)=27673.178151091237;
incomes(917,3)=27526.047700232277;
incomes(917,4)=27231.28599124089;
incomes(917,5)=27502.5229072944;
incomes(917,6)=27186.862060907122;
incomes(917,7)=27005.964204142037;
incomes(917,8)=26504.44128411402;
incomes(917,9)=26945.71995220152;
bref(918)=14000;
bnorm(918)=23000;
incomemean(918)=17000;
rents(918,1)=100.46385565617828;
rents(918,2)=50;
rents(918,3)=62.19245454115492;
rents(918,4)=74.55424645368932;
rents(918,5)=87.20056541440772;
rents(918,6)=99.75912443474418;
rents(918,7)=111.62952023208715;
rents(918,8)=119.17125469646625;
rents(918,9)=124.33078330629061;
incomes(918,1)=28155.022156838757;
incomes(918,2)=28864.38879666379;
incomes(918,3)=28476.135619585497;
incomes(918,4)=28626.68403856688;
incomes(918,5)=28791.154913194114;
incomes(918,6)=28928.96401846429;
incomes(918,7)=28307.475634551625;
incomes(918,8)=28228.63262941493;
incomes(918,9)=28274.955116172896;
bref(919)=14000;
bnorm(919)=23000;
incomemean(919)=18000;
rents(919,1)=99.56373166321032;
rents(919,2)=50;
rents(919,3)=64.97455567531685;
rents(919,4)=81.2743044781415;
rents(919,5)=97.46763780440186;
rents(919,6)=113.7820888899986;
rents(919,7)=128.09989332456118;
rents(919,8)=137.10888703319182;
rents(919,9)=143.0971901120815;
incomes(919,1)=29343.753310485143;
incomes(919,2)=30088.057112914415;
incomes(919,3)=29770.84060639012;
incomes(919,4)=29501.653960525935;
incomes(919,5)=29704.462229206954;
incomes(919,6)=29692.03638882484;
incomes(919,7)=28991.636973818542;
incomes(919,8)=29028.55383558951;
incomes(919,9)=29368.413393415693;
bref(920)=14000;
bnorm(920)=23000;
incomemean(920)=19000;
rents(920,1)=100.1493396385876;
rents(920,2)=50;
rents(920,3)=68.1599314776206;
rents(920,4)=89.459649433114;
rents(920,5)=112.01862067342702;
rents(920,6)=134.66590786961845;
rents(920,7)=155.21198022886608;
rents(920,8)=165.33420433853865;
rents(920,9)=174.52906233392702;
incomes(920,1)=31345.153380611097;
incomes(920,2)=31873.977074214417;
incomes(920,3)=31678.166141331112;
incomes(920,4)=31533.15836582567;
incomes(920,5)=31863.05776915859;
incomes(920,6)=32062.116086333317;
incomes(920,7)=30986.896690806672;
incomes(920,8)=31492.600682697535;
incomes(920,9)=32199.995612869247;
bref(921)=14000;
bnorm(921)=26000;
incomemean(921)=10000;
rents(921,1)=98.64670659098812;
rents(921,2)=50.20566781039451;
rents(921,3)=50;
rents(921,4)=50;
rents(921,5)=50;
rents(921,6)=50;
rents(921,7)=50;
rents(921,8)=50;
rents(921,9)=50;
incomes(921,1)=19310.54812267456;
incomes(921,2)=19593.763987453054;
incomes(921,3)=19438.57813050984;
incomes(921,4)=19339.358250131587;
incomes(921,5)=19444.911297903393;
incomes(921,6)=19622.66440277103;
incomes(921,7)=19171.074260718437;
incomes(921,8)=18897.63390333453;
incomes(921,9)=19227.31317577611;
bref(922)=14000;
bnorm(922)=26000;
incomemean(922)=11000;
rents(922,1)=99.91192032115697;
rents(922,2)=50.060673933129955;
rents(922,3)=50;
rents(922,4)=50;
rents(922,5)=50;
rents(922,6)=50;
rents(922,7)=50;
rents(922,8)=50;
rents(922,9)=50;
incomes(922,1)=20327.255217432066;
incomes(922,2)=20496.57026866124;
incomes(922,3)=20351.02134994725;
incomes(922,4)=20102.956798912197;
incomes(922,5)=20464.723013625884;
incomes(922,6)=20484.061858405308;
incomes(922,7)=19834.15697727724;
incomes(922,8)=19837.033403347228;
incomes(922,9)=20063.252592015353;
bref(923)=14000;
bnorm(923)=26000;
incomemean(923)=12000;
rents(923,1)=100.23679123061252;
rents(923,2)=50.48154865886238;
rents(923,3)=50.19211862294058;
rents(923,4)=50.002746587290794;
rents(923,5)=50;
rents(923,6)=50;
rents(923,7)=50;
rents(923,8)=50;
rents(923,9)=50;
incomes(923,1)=21112.14991886655;
incomes(923,2)=21478.3355548788;
incomes(923,3)=21470.847826391528;
incomes(923,4)=21161.456429375932;
incomes(923,5)=21154.05978232741;
incomes(923,6)=21465.013054386156;
incomes(923,7)=20927.349303544386;
incomes(923,8)=20716.71372641605;
incomes(923,9)=21083.72238639844;
bref(924)=14000;
bnorm(924)=26000;
incomemean(924)=13000;
rents(924,1)=103.4167757468613;
rents(924,2)=50.451629536518055;
rents(924,3)=51.84124963033411;
rents(924,4)=52.75922165069996;
rents(924,5)=53.52390004175192;
rents(924,6)=54.568077712634384;
rents(924,7)=54.656351947847426;
rents(924,8)=54.17780978349642;
rents(924,9)=53.57405054276864;
incomes(924,1)=23035.912886691025;
incomes(924,2)=23451.5879463025;
incomes(924,3)=23235.037494154505;
incomes(924,4)=23197.27569635897;
incomes(924,5)=23383.22563049487;
incomes(924,6)=22887.22893807995;
incomes(924,7)=22543.72630864564;
incomes(924,8)=22334.410577231025;
incomes(924,9)=22636.10977801134;
bref(925)=14000;
bnorm(925)=26000;
incomemean(925)=14000;
rents(925,1)=99.79211628150219;
rents(925,2)=50.15550063647359;
rents(925,3)=52.86167230277282;
rents(925,4)=55.1967390074024;
rents(925,5)=56.952289985276686;
rents(925,6)=58.903466939662145;
rents(925,7)=60.24695919561336;
rents(925,8)=60.57741180303981;
rents(925,9)=61.48389317376812;
incomes(925,1)=23560.542087480666;
incomes(925,2)=24061.50245495971;
incomes(925,3)=23959.019540053418;
incomes(925,4)=23670.12051649597;
incomes(925,5)=23876.16074061549;
incomes(925,6)=23724.72075282222;
incomes(925,7)=23214.33034229715;
incomes(925,8)=23500.75061489222;
incomes(925,9)=23791.708654733047;
bref(926)=14000;
bnorm(926)=26000;
incomemean(926)=15000;
rents(926,1)=100.61416151544108;
rents(926,2)=50.27218320479499;
rents(926,3)=55.90491708614698;
rents(926,4)=61.07777233450894;
rents(926,5)=65.6765508220124;
rents(926,6)=69.94900487711635;
rents(926,7)=74.17673434212831;
rents(926,8)=75.80084175736947;
rents(926,9)=78.2650714567248;
incomes(926,1)=25369.917492026256;
incomes(926,2)=25628.955582584564;
incomes(926,3)=25451.51739484048;
incomes(926,4)=25254.410815661628;
incomes(926,5)=25296.36272029617;
incomes(926,6)=25408.857830591092;
incomes(926,7)=24429.45000254893;
incomes(926,8)=24907.649907234892;
incomes(926,9)=24893.033157064277;
bref(927)=14000;
bnorm(927)=26000;
incomemean(927)=16000;
rents(927,1)=100.92882394758512;
rents(927,2)=50.27626902474727;
rents(927,3)=58.64380484591142;
rents(927,4)=67.20368489189514;
rents(927,5)=74.72748361044908;
rents(927,6)=82.54228651998405;
rents(927,7)=90.04820848419686;
rents(927,8)=95.67445591321781;
rents(927,9)=99.97184505989183;
incomes(927,1)=27023.154856984722;
incomes(927,2)=27292.746299065744;
incomes(927,3)=27261.65866836073;
incomes(927,4)=26864.44446660864;
incomes(927,5)=27145.388263879922;
incomes(927,6)=27315.448313023386;
incomes(927,7)=26879.983108312874;
incomes(927,8)=26714.707015121778;
incomes(927,9)=27390.687279062677;
bref(928)=14000;
bnorm(928)=26000;
incomemean(928)=17000;
rents(928,1)=99.5061243720534;
rents(928,2)=50.26473060473972;
rents(928,3)=62.50289147460715;
rents(928,4)=75.50344165955151;
rents(928,5)=88.37911140851185;
rents(928,6)=102.12982974068807;
rents(928,7)=114.08526604476113;
rents(928,8)=122.22552529211971;
rents(928,9)=128.50416924304827;
incomes(928,1)=29065.605482936244;
incomes(928,2)=29566.75281352046;
incomes(928,3)=29357.47396972953;
incomes(928,4)=29068.539397308537;
incomes(928,5)=29481.59725573661;
incomes(928,6)=29310.882098579747;
incomes(928,7)=28579.441328013378;
incomes(928,8)=28589.5983914553;
incomes(928,9)=28969.24394285163;
bref(929)=14000;
bnorm(929)=26000;
incomemean(929)=18000;
rents(929,1)=98.60089884653935;
rents(929,2)=50.02828606093417;
rents(929,3)=63.23490821385718;
rents(929,4)=78.4504964308257;
rents(929,5)=93.0287952125136;
rents(929,6)=108.75963928765526;
rents(929,7)=122.87909069561786;
rents(929,8)=133.68007395847627;
rents(929,9)=140.7874520883717;
incomes(929,1)=29689.302777301393;
incomes(929,2)=30035.15536223053;
incomes(929,3)=30208.690917321353;
incomes(929,4)=29539.095270106987;
incomes(929,5)=30097.685925963317;
incomes(929,6)=29935.34083952028;
incomes(929,7)=29557.287071399416;
incomes(929,8)=29095.81566131231;
incomes(929,9)=30140.271102971896;
bref(930)=14000;
bnorm(930)=26000;
incomemean(930)=19000;
rents(930,1)=99.58040100300934;
rents(930,2)=50.34313912630144;
rents(930,3)=67.98662593955925;
rents(930,4)=88.98382854772596;
rents(930,5)=110.22481997941513;
rents(930,6)=133.72966434214865;
rents(930,7)=155.8749935297791;
rents(930,8)=170.0119042853607;
rents(930,9)=181.64367967318063;
incomes(930,1)=32210.985779810202;
incomes(930,2)=32698.813104429995;
incomes(930,3)=32589.112950471746;
incomes(930,4)=31883.087542372752;
incomes(930,5)=32704.877891549804;
incomes(930,6)=32825.663003678936;
incomes(930,7)=31864.264621555358;
incomes(930,8)=32147.477959161482;
incomes(930,9)=32218.93159261306;
bref(931)=14000;
bnorm(931)=29000;
incomemean(931)=10000;
rents(931,1)=99.76119655423278;
rents(931,2)=52.38745079840771;
rents(931,3)=50.21420901908188;
rents(931,4)=50;
rents(931,5)=50;
rents(931,6)=50;
rents(931,7)=50;
rents(931,8)=50;
rents(931,9)=50;
incomes(931,1)=19244.16296224425;
incomes(931,2)=19702.688630236597;
incomes(931,3)=19580.53226556423;
incomes(931,4)=19222.42192904832;
incomes(931,5)=19425.8450249291;
incomes(931,6)=19437.63473128813;
incomes(931,7)=19139.54678131644;
incomes(931,8)=19035.995384731355;
incomes(931,9)=19174.869765715055;
bref(932)=14000;
bnorm(932)=29000;
incomemean(932)=11000;
rents(932,1)=99.66236845649551;
rents(932,2)=52.47667287407604;
rents(932,3)=50.94561448634678;
rents(932,4)=50.22381711717117;
rents(932,5)=50.053913976750295;
rents(932,6)=50;
rents(932,7)=50;
rents(932,8)=50;
rents(932,9)=50;
incomes(932,1)=20567.352197428434;
incomes(932,2)=20988.20225843828;
incomes(932,3)=20829.381049268384;
incomes(932,4)=20849.16579353079;
incomes(932,5)=20523.914912052438;
incomes(932,6)=20854.817198725632;
incomes(932,7)=20279.367147696063;
incomes(932,8)=19960.84176263262;
incomes(932,9)=20401.309413764862;
bref(933)=14000;
bnorm(933)=29000;
incomemean(933)=12000;
rents(933,1)=98.38453463752053;
rents(933,2)=51.96234105670634;
rents(933,3)=51.02773347359179;
rents(933,4)=50.48704161462591;
rents(933,5)=50.123291130196336;
rents(933,6)=50.03918701014863;
rents(933,7)=50.01811644227094;
rents(933,8)=50;
rents(933,9)=50;
incomes(933,1)=21102.825696387994;
incomes(933,2)=21642.234945625183;
incomes(933,3)=21478.432945934193;
incomes(933,4)=21102.23236963434;
incomes(933,5)=21546.603244593844;
incomes(933,6)=21517.10634825815;
incomes(933,7)=20691.19100590807;
incomes(933,8)=20852.34808610146;
incomes(933,9)=21000.69888007769;
bref(934)=14000;
bnorm(934)=29000;
incomemean(934)=13000;
rents(934,1)=98.92908683968237;
rents(934,2)=51.99147826071025;
rents(934,3)=52.27751280662558;
rents(934,4)=52.230505758960874;
rents(934,5)=52.258239344101774;
rents(934,6)=52.113301444564534;
rents(934,7)=52.0995922978201;
rents(934,8)=51.66413577019206;
rents(934,9)=51.347664036983275;
incomes(934,1)=22576.140426669852;
incomes(934,2)=22838.672931744375;
incomes(934,3)=22586.913088990386;
incomes(934,4)=22610.274212864293;
incomes(934,5)=22551.93138007063;
incomes(934,6)=22604.47361441102;
incomes(934,7)=22144.460279608084;
incomes(934,8)=22121.75894730517;
incomes(934,9)=22326.68510122538;
bref(935)=14000;
bnorm(935)=29000;
incomemean(935)=14000;
rents(935,1)=98.93777964373464;
rents(935,2)=51.79248257642424;
rents(935,3)=54.41295908541788;
rents(935,4)=56.87245882298236;
rents(935,5)=58.22206968704659;
rents(935,6)=59.785247460046364;
rents(935,7)=61.60170199470022;
rents(935,8)=61.99317908154964;
rents(935,9)=61.79399003456991;
incomes(935,1)=23947.47940454142;
incomes(935,2)=24331.68231452933;
incomes(935,3)=24317.466774160748;
incomes(935,4)=23724.46268811308;
incomes(935,5)=23980.803585979073;
incomes(935,6)=24246.571087621785;
incomes(935,7)=23525.533218281525;
incomes(935,8)=23156.56935324824;
incomes(935,9)=23224.421593644845;
bref(936)=14000;
bnorm(936)=29000;
incomemean(936)=15000;
rents(936,1)=100.15196685733137;
rents(936,2)=52.140842434514205;
rents(936,3)=57.444946852044865;
rents(936,4)=62.36378189439867;
rents(936,5)=66.84342059867379;
rents(936,6)=70.92092624468495;
rents(936,7)=74.57794931988062;
rents(936,8)=76.47303455016532;
rents(936,9)=78.4737299093988;
incomes(936,1)=25353.46261636446;
incomes(936,2)=25955.57855421441;
incomes(936,3)=25740.095954471784;
incomes(936,4)=25624.13550767815;
incomes(936,5)=25646.358452660763;
incomes(936,6)=25593.0688447561;
incomes(936,7)=24803.52081738636;
incomes(936,8)=25091.840863974463;
incomes(936,9)=25372.366157718512;
bref(937)=14000;
bnorm(937)=29000;
incomemean(937)=16000;
rents(937,1)=100.3360505321166;
rents(937,2)=52.46208330664108;
rents(937,3)=59.788547482879345;
rents(937,4)=67.07689919069188;
rents(937,5)=74.40522470205333;
rents(937,6)=81.42818265576611;
rents(937,7)=87.41877033245157;
rents(937,8)=90.81158893021993;
rents(937,9)=94.46856016545831;
incomes(937,1)=26909.29773623073;
incomes(937,2)=27214.889538200834;
incomes(937,3)=27086.476334901887;
incomes(937,4)=27197.301111167635;
incomes(937,5)=27221.60700049123;
incomes(937,6)=27091.52941829606;
incomes(937,7)=26135.87340925234;
incomes(937,8)=26433.71579280602;
incomes(937,9)=26720.362501331914;
bref(938)=14000;
bnorm(938)=29000;
incomemean(938)=17000;
rents(938,1)=99.53706150729397;
rents(938,2)=52.12045662628794;
rents(938,3)=61.99500509465779;
rents(938,4)=71.97167240146224;
rents(938,5)=81.87472070731614;
rents(938,6)=91.33406886646715;
rents(938,7)=99.76591037681635;
rents(938,8)=105.1706715486242;
rents(938,9)=111.1265319755577;
incomes(938,1)=28380.203787234703;
incomes(938,2)=28780.802963043054;
incomes(938,3)=28439.933553132305;
incomes(938,4)=28413.915617541894;
incomes(938,5)=28459.481894708166;
incomes(938,6)=28242.64698465657;
incomes(938,7)=27446.799689780568;
incomes(938,8)=27968.579777346622;
incomes(938,9)=28219.087045716264;
bref(939)=14000;
bnorm(939)=29000;
incomemean(939)=18000;
rents(939,1)=99.15787364973204;
rents(939,2)=52.011098366000816;
rents(939,3)=63.87105698409781;
rents(939,4)=77.18407848012784;
rents(939,5)=90.3008475029222;
rents(939,6)=103.23596157067973;
rents(939,7)=115.4807830448463;
rents(939,8)=123.82854659500217;
rents(939,9)=131.4140486776961;
incomes(939,1)=29718.905402308163;
incomes(939,2)=30027.38925353003;
incomes(939,3)=30175.599002101415;
incomes(939,4)=29919.759534424;
incomes(939,5)=29850.53535592193;
incomes(939,6)=29942.47602180955;
incomes(939,7)=28968.241570277223;
incomes(939,8)=29252.229693375306;
incomes(939,9)=29686.351264542096;
bref(940)=14000;
bnorm(940)=29000;
incomemean(940)=19000;
rents(940,1)=100.13967067271308;
rents(940,2)=52.25064980711604;
rents(940,3)=68.07576489094494;
rents(940,4)=85.89200397179809;
rents(940,5)=104.17754823505965;
rents(940,6)=123.01125000850001;
rents(940,7)=140.22087210310312;
rents(940,8)=152.58057966051044;
rents(940,9)=163.70569145031993;
incomes(940,1)=31320.48115459296;
incomes(940,2)=32333.678992317327;
incomes(940,3)=32045.61543830813;
incomes(940,4)=31565.177575195106;
incomes(940,5)=31783.740624619863;
incomes(940,6)=31736.083788895292;
incomes(940,7)=31063.993732193416;
incomes(940,8)=31385.892788169927;
incomes(940,9)=31041.559064312947;
bref(941)=14000;
bnorm(941)=32000;
incomemean(941)=10000;
rents(941,1)=98.28668084287419;
rents(941,2)=55.44854764396384;
rents(941,3)=51.756473620339435;
rents(941,4)=50.125136405185614;
rents(941,5)=50;
rents(941,6)=50;
rents(941,7)=50;
rents(941,8)=50;
rents(941,9)=50;
incomes(941,1)=19049.504497387356;
incomes(941,2)=19623.625298016537;
incomes(941,3)=19500.575779841707;
incomes(941,4)=19466.684923562938;
incomes(941,5)=19313.574303196106;
incomes(941,6)=19210.10870477637;
incomes(941,7)=18901.227235982198;
incomes(941,8)=18936.627731611632;
incomes(941,9)=18864.39093638626;
bref(942)=14000;
bnorm(942)=32000;
incomemean(942)=11000;
rents(942,1)=98.75474052563517;
rents(942,2)=55.64215720402331;
rents(942,3)=52.52998093499629;
rents(942,4)=50.76075995358897;
rents(942,5)=50.08914268023109;
rents(942,6)=50;
rents(942,7)=50;
rents(942,8)=50;
rents(942,9)=50;
incomes(942,1)=20331.68501492223;
incomes(942,2)=20625.13553642537;
incomes(942,3)=20279.14297937824;
incomes(942,4)=20062.11324325576;
incomes(942,5)=20592.841519501773;
incomes(942,6)=20487.86491876127;
incomes(942,7)=19999.700832013295;
incomes(942,8)=19944.10414233358;
incomes(942,9)=20423.771753718425;
bref(943)=14000;
bnorm(943)=32000;
incomemean(943)=12000;
rents(943,1)=98.27600585555;
rents(943,2)=55.528592849201495;
rents(943,3)=53.84081511477685;
rents(943,4)=52.3851483107024;
rents(943,5)=51.13594965941816;
rents(943,6)=50.55794610816797;
rents(943,7)=50.21083132172577;
rents(943,8)=50.07354577377797;
rents(943,9)=50.005991510533036;
incomes(943,1)=21514.513539582098;
incomes(943,2)=21572.74900013223;
incomes(943,3)=21361.55033202868;
incomes(943,4)=21220.38838996131;
incomes(943,5)=21562.714278087846;
incomes(943,6)=21514.8125381257;
incomes(943,7)=21073.67777005749;
incomes(943,8)=20794.984296522052;
incomes(943,9)=21433.64195215403;
bref(944)=14000;
bnorm(944)=32000;
incomemean(944)=13000;
rents(944,1)=100.77617059537475;
rents(944,2)=56.68451421399846;
rents(944,3)=55.69773193582234;
rents(944,4)=54.48732757881277;
rents(944,5)=53.25869314696528;
rents(944,6)=52.64788978855619;
rents(944,7)=52.113494794548366;
rents(944,8)=51.56894628781741;
rents(944,9)=50.95293889204889;
incomes(944,1)=21678.345463479956;
incomes(944,2)=22326.51291739594;
incomes(944,3)=21980.539506551708;
incomes(944,4)=21789.772949544305;
incomes(944,5)=22199.559308514286;
incomes(944,6)=22103.034102223708;
incomes(944,7)=21899.067800933615;
incomes(944,8)=21572.70087740616;
incomes(944,9)=21747.886255306814;
bref(945)=14000;
bnorm(945)=32000;
incomemean(945)=14000;
rents(945,1)=99.1999923965997;
rents(945,2)=55.839179896282204;
rents(945,3)=58.46484027999832;
rents(945,4)=60.50916815714066;
rents(945,5)=62.14216201622927;
rents(945,6)=63.988596886162;
rents(945,7)=65.82279451502423;
rents(945,8)=66.94478364970128;
rents(945,9)=67.91562779678428;
incomes(945,1)=24069.829387842485;
incomes(945,2)=24593.974242357584;
incomes(945,3)=24347.582903237224;
incomes(945,4)=24134.24181628232;
incomes(945,5)=24431.05438175162;
incomes(945,6)=24555.69404975504;
incomes(945,7)=24117.263756273074;
incomes(945,8)=24141.67924787314;
incomes(945,9)=24123.62201905759;
bref(946)=14000;
bnorm(946)=32000;
incomemean(946)=15000;
rents(946,1)=100.44839877785691;
rents(946,2)=56.5151162241993;
rents(946,3)=61.08588438646806;
rents(946,4)=65.00741746938063;
rents(946,5)=68.44831977145571;
rents(946,6)=72.33113200326359;
rents(946,7)=75.25673969010747;
rents(946,8)=77.68051416659557;
rents(946,9)=79.00899370844257;
incomes(946,1)=25216.374083789393;
incomes(946,2)=25758.779818065937;
incomes(946,3)=25402.723213634137;
incomes(946,4)=25226.943710531217;
incomes(946,5)=25717.051270964817;
incomes(946,6)=25305.30533286754;
incomes(946,7)=25262.457082907113;
incomes(946,8)=24800.54706850441;
incomes(946,9)=24913.10948233672;
bref(947)=14000;
bnorm(947)=32000;
incomemean(947)=16000;
rents(947,1)=99.30685624180545;
rents(947,2)=56.219864869801555;
rents(947,3)=63.422192306884476;
rents(947,4)=70.06874776537359;
rents(947,5)=76.14458449170911;
rents(947,6)=81.75793553033691;
rents(947,7)=87.29825149450446;
rents(947,8)=91.01258947660793;
rents(947,9)=94.45634544787681;
incomes(947,1)=27045.00882711112;
incomes(947,2)=27541.01952756966;
incomes(947,3)=27125.294379388193;
incomes(947,4)=26908.44622929005;
incomes(947,5)=26889.115676293386;
incomes(947,6)=27017.92068657614;
incomes(947,7)=26476.185945863068;
incomes(947,8)=26488.329788236464;
incomes(947,9)=26557.13032839312;
bref(948)=14000;
bnorm(948)=32000;
incomemean(948)=17000;
rents(948,1)=97.15916352582653;
rents(948,2)=54.65941443052165;
rents(948,3)=63.67457323200242;
rents(948,4)=72.4707535650475;
rents(948,5)=81.88345572311866;
rents(948,6)=91.21870171863895;
rents(948,7)=100.62800033171236;
rents(948,8)=107.14624182135711;
rents(948,9)=111.6910010335973;
incomes(948,1)=28132.715824805113;
incomes(948,2)=28700.356431323544;
incomes(948,3)=28219.086233201575;
incomes(948,4)=28531.03235873409;
incomes(948,5)=28629.133988638063;
incomes(948,6)=28911.926757000714;
incomes(948,7)=27935.310747042888;
incomes(948,8)=27603.484721158784;
incomes(948,9)=28673.09725727327;
bref(949)=14000;
bnorm(949)=32000;
incomemean(949)=18000;
rents(949,1)=100.46201944619035;
rents(949,2)=56.627580411036476;
rents(949,3)=68.09212429494335;
rents(949,4)=80.75239994365477;
rents(949,5)=93.14465104095683;
rents(949,6)=104.46434737082619;
rents(949,7)=116.81620188757913;
rents(949,8)=125.79252569229966;
rents(949,9)=130.8878817119314;
incomes(949,1)=29847.949685532825;
incomes(949,2)=30154.6810741636;
incomes(949,3)=30258.19776772773;
incomes(949,4)=30003.678880937885;
incomes(949,5)=29704.339360458933;
incomes(949,6)=30487.035715841528;
incomes(949,7)=29704.40166457428;
incomes(949,8)=28721.987383043106;
incomes(949,9)=29287.639633573042;
bref(950)=14000;
bnorm(950)=32000;
incomemean(950)=19000;
rents(950,1)=99.22250732255027;
rents(950,2)=55.902322678084616;
rents(950,3)=70.68737712744795;
rents(950,4)=87.3180715150426;
rents(950,5)=104.82125896602163;
rents(950,6)=123.65537724590703;
rents(950,7)=140.77342509825678;
rents(950,8)=154.28994972392755;
rents(950,9)=166.78178059507937;
incomes(950,1)=31393.091654064705;
incomes(950,2)=32366.234305408107;
incomes(950,3)=32237.41188749877;
incomes(950,4)=32084.487670483744;
incomes(950,5)=32660.332466846598;
incomes(950,6)=32390.310821052444;
incomes(950,7)=31889.051697550527;
incomes(950,8)=32294.408309192262;
incomes(950,9)=31988.340598507937;
bref(951)=14000;
bnorm(951)=35000;
incomemean(951)=10000;
rents(951,1)=102.19105921925922;
rents(951,2)=61.313721630964174;
rents(951,3)=55.419506455919525;
rents(951,4)=51.42050329529684;
rents(951,5)=50.03270228086684;
rents(951,6)=50;
rents(951,7)=50;
rents(951,8)=50;
rents(951,9)=50;
incomes(951,1)=19480.193065219886;
incomes(951,2)=19511.718017843763;
incomes(951,3)=19460.83946906596;
incomes(951,4)=19245.568889471764;
incomes(951,5)=19576.728370589866;
incomes(951,6)=19506.876761087977;
incomes(951,7)=19141.17868128108;
incomes(951,8)=18840.01830950928;
incomes(951,9)=18950.489899367098;
bref(952)=14000;
bnorm(952)=35000;
incomemean(952)=11000;
rents(952,1)=99.36264017909639;
rents(952,2)=59.75745644899134;
rents(952,3)=55.78763482154051;
rents(952,4)=52.47947598585501;
rents(952,5)=50.681123277646925;
rents(952,6)=50.12620492408514;
rents(952,7)=50.00142691599099;
rents(952,8)=50;
rents(952,9)=50;
incomes(952,1)=20093.31583859054;
incomes(952,2)=20481.078606800573;
incomes(952,3)=20291.7737377558;
incomes(952,4)=20112.4314807771;
incomes(952,5)=20462.70640398973;
incomes(952,6)=20348.688839908995;
incomes(952,7)=19943.879856020907;
incomes(952,8)=20116.37089443043;
incomes(952,9)=20042.06958534239;
bref(953)=14000;
bnorm(953)=35000;
incomemean(953)=12000;
rents(953,1)=101.61603525668536;
rents(953,2)=60.9724698269135;
rents(953,3)=58.65048487617692;
rents(953,4)=56.55780103796154;
rents(953,5)=54.471550104050564;
rents(953,6)=52.880860993516194;
rents(953,7)=51.68164756977946;
rents(953,8)=50.812878243978794;
rents(953,9)=50.322876468195346;
incomes(953,1)=21625.760672234253;
incomes(953,2)=21716.636953044286;
incomes(953,3)=21626.966266512554;
incomes(953,4)=21370.42030583678;
incomes(953,5)=21453.589663353887;
incomes(953,6)=21472.86609113797;
incomes(953,7)=21466.190304843618;
incomes(953,8)=21271.814502542446;
incomes(953,9)=21435.494309745685;
bref(954)=14000;
bnorm(954)=35000;
incomemean(954)=13000;
rents(954,1)=99.4424394613318;
rents(954,2)=59.66455023867679;
rents(954,3)=58.86437319625003;
rents(954,4)=58.35684059308583;
rents(954,5)=57.64266633102571;
rents(954,6)=57.365123574891726;
rents(954,7)=56.794500077706225;
rents(954,8)=55.92778269009453;
rents(954,9)=55.303018214769516;
incomes(954,1)=22832.03671894663;
incomes(954,2)=22716.845839233603;
incomes(954,3)=22776.865202736408;
incomes(954,4)=22546.055005911032;
incomes(954,5)=22848.322193520424;
incomes(954,6)=22619.19542458255;
incomes(954,7)=22277.10209823926;
incomes(954,8)=22366.617633538983;
incomes(954,9)=22388.74933081739;
bref(955)=14000;
bnorm(955)=35000;
incomemean(955)=14000;
rents(955,1)=101.67760006317368;
rents(955,2)=61.00744942316251;
rents(955,3)=62.456407861433604;
rents(955,4)=63.90656089075005;
rents(955,5)=64.22441260969353;
rents(955,6)=65.20972986335033;
rents(955,7)=65.86602489178807;
rents(955,8)=65.84476261352079;
rents(955,9)=65.62838170092867;
incomes(955,1)=23775.934137203534;
incomes(955,2)=24221.79686555275;
incomes(955,3)=24266.586112599314;
incomes(955,4)=23553.075903895344;
incomes(955,5)=23978.89437813451;
incomes(955,6)=23925.694781984712;
incomes(955,7)=23512.519316434413;
incomes(955,8)=23363.904707624133;
incomes(955,9)=23724.288254914503;
bref(956)=14000;
bnorm(956)=35000;
incomemean(956)=15000;
rents(956,1)=99.01041456581726;
rents(956,2)=59.405605543959794;
rents(956,3)=63.50843588001315;
rents(956,4)=67.45836343411366;
rents(956,5)=70.7011268456303;
rents(956,6)=73.6030035979958;
rents(956,7)=76.60260979905185;
rents(956,8)=78.48351589819896;
rents(956,9)=80.52683797501899;
incomes(956,1)=25350.611816719567;
incomes(956,2)=25890.983472687385;
incomes(956,3)=25905.34231255284;
incomes(956,4)=25509.75794672779;
incomes(956,5)=25506.151074819863;
incomes(956,6)=25742.076005211326;
incomes(956,7)=25186.92022660488;
incomes(956,8)=25432.246413368368;
incomes(956,9)=25185.426774188167;
bref(957)=14000;
bnorm(957)=35000;
incomemean(957)=16000;
rents(957,1)=100.31022107038316;
rents(957,2)=60.21887448830763;
rents(957,3)=66.67663432285916;
rents(957,4)=72.63485682825903;
rents(957,5)=77.73976179893491;
rents(957,6)=83.57726157726137;
rents(957,7)=88.75715595908552;
rents(957,8)=92.2169919821503;
rents(957,9)=95.1898831292095;
incomes(957,1)=26935.88059008689;
incomes(957,2)=27354.111127604872;
incomes(957,3)=27040.75171231169;
incomes(957,4)=26676.74308593586;
incomes(957,5)=27307.748639941725;
incomes(957,6)=27109.83587014255;
incomes(957,7)=26448.4782331367;
incomes(957,8)=26370.87837249055;
incomes(957,9)=27301.266666312946;
bref(958)=14000;
bnorm(958)=35000;
incomemean(958)=17000;
rents(958,1)=101.22401494336245;
rents(958,2)=60.7331991990462;
rents(958,3)=69.24529978216117;
rents(958,4)=78.04531089662981;
rents(958,5)=86.30092104102188;
rents(958,6)=95.04556569832165;
rents(958,7)=102.80862234995728;
rents(958,8)=108.71575302198109;
rents(958,9)=113.30054673899599;
incomes(958,1)=28572.22237247385;
incomes(958,2)=28575.21407315041;
incomes(958,3)=28621.304831482088;
incomes(958,4)=28336.006413574207;
incomes(958,5)=28826.192218901444;
incomes(958,6)=28656.760290856608;
incomes(958,7)=28104.181886587026;
incomes(958,8)=27991.966444259106;
incomes(958,9)=28383.05059436904;
bref(959)=14000;
bnorm(959)=35000;
incomemean(959)=18000;
rents(959,1)=99.2681445701891;
rents(959,2)=59.57683764817184;
rents(959,3)=71.06485927635484;
rents(959,4)=82.677924593331;
rents(959,5)=93.5696141868458;
rents(959,6)=105.17520584182601;
rents(959,7)=116.39389587000883;
rents(959,8)=124.88954419347134;
rents(959,9)=131.41304253032584;
incomes(959,1)=29982.735286900344;
incomes(959,2)=30678.366636353374;
incomes(959,3)=30220.028671883872;
incomes(959,4)=29742.057100617832;
incomes(959,5)=30182.15522941179;
incomes(959,6)=30341.267721027947;
incomes(959,7)=29706.54455716129;
incomes(959,8)=29366.499232012397;
incomes(959,9)=30029.218251128685;
bref(960)=14000;
bnorm(960)=35000;
incomemean(960)=19000;
rents(960,1)=95.8608991514993;
rents(960,2)=57.544654406315196;
rents(960,3)=71.17674926905849;
rents(960,4)=85.6446659097368;
rents(960,5)=100.31209769028428;
rents(960,6)=116.15783317410506;
rents(960,7)=131.11143525738058;
rents(960,8)=143.03853421088328;
rents(960,9)=153.0575892169609;
incomes(960,1)=31906.60455057853;
incomes(960,2)=32292.673486896394;
incomes(960,3)=31955.745455474076;
incomes(960,4)=31537.972018656357;
incomes(960,5)=32105.851942538087;
incomes(960,6)=32044.871077237294;
incomes(960,7)=31355.900636823677;
incomes(960,8)=31447.5605728192;
incomes(960,9)=31611.39624079792;
bref(961)=14000;
bnorm(961)=38000;
incomemean(961)=10000;
rents(961,1)=100.9187123776262;
rents(961,2)=63.74118069739201;
rents(961,3)=58.296166076545184;
rents(961,4)=53.73942663670387;
rents(961,5)=51.216192926775825;
rents(961,6)=50.09354367216929;
rents(961,7)=50;
rents(961,8)=50;
rents(961,9)=50;
incomes(961,1)=19464.677730382467;
incomes(961,2)=19876.052784521482;
incomes(961,3)=19517.55271054271;
incomes(961,4)=19452.167211499276;
incomes(961,5)=19745.959188073906;
incomes(961,6)=19756.199025897822;
incomes(961,7)=19151.619188608638;
incomes(961,8)=18999.528112316755;
incomes(961,9)=19481.650548619804;
bref(962)=14000;
bnorm(962)=38000;
incomemean(962)=11000;
rents(962,1)=100.72526664369481;
rents(962,2)=63.61829762566668;
rents(962,3)=58.51667077385734;
rents(962,4)=54.020900823821904;
rents(962,5)=51.0424583487224;
rents(962,6)=50.10368510125132;
rents(962,7)=50;
rents(962,8)=50;
rents(962,9)=50;
incomes(962,1)=19641.331591765855;
incomes(962,2)=20024.517266620427;
incomes(962,3)=19563.436147615776;
incomes(962,4)=19492.186920564796;
incomes(962,5)=19931.65360970447;
incomes(962,6)=20017.76428162509;
incomes(962,7)=19217.23109416404;
incomes(962,8)=19296.159515900043;
incomes(962,9)=19578.024704388492;
bref(963)=14000;
bnorm(963)=38000;
incomemean(963)=12000;
rents(963,1)=98.9375209659305;
rents(963,2)=62.48797525670456;
rents(963,3)=59.737290909027884;
rents(963,4)=57.258963712938815;
rents(963,5)=55.032956953103614;
rents(963,6)=53.035430725456415;
rents(963,7)=51.68437101986697;
rents(963,8)=50.60358346867204;
rents(963,9)=50.12723043762932;
incomes(963,1)=21093.25916991034;
incomes(963,2)=21543.546895476127;
incomes(963,3)=21452.01233839187;
incomes(963,4)=21335.731854224443;
incomes(963,5)=21204.295351004886;
incomes(963,6)=21288.97400876094;
incomes(963,7)=20842.039527420533;
incomes(963,8)=20824.43170875075;
incomes(963,9)=20968.560564303894;
bref(964)=14000;
bnorm(964)=38000;
incomemean(964)=13000;
rents(964,1)=103.18138847286762;
rents(964,2)=65.16316735080358;
rents(964,3)=64.0200619222185;
rents(964,4)=62.90508404558011;
rents(964,5)=60.9188083983023;
rents(964,6)=59.993167069832424;
rents(964,7)=59.2260484116604;
rents(964,8)=57.90090254316398;
rents(964,9)=56.89372533240655;
incomes(964,1)=22381.914350294817;
incomes(964,2)=22864.04747635242;
incomes(964,3)=22756.310957717793;
incomes(964,4)=21951.384588340974;
incomes(964,5)=22606.900275345928;
incomes(964,6)=22637.43297144949;
incomes(964,7)=22102.7135502897;
incomes(964,8)=22262.960300396273;
incomes(964,9)=22262.933297296113;
bref(965)=14000;
bnorm(965)=38000;
incomemean(965)=14000;
rents(965,1)=98.9438214925972;
rents(965,2)=62.492309641184725;
rents(965,3)=63.45178659784255;
rents(965,4)=64.02672280433097;
rents(965,5)=63.93614664936598;
rents(965,6)=65.00657760180462;
rents(965,7)=65.34426069266158;
rents(965,8)=65.0739076471325;
rents(965,9)=64.84127726982351;
incomes(965,1)=23441.471108562317;
incomes(965,2)=24060.607090550846;
incomes(965,3)=23762.441766228058;
incomes(965,4)=23257.246300412207;
incomes(965,5)=24215.57616569342;
incomes(965,6)=23743.71966089734;
incomes(965,7)=23259.69139385398;
incomes(965,8)=23254.999419170046;
incomes(965,9)=23413.52141981761;
bref(966)=14000;
bnorm(966)=38000;
incomemean(966)=15000;
rents(966,1)=97.33094438894894;
rents(966,2)=61.474378791291464;
rents(966,3)=64.0212714701619;
rents(966,4)=66.69015973137064;
rents(966,5)=68.64499531035963;
rents(966,6)=70.87035709621354;
rents(966,7)=72.98399316141574;
rents(966,8)=73.20521240726833;
rents(966,9)=72.95908125982615;
incomes(966,1)=24942.880463731675;
incomes(966,2)=25006.769392990573;
incomes(966,3)=25156.579762568508;
incomes(966,4)=24754.516953956576;
incomes(966,5)=25107.785484357122;
incomes(966,6)=25212.094521453913;
incomes(966,7)=23976.668633541714;
incomes(966,8)=23703.535133194004;
incomes(966,9)=24440.433522884854;
bref(967)=14000;
bnorm(967)=38000;
incomemean(967)=16000;
rents(967,1)=97.33482324368767;
rents(967,2)=61.48033983549977;
rents(967,3)=67.40001217967064;
rents(967,4)=72.83334129564577;
rents(967,5)=77.59224348106513;
rents(967,6)=82.85263788212792;
rents(967,7)=87.66099422731268;
rents(967,8)=91.08254134758725;
rents(967,9)=94.75832704167122;
incomes(967,1)=26775.007516596765;
incomes(967,2)=27354.58940139322;
incomes(967,3)=27115.869893468596;
incomes(967,4)=26732.059934255474;
incomes(967,5)=27236.796693734625;
incomes(967,6)=27235.591704351616;
incomes(967,7)=26606.01145518955;
incomes(967,8)=26971.902530702628;
incomes(967,9)=26972.533350218106;
bref(968)=14000;
bnorm(968)=38000;
incomemean(968)=17000;
rents(968,1)=99.12452404950736;
rents(968,2)=62.60439607372735;
rents(968,3)=70.67850933091731;
rents(968,4)=79.00348717086933;
rents(968,5)=86.30968830258226;
rents(968,6)=94.12315118784505;
rents(968,7)=101.27045121578588;
rents(968,8)=106.79636763366557;
rents(968,9)=111.89142120093545;
incomes(968,1)=28322.49281973428;
incomes(968,2)=28781.1203548059;
incomes(968,3)=28820.585089411536;
incomes(968,4)=28275.10914617054;
incomes(968,5)=28735.219623968165;
incomes(968,6)=28630.889343726616;
incomes(968,7)=28026.661770763858;
incomes(968,8)=28057.925894503223;
incomes(968,9)=28101.368007582936;
bref(969)=14000;
bnorm(969)=38000;
incomemean(969)=18000;
rents(969,1)=99.80748771559017;
rents(969,2)=63.03594331300513;
rents(969,3)=72.71252327274422;
rents(969,4)=82.66335197467401;
rents(969,5)=90.94705119909788;
rents(969,6)=100.22187604274701;
rents(969,7)=109.33163466582916;
rents(969,8)=115.8982044701454;
rents(969,9)=121.84651589309455;
incomes(969,1)=29227.561503565357;
incomes(969,2)=29786.567939080276;
incomes(969,3)=29682.49654588795;
incomes(969,4)=28631.145420947072;
incomes(969,5)=29401.46529321457;
incomes(969,6)=29586.593660263592;
incomes(969,7)=28808.428031132127;
incomes(969,8)=28851.60280040764;
incomes(969,9)=29321.177046329507;
bref(970)=14000;
bnorm(970)=38000;
incomemean(970)=19000;
rents(970,1)=99.94477733228624;
rents(970,2)=63.12061862041694;
rents(970,3)=76.78609717849989;
rents(970,4)=91.54479239884887;
rents(970,5)=105.7134735197412;
rents(970,6)=120.68091487207963;
rents(970,7)=134.77056520463472;
rents(970,8)=145.88607393178611;
rents(970,9)=156.43540715028428;
incomes(970,1)=31758.672720503837;
incomes(970,2)=32574.870283719145;
incomes(970,3)=32537.825685568387;
incomes(970,4)=31864.322862685174;
incomes(970,5)=32348.269943147872;
incomes(970,6)=32250.980706872204;
incomes(970,7)=31626.888301940307;
incomes(970,8)=31753.32575826014;
incomes(970,9)=31793.197840685352;
bref(971)=14000;
bnorm(971)=41000;
incomemean(971)=10000;
rents(971,1)=100.96676781814445;
rents(971,2)=66.49326188248155;
rents(971,3)=60.75445910271175;
rents(971,4)=55.99356409354007;
rents(971,5)=52.20786816212254;
rents(971,6)=50.44574163645034;
rents(971,7)=50.03375131836537;
rents(971,8)=50;
rents(971,9)=50;
incomes(971,1)=19600.303812922775;
incomes(971,2)=19793.760082441448;
incomes(971,3)=19633.96833052958;
incomes(971,4)=19296.06333936221;
incomes(971,5)=19284.175945354626;
incomes(971,6)=19584.68646953365;
incomes(971,7)=18965.69438003657;
incomes(971,8)=19194.516233245602;
incomes(971,9)=19293.42634221851;
bref(972)=14000;
bnorm(972)=41000;
incomemean(972)=11000;
rents(972,1)=99.3724336954381;
rents(972,2)=65.44409774160732;
rents(972,3)=60.81433620586222;
rents(972,4)=57.12987917562538;
rents(972,5)=54.03325242497068;
rents(972,6)=51.87861959581256;
rents(972,7)=50.46433507737785;
rents(972,8)=50.08938760626788;
rents(972,9)=50;
incomes(972,1)=19810.6707135391;
incomes(972,2)=20316.733268162272;
incomes(972,3)=20308.67202065041;
incomes(972,4)=20083.807365332006;
incomes(972,5)=20263.39415332203;
incomes(972,6)=20184.44091710694;
incomes(972,7)=19907.829177819356;
incomes(972,8)=19727.118009827464;
incomes(972,9)=20013.807932895495;
bref(973)=14000;
bnorm(973)=41000;
incomemean(973)=12000;
rents(973,1)=99.1913452803569;
rents(973,2)=65.32800374885402;
rents(973,3)=62.51709404938319;
rents(973,4)=60.217669126270884;
rents(973,5)=58.03517569718172;
rents(973,6)=56.327118026733494;
rents(973,7)=54.86543930726587;
rents(973,8)=52.983788481801994;
rents(973,9)=51.844289612681166;
incomes(973,1)=21346.967484402907;
incomes(973,2)=21526.446949318848;
incomes(973,3)=21628.745567668448;
incomes(973,4)=21511.782609940034;
incomes(973,5)=21679.074422569432;
incomes(973,6)=21643.566555982827;
incomes(973,7)=20861.674002230953;
incomes(973,8)=21413.402177746233;
incomes(973,9)=21511.92301652997;
bref(974)=14000;
bnorm(974)=41000;
incomemean(974)=13000;
rents(974,1)=100.573806282914;
rents(974,2)=66.23461813897838;
rents(974,3)=65.02715191672412;
rents(974,4)=63.704973316238046;
rents(974,5)=62.22101798544764;
rents(974,6)=61.41327126007048;
rents(974,7)=60.51323486638787;
rents(974,8)=59.318043407736994;
rents(974,9)=58.62372483919614;
incomes(974,1)=22585.45680321482;
incomes(974,2)=22771.081533255496;
incomes(974,3)=22606.35894403479;
incomes(974,4)=22268.720106785393;
incomes(974,5)=22723.426302695916;
incomes(974,6)=22644.838957383035;
incomes(974,7)=22201.83116974837;
incomes(974,8)=22513.24813551166;
incomes(974,9)=22465.56985457668;
bref(975)=14000;
bnorm(975)=41000;
incomemean(975)=14000;
rents(975,1)=97.6120592629025;
rents(975,2)=64.27708998292722;
rents(975,3)=65.10686016756492;
rents(975,4)=65.51211829944134;
rents(975,5)=65.69575089494315;
rents(975,6)=66.36231047136596;
rents(975,7)=66.88312415601345;
rents(975,8)=66.82322614739061;
rents(975,9)=66.20654322157358;
incomes(975,1)=23811.21305456922;
incomes(975,2)=24074.868980863237;
incomes(975,3)=23831.226446145396;
incomes(975,4)=23664.6699615704;
incomes(975,5)=24064.53585907759;
incomes(975,6)=23980.253990395082;
incomes(975,7)=23580.352369959957;
incomes(975,8)=23119.634222572975;
incomes(975,9)=23612.400853509032;
bref(976)=14000;
bnorm(976)=41000;
incomemean(976)=15000;
rents(976,1)=99.39708227635202;
rents(976,2)=65.45871655473636;
rents(976,3)=68.90940854890532;
rents(976,4)=71.58220681150055;
rents(976,5)=73.97838035399398;
rents(976,6)=76.44504309060643;
rents(976,7)=78.87848829625565;
rents(976,8)=80.23189539240855;
rents(976,9)=81.14492654824062;
incomes(976,1)=25191.532480467187;
incomes(976,2)=25939.15675502243;
incomes(976,3)=25520.248079252255;
incomes(976,4)=25360.21224184608;
incomes(976,5)=25646.378302122623;
incomes(976,6)=25749.149049720647;
incomes(976,7)=24955.046489271826;
incomes(976,8)=24877.393303869114;
incomes(976,9)=25294.137607750366;
bref(977)=14000;
bnorm(977)=41000;
incomemean(977)=16000;
rents(977,1)=96.0696183592194;
rents(977,2)=63.25915913714966;
rents(977,3)=68.74362511367842;
rents(977,4)=74.40107409431707;
rents(977,5)=79.21891576002011;
rents(977,6)=84.10729582934215;
rents(977,7)=88.82074870949012;
rents(977,8)=91.7284334149053;
rents(977,9)=94.4269184035901;
incomes(977,1)=26814.476122981734;
incomes(977,2)=27302.68118077334;
incomes(977,3)=27511.760163147625;
incomes(977,4)=26939.958415007353;
incomes(977,5)=27199.786951308753;
incomes(977,6)=27253.666327365943;
incomes(977,7)=26411.060501666027;
incomes(977,8)=26466.586197256034;
incomes(977,9)=26751.52747667994;
bref(978)=14000;
bnorm(978)=41000;
incomemean(978)=17000;
rents(978,1)=97.1383676271816;
rents(978,2)=63.96829897567908;
rents(978,3)=71.42789694754445;
rents(978,4)=78.67649863164783;
rents(978,5)=85.01664433590824;
rents(978,6)=92.2390128355706;
rents(978,7)=98.81298329173774;
rents(978,8)=103.84676777688976;
rents(978,9)=108.4741670255753;
incomes(978,1)=28387.946601656804;
incomes(978,2)=28797.917759327607;
incomes(978,3)=28577.672833375895;
incomes(978,4)=28098.403218636515;
incomes(978,5)=28812.844213515822;
incomes(978,6)=28662.463844005677;
incomes(978,7)=27923.236404682302;
incomes(978,8)=28067.705302350907;
incomes(978,9)=28374.88368323025;
bref(979)=14000;
bnorm(979)=41000;
incomemean(979)=18000;
rents(979,1)=99.66555599738537;
rents(979,2)=65.63261544326691;
rents(979,3)=75.77412467093075;
rents(979,4)=85.63054744896472;
rents(979,5)=95.20792892084111;
rents(979,6)=105.59648446952014;
rents(979,7)=114.75531035548475;
rents(979,8)=123.72444433241557;
rents(979,9)=130.8110167558602;
incomes(979,1)=30235.039138111835;
incomes(979,2)=30595.84826986208;
incomes(979,3)=30084.961616480043;
incomes(979,4)=29854.61380825611;
incomes(979,5)=30367.260296688823;
incomes(979,6)=30097.12437580975;
incomes(979,7)=30238.521410670885;
incomes(979,8)=29797.571607919024;
incomes(979,9)=30280.547514521888;
bref(980)=14000;
bnorm(980)=41000;
incomemean(980)=19000;
rents(980,1)=101.53306828704216;
rents(980,2)=66.867309209623;
rents(980,3)=78.40793268880783;
rents(980,4)=90.60864405003412;
rents(980,5)=102.16413290060979;
rents(980,6)=114.23536914832212;
rents(980,7)=126.84561265045889;
rents(980,8)=136.2501876863689;
rents(980,9)=145.15480448481756;
incomes(980,1)=30997.358188834012;
incomes(980,2)=31432.442478285302;
incomes(980,3)=31376.372140247124;
incomes(980,4)=30928.748816276802;
incomes(980,5)=31156.513963242753;
incomes(980,6)=31755.34495544358;
incomes(980,7)=30791.639071374644;
incomes(980,8)=31102.407357024273;
incomes(980,9)=31127.22938616736;
bref(981)=14000;
bnorm(981)=44000;
incomemean(981)=10000;
rents(981,1)=98.66967772109004;
rents(981,2)=67.27614123134833;
rents(981,3)=62.09367385612676;
rents(981,4)=57.3800624575621;
rents(981,5)=53.51493888420791;
rents(981,6)=51.11058457842674;
rents(981,7)=50.21396349765969;
rents(981,8)=50.012882827638634;
rents(981,9)=50;
incomes(981,1)=19602.63786786299;
incomes(981,2)=19965.288457299896;
incomes(981,3)=19524.976337126704;
incomes(981,4)=19452.006081585172;
incomes(981,5)=19327.934455368937;
incomes(981,6)=19659.07621003866;
incomes(981,7)=19096.18765800736;
incomes(981,8)=19254.467885863924;
incomes(981,9)=19332.728625679385;
bref(982)=14000;
bnorm(982)=44000;
incomemean(982)=11000;
rents(982,1)=100.5019833641121;
rents(982,2)=68.52953866613511;
rents(982,3)=64.48790453427935;
rents(982,4)=60.932890722006384;
rents(982,5)=57.71985041660774;
rents(982,6)=55.2357013264979;
rents(982,7)=52.982392079307246;
rents(982,8)=51.42170157202565;
rents(982,9)=50.30597160055242;
incomes(982,1)=20754.738265082862;
incomes(982,2)=20884.66341002877;
incomes(982,3)=20800.09712052504;
incomes(982,4)=20571.71043534905;
incomes(982,5)=20873.04005442141;
incomes(982,6)=20692.169920991557;
incomes(982,7)=20614.057283077986;
incomes(982,8)=19939.20978613659;
incomes(982,9)=20321.79500702561;
bref(983)=14000;
bnorm(983)=44000;
incomemean(983)=12000;
rents(983,1)=102.49739918018855;
rents(983,2)=69.89376553364608;
rents(983,3)=66.14041792410036;
rents(983,4)=63.044758773984796;
rents(983,5)=60.184501577901145;
rents(983,6)=58.01163694031577;
rents(983,7)=56.10157780358604;
rents(983,8)=53.579359055277564;
rents(983,9)=51.90461140524189;
incomes(983,1)=21041.342043405286;
incomes(983,2)=21210.41629490492;
incomes(983,3)=21234.40326089435;
incomes(983,4)=21056.31576796206;
incomes(983,5)=21372.582870041613;
incomes(983,6)=21386.911991209407;
incomes(983,7)=20207.647058594575;
incomes(983,8)=20490.6871971651;
incomes(983,9)=20695.508774331727;
bref(984)=14000;
bnorm(984)=44000;
incomemean(984)=13000;
rents(984,1)=101.31199116700034;
rents(984,2)=69.08203489179895;
rents(984,3)=67.53788809672004;
rents(984,4)=65.99581300693598;
rents(984,5)=64.52318431828513;
rents(984,6)=63.472743494721286;
rents(984,7)=62.29783562331734;
rents(984,8)=61.048013754748524;
rents(984,9)=59.58020244806264;
incomes(984,1)=22175.58419179349;
incomes(984,2)=22703.073948382975;
incomes(984,3)=22587.493403625296;
incomes(984,4)=22482.505985098902;
incomes(984,5)=22762.09658117475;
incomes(984,6)=22538.16325943113;
incomes(984,7)=22256.59175907388;
incomes(984,8)=22043.75642846602;
incomes(984,9)=22344.008260065388;
bref(985)=14000;
bnorm(985)=44000;
incomemean(985)=14000;
rents(985,1)=99.08400530787236;
rents(985,2)=67.55370711508812;
rents(985,3)=67.81868869674838;
rents(985,4)=67.98950160593189;
rents(985,5)=67.7218918853157;
rents(985,6)=67.80481749999092;
rents(985,7)=67.79353850965865;
rents(985,8)=67.09041894349059;
rents(985,9)=66.57278591867266;
incomes(985,1)=23306.713200089922;
incomes(985,2)=23826.854491276255;
incomes(985,3)=23717.866331105946;
incomes(985,4)=23390.46069254273;
incomes(985,5)=23684.069020013765;
incomes(985,6)=23646.409168232578;
incomes(985,7)=23031.926818074106;
incomes(985,8)=23206.959259202806;
incomes(985,9)=23011.112653909724;
bref(986)=14000;
bnorm(986)=44000;
incomemean(986)=15000;
rents(986,1)=100.61433600209698;
rents(986,2)=68.59974723073283;
rents(986,3)=71.32144436064276;
rents(986,4)=73.41036774320435;
rents(986,5)=75.25352383765083;
rents(986,6)=77.16454265202589;
rents(986,7)=79.06008862562342;
rents(986,8)=79.4533649190475;
rents(986,9)=80.71871376659249;
incomes(986,1)=25103.699307871182;
incomes(986,2)=25736.343529938367;
incomes(986,3)=25381.87471957559;
incomes(986,4)=25322.531034062074;
incomes(986,5)=25472.943024012042;
incomes(986,6)=25441.98826153279;
incomes(986,7)=24577.407124038447;
incomes(986,8)=25298.645622744865;
incomes(986,9)=24568.876624574317;
bref(987)=14000;
bnorm(987)=44000;
incomemean(987)=16000;
rents(987,1)=100.18412278585906;
rents(987,2)=68.3064433188964;
rents(987,3)=73.07650331903363;
rents(987,4)=77.39215681551421;
rents(987,5)=80.70453600033656;
rents(987,6)=84.40575216864032;
rents(987,7)=88.01535813468871;
rents(987,8)=90.4996807081807;
rents(987,9)=92.24165105708538;
incomes(987,1)=26800.812720372694;
incomes(987,2)=27231.15647569362;
incomes(987,3)=27003.172094173504;
incomes(987,4)=26389.79881199837;
incomes(987,5)=26791.34558917868;
incomes(987,6)=26886.13446159503;
incomes(987,7)=26519.782136795;
incomes(987,8)=26174.7585796992;
incomes(987,9)=26323.757194421247;
bref(988)=14000;
bnorm(988)=44000;
incomemean(988)=17000;
rents(988,1)=99.78340092730404;
rents(988,2)=68.03057740992539;
rents(988,3)=74.41420464523767;
rents(988,4)=81.15342246434491;
rents(988,5)=86.82458634379049;
rents(988,6)=92.524011994521;
rents(988,7)=97.97972731673438;
rents(988,8)=102.58098181253266;
rents(988,9)=106.4766562139302;
incomes(988,1)=28149.4441900982;
incomes(988,2)=28351.19780727345;
incomes(988,3)=28616.351805525643;
incomes(988,4)=28044.41566728585;
incomes(988,5)=28201.155741179904;
incomes(988,6)=28250.54002359244;
incomes(988,7)=28009.208023530806;
incomes(988,8)=27857.48952747284;
incomes(988,9)=28257.934200054235;
bref(989)=14000;
bnorm(989)=44000;
incomemean(989)=18000;
rents(989,1)=97.6653986754994;
rents(989,2)=66.5904019439636;
rents(989,3)=75.59898946957887;
rents(989,4)=83.85868749713384;
rents(989,5)=92.24355172097924;
rents(989,6)=100.62123930603705;
rents(989,7)=108.75182466935125;
rents(989,8)=115.76588362181316;
rents(989,9)=122.42986723378083;
incomes(989,1)=30064.153962471286;
incomes(989,2)=30165.612737090927;
incomes(989,3)=29419.957597688597;
incomes(989,4)=29517.350922050573;
incomes(989,5)=29748.178607347814;
incomes(989,6)=29896.403055407725;
incomes(989,7)=29432.749487758734;
incomes(989,8)=29565.461074547962;
incomes(989,9)=30003.26703012473;
bref(990)=14000;
bnorm(990)=44000;
incomemean(990)=19000;
rents(990,1)=100.02221417364282;
rents(990,2)=68.1937055940192;
rents(990,3)=79.63187345425371;
rents(990,4)=91.6888994567766;
rents(990,5)=103.13462100548506;
rents(990,6)=115.72443279676057;
rents(990,7)=127.04342174648765;
rents(990,8)=136.8044492117056;
rents(990,9)=146.35136975479625;
incomes(990,1)=31626.623301648473;
incomes(990,2)=32003.35382195579;
incomes(990,3)=31931.66238799719;
incomes(990,4)=31387.47510741754;
incomes(990,5)=32078.262467862045;
incomes(990,6)=31724.590359115482;
incomes(990,7)=31330.226386076232;
incomes(990,8)=31684.587105114635;
incomes(990,9)=31840.876414137994;
bref(991)=14000;
bnorm(991)=47000;
incomemean(991)=10000;
rents(991,1)=98.36013439346573;
rents(991,2)=69.0611193006807;
rents(991,3)=63.50477976466098;
rents(991,4)=58.786382194427865;
rents(991,5)=54.94342883305949;
rents(991,6)=52.29686921105182;
rents(991,7)=50.79927182532217;
rents(991,8)=50.0602214869821;
rents(991,9)=50;
incomes(991,1)=19385.150396815792;
incomes(991,2)=19575.95100741856;
incomes(991,3)=19477.658871984404;
incomes(991,4)=19250.166473775993;
incomes(991,5)=19457.952727490498;
incomes(991,6)=19529.01519899012;
incomes(991,7)=19041.601660790366;
incomes(991,8)=19164.797849872226;
incomes(991,9)=19205.762507119936;
bref(992)=14000;
bnorm(992)=47000;
incomemean(992)=11000;
rents(992,1)=96.67714386427213;
rents(992,2)=67.88101166532671;
rents(992,3)=63.71817977776646;
rents(992,4)=60.16478277502466;
rents(992,5)=56.76683921893959;
rents(992,6)=54.33875829465798;
rents(992,7)=52.33620374475506;
rents(992,8)=50.845753270587686;
rents(992,9)=50.18320658315087;
incomes(992,1)=20114.128711496698;
incomes(992,2)=20470.059378203845;
incomes(992,3)=20462.93175283762;
incomes(992,4)=20108.754347822407;
incomes(992,5)=20392.721409664035;
incomes(992,6)=20419.984022833087;
incomes(992,7)=19725.454198674386;
incomes(992,8)=19695.020576928673;
incomes(992,9)=19841.827272769475;
bref(993)=14000;
bnorm(993)=47000;
incomemean(993)=12000;
rents(993,1)=97.54847939017976;
rents(993,2)=68.4950009112747;
rents(993,3)=65.7050694163942;
rents(993,4)=63.19310586425927;
rents(993,5)=60.78450604327072;
rents(993,6)=59.05209820106351;
rents(993,7)=57.36795214256934;
rents(993,8)=55.27827327043222;
rents(993,9)=53.649289191417374;
incomes(993,1)=21115.97417043818;
incomes(993,2)=21584.62323018161;
incomes(993,3)=21538.23472463364;
incomes(993,4)=21168.76566874464;
incomes(993,5)=21655.63915496152;
incomes(993,6)=21476.89935119608;
incomes(993,7)=20794.375096491694;
incomes(993,8)=21021.339092072772;
incomes(993,9)=21196.45237444872;
bref(994)=14000;
bnorm(994)=47000;
incomemean(994)=13000;
rents(994,1)=100.43724989821303;
rents(994,2)=70.51516100474078;
rents(994,3)=68.90746847418855;
rents(994,4)=67.13621615103709;
rents(994,5)=65.62663570125372;
rents(994,6)=64.5802332400169;
rents(994,7)=63.36324596694238;
rents(994,8)=62.06257779529189;
rents(994,9)=60.48940250875312;
incomes(994,1)=22331.776276307333;
incomes(994,2)=22708.36004776987;
incomes(994,3)=22347.69858161496;
incomes(994,4)=22388.982035666304;
incomes(994,5)=22639.124468887145;
incomes(994,6)=22414.151477549967;
incomes(994,7)=22204.80369675142;
incomes(994,8)=21844.899071722015;
incomes(994,9)=22179.368011229002;
bref(995)=14000;
bnorm(995)=47000;
incomemean(995)=14000;
rents(995,1)=99.34869155645586;
rents(995,2)=69.75090599944211;
rents(995,3)=70.49901353420753;
rents(995,4)=70.78835334062057;
rents(995,5)=71.18162434559963;
rents(995,6)=71.61107725602622;
rents(995,7)=72.08903571196124;
rents(995,8)=71.91361907435466;
rents(995,9)=71.76926535148559;
incomes(995,1)=23964.187468090815;
incomes(995,2)=24314.340194622357;
incomes(995,3)=24033.30730154061;
incomes(995,4)=24116.04498008727;
incomes(995,5)=24208.317021412764;
incomes(995,6)=24290.429852521294;
incomes(995,7)=23854.622659600653;
incomes(995,8)=23758.124446775368;
incomes(995,9)=23633.357588259474;
bref(996)=14000;
bnorm(996)=47000;
incomemean(996)=15000;
rents(996,1)=101.38970826464916;
rents(996,2)=71.1873282092296;
rents(996,3)=73.338327681345;
rents(996,4)=75.66083355139793;
rents(996,5)=77.00876385355097;
rents(996,6)=79.0403873274934;
rents(996,7)=81.00218546645125;
rents(996,8)=82.01669178816215;
rents(996,9)=82.9915497906648;
incomes(996,1)=25229.04420418859;
incomes(996,2)=25419.052490102218;
incomes(996,3)=25648.351782382917;
incomes(996,4)=25094.677159992312;
incomes(996,5)=25672.6688238467;
incomes(996,6)=25728.70788088975;
incomes(996,7)=25113.519742983888;
incomes(996,8)=25197.110649444425;
incomes(996,9)=24925.75206411878;
bref(997)=14000;
bnorm(997)=47000;
incomemean(997)=16000;
rents(997,1)=101.21097203170771;
rents(997,2)=71.0673167687939;
rents(997,3)=75.38280440606309;
rents(997,4)=79.89801975721885;
rents(997,5)=83.97992168370492;
rents(997,6)=87.9502942527364;
rents(997,7)=91.44488756732412;
rents(997,8)=93.91384903108127;
rents(997,9)=95.58243183018403;
incomes(997,1)=27508.112606975672;
incomes(997,2)=27166.782283650988;
incomes(997,3)=27390.51968230413;
incomes(997,4)=27244.57664015178;
incomes(997,5)=27424.11730339907;
incomes(997,6)=27286.705695761862;
incomes(997,7)=26657.631577271964;
incomes(997,8)=26302.460584181074;
incomes(997,9)=26784.529541405842;
bref(998)=14000;
bnorm(998)=47000;
incomemean(998)=17000;
rents(998,1)=102.62161617186626;
rents(998,2)=72.0528373907434;
rents(998,3)=78.46876187961054;
rents(998,4)=84.90571843830627;
rents(998,5)=90.35313038195363;
rents(998,6)=96.00615076069593;
rents(998,7)=101.24107440061339;
rents(998,8)=104.43568386928129;
rents(998,9)=108.23366138317088;
incomes(998,1)=28354.000857004332;
incomes(998,2)=28701.112981118546;
incomes(998,3)=28723.72253651465;
incomes(998,4)=28182.320046984954;
incomes(998,5)=28531.657694646594;
incomes(998,6)=28455.471577432334;
incomes(998,7)=27375.18685099012;
incomes(998,8)=28003.71102364866;
incomes(998,9)=28195.632020751196;
bref(999)=14000;
bnorm(999)=47000;
incomemean(999)=18000;
rents(999,1)=100.3146758066006;
rents(999,2)=70.42692222873248;
rents(999,3)=79.61747101651963;
rents(999,4)=88.90326245064587;
rents(999,5)=97.39761310987178;
rents(999,6)=106.55977310736039;
rents(999,7)=115.13807254983796;
rents(999,8)=122.51697313277405;
rents(999,9)=128.9979067844094;
incomes(999,1)=29883.061755962182;
incomes(999,2)=30762.14556165444;
incomes(999,3)=30624.962714624686;
incomes(999,4)=30022.962768801626;
incomes(999,5)=30613.698530400576;
incomes(999,6)=30510.48581840351;
incomes(999,7)=30176.266537966567;
incomes(999,8)=30020.826812084466;
incomes(999,9)=30370.47290351514;
bref(1000)=14000;
bnorm(1000)=47000;
incomemean(1000)=19000;
rents(1000,1)=98.97003341799461;
rents(1000,2)=69.48439280823227;
rents(1000,3)=80.50139257214552;
rents(1000,4)=91.64942688521562;
rents(1000,5)=103.04148161326782;
rents(1000,6)=114.83002910507173;
rents(1000,7)=126.62106475584842;
rents(1000,8)=135.81153172317704;
rents(1000,9)=145.78253556796892;
incomes(1000,1)=31391.58966132731;
incomes(1000,2)=32109.545213699545;
incomes(1000,3)=31749.68460116258;
incomes(1000,4)=31704.72915817014;
incomes(1000,5)=32058.85192477418;
incomes(1000,6)=32256.223711521892;
incomes(1000,7)=31273.496090046632;
incomes(1000,8)=31931.948184110144;
incomes(1000,9)=31355.517136601837;
|
753f1f57641df4733c295c5d58283e82879e74ba | 449d555969bfd7befe906877abab098c6e63a0e8 | /1862/CH24/EX24.1/C24P1.sce | 9b0a15575ac7623d530c8de627d5db8cc483b630 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 588 | sce | C24P1.sce | clear
clc
//to find entropy change of water during process
//Given:
//mass of water
m = 1.8//in Kg
//initial temperature of water and hot plate
Ti = 20//in degree celsius
//final temperature of hot plate
Tf = 100//in degree celsius
//heat capacity of water
c = 4190//in J/Kg.K
//Solution:
//applying laws of thermodynamics
//applying formula for entropy change
//entropy change of water during process
delta_S = m*c*(log((Tf+273)/(Ti+273)))//in J/K //taking temperatures in K
printf ("\n\n Entropy change of water during process delta_S = \n\n %4i J/K" ,delta_S);
|
ab380729c954734070fe3b11ae107c68c9f2df6a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH12/EX12.3/12_3.sce | f1e810de9af54ba2677b8330a1f654ceec45c957 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 390 | sce | 12_3.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 12.3
//calculation of the time period of oscillation of the particle
//given data
m=200*10^-3//mass(in kg) of the particle
k=80//spring constant(in N/m)
//calculation
T=2*%pi*sqrt(m/k)//formula of time period
printf('the time period of oscillation of the particle is %3.2f s',T)
|
7163afc9bbdbd97f07047cc038b25240096b66ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /278/CH21/EX21.1/ex_21_1.sce | e83fac25cdd0eb65571a04152491c9c9579a4b94 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 898 | sce | ex_21_1.sce |
clc
//soltuion
//given
RP=15000//W//rated power
N1=1000//rpm
N2=350//rpm
VR=N1/N2
//ref table 21.5,numbr of teeth on smaller sprocket is T1=25
T1=25
T2=T1*N1/N2
K1=1.5//load factor
K2=1//lubricaiton factor
K3=1.25//rating factor
Ks=K1*K2*K3//service factor
DP=Ks*RP//design power
//from table 21.4,corrs to N1=1000rpm,power transmittd for chain 12 is 15.65 kW per strand,
//therefore chain 12 with 2 strands is used tot ransmit power
//using table 21.1
p=19.05//pitch//mm
d=12.07//mm//roller dia
w=11.68//mm//min width of roller
Wb=59000//N
//d1=p*cosec(180/T1)=0.152//m
d1=0.152//m
//d2=p*cosec(180/T2)=0.436//m
d2=0.436//m
printf("the itch circle dia of smalla nd large sprocket is,%f mm\n,%f mm\n",d1,d2)
v1=%pi*d1*N1/60//m/s
W=RP/v1//N
Fs=Wb/W
c=30*p//mm//min center dis
x=c-4//correct centre dis
K=(T1+T2)/2+(2*x/p)+[(T1-T2)/(2*%pi)]^2*p/x//mm
L=K*p
printf("the length of chian is,%f mm\n",L) |
6f1316c603dc40b41095669f7a6fc32013b1380d | 47adabef6eb8924aff50314b05cfd89f90e19aec | /macros/http_post_url.sci | 9279197df2815a171a4943e1366044af3a607dd6 | [
"BSD-3-Clause"
] | permissive | sengupta/scilab-http | acf41286543dfadb62bfbf1fc74d19cd6ec65815 | 114ac7ab3a55e08399a82e8a1c084bc23cace3a3 | refs/heads/master | 2021-03-12T20:38:08.900774 | 2012-04-03T13:14:33 | 2012-04-03T13:14:33 | 3,886,870 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 201 | sci | http_post_url.sci | function response = http_post_url(URL, varargin)
[host, resource, port] = http_split(URL) // Get hostname and resource from URL
response = http_post(host, resource, port, varargin)
endfunction
|
f3d417030ab9d1d1c129e6281b7f79a14446988e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1847/CH7/EX7.3/Ch07Ex3.sce | 4aae2c44df6184449aceb18b8cfd1bca3be3eb1e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 925 | sce | Ch07Ex3.sce | // Scilab Code Ex7.3:: Page-7.8 (2009)
clc; clear;
n1 = 1.46; // Refractive index of the core material
delta = 0.01; // Relative refractive index difference
NA = n1*sqrt(2*delta); // Numerical aperture for the fibre
theta_Q = %pi*NA^2; // Solid acceptance angle of optical fibre for small angles, radians
// As relative refractive index, delta = 1-n2/n1, solving for n2
n2 = n1*(1-delta); // Refractive index of cladding
phi_C = asind(n2/n1); // Critical angle of optical fibre, degrees
printf("\nThe numerical aperture for the fibre = %4.2f", NA);
printf("\nThe solid acceptance angle of the optical fibre = %4.2f radians", theta_Q);
printf("\nThe critical angle of optical fibre = %4.1f degrees", phi_C);
// Result
// The numerical aperture for the fibre = 0.21
// The solid acceptance angle of the optical fibre = 0.13 radians
// The critical angle of optical fibre = 81.9 degrees
|
0d21ed55825a4291a1015130a7e3f31e1d3c3156 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2789/CH9/EX9.2/Ex9_2.sce | 7d8d9947e526485bfc6a9f9424e78b50aaff132d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 403 | sce | Ex9_2.sce | clear;
clc;
//page no. 285
T = 100;// degreeF
d = 3;// inches
Re = 80000;// Reynolds number
e = 0.006;// inches
l = 1000;//feet
f1 = 0.021;//friction factor
nu = 0.729*10^-5;// sqft/sec
V = Re*nu/0.25;
h_L1 = f1*(l/0.25)*(V^2 /(2*32.2));
f = 0.316/Re^0.25;
h_L = (f/f1)*h_L1;
printf('Head loss expected = %.1f ft\n and head loss expected if the pipe were smooth = %.2f ft',h_L1,h_L);
|
51bf12cd3ecae10f011d4c15cb1c61eed243c591 | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /[MCA-8] Auto Balanced Fast Strafes.sce | 8d3c36198140d69743a31838f99032122da0426c | [] | 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 | 71,633 | sce | [MCA-8] Auto Balanced Fast Strafes.sce | Name=[MCA-8] Auto Balanced Fast Strafes
PlayerCharacters=ABFS Challenger
BotCharacters=ABFS Bot Rotation.rot
IsChallenge=true
Timelimit=60.0
PlayerProfile=ABFS Challenger
AddedBots=ABFS Bot Rotation.rot
PlayerMaxLives=0
BotMaxLives=21
PlayerTeam=1
BotTeams=2
MapName=fanwise_field.map
MapScale=1.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=false
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1.0
ScorePerDamage=0.1
ScorePerKill=1000.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=14.3
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Tracking
WeaponHeroTag=LG
DifficultyTag=3
AuthorsTag=pleasewait
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=There are 21 levels of target's velocity (Lv 1 - Lv 20, Max). You can eliminate target if your accuracy is more than 50 % (DPS is about 143 and "Health Regen Per Sec" is 72).
GameVersion=1.0.7.2
ScorePerDistance=0.0
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=ABFS Target Lv 01
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 01
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 02
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 02
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 03
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 03
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 04
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 04
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 05
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 05
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 06
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 06
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 07
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 07
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 08
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 08
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 09
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 09
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 10
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 10
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 11
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 11
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 12
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 12
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 13
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 13
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 14
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 14
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 15
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 15
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 16
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 16
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 17
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 17
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 18
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 18
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 19
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 19
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv 20
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv 20
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Profile]
Name=ABFS Target Lv Max
DodgeProfileNames=ABFS Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=3.0
WeaponProfileWeights=1.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=ABFS Target Lv Max
SeeThroughWalls=true
NoDodging=false
NoAiming=false
[Bot Rotation Profile]
Name=ABFS Bot Rotation
ProfileNames=ABFS Target Lv 01;ABFS Target Lv 02;ABFS Target Lv 03;ABFS Target Lv 04;ABFS Target Lv 05;ABFS Target Lv 06;ABFS Target Lv 07;ABFS Target Lv 08;ABFS Target Lv 09;ABFS Target Lv 10;ABFS Target Lv 11;ABFS Target Lv 12;ABFS Target Lv 13;ABFS Target Lv 14;ABFS Target Lv 15;ABFS Target Lv 16;ABFS Target Lv 17;ABFS Target Lv 18;ABFS Target Lv 19;ABFS Target Lv 20;ABFS Target Lv Max
ProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
Randomized=false
[Character Profile]
Name=ABFS Challenger
MaxHealth=100.0
WeaponProfileNames=ABFS LG;;;;;;;
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=true
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=true
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=72.0
MainBBRadius=16.0
MainBBHasHead=false
MainBBHeadRadius=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=16.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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
[Character Profile]
Name=ABFS Target Lv 01
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=64.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 02
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=80.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 03
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=96.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 04
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=112.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 05
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=128.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 06
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=144.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 07
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=160.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 08
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=176.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 09
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=192.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 10
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=208.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 11
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=224.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 12
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=240.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 13
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=256.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 14
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=272.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 15
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=288.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 16
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=304.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 17
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 18
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=336.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 19
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=352.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv 20
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=368.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Character Profile]
Name=ABFS Target Lv Max
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
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=384.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=true
CanPogoJump=false
CanCrouchInAir=true
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=16.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=72.0
ProjBBRadius=12.0
ProjBBHasHead=false
ProjBBHeadRadius=16.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=72.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
[Dodge Profile]
Name=ABFS Strafes
MaxTargetDistance=560.0
MinTargetDistance=512.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.000001
MaxFBTimeChange=0.000001
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.15
TargetStrafeMaxDelay=0.3
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=ABFS LG
Type=Hitscan
ShotsPerClick=1
DamagePerShot=10.0
KnockbackFactor=0.0
TimeBetweenShots=0.07
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=1.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.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=No Scope
ADSFOVOverride=50.529999
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
-800.000000 256.000000 1264.000000
1312.000000 256.000000 1264.000000
1312.000000 256.000000 128.000000
-800.000000 256.000000 128.000000
-800.000000 240.000000 1264.000000
1312.000000 240.000000 1264.000000
1312.000000 240.000000 128.000000
-800.000000 240.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
112.000000 512.000000 288.000000
128.000000 512.000000 288.000000
128.000000 512.000000 128.000000
112.000000 512.000000 128.000000
112.000000 256.000000 288.000000
128.000000 256.000000 288.000000
128.000000 256.000000 128.000000
112.000000 256.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
128.000000 512.000000 144.000000
384.000000 512.000000 144.000000
384.000000 512.000000 128.000000
128.000000 512.000000 128.000000
128.000000 256.000000 144.000000
384.000000 256.000000 144.000000
384.000000 256.000000 128.000000
128.000000 256.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
384.000000 512.000000 288.000000
400.000000 512.000000 288.000000
400.000000 512.000000 128.000000
384.000000 512.000000 128.000000
384.000000 256.000000 288.000000
400.000000 256.000000 288.000000
400.000000 256.000000 128.000000
384.000000 256.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
128.000000 512.000000 288.000000
384.000000 512.000000 288.000000
384.000000 512.000000 272.000000
128.000000 512.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
1298.856567 512.000000 816.143555
1306.856812 512.000000 802.287354
406.190399 512.000000 282.287415
398.190430 512.000000 296.143799
1298.856567 256.000000 816.143555
1306.856812 256.000000 802.287354
406.190399 256.000000 282.287415
398.190430 256.000000 296.143799
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
-794.856262 512.000000 802.143311
-786.856323 512.000000 815.999756
113.810181 512.000000 295.999695
105.810120 512.000000 282.143311
-794.856262 256.000000 802.143311
-786.856323 256.000000 815.999756
113.810181 256.000000 295.999695
105.810120 256.000000 282.143311
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
-773.000000 256.000000 808.000000
-623.369507 256.000000 984.047119
-786.856323 256.000000 815.999756
-635.210999 512.000000 994.417297
-786.856323 512.000000 815.999756
-635.210999 256.000000 994.417297
-623.369507 512.000000 984.047119
-773.000000 512.000000 808.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000
brush
vertices
-623.369507 256.000000 984.047119
-414.456146 256.000000 1116.083984
-635.210999 256.000000 994.417297
-423.484619 512.000000 1128.231812
-635.210999 512.000000 994.417297
-423.484619 256.000000 1128.231812
-414.456146 512.000000 1116.083984
-623.369507 512.000000 984.047119
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-414.456146 256.000000 1116.083984
-163.198822 256.000000 1204.111450
-423.484619 256.000000 1128.231812
-168.843933 512.000061 1217.444580
-423.484619 512.000000 1128.231812
-168.843933 256.000000 1217.444580
-163.198822 512.000061 1204.111450
-414.456146 512.000000 1116.083984
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
-163.198822 256.000000 1204.111450
113.463715 256.000000 1248.130859
-168.843933 256.000000 1217.444580
111.544113 512.000000 1262.056641
-168.843933 512.000061 1217.444580
111.544121 256.000000 1262.056641
113.463707 512.000000 1248.130859
-163.198822 512.000061 1204.111450
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 4 3 6 0x00000000
brush
vertices
113.463715 256.000000 1248.130859
398.592865 255.999985 1248.143188
111.544121 256.000000 1262.056641
400.512817 512.000000 1262.068848
111.544121 512.000000 1262.056641
400.512817 255.999985 1262.068848
398.592865 512.000000 1248.143188
113.463715 512.000000 1248.130859
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
brush
vertices
398.592865 255.999985 1248.143188
675.249695 256.000000 1204.149658
400.512817 255.999985 1262.068848
680.895142 512.000061 1217.482788
400.512817 512.000000 1262.068848
680.895142 256.000000 1217.482788
675.249695 512.000061 1204.149658
398.592865 512.000000 1248.143188
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
brush
vertices
675.249695 256.000000 1204.149658
926.495972 256.000000 1116.151001
680.895142 256.000000 1217.482788
935.524658 512.000000 1128.299072
680.895142 512.000061 1217.482788
935.524658 256.000000 1128.299072
926.495972 512.000000 1116.151001
675.249695 512.000061 1204.149658
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 1 6 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 1 0 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 4 3 6 0x00000000
brush
vertices
926.495972 256.000000 1116.151001
1135.391968 255.999985 984.148560
935.524658 256.000000 1128.299072
1147.233765 511.999939 994.518921
935.524658 512.000000 1128.299072
1147.233765 255.999985 994.518921
1135.391968 511.999939 984.148560
926.495972 512.000000 1116.151001
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 7 4 3 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000
brush
vertices
1135.391968 255.999985 984.148560
1285.000000 256.000000 808.143555
1147.233765 255.999985 994.518921
1298.856567 512.000000 816.143555
1147.233765 511.999939 994.518921
1298.856567 256.000000 816.143555
1285.000000 512.000000 808.143555
1135.391968 511.999939 984.148560
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 1 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 7 6 0x00000000
brush
vertices
-800.000000 528.000000 1264.000000
1312.000000 528.000000 1264.000000
1312.000000 528.000000 128.000000
-800.000000 528.000000 128.000000
-800.000000 512.000000 1264.000000
1312.000000 512.000000 1264.000000
1312.000000 512.000000 128.000000
-800.000000 512.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
entity
type 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 800.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
75526ab15421278f136e6f9ac6051639752febc4 | 931df7de6dffa2b03ac9771d79e06d88c24ab4ff | /Viper HS Mid Mixed Strafes.sce | 15fe3fe464ff486fc0d2a92eda34230aa36ad35d | [] | no_license | MBHuman/Scenarios | be1a722825b3b960014b07cda2f12fa4f75c7fc8 | 1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137 | refs/heads/master | 2023-01-14T02:10:25.103083 | 2020-11-21T16:47:14 | 2020-11-21T16:47:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 46,455 | sce | Viper HS Mid Mixed Strafes.sce | Name=HS the Bot Rifle Mid Mixed Strafes
PlayerCharacters=Quaker
BotCharacters=Quaker Bot Fast Strafes.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=Quaker
AddedBots=Quaker Bot Fast Strafes.bot
PlayerMaxLives=0
BotMaxLives=0
PlayerTeam=1
BotTeams=2
MapName=rifleboxerhalf02.map
MapScale=3.8
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=true
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=3.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=
WeaponHeroTag=Lightning Gun, LG
DifficultyTag=4
AuthorsTag=Aestheticgoose, Watsyurdeal
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=mid range long strafes, but with headshots
GameVersion=2.0.2.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
LockFOVRange=false
LockedFOVMin=60.0
LockedFOVMax=120.0
LockedFOVScale=Clamped Horizontal
[Aim Profile]
Name=At Feet
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Low Skill At Feet
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Low Skill
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=Quaker Bot Fast Strafes
DodgeProfileNames=Mid Long Strafes;Mid Short Strafes;Mid Long Strafes Jumping
DodgeProfileWeights=1.0;1.0;0.5
DodgeProfileMaxChangeTime=1.5
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Quaker thin
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Character Profile]
Name=Quaker
MaxHealth=300.0
WeaponProfileNames=Rifle Hipfire HSB;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=1.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.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=320.0
MainBBRadius=58.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Quaker thin
MaxHealth=300.0
WeaponProfileNames=;;LG;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=1.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1300.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.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=255.0
MainBBRadius=40.0
MainBBHasHead=true
MainBBHeadRadius=30.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=255.0
ProjBBRadius=40.0
ProjBBHasHead=true
ProjBBHeadRadius=30.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=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Dodge Profile]
Name=Mid Long Strafes
MaxTargetDistance=1800.0
MinTargetDistance=1600.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.75
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.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.125
BlockedMovementReactionMax=0.25
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Mid Short Strafes
MaxTargetDistance=1800.0
MinTargetDistance=1600.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.25
MaxLRTimeChange=0.75
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.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.125
BlockedMovementReactionMax=0.25
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Mid Long Strafes Jumping
MaxTargetDistance=1800.0
MinTargetDistance=1600.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.75
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=1.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.0001
MaxJumpTime=0.0001
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.25
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Weapon Profile]
Name=Rifle Hipfire HSB
Type=Hitscan
ShotsPerClick=1
DamagePerShot=0.0
KnockbackFactor=0.1
TimeBetweenShots=0.25
Pierces=false
Category=SemiAutoNoPrehold
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=1.0
ReloadTimeFromPartial=0.8
DamageFalloffStartDistance=3000.0
DamageFalloffStopDistance=4000.0
DamageAtMaxRange=20.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=true
ADSZoomDelay=0.1
ADSZoomSensFactor=0.5146
ADSMoveFactor=0.8
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=Rifle Scoped HSB
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=1.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=0.0
RecoilADSScale=0.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=true
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=65.809998
ADSFOVScale=Quake Champions
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Asp
WeaponAnimation=Primary
UseIncReload=true
IncReloadStartupTime=0.5
IncReloadLoopTime=0.25
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.25
IncReloadCancelWithShoot=false
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Hunting Rifle
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=Gunshot
ParticleBodyImpact=Blood
ParticleProjectileTrail=None
ParticleHitscanTrace=Rifle
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=2.0,3.0,0.75,1.85
SpreadSCA=2.0,3.0,0.75,1.85
SpreadMSA=2.0,3.0,0.75,1.85
SpreadMCA=2.0,3.0,0.75,1.85
SpreadSSH=2.0,3.0,0.75,1.85
SpreadSCH=2.0,3.0,0.75,1.85
SpreadMSH=2.0,3.0,0.75,1.85
SpreadMCH=2.0,3.0,0.75,1.85
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=0.0
RecoilAutoReset=true
TimeToRecoilPeak=0.1
TimeToRecoilReset=0.1
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=1.5
AADeadZone=0.0
AAFOV=75.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=true
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.0
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=1.0
PSRCapUp=4.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=10.0
PSR0=1.75,0.25
PSR1=1.75,-0.25
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=LG
Type=Hitscan
ShotsPerClick=1
DamagePerShot=3.0
KnockbackFactor=2.0
TimeBetweenShots=0.046
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=7.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.05
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.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
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=2.0
AADeadZone=0.0
AAFOV=720.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=false
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
[Weapon Profile]
Name=Rifle Scoped HSB
Type=Hitscan
ShotsPerClick=1
DamagePerShot=1000.0
KnockbackFactor=0.1
TimeBetweenShots=0.5
Pierces=false
Category=SemiAutoNoPrehold
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=1.0
ReloadTimeFromPartial=0.8
DamageFalloffStartDistance=6000.0
DamageFalloffStopDistance=6000.0
DamageAtMaxRange=13.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.5146
ADSMoveFactor=0.25
ADSStartDelay=0.1
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=15.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=Rifle Scoped HSB
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=1.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=0.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=65.809998
ADSFOVScale=Quake Champions
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Asp
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Hunting Rifle
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=Bullet
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=2.0,3.0,0.0,0.0
SpreadSCA=2.0,3.0,0.0,0.0
SpreadMSA=2.0,3.0,0.0,0.0
SpreadMCA=2.0,3.0,0.0,0.0
SpreadSSH=2.0,3.0,0.0,0.0
SpreadSCH=2.0,3.0,0.0,0.0
SpreadMSH=2.0,3.0,0.0,0.0
SpreadMCH=2.0,3.0,0.0,0.0
MaxRecoilUp=3.0
MinRecoilUp=3.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.1
TimeToRecoilReset=0.5
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=1.5
AADeadZone=0.0
AAFOV=75.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=true
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=1.0
PSRCapUp=4.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=10.0
PSR0=1.75,0.25
PSR1=1.75,-0.25
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 16.000000 -320.000000
0.000000 16.000000 -320.000000
0.000000 16.000000 -336.000000
-128.000000 16.000000 -336.000000
-128.000000 0.000000 -320.000000
0.000000 0.000000 -320.000000
0.000000 0.000000 -336.000000
-128.000000 0.000000 -336.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
0.000000 16.000000 -192.000000
16.000000 16.000000 -192.000000
16.000000 16.000000 -320.000000
0.000000 16.000000 -320.000000
0.000000 0.000000 -192.000000
16.000000 0.000000 -192.000000
16.000000 0.000000 -320.000000
0.000000 0.000000 -320.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
-144.000000 16.000000 -192.000000
-128.000000 16.000000 -192.000000
-128.000000 16.000000 -320.000000
-144.000000 16.000000 -320.000000
-144.000000 0.000000 -192.000000
-128.000000 0.000000 -192.000000
-128.000000 0.000000 -320.000000
-144.000000 0.000000 -320.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 16.000000 -176.000000
0.000000 16.000000 -176.000000
0.000000 16.000000 -192.000000
-128.000000 16.000000 -192.000000
-128.000000 0.000000 -176.000000
0.000000 0.000000 -176.000000
0.000000 0.000000 -192.000000
-128.000000 0.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
0.000000 16.000000 -176.000000
0.000000 0.000000 -192.000000
16.000000 16.000000 -192.000000
0.000000 0.000000 -176.000000
16.000000 0.000000 -192.000000
0.000000 16.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
-128.000000 0.000000 -176.000000
-128.000000 16.000000 -176.000000
-128.000000 16.000000 -192.000000
-144.000000 0.000000 -192.000000
-128.000000 0.000000 -192.000000
-144.000000 16.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0x00000000
brush
vertices
-144.000000 16.000000 -320.000000
-128.000000 16.000000 -320.000000
-128.000000 16.000000 -336.000000
-144.000000 0.000000 -320.000000
-128.000000 0.000000 -336.000000
-128.000000 0.000000 -320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 1 5 0x00000000
brush
vertices
0.000000 16.000000 -320.000000
16.000000 16.000000 -320.000000
0.000000 0.000000 -336.000000
0.000000 0.000000 -320.000000
16.000000 0.000000 -320.000000
0.000000 16.000000 -336.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 2 5 0x00000000
brush
vertices
-144.000000 704.000000 -192.000000
-128.000000 704.000000 -192.000000
-128.000000 704.000000 -320.000000
-144.000000 704.000000 -320.000000
-144.000000 16.000000 -192.000000
-128.000000 16.000000 -192.000000
-128.000000 16.000000 -320.000000
-144.000000 16.000000 -320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff8f7d6a internal/editor/textures/editor_clip
brush
vertices
-128.000000 16.000000 -176.000000
-128.000000 704.000000 -176.000000
-128.000000 704.000000 -192.000000
-144.000000 16.000000 -192.000000
-128.000000 16.000000 -192.000000
-144.000000 704.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 5 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 1 5 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0xff8f7d6a internal/editor/textures/editor_clip
brush
vertices
-144.000000 704.000000 -320.000000
-128.000000 704.000000 -320.000000
-128.000000 704.000000 -336.000000
-144.000000 16.000000 -320.000000
-128.000000 16.000000 -336.000000
-128.000000 16.000000 -320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 1 5 0xff8f7d6a internal/editor/textures/editor_clip
brush
vertices
-144.000000 0.000000 512.000000
960.000000 0.000000 512.000000
960.000000 0.000000 -1024.000000
-144.000000 0.000000 -1024.000000
-144.000000 -16.000000 512.000000
960.000000 -16.000000 512.000000
960.000000 -16.000000 -1024.000000
-144.000000 -16.000000 -1024.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-144.000000 272.000000 512.000000
-136.000000 272.000000 512.000000
-136.000000 272.000000 -1024.000000
-144.000000 272.000000 -1024.000000
-144.000000 0.000000 512.000000
-136.000000 0.000000 512.000000
-136.000000 0.000000 -1024.000000
-144.000000 0.000000 -1024.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-144.000000 272.000000 526.000000
960.000000 272.000000 526.000000
960.000000 272.000000 510.000000
-144.000000 272.000000 510.000000
-144.000000 0.000000 526.000000
960.000000 0.000000 526.000000
960.000000 0.000000 510.000000
-144.000000 0.000000 510.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
-136.000000 272.000000 -1018.000000
960.000000 272.000000 -1018.000000
960.000000 272.000000 -1034.000000
-136.000000 272.000000 -1034.000000
-136.000000 0.000000 -1018.000000
960.000000 0.000000 -1018.000000
960.000000 0.000000 -1034.000000
-136.000000 0.000000 -1034.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
958.000000 272.000000 524.000000
974.000000 272.000000 524.000000
974.000000 272.000000 -1018.000000
958.000000 272.000000 -1018.000000
958.000000 0.000000 524.000000
974.000000 0.000000 524.000000
974.000000 0.000000 -1018.000000
958.000000 0.000000 -1018.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
958.000000 704.000000 530.000000
974.000000 704.000000 530.000000
974.000000 704.000000 -1016.000000
958.000000 704.000000 -1016.000000
958.000000 272.000000 530.000000
974.000000 272.000000 530.000000
974.000000 272.000000 -1016.000000
958.000000 272.000000 -1016.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
-144.000000 704.000000 526.000000
960.000000 704.000000 526.000000
960.000000 704.000000 510.000000
-144.000000 704.000000 510.000000
-144.000000 272.000000 526.000000
960.000000 272.000000 526.000000
960.000000 272.000000 510.000000
-144.000000 272.000000 510.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
-136.000000 704.000000 -1018.000000
974.000000 704.000000 -1018.000000
974.000000 704.000000 -1034.000000
-136.000000 704.000000 -1034.000000
-136.000000 272.000000 -1018.000000
974.000000 272.000000 -1018.000000
974.000000 272.000000 -1034.000000
-136.000000 272.000000 -1034.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
-144.000000 704.000000 512.000000
-128.000000 704.000000 512.000000
-128.000000 704.000000 -1026.000000
-144.000000 704.000000 -1026.000000
-144.000000 272.000000 512.000000
-128.000000 272.000000 512.000000
-128.000000 272.000000 -1026.000000
-144.000000 272.000000 -1026.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
-146.000000 720.000000 526.000000
976.000000 720.000000 526.000000
976.000000 720.000000 -1036.000000
-146.000000 720.000000 -1036.000000
-146.000000 704.000000 526.000000
976.000000 704.000000 526.000000
976.000000 704.000000 -1036.000000
-146.000000 704.000000 -1036.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 704.000000 -320.000000
0.000000 704.000000 -320.000000
0.000000 704.000000 -868.000000
-128.000000 704.000000 -868.000000
-128.000000 16.000000 -320.000000
0.000000 16.000000 -320.000000
0.000000 16.000000 -868.000000
-128.000000 16.000000 -868.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff8f7d6a internal/editor/textures/editor_clip
brush
vertices
-128.000000 704.000000 350.000000
0.000000 704.000000 350.000000
0.000000 704.000000 -192.000000
-128.000000 704.000000 -192.000000
-128.000000 16.000000 350.000000
0.000000 16.000000 350.000000
0.000000 16.000000 -192.000000
-128.000000 16.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff8f7d6a internal/editor/textures/editor_clip
brush
vertices
0.000000 704.000000 376.000000
606.000000 704.000000 376.000000
606.000000 704.000000 -886.000000
0.000000 704.000000 -886.000000
0.000000 16.000000 376.000000
606.000000 16.000000 376.000000
606.000000 16.000000 -886.000000
0.000000 16.000000 -886.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff8f7d6a internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff8f7d6a internal/editor/textures/editor_clip
entity
type PlayerSpawn
Vector3 position 710.000000 0.000000 -820.000000
Vector3 angles -45.000000 0.000000 0.000000
Bool8 teamA 0
entity
type CameraPath
UInt32 entityIdAttachedTo 5
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type Effect
Vector3 position 0.000000 256.000000 0.000000
String64 effectName internal/misc/reflectionprobe
entity
type Target
Vector3 position 352.000000 256.000000 224.000000
Vector3 angles -135.000000 30.000000 0.000000
String32 name end
entity
type PlayerSpawn
Vector3 position 736.000000 0.000000 260.000000
Vector3 angles 225.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 768.000000 0.000000 -266.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -64.000000 0.000000 -256.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamB 0
entity
type Teleporter
brush
vertices
-138.000000 370.000000 -712.000000
-136.000000 370.000000 -712.000000
-136.000000 370.000000 -756.000000
-138.000000 370.000000 -756.000000
-138.000000 368.000000 -712.000000
-136.000000 368.000000 -712.000000
-136.000000 368.000000 -756.000000
-138.000000 368.000000 -756.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
|
994e02aa87f4b998904882441c5f239735531ef9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3755/CH3/EX3.12/Ex3_12.sce | 17c30190f506fdd2c0ffa345d98cb1fb7aa5ae4f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 544 | sce | Ex3_12.sce | clear
//
//
//
//Variable declaration
theta1=5+(23/60); //glancing angle(degree)
theta2=7+(37/60); //glancing angle(degree)
theta3=9+(25/60); //glancing angle(degree)
//Calculation
theta1=theta1*%pi/180; //angle(radian)
theta2=theta2*%pi/180; //angle(radian)
theta3=theta3*%pi/180; //angle(radian)
x1=sin(theta1);
X1=1/(10*x1);
x2=sin(theta2)/x1;
x3=sin(theta3)/x1;
//Result
printf("\n ratio of angles of incidence are %0.3f : %0.3f : %0.3f ",x1,x2,x3)
printf("\n the crystal is a simple cubic crystal")
|
516feaf623fb98dd8f28729721ebe46b5e26037c | f4d3c7f7e8954cdeb6eb0c7b54a056242b07da22 | /BCPST UTT/Old/fonctions.sce | 817897475ac6e5f82b6f3944a99c2aea8c8b8abe | [] | no_license | ThibaultLatrille/Slides-Sciencework | bfdf959dbbe4a94e621a3a9a71ccbcd06c5fc338 | 84b53f3901cbdb10fab930e832dc75431a7dce05 | refs/heads/master | 2020-04-27T07:53:52.313720 | 2019-03-06T16:17:57 | 2019-03-06T16:17:57 | 174,151,758 | 0 | 0 | null | null | null | null | ISO-8859-1 | Scilab | false | false | 8,441 | sce | fonctions.sce | function [nville1]=cleaner(ville1) //Remplace tous les caractères non supportés par scilab
nville1=strsubst(ville1,"é","e");
nville1=strsubst(nville1,"è","e");
nville1=strsubst(nville1,"à","a");
nville1=strsubst(nville1,"ç","c");
nville1=strsubst(nville1,"-","");
nville1=strsubst(nville1,"â","a");
nville1=strsubst(nville1,"ê","e");
nville1=strsubst(nville1,"î","i");
nville1=strsubst(nville1,"ô","o");
nville1=strsubst(nville1,"û","u");
nville1=strsubst(nville1,"ù","u");
nville1=strsubst(nville1,"ö","o");
nville1=strsubst(nville1,"ü","u");
nville1=strsubst(nville1,"ï","i");
nville1=strsubst(nville1," ","");
nville1=strsubst(nville1,"''","");
nville1=convstr(nville1,'l');
endfunction
//-------------------------------------------------------------------------------------------------------------------------------
function [y]=finder(V)//Trouve le rang de la ville dans la liste
n=max(size(SST));
ville=str2code(V);//On convertit le nom de la ville
L=length(ville);
vect=0;
l=0;
y=0;
test1=0;
test2=0;
compt=1;
compt2=1;
//Boucle 1 permettant la comparaison du nom de la ville à celui de chaque ville de la liste
while (test1==0)&(compt<=n) do vect=str2code(SST(compt)); //On convertit le nom de la ville au rang "compt"
l=length(vect);
compt2=1;
test2=0;
if l==L then //Comparaison des longueurs des noms (évite une boucle inutile)
while (test2==0)&(compt2<=l) do //Boucle 2 comparant chaque lettre une à une
if vect(compt2)<>ville(compt2) then test2=1;//Arrêt boucle 2
else compt2=compt2+1; end
end
if test2==0 then y=compt;//Renvoi du rang correspondant
test1=1;//Arrêt de la boucle 1
else compt=compt+1;
end
else compt=compt+1;
end
end
endfunction
//-------------------------------------------------------------------------------------------------------------------------------
function [coords]=Matdoublon(rang)//Crée la matrice utilisée dans choix à partir des coordonnées des villes homonymes.
test=1;
j=2;
//Remplissage de la première ligne de la matrice avec les coordonnées de la première ville
coords(1,1)=Value(rang,1);
coords(1,2)=Value(rang,2);
while test==1 do //On regarde si la ville suivante est toujours un doublon, puis on remplit la ligne correspondante dans la matrice
coords(j,1)=Value(rang+1,1); coords(j,2)=Value(rang+1,2); rang=rang+1; j=j+1;
test=Value(rang+1,3);
end
endfunction
//-------------------------------------------------------------------------------------------------------------------------------
function [coord]=transform(coord)//Convertit les cordonnées lat/long en pixels pour correspondre à la carte de France
n=length(coord(:,1))
h=386 //hauteur
w=393 //largeur
maxlat=51.1
minlat=42.3
maxlong=8.3
minlong=-5.2
for i=1:n do coord(i,1)=floor((coord(i,1)-minlat)*h/(maxlat-minlat))
coord(i,2)=floor((coord(i,2)-minlong)*w/(maxlong-minlong))
end
endfunction
//-------------------------------------------------------------------------------------------------------------------------------
function [y]=choix(coord,ville)// Permet le choix d'une ville parmi ses homonymes en les affichant sur une carte.
// "ville" est une chaine de caractères, le nom de la ville qui existe plusieurs fois en France. "coord" est une matrice de deux colonnes : la première correspondant aux latitudes et la deuxième aux longitudes. Chaque ligne contient les coordonnées d'une ville
RGB = ReadImage('C:\Program Files\scilab-5.2.1\contrib\france1.jpg');
[image, ColorMap] = RGB2Ind(RGB);
FigureHandle = ShowImage(image, 'Example', ColorMap); //affiche l'image en couleur !!! nécessite Image Processing Design !!!
coordIm=transform(coord) //coordIm est le transformé des coordonnées lat et long en des coordonnées adapté à l'image
n=length(coord(:,1)); //nombre de ville du même nom
for i=1:n do xstring(coordIm(i,2),coordIm(i,1),ville)
xstring(coordIm(i,2),coordIm(i,1),"+")
end
Click=xclick()
D=999999;d=0;y=0;compt=1
for i=1:n do d=(coordIm(i,2)-Click(2))^2+(coordIm(i,1)-Click(3))^2;
if d<D then D=d;
y=coord(i,1);
y(1,2)=coord(i,2);
compt=i;
end
end
// y les coordonné en lat et long de la ville la plus proche du clic
xstring(coordIm(compt,2),coordIm(compt,1),ville,0,1)
endfunction
//-------------------------------------------------------------------------------------------------------------------------------
function [D]=doublon(rang1,rang2,ville1,ville2)//Crée la matrice de coordonnées dans le cas où il y a des doublons
if (Value(rang1+1,3)==1)&(Value(rang2+1,3)==0) then //La 1ère ville est un doublon
D(1,:)=choix(Matdoublon(rang1),ville1);
D(2,1)=Value(rang2,1);
D(2,2)=Value(rang2,2);
elseif (Value(rang1+1,3)==0)&(Value(rang2+1,3)==1) then //La seconde ville est un doublon
D(2,:)=choix(Matdoublon(rang2),ville2);
D(1,1)=Value(rang1,1);
D(1,2)=Value(rang1,2);
else D(1,:)=choix(Matdoublon(rang1),ville1); //Les deux villes sont des doublons
D(2,:)=choix(Matdoublon(rang2),ville2);
end
endfunction
//-------------------------------------------------------------------------------------------------------------------------------
function [C]=coord(y1,y2)//Crée la matrice de coordonnées dans le cas normal
// 1ere colonne ---> latitudes
// 2eme colonne ---> longitudes
C(1,1)=Value(y1,1);
C(1,2)=Value(y1,2);
C(2,1)=Value(y2,1);
C(2,2)=Value(y2,2);
endfunction
//-------------------------------------------------------------------------------------------------------------------------------
function [d]=calculdistance(C) //Calcule la distance entre les deux points en utilisant les coordonnées sphériques
//theta est la longitude
//phi est la latitude
phi=C(1,1)*%pi/180
theta=C(1,2)*%pi/180
phi1=C(2,1)*%pi/180
theta1=C(2,2)*%pi/180
x=6378*cos(phi)*cos(theta)
y=6378*cos(phi)*sin(theta)
z=6378*sin(phi)
X=6378*cos(phi1)*cos(theta1)
Y=6378*cos(phi1)*sin(theta1)
Z=6378*sin(phi1)
d=sqrt((z-Z)^2+(x-X)^2+(y-Y)^2)
alpha=2*asin(d/(2*6378))
D=6378*alpha
endfunction
//-------------------------------------------------------------------------------------------------------------------------------
function []=affichage(C,ville1,ville2,d)//Affiche la carte de france avec le nom des villes et la distance qui les sépare.
RGB = ReadImage('C:\Program Files\scilab-5.2.1\contrib\france1.jpg');
[image, ColorMap] = RGB2Ind(RGB);
FigureHandle = ShowImage(image, 'Example', ColorMap);
coordIm=transform(C)
if d>=100 then
xstring(coordIm(1,2),coordIm(1,1),ville1)
xstring(coordIm(2,2),coordIm(2,1),ville2)
xpoly([coordIm(1,2),coordIm(2,2)],[coordIm(1,1),coordIm(2,1)],"lines",1);
d=round(d);
d=string(d)+" Km";
xstring((coordIm(1,2)+coordIm(2,2))/2,(coordIm(1,1)+coordIm(2,1))/2,d);
else
yhaut=max(coordIm(1,1),coordIm(2,1));
if yhaut=coordIm(1,1) then xhaut=coordIm(1,2);yhaut=yhaut+5;ybas=coordIm(2,1)-5;xbas=coordIm(2,2); villehaut=ville1;villebas=ville2;
else yhaut=yhaut+5; xhaut=coordIm(2,2); ybas=coordIm(1,1)-5;xbas=coordIm(1,2); villehaut=ville2;villebas=ville1;
end
xstring(xhaut,yhaut,villehaut);
xstring(xbas,ybas,villebas);
xpoly([coordIm(1,2),coordIm(2,2)],[coordIm(1,1),coordIm(2,1)],"lines",1);
d=round(d);
d=string(d)+" Km";
xstring((xhaut+xbas)/2,(yhaut+ybas)/2,d);
uicontrol("String", "Close the window", "Position", [10 10 100, 25], "Callback", "delete(gcf())");
end
endfunction
|
a9440c3c060ed9e8b8344598a66b7e9091224012 | 449d555969bfd7befe906877abab098c6e63a0e8 | /978/CH13/EX13.2/Example13_2.sce | bcd89ca6f9435a16835f22cf82eb3ee4d554d662 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 420 | sce | Example13_2.sce | //chapter-13,Example13_2,pg 509
t1=1*10^-6//time span for voltage
//voltage switching
V1=0.5//level-1
V2=1//level-2
//current switching
I1=1*10^-3//level-1
I2=10*10^-3//level-2
t2=1*10^-6//time span for current
DR=(((V2-V1)/t1)/((I2-I1)/t2))
printf("pseudoimpedance\n")
printf("DR=%.2f ohm\n",DR)
printf("DR is not quite large indicating noise interference by inductive coupling")
|
2ac264254b2586e2db63af8404299eebeb9709ca | 46e52b7010c1dc6beb86c615f0d59494c00e6554 | /tp3/src/tests/test5.tst | 9257d1351bc4b89297d5cf27792a8d6921bea290 | [] | no_license | impronunciable/so2015 | 22bd1cf0831c29d091a3f94bc36342ebb51b7aed | 8bdabf28dc17ca4c92a264036c0fbe9c31430de3 | refs/heads/master | 2020-04-14T12:25:47.123488 | 2015-11-10T22:00:51 | 2015-11-10T22:00:51 | 41,392,542 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 615 | tst | test5.tst | aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
cccccccccccccccccccccccccccccccccccccccc
dddddddddddddddddddddddddddddddddddddddd
eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
cccccccccccccccccccccccccccccccccccccccc
dddddddddddddddddddddddddddddddddddddddd
eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
cccccccccccccccccccccccccccccccccccccccc
dddddddddddddddddddddddddddddddddddddddd
eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
dddddddddddddddddddddddddddddddddddddddd
eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
|
d9925fed279f3e4cff1e9114766f3d9b1d950e15 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/1.1/Unix/scilab-1.1/macros/percent/%psr.sci | ddde4f5fc77eb33914b3e142f248ffcc1c7b58b6 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 258 | sci | %psr.sci | //<f2>=%psr(n1,f2)
// %psr(n1,f2) calcule la soustraction de la matrice de polynome n1 et
//de la matrice de fractions rationnelles f2.
//Cette macro correspond a l'operation n1-f2
//!
[n2,d2]=f2(2:3),
[n2,d2]=simp(n1.*d2-n2,d2)
f2(2)=n2;f2(3)=d2;
//end
|
5408ff5914cacbc6787482c1ef91c684f564cd09 | 717ddeb7e700373742c617a95e25a2376565112c | /632/CH6/EX6.4/example6_4.sce | 3409c63d8076d967ef9a479b4f14c9e0399e8776 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 352 | sce | example6_4.sce | //clc()
A = 13.8587;
B = 2911.32;
C = 56.56;
T1 = 325;//K
//Pressure at normal condition = 101.3kPa
P2 = 101.3;//kPa
//Antoine equation - lnP = A - B / (T - C)
lnP = A - (B / (T - C));
P1 = exp(lnP);
disp("kPa",P1,"(a)Vapour pressure of n-heptane at 325K = ")
T2 = B/(A - log(P2)) + C;
disp("K",T2,"(b)Normal boiling point of n-heptane = ") |
f8568eb24630d0aeae893afbde05b27f038f7103 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2384/CH3/EX3.3/ex3_3.sce | 99a3525199ae6f6a9b72564d85b8deb454aa4d7d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 383 | sce | ex3_3.sce | // Exa 3.3
clc;
clear;
close;
format('v',8)
// Given data
f = 60;// in Hz
Im = 120;// in A
t = 1/360;// in sec
omega = 2*%pi*f;// in rad/sec
i = Im*sin(omega*t);// in A
disp(i,"The value of current after 1/360 sec in A is");
i = 96;// in A
// i = Im*sind(omega*t);
t = (asin(i/Im))/omega;// in sec
disp(t,"The time taken to reach 96 A for the first time in sec is");
|
eb547d76cfe825d78f1bfbb038373d87dfe22762 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1673/CH7/EX7.12/7_12.sce | 91883548270dba0dbe085c0a6b7a2b14293ed7d4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 324 | sce | 7_12.sce | //ill-conditioned system
//example 7.12
//page 278
clc;clear;close;
//the original equations are 2x+y=2 2x+1.01y=2.01
A1=[2 1;2 1.01];
C1=[2;2.01];
x1=1;y1=1//approximate values
A2=[2 1;2 1.01];
C2=[3;3.01];
C=C1-C2;
X=A1^-1*C;
x=X(1,1)+x1;
y=X(2,1)+y1;
printf(' the exact solution is X=%f \t Y=%f',x,y);
|
6633298e8578101417436eeda9fb79552d2938b6 | e806e966b06a53388fb300d89534354b222c2cad | /macros/checkCEE.sci | bd868efc9cbf9ac3bb2a0df13dae0dc3c44fcda3 | [] | no_license | gursimarsingh/FOSSEE_Image_Processing_Toolbox | 76c9d524193ade302c48efe11936fe640f4de200 | a6df67e8bcd5159cde27556f4f6a315f8dc2215f | refs/heads/master | 2021-01-22T02:08:45.870957 | 2017-01-15T21:26:17 | 2017-01-15T21:26:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 714 | sci | checkCEE.sci | function checkCEE(varargin)
extErr = varargin(1)
if ~isfield(extErr, 'RotVectorsError') | ~isfield(extErr, 'TransVectorsError') then
error(msprintf("An ExtrinsicsEstimationErrors Struct expected."))
end
rvErr = extErr.RotVectorsError;
tvErr = extErr.TransVectorsError;
if type(rvErr)~=1 | type(tvErr)~=1 | ~isreal(rvErr) | ~isreal(tvErr) then
error(msprintf("An ExtrinsicsEstimationErrors Struct expected."))
end
[size11 size12] = size(rvErr);
[size11 size12] = size(tvErr);
if size12~=3 | size11==0 | size11==0 | size12~=3 then
error(msprintf("An ExtrinsicsEstimationErrors Struct expected."))
end
endfunction
|
0ca581003edf9f63beb2979f4af23ef62cffb904 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2321/CH13/EX13.4.1/EX13_4_1.sce | 3e02945f2ed3656bfc352428777a078037ce682d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 660 | sce | EX13_4_1.sce | //Example No. 13.4.1
clc;
clear;
close;
format('v',7);
Pr1=0.0297/1000;//W(Recieved power)
Pr2=0.0471/1000;//W(Recieved power)
Pr3=0.0374/1000;//W(Recieved power)
Pt=1;//W(Transmitted power)
R=10;//m(Radius)
f=980;//MHz(Frequency)
f=f*10^6;//Hz(Frequency)
c=3*10^8;//m/s(Speed of light)
lambda=c/f;//m(Wavelength)
A=20*log10(4*%pi*R/lambda)+10*log10(Pr1/Pt);//(A=G1dB+G2dB)
B=20*log10(4*%pi*R/lambda)+10*log10(Pr2/Pt);//(B=G1dB+G3dB)
C=20*log10(4*%pi*R/lambda)+10*log10(Pr3/Pt);//(C=G2dB+G3dB)
G1dB=(A+B-C)/2;
G2dB=(A-B+C)/2;
G3dB=(-A+B+C)/2;
disp(round(G3dB),round(G2dB),round(G1dB),"Gain of antennas, G1db, G2dB & G3dB(in dB) are : ");
|
76c56ef3946c32ad4218825dca7129c29e4d214a | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/MA11.prev.tst | 9a856d272c7576bdee8a00b9f590a2a1395082cd | [
"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 | 347 | tst | MA11.prev.tst | -chain [[2,-1,0,2],[-2,0,-1,-2],[0,2,2,-1],[2,-1,1,1]] [6,-5,-3,-4] 4 0
[[2,-1,0,2],[-2,0,-1,-2],[0,2,2,-1],[2,-1,1,1]],det=-2 [6,-5,-3,-4], chain 8 => [9,-1,-12,10] => [39,-26,-36,17] => [138,-76,-141,85] => [522,-305,-519,296] => [1941,-1117,-1944,1126] => [7251,-4190,-7248,4181] => [27054,-15616,-27057,15625] => [100974,-58301,-100971,58292]
|
9ba78ea2f43ed986382addc1ee229b8154fe4cef | 449d555969bfd7befe906877abab098c6e63a0e8 | /3554/CH4/EX4.7/Ex4_7.sce | 2ca177149bf78d4285e1ccb40b972f4dbc2b1fb0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,270 | sce | Ex4_7.sce | // Exa 4.7
clc;
clear all;
// Referring circuit given in fig. 4.7 on page no.81
S1=1000; // Sensitivity of meter 1 (Ohms/volt)
S2=20000;// Sensitivity of meter 2(Ohms/volt)
Rm1=200;// Meter resistance(Ohms)
Rm2=1500;// Meter resistance(Ohms)
V1=10; // Range of voltmeter 1(Volts)
V2=10;
Ra=25000; // in Ohms
Rb=5000;// in Ohms
V=30; // Applied Voltage(V)
//Solution
VRb= Rb/(Ra+Rb) * V; // Voltage across Rb
printf('The voltage across the resistance Rb, without either meter connected = %d V\n ',VRb);
// For meter 1
Rt1=S1* V1; // Total resistance of meter1
Req1= Rb*Rt1/(Rb+Rt1); // Total resistance across Rb
VRb1= Req1/(Req1+Ra) * V; // Voltage reading across Rb with meter1
printf('The voltage across Rb when meter 1 is used is = %.2f V \n',VRb1);
Err1=(VRb-VRb1)/VRb *100; // Voltmeter 1 error
printf(' Voltmeter 1 error in percentage = %.1f \n ',Err1);
// For meter 2
Rt2=S2* V2; // Total resistance of meter 2
Req2= Rb*Rt2/(Rb+Rt2); // Total resistance across Rb
VRb2= Req2/(Req2+Ra) * V; // Voltage reading across Rb with meter2
printf('The voltage across Rb when meter 2 is used is = %.1f V \n',VRb2);
Err2=(VRb-VRb2)/VRb *100; // Voltmeter 2 error
printf(' Voltmeter 2 error in percentage = %d \n ',Err2);
|
5984f8fab27346fb8821b2559143489632d52ec5 | fe5d16cef63488c5ef3f73be54a0981243288d1d | /tests/examplefiles/scilab/bench_chol.tst | d03eea05d736b300eeb8920baf6432b67a7104c4 | [
"BSD-2-Clause"
] | permissive | sailfishos-mirror/pygments | 648bdafcd0cb8128dd684b2eb59b3bbee23f752a | 71cbc18df9f5e3852b37bb7f00f836e480a96a73 | refs/heads/master | 2023-08-31T03:01:26.577979 | 2023-08-18T13:25:25 | 2023-08-18T13:25:25 | 266,720,343 | 0 | 1 | BSD-2-Clause | 2022-11-23T18:55:03 | 2020-05-25T08:05:09 | Python | UTF-8 | Scilab | false | false | 696 | tst | bench_chol.tst | // =============================================================================
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2007-2008 - INRIA
//
// This file is distributed under the same license as the Scilab package.
// =============================================================================
//==============================================================================
// Benchmark for chol function
//==============================================================================
// <-- BENCH NB RUN : 10 -->
stacksize(30000000);
a = 0;
b = 0;
a = rand(900, 900, 'n');
a = a'*a;
// <-- BENCH START -->
b = chol(a);
// <-- BENCH END -->
|
3107614f60e9d8bccbf39755f6010667b11d86d9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /965/CH9/EX9.8/8.sci | ffc5e3204bedfddac4f6ff768a5cb70078627a30 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 416 | sci | 8.sci | clc
clear all;
disp("local transfer coefficient")
tsat=90;// degree C
ta=70;// degree C
L=1.5;//m
d=2.5;//m outer diameter;//
rhol=974;//kg/m^3
k=0.668;// W/m.K
mul=0.335*10^(-3);//kg/m.s
hfg=2309*1000;//J/kg
g=9.81;// m/s^2
hL=((rhol^2)*(k^3)*g*hfg/(4*mul*L*(tsat-ta)))^0.25;
disp("W/m^2.C",hL,"Local heat transfer coefficient =")
h=4*hL/3;//
disp("W/m^2.C",h,"average heat transfer coefficient =")
|
3e6b37b37e1f1985bcc803ac4b58b8be6edacee3 | 59ea89f1162f8048d9f7f10f6e6a3a1567c56607 | /expe/eyes/_old/presentation-v2010/spatial_attention_P2.sce | b51cc695741026f0fe9f01ca5d3d997e7704855f | [] | no_license | elshafeh/own | a9b8199efb3511aa1b30b53755be9337d572b116 | ef3c4e1a444b1231e3357c4b25b0ba1ba85267d6 | refs/heads/master | 2023-09-03T01:23:35.888318 | 2021-11-03T09:56:33 | 2021-11-03T09:56:33 | 314,668,569 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 4,172 | sce | spatial_attention_P2.sce | # header
scenario = "spatial attention PRACTISE SESSION 2";
write_codes = true; # send codes to output port
active_buttons = 2;
button_codes = 1, 2;
default_font_size = 30;
default_text_color = 255,255,255; # white
default_background_color = 0,0,0; # black
# SDL code
begin;
########################################
### define all the required pictures ###
########################################
TEMPLATE "picture.tem" {
name colour content;
default "255,255,255" "+"; # default picture: fixation cross
cue_left "255,255,255" "<"; # picture: cue left
cue_right "255,255,255" ">"; # picture: cue right
feedback_correct "0,255,0" "+"; # picture: feedback correct (green)
feedback_incorrect "255,0,0" "+"; # picture: feedback incorrect (red)
};
######################################
### define all the required trials ###
######################################
# instruction trials, use template
TEMPLATE "trial.tem" {
name trlcode content;
instruction "instruct" "Instruction:\nIndicate as fast as possible whether the stimulus frequency was low or high.\nLow = blue button\nHigh = yellow button\n\nPush a button to continue.";
instruction_cue100 "instruct100" "Instruction:\nThe cue is correct on 100% of the trials.\n\nPush a button to start.";
instruction_cue75 "instruct75" "Instruction:\nThe cue is correct on 75% of the trials.\n\nPush a button to start.";
instruction_cue50 "instruct50" "Instruction:\nThe cue is correct on 50% of the trials.\n\nPush a button to start.";
the_end "end" "The end of the practise session.";
};
# trial: feedback correct
trial {
picture feedback_correct;
duration = 200;
code = "correct";
port_code = 16;
}correct;
# trial: feedback incorrect
trial {
picture feedback_incorrect;
duration = 200;
code = "incorrect";
port_code = 48;
}incorrect;
# trial: feedback no response (=incorrect)
trial {
picture feedback_incorrect;
duration = 200;
code = "noresp";
port_code = 80;
}noresp;
#############################
### the actual experiment ###
#############################
###################
# block 1 #
# condition: 100% #
# trials: 48 #
###################
trial instruction;
trial instruction_cue100;
# 1 block of 48 trials
TEMPLATE "viscue_tactstim.tem" randomize {
cue cue_code stim resp;
LOOP $i 12; # 12*4 = 48 trials
cue_left 64 4 1; # cue left stim left low
cue_left 64 4 2; # cue left stim left high
cue_right 128 8 1; # cue right stim right low
cue_right 128 8 2; # cue right stim right high
ENDLOOP;
};
###################
# block 2 #
# condition: 75% #
# trials: 48 #
###################
trial instruction;
trial instruction_cue75;
# 1 block of 48 trials
TEMPLATE "viscue_tactstim.tem" randomize {
cue cue_code stim resp;
LOOP $i 9; # 9*4 = 36 trials (=75%)
cue_left 64 4 1; # cue left stim left low
cue_left 64 4 2; # cue left stim left high
cue_right 128 8 1; # cue right stim right low
cue_right 128 8 2; # cue right stim right high
ENDLOOP;
LOOP $i 3; # 3*4 = 12 trials (=25%)
cue_left 64 8 1; # cue left stim right low
cue_left 64 8 2; # cue left stim right high
cue_right 128 4 1; # cue right stim left low
cue_right 128 4 2; # cue right stim left high
ENDLOOP;
};
###################
# block 3 #
# condition: 50% #
# trials: 48 #
###################
trial instruction;
trial instruction_cue50;
# 1 block of 48 trials
TEMPLATE "viscue_tactstim.tem" randomize {
cue cue_code stim resp;
LOOP $i 6; # 6*8 = 48 trials
cue_left 64 4 1; # cue left stim left low
cue_left 64 4 2; # cue left stim left high
cue_right 128 8 1; # cue right stim right low
cue_right 128 8 2; # cue right stim right high
cue_left 64 8 1; # cue left stim right low
cue_left 64 8 2; # cue left stim right high
cue_right 128 4 1; # cue right stim left low
cue_right 128 4 2; # cue right stim left high
ENDLOOP;
};
# the end #
trial the_end;
# the end #
|
6a8af1bc513977cda3551d5787105f270e85c3d8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /534/CH3/EX3.11/3_11_Fuel_cell.sce | e98810a0b883ed606e8a0fa166abf434a6b3b843 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,600 | sce | 3_11_Fuel_cell.sce | clear;
clc;
printf('FUNDAMENTALS OF HEAT AND MASS TRANSFER \n Incropera / Dewitt / Bergman / Lavine \n EXAMPLE 3.11 Page 158 \n'); //Example 3.11
// Study of Fuel-cell fan system
Wc =.05; //[m] width
H = .026; //[m] height
tc = .006; //[m] thickness of cell
V = 9.4; //[m/sec] vel of cooling air
P = 9; //[W] Power generated
C = 1000; //[W/(m^3/s)] Ratio of fan power consumption to vol flow rate
k = 200; //[W/m.K] alumunium
Tsurr = 25+273.15; //[K] Temperature of surrounding air
Tc = 56.4+273.15; //[K] Temp of fuel cell
Rtcy = 10^-3; //[K/W] Contact thermal resistance
tb = .002; //[m] thickness of base of heat sink
Lc = .05; //[m] length of fuel cell
//Dimensions of Fin
tf = .001; //[m] Thickness
Lf = .008; //[m] Length
Vf = V*[Wc*(H-tc)]; //[m^3/sec] Volumetric flow rate
Pnet = P - C*Vf;
P = 2*(Lc+tf);
Ac = Lc*tf;
N = 22;
a=(2*Wc - N*tf)/N;
h = 19.1; ///[W/m^2.K]
q = 11.25; //[W]
m = (h*P/(k*Ac))^.5;
Rtf = (h*P*k*Ac)^(-.5)/ tanh(m*Lf);
Rtc = Rtcy/(2*Lc*Wc);
Rtbase = tb/(2*k*Lc*Wc);
Rtb = 1/[h*(2*Wc-N*tf)*Lc];
Rtfn = Rtf/N;
Requiv = [Rtb^-1 + Rtfn^-1]^-1;
Rtot = Rtc + Rtbase + Requiv;
Tc2 = Tsurr +q*(Rtot);
printf("\n\n (a) Power consumed by fan is more than the generated power of fuel cell, and hence system cannot produce net power = %.2f W \n\n (b) Actual fuel cell Temp is close enough to %.1f degC for reducing the fan power consumption by half ie Pnet = %.1f W, we require 22 fins, 11 on top and 11 on bottom.",Pnet, Tc2-273, C*Vf/2);
//END |
62cfd61bea1bd3dce22e0f75b03fa1469c6d3693 | 449d555969bfd7befe906877abab098c6e63a0e8 | /24/CH33/EX33.1/Example33_1.sce | 149fe92d97ebc5b86ecfe70ef720e5ec3a16e3ba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 221 | sce | Example33_1.sce | //Given that
C = 1.5*10^-6 //in F
V = 57 //in volts
L = 12*10^-3 //in H
//Sample Problem 33-1
printf("**Sample Problem 33-1**\n")
Imax = V*sqrt(C/L)
printf("The maximum current in the circuit is %1.2eA", Imax) |
58727c5f7e36fc54a5e10dc8cebee924070afd4f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2411/CH1/EX1.9/Ex1_9.sce | ae996ba20cbd8c8512a6a0561c3c1e580b6ff0cf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex1_9.sce | // Scilab Code Ex1.9: Page-14 (2008)
clc; clear;
omega1 = 500; // Angular speed of rotating shaft, r.p.m.
omega2 = 0; // Initial angular speed of the second wheel, r.p.m.
I = 1; // For simplicity assume moment of ineria of the wheels to be unity
I1 = I, I2 = I; // Moment of inertia of wheels A and B, kg-Sq.m
// As I1*omega1 + I2*omega2 = (I1 + I2)*omega, solving for omega
omega = (I1*omega1 + I2*omega2)/(I1 + I2); // Angular speed of the combination of two wheels, r.p.m.
printf("\nThe angular speed of the combination of two wheels = %3.0f r.p.m.", omega);
// Result
// The angular speed of the combination of two wheels = 250 r.p.m. |
29b84db3d8e3c78fc9c081a19b627e825d52a89d | 1c1157eb9ae639124969d74ed2969f3990c91767 | /src/scilab/timeStretchExample.sci | 5238bd42e0d5ba8d05c1e21ce86b6f1c728afb9b | [] | no_license | JOfTheAncientGermanSpear/Simple-Time-Stretcher-Scilab | c00a9da29d3a73929bbdcbd7edc78ad66b803ac6 | 638360ea04ee4951f9a4e550d45fcea0bc01c867 | refs/heads/master | 2021-01-18T16:29:56.086062 | 2012-05-09T03:15:45 | 2012-05-09T03:15:45 | 4,267,913 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 779 | sci | timeStretchExample.sci |
//load files
currentDirec = pwd();
exec(currentDirec + '\stftInterpolate.sci', -1);
exec(currentDirec + '\timeStretch.sci', -1);
exec(currentDirec + '\angle.sci', -1);
exec(currentDirec + '\istft.sci', -1);
exec(currentDirec + '\stft.sci', -1);
stacksize('max'); //allows big files to be opened
recordingFile = 'your sound file.wav';
[recording, waveInfo] = loadwave(recordingFile);
fs = waveInfo(3);
threeSecondSample = recording(1:fs*3);
stretchFactor = 3;
ftLength = 1024;
nineSecondSample = timeStretch(threeSecondSample, stretchFactor, ftLength);
sound(threeSecondSample, fs);
//same pitch as original but time-length is three times as long
sound(nineSecondSample, fs);
//same time-length as original but three times as high a pitch
sound(nineSecondSample, fs*3) |
87de57fb824e09193618b073afa8baa1c7e8ccce | 449d555969bfd7befe906877abab098c6e63a0e8 | /3811/CH2/EX2.4/Ex2_4.sce | f85ac280dc74671288bc3a41a50bef8c8712e435 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 655 | sce | Ex2_4.sce | //Book name: Fundamentals of electrical drives by Mohamad A. El- Sharkawi
//chapter2
//example 2.4
//edition 1
//publisher and place:Nelson Engineering
clc;
clear;
Ls=8;//snubbing inductor in microhenry
VBO=4000;//base voltage in volts
di=200;//rate of change of current (di/dt) in amperes per microsec
dv=1500;//rate of change of voltage (dv/dt) in volt per microsce
Cs=10;//snubbing capacitance in microfarad
Rs=sqrt(VBO/(0.5*di*Cs));//snubbing resistance in ohms
dVscr=((Rs*VBO)/Ls);///rate of change of SCR voltage with respect to time
mprintf("The given snubber circuit is suitable for protecting the SCR from excessive %f volt per microsec",dVscr)
|
678b6f7326f0e1eca62c08dc9626b2cd7f69dbed | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH5/EX5.50/50.sce | 24ba8cb3c43f495843215037365cfe1fde0e5899 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 821 | sce | 50.sce | clc
cp=2.093; //kJ/kg0C
c=4.187;
Lf=333.33; //kJ/kg
m=1; //kg
T0=273; //K
T1=268; //K
T2=298; //K
Q_s=m*cp*(T0-T1);
Q_f=m*Lf;
Q_l=m*c*(T2-T0);
Q=Q_s+Q_f+Q_l;
disp("(i) Entropy increase of the universe")
ds_atm=-Q/T2;
ds_sys1=m*cp*log(T0/T1);
ds_sys2=Lf/T0;
ds_sys3=m*c*log(T2/T0);
ds_total=ds_sys1+ds_sys2+ds_sys3;
ds_universe=ds_total+ds_atm;
disp("Entropy increase of universe=")
disp(ds_universe)
disp("kJ/K")
disp("(ii) Minimum amount of work necessary to convert the water back into ice at – 5°C, Wmin.")
dS_refrigerator=0;
// dS_atm=(Q+W)/T;
// dS_universe >= 0
// dS_system=(s1-s4)
//dS_universe=dS_system+dS_refrigerator+dS_atm
dS_system=-1.6263; //kJ/kg K
T=298; //K
//For minimum work
W_min=T*(-dS_system)-Q;
disp("Minimum work done =")
disp(W_min)
disp("kJ") |
7c331cd196b14924c2ed8bb3db19ffb735548ede | 449d555969bfd7befe906877abab098c6e63a0e8 | /2495/CH1/EX1.5.5/Ex1_5_5.sce | 389ba449157b15ec9497565a94ff0246afa06a25 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex1_5_5.sce | clear;
clc;
P=760;//in torr
dP=52;//in torr
dT=2;//in K
DelH_RTb=10.5;//Trouton rule
Tb=(DelH_RTb*P)/(dP/dT)
printf('Tb=%.1f K',Tb)
R=8.314;//in J/Kmol
DelH_v=(DelH_RTb*R*Tb)
printf('\nDelH_v=%1d J/mol',DelH_v)
//There are some errors in the solution given in textbook
//page 17
|
3dfa11e06fdcf63b91756f72c09f7aac5a551506 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2078/CH5/EX5.15/Example5_15.sce | 09a620c888bdc308623f61da6a1ce25f6be3fadd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 764 | sce | Example5_15.sce | //Exa 5.15
clc;
clear;
close;
//Given data :
f=50;//Hz
l=100;//km
P=50*10^6;//W
pf=0.8;//power factor
cos_fi_r=pf;
sin_fi_r=sqrt(1-cos_fi_r^2);
VRL=132*10^3;//Volt
VR=VRL/sqrt(3);//Volt
R=0.1*l;//ohm
XL=0.3*l;//ohm
Z=R+%i*XL;//ohm
Y=3*10^-6*l;//S
IR=P/(sqrt(3)*VRL*pf);//A
IR=IR*(cos_fi_r-%i*sin_fi_r);//A
ICR=1/2*%i*Y*VR;//A
IL=IR+ICR;//A
VS=VR+IL*Z;//Volt
VSL=sqrt(3)*abs(VS);//Volt
disp(VSL/1000,"Sending end line voltage(kV) :");
ICS=1/2*%i*Y*VS;//A
IS=IL+ICS;//A
fi_s=atand(imag(VS),real(VS))-atand(imag(IS),real(IS));//
cos_fi_s=cosd(fi_s);//sending end pf
disp(cos_fi_s,"Sending end power factor(lag) : ");
Eta_T=sqrt(3)*VRL*abs(IR)*cos_fi_r/(sqrt(3)*VSL*abs(IS)*cos_fi_s)*100;//%
disp(Eta_T,"Transmission Efficiency(%) : ");
|
3dddd2562d88d4d5164c836a4504c2c8af464ba0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2213/CH4/EX4.1/ex_4_1.sce | 7ffbfebdda612f8cbd73d45025ab69f35c90cb87 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 152 | sce | ex_4_1.sce | //Example 4.1 //MSCP
clc;
clear;
close;
format('v',3)
F=1000;//intensity in lumens
MSCP=F/(4*%pi);// MSCP of the lamps
disp(MSCP,"MSCP of the lamp is")
|
e611ae56095b03c6bd27d5a23491c9f9b5fc4348 | 449d555969bfd7befe906877abab098c6e63a0e8 | /779/CH10/EX10.2/10_2.sce | 5a6777bbdc949a386e84c43192aa82e6953f6afb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 10_2.sce | // Part (a)
R = 0.287; T1 = 273+150; v1 = 0.96; v2 = 1.55; Cp = 1.005;
P = (R*T1)/v1;
W = P*(v2-v1);
T2 = (v2/v1)*T1;
Q = Cp*(T2-T1);
disp("If the fluid is in the air")
disp("K",T2,"The final temperature is ")
disp("kJ",Q,"The heat transferred is")
disp("kJ",W,"Work done is")
// Part (b)
vg = 0.3928;
P1 = 200e03;
P2 = P1;
h1 = 2768.8;
t2 = 273+400; h2 = 3276.5;
Q_ = h2-h1;
W_ = P1*(v2-v1);
disp("If the fluid is in the steam")
disp("K",t2,"The final temperature is ")
disp("kJ",Q_,"The heat transferred is")
disp("J",W_,"Work done is")
|
a3563f84eb889ab2379115c745ee15c2af19bcba | 449d555969bfd7befe906877abab098c6e63a0e8 | /1367/CH2/EX2.4/2_4.sce | 0c30387fe7a17dfa18da5b7e58bcae75d006b1ff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 454 | sce | 2_4.sce | //Find radius of first orbit of electron in Hydrogen atom
//Ex:2.4
clc;
clear;
close;
n=1;//first orbit
e_0=8.85*10^-12;//permittivity in freee space
h=6.62*10^-34;//planck's constant
m=9.1*10^-31;//mass of an electron in kg
e=1.6*10^-19;//charge of an electron in C
z=1;
r=n^2*e_0*h^2/(3.14*m*e^2*z);//radius of first orbit in m
r1=r*10^10;//radius in Angstorm
disp(r1,"Radius of first orbit of electron in Hydrogen atom (in Angstorm) = "); |
517765fd2911447d5cfe4a59117e0dec74d22529 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2873/CH9/EX9.7/Ex9_7.sce | 6ad70da8d9b3b318592fb150604bbaa68e104521 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 4,002 | sce | Ex9_7.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Engineering Thermodynamics by Onkar Singh Chapter 9 Example 7")
T1=313;//air entering temperature in K
P1=1*10^5;//air entering pressure in Pa
m=50;//flow rate through compressor in kg/s
R=0.287;//gas constant in KJ/kg K
disp("i> theoretically state of air at exit can be determined by the given stage pressure ratio of 1.35.Let pressure at inlet to first stage P1 and subsequent intermediate pressure be P2,P3,P4,P5,P6,P7,P8 and exit pressure being P9.")
disp("therefore,P2/P1=P3/P2=P4/P3=P5/P4=P6/P5=P7/P6=P8/P7=P9/P8=r=1.35")
r=1.35;//compression ratio
disp("or P9/P1=k=(1.35)^8")
k=(1.35)^8
k=11.03;//approx.
disp("or theoretically,the temperature at exit of compressor can be predicted considering isentropic compression of air(y=1.4)")
y=1.4;//expansion constant
disp("T9/T1=(P9/P1)^((y-1)/y)")
disp("so T9=T1*(P9/P1)^((y-1)/y) in K")
T9=T1*(k)^((y-1)/y)
disp("considering overall efficiency of compression 82% the actual temperature at compressor exit can be obtained")
disp("(T9-T1)/(T9_actual-T1)=0.82")
disp("so T9_actual=T1+((T9-T1)/0.82) in K")
T9_actual=T1+((T9-T1)/0.82)
disp("let the actual index of compression be n, then")
disp("(T9_actual/T1)=(P9/P1)^((n-1)/n)")
disp("so n=log(P9/P1)/(log(P9/P1)-log(T9-actual/T1))")
n=log(k)/(log(k)-log(T9_actual/T1))
disp("so state of air at exit of compressor,pressure=11.03 bar and temperature=689.18 K")
disp("ii> let polytropic efficiency be n_polytropic for compressor then,")
disp("(n-1)/n=((y-1)/y)*(1/n_polytropic)")
disp("so n_polytropic=((y-1)/y)/((n-1)/n)")
n_polytropic=((y-1)/y)/((n-1)/n)
disp("in percentage")
n_polytropic=n_polytropic*100
disp("so ploytropic efficiency=86.88%")
disp("iii> stage efficiency can be estimated for any stage.say first stage.")
disp("ideal state at exit of compressor stage=T2/T1=(P2/P1)^((y-1)/y)")
disp("so T2=T1*(P2/P1)^((y-1)/y) in K")
T2=T1*(r)^((y-1)/y)
disp("actual temperature at exit of first stage can be estimated using polytropic index 1.49.")
disp("T2_actual/T1=(P2/P1)^((n-1)/n)")
disp("so T2_actual=T1*(P2/P1)^((n-1)/n) in K")
T2_actual=T1*(r)^((n-1)/n)
disp("stage efficiency for first stage,ns_1=(T2-T1)/(T2_actual-T1)")
ns_1=(T2-T1)/(T2_actual-T1)
disp("in percentage")
ns_=ns_1*100
disp("actual temperature at exit of second stage,")
disp("T3_actual/T2_actual=(P3/P2)^((n-1)/n)")
disp("so T3_actual=T2_actual*(P3/P2)^((n-1)/n) in K")
T3_actual=T2_actual*(r)^((n-1)/n)
disp("ideal temperature at exit of second stage")
disp("T3/T2_actual=(P3/P2)^((n-1)/n)")
disp("so T3=T2_actual*(P3/P2)^((y-1)/y) in K")
T3=T2_actual*(r)^((y-1)/y)
disp("stage efficiency for second stage,ns_2=(T3-T2_actual)/(T3_actual-T2_actual)")
ns_2=(T3-T2_actual)/(T3_actual-T2_actual)
disp("in percentage")
ns_2=ns_2*100
disp("actual rtemperature at exit of third stage,")
disp("T4_actual/T3_actual=(P4/P3)^((n-1)/n)")
disp("so T4_actual=T3_actual*(P4/P3)^((n-1)/n) in K")
T4_actual=T3_actual*(r)^((n-1)/n)
disp("ideal temperature at exit of third stage,")
disp("T4/T3_actual=(P4/P3)^((n-1)/n)")
disp("so T4=T3_actual*(P4/P3)^((y-1)/y) in K")
T4=T3_actual*(r)^((y-1)/y)
disp("stage efficiency for third stage,ns_3=(T4-T3_actual)/(T4_actual-T3_actual)")
ns_3=(T4-T3_actual)/(T4_actual-T3_actual)
disp("in percentage")
ns_3=ns_3*100
disp("so stage efficiency=86.4%")
disp("iv> from steady flow energy equation,")
disp("Wc=dw=dh and dh=du+p*dv+v*dp")
disp("dh=dq+v*dp")
disp("dq=0 in adiabatic process")
disp("dh=v*dp")
disp("Wc=v*dp")
disp("here for polytropic compression ")
disp("P*V^1.49=constant i.e n=1.49")
n=1.49;
disp("Wc=(n/(n-1))*m*R*T1*[((P9/P1)^((n-1)/n))-1] in KJ/s")
Wc=(n/(n-1))*m*R*T1*[((k)^((n-1)/n))-1]
disp("due to overall efficiency being 90% the actual compressor work(Wc_actual)=Wc*0.9 in KJ/s")
Wc_actual=Wc*0.9
disp("so power required to drive compressor =14777.89 KJ/s")
|
9fb41ee39b5e3550b1a89b7fd5610a47489442c9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /812/CH8/EX8.11/8_11.sce | 1ac0346b61f02294304a1b3462e5841e3b644475 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 800 | sce | 8_11.sce | //Diameter and head//
pathname=get_absolute_file_path('8.11.sce')
filename=pathname+filesep()+'8.11-data.sci'
exec(filename)
//Value of K*B^2:
K_B=Q/(%pi/4*D^2)*sqrt(0.5*d1/g/d2/h)
//Reynods number:
ReD1=4/%pi*Q/D/v
//By trial and error method, the value of beta is fixed at:
betta=0.66;
//K is then:
K=K_B/betta^2
//Diameter of orifice plate(in m):
Dt=betta*D
//Value of p3-p2(in N/m^2):
P1=d1*Q^2/(%pi/4*D^2)^2*(1/0.65/betta^2-1)
//Value of p1-p2(in N/m^2):
P2=d2*g*h
//Head loss between sections 1 and 3(in N-m/kg):
hLT=(P2-P1)/d1
//Expressing the permanent pressure as a fractio of the meter differential:
C=(P2-P1)/P2
printf("\n\n\nRESULTS\n\n")
printf("\n\nDiameter of the orifice: %.3f m\n\n",Dt)
printf("\n\nHead loss between secions 1 and 3: %.3f N-m/kg\n\n",hLT)
|
773e67dd58a90b09f1983fd907aa6c95dd55d102 | 717ddeb7e700373742c617a95e25a2376565112c | /608/CH19/EX19.04/19_04.sce | 08e14076f4c42156729f07a37c133e356b34fa88 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 933 | sce | 19_04.sce | //Problem 19.04: A 415 V, 3-phase, 4 wire, star-connected system supplies three resistive loads as shown in Figure 19.7. Determine (a) the current in each line and (b) the current in the neutral conductor.
//initializing the variables:
V = 415; // in Volts
PR = 24000; // in Watt
Py = 18000; // in Watt
Pb = 12000; // in Watt
VR = 240; // in Volts
Vy = 240; // in Volts
Vb = 240; // in Volts
//calculation:
//For a star-connected system VL = Vp*(3^0.5)
Vp = Vl/(3^0.5)
phir = 90*%pi/180
phiy = 330*%pi/180
phib = 210*%pi/180
// I = P/V for a resistive load
IR = PR/VR
Iy = Py/Vy
Ib = Pb/Vb
Inh = IR*cos(phir) + Ib*cos(phib) + Iy*cos(phiy)
Inv = IR*sin(phir) + Ib*sin(phib) + Iy*sin(phiy)
In = (Inh^2 + Inv^2)^0.5
printf("\n\n Result \n\n")
printf("\n (a)cuurnt in R line is %.0f A, cuurnt in Y line is %.0f A and cuurnt in B line is %.0f A",IR,Iy,Ib)
printf("\n (b)cuurnt in neutral line is %.1f A",In) |
e769e0e0107064b3118de87b40bfe7c206eecd61 | 7abf244df592856674c2ad7f05651421f953a699 | /ReinforcementLearning/MDP.sci | 1405911131940be1404878856bf90189341d4c78 | [] | no_license | prasadovhal/Machine-Learning-Codes | 5098787d7321ae00f43756d9b9b5cad6ce53f2aa | ef01c89de18b588b038b377b92d6df4e498b5224 | refs/heads/master | 2020-04-10T06:37:25.812075 | 2018-12-10T11:19:02 | 2018-12-10T11:19:02 | 160,859,954 | 0 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 781 | sci | MDP.sci | clear;
N=10; P=0.8; gamma=0.9;
U=diag(ones(1,N));
T=zeros(N,N,2);
r=zeros(1,N)-0.1; r(1)=-1; r(N)=1;
T(1,1,:)=1; T(N,N,:)=1;
for i=2:N-1;
T(i,i-1,1)=P;
T(i,i+1,1)=1-P;
T(i,i-1,2)=1-P;
T(i,i+1,2)=P;
end
policy=floor(2*rand(1,N))+1;
Vpi=zeros(N,1);
iter = 0;
converge=0;
while ~converge
iter = iter + 1;
old_V = Vpi;
Tpi=zeros(N,N); Tpi(1,1)=1; Tpi(N,N)=1;
for s=2:N-1;
Tpi(s,s-1)=T(s,s-1,policy(s));
Tpi(s,s+1)=T(s,s+1,policy(s));
end
Vpi=inv(U-gamma*Tpi) * r';
disp(Vpi)
policy(1)=0; policy(N)=0;
for s=2:N-1
[tmp,policy(s)] = max([Vpi(s-1),Vpi(s+1)])
disp(policy)
disp(tmp)
end
//disp(policy)
if abs(sum(old_V - Vpi)) < 0.01
converge = 1;
end
end
iter, policy
|
ffca978713cf7d33df5735eb17028f28d511bc83 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1634/CH1/EX1.33/example1_33.sce | 5c4e6838f89e1d3a0b2ef5e516fae2aedd62ca4d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 533 | sce | example1_33.sce |
//exapple 1.33
clc; funcprot(0);
// Initialization of Variable
longP=60+30/60;//longitude of place
GST=7+30/60+48.6/3600;//GST at GMM
RA=17+28/60/40/1600;
dot=longP/15;//difference in time
i=dot*9.8565/3600;//error
gmm=GST-i;//LST at L.M.N
LMT=RA-gmm;//local mean time
disp("local mean time in past midnight observed:");
a=modulo(LMT*3600,60);
printf("seconds %.2f",a);
b=modulo(LMT*3600-a,3600)/60;
printf(" minutes %i",b);
c=(LMT*3600-b*60-a)/3600;
if c>24 then
c=c-24;
end
printf(" hours %i",c);
|
16ba3940f6e798f9ba92dbb870df765b3770cfdc | 449d555969bfd7befe906877abab098c6e63a0e8 | /3871/CH3/EX3.16/Ex3_16.sce | bdebb00e1af0a868a7c23cb1c01ffa38c6bf0b34 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 814 | sce | Ex3_16.sce |
//===========================================================================
//chapter 3 example 16
clc;clear all;
//variable declaration
E =200; //limiting voltage in V
R = 1000; //resistance in Ω
eE = 1; //relative limiting error(dE/E) in %
eR = 5; //relative limting error(dR/R) in %
//calculations
P = (E**2)/(R); //normal power consumed in W
eP = ((2*eE)+eR); //relative limiting error(dP/P) in measurement of power in %
dP = P*(eP/(100)); //limitng error of power in watts
//result
mprintf("Normal power consumed = %3.2f W",P);
mprintf("\nrelative limitng error in power measurement= %3.2f percentage rangng +eP to -eP",eP);
mprintf("\nlimitng error of power = %3.2f percentage",dP);
|
1b684beef9dc0d403686e9073b651035798d1d08 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1595/CH1/EX1.8/ex1_8.sce | cf3fd8670f8c706ed9b28d32c27238e41a5cc8b1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 358 | sce | ex1_8.sce | //Introductory Topics :example 1-8 : (pg no. 24)
k=1.38*10^-23;
T=(35+40+52);//total temperature
df=(1*10^6);
Teq=52;
To=290;
Pn=(k*T*df);
x=(Teq/To);
NR=(x+1);
NF=(10*log10(NR));
printf("\nPn = k.T.delta(f) = %.17f W",Pn);//Noise power
printf("\nTeq = To(NR-1) \nNR = %.2f",NR);//noise ratio
printf("\nNF = 10log(NR) =%.3f dB",NF);//noise figure |
cfde0d40e2eb4db0c7c4765954e50f2bfc52952a | 449d555969bfd7befe906877abab098c6e63a0e8 | /929/CH5/EX5.8/Example5_8.sce | ce9c0602fa809f904762b22dbe6df5a7b7ff4728 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 554 | sce | Example5_8.sce | //Example 5.8
clear;
clc;
As=-5;
Ri=30*10^3;
Vs=15;
R1=Ri;
R2=abs(As)*R1;
Rp=(R1*R2)/(R1+R2);
Vosmax=6*10^(-3);
Iosmax=200*10^(-9);
EImax=Vosmax+(Rp*Iosmax);
RA=1*10^3;
Rpc=Rp-RA;
EImaxs=EImax+(4*10^(-3));
RB=RA*(Vs/EImaxs);
RC=100*10^3;///Choosing RC=100 kohms
printf("R1=%.2f kohms",R1*10^(-3));
printf("\nR2=%.2f kohms",R2*10^(-3));
printf("\nRp=%.2f kohms",Rpc*10^(-3));
printf("\nRA=%.2f kohms",RA*10^(-3));
printf("\nRB=%.2f Mohms",RB*10^(-6));
printf("\nRC=%.2f kohms",RC*10^(-3)); |
67bf21d33609e5f423882bbac31b3c5b3ab2fd53 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3733/CH17/EX17.12/Ex17_12.sce | cf89d7ecd65008c9ae7be9d78a499dfe638aaa3a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex17_12.sce | // Example 17_12
clc;funcprot(0);
//Given data
m_s=10;// Tonnes
U=4;// KW/m^2.°C
P=0.2;// bar
//Calculation
h_fg=2358.3;// Latent heat of steam at 0.2 bar pressure in kJ/kg
Q=(m_s*1000*h_fg)/3600;//kW
//The given data is T_s-T_wo=10°C; T_wo-T_wi=20°C;Using this two equations,we get
Theta_i=30;//°C
Theta_o=10;//°C
LMTD=(Theta_i-Theta_o)/(log(Theta_i/Theta_o));//Logrithemic mean temperature difference in °C
A=Q/(U*LMTD);// m^2
printf('\nThe area of the condenser required=%0.0f m^2',A);
|
28c0ced98060f095b4fa54db4ecd4acfe20126aa | 449d555969bfd7befe906877abab098c6e63a0e8 | /1733/CH8/EX8.21/8_21.sce | 6156a53bed1f61bd2b05b3e403a8ff4900836d72 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 286 | sce | 8_21.sce | //8.21
clc;
R2=5.6*10^3;
R1=1*10^3;
Avf=1+R2/R1;
printf("Mid band Gain=%.2f", Avf)
Vin=1.6;
Vo=Avf*Vin;
printf("\nOutput voltage=%.3f mV", Vo)
R=1000;
C=0.001*10^-6;
fc=1/(2*%pi*R*C);
printf("\nCutt off frequency=%.2f Hz", fc)
Gain=0.707*Avf;
printf("\nGain=%.3f", Gain)
|
e4f5e5fe5fa43adae8613f25624a7ef380561e14 | 8781912fe931b72e88f06cb03f2a6e1e617f37fe | /scilab/ofemdemo/demo_2bay.sce | 135eba07d98037af0b82f5ee986a4acd3d5fe7e1 | [] | no_license | mikeg2105/matlab-old | fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e | eac168097f9060b4787ee17e3a97f2099f8182c1 | refs/heads/master | 2021-05-01T07:58:19.274277 | 2018-02-11T22:09:18 | 2018-02-11T22:09:18 | 121,167,118 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,322 | sce | demo_2bay.sce | //=========================================================//
// DEMO_2BAY //
//=========================================================//
//---------------------------------------------------------//
// 1. Boundary conditions and constraints //
// See section 3.2.1 of the tutorial //
//---------------------------------------------------------//
model=femesh('test 2bay');
mdof = feutil('getdof group1:2',model);
i1 = femesh('findnode x==0');
adof1 = fe_c(mdof,i1,'dof',1); // clamp edge
adof2 = fe_c(mdof,[.01 .02 .06]','dof',2); // 2-D motion
adof = [adof1;adof2];
model=fe_case(model,'SetCase1', ... // defines a new case
'FixDof','fixed DOF list',adof);
//---------------------------------------------------------//
// 2. Assembly //
// See section 3.3.1 of the tutorial //
//---------------------------------------------------------//
model = fe_mk(model);
model2 = femesh('test 2bay');
model2 = fe_mk(model2,'FixDof','2-D motion',[.03 .04 .05],'FixDof','clamp edge',[1 2]);
[m,k,mdof] = fe_mk(model2,'FixDof','2-D motion',[.03 .04 .05],'FixDof','clamp edge',[1 2]);
max(abs(m-model2.K(1).entries))
max(abs(k-model2.K(2).entries)) |
4db4e8acc1f28f7c1e35a46ea06c1ff8fba296af | 449d555969bfd7befe906877abab098c6e63a0e8 | /2414/CH5/EX5.6/Ex5_6.sce | 69697627fb410c8db102ae36f3c0f770ac6ead8f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 600 | sce | Ex5_6.sce | clc;
clear all;
//page no 157
//prob no. 5.6
fLO=110; //MHz
//for V2(f)
f=[0:.01:231+.01]; //x axis
function V=pulse()
V=[]
for i=1:.005:1.5
V=[V i]
end
endfunction
V2=[zeros(0:.01:120-fLO-.01) pulse() zeros(121-fLO+.01:.01:120+fLO-.01) pulse() 0]; //y axis
clf;
subplot(211);
plot2d(f,V2,[5],rect=[0,0,240,2])
xtitle('Spectral diagram','f,MHz','V2(f)');
//for V3(f)
f=[0:.01:11+.01]; //x axis
V3=[zeros(0:.01:120-fLO-.01) pulse() 0]; //y axis
subplot(212);
plot2d(f,V3,[5],rect=[0,0,20,2])
xtitle('Spectral Diagram','f,MHz','V3(f)');
|
95376b7e4226921ab084125ba15bb24e51a69f59 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1871/CH4/EX4.1/Ch04Ex1.sce | 387b55fe6ede1e3db28f2cbce8143b4222389aa1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 819 | sce | Ch04Ex1.sce | // Scilab code Ex4.1 : Pg:139 (2008)
clc;clear;
I_max = 36; // Maxiumum intensity of interfering waves
I_min = 1; // Minimum intensity of interfering waves
// As (a + b)/(a - b) = sqrt(I_max/I_min), solving for a/b
a1 = sqrt(I_max)+1; // Amplitude of first wave, unit
a2 = sqrt(I_max)-1; // Amplitude of second wave, unit
I1 = a1^2; // Intensity of the first wave, unit
I2 = a2^2; // Intensity of the second wave, unit
printf("\nThe ratio between the amplitudes of the two interfering waves, a1:a2 = %d:%d", a1, a2);
printf("\nThe ratio between the intensities of the two interfering waves, I1:I2 = %d:%d", I1, I2);
// Result
// The ratio between the amplitudes of the two interfering waves, a1:a2 = 7:5
// The ratio between the intensities of the two interfering waves, I1:I2 = 49:25 |
d8654772be740607d36936784dcc3f705d4b11dd | 449d555969bfd7befe906877abab098c6e63a0e8 | /3257/CH2/EX2.1/Ex2_1.sce | 25890574d48aedd7fde14d2db4dfaf4894f3f3ee | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 348 | sce | Ex2_1.sce | // Calculation of ultimate tensile strength
clc
K = 689655 // in kPa
n = 0.5
A0 = 1 // let
printf("\n Example 2.1")
sigma = K*n^n
A_neck = A0*exp(-n)
P= sigma*A_neck
UTS = P/A0
printf("\n True ultimate tensile strength is %.2fkPa",sigma)
printf("\n Engineering UTS of material is %.2f kPa",UTS)
// Answer in book is 295521.79 kPa
|
cf72f88f45773fced69dbb5a9a81ac118113f036 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3866/CH2/EX2.10/Ex2_10.sce | f06fbdb9c60fcfc721eca915a63dd8ac4d0edd2c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 294 | sce | Ex2_10.sce | clear; clc; close;
vgs1=0.140;//obtained from figure
vgs2=0.212;//obtained from figure
k=1.3807*(10^(-23));//boltzmann constant
t=300;//temperature in kelvin
q=1.6*(10^(-19));
n=((vgs2-vgs1)*q)/(k*t*log(10));
s=60*n;
disp(n,'for PMOS device');
disp(s,'slope factor(in mv/decade)');
|
b548c01d7fcc81c3e353eafcf253463508dbd9cc | 449d555969bfd7befe906877abab098c6e63a0e8 | /680/CH10/EX10.09/10_09.sce | f3f8141f14c237adbd85062c5a3d5d5d1e46c7fd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 532 | sce | 10_09.sce | //Problem 10.09:
//initializing the variables:
EA = 10
x = 0.10
Da = 117
Db = 0.04521
Dr = -6.53E-6
DH0co2 = -94054; // in cal/gmol
DH0h2o = -57798; // in cal/gmol
DH0c2h6o = -56240; // in cal/gmol
//calculation:
DH0298 = 2*DH0co2 + 3*DH0h2o - DH0c2h6o
DHP = -1*DH0298
DHPl = (1 - x)*DHP
//DHPl = Da*(T - 298) + (Db/2)*(T^2 - 298^2) + (Dr/3)*(T^3 - 298^3)
//solving this, we get
T = 2025 // in k
Tf = 9*(T - 273)/5 + 32 // in deg F
printf("\n\nResult\n\n")
printf("\n the flame temperature is %.0fdeg F",Tf) |
267ea9151ae0570f4de46164a1214d2d552ccedf | 449d555969bfd7befe906877abab098c6e63a0e8 | /767/CH1/EX1.5.4/Ch1Exa1_5_4.sci | b79acd1cbd6083d60dcdbc18651c6efc2d09a74d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 498 | sci | Ch1Exa1_5_4.sci | // Scilab code Exa1.5.4 : To calculate binding energy of Fe-56 : Page 38 (2011)
M_Fe = 55.934939; // Mass of Fe-56, amu
M_p = 1.007825; // Mass of proton, amu
M_n = 1.008665; // Mass of neutron, amu
Z = 26; // Atomic number of Fe-56
N = 30; // Number of neutron in Fe-56
amu = 931.49; // Atomic mass unit, MeV
BE = [(Z*M_p)+(N*M_n)-M_Fe]*amu; // Binding energy of Fe-56, MeV
printf("\nThe binding energy of Fe-56 : %6.4f MeV",BE)
// Result
// The binding energy of Fe-56 : 492.2561 MeV |
0abeca98cd8bc038dadcce737531aa0d2266d1ce | 449d555969bfd7befe906877abab098c6e63a0e8 | /689/CH2/EX2.5/5.sce | 7cbd5cf840a685588668cc6855fa7a96ba751904 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 555 | sce | 5.sce | //Example 2.5 On Stagnation Point
// Initialisation of variables
h = 50;
v = 100*5280/3600; //Speed in feet/sec
rho_0 = 0.002378;
rho_10000 = 0.001756;
// Calculations
Po = w*h;
Ps_Po1 = (1/2)*rho_0*v^2;
Ps_Po2 = (1/2)*rho_10000*v^2;
V = 0.682*sqrt(Ps_Po2/(rho_0/2));
//Results
disp(V, "Part(c) Reading of airspeed indicator (mph):", Ps_Po2,"Part (b) difference between impact and static pressure at altitude 10000 ft(lb/sq-ft):", Ps_Po1,"Part (a) difference between impact and static pressure at sea level (lb/sq-ft):");
|
d1fdaf3e489b7e5a989bdd3a8117556c00b73a9c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3886/CH9/EX9.14/9_14.sce | f1a6022b90fe0bd7ad17cd11e8eec20563e86dce | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 673 | sce | 9_14.sce | //Determine moment of inertia
//refer fig.9.39
A1=100*30 //mm^2
A2=100*25 //mm^2
A3=200*20 //mm^2
A4=87.5*20/2 //mm^2
A5=87.5*20/2 //mm^2
A=A1+A2+A3+A4+A5 //mm^2
ybar=(3000*135+2500*70+4000*10+875*(20/3+20)*2)/A //mm
Ixx=((100*30*30*30)/(12))+(3000*(75.74^2))+((25*(100^3))/(12))+(2500*(10.74^2))+((200*(20^3))/(12))+(4000*(49.26^2))+((87.5*(20^3))/(36))+(875*(32.59^2))+((87.5*(20^3))/(36))+(875*(32.59^2)) //mm^4
Iyy=((30*(100^3))/(12))+((100*(25^3))/(12))+((20*(200^3))/(12))+((20*(87.5^3))/(36))+(875*(41.66^2))+((20*(87.5^3))/(36))+(875*(41.66^2)) //mm^4
printf("\nIxx=%.2d mm^4\nIyy=%.2d mm^4",Ixx,Iyy)
//The answers vary due to round off error
|
df8db1214f2255c1a460bf5873bce3b9bd3deeaa | 449d555969bfd7befe906877abab098c6e63a0e8 | /1460/CH13/EX13.5/13_5.sce | f05efa61aecf3addd5b86fc5924e71a2b416a529 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 321 | sce | 13_5.sce | clc
//initialization of variables
Tt2=1620+460 //R
Tt1=60+460 //R
Mi=0.2
P=40 //lb/in^2
g=1.35
//calculations
Tratio=Tt2/Tt1
disp("From figure")
fM=4*0.036
NM2=0.49
Pratio=0.98/0.885
Pt2=P/Pratio
//results
printf("Final stagnation pressure = %.1f //lb/in^2",Pt2)
printf("\n Final mach number = %.3f",fM)
|
0636520719cc1a8675651e240af57c9fedccefff | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH7/EX7.7/7_7.sce | b209c0e5cd47fe0702ada94fb81f474fa07b6b42 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 931 | sce | 7_7.sce | clear; clc; close;
Idss = 6*10^(-3);
Vp = -3;
Vdd = 18;
Rd = 1.8*10^(3);
Rs = 750;
Vg = 10*10^(6)*18/((10+110)*10^(6));
Vgs1 = Vp;
Id1 = 0;
Vgs2 = Vp/2;
Id2 = Idss/4;
Vgs3 = 0;
Id3 = Idss;
Vgs4 = 1;
Id4 = Idss*(1-(Vgs4/Vp))^2;
disp(Id4);
x = [Vgs1 Vgs2 Vgs3 Vgs4];
y = [Id1 Id2 Id3 Id4];
yi=smooth([x;y],0.1);
a = gca();
a.thickness = 2;
a.y_location = 'right';
a.x_label.text = 'Vgs';
a.y_label.text = 'Id(mA)';
a.title.text = 'Q-point for network';
a.grid = [1 1];
plot2d(yi(1,:)',yi(2,:)',[3]);
Id1 = 0;
Vgs1 = Vg-Id1*Rs;
Id2 = 3*10^(-3);
Vgs2 = Vg-Id2*Rs;
Id3 = 6*10^(-3);
Vgs3 = Vg-Id3*Rs;
x = [Vgs1 Vgs2 Vgs3];
y = [Id1 Id2 Id3];
plot2d(x,y);
a.data_bounds = [-3 0;2 10*10^(-3)];
Vgsq = -0.8;
disp(Vgsq,'Q-point value of Vgs(found after interpolation) is :');
Idq = 3.1*10^(-3);
Vds = Vdd - Idq*(Rd+Rs);
disp(Idq,'Idq(Amperes) = ');
disp(Vds,'Vds(Volts) = ');
|
916d8a4fcbda051236d9dd175f8a7a1d6b7d9c42 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3763/CH7/EX7.3/Ex7_3.sce | 8da0edd1aebf3103eb502d22526d9c29655dfc71 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 393 | sce | Ex7_3.sce | clear
//
//
//
//Variable declaration
chi=0.5*10**-5 //magnetic susceptibility
H=10**6 //field strength(ampere/m)
mew0=4*%pi*10**-7
//Calculation
I=chi*H //intensity of magnetisation(ampere/m)
B=mew0*(I+H) //flux density in material(weber/m**2)
//Result
printf("\n intensity of magnetisation is %0.3f ampere/m",I)
printf("\n flux density in material is %0.3f weber/m**2",B)
|
b9ffeff94e68ce7335afc3d7fccf60bfebfa168d | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH6/EX6.9/6_9.sce | bf2c82c1ffb91c008034d4797aa292a8d86733c4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 114 | sce | 6_9.sce | //Eg-6.9
//pg-294
clear
clc
//Theoretical Problem
disp("The example is solved analytically.") |
76a062b143945f857d03c13bcff3c8e9aeee69aa | 449d555969bfd7befe906877abab098c6e63a0e8 | /2744/CH5/EX5.7/Ex5_7.sce | 1f52cdcc94b0c1ce8d0467a34a5eb75e62f5b4af | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 353 | sce | Ex5_7.sce | clear;
clc;
l = 20;// feet
b = 9;// inches
h = 10;// feet
w = 120;// lb. per cub. foot
f = 1100;// lb/in^2
W = w*(3/4)*l*h;// lb-wt
BM_max = W*l*12/8;// lb-inches
//assumnig d = 2b
b = (6*BM_max/(f*4))^(1/3);// inches
d = 2*b;// inches
printf('b = %.2f inches\n d = %.2f inches',b,d);
printf('\n A section %d X %d will therfore do.',b,d);
|
6867ccdfa56e5361ce556b4fdd2429e67e2eaae9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /172/CH15/EX15.7/ex7.sce | 58104be3bfbd1af488c3568196d72ea53fcb0d43 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,908 | sce | ex7.sce | //ques7
//calculating enthalpy of water at given pressure and temperature
clear
clc
//1.Assuming steam to be an ideal gas with value of Cp
T1=298.15;//Initial temperature in K
T2=573.15;//final temperature in K
T=(T1+T2)/2;//average temperature in K
Cp=1.79+0.107*T/1000+0.586*(T/1000)^2-.20*(T/1000)^3;//specific heat at constant pressure in kj/kg.K
M=18.015;//mass in kg
dh=M*Cp*(T2-T1);//enthalpy change in kJ/kmol
ho=-241.826;//enthalpy at standard temperature and pressure in kJ/mol
htp1=ho+dh/1000;//enthalpy at given temp and pressure in kJ/kmol
printf('1. Enthalpy of water at given pressure and temperature using value of Cp = %.3f kJ/kmol \n',htp1);
//2..Assuming steam to be an ideal gas with value for dh
dh=9359;//enthalpy change from table A.9 in kJ/mol
htp2=ho+dh/1000;//enthalpy at given temp and pressure in kJ/kmol
printf(' 2. Enthalpy of water at given pressure and temperature assuming value od dh = %.3f kJ/kmol \n',htp2);
//3. Using steam table
dh=M*(2977.5-2547.2);//enthalpy change for gases in kJ/mol
htp3g=dh/1000+ho;
dh=M*(2977.5-104.9);//enthalpy change for liquid in kJ/mol
hl=-285.830;//standard enthalpy for liquid in kJ/kmol
htp3l=hl+dh/1000;//enthalpy at given temp and pressure in kJ/kmol
printf(' 3.(i) enthalpy at given temp and pressure in kJ/kmol in terms of liquid = %.3f kJ/kmol \n',htp3l);
printf(' 3.(ii) enthalpy at given temp and pressure in kJ/kmol in terms of liquid = %.3f kJ/kmol \n',htp3g);
//4.using generalised charts
//htp=ho-(h2*-h2)+(h2*-h1*)+(h1*-h1);
//h2*-h2=Z*R*Tc,
//h2*-h1*=9539 kJ/mol, from part 2
//h1*-h1=0 ,as ideal gas
Z=0.21;//from chart
R=8.3145;//gas constant in SI units
Tc=647.3;//critical temperature in K
htp4=ho+9539/1000-Z*R*Tc/1000;//enthalpy at given temp and pressure in kJ/kmol
printf(' 4. enthalpy at given temp and pressure in kJ/kmol using compressibility chart = %.3f kJ/kmol \n',htp4); |
32d913f678278b21a71e973fe463504ac16825b8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2855/CH6/EX6.15/Ex6_15.sce | 8db57256dfcdb02e12d815b9ed5ccfb8ca09dc57 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 223 | sce | Ex6_15.sce | //chapter 6
//page no182
//Ex6_15
//given
clear;
clc;
dV=40; //in mV
di=2.5; //in Amp
Lbypas=0.5; //in nH
fL=dV*10^-3/di/2/%pi/Lbypas/10^-9;
printf("fHnoise = %0.1f MHz",fL/10^6);
|
52a2f943530769264941c1ad23f93cd0d50c287a | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH8/EX8.10/8_10.sce | d731832aec599eeff6b7d09ee5d9e9fc964f10af | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 718 | sce | 8_10.sce | clear; clc; close;
yos = 50*10^(-6);
Idss = 10*10^(-3);
Vp = -4;
Vgsq = -2.2;
Idq = 2.03*10^(-3);
Rd = 3.6*10^(3);
Rs = 1.1*10^(3);
Vi = 40*10^(-3);
gmo = 2*Idss/abs(Vp);
gm = gmo*(1-(Vgsq/Vp));
rd = 1/yos;
Zi = Rs*((rd+Rd)/(1+gm*rd))/(Rs+((rd+Rd)/(1+gm*rd)));
Zi2 = Rs*gm^(-1)/(Rs+gm^(-1));
Zo = Rd*rd/(Rd+rd);
Zo2 = Rd;
Av = (gm*Rd+(Rd/rd))/(1+Rd/rd);
Vo = Av*Vi;
Av2 = gm*Rd;
Vo2 = Av2*Vi;
disp(gm,'gm(S) = ');
disp(rd,'rd(ohms) = ');
disp(Zi,'Zi(ohms) = ');
disp(Zi2,'Zi(ohms) without rd = ');
disp(Zo,'Zo(ohms) = ');
disp(Zo2,'Zo(ohms) without rd = ')
disp(Av,'Voltage gain Av = ');
disp(Vo,'Vo = ');
disp(Av2,'Volatge gain Av(ignoring rd) = ');
disp(Vo2,'Vo2 witout rd = ');
|
d8c64cca80a65a383d49e4a04da40e34ad606695 | dc5a2fe4380e1453a12f15f5080b10f3ababb9de | /AutomationTools/bin/1.0/common/ATLAS/tools/txtfile/sh_pc_ether_0.tst | 8bbcbe4f4f99e6b922f37cc4b51ef2b1a328cdf9 | [] | no_license | jameshilliard/PythonCode | f72ad62bb8b8cafbc94cbe7c0d3065343fdf0f98 | 422543bc049f57a67d53ec0b89caef076297cdc5 | refs/heads/master | 2020-04-09T00:06:25.689609 | 2015-03-14T13:14:34 | 2015-03-14T13:14:34 | 32,722,067 | 3 | 0 | null | 2015-03-23T09:21:52 | 2015-03-23T09:21:52 | null | UTF-8 | Scilab | false | false | 4,817 | tst | sh_pc_ether_0.tst | -v G_USER=jonguyen
-v G_CONFIG=1.0
-v G_TBTYPE=pc
-v G_TST_TITLE="Parental Control"
-v G_PROD_TYPE=MC524WR
-v G_HTTP_DIR=test/
-v G_FTP_DIR=/log/autotest
-v G_TESTBED=tb_pc
-v G_FROMRCPT=qaman
-v G_FTPUSR=root
-v G_FTPPWD=@ctiontec123
-v U_USER=admin
-v U_PWD=admin1
-v G_LIBVERSION=1.0
-v G_LOG=$SQAROOT/automation/logs
-v U_COMMONLIB=$SQAROOT/lib/$G_LIBVERSION/common
-v U_COMMONBIN=$SQAROOT/bin/$G_LIBVERSION/common
-v U_TBCFG=$SQAROOT/config/$G_LIBVERSION/testbed
-v U_TBPROF=$SQAROOT/config/$G_LIBVERSION/common
-v U_VERIWAVE=$SQAROOT/bin/1.0/veriwave/
-v U_MI424=$SQAROOT/bin/1.0/mi424wr/
-v U_TESTPATH=$SQAROOT/platform/1.0/verizon/testcases/pc/json
#this value used to setup dut configuration
-v U_DEBUG=3
-v U_RUBYBIN=$SQAROOT/bin/$G_LIBVERSION/rbin
-v U_VZBIN=$SQAROOT/bin/$G_LIBVERSION/vz_bin
-v U_COMMONJSON=$SQAROOT/platform/1.0/verizon2/testcases/common/json
-v U_COAX=0
#$G_PFVERSION=1.0
#------------------------------
# Set up the test environment.
#------------------------------
#-nc $SQAROOT/config/$G_CONFIG/common/testbedcfg_env.xml
-nc $SQAROOT/config/$G_CONFIG/common/testbedcfg.xml;
-nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/login_logout.xml
-nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/fw_upgrage_image.xml;pass=init
-nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/fw_upgrage_image.xml;pass=init
-nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/fw_upgrage_image.xml;fail=finish
-label init
-nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/reset_dut_to_default.xml
-nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/tc_init_dut.xml;pass=next
-nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/tc_init_dut.xml;pass=next
-nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/tc_init_dut.xml;fail=finish
-label next
-nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/tc_init_ping.xml;fail=finish
-nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/enable_tnet.xml
#------------------------------
# Test cases
#------------------------------
-nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/set_default_time.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000001.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000002.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000003.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000004.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000005.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000006.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000007.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000008.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000011.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000012.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000013.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000014.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000015.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000016.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000017.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000021.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000022.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000023.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000024.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000025.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000031.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000032.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000033.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000034.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000035.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000036.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000037.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000038.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000039.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000040.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000041.xml
-tc $SQAROOT/platform/1.0/verizon/testcases/pc/tcases/tc_pc_05001000042.xml
#------------------------------
# Checkout
#------------------------------
-label finish
-nc $SQAROOT/config/$G_CONFIG/common/finalresult.xml
-nc $SQAROOT/config/$G_CONFIG/common/uploadlog.xml
-nc $SQAROOT/config/$G_CONFIG/common/email.xml
|
6837e7de776ef1c26c0be4cece7d668050fd7ae8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1217/CH6/EX6.2/Exa6_2.sce | 3c1bb0f091985af6ba4989666cc59e4008306403 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Exa6_2.sce | // Exa 6.2
clc;
clear;
close;
// given data
R=10;//in Kohm
C=0.01;//in uF
R1=4.7;//in Kohm
RF=47;//in Kohm
fc=1/(2*%pi*R*1000*C*10^-6);//in Hz
AF=1+RF/R1;//unitless
disp(fc/1000,"Cut-off frequency in KHz is ; ")
disp(AF,"Pass band gain is ; ") |
f9058a720ae0368882f45ea8ffd1bb99e0772002 | 047d952507eb3b9d71fac69ec3332225f17f53ef | /main/out/main/testfiles/test14.tst | d171111fd24dd76722177dac8eb7868113e1735d | [] | no_license | patrick-nanys/project-laboratories-hw | 89ab8f366219f491e6feba5558bf41ef8205dda1 | ba57a9d5e4ca33a3cc1be3cdb4fe679fe0149f93 | refs/heads/master | 2022-08-09T14:14:31.220503 | 2020-05-18T11:20:03 | 2020-05-18T11:20:03 | 250,313,203 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 190 | tst | test14.tst | 5;eee;0
5;f,t
3;p,r
4;s,d
p1;-;p;-;3;3;3,5
-;p3;-;-;0;1;3,4
-;-;F;-;3;6;1,2
-;-;-;-;3;8;2,5
p2;-;-;i;3;5;1,4
startGame
stepPlayer 5
usePlayerItem f
swipeSnow
stepPlayer 4
stepPlayer 4
status |
1565c127baa1036ce3313055831c3373170e38e5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH9/EX9.4/example9_4.sce | e746edea7a8486d34953f1c490244ea2585ff435 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 756 | sce | example9_4.sce | v=12;
c=1.5;
t=10.5;
i=10;
disp("Part a");
r=(v-vt)/i;
disp("the internal resistance (in Ω) of the battery is"); disp(r);
disp("Part b");
p_v=(v-vt)*100/vt;
disp("the voltage regulation (in V) is"); disp(p_v);
disp("Part c");
rl=2;
il=v/(r+rl);
disp("the current (in A) is"); disp(il);
vl=v-il*r;
disp("the terminal voltage (in V) of the battery is"); disp(vl);
disp("Part d");
disp("When the terminal voltage is one-half he no-load voltage , the load resistance equals the internal resistance (in Ω) of"); disp(r);
disp("Part e");
i1=5;
vg=v+i1*r;
disp("the terminal voltage (in V) of the generator is"); disp(vg);
disp("Part f");
t=20;
i2=c/t;
disp("the mount of current (in A) he fully charged cell can deliver is"); disp(i2); |
73f83780bae25a88382a445c6ed2c7b06b041085 | 8712e7b4614b1ab648f19bcce8ca17e378876546 | /Scilab Sem Interface Grafica/Engine/C8_RESULTADOS.sce | 89a25a4edc404602e4e0d51a03c86c1837cc442a | [] | no_license | Diogo-Rossi/Mestrado-Diogo-Rossi | d0d476d878c729c44778ea8f364c50c5464fc751 | d544d3bce094931eb96a6031aaa1ae1a833d2b04 | refs/heads/master | 2022-08-26T22:28:04.339221 | 2022-07-11T00:25:21 | 2022-07-11T00:25:21 | 236,889,761 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 14,514 | sce | C8_RESULTADOS.sce | // RESULTADOS
// A execução deste programa assume que os seguintes já foram executados:
// C0_INIC | C1_BARRAS | C2_MAT_LOC | C3_MAT_GLOB | C4_REST_APOIO
// C5_AMORTEC | C6_CARGAS |
// Assim como um dos quatro programas seguintes:
// C7a_NEWMARK_CTS | C7b_NEWMARK_ATS_BERGAN
// C7c_NEWMARK_ATS_HULBERT | C7d_NEWMARK_ATS_CINTRA
// Na primeira vez que entra nessa interface assume-se que a deformada
// dinâmica não foi calculada, definindo as seguintes variáveis
nao_calculado = 1;
op = 1;
while intersect(op,[1 2 3 4 5 6 7 8 9])
clc
mprintf('\n7 - RESULTADOS ============================================\n');
mprintf('\nNumero total de pontos calculados no historico de resposta:');
mprintf('\nN1 = %d\n',N1);
mprintf('\nEscolha o resultado a ser exibido:');
mprintf('\n(1)-Frequencias naturais e taxas de amortecimento');
mprintf('\n(2)-Resposta para todos os Graus de Liberdade');
mprintf('\n(3)-Resposta para um Grau de Liberdade especifico');
mprintf('\n(4)-Historico de carga para todas as cargas nodais');
mprintf('\n(5)-Historico de carga para uma carga nodal especifica');
mprintf('\n(6)-Historico da variacao do incremento de tempo');
mprintf('\n(7)-Grafico da Funcao de controle de Bergan e Mollestad');
mprintf('\n(8)-Deformada dinamica da estrutura (OBS: Talvez demorado)');
mprintf('\n(9)-Deformada estatica da estrutura (com carregamento estatico');
mprintf('\n igual aos valores maximos declarados para as cargas nodais)');
mprintf('\n\n (Digite ENTER para sair)');
op = input('Opcao = ');
if isempty(op); op = 10; end
mprintf('\n ==========================================================\n');
close
switch op
case 1 // Exibe frequências naturais e taxas de amortecimento
mprintf('\nFrequencias naturais (rad/s):')
mprintf('\nw = '); mprintf('%12.3f',w); mprintf('\n\n');
mprintf('\nFrequencias naturais (Hz):')
mprintf('\nf = '); mprintf('%12.3f',w/(2*%pi)); mprintf('\n\n');
mprintf('\nTaxas de amortecimento (%%):',0);
mprintf('\ncsi = '); mprintf('%12.3f',100*csi);mprintf('\n');
mprintf('\n ==========================================================\n')
halt('Aperte ENTER');
case 2 // Plota a resposta para todos graus de liberdade
legenda = [];
for i=1:n
legenda = [legenda ; 'D' + string(GL(i))];
end
mprintf('Plotar historico da variacao do incremento de tempo?')
op2 = input('(1)-SIM | (2)-NAO | Opcao = ');
switch op2
case 1 // Plota a resposta junto com histórico de time-steps
subplot(2,1,1);
plot(t,D);
gca().data_bounds([1 2])=[0 T1]
legend(legenda);
subplot(2,1,2);
plot(t,Dt);
gca().data_bounds([1 2])=[0 T1]
case 2 // Plota somente a resposta
plot(t,D);
gca().data_bounds([1 2])=[0 T1]
legend(legenda);
end
case 3 // Plota a resposta para um grau de liberdade específico
des = GLR(1);
while intersect(des,GLR)
noh = input('Numero do noh = ');
mprintf('Deslocamento a ser plotado:\n');
mprintf('(1)-X | (2)-Y -> Translacoes | (3)-Z -> Rotacao');
des = input('Opcao = ');
switch des,case 1,tipo=' DESLOCX';case 2,tipo=' DESLOCY';case 3,tipo=' ROTZ';end;
des = 3*noh - (3-des);
if intersect(des,GLR)
mprintf('\nDeslocamento Restringido, escolha outro\n\n');
else
legenda = strcat(['D',string(des),'- Noh ',string(noh),tipo]);
mprintf('\nPlotar historico de variacao do incremento de tempo?')
op2 = input('(1)-SIM | (2)-NAO | Opcao = ');
switch op2
case 1
//Plota a resposta junto com histórico de time-steps
subplot(2,1,1);
plot(t,DJ(des,:));
gca().data_bounds([1 2])=[0 T1]
legend(legenda);
subplot(2,1,2);
plot(t,Dt);
gca().data_bounds([1 2])=[0 T1]
case 2
//Plota somente a resposta
plot(t,DJ(des,:));
gca().data_bounds([1 2])=[0 T1]
legend(legenda);
end
end
end
case 4 // Plota o histórico de todas as cargas nodais
legenda = [];
GLF = [];
for i=1:n
if F(i)~=0
legenda = [legenda; strcat(['P',string(GL(i))])];
GLF = [GLF ; i];
end
end
mprintf('Plotar historico de variacao do incremento de tempo?')
op2 = input('(1)-SIM | (2)-NAO | Opcao = ');
switch op2
case 1 // Plota as cargas junto com histórico de time-steps
subplot(2,1,1);
plot(t,p(GLF,:));
legend(legenda);
MIN = min(min(p(GLF,:))) ; MAX = max(max(p(GLF,:)));
ymin = MIN - abs(MAX-MIN)/10; ymax = MAX + abs(MAX-MIN)/10;
gca().data_bounds = [0 T1 ymin ymax]
subplot(2,1,2);
plot(t,Dt);
gca().data_bounds([1 2])=[0 T1]
case 2 // Plota as cargas somente
plot(t,p(GLF,:));
legend(legenda);
MIN = min(min(p(GLF,:))) ; MAX = max(max(p(GLF,:)));
ymin = MIN - abs(MAX-MIN)/10; ymax = MAX + abs(MAX-MIN)/10;
gca().data_bounds = [0 T1 ymin ymax]
end
case 5 // Plota o histórico de uma carga nodal específica
des = GLR(1);
while ~isempty(intersect(des,GLR)) || F(GL==des)==0
noh = input('Numero do noh = ');
mprintf('Direcao correspondente da carga a ser plotada:');
mprintf('\n(1)-X | (2)-Y -> Forcas | (3)-Z -> Momento');
des = input('Opcao = ');
switch des,case 1,tipo=' FX';case 2,tipo=' FY';case 3,tipo=' MZ';end;
des = 3*noh - (3-des);
if intersect(des,GLR)
mprintf('\nDeslocamento Restringido, escolha outro\n\n');
elseif F(GL==des)==0
mprintf('\nCarga Nula, escolha outra\n\n');
else
legenda = strcat(['P',string(des),'- Noh ',string(noh),tipo]);
mprintf('\nPlotar historico de variacao do incremento de tempo?')
op2 = input('(1)-SIM | (2)-NAO | Opcao = ');
switch op2
case 1
// Plota a carga junto com histórico de time-steps
subplot(2,1,1);
plot(t,p(GL==des,:));
legend(legenda);
MIN = min(p(GL==des,:)) ; MAX = max(p(GL==des,:));
ymin = MIN-abs(MAX-MIN)/10; ymax = MAX+abs(MAX-MIN)/10;
gca().data_bounds = [0 T1 ymin ymax]
subplot(2,1,2);
plot(t,Dt);
gca().data_bounds([1 2]) = [0 T1]
case 2
// Plota a carga somente
plot(t,p(GL==des,:));
legend(legenda);
MIN = min(p(GL==des,:)) ; MAX = max(p(GL==des,:));
ymin = MIN-abs(MAX-MIN)/10; ymax = MAX+abs(MAX-MIN)/10;
gca().data_bounds = [0 T1 ymin ymax]
end
end
end
case 6 // Plota histórico de time-steps
plot(t,Dt);
gca().data_bounds = [0 T1 0 2*max(Dt)]
case 7 // Plota gráfico da função de controle de Bergan e Mollestad
// Só funciona se tiver sido usado o algoritmo de Bergan
xx = 0:0.001:CSIm+0.5;
for i=1:length(xx)
yy(i) = f(xx(i),CSIp,CSIm);
end
plot(xx,yy);
gca().data_bounds = [0 CSIm+0.5 0 CSIm+0.5];
case 8 // Exibe um vídeo da deformada dinâmica do pórtico
if nao_calculado
// A deformada é calculada somente no caso em que já não tenha
// sido, pois esse processo (esse loop) é muito demorado
DX = zeros(np,m,N1);
DY = zeros(np,m,N1);
CDX = zeros(np,m,N1);
CDY = zeros(np,m,N1);
d = zeros(6,1);
for i=1:m
N = MN(Lx(i));
R2 = [c(i) -s(i);
s(i) c(i)];
DxL = Lx(i)/(np-1);
for k=1:N1
for j=1:6
d(j) = DJ(Des(i,j),k);
end
// O vetor 'd' é colocado em coordenadas nos eixos
// locais, usando a equação XXX
d = Rt(:,:,i)*d;
// O campo de deslocamentos em eixos locais é obtido
// usando a equação XXX
fi = N*d;
// A deformada é obtida para np pontos ao longo da barra
xL = 0;
for j=1:np
des = horner(fi,xL);
xL = xL + DxL;
// Mudança de base executada com a equação XXX
des = R2*des;
DX(j,i,k) = des(1);
DY(j,i,k) = des(2);
end
end
end
end
// Informa que a deformada dinâmica já foi calculada ao menos
// uma vez e delcara o fator de escala da deformada
nao_calculado = 0;
fs = input('Fator de escala = ');
// Calcula as coordenadas da deformada para todos os instantes
for k=1:N1
CDX(:,:,k) = CX + fs*DX(:,:,k);
CDY(:,:,k) = CY + fs*DY(:,:,k);
end
tempo = input('Tempo do filme (segundos) = '); // Tempo que se pretende rolar
plot(CX(:,:),CY(:,:),'b',CDX(:,:,1),CDY(:,:,1),'r');
deform = gce().children
isoview on
xmin = min(min(min(CDX)))-1 ; xmax = max(max(max(CDX)))+1;
ymin = min(min(min(CDY)))-1 ; ymax = max(max(max(CDY)))+1;
gca().data_bounds = [xmin xmax ymin ymax]
for k=1:N1
for i=1:m
deform(m+i).data = [CDX(:,i,k),CDY(:,i,k)];
end
sleep(tempo/N1,"s");
end
case 9// Exibe a deformada estática da estrutura considerando F (valores
// máximos para as cargas nodais) como carregamento estático
DJE = zeros(3*nj,1);
DE = K\F; // Solução estática para os graus de liberdade
DJE(GL) = DE; // Deslocamentos globais
DEX = zeros(np,m);
DEY = zeros(np,m);
d = zeros(6,1);
for i=1:m
N = MN(Lx(i));
R2 = [c(i) -s(i);
s(i) c(i)];
DxL = Lx(i)/(np-1);
for j=1:6
d(j) = DJE(Des(i,j));
end
// O vetor 'd' é colocado em coordenadas nos eixos locais,
// usando a equação XXX
d = Rt(:,:,i)*d;
// O campo de deslocamentos em eixos locais é obtido
// usando a equação XXX
fi = N*d;
// A deformada é obtida para np pontos ao longo da barra
xL = 0;
for j=1:np
des = horner(fi,xL);
xL = xL + DxL;
// Mudança de base executada com a equação XXX
des = R2*des;
DEX(j,i) = des(1);
DEY(j,i) = des(2);
end
end
// Delcara o fator de escala da deformada
fs = input('Fator de escala = ');
// Calcula as coordenadas da deformada
CDEX = CX + fs*DEX;
CDEY = CY + fs*DEY;
plot(CX(:,:),CY(:,:),'b',CDEX(:,:),CDEY(:,:),'r')
isoview on;
xmin = min(min(CDEX))-1 ; xmax = max(max(CDEX))+1;
ymin = min(min(CDEY))-1 ; ymax = max(max(CDEY))+1;
gca().data_bounds = [xmin xmax ymin ymax]
end
end
mprintf('FIM DO PROGRAMA\n\n');
respFinal = input("Deseja fechar o Scilab? (1)-Sim, (2)-Nao, Resposta = ");
if respFinal==1; exit; end
|
be6c609f5d4de2e988e124dd3b64acbc4921180f | 449d555969bfd7befe906877abab098c6e63a0e8 | /275/CH3/EX3.3.74/Ch3_3_74.sce | 14d3180c58533d97a09e41ee8a9b127cc5a81dbf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 706 | sce | Ch3_3_74.sce | clc
disp("Example 3.74")
printf("\n")
disp("Find the Ve, Ic,Vce & Vc. Draw a DC load line for Voltage divider circuit")
printf("Given\n")
//given
Vcc=15
Vbe=0.7
hFE=50
R1=6.8*10^3
R2=3.3*10^3
Rc=0.9*10^3
Re=0.9*10^3
//thevenin voltage
Vt=(Vcc*R2)/(R1+R2)
//thevenin resistance
Rt=(R1*R2)/(R1+R2)
//base current
Ib=(Vt-Vbe)/(Rt+(1+hFE)*Re)
//collector current
Icq=hFE*Ib
//emitter current
Ie=Ib+Icq
//emitter voltage
Ve=Ie*Re
//collector to emitter voltage
Vceq=Vcc-(Icq*Rc)-(Ie*Re);
Vce=[Vcc Vceq 0];
//collector voltage
Vc=Vce+Ve
//to draw DC load line
Ic1=Vcc/(Rc+Re)
Ic=[0 Icq Ic1]
printf("Q(%f,%f)\n",Vceq,Icq)
plot2d(Vce, Ic)
xlabel("Vce")
ylabel("Ic")
xtitle("DC load line for base bias circuit") |
cfc3ac962ec4f5c0dd2fbad1e397f222c14cb533 | fff63b10dfa84ecd9c87ad2e4be488cb4fe082f2 | /CSIT_GUI_Tool.sci | 9b767e9e4aa75008d7e8c7fbc622a080015d06c6 | [] | no_license | sanchit95/CSIT_GUI_Tool | c6a538d0e6fe4c20a80adffa656e0dbe053ff451 | 320f90ff88dddcbfb66a430b78dc4302e8911c93 | refs/heads/master | 2022-10-07T11:34:40.216194 | 2022-09-21T11:11:02 | 2022-09-21T11:11:02 | 75,521,857 | 0 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 34,241 | sci | CSIT_GUI_Tool.sci | defaultfont = "arial"; // Default Font
demo_lhy = scf(100001);// Create window with id=100001 and make
//it the current one
// Background and text
demo_lhy.background = -2;
demo_lhy.figure_position = [100 0];
demo_lhy.figure_name = gettext("Control System");
// Change dimensions of the figure
demo_lhy.axes_size = [1100 610];
//demo_lhy.axes_size = [1320 600];
//demo_lhy.figure_size = [-1 -1];
// Remove Scilab graphics menus & toolbar
delmenu(demo_lhy.figure_id,gettext("&File"));
delmenu(demo_lhy.figure_id,gettext("&Tools"));
delmenu(demo_lhy.figure_id,gettext("&Edit"));
delmenu(demo_lhy.figure_id,gettext("&?"));
toolbar(demo_lhy.figure_id,"off");
// New menu
h1 = uimenu("parent",demo_lhy, "label",gettext("File"));
h5 = uimenu("parent",demo_lhy, "label",gettext("Stability Analysis"));
h3 = uimenu("parent",demo_lhy, "label",gettext("Time domain"));
h4 = uimenu("parent",demo_lhy, "label",gettext("Frequency Domain"));
h2 = uimenu("parent",demo_lhy, "label",gettext("About"));
// Populate menu: file
uimenu(h1, "label",gettext("Close"), 'callback',"demo_lhy=get_figure_handle(100001);delete(demo_lhy);");
uimenu(h2, "label",gettext("About"),"callback","About();");
uimenu(h3, "label",gettext("Parameters"),"callback","param();");
uimenu(h3, "label",gettext("Response"),"callback","plt();");
uimenu(h4,"label",gettext("Parameters"),"callback","param_freq();");
uimenu(h4,"label",gettext("Response"),"callback","resp();");
uimenu(h5,"label",gettext("Nyquist plot"),"callback","nyq();");
uimenu(h5,"label",gettext("Pole-zero plot"),"callback","pzp();");
uimenu(h5,"label",gettext("Root locus"),"callback","rlc();");
//sleep(500);
//--------------------------------------outer- dhacha uptill here--------------------------------------------------------------//
uicontrol("parent",demo_lhy, "relief","groove","style","frame", "units","pixels","position",[5 5 500 600],"horizontalalignment","center", "background",[1 1 1],"tag","frame_control");
//_______________outer box frame LHS-----------//////////
//my_frame_title = uicontrol("parent",demo_lhy, "style","text","string","System", "units","pixels","position",[70+5 margin_y+frame_h-10 frame_w-60 20],"fontname",defaultfont, "fontunits","points","fontsize",16, "horizontalalignment","center","background",[1 1 1], "tag","title_frame_control");
///////----------numerator & den ka edit box---------////////////
uicontrol("parent",demo_lhy,"relief","groove","style","edit","units","pixels","position",[5+100 500 400-70 30],"tag","numsys");
uicontrol("parent",demo_lhy,"relief","groove","style","edit","units","pixels","position",[5+100 450 400-70 30],"tag","densys");
//////////-----numerator & denominator ka text------------//
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Numerator","position",[5+3 500 95 30]);
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Denominator","position",[5+3 450 95 30]);
//________________________________system attributes left ----------------------//
//____________text boxes left attributes____________________//
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","System","position",[5+3 400-50-50 95 60]);
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Poles","position",[5+3 350-50-50 95 30]);
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Zeros","position",[5+3 300-50-50 95 30]);
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Gain","position",[5+3 250-50-50 95 30]);
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Stability","position",[5+3 200-50-50 95 30]);
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+100 400-50-50 400-70 60],"fontsize",14,"background",[1 1 1],"foreground",[0.3,0.2,0.8],"tag","sysa");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+100 350-50-50 400-70 30],"fontsize",14,"background",[1 1 1],"foreground",[0.3,0.2,0.8],"tag","pola");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+100 300-50-50 400-70 30],"fontsize",14,"background",[1 1 1],"foreground",[0.3,0.2,0.8],"tag","zera");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+100 250-50-50 400-70 30],"fontsize",14,"background",[1 1 1],"foreground",[0.3,0.2,0.8],"tag","gaina");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+100 200-50-50 400-70 30],"fontsize",14,"background",[1 1 1],"foreground",[0.3,0.2,0.8],"tag","staba");
//__________________________________________________________________________________________________________________________________________________//
//_____________Button to enter to kae action_______________//
uicontrol("parent",demo_lhy,"relief","groove","style","pushbutton","units","pixels","position",[5+100+330+5 450 60 80],"string","ENTER","callback","enter();");
//______________________________________________________________________//
//-----------------------------------------------------------------::::::::::::::::::::::::::::-------------------------------------//////////////////
////////-------------------------::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::-----------------------------//////////
uicontrol("parent",demo_lhy,"relief","groove","style","pushbutton","units","pixels","position",[5+600 100 330 40],"tag","impuls","string","impulse","callback","impuls();","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","pushbutton","units","pixels","position",[5+600 100 20 40],"tag","impulsi","string","?","callback","knowimpulse();","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","pushbutton","units","pixels","position",[5+600 40 330 40],"tag","step","string","step-plot","callback","stepp();","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","pushbutton","units","pixels","position",[5+600 40 20 40],"tag","steppi","string","?","callback","knowstep();","visible","off");
//
uicontrol("parent",demo_lhy,"relief","groove","style","pushbutton","units","pixels","position",[5+600 100 330 40],"tag","step1","string","Stepinfo","callback","stepinfo1();","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","pushbutton","units","pixels","position",[5+600 100 20 40],"tag","stepi","string","?","callback","knowstepinfo();","visible","off");
//
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Peak time","position",[5+600 250 150 30],"fontsize",14,"tag","l1","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+600+150+10 250 150 30],"fontsize",14,"background",[1 1 1],"foreground",[0.8,0.2,0.1],"tag","peakt","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Peak","position",[5+600 290 150 30],"fontsize",14,"tag","l2","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+600+150+10 290 150 30],"fontsize",14,"background",[1 1 1],"foreground",[0.8,0.2,0.1],"tag","peak","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Undershoot","position",[5+600 330 150 30],"fontsize",14,"tag","l3","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+600+150+10 330 150 30],"fontsize",14,"background",[1 1 1],"foreground",[0.8,0.2,0.1],"tag","under","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Overshoot","position",[5+600 370 150 30],"fontsize",14,"tag","l4","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+600+150+10 370 150 30],"fontsize",14,"background",[1 1 1],"foreground",[0.8,0.2,0.1],"tag","over","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Settling MaX","position",[5+600 410 150 30],"fontsize",14,"tag","l5","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+600+150+10 410 150 30],"fontsize",14,"background",[1 1 1],"foreground",[0.8,0.2,0.1],"tag","setmax","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Settling Min","position",[5+600 450 150 30],"fontsize",14,"tag","l6","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+600+150+10 450 150 30],"fontsize",14,"background",[1 1 1],"foreground",[0.8,0.2,0.1],"tag","setmin","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Settling time","position",[5+600 490 150 30],"fontsize",14,"tag","l7","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+600+150+10 490 150 30],"fontsize",14,"background",[1 1 1],"foreground",[0.8,0.2,0.1],"tag","set","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Rise Time","position",[5+600 530 150 30],"fontsize",14,"tag","l8","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+600+150+10 530 150 30],"fontsize",14,"background",[1 1 1],"foreground",[0.8,0.2,0.1],"tag","rise","visible","off");
//----
uicontrol("parent",demo_lhy,"relief","groove","style","pushbutton","units","pixels","position",[5+600 100 330 40],"tag","margin1","string","Margin","callback","mgin();","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","pushbutton","units","pixels","position",[5+600 100 20 40],"tag","margini","string","?","callback","knowmargin();","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","pushbutton","units","pixels","position",[5+600 40 330 40],"tag","bode1","string","Bode","callback","bde();","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","pushbutton","units","pixels","position",[5+600 40 20 40],"tag","bodei","string","?","callback","knowbode();","visible","off");
//----------------
uicontrol("parent",demo_lhy,"relief","groove","style","pushbutton","units","pixels","position",[5+600 100 330 40],"tag","marg","string","Margins","callback","margin_frp();","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","pushbutton","units","pixels","position",[5+600 100 20 40],"tag","margi","string","?","callback","knowmarg();","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","pushbutton","units","pixels","position",[5+600 160 330 40],"tag","p6","string","Bandwidth","callback","bandwidth1();","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","pushbutton","units","pixels","position",[5+600 160 20 40],"tag","p6i","string","?","callback","knowbwidth();","visible","off");
// uicontrol("parent",demo_lhy,"relief","groove","style","pushbutton","units","pixels","position",[5+600 100 330 40],"tag","p7","string","Dc Gain","callback","dcgain1();","visible","off");
// uicontrol("parent",demo_lhy,"relief","groove","style","pushbutton","units","pixels","position",[5+600 100 20 40],"tag","p7i","string","?","callback","knowdc();","visible","off");
//---------
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Gain Margin","position",[5+600 500 150 30],"fontsize",14,"tag","gm11","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+600+150+10 500 200 30],"fontsize",14,"background",[1 1 1],"foreground",[0.8,0.2,0.1],"tag","gm","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Phase Margin","position",[5+600 450 150 30],"fontsize",14,"tag","pm11","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+600+150+10 450 200 30],"fontsize",14,"background",[1 1 1],"foreground",[0.8,0.2,0.1],"tag","pm","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Gain crossover frequency","position",[5+600 370 200 30],"fontsize",14,"tag","gcro","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+600+200+10 370 150 30],"fontsize",14,"background",[1 1 1],"foreground",[0.8,0.2,0.1],"tag","gc","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Phase crossover frequency","position",[5+600 320 200 30],"fontsize",14,"tag","pcro","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+600+200+10 320 150 30],"fontsize",14,"background",[1 1 1],"foreground",[0.8,0.2,0.1],"tag","pc","visible","off");
//----
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Bandwidth","position",[5+600 500 150 30],"fontsize",14,"tag","bd1","visible","off");
uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+600+150+10 500 150 30],"fontsize",14,"background",[1 1 1],"foreground",[0.8,0.2,0.1],"tag","bd","visible","off");
//----
// uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","string","Dc Gain","position",[5+600 500 150 30],"fontsize",14,"tag","dc11","visible","off");
// uicontrol("parent",demo_lhy,"relief","groove","style","text","units","pixels","position",[5+600+150+10 500 150 30],"fontsize",14,"background",[1 1 1],"foreground",[0.8,0.2,0.1],"tag","dc","visible","off");
//-------
function tag_off()
tag1 = findobj("tag","bd1");tag1.visible="off"
tag2 = findobj("tag","bd");tag2.visible="off"
tag3 = findobj("tag","gc");tag3.visible="off"
tag4 = findobj("tag","pc");tag4.visible="off"
tag5 = findobj("tag","pcro");tag5.visible="off"
tag6 = findobj("tag","gcro");tag6.visible="off"
tag7 = findobj("tag","gm11");tag7.visible="off"
tag8 = findobj("tag","gm");tag8.visible="off"
tag9 = findobj("tag","pm11");tag9.visible="off"
tag10 = findobj("tag","pm");tag10.visible="off"
tag11 = findobj("tag","dc1l");tag11.visible="off"
tag12 = findobj("tag","dc");tag12.visible="off"
tag15 = findobj("tag","impuls");tag15.visible="off"
tag16 = findobj("tag","impulsi");tag16.visible="off"
tag17 = findobj("tag","step");tag17.visible="off"
tag18 = findobj("tag","steppi");tag18.visible="off"
tag19 = findobj("tag","stepi");tag19.visible="off"
tag20 = findobj("tag","step1");tag20.visible="off"
tag21 = findobj("tag","margin1");tag21.visible="off"
tag22 = findobj("tag","margini");tag22.visible="off"
tag23 = findobj("tag","bode1");tag23.visible="off"
tag24 = findobj("tag","bodei");tag24.visible="off"
tag25 = findobj("tag","l1");tag25.visible="off"
tag26 = findobj("tag","l2");tag26.visible="off"
tag27 = findobj("tag","l3");tag27.visible="off"
tag28= findobj("tag","l4");tag28.visible="off"
tag29 = findobj("tag","l5");tag29.visible="off"
tag30 = findobj("tag","l6");tag30.visible="off"
tag31 = findobj("tag","l7");tag31.visible="off"
tag32 = findobj("tag","l8");tag32.visible="off"
tag33 = findobj("tag","peakt");tag33.visible="off"
tag34 = findobj("tag","peak");tag34.visible="off"
tag35 = findobj("tag","under");tag35.visible="off"
tag36 = findobj("tag","over");tag36.visible="off"
tag37 = findobj("tag","setmax");tag37.visible="off"
tag38 = findobj("tag","setmin");tag38.visible="off"
tag39 = findobj("tag","set");tag39.visible="off"
tag40 = findobj("tag","rise");tag40.visible="off"
tag41 = findobj("tag","p7");tag41.visible="off"
tag42 = findobj("tag","p7i");tag42.visible="off"
tag43 = findobj("tag","p6");tag43.visible="off"
tag44 = findobj("tag","p6i");tag44.visible="off"
tag46 = findobj("tag","marg");tag46.visible="off"
tag47= findobj("tag","margi");tag47.visible="off"
endfunction
function About()
messagebox([
"The GUI is developed by the FOSSEE control systems toolbox team (IIT Bombay)."
"FOSSEE (Free and Open Software in Education) project promotes the use of FOSS tools to improve the quality of education in our country. We aim to reduce dependency on proprietary software in educational institutions."
"The FOSSEE project is part of the National Mission on Education through Information and Communication Technology (ICT), Ministry of Human Resources and Development, Government of India."
"AUTHORS:"
"Ashutosh Bhargava"
" Inderpreet Arora"
" Paresh Yeole"
" Rutuja Moharil"
" Sanchit Gupta"
], "About")
endfunction
function enter()
sysnum = findobj("tag","numsys");
sysden = findobj("tag","densys");
syst =(sysnum.string+"/"+sysden.string);
s=%s;
sys=evstr(sysnum.string)/evstr(sysden.string);
sys=syslin('c',sys);
aa=sys;
textsys = findobj("tag","sysa");textsys.string=string(syst);
hh=(pole(sys))
hh=cell2mat(hh)
a=real(hh)
b=imag(hh)
textsys = findobj("tag","pola");
x=size(hh,'r');
//if b<0 then
sts=" ";
for k=1:x
if b(k)<0 then
sts=string(string(sts)+" "+string(string(a(k))+string(b(k))+" i"+" "));
elseif b(k)==0
sts=string(string(sts)+" "+string(string(a(k))+" "));
else
sts=string(string(sts)+" "+string(string(a(k))+"+"+string(b(k))+" i"+" "));
end
end
textsys.string=sts;
[uu,vv]=zero(sys,1)
uu=cell2mat(uu)
a=real(uu)
b=imag(uu)
textsys = findobj("tag","zera");
x=size(uu,'r');
sts=" ";
for k=1:x
if b(k)<0 then
if a(k)==0 then
sts=string(string(sts)+" "+string(string(b(k))+" i"+" "));
else
sts=string(string(sts)+" "+string(string(a(k))+string(b(k))+" i"+" "));
end
elseif b(k)==0
sts=string(string(sts)+" "+string(string(a(k))+" "));
else
if a(k)==0 then
sts=string(string(sts)+" "+"+"+string(string(b(k))+" i"+" "));
else
sts=string(string(sts)+" "+string(string(a(k))+"+"+string(b(k))+" i"+" "));
end
end
end
textsys.string=sts;
textsys = findobj("tag","gaina");textsys.string=string(string(vv));
aa=isStable(sys)
if aa==%t then
textsys = findobj("tag","staba");textsys.string=string("STABLE");
else
textsys = findobj("tag","staba");textsys.string=string("UNSTABLE");
end
endfunction
//::::::left ends::://
//:::::::time domain :::://
function plt()
hh=gce();
delete(hh);
tag_off();
tag15 = findobj("tag","impuls");tag15.visible="on"
tag16 = findobj("tag","impulsi");tag16.visible="on"
tag17 = findobj("tag","step");tag17.visible="on"
tag18 = findobj("tag","steppi");tag18.visible="on"
//tag_off();
x=0:5;
plot2d(sin(x));
xgrid(5,1,7)
plot1 = gca();
plot1.grid = color("lightgrey")*ones(1, 3)
plot1.margins = [0.5,0.05,0.125,0.3];
delete();
endfunction
function impuls()
sysnum = findobj("tag","numsys");
sysden = findobj("tag","densys");
syst =(sysnum.string+"/"+sysden.string);
s=%s;
sys=evstr(sysnum.string)/evstr(sysden.string);
sys=syslin('c',sys);
plot1 = gca();
plot1.margins = [0.5,0.05,0.125,0.3];
impulse(sys);
plot1.title.font_size = 3;
plot1.title.text=("IMPULSE PLOT")
plot1.auto_clear="on"
endfunction
function knowimpulse()
messagebox([
"In control systems, the impulse response of a dynamic system is its output when presented with a brief input signal, "
"called an impulse. More generally, an impulse response is the reaction of any dynamic system in response to some external "
"change. In both cases, the impulse response describes the reaction of the system as a function of time (or possibly as a "
"function of some other independent variable that parameterizes the dynamic behavior of the system)."
""
"For further reading, you may visit the link below:-"
"Reference : https://en.wikipedia.org/wiki/Impulse_response"
], "Impulse Response")
endfunction
function knowstep()
messagebox([
"The step response of a system in a given initial state consists of the time evolution of its outputs when its control"
"inputs are unit step functions. In electronic engineering and control theory, step response is the time behaviour"
"of the outputs of a general system when its inputs change from zero to one in a very short time. The concept can be "
"extended to the abstract mathematical notion of a dynamical system using an evolution parameter."
""
"For further reading, you may visit the link below:-"
"Reference : https://en.wikipedia.org/wiki/Step_response"
], "Step Response")
endfunction
function stepp()
sysnum = findobj("tag","numsys");
sysden = findobj("tag","densys");
syst =(sysnum.string+"/"+sysden.string);
s=%s;
sys=evstr(sysnum.string)/evstr(sysden.string);
sys=syslin('c',sys);
plot1 = gca();
plot1.margins = [0.5,0.05,0.125,0.3];
stepplot(sys)
plot1.title.font_size = 3;
plot1.title.text=("STEP PLOT")
plot1.auto_clear="on"
endfunction
function param()
hh=gca();
delete(hh);
tag_off();
tag19 = findobj("tag","stepi");tag19.visible="on"
tag20 = findobj("tag","step1");tag20.visible="on"
endfunction
function knowstepinfo()
messagebox([
"This function computes system characteristics when unit step input is given to the system. "
" RiseTime: The time taken by the system to reach from 10% to 90% of its steady state value"
" SettlingTime: The time taken by the system to reach within 2% of its final value"
" SettlingMin: Minimum value of amplitude once the response has risen "
" SettlingMax: Maximum value of amplitude once the response has risen "
" Overshoot: Percentage overshoot (relative to steady state value) "
" Undershoot: Percentage undershoot (related to steady state value) "
" Peak: Maximum absolute value of the amplitude of the system "
" PeakTime: The time at which peak absolute value is reached"
""
"For further reading, you may visit the link below:-"
"Reference : https://upload.wikimedia.org/wikipedia/commons/e/e4/Control_Systems.pdf"
], "Stepinfo")
endfunction
function stepinfo1()
tag_off();
tag1 = findobj("tag","stepi");
tag1.visible="on"
tag1 = findobj("tag","step1");
tag1.visible="on"
tag25 = findobj("tag","l1");tag25.visible="on"
tag26 = findobj("tag","l2");tag26.visible="on"
tag27 = findobj("tag","l3");tag27.visible="on"
tag28= findobj("tag","l4");tag28.visible="on"
tag29 = findobj("tag","l5");tag29.visible="on"
tag30 = findobj("tag","l6");tag30.visible="on"
tag31 = findobj("tag","l7");tag31.visible="on"
tag32 = findobj("tag","l8");tag32.visible="on"
tag33 = findobj("tag","peakt");tag33.visible="on"
tag34 = findobj("tag","peak");tag34.visible="on"
tag35 = findobj("tag","under");tag35.visible="on"
tag36 = findobj("tag","over");tag36.visible="on"
tag37 = findobj("tag","setmax");tag37.visible="on"
tag38 = findobj("tag","setmin");tag38.visible="on"
tag39 = findobj("tag","set");tag39.visible="on"
tag40 = findobj("tag","rise");tag40.visible="on"
sysnum = findobj("tag","numsys");
sysden = findobj("tag","densys");
syst =(sysnum.string+"/"+sysden.string);
s=%s;
sys=evstr(sysnum.string)/evstr(sysden.string);
sys=syslin('c',sys);
aa=sys;
[x1 x2 x3 x4 x5 x6 x7 x8]=stepinfo(aa);
textsys = findobj("tag","peakt");textsys.string=string(x8);
textsys = findobj("tag","peak");textsys.string=string(x7);
textsys = findobj("tag","under");textsys.string=string(x6);
textsys = findobj("tag","over");textsys.string=string(x5);
textsys = findobj("tag","setmax");textsys.string=string(x4);
textsys = findobj("tag","setmin");textsys.string=string(x3);
textsys = findobj("tag","set");textsys.string=string(x2);
textsys = findobj("tag","rise");textsys.string=string(x1);
endfunction
////::::::::::::::----------- time domain ends--------:::::::://///////
//-::::::::::::;-------------------freq domain----::::::::::::://
function resp()
hh=gce();
delete(hh);
tag_off();
tag21 = findobj("tag","margin1");tag21.visible="on"
tag22 = findobj("tag","margini");tag22.visible="on"
tag23 = findobj("tag","bode1");tag23.visible="on"
tag24 = findobj("tag","bodei");tag24.visible="on"
endfunction
function knowmargin()
messagebox([
"Margin plot is a Bode Plot where we show Gain margin and Phase margin inside the plot. It helps us to find"
"the corresponding Gain Crossover frequency and Phase Crossover frequency."
""
"Gain Margin"
"It is the factor by which the gain of the system can be increased to drive it to the verge of instability."
"Phase Margin"
"The phase margin can be defined as the amount of additional phase lag at the gain crossover frequency to bring"
"the system on the verge of instability."
"Gain Crossover frequency"
"The frequency at which the gain of the system reaches unity is called Gain crossover frequency."
"Phase Crossover Frequency"
"The frequency at which the phase shift of the system is equal to -180 degrees is called phase crossover frequency."
""
""
"For further reading, you may visit the link below:-"
"Reference : https://upload.wikimedia.org/wikipedia/commons/e/e4/Control_Systems.pdf"
], "Margins Plot")
endfunction
function mgin()
sysnum = findobj("tag","numsys");
sysden = findobj("tag","densys");
syst =(sysnum.string+"/"+sysden.string);
s=%s;
sys=evstr(sysnum.string)/evstr(sysden.string);
sys=syslin('c',sys);
// plot1 = gca();
// plot1.margins = [0.5,0.125,0.125,0.5];
plot1 = scf(100002);
plot1.background = -2;
plot1.figure_position = [650 80];
plot1.axes_size = [500 320];
demo_lhy1.figure_name = gettext("SHOW MARGIN");
show_margins(sys);
hh=gca();
hh.auto_clear="on"
endfunction
function knowbode()
messagebox([
"Bode Gain Plots, or Bode Magnitude Plots display the ratio of the system gain at each input frequency."
"Bode Gain Plot"
"Bode gain plot is the plot of the magnitude in decibels and frequency in decades."
"Bode Phase Plot"
"Bode phase plots are plots of the phase shift to an input waveform dependent on the frequency characteristics"
"of the system input. The plot is between phase in degrees and frequency in decades."
""
"For further reading, you may visit the link below:-"
"Reference : https://upload.wikimedia.org/wikipedia/commons/e/e4/Control_Systems.pdf"
], "Bode Plot")
endfunction
function bde()
sysnum = findobj("tag","numsys");
sysden = findobj("tag","densys");
syst =(sysnum.string+"/"+sysden.string);
s=%s;
sys=evstr(sysnum.string)/evstr(sysden.string);
sys=syslin('c',sys);
plot1 = scf(100002);
plot1.background = -2;
plot1.figure_position = [650 80];
plot1.axes_size = [500 320];
demo_lhy1.figure_name = gettext("BODE");
bode(sys);
hh=gca();
hh.auto_clear="on"
endfunction
function param_freq()
hh=gca();
delete(hh);
tag_off();
tag41 = findobj("tag","p7");tag41.visible="on"
tag42 = findobj("tag","p7i");tag42.visible="on"
tag43 = findobj("tag","p6");tag43.visible="on"
tag44 = findobj("tag","p6i");tag44.visible="on"
tag46 = findobj("tag","marg");tag46.visible="on"
tag47= findobj("tag","margi");tag47.visible="on"
endfunction
function knowmarg()
messagebox([
"Gain Margin"
"It is the factor by which the gain of the system can be increased to drive it to the verge of instability."
"Phase Margin"
"The phase margin can be defined as the amount of additional phase lag at the gain crossover frequency to bring"
"the system on the verge of instability."
"Gain Crossover frequency"
"The frequency at which the gain of the system reaches unity is called Gain crossover frequency."
"Phase Crossover Frequency"
"The frequency at which the phase shift of the system is equal to -180 degrees is called phase crossover frequency."
""
"For further reading, you may visit the link below:-"
"Reference : https://upload.wikimedia.org/wikipedia/commons/e/e4/Control_Systems.pdf"
], "Margins")
endfunction
function margin_frp()
tag_off();
tag46 = findobj("tag","marg");tag46.visible="on"
tag47= findobj("tag","margi");tag47.visible="on"
tag41 = findobj("tag","p7");tag41.visible="on"
tag42 = findobj("tag","p7i");tag42.visible="on"
tag43 = findobj("tag","p6");tag43.visible="on"
tag44 = findobj("tag","p6i");tag44.visible="on"
tag3 = findobj("tag","gc");tag3.visible="on"
tag4 = findobj("tag","pc");tag4.visible="on"
tag5 = findobj("tag","pcro");tag5.visible="on"
tag6 = findobj("tag","gcro");tag6.visible="on"
tag7 = findobj("tag","gm11");tag7.visible="on"
tag8 = findobj("tag","gm");tag8.visible="on"
tag9 = findobj("tag","pm11");tag9.visible="on"
tag10 = findobj("tag","pm");tag10.visible="on"
sysnum = findobj("tag","numsys");
sysden = findobj("tag","densys");
syst =(sysnum.string+"/"+sysden.string);
s=%s;
sys=evstr(sysnum.string)/evstr(sysden.string);
sys=syslin('c',sys);
[g_1 pp]=g_margin(sys);
[p_1 gg]=p_margin(sys);
textsys = findobj("tag","gm");textsys.string=string(string(g_1));
textsys = findobj("tag","pc");textsys.string=string(string(pp));
textsys = findobj("tag","pm");textsys.string=string(string(p_1));
textsys = findobj("tag","gc");textsys.string=string(string(gg));
endfunction
function knowbwidth()
messagebox([
"Bandwidth is often defined relative to the maximum value, and is most commonly the 3dB-point,that is"
"the point where the spectral density is half its maximum value (or the spectral amplitude, in V or V/Hz,"
"is more than 70.7% of its maximum)."
""
"For further reading, you may visit the link below:-"
"Reference : https://en.wikipedia.org/wiki/Bandwidth_(signal_processing)"
], "Bandwidth")
endfunction
function bandwidth1()
// hh=gca();
// delete(hh);
tag_off();
tag46 = findobj("tag","marg");tag46.visible="on"
tag47= findobj("tag","margi");tag47.visible="on"
tag41 = findobj("tag","p7");tag41.visible="on"
tag42 = findobj("tag","p7i");tag42.visible="on"
tag43 = findobj("tag","p6");tag43.visible="on"
tag44 = findobj("tag","p6i");tag44.visible="on"
tag1 = findobj("tag","bd1");tag1.visible="on"
tag2 = findobj("tag","bd");tag2.visible="on"
sysnum = findobj("tag","numsys");
sysden = findobj("tag","densys");
syst =(sysnum.string+"/"+sysden.string);
s=%s;
sys=evstr(sysnum.string)/evstr(sysden.string);
sys=syslin('c',sys);
aa=bandwidth(sys);
textsys = findobj("tag","bd");textsys.string=string(aa);
endfunction
function knowdc()
messagebox([
"This gives th gain constant (K) of the Linear Time invariant system."
""
"For further reading, you may visit the link below:-"
"Reference : https://upload.wikimedia.org/wikipedia/commons/e/e4/Control_Systems.pdf"
], "DC Gain")
endfunction
function dcgain1()
tag_off()
tag46 = findobj("tag","marg");tag46.visible="on"
tag47= findobj("tag","margi");tag47.visible="on"
tag41 = findobj("tag","p7");tag41.visible="on"
tag42 = findobj("tag","p7i");tag42.visible="on"
tag43 = findobj("tag","p6");tag43.visible="on"
tag44 = findobj("tag","p6i");tag44.visible="on"
tag11 = findobj("tag","dc1l");tag11.visible="on"
tag12 = findobj("tag","dc");tag12.visible="on"
sysnum = findobj("tag","numsys");
sysden = findobj("tag","densys");
syst =(sysnum.string+"/"+sysden.string);
s=%s;
sys=evstr(sysnum.string)/evstr(sysden.string);
sys=syslin('c',sys);
aa=dcgain(sys);
textsys = findobj("tag","dc");textsys.string=string(aa);
endfunction
//--------------------------stability responses--------------------//
function nyq()
tag_off()
hh=gca()
delete(hh.children)
sysnum = findobj("tag","numsys");
sysden = findobj("tag","densys");
syst =(sysnum.string+"/"+sysden.string);
s=%s;
sys=evstr(sysnum.string)/evstr(sysden.string);
sys=syslin('c',sys);
plot1 = gca();
plot1.margins = [0.55,0.05,0.125,0.125] //[0.6,0.125,0.125,0.125];
nyquist(sys)
endfunction
function pzp()
hh=gca()
delete(hh.children)
tag_off()
sysnum = findobj("tag","numsys");
sysden = findobj("tag","densys");
syst =(sysnum.string+"/"+sysden.string);
s=%s;
sys=evstr(sysnum.string)/evstr(sysden.string);
sys=syslin('c',sys);
plot1 = gca();
plot1.margins = [0.55,0.05,0.125,0.125];
plzr(sys)
endfunction
function rlc()
hh=gca()
delete(hh.children)
tag_off()
sysnum = findobj("tag","numsys");
sysden = findobj("tag","densys");
syst =(sysnum.string+"/"+sysden.string);
s=%s;
sys=evstr(sysnum.string)/evstr(sysden.string);
sys=syslin('c',sys);
plot1 = gca();
plot1.margins = [0.55,0.05,0.125,0.125];
evans(sys)
endfunction
//::-----------The end-------------:://
|
5dd970eeeeac509d5de4bce5af077e6a11de4cc6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3432/CH3/EX3.11/Ex3_11.sce | a033bf8a20c5df07e1451b4d8d17395e3abaed49 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 420 | sce | Ex3_11.sce | //Example 3.11
//Computing DC gain of the system.
clear;
clc;
//------------------------------------------------------------------
//Transfer Function
s=poly(0,'s');
num=3*(s+2);
den=(s^2+2*s+10);
Ys=syslin('c',num/den);
//The DC gain of the system Y(s) as s-->0 is
DC_Gain=horner(Ys,0)
disp(DC_Gain,"The DC gain of the system is:")
//------------------------------------------------------------------
|
0476d6b1a8702dcf5b4159054adb304c80ae21d7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1808/CH6/EX6.9/Chapter6_Exampl9.sce | e84995749ac87a07fc660bcbfb8a86b0177b5279 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,646 | sce | Chapter6_Exampl9.sce | clc
clear
//INPUT DATA
cpic=1.94;//specific pressure inkJ/kgK
cpv2=2.805;//specific pressure in kJ/kgK
t21=303;//condenser temperature in K
t1=258;//evaporator temperature in K
t31=293;//subcooled temperature in K
p1=2.36;//pressure in MPa
p2=11.67;//pressure in MPa
hf1=112.3;//enthalpy in kJ/kg
hfg1=1313.7;//enthalpy in kJ/kg
hg1=1426;//enthalpy in kJ/kg
hf2=323.1;//enthalpy in kJ/kg
hfg2=1145.9;//enthalpy in kJ/kg
hg2=1469;//enthalpy in kJ/kg
sf1=0.457;//entropy in kJ/kgK
sf2=1.204;//entropy in kJ/kgK
sg1=5.549;//entropy in kJ/kgK
sg2=4.984;//entropy in kJ/kgK
t2=369.7;//from t-s diagram temperature in K
nac=0.8;//adiabatic efficiency in percentage
vsa=2.96;//volume in kg/min
N=1200;//speed in rpm
//CALCULATIONS
h2=hg2+cpv2*(t2-t21);//enthalpy in kJ/kg
Rc=10*1000*(4.1868*30+335+1.94*5)/(24*60);//Refrigeration capacity in kJ/min
Re=hg1-hf2;//Refrigeration effect in kJ/kg
m=Rc/Re;//mass flow rate of refrigerant in kg/min
h2a=((h2-hg1)/nac)+hg1;//enthalpy in kJ/kg
t2a=((t2-t1)/nac)+t1;//Temperature in k
d=(vsa*0.509*4/(3.14*1.2*N))^(1/3);//piston displacement of compressor in m
l=1.2*d;//length of piston displacement in m
w=(h2a-hg1)/0.95;//workdone in kJ/kg
wac=m*w/60;//Power of the compressor motor in kW
copa=(Re/wac)*(m/60);//COP of air
//OUTPUT
printf('(a)Refrigeration capacity is %3.1f kJ/min \n (b)Mass flow rate of refrigerant is %3.2f kg/min \n (c)The discharge temperature is %3.2f K \n (d)Piston displacement of the compressor is d %3.4f m \n l is %3.4f m \n(e)Power of the compressor motor is %3.2f kW \n (f)COPa is %3.3f',Rc,m,t2a,d,l,wac,copa)
|
745d598cff1694487c15b703828deb84a0ff73ac | 449d555969bfd7befe906877abab098c6e63a0e8 | /3784/CH4/EX4.39/Ex4_39.sce | 568d744b507c533252284c0d5ec1d1bed7df2524 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 549 | sce | Ex4_39.sce | clc
//Variable Initialisation
Ea=600//Input Voltage of motor in volts
Ia=500//Armature Current in Ampere
d1=0.6//Duty Ratio
Ra=0.05//Armature resistance in ohm
Rf=0.07//Field Resistance in ohm
K=15.27e-3//Motor Constant
//Solution
E0=d1*Ea
Pin=E0*Ia
Re=Ea/(Ia*d1)
Eb=E0-(Ia*(Ra+Rf))
W=Eb/(Ia*K)
N=W*60/(2*%pi)
T=K*(Ia^2)
printf('\n\n Input Power From Source=%0.1f KW\n\n',Pin*10^-3)
printf('\n\n Equivalent Output Resistor=%0.1f ohm\n\n',Re)
printf('\n\n Motor Speed=%0.1f rpm\n\n',N)
printf('\n\n Motor Torque=%0.1f N-m\n\n',T)
|
7b1c08f06d39a759e6126e71267814379a74c65b | 449d555969bfd7befe906877abab098c6e63a0e8 | /284/CH13/EX13.4/ex4.sce | b63e40d143164f3d2bc722755a7ffadf8824411b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 271 | sce | ex4.sce | // Chapter 13_Optical Devices
//Caption_Solar concentration
//Ex_4//page 605
JL=150*10^-3 //PHOTOCURRENT DENSITY
Js=3.6*10^-11 //reverse saturation current density
Voc=0.0259*log(1+JL/Js)
printf('Open circuit voltage when solar concentration is used is %1.3f V',Voc) |
374b276a44155128352867e663d992daf027646d | 39d212a1aaf3f1dfc8993d47aef9f7b8d4c34008 | /2.sce | b765e1b0b4fde3c7bc2b3a7105b28a0c24f037da | [] | no_license | majsterkovic/ni-scilab | 25e6ef2c46c0973a48f651b7dfaafed5dbffb5c6 | 05d98042fb4bc424638f0832d1a14bdfce625d53 | refs/heads/master | 2023-03-12T09:50:27.944550 | 2021-03-01T22:35:17 | 2021-03-01T22:35:17 | 343,575,544 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 28 | sce | 2.sce | V=[1,2,3,4]
V = V+1
disp(V)
|
ba1ab2ff13bc78008e4e22d422067eb6b72513f1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /401/CH14/EX14.7/Example14_7.sce | 684d249e72dddfcd09478004c809606bcaf7dc2e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 927 | sce | Example14_7.sce | //Example 14.7
//Program to:
//(a) Convert optical signal powers to dBm
//(b) Convert optical signal powers to dBu
clear;
clc ;
close ;
//(a)Convert optical signal powers to dBm
Po=5*10^(-3); //Watt - GIVEN OPTICAL POWER
dBm=10*log10(Po/1*10^3);
printf("\n\n\t (a)The %1.0f mW of optical power is equivalent to %0.2f dBm.",Po/10^(-3), dBm);
Po=20*10^(-6); //Watt - GIVEN OPTICAL POWER
dBm=10*log10(Po/1*10^3);
printf("\n\n\t The %1.0f uW of optical power is equivalent to %0.2f dBm.",Po/10^(-6), dBm);
//(b)Convert optical signal powers to dBu
Po=0.03*10^(-3); //Watt - GIVEN OPTICAL POWER
dBm=10*log10(Po/1*10^6);
printf("\n\n\t (b)The %0.2f mW of optical power is equivalent to %0.2f dBu.",Po/10^(-3), dBm);
Po=800*10^(-9); //Watt - GIVEN OPTICAL POWER
dBm=10*log10(Po/1*10^6);
printf("\n\n\t The %1.0f nW of optical power is equivalent to %0.2f dBu.",Po/10^(-9), dBm);
|
c47fe779ac5704f5a24d0551b70c71d9b37a10b0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH22/EX22.15/22_15.sce | 822e2a296955bee96783aa046510e672dd04ceb4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 250 | sce | 22_15.sce | //Chapter 22, Problem 15
clc;
p=8/2; //pairs of poles
c=2;
phi=25e-3; //flux
Ia=30; //armature current
Z=900;
T=(p*phi*Z*Ia)/(%pi*c); //torque
printf("Torque = %.1f Nm",T);
|
64294cc9a9ba557de948005b68c2285de7436d6e | 08ee8059476493a308f8e13adcbace48d7bcfc92 | /Scilab_packetTracer_codes/dc/adit/smart.sce | 6b2500dfc5fa90344a7c0bdc8dfedfb82c49f095 | [] | no_license | Rushi-Bhatt/Self-Study | 7ed44b7821154b7906c7d532255ea648ec9d6299 | 90cc75440328ba21769ffac878f46feadeb2f06f | refs/heads/master | 2021-01-11T15:29:31.739065 | 2017-02-08T22:17:57 | 2017-02-08T22:17:57 | 80,360,471 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 79 | sce | smart.sce | x=1:10; // Init.
// combinations' order does not matter
plot(x,x.*x,'*cya--')
|
8ec890c77c35b06e0452f8005f7ceb86666ead80 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3480/CH4/EX4.3/Ex4_3.sce | 3dccea4b66a960844eb6998e476efb84f7b07e5f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 109 | sce | Ex4_3.sce | //Example 4.3, page 89
clc
n=1.520
f=25//in cm
r2=-(f*(n-1))
printf("\n The radius of curvature is %f cm",r2) |
ff7f72c580fbca43874b4265e007b690820cc250 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1484/CH6/EX6.5/6_5.sce | a169fa6d08c44b4c972eacbe25713f07861bce15 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 316 | sce | 6_5.sce | clc
//initialisation of variables
d1= 3 //in
d2= 6 //in
sm= 13.6
Q= 0.5 //ft^3/sec
g= 32.2 //ft/sec^2
//CALCULATIONS
v1= Q*(12/d1)^2*4/%pi
v2= Q*(12/d2)^2*4/%pi
hc= (v1-v2)^2/(2*g)
h= ((v1^2-v2^2)/(2*g))-hc
h1= 12*h/(sm-1)
//RESULTS
printf ('difference in level in two limbs of mercury= %.3f in',h1)
|
9e6425bf3dd83d969594d41dfd98e8832172622b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3828/CH12/EX12.2/Ex12_2.sce | caa2620c982cc35f8b14fbd0df70a9946ab230fd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 330 | sce | Ex12_2.sce | //Chapter 12 : Semiconductor Physics
clear;
//Variable declaration
myun=0.36 //mobility of electrons
myup=0.14 //mobility of holes
e=1.6*10**-19
rhoi=2.2 //resistivity
//Calculations
ni=1/(rhoi*e*(myun+myup))/10**18
//Result
mprintf("Intrinsic concentration= %.3f*10**18 m**-3",ni)
|
567cbd6b35098e4a4bb043057d186fcba265e635 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2882/CH7/EX7.4/Ex7_4.sce | 8cf0c7c2269c699706273ae2ae2b7e48d47eb261 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 363 | sce | Ex7_4.sce | //Tested on Windows 7 Ultimate 32-bit
//Chapter 7 Field Effect Transistors Pg no. 225
clear;
clc;
//Given Data
IDSS=15D-3;//drain saturation current in amperes
gm0=5D-3;//transconductance for VGS=0 Volts in Siemens
gm=2.5D-3;//transconductance in Siemens
//Solution
ID=IDSS*(gm/gm0)^2;//drain current in amperes
printf("ID = %.2f mA",ID*10^3);
|
31e47e89087c8d0bef4acab05a20ea8a25470735 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2528/CH5/EX5.4/Ex5_4.sce | f7b4b3116de0fbe720bad0797b0247c7476e648c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 994 | sce | Ex5_4.sce | //clear//
//Example5.4:System gain and upper break frequency
//Page 140
//figure 5.6
clear;
clc;
//STAGE 1
disp("Stage 1");
Rf1=14000; //in Ohms
Ri1=2000; //in Ohms
Av1=1+(Rf1/Ri1);
disp(Av1,"Av");
Anoise1=1+(Rf1/Ri1);
disp(Anoise1,"Anoise");
GBW=1*10^6; //in Hz (from Datasheet)
f1=GBW/Anoise1;
disp(f1,"f2");
//STAGE 2
disp("Stage 2");
Rf2=20000; //in Ohms
Ri2=10000; //in Ohms
Av2=-(Rf2/Ri2);
disp(Av2,"Av");
Anoise2=1+(Rf2/Ri2);
disp(Anoise2,"Anoise");
GBW=1*10^6; //in Hz (from Datasheet)
f2=GBW/Anoise2;
disp(f2,"f2");
//STAGE 3
disp("Stage 3");
Rf3=12000; //in Ohms
Ri3=4000; //in Ohms
Av3=1+(Rf3/Ri3);
disp(Av3,"Av");
Anoise3=1+(Rf3/Ri3);
disp(Anoise3,"Anoise");
GBW=1*10^6; //in Hz (from Datasheet)
f3=GBW/Anoise3;
disp(f3,"f2");
//SYSTEM
Av=Av1*Av2*Av3;
disp(Av,"Av");
disp("Dominant break frequency here is 125kHz");
GBW=f1*64;
disp(GBW,"Gain bandwidth product is");
|
2c93871770f96e3b80b16db7b009bfaaf6c4737c | e4381b32d21150427f93b058541bb3343752bb0f | /sablona_berliner/zapisnik/Shrnuti.sce | e4210324ea4c4227dd7d9b5249c098ee519c322a | [] | no_license | pirati-cz/plisty | c095da00bfa89792f8eb676fd5b756fc1454659d | 815dbc58f7a47f1b2740ffa068a2ff5f909ecba8 | refs/heads/master | 2020-12-24T19:04:07.572707 | 2016-05-16T20:52:51 | 2016-05-16T20:52:51 | 58,966,482 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 7,343 | sce | Shrnuti.sce | <SCRIBUSELEMUTF8 W="191.3385827" H="198.4251968" previewData="iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAACfJJREFUaIHtmclzVccVh8/p7jvfd98oCQkkJBCTBAhkCwiDp+CiYieVGMcpx8487JxUlsnCf0HWWSfbeJMKqbJju4gdDLGNjAELgoxkCQuE0PT0pjv3kIV4LsVlyoBcZVeib/Fev359zr2nz61fn+4LsMYaa6yxxhqrQEc0AAA0RO1ebbeZVn+nbnSv7GvTtPZmmyLSQcfZfyf7lWNXC3kilz8+YDsPHsl4Rxki67PsAQAAl9JMu6ZvaA7sNozNGqLuUprp0o2e2zfK6lLUniuVflFirBUAYKdt723TtA4AAArAQikDBMDdtv3ARsPYpCMam01zGwDALtsezFKab14LAXCbafUjAN5rILRD1zsLjJW4UnwyjsYtSuz9buZIt2H2RkqGC5zPlRhr7bWsHQucz/5mXfuLnYbRPZ0k1/tta+B6klzLUpq7FIYXAAB2WPauhhS1HZa163DGe4whaq2atm4yjse6DXPz94qlnziUZgyCRrdh9koAuckwtzCC7LFs7gmDoLnPdQ+PBMH795QRRMCzjfrpQcc5UNS0ljZN63ApzSRKxlfCcAQAoMz5wnya3urQ9M6GELUbSfKxSYj1bqPxVr9lDax0GCsZjUfRqEWInWesWBeiejUK/z3kuIfeadRPxUpGk3E0ZhPiSKVkhhKPIJALvj9MAehEFF9FwHvPSKxUNJumM76UjYk4GmvTtPaJOBqbTdObdSFqAAB5xoptmt5xKQzOl7lYIAjkShiO9Fn2wPnAPzuTpje6DKOnzPlCrFRUF6IWKxWf8/131ut61yLnc22a3qET1C8G/nvrdb3rrXr95CLn8zUhKvNpOlsTojIRx1f3OM7Qa9XKiUSp5F6DWeN/kgJjpU/3mYRYW02r7042ecaKTYVqqt79QjKUeiuduJRmWjStjQAQj9IsAIBHafaZQvFHLZrWdvt3DgAgS2m+2zA2AwAMOs7+EmOtFJG6lGYKjJVKjLVOxtF4jtKCR2lORzQcQlyKSD1Ks3ttZ19J01oZIkuVSlcTCDUJMYfczOGK4OVQyuBhL3uMIbLvFIrPmoRYk3E8dsTzjhJEcjkILgoA8YiXPQYIYBFqAyAOuc5BBECGhD1dLPwgS1keAbHHMLe0aFqrhkTvs+yBjYaxyaXMqwtRG3LdQwDLC/EzxeKPGUE2Gcdj952RXtPcHkoZtGrauuUupa6E4QhXiisFSkc0dCRGIIWfKBUDACxwPjdgOw8u8HSuXdfWO4RmFIC6EoUjqVRJrGR0MfDf40qlJhIrlDIYi6IrCkCFUgY2oY5DqAsAMBqFl2Ilo9VkAwCApkqlFiXWIucLdSFqm01rW6ehbzxTr78xGoUjexxnaDKKxz6Ko6tNib2VJtMOoe5kHI+1atq6ec5nZ9L0xi7bHjzb8E9XBC9XhFiiiAwByXQST4VSBqGU/lgUXdlqmX3TSXJ9PuW3+m17zznff7vM+UJViKXVBvQJGw1j0xflq1mqrHEveJTmOnS9s1kF34k2TWtfp+nr7+cabZrW8ensNBVxJZ260X2/MkxqQlR6DKM3USr2KM0iANqEOAAANiFOkbEWAAAEJP22NUARafNG9rvukRxjhUHH2e8Q4hqEmJ/lw6U0AwAKYFmyEQD3ue5hixAbYHm9yVDqJUrGqVJpU8I/b3JXQp8vtfzSl6KhAOB4ofDcbtt5IM9YUQGoPKNFl1Jvu2X130rTm0Oue/BSEJyXADJWKu6z7IE2TWu/FAbnf97a9usy54vHC8XnD2e8r9uUOHNpeqvftvccy+a+3WfZu30pG0ezuSevJ/G1Axnv4TxlxakknvzVuvbfXQ6C85tNa/tG09jUEKLxiOcde6pQfO5Uvfb6XWVERzTebjT+WWSsRADJxcAfrghe3mnbe2fSdDpHWb5F09aVmNZ6pl5/Y+XCxW+3hVJi2G+cadG0tpPV6ssNIWofRdGHTxUK3x+NopE8Y4XzgX+2XdM3nKrXXl/gfO5aHI0vCb5oEWJdDPzhupR1ikANJCYAwHgUjS7wdPauMzLP01sH3MxD5wL/7QJlpY+TeGI0ikaKjJXGo2i0Q9c7K1yUSxprdQjNAIKqClEBAKgLUZUAcoHzeQBQV8Jw5FDGe/S8758djcJLGcqyY1F4hSCQ2ZTPXAz84QOue6QiRDmUMqxwUa5JUVUAai5Nb2Uoy0oAURG8/LWM9/CHUXjpepJcu9tgvnJkKPX+f6W7qRxfFFlK8wXGSgyRfZF+Pw9yKJN5dKXMGYSYBIAwRMYQGQEgK4OliFRD1AEAGCJrnr40v1Olkj22MwTw35OkIxrLheWyDQKgjmjcz+nNZ8FsQp3Hs7lvUkRWZKzFpTQz7DfOZAjxABDPB/673brRu8DT2Wtx/NE209rZqevdXYbRM50kUzNpMj2XpjN9lj3werXyN4dSd6NhbC5F2sUOTetUAOr2xGiXw/DCHtvZZxI0L/j+8HeLxR/+cX7+D7DKEh4AgARS+P+oVV/JUOpRRPrS4sKf1jFtvQSQQinuEuIpALXVtPqbRh8EwbnJ5X39zGQcjw3YzoMVwcsAy1I8GoYjkZSRgcTsMcwt7/v+uwWmlSgAIwiEwvJj9069cSqWq698AQDYIufzj3nZb7xRq/49S2nu8WzuWyeWyi+VmNaKCLjE+eIGXe+6nsSTAABLnC8GUvjTSTIVSOknUsZFxlpeq1ZOAAD0WdZuBCSglEIEnE7iqR7D3DKbJjerQixVOC8TxkikVLi4LNtfDRxC3NVuU9e4Ex6lueZ+fGWle6fi7W7G3A0mIVaOscL92gMAkNsfBADAJtTp1I3uNk1rD6UImv895HlHEQD7LXsPwLLUMkRmErSajh7yvKPN9k7b3rvS7+fRrukb6kJUVxMIfTKXf3qHZe/uNc1tWy2rb4nzRYJA+mx792Qcj7+4vvP3BkHzepJMPuJlj2UZzW8xrb4ew9wy5LoHFSDMpMmNTaa51aMs5zGWPZjJPDqbptMvtLX/dtBxDsym6c2ftra+4EvZ8CjNDjrO/m2WvXMiiq4eLxSer0lR3W3bgxNxfPV+AyGxktErlaW/5BkrLvJ07kLgD2co9XoMc4tNiPNmvfrqeBSNzqfp7MdxPMEQ2WvVyon1ut51ttE4vcT5YtNZl2FsGgvD0WtxPN6lG5v+ulT+c12IWl2I2r/q9TerXCwRQIIA+EHgn3u2VPrZyVrt5TZNa49vH2zcdyA2oe4Tufzx0/XayekkmQIAiKWKJ+LoKkPUZpLkho7EkAAylDKY53wWAODNWu3VDbrRXRZ8AQBgOkmm/lGrvtxrmtsXUj43GUdjDzjOgck4HttuWTtDKYNZns4UGWuJpIqmk2RqMeXzFc7LLqHe5SC4sJpAPnmevyw0RK35vmWNNdZYY401viz+Az6qduyxMVayAAAAAElFTkSuQmCC" YP="552.7559056" XP="42.51968504" COUNT="1" Version="1.4.6">
<FONT NAME="Fira Sans Bold"/>
<FONT NAME="Fira Sans Book"/>
<FONT NAME="Fira Sans ExtraBold"/>
<FONT NAME="Fira Sans Light"/>
<FONT NAME="Fira Sans Medium"/>
<FONT NAME="Fira Sans Regular"/>
<FONT NAME="Lato Light"/>
<FONT NAME="PermianSerifTypeface Bold"/>
<FONT NAME="PermianSerifTypeface Regular"/>
<COLOR Spot="0" Register="0" NAME="Black" CMYK="#000000ff"/>
<COLOR Spot="0" Register="0" NAME="Cervena" CMYK="#2effe814"/>
<COLOR Spot="0" Register="0" NAME="Cervena2" CMYK="#00e2c600"/>
<COLOR Spot="0" Register="0" NAME="Fialova" CMYK="#78871700"/>
<COLOR Spot="0" Register="0" NAME="Modra" CMYK="#ff14000d"/>
<COLOR Spot="0" Register="0" NAME="Oranzova" CMYK="#007fff00"/>
<COLOR Spot="0" Register="0" NAME="Tyrkysova" CMYK="#ff006633"/>
<COLOR Spot="0" Register="0" NAME="White" CMYK="#00000000"/>
<COLOR Spot="0" Register="0" NAME="Zelana" CMYK="#5700d900"/>
<COLOR Spot="0" Register="0" NAME="Zelena2" CMYK="#b300d500"/>
<COLOR Spot="0" Register="0" NAME="Zluta" CMYK="#1400c700"/>
<MultiLine Name="Teckovana">
<SubLine LineEnd="0" Dash="3" Width="1.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<MultiLine Name="Tenka">
<SubLine LineEnd="0" Dash="1" Width="0.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<MultiLine Name="Tenka teckovana">
<SubLine LineEnd="0" Dash="3" Width="0.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<MultiLine Name="Tlusta">
<SubLine LineEnd="0" Dash="1" Width="1.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<MultiLine Name="Velmi tlusta">
<SubLine LineEnd="0" Dash="1" Width="2.5" LineJoin="0" Shade="100" Color="Black"/>
</MultiLine>
<ITEM TXTULW="-0.1" POCOOR="0 0 0 0 191.339 0 191.339 0 191.339 0 191.339 0 191.339 198.425 191.339 198.425 191.339 198.425 191.339 198.425 0 198.425 0 198.425 0 198.425 0 198.425 0 0 0 0 " ANNAME="Shrnuti" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="None" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="191.3385827" XPOS="42.51968504" relativePaths="1" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="198.4251968" BASEOF="0" isTableItem="0" LANGUAGE="Czech" BACKPAGE="-1" TEXTFLOWMODE="1" TransBlendS="0" IFONT="Fira Sans Light" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="" TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="552.7559056" NEXTPAGE="-1" isGroupControl="0" NUMCO="16" ISIZE="20" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="28.34645669" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="4" LINESP="25" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="0" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Cervena2" TXTSTRSH="100" PWIDTH="1" COCOOR="0 0 0 0 191.339 0 191.339 0 191.339 0 191.339 0 191.339 198.425 191.339 198.425 191.339 198.425 191.339 198.425 0 198.425 0 198.425 0 198.425 0 198.425 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="1" SHADE="100" NUMGROUP="0" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="0" NUMPO="16">
<ITEXT CCOLOR="Cervena2" PSTYLE="" CSIZE="20" CH="Nar sošt hézokro a put vabrýnubi čevaž. Vrověchrůp bova my žasur přádtré ktozuvý" CFONT="Fira Sans Light"/>
<PARA ALIGN="0" LINESP="25" PARENT="Odstavec-prvni"/>
</ITEM>
</SCRIBUSELEMUTF8>
|
96bd07b5078a5ce7ee230d2bbcf8eeaf1326457f | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH10/EX10.14/example10_14.sce | 0ecb626b40f3d287ee76c1d40489d180bd95ac17 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,813 | sce | example10_14.sce | //Chapter 10
//Example 10_14
//Page 248
clear;clc;
ll=100;
r=0.1;
xl=0.5;
y=10*1e-6;
pd=20*1e6;
pfr=0.9;
v_r=66*1e3;
tr=r*ll;
ty=y*ll;
txl=xl*ll;
z=tr+%i*txl;
vr=v_r/sqrt(3);
ir=pd/sqrt(3)/v_r/pfr;
ir_p=ir*(pfr-%i*sin(acos(pfr)));
ic1=vr*%i*ty/2;
il=ir_p+ic1;
vs=vr+il*z;
ic2=vs*%i*ty/2;
is=il+ic2;
theta1=atan(imag(vs)/real(vs));
theta2=atan(imag(is)/real(is));
thetas=theta1+abs(theta2);
pfs=cos(thetas);
reg=(abs(vs)-vr)/vr*100;
ps=3*abs(vs)*abs(is)*pfs;
n=pd/ps*100;
printf("Total resistance / phase = %.2f ohm \n\n",tr);
printf("Total reactance / phase = %.2f ohm \n\n",txl);
printf("Total susceptance / phase = %.6f S \n\n",ty);
printf("Recieving end voltage = %.0f V \n\n", vr);
printf("Load current = %.2f A \n\n", ir);
printf("Recieving end voltage phasor = %.0f+j0 \n\n", vr);
printf("Load current = %.2f+j(%.2f) \n\n", real(ir_p), imag(ir_p));
printf("Charging current at load end = j(%.2f) \n\n", imag(ic1));
printf("Line current = %.2f+j(%.2f) \n\n", real(il), imag(il));
printf("Sending end voltage = %.2f+j(%.2f) \n\n", real(vs), imag(vs));
printf("Line to line sending end voltage = %.2f kV \n\n", abs(vs)*sqrt(3)/1000);
printf("Charging current at sending end = %.2f+j(%.2f) \n\n", real(ic2),imag(ic2));
printf("Sending end current = %.2f+j(%.2f) A \n\n", real(is), imag(is));
printf("Sending end current = %.2f A \n\n", abs(is));
printf("(i) Angle between Vr and Vs = %.2f degrees \n\n", theta1*180/%pi);
printf(" Angle between Vr and Is = %.2f degrees \n\n", theta2*180/%pi);
printf(" Angle between Is and Vs = %.2f degrees \n\n", thetas*180/%pi);
printf(" Sending end power factor = %.2f \n\n", pfs);
printf("(ii) %% Voltage regulation = %.2f %% \n\n", reg);
printf("(iii) Sending end power = %.2f MW \n\n", ps/1e6);
printf(" Transmission efficiency = %.2f %% \n\n", n);
|
6ba386e8ecbc8b5d4d24e8221168ad3310960738 | 9f9364e082d4bc2f7ee5cbd7a489642615821873 | /src/testCases/test2-6.tst | b4802597e1a66b434033546ce79bceb25c8b363b | [] | no_license | abrageddon/DLX-Opt | 4602617f83ddf8cb0fea83fecd2faa362849dfcd | 20038078f11a7ae67e7ab336e551e23966551290 | refs/heads/master | 2021-01-01T05:49:33.218016 | 2013-03-14T06:08:45 | 2013-03-14T06:08:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 161 | tst | test2-6.tst | main
function f();
{
return call inputnum
};
function g(x);
{
return 1 + 3 * x
};
procedure h(x);
{
call outputnum(x)
};
{
call h(call g(call f))
}.
|
758f4981164ef99d2739e344219a5901067398a2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /182/CH9/EX9.6/example9_6.sce | 838dc190eb0ff7b2e2768e43b0a363f0c392f47a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 425 | sce | example9_6.sce | // to find the shortest pulse width that can be displayed
// example 9-6 in page 262
clc;
//DATA GIVEN
Rs=3.3e+3; Ci=15D-12;// source resistance in ohm and input capacitance in farad
//calculation
printf("shortest pulse width=%.3f micro-second",10*Rs*Ci*2.2*10^6);//here shortest pulse width =10*tuo in seconds where tuo is the rise time imposed by the oscilloscope
//result
//shortest pulse width=1.089 micro-second |
1e7f7b4d470549b3fa5b077b3d1a78cfc7183e2d | affb43e91a6a0cac39356ff1c5f9f5154b70a4a2 | /Application of DSP/eacho.sce | 22fa0b8d7c23957f68d233a4423531d6e7ee0c59 | [] | no_license | kathan-shah99/Digital-signal-processing | 87fb0615a98a764c546681ffb18fea32d69caa6d | 3d5ad3553152a2b57f98a3b1a26756ebca37d7bc | refs/heads/main | 2023-04-07T06:53:06.263109 | 2021-04-07T03:57:52 | 2021-04-07T03:57:52 | 355,397,284 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 429 | sce | eacho.sce | //---Author :Kathan-shah-----
clc
clear
//--------------------echo-filter------------
//numerator
b = [1 zeros(1,16000) 0.1]; //1 sec delay , 10% attenuation(0.1)
//denomintor
a = [1];
//read audio singal
[x,Fs] = wavread('/Users/kathan/Desktop/test.wav')
Y = filter(b,a,x);
subplot(211)
plot(x)
title("Orignal singal")
ylabel("Magnitude")
subplot(212)
plot(Y)
title("Echoing singal")
ylabel("Magnitude")
sound(Y)
|
acb72b343329cd10c94c03110ec69c32ebf6f52f | 449d555969bfd7befe906877abab098c6e63a0e8 | /964/CH7/EX7.7/7_7.sce | 28d4828505bd76d869e80c3234292013e030090e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 142 | sce | 7_7.sce | clc;
clear;
x=poly(0,'s');
p=x^5 - 3.5*x^4 +2.75*x^3 +2.125*x^2 - 3.875*x + 1.25;
disp("The roots of the polynomial are:")
disp(roots(p)) |
1e4e7dc42689398384f072acc90d605f3a3d1f6d | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set5/s_Electrical_Machines_M._V._Despande_833.zip/Electrical_Machines_M._V._Despande_833/CH13/EX13.2/Ex13_2.sce | 24c00ab25307e17785fd1ccfdbc6b6d52cf8f5dc | [] | 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 | 293 | sce | Ex13_2.sce | errcatch(-1,"stop");mode(2);//Caption: Find (a)speed (b)number of poles
//Exa:13.2
;
;
f1=25//Frequency of motor(in hertz)
f2=60//Frequency of generator(in hertz)
p=10//Number of poles
N=(120*f1)/p
disp(N,'(a)Speed(in r.p.m)=')
P=(f2*120)/(N)
disp(P,'(b)Number of poles=')
exit();
|
5c4937fc524cf216360edf8181d8a99b812dd851 | 81a5c9fb4452c596031b1d529ea71e53e423de8d | /evenodd.sce | 49b124829e79d83f05eea152ded69f1e08510b75 | [] | no_license | thevinitgupta/scilab | b9d6b31b27bd3192d3713470c4a51da080d6a572 | c0aa61b0463c3501d43b73fdec07b9dc7fc27b21 | refs/heads/main | 2023-03-22T07:49:10.980286 | 2021-03-12T13:32:10 | 2021-03-12T13:32:10 | 346,394,901 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 158 | sce | evenodd.sce | function evenodd(n)
// Description of name(input)
if pmodulo(n,2) == 0 then
disp("Number is even!")
else
disp("Number is odd!")
end
endfunction
|
7defb9400bccdf4d8aafadc8e734cae6d89c8f1e | 449d555969bfd7befe906877abab098c6e63a0e8 | /926/CH5/EX5.1/Chapter5_Example1.sce | d2ca16bb0a8b3f84b0c1b24af9dfe3f595516202 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,472 | sce | Chapter5_Example1.sce | //Hougen O.A., Watson K.M., Ragatz R.A., 2004. Chemical process principles Part-1: Material and Energy Balances(II Edition). CBS Publishers & Distributors, New Delhi, pp 504
//Chapter-5, Illustration 1, Page 111
//Title: Calculation of composition of a saturated mixture
//=============================================================================
clear
clc
//INPUT
P = [442,745 760]; //Vapor pressure of ethyl ether, working pressure and standard pressure in mm Hg
T1 = [20 0]; //Temperature of system and standard temperature in degree C
V = 1; //cu ft of mixture(Basis of calculation for part(a) )
MW = [74 28]; //Molecular weight of ethyl ether and nitrogen in lb/lb-mole
//CALCULATIONS
//Part(a)
V1 = V*(P(1)/P(2)); //Pure component volume of vapor in cu ft
v1 = V1*100; //Composition by volume of Ether vapor
v2 = (1-V1)*100; //Composition by volume of Nitrogen
//Part(b)
W1 = V1*MW(1); //lb of ether vapor present
W2 = (1-V1)*MW(2); //lb of Nitrogen present
W = W1+W2; //Total weight of mixture in lb
w1 = W1*100/W; //Composition by weight of Ether vapor
w2 = W2*100/W; //Composition by weight of Nitrogen
//Part(c)
T = T1+273; //Converting temperature in K
V2 = 359*(P(3)/P(2))*(T(1)/T(2)); //cu ft of mixture
w3 = W1/V2; //lb of vapor per cu ft of mixture
//Part(d)
w4 = W1/W2; //lb of vapor per lb lb of nitrogen
//Part(e)
v3 = V1/(1-V1); //lb mole of vapor per lb moles of Nitrogen
//OUTPUT
// Console output
mprintf('\n (a) Composition by Volume \n Ether Vapor %3.1f %% \n Nitrogen %3.1f %% ',v1,v2);
mprintf('\n (b) Composition by Weight \n Ether Vapor %3.1f %% \n Nitrogen %3.1f %% ',w1,w2);
mprintf('\n (c) Weight of ether per cu ft of mixture is %4.3f lb ',w3);
mprintf('\n (d) Weight of vapor per lb Nitrogen is %3.2f lb ',w4);
mprintf('\n (e) Moles of vapor per mole of nitrogen is %4.3f',v3);
// File output
fd= mopen('.\Chapter5_Example1_Output.txt','w');
mfprintf(fd,'\n (a) Composition by Volume \n Ether Vapor %3.1f %% \n Nitrogen %3.1f %%',v1,v2);
mfprintf(fd,'\n (b) Composition by Weight \n Ether Vapor %3.1f %% \n Nitrogen %3.1f %%',w1,w2);
mfprintf(fd,'\n (c) Weight of ether per cu ft of mixture is %4.3f lb ',w3);
mfprintf(fd,'\n (d) Weight of vapor per lb Nitrogen is %3.2f lb ',w4);
mfprintf(fd,'\n (e) Moles of vapor per mole of nitrogen is %4.3f',v3);
mclose(fd);
//=============================END OF PROGRAM==================================
|
52a2c82555779cbe4559dfdffce9716373cc771f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1388/CH7/EX7.25/7_25.sce | 2d58ce7247851ba0c634bdbc1b38df002ac55f62 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 266 | sce | 7_25.sce | clc
//initialisation of variables
V= -0.658 //volt
V1= -0.3363 //volt
n= 1 //electron
F= 96438 //coloumb
R= 8.314 //j/mol K
T= 25 //C
//CLACULATIONS
V2= V-V1
Ksp= 10^(V2*n*F/(2.303*R*(273.2+T)))
//RESULTS
printf (' Solubility constant = %.1e volt',Ksp)
|
89c5b15b5956bf26da587597b4a3635630f39526 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1379/CH1/EX1.1.10/example1_10.sce | b9bc2f981c37afea0947937ad3069934739605d0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 481 | sce | example1_10.sce |
//exapple 1.10
clc; funcprot(0);
// Initialization of Variable
rho=1000;
mu=1.42/1000;
g=9.81;
pi=3.14;
l=485;
h=4.5
e=8.2/100000;
Q=1500*4.545/1000/3600;
disp("assume d as 6cm");
d=0.06;
u=4*Q/pi/d^2;
Re=rho*d*u/mu;
rr=e/d;//relative roughness
//using moody's chart
phi=0.0033//friction coeff.
d=(64*phi*l*Q^2/pi^2/g/h)^0.2;
disp(d*100, "The calculated d after (1st iteration which is close to what we assume so we do not do any more iteration) in(cm) ")
|
4cbf7afb38a7c706aa17d8c92b5b76bc8610199d | 717ddeb7e700373742c617a95e25a2376565112c | /2825/CH4/EX4.13/Ex4_13.sce | b4973df752cd080d05fc265e5b154d00c13c14c1 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 1,094 | sce | Ex4_13.sce | //Ex4_13 Pg-245
clc
V=20 //source voltage in V
Vz=12 //zener voltage in V
Vs=V-Vz //voltage across resistor in V
Rs=330 //series resistance in ohm
RL=1.5*10^3 //load resistance in ohm
disp("Voltage across resistor ")
printf(" = %.0f V \n ",Vr)
disp("(1) Current through series resistor Is")
Is=Vr/Rs //Current through series resistor
printf(" Is = %.1f mA \n ",Is*10^3)
disp("(2) Current through series load Il")
VL=Vz //voltage across load
IL=VL/RL //Current through series load
printf(" IL = %.0f mA \n ",IL*10^3)
disp("(3)Current through zener diode")
Iz=Is-IL //Current through zener diode
printf(" IL = %.1f mA \n ",Iz*10^3)
disp("(4)Respective wattage of elements used")
disp("(a) Series resistor -> W=Is*Vs")
W=Vs*Is //wattage of series resistor
printf(" = %.1f mW \n ",W*10^3)
disp("(b) Zener diode -> W=Iz*Vz")
W=Vz*Iz //wattage of zener diode
printf(" = %.1f mW \n ",W*10^3)
disp("(b) Load resistor -> W=IL*VL")
W=VL*IL //wattage of zener diode
printf(" = %.0f mW \n ",W*10^3)
|
da0f2eca41041c7fd7fe744ec9a1d308b58e246d | 449d555969bfd7befe906877abab098c6e63a0e8 | /539/CH6/EX6.3.a/Example_6_3a.sce | d8882fd860cac8f7d4035f9bd83ff411c14ac3dd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 359 | sce | Example_6_3a.sce | clear;
clc;
printf("\tExample 6.3\n");
//From draph in the question
//stress and strain can be obtained
si2=150; // in MPa
si1=0;
e2=0.0016;
e1=0;
d0=12.8*10^-3; //Initial Diameter in m
printf("\n\tPart A");
//Young's Modulus = stress/strain
E=(si2-si1)/(e2-e1);
printf("\nModulus of elasticity is %.2f GPa",E/10^3);
//End |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.