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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
067b0f0827d6004cdbcc84b92b7e5540e0ce0204 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1994/CH7/EX7.22/Example7_22.sce | e1676c446fd45ed08985ceb905decbfda43ae9eb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example7_22.sce | //Chapter-7,Example7_22,pg 7-66
V=230
I=4
t=6
Pf=1
N=2208
Et=V*I*Pf*t
K=N/Et
printf("meter constant\n")
printf("K=%.2f rev/Wh\n",K)
V=230
I=5
t=4
N=1472
Et=V*I*Pf*t
Er=N/K
Pf=(Er/Et)
printf("power factor\n")
printf("Pf=%.2f lagging",Pf)
|
508bc27adde09e10b76ffcc5b44845aca622ef00 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1055/CH14/EX14.10/ch14_10.sce | ff1a40e393f3f81d92bd8bb35d3f0f20706da916 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 326 | sce | ch14_10.sce | // To determine the kneepoint voltage and cross section of core
clear
clc;
Ic=5*.25;// operating current(amp)
Vsec=5/1.25;// secondary voltage(V)
Bm=1.4;
f=50;
N=50;
V=15*Vsec;
A=60/(4.44*Bm*f*N);
mprintf(" the knee point must be slightly higher than =%.3f V\n",V);
mprintf("area of cross section=%.6f m_2\n",A);
|
e906493ee319ceaea4dda48263e6223e79250a43 | 93640402789b9a9d07c82958f433765f1e2a8397 | /part 2/RegisterHiLo8.tst | fa2cb6d6fefb9eb1017dc85e2f176bd02fa68fac | [] | no_license | Slayingripper/Z80-CPU | 7a6b71f9e59850c3d4492a7f1867f4e81be278ba | 451873966cf071f8088407300629994a8d33f13c | refs/heads/master | 2020-05-04T02:42:27.419333 | 2019-04-01T19:27:22 | 2019-04-01T19:27:22 | 178,932,396 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 7,137 | tst | RegisterHiLo8.tst | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/03/a/Register.tst
load RegisterHiLo8.hdl,
output-file RegisterHiLo8.out,
compare-to RegisterHiLo8.cmp,
output-list time%S1.4.1 in%B1.4.1 loadLo%B2.1.2 loadHi%B2.1.2 out%B1.8.1;
set in 0,
set loadLo 1,
set loadHi 1,
tick, output, tock, output;
set in 0,
set loadLo 0,
set loadHi 0,
tick, output, tock, output;
// Test low nibble
set in 0,
set loadLo 0,
set loadHi 0,
tick,
output;
tock,
output;
set in 0,
set loadLo 1,
tick,
output;
tock,
output;
set in -8,
set loadLo 0,
tick,
output;
tock,
output;
set in 11,
set loadLo 0,
tick,
output;
tock,
output;
set in -8,
set loadLo 1,
tick,
output;
tock,
output;
set in -8,
set loadLo 1,
tick,
output;
tock,
output;
set in -8,
set loadLo 0,
tick,
output;
tock,
output;
set in 10,
set loadLo 1,
tick,
output;
tock,
output;
set in 0,
set loadLo 0,
tick,
output;
tock,
output;
set in 0,
set loadLo 1,
tick,
output;
tock,
output;
set in %B0001,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
set in %B0010,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
set in %B0100,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
set in %B1000,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
set in %B1110,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
set in %B1101,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
set in %B1011,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
set in %B0111,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
set in %B1111,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
set in 0,
set loadLo 1,
set loadHi 1,
tick, output, tock, output;
set in 0,
set loadLo 0,
set loadHi 0,
tick, output, tock, output;
// Test High nibble
set in 0,
set loadHi 0,
set loadHi 0,
tick,
output;
tock,
output;
set in 0,
set loadHi 1,
tick,
output;
tock,
output;
set in -8,
set loadHi 0,
tick,
output;
tock,
output;
set in 11,
set loadHi 0,
tick,
output;
tock,
output;
set in -8,
set loadHi 1,
tick,
output;
tock,
output;
set in -8,
set loadHi 1,
tick,
output;
tock,
output;
set in -8,
set loadHi 0,
tick,
output;
tock,
output;
set in 10,
set loadHi 1,
tick,
output;
tock,
output;
set in 0,
set loadHi 0,
tick,
output;
tock,
output;
set in 0,
set loadHi 1,
tick,
output;
tock,
output;
set in %B0001,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output;
set in %B0010,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output;
set in %B0100,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output;
set in %B1000,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output;
set in %B1110,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output;
set in %B1101,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output;
set in %B1011,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output;
set in %B0111,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output;
set in %B1111,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output;
// Upper 1111
set in 0,
set loadLo 1,
set loadHi 1,
tick, output, tock, output;
set in %B1111,
set loadHi 1,
set loadLo 0,
tick, output, tock, output;
set in 0,
set loadLo 0,
set loadHi 0,
tick, output, tock, output;
// Test low nibble
set in 0,
set loadLo 0,
set loadHi 0,
tick,
output;
tock,
output;
set in 0,
set loadLo 1,
tick,
output;
tock,
output;
set in -8,
set loadLo 0,
tick,
output;
tock,
output;
set in 11,
set loadLo 0,
tick,
output;
tock,
output;
set in -8,
set loadLo 1,
tick,
output;
tock,
output;
set in -8,
set loadLo 1,
tick,
output;
tock,
output;
set in -8,
set loadLo 0,
tick,
output;
tock,
output;
set in 10,
set loadLo 1,
tick,
output;
tock,
output;
set in 0,
set loadLo 0,
tick,
output;
tock,
output;
set in 0,
set loadLo 1,
tick,
output;
tock,
output;
set in %B0001,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
set in %B0010,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
set in %B0100,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
set in %B1000,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
set in %B1110,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
set in %B1101,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
set in %B1011,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
set in %B0111,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
set in %B1111,
set loadLo 0,
tick,
output;
tock,
output;
set loadLo 1,
tick,
output;
tock,
output;
// Lower 1111
set in 0,
set loadLo 1,
set loadHi 1,
tick, output, tock, output;
set in %B1111,
set loadHi 0,
set loadLo 1,
tick, output, tock, output;
set in 0,
set loadLo 0,
set loadHi 0,
tick, output, tock, output;
// Test High nibble
set in 0,
set loadHi 0,
set loadHi 0,
tick,
output;
tock,
output;
set in 0,
set loadHi 1,
tick,
output;
tock,
output;
set in -8,
set loadHi 0,
tick,
output;
tock,
output;
set in 11,
set loadHi 0,
tick,
output;
tock,
output;
set in -8,
set loadHi 1,
tick,
output;
tock,
output;
set in -8,
set loadHi 1,
tick,
output;
tock,
output;
set in -8,
set loadHi 0,
tick,
output;
tock,
output;
set in 10,
set loadHi 1,
tick,
output;
tock,
output;
set in 0,
set loadHi 0,
tick,
output;
tock,
output;
set in 0,
set loadHi 1,
tick,
output;
tock,
output;
set in %B0001,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output;
set in %B0010,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output;
set in %B0100,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output;
set in %B1000,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output;
set in %B1110,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output;
set in %B1101,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output;
set in %B1011,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output;
set in %B0111,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output;
set in %B1111,
set loadHi 0,
tick,
output;
tock,
output;
set loadHi 1,
tick,
output;
tock,
output; |
7505a1414979ed2e382b382c780b0295aba11710 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1808/CH7/EX7.17/Chapter7_Exampl17.sce | ebf2296a4efdc16bfec27281ac2127742122c42a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,179 | sce | Chapter7_Exampl17.sce | clc
clear
//INPUT DATA
t1=40;//dry bulb temperature in Degree c
t2=30;//dry bulb temperature in Degree c
x1=0.2;//realtive humidity in percentage
tw2=20;//wet bulb temperature in Degree c
ps1=55.31;//Saturation temperature in mm Hg
ps2=31.81;//Saturation temperature in mm Hg
pv2a=17.521;//Saturation temperature at WBT in mm Hg
p=760;//pressure in mm of Hg
Ra=287.3;//gas constant
V1=150;//volumme in m^3
//CALCULATIONS
pv1=x1*ps1;//Saturation temperature in mm Hg
w1=0.622*(pv1/(p-pv1));//Specific humidity in kg w.v./kg d.a
pv2=(pv2a-((p-pv2a)*(t2-tw2)*1.8)/(2800-(1.3*(1.8*t2+32))));//Saturation pressure in mm Hg
x2=(pv2/ps2)*100;//realtive humidity in percentage
w2=0.622*(pv2/(p-pv2));//Specific humidity in kg w.v./kg d.a
v1=Ra*(273+t1)/((p-11.06)*133.5);//volume
ma=V1/v1;//Amount of air added in kg d.a./min
mw=ma*(w2-w1);//Amount of water vapour added in kg d.a./min
nh=((t1-t2)/(t1-tw2))*100;//humidifier efficiency in percentage
//OUTPUT
printf('(a)From chart Dew point temperature is corresponds to pv2 is 14.5 Degree c \n (b)Amount of water vapour added is %3.3f kg w.v./min \n (c)Humidifier efficiency is %3.1f percentage',mw,nh)
|
32df8a4d901420865ccf11f7231670f3a218b6af | 449d555969bfd7befe906877abab098c6e63a0e8 | /1640/CH4/EX4.17/4_17.sce | 873e8e502ce5a2bb4e61efb1ab9d46c60a5d3a0c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 4_17.sce |
clc
//initialisation of variables
g= 32.2 //ft/sec^2
H= 25 //ft
l= 2.5 //ft
b= 5 //ft
Cd= 0.64
Q= 3200 //cuses
L=150 //ft
C=3.2
depth=0.5 //ft
A1=5000000 //sq yards
//CALCULATIONS
Q1= Cd*l*b*sqrt(2*g*H)
n= Q/Q1
h= (Q/(3.2*L))^(2/3)
hr=h-depth
Area=A1*9
V=Area*hr
//RESULTS
printf ('number of spilways = %.f ',n)
printf("\n Volume of extra water stored = %d cu ft",V)
|
31644d75a9e0a15ba4e9858b76e0808ed12a3438 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set14/s_Material_Science_S._L._Kakani_And_A._Kakani_1085.zip/Material_Science_S._L._Kakani_And_A._Kakani_1085/CH18/EX18.1/ex18_1.sce | bf9b311736b1b7366909d7e3275a445b441de14c | [] | 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 | 311 | sce | ex18_1.sce | errcatch(-1,"stop");mode(2);//Exam:18.1
;
;
E_f=69;//modulus of elasticity in GPa
V_f=40/100;//Volume of glass fibres %
E_m=3.4;//modulus (in GPa)
V_m=60/100;//Volume of polyester resin %
E_cl=E_m*V_m+E_f*V_f;//modulus of elasticity (in Gpa)
disp(ceil(E_cl),'modulus of elasticity(in Gpa)=');
exit();
|
661ba4649f5daff80ac06bfa504ef48a2803886a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2873/CH10/EX10.13/Ex10_13.sce | 88581fb1ab91a79164f529833bcf9976818e584f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,293 | sce | Ex10_13.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Engineering Thermodynamics by Onkar Singh Chapter 10 Example 13")
D=20*10^-2;//cylinder diameter in m
L=28*10^-2;//stroke in m
m=4.22;//mass of fuel used in kg
C=44670;//calorific value of fuel in KJ/kg
N=21000/60;//engine rpm
mep=2.74*10^5;//mean effective pressure in pa
F=600;//net brake load applied to a drum of 100 cm diameter in N
r=50*10^-2;//brake drum radius in m
mw=495;//total mass of cooling water in kg
T1=13;//cooling water inlet temperature in degree celcius
T2=38;//cooling water outlet temperature in degree celcius
ma=135;//mass of air used in kg
T_air=20;//temperature of air in test room in degree celcius
T_exhaust=370;//temperature of exhaust gases in degree celcius
Cp_gases=1.005;//specific heat of gases in KJ/kg K
Cp_steam=2.093;//specific heat of steam at atmospheric pressure in KJ/kg K
Cpw=4.18;//specific heat of water in KJ/kg K
disp("brake power(BP)=2*%pi*N*T in KW")
BP=2*%pi*N*F*r/60000
disp("indicated power(IP)=(mep*L*A*N)/60000 in KW")
IP=(mep*L*(%pi*D^2/4)*N)/60000
disp("A> heat added(Q)=m*C/3600 in KJ/s")
Q=m*C/3600
disp("or Q in KJ/min")
Q=Q*60
disp("thermal efficiency(n_th)=IP/Q ")
Q=52.36;//heat added in KJ/s
n_th=IP/Q
disp("in percentage")
n_th=n_th*100
disp("B> heat equivalent of brake power(BP)=BP*60 in KJ/min ")
BP=BP*60
disp("C> heat loss to cooling water(Qw)=mw*Cpw*(T2-T1) in KJ/min")
Qw=mw*Cpw*(T2-T1)/60
disp("heat carried by exhaust gases=heat carried by steam in exhaust gases+heat carried by fuel gases(dry gases) in exhaust gases")
disp("mass of exhaust gases(mg)=mass of air+mass of fuel in kg/min")
disp("mg=(ma+m)/60")
mg=(ma+m)/60
disp("mass of steam in exhaust gases in kg/min")
9*(0.15*m/60)
disp("mass of dry exhaust gases in kg/min")
mg-0.095
disp("D> heat carried by steam in exhaust in KJ/min")
0.095*{Cpw*(100-T_air)+2256.9+Cp_steam*(T_exhaust-100)}
disp("E> heat carried by fuel gases(dry gases) in exhaust gases(Qg) in KJ/min")
Qg=2.225*Cp_gases*(T_exhaust-T_air)
disp("F> unaccounted loss=A-B-C-D-E in KJ/min")
3141.79-659.76-862.13-299.86-782.64
disp("NOTE>Heat balance sheet on per minute basis is attached as jpg file with this code.")
|
d2be45456d628b8b1bafe992d29d35d16cd3fdcc | 449d555969bfd7befe906877abab098c6e63a0e8 | /2360/CH2/EX2.9/ex2_9.sce | e08a7f89c4991deea94c37bce957300a8284e890 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 603 | sce | ex2_9.sce | // Exa 2.9
format('v',5);clc;clear;close;
// Given data
R1= 15;//value of resistance in Ω
Re1= R1*5/100;//error in resistance in Ω
R2= 33;//value of resistance in Ω
Re2= R2*2/100;//error in resistance in Ω
R3= 75;//value of resistance in Ω
Re3= R3*5/100;//error in resistance in Ω
R_T= R1+R2+R3;//resultant resistance in Ω
R_T_e= Re1+Re2+Re3;//limiting error in resistance in Ω
disp("The resultant is "+string(R_T)+" Ω with the limiting error of "+string(R_T_e)+" Ω")
e_T= R_T_e/R_T*100;// in %
disp("The percentage relative limiting error in resultant is ± "+string(e_T)+" %")
|
146e181e51aef7df4fd69bdd985d4d46ad844354 | e41b69b268c20a65548c08829feabfdd3a404a12 | /3DCosmos/Data/Scripts/_MarsProject/SUB/SUB_CreateMarsSolarMovement.SCI | 2dc6ff3bbdd1c3de449e386616c202c473ce6758 | [
"LicenseRef-scancode-khronos",
"MIT"
] | permissive | pvaut/Z-Flux | 870e254bf340047ed2a52d888bc6f5e09357a8a0 | 096d53d45237fb22f58304b82b1a90659ae7f6af | refs/heads/master | 2023-06-28T08:24:56.526409 | 2023-03-01T12:44:08 | 2023-03-01T12:44:08 | 7,296,248 | 1 | 1 | null | 2023-06-13T13:04:58 | 2012-12-23T15:40:26 | C | WINDOWS-1252 | Scilab | false | false | 13,779 | sci | SUB_CreateMarsSolarMovement.SCI |
#mean solar time at Mars's prime meridian (i.e., at the centre of the crater Airy-0).
function G_MTC()
{
MTC=24*(((root.time.JD-2451549.5)/1.027491252) + 44796.0 - 0.00096);
return(MTC-24*floor(MTC/24));
}
function SUB_G_MarsPositFrame()
{
return(root.SC.Universe.SolarSystem.Mars.Inclin.Globe.GlobeRendering.LocalPosit);
}
function SUB_MarsSolarMovementInit(infoset)
{
infoset.scenescale=100000;
infoset.globeradius=7*infoset.scenescale;
infoset.marsradius=4000;
sss=T_getscene;
sss.VolumeShadowReset;
sss.VolumeShadowAdd(0,color(0,0,0,0.25),0.01*infoset.scenescale,16*infoset.scenescale);
myviewport=T_getviewport;
myviewport.focaldistance=1.05*infoset.scenescale;
myviewport.nearclipplane=infoset.scenescale;
myviewport.farclipplane=200*infoset.scenescale;
myviewport.cameradir=vecnorm(vector(0.1,-1,0));
myviewport.cameraupdir=vector(0,0,1);
cpos0=point(0,0,6*infoset.scenescale)-25*infoset.scenescale*myviewport.cameradir;
myviewport.camerapos=cpos0;
myviewport.enableusernavigation=false;
#sun reference
ssysframe.add("Sphere","color":color(1,1,0.5),"Radius":autokm(0.02),"EnableLight":false);
marsframe=root.SC.Universe.SolarSystem.Mars;
GetPlanetOrbit("Mars").visible=false;
#Delete Mars object
marsframe.Inclin.Globe.GlobeRendering.Dispose;
marsglobeframe=marsframe.Inclin.Globe.addsubframe("GlobeRendering");
#Create local viewer frame
marspositframe=marsglobeframe.addsubframe("LocalPosit");
marspositframe.transf.origin=radial2point(infoset.marsradius,infoset.longit,infoset.lattit);
marspositframe.transf.Zaxis=@vector(radial2point(1,infoset.longit,infoset.lattit));
marspositframe.transf.Xaxis=vector(-1*sin(infoset.longit),cos(infoset.longit),0);
marspositframe.transf.Yaxis=vecnorm(marspositframe.transf.Zaxis*marspositframe.transf.Xaxis);
#Mars surface
surfaceframe=marspositframe.addsubframe("Surface");
surfaceframe.CastVolumeShadow=false;
surfaceframe.add("Cylinder",
"Position":point(0,0,-0.002*infoset.scenescale),
"Radius":(20*infoset.scenescale),
"Axis":vector(0,0,-0.00001*infoset.scenescale),
"Color":color(202/255,139/255,62/255),
"Resolution":80);
surfaceframe.add("Cylinder",
"Radius":(20*infoset.scenescale),
"Position":point(0,0,-0.005*infoset.scenescale),
"Axis":vector(0,0,-7.5*infoset.scenescale),
"Color":color(0,0,0),
"Resolution":80);
#create viewer figure
bl=Blob;
r2=0.3;
bl.AddSphere(point(0,0,0.95),0.2,0.3);
bl.AddSegment(point(0,0,0),point(0,0,1),0.23,r2+0.03);
bl.AddSegment(point(0.22,0,-1),point(0.15,0,0.5),0.2,r2);
bl.AddSegment(point(-0.22,0,-1),point(-0.15,0,0.5),0.2,r2);
bl.AddSegment(point(0.26,0,0.55),point(0.66,-0.4,0.94),0.185,r2);
bl.AddSegment(point(-0.26,0,0.55),point(-0.66,-0.4,0.94),0.185,r2);
sh=bl.CreateSolidShape(0.06);
ttf=transformation;ttf.translate(vector(0,0,0.6*infoset.scenescale));ttf.scale(0.6*infoset.scenescale);
sh.transform(ttf);
ob=marspositframe.add("SolidObject");
ob.CreateShape(sh);
ob.color=color(0.7,0.7,0.7);
#create small sun
smallsun=surfaceframe.add("sphere","Name":"SmallSun","radius":(0.13*infoset.scenescale),"color":color(1,1,0.5),"EnableLight":false);
#create halo
st_globeradius=str(infoset.globeradius);
halfcircle=FlatContourSet;
haloframe=marspositframe.addviewdirframe(point(0,0,0),"haloframe");
haloframe.CastVolumeShadow=false;
halfcircle.generate(functor("point("+st_globeradius+"*sin(a),"+st_globeradius+"*cos(a),0)","a"),Pi,0,40);
halo=haloframe.add("SolidObject","Name":"Halo");
halo.Revolve(halfcircle,40);
halo.BlendType=BlendTransparent;
halo.RenderBack=true;
halo.DepthMask=DepthMaskDisable;
halo.EnableLight=false;
halo.GenerateVertexProperty(functor("color(0,0,1/(1+15*sqr(p.z/"+st_globeradius+")),0.25)","p"),VertexPropertyColor);
halo.canbuffer=true;
#Create wind directions
signcolor=color(0.15,0.15,0.15);
rd=8*infoset.scenescale;
dirnames=list("O","N","W","Z");
for i=0 to 3 do {
frame=surfaceframe.addviewdirframe(radial2point(rd,i*Pi/2,0),"DF_"+dirnames(i));
frame.add("Text3D","Position":point(-0.28*infoset.scenescale,0.6*infoset.scenescale,0),
"UnitX":vector(infoset.scenescale,0,0),"UnitY":vector(0,infoset.scenescale),"EnableLight":false,"Color":signcolor,"Content":dirnames(i));
frame.add("Arrow","Position":point(0,0.2*infoset.scenescale,0),
"Axis":vector(0,-0.4*infoset.scenescale,0),"NormAxis":vector(0,0,1),"Width":(0.2*infoset.scenescale),"EnableLight":false,"Color":signcolor);
}
surfaceframe.add("Curve",
"EnableLight":false,"Color":signcolor,"Size":2,"CurveRenderType":CurveRenderDot
).makeline(radial2point(rd,0,0),radial2point(rd,Pi,0));
surfaceframe.add("Curve",
"EnableLight":false,"Color":signcolor,"Size":2,"CurveRenderType":CurveRenderDot
).makeline(radial2point(rd,-0.5*Pi,0),radial2point(rd,0.5*Pi,0));
surfaceframe.add("Curve",
"Color":color(0,0.5,0.5,0.25),"Size":(0.1*infoset.scenescale),"CurveRenderType":CurveRenderRibbon,"BlendType":BlendTransparent
).makecircle(point(0,0,0),vector(1,0,0),1.001*infoset.globeradius,80);
surfaceframe.add("Curve",
"Color":color(0,0.5,0.5,0.25),"Size":(0.1*infoset.scenescale),"CurveRenderType":CurveRenderRibbon,"BlendType":BlendTransparent
).makecircle(point(0,0,0),vector(0,1,0),1.001*infoset.globeradius,80);
crv_sundir=surfaceframe.add("Curve","Name":"crv_sundir","EnableLight":false,"Color":color(1,1,0),"Size":2);
crv_suntrace=surfaceframe.add("Curve","Name":"crv_suntrace","EnableLight":false,"Color":color(1,0.25,0),"Size":3);
#create side panel
PanelContent=SUB_G_leftpanel.addscreenframe("MarsSolarMovementInfo");
offsetx=SUB_G_leftpaneloffsett+0.01;
cl=SUB_G_sidepanelcolor;
PanelContent.add("Text3D","Content":"Tijd op Aarde (UT):","EnableLight":false,"UnitX":vector(0.02,0,0),"UnitY":vector(0,0.02,0),"Position":point(offsetx,0.97,0),"Color":cl);
PanelContent.add("Clock","Type":ClockTypeAnalog,"Size":0.07,"EnableLight":false,"Position":point(offsetx+0.1,0.88,0),"Color":cl);
PanelContent.add("Clock","Type":ClockTypeDate,"Size":0.02,"EnableLight":false,"Position":point(offsetx+0.045,0.78,0),"Color":cl);
PanelContent.add("Text3D","Content":"Locale tijd op Mars:","EnableLight":false,"UnitX":vector(0.02,0,0),"UnitY":vector(0,0.02,0),"Position":point(offsetx,0.18,0),"Color":cl);
marsclock=PanelContent.add("Clock","Name":"MarsClock","Type":ClockTypeAnalog,"Size":0.07,"EnableLight":false,"Position":point(offsetx+0.1,0.09,0),"Color":cl,"HasOwnTime":true);
PanelLines_init(PanelContent,0.7);
PanelLines_add("Plaats op Mars:");
PanelLines_add(longit2string(infoset.longit));
PanelLines_add(lattit2string(infoset.lattit));
PanelLines_skip;
PanelLines_add("Positie van de zon:");
sunpos_az=PanelLines_add("");
sunpos_h=PanelLines_add("");
infoset.panelcontent=panelcontent;
infoset.marsclock=marsclock;
infoset.sunpos_az=sunpos_az;
infoset.sunpos_h=sunpos_h;
}
function SUB_MarsSolarMovement_FindSunRise(infoset)
{
infoset.foundsunrise=false;
root.time=CurrentTimeUT;
tmstart=root.time;
root.time.hour=0;root.time.min=0;root.time.sec=0;
root.TimeSpeed=4*60;
sundirprev=vector(0,0,1);
foundsunrise=false;
root.TimeSpeed=24*60*60/5000;
finished=false;
marspositframe=SUB_G_MarsPositFrame;
surfaceframe=marspositframe.surface;
while not(finished) do {
incrtime;
root.SC.Universe.transf.reset;
tf1=marspositframe.totaltransformation;
tf2=tf1;tf2.invert;
#calculate position of sun in the local reference system
sunpoint=tf2*point(0,0,0);
sundir=vecnorm(sunpoint-point(0,0,0));
if (sundir^vector(0,0,1)>0) and (sundirprev^vector(0,0,1)<0) then {
finished=true;
infoset.foundsunrise=true;
}
if root.time.day!=tmstart.day then finished=true;
sundirprev=sundir;
}
}
function SUB_MarsSolarMovementAnimate(ilongit,ilattit)
{
SUB_showloading(true);
infoset=map;
infoset.longit=ilongit;
infoset.lattit=ilattit;
SUB_MarsSolarMovementInit(Ref(infoset));
distaxislast=-10;
root.time=time(2008,9,6,0,0,0);
SUB_MarsSolarMovement_FindSunRise(Ref(infoset));
marspositframe=SUB_G_MarsPositFrame;
surfaceframe=marspositframe.surface;
minlast=floor(root.time.min/30);
SUB_showloading(false);
root.TimeSpeed=30;
sundirprev=vector(0,0,-1);
maxangreached=false;
if not(infoset.foundsunrise) then maxangreached=true;#do not look for max position if sun does not rise or set
showconst=false;
firstloop=false;sunsethappened=false;
finished=false;
while not(finished) do {
if JoystickButtonClicked(JID,6) then finished=true;
if JoystickButtonClicked(JID,9) then {
showconst=not(showconst);
ssys_showconstellations(showconst);
root.SC.Universe.StarBackFrame.ConstellationNames.Visible=showconst;
root.SC.Universe.StarBackFrame.StarNames.Visible=showconst;
}
incrspeed=(JoystickGetAxis(JID,4)+1)/2;
root.TimeSpeed=sqr(incrspeed)*120;
incrtime;
tm=G_MTC+infoset.longit/Pi*12;
while tm<0 do tm=tm+24;
while tm>24 do tm=tm-24;
infoset.marsclock.time.hour=floor(tm);
infoset.marsclock.time.min=(tm-floor(tm))*60;
#respond to distance throttle
distaxis=JoystickGetAxis(JID,3);
if abs(distaxislast-distaxis)>0.025 then distaxislast=distaxis;
# myviewport.camerapos=(1+distaxislast)*cpos0+(1-distaxislast)*cpos1;
#joystick movement
a=JoystickGetAxis(JID,0);if abs(a)<0.02 then a=0;
a=a/30;
rtdir=myviewport.cameraupdir;
myviewport.camerapos=point(0,0,0)+vecrotate(myviewport.camerapos-point(0,0,0),rtdir,a);
myviewport.cameradir=vecrotate(myviewport.cameradir,rtdir,a);
a=JoystickGetAxis(JID,1);if abs(a)<0.02 then a=0;
a=-1*a/30;
rtdir=vecnorm(myviewport.cameradir*myviewport.cameraupdir);
ndir=vecrotate(myviewport.cameradir,rtdir,a);
if (ndir^vector(0,0,1)<0.1) and (ndir^vector(0,0,1)>-0.99) then {
myviewport.camerapos=point(0,0,0)+vecrotate(myviewport.camerapos-point(0,0,0),rtdir,a);
myviewport.cameradir=ndir;
}
#mechanism to co-move with position on Mars
root.SC.Universe.transf.reset;
tf1=marspositframe.totaltransformation;
tf2=tf1;tf2.invert;
root.viewports.main.transf=tf2;#apply the inverse transformation to the viewport-> object becomes positioned in the origin
#calculate position of sun in the local reference system
sunpoint=tf2*point(0,0,0);
sundir=vecnorm(sunpoint-point(0,0,0));
surfaceframe.smallsun.position=point(0,0,0)+infoset.globeradius*sundir;
surfaceframe.crv_sundir.makeline(point(0,0,0)+0.2*infoset.globeradius*sundir,sunpoint);
sunaz=-0.5*Pi-angle(sundir.x,sundir.y);
if sunaz<-1*Pi then sunaz=sunaz+2*Pi;
if sunaz>Pi then sunaz=sunaz-2*Pi;
sunang=Pi/2-vecangle(sundir,vector(0,0,1));
infoset.sunpos_az.content="Azimut: "+str(round(sunaz/Pi*180,1))+"°";
infoset.sunpos_h.content="Hoogte: "+str(round(sunang/Pi*180,1))+"°";
sunc=sunang;
if sunc>1 then sunc=1;
if sunc<0 then sunc=0;
sss.light0color=color(sunc,sunc,sunc,1);
sss.VolumeShadowReset;
sss.VolumeShadowAdd(0,color(0,0,0,0.5*sunc),0.01*infoset.scenescale,16*infoset.scenescale);
if sundir^vector(0,0,1)>0 then {
if not(sunsethappened) then firstloop=true;
if firstloop then surfaceframe.crv_suntrace.addpoint(point(0,0,0)+infoset.globeradius*sundir);
if ( (sundir^vector(0,0,1)) < (sundirprev^vector(0,0,1)) ) and not(maxangreached) then {#maximum was reached
angmax=sunang;
angmaxstr=Str(round(angmax/Pi*180,1))+"°";
sundirhor=vecnorm(vector(sundirprev.x,sundirprev.y,0));
crv_maxang=surfaceframe.add("Curve","EnableLight":false,"Color":color(1,0,0),"Size":5,"Arrow2Size":(infoset.globeradius*0.1));
makepartialcircle(crv_maxang,infoset.globeradius*sundirhor,infoset.globeradius*sundirprev);
maxangreached=true;
surfaceframe.add("TextFlat","Position":@point(0.53*infoset.globeradius*vecnorm(sundirprev+sundirhor)),"EnableLight":false,
"Size":(0.1*infoset.globeradius),"Content":angmaxstr);
surfaceframe.add("Curve","EnableLight":false,"Color":color(0.8,0,0),"Size":3).
makeline(point(0,0,0)+0.2*infoset.globeradius*sundirprev,point(0,0,0)+infoset.globeradius*sundirprev);
}
}
if sundir^vector(0,0,1)<0 then {
sunsethappened=true;
firstloop=false;
}
#show trace
if firstloop then {
if floor(root.time.min/30)!=minlast then {
surfaceframe.add("Curve","EnableLight":false,"Color":color(0.5,0,0),"Size":1).
makeline(point(0,0,0)+0.2*infoset.globeradius*sundir,point(0,0,0)+infoset.globeradius*sundir);
}
}
minlast=floor(root.time.min/30);
sundirprev=sundir;
SUB_testcmd();
render;
}
root.SC.Universe.transf.reset;
root.viewports.main.transf.reset;
infoset.panelcontent.dispose;
marspositframe.dispose;
ssys_showconstellations(false);
root.SC.Universe.StarBackFrame.ConstellationNames.Visible=false;
root.SC.Universe.StarBackFrame.StarNames.Visible=false;
sss=T_getscene;
sss.VolumeShadowReset;
sss.light0color=color(1,1,1,1);
} |
5381219fa6e4855544e1969dfb3eb8c6a7b608b5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1241/CH3/EX3.1/exa3_1.sce | 179edb64ee99fa4a3f81dd647504c8fac743a726 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 953 | sce | exa3_1.sce | //Example 3-1//
//BCD addition//
clc
//clears the console//
clear
//clears all existing variables//
a=647
b=492
for i=1: 3
x(i)=modulo(a,10)
a=a/10
a=floor(a)
y(i)=modulo(b,10)
b=b/10
b=floor(b)
end
d=x(1)+y(1)
db=dec2bin(d)
if d>9 then
db=dec2bin(d+6)
db=dec2bin(bin2dec(db)-bin2dec('10000'))
end
e=x(2)+y(2)
eb=dec2bin(e)
if d>9 then
eb=dec2bin(e+1)
e=e+1
end
if e>9
eb=dec2bin(e+6)
eb=dec2bin(bin2dec(eb)-bin2dec('10000'))
end
f=x(3)+y(3)
fb=dec2bin(f)
if e>9 then
fb=dec2bin(f+1)
f=f+1
end
if f>9
fb=dec2bin(f+6)
fb=dec2bin(bin2dec(fb)-bin2dec('10000'))
dc(4)=1
end
dc(1)=bin2dec(db)
dc(2)=bin2dec(eb)
dc(3)=bin2dec(fb)
z=0
for i=1: 4
z=z+dc(i)*(10^(i-1))
end
disp(z)
disp('equivalent binary form')
p=strcat(dec2bin(dc(4),1)+dec2bin(dc(3),4)+dec2bin(dc(2),4)+dec2bin(dc(1),4))
disp(p)
//answer is displayed//
|
c0a2fbe62f1778a506d4fc14d6a5ccbf87bffea2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /45/CH10/EX10.15/example_10_15.sce | 3c69197bb66bb2d3609192c8059357f09579feb6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | example_10_15.sce | //example 10.15
//this program use kmap2.sci
//kmap2.sci should be executed before executing this program
clc;
a= [0 0 1 1]
b= [0 1 0 1]
y= [1 1 0 1]
k= [1 1 ; 0 1]
bi = kmap2(k); // calling 2-variable kmap
disp(" A B Y");
for i=1:3
Y(i,1) = a(i);
Y(i,2) = b(i);
Y(i,3) = y(i);
end
disp(Y);
disp('The minimised expression from karnaugh map is');// displaying the result
disp(bi); |
d6a41ba1ccd8abdd9679d76282f518e33d3d3e49 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1784/CH48/EX48.5/example_5.sce | 2648801269f661d38887f10ab5800a244fd218b5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 267 | sce | example_5.sce | //Example 5
//given
m=9.1*(10^-31)//in kg
v=300//in m/s
h=6.6*(10^-34)// in j-s
p=m*v
disp("The electrom momentum in kg-m/s=")
disp(p)
delta_p=(0.0001)*p
disp("delta_p in kg-m/s=")
disp(delta_p)
delta_x=(h/delta_p)
disp("Minimum uncertainaity in m=")
disp(delta_x)
|
d05d535547e8541cdf224fbae128d0cd3ca52a20 | 449d555969bfd7befe906877abab098c6e63a0e8 | /503/CH8/EX8.28/ch8_28.sci | afbb7622b6667d8c19f41ed29037a676444b7dd8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 405 | sci | ch8_28.sci | //to find max pu power, pu armature current, pu reactive power
clc;
Vt=1;
Xd=1.02;
Xq=.68;
Pmmax=Vt^2*(Xd-Xq)/(2*Xd*Xq);disp(Pmmax,'max pu power');
dl=.5*asind(Pmmax/(Vt^2*(Xd-Xq)/(2*Xd*Xq)));
Id=Vt*cosd(dl)/Xd;
Iq=Vt*cosd(dl)/Xq;
Ia=sqrt(Id^2+Iq^2);disp(Ia,'armature current(pu)');
Qe=Id*Vt*cosd(dl)+Iq*Vt*sind(dl);disp(Qe,'reactive power(pu)');
pf=cosd(atand(Qe/Pmmax));disp(pf,'pf'); |
4af7c36781b6977ed94891deaf40a58761e840b9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH6/EX6.4/6_4.sce | bd6561a0f65ba6365c4d58f54a447acbc943ff0a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 308 | sce | 6_4.sce | function [x,y]=polar_to_cart(r,theta)
theta=theta/180*%pi
x=r*cos(theta)
y=r*sin(theta)
endfunction
Vl=400
Vp=Vl/sqrt(3)
disp(Vp)
[Ir,Ic]=polar_to_cart(50,-30)
Il=complex(Ir,Ic)
Ip=Il
Zy=Vp/Il
disp(Zy)
P=sqrt(3)*Vl*Il*cos(30/180*%pi)
Q=sqrt(3)*Vl*Il*sin(30/180*%pi)
disp(P,Q) |
07c5fcc0dc0df623243289518840199a3ac14ad6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2912/CH5/EX5.18/Ex5_18.sce | bb881fb781e255c5640f121832cbf5d7465f131b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 818 | sce | Ex5_18.sce | //chapter 5
//example 5.18
//Calculate uncertainty in the position of electron
//page 109-110
clear;
clc;
//given
v=6.6E4; // m/s (speed of electron)
poc=0.01; // percentage of uncertainty
h=6.63E-34; // in J-s (Planck's constant)
m=9E-31; // in Kg (mass of electron)
pi=3.14; // value of pi used in the solution
//calculate
p=m*v; // calculation of momentum
printf('\nThe momentum of electron is \t\t\tp=%1.2E Kg-m/s',p);
dp=(poc/100)*p; // calculation of uncertainty in the momentum
printf('\nThe uncertainty in the momentum of electron is\tdp=%1.2E Kg-m/s',dp);
// Since dx*dp=h/4*pi (uncertainty relation)
dx=h/(4*pi*dp); // calculation of uncertainty in the position
printf('\nThe uncertainty in the position of electron is\tdx=%1.2E Kg-m/s',dx);
// Note; solution is incomplete in the book
|
8bf74308308d4f4240b7d1cc65d502c91933e87c | 449d555969bfd7befe906877abab098c6e63a0e8 | /3850/CH38/EX38.3/Ex38_3.sce | fd3b9860d5b849993121e28428e9ccb73b659ff7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 506 | sce | Ex38_3.sce |
//To Calculate the Self Inductance of Coil
//Example 38.3
clear;
clc;
If=-5.0;//Final Current flowing through coil in opposite direction in Amperes
Ii=5.0;//Initial Current flowing through coil in Amperes
t=0.20;//Time Required for current to Change from -5 A to 5 A in seconds
di=(If-Ii)/t;//Change in Current through the coil in Amperes
E=0.2;//Average Induced EMF in Volts
L=-E/di;//Self Inductance of the Coil
printf("Self Inductance of the coil (L) = %.1f mH",L*10^3);
|
82a3fcaab79fe4cf0eb7bcba825e444f9253b93b | 1bb72df9a084fe4f8c0ec39f778282eb52750801 | /test/FL02.prev.tst | 2ca457c88cb5b5d09cf82c7add852f0a12a763c7 | [
"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 | 10,109 | tst | FL02.prev.tst | [6,-3,-5,-4] [6,-3,-5,-4] => [9,-1,-6,-8] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[9,-1,-8,-6] [9,-6,-8,-1] => [6,-3,-4,-5] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[12,1,-10,-9] [12,-9,-10,1] => [6,-3,-4,-5] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[16,2,-15,-9] no follower
[19,-3,-18,-10] no follower
[20,-7,-17,-14] no follower
[25,-4,-22,-17] no follower
[27,10,-24,-19] [27,-24,10,-19] => [96,50,-59,-93] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[28,-18,-21,-19] no follower
[29,-11,-27,-15] no follower
[34,2,-33,-15] no follower
[34,9,-33,-16] no follower
[39,17,-36,-26] [39,-36,17,-26] => [141,76,-85,-138] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[40,12,-33,-31] no follower
[41,-2,-40,-17] no follower
[41,-6,-33,-32] no follower
[44,-16,-41,-23] no follower
[46,-27,-37,-30] no follower
[46,-3,-37,-36] no follower
[51,12,-43,-38] no follower
[53,-29,-44,-34] no follower
[53,8,-50,-29] no follower
[54,-12,-53,-19] no follower
[55,17,-54,-24] no follower
[58,-15,-49,-42] no follower
[58,9,-57,-22] no follower
[60,3,-59,-22] no follower
[67,-22,-54,-51] no follower
[67,30,-58,-51] no follower
[69,-36,-61,-38] [69,-36,-61,-38] => [87,-20,-54,-79] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[69,42,-61,-56] no follower
[70,-7,-57,-54] no follower
[71,-14,-70,-23] no follower
[72,-34,-65,-39] [72,-39,-65,-34] => [81,-25,-48,-74] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[75,-38,-66,-43] no follower
[76,-31,-72,-33] no follower
[76,17,-73,-38] no follower
[76,5,-69,-48] no follower
[80,15,-71,-54] no follower
[81,-25,-74,-48] [81,-48,-74,-25] => [72,-34,-39,-65] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[82,-19,-69,-60] no follower
[82,51,-75,-64] no follower
[84,-28,-75,-53] no follower
[85,-50,-64,-61] no follower
[87,-20,-79,-54] [87,-54,-79,-20] => [69,-36,-38,-61] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[87,-26,-78,-55] no follower
[87,-38,-79,-48] [87,-48,-79,-38] => [93,-32,-54,-85] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[88,-21,-84,-43] no follower
[88,-25,-86,-31] no follower
[89,-17,-86,-40] no follower
[89,2,-86,-41] no follower
[90,-25,-87,-38] no follower
[90,-58,-69,-59] no follower
[93,-32,-85,-54] [93,-54,-85,-32] => [87,-38,-48,-79] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[93,11,-92,-30] no follower
[94,23,-84,-63] no follower
[96,-19,-90,-53] no follower
[96,50,-93,-59] [96,-93,50,-59] => [354,199,-208,-351] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[97,-45,-79,-69] no follower
[97,20,-96,-33] no follower
[97,47,-90,-66] no follower
[98,24,-89,-63] no follower
[98,35,-92,-59] no follower
[99,29,-92,-60] no follower
[102,23,-95,-60] no follower
[103,-12,-102,-31] no follower
[103,1,-94,-64] no follower
[105,-33,-92,-70] no follower
[108,-13,-104,-51] no follower
[108,-15,-89,-82] no follower
[109,62,-93,-90] no follower
[110,-29,-96,-75] no follower
[110,4,-101,-67] no follower
[111,-16,-108,-47] no follower
[113,-50,-97,-74] no follower
[113,55,-94,-92] no follower
[115,-3,-114,-34] no follower
[116,-23,-97,-86] no follower
[120,-9,-116,-55] no follower
[121,-49,-102,-84] no follower
[121,42,-120,-49] no follower
[122,-19,-101,-92] no follower
[123,-44,-118,-51] no follower
[126,-23,-105,-94] no follower
[127,-13,-121,-65] no follower
[127,2,-106,-95] no follower
[129,-38,-124,-57] no follower
[132,-5,-123,-76] no follower
[134,-86,-97,-95] no follower
[134,23,-116,-95] no follower
[137,-44,-128,-73] no follower
[139,-94,-99,-96] no follower
[139,18,-123,-94] no follower
[141,-72,-122,-85] [141,-72,-122,-85] => [192,-34,-123,-173] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[141,76,-138,-85] [141,-138,76,-85] => [522,296,-305,-519] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[142,-31,-137,-64] no follower
[142,10,-121,-103] no follower
[144,-1,-138,-71] no follower
[145,-12,-136,-81] no follower
[147,-22,-140,-75] no follower
[150,-71,-138,-73] no follower
[150,1,-144,-73] no follower
[150,2,-141,-83] no follower
[151,-46,-148,-47] no follower
[152,4,-151,-41] no follower
[153,18,-122,-121] no follower
[156,-65,-142,-87] [156,-87,-142,-65] => [162,-59,-93,-148] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[156,26,-125,-123] [156,-123,-125,26] => [69,-36,-38,-61] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[159,-3,-131,-121] no follower
[160,-69,-124,-123] no follower
[161,10,-153,-84] no follower
[162,-59,-148,-93] [162,-93,-148,-59] => [156,-65,-87,-142] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[163,23,-137,-121] no follower
[164,-69,-146,-99] no follower
[165,24,-157,-86] no follower
[165,27,-152,-100] no follower
[165,76,-157,-102] no follower
[166,32,-135,-129] no follower
[167,-12,-159,-86] no follower
[167,25,-164,-64] no follower
[170,-96,-141,-107] no follower
[171,-107,-136,-108] no follower
[171,-54,-163,-80] no follower
[172,-1,-138,-135] no follower
[172,36,-163,-93] no follower
[172,71,-144,-135] no follower
[172,99,-163,-120] no follower
[174,-47,-162,-97] no follower
[174,37,-141,-136] [174,-141,37,-136] => [591,281,-380,-558] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[176,-25,-167,-92] no follower
[177,-48,-142,-137] no follower
[178,-48,-147,-133] no follower
[178,51,-162,-115] no follower
[178,72,-165,-115] no follower
[179,-17,-177,-57] no follower
[179,40,-166,-107] no follower
[180,57,-166,-113] no follower
[181,-108,-150,-109] no follower
[184,10,-181,-67] no follower
[184,66,-175,-105] no follower
[185,-57,-180,-68] no follower
[185,-68,-166,-113] no follower
[186,-18,-167,-121] no follower
[186,3,-184,-59] no follower
[187,-58,-160,-131] no follower
[188,-115,-149,-122] no follower
[189,-21,-188,-46] no follower
[190,-56,-163,-133] no follower
[191,-39,-156,-146] no follower
[192,-34,-173,-123] [192,-123,-173,-34] => [141,-72,-85,-122] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[192,93,-166,-149] no follower
[193,-25,-190,-68] no follower
[196,45,-174,-133] no follower
[197,-53,-194,-58] no follower
[198,-27,-197,-46] no follower
[198,-73,-170,-135] no follower
[199,-6,-180,-127] no follower
[201,-45,-199,-53] no follower
[202,-76,-171,-141] no follower
[202,-85,-171,-138] no follower
[202,135,-183,-166] no follower
[202,32,-183,-129] no follower
[203,-81,-167,-147] no follower
[204,15,-200,-79] no follower
[205,-108,-165,-142] no follower
[206,-35,-202,-77] no follower
[206,-5,-164,-163] no follower
[207,14,-183,-140] no follower
[209,-113,-166,-146] no follower
[209,-57,-180,-146] no follower
[209,68,-185,-146] no follower
[210,-42,-205,-83] no follower
[210,116,-197,-147] no follower
[210,9,-172,-161] no follower
[213,-56,-210,-61] no follower
[213,72,-206,-109] no follower
[214,-16,-213,-51] no follower
[214,-58,-179,-157] no follower
[215,81,-206,-120] no follower
[216,50,-177,-167] [216,-177,50,-167] => [738,355,-472,-699] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[217,-46,-201,-126] no follower
[217,84,-198,-145] no follower
[218,-140,-161,-151] no follower
[218,-93,-180,-155] no follower
[218,40,-211,-101] no follower
[219,-108,-170,-163] [219,-108,-170,-163] => [372,-10,-261,-323] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[219,-50,-216,-67] no follower
[219,-51,-190,-152] no follower
[219,-67,-177,-167] no follower
[219,64,-186,-163] [219,-186,64,-163] => [762,380,-479,-729] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[223,20,-192,-159] no follower
[223,73,-220,-94] no follower
[225,-31,-219,-95] no follower
[225,156,-218,-169] no follower
[226,17,-225,-54] no follower
[226,24,-225,-55] no follower
[228,-18,-193,-167] no follower
[228,121,-193,-186] no follower
[229,-102,-192,-157] no follower
[229,-76,-192,-165] no follower
[231,-103,-204,-140] no follower
[231,-56,-223,-102] no follower
[231,-98,-207,-136] no follower
[232,-85,-220,-107] no follower
[233,10,-225,-108] no follower
[233,47,-194,-176] no follower
[234,-123,-208,-125] [234,-123,-208,-125] => [288,-71,-177,-262] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[235,-54,-204,-163] no follower
[235,-78,-195,-172] no follower
[235,-96,-198,-163] no follower
[235,80,-204,-171] no follower
[238,-147,-186,-157] no follower
[238,21,-229,-114] no follower
[239,-15,-230,-114] no follower
[239,-23,-200,-178] no follower
[240,87,-239,-94] no follower
[241,-113,-220,-124] no follower
[241,119,-222,-168] no follower
[244,-73,-207,-174] no follower
[246,-113,-207,-166] no follower
[246,146,-209,-207] no follower
[246,31,-240,-103] no follower
[246,45,-214,-173] no follower
[246,68,-207,-185] [246,-207,68,-185] => [852,421,-538,-813] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[246,80,-213,-179] [246,-213,80,-179] => [864,439,-538,-831] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[249,-4,-248,-57] no follower
[249,1,-235,-135] no follower
[251,-6,-216,-179] no follower
[254,-163,-197,-164] no follower
[254,5,-206,-197] no follower
[254,87,-216,-191] no follower
[255,18,-236,-151] no follower
[255,58,-220,-183] no follower
[256,-22,-255,-57] no follower
[256,-9,-220,-183] no follower
[256,-9,-255,-58] no follower
[257,21,-231,-167] no follower
[258,-101,-219,-178] no follower
[260,-65,-248,-127] no follower
[262,-19,-258,-93] no follower
[264,19,-262,-75] no follower
[265,20,-257,-118] no follower
[266,-49,-263,-80] no follower
[268,11,-267,-60] no follower
[268,111,-258,-151] no follower
[269,-152,-229,-158] no follower
[269,-66,-260,-117] no follower
[270,-23,-265,-102] no follower
[270,73,-244,-177] no follower
[275,-158,-228,-171] no follower
[275,69,-240,-194] no follower
[279,-138,-223,-200] [279,-138,-223,-200] => [453,-26,-312,-397] by [[9,7,4,1],[-8,-6,-4,-1],[5,4,3,1],[-5,-4,-2,0]]
[279,-71,-262,-150] no follower
[280,35,-276,-99] no follower
[281,-50,-257,-172] no follower
[281,62,-257,-176] no follower
230 of 256 failed, 89%
|
842f215f74ba5d77be1876de59c83b74b17cfb32 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1943/CH5/EX5.4/Ex5_4.sce | be366b7093b37b1dad8f3abdb09eb7703ffa0292 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 754 | sce | Ex5_4.sce |
clc
clear
//Input data
O=35;//The output of the fluidized bed combustion system in MW
n=0.80;//Efficiency of the fluidized bed combustion system
H=26;//The heating value of coal in MJ/kg
S=3.6;//Sulphur content in the coal in %
C=3;//The calcium sulphur ratio
Ca=85;//The amount of calcium carbonate in the limestone in %
CaCO3=100;//The molecular weight of CaCO3
//Calculations
Cb=O/(n*H);//Coal burning rate in kg/s
Cb1=Cb*3600;//Coal burning rate in kg/h
Sf=(Cb1*(S/100))/32;//Flow rate of sulphur in Kmol/h
Cf=Sf*C;//The flow rate of calcium in Kmol/h
Caf=Cf*CaCO3;//Mass flow rate of CaCO3 in kg/h
L=Caf/(Ca/100);//Mass flow rate of limestone in kg/h
//Output
printf('The required flow rate of limestone is %3.1f kg/h ',L)
|
897ed542a01ee742ce2a53466d6961baff1a477b | efe59cd4cca137aba9af447e8040b1eac3738006 | /examples/polynomial/operacoesAritmeticasPolinomios.sce | d82c353a871327aa2372b67b64ca98b92a439e0e | [] | no_license | thejefecomp/scilab-codes | fd13f6aa666135c0fb08989e25b0ca1354c58b51 | 6eefce6eed8af0b54f2d6172f6e2b05513327184 | refs/heads/master | 2023-07-31T13:23:50.467306 | 2021-09-23T09:00:49 | 2021-09-23T12:04:06 | 287,115,880 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,874 | sce | operacoesAritmeticasPolinomios.sce | //Este programa calcula as operações aritméticas de adição, subtração, multiplicação, e divisão entre dois polinômios informados pelo utilizador. Todas as operações são realizadas a considerar o polinômio1 como operando à esquerda da operação, e o polinômio2 como operando à direita da operação. Ao final, o programa exibe os polinômios resultantes no console, e desenha os gráficos com base nos intervalos informados pelo utilizador para cada polinômio resultante.
//Esta função calcula a soma de dois polinômios.
function pResultado=pSoma(polinomio1, polinomio2)
pResultado = polinomio1 + polinomio2
endfunction
//Esta função calcula a subtração de dois polinômios.
function pResultado=pSubtracao(polinomio1, polinomio2)
pResultado = polinomio1 - polinomio2
endfunction
//Esta função calcula a multiplicação de dois polinômios.
function pResultado=pMultiplicacao(polinomio1, polinomio2)
pResultado = polinomio1 * polinomio2
endfunction
//Esta função calcula a divisão de dois polinômios.
function [pQuociente,pResto]=pDivisao(polinomio1, polinomio2)
[pQuociente,pResto] = pdiv(polinomio1,polinomio2)
endfunction
/*Esta função permite invocar funções com 2 argumentos de entrada, tais como as funções definidas anteriormente.
Os dois argumentos de entrada, e a variável que representa o nome da função a ser invocada, são informados.
*/
function listaResultado=invocaFuncao2Argumentos(argumentoEntrada1, argumentoEntrada2, funcao)
variaveis = macrovar(funcao)
if size(variaveis(2), 'r') == 1 then
listaResultado = list(funcao(argumentoEntrada1,argumentoEntrada2))
elseif size(variaveis(2), 'r') == 2 then
[argumentoSaida1, argumentoSaida2] = funcao(polinomio1,polinomio2)
listaResultado = list(argumentoSaida1,argumentoSaida2)
end
endfunction
/*Esta função permite invocar um número variável de funções com 2 argumentos de entrada.
Os dois argumentos de entrada, e o conjunto de variáveis a representar os nomes das funções a serem invocadas, são informados.
*/
function listaResultado=invocaFuncoes2Argumentos(argumentoEntrada1, argumentoEntrada2, varargin)
for i = 1: size(varargin)
funcao = varargin(i)
if i == 1 then
listaResultado = invocaFuncao2Argumentos(argumentoEntrada1, argumentoEntrada2, funcao)
else
listaResultado = lstcat(listaResultado, invocaFuncao2Argumentos(argumentoEntrada1, argumentoEntrada2, funcao))
end
end
endfunction
//Esta função permite desenhar gráficos a considerar a divisão da janela gráfica com auxílio da função subplot().
function desenhaGrafico(linhas,colunas,indice,x,y,titulo,limpaJanela)
if limpaJanela == %t then
clf()
end
subplot(linhas,colunas,indice)
plot(x,y)
title(titulo)
endfunction
//Esta função permite desenhar um conjunto de gráficos com base nas matrizes x e y, bem com os títulos informados.
function desenhaGraficosPolinomios(linhas,titulos,matrizX, matrizY)
numeroPolinomios = size(matrizY,'r')
numeroValoresIntervalo = size(matrizY, 'c')
colunas = ceil(numeroPolinomios/linhas)
for i = 1 : numeroPolinomios
desenhaGrafico(linhas,colunas,i,matrizX(i,1:numeroValoresIntervalo), matrizY(i,1:numeroValoresIntervalo), titulos(i), i == 1)
end
endfunction
//Esta função realiza o cálculo das operações aritméticas de dois polinômios informados pelo utilizador.
function [titulos, matrizY]=calculaOperacoesAritmeticas(polinomio1, polinomio2, matrizX, titulos, imprimePolinomios)
listaResultado = invocaFuncoes2Argumentos(polinomio1, polinomio2, pSoma, pSubtracao, pMultiplicacao, pDivisao)
numeroIntervalos = size(matrizX,'r')
numeroValoresNoIntervalo = size(matrizX, 'c')
for i = 1 : numeroIntervalos
matrizY(i,1:numeroValoresNoIntervalo) = horner(listaResultado(i),matrizX(i,1:numeroValoresNoIntervalo))
if imprimePolinomios then
disp(listaResultado(i), titulos(i))
end
end
endfunction
coeficientesP1 = input('Digite o vetor de coeficientes do polinômio 1: ')
coeficientesP2 = input('Digite o vetor de coeficientes do polinômio 2: ')
matrizX = input('Digite a matriz de intervalos para o desenho dos gráficos dos 5 polinômios [adição;subtração; multiplicação;divisão(quociente), divisao(resto)]: ')
p1 = poly(coeficientesP1, 'x', 'coeff')
p2 = poly(coeficientesP2, 'x', 'coeff')
titulos = ['Adição:', 'Subtração:', 'Multiplicação:', 'Divisão (quociente):', 'Divisão (resto):']
[titulos,matrizY] = calculaOperacoesAritmeticas(p1, p2, matrizX,titulos, %t)
desenhaGraficosPolinomios(2,titulos,matrizX, matrizY)
|
b7e2986d9610168b122b60dc9b47df4ddf5ba8f7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2300/CH7/EX7.13.8/Ex7_8.sce | 56b38cd033e3775b4a9d0f4966994ceadcc90edd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,173 | sce | Ex7_8.sce | //scilab 5.4.1
//Windows 7 operating system
//chapter 7 Junction Transistor Characteristics
clc
clear
b=100//b=forward current transfer ratio or dc current gain
Vz=4//Vz=Zener diode voltage
IL=2//IL=load current in mA
Iz=5//Iz=Zener current in mA
VCC=12//VCC=collector supply voltage
VEB1=0.7
VEB2=VEB1//VEB1,VEB2=emitter-to-base voltage for both transistors Q1 and Q2 respectively
//Since IL is the collector current of transistor Q1
IB=IL/b//IB=base current of transistor Q1
IE=IB+IL//IE=emitter current of transistor Q1
VR1=VCC-VEB2-Vz//VR1=voltage drop across resistor R1
R1=VR1/(IB+Iz)
format("v",5)
disp("kilo ohm",R1,"The resistance R1 is =")
VR2=VEB2+Vz-VEB1//VR2=voltage drop across resistor R2
R2=VR2/IE
format("v",5)
disp("kilo ohm",R2,"The resistance R2 is =")
//VBC=VCC-VR2-VEB1-(IL*RL) where VBC=base-collector voltage drop for transistor Q1
//VBC=7.3-(2*RL) where RL=load resistance for transistor Q1 in terms of kilo ohm
disp("For Q1 to remain in the active region,VBC≥0,i.e.")
disp("RL≤(7.3/2) kilo ohm")
disp("RL≤3.65 kilo ohm")
disp("So the range of RL for Q1 to remain in the active region is 0≤RL≤3.65 kilo ohm")
|
bde77964a8abf1e92e05c3deb333bba1992c4f5d | 897ce6a3fd5b682122c396af7e24fa53014c7cb3 | /src_script/scilab/_import/rtsx_10/AttachBase.sci | 19da6bf2fa0848458cbb50d4e82204014af65dcc | [] | no_license | stub22/glue-ai-v1_friendularity | e66f5ab357eba45de2def6f7900f414e358a4125 | 74949dc3e9b0d08b39857735aad901915e61322d | refs/heads/master | 2022-12-19T18:57:01.336831 | 2017-08-04T12:55:12 | 2017-08-04T12:55:12 | 284,544,364 | 0 | 0 | null | 2020-10-14T00:08:14 | 2020-08-02T21:24:34 | Java | UTF-8 | Scilab | false | false | 395 | sci | AttachBase.sci | // AttachBase.sci attach base frame to robot
// www.controlsystemslab.com August 2012
function robot=AttachBase(robot,Tb)
if isequal(size(Tb),[4,4]) & isequal(Tb(4,:),[0 0 0 1]) then
robot.base = Tb;
else
disp(Tb);
error("Bad data for Tb");
end
endfunction
function robot=attachbase(robot,Tb)
robot=AttachBase(robot,Tb);
endfunction |
41533fa6592e13f43cd13060ed2995cd5fc6ba7f | 449d555969bfd7befe906877abab098c6e63a0e8 | /443/CH3/EX3.25/3_25.sce | 2d0720b4ba24dfaa12eff71165552d6ec75bda58 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,816 | sce | 3_25.sce | pathname=get_absolute_file_path('3_25.sce')
filename=pathname+filesep()+'3_25_data.sci'
exec(filename)
//Volume flow(in m^3/kg)
v1=(R*T1)/(p1*10^5)
//Temperature at end of compression stroke(in K)
T2=T1*(r)^(y-1)
//Pressure at the end of compression stroke(in bar)
p2=(r^y)*p1
//Temperature at start of constant pressure heat addition(in bar)
T3=(p3/p2)*T2
//Heat supplied at constant volume(in kJ/kg)
qv=Cv*(T3-T2)
//Heat supplied at constant pressure(in kJ/kg)
qp=Hs-qv
//Temperature at start of expansion stroke(in K)
T4=T3+(qp/Cp)
//Volume flow at start of expansion(in m^3/kg)
v4=(v1/r)*(T4/T3)
//Temperature at end of expansion stroke(in K)
T5=T4*(v4/v1)^(y-1)
//Heat rejected(in kJ/kg)
Hr=Cv*(T5-T1)
//Work done(in kJ/kg)
W=Hs-Hr
//Efficiency of dual cycle
n1=W/Hs
//Mean effective pressure(in bar)
pm=(W*10^3)/(v1*(1-(1/r)))*10^-5
//Temperature rise resulting from heat addition(in K)
T3v=(Hs/(Cv))+T2
//Pressure at end of heat addition process(in bar)
p3v=T3v*(p2/T2)
//Temperature at end of expansion stroke(in K)
T4v=T3v*((1/r)^(y-1))
//Heat rejected(in kJ/kg)
Hrv=Cv*(T4v-T1)
//Work done(in kJ)
Wv=Hs-Hrv
//Efficiency of constant volume cycle
n2=Wv/Hs
//Mean effective pressure(in bar)
pm2=(Wv*1000)/((1-(1/r))*v1)*10^-5
//If the gases were expanded isentropically to their original pressure of p1bar then temperature T6 at the end of expansion would be(in K)
T6=T3v*(p1/p3v)^((y-1)/y)
//Heat rejected at constant pressure(in kJ/kg)
Hr1=Cp*(T6-T1)
//Increase in work(in kJ/kg)
Win=Hrv-Hr1
printf("\n\nRESULTS\n\n")
printf("\nEfficiency of dual cycle:%f\n",n1*100)
printf("\nMean effective pressure:%f\n",pm)
printf("\nEfficiency of constant volume cycle:%f\n",n2*100)
printf("\nMean effective pressure:%f\n",pm2)
printf("\nIncrease in work:%f\n",Win) |
941816905bd16066b84ebd46c62ea7371f1836ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH12/EX12.4.a/data12_4.sci | ba74a413747111f252ea1d19c8ff3ec0c190a28f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 571 | sci | data12_4.sci |
//(Brakes) Example 12.4
//Torque capacity of the block brake Mt (N-m)
Mt = 250
//Speed of the brake n (rpm)
n = 100
//Coefficient of friction mu
mu = 0.35
//Intensity of pressure between the block and the drum p (N/mm2)
p = 1
//Ratio of the length of the block to its width r
r = 2
//Distance of the actuating force from the block d1 (mm)
d1 = 300
//Distance of the lever pivot from the block d2 (mm)
d2 = 200
//Distance between the lever pivot from the contact area d3 (mm)
d3 = 50
//Radius of the drum R (mm)
R = 200
//Final velocity of the brake drum v2 (m/s)
v2 = 0
|
a893c35159bce31635e21d75efa6570c2d2a3b2e | b1fbfba591c6e450b22fc692ca4f458a34b0ab34 | /sci2oct/examples/example3.sce | c50b6014f6aa13c7d2edd2627c0df6b88c4cce38 | [] | no_license | BabuBReddy/sci2oct | c5994ff4c58874b68e5c1a6e0a3b10289c4c49c2 | e8036d226adab7a75c91740aa7d97bbcd8037c30 | refs/heads/master | 2016-09-01T07:57:27.213764 | 2016-02-16T17:52:32 | 2016-02-16T17:52:32 | 51,855,497 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 57 | sce | example3.sce | a=[0 -1 1; 1 -1 -1; -1 0 -1]
b=[3 ; 0;-3]
sci2oct('a\b')
|
82340b2e5bd98ddd0da54f3d87847fcc910fb088 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH13/EX13.9/13_9.sce | 67f411255646e49edc6d3c4db158ac9af19cc3ed | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 310 | sce | 13_9.sce | clear
clc
xd=.2
x1=.4
x2=.4
Pi=1.5
E=1.2
V=1
Xs1=xd +((x1*x2)/(x1+x2))
pe=E*V/Xs1
d0 = asin(Pi/pe)
Xs3=xd+ x1
pe3=E*V/Xs3
d2 = asin(Pi/pe3)
dm=%pi- d2
Pmb=0
Pmc=pe3
dcc=acosd(((Pi*(dm-d0))- (Pmb*cos(d0))+ (Pmc*cos(dm)))/(Pmc-Pmb))
mprintf("Critical Clearing angle = %.2f deg", dcc)
|
a658c2fff4e14f1c446e090bd2a9d7172df8ff9a | 449d555969bfd7befe906877abab098c6e63a0e8 | /647/CH8/EX8.9/Example8_9.sce | 37914fbfff427eb16df23107ab2fbc7f47dcc915 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 428 | sce | Example8_9.sce | clear;
clc;
// Example: 8.9
// Page: 308
printf("Example: 8.9 - Page: 308\n\n");
// Solution
//*****Data******//
Th = 273 + 125;// [K]
Tl = 273 - 5;// [K]
Ts = 273 + 28;// [K]
COP = 2;
//*************//
COP_absorption = (Tl/(Ts - Tl))*((Th - Ts)/Th);
if (COP - 0.1) < COP_absorption | (COP + 0.1) > COP_absorption
printf("Claim is Valid and reasonable");
else
printf("Claim is not Valid");
end |
82f88ea004440e4e6457c6ad8ea41ca5cdd7e238 | 449d555969bfd7befe906877abab098c6e63a0e8 | /213/CH4/EX4.10/4_10.sce | c5bb2d0ecb92be6abfdbda566d13293246ed2dec | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 302 | sce | 4_10.sce | //To Find the Radius of Gyration
clc
//Given:
l=2.5,r=250*10^-3 //m
//Solution:
//Calculating the Frequency of Oscillation
n=50/170 //Hz
//Calculating the Radius of Gyration of the Wheel
kG=r/(2*%pi*n)*sqrt(9.81/l) //m
//Results:
printf("\n\n The Radius of Gyration, kG = %d mm.\n\n",kG*10^3) |
82fab85f9f79e2962f62f274d56985e4dc9e0ca2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3432/CH3/EX3.18/Ex3_18.sce | 311eb6f9ec3c4cc1d5cbc02c39bb7bdc5a4aea17 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,284 | sce | Ex3_18.sce | //Example 3.18 Satellite Transfer Function
xdel(winsid())//close all graphics Windows
clear;
clc;
//------------------------------------------------------------------
//(a)
//Given
d=1 //meters
I=5000 //Kg-meter^2
//Coefficients of numerator and denominator of the transfer function
// of satellite
numG=[d/I 0];
denG=[0 0 1];
// Transfer function
Ns=poly(numG,'s','coeff');
Ds=poly(denG,'s','coeff');
sysG=syslin('c',Ns/Ds);
t=0:0.01:10;
[i j]=size(t);
//------------------------------------------------------------------
//(b)
// Thrust input after 5 sec.
u=zeros(1,j);
w=find(t>=5 & t<=5+0.1);
u(w)=25;
plot(t,u);
exec .\fig_settings.sci; //custom script for setting figure properties
title("Transient response of the satellite...
(a) Thrust input",'fontsize',3);
xlabel('Time t (sec.)','fontsize',2)
ylabel('Fc','fontsize',2)
//Transient response of the satellite to the thrust input as a pulse
sysd=dscr(sysG,0.01); //sample data system model
y=flts(u,sysd); //impulse response
figure, plot(t,y*180/%pi);
exec .\fig_settings.sci; //custom script for setting figure properties
title("Transient response of the satellite(double-pulse)...
(b) satellite attitude",'fontsize',3);
xlabel('Time t (sec.)','fontsize',2)
ylabel('$\theta(deg)$','fontsize',2)
//------------------------------------------------------------------
// Thrust input double-pulse.
u=zeros(1,j);
w1=find(t>=5 & t<=5+0.1);
u(w1)=25;
w2=find(t>=6.1 & t<=6.1+0.1);
u(w2)=-25;
figure,
plot(t,u);
exec .\fig_settings.sci; //custom script for setting figure properties
title("Transient response of the satellite (double-pulse)...
(a) Thrust input",'fontsize',3);
xlabel('Time t (sec.)','fontsize',2)
ylabel('Fc','fontsize',2)
//Transient response of the satellite to the thrust input as a pulse
sysd=dscr(sysG,0.01); //sample data system model
y=flts(u,sysd); //impulse response
figure, plot(t,y*180/%pi);
exec .\fig_settings.sci; //custom script for setting figure properties
title("Transient response of the satellite(double-pulse)...
(b) satellite attitude",'fontsize',3);
xlabel('Time t (sec.)','fontsize',2)
ylabel('$\theta(deg)$','fontsize',2)
//------------------------------------------------------------------
|
10bfc030a0fbe20fa1f940d4a887334ef7df39bd | 46ffb5fda9448453eba4d6787a1568028b241d88 | /ABMLangangen/calibration/cal_9124.836.sci | c3d7c28063247ba0aa915401d5e9a41b4c313465 | [] | 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 | 334,547 | sci | cal_9124.836.sci | bref=[];bnorm=[];incomemean=[];rents=[];
bref(1)=5000;
bnorm(1)=10000;
incomemean(1)=10000;
rents(1,1)=72.1887898906146;
rents(1,2)=36.09439494530729;
rents(1,3)=59.06022056764192;
rents(1,4)=88.75016514994505;
rents(1,5)=119.44622209404962;
rents(1,6)=151.18539417831434;
rents(1,7)=169.8498017781596;
rents(1,8)=170.1153653876544;
rents(1,9)=167.4074266633154;
bref(2)=5000;
bnorm(2)=10000;
incomemean(2)=11000;
rents(2,1)=71.51484404345625;
rents(2,2)=35.75742202172812;
rents(2,3)=61.03711247311566;
rents(2,4)=94.85573733759368;
rents(2,5)=131.57543427455508;
rents(2,6)=169.47928566155045;
rents(2,7)=184.68432891307248;
rents(2,8)=187.8864228546169;
rents(2,9)=187.0429889763661;
bref(3)=5000;
bnorm(3)=10000;
incomemean(3)=12000;
rents(3,1)=70.53923397082119;
rents(3,2)=35.26961698541063;
rents(3,3)=64.74161728521126;
rents(3,4)=107.63347112447678;
rents(3,5)=154.06780008006547;
rents(3,6)=188.37783447029094;
rents(3,7)=196.08054657083792;
rents(3,8)=197.3325375370986;
rents(3,9)=198.15271094906038;
bref(4)=5000;
bnorm(4)=10000;
incomemean(4)=13000;
rents(4,1)=73.34987847021763;
rents(4,2)=36.67493923510884;
rents(4,3)=68.97718267479223;
rents(4,4)=116.6374889530613;
rents(4,5)=171.4755501127039;
rents(4,6)=198.9408011608967;
rents(4,7)=199.9825287313904;
rents(4,8)=200;
rents(4,9)=200;
bref(5)=5000;
bnorm(5)=10000;
incomemean(5)=14000;
rents(5,1)=73.61945575584012;
rents(5,2)=36.80972787792009;
rents(5,3)=75.2330861084958;
rents(5,4)=136.61778975786882;
rents(5,5)=196.4084306671385;
rents(5,6)=200;
rents(5,7)=200;
rents(5,8)=200;
rents(5,9)=200;
bref(6)=5000;
bnorm(6)=10000;
incomemean(6)=15000;
rents(6,1)=75.58751591349628;
rents(6,2)=37.7937579567481;
rents(6,3)=81.0712127284585;
rents(6,4)=152.19779354003623;
rents(6,5)=199.7929613016346;
rents(6,6)=200;
rents(6,7)=200;
rents(6,8)=200;
rents(6,9)=200;
bref(7)=5000;
bnorm(7)=10000;
incomemean(7)=16000;
rents(7,1)=69.39748703444357;
rents(7,2)=34.69874351722177;
rents(7,3)=80.77985755218631;
rents(7,4)=164.94199903185287;
rents(7,5)=200;
rents(7,6)=200;
rents(7,7)=200;
rents(7,8)=200;
rents(7,9)=200;
bref(8)=5000;
bnorm(8)=10000;
incomemean(8)=17000;
rents(8,1)=72.14501714393093;
rents(8,2)=36.07250857196549;
rents(8,3)=87.08137391030685;
rents(8,4)=181.54259287226725;
rents(8,5)=200;
rents(8,6)=200;
rents(8,7)=200;
rents(8,8)=200;
rents(8,9)=200;
bref(9)=5000;
bnorm(9)=10000;
incomemean(9)=18000;
rents(9,1)=72.42684999929136;
rents(9,2)=36.21342499964569;
rents(9,3)=95.45301109065538;
rents(9,4)=195.43701388131547;
rents(9,5)=200;
rents(9,6)=200;
rents(9,7)=200;
rents(9,8)=200;
rents(9,9)=200;
bref(10)=5000;
bnorm(10)=10000;
incomemean(10)=19000;
rents(10,1)=69.54381798385266;
rents(10,2)=34.77190899192641;
rents(10,3)=93.53588011011419;
rents(10,4)=198.9596088339865;
rents(10,5)=200;
rents(10,6)=200;
rents(10,7)=200;
rents(10,8)=200;
rents(10,9)=200;
bref(11)=5000;
bnorm(11)=12000;
incomemean(11)=10000;
rents(11,1)=74.87768196156362;
rents(11,2)=43.67864781091207;
rents(11,3)=65.04135849698268;
rents(11,4)=90.27776603296279;
rents(11,5)=114.83493031237349;
rents(11,6)=142.45766253035293;
rents(11,7)=161.16389923162137;
rents(11,8)=169.29901501005565;
rents(11,9)=171.03447467623386;
bref(12)=5000;
bnorm(12)=12000;
incomemean(12)=11000;
rents(12,1)=74.82386296951064;
rents(12,2)=43.6472533988813;
rents(12,3)=69.02863755189063;
rents(12,4)=100.40891980555385;
rents(12,5)=134.81430287342897;
rents(12,6)=166.9121215652769;
rents(12,7)=182.9222063016214;
rents(12,8)=189.9987279812774;
rents(12,9)=190.054596119307;
bref(13)=5000;
bnorm(13)=12000;
incomemean(13)=12000;
rents(13,1)=70.13409695883607;
rents(13,2)=40.91155655932075;
rents(13,3)=67.64276757672643;
rents(13,4)=102.68010314347681;
rents(13,5)=142.02298699829336;
rents(13,6)=175.9866877490399;
rents(13,7)=192.02558487263488;
rents(13,8)=196.57127418239145;
rents(13,9)=198.0745490407911;
bref(14)=5000;
bnorm(14)=12000;
incomemean(14)=13000;
rents(14,1)=74.92469606626904;
rents(14,2)=43.70607270532384;
rents(14,3)=76.14636504077873;
rents(14,4)=119.66934104387077;
rents(14,5)=170.2824189860635;
rents(14,6)=197.74925365710826;
rents(14,7)=199.9056194856942;
rents(14,8)=200;
rents(14,9)=200;
bref(15)=5000;
bnorm(15)=12000;
incomemean(15)=14000;
rents(15,1)=72.28728653682329;
rents(15,2)=42.16758381314694;
rents(15,3)=76.81195860943471;
rents(15,4)=127.74825111375273;
rents(15,5)=183.35337889476352;
rents(15,6)=200;
rents(15,7)=200;
rents(15,8)=200;
rents(15,9)=200;
bref(16)=5000;
bnorm(16)=12000;
incomemean(16)=15000;
rents(16,1)=71.92404298741805;
rents(16,2)=41.955691742660335;
rents(16,3)=81.1518974102908;
rents(16,4)=140.76671453933895;
rents(16,5)=198.7488361648847;
rents(16,6)=200;
rents(16,7)=200;
rents(16,8)=200;
rents(16,9)=200;
bref(17)=5000;
bnorm(17)=12000;
incomemean(17)=16000;
rents(17,1)=69.39709835616193;
rents(17,2)=40.48164070776111;
rents(17,3)=82.62694024455;
rents(17,4)=152.74015199582408;
rents(17,5)=199.99875717907184;
rents(17,6)=200;
rents(17,7)=200;
rents(17,8)=200;
rents(17,9)=200;
bref(18)=5000;
bnorm(18)=12000;
incomemean(18)=17000;
rents(18,1)=75.16444190248677;
rents(18,2)=43.84592444311729;
rents(18,3)=93.93229884664139;
rents(18,4)=176.07521796660487;
rents(18,5)=200;
rents(18,6)=200;
rents(18,7)=200;
rents(18,8)=200;
rents(18,9)=200;
bref(19)=5000;
bnorm(19)=12000;
incomemean(19)=18000;
rents(19,1)=73.43721249225543;
rents(19,2)=42.838373953815626;
rents(19,3)=98.0074627888213;
rents(19,4)=192.24317093445867;
rents(19,5)=200;
rents(19,6)=200;
rents(19,7)=200;
rents(19,8)=200;
rents(19,9)=200;
bref(20)=5000;
bnorm(20)=12000;
incomemean(20)=19000;
rents(20,1)=72.7062610640486;
rents(20,2)=42.41198562069518;
rents(20,3)=102.08265574539253;
rents(20,4)=195.61689431554024;
rents(20,5)=200;
rents(20,6)=200;
rents(20,7)=200;
rents(20,8)=200;
rents(20,9)=200;
bref(21)=5000;
bnorm(21)=14000;
incomemean(21)=10000;
rents(21,1)=70.7077101768783;
rents(21,2)=45.454956542278985;
rents(21,3)=64.77841592869159;
rents(21,4)=86.62372280329082;
rents(21,5)=110.33362302302149;
rents(21,6)=135.8440990911531;
rents(21,7)=156.27133940529689;
rents(21,8)=167.96384305087136;
rents(21,9)=169.2397820977543;
bref(22)=5000;
bnorm(22)=14000;
incomemean(22)=11000;
rents(22,1)=74.68297648763135;
rents(22,2)=48.01048488490598;
rents(22,3)=69.77712480804243;
rents(22,4)=94.86467945196173;
rents(22,5)=120.87084035985492;
rents(22,6)=149.83859789929684;
rents(22,7)=170.27790648202054;
rents(22,8)=179.22732494897483;
rents(22,9)=185.4955120170277;
bref(23)=5000;
bnorm(23)=14000;
incomemean(23)=12000;
rents(23,1)=72.03768976889134;
rents(23,2)=46.30994342285857;
rents(23,3)=70.52750016838488;
rents(23,4)=99.69050072184146;
rents(23,5)=131.77045138866345;
rents(23,6)=166.12731455037604;
rents(23,7)=186.56331023729072;
rents(23,8)=194.00142509548843;
rents(23,9)=197.07164106087131;
bref(24)=5000;
bnorm(24)=14000;
incomemean(24)=13000;
rents(24,1)=71.68082539759516;
rents(24,2)=46.08053061273995;
rents(24,3)=74.55321918994856;
rents(24,4)=111.3702658529429;
rents(24,5)=154.29946259461258;
rents(24,6)=190.5241985782051;
rents(24,7)=198.2847818751988;
rents(24,8)=199.96458013232743;
rents(24,9)=200;
bref(25)=5000;
bnorm(25)=14000;
incomemean(25)=14000;
rents(25,1)=73.56398625405241;
rents(25,2)=47.291134020462344;
rents(25,3)=78.92644950598638;
rents(25,4)=121.74823984530377;
rents(25,5)=171.04235136786954;
rents(25,6)=197.52491889881685;
rents(25,7)=200;
rents(25,8)=200;
rents(25,9)=200;
bref(26)=5000;
bnorm(26)=14000;
incomemean(26)=15000;
rents(26,1)=74.60858978906334;
rents(26,2)=47.962664864397944;
rents(26,3)=84.50682454098497;
rents(26,4)=136.1202602260372;
rents(26,5)=188.86097755586226;
rents(26,6)=199.6876779669419;
rents(26,7)=200;
rents(26,8)=200;
rents(26,9)=200;
bref(27)=5000;
bnorm(27)=14000;
incomemean(27)=16000;
rents(27,1)=71.60927141458117;
rents(27,2)=46.0345316236592;
rents(27,3)=85.58314318859807;
rents(27,4)=143.3668297127088;
rents(27,5)=195.64467858811994;
rents(27,6)=200;
rents(27,7)=200;
rents(27,8)=200;
rents(27,9)=200;
bref(28)=5000;
bnorm(28)=14000;
incomemean(28)=17000;
rents(28,1)=69.79258562766726;
rents(28,2)=44.866662189214765;
rents(28,3)=89.46099607901765;
rents(28,4)=160.06715245981368;
rents(28,5)=199.67321359568052;
rents(28,6)=200;
rents(28,7)=200;
rents(28,8)=200;
rents(28,9)=200;
bref(29)=5000;
bnorm(29)=14000;
incomemean(29)=18000;
rents(29,1)=72.01084315607017;
rents(29,2)=46.29268488604522;
rents(29,3)=96.1775235062783;
rents(29,4)=180.05216417922725;
rents(29,5)=200;
rents(29,6)=200;
rents(29,7)=200;
rents(29,8)=200;
rents(29,9)=200;
bref(30)=5000;
bnorm(30)=14000;
incomemean(30)=19000;
rents(30,1)=71.37188702555407;
rents(30,2)=45.88192737357039;
rents(30,3)=100.68424164959522;
rents(30,4)=191.20609449205995;
rents(30,5)=200;
rents(30,6)=200;
rents(30,7)=200;
rents(30,8)=200;
rents(30,9)=200;
bref(31)=5000;
bnorm(31)=16000;
incomemean(31)=10000;
rents(31,1)=71.52407079923391;
rents(31,2)=49.17279867447348;
rents(31,3)=66.41700403103718;
rents(31,4)=85.3784901153213;
rents(31,5)=105.42164921474834;
rents(31,6)=126.70056210758605;
rents(31,7)=147.246037338389;
rents(31,8)=160.36823216875544;
rents(31,9)=170.19000352533456;
bref(32)=5000;
bnorm(32)=16000;
incomemean(32)=11000;
rents(32,1)=70.96569137843589;
rents(32,2)=48.78891282267454;
rents(32,3)=68.37526172301347;
rents(32,4)=90.03256817606342;
rents(32,5)=114.92726567005884;
rents(32,6)=142.157610342711;
rents(32,7)=166.0278231045758;
rents(32,8)=176.39763349668473;
rents(32,9)=182.4177118449524;
bref(33)=5000;
bnorm(33)=16000;
incomemean(33)=12000;
rents(33,1)=71.98350687689158;
rents(33,2)=49.48866097786321;
rents(33,3)=72.60085411687521;
rents(33,4)=100.181898272401;
rents(33,5)=130.77695706748347;
rents(33,6)=161.56068283459803;
rents(33,7)=183.5416196179218;
rents(33,8)=191.20605146231765;
rents(33,9)=194.69668665974592;
bref(34)=5000;
bnorm(34)=16000;
incomemean(34)=13000;
rents(34,1)=72.99256906176598;
rents(34,2)=50.1823912299643;
rents(34,3)=75.27203719359892;
rents(34,4)=106.04337995218542;
rents(34,5)=137.97871110018;
rents(34,6)=171.5252144917768;
rents(34,7)=194.51907694571435;
rents(34,8)=198.93057274556475;
rents(34,9)=199.6155705066837;
bref(35)=5000;
bnorm(35)=16000;
incomemean(35)=14000;
rents(35,1)=74.22811656129679;
rents(35,2)=51.03183013589163;
rents(35,3)=80.45579835566687;
rents(35,4)=118.80314553614673;
rents(35,5)=160.6168102385028;
rents(35,6)=193.4725625780033;
rents(35,7)=198.8510268328092;
rents(35,8)=200;
rents(35,9)=200;
bref(36)=5000;
bnorm(36)=16000;
incomemean(36)=15000;
rents(36,1)=71.72770773872078;
rents(36,2)=49.31279907037061;
rents(36,3)=81.99190134144621;
rents(36,4)=125.82712082527328;
rents(36,5)=178.0444551014291;
rents(36,6)=198.42428769642953;
rents(36,7)=200;
rents(36,8)=200;
rents(36,9)=200;
bref(37)=5000;
bnorm(37)=16000;
incomemean(37)=16000;
rents(37,1)=72.15220812993167;
rents(37,2)=49.604643089328;
rents(37,3)=86.45629373785373;
rents(37,4)=138.1324238526972;
rents(37,5)=193.44463973157886;
rents(37,6)=200;
rents(37,7)=200;
rents(37,8)=200;
rents(37,9)=200;
bref(38)=5000;
bnorm(38)=16000;
incomemean(38)=17000;
rents(38,1)=70.91970030167379;
rents(38,2)=48.75729395740076;
rents(38,3)=90.6136840793199;
rents(38,4)=153.2959449838196;
rents(38,5)=199.69043889157308;
rents(38,6)=200;
rents(38,7)=200;
rents(38,8)=200;
rents(38,9)=200;
bref(39)=5000;
bnorm(39)=16000;
incomemean(39)=18000;
rents(39,1)=74.92007030794495;
rents(39,2)=51.507548336712084;
rents(39,3)=99.09512607336322;
rents(39,4)=173.87765335658486;
rents(39,5)=200;
rents(39,6)=200;
rents(39,7)=200;
rents(39,8)=200;
rents(39,9)=200;
bref(40)=5000;
bnorm(40)=16000;
incomemean(40)=19000;
rents(40,1)=73.5815628428524;
rents(40,2)=50.587324454460955;
rents(40,3)=101.71960554204455;
rents(40,4)=183.307090388008;
rents(40,5)=200;
rents(40,6)=200;
rents(40,7)=200;
rents(40,8)=200;
rents(40,9)=200;
bref(41)=5000;
bnorm(41)=18000;
incomemean(41)=10000;
rents(41,1)=73.12002597614625;
rents(41,2)=52.80890764943886;
rents(41,3)=68.64433552136364;
rents(41,4)=85.21431386273434;
rents(41,5)=102.2260263261884;
rents(41,6)=119.9196714505418;
rents(41,7)=138.8567206584207;
rents(41,8)=151.58799655566511;
rents(41,9)=159.06133190040003;
bref(42)=5000;
bnorm(42)=18000;
incomemean(42)=11000;
rents(42,1)=74.85012479268029;
rents(42,2)=54.05842346138016;
rents(42,3)=72.72831546319698;
rents(42,4)=92.55225562453478;
rents(42,5)=113.3447248700847;
rents(42,6)=135.66603779303202;
rents(42,7)=155.4125797384096;
rents(42,8)=168.07957846764347;
rents(42,9)=176.75604628593968;
bref(43)=5000;
bnorm(43)=18000;
incomemean(43)=12000;
rents(43,1)=72.16328203495817;
rents(43,2)=52.11792591413647;
rents(43,3)=72.16449792496702;
rents(43,4)=94.82339572926013;
rents(43,5)=118.96101088257419;
rents(43,6)=146.4625027542369;
rents(43,7)=172.46367797271685;
rents(43,8)=186.39858851902449;
rents(43,9)=193.7420255555044;
bref(44)=5000;
bnorm(44)=18000;
incomemean(44)=13000;
rents(44,1)=71.68497681625655;
rents(44,2)=51.77248325618549;
rents(44,3)=74.94071575970997;
rents(44,4)=103.16915174018607;
rents(44,5)=133.2089364232345;
rents(44,6)=165.9163185743175;
rents(44,7)=189.34047039530225;
rents(44,8)=197.80080172516634;
rents(44,9)=199.71709051913416;
bref(45)=5000;
bnorm(45)=18000;
incomemean(45)=14000;
rents(45,1)=72.16518260936444;
rents(45,2)=52.11929855120754;
rents(45,3)=78.09560408810309;
rents(45,4)=111.6549397761892;
rents(45,5)=150.39883244390063;
rents(45,6)=189.50460364503618;
rents(45,7)=199.88211084325215;
rents(45,8)=200;
rents(45,9)=200;
bref(46)=5000;
bnorm(46)=18000;
incomemean(46)=15000;
rents(46,1)=71.99367044627408;
rents(46,2)=51.99542865564251;
rents(46,3)=83.42709950001868;
rents(46,4)=124.54544297690393;
rents(46,5)=173.25885551450912;
rents(46,6)=197.36995607057096;
rents(46,7)=200;
rents(46,8)=200;
rents(46,9)=200;
bref(47)=5000;
bnorm(47)=18000;
incomemean(47)=16000;
rents(47,1)=72.012037204364;
rents(47,2)=52.008693536485204;
rents(47,3)=87.2143509684274;
rents(47,4)=136.05913423105676;
rents(47,5)=189.08628683121077;
rents(47,6)=200;
rents(47,7)=200;
rents(47,8)=200;
rents(47,9)=200;
bref(48)=5000;
bnorm(48)=18000;
incomemean(48)=17000;
rents(48,1)=71.13747021888575;
rents(48,2)=51.37706182475056;
rents(48,3)=88.88495607803334;
rents(48,4)=142.65437117519164;
rents(48,5)=195.78303165856138;
rents(48,6)=200;
rents(48,7)=200;
rents(48,8)=200;
rents(48,9)=200;
bref(49)=5000;
bnorm(49)=18000;
incomemean(49)=18000;
rents(49,1)=73.18554208246685;
rents(49,2)=52.85622483733728;
rents(49,3)=95.27064711376576;
rents(49,4)=156.75025456978312;
rents(49,5)=197.8735761888392;
rents(49,6)=200;
rents(49,7)=200;
rents(49,8)=200;
rents(49,9)=200;
bref(50)=5000;
bnorm(50)=18000;
incomemean(50)=19000;
rents(50,1)=73.31175431686323;
rents(50,2)=52.94737811773442;
rents(50,3)=101.27042447649764;
rents(50,4)=175.5972875447118;
rents(50,5)=199.54557721501737;
rents(50,6)=200;
rents(50,7)=200;
rents(50,8)=200;
rents(50,9)=200;
bref(51)=5000;
bnorm(51)=20000;
incomemean(51)=10000;
rents(51,1)=71.75060198732571;
rents(51,2)=53.8129514904946;
rents(51,3)=68.55699795411648;
rents(51,4)=84.26569935882176;
rents(51,5)=99.13336603663434;
rents(51,6)=116.50874605754694;
rents(51,7)=134.5359791351172;
rents(51,8)=149.49739528095114;
rents(51,9)=160.23766796932742;
bref(52)=5000;
bnorm(52)=20000;
incomemean(52)=11000;
rents(52,1)=70.22917838193368;
rents(52,2)=52.671883786450245;
rents(52,3)=69.44796931036868;
rents(52,4)=87.29181074287132;
rents(52,5)=106.17615483818034;
rents(52,6)=126.74714098050055;
rents(52,7)=146.49596336343816;
rents(52,8)=163.31891687429385;
rents(52,9)=174.8582935698954;
bref(53)=5000;
bnorm(53)=20000;
incomemean(53)=12000;
rents(53,1)=69.47298950706127;
rents(53,2)=52.104742130296124;
rents(53,3)=70.43892518192129;
rents(53,4)=91.76203811752936;
rents(53,5)=114.06122593897298;
rents(53,6)=139.2640643354308;
rents(53,7)=162.31428748703112;
rents(53,8)=177.71143050948834;
rents(53,9)=186.76856328358343;
bref(54)=5000;
bnorm(54)=20000;
incomemean(54)=13000;
rents(54,1)=70.71171765578814;
rents(54,2)=53.033788241840554;
rents(54,3)=74.7430250890009;
rents(54,4)=100.76872991155433;
rents(54,5)=129.690523135565;
rents(54,6)=162.09497835922252;
rents(54,7)=187.77624335832195;
rents(54,8)=195.97471918755716;
rents(54,9)=199.53952066199255;
bref(55)=5000;
bnorm(55)=20000;
incomemean(55)=14000;
rents(55,1)=71.15266775333072;
rents(55,2)=53.364500814998344;
rents(55,3)=77.61506546870696;
rents(55,4)=108.1404394508869;
rents(55,5)=143.4461185742819;
rents(55,6)=181.012264994558;
rents(55,7)=197.34900675602225;
rents(55,8)=200;
rents(55,9)=200;
bref(56)=5000;
bnorm(56)=20000;
incomemean(56)=15000;
rents(56,1)=74.21268466678819;
rents(56,2)=55.659513500090746;
rents(56,3)=85.50529742078649;
rents(56,4)=123.4230081725126;
rents(56,5)=165.63096164083132;
rents(56,6)=197.01234725229892;
rents(56,7)=199.90835688693028;
rents(56,8)=200;
rents(56,9)=200;
bref(57)=5000;
bnorm(57)=20000;
incomemean(57)=16000;
rents(57,1)=68.86844302214303;
rents(57,2)=51.65133226660708;
rents(57,3)=82.19305233974173;
rents(57,4)=124.17684476136839;
rents(57,5)=172.83702737282826;
rents(57,6)=199.76497315048653;
rents(57,7)=200;
rents(57,8)=200;
rents(57,9)=200;
bref(58)=5000;
bnorm(58)=20000;
incomemean(58)=17000;
rents(58,1)=73.54642794909869;
rents(58,2)=55.15982096182386;
rents(58,3)=92.69857888306868;
rents(58,4)=143.87789958584733;
rents(58,5)=193.2629685740871;
rents(58,6)=200;
rents(58,7)=200;
rents(58,8)=200;
rents(58,9)=200;
bref(59)=5000;
bnorm(59)=20000;
incomemean(59)=18000;
rents(59,1)=72.0642819634329;
rents(59,2)=54.04821147257487;
rents(59,3)=92.19401280699418;
rents(59,4)=146.1805655804775;
rents(59,5)=195.523723455429;
rents(59,6)=200;
rents(59,7)=200;
rents(59,8)=200;
rents(59,9)=200;
bref(60)=5000;
bnorm(60)=20000;
incomemean(60)=19000;
rents(60,1)=74.35222529504736;
rents(60,2)=55.76416897128511;
rents(60,3)=100.0515708591638;
rents(60,4)=167.39225759187102;
rents(60,5)=199.92580643830775;
rents(60,6)=200;
rents(60,7)=200;
rents(60,8)=200;
rents(60,9)=200;
bref(61)=5000;
bnorm(61)=22000;
incomemean(61)=10000;
rents(61,1)=73.60327807679094;
rents(61,2)=56.875260332065345;
rents(61,3)=70.03010915425368;
rents(61,4)=83.7107011346645;
rents(61,5)=97.92568489735967;
rents(61,6)=113.46115361741109;
rents(61,7)=128.77752720153094;
rents(61,8)=142.79695683150953;
rents(61,9)=153.66795141446548;
bref(62)=5000;
bnorm(62)=22000;
incomemean(62)=11000;
rents(62,1)=70.48577537643882;
rents(62,2)=54.46628097270238;
rents(62,3)=69.43686126932788;
rents(62,4)=85.1664671393171;
rents(62,5)=102.18370397804073;
rents(62,6)=120.91268593157601;
rents(62,7)=140.48927462801393;
rents(62,8)=156.91429204448735;
rents(62,9)=170.12032581511937;
bref(63)=5000;
bnorm(63)=22000;
incomemean(63)=12000;
rents(63,1)=71.456853064142;
rents(63,2)=55.21665918592778;
rents(63,3)=72.53783343854073;
rents(63,4)=92.23965114888648;
rents(63,5)=112.92305050153153;
rents(63,6)=136.0491896479526;
rents(63,7)=157.59850533501208;
rents(63,8)=174.13740789045397;
rents(63,9)=185.5860553914112;
bref(64)=5000;
bnorm(64)=22000;
incomemean(64)=13000;
rents(64,1)=74.98490476859644;
rents(64,2)=57.942880957551594;
rents(64,3)=77.56723297696283;
rents(64,4)=99.70560167196513;
rents(64,5)=124.16539843365726;
rents(64,6)=151.49300772137656;
rents(64,7)=177.50258184114347;
rents(64,8)=191.59248770733674;
rents(64,9)=197.14271259332395;
bref(65)=5000;
bnorm(65)=22000;
incomemean(65)=14000;
rents(65,1)=72.96235555431977;
rents(65,2)=56.380002019247385;
rents(65,3)=79.33361905116647;
rents(65,4)=106.62916690060207;
rents(65,5)=135.74500608584705;
rents(65,6)=166.74091647743865;
rents(65,7)=190.23844090510138;
rents(65,8)=196.37655289063852;
rents(65,9)=199.48314831725924;
bref(66)=5000;
bnorm(66)=22000;
incomemean(66)=15000;
rents(66,1)=71.20414325161107;
rents(66,2)=55.02138342169978;
rents(66,3)=81.1454854937578;
rents(66,4)=113.33826851345076;
rents(66,5)=150.6288778694756;
rents(66,6)=189.40791529429444;
rents(66,7)=199.87047436272547;
rents(66,8)=200;
rents(66,9)=200;
bref(67)=5000;
bnorm(67)=22000;
incomemean(67)=16000;
rents(67,1)=71.77557510698533;
rents(67,2)=55.462944400852095;
rents(67,3)=85.45976069936799;
rents(67,4)=124.66487197537347;
rents(67,5)=169.61188448188153;
rents(67,6)=198.91625571044986;
rents(67,7)=200;
rents(67,8)=200;
rents(67,9)=200;
bref(68)=5000;
bnorm(68)=22000;
incomemean(68)=17000;
rents(68,1)=72.6622739038102;
rents(68,2)=56.1481207438532;
rents(68,3)=89.47134895018708;
rents(68,4)=135.77086197191892;
rents(68,5)=187.23241032386133;
rents(68,6)=199.86146017673968;
rents(68,7)=200;
rents(68,8)=200;
rents(68,9)=200;
bref(69)=5000;
bnorm(69)=22000;
incomemean(69)=18000;
rents(69,1)=70.5708418101492;
rents(69,2)=54.53201412602457;
rents(69,3)=89.97878609752904;
rents(69,4)=139.99341317556062;
rents(69,5)=194.06532109001472;
rents(69,6)=200;
rents(69,7)=200;
rents(69,8)=200;
rents(69,9)=200;
bref(70)=5000;
bnorm(70)=22000;
incomemean(70)=19000;
rents(70,1)=73.4842110139753;
rents(70,2)=56.78325396534506;
rents(70,3)=98.03295224068631;
rents(70,4)=158.35800373686303;
rents(70,5)=199.7138243360255;
rents(70,6)=200;
rents(70,7)=200;
rents(70,8)=200;
rents(70,9)=200;
bref(71)=5000;
bnorm(71)=24000;
incomemean(71)=10000;
rents(71,1)=72.96876705070241;
rents(71,2)=57.766940581805954;
rents(71,3)=69.55230794317433;
rents(71,4)=81.63121918471342;
rents(71,5)=93.22984967067823;
rents(71,6)=105.6284311140118;
rents(71,7)=119.64279285450407;
rents(71,8)=131.72002048015332;
rents(71,9)=142.76153396362872;
bref(72)=5000;
bnorm(72)=24000;
incomemean(72)=11000;
rents(72,1)=72.99650384092864;
rents(72,2)=57.78889887406907;
rents(72,3)=72.45537646465787;
rents(72,4)=87.78361060176707;
rents(72,5)=103.3539543830577;
rents(72,6)=121.11214977690534;
rents(72,7)=138.25713728472232;
rents(72,8)=152.62040005078916;
rents(72,9)=164.32360708212087;
bref(73)=5000;
bnorm(73)=24000;
incomemean(73)=12000;
rents(73,1)=71.36569846682791;
rents(73,2)=56.49784461957246;
rents(73,3)=72.79497346199679;
rents(73,4)=90.54194304900143;
rents(73,5)=109.1078768814224;
rents(73,6)=130.28338026339156;
rents(73,7)=149.2550791722884;
rents(73,8)=166.6439988855737;
rents(73,9)=179.71013844029977;
bref(74)=5000;
bnorm(74)=24000;
incomemean(74)=13000;
rents(74,1)=71.6850385987241;
rents(74,2)=56.75065555732338;
rents(74,3)=75.61442929342498;
rents(74,4)=97.44316973085304;
rents(74,5)=120.98454350723084;
rents(74,6)=146.9483921761875;
rents(74,7)=171.133717522437;
rents(74,8)=187.69404407532446;
rents(74,9)=196.09728742707642;
bref(75)=5000;
bnorm(75)=24000;
incomemean(75)=14000;
rents(75,1)=72.33190727958947;
rents(75,2)=57.26275992967505;
rents(75,3)=78.51365215997664;
rents(75,4)=103.21118085775397;
rents(75,5)=131.32908154589484;
rents(75,6)=161.73231031032347;
rents(75,7)=186.94731769120625;
rents(75,8)=197.66887772427398;
rents(75,9)=200;
bref(76)=5000;
bnorm(76)=24000;
incomemean(76)=15000;
rents(76,1)=70.20218711139542;
rents(76,2)=55.576731463188096;
rents(76,3)=79.5352774768903;
rents(76,4)=108.83553741666952;
rents(76,5)=141.97313651955497;
rents(76,6)=176.18834176291446;
rents(76,7)=195.90995973375553;
rents(76,8)=199.83561133526916;
rents(76,9)=200;
bref(77)=5000;
bnorm(77)=24000;
incomemean(77)=16000;
rents(77,1)=75.07945966723373;
rents(77,2)=59.43790556989345;
rents(77,3)=88.54721728611743;
rents(77,4)=125.26189928393374;
rents(77,5)=165.49386474676172;
rents(77,6)=194.73991155322517;
rents(77,7)=200;
rents(77,8)=200;
rents(77,9)=200;
bref(78)=5000;
bnorm(78)=24000;
incomemean(78)=17000;
rents(78,1)=72.03043896461725;
rents(78,2)=57.02409751365533;
rents(78,3)=87.82883262306244;
rents(78,4)=129.83922930388573;
rents(78,5)=176.2668229334028;
rents(78,6)=199.8514162497918;
rents(78,7)=200;
rents(78,8)=200;
rents(78,9)=200;
bref(79)=5000;
bnorm(79)=24000;
incomemean(79)=18000;
rents(79,1)=73.14626628843979;
rents(79,2)=57.90746081168119;
rents(79,3)=93.05923039352913;
rents(79,4)=141.09201273722982;
rents(79,5)=192.29855045485158;
rents(79,6)=199.90944046045965;
rents(79,7)=200;
rents(79,8)=200;
rents(79,9)=200;
bref(80)=5000;
bnorm(80)=24000;
incomemean(80)=19000;
rents(80,1)=74.8017955720289;
rents(80,2)=59.21808816118976;
rents(80,3)=98.68308744469265;
rents(80,4)=154.02078533683402;
rents(80,5)=199.06243355323429;
rents(80,6)=200;
rents(80,7)=200;
rents(80,8)=200;
rents(80,9)=200;
bref(81)=5000;
bnorm(81)=26000;
incomemean(81)=10000;
rents(81,1)=71.07939514611692;
rents(81,2)=57.41028069494046;
rents(81,3)=68.8185112659277;
rents(81,4)=80.63253064437258;
rents(81,5)=92.42318113832992;
rents(81,6)=105.63913294721934;
rents(81,7)=118.84832316007854;
rents(81,8)=130.2698930170597;
rents(81,9)=142.1559705008025;
bref(82)=5000;
bnorm(82)=26000;
incomemean(82)=11000;
rents(82,1)=74.92306341350334;
rents(82,2)=60.51478198782907;
rents(82,3)=73.76160316020226;
rents(82,4)=87.13944361327746;
rents(82,5)=101.15072694165208;
rents(82,6)=116.10702187075299;
rents(82,7)=132.46094912006558;
rents(82,8)=146.51636240560313;
rents(82,9)=158.1990604050801;
bref(83)=5000;
bnorm(83)=26000;
incomemean(83)=12000;
rents(83,1)=69.80533153724495;
rents(83,2)=56.38122931854407;
rents(83,3)=72.00415619784482;
rents(83,4)=88.8681624396719;
rents(83,5)=107.25792406745069;
rents(83,6)=126.98170406917666;
rents(83,7)=147.22845755690358;
rents(83,8)=165.05638035054375;
rents(83,9)=177.6445005780225;
bref(84)=5000;
bnorm(84)=26000;
incomemean(84)=13000;
rents(84,1)=74.45730488718232;
rents(84,2)=60.138592408877635;
rents(84,3)=79.13650122795133;
rents(84,4)=100.81610592980468;
rents(84,5)=124.87550852583534;
rents(84,6)=150.8489981206345;
rents(84,7)=176.6783310688651;
rents(84,8)=193.23655239287373;
rents(84,9)=199.1561675224991;
bref(85)=5000;
bnorm(85)=26000;
incomemean(85)=14000;
rents(85,1)=71.15620070417732;
rents(85,2)=57.4723159533742;
rents(85,3)=77.17253543778418;
rents(85,4)=100.1526777069731;
rents(85,5)=126.91224396933514;
rents(85,6)=155.85107021026982;
rents(85,7)=184.64275970545202;
rents(85,8)=196.6915234249037;
rents(85,9)=199.42973564079045;
bref(86)=5000;
bnorm(86)=26000;
incomemean(86)=15000;
rents(86,1)=74.73494391006922;
rents(86,2)=60.36283931197928;
rents(86,3)=83.30521528653854;
rents(86,4)=110.53978413688519;
rents(86,5)=141.00894550621118;
rents(86,6)=174.92140122688448;
rents(86,7)=193.98199930067653;
rents(86,8)=198.04941736781765;
rents(86,9)=200;
bref(87)=5000;
bnorm(87)=26000;
incomemean(87)=16000;
rents(87,1)=74.2421266718498;
rents(87,2)=59.96479461957097;
rents(87,3)=86.6230578108122;
rents(87,4)=119.64844809387685;
rents(87,5)=157.8979988916784;
rents(87,6)=190.34480813938976;
rents(87,7)=199.7972240556648;
rents(87,8)=200;
rents(87,9)=200;
bref(88)=5000;
bnorm(88)=26000;
incomemean(88)=17000;
rents(88,1)=73.5257424756926;
rents(88,2)=59.38617661498223;
rents(88,3)=88.83292537553753;
rents(88,4)=126.98235166184449;
rents(88,5)=171.51802075400226;
rents(88,6)=197.8844584955813;
rents(88,7)=200;
rents(88,8)=200;
rents(88,9)=200;
bref(89)=5000;
bnorm(89)=26000;
incomemean(89)=18000;
rents(89,1)=73.42485923506766;
rents(89,2)=59.30469399755462;
rents(89,3)=91.75053793458491;
rents(89,4)=135.36188267551296;
rents(89,5)=184.2989250338773;
rents(89,6)=199.2887551285656;
rents(89,7)=200;
rents(89,8)=200;
rents(89,9)=200;
bref(90)=5000;
bnorm(90)=26000;
incomemean(90)=19000;
rents(90,1)=72.62824161813953;
rents(90,2)=58.66127207619005;
rents(90,3)=94.693933763665;
rents(90,4)=144.3620656941973;
rents(90,5)=194.0434031076421;
rents(90,6)=200;
rents(90,7)=200;
rents(90,8)=200;
rents(90,9)=200;
bref(91)=5000;
bnorm(91)=28000;
incomemean(91)=10000;
rents(91,1)=70.21285966581908;
rents(91,2)=57.67484901120868;
rents(91,3)=68.03682347404283;
rents(91,4)=78.56878419318616;
rents(91,5)=88.61203924159739;
rents(91,6)=100.3140591412066;
rents(91,7)=112.72327192570819;
rents(91,8)=124.58106195443847;
rents(91,9)=136.47079693491446;
bref(92)=5000;
bnorm(92)=28000;
incomemean(92)=11000;
rents(92,1)=75.88662244884254;
rents(92,2)=62.335439868691964;
rents(92,3)=74.3549540601781;
rents(92,4)=87.21077321916243;
rents(92,5)=100.6714721003942;
rents(92,6)=114.9520532368725;
rents(92,7)=129.58984501062207;
rents(92,8)=142.80775269716753;
rents(92,9)=155.01560710506672;
bref(93)=5000;
bnorm(93)=28000;
incomemean(93)=12000;
rents(93,1)=74.82566908432307;
rents(93,2)=61.46394246212265;
rents(93,3)=75.5861701898825;
rents(93,4)=91.44490600596482;
rents(93,5)=107.1044635584048;
rents(93,6)=124.64512179659324;
rents(93,7)=142.2596225479419;
rents(93,8)=156.80527035892385;
rents(93,9)=168.09226237817595;
bref(94)=5000;
bnorm(94)=28000;
incomemean(94)=13000;
rents(94,1)=74.48051553078277;
rents(94,2)=61.1804234717144;
rents(94,3)=77.76606199361926;
rents(94,4)=95.52727739033627;
rents(94,5)=114.52123359092347;
rents(94,6)=135.4080810277809;
rents(94,7)=157.13727135089664;
rents(94,8)=174.24539127108022;
rents(94,9)=187.69648426432093;
bref(95)=5000;
bnorm(95)=28000;
incomemean(95)=14000;
rents(95,1)=75.95389576889671;
rents(95,2)=62.390700095879446;
rents(95,3)=82.18962898096262;
rents(95,4)=105.24659388584325;
rents(95,5)=129.2375755520131;
rents(95,6)=155.9761895891638;
rents(95,7)=181.3668195656788;
rents(95,8)=194.23085801127883;
rents(95,9)=198.5209200625642;
bref(96)=5000;
bnorm(96)=28000;
incomemean(96)=15000;
rents(96,1)=69.63576818311795;
rents(96,2)=57.200809578989535;
rents(96,3)=77.79653618301688;
rents(96,4)=102.37922126623269;
rents(96,5)=129.26040397297223;
rents(96,6)=160.89787738067852;
rents(96,7)=189.01923135947325;
rents(96,8)=197.91650170055522;
rents(96,9)=200;
bref(97)=5000;
bnorm(97)=28000;
incomemean(97)=16000;
rents(97,1)=71.30506897488644;
rents(97,2)=58.57202094365674;
rents(97,3)=83.32540516424515;
rents(97,4)=114.38107021921917;
rents(97,5)=149.65490861117766;
rents(97,6)=187.10650063824122;
rents(97,7)=198.5273902371748;
rents(97,8)=200;
rents(97,9)=200;
bref(98)=5000;
bnorm(98)=28000;
incomemean(98)=17000;
rents(98,1)=71.93885728484359;
rents(98,2)=59.09263276969246;
rents(98,3)=86.78757289924815;
rents(98,4)=121.72042248479178;
rents(98,5)=161.99580695784024;
rents(98,6)=196.40587187558083;
rents(98,7)=200;
rents(98,8)=200;
rents(98,9)=200;
bref(99)=5000;
bnorm(99)=28000;
incomemean(99)=18000;
rents(99,1)=73.43665532664079;
rents(99,2)=60.32296687545529;
rents(99,3)=91.39789863910693;
rents(99,4)=132.2649139475575;
rents(99,5)=177.68596077368161;
rents(99,6)=199.92958603758362;
rents(99,7)=200;
rents(99,8)=200;
rents(99,9)=200;
bref(100)=5000;
bnorm(100)=28000;
incomemean(100)=19000;
rents(100,1)=71.73271937502837;
rents(100,2)=58.92330520091628;
rents(100,3)=91.26133396017723;
rents(100,4)=135.50893421190608;
rents(100,5)=186.5156410589166;
rents(100,6)=199.74668308574786;
rents(100,7)=200;
rents(100,8)=200;
rents(100,9)=200;
bref(101)=6000;
bnorm(101)=10000;
incomemean(101)=10000;
rents(101,1)=73.41955384973086;
rents(101,2)=29.367821539892343;
rents(101,3)=45.97056658438073;
rents(101,4)=67.35222538754391;
rents(101,5)=89.1859752462799;
rents(101,6)=111.28436271596976;
rents(101,7)=132.63239524446618;
rents(101,8)=142.52029604732505;
rents(101,9)=145.5383391917154;
bref(102)=6000;
bnorm(102)=10000;
incomemean(102)=11000;
rents(102,1)=73.42506715593204;
rents(102,2)=29.370026862372672;
rents(102,3)=48.39830261569822;
rents(102,4)=74.07052631337419;
rents(102,5)=100.91546585955189;
rents(102,6)=131.53827760318575;
rents(102,7)=155.98273876222433;
rents(102,8)=161.18624890280168;
rents(102,9)=159.78678859214136;
bref(103)=6000;
bnorm(103)=10000;
incomemean(103)=12000;
rents(103,1)=71.09218064934745;
rents(103,2)=28.43687225973892;
rents(103,3)=50.057367210320976;
rents(103,4)=80.82045182423091;
rents(103,5)=115.82119281202728;
rents(103,6)=152.89985039580682;
rents(103,7)=176.36364218986571;
rents(103,8)=180.2815240170801;
rents(103,9)=182.73274483039953;
bref(104)=6000;
bnorm(104)=10000;
incomemean(104)=13000;
rents(104,1)=71.51101446156851;
rents(104,2)=28.6044057846274;
rents(104,3)=52.3609564858828;
rents(104,4)=87.8665737885253;
rents(104,5)=130.58228131194653;
rents(104,6)=176.23542145182822;
rents(104,7)=192.81606295865762;
rents(104,8)=197.59862901559742;
rents(104,9)=199.92814501594768;
bref(105)=6000;
bnorm(105)=10000;
incomemean(105)=14000;
rents(105,1)=70.8857191892996;
rents(105,2)=28.354287675719984;
rents(105,3)=55.37161866840132;
rents(105,4)=100.13828332383206;
rents(105,5)=157.52053256119058;
rents(105,6)=197.35766375942273;
rents(105,7)=200;
rents(105,8)=200;
rents(105,9)=200;
bref(106)=6000;
bnorm(106)=10000;
incomemean(106)=15000;
rents(106,1)=70.7694691790386;
rents(106,2)=28.30778767161535;
rents(106,3)=59.603455808797534;
rents(106,4)=113.74475201565384;
rents(106,5)=182.31728633606016;
rents(106,6)=199.9541649645649;
rents(106,7)=200;
rents(106,8)=200;
rents(106,9)=200;
bref(107)=6000;
bnorm(107)=10000;
incomemean(107)=16000;
rents(107,1)=71.98268743317759;
rents(107,2)=28.793074973271143;
rents(107,3)=64.61843596619146;
rents(107,4)=131.61086364270108;
rents(107,5)=198.7267358386111;
rents(107,6)=200;
rents(107,7)=200;
rents(107,8)=200;
rents(107,9)=200;
bref(108)=6000;
bnorm(108)=10000;
incomemean(108)=17000;
rents(108,1)=72.82376702348192;
rents(108,2)=29.129506809392698;
rents(108,3)=69.52057282865634;
rents(108,4)=148.55977771964226;
rents(108,5)=200;
rents(108,6)=200;
rents(108,7)=200;
rents(108,8)=200;
rents(108,9)=200;
bref(109)=6000;
bnorm(109)=10000;
incomemean(109)=18000;
rents(109,1)=75.2012948413986;
rents(109,2)=30.08051793655953;
rents(109,3)=75.68340947425587;
rents(109,4)=169.57954708889207;
rents(109,5)=200;
rents(109,6)=200;
rents(109,7)=200;
rents(109,8)=200;
rents(109,9)=200;
bref(110)=6000;
bnorm(110)=10000;
incomemean(110)=19000;
rents(110,1)=69.83557107571205;
rents(110,2)=27.93422843028468;
rents(110,3)=75.51064871761405;
rents(110,4)=182.0278962511115;
rents(110,5)=200;
rents(110,6)=200;
rents(110,7)=200;
rents(110,8)=200;
rents(110,9)=200;
bref(111)=6000;
bnorm(111)=12000;
incomemean(111)=10000;
rents(111,1)=71.0191594195532;
rents(111,2)=35.509579709776574;
rents(111,3)=52.329885964924756;
rents(111,4)=71.83068086526053;
rents(111,5)=91.93393338183702;
rents(111,6)=112.30105496055111;
rents(111,7)=132.36062237110235;
rents(111,8)=143.39105904363515;
rents(111,9)=148.84208642700068;
bref(112)=6000;
bnorm(112)=12000;
incomemean(112)=11000;
rents(112,1)=73.0636347611249;
rents(112,2)=36.531817380562444;
rents(112,3)=55.718150326631445;
rents(112,4)=78.75495329605627;
rents(112,5)=102.70812404730317;
rents(112,6)=128.55184073326015;
rents(112,7)=152.20679309069303;
rents(112,8)=160.94363739761744;
rents(112,9)=164.8774472809891;
bref(113)=6000;
bnorm(113)=12000;
incomemean(113)=12000;
rents(113,1)=71.78286938525926;
rents(113,2)=35.891434692629616;
rents(113,3)=56.54090897815499;
rents(113,4)=82.41601915712448;
rents(113,5)=111.46474377393511;
rents(113,6)=143.44482163652825;
rents(113,7)=168.77639065048444;
rents(113,8)=175.76393228423393;
rents(113,9)=177.56866850511477;
bref(114)=6000;
bnorm(114)=12000;
incomemean(114)=13000;
rents(114,1)=71.73019801673068;
rents(114,2)=35.86509900836534;
rents(114,3)=59.689739485831545;
rents(114,4)=92.26034925679116;
rents(114,5)=129.7353698671702;
rents(114,6)=168.03472589106957;
rents(114,7)=191.14679134364;
rents(114,8)=195.31660021899168;
rents(114,9)=197.4466783137593;
bref(115)=6000;
bnorm(115)=12000;
incomemean(115)=14000;
rents(115,1)=73.3012336024048;
rents(115,2)=36.650616801202396;
rents(115,3)=64.80387590792164;
rents(115,4)=106.00019166005482;
rents(115,5)=153.92929021096316;
rents(115,6)=194.13590588112916;
rents(115,7)=199.87797597509015;
rents(115,8)=200;
rents(115,9)=200;
bref(116)=6000;
bnorm(116)=12000;
incomemean(116)=15000;
rents(116,1)=71.00113772113276;
rents(116,2)=35.50056886056636;
rents(116,3)=67.71159352159975;
rents(116,4)=118.45273824957472;
rents(116,5)=179.55393063868016;
rents(116,6)=199.72986109051405;
rents(116,7)=200;
rents(116,8)=200;
rents(116,9)=200;
bref(117)=6000;
bnorm(117)=12000;
incomemean(117)=16000;
rents(117,1)=74.77713708683353;
rents(117,2)=37.38856854341676;
rents(117,3)=74.02289091366929;
rents(117,4)=132.70683646310798;
rents(117,5)=196.97063525730974;
rents(117,6)=199.97275234070838;
rents(117,7)=200;
rents(117,8)=200;
rents(117,9)=200;
bref(118)=6000;
bnorm(118)=12000;
incomemean(118)=17000;
rents(118,1)=73.63079821002077;
rents(118,2)=36.8153991050104;
rents(118,3)=76.54741871107821;
rents(118,4)=145.25479635423153;
rents(118,5)=198.9930814116829;
rents(118,6)=200;
rents(118,7)=200;
rents(118,8)=200;
rents(118,9)=200;
bref(119)=6000;
bnorm(119)=12000;
incomemean(119)=18000;
rents(119,1)=74.65174178625196;
rents(119,2)=37.32587089312596;
rents(119,3)=83.72742717550365;
rents(119,4)=168.79532048569402;
rents(119,5)=200;
rents(119,6)=200;
rents(119,7)=200;
rents(119,8)=200;
rents(119,9)=200;
bref(120)=6000;
bnorm(120)=12000;
incomemean(120)=19000;
rents(120,1)=76.89958886132699;
rents(120,2)=38.44979443066353;
rents(120,3)=91.13350191373586;
rents(120,4)=189.30241957841102;
rents(120,5)=200;
rents(120,6)=200;
rents(120,7)=200;
rents(120,8)=200;
rents(120,9)=200;
bref(121)=6000;
bnorm(121)=14000;
incomemean(121)=10000;
rents(121,1)=72.25258762287591;
rents(121,2)=41.28719292735759;
rents(121,3)=55.8035764823124;
rents(121,4)=71.25829483393511;
rents(121,5)=85.89178536466846;
rents(121,6)=99.89919192788939;
rents(121,7)=115.49831183673882;
rents(121,8)=126.33231657222471;
rents(121,9)=137.29189238997805;
bref(122)=6000;
bnorm(122)=14000;
incomemean(122)=11000;
rents(122,1)=75.23548019370273;
rents(122,2)=42.99170296783001;
rents(122,3)=61.29259775697624;
rents(122,4)=82.13419492091745;
rents(122,5)=103.23840670578339;
rents(122,6)=125.103592391557;
rents(122,7)=144.09203367830472;
rents(122,8)=154.42093508824712;
rents(122,9)=159.99985398583465;
bref(123)=6000;
bnorm(123)=14000;
incomemean(123)=12000;
rents(123,1)=73.51818532649145;
rents(123,2)=42.01039161513787;
rents(123,3)=60.81627480018436;
rents(123,4)=84.12117412995882;
rents(123,5)=107.58131950271574;
rents(123,6)=133.20753143409775;
rents(123,7)=157.68074027900647;
rents(123,8)=170.14577025535877;
rents(123,9)=173.42652159112617;
bref(124)=6000;
bnorm(124)=14000;
incomemean(124)=13000;
rents(124,1)=73.25406159226917;
rents(124,2)=41.859463767010894;
rents(124,3)=65.1114175752601;
rents(124,4)=94.04299502262887;
rents(124,5)=127.37006596800317;
rents(124,6)=160.2676700353897;
rents(124,7)=184.8389859314238;
rents(124,8)=191.5555649095352;
rents(124,9)=196.16078556284148;
bref(125)=6000;
bnorm(125)=14000;
incomemean(125)=14000;
rents(125,1)=71.43973912019733;
rents(125,2)=40.82270806868429;
rents(125,3)=65.7442953361221;
rents(125,4)=98.73896626913312;
rents(125,5)=137.64572921161934;
rents(125,6)=177.8413540128036;
rents(125,7)=197.2879397841304;
rents(125,8)=199.598126244561;
rents(125,9)=199.85782925616203;
bref(126)=6000;
bnorm(126)=14000;
incomemean(126)=15000;
rents(126,1)=72.59443639161519;
rents(126,2)=41.48253508092313;
rents(126,3)=71.26473308956099;
rents(126,4)=113.11996968376037;
rents(126,5)=162.7357734337174;
rents(126,6)=196.115003685438;
rents(126,7)=199.76084698611018;
rents(126,8)=200;
rents(126,9)=200;
bref(127)=6000;
bnorm(127)=14000;
incomemean(127)=16000;
rents(127,1)=70.27208202641604;
rents(127,2)=40.15547544366636;
rents(127,3)=73.59248607319495;
rents(127,4)=123.64047261568442;
rents(127,5)=181.79417090800314;
rents(127,6)=200;
rents(127,7)=200;
rents(127,8)=200;
rents(127,9)=200;
bref(128)=6000;
bnorm(128)=14000;
incomemean(128)=17000;
rents(128,1)=71.70253947479252;
rents(128,2)=40.97287969988145;
rents(128,3)=79.2262601370536;
rents(128,4)=139.75677074865513;
rents(128,5)=197.36985190790207;
rents(128,6)=200;
rents(128,7)=200;
rents(128,8)=200;
rents(128,9)=200;
bref(129)=6000;
bnorm(129)=14000;
incomemean(129)=18000;
rents(129,1)=72.14675284198437;
rents(129,2)=41.226715909705305;
rents(129,3)=83.41257039769575;
rents(129,4)=153.22761817463538;
rents(129,5)=199.2772558174097;
rents(129,6)=200;
rents(129,7)=200;
rents(129,8)=200;
rents(129,9)=200;
bref(130)=6000;
bnorm(130)=14000;
incomemean(130)=19000;
rents(130,1)=72.76771655773086;
rents(130,2)=41.581552318703416;
rents(130,3)=88.6924930525034;
rents(130,4)=171.4338075746891;
rents(130,5)=200;
rents(130,6)=200;
rents(130,7)=200;
rents(130,8)=200;
rents(130,9)=200;
bref(131)=6000;
bnorm(131)=16000;
incomemean(131)=10000;
rents(131,1)=69.04524984806001;
rents(131,2)=43.15328115503745;
rents(131,3)=56.471344022934026;
rents(131,4)=70.66317881290811;
rents(131,5)=84.51482195675966;
rents(131,6)=98.69433459125592;
rents(131,7)=114.41032417215715;
rents(131,8)=124.78271470117825;
rents(131,9)=135.6072726285104;
bref(132)=6000;
bnorm(132)=16000;
incomemean(132)=11000;
rents(132,1)=72.541043991371;
rents(132,2)=45.33815249460701;
rents(132,3)=61.72375870379398;
rents(132,4)=79.4207458760415;
rents(132,5)=97.07291877175199;
rents(132,6)=115.27329550103335;
rents(132,7)=134.04082563059927;
rents(132,8)=147.50215278749263;
rents(132,9)=156.51355704382982;
bref(133)=6000;
bnorm(133)=16000;
incomemean(133)=12000;
rents(133,1)=70.97861685691579;
rents(133,2)=44.36163553557239;
rents(133,3)=62.312967924015084;
rents(133,4)=83.07448039529221;
rents(133,5)=103.84621368503599;
rents(133,6)=128.1118562943427;
rents(133,7)=151.50697892852284;
rents(133,8)=165.16619879752858;
rents(133,9)=172.42956033049506;
bref(134)=6000;
bnorm(134)=16000;
incomemean(134)=13000;
rents(134,1)=72.40207274445517;
rents(134,2)=45.25129546528417;
rents(134,3)=66.64954047233536;
rents(134,4)=92.31289112596009;
rents(134,5)=120.67279356485717;
rents(134,6)=150.9547501959348;
rents(134,7)=175.91848311337517;
rents(134,8)=186.8020768494777;
rents(134,9)=193.37935390840713;
bref(135)=6000;
bnorm(135)=16000;
incomemean(135)=14000;
rents(135,1)=70.8686907521145;
rents(135,2)=44.292931720071664;
rents(135,3)=68.34454189181123;
rents(135,4)=97.77627178056956;
rents(135,5)=131.30831963698986;
rents(135,6)=167.17242787486427;
rents(135,7)=191.8749644446993;
rents(135,8)=199.43178631298838;
rents(135,9)=199.94880932051714;
bref(136)=6000;
bnorm(136)=16000;
incomemean(136)=15000;
rents(136,1)=72.44634621454287;
rents(136,2)=45.27896638408941;
rents(136,3)=73.49352322868526;
rents(136,4)=111.6469627104662;
rents(136,5)=156.23449584144112;
rents(136,6)=192.6873028411712;
rents(136,7)=200;
rents(136,8)=200;
rents(136,9)=200;
bref(137)=6000;
bnorm(137)=16000;
incomemean(137)=16000;
rents(137,1)=73.97714964456063;
rents(137,2)=46.235718527850224;
rents(137,3)=79.32839121401699;
rents(137,4)=126.67308418989414;
rents(137,5)=182.3684512077953;
rents(137,6)=199.75830735987577;
rents(137,7)=200;
rents(137,8)=200;
rents(137,9)=200;
bref(138)=6000;
bnorm(138)=16000;
incomemean(138)=17000;
rents(138,1)=74.32022471744622;
rents(138,2)=46.4501404484039;
rents(138,3)=83.9813543888224;
rents(138,4)=139.5875486974788;
rents(138,5)=193.88068783723654;
rents(138,6)=200;
rents(138,7)=200;
rents(138,8)=200;
rents(138,9)=200;
bref(139)=6000;
bnorm(139)=16000;
incomemean(139)=18000;
rents(139,1)=73.30472714575681;
rents(139,2)=45.815454466098174;
rents(139,3)=87.07449208133514;
rents(139,4)=150.93417373392785;
rents(139,5)=199.78961918604634;
rents(139,6)=200;
rents(139,7)=200;
rents(139,8)=200;
rents(139,9)=200;
bref(140)=6000;
bnorm(140)=16000;
incomemean(140)=19000;
rents(140,1)=73.75931734297666;
rents(140,2)=46.09957333936059;
rents(140,3)=92.76109270350197;
rents(140,4)=170.13551659809136;
rents(140,5)=200;
rents(140,6)=200;
rents(140,7)=200;
rents(140,8)=200;
rents(140,9)=200;
bref(141)=6000;
bnorm(141)=18000;
incomemean(141)=10000;
rents(141,1)=72.77186633601413;
rents(141,2)=48.51457755734309;
rents(141,3)=60.64579431596983;
rents(141,4)=73.59155653270483;
rents(141,5)=85.36081563585498;
rents(141,6)=98.67592354029922;
rents(141,7)=110.45807913230564;
rents(141,8)=121.45914735079891;
rents(141,9)=132.03035793471807;
bref(142)=6000;
bnorm(142)=18000;
incomemean(142)=11000;
rents(142,1)=72.63683936364772;
rents(142,2)=48.42455957576501;
rents(142,3)=62.65712859626562;
rents(142,4)=78.00092484032862;
rents(142,5)=93.2841183667307;
rents(142,6)=108.99929733007139;
rents(142,7)=125.05011567197181;
rents(142,8)=138.36618526548247;
rents(142,9)=149.03490157006584;
bref(143)=6000;
bnorm(143)=18000;
incomemean(143)=12000;
rents(143,1)=73.08974138093753;
rents(143,2)=48.72649425395831;
rents(143,3)=65.61967421977376;
rents(143,4)=84.09554368360753;
rents(143,5)=102.83418083459703;
rents(143,6)=123.41276901280749;
rents(143,7)=142.21511411228352;
rents(143,8)=156.30544710375173;
rents(143,9)=166.5674080358219;
bref(144)=6000;
bnorm(144)=18000;
incomemean(144)=13000;
rents(144,1)=72.75813314391316;
rents(144,2)=48.50542209594241;
rents(144,3)=68.69023495912116;
rents(144,4)=91.82491077411119;
rents(144,5)=115.94710515411174;
rents(144,6)=144.0058471331559;
rents(144,7)=170.55526050668726;
rents(144,8)=187.9180767913368;
rents(144,9)=194.1904443318378;
bref(145)=6000;
bnorm(145)=18000;
incomemean(145)=14000;
rents(145,1)=74.21166718839935;
rents(145,2)=49.47444479226622;
rents(145,3)=72.63174719756405;
rents(145,4)=101.01618368066273;
rents(145,5)=131.987885266163;
rents(145,6)=164.9106238232954;
rents(145,7)=188.44903302965992;
rents(145,8)=196.37584068055273;
rents(145,9)=198.92551144155064;
bref(146)=6000;
bnorm(146)=18000;
incomemean(146)=15000;
rents(146,1)=74.2013997915884;
rents(146,2)=49.46759986105906;
rents(146,3)=75.12360168961101;
rents(146,4)=107.92180724355278;
rents(146,5)=145.7481935377225;
rents(146,6)=182.56606356486728;
rents(146,7)=198.96333553517348;
rents(146,8)=200;
rents(146,9)=200;
bref(147)=6000;
bnorm(147)=18000;
incomemean(147)=16000;
rents(147,1)=71.70851335175117;
rents(147,2)=47.805675567834285;
rents(147,3)=77.14852402907907;
rents(147,4)=117.85450631571227;
rents(147,5)=165.55605145958893;
rents(147,6)=197.93725868274186;
rents(147,7)=200;
rents(147,8)=200;
rents(147,9)=200;
bref(148)=6000;
bnorm(148)=18000;
incomemean(148)=17000;
rents(148,1)=71.91529133845742;
rents(148,2)=47.94352755897147;
rents(148,3)=81.35473825167756;
rents(148,4)=128.83760323528372;
rents(148,5)=184.86179761706688;
rents(148,6)=200;
rents(148,7)=200;
rents(148,8)=200;
rents(148,9)=200;
bref(149)=6000;
bnorm(149)=18000;
incomemean(149)=18000;
rents(149,1)=72.07517775483876;
rents(149,2)=48.05011850322586;
rents(149,3)=86.4967071376935;
rents(149,4)=143.08129762038658;
rents(149,5)=198.51855203892072;
rents(149,6)=200;
rents(149,7)=200;
rents(149,8)=200;
rents(149,9)=200;
bref(150)=6000;
bnorm(150)=18000;
incomemean(150)=19000;
rents(150,1)=70.98539648152584;
rents(150,2)=47.32359765435054;
rents(150,3)=87.72840863742606;
rents(150,4)=150.97561182670188;
rents(150,5)=198.68432023867425;
rents(150,6)=200;
rents(150,7)=200;
rents(150,8)=200;
rents(150,9)=200;
bref(151)=6000;
bnorm(151)=20000;
incomemean(151)=10000;
rents(151,1)=68.32309632327025;
rents(151,2)=47.82616742628953;
rents(151,3)=59.28835155041218;
rents(151,4)=71.33116537172445;
rents(151,5)=82.94285122545998;
rents(151,6)=94.91012671164913;
rents(151,7)=106.90482749112324;
rents(151,8)=118.4793990709487;
rents(151,9)=129.19810160635726;
bref(152)=6000;
bnorm(152)=20000;
incomemean(152)=11000;
rents(152,1)=73.94457779186774;
rents(152,2)=51.76120445430727;
rents(152,3)=65.76879289012939;
rents(152,4)=80.33746287754289;
rents(152,5)=95.58311811304245;
rents(152,6)=111.07615691577307;
rents(152,7)=126.65664103273161;
rents(152,8)=138.58924820944586;
rents(152,9)=147.39220940835833;
bref(153)=6000;
bnorm(153)=20000;
incomemean(153)=12000;
rents(153,1)=74.20612356173675;
rents(153,2)=51.944286493215856;
rents(153,3)=68.39251879845061;
rents(153,4)=86.45500402166316;
rents(153,5)=104.27686095753894;
rents(153,6)=124.56498955389463;
rents(153,7)=143.907634779678;
rents(153,8)=158.85676072975536;
rents(153,9)=167.78246759198095;
bref(154)=6000;
bnorm(154)=20000;
incomemean(154)=13000;
rents(154,1)=73.90324708422243;
rents(154,2)=51.732272958955804;
rents(154,3)=70.13472619685865;
rents(154,4)=90.26710650896294;
rents(154,5)=112.02968447405459;
rents(154,6)=133.73327771054394;
rents(154,7)=154.24681105197004;
rents(154,8)=170.91981354286506;
rents(154,9)=180.43116042558378;
bref(155)=6000;
bnorm(155)=20000;
incomemean(155)=14000;
rents(155,1)=71.96039777108815;
rents(155,2)=50.37227843976142;
rents(155,3)=71.14044033806815;
rents(155,4)=96.06483422721605;
rents(155,5)=123.59040312542697;
rents(155,6)=153.83009760330347;
rents(155,7)=182.35124486578536;
rents(155,8)=195.6719021948481;
rents(155,9)=199.0724444049658;
bref(156)=6000;
bnorm(156)=20000;
incomemean(156)=15000;
rents(156,1)=70.72688453461573;
rents(156,2)=49.50881917423116;
rents(156,3)=74.38431856705365;
rents(156,4)=104.83374755917296;
rents(156,5)=140.3080109172982;
rents(156,6)=179.83233933058634;
rents(156,7)=199.4853057688355;
rents(156,8)=199.99710577344993;
rents(156,9)=200;
bref(157)=6000;
bnorm(157)=20000;
incomemean(157)=16000;
rents(157,1)=73.41836694871999;
rents(157,2)=51.39285686410405;
rents(157,3)=79.56400629924038;
rents(157,4)=115.98580846382764;
rents(157,5)=158.6042456507118;
rents(157,6)=192.10625202552978;
rents(157,7)=200;
rents(157,8)=200;
rents(157,9)=200;
bref(158)=6000;
bnorm(158)=20000;
incomemean(158)=17000;
rents(158,1)=68.10634518924073;
rents(158,2)=47.67444163246859;
rents(158,3)=77.87862144401436;
rents(158,4)=119.45951430369713;
rents(158,5)=169.50194019508564;
rents(158,6)=199.61933990414389;
rents(158,7)=200;
rents(158,8)=200;
rents(158,9)=200;
bref(159)=6000;
bnorm(159)=20000;
incomemean(159)=18000;
rents(159,1)=71.41057607832339;
rents(159,2)=49.9874032548267;
rents(159,3)=85.19640398558008;
rents(159,4)=135.75915845165656;
rents(159,5)=191.33894097346368;
rents(159,6)=200;
rents(159,7)=200;
rents(159,8)=200;
rents(159,9)=200;
bref(160)=6000;
bnorm(160)=20000;
incomemean(160)=19000;
rents(160,1)=70.31914330079249;
rents(160,2)=49.223400310555164;
rents(160,3)=87.47304287830387;
rents(160,4)=145.0405443624922;
rents(160,5)=199.639197479958;
rents(160,6)=200;
rents(160,7)=200;
rents(160,8)=200;
rents(160,9)=200;
bref(161)=6000;
bnorm(161)=22000;
incomemean(161)=10000;
rents(161,1)=72.1819752682171;
rents(161,2)=52.495982013248685;
rents(161,3)=62.558577796643185;
rents(161,4)=73.01973524209848;
rents(161,5)=82.73414638154756;
rents(161,6)=92.84805122018675;
rents(161,7)=103.05600318134927;
rents(161,8)=111.39247520724594;
rents(161,9)=119.89163586640291;
bref(162)=6000;
bnorm(162)=22000;
incomemean(162)=11000;
rents(162,1)=71.30133857925617;
rents(162,2)=51.85551896673161;
rents(162,3)=63.896602677841095;
rents(162,4)=75.93553059846396;
rents(162,5)=88.10390257662002;
rents(162,6)=100.50687152902566;
rents(162,7)=114.21086931645219;
rents(162,8)=126.62622460805193;
rents(162,9)=138.3396715296544;
bref(163)=6000;
bnorm(163)=22000;
incomemean(163)=12000;
rents(163,1)=72.01640526956494;
rents(163,2)=52.37556746877451;
rents(163,3)=66.72757394871567;
rents(163,4)=81.93062505438955;
rents(163,5)=97.17087708519198;
rents(163,6)=113.2498721328002;
rents(163,7)=129.92397678553024;
rents(163,8)=143.47037615739984;
rents(163,9)=155.026334348799;
bref(164)=6000;
bnorm(164)=22000;
incomemean(164)=13000;
rents(164,1)=72.11658048587633;
rents(164,2)=52.44842217154636;
rents(164,3)=68.63442494793705;
rents(164,4)=87.37962110920063;
rents(164,5)=106.68444268943554;
rents(164,6)=127.60360202201896;
rents(164,7)=148.99107732233622;
rents(164,8)=166.9984658723631;
rents(164,9)=177.43485718505215;
bref(165)=6000;
bnorm(165)=22000;
incomemean(165)=14000;
rents(165,1)=73.5091674000695;
rents(165,2)=53.461212654595634;
rents(165,3)=72.42660177144825;
rents(165,4)=93.81269696024823;
rents(165,5)=116.81417498564812;
rents(165,6)=142.33719420984187;
rents(165,7)=168.62066988418968;
rents(165,8)=188.2828426302149;
rents(165,9)=196.45761739322376;
bref(166)=6000;
bnorm(166)=22000;
incomemean(166)=15000;
rents(166,1)=70.94737550420078;
rents(166,2)=51.5980912757825;
rents(166,3)=73.99777462427059;
rents(166,4)=101.79397026584937;
rents(166,5)=133.4651609113883;
rents(166,6)=168.15586688723081;
rents(166,7)=192.86500561604583;
rents(166,8)=199.4382389674178;
rents(166,9)=199.9588842966563;
bref(167)=6000;
bnorm(167)=22000;
incomemean(167)=16000;
rents(167,1)=72.0692744606967;
rents(167,2)=52.41401778959773;
rents(167,3)=79.18941215363989;
rents(167,4)=113.43859486723396;
rents(167,5)=153.23621735839401;
rents(167,6)=190.6800210139858;
rents(167,7)=199.48531126239666;
rents(167,8)=200;
rents(167,9)=200;
bref(168)=6000;
bnorm(168)=22000;
incomemean(168)=17000;
rents(168,1)=74.0921651458742;
rents(168,2)=53.88521101518128;
rents(168,3)=84.39376386798286;
rents(168,4)=124.35974934656875;
rents(168,5)=170.82414817584132;
rents(168,6)=199.2217968305037;
rents(168,7)=199.8879938487281;
rents(168,8)=200;
rents(168,9)=200;
bref(169)=6000;
bnorm(169)=22000;
incomemean(169)=18000;
rents(169,1)=71.64270588817716;
rents(169,2)=52.103786100492854;
rents(169,3)=84.91115764314384;
rents(169,4)=131.1614034281643;
rents(169,5)=183.14375013437396;
rents(169,6)=200;
rents(169,7)=200;
rents(169,8)=200;
rents(169,9)=200;
bref(170)=6000;
bnorm(170)=22000;
incomemean(170)=19000;
rents(170,1)=72.05491109867319;
rents(170,2)=52.40357170812628;
rents(170,3)=89.0698466556604;
rents(170,4)=143.64488111161197;
rents(170,5)=197.77682375724703;
rents(170,6)=200;
rents(170,7)=200;
rents(170,8)=200;
rents(170,9)=200;
bref(171)=6000;
bnorm(171)=24000;
incomemean(171)=10000;
rents(171,1)=70.97282697283265;
rents(171,2)=53.22962022962451;
rents(171,3)=63.02616764934542;
rents(171,4)=72.94207579482482;
rents(171,5)=82.49603165254;
rents(171,6)=93.26860803527929;
rents(171,7)=104.17635931007246;
rents(171,8)=113.73292840082375;
rents(171,9)=122.91044945187592;
bref(172)=6000;
bnorm(172)=24000;
incomemean(172)=11000;
rents(172,1)=73.07071851369724;
rents(172,2)=54.80303888527303;
rents(172,3)=66.81658521254232;
rents(172,4)=78.9466921438796;
rents(172,5)=91.16748032220929;
rents(172,6)=104.26199222835936;
rents(172,7)=117.79208152294508;
rents(172,8)=130.34668249012898;
rents(172,9)=141.80913368096702;
bref(173)=6000;
bnorm(173)=24000;
incomemean(173)=12000;
rents(173,1)=74.84872264185802;
rents(173,2)=56.13654198139314;
rents(173,3)=69.65551840869695;
rents(173,4)=83.61497134268039;
rents(173,5)=97.35545260578385;
rents(173,6)=113.34678715779712;
rents(173,7)=128.4507687884814;
rents(173,8)=143.34860871427483;
rents(173,9)=156.3043934310276;
bref(174)=6000;
bnorm(174)=24000;
incomemean(174)=13000;
rents(174,1)=71.61012438929453;
rents(174,2)=53.707593291970575;
rents(174,3)=69.48805400362758;
rents(174,4)=86.63334087632904;
rents(174,5)=105.3138864152593;
rents(174,6)=125.14669131666574;
rents(174,7)=145.45680766673036;
rents(174,8)=163.10674190491417;
rents(174,9)=176.3953473911259;
bref(175)=6000;
bnorm(175)=24000;
incomemean(175)=14000;
rents(175,1)=73.66653798026346;
rents(175,2)=55.249903485198075;
rents(175,3)=73.49270738729332;
rents(175,4)=94.52858476770434;
rents(175,5)=116.64830158689263;
rents(175,6)=142.60808079014268;
rents(175,7)=168.0028894192839;
rents(175,8)=187.56725354354302;
rents(175,9)=197.0539378368337;
bref(176)=6000;
bnorm(176)=24000;
incomemean(176)=15000;
rents(176,1)=73.40349554201704;
rents(176,2)=55.052621656512585;
rents(176,3)=76.107646907432;
rents(176,4)=101.88491282478265;
rents(176,5)=130.60038426207026;
rents(176,6)=162.58390544791482;
rents(176,7)=189.3002864960557;
rents(176,8)=198.17176862760803;
rents(176,9)=199.65070251384378;
bref(177)=6000;
bnorm(177)=24000;
incomemean(177)=16000;
rents(177,1)=74.32987120037137;
rents(177,2)=55.74740340027833;
rents(177,3)=80.11468764083243;
rents(177,4)=109.77289585543427;
rents(177,5)=144.15783269925123;
rents(177,6)=180.6373600959467;
rents(177,7)=198.505132258165;
rents(177,8)=199.93849126503176;
rents(177,9)=200;
bref(178)=6000;
bnorm(178)=24000;
incomemean(178)=17000;
rents(178,1)=72.89201853549095;
rents(178,2)=54.66901390161793;
rents(178,3)=82.09880497029306;
rents(178,4)=117.19171347888371;
rents(178,5)=156.91050969385418;
rents(178,6)=191.61315831910576;
rents(178,7)=199.86645735091938;
rents(178,8)=200;
rents(178,9)=200;
bref(179)=6000;
bnorm(179)=24000;
incomemean(179)=18000;
rents(179,1)=72.7435077360186;
rents(179,2)=54.55763080201375;
rents(179,3)=84.7931082598662;
rents(179,4)=125.63116921625448;
rents(179,5)=172.93916265602795;
rents(179,6)=199.00232428496528;
rents(179,7)=200;
rents(179,8)=200;
rents(179,9)=200;
bref(180)=6000;
bnorm(180)=24000;
incomemean(180)=19000;
rents(180,1)=72.52022273172318;
rents(180,2)=54.39016704879257;
rents(180,3)=88.46238852073232;
rents(180,4)=136.1516523421312;
rents(180,5)=188.46628540785656;
rents(180,6)=200;
rents(180,7)=200;
rents(180,8)=200;
rents(180,9)=200;
bref(181)=6000;
bnorm(181)=26000;
incomemean(181)=10000;
rents(181,1)=73.2635286394902;
rents(181,2)=56.35656049191568;
rents(181,3)=66.06803790417065;
rents(181,4)=75.77972884347224;
rents(181,5)=84.74655538847442;
rents(181,6)=93.93027675890981;
rents(181,7)=103.43759252110304;
rents(181,8)=111.66496002866575;
rents(181,9)=119.25491184949716;
bref(182)=6000;
bnorm(182)=26000;
incomemean(182)=11000;
rents(182,1)=71.66318781980318;
rents(182,2)=55.125529092155844;
rents(182,3)=65.75220753488992;
rents(182,4)=76.7383564940832;
rents(182,5)=87.45197770769661;
rents(182,6)=99.28728262577188;
rents(182,7)=110.37403632015862;
rents(182,8)=120.9091484860749;
rents(182,9)=130.81995638429098;
bref(183)=6000;
bnorm(183)=26000;
incomemean(183)=12000;
rents(183,1)=72.54706117107668;
rents(183,2)=55.80543167005856;
rents(183,3)=68.11550484333713;
rents(183,4)=80.92256056506075;
rents(183,5)=93.71358490503867;
rents(183,6)=107.44638893889804;
rents(183,7)=121.57739531949002;
rents(183,8)=134.115032451789;
rents(183,9)=145.1542563764886;
bref(184)=6000;
bnorm(184)=26000;
incomemean(184)=13000;
rents(184,1)=70.09621314874411;
rents(184,2)=53.920163960571855;
rents(184,3)=68.78062097450353;
rents(184,4)=85.40702919755242;
rents(184,5)=101.88079638686632;
rents(184,6)=120.43584828340359;
rents(184,7)=139.7241248186634;
rents(184,8)=156.14052199004192;
rents(184,9)=169.90748498151012;
bref(185)=6000;
bnorm(185)=26000;
incomemean(185)=14000;
rents(185,1)=76.69907131072881;
rents(185,2)=58.999285623637654;
rents(185,3)=76.32403477483722;
rents(185,4)=96.21554372728568;
rents(185,5)=117.65470397930699;
rents(185,6)=141.22505202650922;
rents(185,7)=165.7729534106666;
rents(185,8)=182.84901814371437;
rents(185,9)=192.29861192759483;
bref(186)=6000;
bnorm(186)=26000;
incomemean(186)=15000;
rents(186,1)=71.00035382822654;
rents(186,2)=54.61565679094307;
rents(186,3)=74.53520541810914;
rents(186,4)=98.10827214529355;
rents(186,5)=123.49913047841395;
rents(186,6)=152.75443947579046;
rents(186,7)=179.08511767652348;
rents(186,8)=191.73054913302767;
rents(186,9)=195.67836383706157;
bref(187)=6000;
bnorm(187)=26000;
incomemean(187)=16000;
rents(187,1)=72.1936311920627;
rents(187,2)=55.53356245543282;
rents(187,3)=79.14225592872143;
rents(187,4)=107.4947932835011;
rents(187,5)=139.19131803500034;
rents(187,6)=173.9808675965515;
rents(187,7)=196.35010964871867;
rents(187,8)=200;
rents(187,9)=200;
bref(188)=6000;
bnorm(188)=26000;
incomemean(188)=17000;
rents(188,1)=70.66386628535403;
rents(188,2)=54.35682021950324;
rents(188,3)=79.94970821198973;
rents(188,4)=113.16195163900453;
rents(188,5)=150.16363570162846;
rents(188,6)=187.3491858934207;
rents(188,7)=200;
rents(188,8)=200;
rents(188,9)=200;
bref(189)=6000;
bnorm(189)=26000;
incomemean(189)=18000;
rents(189,1)=74.08242754261215;
rents(189,2)=56.98648272508651;
rents(189,3)=86.79434945055951;
rents(189,4)=125.85932555080045;
rents(189,5)=171.15764258274532;
rents(189,6)=198.0780267777783;
rents(189,7)=200;
rents(189,8)=200;
rents(189,9)=200;
bref(190)=6000;
bnorm(190)=26000;
incomemean(190)=19000;
rents(190,1)=72.03361614145845;
rents(190,2)=55.41047395496847;
rents(190,3)=86.74856355708802;
rents(190,4)=128.86107541989173;
rents(190,5)=179.26280396698692;
rents(190,6)=200;
rents(190,7)=200;
rents(190,8)=200;
rents(190,9)=200;
bref(191)=6000;
bnorm(191)=28000;
incomemean(191)=10000;
rents(191,1)=74.49763827981273;
rents(191,2)=58.53385864842423;
rents(191,3)=67.09491425532514;
rents(191,4)=75.50935052223663;
rents(191,5)=84.0789745492263;
rents(191,6)=92.83743782013933;
rents(191,7)=101.57811606479288;
rents(191,8)=109.13834381813429;
rents(191,9)=117.80716637786001;
bref(192)=6000;
bnorm(192)=28000;
incomemean(192)=11000;
rents(192,1)=72.95888444349124;
rents(192,2)=57.324837777028804;
rents(192,3)=66.75611381392945;
rents(192,4)=76.05501312835742;
rents(192,5)=85.41363843615017;
rents(192,6)=95.2961647753295;
rents(192,7)=105.9422958872366;
rents(192,8)=115.42713620029603;
rents(192,9)=125.30546893217486;
bref(193)=6000;
bnorm(193)=28000;
incomemean(193)=12000;
rents(193,1)=71.33696837861991;
rents(193,2)=56.05047515462971;
rents(193,3)=67.85129466663305;
rents(193,4)=80.61184070553391;
rents(193,5)=93.6449289034231;
rents(193,6)=107.27190009538269;
rents(193,7)=121.0038429437931;
rents(193,8)=132.75879320667246;
rents(193,9)=143.554894745287;
bref(194)=6000;
bnorm(194)=28000;
incomemean(194)=13000;
rents(194,1)=73.57368886329344;
rents(194,2)=57.80789839258727;
rents(194,3)=71.62585978601358;
rents(194,4)=86.00917456223901;
rents(194,5)=101.26026717789107;
rents(194,6)=117.91599204337584;
rents(194,7)=134.7255415845532;
rents(194,8)=149.02143142439402;
rents(194,9)=163.11639258026602;
bref(195)=6000;
bnorm(195)=28000;
incomemean(195)=14000;
rents(195,1)=71.9236059540014;
rents(195,2)=56.511404678144075;
rents(195,3)=73.35492522450379;
rents(195,4)=91.94233475171437;
rents(195,5)=112.16114781045175;
rents(195,6)=133.75162959946164;
rents(195,7)=156.00330841496498;
rents(195,8)=174.24656883655894;
rents(195,9)=188.94694345587442;
bref(196)=6000;
bnorm(196)=28000;
incomemean(196)=15000;
rents(196,1)=72.65145637650957;
rents(196,2)=57.083287152972105;
rents(196,3)=75.21949548130995;
rents(196,4)=96.97348529274494;
rents(196,5)=119.66912033268041;
rents(196,6)=145.890954705853;
rents(196,7)=170.6615123449746;
rents(196,8)=190.38554778416392;
rents(196,9)=198.76326654524192;
bref(197)=6000;
bnorm(197)=28000;
incomemean(197)=16000;
rents(197,1)=72.13870421944942;
rents(197,2)=56.68041045813866;
rents(197,3)=78.41741082980577;
rents(197,4)=103.68375820923382;
rents(197,5)=132.8509847744978;
rents(197,6)=164.1051958586461;
rents(197,7)=191.3615684762831;
rents(197,8)=199.89602029367114;
rents(197,9)=200;
bref(198)=6000;
bnorm(198)=28000;
incomemean(198)=17000;
rents(198,1)=73.39951392528336;
rents(198,2)=57.67104665557998;
rents(198,3)=82.13066629047302;
rents(198,4)=112.48217833307588;
rents(198,5)=147.26153357305645;
rents(198,6)=185.40966559569466;
rents(198,7)=199.59816270849493;
rents(198,8)=200;
rents(198,9)=200;
bref(199)=6000;
bnorm(199)=28000;
incomemean(199)=18000;
rents(199,1)=73.87620082821921;
rents(199,2)=58.04558636502961;
rents(199,3)=85.47364155256233;
rents(199,4)=120.94772622326329;
rents(199,5)=162.2137069479067;
rents(199,6)=196.47208884883202;
rents(199,7)=200;
rents(199,8)=200;
rents(199,9)=200;
bref(200)=6000;
bnorm(200)=28000;
incomemean(200)=19000;
rents(200,1)=72.86334605881915;
rents(200,2)=57.24977190335847;
rents(200,3)=88.76250993165165;
rents(200,4)=131.7239519462364;
rents(200,5)=181.61056914923827;
rents(200,6)=199.99057652998044;
rents(200,7)=200;
rents(200,8)=200;
rents(200,9)=200;
bref(201)=7000;
bnorm(201)=10000;
incomemean(201)=10000;
rents(201,1)=72.59865802920503;
rents(201,2)=21.77959740876149;
rents(201,3)=32.877649249351876;
rents(201,4)=47.76822126706849;
rents(201,5)=64.00982741494259;
rents(201,6)=81.53404920967381;
rents(201,7)=95.81721268450333;
rents(201,8)=106.73977861767547;
rents(201,9)=116.0175975488043;
bref(202)=7000;
bnorm(202)=10000;
incomemean(202)=11000;
rents(202,1)=69.44688258134478;
rents(202,2)=20.83406477440343;
rents(202,3)=33.14397456699215;
rents(202,4)=50.11524708105047;
rents(202,5)=69.2103029718902;
rents(202,6)=89.31223221253987;
rents(202,7)=108.15543123890451;
rents(202,8)=123.26691883819451;
rents(202,9)=135.27918540280396;
bref(203)=7000;
bnorm(203)=10000;
incomemean(203)=12000;
rents(203,1)=72.39372181209993;
rents(203,2)=21.718116543630096;
rents(203,3)=36.489548758185485;
rents(203,4)=58.40007074522581;
rents(203,5)=84.12514606915822;
rents(203,6)=109.99036683528064;
rents(203,7)=133.1006189138064;
rents(203,8)=146.85146663624784;
rents(203,9)=154.31949378823708;
bref(204)=7000;
bnorm(204)=10000;
incomemean(204)=13000;
rents(204,1)=72.61077492254138;
rents(204,2)=21.783232476762432;
rents(204,3)=38.53043506618797;
rents(204,4)=64.49380523538572;
rents(204,5)=96.54093912782396;
rents(204,6)=132.7335229342728;
rents(204,7)=166.9017206040239;
rents(204,8)=180.88204041177477;
rents(204,9)=188.29137842789524;
bref(205)=7000;
bnorm(205)=10000;
incomemean(205)=14000;
rents(205,1)=74.18911999979187;
rents(205,2)=22.256735999937316;
rents(205,3)=41.92867158146721;
rents(205,4)=73.45098780706759;
rents(205,5)=115.23363395731718;
rents(205,6)=166.85403694282357;
rents(205,7)=193.34073723319315;
rents(205,8)=197.67363409803085;
rents(205,9)=198.8289807189659;
bref(206)=7000;
bnorm(206)=10000;
incomemean(206)=15000;
rents(206,1)=73.89716257711274;
rents(206,2)=22.16914877313367;
rents(206,3)=45.95251970908079;
rents(206,4)=87.54933401459314;
rents(206,5)=145.16830193673718;
rents(206,6)=197.53399890087442;
rents(206,7)=199.53274636388804;
rents(206,8)=199.82461119664313;
rents(206,9)=200;
bref(207)=7000;
bnorm(207)=10000;
incomemean(207)=16000;
rents(207,1)=72.62906334684125;
rents(207,2)=21.788719004052286;
rents(207,3)=47.73059733684936;
rents(207,4)=95.9821022778162;
rents(207,5)=168.2627396582;
rents(207,6)=199.09954926830832;
rents(207,7)=200;
rents(207,8)=200;
rents(207,9)=200;
bref(208)=7000;
bnorm(208)=10000;
incomemean(208)=17000;
rents(208,1)=72.21167185844087;
rents(208,2)=21.66350155753216;
rents(208,3)=49.93937055611128;
rents(208,4)=105.65903550438352;
rents(208,5)=182.9912672613088;
rents(208,6)=200;
rents(208,7)=200;
rents(208,8)=200;
rents(208,9)=200;
bref(209)=7000;
bnorm(209)=10000;
incomemean(209)=18000;
rents(209,1)=71.81853363611603;
rents(209,2)=21.54556009083473;
rents(209,3)=53.465525807823724;
rents(209,4)=119.25157289108887;
rents(209,5)=199.4059834050783;
rents(209,6)=200;
rents(209,7)=200;
rents(209,8)=200;
rents(209,9)=200;
bref(210)=7000;
bnorm(210)=10000;
incomemean(210)=19000;
rents(210,1)=70.74093338775627;
rents(210,2)=21.22228001632697;
rents(210,3)=54.731370979120726;
rents(210,4)=130.23121448802877;
rents(210,5)=200;
rents(210,6)=200;
rents(210,7)=200;
rents(210,8)=200;
rents(210,9)=200;
bref(211)=7000;
bnorm(211)=12000;
incomemean(211)=10000;
rents(211,1)=74.44635797899642;
rents(211,2)=31.01931582458175;
rents(211,3)=43.22096730281845;
rents(211,4)=57.737561971403466;
rents(211,5)=72.22559651390283;
rents(211,6)=86.6289950826377;
rents(211,7)=98.51882491308875;
rents(211,8)=109.18593584521955;
rents(211,9)=118.94910963810791;
bref(212)=7000;
bnorm(212)=12000;
incomemean(212)=11000;
rents(212,1)=75.4961874667636;
rents(212,2)=31.45674477781818;
rents(212,3)=45.79039631348509;
rents(212,4)=62.48630810414068;
rents(212,5)=78.92170792335864;
rents(212,6)=94.50425716088046;
rents(212,7)=109.56645226903645;
rents(212,8)=119.6429098786448;
rents(212,9)=130.4306999566582;
bref(213)=7000;
bnorm(213)=12000;
incomemean(213)=12000;
rents(213,1)=71.75959458055578;
rents(213,2)=29.899831075231436;
rents(213,3)=45.94928432329666;
rents(213,4)=65.85807675010928;
rents(213,5)=87.70184259895902;
rents(213,6)=110.23692322090756;
rents(213,7)=132.66769520117967;
rents(213,8)=149.48853477952392;
rents(213,9)=156.71005639993328;
bref(214)=7000;
bnorm(214)=12000;
incomemean(214)=13000;
rents(214,1)=75.20051743726222;
rents(214,2)=31.33354893219244;
rents(214,3)=50.1944254008844;
rents(214,4)=74.97020011417641;
rents(214,5)=102.53666015442364;
rents(214,6)=134.80561599722807;
rents(214,7)=163.5903735563145;
rents(214,8)=176.03324958062942;
rents(214,9)=179.51267926164113;
bref(215)=7000;
bnorm(215)=12000;
incomemean(215)=14000;
rents(215,1)=74.30525149713918;
rents(215,2)=30.96052145714124;
rents(215,3)=52.826667115554436;
rents(215,4)=83.32736753326144;
rents(215,5)=118.53218818918882;
rents(215,6)=156.96915113542383;
rents(215,7)=186.50919055067172;
rents(215,8)=195.037928182624;
rents(215,9)=197.47860495900642;
bref(216)=7000;
bnorm(216)=12000;
incomemean(216)=15000;
rents(216,1)=73.8332740833733;
rents(216,2)=30.76386420140564;
rents(216,3)=56.10889809760004;
rents(216,4)=95.50125886976248;
rents(216,5)=143.64719449726047;
rents(216,6)=191.24779488903982;
rents(216,7)=199.7618173092598;
rents(216,8)=200;
rents(216,9)=200;
bref(217)=7000;
bnorm(217)=12000;
incomemean(217)=16000;
rents(217,1)=69.13283474784343;
rents(217,2)=28.805347811601504;
rents(217,3)=56.824628674764185;
rents(217,4)=103.41823294661584;
rents(217,5)=165.40782588890468;
rents(217,6)=199.77660248121646;
rents(217,7)=200;
rents(217,8)=200;
rents(217,9)=200;
bref(218)=7000;
bnorm(218)=12000;
incomemean(218)=17000;
rents(218,1)=72.47813019900326;
rents(218,2)=30.199220916251427;
rents(218,3)=61.673222893809026;
rents(218,4)=115.50163984850366;
rents(218,5)=182.30291628999197;
rents(218,6)=200;
rents(218,7)=200;
rents(218,8)=200;
rents(218,9)=200;
bref(219)=7000;
bnorm(219)=12000;
incomemean(219)=18000;
rents(219,1)=69.01419616743898;
rents(219,2)=28.755915069766093;
rents(219,3)=62.1886930733036;
rents(219,4)=123.93199392911605;
rents(219,5)=194.65480954330926;
rents(219,6)=200;
rents(219,7)=200;
rents(219,8)=200;
rents(219,9)=200;
bref(220)=7000;
bnorm(220)=12000;
incomemean(220)=19000;
rents(220,1)=73.1775745428911;
rents(220,2)=30.4906560595378;
rents(220,3)=69.24622909705093;
rents(220,4)=142.55311197914813;
rents(220,5)=199.99066928117693;
rents(220,6)=200;
rents(220,7)=200;
rents(220,8)=200;
rents(220,9)=200;
bref(221)=7000;
bnorm(221)=14000;
incomemean(221)=10000;
rents(221,1)=70.8074616773633;
rents(221,2)=35.40373083868165;
rents(221,3)=46.677357773502806;
rents(221,4)=58.8916905086809;
rents(221,5)=70.74022494900107;
rents(221,6)=82.80606317561384;
rents(221,7)=94.39303669672353;
rents(221,8)=103.26028115590967;
rents(221,9)=112.06397657398418;
bref(222)=7000;
bnorm(222)=14000;
incomemean(222)=11000;
rents(222,1)=72.00215059458526;
rents(222,2)=36.00107529729264;
rents(222,3)=49.265732233638644;
rents(222,4)=63.76076764427334;
rents(222,5)=78.78037617117701;
rents(222,6)=93.43407298316437;
rents(222,7)=107.9074878186856;
rents(222,8)=118.38426108726377;
rents(222,9)=127.76261460984175;
bref(223)=7000;
bnorm(223)=14000;
incomemean(223)=12000;
rents(223,1)=72.91635787169731;
rents(223,2)=36.45817893584867;
rents(223,3)=52.62023737898424;
rents(223,4)=71.38404672413378;
rents(223,5)=91.0285218439371;
rents(223,6)=111.85644288749721;
rents(223,7)=132.005299428575;
rents(223,8)=146.067182414531;
rents(223,9)=156.32990010125482;
bref(224)=7000;
bnorm(224)=14000;
incomemean(224)=13000;
rents(224,1)=71.74785748134761;
rents(224,2)=35.87392874067386;
rents(224,3)=52.95613801232826;
rents(224,4)=74.53598456830831;
rents(224,5)=99.18141217080277;
rents(224,6)=125.27877483568649;
rents(224,7)=151.2968676047253;
rents(224,8)=166.71175797648837;
rents(224,9)=173.89882724884873;
bref(225)=7000;
bnorm(225)=14000;
incomemean(225)=14000;
rents(225,1)=73.84591757795587;
rents(225,2)=36.922958788978;
rents(225,3)=57.61726771175269;
rents(225,4)=84.93631018536911;
rents(225,5)=115.45599890283229;
rents(225,6)=150.69305506367732;
rents(225,7)=181.67487423558833;
rents(225,8)=193.10782337257902;
rents(225,9)=197.92815501011268;
bref(226)=7000;
bnorm(226)=14000;
incomemean(226)=15000;
rents(226,1)=72.9497693379887;
rents(226,2)=36.47488466899431;
rents(226,3)=61.27255130734648;
rents(226,4)=95.30459635595253;
rents(226,5)=134.53237051344956;
rents(226,6)=175.58518407980765;
rents(226,7)=196.4509507802873;
rents(226,8)=199.74957841061297;
rents(226,9)=199.95003479728686;
bref(227)=7000;
bnorm(227)=14000;
incomemean(227)=16000;
rents(227,1)=72.42308307250225;
rents(227,2)=36.211541536251126;
rents(227,3)=64.94988991534784;
rents(227,4)=108.95488595002358;
rents(227,5)=163.14329691012193;
rents(227,6)=198.99731355290064;
rents(227,7)=200;
rents(227,8)=200;
rents(227,9)=200;
bref(228)=7000;
bnorm(228)=14000;
incomemean(228)=17000;
rents(228,1)=74.62214011770014;
rents(228,2)=37.311070058850014;
rents(228,3)=70.18751408650368;
rents(228,4)=120.76133183114425;
rents(228,5)=182.6417482584628;
rents(228,6)=199.88797542046368;
rents(228,7)=200;
rents(228,8)=200;
rents(228,9)=200;
bref(229)=7000;
bnorm(229)=14000;
incomemean(229)=18000;
rents(229,1)=69.71720908690189;
rents(229,2)=34.85860454345092;
rents(229,3)=70.05055103276005;
rents(229,4)=128.40457202068384;
rents(229,5)=193.96237191836647;
rents(229,6)=200;
rents(229,7)=200;
rents(229,8)=200;
rents(229,9)=200;
bref(230)=7000;
bnorm(230)=14000;
incomemean(230)=19000;
rents(230,1)=70.7278328692107;
rents(230,2)=35.36391643460536;
rents(230,3)=74.38801280907103;
rents(230,4)=142.1046798170029;
rents(230,5)=199.68416101460832;
rents(230,6)=200;
rents(230,7)=200;
rents(230,8)=200;
rents(230,9)=200;
bref(231)=7000;
bnorm(231)=16000;
incomemean(231)=10000;
rents(231,1)=70.52875944322201;
rents(231,2)=39.672427186812655;
rents(231,3)=50.23289154252194;
rents(231,4)=61.14067559184862;
rents(231,5)=71.08597789928913;
rents(231,6)=81.5200764208063;
rents(231,7)=91.21852573582139;
rents(231,8)=98.73854251376592;
rents(231,9)=105.11754299970406;
bref(232)=7000;
bnorm(232)=16000;
incomemean(232)=11000;
rents(232,1)=72.55797829066115;
rents(232,2)=40.81386278849669;
rents(232,3)=53.329178564262904;
rents(232,4)=67.15596651242372;
rents(232,5)=80.47144281469865;
rents(232,6)=93.5369958608307;
rents(232,7)=108.36497882308728;
rents(232,8)=119.62949615648446;
rents(232,9)=130.70926550598327;
bref(233)=7000;
bnorm(233)=16000;
incomemean(233)=12000;
rents(233,1)=72.55039955590948;
rents(233,2)=40.80959975019933;
rents(233,3)=55.33529851153345;
rents(233,4)=72.48908020013289;
rents(233,5)=89.76539482934992;
rents(233,6)=107.37210636152008;
rents(233,7)=125.14693334818165;
rents(233,8)=138.98267347421282;
rents(233,9)=149.39304677090078;
bref(234)=7000;
bnorm(234)=16000;
incomemean(234)=13000;
rents(234,1)=70.6932550572861;
rents(234,2)=39.76495596972348;
rents(234,3)=56.63184431461569;
rents(234,4)=76.77975949557224;
rents(234,5)=98.05181250778222;
rents(234,6)=120.0320458773498;
rents(234,7)=142.65491972501252;
rents(234,8)=157.8933962851267;
rents(234,9)=170.13955107391422;
bref(235)=7000;
bnorm(235)=16000;
incomemean(235)=14000;
rents(235,1)=72.72818449887006;
rents(235,2)=40.909603780614205;
rents(235,3)=60.840036339248094;
rents(235,4)=86.09780321836057;
rents(235,5)=113.26399470536332;
rents(235,6)=143.3819058481495;
rents(235,7)=169.15629000288197;
rents(235,8)=184.17410694467927;
rents(235,9)=190.1986167182101;
bref(236)=7000;
bnorm(236)=16000;
incomemean(236)=15000;
rents(236,1)=74.31053571676489;
rents(236,2)=41.79967634068044;
rents(236,3)=66.26283475994111;
rents(236,4)=98.08501128887985;
rents(236,5)=134.03019872548873;
rents(236,6)=171.70257779265532;
rents(236,7)=193.84835635625268;
rents(236,8)=199.30968793895383;
rents(236,9)=199.92629111632414;
bref(237)=7000;
bnorm(237)=16000;
incomemean(237)=16000;
rents(237,1)=71.4756819669646;
rents(237,2)=40.205071106417634;
rents(237,3)=65.91111130458013;
rents(237,4)=102.07558301020728;
rents(237,5)=143.0742131066859;
rents(237,6)=186.93578361664504;
rents(237,7)=199.4016910396448;
rents(237,8)=200;
rents(237,9)=200;
bref(238)=7000;
bnorm(238)=16000;
incomemean(238)=17000;
rents(238,1)=73.042387749723;
rents(238,2)=41.08634310921921;
rents(238,3)=71.90609328386356;
rents(238,4)=118.07658867595362;
rents(238,5)=175.27472178284535;
rents(238,6)=200;
rents(238,7)=200;
rents(238,8)=200;
rents(238,9)=200;
bref(239)=7000;
bnorm(239)=16000;
incomemean(239)=18000;
rents(239,1)=71.62553924651743;
rents(239,2)=40.289365826166005;
rents(239,3)=75.14107735136893;
rents(239,4)=130.49677515474679;
rents(239,5)=190.52999011771703;
rents(239,6)=200;
rents(239,7)=200;
rents(239,8)=200;
rents(239,9)=200;
bref(240)=7000;
bnorm(240)=16000;
incomemean(240)=19000;
rents(240,1)=74.73277797127304;
rents(240,2)=42.03718760884083;
rents(240,3)=81.79766155732486;
rents(240,4)=147.31569667988938;
rents(240,5)=199.1546178561341;
rents(240,6)=200;
rents(240,7)=200;
rents(240,8)=200;
rents(240,9)=200;
bref(241)=7000;
bnorm(241)=18000;
incomemean(241)=10000;
rents(241,1)=73.14961200652908;
rents(241,2)=44.70254067065668;
rents(241,3)=54.37708401491258;
rents(241,4)=64.0423167779913;
rents(241,5)=73.0935295296598;
rents(241,6)=82.2980099527267;
rents(241,7)=91.17622444435634;
rents(241,8)=97.7416874706137;
rents(241,9)=104.15102146729431;
bref(242)=7000;
bnorm(242)=18000;
incomemean(242)=11000;
rents(242,1)=72.90093760678587;
rents(242,2)=44.550572981924894;
rents(242,3)=56.3501845311855;
rents(242,4)=68.9943711174171;
rents(242,5)=80.84537632482127;
rents(242,6)=92.72278857260622;
rents(242,7)=104.2849788354521;
rents(242,8)=114.49037107133127;
rents(242,9)=124.26604709364669;
bref(243)=7000;
bnorm(243)=18000;
incomemean(243)=12000;
rents(243,1)=71.9443758679506;
rents(243,2)=43.966007474858706;
rents(243,3)=57.36715518404162;
rents(243,4)=71.984679634549;
rents(243,5)=86.90124354083419;
rents(243,6)=102.8156978615642;
rents(243,7)=118.66545728401694;
rents(243,8)=132.02658623479712;
rents(243,9)=143.93652445696623;
bref(244)=7000;
bnorm(244)=18000;
incomemean(244)=13000;
rents(244,1)=72.55619993075605;
rents(244,2)=44.339899957684096;
rents(244,3)=61.155907305074926;
rents(244,4)=80.15448806845802;
rents(244,5)=100.38645872483622;
rents(244,6)=123.67126956271039;
rents(244,7)=144.59552335845078;
rents(244,8)=162.37129761910015;
rents(244,9)=174.85170004220416;
bref(245)=7000;
bnorm(245)=18000;
incomemean(245)=14000;
rents(245,1)=74.87607380146534;
rents(245,2)=45.757600656451245;
rents(245,3)=65.84915467764321;
rents(245,4)=90.57181717118354;
rents(245,5)=117.4608833595161;
rents(245,6)=147.07325316340678;
rents(245,7)=172.1181372655122;
rents(245,8)=188.34354175260404;
rents(245,9)=195.30919895541675;
bref(246)=7000;
bnorm(246)=18000;
incomemean(246)=15000;
rents(246,1)=70.67672827375655;
rents(246,2)=43.19133394507333;
rents(246,3)=64.24354866422713;
rents(246,4)=91.06369490207128;
rents(246,5)=121.39755678512508;
rents(246,6)=155.1364240018241;
rents(246,7)=184.09131930841596;
rents(246,8)=197.31564404103324;
rents(246,9)=199.77075839314426;
bref(247)=7000;
bnorm(247)=18000;
incomemean(247)=16000;
rents(247,1)=71.85850028182087;
rents(247,2)=43.91352795000119;
rents(247,3)=69.14524295468446;
rents(247,4)=102.95639535611636;
rents(247,5)=142.58205269636116;
rents(247,6)=182.66555584828174;
rents(247,7)=199.29912298814446;
rents(247,8)=200;
rents(247,9)=200;
bref(248)=7000;
bnorm(248)=18000;
incomemean(248)=17000;
rents(248,1)=71.49485825948354;
rents(248,2)=43.69130226968419;
rents(248,3)=71.3912036580536;
rents(248,4)=109.59092146613142;
rents(248,5)=157.5460156014978;
rents(248,6)=196.71521842511092;
rents(248,7)=200;
rents(248,8)=200;
rents(248,9)=200;
bref(249)=7000;
bnorm(249)=18000;
incomemean(249)=18000;
rents(249,1)=72.84069407102803;
rents(249,2)=44.513757487850455;
rents(249,3)=76.66955752599311;
rents(249,4)=123.47533727895114;
rents(249,5)=177.6485788272077;
rents(249,6)=199.4423566627613;
rents(249,7)=200;
rents(249,8)=200;
rents(249,9)=200;
bref(250)=7000;
bnorm(250)=18000;
incomemean(250)=19000;
rents(250,1)=70.56303969875805;
rents(250,2)=43.12185759368566;
rents(250,3)=78.92876539459108;
rents(250,4)=134.12020271856144;
rents(250,5)=195.24211833733227;
rents(250,6)=200;
rents(250,7)=200;
rents(250,8)=200;
rents(250,9)=200;
bref(251)=7000;
bnorm(251)=20000;
incomemean(251)=10000;
rents(251,1)=72.93763954687186;
rents(251,2)=47.409465705467056;
rents(251,3)=56.46171495094402;
rents(251,4)=65.63040373116154;
rents(251,5)=73.4783753665413;
rents(251,6)=81.51305198369671;
rents(251,7)=88.27344513998355;
rents(251,8)=94.01563312427903;
rents(251,9)=99.05634116330872;
bref(252)=7000;
bnorm(252)=20000;
incomemean(252)=11000;
rents(252,1)=75.33965616812677;
rents(252,2)=48.97077650928246;
rents(252,3)=60.27187453045659;
rents(252,4)=71.38506403670571;
rents(252,5)=82.64446595386643;
rents(252,6)=93.61526749527482;
rents(252,7)=105.36395644524409;
rents(252,8)=115.2860994956647;
rents(252,9)=125.52517719197729;
bref(253)=7000;
bnorm(253)=20000;
incomemean(253)=12000;
rents(253,1)=72.24875126517499;
rents(253,2)=46.96168832236342;
rents(253,3)=59.507192672194705;
rents(253,4)=72.63269858844525;
rents(253,5)=86.0201130560471;
rents(253,6)=98.95193070253822;
rents(253,7)=113.98010085832053;
rents(253,8)=126.41285314095813;
rents(253,9)=138.85892600357013;
bref(254)=7000;
bnorm(254)=20000;
incomemean(254)=13000;
rents(254,1)=72.78291536092584;
rents(254,2)=47.30889498460168;
rents(254,3)=62.1334343731003;
rents(254,4)=78.7617274646982;
rents(254,5)=95.90161496062821;
rents(254,6)=115.11684861288497;
rents(254,7)=133.20364982733548;
rents(254,8)=146.9488229465292;
rents(254,9)=159.79255613435555;
bref(255)=7000;
bnorm(255)=20000;
incomemean(255)=14000;
rents(255,1)=71.10161818950567;
rents(255,2)=46.21605182317873;
rents(255,3)=64.14604271873218;
rents(255,4)=85.00411244766907;
rents(255,5)=107.90457795798903;
rents(255,6)=132.84609476211844;
rents(255,7)=156.78164306685386;
rents(255,8)=176.235185691192;
rents(255,9)=187.53455342893636;
bref(256)=7000;
bnorm(256)=20000;
incomemean(256)=15000;
rents(256,1)=73.29173603589646;
rents(256,2)=47.639628423332965;
rents(256,3)=69.15831007419311;
rents(256,4)=94.49181471170175;
rents(256,5)=122.92051386010198;
rents(256,6)=154.98261217171463;
rents(256,7)=185.27813290118584;
rents(256,8)=197.72820099449862;
rents(256,9)=199.97412561954772;
bref(257)=7000;
bnorm(257)=20000;
incomemean(257)=16000;
rents(257,1)=72.593026517123;
rents(257,2)=47.18546723613001;
rents(257,3)=70.02740294916009;
rents(257,4)=99.4617530956502;
rents(257,5)=132.42233522823574;
rents(257,6)=167.8566418251023;
rents(257,7)=192.4413795514887;
rents(257,8)=199.71607538253417;
rents(257,9)=200;
bref(258)=7000;
bnorm(258)=20000;
incomemean(258)=17000;
rents(258,1)=71.03008393576268;
rents(258,2)=46.169554558245956;
rents(258,3)=73.09162096446232;
rents(258,4)=108.90520596066713;
rents(258,5)=151.72992956098642;
rents(258,6)=191.29098795397377;
rents(258,7)=200;
rents(258,8)=200;
rents(258,9)=200;
bref(259)=7000;
bnorm(259)=20000;
incomemean(259)=18000;
rents(259,1)=73.50571539763175;
rents(259,2)=47.778715008460885;
rents(259,3)=79.42218857873614;
rents(259,4)=124.75103128844493;
rents(259,5)=178.55851902630684;
rents(259,6)=199.99172292409557;
rents(259,7)=200;
rents(259,8)=200;
rents(259,9)=200;
bref(260)=7000;
bnorm(260)=20000;
incomemean(260)=19000;
rents(260,1)=72.01478296866189;
rents(260,2)=46.80960892963003;
rents(260,3)=81.03202870126438;
rents(260,4)=131.4836026770878;
rents(260,5)=188.6962677172554;
rents(260,6)=200;
rents(260,7)=200;
rents(260,8)=200;
rents(260,9)=200;
bref(261)=7000;
bnorm(261)=22000;
incomemean(261)=10000;
rents(261,1)=71.46519533350347;
rents(261,2)=48.726269545570766;
rents(261,3)=56.667039477482625;
rents(261,4)=64.76422149814813;
rents(261,5)=72.04462569185048;
rents(261,6)=79.63380977080963;
rents(261,7)=86.29108850243337;
rents(261,8)=92.33751874282979;
rents(261,9)=97.82467465414291;
bref(262)=7000;
bnorm(262)=22000;
incomemean(262)=11000;
rents(262,1)=72.53490193991058;
rents(262,2)=49.455614959030285;
rents(262,3)=59.29944745247184;
rents(262,4)=69.07499626508215;
rents(262,5)=78.38454628181128;
rents(262,6)=88.01700432638447;
rents(262,7)=97.45114314065997;
rents(262,8)=105.71678062073622;
rents(262,9)=113.32249723685676;
bref(263)=7000;
bnorm(263)=22000;
incomemean(263)=12000;
rents(263,1)=70.94942777145272;
rents(263,2)=48.374609844172376;
rents(263,3)=59.369406454045624;
rents(263,4)=71.51469175439493;
rents(263,5)=83.17627550878179;
rents(263,6)=95.81915016190513;
rents(263,7)=108.42861259775171;
rents(263,8)=119.88884725682182;
rents(263,9)=131.56365689126764;
bref(264)=7000;
bnorm(264)=22000;
incomemean(264)=13000;
rents(264,1)=72.00403094559574;
rents(264,2)=49.0936574629066;
rents(264,3)=62.842638107526426;
rents(264,4)=77.84568607253257;
rents(264,5)=92.24861511075831;
rents(264,6)=109.11014244476596;
rents(264,7)=124.43779871304528;
rents(264,8)=137.93574652708602;
rents(264,9)=150.6133687414575;
bref(265)=7000;
bnorm(265)=22000;
incomemean(265)=14000;
rents(265,1)=71.92659935282909;
rents(265,2)=49.0408631951106;
rents(265,3)=66.0044024386311;
rents(265,4)=85.19956019395637;
rents(265,5)=105.99020967069856;
rents(265,6)=128.9565266043502;
rents(265,7)=150.69424559571883;
rents(265,8)=168.99714464599728;
rents(265,9)=181.47071556524136;
bref(266)=7000;
bnorm(266)=22000;
incomemean(266)=15000;
rents(266,1)=73.17858947498696;
rents(266,2)=49.89449282385501;
rents(266,3)=70.02518909454109;
rents(266,4)=93.77739365359024;
rents(266,5)=120.39669274310982;
rents(266,6)=149.93077659017112;
rents(266,7)=179.05778030700566;
rents(266,8)=193.43869348737056;
rents(266,9)=197.46375942063068;
bref(267)=7000;
bnorm(267)=22000;
incomemean(267)=16000;
rents(267,1)=73.9612115185382;
rents(267,2)=50.428098762639735;
rents(267,3)=73.86519264741551;
rents(267,4)=102.88289223919865;
rents(267,5)=135.6062292653638;
rents(267,6)=170.60835390596694;
rents(267,7)=194.1879140287263;
rents(267,8)=199.78696584496598;
rents(267,9)=200;
bref(268)=7000;
bnorm(268)=22000;
incomemean(268)=17000;
rents(268,1)=70.54138699791737;
rents(268,2)=48.0964002258527;
rents(268,3)=73.34916951859152;
rents(268,4)=106.84858467502511;
rents(268,5)=144.48992463501182;
rents(268,6)=184.41997628114413;
rents(268,7)=197.2855096817533;
rents(268,8)=199.92573326025428;
rents(268,9)=200;
bref(269)=7000;
bnorm(269)=22000;
incomemean(269)=18000;
rents(269,1)=71.3963734712272;
rents(269,2)=48.6793455485637;
rents(269,3)=77.30725771969745;
rents(269,4)=116.48855212445987;
rents(269,5)=163.4176659240813;
rents(269,6)=197.6361597094112;
rents(269,7)=200;
rents(269,8)=200;
rents(269,9)=200;
bref(270)=7000;
bnorm(270)=22000;
incomemean(270)=19000;
rents(270,1)=73.96809192318636;
rents(270,2)=50.43278994762675;
rents(270,3)=82.45606846491434;
rents(270,4)=126.88062938654966;
rents(270,5)=180.2535939974641;
rents(270,6)=199.79676360189686;
rents(270,7)=200;
rents(270,8)=200;
rents(270,9)=200;
bref(271)=7000;
bnorm(271)=24000;
incomemean(271)=10000;
rents(271,1)=71.26870950435938;
rents(271,2)=50.482002565587905;
rents(271,3)=57.65389081814289;
rents(271,4)=64.99454013808614;
rents(271,5)=71.84104165968219;
rents(271,6)=78.87435098839018;
rents(271,7)=85.38567288635225;
rents(271,8)=90.72446023073432;
rents(271,9)=96.20068656258648;
bref(272)=7000;
bnorm(272)=24000;
incomemean(272)=11000;
rents(272,1)=68.95623871441903;
rents(272,2)=48.84400242271351;
rents(272,3)=57.49378769827797;
rents(272,4)=66.18944053170449;
rents(272,5)=73.80809503215322;
rents(272,6)=82.06000937086345;
rents(272,7)=90.00697855985709;
rents(272,8)=95.9756694883164;
rents(272,9)=102.92364539786456;
bref(273)=7000;
bnorm(273)=24000;
incomemean(273)=12000;
rents(273,1)=71.7984434559728;
rents(273,2)=50.85723078131424;
rents(273,3)=61.33756114810169;
rents(273,4)=72.21870181519213;
rents(273,5)=83.02604095072715;
rents(273,6)=94.56657796170589;
rents(273,7)=106.04939728949735;
rents(273,8)=117.18703065541888;
rents(273,9)=126.91391873052574;
bref(274)=7000;
bnorm(274)=24000;
incomemean(274)=13000;
rents(274,1)=74.41159047002314;
rents(274,2)=52.70820991626633;
rents(274,3)=65.53287328098348;
rents(274,4)=79.8371858069503;
rents(274,5)=95.07996295354718;
rents(274,6)=110.71986417618494;
rents(274,7)=127.27244434130625;
rents(274,8)=141.93469604419133;
rents(274,9)=152.99657163542443;
bref(275)=7000;
bnorm(275)=24000;
incomemean(275)=14000;
rents(275,1)=72.78681214943295;
rents(275,2)=51.557325272514696;
rents(275,3)=66.83813938725305;
rents(275,4)=83.33390813941337;
rents(275,5)=100.965283011874;
rents(275,6)=120.6323500808038;
rents(275,7)=140.37478128879653;
rents(275,8)=156.7839457407609;
rents(275,9)=171.69847534147283;
bref(276)=7000;
bnorm(276)=24000;
incomemean(276)=15000;
rents(276,1)=74.38865261791368;
rents(276,2)=52.691962271021815;
rents(276,3)=71.75014708690397;
rents(276,4)=93.22723209888832;
rents(276,5)=116.28612793470067;
rents(276,6)=141.70941963526195;
rents(276,7)=168.6310516139881;
rents(276,8)=187.84306127832497;
rents(276,9)=197.33623301530017;
bref(277)=7000;
bnorm(277)=24000;
incomemean(277)=16000;
rents(277,1)=69.61428301919331;
rents(277,2)=49.31011713859561;
rents(277,3)=70.47505621145771;
rents(277,4)=96.9520878040833;
rents(277,5)=125.43069395830078;
rents(277,6)=158.45488757997867;
rents(277,7)=186.29653771104188;
rents(277,8)=197.14312782033497;
rents(277,9)=200;
bref(278)=7000;
bnorm(278)=24000;
incomemean(278)=17000;
rents(278,1)=72.67021362846543;
rents(278,2)=51.47473465349653;
rents(278,3)=76.04934457259117;
rents(278,4)=107.28923676765685;
rents(278,5)=142.58717639658917;
rents(278,6)=180.5062570800723;
rents(278,7)=198.41468256906143;
rents(278,8)=200;
rents(278,9)=200;
bref(279)=7000;
bnorm(279)=24000;
incomemean(279)=18000;
rents(279,1)=74.1012389422131;
rents(279,2)=52.48837758406729;
rents(279,3)=80.77699306854075;
rents(279,4)=117.84257949274533;
rents(279,5)=162.27907705586748;
rents(279,6)=195.87129207123172;
rents(279,7)=199.95213615666717;
rents(279,8)=200;
rents(279,9)=200;
bref(280)=7000;
bnorm(280)=24000;
incomemean(280)=19000;
rents(280,1)=71.40235294541665;
rents(280,2)=50.57666666967034;
rents(280,3)=81.43254338307561;
rents(280,4)=123.52096266693846;
rents(280,5)=175.1386156190681;
rents(280,6)=199.82889461952968;
rents(280,7)=200;
rents(280,8)=200;
rents(280,9)=200;
bref(281)=7000;
bnorm(281)=26000;
incomemean(281)=10000;
rents(281,1)=74.7549459791728;
rents(281,2)=54.628614369395436;
rents(281,3)=61.6931805637242;
rents(281,4)=68.94997462566151;
rents(281,5)=75.35525079873916;
rents(281,6)=81.78232692252024;
rents(281,7)=88.01634239997693;
rents(281,8)=93.21823837695071;
rents(281,9)=98.37211815635551;
bref(282)=7000;
bnorm(282)=26000;
incomemean(282)=11000;
rents(282,1)=74.56481732179364;
rents(282,2)=54.48967419669552;
rents(282,3)=62.73470531746804;
rents(282,4)=70.37714329104242;
rents(282,5)=77.91382850521774;
rents(282,6)=85.52842926690143;
rents(282,7)=93.13312461166844;
rents(282,8)=99.7086963116728;
rents(282,9)=106.46865379899263;
bref(283)=7000;
bnorm(283)=26000;
incomemean(283)=12000;
rents(283,1)=71.20703982645065;
rents(283,2)=52.03591371932932;
rents(283,3)=61.93274336508988;
rents(283,4)=71.79358771403174;
rents(283,5)=81.35524925064868;
rents(283,6)=91.66129871243064;
rents(283,7)=101.57504272270037;
rents(283,8)=111.05358151959058;
rents(283,9)=120.29757144639763;
bref(284)=7000;
bnorm(284)=26000;
incomemean(284)=13000;
rents(284,1)=71.20616167388937;
rents(284,2)=52.035271992457645;
rents(284,3)=63.978497863895846;
rents(284,4)=76.79335811862471;
rents(284,5)=89.4337237192071;
rents(284,6)=103.05806018477304;
rents(284,7)=117.60042317126693;
rents(284,8)=130.87651183389298;
rents(284,9)=143.77036532003066;
bref(285)=7000;
bnorm(285)=26000;
incomemean(285)=14000;
rents(285,1)=71.84803707808648;
rents(285,2)=52.50433478783236;
rents(285,3)=66.96559618720715;
rents(285,4)=82.90048000660458;
rents(285,5)=99.16629017843938;
rents(285,6)=117.39279612839947;
rents(285,7)=135.3003886708338;
rents(285,8)=151.4597193299817;
rents(285,9)=164.8501115755013;
bref(286)=7000;
bnorm(286)=26000;
incomemean(286)=15000;
rents(286,1)=71.38391810699855;
rents(286,2)=52.16517092434481;
rents(286,3)=69.7768219518871;
rents(286,4)=91.24590114182732;
rents(286,5)=114.00745175416911;
rents(286,6)=138.31289852724308;
rents(286,7)=161.2086034923579;
rents(286,8)=180.35855390177932;
rents(286,9)=192.4363898649286;
bref(287)=7000;
bnorm(287)=26000;
incomemean(287)=16000;
rents(287,1)=71.41972347095762;
rents(287,2)=52.191336382622985;
rents(287,3)=72.15750052996671;
rents(287,4)=96.31591537344654;
rents(287,5)=123.27109296010337;
rents(287,6)=152.55396500176806;
rents(287,7)=182.36006170796688;
rents(287,8)=198.50583121859918;
rents(287,9)=199.71132431872417;
bref(288)=7000;
bnorm(288)=26000;
incomemean(288)=17000;
rents(288,1)=72.08862727388568;
rents(288,2)=52.68015070014709;
rents(288,3)=76.13418710209531;
rents(288,4)=104.39615799187743;
rents(288,5)=137.1641200143194;
rents(288,6)=173.00079921067845;
rents(288,7)=194.5126790539002;
rents(288,8)=199.62970028587645;
rents(288,9)=200;
bref(289)=7000;
bnorm(289)=26000;
incomemean(289)=18000;
rents(289,1)=70.62922812565748;
rents(289,2)=51.6136667072115;
rents(289,3)=77.47473258877598;
rents(289,4)=111.45249806415588;
rents(289,5)=150.71576111120567;
rents(289,6)=189.1952006770568;
rents(289,7)=199.89970424033243;
rents(289,8)=200;
rents(289,9)=200;
bref(290)=7000;
bnorm(290)=26000;
incomemean(290)=19000;
rents(290,1)=71.12028259769036;
rents(290,2)=51.972514206004305;
rents(290,3)=80.63059932887661;
rents(290,4)=119.48213361073091;
rents(290,5)=165.40205067240285;
rents(290,6)=198.20042035552663;
rents(290,7)=200;
rents(290,8)=200;
rents(290,9)=200;
bref(291)=7000;
bnorm(291)=28000;
incomemean(291)=10000;
rents(291,1)=72.00676271489337;
rents(291,2)=54.0050720361701;
rents(291,3)=60.962890230243396;
rents(291,4)=68.16168657088157;
rents(291,5)=74.66373099048884;
rents(291,6)=81.41508181606909;
rents(291,7)=88.14333755872484;
rents(291,8)=94.1426034499322;
rents(291,9)=99.73744777235603;
bref(292)=7000;
bnorm(292)=28000;
incomemean(292)=11000;
rents(292,1)=74.83287009472613;
rents(292,2)=56.124652571044344;
rents(292,3)=63.5375947937269;
rents(292,4)=71.06005595260591;
rents(292,5)=77.99613273811354;
rents(292,6)=84.72625904702898;
rents(292,7)=91.58999468381958;
rents(292,8)=97.44589081360313;
rents(292,9)=103.28391551715646;
bref(293)=7000;
bnorm(293)=28000;
incomemean(293)=12000;
rents(293,1)=74.11358804675156;
rents(293,2)=55.585191035063815;
rents(293,3)=64.9891070884352;
rents(293,4)=74.19369617662292;
rents(293,5)=83.28881322361939;
rents(293,6)=93.17799549489288;
rents(293,7)=103.03010235768822;
rents(293,8)=111.74075363692371;
rents(293,9)=119.45180908994115;
bref(294)=7000;
bnorm(294)=28000;
incomemean(294)=13000;
rents(294,1)=74.12892341987448;
rents(294,2)=55.59669256490581;
rents(294,3)=67.44109907552667;
rents(294,4)=80.07069074110265;
rents(294,5)=93.47899062628774;
rents(294,6)=107.6490878985186;
rents(294,7)=122.1448828114664;
rents(294,8)=134.1463716524015;
rents(294,9)=146.91621660080395;
bref(295)=7000;
bnorm(295)=28000;
incomemean(295)=14000;
rents(295,1)=72.89674323707193;
rents(295,2)=54.67255742780418;
rents(295,3)=68.37034631343285;
rents(295,4)=84.29539272605797;
rents(295,5)=100.12247656698332;
rents(295,6)=117.50759782728865;
rents(295,7)=134.41129087696456;
rents(295,8)=150.9407890040412;
rents(295,9)=165.04150164687834;
bref(296)=7000;
bnorm(296)=28000;
incomemean(296)=15000;
rents(296,1)=70.3790310080496;
rents(296,2)=52.7842732560375;
rents(296,3)=68.99170460873675;
rents(296,4)=87.6833486171439;
rents(296,5)=108.08876611856763;
rents(296,6)=129.3669699140709;
rents(296,7)=150.8983504180936;
rents(296,8)=169.33590615291257;
rents(296,9)=184.67128334280576;
bref(297)=7000;
bnorm(297)=28000;
incomemean(297)=16000;
rents(297,1)=73.78211297036891;
rents(297,2)=55.336584727776895;
rents(297,3)=74.53389477127384;
rents(297,4)=97.56809349279376;
rents(297,5)=122.72566349176994;
rents(297,6)=150.137268755575;
rents(297,7)=178.23394437910878;
rents(297,8)=194.44475653646677;
rents(297,9)=198.78654528567898;
bref(298)=7000;
bnorm(298)=28000;
incomemean(298)=17000;
rents(298,1)=73.65014634366749;
rents(298,2)=55.237609757750484;
rents(298,3)=77.70363795289282;
rents(298,4)=105.01599404470926;
rents(298,5)=135.8078735060374;
rents(298,6)=169.11433001267403;
rents(298,7)=196.17056562327195;
rents(298,8)=199.66713658064037;
rents(298,9)=200;
bref(299)=7000;
bnorm(299)=28000;
incomemean(299)=18000;
rents(299,1)=74.28240541861943;
rents(299,2)=55.71180406396501;
rents(299,3)=81.3405952677036;
rents(299,4)=114.55953475436796;
rents(299,5)=153.7895142216959;
rents(299,6)=188.77497025336015;
rents(299,7)=200;
rents(299,8)=200;
rents(299,9)=200;
bref(300)=7000;
bnorm(300)=28000;
incomemean(300)=19000;
rents(300,1)=73.8340175612833;
rents(300,2)=55.37551317096233;
rents(300,3)=82.91275928674834;
rents(300,4)=119.0098233496867;
rents(300,5)=160.47312320546365;
rents(300,6)=196.8927724147952;
rents(300,7)=199.60908727459878;
rents(300,8)=200;
rents(300,9)=200;
bref(301)=8000;
bnorm(301)=10000;
incomemean(301)=10000;
rents(301,1)=73.18000323042871;
rents(301,2)=14.636000646085778;
rents(301,3)=21.110232148583396;
rents(301,4)=29.549093447428966;
rents(301,5)=39.27152719522967;
rents(301,6)=50.80131350808152;
rents(301,7)=62.89629833521033;
rents(301,8)=70.17185748853144;
rents(301,9)=75.62805365856435;
bref(302)=8000;
bnorm(302)=10000;
incomemean(302)=11000;
rents(302,1)=74.05260545474964;
rents(302,2)=14.810521090949957;
rents(302,3)=23.20356334430158;
rents(302,4)=34.74827527742271;
rents(302,5)=49.3315017758694;
rents(302,6)=66.57658705868916;
rents(302,7)=81.28045982031428;
rents(302,8)=92.4147382987418;
rents(302,9)=100.51676358588159;
bref(303)=8000;
bnorm(303)=10000;
incomemean(303)=12000;
rents(303,1)=75.3933561122816;
rents(303,2)=15.078671222456343;
rents(303,3)=24.242059185080794;
rents(303,4)=38.064735098461234;
rents(303,5)=56.22877536285706;
rents(303,6)=77.32332689878476;
rents(303,7)=96.66642364781254;
rents(303,8)=112.19176338455672;
rents(303,9)=124.39583932444052;
bref(304)=8000;
bnorm(304)=10000;
incomemean(304)=13000;
rents(304,1)=71.31266874034037;
rents(304,2)=14.26253374806806;
rents(304,3)=24.94952700004341;
rents(304,4)=41.95546391589852;
rents(304,5)=65.66180309803318;
rents(304,6)=93.18824123357513;
rents(304,7)=121.9295212100885;
rents(304,8)=139.69597275684106;
rents(304,9)=154.22030867568498;
bref(305)=8000;
bnorm(305)=10000;
incomemean(305)=14000;
rents(305,1)=71.87527088907031;
rents(305,2)=14.37505417781395;
rents(305,3)=26.32003331558605;
rents(305,4)=46.19261068051894;
rents(305,5)=74.75980376084023;
rents(305,6)=112.88790124991708;
rents(305,7)=150.1102722540585;
rents(305,8)=174.5370127654973;
rents(305,9)=184.25478613112892;
bref(306)=8000;
bnorm(306)=10000;
incomemean(306)=15000;
rents(306,1)=72.1948072700475;
rents(306,2)=14.438961454009581;
rents(306,3)=27.918226048447444;
rents(306,4)=51.53729132987457;
rents(306,5)=86.53362503170155;
rents(306,6)=131.2933555521209;
rents(306,7)=169.52618048327332;
rents(306,8)=192.90355296387136;
rents(306,9)=198.12470858638042;
bref(307)=8000;
bnorm(307)=10000;
incomemean(307)=16000;
rents(307,1)=72.99524754949579;
rents(307,2)=14.599049509899134;
rents(307,3)=31.260609412013007;
rents(307,4)=63.74755136447661;
rents(307,5)=115.85324619518349;
rents(307,6)=183.09968818299077;
rents(307,7)=199.93952640165514;
rents(307,8)=200;
rents(307,9)=200;
bref(308)=8000;
bnorm(308)=10000;
incomemean(308)=17000;
rents(308,1)=70.84708318072023;
rents(308,2)=14.169416636144025;
rents(308,3)=32.04173523854728;
rents(308,4)=68.58718513089312;
rents(308,5)=129.27033675855023;
rents(308,6)=196.4838176451526;
rents(308,7)=200;
rents(308,8)=200;
rents(308,9)=200;
bref(309)=8000;
bnorm(309)=10000;
incomemean(309)=18000;
rents(309,1)=72.23811273970485;
rents(309,2)=14.447622547940913;
rents(309,3)=34.20226066354656;
rents(309,4)=76.27656288179011;
rents(309,5)=152.45642244510861;
rents(309,6)=200;
rents(309,7)=200;
rents(309,8)=200;
rents(309,9)=200;
bref(310)=8000;
bnorm(310)=10000;
incomemean(310)=19000;
rents(310,1)=73.20059623224384;
rents(310,2)=14.640119246448764;
rents(310,3)=36.869620650740835;
rents(310,4)=88.11404396997783;
rents(310,5)=181.29953371239702;
rents(310,6)=200;
rents(310,7)=200;
rents(310,8)=200;
rents(310,9)=200;
bref(311)=8000;
bnorm(311)=12000;
incomemean(311)=10000;
rents(311,1)=71.78531410378919;
rents(311,2)=23.92843803459639;
rents(311,3)=32.428785477831035;
rents(311,4)=42.37404572862274;
rents(311,5)=52.585779405005525;
rents(311,6)=63.63729166531318;
rents(311,7)=72.40389907251323;
rents(311,8)=78.9703875956043;
rents(311,9)=82.88756198050638;
bref(312)=8000;
bnorm(312)=12000;
incomemean(312)=11000;
rents(312,1)=73.32598538795683;
rents(312,2)=24.441995129318965;
rents(312,3)=34.05427079471804;
rents(312,4)=45.81965517471638;
rents(312,5)=58.349761551217384;
rents(312,6)=71.33361826393406;
rents(312,7)=83.28133896666908;
rents(312,8)=93.0797506549814;
rents(312,9)=99.99280281788694;
bref(313)=8000;
bnorm(313)=12000;
incomemean(313)=12000;
rents(313,1)=70.99050822556538;
rents(313,2)=23.66350274185532;
rents(313,3)=35.00802552630273;
rents(313,4)=49.18750296960507;
rents(313,5)=64.81922459621026;
rents(313,6)=81.41261297773686;
rents(313,7)=95.22525805289871;
rents(313,8)=106.10370393324311;
rents(313,9)=115.93212899953103;
bref(314)=8000;
bnorm(314)=12000;
incomemean(314)=13000;
rents(314,1)=74.50093116436481;
rents(314,2)=24.83364372145509;
rents(314,3)=39.00831729332072;
rents(314,4)=57.88159549305651;
rents(314,5)=78.90239896175567;
rents(314,6)=102.90461196996812;
rents(314,7)=126.9227392835251;
rents(314,8)=142.06459513631444;
rents(314,9)=151.07908469523258;
bref(315)=8000;
bnorm(315)=12000;
incomemean(315)=14000;
rents(315,1)=71.65986649852313;
rents(315,2)=23.88662216617444;
rents(315,3)=38.97788833601687;
rents(315,4)=60.50070469640289;
rents(315,5)=86.25384454232513;
rents(315,6)=115.77266800669426;
rents(315,7)=145.10547046238312;
rents(315,8)=164.86559111717608;
rents(315,9)=176.01284861939013;
bref(316)=8000;
bnorm(316)=12000;
incomemean(316)=15000;
rents(316,1)=73.6039972460141;
rents(316,2)=24.534665748671394;
rents(316,3)=43.54663939369996;
rents(316,4)=73.22869397513821;
rents(316,5)=110.68367844958357;
rents(316,6)=152.67429789932496;
rents(316,7)=184.8793249556918;
rents(316,8)=195.0609392945631;
rents(316,9)=198.364915282031;
bref(317)=8000;
bnorm(317)=12000;
incomemean(317)=16000;
rents(317,1)=70.22500092047005;
rents(317,2)=23.408333640156695;
rents(317,3)=44.911791060371606;
rents(317,4)=80.45391468032355;
rents(317,5)=130.333210492397;
rents(317,6)=184.77955248562662;
rents(317,7)=200;
rents(317,8)=200;
rents(317,9)=200;
bref(318)=8000;
bnorm(318)=12000;
incomemean(318)=17000;
rents(318,1)=75.0795863917888;
rents(318,2)=25.026528797262827;
rents(318,3)=49.73975749111138;
rents(318,4)=91.70018222651282;
rents(318,5)=152.44747763688287;
rents(318,6)=197.02971098828084;
rents(318,7)=200;
rents(318,8)=200;
rents(318,9)=200;
bref(319)=8000;
bnorm(319)=12000;
incomemean(319)=18000;
rents(319,1)=74.36125338659842;
rents(319,2)=24.787084462199424;
rents(319,3)=52.61329763998171;
rents(319,4)=104.86936291064193;
rents(319,5)=175.9569346377864;
rents(319,6)=199.96667137057636;
rents(319,7)=200;
rents(319,8)=200;
rents(319,9)=200;
bref(320)=8000;
bnorm(320)=12000;
incomemean(320)=19000;
rents(320,1)=72.91130082308784;
rents(320,2)=24.30376694102915;
rents(320,3)=53.57314904782021;
rents(320,4)=109.58496504078607;
rents(320,5)=191.20193583739157;
rents(320,6)=200;
rents(320,7)=200;
rents(320,8)=200;
rents(320,9)=200;
bref(321)=8000;
bnorm(321)=14000;
incomemean(321)=10000;
rents(321,1)=73.24005579507484;
rents(321,2)=31.388595340746498;
rents(321,3)=39.49291703222843;
rents(321,4)=48.6611130902303;
rents(321,5)=56.604082650780484;
rents(321,6)=64.69303957977766;
rents(321,7)=72.32242484578572;
rents(321,8)=77.02468391482674;
rents(321,9)=79.91840764721074;
bref(322)=8000;
bnorm(322)=14000;
incomemean(322)=11000;
rents(322,1)=71.25033048768073;
rents(322,2)=30.535855923292015;
rents(322,3)=40.48291234404055;
rents(322,4)=51.45801977072092;
rents(322,5)=62.38963899507681;
rents(322,6)=73.21121803090217;
rents(322,7)=82.15261708983216;
rents(322,8)=87.46251003438654;
rents(322,9)=93.48100589763416;
bref(323)=8000;
bnorm(323)=14000;
incomemean(323)=12000;
rents(323,1)=74.36644840556953;
rents(323,2)=31.871335030958342;
rents(323,3)=43.80353654362295;
rents(323,4)=57.92623970009065;
rents(323,5)=71.90440165778142;
rents(323,6)=86.12235236140259;
rents(323,7)=98.43276584273029;
rents(323,8)=109.04627460387812;
rents(323,9)=118.74537510806341;
bref(324)=8000;
bnorm(324)=14000;
incomemean(324)=13000;
rents(324,1)=71.74338610973618;
rents(324,2)=30.747165475601033;
rents(324,3)=44.63572572584973;
rents(324,4)=61.058475393448425;
rents(324,5)=79.1061414272043;
rents(324,6)=97.11121852987398;
rents(324,7)=114.57603230463715;
rents(324,8)=128.19282042265687;
rents(324,9)=138.04076015574938;
bref(325)=8000;
bnorm(325)=14000;
incomemean(325)=14000;
rents(325,1)=71.4466448674984;
rents(325,2)=30.619990657499454;
rents(325,3)=46.73975464559182;
rents(325,4)=69.0484497816707;
rents(325,5)=92.9824073286269;
rents(325,6)=118.85244241455094;
rents(325,7)=146.32776785588698;
rents(325,8)=164.49902479331232;
rents(325,9)=176.1807883047025;
bref(326)=8000;
bnorm(326)=14000;
incomemean(326)=15000;
rents(326,1)=72.87074630277633;
rents(326,2)=31.230319844046846;
rents(326,3)=50.87718934219017;
rents(326,4)=78.26657608830621;
rents(326,5)=111.40474635859292;
rents(326,6)=147.58136550002558;
rents(326,7)=177.53904450023072;
rents(326,8)=194.05299873483824;
rents(326,9)=198.04236847368674;
bref(327)=8000;
bnorm(327)=14000;
incomemean(327)=16000;
rents(327,1)=71.9674743008645;
rents(327,2)=30.843203271799368;
rents(327,3)=53.406356691142484;
rents(327,4)=86.36325145393461;
rents(327,5)=127.3333031288409;
rents(327,6)=172.56203247731355;
rents(327,7)=196.17279045055122;
rents(327,8)=199.49386367269514;
rents(327,9)=200;
bref(328)=8000;
bnorm(328)=14000;
incomemean(328)=17000;
rents(328,1)=71.61767739619012;
rents(328,2)=30.69329031265292;
rents(328,3)=55.82933318334136;
rents(328,4)=95.18918671385075;
rents(328,5)=146.44350143078537;
rents(328,6)=196.88941403906148;
rents(328,7)=200;
rents(328,8)=200;
rents(328,9)=200;
bref(329)=8000;
bnorm(329)=14000;
incomemean(329)=18000;
rents(329,1)=73.36039785629329;
rents(329,2)=31.440170509840158;
rents(329,3)=60.83811424144224;
rents(329,4)=108.6946597191037;
rents(329,5)=171.2117809244345;
rents(329,6)=199.93043952461093;
rents(329,7)=200;
rents(329,8)=200;
rents(329,9)=200;
bref(330)=8000;
bnorm(330)=14000;
incomemean(330)=19000;
rents(330,1)=73.55427018056355;
rents(330,2)=31.523258648813165;
rents(330,3)=63.55808165604734;
rents(330,4)=119.74371167060339;
rents(330,5)=189.04054782951897;
rents(330,6)=200;
rents(330,7)=200;
rents(330,8)=200;
rents(330,9)=200;
bref(331)=8000;
bnorm(331)=16000;
incomemean(331)=10000;
rents(331,1)=71.34767033625002;
rents(331,2)=35.673835168125066;
rents(331,3)=43.52111064903489;
rents(331,4)=51.36811522066984;
rents(331,5)=58.281068796280834;
rents(331,6)=65.5147047477443;
rents(331,7)=71.07851828993934;
rents(331,8)=75.24693953981976;
rents(331,9)=79.35728525889613;
bref(332)=8000;
bnorm(332)=16000;
incomemean(332)=11000;
rents(332,1)=69.92335447406074;
rents(332,2)=34.96167723703041;
rents(332,3)=44.25973341023037;
rents(332,4)=53.99558316741146;
rents(332,5)=63.893124975656626;
rents(332,6)=74.04925129094475;
rents(332,7)=83.3104497045119;
rents(332,8)=90.05776880476282;
rents(332,9)=96.69429948486768;
bref(333)=8000;
bnorm(333)=16000;
incomemean(333)=12000;
rents(333,1)=72.53081198487723;
rents(333,2)=36.26540599243858;
rents(333,3)=48.12343683358837;
rents(333,4)=61.04639654827416;
rents(333,5)=74.17388732688524;
rents(333,6)=87.41109004015307;
rents(333,7)=100.61229739857481;
rents(333,8)=111.98432429464394;
rents(333,9)=121.1215272173889;
bref(334)=8000;
bnorm(334)=16000;
incomemean(334)=13000;
rents(334,1)=72.38010518539863;
rents(334,2)=36.190052592699296;
rents(334,3)=49.3090478290261;
rents(334,4)=64.1403471957907;
rents(334,5)=79.31034949851833;
rents(334,6)=95.07226739762737;
rents(334,7)=110.59977684784216;
rents(334,8)=124.01150108897792;
rents(334,9)=135.55661170833542;
bref(335)=8000;
bnorm(335)=16000;
incomemean(335)=14000;
rents(335,1)=69.66845269107459;
rents(335,2)=34.8342263455373;
rents(335,3)=50.76643280611179;
rents(335,4)=70.55784799534821;
rents(335,5)=91.91342300305605;
rents(335,6)=116.3430107322934;
rents(335,7)=141.57532376606463;
rents(335,8)=162.68316787624508;
rents(335,9)=176.4065202926508;
bref(336)=8000;
bnorm(336)=16000;
incomemean(336)=15000;
rents(336,1)=74.28162101043436;
rents(336,2)=37.140810505217146;
rents(336,3)=56.42147658990664;
rents(336,4)=83.01018995654096;
rents(336,5)=111.93572504539297;
rents(336,6)=144.55841359439538;
rents(336,7)=171.60273391439796;
rents(336,8)=185.9778564767696;
rents(336,9)=195.42344089709408;
bref(337)=8000;
bnorm(337)=16000;
incomemean(337)=16000;
rents(337,1)=74.47652709307818;
rents(337,2)=37.23826354653911;
rents(337,3)=60.514433285674386;
rents(337,4)=91.97697159929206;
rents(337,5)=127.51593467701387;
rents(337,6)=167.51366415443164;
rents(337,7)=194.6030315911069;
rents(337,8)=200;
rents(337,9)=200;
bref(338)=8000;
bnorm(338)=16000;
incomemean(338)=17000;
rents(338,1)=71.73097124859106;
rents(338,2)=35.86548562429549;
rents(338,3)=60.90159515732891;
rents(338,4)=96.32320774494474;
rents(338,5)=140.66070906475977;
rents(338,6)=185.06042744545636;
rents(338,7)=199.62280921249257;
rents(338,8)=200;
rents(338,9)=200;
bref(339)=8000;
bnorm(339)=16000;
incomemean(339)=18000;
rents(339,1)=70.54080947922478;
rents(339,2)=35.27040473961237;
rents(339,3)=63.31580632382919;
rents(339,4)=107.37501589156453;
rents(339,5)=163.30635407056346;
rents(339,6)=199.668243250537;
rents(339,7)=200;
rents(339,8)=200;
rents(339,9)=200;
bref(340)=8000;
bnorm(340)=16000;
incomemean(340)=19000;
rents(340,1)=72.15476970476298;
rents(340,2)=36.07738485238149;
rents(340,3)=68.77520341734423;
rents(340,4)=122.15671929750161;
rents(340,5)=192.09413271924203;
rents(340,6)=200;
rents(340,7)=200;
rents(340,8)=200;
rents(340,9)=200;
bref(341)=8000;
bnorm(341)=18000;
incomemean(341)=10000;
rents(341,1)=73.06501512758476;
rents(341,2)=40.59167507088046;
rents(341,3)=48.14342764360756;
rents(341,4)=55.602076602081226;
rents(341,5)=62.5218565850044;
rents(341,6)=69.69026879398338;
rents(341,7)=75.79247112031246;
rents(341,8)=79.62210775646669;
rents(341,9)=83.01862480824397;
bref(342)=8000;
bnorm(342)=18000;
incomemean(342)=11000;
rents(342,1)=72.67494994791207;
rents(342,2)=40.374972193284606;
rents(342,3)=49.0404741436328;
rents(342,4)=57.84855629432828;
rents(342,5)=66.2688474672243;
rents(342,6)=73.94975099659987;
rents(342,7)=82.01622023673119;
rents(342,8)=86.76708735382195;
rents(342,9)=92.35814424794141;
bref(343)=8000;
bnorm(343)=18000;
incomemean(343)=12000;
rents(343,1)=73.8920466556322;
rents(343,2)=41.05113703090665;
rents(343,3)=51.37657944393649;
rents(343,4)=62.54368911980918;
rents(343,5)=73.14657150235814;
rents(343,6)=84.07590805648765;
rents(343,7)=94.271421630596;
rents(343,8)=102.25571824589719;
rents(343,9)=110.19218168372333;
bref(344)=8000;
bnorm(344)=18000;
incomemean(344)=13000;
rents(344,1)=72.86292301048705;
rents(344,2)=40.47940167249316;
rents(344,3)=53.657214403314704;
rents(344,4)=68.74345934695553;
rents(344,5)=84.60077509456603;
rents(344,6)=100.1010227454712;
rents(344,7)=115.47174990141697;
rents(344,8)=128.2205334976044;
rents(344,9)=137.78134779714364;
bref(345)=8000;
bnorm(345)=18000;
incomemean(345)=14000;
rents(345,1)=70.54341250942811;
rents(345,2)=39.1907847274603;
rents(345,3)=54.644979369429414;
rents(345,4)=73.46021273547697;
rents(345,5)=93.56100178184508;
rents(345,6)=115.46838910087754;
rents(345,7)=138.0233401678099;
rents(345,8)=154.94930387623702;
rents(345,9)=168.47276763654438;
bref(346)=8000;
bnorm(346)=18000;
incomemean(346)=15000;
rents(346,1)=72.00187105326457;
rents(346,2)=40.00103947403588;
rents(346,3)=58.36250248809999;
rents(346,4)=81.47934442596477;
rents(346,5)=107.25992013543902;
rents(346,6)=134.13619595002814;
rents(346,7)=159.4747495301643;
rents(346,8)=177.96578976459259;
rents(346,9)=190.3651960751013;
bref(347)=8000;
bnorm(347)=18000;
incomemean(347)=16000;
rents(347,1)=71.98878719533255;
rents(347,2)=39.99377066407324;
rents(347,3)=61.67095781959739;
rents(347,4)=90.60487462479227;
rents(347,5)=123.09512581962132;
rents(347,6)=159.29623615581457;
rents(347,7)=190.87833618414518;
rents(347,8)=198.1706957728152;
rents(347,9)=199.6649340493366;
bref(348)=8000;
bnorm(348)=18000;
incomemean(348)=17000;
rents(348,1)=74.52989169498426;
rents(348,2)=41.40549538610225;
rents(348,3)=66.57639804317756;
rents(348,4)=100.9861964157324;
rents(348,5)=141.76126393216057;
rents(348,6)=183.72853496787639;
rents(348,7)=198.87031414777456;
rents(348,8)=200;
rents(348,9)=200;
bref(349)=8000;
bnorm(349)=18000;
incomemean(349)=18000;
rents(349,1)=73.0742717748997;
rents(349,2)=40.5968176527221;
rents(349,3)=67.15788730757752;
rents(349,4)=104.76428947846193;
rents(349,5)=150.28939614524603;
rents(349,6)=193.25953052847578;
rents(349,7)=200;
rents(349,8)=200;
rents(349,9)=200;
bref(350)=8000;
bnorm(350)=18000;
incomemean(350)=19000;
rents(350,1)=72.71223888820734;
rents(350,2)=40.395688271226454;
rents(350,3)=71.9064112999717;
rents(350,4)=120.68268225751845;
rents(350,5)=179.26895370110216;
rents(350,6)=200;
rents(350,7)=200;
rents(350,8)=200;
rents(350,9)=200;
bref(351)=8000;
bnorm(351)=20000;
incomemean(351)=10000;
rents(351,1)=74.11854291250407;
rents(351,2)=44.47112574750242;
rents(351,3)=51.16899521179226;
rents(351,4)=57.289481242639674;
rents(351,5)=62.689985910246115;
rents(351,6)=68.47785808239809;
rents(351,7)=73.04053331342213;
rents(351,8)=76.22330246635403;
rents(351,9)=79.4008382484527;
bref(352)=8000;
bnorm(352)=20000;
incomemean(352)=11000;
rents(352,1)=71.01786549336916;
rents(352,2)=42.61071929602148;
rents(352,3)=50.70131095415213;
rents(352,4)=59.05165195123642;
rents(352,5)=66.54475329858987;
rents(352,6)=73.96075962890434;
rents(352,7)=80.28414639045135;
rents(352,8)=85.10176420126523;
rents(352,9)=90.35574112065824;
bref(353)=8000;
bnorm(353)=20000;
incomemean(353)=12000;
rents(353,1)=74.2316060230726;
rents(353,2)=44.53896361384356;
rents(353,3)=55.06338084853775;
rents(353,4)=66.08183561596287;
rents(353,5)=76.14179697566564;
rents(353,6)=86.30605698640501;
rents(353,7)=96.35826305911932;
rents(353,8)=105.56598992339805;
rents(353,9)=111.83341248549563;
bref(354)=8000;
bnorm(354)=20000;
incomemean(354)=13000;
rents(354,1)=73.65035375603533;
rents(354,2)=44.190212253621254;
rents(354,3)=55.686512845319655;
rents(354,4)=68.40433638722618;
rents(354,5)=81.22031080693047;
rents(354,6)=94.21131193717713;
rents(354,7)=106.46382726185738;
rents(354,8)=116.95775440874179;
rents(354,9)=125.78432225329588;
bref(355)=8000;
bnorm(355)=20000;
incomemean(355)=14000;
rents(355,1)=69.78594308457892;
rents(355,2)=41.87156585074736;
rents(355,3)=56.840732186302205;
rents(355,4)=73.76715974943164;
rents(355,5)=91.56385997273206;
rents(355,6)=110.8546706957592;
rents(355,7)=130.3194507171669;
rents(355,8)=146.64245199613316;
rents(355,9)=161.2678295398457;
bref(356)=8000;
bnorm(356)=20000;
incomemean(356)=15000;
rents(356,1)=75.68549202957328;
rents(356,2)=45.41129521774399;
rents(356,3)=63.27769629478572;
rents(356,4)=85.17902212132026;
rents(356,5)=107.93334051903308;
rents(356,6)=133.4427744753545;
rents(356,7)=157.36831948425728;
rents(356,8)=177.1245327382412;
rents(356,9)=187.36051788952676;
bref(357)=8000;
bnorm(357)=20000;
incomemean(357)=16000;
rents(357,1)=72.9818356244783;
rents(357,2)=43.78910137468713;
rents(357,3)=64.58786963192298;
rents(357,4)=90.38898924477958;
rents(357,5)=119.38108148375632;
rents(357,6)=151.74024788937515;
rents(357,7)=182.71555165875338;
rents(357,8)=197.1100588605287;
rents(357,9)=199.5904276303475;
bref(358)=8000;
bnorm(358)=20000;
incomemean(358)=17000;
rents(358,1)=72.93815911306622;
rents(358,2)=43.76289546783976;
rents(358,3)=67.49198519618652;
rents(358,4)=98.60779543381082;
rents(358,5)=134.3795484310194;
rents(358,6)=174.0502054518009;
rents(358,7)=195.4321380234916;
rents(358,8)=199.55526359539024;
rents(358,9)=200;
bref(359)=8000;
bnorm(359)=20000;
incomemean(359)=18000;
rents(359,1)=71.88117024893238;
rents(359,2)=43.12870214935932;
rents(359,3)=70.37393725770482;
rents(359,4)=107.66094144545366;
rents(359,5)=152.1985931345749;
rents(359,6)=194.3429719642832;
rents(359,7)=200;
rents(359,8)=200;
rents(359,9)=200;
bref(360)=8000;
bnorm(360)=20000;
incomemean(360)=19000;
rents(360,1)=71.20129611836303;
rents(360,2)=42.72077767101762;
rents(360,3)=72.82678423499924;
rents(360,4)=116.78575982229809;
rents(360,5)=169.6700936554325;
rents(360,6)=199.35919755575483;
rents(360,7)=200;
rents(360,8)=200;
rents(360,9)=200;
bref(361)=8000;
bnorm(361)=22000;
incomemean(361)=10000;
rents(361,1)=73.89479081825101;
rents(361,2)=47.02395779343279;
rents(361,3)=52.93052702817557;
rents(361,4)=58.32152972403567;
rents(361,5)=63.02421301108357;
rents(361,6)=67.96516201841192;
rents(361,7)=72.7155796490436;
rents(361,8)=75.52572317409657;
rents(361,9)=78.2113786207544;
bref(362)=8000;
bnorm(362)=22000;
incomemean(362)=11000;
rents(362,1)=71.99311829102024;
rents(362,2)=45.81380254883126;
rents(362,3)=53.470482542724106;
rents(362,4)=61.352186066228576;
rents(362,5)=67.66466818884157;
rents(362,6)=74.79424649143971;
rents(362,7)=81.03979363064553;
rents(362,8)=85.43967610431399;
rents(362,9)=90.07802945616115;
bref(363)=8000;
bnorm(363)=22000;
incomemean(363)=12000;
rents(363,1)=72.02262205151214;
rents(363,2)=45.832577669144264;
rents(363,3)=55.35975215070974;
rents(363,4)=65.21881647062649;
rents(363,5)=74.17995271103737;
rents(363,6)=83.32341420385445;
rents(363,7)=92.14460004974376;
rents(363,8)=99.14740653651668;
rents(363,9)=106.30095963725502;
bref(364)=8000;
bnorm(364)=22000;
incomemean(364)=13000;
rents(364,1)=73.452078372703;
rents(364,2)=46.742231691719994;
rents(364,3)=58.945578134411655;
rents(364,4)=71.6497287068784;
rents(364,5)=84.20979261798128;
rents(364,6)=98.41662445907754;
rents(364,7)=111.88987947350468;
rents(364,8)=122.39898612300033;
rents(364,9)=132.91727632020172;
bref(365)=8000;
bnorm(365)=22000;
incomemean(365)=14000;
rents(365,1)=72.98512060609366;
rents(365,2)=46.44507674933242;
rents(365,3)=60.78605628184461;
rents(365,4)=77.61454260088665;
rents(365,5)=94.87158625856122;
rents(365,6)=113.35744635903445;
rents(365,7)=133.31430507945095;
rents(365,8)=148.98682435049164;
rents(365,9)=163.06637966541265;
bref(366)=8000;
bnorm(366)=22000;
incomemean(366)=15000;
rents(366,1)=73.58165983203767;
rents(366,2)=46.82469262038783;
rents(366,3)=63.31875197988244;
rents(366,4)=83.01925067363325;
rents(366,5)=103.73281170856657;
rents(366,6)=126.73249364943655;
rents(366,7)=150.29161758855068;
rents(366,8)=169.2834679487244;
rents(366,9)=185.0050826867937;
bref(367)=8000;
bnorm(367)=22000;
incomemean(367)=16000;
rents(367,1)=71.50115217715184;
rents(367,2)=45.50073320364213;
rents(367,3)=64.6012606449725;
rents(367,4)=88.05363455685853;
rents(367,5)=113.35006589026654;
rents(367,6)=141.9230465476114;
rents(367,7)=171.41375619901106;
rents(367,8)=190.5645872283943;
rents(367,9)=197.47117701785888;
bref(368)=8000;
bnorm(368)=22000;
incomemean(368)=17000;
rents(368,1)=74.49966158446743;
rents(368,2)=47.408875553751884;
rents(368,3)=70.20263189203976;
rents(368,4)=99.14356659872251;
rents(368,5)=132.70358441408854;
rents(368,6)=168.89223949327985;
rents(368,7)=196.42458971666932;
rents(368,8)=199.79109788609043;
rents(368,9)=200;
bref(369)=8000;
bnorm(369)=22000;
incomemean(369)=18000;
rents(369,1)=72.51115979204775;
rents(369,2)=46.1434653222125;
rents(369,3)=72.27953018469931;
rents(369,4)=106.66589539009848;
rents(369,5)=146.36905738505405;
rents(369,6)=188.44054344854754;
rents(369,7)=199.5020331426814;
rents(369,8)=200;
rents(369,9)=200;
bref(370)=8000;
bnorm(370)=22000;
incomemean(370)=19000;
rents(370,1)=71.05434276355571;
rents(370,2)=45.21639994044416;
rents(370,3)=74.1943170279901;
rents(370,4)=114.56957341592899;
rents(370,5)=162.48160977705754;
rents(370,6)=197.8013881247796;
rents(370,7)=200;
rents(370,8)=200;
rents(370,9)=200;
bref(371)=8000;
bnorm(371)=24000;
incomemean(371)=10000;
rents(371,1)=72.66278532110836;
rents(371,2)=48.44185688073883;
rents(371,3)=53.85633314406429;
rents(371,4)=58.927296091049385;
rents(371,5)=62.8622114508888;
rents(371,6)=67.4358051447086;
rents(371,7)=71.57616085685532;
rents(371,8)=74.30329911532243;
rents(371,9)=76.57466462775021;
bref(372)=8000;
bnorm(372)=24000;
incomemean(372)=11000;
rents(372,1)=72.7005695459705;
rents(372,2)=48.46704636398042;
rents(372,3)=55.27423603261903;
rents(372,4)=62.2134561238969;
rents(372,5)=68.38424620238652;
rents(372,6)=74.1915952135515;
rents(372,7)=80.06242806757695;
rents(372,8)=84.74580880757755;
rents(372,9)=88.07964626859489;
bref(373)=8000;
bnorm(373)=24000;
incomemean(373)=12000;
rents(373,1)=71.1760319499063;
rents(373,2)=47.450687966604185;
rents(373,3)=56.15711851098546;
rents(373,4)=65.29882176494718;
rents(373,5)=73.81802226948932;
rents(373,6)=82.55922134483491;
rents(373,7)=90.72665182738419;
rents(373,8)=96.85518812690819;
rents(373,9)=103.20283766277308;
bref(374)=8000;
bnorm(374)=24000;
incomemean(374)=13000;
rents(374,1)=75.06147980616089;
rents(374,2)=50.04098653744043;
rents(374,3)=60.7668066946828;
rents(374,4)=71.59907076712597;
rents(374,5)=82.42724869138053;
rents(374,6)=92.61379297353223;
rents(374,7)=103.3246507817352;
rents(374,8)=112.49081166517324;
rents(374,9)=121.21377398540412;
bref(375)=8000;
bnorm(375)=24000;
incomemean(375)=14000;
rents(375,1)=74.11502337145872;
rents(375,2)=49.41001558097234;
rents(375,3)=61.93245776856223;
rents(375,4)=75.55817653181323;
rents(375,5)=89.63944473708688;
rents(375,6)=104.60527275918989;
rents(375,7)=119.2692842438497;
rents(375,8)=130.66099137676431;
rents(375,9)=141.78293389063853;
bref(376)=8000;
bnorm(376)=24000;
incomemean(376)=15000;
rents(376,1)=73.25299172043474;
rents(376,2)=48.83532781362289;
rents(376,3)=64.96238384352378;
rents(376,4)=84.41289242306318;
rents(376,5)=104.27993385669458;
rents(376,6)=124.72916153756758;
rents(376,7)=145.1164170300747;
rents(376,8)=162.7309772658515;
rents(376,9)=178.65724576980844;
bref(377)=8000;
bnorm(377)=24000;
incomemean(377)=16000;
rents(377,1)=71.85097604994618;
rents(377,2)=47.900650699964466;
rents(377,3)=66.06718957663372;
rents(377,4)=88.56593856664806;
rents(377,5)=113.16808919684631;
rents(377,6)=140.2727635590598;
rents(377,7)=167.83201318165075;
rents(377,8)=188.98527839827932;
rents(377,9)=197.62857084466958;
bref(378)=8000;
bnorm(378)=24000;
incomemean(378)=17000;
rents(378,1)=70.91634969919686;
rents(378,2)=47.27756646613125;
rents(378,3)=68.17653012947007;
rents(378,4)=93.91049138539621;
rents(378,5)=123.75055409916416;
rents(378,6)=155.36807697179287;
rents(378,7)=184.37978911146917;
rents(378,8)=197.95297998566647;
rents(378,9)=199.71734218975823;
bref(379)=8000;
bnorm(379)=24000;
incomemean(379)=18000;
rents(379,1)=70.93105294439938;
rents(379,2)=47.28736862959996;
rents(379,3)=71.8226050801077;
rents(379,4)=104.6279114386821;
rents(379,5)=144.14607522671184;
rents(379,6)=185.0572204679788;
rents(379,7)=199.29388902408303;
rents(379,8)=200;
rents(379,9)=200;
bref(380)=8000;
bnorm(380)=24000;
incomemean(380)=19000;
rents(380,1)=72.24337370792051;
rents(380,2)=48.16224913861386;
rents(380,3)=74.95015977247246;
rents(380,4)=112.09914193138815;
rents(380,5)=154.3706941220769;
rents(380,6)=196.1153871183715;
rents(380,7)=200;
rents(380,8)=200;
rents(380,9)=200;
bref(381)=8000;
bnorm(381)=26000;
incomemean(381)=10000;
rents(381,1)=73.40153621133616;
rents(381,2)=50.81644814630935;
rents(381,3)=55.4356541564566;
rents(381,4)=60.17722632313962;
rents(381,5)=64.17339796535855;
rents(381,6)=68.13527634087113;
rents(381,7)=71.86059864287597;
rents(381,8)=74.3465962340232;
rents(381,9)=77.33247740614587;
bref(382)=8000;
bnorm(382)=26000;
incomemean(382)=11000;
rents(382,1)=71.98891319188233;
rents(382,2)=49.838478363610825;
rents(382,3)=56.10699579895738;
rents(382,4)=62.223358499599975;
rents(382,5)=67.28493907474011;
rents(382,6)=73.06740669466424;
rents(382,7)=78.27592096570152;
rents(382,8)=82.74906823192308;
rents(382,9)=86.50775877692206;
bref(383)=8000;
bnorm(383)=26000;
incomemean(383)=12000;
rents(383,1)=74.72532210535167;
rents(383,2)=51.73291530370534;
rents(383,3)=59.86577327959377;
rents(383,4)=67.65539209016644;
rents(383,5)=75.38019388204289;
rents(383,6)=82.90173562063174;
rents(383,7)=89.51260536415893;
rents(383,8)=95.30345475444761;
rents(383,9)=100.60109855234273;
bref(384)=8000;
bnorm(384)=26000;
incomemean(384)=13000;
rents(384,1)=73.84185438622856;
rents(384,2)=51.121283805850204;
rents(384,3)=61.406474302091276;
rents(384,4)=72.22508784186462;
rents(384,5)=82.85408564229753;
rents(384,6)=93.55187224709418;
rents(384,7)=103.87308989881527;
rents(384,8)=112.82290662868186;
rents(384,9)=122.66553001163352;
bref(385)=8000;
bnorm(385)=26000;
incomemean(385)=14000;
rents(385,1)=72.66541114470043;
rents(385,2)=50.30682310017719;
rents(385,3)=62.48719145637723;
rents(385,4)=76.09683593539984;
rents(385,5)=89.64934699073949;
rents(385,6)=103.79879289250471;
rents(385,7)=118.22578419117684;
rents(385,8)=131.60745356104243;
rents(385,9)=144.46429106800488;
bref(386)=8000;
bnorm(386)=26000;
incomemean(386)=15000;
rents(386,1)=71.56556395288742;
rents(386,2)=49.54539042892213;
rents(386,3)=64.69731116778715;
rents(386,4)=81.15385529553797;
rents(386,5)=98.29393900337125;
rents(386,6)=117.42482676928189;
rents(386,7)=136.71706550172598;
rents(386,8)=153.54705857585526;
rents(386,9)=168.6446265222757;
bref(387)=8000;
bnorm(387)=26000;
incomemean(387)=16000;
rents(387,1)=73.63741021645633;
rents(387,2)=50.979745534469785;
rents(387,3)=68.46961079758448;
rents(387,4)=88.85593424004456;
rents(387,5)=111.68462923122136;
rents(387,6)=135.64471822182315;
rents(387,7)=160.88433364455082;
rents(387,8)=181.10651983710264;
rents(387,9)=194.27818713733365;
bref(388)=8000;
bnorm(388)=26000;
incomemean(388)=17000;
rents(388,1)=73.05993843302937;
rents(388,2)=50.57995737671261;
rents(388,3)=71.0306277986332;
rents(388,4)=96.38324084955337;
rents(388,5)=124.92318255554272;
rents(388,6)=156.51934214054145;
rents(388,7)=185.19770550709455;
rents(388,8)=197.8025231328079;
rents(388,9)=199.64093354584404;
bref(389)=8000;
bnorm(389)=26000;
incomemean(389)=18000;
rents(389,1)=71.35957324115242;
rents(389,2)=49.402781474644094;
rents(389,3)=72.40844414165775;
rents(389,4)=102.22401144372166;
rents(389,5)=136.9604298462221;
rents(389,6)=173.61177698279081;
rents(389,7)=196.82655496830287;
rents(389,8)=199.73891250954205;
rents(389,9)=200;
bref(390)=8000;
bnorm(390)=26000;
incomemean(390)=19000;
rents(390,1)=71.1728222838257;
rents(390,2)=49.27349235034086;
rents(390,3)=74.65390067780966;
rents(390,4)=108.53593997220622;
rents(390,5)=149.82190201487268;
rents(390,6)=185.84717147968357;
rents(390,7)=199.46126386544137;
rents(390,8)=200;
rents(390,9)=200;
bref(391)=8000;
bnorm(391)=28000;
incomemean(391)=10000;
rents(391,1)=71.40270361625147;
rents(391,2)=51.00193115446539;
rents(391,3)=56.13983752553171;
rents(391,4)=60.79385352069344;
rents(391,5)=64.8318762658036;
rents(391,6)=69.17463843331191;
rents(391,7)=73.30520046929531;
rents(391,8)=76.52727603137866;
rents(391,9)=79.48912568383977;
bref(392)=8000;
bnorm(392)=28000;
incomemean(392)=11000;
rents(392,1)=73.10124981661022;
rents(392,2)=52.21517844043581;
rents(392,3)=57.83888362262655;
rents(392,4)=63.68510311183987;
rents(392,5)=68.84806940523174;
rents(392,6)=73.94422784350614;
rents(392,7)=79.09141433735849;
rents(392,8)=83.15038038973042;
rents(392,9)=86.10373294261554;
bref(393)=8000;
bnorm(393)=28000;
incomemean(393)=12000;
rents(393,1)=71.6231241977136;
rents(393,2)=51.159374426938435;
rents(393,3)=58.41386381055822;
rents(393,4)=65.6129220604855;
rents(393,5)=72.54200857211414;
rents(393,6)=79.78007322743399;
rents(393,7)=86.90690707258602;
rents(393,8)=92.62116240694573;
rents(393,9)=98.12571192843927;
bref(394)=8000;
bnorm(394)=28000;
incomemean(394)=13000;
rents(394,1)=71.30107916669367;
rents(394,2)=50.929342261924035;
rents(394,3)=59.949157217163844;
rents(394,4)=69.57361871976387;
rents(394,5)=79.04637483898519;
rents(394,6)=88.55257831586653;
rents(394,7)=98.0618001041382;
rents(394,8)=106.70773491496547;
rents(394,9)=114.9567091130452;
bref(395)=8000;
bnorm(395)=28000;
incomemean(395)=14000;
rents(395,1)=72.98517045631468;
rents(395,2)=52.13226461165336;
rents(395,3)=63.7626328837987;
rents(395,4)=76.06733348243446;
rents(395,5)=89.07204629774179;
rents(395,6)=102.56986941080686;
rents(395,7)=116.39670229421485;
rents(395,8)=128.46858628179305;
rents(395,9)=138.60459935703307;
bref(396)=8000;
bnorm(396)=28000;
incomemean(396)=15000;
rents(396,1)=71.96845166357642;
rents(396,2)=51.40603690255469;
rents(396,3)=65.88828113001564;
rents(396,4)=81.94927007908744;
rents(396,5)=98.70287638768009;
rents(396,6)=117.03858190613576;
rents(396,7)=135.2305737250432;
rents(396,8)=152.11840058980104;
rents(396,9)=166.50456382087975;
bref(397)=8000;
bnorm(397)=28000;
incomemean(397)=16000;
rents(397,1)=70.66379026820128;
rents(397,2)=50.47413590585823;
rents(397,3)=67.0338597512658;
rents(397,4)=86.20646982928758;
rents(397,5)=106.7810699676359;
rents(397,6)=129.9007873528267;
rents(397,7)=153.92982572072597;
rents(397,8)=172.88854663302567;
rents(397,9)=188.24832048560808;
bref(398)=8000;
bnorm(398)=28000;
incomemean(398)=17000;
rents(398,1)=73.96797381392287;
rents(398,2)=52.834267009944554;
rents(398,3)=71.63703829584897;
rents(398,4)=94.50257147198494;
rents(398,5)=120.08583525663707;
rents(398,6)=148.34140890804096;
rents(398,7)=176.28339815858226;
rents(398,8)=192.52599980133246;
rents(398,9)=198.54726480337274;
bref(399)=8000;
bnorm(399)=28000;
incomemean(399)=18000;
rents(399,1)=70.61367666823122;
rents(399,2)=50.43834047730794;
rents(399,3)=72.68149522362879;
rents(399,4)=100.47587520313888;
rents(399,5)=132.7305542195117;
rents(399,6)=170.47052755076706;
rents(399,7)=196.651348111167;
rents(399,8)=200;
rents(399,9)=200;
bref(400)=8000;
bnorm(400)=28000;
incomemean(400)=19000;
rents(400,1)=72.34648792409656;
rents(400,2)=51.676062802926516;
rents(400,3)=75.17395723211416;
rents(400,4)=106.35242590665135;
rents(400,5)=142.58814602904928;
rents(400,6)=181.98540665232372;
rents(400,7)=199.5714886956628;
rents(400,8)=200;
rents(400,9)=200;
bref(401)=9000;
bnorm(401)=10000;
incomemean(401)=10000;
rents(401,1)=72.66538556699736;
rents(401,2)=7.266538556699747;
rents(401,3)=10.235883265597721;
rents(401,4)=14.09094938651599;
rents(401,5)=19.065125422146203;
rents(401,6)=25.10130608679224;
rents(401,7)=33.10555887060603;
rents(401,8)=40.4281712825738;
rents(401,9)=47.31949664410183;
bref(402)=9000;
bnorm(402)=10000;
incomemean(402)=11000;
rents(402,1)=73.0434258537256;
rents(402,2)=7.304342585372593;
rents(402,3)=11.045801475683453;
rents(402,4)=16.315090823189795;
rents(402,5)=23.1248767132366;
rents(402,6)=32.82049843662141;
rents(402,7)=44.32790427985772;
rents(402,8)=55.842690607615346;
rents(402,9)=65.0748151153425;
bref(403)=9000;
bnorm(403)=10000;
incomemean(403)=12000;
rents(403,1)=72.7502049591075;
rents(403,2)=7.27502049591072;
rents(403,3)=11.392812092209484;
rents(403,4)=17.36370599587395;
rents(403,5)=25.66958244807475;
rents(403,6)=37.50075908527247;
rents(403,7)=52.27567978368508;
rents(403,8)=66.01196083982386;
rents(403,9)=78.69728752607203;
bref(404)=9000;
bnorm(404)=10000;
incomemean(404)=13000;
rents(404,1)=75.27824680122195;
rents(404,2)=7.527824680122165;
rents(404,3)=12.681243588579997;
rents(404,4)=20.89969216462788;
rents(404,5)=32.54841927774866;
rents(404,6)=49.37842810575206;
rents(404,7)=69.98109149032625;
rents(404,8)=87.04627002381515;
rents(404,9)=100.00834098300552;
bref(405)=9000;
bnorm(405)=10000;
incomemean(405)=14000;
rents(405,1)=72.03990621011573;
rents(405,2)=7.20399062101159;
rents(405,3)=13.017785526061767;
rents(405,4)=22.684152530561207;
rents(405,5)=37.92405487838426;
rents(405,6)=60.36359782196011;
rents(405,7)=88.7241011792014;
rents(405,8)=113.18790859567427;
rents(405,9)=135.56591726572304;
bref(406)=9000;
bnorm(406)=10000;
incomemean(406)=15000;
rents(406,1)=71.94116727345308;
rents(406,2)=7.1941167273452935;
rents(406,3)=13.95435109274909;
rents(406,4)=26.473384121744967;
rents(406,5)=46.99655998013651;
rents(406,6)=79.32669931279591;
rents(406,7)=117.89904088385192;
rents(406,8)=155.00331854485503;
rents(406,9)=180.5335544348155;
bref(407)=9000;
bnorm(407)=10000;
incomemean(407)=16000;
rents(407,1)=72.1149405956795;
rents(407,2)=7.211494059567967;
rents(407,3)=14.917532297122378;
rents(407,4)=29.948817586658357;
rents(407,5)=56.03025357129223;
rents(407,6)=98.46336023480659;
rents(407,7)=148.90408429016796;
rents(407,8)=187.00637443467352;
rents(407,9)=199.45387758594816;
bref(408)=9000;
bnorm(408)=10000;
incomemean(408)=17000;
rents(408,1)=71.90990984951965;
rents(408,2)=7.190990984951951;
rents(408,3)=15.500291369043639;
rents(408,4)=32.3999103880447;
rents(408,5)=64.17916015383148;
rents(408,6)=117.01803992246646;
rents(408,7)=179.69332608848407;
rents(408,8)=199.17894926123384;
rents(408,9)=199.94656878829716;
bref(409)=9000;
bnorm(409)=10000;
incomemean(409)=18000;
rents(409,1)=71.410777968255;
rents(409,2)=7.141077796825549;
rents(409,3)=16.862317158963236;
rents(409,4)=37.83705445820981;
rents(409,5)=81.09026531771786;
rents(409,6)=151.32157693492553;
rents(409,7)=199.47036792948467;
rents(409,8)=200;
rents(409,9)=200;
bref(410)=9000;
bnorm(410)=10000;
incomemean(410)=19000;
rents(410,1)=72.60846919311713;
rents(410,2)=7.260846919311654;
rents(410,3)=18.098891751979536;
rents(410,4)=43.70166173272233;
rents(410,5)=98.1530863691025;
rents(410,6)=188.7642096102019;
rents(410,7)=200;
rents(410,8)=200;
rents(410,9)=200;
bref(411)=9000;
bnorm(411)=12000;
incomemean(411)=10000;
rents(411,1)=72.73192362808882;
rents(411,2)=18.182980907022223;
rents(411,3)=23.71484802192968;
rents(411,4)=30.02336845403733;
rents(411,5)=36.16754581293837;
rents(411,6)=43.31244444714583;
rents(411,7)=49.86387113470927;
rents(411,8)=55.41795755076038;
rents(411,9)=59.844753483751475;
bref(412)=9000;
bnorm(412)=12000;
incomemean(412)=11000;
rents(412,1)=71.84773570051557;
rents(412,2)=17.961933925128886;
rents(412,3)=24.347890648218844;
rents(412,4)=31.843373238281238;
rents(412,5)=40.0170953031567;
rents(412,6)=48.72028721951876;
rents(412,7)=57.55270208543078;
rents(412,8)=63.93660668919573;
rents(412,9)=69.67158990815575;
bref(413)=9000;
bnorm(413)=12000;
incomemean(413)=12000;
rents(413,1)=70.50393197015646;
rents(413,2)=17.625982992539118;
rents(413,3)=24.932117313404174;
rents(413,4)=34.66035602857231;
rents(413,5)=45.577598052185145;
rents(413,6)=58.33734784690411;
rents(413,7)=70.88904450595938;
rents(413,8)=78.72148584081147;
rents(413,9)=84.65090983205037;
bref(414)=9000;
bnorm(414)=12000;
incomemean(414)=13000;
rents(414,1)=71.73075070364895;
rents(414,2)=17.93268767591224;
rents(414,3)=27.044371586334226;
rents(414,4)=39.60167211718768;
rents(414,5)=55.45538955623657;
rents(414,6)=74.58513852402325;
rents(414,7)=93.28692625021021;
rents(414,8)=107.89498426870108;
rents(414,9)=119.86550439491592;
bref(415)=9000;
bnorm(415)=12000;
incomemean(415)=14000;
rents(415,1)=74.7049404752748;
rents(415,2)=18.676235118818674;
rents(415,3)=29.87776357000004;
rents(415,4)=46.374321222155665;
rents(415,5)=67.65675411238898;
rents(415,6)=93.2012750836146;
rents(415,7)=119.03958466881352;
rents(415,8)=134.1476660982655;
rents(415,9)=144.85386319310462;
bref(416)=9000;
bnorm(416)=12000;
incomemean(416)=15000;
rents(416,1)=70.90986741640482;
rents(416,2)=17.7274668541012;
rents(416,3)=30.16561050402658;
rents(416,4)=49.41694267373728;
rents(416,5)=75.63538873766498;
rents(416,6)=107.67792460516485;
rents(416,7)=137.85220829926294;
rents(416,8)=161.74798400119002;
rents(416,9)=175.30789275536785;
bref(417)=9000;
bnorm(417)=12000;
incomemean(417)=16000;
rents(417,1)=70.7120120285939;
rents(417,2)=17.678003007148497;
rents(417,3)=32.78561336530647;
rents(417,4)=57.135997847036336;
rents(417,5)=91.69318093103102;
rents(417,6)=136.4296419574669;
rents(417,7)=179.00127129452824;
rents(417,8)=194.38766276767385;
rents(417,9)=199.7895353495797;
bref(418)=9000;
bnorm(418)=12000;
incomemean(418)=17000;
rents(418,1)=69.17807754133635;
rents(418,2)=17.29451938533407;
rents(418,3)=33.371967391623286;
rents(418,4)=60.995823363268364;
rents(418,5)=102.92221406771915;
rents(418,6)=155.23883822781454;
rents(418,7)=191.86141440350605;
rents(418,8)=199.2503783419055;
rents(418,9)=200;
bref(419)=9000;
bnorm(419)=12000;
incomemean(419)=18000;
rents(419,1)=72.11361406711433;
rents(419,2)=18.028403516778585;
rents(419,3)=37.212230045219066;
rents(419,4)=73.76630661990042;
rents(419,5)=131.0874934711714;
rents(419,6)=193.78150347814855;
rents(419,7)=200;
rents(419,8)=200;
rents(419,9)=200;
bref(420)=9000;
bnorm(420)=12000;
incomemean(420)=19000;
rents(420,1)=71.41231479313399;
rents(420,2)=17.853078698283536;
rents(420,3)=40.020623546965254;
rents(420,4)=83.03664683295507;
rents(420,5)=154.78173810951978;
rents(420,6)=198.78453899194068;
rents(420,7)=200;
rents(420,8)=200;
rents(420,9)=200;
bref(421)=9000;
bnorm(421)=14000;
incomemean(421)=10000;
rents(421,1)=71.72350410669641;
rents(421,2)=25.615537180963166;
rents(421,3)=30.782435861638554;
rents(421,4)=36.59601842889034;
rents(421,5)=41.741837818072575;
rents(421,6)=47.363915655573905;
rents(421,7)=52.126710680337986;
rents(421,8)=55.64485497183558;
rents(421,9)=58.15627978971721;
bref(422)=9000;
bnorm(422)=14000;
incomemean(422)=11000;
rents(422,1)=74.18251952232535;
rents(422,2)=26.493756972258936;
rents(422,3)=33.75159467626686;
rents(422,4)=41.5284608430172;
rents(422,5)=49.279433082970286;
rents(422,6)=57.4311443968015;
rents(422,7)=65.20192173407797;
rents(422,8)=70.60500374287152;
rents(422,9)=73.6725269138209;
bref(423)=9000;
bnorm(423)=14000;
incomemean(423)=12000;
rents(423,1)=73.43102512175797;
rents(423,2)=26.225366114913555;
rents(423,3)=35.106268675814604;
rents(423,4)=45.06922474780772;
rents(423,5)=56.00462188070815;
rents(423,6)=66.79071239874285;
rents(423,7)=76.78677347052052;
rents(423,8)=83.5943477637907;
rents(423,9)=88.13461227517718;
bref(424)=9000;
bnorm(424)=14000;
incomemean(424)=13000;
rents(424,1)=72.98583941427654;
rents(424,2)=26.066371219384475;
rents(424,3)=37.21542851649289;
rents(424,4)=50.779981680369126;
rents(424,5)=65.06593645540246;
rents(424,6)=79.77072787596224;
rents(424,7)=94.02733439104577;
rents(424,8)=105.92611041962125;
rents(424,9)=115.86262831281498;
bref(425)=9000;
bnorm(425)=14000;
incomemean(425)=14000;
rents(425,1)=75.89991913525537;
rents(425,2)=27.107113976876832;
rents(425,3)=40.38454653546646;
rents(425,4)=58.04165449372192;
rents(425,5)=78.02955574088718;
rents(425,6)=98.32519659263014;
rents(425,7)=120.16494145814104;
rents(425,8)=134.4340187944934;
rents(425,9)=143.69898856571433;
bref(426)=9000;
bnorm(426)=14000;
incomemean(426)=15000;
rents(426,1)=67.80286590787784;
rents(426,2)=24.215309252813253;
rents(426,3)=38.55753149670395;
rents(426,4)=58.4194515570745;
rents(426,5)=83.00028257620707;
rents(426,6)=111.19928766883856;
rents(426,7)=139.116575973671;
rents(426,8)=157.96108386084762;
rents(426,9)=174.7396742629536;
bref(427)=9000;
bnorm(427)=14000;
incomemean(427)=16000;
rents(427,1)=72.24826223402751;
rents(427,2)=25.8029507978671;
rents(427,3)=43.895830151326386;
rents(427,4)=70.43023222633894;
rents(427,5)=105.04792622329538;
rents(427,6)=144.2606708089596;
rents(427,7)=178.2902473937754;
rents(427,8)=194.88866170312957;
rents(427,9)=197.84343596211374;
bref(428)=9000;
bnorm(428)=14000;
incomemean(428)=17000;
rents(428,1)=71.1322997349143;
rents(428,2)=25.404392762469445;
rents(428,3)=46.06095107447119;
rents(428,4)=78.39517951736758;
rents(428,5)=121.3303783647139;
rents(428,6)=172.54088698343242;
rents(428,7)=198.9583802447336;
rents(428,8)=200;
rents(428,9)=200;
bref(429)=9000;
bnorm(429)=14000;
incomemean(429)=18000;
rents(429,1)=70.5086403535525;
rents(429,2)=25.18165726912594;
rents(429,3)=48.18329320489263;
rents(429,4)=86.27238663999005;
rents(429,5)=140.7728668353278;
rents(429,6)=195.0091125424329;
rents(429,7)=199.99578379842382;
rents(429,8)=200;
rents(429,9)=200;
bref(430)=9000;
bnorm(430)=14000;
incomemean(430)=19000;
rents(430,1)=71.04782541548047;
rents(430,2)=25.374223362671625;
rents(430,3)=50.272703054448606;
rents(430,4)=94.48222323887059;
rents(430,5)=160.46995713906554;
rents(430,6)=199.84505976235818;
rents(430,7)=200;
rents(430,8)=200;
rents(430,9)=200;
bref(431)=9000;
bnorm(431)=16000;
incomemean(431)=10000;
rents(431,1)=73.08075365558926;
rents(431,2)=31.972829724320363;
rents(431,3)=37.79420536605803;
rents(431,4)=43.50041934540899;
rents(431,5)=48.55616994625194;
rents(431,6)=54.0320616428811;
rents(431,7)=58.55848790923002;
rents(431,8)=61.598202810510976;
rents(431,9)=64.28083138845408;
bref(432)=9000;
bnorm(432)=16000;
incomemean(432)=11000;
rents(432,1)=72.33885641604617;
rents(432,2)=31.648249682020445;
rents(432,3)=38.47397794109583;
rents(432,4)=45.60533784224976;
rents(432,5)=52.2569852259777;
rents(432,6)=59.4071468162674;
rents(432,7)=66.51736079541985;
rents(432,8)=70.25086194374083;
rents(432,9)=73.96935852484461;
bref(433)=9000;
bnorm(433)=16000;
incomemean(433)=12000;
rents(433,1)=75.24144743686207;
rents(433,2)=32.91813325362731;
rents(433,3)=41.31346496858387;
rents(433,4)=51.00714552333362;
rents(433,5)=60.05043103479706;
rents(433,6)=69.21227432031726;
rents(433,7)=77.74352081791604;
rents(433,8)=82.8250143225073;
rents(433,9)=88.31830146501662;
bref(434)=9000;
bnorm(434)=16000;
incomemean(434)=13000;
rents(434,1)=72.26968981558598;
rents(434,2)=31.61798929431903;
rents(434,3)=42.41544062746308;
rents(434,4)=55.0420920597729;
rents(434,5)=67.99783670486048;
rents(434,6)=82.84917037620964;
rents(434,7)=96.22859324642111;
rents(434,8)=105.16651199183578;
rents(434,9)=113.83589580231506;
bref(435)=9000;
bnorm(435)=16000;
incomemean(435)=14000;
rents(435,1)=71.98498333993814;
rents(435,2)=31.49343021122281;
rents(435,3)=45.068471650265494;
rents(435,4)=62.0292812262616;
rents(435,5)=80.81812718140019;
rents(435,6)=100.47029891171326;
rents(435,7)=118.5975727355301;
rents(435,8)=132.76945718620274;
rents(435,9)=143.63541583335612;
bref(436)=9000;
bnorm(436)=16000;
incomemean(436)=15000;
rents(436,1)=74.40797224712685;
rents(436,2)=32.553487858118075;
rents(436,3)=48.07890034240361;
rents(436,4)=68.48535553738783;
rents(436,5)=91.36481778090457;
rents(436,6)=116.19068272822462;
rents(436,7)=138.9862668122832;
rents(436,8)=158.90484746968468;
rents(436,9)=172.51037082891284;
bref(437)=9000;
bnorm(437)=16000;
incomemean(437)=16000;
rents(437,1)=73.8452368249236;
rents(437,2)=32.30729111090394;
rents(437,3)=50.57076937202648;
rents(437,4)=74.65424583113905;
rents(437,5)=104.39299281652625;
rents(437,6)=137.14931804329737;
rents(437,7)=165.28881020098385;
rents(437,8)=181.85534520959283;
rents(437,9)=195.11724989350662;
bref(438)=9000;
bnorm(438)=16000;
incomemean(438)=17000;
rents(438,1)=71.78393207709841;
rents(438,2)=31.40547028373056;
rents(438,3)=51.6018752231246;
rents(438,4)=81.29084851327063;
rents(438,5)=116.99223604489735;
rents(438,6)=157.85557153987932;
rents(438,7)=191.30388081913358;
rents(438,8)=199.72226851656197;
rents(438,9)=199.9821735078531;
bref(439)=9000;
bnorm(439)=16000;
incomemean(439)=18000;
rents(439,1)=72.17766950774127;
rents(439,2)=31.577730409636597;
rents(439,3)=54.94219070850198;
rents(439,4)=90.52396129530364;
rents(439,5)=136.81426300028374;
rents(439,6)=186.50901214219047;
rents(439,7)=199.61032178812596;
rents(439,8)=200;
rents(439,9)=200;
bref(440)=9000;
bnorm(440)=16000;
incomemean(440)=19000;
rents(440,1)=72.66826479600194;
rents(440,2)=31.792365848250885;
rents(440,3)=57.99119821898693;
rents(440,4)=99.49837809785546;
rents(440,5)=154.86969293917926;
rents(440,6)=198.72881545375193;
rents(440,7)=200;
rents(440,8)=200;
rents(440,9)=200;
bref(441)=9000;
bnorm(441)=18000;
incomemean(441)=10000;
rents(441,1)=75.79920416373442;
rents(441,2)=37.89960208186721;
rents(441,3)=42.74694607386365;
rents(441,4)=47.33749703795062;
rents(441,5)=51.596771210476874;
rents(441,6)=55.77053678739633;
rents(441,7)=58.86198954308342;
rents(441,8)=61.12220524705866;
rents(441,9)=62.8061165484853;
bref(442)=9000;
bnorm(442)=18000;
incomemean(442)=11000;
rents(442,1)=71.4539758162888;
rents(442,2)=35.726987908144444;
rents(442,3)=41.764775736774915;
rents(442,4)=48.13173001742358;
rents(442,5)=53.48335278049751;
rents(442,6)=58.98217232788992;
rents(442,7)=64.3524573619024;
rents(442,8)=67.81109596944523;
rents(442,9)=71.27373516871499;
bref(443)=9000;
bnorm(443)=18000;
incomemean(443)=12000;
rents(443,1)=69.9633803484857;
rents(443,2)=34.98169017424291;
rents(443,3)=42.971018670823256;
rents(443,4)=51.17017769190734;
rents(443,5)=58.983229824606916;
rents(443,6)=66.40406429928073;
rents(443,7)=73.1803678945309;
rents(443,8)=78.19220395482745;
rents(443,9)=84.06058053866514;
bref(444)=9000;
bnorm(444)=18000;
incomemean(444)=13000;
rents(444,1)=73.98029336076611;
rents(444,2)=36.99014668038301;
rents(444,3)=47.1285608169852;
rents(444,4)=58.482510970284025;
rents(444,5)=68.8681756662671;
rents(444,6)=79.35319513848141;
rents(444,7)=89.90593337482896;
rents(444,8)=98.12298813210062;
rents(444,9)=105.71117740937157;
bref(445)=9000;
bnorm(445)=18000;
incomemean(445)=14000;
rents(445,1)=72.04181424270669;
rents(445,2)=36.02090712135339;
rents(445,3)=48.47509629410881;
rents(445,4)=63.00424657285818;
rents(445,5)=78.11919901528285;
rents(445,6)=93.37226279673231;
rents(445,7)=109.5306971764685;
rents(445,8)=123.78238991412285;
rents(445,9)=135.1777725241253;
bref(446)=9000;
bnorm(446)=18000;
incomemean(446)=15000;
rents(446,1)=70.4597349969373;
rents(446,2)=35.22986749846859;
rents(446,3)=49.57134793240748;
rents(446,4)=67.6102473094725;
rents(446,5)=87.05501628332578;
rents(446,6)=109.49034814650068;
rents(446,7)=128.2689804127276;
rents(446,8)=145.72817581913176;
rents(446,9)=156.3176900439479;
bref(447)=9000;
bnorm(447)=18000;
incomemean(447)=16000;
rents(447,1)=70.83215361817236;
rents(447,2)=35.41607680908624;
rents(447,3)=52.61111557215005;
rents(447,4)=74.71088478691424;
rents(447,5)=100.61404633090957;
rents(447,6)=128.95991166855308;
rents(447,7)=155.56474604077908;
rents(447,8)=175.8116709663038;
rents(447,9)=188.7570028538488;
bref(448)=9000;
bnorm(448)=18000;
incomemean(448)=17000;
rents(448,1)=72.92671823459938;
rents(448,2)=36.46335911729978;
rents(448,3)=57.734298924939054;
rents(448,4)=86.52671468773538;
rents(448,5)=121.29616437711567;
rents(448,6)=159.18233438003824;
rents(448,7)=189.96049801406426;
rents(448,8)=198.33686941764978;
rents(448,9)=199.8636893795057;
bref(449)=9000;
bnorm(449)=18000;
incomemean(449)=18000;
rents(449,1)=73.42493258590567;
rents(449,2)=36.71246629295288;
rents(449,3)=60.93071649112351;
rents(449,4)=96.95391770227222;
rents(449,5)=141.96619909860203;
rents(449,6)=188.4087464700412;
rents(449,7)=200;
rents(449,8)=200;
rents(449,9)=200;
bref(450)=9000;
bnorm(450)=18000;
incomemean(450)=19000;
rents(450,1)=71.19435393924194;
rents(450,2)=35.59717696962096;
rents(450,3)=61.62592686490255;
rents(450,4)=100.57987724618346;
rents(450,5)=149.81889527458247;
rents(450,6)=195.9696159891269;
rents(450,7)=200;
rents(450,8)=200;
rents(450,9)=200;
bref(451)=9000;
bnorm(451)=20000;
incomemean(451)=10000;
rents(451,1)=71.7683528743894;
rents(451,2)=39.47259408091399;
rents(451,3)=43.95164979749047;
rents(451,4)=48.23116671052118;
rents(451,5)=52.07969565811098;
rents(451,6)=55.943925437902585;
rents(451,7)=59.522134651732706;
rents(451,8)=61.713066460328875;
rents(451,9)=63.38215563316966;
bref(452)=9000;
bnorm(452)=20000;
incomemean(452)=11000;
rents(452,1)=76.64472040476232;
rents(452,2)=42.154596222619425;
rents(452,3)=47.59109112343246;
rents(452,4)=52.83818149857958;
rents(452,5)=57.85189597444138;
rents(452,6)=63.06328341602362;
rents(452,7)=67.33544967672493;
rents(452,8)=70.28797902583136;
rents(452,9)=72.5000432609721;
bref(453)=9000;
bnorm(453)=20000;
incomemean(453)=12000;
rents(453,1)=71.75996456827615;
rents(453,2)=39.46798051255185;
rents(453,3)=47.27452905698853;
rents(453,4)=55.27908932151353;
rents(453,5)=62.34195928530964;
rents(453,6)=69.89480045218293;
rents(453,7)=76.74014105657537;
rents(453,8)=82.39092994008843;
rents(453,9)=85.97293037668472;
bref(454)=9000;
bnorm(454)=20000;
incomemean(454)=13000;
rents(454,1)=70.13507379439956;
rents(454,2)=38.574290586920085;
rents(454,3)=48.390549531090294;
rents(454,4)=58.692928652764095;
rents(454,5)=68.56946006098354;
rents(454,6)=78.89586178285295;
rents(454,7)=88.45482162160425;
rents(454,8)=95.67089139830479;
rents(454,9)=102.56181761516346;
bref(455)=9000;
bnorm(455)=20000;
incomemean(455)=14000;
rents(455,1)=73.41044077384826;
rents(455,2)=40.37574242561669;
rents(455,3)=51.825349755152935;
rents(455,4)=64.31115745918703;
rents(455,5)=78.00765813510603;
rents(455,6)=91.01696762096171;
rents(455,7)=104.12050672308969;
rents(455,8)=115.45988183279918;
rents(455,9)=123.60632027215965;
bref(456)=9000;
bnorm(456)=20000;
incomemean(456)=15000;
rents(456,1)=73.05895017207618;
rents(456,2)=40.18242259464208;
rents(456,3)=55.007735134895945;
rents(456,4)=72.4254351054949;
rents(456,5)=90.31210168981434;
rents(456,6)=109.1618823664286;
rents(456,7)=128.3999716495454;
rents(456,8)=142.36992227475082;
rents(456,9)=155.0350515999669;
bref(457)=9000;
bnorm(457)=20000;
incomemean(457)=16000;
rents(457,1)=73.20379998432774;
rents(457,2)=40.2620899913804;
rents(457,3)=58.23134051305355;
rents(457,4)=80.82778334199409;
rents(457,5)=104.94985986309754;
rents(457,6)=132.61735747396213;
rents(457,7)=158.32289793981437;
rents(457,8)=179.5860566014542;
rents(457,9)=192.56767384824457;
bref(458)=9000;
bnorm(458)=20000;
incomemean(458)=17000;
rents(458,1)=73.09919013076117;
rents(458,2)=40.204554571918614;
rents(458,3)=61.02169961297054;
rents(458,4)=87.97842607719181;
rents(458,5)=119.40913663896845;
rents(458,6)=153.5374902246464;
rents(458,7)=186.68426525747338;
rents(458,8)=197.43477546199816;
rents(458,9)=199.3347698118954;
bref(459)=9000;
bnorm(459)=20000;
incomemean(459)=18000;
rents(459,1)=72.6809531554081;
rents(459,2)=39.974524235474625;
rents(459,3)=63.44292086333228;
rents(459,4)=96.0627891970308;
rents(459,5)=134.13201582941468;
rents(459,6)=176.01931760787886;
rents(459,7)=195.96829240628315;
rents(459,8)=200;
rents(459,9)=200;
bref(460)=9000;
bnorm(460)=20000;
incomemean(460)=19000;
rents(460,1)=74.36982457456969;
rents(460,2)=40.903403516013285;
rents(460,3)=67.01900646922518;
rents(460,4)=104.35985070662208;
rents(460,5)=147.93893805521995;
rents(460,6)=191.34443529627734;
rents(460,7)=199.91284650156356;
rents(460,8)=200;
rents(460,9)=200;
bref(461)=9000;
bnorm(461)=22000;
incomemean(461)=10000;
rents(461,1)=74.42389028039149;
rents(461,2)=43.97775334750392;
rents(461,3)=48.20334991251189;
rents(461,4)=52.081117139651546;
rents(461,5)=55.15322533512706;
rents(461,6)=58.61009741669112;
rents(461,7)=61.40380615756824;
rents(461,8)=62.89659892857433;
rents(461,9)=64.08552474688058;
bref(462)=9000;
bnorm(462)=22000;
incomemean(462)=11000;
rents(462,1)=71.65018919844816;
rents(462,2)=42.33874816271931;
rents(462,3)=48.00928945702368;
rents(462,4)=53.44073958151045;
rents(462,5)=58.40343585624678;
rents(462,6)=63.11807203575243;
rents(462,7)=67.36466793037778;
rents(462,8)=69.87684837726273;
rents(462,9)=71.82818466104223;
bref(463)=9000;
bnorm(463)=22000;
incomemean(463)=12000;
rents(463,1)=73.04108011872825;
rents(463,2)=43.16063825197588;
rents(463,3)=50.26659556267095;
rents(463,4)=57.25667339921352;
rents(463,5)=62.840481507427555;
rents(463,6)=68.95414693483755;
rents(463,7)=74.82341738120769;
rents(463,8)=79.93348419393048;
rents(463,9)=84.60064412816072;
bref(464)=9000;
bnorm(464)=22000;
incomemean(464)=13000;
rents(464,1)=70.21952230178674;
rents(464,2)=41.49335408741956;
rents(464,3)=50.67613780576114;
rents(464,4)=59.94853842918433;
rents(464,5)=68.75406200812476;
rents(464,6)=78.1660517389847;
rents(464,7)=86.76388583825702;
rents(464,8)=93.52238079919097;
rents(464,9)=99.77314743842963;
bref(465)=9000;
bnorm(465)=22000;
incomemean(465)=14000;
rents(465,1)=73.17542953948416;
rents(465,2)=43.240026546059234;
rents(465,3)=53.99815980484706;
rents(465,4)=65.25661970788018;
rents(465,5)=77.09080551025754;
rents(465,6)=88.72583297209498;
rents(465,7)=100.3281007691528;
rents(465,8)=111.42678190745451;
rents(465,9)=119.7282720287315;
bref(466)=9000;
bnorm(466)=22000;
incomemean(466)=15000;
rents(466,1)=75.10694968558205;
rents(466,2)=44.38137935966189;
rents(466,3)=58.93160484504041;
rents(466,4)=75.80820372017537;
rents(466,5)=93.11788063173552;
rents(466,6)=111.98084437167721;
rents(466,7)=131.00683841553308;
rents(466,8)=146.21907675236093;
rents(466,9)=160.478985399849;
bref(467)=9000;
bnorm(467)=22000;
incomemean(467)=16000;
rents(467,1)=71.68323684543094;
rents(467,2)=42.35827631775433;
rents(467,3)=58.86390258252394;
rents(467,4)=78.97855666898944;
rents(467,5)=101.31785948122564;
rents(467,6)=126.20630777571752;
rents(467,7)=150.65904142038625;
rents(467,8)=170.48755589296837;
rents(467,9)=185.067662449705;
bref(468)=9000;
bnorm(468)=22000;
incomemean(468)=17000;
rents(468,1)=71.848732040325;
rents(468,2)=42.456068932919486;
rents(468,3)=61.56227425543218;
rents(468,4)=85.49327744156132;
rents(468,5)=112.26721946022879;
rents(468,6)=142.5476800178578;
rents(468,7)=171.14201439561973;
rents(468,8)=188.33744270400302;
rents(468,9)=196.95061509042193;
bref(469)=9000;
bnorm(469)=22000;
incomemean(469)=18000;
rents(469,1)=73.53968157931178;
rents(469,2)=43.45526638777518;
rents(469,3)=64.78240529293788;
rents(469,4)=92.87390408642177;
rents(469,5)=126.01552882484006;
rents(469,6)=162.95711077375915;
rents(469,7)=192.3719244827462;
rents(469,8)=198.87938540072676;
rents(469,9)=199.98383563064183;
bref(470)=9000;
bnorm(470)=22000;
incomemean(470)=19000;
rents(470,1)=75.59960862237946;
rents(470,2)=44.67249600413339;
rents(470,3)=69.58608495567768;
rents(470,4)=103.93065270263376;
rents(470,5)=144.9861810887868;
rents(470,6)=183.83898799544812;
rents(470,7)=199.79860139444875;
rents(470,8)=200;
rents(470,9)=200;
bref(471)=9000;
bnorm(471)=24000;
incomemean(471)=10000;
rents(471,1)=71.1281369590658;
rents(471,2)=44.455085599415845;
rents(471,3)=48.08454609794638;
rents(471,4)=51.24843540252604;
rents(471,5)=53.88727706905623;
rents(471,6)=56.54079575017764;
rents(471,7)=59.14360253218588;
rents(471,8)=60.58674205895813;
rents(471,9)=61.96558671013282;
bref(472)=9000;
bnorm(472)=24000;
incomemean(472)=11000;
rents(472,1)=73.07985195649026;
rents(472,2)=45.67490747280666;
rents(472,3)=50.63624625033595;
rents(472,4)=55.33187963551972;
rents(472,5)=59.88924988218054;
rents(472,6)=64.12888414255549;
rents(472,7)=68.18455912901;
rents(472,8)=70.73947195413034;
rents(472,9)=73.61206485206391;
bref(473)=9000;
bnorm(473)=24000;
incomemean(473)=12000;
rents(473,1)=70.03914684826636;
rents(473,2)=43.77446678016633;
rents(473,3)=50.51413584911773;
rents(473,4)=57.0098870976421;
rents(473,5)=62.92241608794123;
rents(473,6)=68.83627984974522;
rents(473,7)=74.87527806255459;
rents(473,8)=78.89275294367344;
rents(473,9)=82.98579363453769;
bref(474)=9000;
bnorm(474)=24000;
incomemean(474)=13000;
rents(474,1)=73.03890836781918;
rents(474,2)=45.64931772988684;
rents(474,3)=54.43062121440716;
rents(474,4)=63.5765766426759;
rents(474,5)=71.67137956147019;
rents(474,6)=80.04984602421575;
rents(474,7)=88.90909531705914;
rents(474,8)=95.5306811693596;
rents(474,9)=102.73067599400252;
bref(475)=9000;
bnorm(475)=24000;
incomemean(475)=14000;
rents(475,1)=71.30945795266778;
rents(475,2)=44.56841122041742;
rents(475,3)=55.21154391235421;
rents(475,4)=66.59441645116743;
rents(475,5)=78.45353227819962;
rents(475,6)=90.18551424044314;
rents(475,7)=101.77940304295451;
rents(475,8)=111.3539124243977;
rents(475,9)=121.2089613645314;
bref(476)=9000;
bnorm(476)=24000;
incomemean(476)=15000;
rents(476,1)=72.20898703267406;
rents(476,2)=45.13061689542142;
rents(476,3)=58.00339943891695;
rents(476,4)=72.7180244752228;
rents(476,5)=87.51809767431384;
rents(476,6)=102.7555964000172;
rents(476,7)=118.48285547752108;
rents(476,8)=131.5661035569344;
rents(476,9)=145.1133154701639;
bref(477)=9000;
bnorm(477)=24000;
incomemean(477)=16000;
rents(477,1)=71.84044237211135;
rents(477,2)=44.90027648256989;
rents(477,3)=60.41092696732841;
rents(477,4)=78.52616855201686;
rents(477,5)=98.43573215049493;
rents(477,6)=119.36447671763104;
rents(477,7)=140.18554347407277;
rents(477,8)=156.7043002483525;
rents(477,9)=170.94022285648754;
bref(478)=9000;
bnorm(478)=24000;
incomemean(478)=17000;
rents(478,1)=73.44580783053348;
rents(478,2)=45.90362989408338;
rents(478,3)=64.60490797564147;
rents(478,4)=87.73069453263645;
rents(478,5)=112.84565544354408;
rents(478,6)=139.76036282625674;
rents(478,7)=166.4492276754626;
rents(478,8)=186.57487698491207;
rents(478,9)=195.9207734573169;
bref(479)=9000;
bnorm(479)=24000;
incomemean(479)=18000;
rents(479,1)=71.98505647929333;
rents(479,2)=44.99066029955812;
rents(479,3)=65.87551941285787;
rents(479,4)=92.32286522077784;
rents(479,5)=123.60862047206774;
rents(479,6)=157.87641316133042;
rents(479,7)=189.099828164101;
rents(479,8)=199.32319373909252;
rents(479,9)=199.97601378979545;
bref(480)=9000;
bnorm(480)=24000;
incomemean(480)=19000;
rents(480,1)=74.73273000637806;
rents(480,2)=46.707956253986055;
rents(480,3)=70.86883961994036;
rents(480,4)=103.0610452495317;
rents(480,5)=140.78760604250297;
rents(480,6)=181.9659824538677;
rents(480,7)=198.05000233666436;
rents(480,8)=199.77109320228143;
rents(480,9)=200;
bref(481)=9000;
bnorm(481)=26000;
incomemean(481)=10000;
rents(481,1)=71.22432739691723;
rents(481,2)=46.56975252875344;
rents(481,3)=49.869074947885856;
rents(481,4)=53.17701550612549;
rents(481,5)=55.51324948142209;
rents(481,6)=58.200672377193634;
rents(481,7)=60.45636707909238;
rents(481,8)=61.89719544518817;
rents(481,9)=62.64477580854124;
bref(482)=9000;
bnorm(482)=26000;
incomemean(482)=11000;
rents(482,1)=73.49700292279115;
rents(482,2)=48.055732680286475;
rents(482,3)=52.44229008186133;
rents(482,4)=56.70483399295891;
rents(482,5)=60.49631725302126;
rents(482,6)=63.99210803196321;
rents(482,7)=67.51978299986543;
rents(482,8)=69.51774592211375;
rents(482,9)=71.27957848545576;
bref(483)=9000;
bnorm(483)=26000;
incomemean(483)=12000;
rents(483,1)=73.90850402210894;
rents(483,2)=48.324791091378394;
rents(483,3)=55.04955800762291;
rents(483,4)=61.418373495829655;
rents(483,5)=67.04435796457639;
rents(483,6)=73.1471545355648;
rents(483,7)=78.45164205440639;
rents(483,8)=82.7482680109891;
rents(483,9)=86.53760157883548;
bref(484)=9000;
bnorm(484)=26000;
incomemean(484)=13000;
rents(484,1)=73.67531231671404;
rents(484,2)=48.17231959169752;
rents(484,3)=56.37885747095496;
rents(484,4)=64.62389746051538;
rents(484,5)=73.05409560881074;
rents(484,6)=80.85445564394485;
rents(484,7)=88.42551364655327;
rents(484,8)=94.41844905564427;
rents(484,9)=101.13833513288847;
bref(485)=9000;
bnorm(485)=26000;
incomemean(485)=14000;
rents(485,1)=73.45699065424319;
rents(485,2)=48.0295708123898;
rents(485,3)=58.783075205129364;
rents(485,4)=69.76834478968405;
rents(485,5)=80.64483927504776;
rents(485,6)=92.30907849074245;
rents(485,7)=104.04488612717518;
rents(485,8)=114.4202867145495;
rents(485,9)=123.61805453138257;
bref(486)=9000;
bnorm(486)=26000;
incomemean(486)=15000;
rents(486,1)=75.3645296299261;
rents(486,2)=49.276807834951654;
rents(486,3)=62.05627089719925;
rents(486,4)=76.30742806482498;
rents(486,5)=90.38337897802226;
rents(486,6)=105.852458969924;
rents(486,7)=121.0450709785718;
rents(486,8)=134.65300862986626;
rents(486,9)=146.331532367196;
bref(487)=9000;
bnorm(487)=26000;
incomemean(487)=16000;
rents(487,1)=71.89111030676969;
rents(487,2)=47.005725969810996;
rents(487,3)=62.24825808489776;
rents(487,4)=80.29573400534748;
rents(487,5)=99.6357049112656;
rents(487,6)=120.37106773098525;
rents(487,7)=141.17036415188076;
rents(487,8)=158.78316491435746;
rents(487,9)=173.50305648987177;
bref(488)=9000;
bnorm(488)=26000;
incomemean(488)=17000;
rents(488,1)=71.63708485767857;
rents(488,2)=46.8396324069439;
rents(488,3)=63.14127221617898;
rents(488,4)=82.60223345990627;
rents(488,5)=103.38020921986868;
rents(488,6)=127.40246039164232;
rents(488,7)=152.39183802041237;
rents(488,8)=171.6385044215349;
rents(488,9)=188.33938979694668;
bref(489)=9000;
bnorm(489)=26000;
incomemean(489)=18000;
rents(489,1)=73.65475372319004;
rents(489,2)=48.15887743439347;
rents(489,3)=68.87459451577764;
rents(489,4)=95.4886969302957;
rents(489,5)=125.05956988368351;
rents(489,6)=157.81928785610972;
rents(489,7)=187.69143744947917;
rents(489,8)=198.12543391341424;
rents(489,9)=199.82391471802347;
bref(490)=9000;
bnorm(490)=26000;
incomemean(490)=19000;
rents(490,1)=71.77933294774168;
rents(490,2)=46.93264077352362;
rents(490,3)=69.36451533752941;
rents(490,4)=98.73015819796073;
rents(490,5)=132.8425069965988;
rents(490,6)=171.1844819005333;
rents(490,7)=196.56337638197996;
rents(490,8)=200;
rents(490,9)=200;
bref(491)=9000;
bnorm(491)=28000;
incomemean(491)=10000;
rents(491,1)=72.56896347850446;
rents(491,2)=49.243225217556606;
rents(491,3)=52.06954198969648;
rents(491,4)=54.595805140018406;
rents(491,5)=56.817021906375686;
rents(491,6)=59.169015992556;
rents(491,7)=61.29209327817053;
rents(491,8)=62.63860326614635;
rents(491,9)=63.798343309809034;
bref(492)=9000;
bnorm(492)=28000;
incomemean(492)=11000;
rents(492,1)=73.23845124322152;
rents(492,2)=49.69752048647192;
rents(492,3)=53.73846257510126;
rents(492,4)=57.38410013795231;
rents(492,5)=60.53868304922832;
rents(492,6)=63.695168562556866;
rents(492,7)=66.67162346362664;
rents(492,8)=68.86574432779265;
rents(492,9)=70.60024780907189;
bref(493)=9000;
bnorm(493)=28000;
incomemean(493)=12000;
rents(493,1)=70.55813001744862;
rents(493,2)=47.878731083268725;
rents(493,3)=53.45306268104924;
rents(493,4)=59.223660097483794;
rents(493,5)=64.52970581839382;
rents(493,6)=69.84172100728918;
rents(493,7)=74.58155025642306;
rents(493,8)=78.43603201911478;
rents(493,9)=82.17518775264274;
bref(494)=9000;
bnorm(494)=28000;
incomemean(494)=13000;
rents(494,1)=72.31105576214658;
rents(494,2)=49.068216410028036;
rents(494,3)=56.832326621735945;
rents(494,4)=64.70118292768848;
rents(494,5)=72.07600892458001;
rents(494,6)=79.47011397766747;
rents(494,7)=86.15497939682206;
rents(494,8)=91.7638799768726;
rents(494,9)=97.374216142789;
bref(495)=9000;
bnorm(495)=28000;
incomemean(495)=14000;
rents(495,1)=73.02595246191079;
rents(495,2)=49.55332488486804;
rents(495,3)=59.70896377240794;
rents(495,4)=70.40957915168624;
rents(495,5)=81.22102047611065;
rents(495,6)=91.61323013819448;
rents(495,7)=102.30522651732439;
rents(495,8)=111.75231398130938;
rents(495,9)=120.59475055054584;
bref(496)=9000;
bnorm(496)=28000;
incomemean(496)=15000;
rents(496,1)=73.64387196615411;
rents(496,2)=49.97262740560453;
rents(496,3)=62.281254504373344;
rents(496,4)=75.1718948133529;
rents(496,5)=88.81936439222096;
rents(496,6)=103.12320009910265;
rents(496,7)=117.25602369757118;
rents(496,8)=128.23301322957872;
rents(496,9)=139.239054597608;
bref(497)=9000;
bnorm(497)=28000;
incomemean(497)=16000;
rents(497,1)=72.47553340542359;
rents(497,2)=49.179826239394565;
rents(497,3)=63.0272840440403;
rents(497,4)=79.55229486447529;
rents(497,5)=96.78495348408703;
rents(497,6)=115.64739137455955;
rents(497,7)=134.6655871964048;
rents(497,8)=151.37091494093988;
rents(497,9)=164.48515512232734;
bref(498)=9000;
bnorm(498)=28000;
incomemean(498)=17000;
rents(498,1)=71.41364796199237;
rents(498,2)=48.45926111706617;
rents(498,3)=64.96584679336725;
rents(498,4)=84.74033642490011;
rents(498,5)=105.77603436509762;
rents(498,6)=129.43164001031698;
rents(498,7)=152.27804252790142;
rents(498,8)=171.7723535050068;
rents(498,9)=185.63228121567656;
bref(499)=9000;
bnorm(499)=28000;
incomemean(499)=18000;
rents(499,1)=73.45417685790375;
rents(499,2)=49.84390572500621;
rents(499,3)=69.59320342848895;
rents(499,4)=92.92712152337461;
rents(499,5)=120.73436673790124;
rents(499,6)=151.04855253192227;
rents(499,7)=179.87049923145497;
rents(499,8)=194.6579223109716;
rents(499,9)=199.42950938337353;
bref(500)=9000;
bnorm(500)=28000;
incomemean(500)=19000;
rents(500,1)=74.59291877003946;
rents(500,2)=50.61662345109845;
rents(500,3)=73.74241506214243;
rents(500,4)=102.97317220044252;
rents(500,5)=136.9124768139215;
rents(500,6)=173.21784575706806;
rents(500,7)=196.1888786334515;
rents(500,8)=200;
rents(500,9)=200;
bref(501)=10000;
bnorm(501)=10000;
incomemean(501)=10000;
rents(501,1)=73.94857608108566;
rents(501,2)=0;
rents(501,3)=0;
rents(501,4)=0;
rents(501,5)=0;
rents(501,6)=0;
rents(501,7)=0;
rents(501,8)=0;
rents(501,9)=0;
bref(502)=10000;
bnorm(502)=10000;
incomemean(502)=11000;
rents(502,1)=74.18743173187609;
rents(502,2)=0;
rents(502,3)=0;
rents(502,4)=0;
rents(502,5)=0;
rents(502,6)=0;
rents(502,7)=0;
rents(502,8)=0;
rents(502,9)=0;
bref(503)=10000;
bnorm(503)=10000;
incomemean(503)=12000;
rents(503,1)=74.61461121363783;
rents(503,2)=0;
rents(503,3)=0;
rents(503,4)=0;
rents(503,5)=0;
rents(503,6)=0;
rents(503,7)=0;
rents(503,8)=0;
rents(503,9)=0;
bref(504)=10000;
bnorm(504)=10000;
incomemean(504)=13000;
rents(504,1)=69.00922172999849;
rents(504,2)=0;
rents(504,3)=0;
rents(504,4)=0;
rents(504,5)=0;
rents(504,6)=0;
rents(504,7)=0;
rents(504,8)=0;
rents(504,9)=0;
bref(505)=10000;
bnorm(505)=10000;
incomemean(505)=14000;
rents(505,1)=69.78333250311974;
rents(505,2)=0;
rents(505,3)=0;
rents(505,4)=0;
rents(505,5)=0;
rents(505,6)=0;
rents(505,7)=0;
rents(505,8)=0;
rents(505,9)=0;
bref(506)=10000;
bnorm(506)=10000;
incomemean(506)=15000;
rents(506,1)=71.14888578060878;
rents(506,2)=0;
rents(506,3)=0;
rents(506,4)=0;
rents(506,5)=0;
rents(506,6)=0;
rents(506,7)=0;
rents(506,8)=0;
rents(506,9)=0;
bref(507)=10000;
bnorm(507)=10000;
incomemean(507)=16000;
rents(507,1)=72.72125039207191;
rents(507,2)=0;
rents(507,3)=0;
rents(507,4)=0;
rents(507,5)=0;
rents(507,6)=0;
rents(507,7)=0;
rents(507,8)=0;
rents(507,9)=0;
bref(508)=10000;
bnorm(508)=10000;
incomemean(508)=17000;
rents(508,1)=75.45184260349147;
rents(508,2)=0;
rents(508,3)=0;
rents(508,4)=0;
rents(508,5)=0;
rents(508,6)=0;
rents(508,7)=0;
rents(508,8)=0;
rents(508,9)=0;
bref(509)=10000;
bnorm(509)=10000;
incomemean(509)=18000;
rents(509,1)=73.91544768714712;
rents(509,2)=0;
rents(509,3)=0;
rents(509,4)=0;
rents(509,5)=0;
rents(509,6)=0;
rents(509,7)=0;
rents(509,8)=0;
rents(509,9)=0;
bref(510)=10000;
bnorm(510)=10000;
incomemean(510)=19000;
rents(510,1)=70.08489234888381;
rents(510,2)=0;
rents(510,3)=0;
rents(510,4)=0;
rents(510,5)=0;
rents(510,6)=0;
rents(510,7)=0;
rents(510,8)=0;
rents(510,9)=0;
bref(511)=10000;
bnorm(511)=12000;
incomemean(511)=10000;
rents(511,1)=71.6886617848126;
rents(511,2)=11.94811029746877;
rents(511,3)=14.85605251505754;
rents(511,4)=18.166816738098685;
rents(511,5)=21.500433168716476;
rents(511,6)=25.359839961719697;
rents(511,7)=29.29110039805898;
rents(511,8)=32.87562881587299;
rents(511,9)=35.80172436690008;
bref(512)=10000;
bnorm(512)=12000;
incomemean(512)=11000;
rents(512,1)=69.89693343343671;
rents(512,2)=11.649488905572758;
rents(512,3)=15.256857028423168;
rents(512,4)=19.502884567340384;
rents(512,5)=24.100428933712898;
rents(512,6)=29.474430443726764;
rents(512,7)=35.28825059724424;
rents(512,8)=40.67219315500869;
rents(512,9)=45.66895208462879;
bref(513)=10000;
bnorm(513)=12000;
incomemean(513)=12000;
rents(513,1)=72.42653088674041;
rents(513,2)=12.071088481123368;
rents(513,3)=16.606117915614007;
rents(513,4)=22.390452864770705;
rents(513,5)=29.339615506355834;
rents(513,6)=37.564762116007735;
rents(513,7)=46.325424324736964;
rents(513,8)=53.512196756781236;
rents(513,9)=59.422875137615456;
bref(514)=10000;
bnorm(514)=12000;
incomemean(514)=13000;
rents(514,1)=70.67772988568849;
rents(514,2)=11.779621647614741;
rents(514,3)=17.036899815494028;
rents(514,4)=23.76315644621172;
rents(514,5)=32.811334895998975;
rents(514,6)=44.38223905488881;
rents(514,7)=57.521677035846565;
rents(514,8)=69.01168600491664;
rents(514,9)=77.96490182424736;
bref(515)=10000;
bnorm(515)=12000;
incomemean(515)=14000;
rents(515,1)=71.66743837964687;
rents(515,2)=11.944573063274449;
rents(515,3)=18.479443812311622;
rents(515,4)=27.99708169924669;
rents(515,5)=40.0668888115188;
rents(515,6)=55.94119513153963;
rents(515,7)=73.80828672845747;
rents(515,8)=88.59995039680888;
rents(515,9)=101.13237319743287;
bref(516)=10000;
bnorm(516)=12000;
incomemean(516)=15000;
rents(516,1)=74.03744417700209;
rents(516,2)=12.3395740295004;
rents(516,3)=20.75089216110026;
rents(516,4)=33.67326915008053;
rents(516,5)=52.1668715913997;
rents(516,6)=76.14799481910894;
rents(516,7)=102.95114052514701;
rents(516,8)=122.93561391140305;
rents(516,9)=140.3539795057033;
bref(517)=10000;
bnorm(517)=12000;
incomemean(517)=16000;
rents(517,1)=71.83275780601083;
rents(517,2)=11.972126301001758;
rents(517,3)=21.36185683268792;
rents(517,4)=37.03326268668584;
rents(517,5)=60.089934203133566;
rents(517,6)=92.09105081225248;
rents(517,7)=128.85070238642103;
rents(517,8)=157.76262699804298;
rents(517,9)=174.6384748122089;
bref(518)=10000;
bnorm(518)=12000;
incomemean(518)=17000;
rents(518,1)=73.00114866991584;
rents(518,2)=12.166858111652562;
rents(518,3)=22.983039539255135;
rents(518,4)=42.223352585963866;
rents(518,5)=72.27768026495106;
rents(518,6)=115.20601830535136;
rents(518,7)=162.14030061265365;
rents(518,8)=191.63317430467586;
rents(518,9)=197.270287497815;
bref(519)=10000;
bnorm(519)=12000;
incomemean(519)=18000;
rents(519,1)=69.72055033661889;
rents(519,2)=11.62009172276974;
rents(519,3)=23.76132728548838;
rents(519,4)=46.49654123929219;
rents(519,5)=84.80375238639581;
rents(519,6)=140.83538806807644;
rents(519,7)=194.3273097085869;
rents(519,8)=200;
rents(519,9)=200;
bref(520)=10000;
bnorm(520)=12000;
incomemean(520)=19000;
rents(520,1)=73.40556502802457;
rents(520,2)=12.234260838004133;
rents(520,3)=26.319240407223162;
rents(520,4)=54.52538614971815;
rents(520,5)=103.95017234857033;
rents(520,6)=175.87133443303557;
rents(520,7)=199.66751370343033;
rents(520,8)=200;
rents(520,9)=200;
bref(521)=10000;
bnorm(521)=14000;
incomemean(521)=10000;
rents(521,1)=72.0926622363438;
rents(521,2)=20.59790349609819;
rents(521,3)=24.230676651986663;
rents(521,4)=28.26180416834049;
rents(521,5)=31.902569191735374;
rents(521,6)=35.70011939522842;
rents(521,7)=39.11000488002626;
rents(521,8)=41.62044434966973;
rents(521,9)=43.77564723064978;
bref(522)=10000;
bnorm(522)=14000;
incomemean(522)=11000;
rents(522,1)=74.22611384900587;
rents(522,2)=21.20746109971605;
rents(522,3)=25.356779279810656;
rents(522,4)=30.199857434207516;
rents(522,5)=35.13118672860008;
rents(522,6)=40.36881573372801;
rents(522,7)=45.605960320846535;
rents(522,8)=48.749282973008555;
rents(522,9)=51.04748138463467;
bref(523)=10000;
bnorm(523)=14000;
incomemean(523)=12000;
rents(523,1)=71.86044418493806;
rents(523,2)=20.531555481411026;
rents(523,3)=26.35645296810834;
rents(523,4)=33.06469111366976;
rents(523,5)=40.076386771344886;
rents(523,6)=47.793107751545044;
rents(523,7)=54.76178077461753;
rents(523,8)=60.27563135339014;
rents(523,9)=63.922647713465444;
bref(524)=10000;
bnorm(524)=14000;
incomemean(524)=13000;
rents(524,1)=71.29909839189922;
rents(524,2)=20.371170969114086;
rents(524,3)=27.939560388105775;
rents(524,4)=37.07510499655801;
rents(524,5)=47.18392159875236;
rents(524,6)=58.61739684325795;
rents(524,7)=70.0885458997686;
rents(524,8)=78.46837378294084;
rents(524,9)=85.55821063179681;
bref(525)=10000;
bnorm(525)=14000;
incomemean(525)=14000;
rents(525,1)=72.20490248242153;
rents(525,2)=20.629972137834546;
rents(525,3)=29.267234807644183;
rents(525,4)=40.59921428463878;
rents(525,5)=53.61179944674354;
rents(525,6)=68.35302954077791;
rents(525,7)=83.46219117105542;
rents(525,8)=96.21889569433824;
rents(525,9)=106.07328357528368;
bref(526)=10000;
bnorm(526)=14000;
incomemean(526)=15000;
rents(526,1)=73.95166521003162;
rents(526,2)=21.129047202866282;
rents(526,3)=32.02488113997522;
rents(526,4)=47.413708391379494;
rents(526,5)=66.597058939189;
rents(526,6)=89.05813767332174;
rents(526,7)=110.37820908805327;
rents(526,8)=126.88248009227394;
rents(526,9)=141.39172421249572;
bref(527)=10000;
bnorm(527)=14000;
incomemean(527)=16000;
rents(527,1)=72.09694431833474;
rents(527,2)=20.599126948095588;
rents(527,3)=33.40483328025155;
rents(527,4)=51.11603541556498;
rents(527,5)=74.48949776617665;
rents(527,6)=102.92814023603407;
rents(527,7)=132.81228692989106;
rents(527,8)=157.2129546546594;
rents(527,9)=172.64062560993455;
bref(528)=10000;
bnorm(528)=14000;
incomemean(528)=17000;
rents(528,1)=73.80812360496564;
rents(528,2)=21.088035315704378;
rents(528,3)=36.669952028955784;
rents(528,4)=61.14086697564482;
rents(528,5)=94.10548600899531;
rents(528,6)=134.73450439458546;
rents(528,7)=173.87477489833572;
rents(528,8)=194.4910364978421;
rents(528,9)=199.46886308613094;
bref(529)=10000;
bnorm(529)=14000;
incomemean(529)=18000;
rents(529,1)=73.22866481963842;
rents(529,2)=20.92247566275387;
rents(529,3)=38.764059675571005;
rents(529,4)=67.55551636705295;
rents(529,5)=108.9321984949653;
rents(529,6)=159.33919294097836;
rents(529,7)=196.24389036072796;
rents(529,8)=199.58651308345324;
rents(529,9)=200;
bref(530)=10000;
bnorm(530)=14000;
incomemean(530)=19000;
rents(530,1)=71.14961039582549;
rents(530,2)=20.32846011309295;
rents(530,3)=39.60887469957718;
rents(530,4)=73.83711079065972;
rents(530,5)=127.4007679700666;
rents(530,6)=188.50582915064132;
rents(530,7)=199.96387893794272;
rents(530,8)=200;
rents(530,9)=200;
bref(531)=10000;
bnorm(531)=16000;
incomemean(531)=10000;
rents(531,1)=72.58959382530286;
rents(531,2)=27.221097684488576;
rents(531,3)=30.45455033500847;
rents(531,4)=33.594029027266885;
rents(531,5)=36.58993538485374;
rents(531,6)=39.79708814017584;
rents(531,7)=42.362068681408836;
rents(531,8)=43.937375753154164;
rents(531,9)=45.017480160661805;
bref(532)=10000;
bnorm(532)=16000;
incomemean(532)=11000;
rents(532,1)=76.05383508146407;
rents(532,2)=28.5201881555488;
rents(532,3)=33.18762229335007;
rents(532,4)=38.05912725598857;
rents(532,5)=42.22059994857246;
rents(532,6)=46.82215325671808;
rents(532,7)=50.76417313715283;
rents(532,8)=53.198914341464885;
rents(532,9)=55.459008036439364;
bref(533)=10000;
bnorm(533)=16000;
incomemean(533)=12000;
rents(533,1)=72.88379008980796;
rents(533,2)=27.331421283677958;
rents(533,3)=32.65735348573645;
rents(533,4)=38.28915507873022;
rents(533,5)=43.44546644744384;
rents(533,6)=49.31476238908861;
rents(533,7)=54.47264478087858;
rents(533,8)=58.465724268172764;
rents(533,9)=61.49944041219487;
bref(534)=10000;
bnorm(534)=16000;
incomemean(534)=13000;
rents(534,1)=73.94721132582659;
rents(534,2)=27.73020424718491;
rents(534,3)=35.64351109084462;
rents(534,4)=44.657236837576995;
rents(534,5)=53.39553261534668;
rents(534,6)=62.89111430106468;
rents(534,7)=71.99506158753066;
rents(534,8)=78.7689245284277;
rents(534,9)=84.96075256902202;
bref(535)=10000;
bnorm(535)=16000;
incomemean(535)=14000;
rents(535,1)=70.77180969327166;
rents(535,2)=26.539428634976737;
rents(535,3)=36.42460765040291;
rents(535,4)=48.55402879766791;
rents(535,5)=61.51852513297083;
rents(535,6)=76.97550653783433;
rents(535,7)=90.13642044348671;
rents(535,8)=101.37851824596146;
rents(535,9)=109.84725652142939;
bref(536)=10000;
bnorm(536)=16000;
incomemean(536)=15000;
rents(536,1)=74.60479519772045;
rents(536,2)=27.97679819914518;
rents(536,3)=40.27882110470315;
rents(536,4)=55.65524607179045;
rents(536,5)=73.949189983698;
rents(536,6)=93.35532798414229;
rents(536,7)=113.2593762504458;
rents(536,8)=128.14361847067104;
rents(536,9)=139.52501820978216;
bref(537)=10000;
bnorm(537)=16000;
incomemean(537)=16000;
rents(537,1)=70.01123295517239;
rents(537,2)=26.254212358189527;
rents(537,3)=40.5281214332414;
rents(537,4)=60.02514986889031;
rents(537,5)=83.79562095547033;
rents(537,6)=108.80720632963046;
rents(537,7)=134.26835460323846;
rents(537,8)=154.63193613474684;
rents(537,9)=168.57642123252057;
bref(538)=10000;
bnorm(538)=16000;
incomemean(538)=17000;
rents(538,1)=71.58201950016088;
rents(538,2)=26.843257312560336;
rents(538,3)=44.100225883669935;
rents(538,4)=69.48967893366223;
rents(538,5)=100.18898715847976;
rents(538,6)=137.41409505610497;
rents(538,7)=170.8135868524075;
rents(538,8)=193.1197095153019;
rents(538,9)=198.58290587033602;
bref(539)=10000;
bnorm(539)=16000;
incomemean(539)=18000;
rents(539,1)=73.77535073898494;
rents(539,2)=27.665756527119342;
rents(539,3)=46.94107805381785;
rents(539,4)=75.87164979358452;
rents(539,5)=112.850122123143;
rents(539,6)=156.14671506679701;
rents(539,7)=190.8157194154378;
rents(539,8)=199.95729137112255;
rents(539,9)=200;
bref(540)=10000;
bnorm(540)=16000;
incomemean(540)=19000;
rents(540,1)=72.003642235109;
rents(540,2)=27.001365838165757;
rents(540,3)=48.61003987249485;
rents(540,4)=82.61651975743422;
rents(540,5)=127.0672595291576;
rents(540,6)=180.43696307634744;
rents(540,7)=199.27076097380709;
rents(540,8)=200;
rents(540,9)=200;
bref(541)=10000;
bnorm(541)=18000;
incomemean(541)=10000;
rents(541,1)=72.83323159275359;
rents(541,2)=32.37032515233476;
rents(541,3)=35.46850521944992;
rents(541,4)=38.52027769518856;
rents(541,5)=40.39777923405379;
rents(541,6)=42.99200213521989;
rents(541,7)=45.043003079380775;
rents(541,8)=46.46971145335704;
rents(541,9)=47.151040942401906;
bref(542)=10000;
bnorm(542)=18000;
incomemean(542)=11000;
rents(542,1)=71.68413035922073;
rents(542,2)=31.859613492986963;
rents(542,3)=36.04565582170897;
rents(542,4)=39.929454430522746;
rents(542,5)=43.46516151093228;
rents(542,6)=47.04735968858521;
rents(542,7)=51.15831013159808;
rents(542,8)=53.499686719888366;
rents(542,9)=55.123360359679445;
bref(543)=10000;
bnorm(543)=18000;
incomemean(543)=12000;
rents(543,1)=73.40649111149186;
rents(543,2)=32.625107160663156;
rents(543,3)=38.58763703314868;
rents(543,4)=44.769116033545636;
rents(543,5)=50.025423728816044;
rents(543,6)=55.99696241554747;
rents(543,7)=61.225174826339774;
rents(543,8)=64.45335288618658;
rents(543,9)=67.3672336761665;
bref(544)=10000;
bnorm(544)=18000;
incomemean(544)=13000;
rents(544,1)=71.22579674368691;
rents(544,2)=31.65590966386083;
rents(544,3)=39.61474243689344;
rents(544,4)=48.05581242277248;
rents(544,5)=57.037587512981275;
rents(544,6)=65.73935982295656;
rents(544,7)=73.77794983788927;
rents(544,8)=79.77479125630023;
rents(544,9)=85.4241468569875;
bref(545)=10000;
bnorm(545)=18000;
incomemean(545)=14000;
rents(545,1)=74.89329491614832;
rents(545,2)=33.285908851621315;
rents(545,3)=43.208979796655164;
rents(545,4)=54.74672154978375;
rents(545,5)=66.68694973418309;
rents(545,6)=79.81550696736237;
rents(545,7)=91.63639113752403;
rents(545,8)=101.68539801738868;
rents(545,9)=108.12126761849021;
bref(546)=10000;
bnorm(546)=18000;
incomemean(546)=15000;
rents(546,1)=70.84802764583074;
rents(546,2)=31.488012287035872;
rents(546,3)=43.368965888049864;
rents(546,4)=58.395496566903056;
rents(546,5)=73.43068143033902;
rents(546,6)=90.61109922707952;
rents(546,7)=106.8598243415173;
rents(546,8)=120.18349547325612;
rents(546,9)=133.6527093626693;
bref(547)=10000;
bnorm(547)=18000;
incomemean(547)=16000;
rents(547,1)=71.52514354373912;
rents(547,2)=31.78895268610609;
rents(547,3)=46.50289352994237;
rents(547,4)=65.30178155639176;
rents(547,5)=87.36690016442792;
rents(547,6)=112.55331124883845;
rents(547,7)=136.32768338029337;
rents(547,8)=153.70263498176172;
rents(547,9)=166.86439819663602;
bref(548)=10000;
bnorm(548)=18000;
incomemean(548)=17000;
rents(548,1)=72.69722464811116;
rents(548,2)=32.309877621382746;
rents(548,3)=49.29377384074851;
rents(548,4)=71.83472506484893;
rents(548,5)=98.87843988201638;
rents(548,6)=129.6248467433179;
rents(548,7)=156.7772978484403;
rents(548,8)=178.88812480928394;
rents(548,9)=192.75761473483104;
bref(549)=10000;
bnorm(549)=18000;
incomemean(549)=18000;
rents(549,1)=72.46744878395738;
rents(549,2)=32.207755015092204;
rents(549,3)=52.28484497961113;
rents(549,4)=80.90232626880487;
rents(549,5)=115.86214630224643;
rents(549,6)=155.66671233823598;
rents(549,7)=189.99262654141612;
rents(549,8)=199.19281363975645;
rents(549,9)=199.8976661912161;
bref(550)=10000;
bnorm(550)=18000;
incomemean(550)=19000;
rents(550,1)=70.71429555196282;
rents(550,2)=31.42857580087252;
rents(550,3)=53.898633552700865;
rents(550,4)=88.96631000292278;
rents(550,5)=134.06489654391996;
rents(550,6)=182.031623194594;
rents(550,7)=199.5735748285097;
rents(550,8)=200;
rents(550,9)=200;
bref(551)=10000;
bnorm(551)=20000;
incomemean(551)=10000;
rents(551,1)=69.771824440973;
rents(551,2)=34.88591222048646;
rents(551,3)=37.37345208268541;
rents(551,4)=39.53663881864654;
rents(551,5)=41.35103737275734;
rents(551,6)=43.44192219074494;
rents(551,7)=44.95465646686626;
rents(551,8)=45.69833345650258;
rents(551,9)=46.40790237316167;
bref(552)=10000;
bnorm(552)=20000;
incomemean(552)=11000;
rents(552,1)=72.35566028669932;
rents(552,2)=36.17783014334965;
rents(552,3)=40.58252354555153;
rents(552,4)=44.78979649564678;
rents(552,5)=48.55815679940746;
rents(552,6)=52.34816311822314;
rents(552,7)=55.55929699702803;
rents(552,8)=56.10298400378697;
rents(552,9)=57.84724809790083;
bref(553)=10000;
bnorm(553)=20000;
incomemean(553)=12000;
rents(553,1)=71.29102171222338;
rents(553,2)=35.64551085611169;
rents(553,3)=41.05715325444651;
rents(553,4)=46.3476317539926;
rents(553,5)=51.01942125395438;
rents(553,6)=56.05341045212852;
rents(553,7)=60.86647192461241;
rents(553,8)=63.94308211046934;
rents(553,9)=67.16384015283492;
bref(554)=10000;
bnorm(554)=20000;
incomemean(554)=13000;
rents(554,1)=73.35844865368905;
rents(554,2)=36.679224326844526;
rents(554,3)=44.35421745610527;
rents(554,4)=52.12141953980903;
rents(554,5)=58.88223805006744;
rents(554,6)=66.32203749774402;
rents(554,7)=73.3597751756324;
rents(554,8)=78.81230138883772;
rents(554,9)=83.25685674625218;
bref(555)=10000;
bnorm(555)=20000;
incomemean(555)=14000;
rents(555,1)=74.02753773942469;
rents(555,2)=37.01376886971232;
rents(555,3)=46.04546578338435;
rents(555,4)=56.06789880081833;
rents(555,5)=66.46766090778517;
rents(555,6)=77.19340623866596;
rents(555,7)=87.85413071520325;
rents(555,8)=96.89403221254227;
rents(555,9)=103.54928982751947;
bref(556)=10000;
bnorm(556)=20000;
incomemean(556)=15000;
rents(556,1)=71.63207919035123;
rents(556,2)=35.8160395951756;
rents(556,3)=46.89681611232032;
rents(556,4)=59.72507426784405;
rents(556,5)=73.58747497588521;
rents(556,6)=88.05123052017599;
rents(556,7)=102.36247729066714;
rents(556,8)=114.22149175883696;
rents(556,9)=123.71456139740673;
bref(557)=10000;
bnorm(557)=20000;
incomemean(557)=16000;
rents(557,1)=70.72807186691068;
rents(557,2)=35.36403593345535;
rents(557,3)=50.068184714642626;
rents(557,4)=68.13834295475246;
rents(557,5)=87.59154949579046;
rents(557,6)=109.83956489669276;
rents(557,7)=132.10445873395835;
rents(557,8)=150.03703773780086;
rents(557,9)=165.3851842773547;
bref(558)=10000;
bnorm(558)=20000;
incomemean(558)=17000;
rents(558,1)=72.58635986406358;
rents(558,2)=36.29317993203178;
rents(558,3)=53.5601831556122;
rents(558,4)=75.08628689745846;
rents(558,5)=100.34671162113958;
rents(558,6)=128.22506089164608;
rents(558,7)=156.14736325007252;
rents(558,8)=178.26754029521913;
rents(558,9)=189.46764479613495;
bref(559)=10000;
bnorm(559)=20000;
incomemean(559)=18000;
rents(559,1)=74.58909977328051;
rents(559,2)=37.29454988664029;
rents(559,3)=56.70937274750484;
rents(559,4)=82.23168778867353;
rents(559,5)=112.05964626326127;
rents(559,6)=143.886240235824;
rents(559,7)=174.76257375195064;
rents(559,8)=194.34068632619957;
rents(559,9)=199.37290458357077;
bref(560)=10000;
bnorm(560)=20000;
incomemean(560)=19000;
rents(560,1)=72.72336238194842;
rents(560,2)=36.36168119097419;
rents(560,3)=57.97745621284296;
rents(560,4)=88.55428966438919;
rents(560,5)=127.86589959446866;
rents(560,6)=169.34877464117798;
rents(560,7)=195.873153829801;
rents(560,8)=200;
rents(560,9)=200;
bref(561)=10000;
bnorm(561)=22000;
incomemean(561)=10000;
rents(561,1)=73.60279519178472;
rents(561,2)=40.14697919551887;
rents(561,3)=42.42517449692746;
rents(561,4)=44.28866930828537;
rents(561,5)=45.65306318697793;
rents(561,6)=47.29759025580691;
rents(561,7)=49.082355984162945;
rents(561,8)=49.13252607040918;
rents(561,9)=49.6059338346152;
bref(562)=10000;
bnorm(562)=22000;
incomemean(562)=11000;
rents(562,1)=69.1675789133855;
rents(562,2)=37.727770316392075;
rents(562,3)=41.40649764314007;
rents(562,4)=44.70011044544889;
rents(562,5)=47.52742022144752;
rents(562,6)=50.965228407605395;
rents(562,7)=53.98079496984472;
rents(562,8)=56.147412213841044;
rents(562,9)=57.48261865717753;
bref(563)=10000;
bnorm(563)=22000;
incomemean(563)=12000;
rents(563,1)=70.81491692928915;
rents(563,2)=38.62631832506685;
rents(563,3)=43.35716153216899;
rents(563,4)=47.93301084484489;
rents(563,5)=52.07216495549732;
rents(563,6)=55.991324664710696;
rents(563,7)=60.52886544524682;
rents(563,8)=63.38122536458853;
rents(563,9)=65.85253712782826;
bref(564)=10000;
bnorm(564)=22000;
incomemean(564)=13000;
rents(564,1)=71.11117921087606;
rents(564,2)=38.787915933205156;
rents(564,3)=44.95147181745002;
rents(564,4)=51.465382398338384;
rents(564,5)=57.49509561013371;
rents(564,6)=64.18460154500713;
rents(564,7)=69.82594737317753;
rents(564,8)=73.98523133771214;
rents(564,9)=78.05670300338184;
bref(565)=10000;
bnorm(565)=22000;
incomemean(565)=14000;
rents(565,1)=69.67698987344353;
rents(565,2)=38.005630840060086;
rents(565,3)=45.88886691878201;
rents(565,4)=53.85757708993636;
rents(565,5)=62.13508411936342;
rents(565,6)=70.68300433653148;
rents(565,7)=78.79135436621696;
rents(565,8)=85.16476178329825;
rents(565,9)=90.96131640343533;
bref(566)=10000;
bnorm(566)=22000;
incomemean(566)=15000;
rents(566,1)=73.28394910491568;
rents(566,2)=39.973063148135736;
rents(566,3)=50.7637489231165;
rents(566,4)=63.200080045410026;
rents(566,5)=75.28933983449494;
rents(566,6)=87.69884467861606;
rents(566,7)=100.27250477618912;
rents(566,8)=110.71293195013357;
rents(566,9)=120.40590492450004;
bref(567)=10000;
bnorm(567)=22000;
incomemean(567)=16000;
rents(567,1)=72.26473730550964;
rents(567,2)=39.417129439368836;
rents(567,3)=53.046586897573114;
rents(567,4)=69.07839615084116;
rents(567,5)=86.7189938412526;
rents(567,6)=105.78216292706489;
rents(567,7)=124.29098185006345;
rents(567,8)=139.3436310469114;
rents(567,9)=155.10974959241204;
bref(568)=10000;
bnorm(568)=22000;
incomemean(568)=17000;
rents(568,1)=68.52427943463475;
rents(568,2)=37.37687969161895;
rents(568,3)=52.44257489992521;
rents(568,4)=71.75467757639196;
rents(568,5)=92.57723013431551;
rents(568,6)=116.10527053307668;
rents(568,7)=139.98071055576798;
rents(568,8)=160.3644886047624;
rents(568,9)=177.13795267953807;
bref(569)=10000;
bnorm(569)=22000;
incomemean(569)=18000;
rents(569,1)=72.39389331840526;
rents(569,2)=39.48757817367549;
rents(569,3)=58.678924462103254;
rents(569,4)=83.64067970679444;
rents(569,5)=114.09606309406801;
rents(569,6)=146.029728407296;
rents(569,7)=177.5351151513463;
rents(569,8)=195.9508014659969;
rents(569,9)=199.8437038403053;
bref(570)=10000;
bnorm(570)=22000;
incomemean(570)=19000;
rents(570,1)=73.19154408870084;
rents(570,2)=39.92266041201858;
rents(570,3)=61.66934351392325;
rents(570,4)=91.43685564005165;
rents(570,5)=127.11275213140361;
rents(570,6)=165.1754814457381;
rents(570,7)=195.17507882170864;
rents(570,8)=198.92688927126514;
rents(570,9)=200;
bref(571)=10000;
bnorm(571)=24000;
incomemean(571)=10000;
rents(571,1)=71.68322371686216;
rents(571,2)=41.81521383483619;
rents(571,3)=43.79842014944607;
rents(571,4)=45.599590538921014;
rents(571,5)=46.87057662071617;
rents(571,6)=48.23236450753781;
rents(571,7)=49.757501571366454;
rents(571,8)=50.208406529560904;
rents(571,9)=50.48480164664647;
bref(572)=10000;
bnorm(572)=24000;
incomemean(572)=11000;
rents(572,1)=71.18925075680758;
rents(572,2)=41.527062941470966;
rents(572,3)=44.690484993991916;
rents(572,4)=47.6238016352873;
rents(572,5)=49.77958236410919;
rents(572,6)=52.49993595615269;
rents(572,7)=54.9126282192251;
rents(572,8)=56.16346355338597;
rents(572,9)=56.925101643140614;
bref(573)=10000;
bnorm(573)=24000;
incomemean(573)=12000;
rents(573,1)=74.39467371133023;
rents(573,2)=43.39689299827597;
rents(573,3)=47.934725790284666;
rents(573,4)=52.58502208624715;
rents(573,5)=56.762677068505404;
rents(573,6)=60.784950096835956;
rents(573,7)=64.88401766165558;
rents(573,8)=67.38605338222753;
rents(573,9)=69.99670501294003;
bref(574)=10000;
bnorm(574)=24000;
incomemean(574)=13000;
rents(574,1)=76.91083229511545;
rents(574,2)=44.86465217215066;
rents(574,3)=51.277268497882865;
rents(574,4)=57.615459128968155;
rents(574,5)=63.37426002932456;
rents(574,6)=69.41359761692893;
rents(574,7)=74.22490681211744;
rents(574,8)=78.84669009454964;
rents(574,9)=82.03958836764407;
bref(575)=10000;
bnorm(575)=24000;
incomemean(575)=14000;
rents(575,1)=73.5977845411775;
rents(575,2)=42.93204098235354;
rents(575,3)=51.1247604940036;
rents(575,4)=59.24325214240269;
rents(575,5)=66.96140289457932;
rents(575,6)=75.13202024028203;
rents(575,7)=83.84320130744455;
rents(575,8)=90.62612749650987;
rents(575,9)=97.42428105837853;
bref(576)=10000;
bnorm(576)=24000;
incomemean(576)=15000;
rents(576,1)=72.66262105395626;
rents(576,2)=42.38652894814114;
rents(576,3)=52.6922591472386;
rents(576,4)=64.25705413640362;
rents(576,5)=76.04493139129659;
rents(576,6)=87.91805264012827;
rents(576,7)=99.44739611735629;
rents(576,8)=109.05847451369223;
rents(576,9)=118.44445410007337;
bref(577)=10000;
bnorm(577)=24000;
incomemean(577)=16000;
rents(577,1)=73.20118697171735;
rents(577,2)=42.70069240016851;
rents(577,3)=55.862982790114145;
rents(577,4)=71.20249364762134;
rents(577,5)=87.56789729429256;
rents(577,6)=105.64025308075415;
rents(577,7)=123.39416615645344;
rents(577,8)=136.76125836462327;
rents(577,9)=148.3950446817874;
bref(578)=10000;
bnorm(578)=24000;
incomemean(578)=17000;
rents(578,1)=71.7107815597975;
rents(578,2)=41.831289243215274;
rents(578,3)=57.227947214052875;
rents(578,4)=76.02091733528623;
rents(578,5)=96.52304729756389;
rents(578,6)=119.47384233280069;
rents(578,7)=142.01588946840454;
rents(578,8)=160.73358008102772;
rents(578,9)=177.09082493687603;
bref(579)=10000;
bnorm(579)=24000;
incomemean(579)=18000;
rents(579,1)=71.19339979667153;
rents(579,2)=41.52948321472509;
rents(579,3)=59.892143018418594;
rents(579,4)=82.97942539833126;
rents(579,5)=109.63267984154696;
rents(579,6)=138.78360369298366;
rents(579,7)=167.73244933351955;
rents(579,8)=189.70342849694177;
rents(579,9)=197.55671942744272;
bref(580)=10000;
bnorm(580)=24000;
incomemean(580)=19000;
rents(580,1)=73.04728547988671;
rents(580,2)=42.61091652993396;
rents(580,3)=63.932808916612785;
rents(580,4)=92.42219910637685;
rents(580,5)=125.86418721659588;
rents(580,6)=162.7361761245395;
rents(580,7)=191.02945560743544;
rents(580,8)=199.00762956680438;
rents(580,9)=200;
bref(581)=10000;
bnorm(581)=26000;
incomemean(581)=10000;
rents(581,1)=70.53912813503969;
rents(581,2)=43.40869423694734;
rents(581,3)=45.14808086826277;
rents(581,4)=47.06944939527304;
rents(581,5)=47.99082396027445;
rents(581,6)=49.15592530420524;
rents(581,7)=50.38046625340435;
rents(581,8)=50.939875733087156;
rents(581,9)=51.74108601477256;
bref(582)=10000;
bnorm(582)=26000;
incomemean(582)=11000;
rents(582,1)=73.65893329879738;
rents(582,2)=45.32857433772177;
rents(582,3)=48.352640358321246;
rents(582,4)=50.96219947418236;
rents(582,5)=53.32170095316112;
rents(582,6)=55.68450475284621;
rents(582,7)=57.600920210110885;
rents(582,8)=59.31869997150052;
rents(582,9)=60.39957829739038;
bref(583)=10000;
bnorm(583)=26000;
incomemean(583)=12000;
rents(583,1)=71.41789303721957;
rents(583,2)=43.94947263828897;
rents(583,3)=48.67743407008785;
rents(583,4)=53.24677200556189;
rents(583,5)=57.24920347128438;
rents(583,6)=61.291174249183015;
rents(583,7)=65.3555526448131;
rents(583,8)=67.68069726963931;
rents(583,9)=69.663764930087;
bref(584)=10000;
bnorm(584)=26000;
incomemean(584)=13000;
rents(584,1)=73.5734041007183;
rents(584,2)=45.27594098505758;
rents(584,3)=52.13421703514321;
rents(584,4)=59.2540316768573;
rents(584,5)=65.4383523847616;
rents(584,6)=71.63677787112292;
rents(584,7)=77.93771377650803;
rents(584,8)=82.46893592096067;
rents(584,9)=86.28729635317336;
bref(585)=10000;
bnorm(585)=26000;
incomemean(585)=14000;
rents(585,1)=69.3551005789796;
rents(585,2)=42.68006189475648;
rents(585,3)=50.35201796898662;
rents(585,4)=58.436059087954305;
rents(585,5)=65.91244266179423;
rents(585,6)=74.1357122870728;
rents(585,7)=81.61333397213176;
rents(585,8)=87.77672094076179;
rents(585,9)=93.16319381610009;
bref(586)=10000;
bnorm(586)=26000;
incomemean(586)=15000;
rents(586,1)=74.11639754135338;
rents(586,2)=45.61009079467916;
rents(586,3)=56.00817011938603;
rents(586,4)=67.05298909843046;
rents(586,5)=78.41972853951552;
rents(586,6)=90.79497435971874;
rents(586,7)=102.79266767238771;
rents(586,8)=113.5413251666366;
rents(586,9)=123.78917667465295;
bref(587)=10000;
bnorm(587)=26000;
incomemean(587)=16000;
rents(587,1)=71.6498240689742;
rents(587,2)=44.09219942706118;
rents(587,3)=56.54070510215882;
rents(587,4)=71.03221645838788;
rents(587,5)=85.85361284218078;
rents(587,6)=103.020186782234;
rents(587,7)=119.52437778475361;
rents(587,8)=133.3110340361022;
rents(587,9)=145.83489129509897;
bref(588)=10000;
bnorm(588)=26000;
incomemean(588)=17000;
rents(588,1)=71.05934415186887;
rents(588,2)=43.72882717038088;
rents(588,3)=58.927648291589485;
rents(588,4)=77.21273273966555;
rents(588,5)=97.01225500890064;
rents(588,6)=117.81797712507395;
rents(588,7)=139.14918681555636;
rents(588,8)=156.82493535579582;
rents(588,9)=171.5297532070963;
bref(589)=10000;
bnorm(589)=26000;
incomemean(589)=18000;
rents(589,1)=71.77449287402588;
rents(589,2)=44.16891869170811;
rents(589,3)=61.73584124695817;
rents(589,4)=83.87157288926542;
rents(589,5)=107.72903113900874;
rents(589,6)=135.1694222918521;
rents(589,7)=162.97408724561154;
rents(589,8)=183.0251630223248;
rents(589,9)=195.02153217676056;
bref(590)=10000;
bnorm(590)=26000;
incomemean(590)=19000;
rents(590,1)=67.42459339155583;
rents(590,2)=41.49205747172661;
rents(590,3)=60.530878932537576;
rents(590,4)=85.1399480554422;
rents(590,5)=114.67899433855503;
rents(590,6)=147.2045908878295;
rents(590,7)=179.9452568174221;
rents(590,8)=193.31322719300027;
rents(590,9)=198.9853716796534;
bref(591)=10000;
bnorm(591)=28000;
incomemean(591)=10000;
rents(591,1)=74.9202517293534;
rents(591,2)=48.163018968870134;
rents(591,3)=49.5301148569862;
rents(591,4)=50.90218971576118;
rents(591,5)=51.494278664585366;
rents(591,6)=52.44410700643403;
rents(591,7)=53.33666525201352;
rents(591,8)=53.36888536187897;
rents(591,9)=53.291192648136274;
bref(592)=10000;
bnorm(592)=28000;
incomemean(592)=11000;
rents(592,1)=74.37000911746622;
rents(592,2)=47.809291575513996;
rents(592,3)=49.8999067381563;
rents(592,4)=51.74666165782386;
rents(592,5)=53.12522677857847;
rents(592,6)=54.75796737511948;
rents(592,7)=56.05095931872929;
rents(592,8)=56.81863190524327;
rents(592,9)=57.221233067663995;
bref(593)=10000;
bnorm(593)=28000;
incomemean(593)=12000;
rents(593,1)=73.86209418117532;
rents(593,2)=47.48277483075575;
rents(593,3)=51.13157442844865;
rents(593,4)=54.85056269706956;
rents(593,5)=57.96677599870194;
rents(593,6)=61.26144792700925;
rents(593,7)=64.30661861565667;
rents(593,8)=65.33619255785689;
rents(593,9)=67.0218766073339;
bref(594)=10000;
bnorm(594)=28000;
incomemean(594)=13000;
rents(594,1)=72.09569210320072;
rents(594,2)=46.34723063777197;
rents(594,3)=52.34647150931745;
rents(594,4)=58.16896387573609;
rents(594,5)=63.70960524786291;
rents(594,6)=69.03947399086736;
rents(594,7)=73.83876496177905;
rents(594,8)=77.82966453236995;
rents(594,9)=81.51547218608322;
bref(595)=10000;
bnorm(595)=28000;
incomemean(595)=14000;
rents(595,1)=74.91286073986645;
rents(595,2)=48.15826761848596;
rents(595,3)=55.54689292370414;
rents(595,4)=62.87438012649942;
rents(595,5)=70.4172757070232;
rents(595,6)=78.26622033210275;
rents(595,7)=85.50220373285157;
rents(595,8)=91.30185180903355;
rents(595,9)=96.20071287301994;
bref(596)=10000;
bnorm(596)=28000;
incomemean(596)=15000;
rents(596,1)=73.01856473039433;
rents(596,2)=46.94050589811079;
rents(596,3)=56.502333781443326;
rents(596,4)=67.33040924262944;
rents(596,5)=77.84697595556696;
rents(596,6)=89.0008240338739;
rents(596,7)=99.86429954000816;
rents(596,8)=109.33741875855257;
rents(596,9)=119.46172299476783;
bref(597)=10000;
bnorm(597)=28000;
incomemean(597)=16000;
rents(597,1)=74.13691597449754;
rents(597,2)=47.65944598360587;
rents(597,3)=59.93334974217116;
rents(597,4)=73.75839450162239;
rents(597,5)=87.58329753896138;
rents(597,6)=102.34299390620467;
rents(597,7)=117.70571701931071;
rents(597,8)=130.2698343547416;
rents(597,9)=142.00301399569926;
bref(598)=10000;
bnorm(598)=28000;
incomemean(598)=17000;
rents(598,1)=73.61978164665743;
rents(598,2)=47.327002487136824;
rents(598,3)=61.67393800706832;
rents(598,4)=78.20018505677258;
rents(598,5)=96.2254383679017;
rents(598,6)=115.83022207916211;
rents(598,7)=136.19851487328455;
rents(598,8)=152.51639991811447;
rents(598,9)=167.20179703495185;
bref(599)=10000;
bnorm(599)=28000;
incomemean(599)=18000;
rents(599,1)=71.93470316968954;
rents(599,2)=46.24373775194358;
rents(599,3)=63.626436164747126;
rents(599,4)=85.3872699620224;
rents(599,5)=108.83281612663117;
rents(599,6)=135.30291736635093;
rents(599,7)=161.33561972949076;
rents(599,8)=182.01631262199564;
rents(599,9)=194.8372650239136;
bref(600)=10000;
bnorm(600)=28000;
incomemean(600)=19000;
rents(600,1)=72.23461764139678;
rents(600,2)=46.4365399123265;
rents(600,3)=66.42791239243573;
rents(600,4)=91.54525578269852;
rents(600,5)=121.69101688989475;
rents(600,6)=155.38455272895476;
rents(600,7)=183.11436528546258;
rents(600,8)=195.98690811375596;
rents(600,9)=200;
bref(601)=11000;
bnorm(601)=10000;
incomemean(601)=10000;
rents(601,1)=72.55568254119164;
rents(601,2)=-7.255568254119186;
rents(601,3)=-9.587563107285806;
rents(601,4)=-12.805970399202574;
rents(601,5)=-17.392238862576075;
rents(601,6)=-24.505661419923232;
rents(601,7)=-35.55068922179787;
rents(601,8)=-53.41736774863742;
rents(601,9)=-84.10104509451838;
bref(602)=11000;
bnorm(602)=10000;
incomemean(602)=11000;
rents(602,1)=74.12029307844394;
rents(602,2)=-7.412029307844412;
rents(602,3)=-10.306783743111776;
rents(602,4)=-14.6444843351579;
rents(602,5)=-21.472860012405;
rents(602,6)=-32.075553949737824;
rents(602,7)=-50.15042782343223;
rents(602,8)=-82.24410745435479;
rents(602,9)=-152.70671672360047;
bref(603)=11000;
bnorm(603)=10000;
incomemean(603)=12000;
rents(603,1)=70.00324726915058;
rents(603,2)=-7.000324726915076;
rents(603,3)=-10.68625324391326;
rents(603,4)=-16.547630440771954;
rents(603,5)=-26.421205961522055;
rents(603,6)=-43.90709411799074;
rents(603,7)=-78.57448024501004;
rents(603,8)=-152.23391916878703;
rents(603,9)=-358.5635266633363;
bref(604)=11000;
bnorm(604)=10000;
incomemean(604)=13000;
rents(604,1)=71.76210651349737;
rents(604,2)=-7.1762106513497415;
rents(604,3)=-11.392107155343806;
rents(604,4)=-18.515015744167563;
rents(604,5)=-30.91189252426353;
rents(604,6)=-54.020003333261045;
rents(604,7)=-100.72314546934415;
rents(604,8)=-213.36861019411728;
rents(604,9)=-604.7118342535872;
bref(605)=11000;
bnorm(605)=10000;
incomemean(605)=14000;
rents(605,1)=71.04466271232577;
rents(605,2)=-7.104466271232587;
rents(605,3)=-12.355594272530626;
rents(605,4)=-21.981680583404234;
rents(605,5)=-40.23119463640007;
rents(605,6)=-79.2098837542678;
rents(605,7)=-174.28066921373951;
rents(605,8)=-470.61187438942005;
rents(605,9)=-2141.1325007643854;
bref(606)=11000;
bnorm(606)=10000;
incomemean(606)=15000;
rents(606,1)=70.98409900898096;
rents(606,2)=-7.098409900898111;
rents(606,3)=-13.179369221547221;
rents(606,4)=-25.0224222070166;
rents(606,5)=-49.30477358361339;
rents(606,6)=-104.73162316143727;
rents(606,7)=-259.19159781610784;
rents(606,8)=-880.8537306590443;
rents(606,9)=-6438.511602887454;
bref(607)=11000;
bnorm(607)=10000;
incomemean(607)=16000;
rents(607,1)=71.5489784759417;
rents(607,2)=-7.1548978475941265;
rents(607,3)=-14.265158131530763;
rents(607,4)=-29.478225726666256;
rents(607,5)=-61.91523435593047;
rents(607,6)=-146.46417953188947;
rents(607,7)=-415.4475764224581;
rents(607,8)=-1843.2572035511007;
rents(607,9)=-24462.232435320377;
bref(608)=11000;
bnorm(608)=10000;
incomemean(608)=17000;
rents(608,1)=73.44961156277954;
rents(608,2)=-7.344961156278034;
rents(608,3)=-15.596005520212177;
rents(608,4)=-34.696300282264225;
rents(608,5)=-79.61211337719054;
rents(608,6)=-207.47479139853604;
rents(608,7)=-707.5201588822325;
rents(608,8)=-4589.66271268841;
rents(608,9)=-141434.97555050688;
bref(609)=11000;
bnorm(609)=10000;
incomemean(609)=18000;
rents(609,1)=69.54575594696989;
rents(609,2)=-6.954575594697025;
rents(609,3)=-15.83756467383287;
rents(609,4)=-37.15441675523822;
rents(609,5)=-90.50707730042326;
rents(609,6)=-254.85776855135177;
rents(609,7)=-973.5781954292116;
rents(609,8)=-8076.555363241886;
rents(609,9)=-427852.37536835216;
bref(610)=11000;
bnorm(610)=10000;
incomemean(610)=19000;
rents(610,1)=69.71857414513772;
rents(610,2)=-6.97185741451376;
rents(610,3)=-17.367623635679323;
rents(610,4)=-44.29605957776601;
rents(610,5)=-118.67348644953519;
rents(610,6)=-373.5685396891516;
rents(610,7)=-1782.0106737653198;
rents(610,8)=-24145.380650418276;
rents(610,9)=-3721574.6211094256;
bref(611)=11000;
bnorm(611)=12000;
incomemean(611)=10000;
rents(611,1)=75.61267057924829;
rents(611,2)=6.301055881603985;
rents(611,3)=7.453919992285383;
rents(611,4)=8.697074236126557;
rents(611,5)=9.767080278389894;
rents(611,6)=11.276899882268909;
rents(611,7)=12.9712589805992;
rents(611,8)=14.465628164664347;
rents(611,9)=15.639627758265878;
bref(612)=11000;
bnorm(612)=12000;
incomemean(612)=11000;
rents(612,1)=72.72861252002755;
rents(612,2)=6.060717710002283;
rents(612,3)=7.579362019698885;
rents(612,4)=9.30328592556287;
rents(612,5)=11.18642477856322;
rents(612,6)=13.557761434300767;
rents(612,7)=16.38823250155164;
rents(612,8)=18.781159114417946;
rents(612,9)=21.96364479458536;
bref(613)=11000;
bnorm(613)=12000;
incomemean(613)=12000;
rents(613,1)=71.13019814113656;
rents(613,2)=5.927516511761378;
rents(613,3)=7.851597565978407;
rents(613,4)=10.187770259789154;
rents(613,5)=12.988395506566084;
rents(613,6)=16.329698093822856;
rents(613,7)=20.576397208448682;
rents(613,8)=24.836070133667217;
rents(613,9)=29.142354295837784;
bref(614)=11000;
bnorm(614)=12000;
incomemean(614)=13000;
rents(614,1)=72.0493029651713;
rents(614,2)=6.004108580430954;
rents(614,3)=8.461857369235007;
rents(614,4)=11.774563184126002;
rents(614,5)=15.907947784439488;
rents(614,6)=21.464466565071127;
rents(614,7)=28.470317720748525;
rents(614,8)=35.292327653683216;
rents(614,9)=42.19846880270496;
bref(615)=11000;
bnorm(615)=12000;
incomemean(615)=14000;
rents(615,1)=73.5333887387034;
rents(615,2)=6.127782394891935;
rents(615,3)=9.392701613991147;
rents(615,4)=13.928348643572809;
rents(615,5)=20.120936356055303;
rents(615,6)=28.82183902750347;
rents(615,7)=40.67254693578724;
rents(615,8)=52.39973414435828;
rents(615,9)=64.7028789576345;
bref(616)=11000;
bnorm(616)=12000;
incomemean(616)=15000;
rents(616,1)=72.08015808805119;
rents(616,2)=6.006679840670926;
rents(616,3)=9.629548452829471;
rents(616,4)=15.198822725851329;
rents(616,5)=23.495035640370205;
rents(616,6)=35.42479723396182;
rents(616,7)=51.441071424592295;
rents(616,8)=69.17748368299867;
rents(616,9)=86.97606542124572;
bref(617)=11000;
bnorm(617)=12000;
incomemean(617)=16000;
rents(617,1)=72.42170812687854;
rents(617,2)=6.035142343906544;
rents(617,3)=10.355564883111361;
rents(617,4)=17.41905062882514;
rents(617,5)=27.965921764976176;
rents(617,6)=43.73882822590141;
rents(617,7)=66.67193173989557;
rents(617,8)=90.43069735042099;
rents(617,9)=114.75911054549175;
bref(618)=11000;
bnorm(618)=12000;
incomemean(618)=17000;
rents(618,1)=72.21756908523975;
rents(618,2)=6.018130757103313;
rents(618,3)=11.390651289106886;
rents(618,4)=20.936970878140038;
rents(618,5)=37.04709035621459;
rents(618,6)=62.752425376262806;
rents(618,7)=98.57623723863233;
rents(618,8)=135.74197394732155;
rents(618,9)=168.6400853425113;
bref(619)=11000;
bnorm(619)=12000;
incomemean(619)=18000;
rents(619,1)=73.196095083658;
rents(619,2)=6.099674590304796;
rents(619,3)=11.992806388960217;
rents(619,4)=22.943384076215615;
rents(619,5)=42.02488659136688;
rents(619,6)=75.122357793675;
rents(619,7)=119.3092163057868;
rents(619,8)=158.73870819426224;
rents(619,9)=190.7304862869562;
bref(620)=11000;
bnorm(620)=12000;
incomemean(620)=19000;
rents(620,1)=72.72623763617969;
rents(620,2)=6.060519803014976;
rents(620,3)=12.968294120874383;
rents(620,4)=26.89452176998521;
rents(620,5)=53.233674379668905;
rents(620,6)=99.73619655158254;
rents(620,7)=164.20121388935655;
rents(620,8)=198.26643356802728;
rents(620,9)=200;
bref(621)=11000;
bnorm(621)=14000;
incomemean(621)=10000;
rents(621,1)=72.11639228151986;
rents(621,2)=15.453512631754332;
rents(621,3)=17.41839781953465;
rents(621,4)=19.34151744945711;
rents(621,5)=21.162657852250902;
rents(621,6)=23.186247246570492;
rents(621,7)=25.015110027663543;
rents(621,8)=25.928865221981386;
rents(621,9)=27.219821368988555;
bref(622)=11000;
bnorm(622)=14000;
incomemean(622)=11000;
rents(622,1)=71.86175026696804;
rents(622,2)=15.398946485778941;
rents(622,3)=18.091361437690033;
rents(622,4)=21.03971347107237;
rents(622,5)=23.780619901838598;
rents(622,6)=27.074025640455552;
rents(622,7)=30.34275962128232;
rents(622,8)=32.2262804107496;
rents(622,9)=34.03772049418567;
bref(623)=11000;
bnorm(623)=14000;
incomemean(623)=12000;
rents(623,1)=72.8649679754257;
rents(623,2)=15.613921709019642;
rents(623,3)=19.261456060934645;
rents(623,4)=23.27890383136331;
rents(623,5)=27.280088942165296;
rents(623,6)=32.234852813114564;
rents(623,7)=37.51238136316868;
rents(623,8)=41.77843821985132;
rents(623,9)=44.7405428169329;
bref(624)=11000;
bnorm(624)=14000;
incomemean(624)=13000;
rents(624,1)=74.36471175735052;
rents(624,2)=15.935295376575136;
rents(624,3)=20.92248979894056;
rents(624,4)=26.94948795560886;
rents(624,5)=33.73459144124826;
rents(624,6)=41.64224721599227;
rents(624,7)=49.999178975450164;
rents(624,8)=57.56372116160023;
rents(624,9)=63.6147335897745;
bref(625)=11000;
bnorm(625)=14000;
incomemean(625)=14000;
rents(625,1)=72.12345261852688;
rents(625,2)=15.455025561112935;
rents(625,3)=21.762116480281307;
rents(625,4)=29.751935404179644;
rents(625,5)=38.74628993383046;
rents(625,6)=50.056503827916;
rents(625,7)=61.59879346787409;
rents(625,8)=71.45354394909059;
rents(625,9)=80.80453227307376;
bref(626)=11000;
bnorm(626)=14000;
incomemean(626)=15000;
rents(626,1)=70.61493796364293;
rents(626,2)=15.131772420780623;
rents(626,3)=22.107131230547125;
rents(626,4)=31.46199199463678;
rents(626,5)=43.752537716588776;
rents(626,6)=58.557008055190295;
rents(626,7)=74.30574451315493;
rents(626,8)=87.53489295972393;
rents(626,9)=99.99371847617195;
bref(627)=11000;
bnorm(627)=14000;
incomemean(627)=16000;
rents(627,1)=71.86822650290136;
rents(627,2)=15.400334250621786;
rents(627,3)=24.279072699021093;
rents(627,4)=37.30077314120815;
rents(627,5)=54.570077975510586;
rents(627,6)=76.8623318505491;
rents(627,7)=101.25008340828299;
rents(627,8)=123.83416709651569;
rents(627,9)=139.77902321591557;
bref(628)=11000;
bnorm(628)=14000;
incomemean(628)=17000;
rents(628,1)=74.16578772532054;
rents(628,2)=15.892668798282862;
rents(628,3)=27.154370448140302;
rents(628,4)=44.607805325409714;
rents(628,5)=68.81781697745387;
rents(628,6)=101.22037570205578;
rents(628,7)=137.14988758652996;
rents(628,8)=164.84422144529563;
rents(628,9)=182.58881074394137;
bref(629)=11000;
bnorm(629)=14000;
incomemean(629)=18000;
rents(629,1)=74.25095440428723;
rents(629,2)=15.910918800918719;
rents(629,3)=27.908444501917977;
rents(629,4)=47.92613287719663;
rents(629,5)=77.09763984267859;
rents(629,6)=116.40305190486373;
rents(629,7)=157.88348310744405;
rents(629,8)=189.12857033121762;
rents(629,9)=198.05752473314212;
bref(630)=11000;
bnorm(630)=14000;
incomemean(630)=19000;
rents(630,1)=71.51167405055376;
rents(630,2)=15.323930153690064;
rents(630,3)=28.87260513323655;
rents(630,4)=52.3208196241983;
rents(630,5)=88.53120069184212;
rents(630,6)=140.8792547182004;
rents(630,7)=190.50854277287803;
rents(630,8)=200;
rents(630,9)=200;
bref(631)=11000;
bnorm(631)=16000;
incomemean(631)=10000;
rents(631,1)=73.08660000373413;
rents(631,2)=22.83956250116677;
rents(631,3)=24.459041391743057;
rents(631,4)=26.043720248797772;
rents(631,5)=27.30076398716484;
rents(631,6)=28.65144335268636;
rents(631,7)=29.935278526270643;
rents(631,8)=30.479297601816384;
rents(631,9)=30.81142622958355;
bref(632)=11000;
bnorm(632)=16000;
incomemean(632)=11000;
rents(632,1)=72.19463974417145;
rents(632,2)=22.560824920053523;
rents(632,3)=25.49811616850182;
rents(632,4)=28.490563495881595;
rents(632,5)=31.13192971497021;
rents(632,6)=33.9927235975676;
rents(632,7)=36.57405484568012;
rents(632,8)=38.33337355148083;
rents(632,9)=39.64496219977623;
bref(633)=11000;
bnorm(633)=16000;
incomemean(633)=12000;
rents(633,1)=73.35638181731356;
rents(633,2)=22.92386931791042;
rents(633,3)=26.96601555057243;
rents(633,4)=31.066910396209646;
rents(633,5)=34.967803214027725;
rents(633,6)=39.198963273944734;
rents(633,7)=43.40483791879308;
rents(633,8)=46.55484601790082;
rents(633,9)=48.2727244327572;
bref(634)=11000;
bnorm(634)=16000;
incomemean(634)=13000;
rents(634,1)=72.44632220582687;
rents(634,2)=22.639475689321017;
rents(634,3)=28.210585851546302;
rents(634,4)=34.33679507909576;
rents(634,5)=40.39441112684902;
rents(634,6)=47.071218909892586;
rents(634,7)=54.27892224985518;
rents(634,8)=58.994091571110786;
rents(634,9)=63.14379978009053;
bref(635)=11000;
bnorm(635)=16000;
incomemean(635)=14000;
rents(635,1)=74.8065410857648;
rents(635,2)=23.377044089301435;
rents(635,3)=30.21953414240844;
rents(635,4)=37.673939565400765;
rents(635,5)=46.357343548173716;
rents(635,6)=55.18659854383565;
rents(635,7)=64.51207078406492;
rents(635,8)=71.22895233136933;
rents(635,9)=77.98764999504496;
bref(636)=11000;
bnorm(636)=16000;
incomemean(636)=15000;
rents(636,1)=72.25767046637326;
rents(636,2)=22.580522020741594;
rents(636,3)=31.610792147162385;
rents(636,4)=43.253809997115454;
rents(636,5)=56.350672262120135;
rents(636,6)=71.06674261020936;
rents(636,7)=86.31644140906039;
rents(636,8)=97.48558774239652;
rents(636,9)=108.77982858257808;
bref(637)=11000;
bnorm(637)=16000;
incomemean(637)=16000;
rents(637,1)=73.94917453127053;
rents(637,2)=23.10911704102192;
rents(637,3)=34.26208152393608;
rents(637,4)=49.256021431526165;
rents(637,5)=67.19126867107846;
rents(637,6)=87.20224856166593;
rents(637,7)=107.5442597406789;
rents(637,8)=124.10456044241673;
rents(637,9)=138.04312355068336;
bref(638)=11000;
bnorm(638)=16000;
incomemean(638)=17000;
rents(638,1)=73.10880518466898;
rents(638,2)=22.84650162020899;
rents(638,3)=36.08028688378174;
rents(638,4)=55.13207603777148;
rents(638,5)=79.56241291659232;
rents(638,6)=108.46093701436494;
rents(638,7)=137.2647175828159;
rents(638,8)=156.49128468468027;
rents(638,9)=172.54736585022684;
bref(639)=11000;
bnorm(639)=16000;
incomemean(639)=18000;
rents(639,1)=74.14642182374384;
rents(639,2)=23.17075681992012;
rents(639,3)=38.103411273792275;
rents(639,4)=60.4257538599189;
rents(639,5)=89.28196731106681;
rents(639,6)=124.20078711844366;
rents(639,7)=159.4177143132586;
rents(639,8)=183.79668853684075;
rents(639,9)=195.8831845504155;
bref(640)=11000;
bnorm(640)=16000;
incomemean(640)=19000;
rents(640,1)=74.86747860891889;
rents(640,2)=23.39608706528724;
rents(640,3)=41.31159234479324;
rents(640,4)=69.39335228166904;
rents(640,5)=108.86240193047321;
rents(640,6)=156.51650898241158;
rents(640,7)=196.76442187858638;
rents(640,8)=200;
rents(640,9)=200;
bref(641)=11000;
bnorm(641)=18000;
incomemean(641)=10000;
rents(641,1)=74.14930436780077;
rents(641,2)=28.835840587478348;
rents(641,3)=29.95501259919531;
rents(641,4)=30.940042007876823;
rents(641,5)=31.686377230982952;
rents(641,6)=32.52609381717258;
rents(641,7)=33.369961228796086;
rents(641,8)=33.50623012177904;
rents(641,9)=33.87316804301327;
bref(642)=11000;
bnorm(642)=18000;
incomemean(642)=11000;
rents(642,1)=70.30154840856252;
rents(642,2)=27.339491047774395;
rents(642,3)=29.637013967945787;
rents(642,4)=31.664364052672852;
rents(642,5)=33.4607454430393;
rents(642,6)=35.267243660882556;
rents(642,7)=36.88623754060222;
rents(642,8)=37.32454538432494;
rents(642,9)=38.0068214974263;
bref(643)=11000;
bnorm(643)=18000;
incomemean(643)=12000;
rents(643,1)=71.49990311800092;
rents(643,2)=27.80551787922247;
rents(643,3)=31.361831510046034;
rents(643,4)=34.965943129374466;
rents(643,5)=38.07128807846139;
rents(643,6)=41.15769137299368;
rents(643,7)=44.487033444189954;
rents(643,8)=46.92111269592494;
rents(643,9)=49.15708265420614;
bref(644)=11000;
bnorm(644)=18000;
incomemean(644)=13000;
rents(644,1)=69.71240386895659;
rents(644,2)=27.11037928237194;
rents(644,3)=32.00553540948502;
rents(644,4)=36.923894399972895;
rents(644,5)=41.64250751585807;
rents(644,6)=47.66444924670486;
rents(644,7)=52.729292236006096;
rents(644,8)=57.0238767998956;
rents(644,9)=60.736133992229064;
bref(645)=11000;
bnorm(645)=18000;
incomemean(645)=14000;
rents(645,1)=72.58126791661248;
rents(645,2)=28.226048634238087;
rents(645,3)=34.94940816852054;
rents(645,4)=42.33937682020851;
rents(645,5)=49.981075159748706;
rents(645,6)=58.24457654349093;
rents(645,7)=66.26011846415902;
rents(645,8)=72.30924911478853;
rents(645,9)=77.12354570631966;
bref(646)=11000;
bnorm(646)=18000;
incomemean(646)=15000;
rents(646,1)=72.09631914805558;
rents(646,2)=28.037457446465872;
rents(646,3)=37.98342967823709;
rents(646,4)=48.75135312286584;
rents(646,5)=61.04076451474308;
rents(646,6)=75.27674488832243;
rents(646,7)=88.32939617001787;
rents(646,8)=99.14117833569047;
rents(646,9)=108.99470157679059;
bref(647)=11000;
bnorm(647)=18000;
incomemean(647)=16000;
rents(647,1)=72.15474328241372;
rents(647,2)=28.060177943160927;
rents(647,3)=39.17281019464426;
rents(647,4)=52.99443602766949;
rents(647,5)=69.31742815691781;
rents(647,6)=87.92729523756879;
rents(647,7)=106.27326640314034;
rents(647,8)=123.34080854825987;
rents(647,9)=136.2809529488091;
bref(648)=11000;
bnorm(648)=18000;
incomemean(648)=17000;
rents(648,1)=69.46850871230104;
rents(648,2)=27.01553116589509;
rents(648,3)=39.94610885989004;
rents(648,4)=57.382152094844635;
rents(648,5)=77.38957795790756;
rents(648,6)=101.97736546342486;
rents(648,7)=125.97126269224461;
rents(648,8)=148.2176409449981;
rents(648,9)=163.16550310375607;
bref(649)=11000;
bnorm(649)=18000;
incomemean(649)=18000;
rents(649,1)=71.56599988709009;
rents(649,2)=27.8312221783129;
rents(649,3)=43.50134545875865;
rents(649,4)=65.51899910611097;
rents(649,5)=93.12264913781608;
rents(649,6)=125.90572404242366;
rents(649,7)=158.31064639564121;
rents(649,8)=178.67218619295278;
rents(649,9)=191.3316606331295;
bref(650)=11000;
bnorm(650)=18000;
incomemean(650)=19000;
rents(650,1)=74.2758472937234;
rents(650,2)=28.885051725337295;
rents(650,3)=47.609697835701944;
rents(650,4)=75.4339143830532;
rents(650,5)=110.73860487666072;
rents(650,6)=152.5495641299282;
rents(650,7)=190.1470728426315;
rents(650,8)=199.31931574248188;
rents(650,9)=199.92453893040857;
bref(651)=11000;
bnorm(651)=20000;
incomemean(651)=10000;
rents(651,1)=73.80447350414752;
rents(651,2)=33.21201307686638;
rents(651,3)=34.25385848719236;
rents(651,4)=35.246497111626255;
rents(651,5)=35.548190776573385;
rents(651,6)=36.17349038058373;
rents(651,7)=36.665228455520634;
rents(651,8)=36.749607613800286;
rents(651,9)=36.552714616024595;
bref(652)=11000;
bnorm(652)=20000;
incomemean(652)=11000;
rents(652,1)=74.56572391891424;
rents(652,2)=33.5545757635114;
rents(652,3)=35.94825096335394;
rents(652,4)=38.09304559142469;
rents(652,5)=39.35711250823279;
rents(652,6)=41.4002287288177;
rents(652,7)=42.63554855926196;
rents(652,8)=43.26292390341858;
rents(652,9)=43.762966260145916;
bref(653)=11000;
bnorm(653)=20000;
incomemean(653)=12000;
rents(653,1)=73.146774850084;
rents(653,2)=32.91604868253802;
rents(653,3)=37.02353683980822;
rents(653,4)=40.91216179789358;
rents(653,5)=44.45674723812506;
rents(653,6)=48.16626471250137;
rents(653,7)=51.479961271213256;
rents(653,8)=53.42086906121851;
rents(653,9)=55.87447361076248;
bref(654)=11000;
bnorm(654)=20000;
incomemean(654)=13000;
rents(654,1)=70.96284460664948;
rents(654,2)=31.933280072992424;
rents(654,3)=38.03780978163956;
rents(654,4)=44.29137140639164;
rents(654,5)=49.75996063652439;
rents(654,6)=56.02245140555907;
rents(654,7)=61.43632496983789;
rents(654,8)=66.64090522045362;
rents(654,9)=69.99016353616913;
bref(655)=11000;
bnorm(655)=20000;
incomemean(655)=14000;
rents(655,1)=71.5191401868747;
rents(655,2)=32.1836130840939;
rents(655,3)=39.47980765164902;
rents(655,4)=47.304070261676735;
rents(655,5)=55.28608191775154;
rents(655,6)=63.71161872121693;
rents(655,7)=71.82204706031789;
rents(655,8)=77.55119137030248;
rents(655,9)=83.88428066774175;
bref(656)=11000;
bnorm(656)=20000;
incomemean(656)=15000;
rents(656,1)=72.92756188254555;
rents(656,2)=32.81740284714541;
rents(656,3)=42.0834803747602;
rents(656,4)=53.1827048948616;
rents(656,5)=64.58296512527484;
rents(656,6)=77.10572357496079;
rents(656,7)=90.06489997706377;
rents(656,8)=100.21144341169115;
rents(656,9)=108.14886389771823;
bref(657)=11000;
bnorm(657)=20000;
incomemean(657)=16000;
rents(657,1)=73.14117972373846;
rents(657,2)=32.913530875682106;
rents(657,3)=44.454744577550066;
rents(657,4)=58.17106706921333;
rents(657,5)=73.75396186092006;
rents(657,6)=91.161414934039;
rents(657,7)=108.45845014289941;
rents(657,8)=122.90981376083617;
rents(657,9)=132.85330167548636;
bref(658)=11000;
bnorm(658)=20000;
incomemean(658)=17000;
rents(658,1)=70.68029482372947;
rents(658,2)=31.80613267067805;
rents(658,3)=45.4448892249649;
rents(658,4)=62.829113303175596;
rents(658,5)=82.86181898890666;
rents(658,6)=105.34777706005626;
rents(658,7)=127.31785894346511;
rents(658,8)=148.0816224504717;
rents(658,9)=166.4472784068462;
bref(659)=11000;
bnorm(659)=20000;
incomemean(659)=18000;
rents(659,1)=72.44345789730647;
rents(659,2)=32.599556053788056;
rents(659,3)=48.534115158164596;
rents(659,4)=69.67401956371266;
rents(659,5)=93.58370609321022;
rents(659,6)=122.0135561692012;
rents(659,7)=149.36152349284134;
rents(659,8)=170.02304580071774;
rents(659,9)=185.29666575731173;
bref(660)=11000;
bnorm(660)=20000;
incomemean(660)=19000;
rents(660,1)=72.35875228036204;
rents(660,2)=32.56143852616308;
rents(660,3)=50.66167731901045;
rents(660,4)=75.682020391272;
rents(660,5)=106.82807609915706;
rents(660,6)=142.8732559774194;
rents(660,7)=176.18353215956398;
rents(660,8)=194.39106697877457;
rents(660,9)=199.75092534060906;
bref(661)=11000;
bnorm(661)=22000;
incomemean(661)=10000;
rents(661,1)=69.81149440620217;
rents(661,2)=34.90574720310109;
rents(661,3)=35.51925293913466;
rents(661,4)=36.17403228280592;
rents(661,5)=36.11409438264017;
rents(661,6)=36.44542658876555;
rents(661,7)=36.469476449966656;
rents(661,8)=36.15785804370629;
rents(661,9)=35.75865606106071;
bref(662)=11000;
bnorm(662)=22000;
incomemean(662)=11000;
rents(662,1)=74.13936303114973;
rents(662,2)=37.06968151557487;
rents(662,3)=38.9225087610663;
rents(662,4)=40.81178381673383;
rents(662,5)=42.339698034246595;
rents(662,6)=43.794090074675836;
rents(662,7)=45.3295537329077;
rents(662,8)=45.56952873653991;
rents(662,9)=46.27243817239894;
bref(663)=11000;
bnorm(663)=22000;
incomemean(663)=12000;
rents(663,1)=73.84292942618312;
rents(663,2)=36.92146471309158;
rents(663,3)=39.54121432003693;
rents(663,4)=41.56511272057975;
rents(663,5)=43.206248302636226;
rents(663,6)=45.334979208269935;
rents(663,7)=46.822280171486604;
rents(663,8)=48.50402438469188;
rents(663,9)=49.22944427771717;
bref(664)=11000;
bnorm(664)=22000;
incomemean(664)=13000;
rents(664,1)=71.33803155462043;
rents(664,2)=35.669015777310186;
rents(664,3)=40.13534496394894;
rents(664,4)=44.85019423249055;
rents(664,5)=49.48652527634903;
rents(664,6)=53.81790544449423;
rents(664,7)=58.2327806327533;
rents(664,8)=61.02143460900467;
rents(664,9)=63.25643730205609;
bref(665)=11000;
bnorm(665)=22000;
incomemean(665)=14000;
rents(665,1)=74.00126983004073;
rents(665,2)=37.00063491502035;
rents(665,3)=43.739591883004415;
rents(665,4)=50.72571008355101;
rents(665,5)=57.112352456954326;
rents(665,6)=64.25750390538354;
rents(665,7)=70.29428824714208;
rents(665,8)=75.13311218832945;
rents(665,9)=79.04185979757462;
bref(666)=11000;
bnorm(666)=22000;
incomemean(666)=15000;
rents(666,1)=71.95000033783182;
rents(666,2)=35.975000168915926;
rents(666,3)=45.17549987678874;
rents(666,4)=55.42157116496576;
rents(666,5)=66.04683215418693;
rents(666,6)=77.3760396697936;
rents(666,7)=87.97018900834759;
rents(666,8)=96.1002350094;
rents(666,9)=103.97762776016938;
bref(667)=11000;
bnorm(667)=22000;
incomemean(667)=16000;
rents(667,1)=71.89684470991602;
rents(667,2)=35.94842235495798;
rents(667,3)=46.91492612054657;
rents(667,4)=59.807740239867236;
rents(667,5)=73.35701725747559;
rents(667,6)=88.50152776938802;
rents(667,7)=103.62241054216446;
rents(667,8)=115.22704143593673;
rents(667,9)=125.4224121619926;
bref(668)=11000;
bnorm(668)=22000;
incomemean(668)=17000;
rents(668,1)=72.54608535257135;
rents(668,2)=36.273042676285684;
rents(668,3)=50.25694148118541;
rents(668,4)=67.47218357154802;
rents(668,5)=86.93997369275654;
rents(668,6)=109.25670235284562;
rents(668,7)=130.25539953781328;
rents(668,8)=147.67896354603664;
rents(668,9)=165.80878891475896;
bref(669)=11000;
bnorm(669)=22000;
incomemean(669)=18000;
rents(669,1)=70.882845172336;
rents(669,2)=35.44142258616801;
rents(669,3)=51.10898613831192;
rents(669,4)=71.74115721611989;
rents(669,5)=94.59357930145403;
rents(669,6)=121.93625612090051;
rents(669,7)=147.46901555901854;
rents(669,8)=170.79733936254968;
rents(669,9)=188.82742930433827;
bref(670)=11000;
bnorm(670)=22000;
incomemean(670)=19000;
rents(670,1)=72.61266468842324;
rents(670,2)=36.306332344211505;
rents(670,3)=54.42357616647862;
rents(670,4)=79.07793718099312;
rents(670,5)=107.5340716408546;
rents(670,6)=140.5091864732375;
rents(670,7)=174.19657232501515;
rents(670,8)=193.83711995561785;
rents(670,9)=198.59487766652109;
bref(671)=11000;
bnorm(671)=24000;
incomemean(671)=10000;
rents(671,1)=72.53806096982143;
rents(671,2)=39.29144969198646;
rents(671,3)=39.49752486272103;
rents(671,4)=39.61933134829054;
rents(671,5)=39.75473493662171;
rents(671,6)=40.20012371912104;
rents(671,7)=40.43923654663821;
rents(671,8)=40.28787275302819;
rents(671,9)=39.865599534291526;
bref(672)=11000;
bnorm(672)=24000;
incomemean(672)=11000;
rents(672,1)=73.18819982223927;
rents(672,2)=39.6436082370464;
rents(672,3)=40.99420894434799;
rents(672,4)=42.11803391648854;
rents(672,5)=42.93633174362479;
rents(672,6)=43.996619270505235;
rents(672,7)=45.08990504262725;
rents(672,8)=45.01863833229143;
rents(672,9)=45.52356039486859;
bref(673)=11000;
bnorm(673)=24000;
incomemean(673)=12000;
rents(673,1)=73.0373273399024;
rents(673,2)=39.561885642447024;
rents(673,3)=42.68095934428259;
rents(673,4)=45.22888865016722;
rents(673,5)=47.322867113726666;
rents(673,6)=49.9583957146292;
rents(673,7)=52.11920593692466;
rents(673,8)=53.332290891695735;
rents(673,9)=54.022912654237906;
bref(674)=11000;
bnorm(674)=24000;
incomemean(674)=13000;
rents(674,1)=73.81161549480156;
rents(674,2)=39.981291726350754;
rents(674,3)=44.29378663029311;
rents(674,4)=48.08816162734673;
rents(674,5)=51.33103593495127;
rents(674,6)=55.085303450546114;
rents(674,7)=58.501558886021876;
rents(674,8)=60.69510328927189;
rents(674,9)=62.61982350508909;
bref(675)=11000;
bnorm(675)=24000;
incomemean(675)=14000;
rents(675,1)=71.42908839008797;
rents(675,2)=38.690756211297646;
rents(675,3)=45.840332154227234;
rents(675,4)=53.10469697456761;
rents(675,5)=59.811717113372964;
rents(675,6)=67.30038901611167;
rents(675,7)=74.8652355554778;
rents(675,8)=80.56634937895893;
rents(675,9)=85.51770434658468;
bref(676)=11000;
bnorm(676)=24000;
incomemean(676)=15000;
rents(676,1)=73.19588789078266;
rents(676,2)=39.6477726075075;
rents(676,3)=47.9670409840919;
rents(676,4)=56.84413990295472;
rents(676,5)=65.95719613898179;
rents(676,6)=75.296509276381;
rents(676,7)=84.88636944770776;
rents(676,8)=92.47788937701321;
rents(676,9)=99.45189895637904;
bref(677)=11000;
bnorm(677)=24000;
incomemean(677)=16000;
rents(677,1)=71.92581549942423;
rents(677,2)=38.959816728854996;
rents(677,3)=50.69470892624455;
rents(677,4)=63.9395098655356;
rents(677,5)=77.8665445551061;
rents(677,6)=93.43663170687584;
rents(677,7)=107.95944521473848;
rents(677,8)=119.68015690780915;
rents(677,9)=131.1778949503266;
bref(678)=11000;
bnorm(678)=24000;
incomemean(678)=17000;
rents(678,1)=73.47932051923225;
rents(678,2)=39.8012986145841;
rents(678,3)=52.72512720272758;
rents(678,4)=68.00850759521933;
rents(678,5)=83.86651641893565;
rents(678,6)=102.2114347015565;
rents(678,7)=120.51129563483673;
rents(678,8)=134.92875926691224;
rents(678,9)=146.39234729722574;
bref(679)=11000;
bnorm(679)=24000;
incomemean(679)=18000;
rents(679,1)=72.75799206946701;
rents(679,2)=39.41057903762807;
rents(679,3)=55.59997268673203;
rents(679,4)=75.343066387488;
rents(679,5)=98.5163604644515;
rents(679,6)=124.00690661224444;
rents(679,7)=149.3747488034523;
rents(679,8)=167.95338193796198;
rents(679,9)=187.3985521678575;
bref(680)=11000;
bnorm(680)=24000;
incomemean(680)=19000;
rents(680,1)=74.45348439429165;
rents(680,2)=40.32897071357454;
rents(680,3)=59.00842868675654;
rents(680,4)=83.49640197487294;
rents(680,5)=111.92980367024649;
rents(680,6)=143.82872216463423;
rents(680,7)=176.18799299088627;
rents(680,8)=194.17026416583582;
rents(680,9)=199.0278792741497;
bref(681)=11000;
bnorm(681)=26000;
incomemean(681)=10000;
rents(681,1)=72.8191776380555;
rents(681,2)=42.01106402195538;
rents(681,3)=42.38744392375884;
rents(681,4)=42.60162356061542;
rents(681,5)=42.452892662736254;
rents(681,6)=42.51890946959413;
rents(681,7)=42.501787363292806;
rents(681,8)=42.06088776766831;
rents(681,9)=41.66088901150974;
bref(682)=11000;
bnorm(682)=26000;
incomemean(682)=11000;
rents(682,1)=70.94174262096992;
rents(682,2)=40.92792843517492;
rents(682,3)=42.06790793621822;
rents(682,4)=42.86779310486155;
rents(682,5)=43.533487871160844;
rents(682,6)=44.16927096196544;
rents(682,7)=45.003434064704834;
rents(682,8)=44.906184943266304;
rents(682,9)=44.72440522122624;
bref(683)=11000;
bnorm(683)=26000;
incomemean(683)=12000;
rents(683,1)=71.50677075765881;
rents(683,2)=41.25390620634163;
rents(683,3)=44.04984976239041;
rents(683,4)=46.2132025294028;
rents(683,5)=48.414298293986725;
rents(683,6)=50.80505387221112;
rents(683,7)=52.936813576591526;
rents(683,8)=54.19226989199734;
rents(683,9)=55.49979678281408;
bref(684)=11000;
bnorm(684)=26000;
incomemean(684)=13000;
rents(684,1)=72.97613692729404;
rents(684,2)=42.10161745805423;
rents(684,3)=46.60560377738186;
rents(684,4)=51.14812543212453;
rents(684,5)=55.292344548459866;
rents(684,6)=59.6714828566952;
rents(684,7)=63.550524647574946;
rents(684,8)=65.78554366748052;
rents(684,9)=67.8148101671969;
bref(685)=11000;
bnorm(685)=26000;
incomemean(685)=14000;
rents(685,1)=70.78932476164766;
rents(685,2)=40.83999505479665;
rents(685,3)=47.174487093837165;
rents(685,4)=53.89544941797511;
rents(685,5)=60.03986373211607;
rents(685,6)=66.47509580560286;
rents(685,7)=72.29875700255226;
rents(685,8)=77.07895959606017;
rents(685,9)=81.03904885639339;
bref(686)=11000;
bnorm(686)=26000;
incomemean(686)=15000;
rents(686,1)=75.17480514729988;
rents(686,2)=43.37007989267304;
rents(686,3)=51.85821417763376;
rents(686,4)=60.544547679641155;
rents(686,5)=70.36310284941295;
rents(686,6)=80.06241175263878;
rents(686,7)=89.71107872353006;
rents(686,8)=97.63291873912274;
rents(686,9)=103.9204765132827;
bref(687)=11000;
bnorm(687)=26000;
incomemean(687)=16000;
rents(687,1)=72.63428826316593;
rents(687,2)=41.904397074903194;
rents(687,3)=52.3526938239573;
rents(687,4)=63.72721415457745;
rents(687,5)=75.26270851861851;
rents(687,6)=87.75443069021848;
rents(687,7)=100.12826137095952;
rents(687,8)=110.65052661383669;
rents(687,9)=119.76145431307823;
bref(688)=11000;
bnorm(688)=26000;
incomemean(688)=17000;
rents(688,1)=72.15845313231047;
rents(688,2)=41.629876807102264;
rents(688,3)=54.407316273707764;
rents(688,4)=70.06417505066251;
rents(688,5)=85.64882244503781;
rents(688,6)=102.93970029908763;
rents(688,7)=120.39954606370164;
rents(688,8)=133.9586555053635;
rents(688,9)=147.18578339993812;
bref(689)=11000;
bnorm(689)=26000;
incomemean(689)=18000;
rents(689,1)=69.34181604700045;
rents(689,2)=40.00489387326932;
rents(689,3)=54.388328744269195;
rents(689,4)=71.07951602212933;
rents(689,5)=90.53974725711541;
rents(689,6)=112.04160900691814;
rents(689,7)=133.63969348752104;
rents(689,8)=152.6104990765527;
rents(689,9)=170.62887530516988;
bref(690)=11000;
bnorm(690)=26000;
incomemean(690)=19000;
rents(690,1)=72.17614534789504;
rents(690,2)=41.64008385455487;
rents(690,3)=59.21873583303051;
rents(690,4)=81.64641034986523;
rents(690,5)=107.3660162357598;
rents(690,6)=135.2417234238573;
rents(690,7)=163.56356535925855;
rents(690,8)=186.87948801432742;
rents(690,9)=198.46732263261782;
bref(691)=11000;
bnorm(691)=28000;
incomemean(691)=10000;
rents(691,1)=72.67990810845029;
rents(691,2)=44.12708706584504;
rents(691,3)=43.85543512393381;
rents(691,4)=43.6732172424842;
rents(691,5)=42.805863905003065;
rents(691,6)=42.658393921282254;
rents(691,7)=42.241957470847964;
rents(691,8)=41.621763226818956;
rents(691,9)=40.64249368972495;
bref(692)=11000;
bnorm(692)=28000;
incomemean(692)=11000;
rents(692,1)=74.90546161586934;
rents(692,2)=45.478315981063595;
rents(692,3)=46.32972461591073;
rents(692,4)=46.96397983220113;
rents(692,5)=47.47362833830295;
rents(692,6)=48.40443322050124;
rents(692,7)=48.89705039175202;
rents(692,8)=49.201498092492926;
rents(692,9)=49.44574654669638;
bref(693)=11000;
bnorm(693)=28000;
incomemean(693)=12000;
rents(693,1)=72.19421264388936;
rents(693,2)=43.8322005337899;
rents(693,3)=46.223485819052314;
rents(693,4)=48.27047294268979;
rents(693,5)=49.890890074916115;
rents(693,6)=52.005127845072934;
rents(693,7)=53.74279481930399;
rents(693,8)=54.599095213001064;
rents(693,9)=54.87150756927873;
bref(694)=11000;
bnorm(694)=28000;
incomemean(694)=13000;
rents(694,1)=70.90032617995476;
rents(694,2)=43.046626609258475;
rents(694,3)=47.188930313686086;
rents(694,4)=51.40841740501365;
rents(694,5)=54.91527903186093;
rents(694,6)=58.317976590456;
rents(694,7)=61.811344476379205;
rents(694,8)=64.40384316026623;
rents(694,9)=66.59278422204679;
bref(695)=11000;
bnorm(695)=28000;
incomemean(695)=14000;
rents(695,1)=72.87254874317155;
rents(695,2)=44.24404745121085;
rents(695,3)=50.04111085542241;
rents(695,4)=55.86662449156387;
rents(695,5)=61.43708424205838;
rents(695,6)=66.90559835569907;
rents(695,7)=72.36136052599969;
rents(695,8)=75.6237991316852;
rents(695,9)=79.1816914756266;
bref(696)=11000;
bnorm(696)=28000;
incomemean(696)=15000;
rents(696,1)=73.58822967501855;
rents(696,2)=44.678568016975525;
rents(696,3)=52.99001172041803;
rents(696,4)=61.636283276569294;
rents(696,5)=69.96932347192092;
rents(696,6)=78.54379192724936;
rents(696,7)=87.18935248314537;
rents(696,8)=93.77692180928176;
rents(696,9)=100.84358953004734;
bref(697)=11000;
bnorm(697)=28000;
incomemean(697)=16000;
rents(697,1)=71.4360353684867;
rents(697,2)=43.37187861658124;
rents(697,3)=53.072333778165444;
rents(697,4)=63.32704729194496;
rents(697,5)=73.56931628337291;
rents(697,6)=84.18799936943586;
rents(697,7)=95.00619109414336;
rents(697,8)=104.69603714123585;
rents(697,9)=113.37106596307562;
bref(698)=11000;
bnorm(698)=28000;
incomemean(698)=17000;
rents(698,1)=72.1457641165368;
rents(698,2)=43.80278535646893;
rents(698,3)=56.05682393552072;
rents(698,4)=69.86233278831595;
rents(698,5)=84.40658373617549;
rents(698,6)=101.26384357472483;
rents(698,7)=117.90528947807012;
rents(698,8)=130.5316894369133;
rents(698,9)=144.0927478228009;
bref(699)=11000;
bnorm(699)=28000;
incomemean(699)=18000;
rents(699,1)=73.87120874609388;
rents(699,2)=44.85037673869984;
rents(699,3)=59.77551703127224;
rents(699,4)=78.14277912275087;
rents(699,5)=98.27742503087578;
rents(699,6)=120.17420216932545;
rents(699,7)=140.59663431117596;
rents(699,8)=157.02251063732652;
rents(699,9)=172.64852068646925;
bref(700)=11000;
bnorm(700)=28000;
incomemean(700)=19000;
rents(700,1)=72.74201074071703;
rents(700,2)=44.16479223543542;
rents(700,3)=61.466647676167675;
rents(700,4)=83.4648529166913;
rents(700,5)=108.58323323699967;
rents(700,6)=135.17137719581845;
rents(700,7)=162.80517202017728;
rents(700,8)=186.08597386648475;
rents(700,9)=197.0703184624872;
bref(701)=12000;
bnorm(701)=10000;
incomemean(701)=10000;
rents(701,1)=72.6460691706296;
rents(701,2)=-14.529213834125924;
rents(701,3)=-18.46227051310711;
rents(701,4)=-23.940558284020838;
rents(701,5)=-31.18253625754358;
rents(701,6)=-42.8319693820746;
rents(701,7)=-62.743718164832;
rents(701,8)=-96.14203477877173;
rents(701,9)=-168.0438566772489;
bref(702)=12000;
bnorm(702)=10000;
incomemean(702)=11000;
rents(702,1)=72.16200879514439;
rents(702,2)=-14.432401759028812;
rents(702,3)=-18.97611723582971;
rents(702,4)=-25.833322178845478;
rents(702,5)=-35.88597486093784;
rents(702,6)=-53.08575172173547;
rents(702,7)=-85.70780796456357;
rents(702,8)=-151.95089111044769;
rents(702,9)=-332.2289143268727;
bref(703)=12000;
bnorm(703)=10000;
incomemean(703)=12000;
rents(703,1)=74.5530108137791;
rents(703,2)=-14.910602162755925;
rents(703,3)=-21.63171826894998;
rents(703,4)=-32.923451632927005;
rents(703,5)=-51.03647778014616;
rents(703,6)=-86.19582140943847;
rents(703,7)=-164.36935207232636;
rents(703,8)=-385.23820513920555;
rents(703,9)=-1425.102419283024;
bref(704)=12000;
bnorm(704)=10000;
incomemean(704)=13000;
rents(704,1)=73.70299802235971;
rents(704,2)=-14.740599604471981;
rents(704,3)=-22.83218159014711;
rents(704,4)=-36.37829006220883;
rents(704,5)=-59.036390633045;
rents(704,6)=-106.19687132769437;
rents(704,7)=-224.8742228201452;
rents(704,8)=-629.1846258784406;
rents(704,9)=-3315.6544497011273;
bref(705)=12000;
bnorm(705)=10000;
incomemean(705)=14000;
rents(705,1)=72.38272999704719;
rents(705,2)=-14.476545999409446;
rents(705,3)=-23.94284927566818;
rents(705,4)=-41.50141434834303;
rents(705,5)=-74.3859328465701;
rents(705,6)=-151.4303073268801;
rents(705,7)=-377.17187413464126;
rents(705,8)=-1457.530507360651;
rents(705,9)=-15514.445112000481;
bref(706)=12000;
bnorm(706)=10000;
incomemean(706)=15000;
rents(706,1)=71.37778679422878;
rents(706,2)=-14.275557358845822;
rents(706,3)=-25.450538515617446;
rents(706,4)=-46.59414472583274;
rents(706,5)=-92.01386526452438;
rents(706,6)=-206.42079391140527;
rents(706,7)=-611.2277254689005;
rents(706,8)=-3346.8558137574637;
rents(706,9)=-75838.90648535835;
bref(707)=12000;
bnorm(707)=10000;
incomemean(707)=16000;
rents(707,1)=74.07481661238388;
rents(707,2)=-14.81496332247674;
rents(707,3)=-28.89573335081436;
rents(707,4)=-58.00534137299965;
rents(707,5)=-125.7889142900018;
rents(707,6)=-327.33801828193975;
rents(707,7)=-1268.3501690648857;
rents(707,8)=-12259.791205147654;
rents(707,9)=-962509.8360506097;
bref(708)=12000;
bnorm(708)=10000;
incomemean(708)=17000;
rents(708,1)=72.03449404025854;
rents(708,2)=-14.406898808051777;
rents(708,3)=-29.790192113103664;
rents(708,4)=-63.935689023951596;
rents(708,5)=-148.2597544844851;
rents(708,6)=-427.8965461365442;
rents(708,7)=-1965.7330779857753;
rents(708,8)=-27678.47719255467;
rents(708,9)=-4821209.831265398;
bref(709)=12000;
bnorm(709)=10000;
incomemean(709)=18000;
rents(709,1)=70.8552152362123;
rents(709,2)=-14.171043047242476;
rents(709,3)=-31.47977024252701;
rents(709,4)=-72.45738707893541;
rents(709,5)=-184.36016622163743;
rents(709,6)=-603.4330031631149;
rents(709,7)=-3550.4985209785386;
rents(709,8)=-85901.74504386654;
rents(709,9)=-4.64070120010604E7;
bref(710)=12000;
bnorm(710)=10000;
incomemean(710)=19000;
rents(710,1)=73.3837535741957;
rents(710,2)=-14.676750714839184;
rents(710,3)=-35.35928697521705;
rents(710,4)=-88.31345280618504;
rents(710,5)=-248.7962156538081;
rents(710,6)=-956.1609727819035;
rents(710,7)=-7894.212418837865;
rents(710,8)=-406040.6484098389;
rents(710,9)=-1.0295886113919845E9;
bref(711)=12000;
bnorm(711)=12000;
incomemean(711)=10000;
rents(711,1)=73.26505873846426;
rents(711,2)=0;
rents(711,3)=0;
rents(711,4)=0;
rents(711,5)=0;
rents(711,6)=0;
rents(711,7)=0;
rents(711,8)=0;
rents(711,9)=0;
bref(712)=12000;
bnorm(712)=12000;
incomemean(712)=11000;
rents(712,1)=71.90735587261;
rents(712,2)=0;
rents(712,3)=0;
rents(712,4)=0;
rents(712,5)=0;
rents(712,6)=0;
rents(712,7)=0;
rents(712,8)=0;
rents(712,9)=0;
bref(713)=12000;
bnorm(713)=12000;
incomemean(713)=12000;
rents(713,1)=71.57687546154428;
rents(713,2)=0;
rents(713,3)=0;
rents(713,4)=0;
rents(713,5)=0;
rents(713,6)=0;
rents(713,7)=0;
rents(713,8)=0;
rents(713,9)=0;
bref(714)=12000;
bnorm(714)=12000;
incomemean(714)=13000;
rents(714,1)=71.80549340585459;
rents(714,2)=0;
rents(714,3)=0;
rents(714,4)=0;
rents(714,5)=0;
rents(714,6)=0;
rents(714,7)=0;
rents(714,8)=0;
rents(714,9)=0;
bref(715)=12000;
bnorm(715)=12000;
incomemean(715)=14000;
rents(715,1)=74.32853306431345;
rents(715,2)=0;
rents(715,3)=0;
rents(715,4)=0;
rents(715,5)=0;
rents(715,6)=0;
rents(715,7)=0;
rents(715,8)=0;
rents(715,9)=0;
bref(716)=12000;
bnorm(716)=12000;
incomemean(716)=15000;
rents(716,1)=72.09883702246921;
rents(716,2)=0;
rents(716,3)=0;
rents(716,4)=0;
rents(716,5)=0;
rents(716,6)=0;
rents(716,7)=0;
rents(716,8)=0;
rents(716,9)=0;
bref(717)=12000;
bnorm(717)=12000;
incomemean(717)=16000;
rents(717,1)=73.13198927448653;
rents(717,2)=0;
rents(717,3)=0;
rents(717,4)=0;
rents(717,5)=0;
rents(717,6)=0;
rents(717,7)=0;
rents(717,8)=0;
rents(717,9)=0;
bref(718)=12000;
bnorm(718)=12000;
incomemean(718)=17000;
rents(718,1)=76.8179919542182;
rents(718,2)=0;
rents(718,3)=0;
rents(718,4)=0;
rents(718,5)=0;
rents(718,6)=0;
rents(718,7)=0;
rents(718,8)=0;
rents(718,9)=0;
bref(719)=12000;
bnorm(719)=12000;
incomemean(719)=18000;
rents(719,1)=72.8273734451045;
rents(719,2)=0;
rents(719,3)=0;
rents(719,4)=0;
rents(719,5)=0;
rents(719,6)=0;
rents(719,7)=0;
rents(719,8)=0;
rents(719,9)=0;
bref(720)=12000;
bnorm(720)=12000;
incomemean(720)=19000;
rents(720,1)=70.22057630499803;
rents(720,2)=0;
rents(720,3)=0;
rents(720,4)=0;
rents(720,5)=0;
rents(720,6)=0;
rents(720,7)=0;
rents(720,8)=0;
rents(720,9)=0;
bref(721)=12000;
bnorm(721)=14000;
incomemean(721)=10000;
rents(721,1)=75.07379079425526;
rents(721,2)=10.724827256322262;
rents(721,3)=11.723334994169974;
rents(721,4)=12.57318564094511;
rents(721,5)=13.287862466501611;
rents(721,6)=14.120245878836055;
rents(721,7)=15.058791544674678;
rents(721,8)=15.45161504246173;
rents(721,9)=15.881323923910802;
bref(722)=12000;
bnorm(722)=14000;
incomemean(722)=11000;
rents(722,1)=71.39232307514231;
rents(722,2)=10.198903296448936;
rents(722,3)=11.413330182778054;
rents(722,4)=12.524314085851872;
rents(722,5)=13.49443160020306;
rents(722,6)=14.748203693897546;
rents(722,7)=15.682414550051881;
rents(722,8)=16.145461741305194;
rents(722,9)=16.79172284732858;
bref(723)=12000;
bnorm(723)=14000;
incomemean(723)=12000;
rents(723,1)=70.96092075473099;
rents(723,2)=10.137274393533065;
rents(723,3)=11.97712226935417;
rents(723,4)=14.038816633557673;
rents(723,5)=16.121627239073057;
rents(723,6)=18.60073803697576;
rents(723,7)=21.25265619021586;
rents(723,8)=23.247845885984564;
rents(723,9)=25.08081454176137;
bref(724)=12000;
bnorm(724)=14000;
incomemean(724)=13000;
rents(724,1)=73.4166459455991;
rents(724,2)=10.488092277942677;
rents(724,3)=13.106201808277657;
rents(724,4)=16.372581995118907;
rents(724,5)=19.92065472424592;
rents(724,6)=24.061828109694794;
rents(724,7)=28.36705540045638;
rents(724,8)=32.75786647408358;
rents(724,9)=37.451582756693696;
bref(725)=12000;
bnorm(725)=14000;
incomemean(725)=14000;
rents(725,1)=73.16277273978228;
rents(725,2)=10.451824677111677;
rents(725,3)=14.259182667866831;
rents(725,4)=19.09000855537652;
rents(725,5)=24.414173566241814;
rents(725,6)=31.034233152404774;
rents(725,7)=38.66366732221006;
rents(725,8)=46.337650082682394;
rents(725,9)=53.230718127963094;
bref(726)=12000;
bnorm(726)=14000;
incomemean(726)=15000;
rents(726,1)=74.67355255364303;
rents(726,2)=10.667650364806141;
rents(726,3)=15.183529261029038;
rents(726,4)=21.24392088484409;
rents(726,5)=28.943692848648826;
rents(726,6)=39.06579510167786;
rents(726,7)=50.685189652150875;
rents(726,8)=62.03141281822385;
rents(726,9)=72.45724263388826;
bref(727)=12000;
bnorm(727)=14000;
incomemean(727)=16000;
rents(727,1)=70.6544690573967;
rents(727,2)=10.09349557962815;
rents(727,3)=15.482919875553467;
rents(727,4)=23.055921103847297;
rents(727,5)=33.52118353722181;
rents(727,6)=47.58436540030048;
rents(727,7)=63.905658450667204;
rents(727,8)=80.59310694560772;
rents(727,9)=96.86052402833037;
bref(728)=12000;
bnorm(728)=14000;
incomemean(728)=17000;
rents(728,1)=72.19760929687814;
rents(728,2)=10.313944185268388;
rents(728,3)=16.8210570305817;
rents(728,4)=26.665289066727823;
rents(728,5)=40.89337764819382;
rents(728,6)=60.76581502559633;
rents(728,7)=85.68341807980894;
rents(728,8)=108.11665685038047;
rents(728,9)=126.84218975250259;
bref(729)=12000;
bnorm(729)=14000;
incomemean(729)=18000;
rents(729,1)=68.11674686328385;
rents(729,2)=9.730963837612066;
rents(729,3)=17.15403950595857;
rents(729,4)=29.417703372846532;
rents(729,5)=48.46161663127712;
rents(729,6)=76.78229313892182;
rents(729,7)=112.564999681524;
rents(729,8)=143.5782043640823;
rents(729,9)=171.71256009587438;
bref(730)=12000;
bnorm(730)=14000;
incomemean(730)=19000;
rents(730,1)=75.28976211146527;
rents(730,2)=10.75568030163798;
rents(730,3)=19.738580302427216;
rents(730,4)=35.16173987870352;
rents(730,5)=60.03455801422978;
rents(730,6)=98.02698475839615;
rents(730,7)=144.04947329267694;
rents(730,8)=178.63695356158928;
rents(730,9)=194.32542568474267;
bref(731)=12000;
bnorm(731)=16000;
incomemean(731)=10000;
rents(731,1)=73.19847597846902;
rents(731,2)=18.29961899461724;
rents(731,3)=18.741312477654223;
rents(731,4)=19.100314226516534;
rents(731,5)=19.173572322427365;
rents(731,6)=19.65757859317193;
rents(731,7)=19.93725852850806;
rents(731,8)=19.697807006282154;
rents(731,9)=19.51929830798488;
bref(732)=12000;
bnorm(732)=16000;
incomemean(732)=11000;
rents(732,1)=73.42953758862798;
rents(732,2)=18.357384397156956;
rents(732,3)=19.698684525751922;
rents(732,4)=20.992851331221555;
rents(732,5)=22.377441378908706;
rents(732,6)=23.854156540432108;
rents(732,7)=25.378468777275877;
rents(732,8)=26.147713147309588;
rents(732,9)=27.002603302025523;
bref(733)=12000;
bnorm(733)=16000;
incomemean(733)=12000;
rents(733,1)=70.59098600124963;
rents(733,2)=17.647746500312437;
rents(733,3)=19.790812696936097;
rents(733,4)=21.91976067383073;
rents(733,5)=24.015468159885366;
rents(733,6)=26.105170176592058;
rents(733,7)=28.056257838115695;
rents(733,8)=29.480578437022228;
rents(733,9)=31.165241186584886;
bref(734)=12000;
bnorm(734)=16000;
incomemean(734)=13000;
rents(734,1)=73.0843098948301;
rents(734,2)=18.271077473707486;
rents(734,3)=21.676272679240455;
rents(734,4)=25.50606070751473;
rents(734,5)=29.446023091723415;
rents(734,6)=34.06527635662651;
rents(734,7)=38.48334216388678;
rents(734,8)=42.252399228163426;
rents(734,9)=45.11097903147376;
bref(735)=12000;
bnorm(735)=16000;
incomemean(735)=14000;
rents(735,1)=70.53581601782693;
rents(735,2)=17.63395400445674;
rents(735,3)=22.127107810648894;
rents(735,4)=27.734031201057547;
rents(735,5)=33.457883374711365;
rents(735,6)=39.93604254439151;
rents(735,7)=46.37029518479898;
rents(735,8)=51.62291482648849;
rents(735,9)=56.11513373381569;
bref(736)=12000;
bnorm(736)=16000;
incomemean(736)=15000;
rents(736,1)=72.34026338825429;
rents(736,2)=18.085065847063564;
rents(736,3)=24.239650733663428;
rents(736,4)=31.809743020840965;
rents(736,5)=40.49107907538609;
rents(736,6)=50.22377503051099;
rents(736,7)=61.33318884882798;
rents(736,8)=70.92656078372016;
rents(736,9)=78.86866275230004;
bref(737)=12000;
bnorm(737)=16000;
incomemean(737)=16000;
rents(737,1)=71.87358868464514;
rents(737,2)=17.968397171161303;
rents(737,3)=25.708674121605153;
rents(737,4)=36.128508530878776;
rents(737,5)=48.39582542457793;
rents(737,6)=63.42005966537942;
rents(737,7)=80.0745163903822;
rents(737,8)=93.96310301620149;
rents(737,9)=105.7582258202547;
bref(738)=12000;
bnorm(738)=16000;
incomemean(738)=17000;
rents(738,1)=73.23354177664629;
rents(738,2)=18.308385444161576;
rents(738,3)=28.415500831947988;
rents(738,4)=42.52897421792352;
rents(738,5)=60.114805203371596;
rents(738,6)=83.4579958382971;
rents(738,7)=107.61982375136137;
rents(738,8)=127.79294808402084;
rents(738,9)=142.18649873916553;
bref(739)=12000;
bnorm(739)=16000;
incomemean(739)=18000;
rents(739,1)=74.68803974740862;
rents(739,2)=18.67200993685216;
rents(739,3)=30.700277648229626;
rents(739,4)=48.658783558587075;
rents(739,5)=72.40009781630705;
rents(739,6)=103.69841305646872;
rents(739,7)=136.91255975180496;
rents(739,8)=159.156608478911;
rents(739,9)=177.05408751878912;
bref(740)=12000;
bnorm(740)=16000;
incomemean(740)=19000;
rents(740,1)=68.93081117166716;
rents(740,2)=17.2327027929168;
rents(740,3)=30.309147419078684;
rents(740,4)=51.08158178372342;
rents(740,5)=81.05249382992812;
rents(740,6)=121.43914669346555;
rents(740,7)=166.24218607796286;
rents(740,8)=188.9747651808943;
rents(740,9)=195.22887975082915;
bref(741)=12000;
bnorm(741)=18000;
incomemean(741)=10000;
rents(741,1)=71.0168249099311;
rents(741,2)=23.672274969977053;
rents(741,3)=23.95105172188447;
rents(741,4)=24.366404864690598;
rents(741,5)=24.51130611413402;
rents(741,6)=24.479645277661515;
rents(741,7)=24.587811029860635;
rents(741,8)=24.14071847433288;
rents(741,9)=23.395137010243996;
bref(742)=12000;
bnorm(742)=18000;
incomemean(742)=11000;
rents(742,1)=70.74760616553054;
rents(742,2)=23.582535388510156;
rents(742,3)=24.66186556161101;
rents(742,4)=25.490929563222394;
rents(742,5)=26.27931015226291;
rents(742,6)=27.086154556861125;
rents(742,7)=27.885410163448434;
rents(742,8)=27.956285724309886;
rents(742,9)=28.571009473212698;
bref(743)=12000;
bnorm(743)=18000;
incomemean(743)=12000;
rents(743,1)=74.0258806997091;
rents(743,2)=24.675293566569717;
rents(743,3)=26.77246516793945;
rents(743,4)=28.607022840489282;
rents(743,5)=30.18774759555279;
rents(743,6)=32.28837584999266;
rents(743,7)=34.07895504819714;
rents(743,8)=34.62302573903823;
rents(743,9)=35.02906950731692;
bref(744)=12000;
bnorm(744)=18000;
incomemean(744)=13000;
rents(744,1)=72.09276957864405;
rents(744,2)=24.03092319288126;
rents(744,3)=27.73047707419757;
rents(744,4)=31.466573638855827;
rents(744,5)=35.000167130248194;
rents(744,6)=38.840799894245436;
rents(744,7)=42.60157410347117;
rents(744,8)=45.26424479645307;
rents(744,9)=47.82107854343434;
bref(745)=12000;
bnorm(745)=18000;
incomemean(745)=14000;
rents(745,1)=70.8232582971618;
rents(745,2)=23.6077527657206;
rents(745,3)=28.84184800930472;
rents(745,4)=34.65786157682795;
rents(745,5)=39.990268373961555;
rents(745,6)=46.57978699130364;
rents(745,7)=52.81105921843027;
rents(745,8)=56.78358689366309;
rents(745,9)=61.182136585880485;
bref(746)=12000;
bnorm(746)=18000;
incomemean(746)=15000;
rents(746,1)=73.09492928410347;
rents(746,2)=24.364976428034346;
rents(746,3)=31.31259361762447;
rents(746,4)=39.5085590740311;
rents(746,5)=48.86349055810476;
rents(746,6)=59.05192775156869;
rents(746,7)=69.30468852211379;
rents(746,8)=77.15547754974898;
rents(746,9)=83.46482647194324;
bref(747)=12000;
bnorm(747)=18000;
incomemean(747)=16000;
rents(747,1)=72.23531174067908;
rents(747,2)=24.078437246892964;
rents(747,3)=33.1912648047708;
rents(747,4)=44.58680057030261;
rents(747,5)=57.42095352541613;
rents(747,6)=71.60746606870553;
rents(747,7)=86.99725038982696;
rents(747,8)=99.99826484748795;
rents(747,9)=111.0495465981867;
bref(748)=12000;
bnorm(748)=18000;
incomemean(748)=17000;
rents(748,1)=68.01648076788715;
rents(748,2)=22.672160255962513;
rents(748,3)=33.35478363063705;
rents(748,4)=47.437008467138185;
rents(748,5)=63.774412950233874;
rents(748,6)=83.37000532300466;
rents(748,7)=104.61892611012591;
rents(748,8)=122.56984969598766;
rents(748,9)=136.55547890755332;
bref(749)=12000;
bnorm(749)=18000;
incomemean(749)=18000;
rents(749,1)=72.06336316975091;
rents(749,2)=24.0211210565836;
rents(749,3)=36.997340914121075;
rents(749,4)=55.0250576489197;
rents(749,5)=77.80116914231391;
rents(749,6)=105.0660535433912;
rents(749,7)=134.553313191489;
rents(749,8)=156.7737610505277;
rents(749,9)=173.74910619598668;
bref(750)=12000;
bnorm(750)=18000;
incomemean(750)=19000;
rents(750,1)=70.62360550364265;
rents(750,2)=23.541201834547522;
rents(750,3)=38.244124590582636;
rents(750,4)=59.95829806713681;
rents(750,5)=89.31875716058742;
rents(750,6)=124.39066771081318;
rents(750,7)=160.2505878127802;
rents(750,8)=184.91774755583435;
rents(750,9)=195.4953137562086;
bref(751)=12000;
bnorm(751)=20000;
incomemean(751)=10000;
rents(751,1)=71.94698429055501;
rents(751,2)=28.77879371622217;
rents(751,3)=28.651315687933774;
rents(751,4)=28.8534888221411;
rents(751,5)=28.524762545587343;
rents(751,6)=28.50711476830116;
rents(751,7)=28.463965353756375;
rents(751,8)=27.662782412346235;
rents(751,9)=27.136390515114226;
bref(752)=12000;
bnorm(752)=20000;
incomemean(752)=11000;
rents(752,1)=71.42335196959179;
rents(752,2)=28.56934078783688;
rents(752,3)=29.363553764231042;
rents(752,4)=29.985540945547335;
rents(752,5)=30.31509416624735;
rents(752,6)=30.910658440961484;
rents(752,7)=31.562841872237385;
rents(752,8)=31.30899593241594;
rents(752,9)=31.177530528197664;
bref(753)=12000;
bnorm(753)=20000;
incomemean(753)=12000;
rents(753,1)=72.51427921851064;
rents(753,2)=29.005711687404318;
rents(753,3)=31.21183077204991;
rents(753,4)=33.478996836717876;
rents(753,5)=35.03708894275502;
rents(753,6)=37.016877050849374;
rents(753,7)=38.75241087465327;
rents(753,8)=39.95512058766304;
rents(753,9)=41.06158440642355;
bref(754)=12000;
bnorm(754)=20000;
incomemean(754)=13000;
rents(754,1)=73.33036937075748;
rents(754,2)=29.33214774830299;
rents(754,3)=32.55606164384518;
rents(754,4)=35.75235733715284;
rents(754,5)=39.130663043977904;
rents(754,6)=42.69951489100293;
rents(754,7)=45.566242175787885;
rents(754,8)=47.45675982518087;
rents(754,9)=49.32661355223974;
bref(755)=12000;
bnorm(755)=20000;
incomemean(755)=14000;
rents(755,1)=75.20756341812007;
rents(755,2)=30.083025367248016;
rents(755,3)=35.27389292472183;
rents(755,4)=40.72456493418576;
rents(755,5)=46.47067892255873;
rents(755,6)=52.60376791365489;
rents(755,7)=58.028941159629824;
rents(755,8)=61.48311749955058;
rents(755,9)=63.833537955936336;
bref(756)=12000;
bnorm(756)=20000;
incomemean(756)=15000;
rents(756,1)=73.50761518244677;
rents(756,2)=29.40304607297899;
rents(756,3)=37.360316327481215;
rents(756,4)=45.71780163426085;
rents(756,5)=54.54316787379129;
rents(756,6)=64.26132460063997;
rents(756,7)=73.90350643333994;
rents(756,8)=82.60948905408675;
rents(756,9)=90.6553170139845;
bref(757)=12000;
bnorm(757)=20000;
incomemean(757)=16000;
rents(757,1)=70.92027210040195;
rents(757,2)=28.368108840160826;
rents(757,3)=37.130878939288344;
rents(757,4)=47.540231964632696;
rents(757,5)=58.74066703776614;
rents(757,6)=71.96694599132813;
rents(757,7)=84.68025075901029;
rents(757,8)=94.9918988171348;
rents(757,9)=104.4158315653926;
bref(758)=12000;
bnorm(758)=20000;
incomemean(758)=17000;
rents(758,1)=68.72870279709393;
rents(758,2)=27.491481118837733;
rents(758,3)=38.062153848264394;
rents(758,4)=51.439908336335876;
rents(758,5)=67.12472669584598;
rents(758,6)=84.21239717416412;
rents(758,7)=102.30475993558926;
rents(758,8)=116.21559714452422;
rents(758,9)=131.36685999364227;
bref(759)=12000;
bnorm(759)=20000;
incomemean(759)=18000;
rents(759,1)=73.19510193880798;
rents(759,2)=29.27804077552289;
rents(759,3)=43.04730411432693;
rents(759,4)=60.995265664794964;
rents(759,5)=81.33242849453809;
rents(759,6)=104.65065730502899;
rents(759,7)=126.9061808824743;
rents(759,8)=146.1443506144531;
rents(759,9)=160.19435642284364;
bref(760)=12000;
bnorm(760)=20000;
incomemean(760)=19000;
rents(760,1)=71.92265927936054;
rents(760,2)=28.76906371174443;
rents(760,3)=44.014976838525584;
rents(760,4)=64.45850600520596;
rents(760,5)=90.07250624276435;
rents(760,6)=122.03266294392904;
rents(760,7)=152.64141532246092;
rents(760,8)=179.219907632424;
rents(760,9)=195.81541763547898;
bref(761)=12000;
bnorm(761)=22000;
incomemean(761)=10000;
rents(761,1)=69.60323416528183;
rents(761,2)=31.637833711491915;
rents(761,3)=31.244511455141588;
rents(761,4)=30.722290928061273;
rents(761,5)=29.78016233615047;
rents(761,6)=29.439426593206313;
rents(761,7)=28.986770579304732;
rents(761,8)=28.226748342800054;
rents(761,9)=27.363964538005145;
bref(762)=12000;
bnorm(762)=22000;
incomemean(762)=11000;
rents(762,1)=72.67602105078886;
rents(762,2)=33.0345550230859;
rents(762,3)=33.42457273117628;
rents(762,4)=33.711453297266345;
rents(762,5)=33.89491597247528;
rents(762,6)=33.92331081543479;
rents(762,7)=34.35472887988479;
rents(762,8)=33.635663110267224;
rents(762,9)=33.5910731452575;
bref(763)=12000;
bnorm(763)=22000;
incomemean(763)=12000;
rents(763,1)=72.25495503200104;
rents(763,2)=32.8431613781822;
rents(763,3)=34.56621161042179;
rents(763,4)=36.11992242362439;
rents(763,5)=37.0993720870003;
rents(763,6)=38.44016429508619;
rents(763,7)=40.107448537376335;
rents(763,8)=40.68815467797583;
rents(763,9)=41.00112095203022;
bref(764)=12000;
bnorm(764)=22000;
incomemean(764)=13000;
rents(764,1)=70.61997473715245;
rents(764,2)=32.099988516887514;
rents(764,3)=35.11002549709097;
rents(764,4)=37.930605641727354;
rents(764,5)=40.46090028890059;
rents(764,6)=43.75280803353341;
rents(764,7)=46.52407111741116;
rents(764,8)=48.71316459365905;
rents(764,9)=50.902679832923276;
bref(765)=12000;
bnorm(765)=22000;
incomemean(765)=14000;
rents(765,1)=74.06030343079024;
rents(765,2)=33.66377428672319;
rents(765,3)=38.84125988396619;
rents(765,4)=44.29120368750967;
rents(765,5)=49.80462392091006;
rents(765,6)=55.70431097377556;
rents(765,7)=60.313509828932894;
rents(765,8)=64.29529923298756;
rents(765,9)=67.98588386135438;
bref(766)=12000;
bnorm(766)=22000;
incomemean(766)=15000;
rents(766,1)=71.33616663434175;
rents(766,2)=32.42553028833697;
rents(766,3)=38.866520566612635;
rents(766,4)=45.57352652755855;
rents(766,5)=52.34058677909454;
rents(766,6)=59.63241788696373;
rents(766,7)=66.94078134403442;
rents(766,8)=71.4847941748337;
rents(766,9)=75.60955047991476;
bref(767)=12000;
bnorm(767)=22000;
incomemean(767)=16000;
rents(767,1)=74.03086300890126;
rents(767,2)=33.65039227677333;
rents(767,3)=43.07847326209146;
rents(767,4)=53.31062758743694;
rents(767,5)=63.865916143387075;
rents(767,6)=75.44079560773993;
rents(767,7)=87.20015569020403;
rents(767,8)=96.52199952694993;
rents(767,9)=105.34123749562747;
bref(768)=12000;
bnorm(768)=22000;
incomemean(768)=17000;
rents(768,1)=75.52002159201555;
rents(768,2)=34.32728254182516;
rents(768,3)=45.641410401348885;
rents(768,4)=58.78075524739104;
rents(768,5)=72.72574453194686;
rents(768,6)=87.95437631562409;
rents(768,7)=102.38900779820877;
rents(768,8)=114.17868680557007;
rents(768,9)=123.96177978015606;
bref(769)=12000;
bnorm(769)=22000;
incomemean(769)=18000;
rents(769,1)=70.8114092835977;
rents(769,2)=32.18700421981735;
rents(769,3)=45.59629795713997;
rents(769,4)=62.396860506742826;
rents(769,5)=81.38437508396215;
rents(769,6)=103.71726724038871;
rents(769,7)=126.42070102576665;
rents(769,8)=145.92171360462717;
rents(769,9)=163.54604877441176;
bref(770)=12000;
bnorm(770)=22000;
incomemean(770)=19000;
rents(770,1)=71.55562291128022;
rents(770,2)=32.525283141491336;
rents(770,3)=48.11187236654157;
rents(770,4)=69.6690723344594;
rents(770,5)=94.44580385133372;
rents(770,6)=124.67881222991241;
rents(770,7)=153.87469262289892;
rents(770,8)=177.1165020895502;
rents(770,9)=191.15296268525603;
bref(771)=12000;
bnorm(771)=24000;
incomemean(771)=10000;
rents(771,1)=70.40605216155329;
rents(771,2)=35.20302608077666;
rents(771,3)=34.84379562739344;
rents(771,4)=34.04955102360286;
rents(771,5)=33.07004299152991;
rents(771,6)=32.39710190199306;
rents(771,7)=31.81981538482444;
rents(771,8)=30.82476408017906;
rents(771,9)=29.978185165405524;
bref(772)=12000;
bnorm(772)=24000;
incomemean(772)=11000;
rents(772,1)=74.15031300058327;
rents(772,2)=37.07515650029161;
rents(772,3)=36.99750239581639;
rents(772,4)=36.90350129445791;
rents(772,5)=36.64166495444483;
rents(772,6)=36.583771955206245;
rents(772,7)=36.36852742360792;
rents(772,8)=35.84782486620399;
rents(772,9)=35.011695569053074;
bref(773)=12000;
bnorm(773)=24000;
incomemean(773)=12000;
rents(773,1)=73.32396190033907;
rents(773,2)=36.661980950169564;
rents(773,3)=38.0336893080888;
rents(773,4)=39.27106275897313;
rents(773,5)=40.17124220664096;
rents(773,6)=41.38748348716632;
rents(773,7)=42.53641730573674;
rents(773,8)=42.36165020424837;
rents(773,9)=42.07985685037518;
bref(774)=12000;
bnorm(774)=24000;
incomemean(774)=13000;
rents(774,1)=72.05502339060524;
rents(774,2)=36.0275116953026;
rents(774,3)=38.89162881493327;
rents(774,4)=41.709493496983505;
rents(774,5)=43.79972714522691;
rents(774,6)=46.676647542263005;
rents(774,7)=49.519882901500985;
rents(774,8)=50.96594972630475;
rents(774,9)=52.49689660701333;
bref(775)=12000;
bnorm(775)=24000;
incomemean(775)=14000;
rents(775,1)=71.908370133708;
rents(775,2)=35.954185066853995;
rents(775,3)=40.465538034096326;
rents(775,4)=44.83264288819231;
rents(775,5)=49.05734534610686;
rents(775,6)=53.42606157050621;
rents(775,7)=57.69901391673748;
rents(775,8)=60.968139671922515;
rents(775,9)=63.52295075288555;
bref(776)=12000;
bnorm(776)=24000;
incomemean(776)=15000;
rents(776,1)=73.31639919115194;
rents(776,2)=36.65819959557588;
rents(776,3)=43.57537411791864;
rents(776,4)=50.90155790772371;
rents(776,5)=57.792205569941046;
rents(776,6)=65.24658429321755;
rents(776,7)=72.76259237257443;
rents(776,8)=79.26411964676807;
rents(776,9)=83.37297673094305;
bref(777)=12000;
bnorm(777)=24000;
incomemean(777)=16000;
rents(777,1)=68.84303670979057;
rents(777,2)=34.421518354895234;
rents(777,3)=42.78360855383982;
rents(777,4)=52.31779930385818;
rents(777,5)=61.79848305241955;
rents(777,6)=72.38345484471493;
rents(777,7)=83.13514909746824;
rents(777,8)=92.69263218963269;
rents(777,9)=99.83213967451599;
bref(778)=12000;
bnorm(778)=24000;
incomemean(778)=17000;
rents(778,1)=72.3630362928858;
rents(778,2)=36.18151814644287;
rents(778,3)=47.38677846817477;
rents(778,4)=60.67266464526828;
rents(778,5)=74.23692416056785;
rents(778,6)=90.27841957666138;
rents(778,7)=106.70724310752057;
rents(778,8)=118.58220622771032;
rents(778,9)=130.30798267226436;
bref(779)=12000;
bnorm(779)=24000;
incomemean(779)=18000;
rents(779,1)=72.10634788195014;
rents(779,2)=36.053173940975086;
rents(779,3)=49.45428786597637;
rents(779,4)=65.73867746235894;
rents(779,5)=84.08676989216046;
rents(779,6)=105.5400336677742;
rents(779,7)=126.42496004245177;
rents(779,8)=144.04352189743935;
rents(779,9)=158.4744316949007;
bref(780)=12000;
bnorm(780)=24000;
incomemean(780)=19000;
rents(780,1)=71.14982487546845;
rents(780,2)=35.57491243773419;
rents(780,3)=50.34508465786347;
rents(780,4)=69.92445720665994;
rents(780,5)=92.30688216216865;
rents(780,6)=118.39387110204136;
rents(780,7)=144.43718580198362;
rents(780,8)=164.09123101271925;
rents(780,9)=181.69564267046235;
bref(781)=12000;
bnorm(781)=26000;
incomemean(781)=10000;
rents(781,1)=72.22000585978651;
rents(781,2)=38.887695462961965;
rents(781,3)=37.52733190857778;
rents(781,4)=36.23690727382949;
rents(781,5)=34.810622432726646;
rents(781,6)=33.901197362047846;
rents(781,7)=32.90028860311043;
rents(781,8)=31.394075181002247;
rents(781,9)=30.03845096209509;
bref(782)=12000;
bnorm(782)=26000;
incomemean(782)=11000;
rents(782,1)=71.92682767476829;
rents(782,2)=38.72983028641365;
rents(782,3)=38.670560219371445;
rents(782,4)=38.66027947587418;
rents(782,5)=38.07701647597036;
rents(782,6)=37.976269314841055;
rents(782,7)=37.9263992657982;
rents(782,8)=37.13723693556838;
rents(782,9)=36.388627111509265;
bref(783)=12000;
bnorm(783)=26000;
incomemean(783)=12000;
rents(783,1)=71.97379488602832;
rents(783,2)=38.75512032324599;
rents(783,3)=40.01416217590754;
rents(783,4)=40.55186288104701;
rents(783,5)=40.752191245570906;
rents(783,6)=41.40706067934694;
rents(783,7)=42.212351131981;
rents(783,8)=42.34687249953485;
rents(783,9)=42.297146021923545;
bref(784)=12000;
bnorm(784)=26000;
incomemean(784)=13000;
rents(784,1)=72.58334027552013;
rents(784,2)=39.08333707143411;
rents(784,3)=41.689423788502666;
rents(784,4)=44.45020624862582;
rents(784,5)=46.26829055225313;
rents(784,6)=48.75747914194538;
rents(784,7)=50.6665074403259;
rents(784,8)=51.68958938525196;
rents(784,9)=53.124087586135545;
bref(785)=12000;
bnorm(785)=26000;
incomemean(785)=14000;
rents(785,1)=73.72136815180916;
rents(785,2)=39.69612131251251;
rents(785,3)=43.936238540218426;
rents(785,4)=48.03190357796754;
rents(785,5)=52.00777292247484;
rents(785,6)=56.41866893056062;
rents(785,7)=59.938920773626116;
rents(785,8)=62.68076948341015;
rents(785,9)=65.21402415742637;
bref(786)=12000;
bnorm(786)=26000;
incomemean(786)=15000;
rents(786,1)=68.92613664793049;
rents(786,2)=37.11407357965472;
rents(786,3)=43.66139263190484;
rents(786,4)=50.75922070586024;
rents(786,5)=57.55190434034609;
rents(786,6)=65.0562248205973;
rents(786,7)=72.42551290975486;
rents(786,8)=77.74904422671321;
rents(786,9)=83.140404056947;
bref(787)=12000;
bnorm(787)=26000;
incomemean(787)=16000;
rents(787,1)=71.8562969764214;
rents(787,2)=38.69185221807326;
rents(787,3)=47.157258697719904;
rents(787,4)=56.547888562520704;
rents(787,5)=65.8372037349055;
rents(787,6)=75.42119342465594;
rents(787,7)=85.29563132143227;
rents(787,8)=93.32862494932637;
rents(787,9)=100.37343534010512;
bref(788)=12000;
bnorm(788)=26000;
incomemean(788)=17000;
rents(788,1)=71.68627211908826;
rents(788,2)=38.600300371816594;
rents(788,3)=49.06931254759484;
rents(788,4)=61.00786034846627;
rents(788,5)=73.8860554744784;
rents(788,6)=86.7320031325586;
rents(788,7)=100.29018627335077;
rents(788,8)=112.11162151611387;
rents(788,9)=123.2635180140321;
bref(789)=12000;
bnorm(789)=26000;
incomemean(789)=18000;
rents(789,1)=71.28997099158327;
rents(789,2)=38.386907457006295;
rents(789,3)=51.965000321755404;
rents(789,4)=68.29153964672054;
rents(789,5)=86.95888413019385;
rents(789,6)=108.1117832411904;
rents(789,7)=128.63444846199658;
rents(789,8)=146.58594463667467;
rents(789,9)=161.1642403606182;
bref(790)=12000;
bnorm(790)=26000;
incomemean(790)=19000;
rents(790,1)=71.45170573974605;
rents(790,2)=38.47399539832465;
rents(790,3)=53.36485257514002;
rents(790,4)=71.76564129941757;
rents(790,5)=92.80137592335123;
rents(790,6)=116.7831354623522;
rents(790,7)=139.7509923584173;
rents(790,8)=159.81734034546392;
rents(790,9)=177.68941199762128;
bref(791)=12000;
bnorm(791)=28000;
incomemean(791)=10000;
rents(791,1)=70.50293232428787;
rents(791,2)=40.287389899593045;
rents(791,3)=39.09650859891733;
rents(791,4)=37.99494601127186;
rents(791,5)=36.744915314022094;
rents(791,6)=35.80105570846414;
rents(791,7)=35.000430131409125;
rents(791,8)=34.11627967503065;
rents(791,9)=33.101538976714224;
bref(792)=12000;
bnorm(792)=28000;
incomemean(792)=11000;
rents(792,1)=74.12903736042631;
rents(792,2)=42.35944992024366;
rents(792,3)=41.88099851226978;
rents(792,4)=41.27798849860608;
rents(792,5)=40.470645761750255;
rents(792,6)=40.14970593501212;
rents(792,7)=39.809081836816794;
rents(792,8)=38.52128243907542;
rents(792,9)=37.843389813550765;
bref(793)=12000;
bnorm(793)=28000;
incomemean(793)=12000;
rents(793,1)=72.53545819200151;
rents(793,2)=41.44883325257225;
rents(793,3)=42.51494481706382;
rents(793,4)=43.3512954946388;
rents(793,5)=43.91574654302974;
rents(793,6)=44.50818059443512;
rents(793,7)=44.91807702889628;
rents(793,8)=44.65838265346028;
rents(793,9)=44.99924818695312;
bref(794)=12000;
bnorm(794)=28000;
incomemean(794)=13000;
rents(794,1)=72.61967126348267;
rents(794,2)=41.496955007704656;
rents(794,3)=44.53120829260825;
rents(794,4)=47.41849857525025;
rents(794,5)=49.823615301576226;
rents(794,6)=52.36867905677552;
rents(794,7)=54.60448667438037;
rents(794,8)=55.768034140476225;
rents(794,9)=56.855059414367204;
bref(795)=12000;
bnorm(795)=28000;
incomemean(795)=14000;
rents(795,1)=74.38878506504764;
rents(795,2)=42.507877180027066;
rents(795,3)=46.44359980680152;
rents(795,4)=50.45280424179707;
rents(795,5)=53.84372473854446;
rents(795,6)=57.50977747562853;
rents(795,7)=60.95054159494768;
rents(795,8)=63.32974724398072;
rents(795,9)=65.64148829019773;
bref(796)=12000;
bnorm(796)=28000;
incomemean(796)=15000;
rents(796,1)=72.608754549249;
rents(796,2)=41.49071688528501;
rents(796,3)=48.03747445004021;
rents(796,4)=54.950643730241644;
rents(796,5)=61.34973790908897;
rents(796,6)=67.82888714215744;
rents(796,7)=74.18376246393841;
rents(796,8)=79.26358343156802;
rents(796,9)=84.48830015043619;
bref(797)=12000;
bnorm(797)=28000;
incomemean(797)=16000;
rents(797,1)=72.74182139993917;
rents(797,2)=41.56675508567941;
rents(797,3)=50.11860749861885;
rents(797,4)=59.150781029045284;
rents(797,5)=68.29699704255908;
rents(797,6)=77.72581956050146;
rents(797,7)=87.36856215290068;
rents(797,8)=93.92207185157918;
rents(797,9)=101.97346992503962;
bref(798)=12000;
bnorm(798)=28000;
incomemean(798)=17000;
rents(798,1)=69.75286767774135;
rents(798,2)=39.85878153013785;
rents(798,3)=49.696572251972185;
rents(798,4)=60.9503573649584;
rents(798,5)=72.45001041117246;
rents(798,6)=85.23279678461884;
rents(798,7)=98.19154446403299;
rents(798,8)=108.77847616143735;
rents(798,9)=118.91399574288081;
bref(799)=12000;
bnorm(799)=28000;
incomemean(799)=18000;
rents(799,1)=72.84452757478203;
rents(799,2)=41.625444328446946;
rents(799,3)=54.501148704478936;
rents(799,4)=68.80666844048513;
rents(799,5)=84.91460484525159;
rents(799,6)=102.7546820385435;
rents(799,7)=120.71898751364179;
rents(799,8)=135.5413848852113;
rents(799,9)=149.20491991672944;
bref(800)=12000;
bnorm(800)=28000;
incomemean(800)=19000;
rents(800,1)=73.46328314168913;
rents(800,2)=41.97901893810798;
rents(800,3)=57.09992413236689;
rents(800,4)=75.58754714830789;
rents(800,5)=96.41425126092864;
rents(800,6)=119.4785795415365;
rents(800,7)=142.61194586153226;
rents(800,8)=161.290025053178;
rents(800,9)=178.49768463886883;
bref(801)=13000;
bnorm(801)=10000;
incomemean(801)=10000;
rents(801,1)=70.64528625278702;
rents(801,2)=-21.193585875836114;
rents(801,3)=-26.133596795835757;
rents(801,4)=-33.11668885517498;
rents(801,5)=-42.80827520530532;
rents(801,6)=-59.06165633730836;
rents(801,7)=-84.96132082373038;
rents(801,8)=-136.03227570311756;
rents(801,9)=-257.1477156182764;
bref(802)=13000;
bnorm(802)=10000;
incomemean(802)=11000;
rents(802,1)=73.8195778978547;
rents(802,2)=-22.14587336935645;
rents(802,3)=-28.49323740751746;
rents(802,4)=-37.67453547658804;
rents(802,5)=-52.04343583866294;
rents(802,6)=-75.68354491030794;
rents(802,7)=-121.495302859218;
rents(802,8)=-224.98941672328127;
rents(802,9)=-561.4583398296331;
bref(803)=13000;
bnorm(803)=10000;
incomemean(803)=12000;
rents(803,1)=70.87432428799374;
rents(803,2)=-21.262297286398127;
rents(803,3)=-29.71235521503827;
rents(803,4)=-42.84597222958612;
rents(803,5)=-64.0909876711773;
rents(803,6)=-105.49130835338863;
rents(803,7)=-201.3901073196454;
rents(803,8)=-496.8094623512026;
rents(803,9)=-2135.4814408258226;
bref(804)=13000;
bnorm(804)=10000;
incomemean(804)=13000;
rents(804,1)=70.63938095103235;
rents(804,2)=-21.191814285309857;
rents(804,3)=-31.247827293536854;
rents(804,4)=-48.3804448287301;
rents(804,5)=-77.13832911656806;
rents(804,6)=-139.43650353284383;
rents(804,7)=-307.54686629049445;
rents(804,8)=-982.6305535942408;
rents(804,9)=-7285.950189872498;
bref(805)=13000;
bnorm(805)=10000;
incomemean(805)=14000;
rents(805,1)=72.9430579700045;
rents(805,2)=-21.882917391001286;
rents(805,3)=-35.34500057443721;
rents(805,4)=-59.41931302830445;
rents(805,5)=-107.50691654556229;
rents(805,6)=-227.45978739114813;
rents(805,7)=-646.7004878373053;
rents(805,8)=-3534.6396272190646;
rents(805,9)=-83310.16234496268;
bref(806)=13000;
bnorm(806)=10000;
incomemean(806)=15000;
rents(806,1)=69.5259435337795;
rents(806,2)=-20.857783060133986;
rents(806,3)=-36.30631392814951;
rents(806,4)=-65.51582803204133;
rents(806,5)=-129.0614712949117;
rents(806,6)=-304.67505273494623;
rents(806,7)=-1055.7014892272086;
rents(806,8)=-8551.560364178196;
rents(806,9)=-468695.7530111073;
bref(807)=13000;
bnorm(807)=10000;
incomemean(807)=16000;
rents(807,1)=71.29423002525182;
rents(807,2)=-21.388269007575456;
rents(807,3)=-40.41981616540078;
rents(807,4)=-81.42187960084435;
rents(807,5)=-184.22653623793968;
rents(807,6)=-534.6341808676203;
rents(807,7)=-2744.1927640825725;
rents(807,8)=-52116.58196490883;
rents(807,9)=-1.7266331417450003E7;
bref(808)=13000;
bnorm(808)=10000;
incomemean(808)=17000;
rents(808,1)=70.64676088893195;
rents(808,2)=-21.194028266679712;
rents(808,3)=-41.85480437050389;
rents(808,4)=-87.3044177289422;
rents(808,5)=-202.03950055838212;
rents(808,6)=-619.3984236974725;
rents(808,7)=-3505.6677762269132;
rents(808,8)=-82430.4275246394;
rents(808,9)=-4.235536445561611E7;
bref(809)=13000;
bnorm(809)=10000;
incomemean(809)=18000;
rents(809,1)=72.3269699135604;
rents(809,2)=-21.698090974068155;
rents(809,3)=-47.28148327587698;
rents(809,4)=-110.1007308752418;
rents(809,5)=-298.1978627511348;
rents(809,6)=-1153.9051597690604;
rents(809,7)=-10619.440953294814;
rents(809,8)=-726359.8607821359;
rents(809,9)=-3.3070085994449444E9;
bref(810)=13000;
bnorm(810)=10000;
incomemean(810)=19000;
rents(810,1)=70.75299965868112;
rents(810,2)=-21.225899897604243;
rents(810,3)=-48.09344533793644;
rents(810,4)=-118.3449929906758;
rents(810,5)=-338.84881548385476;
rents(810,6)=-1451.0082204921625;
rents(810,7)=-16358.280447033856;
rents(810,8)=-1722564.6047089233;
rents(810,9)=-1.8748686989727222E10;
bref(811)=13000;
bnorm(811)=12000;
incomemean(811)=10000;
rents(811,1)=71.01342701980671;
rents(811,2)=-5.91778558498387;
rents(811,3)=-6.575457839584378;
rents(811,4)=-7.2897557704396885;
rents(811,5)=-8.045865819858017;
rents(811,6)=-9.211128839430573;
rents(811,7)=-10.663302786157038;
rents(811,8)=-12.017202737493244;
rents(811,9)=-14.001374739443639;
bref(812)=13000;
bnorm(812)=12000;
incomemean(812)=11000;
rents(812,1)=69.7935826652361;
rents(812,2)=-5.816131888769696;
rents(812,3)=-6.650272669768333;
rents(812,4)=-7.758612147954567;
rents(812,5)=-9.074545392971709;
rents(812,6)=-11.034431281409336;
rents(812,7)=-13.326950925499936;
rents(812,8)=-16.068121741334135;
rents(812,9)=-19.49605316620344;
bref(813)=13000;
bnorm(813)=12000;
incomemean(813)=12000;
rents(813,1)=71.8840655230087;
rents(813,2)=-5.990338793584047;
rents(813,3)=-7.27172075370237;
rents(813,4)=-8.97531280074472;
rents(813,5)=-11.169411936904435;
rents(813,6)=-14.10100192391655;
rents(813,7)=-18.167741021568894;
rents(813,8)=-23.716077352281314;
rents(813,9)=-31.43985782548189;
bref(814)=13000;
bnorm(814)=12000;
incomemean(814)=13000;
rents(814,1)=72.41884246065224;
rents(814,2)=-6.034903538387699;
rents(814,3)=-7.968571669112792;
rents(814,4)=-10.588502445605247;
rents(814,5)=-14.010031057828316;
rents(814,6)=-19.374714440024462;
rents(814,7)=-27.539030324981912;
rents(814,8)=-39.57520012525688;
rents(814,9)=-60.393527366186646;
bref(815)=13000;
bnorm(815)=12000;
incomemean(815)=14000;
rents(815,1)=73.83821913493775;
rents(815,2)=-6.153184927911431;
rents(815,3)=-8.810864723818234;
rents(815,4)=-12.855957827050071;
rents(815,5)=-19.359737285110942;
rents(815,6)=-30.42514923499455;
rents(815,7)=-48.67263081721936;
rents(815,8)=-79.22343313116531;
rents(815,9)=-142.96267270042648;
bref(816)=13000;
bnorm(816)=12000;
incomemean(816)=15000;
rents(816,1)=72.60224105306676;
rents(816,2)=-6.050186754422212;
rents(816,3)=-9.303387524791214;
rents(816,4)=-14.557228189663288;
rents(816,5)=-23.261268075820638;
rents(816,6)=-38.37455956703894;
rents(816,7)=-66.50318835852242;
rents(816,8)=-119.57045897198559;
rents(816,9)=-249.89398677233717;
bref(817)=13000;
bnorm(817)=12000;
incomemean(817)=16000;
rents(817,1)=73.46715209928593;
rents(817,2)=-6.122262674940483;
rents(817,3)=-10.199223202447403;
rents(817,4)=-17.234263683376337;
rents(817,5)=-30.059195727049712;
rents(817,6)=-54.578914220231994;
rents(817,7)=-106.26717765142126;
rents(817,8)=-229.31760333630703;
rents(817,9)=-641.5486886838437;
bref(818)=13000;
bnorm(818)=12000;
incomemean(818)=17000;
rents(818,1)=74.48722092835713;
rents(818,2)=-6.207268410696418;
rents(818,3)=-11.102421928895218;
rents(818,4)=-20.187259954863546;
rents(818,5)=-37.52885393933815;
rents(818,6)=-74.414735227668;
rents(818,7)=-159.30679672195748;
rents(818,8)=-409.590479283464;
rents(818,9)=-1572.2956889053069;
bref(819)=13000;
bnorm(819)=12000;
incomemean(819)=18000;
rents(819,1)=72.92745311180815;
rents(819,2)=-6.0772877593173265;
rents(819,3)=-11.465517108099425;
rents(819,4)=-22.08415442581848;
rents(819,5)=-43.84951854621938;
rents(819,6)=-91.19137629911523;
rents(819,7)=-212.45723836612345;
rents(819,8)=-619.9043935820916;
rents(819,9)=-3114.563249269269;
bref(820)=13000;
bnorm(820)=12000;
incomemean(820)=19000;
rents(820,1)=73.77621041878085;
rents(820,2)=-6.1480175348983686;
rents(820,3)=-12.486414143230162;
rents(820,4)=-26.02500037218762;
rents(820,5)=-55.59332587149964;
rents(820,6)=-129.02309467270774;
rents(820,7)=-347.9030881320622;
rents(820,8)=-1333.7931173496042;
rents(820,9)=-11947.010849508983;
bref(821)=13000;
bnorm(821)=14000;
incomemean(821)=10000;
rents(821,1)=71.4431741977118;
rents(821,2)=5.103083871265133;
rents(821,3)=5.23040396355038;
rents(821,4)=5.312619237488497;
rents(821,5)=5.323286143969705;
rents(821,6)=5.420855759137604;
rents(821,7)=5.446520763313574;
rents(821,8)=5.333308819321317;
rents(821,9)=5.24093770653759;
bref(822)=13000;
bnorm(822)=14000;
incomemean(822)=11000;
rents(822,1)=72.9429509682625;
rents(822,2)=5.210210783447354;
rents(822,3)=5.610742794317183;
rents(822,4)=5.965588528031189;
rents(822,5)=6.2467631262371945;
rents(822,6)=6.63072747217903;
rents(822,7)=7.025453695728018;
rents(822,8)=7.183212144119778;
rents(822,9)=7.20069564230892;
bref(823)=13000;
bnorm(823)=14000;
incomemean(823)=12000;
rents(823,1)=74.71364887019087;
rents(823,2)=5.336689205013632;
rents(823,3)=5.990914948860477;
rents(823,4)=6.683478934382932;
rents(823,5)=7.408770818130838;
rents(823,6)=8.26781098032048;
rents(823,7)=9.277526330692174;
rents(823,8)=9.96951838154695;
rents(823,9)=10.826349581112845;
bref(824)=13000;
bnorm(824)=14000;
incomemean(824)=13000;
rents(824,1)=73.68831928498699;
rents(824,2)=5.263451377499059;
rents(824,3)=6.3478417525395034;
rents(824,4)=7.5989101739537475;
rents(824,5)=8.906814809685088;
rents(824,6)=10.503859393493949;
rents(824,7)=12.405763422356468;
rents(824,8)=13.864174780778898;
rents(824,9)=15.430476269399257;
bref(825)=13000;
bnorm(825)=14000;
incomemean(825)=14000;
rents(825,1)=70.02746831342535;
rents(825,2)=5.00196202238747;
rents(825,3)=6.64506220544526;
rents(825,4)=8.589051845942736;
rents(825,5)=10.946422983537785;
rents(825,6)=14.088190859932121;
rents(825,7)=17.99419756577329;
rents(825,8)=22.207661280696726;
rents(825,9)=26.110453501539062;
bref(826)=13000;
bnorm(826)=14000;
incomemean(826)=15000;
rents(826,1)=71.42939749275568;
rents(826,2)=5.102099820911098;
rents(826,3)=7.129095849136607;
rents(826,4)=9.874134393039814;
rents(826,5)=13.54750062451512;
rents(826,6)=18.31901786483092;
rents(826,7)=24.406262576916838;
rents(826,8)=30.624409741872842;
rents(826,9)=37.81181525352956;
bref(827)=13000;
bnorm(827)=14000;
incomemean(827)=16000;
rents(827,1)=70.47757543908787;
rents(827,2)=5.034112531363406;
rents(827,3)=7.528839897443942;
rents(827,4)=11.040337126417363;
rents(827,5)=15.877542680431766;
rents(827,6)=22.393570110109117;
rents(827,7)=31.247366225125962;
rents(827,8)=40.919505691038154;
rents(827,9)=52.93901155072748;
bref(828)=13000;
bnorm(828)=14000;
incomemean(828)=17000;
rents(828,1)=73.56053555822128;
rents(828,2)=5.254323968444372;
rents(828,3)=8.363900841533857;
rents(828,4)=13.288933206794074;
rents(828,5)=20.422653579707625;
rents(828,6)=31.209903108326806;
rents(828,7)=46.02431299996443;
rents(828,8)=62.201320426470396;
rents(828,9)=80.41730875959539;
bref(829)=13000;
bnorm(829)=14000;
incomemean(829)=18000;
rents(829,1)=71.65428121387846;
rents(829,2)=5.11816294384848;
rents(829,3)=8.639368561789265;
rents(829,4)=14.361959543120756;
rents(829,5)=23.2454068407836;
rents(829,6)=36.69435735073059;
rents(829,7)=56.35079150814205;
rents(829,8)=80.03735421741992;
rents(829,9)=105.76624434028507;
bref(830)=13000;
bnorm(830)=14000;
incomemean(830)=19000;
rents(830,1)=70.43186408500775;
rents(830,2)=5.030847434643407;
rents(830,3)=9.06874578702843;
rents(830,4)=15.901296667709621;
rents(830,5)=27.41462008877808;
rents(830,6)=46.2865665627797;
rents(830,7)=74.31179285484595;
rents(830,8)=107.25165480108159;
rents(830,9)=137.43933045643143;
bref(831)=13000;
bnorm(831)=16000;
incomemean(831)=10000;
rents(831,1)=70.5137351924383;
rents(831,2)=13.221325348582175;
rents(831,3)=13.032535100120011;
rents(831,4)=12.798756613301165;
rents(831,5)=12.465203982852728;
rents(831,6)=12.211111498403232;
rents(831,7)=12.088793244761504;
rents(831,8)=11.732762103713549;
rents(831,9)=11.330406295748396;
bref(832)=13000;
bnorm(832)=16000;
incomemean(832)=11000;
rents(832,1)=76.21466281658923;
rents(832,2)=14.290249278110428;
rents(832,3)=14.679401308226092;
rents(832,4)=14.965591979404422;
rents(832,5)=14.774368131496558;
rents(832,6)=15.034842795853596;
rents(832,7)=15.270737063637107;
rents(832,8)=15.265529469014881;
rents(832,9)=15.186357334351289;
bref(833)=13000;
bnorm(833)=16000;
incomemean(833)=12000;
rents(833,1)=69.16463866854063;
rents(833,2)=12.968369750351275;
rents(833,3)=14.084111029111119;
rents(833,4)=15.030450643556632;
rents(833,5)=15.945866999089887;
rents(833,6)=16.876524434247184;
rents(833,7)=18.077226263870813;
rents(833,8)=18.717914733610304;
rents(833,9)=19.341215380332525;
bref(834)=13000;
bnorm(834)=16000;
incomemean(834)=13000;
rents(834,1)=72.26374253693352;
rents(834,2)=13.549451725674972;
rents(834,3)=15.62311748712087;
rents(834,4)=17.421636849413115;
rents(834,5)=19.35481919020557;
rents(834,6)=21.67065561130711;
rents(834,7)=24.165499659967352;
rents(834,8)=26.045981877592904;
rents(834,9)=28.048060607352543;
bref(835)=13000;
bnorm(835)=16000;
incomemean(835)=14000;
rents(835,1)=75.29744828578384;
rents(835,2)=14.11827155358453;
rents(835,3)=17.382467976043603;
rents(835,4)=21.200677643505088;
rents(835,5)=25.27532751390888;
rents(835,6)=29.97907563745649;
rents(835,7)=34.85814317632305;
rents(835,8)=39.09056063537445;
rents(835,9)=43.45616173042559;
bref(836)=13000;
bnorm(836)=16000;
incomemean(836)=15000;
rents(836,1)=71.12536514675199;
rents(836,2)=13.33600596501598;
rents(836,3)=17.464762485940813;
rents(836,4)=22.48841685123554;
rents(836,5)=28.263935869613306;
rents(836,6)=35.27454659195498;
rents(836,7)=42.824133567499025;
rents(836,8)=49.98331836234976;
rents(836,9)=57.64463108308448;
bref(837)=13000;
bnorm(837)=16000;
incomemean(837)=16000;
rents(837,1)=72.7548310205289;
rents(837,2)=13.641530816349173;
rents(837,3)=19.092473678441788;
rents(837,4)=26.043669687641156;
rents(837,5)=34.25563693502094;
rents(837,6)=44.49892218439616;
rents(837,7)=56.67257325001337;
rents(837,8)=67.81205371645959;
rents(837,9)=78.1336216762307;
bref(838)=13000;
bnorm(838)=16000;
incomemean(838)=17000;
rents(838,1)=70.16127887125951;
rents(838,2)=13.155239788361175;
rents(838,3)=19.47471991618362;
rents(838,4)=28.10031403582495;
rents(838,5)=39.12428589224906;
rents(838,6)=54.33952799073151;
rents(838,7)=71.8359455194211;
rents(838,8)=88.3192827609643;
rents(838,9)=102.18584485961121;
bref(839)=13000;
bnorm(839)=16000;
incomemean(839)=18000;
rents(839,1)=72.42677023263273;
rents(839,2)=13.580019418618688;
rents(839,3)=21.070197747852543;
rents(839,4)=31.730314614414457;
rents(839,5)=46.518031852523215;
rents(839,6)=64.92438161026783;
rents(839,7)=87.6303252143089;
rents(839,8)=106.7485358821638;
rents(839,9)=126.03356773842077;
bref(840)=13000;
bnorm(840)=16000;
incomemean(840)=19000;
rents(840,1)=74.32490922990517;
rents(840,2)=13.935920480607203;
rents(840,3)=23.49001263674046;
rents(840,4)=38.398916332987426;
rents(840,5)=60.31118608766603;
rents(840,6)=90.4531435743285;
rents(840,7)=125.06192782260997;
rents(840,8)=157.51925913207634;
rents(840,9)=179.932304842381;
bref(841)=13000;
bnorm(841)=18000;
incomemean(841)=10000;
rents(841,1)=72.13373942552394;
rents(841,2)=20.03714984042339;
rents(841,3)=19.463933278427472;
rents(841,4)=18.855128865285042;
rents(841,5)=17.83068463089234;
rents(841,6)=17.22553622355063;
rents(841,7)=16.60303766423496;
rents(841,8)=15.736354230427121;
rents(841,9)=14.947875167122213;
bref(842)=13000;
bnorm(842)=18000;
incomemean(842)=11000;
rents(842,1)=70.25644472360523;
rents(842,2)=19.51567908989033;
rents(842,3)=19.760152882331205;
rents(842,4)=19.900238520335872;
rents(842,5)=19.53184846650887;
rents(842,6)=20.079974935060754;
rents(842,7)=20.26724212023385;
rents(842,8)=19.934808221767252;
rents(842,9)=19.671915817084244;
bref(843)=13000;
bnorm(843)=18000;
incomemean(843)=12000;
rents(843,1)=72.27609405821933;
rents(843,2)=20.076692793949817;
rents(843,3)=21.078080725908475;
rents(843,4)=21.863234347850284;
rents(843,5)=22.38752721713154;
rents(843,6)=23.167227744399845;
rents(843,7)=23.863150591014854;
rents(843,8)=23.93659315670972;
rents(843,9)=24.105832166418967;
bref(844)=13000;
bnorm(844)=18000;
incomemean(844)=13000;
rents(844,1)=71.27271650343735;
rents(844,2)=19.79797680651032;
rents(844,3)=22.075097247730188;
rents(844,4)=24.270215065754726;
rents(844,5)=26.38745093414143;
rents(844,6)=28.543534758845066;
rents(844,7)=30.68517853197678;
rents(844,8)=32.473412865428394;
rents(844,9)=33.47153237319446;
bref(845)=13000;
bnorm(845)=18000;
incomemean(845)=14000;
rents(845,1)=72.52620497533543;
rents(845,2)=20.146168048704165;
rents(845,3)=23.364774104323143;
rents(845,4)=26.626789381336845;
rents(845,5)=30.127688819885204;
rents(845,6)=33.78850162284545;
rents(845,7)=37.64813897140394;
rents(845,8)=41.000452302196344;
rents(845,9)=43.62527982530626;
bref(846)=13000;
bnorm(846)=18000;
incomemean(846)=15000;
rents(846,1)=73.32185268721616;
rents(846,2)=20.367181302004443;
rents(846,3)=25.563991139900995;
rents(846,4)=31.460128769055558;
rents(846,5)=37.95115131071639;
rents(846,6)=45.65034785263142;
rents(846,7)=53.50938597195833;
rents(846,8)=59.827919888704926;
rents(846,9)=65.91602199348691;
bref(847)=13000;
bnorm(847)=18000;
incomemean(847)=16000;
rents(847,1)=72.77966647524464;
rents(847,2)=20.21657402090142;
rents(847,3)=26.79682230381406;
rents(847,4)=34.46211248002209;
rents(847,5)=43.45634038868578;
rents(847,6)=53.90290572222979;
rents(847,7)=65.33548445646412;
rents(847,8)=74.16493856194776;
rents(847,9)=82.04530027905709;
bref(848)=13000;
bnorm(848)=18000;
incomemean(848)=17000;
rents(848,1)=74.88081709375513;
rents(848,2)=20.80022697048752;
rents(848,3)=28.969519891221296;
rents(848,4)=39.76466348931326;
rents(848,5)=52.61244276161003;
rents(848,6)=66.80698864909819;
rents(848,7)=82.78644297830164;
rents(848,8)=95.08614322356634;
rents(848,9)=106.94384934805251;
bref(849)=13000;
bnorm(849)=18000;
incomemean(849)=18000;
rents(849,1)=72.96982098254207;
rents(849,2)=20.269394717372887;
rents(849,3)=30.278612677202403;
rents(849,4)=43.552613626026194;
rents(849,5)=60.26695286270292;
rents(849,6)=80.96161334999015;
rents(849,7)=101.76925161571839;
rents(849,8)=119.31042976192708;
rents(849,9)=133.84221430707973;
bref(850)=13000;
bnorm(850)=18000;
incomemean(850)=19000;
rents(850,1)=74.78448250902719;
rents(850,2)=20.773467363618693;
rents(850,3)=32.532452254393846;
rents(850,4)=49.19427287061418;
rents(850,5)=71.15541832904549;
rents(850,6)=99.35168477070627;
rents(850,7)=128.5718055714219;
rents(850,8)=150.99148239305737;
rents(850,9)=171.20266583754199;
bref(851)=13000;
bnorm(851)=20000;
incomemean(851)=10000;
rents(851,1)=70.16288619168321;
rents(851,2)=24.557010167089228;
rents(851,3)=23.764382953798727;
rents(851,4)=22.974816810712003;
rents(851,5)=21.786468956365685;
rents(851,6)=21.223330387900383;
rents(851,7)=20.646246639073993;
rents(851,8)=19.56087319505264;
rents(851,9)=18.73973376836529;
bref(852)=13000;
bnorm(852)=20000;
incomemean(852)=11000;
rents(852,1)=73.50258219971506;
rents(852,2)=25.725903769900235;
rents(852,3)=25.187569075159754;
rents(852,4)=24.643778195983877;
rents(852,5)=24.06861935548427;
rents(852,6)=23.707715172816243;
rents(852,7)=23.20469692504845;
rents(852,8)=22.340237470719742;
rents(852,9)=21.371471994473556;
bref(853)=13000;
bnorm(853)=20000;
incomemean(853)=12000;
rents(853,1)=72.33170487143533;
rents(853,2)=25.316096705002245;
rents(853,3)=26.052467775743324;
rents(853,4)=26.666550721119542;
rents(853,5)=27.30074553186675;
rents(853,6)=27.74197528167357;
rents(853,7)=28.344177903352776;
rents(853,8)=28.23495818755602;
rents(853,9)=28.158866332937894;
bref(854)=13000;
bnorm(854)=20000;
incomemean(854)=13000;
rents(854,1)=71.65762118401047;
rents(854,2)=25.08016741440365;
rents(854,3)=26.897090708776233;
rents(854,4)=28.654714413753634;
rents(854,5)=30.134485979592753;
rents(854,6)=31.965344427559387;
rents(854,7)=33.71633152544457;
rents(854,8)=34.7376364320866;
rents(854,9)=35.509700677221545;
bref(855)=13000;
bnorm(855)=20000;
incomemean(855)=14000;
rents(855,1)=74.3490547775301;
rents(855,2)=26.022169172135733;
rents(855,3)=29.7129032222275;
rents(855,4)=33.393568094862495;
rents(855,5)=36.93033636758086;
rents(855,6)=40.67786289038207;
rents(855,7)=44.56638492070014;
rents(855,8)=46.44847079645203;
rents(855,9)=48.15735540448875;
bref(856)=13000;
bnorm(856)=20000;
incomemean(856)=15000;
rents(856,1)=72.81649753932713;
rents(856,2)=25.485774138764498;
rents(856,3)=31.068192415762713;
rents(856,4)=37.10370475165727;
rents(856,5)=43.443488883423235;
rents(856,6)=49.53291461568473;
rents(856,7)=55.43386374884465;
rents(856,8)=59.66734050847592;
rents(856,9)=63.37806367037366;
bref(857)=13000;
bnorm(857)=20000;
incomemean(857)=16000;
rents(857,1)=71.90929739377259;
rents(857,2)=25.168254087820397;
rents(857,3)=32.15824802299149;
rents(857,4)=40.176711232670435;
rents(857,5)=48.942479286951176;
rents(857,6)=58.54500975986925;
rents(857,7)=69.27274336656495;
rents(857,8)=77.32226773963534;
rents(857,9)=84.80306440264586;
bref(858)=13000;
bnorm(858)=20000;
incomemean(858)=17000;
rents(858,1)=72.42800132115237;
rents(858,2)=25.34980046240346;
rents(858,3)=33.85748476240033;
rents(858,4)=44.475634035870286;
rents(858,5)=56.76974651487591;
rents(858,6)=71.19713302119665;
rents(858,7)=84.80406918433015;
rents(858,8)=96.28279795199664;
rents(858,9)=106.48073286622103;
bref(859)=13000;
bnorm(859)=20000;
incomemean(859)=18000;
rents(859,1)=71.5616217298335;
rents(859,2)=25.046567605441766;
rents(859,3)=36.022326345671495;
rents(859,4)=50.623112272475325;
rents(859,5)=67.48483057946581;
rents(859,6)=88.0457776176596;
rents(859,7)=109.37237050919109;
rents(859,8)=127.42870921771869;
rents(859,9)=141.8614301324756;
bref(860)=13000;
bnorm(860)=20000;
incomemean(860)=19000;
rents(860,1)=71.6713976240709;
rents(860,2)=25.08498916842471;
rents(860,3)=37.6046071808879;
rents(860,4)=54.53145320588195;
rents(860,5)=75.62418630612875;
rents(860,6)=100.62427219746124;
rents(860,7)=126.80679880448307;
rents(860,8)=148.13061611516744;
rents(860,9)=165.53761761749797;
bref(861)=13000;
bnorm(861)=22000;
incomemean(861)=10000;
rents(861,1)=72.05529022173768;
rents(861,2)=29.47716418161989;
rents(861,3)=28.06747410166284;
rents(861,4)=26.714940628804484;
rents(861,5)=25.272860425071485;
rents(861,6)=24.256879077224507;
rents(861,7)=23.32622130663814;
rents(861,8)=22.236730833206124;
rents(861,9)=21.14374220105865;
bref(862)=13000;
bnorm(862)=22000;
incomemean(862)=11000;
rents(862,1)=72.49936177729138;
rents(862,2)=29.658829817982973;
rents(862,3)=29.059931504538834;
rents(862,4)=28.637492684227915;
rents(862,5)=27.91818540928266;
rents(862,6)=27.76174731713011;
rents(862,7)=27.46214577662498;
rents(862,8)=26.546908588640925;
rents(862,9)=25.873969810313604;
bref(863)=13000;
bnorm(863)=22000;
incomemean(863)=12000;
rents(863,1)=73.67904884122959;
rents(863,2)=30.141429071412087;
rents(863,3)=31.06322305485569;
rents(863,4)=31.588997521687826;
rents(863,5)=31.87107800839658;
rents(863,6)=32.24463398974722;
rents(863,7)=32.59684628891767;
rents(863,8)=32.80055480332667;
rents(863,9)=32.732468428290325;
bref(864)=13000;
bnorm(864)=22000;
incomemean(864)=13000;
rents(864,1)=69.88995698873022;
rents(864,2)=28.591346040844257;
rents(864,3)=30.812943426346767;
rents(864,4)=33.07661942450145;
rents(864,5)=34.81919402402594;
rents(864,6)=36.7159954107813;
rents(864,7)=38.649622694865414;
rents(864,8)=39.62878846578998;
rents(864,9)=40.54651816743268;
bref(865)=13000;
bnorm(865)=22000;
incomemean(865)=14000;
rents(865,1)=73.44192238819333;
rents(865,2)=30.04442279517031;
rents(865,3)=33.32469509056091;
rents(865,4)=36.18602234338481;
rents(865,5)=38.66020609150234;
rents(865,6)=41.49952200280524;
rents(865,7)=44.25950099091376;
rents(865,8)=45.74388582256414;
rents(865,9)=47.160603762628185;
bref(866)=13000;
bnorm(866)=22000;
incomemean(866)=15000;
rents(866,1)=73.28019635651219;
rents(866,2)=29.978262145845846;
rents(866,3)=34.94265589522668;
rents(866,4)=40.34133852714327;
rents(866,5)=45.76842753614006;
rents(866,6)=52.05422844955744;
rents(866,7)=57.781285276175005;
rents(866,8)=62.042322773942125;
rents(866,9)=65.77703676975301;
bref(867)=13000;
bnorm(867)=22000;
incomemean(867)=16000;
rents(867,1)=71.36729226996195;
rents(867,2)=29.195710474075305;
rents(867,3)=36.52036716195094;
rents(867,4)=44.350857064183295;
rents(867,5)=52.78494993632005;
rents(867,6)=61.59609661312532;
rents(867,7)=70.68059922162506;
rents(867,8)=77.64764522146008;
rents(867,9)=84.02656659342692;
bref(868)=13000;
bnorm(868)=22000;
incomemean(868)=17000;
rents(868,1)=72.40103841781375;
rents(868,2)=29.618606625469337;
rents(868,3)=38.71092398253915;
rents(868,4)=49.56578459570329;
rents(868,5)=60.94374605748714;
rents(868,6)=74.44935779090325;
rents(868,7)=87.96708802198545;
rents(868,8)=98.797829503811;
rents(868,9)=108.64414821294608;
bref(869)=13000;
bnorm(869)=22000;
incomemean(869)=18000;
rents(869,1)=71.40994857549833;
rents(869,2)=29.213160780885538;
rents(869,3)=40.741000684992606;
rents(869,4)=54.838817014748464;
rents(869,5)=71.82156206973698;
rents(869,6)=90.49436577904221;
rents(869,7)=110.11360557302439;
rents(869,8)=126.2584215544444;
rents(869,9)=140.77244067790926;
bref(870)=13000;
bnorm(870)=22000;
incomemean(870)=19000;
rents(870,1)=72.52706220018855;
rents(870,2)=29.670161809167915;
rents(870,3)=42.85033832368975;
rents(870,4)=59.957985444840084;
rents(870,5)=80.58680573255006;
rents(870,6)=104.49716610674602;
rents(870,7)=129.2156273574812;
rents(870,8)=148.3526896123609;
rents(870,9)=164.6231584958022;
bref(871)=13000;
bnorm(871)=24000;
incomemean(871)=10000;
rents(871,1)=70.69441535674639;
rents(871,2)=32.40160703850879;
rents(871,3)=30.8501489833552;
rents(871,4)=29.20458440643833;
rents(871,5)=27.766546586759883;
rents(871,6)=26.510986090037836;
rents(871,7)=25.385855830645564;
rents(871,8)=24.0964680947743;
rents(871,9)=23.111321320490433;
bref(872)=13000;
bnorm(872)=24000;
incomemean(872)=11000;
rents(872,1)=75.14522561135315;
rents(872,2)=34.44156173853667;
rents(872,3)=33.5847944943506;
rents(872,4)=32.407218931743145;
rents(872,5)=31.31666276656649;
rents(872,6)=30.278460178201748;
rents(872,7)=29.24163389435331;
rents(872,8)=28.194661444853033;
rents(872,9)=27.36578608104687;
bref(873)=13000;
bnorm(873)=24000;
incomemean(873)=12000;
rents(873,1)=72.39949275710562;
rents(873,2)=33.183100847006834;
rents(873,3)=33.09163969356886;
rents(873,4)=32.925625763857994;
rents(873,5)=32.61894822242208;
rents(873,6)=32.3050514490035;
rents(873,7)=32.07700172003635;
rents(873,8)=31.613990152767357;
rents(873,9)=31.101853902501624;
bref(874)=13000;
bnorm(874)=24000;
incomemean(874)=13000;
rents(874,1)=70.81294369959923;
rents(874,2)=32.4559325289829;
rents(874,3)=34.1977130483875;
rents(874,4)=35.65971627209228;
rents(874,5)=36.88311083347702;
rents(874,6)=38.37297953897974;
rents(874,7)=39.67648937071483;
rents(874,8)=40.48150503809927;
rents(874,9)=41.11336834353658;
bref(875)=13000;
bnorm(875)=24000;
incomemean(875)=14000;
rents(875,1)=70.65727679555877;
rents(875,2)=32.38458519796454;
rents(875,3)=35.643782236561826;
rents(875,4)=38.13711976351583;
rents(875,5)=40.47803327145164;
rents(875,6)=43.71269015738103;
rents(875,7)=46.530119447971785;
rents(875,8)=48.39358855299885;
rents(875,9)=50.26018485580061;
bref(876)=13000;
bnorm(876)=24000;
incomemean(876)=15000;
rents(876,1)=72.60717223154585;
rents(876,2)=33.278287272791616;
rents(876,3)=38.34490279055951;
rents(876,4)=43.38268557551379;
rents(876,5)=48.12322516523587;
rents(876,6)=53.67435909575296;
rents(876,7)=58.67210958797628;
rents(876,8)=62.96820529484995;
rents(876,9)=66.38203005487513;
bref(877)=13000;
bnorm(877)=24000;
incomemean(877)=16000;
rents(877,1)=72.98547858211387;
rents(877,2)=33.45167768346891;
rents(877,3)=40.688834551148936;
rents(877,4)=48.834855177760446;
rents(877,5)=56.74917689007587;
rents(877,6)=65.19960499114617;
rents(877,7)=73.16794594899461;
rents(877,8)=80.02641343861512;
rents(877,9)=85.30456419496505;
bref(878)=13000;
bnorm(878)=24000;
incomemean(878)=17000;
rents(878,1)=73.32899862710272;
rents(878,2)=33.609124370755154;
rents(878,3)=42.94212127957616;
rents(878,4)=53.66209309730924;
rents(878,5)=65.05997882197735;
rents(878,6)=77.54921565544517;
rents(878,7)=90.95140345396732;
rents(878,8)=101.9698123863066;
rents(878,9)=110.5600611537683;
bref(879)=13000;
bnorm(879)=24000;
incomemean(879)=18000;
rents(879,1)=70.63828981015106;
rents(879,2)=32.37588282965255;
rents(879,3)=43.384908748795404;
rents(879,4)=56.418821688493644;
rents(879,5)=71.18410534647741;
rents(879,6)=87.57974839510563;
rents(879,7)=104.37687203805197;
rents(879,8)=119.39533039543946;
rents(879,9)=131.46498453504384;
bref(880)=13000;
bnorm(880)=24000;
incomemean(880)=19000;
rents(880,1)=70.92113586704811;
rents(880,2)=32.50552060573016;
rents(880,3)=45.52976402865481;
rents(880,4)=62.23904969002338;
rents(880,5)=80.71113220342956;
rents(880,6)=101.98757263685293;
rents(880,7)=122.32393885425279;
rents(880,8)=141.77391508431106;
rents(880,9)=157.52052203374524;
bref(881)=13000;
bnorm(881)=26000;
incomemean(881)=10000;
rents(881,1)=72.67701968685444;
rents(881,2)=36.33850984342731;
rents(881,3)=34.18459135016806;
rents(881,4)=32.396842666101676;
rents(881,5)=30.490092754550354;
rents(881,6)=29.17811846782281;
rents(881,7)=27.928869544281824;
rents(881,8)=26.534768201154172;
rents(881,9)=25.11547200199136;
bref(882)=13000;
bnorm(882)=26000;
incomemean(882)=11000;
rents(882,1)=67.75547797095643;
rents(882,2)=33.87773898547823;
rents(882,3)=32.59812408470772;
rents(882,4)=31.110041318956824;
rents(882,5)=29.785357722049817;
rents(882,6)=28.934777492566397;
rents(882,7)=28.05430467541096;
rents(882,8)=26.613124817510233;
rents(882,9)=25.5861777366703;
bref(883)=13000;
bnorm(883)=26000;
incomemean(883)=12000;
rents(883,1)=71.5098988023402;
rents(883,2)=35.75494940117015;
rents(883,3)=35.42506959306665;
rents(883,4)=34.935595412068686;
rents(883,5)=34.16662527179256;
rents(883,6)=33.959085719431386;
rents(883,7)=33.61012934281716;
rents(883,8)=32.987035548036026;
rents(883,9)=32.71855286165414;
bref(884)=13000;
bnorm(884)=26000;
incomemean(884)=13000;
rents(884,1)=74.01599888805687;
rents(884,2)=37.00799944402841;
rents(884,3)=38.54296555310517;
rents(884,4)=39.84359665823959;
rents(884,5)=40.69962529152261;
rents(884,6)=41.93486379472983;
rents(884,7)=42.91711274436189;
rents(884,8)=42.90314366709969;
rents(884,9)=42.87602258747341;
bref(885)=13000;
bnorm(885)=26000;
incomemean(885)=14000;
rents(885,1)=72.0673133364035;
rents(885,2)=36.03365666820182;
rents(885,3)=39.33272900058849;
rents(885,4)=42.08229818646147;
rents(885,5)=44.67382236758821;
rents(885,6)=47.7082132701105;
rents(885,7)=50.09331810505113;
rents(885,8)=51.37628207953614;
rents(885,9)=53.31266672533337;
bref(886)=13000;
bnorm(886)=26000;
incomemean(886)=15000;
rents(886,1)=72.33452895694859;
rents(886,2)=36.167264478474294;
rents(886,3)=41.242168771763936;
rents(886,4)=46.244283875201305;
rents(886,5)=50.61794053508399;
rents(886,6)=55.62518016426447;
rents(886,7)=60.90958106960018;
rents(886,8)=64.14315071179415;
rents(886,9)=67.57904682951995;
bref(887)=13000;
bnorm(887)=26000;
incomemean(887)=16000;
rents(887,1)=70.78143660924609;
rents(887,2)=35.390718304623036;
rents(887,3)=41.91248826877884;
rents(887,4)=49.6312053055244;
rents(887,5)=56.32556858457695;
rents(887,6)=63.77230886318704;
rents(887,7)=71.30464163291488;
rents(887,8)=77.97243757626943;
rents(887,9)=83.47604153281851;
bref(888)=13000;
bnorm(888)=26000;
incomemean(888)=17000;
rents(888,1)=72.19111084412327;
rents(888,2)=36.09555542206162;
rents(888,3)=44.748945652378424;
rents(888,4)=54.30138770031331;
rents(888,5)=64.34025966514483;
rents(888,6)=75.12779720321504;
rents(888,7)=86.07286871326149;
rents(888,8)=95.25123264305033;
rents(888,9)=102.90443707142275;
bref(889)=13000;
bnorm(889)=26000;
incomemean(889)=18000;
rents(889,1)=71.92127137475562;
rents(889,2)=35.960635687377774;
rents(889,3)=46.0839994498491;
rents(889,4)=58.0732091278007;
rents(889,5)=71.07961396019425;
rents(889,6)=86.57000389283586;
rents(889,7)=102.01221909740674;
rents(889,8)=113.85251943268825;
rents(889,9)=125.57007184643561;
bref(890)=13000;
bnorm(890)=26000;
incomemean(890)=19000;
rents(890,1)=75.19837745973247;
rents(890,2)=37.599188729866206;
rents(890,3)=50.50280939964246;
rents(890,4)=65.9260887694667;
rents(890,5)=82.69091770353329;
rents(890,6)=102.6123810522151;
rents(890,7)=120.8088220673023;
rents(890,8)=135.86959490931483;
rents(890,9)=148.47935959781296;
bref(891)=13000;
bnorm(891)=28000;
incomemean(891)=10000;
rents(891,1)=73.80336500703558;
rents(891,2)=39.53751696805498;
rents(891,3)=36.58421253645039;
rents(891,4)=33.915282602104384;
rents(891,5)=31.508022582459837;
rents(891,6)=29.737912994506846;
rents(891,7)=27.989727128264366;
rents(891,8)=26.117274572494697;
rents(891,9)=24.822096848747282;
bref(892)=13000;
bnorm(892)=28000;
incomemean(892)=11000;
rents(892,1)=73.66567896315408;
rents(892,2)=39.46375658740402;
rents(892,3)=37.91867445136638;
rents(892,4)=36.50213206824714;
rents(892,5)=35.21293384826829;
rents(892,6)=34.12287084479948;
rents(892,7)=33.05721799587678;
rents(892,8)=31.670829812426945;
rents(892,9)=30.50004479181592;
bref(893)=13000;
bnorm(893)=28000;
incomemean(893)=12000;
rents(893,1)=72.01233315233722;
rents(893,2)=38.57803561732358;
rents(893,3)=37.898116731434946;
rents(893,4)=37.28538590375275;
rents(893,5)=36.28774231466778;
rents(893,6)=35.80375911913839;
rents(893,7)=35.49296025263734;
rents(893,8)=34.36313638732356;
rents(893,9)=33.55786640535798;
bref(894)=13000;
bnorm(894)=28000;
incomemean(894)=13000;
rents(894,1)=71.9250913066346;
rents(894,2)=38.53129891426851;
rents(894,3)=39.56556175636969;
rents(894,4)=40.46217152311656;
rents(894,5)=41.18073848507016;
rents(894,6)=41.93592902505536;
rents(894,7)=42.659636438472056;
rents(894,8)=43.046941513879986;
rents(894,9)=43.144853319320745;
bref(895)=13000;
bnorm(895)=28000;
incomemean(895)=14000;
rents(895,1)=69.06898087537095;
rents(895,2)=37.00123975466296;
rents(895,3)=39.58563850673018;
rents(895,4)=41.84954601897847;
rents(895,5)=44.17007010812153;
rents(895,6)=46.4870736601268;
rents(895,7)=48.67314195949652;
rents(895,8)=50.50740917204847;
rents(895,9)=51.497456865003194;
bref(896)=13000;
bnorm(896)=28000;
incomemean(896)=15000;
rents(896,1)=74.5690316652671;
rents(896,2)=39.94769553496462;
rents(896,3)=44.99018411271065;
rents(896,4)=49.5501935757208;
rents(896,5)=53.953030140394375;
rents(896,6)=58.78491409928477;
rents(896,7)=62.99548651964154;
rents(896,8)=65.34291983803033;
rents(896,9)=68.47847725821669;
bref(897)=13000;
bnorm(897)=28000;
incomemean(897)=16000;
rents(897,1)=71.7358502995317;
rents(897,2)=38.42991980332029;
rents(897,3)=44.14751983117484;
rents(897,4)=50.09014506546963;
rents(897,5)=55.806431243234655;
rents(897,6)=61.65383200479703;
rents(897,7)=67.17931917952507;
rents(897,8)=71.59812208342632;
rents(897,9)=76.53986140647498;
bref(898)=13000;
bnorm(898)=28000;
incomemean(898)=17000;
rents(898,1)=72.83068445246278;
rents(898,2)=39.01643809953357;
rents(898,3)=48.48725208781614;
rents(898,4)=58.47838458472072;
rents(898,5)=68.41010846772687;
rents(898,6)=80.00685774928141;
rents(898,7)=90.88964475977792;
rents(898,8)=99.93069938494614;
rents(898,9)=107.84216188518266;
bref(899)=13000;
bnorm(899)=28000;
incomemean(899)=18000;
rents(899,1)=70.38661447725737;
rents(899,2)=37.707114898530655;
rents(899,3)=47.79138371329245;
rents(899,4)=59.64817983526444;
rents(899,5)=71.91798937421449;
rents(899,6)=86.24089982393859;
rents(899,7)=100.3206972845057;
rents(899,8)=109.90263909242762;
rents(899,9)=120.66306793041545;
bref(900)=13000;
bnorm(900)=28000;
incomemean(900)=19000;
rents(900,1)=72.8739980173954;
rents(900,2)=39.03964179503323;
rents(900,3)=51.68882862332653;
rents(900,4)=66.94110760713963;
rents(900,5)=84.77787431467571;
rents(900,6)=104.60059430129573;
rents(900,7)=124.74588101866229;
rents(900,8)=141.40000276767887;
rents(900,9)=156.1562559293757;
bref(901)=14000;
bnorm(901)=10000;
incomemean(901)=10000;
rents(901,1)=70.07291604080984;
rents(901,2)=-28.02916641632371;
rents(901,3)=-32.006092069820326;
rents(901,4)=-37.075421677594804;
rents(901,5)=-43.3844540743028;
rents(901,6)=-53.453337379314696;
rents(901,7)=-69.70818594655337;
rents(901,8)=-94.66373803806204;
rents(901,9)=-140.4859071056532;
bref(902)=14000;
bnorm(902)=10000;
incomemean(902)=11000;
rents(902,1)=72.87514791250618;
rents(902,2)=-29.15005916500246;
rents(902,3)=-35.68719050722993;
rents(902,4)=-44.85447822864674;
rents(902,5)=-57.29245975674063;
rents(902,6)=-78.65583880838007;
rents(902,7)=-119.35541227281438;
rents(902,8)=-208.9235796153279;
rents(902,9)=-478.0998949024118;
bref(903)=14000;
bnorm(903)=10000;
incomemean(903)=12000;
rents(903,1)=70.50195250781881;
rents(903,2)=-28.20078100312728;
rents(903,3)=-37.41803545224118;
rents(903,4)=-51.06503811152871;
rents(903,5)=-72.86654705512952;
rents(903,6)=-116.58000334706688;
rents(903,7)=-219.0737940922127;
rents(903,8)=-537.666278283331;
rents(903,9)=-2425.8890423653265;
bref(904)=14000;
bnorm(904)=10000;
incomemean(904)=13000;
rents(904,1)=74.85894308116595;
rents(904,2)=-29.943577232466623;
rents(904,3)=-43.179654239172116;
rents(904,4)=-65.67034152864947;
rents(904,5)=-108.90556302709263;
rents(904,6)=-209.17738412992912;
rents(904,7)=-530.9437857792811;
rents(904,8)=-2382.4881112788166;
rents(904,9)=-38311.96843363069;
bref(905)=14000;
bnorm(905)=10000;
incomemean(905)=14000;
rents(905,1)=73.6168254268894;
rents(905,2)=-29.446730170755824;
rents(905,3)=-44.08001497722693;
rents(905,4)=-71.1796549956199;
rents(905,5)=-124.12781936937483;
rents(905,6)=-260.22498939010313;
rents(905,7)=-763.8232831287629;
rents(905,8)=-4577.178486187723;
rents(905,9)=-135260.6961020749;
bref(906)=14000;
bnorm(906)=10000;
incomemean(906)=15000;
rents(906,1)=71.25732278055402;
rents(906,2)=-28.502929112221494;
rents(906,3)=-46.876677499443396;
rents(906,4)=-81.62266852683885;
rents(906,5)=-155.26022183353155;
rents(906,6)=-375.6655023491399;
rents(906,7)=-1415.3780900050895;
rents(906,8)=-14362.788258951094;
rents(906,9)=-1297896.6491975538;
bref(907)=14000;
bnorm(907)=10000;
incomemean(907)=16000;
rents(907,1)=71.7584828978747;
rents(907,2)=-28.703393159149876;
rents(907,3)=-51.784017499366435;
rents(907,4)=-98.3749790788989;
rents(907,5)=-214.5726299459615;
rents(907,6)=-627.0293925450652;
rents(907,7)=-3453.820170104818;
rents(907,8)=-79845.01391121677;
rents(907,9)=-3.9998272576324366E7;
bref(908)=14000;
bnorm(908)=10000;
incomemean(908)=17000;
rents(908,1)=74.97943188270814;
rents(908,2)=-29.991772753083318;
rents(908,3)=-58.019855382176026;
rents(908,4)=-122.59785003114763;
rents(908,5)=-299.9429897901926;
rents(908,6)=-1086.3270516493897;
rents(908,7)=-9190.88565868109;
rents(908,8)=-539788.8438171045;
rents(908,9)=-1.8119613121794543E9;
bref(909)=14000;
bnorm(909)=10000;
incomemean(909)=18000;
rents(909,1)=73.41453656973114;
rents(909,2)=-29.36581462789247;
rents(909,3)=-60.294035861849345;
rents(909,4)=-134.74872809736715;
rents(909,5)=-360.58649642366936;
rents(909,6)=-1493.1517325332113;
rents(909,7)=-16706.27363960106;
rents(909,8)=-1772753.501958028;
rents(909,9)=-1.9671901747302525E10;
bref(910)=14000;
bnorm(910)=10000;
incomemean(910)=19000;
rents(910,1)=72.95985879155359;
rents(910,2)=-29.18394351662116;
rents(910,3)=-65.51419540072156;
rents(910,4)=-160.38415892953063;
rents(910,5)=-486.09112849288726;
rents(910,6)=-2482.8230986014505;
rents(910,7)=-43759.68507998821;
rents(910,8)=-1.210757711038437E7;
rents(910,9)=-9.229350577133779E11;
bref(911)=14000;
bnorm(911)=12000;
incomemean(911)=10000;
rents(911,1)=72.41513989284302;
rents(911,2)=-12.069189982140522;
rents(911,3)=-12.505058012171443;
rents(911,4)=-13.048430936396796;
rents(911,5)=-13.73060849333248;
rents(911,6)=-14.619215660965803;
rents(911,7)=-15.832788321580633;
rents(911,8)=-17.00618415625186;
rents(911,9)=-18.227101026725887;
bref(912)=14000;
bnorm(912)=12000;
incomemean(912)=11000;
rents(912,1)=72.21526614156237;
rents(912,2)=-12.035877690260358;
rents(912,3)=-13.495495184989164;
rents(912,4)=-14.974688723683006;
rents(912,5)=-16.4840156445502;
rents(912,6)=-18.701025375924214;
rents(912,7)=-21.49012446529858;
rents(912,8)=-24.548761349525666;
rents(912,9)=-28.093625487104948;
bref(913)=14000;
bnorm(913)=12000;
incomemean(913)=12000;
rents(913,1)=74.25426391932693;
rents(913,2)=-12.375710653221148;
rents(913,3)=-14.367540838852227;
rents(913,4)=-16.62293853561449;
rents(913,5)=-19.138131659679594;
rents(913,6)=-23.11262897010155;
rents(913,7)=-28.250509386090645;
rents(913,8)=-34.61772424715306;
rents(913,9)=-43.370777894577834;
bref(914)=14000;
bnorm(914)=12000;
incomemean(914)=13000;
rents(914,1)=73.14815223163134;
rents(914,2)=-12.191358705271886;
rents(914,3)=-15.44103394410045;
rents(914,4)=-19.797997848756726;
rents(914,5)=-26.24434627368081;
rents(914,6)=-36.15361952670974;
rents(914,7)=-51.69862735054979;
rents(914,8)=-75.87670201137881;
rents(914,9)=-120.10579517829143;
bref(915)=14000;
bnorm(915)=12000;
incomemean(915)=14000;
rents(915,1)=74.18662946010247;
rents(915,2)=-12.364438243350419;
rents(915,3)=-16.975057015816365;
rents(915,4)=-23.78840156242753;
rents(915,5)=-34.2820372708616;
rents(915,6)=-51.80166783041474;
rents(915,7)=-82.68294489691259;
rents(915,8)=-143.10248864941912;
rents(915,9)=-289.1882075520432;
bref(916)=14000;
bnorm(916)=12000;
incomemean(916)=15000;
rents(916,1)=71.02673702758972;
rents(916,2)=-11.837789504598307;
rents(916,3)=-17.590888300593996;
rents(916,4)=-27.084069882240122;
rents(916,5)=-42.29551497943947;
rents(916,6)=-70.58017381812323;
rents(916,7)=-127.71421651791428;
rents(916,8)=-263.10692582119674;
rents(916,9)=-718.7975556516833;
bref(917)=14000;
bnorm(917)=12000;
incomemean(917)=16000;
rents(917,1)=74.13966841272334;
rents(917,2)=-12.356611402120512;
rents(917,3)=-19.767775733006577;
rents(917,4)=-32.75587827040947;
rents(917,5)=-56.18945979022912;
rents(917,6)=-104.65265827875942;
rents(917,7)=-218.33864033817633;
rents(917,8)=-569.0973126031678;
rents(917,9)=-2538.821009564541;
bref(918)=14000;
bnorm(918)=12000;
incomemean(918)=17000;
rents(918,1)=72.01116076316322;
rents(918,2)=-12.00186012719392;
rents(918,3)=-20.582417661037493;
rents(918,4)=-36.31642531330987;
rents(918,5)=-66.10068718715449;
rents(918,6)=-130.00349403374304;
rents(918,7)=-302.08677356326507;
rents(918,8)=-942.6450714176015;
rents(918,9)=-6083.660831637126;
bref(919)=14000;
bnorm(919)=12000;
incomemean(919)=18000;
rents(919,1)=73.16737078014617;
rents(919,2)=-12.194561796691046;
rents(919,3)=-22.403174799783862;
rents(919,4)=-42.328743529831044;
rents(919,5)=-83.36638350967655;
rents(919,6)=-184.2584295893911;
rents(919,7)=-503.7834970203758;
rents(919,8)=-2187.9032055798352;
rents(919,9)=-28983.21624082639;
bref(920)=14000;
bnorm(920)=12000;
incomemean(920)=19000;
rents(920,1)=72.83067467209403;
rents(920,2)=-12.138445778682323;
rents(920,3)=-23.74700484157376;
rents(920,4)=-47.97511367356804;
rents(920,5)=-103.14002610710544;
rents(920,6)=-246.59549451507797;
rents(920,7)=-774.0817034304695;
rents(920,8)=-4519.655404147489;
rents(920,9)=-114184.27336949183;
bref(921)=14000;
bnorm(921)=14000;
incomemean(921)=10000;
rents(921,1)=74.72374519601976;
rents(921,2)=0;
rents(921,3)=0;
rents(921,4)=0;
rents(921,5)=0;
rents(921,6)=0;
rents(921,7)=0;
rents(921,8)=0;
rents(921,9)=0;
bref(922)=14000;
bnorm(922)=14000;
incomemean(922)=11000;
rents(922,1)=72.85374296217365;
rents(922,2)=0;
rents(922,3)=0;
rents(922,4)=0;
rents(922,5)=0;
rents(922,6)=0;
rents(922,7)=0;
rents(922,8)=0;
rents(922,9)=0;
bref(923)=14000;
bnorm(923)=14000;
incomemean(923)=12000;
rents(923,1)=71.77895435245892;
rents(923,2)=0;
rents(923,3)=0;
rents(923,4)=0;
rents(923,5)=0;
rents(923,6)=0;
rents(923,7)=0;
rents(923,8)=0;
rents(923,9)=0;
bref(924)=14000;
bnorm(924)=14000;
incomemean(924)=13000;
rents(924,1)=73.68156274650745;
rents(924,2)=0;
rents(924,3)=0;
rents(924,4)=0;
rents(924,5)=0;
rents(924,6)=0;
rents(924,7)=0;
rents(924,8)=0;
rents(924,9)=0;
bref(925)=14000;
bnorm(925)=14000;
incomemean(925)=14000;
rents(925,1)=72.30884641197454;
rents(925,2)=0;
rents(925,3)=0;
rents(925,4)=0;
rents(925,5)=0;
rents(925,6)=0;
rents(925,7)=0;
rents(925,8)=0;
rents(925,9)=0;
bref(926)=14000;
bnorm(926)=14000;
incomemean(926)=15000;
rents(926,1)=72.7333999016181;
rents(926,2)=0;
rents(926,3)=0;
rents(926,4)=0;
rents(926,5)=0;
rents(926,6)=0;
rents(926,7)=0;
rents(926,8)=0;
rents(926,9)=0;
bref(927)=14000;
bnorm(927)=14000;
incomemean(927)=16000;
rents(927,1)=70.80349515130554;
rents(927,2)=0;
rents(927,3)=0;
rents(927,4)=0;
rents(927,5)=0;
rents(927,6)=0;
rents(927,7)=0;
rents(927,8)=0;
rents(927,9)=0;
bref(928)=14000;
bnorm(928)=14000;
incomemean(928)=17000;
rents(928,1)=70.2748441440372;
rents(928,2)=0;
rents(928,3)=0;
rents(928,4)=0;
rents(928,5)=0;
rents(928,6)=0;
rents(928,7)=0;
rents(928,8)=0;
rents(928,9)=0;
bref(929)=14000;
bnorm(929)=14000;
incomemean(929)=18000;
rents(929,1)=72.36266485884839;
rents(929,2)=0;
rents(929,3)=0;
rents(929,4)=0;
rents(929,5)=0;
rents(929,6)=0;
rents(929,7)=0;
rents(929,8)=0;
rents(929,9)=0;
bref(930)=14000;
bnorm(930)=14000;
incomemean(930)=19000;
rents(930,1)=71.22868227913555;
rents(930,2)=0;
rents(930,3)=0;
rents(930,4)=0;
rents(930,5)=0;
rents(930,6)=0;
rents(930,7)=0;
rents(930,8)=0;
rents(930,9)=0;
bref(931)=14000;
bnorm(931)=16000;
incomemean(931)=10000;
rents(931,1)=70.38048318915335;
rents(931,2)=8.797560398644174;
rents(931,3)=8.306000263270207;
rents(931,4)=7.778691797385361;
rents(931,5)=7.2513805656636565;
rents(931,6)=6.825199783069404;
rents(931,7)=6.456298696531044;
rents(931,8)=5.855427532520359;
rents(931,9)=5.427828822439639;
bref(932)=14000;
bnorm(932)=16000;
incomemean(932)=11000;
rents(932,1)=71.81160953543369;
rents(932,2)=8.97645119192919;
rents(932,3)=8.82542939048998;
rents(932,4)=8.619139955546174;
rents(932,5)=8.299913326127491;
rents(932,6)=8.05592749802471;
rents(932,7)=7.832062400103453;
rents(932,8)=7.33304970952774;
rents(932,9)=7.096821253302285;
bref(933)=14000;
bnorm(933)=16000;
incomemean(933)=12000;
rents(933,1)=72.73422619580126;
rents(933,2)=9.09177827447516;
rents(933,3)=9.297350019588741;
rents(933,4)=9.476014027988983;
rents(933,5)=9.678681149499106;
rents(933,6)=9.896384804964057;
rents(933,7)=10.23545583184223;
rents(933,8)=10.274697299623623;
rents(933,9)=10.081135367827759;
bref(934)=14000;
bnorm(934)=16000;
incomemean(934)=13000;
rents(934,1)=72.96347603070727;
rents(934,2)=9.120434503838403;
rents(934,3)=10.103395508493945;
rents(934,4)=11.06505544274996;
rents(934,5)=11.987267832778553;
rents(934,6)=13.089573323631269;
rents(934,7)=14.364183134985582;
rents(934,8)=15.299205657450546;
rents(934,9)=15.998489698105928;
bref(935)=14000;
bnorm(935)=16000;
incomemean(935)=14000;
rents(935,1)=72.72972860220429;
rents(935,2)=9.09121607527554;
rents(935,3)=10.811213273771726;
rents(935,4)=12.517993659824032;
rents(935,5)=14.217209734657452;
rents(935,6)=16.260158300310668;
rents(935,7)=18.51361558650663;
rents(935,8)=20.518960984720536;
rents(935,9)=22.409386695811556;
bref(936)=14000;
bnorm(936)=16000;
incomemean(936)=15000;
rents(936,1)=73.57354226481758;
rents(936,2)=9.196692783102192;
rents(936,3)=11.694664155910472;
rents(936,4)=14.616401297631539;
rents(936,5)=17.947851874424725;
rents(936,6)=21.71367330842769;
rents(936,7)=26.3530076141622;
rents(936,8)=30.71286317890362;
rents(936,9)=35.27081106116847;
bref(937)=14000;
bnorm(937)=16000;
incomemean(937)=16000;
rents(937,1)=71.62796416887643;
rents(937,2)=8.953495521109572;
rents(937,3)=12.333790875999732;
rents(937,4)=16.846156917201426;
rents(937,5)=22.124036043501665;
rents(937,6)=29.39865438663652;
rents(937,7)=38.015941930969845;
rents(937,8)=45.68667434638574;
rents(937,9)=54.64901197549514;
bref(938)=14000;
bnorm(938)=16000;
incomemean(938)=17000;
rents(938,1)=71.61814999652776;
rents(938,2)=8.952268749565977;
rents(938,3)=12.752437391864206;
rents(938,4)=17.984006411373088;
rents(938,5)=24.473198090276796;
rents(938,6)=33.171783539113655;
rents(938,7)=44.311723084471964;
rents(938,8)=55.57393900499165;
rents(938,9)=66.97598329483425;
bref(939)=14000;
bnorm(939)=16000;
incomemean(939)=18000;
rents(939,1)=73.1483375884137;
rents(939,2)=9.143542198551714;
rents(939,3)=13.887690676877884;
rents(939,4)=20.725227251562405;
rents(939,5)=29.594884225944643;
rents(939,6)=42.27743786978789;
rents(939,7)=57.80552214248902;
rents(939,8)=74.76877025775394;
rents(939,9)=90.73672617083128;
bref(940)=14000;
bnorm(940)=16000;
incomemean(940)=19000;
rents(940,1)=71.22651235103824;
rents(940,2)=8.903314043879778;
rents(940,3)=14.489919653146456;
rents(940,4)=23.155804406648908;
rents(940,5)=35.30351867453479;
rents(940,6)=53.36011821712727;
rents(940,7)=76.04710032837453;
rents(940,8)=100.0381414341211;
rents(940,9)=122.59722830778635;
bref(941)=14000;
bnorm(941)=18000;
incomemean(941)=10000;
rents(941,1)=73.5354883940523;
rents(941,2)=16.341219643122706;
rents(941,3)=15.532081897057738;
rents(941,4)=14.679617341154367;
rents(941,5)=13.664500327404602;
rents(941,6)=12.900706509776203;
rents(941,7)=12.192794207598805;
rents(941,8)=11.323130001323564;
rents(941,9)=10.390412965191082;
bref(942)=14000;
bnorm(942)=18000;
incomemean(942)=11000;
rents(942,1)=73.97311796626906;
rents(942,2)=16.43847065917093;
rents(942,3)=15.711438445258652;
rents(942,4)=15.130841079229208;
rents(942,5)=14.424352207356035;
rents(942,6)=13.971978993599768;
rents(942,7)=13.587576298709521;
rents(942,8)=12.85028844045004;
rents(942,9)=12.114534213370302;
bref(943)=14000;
bnorm(943)=18000;
incomemean(943)=12000;
rents(943,1)=73.73760652490968;
rents(943,2)=16.38613478331321;
rents(943,3)=16.676881570556578;
rents(943,4)=16.708183925911904;
rents(943,5)=16.636024327621843;
rents(943,6)=16.87822105451707;
rents(943,7)=17.145887544519454;
rents(943,8)=16.789794808574456;
rents(943,9)=16.45035362054958;
bref(944)=14000;
bnorm(944)=18000;
incomemean(944)=13000;
rents(944,1)=72.76606389831836;
rents(944,2)=16.17023642184852;
rents(944,3)=17.16731137723459;
rents(944,4)=18.223987504032888;
rents(944,5)=18.939313267535535;
rents(944,6)=19.928406671976724;
rents(944,7)=20.962939547066274;
rents(944,8)=21.83303357900075;
rents(944,9)=22.401798619163614;
bref(945)=14000;
bnorm(945)=18000;
incomemean(945)=14000;
rents(945,1)=72.08955677504485;
rents(945,2)=16.01990150556552;
rents(945,3)=17.890987944889872;
rents(945,4)=19.677737303261377;
rents(945,5)=21.376507499394908;
rents(945,6)=23.195573110357667;
rents(945,7)=25.487142846193407;
rents(945,8)=26.937720651011645;
rents(945,9)=28.663237877108273;
bref(946)=14000;
bnorm(946)=18000;
incomemean(946)=15000;
rents(946,1)=71.39291183483745;
rents(946,2)=15.865091518852775;
rents(946,3)=18.957648677846965;
rents(946,4)=22.17906152280913;
rents(946,5)=25.29306499291305;
rents(946,6)=28.987355493094213;
rents(946,7)=32.94792691298082;
rents(946,8)=36.74174828850817;
rents(946,9)=39.63068851465745;
bref(947)=14000;
bnorm(947)=18000;
incomemean(947)=16000;
rents(947,1)=73.09031179715903;
rents(947,2)=16.24229151047992;
rents(947,3)=20.66610871629121;
rents(947,4)=25.58547253309018;
rents(947,5)=31.096216886543928;
rents(947,6)=37.609409971082016;
rents(947,7)=44.481509648564234;
rents(947,8)=50.655085044235214;
rents(947,9)=56.808331353761815;
bref(948)=14000;
bnorm(948)=18000;
incomemean(948)=17000;
rents(948,1)=71.74468860512779;
rents(948,2)=15.943264134472816;
rents(948,3)=22.0782233078241;
rents(948,4)=29.905132445732125;
rents(948,5)=39.5286380952636;
rents(948,6)=51.26875573359686;
rents(948,7)=64.33171433914487;
rents(948,8)=75.49671181585772;
rents(948,9)=88.0848374269687;
bref(949)=14000;
bnorm(949)=18000;
incomemean(949)=18000;
rents(949,1)=69.91909302197976;
rents(949,2)=15.537576227106628;
rents(949,3)=22.587216824830175;
rents(949,4)=32.12332946772752;
rents(949,5)=43.90613363390348;
rents(949,6)=59.315383857177515;
rents(949,7)=76.56941280157986;
rents(949,8)=93.18991583974898;
rents(949,9)=108.1169945010804;
bref(950)=14000;
bnorm(950)=18000;
incomemean(950)=19000;
rents(950,1)=70.64638570202904;
rents(950,2)=15.699196822673038;
rents(950,3)=23.96589379639477;
rents(950,4)=35.619488353428686;
rents(950,5)=50.78696343635611;
rents(950,6)=70.83228157222155;
rents(950,7)=94.00338613754454;
rents(950,8)=115.37831414101697;
rents(950,9)=134.68302177535236;
bref(951)=14000;
bnorm(951)=20000;
incomemean(951)=10000;
rents(951,1)=70.37192187296696;
rents(951,2)=21.111576561890143;
rents(951,3)=19.124023793630872;
rents(951,4)=17.391103563911113;
rents(951,5)=15.824643698922799;
rents(951,6)=14.515827937851212;
rents(951,7)=13.522566987906268;
rents(951,8)=12.283295105813021;
rents(951,9)=11.30595262604675;
bref(952)=14000;
bnorm(952)=20000;
incomemean(952)=11000;
rents(952,1)=70.63645968987234;
rents(952,2)=21.19093790696169;
rents(952,3)=20.338187886605233;
rents(952,4)=19.518326719295008;
rents(952,5)=18.67760132928643;
rents(952,6)=18.08983720777463;
rents(952,7)=17.42542244521954;
rents(952,8)=16.521550298684037;
rents(952,9)=15.77576250292683;
bref(953)=14000;
bnorm(953)=20000;
incomemean(953)=12000;
rents(953,1)=74.60002220312764;
rents(953,2)=22.380006660938278;
rents(953,3)=22.13229833893591;
rents(953,4)=21.791283003575987;
rents(953,5)=21.208303532504644;
rents(953,6)=20.890607626832672;
rents(953,7)=20.796576218559892;
rents(953,8)=20.279719370658793;
rents(953,9)=19.69288845719641;
bref(954)=14000;
bnorm(954)=20000;
incomemean(954)=13000;
rents(954,1)=71.13175881574332;
rents(954,2)=21.33952764472306;
rents(954,3)=21.770694035250674;
rents(954,4)=22.123357784506272;
rents(954,5)=22.19742722980966;
rents(954,6)=22.635738217007056;
rents(954,7)=22.670137738393173;
rents(954,8)=22.55401145203611;
rents(954,9)=22.243220591940783;
bref(955)=14000;
bnorm(955)=20000;
incomemean(955)=14000;
rents(955,1)=71.89940177443955;
rents(955,2)=21.569820532331896;
rents(955,3)=24.14529173092944;
rents(955,4)=26.289210875705738;
rents(955,5)=28.11215593745958;
rents(955,6)=30.69241213862748;
rents(955,7)=33.018011580554756;
rents(955,8)=34.21172586375032;
rents(955,9)=35.668265122663406;
bref(956)=14000;
bnorm(956)=20000;
incomemean(956)=15000;
rents(956,1)=70.96534070302401;
rents(956,2)=21.28960221090706;
rents(956,3)=25.32803658379515;
rents(956,4)=29.35107724582086;
rents(956,5)=33.66121914786195;
rents(956,6)=38.12347520959963;
rents(956,7)=42.18966072141568;
rents(956,8)=45.63050167728477;
rents(956,9)=48.80201611580986;
bref(957)=14000;
bnorm(957)=20000;
incomemean(957)=16000;
rents(957,1)=72.9768535072454;
rents(957,2)=21.893056052173527;
rents(957,3)=26.99363337522896;
rents(957,4)=32.90601806162209;
rents(957,5)=39.05616636976728;
rents(957,6)=45.83883325942659;
rents(957,7)=53.08168960523551;
rents(957,8)=59.30708865930348;
rents(957,9)=63.75473784219671;
bref(958)=14000;
bnorm(958)=20000;
incomemean(958)=17000;
rents(958,1)=71.68429797698953;
rents(958,2)=21.505289393096838;
rents(958,3)=27.814706995188924;
rents(958,4)=35.57248961545638;
rents(958,5)=43.59893216847564;
rents(958,6)=53.073175067565955;
rents(958,7)=62.71055261017777;
rents(958,8)=72.17997141461437;
rents(958,9)=79.94486722643677;
bref(959)=14000;
bnorm(959)=20000;
incomemean(959)=18000;
rents(959,1)=72.72976221938589;
rents(959,2)=21.81892866581563;
rents(959,3)=30.30132428140062;
rents(959,4)=40.678490011360914;
rents(959,5)=53.65586382898158;
rents(959,6)=69.25428124552703;
rents(959,7)=85.13706656774325;
rents(959,8)=98.71551603588733;
rents(959,9)=109.99472183013157;
bref(960)=14000;
bnorm(960)=20000;
incomemean(960)=19000;
rents(960,1)=72.25879862439336;
rents(960,2)=21.67763958731802;
rents(960,3)=31.81265448722938;
rents(960,4)=45.0921056910984;
rents(960,5)=61.82912614898274;
rents(960,6)=82.35613808864936;
rents(960,7)=105.14635512653867;
rents(960,8)=122.93269284164799;
rents(960,9)=140.77945945823183;
bref(961)=14000;
bnorm(961)=22000;
incomemean(961)=10000;
rents(961,1)=73.54428302160738;
rents(961,2)=26.743375644220812;
rents(961,3)=24.359554705017015;
rents(961,4)=22.178843384119713;
rents(961,5)=20.293043274599974;
rents(961,6)=18.73177803709114;
rents(961,7)=17.263795076220084;
rents(961,8)=15.796795714389944;
rents(961,9)=14.569968103852208;
bref(962)=14000;
bnorm(962)=22000;
incomemean(962)=11000;
rents(962,1)=71.56358308504952;
rents(962,2)=26.023121121836255;
rents(962,3)=24.311971023918712;
rents(962,4)=22.689524781050576;
rents(962,5)=21.02432633042126;
rents(962,6)=19.877609697599393;
rents(962,7)=18.833155382288343;
rents(962,8)=17.54013546513436;
rents(962,9)=16.399770793252127;
bref(963)=14000;
bnorm(963)=22000;
incomemean(963)=12000;
rents(963,1)=73.47006384681919;
rents(963,2)=26.71638685338891;
rents(963,3)=26.16445988750449;
rents(963,4)=25.72394246017907;
rents(963,5)=24.989041788223048;
rents(963,6)=24.520204264239332;
rents(963,7)=24.251312853815122;
rents(963,8)=23.301291561656903;
rents(963,9)=22.581896005953976;
bref(964)=14000;
bnorm(964)=22000;
incomemean(964)=13000;
rents(964,1)=72.48206845919111;
rents(964,2)=26.357115803342197;
rents(964,3)=27.061481849073164;
rents(964,4)=27.893740593256066;
rents(964,5)=27.840531699083765;
rents(964,6)=28.46210845972403;
rents(964,7)=29.006827545721055;
rents(964,8)=29.24695540188791;
rents(964,9)=29.418645557445355;
bref(965)=14000;
bnorm(965)=22000;
incomemean(965)=14000;
rents(965,1)=74.70771742493042;
rents(965,2)=27.166442699974578;
rents(965,3)=29.757264763134252;
rents(965,4)=31.754692285091963;
rents(965,5)=33.410713722891494;
rents(965,6)=35.60173369383854;
rents(965,7)=37.66807162962084;
rents(965,8)=39.084899047626365;
rents(965,9)=40.10566008639701;
bref(966)=14000;
bnorm(966)=22000;
incomemean(966)=15000;
rents(966,1)=73.72950333155231;
rents(966,2)=26.81072848420107;
rents(966,3)=30.74782571727371;
rents(966,4)=34.81460341115883;
rents(966,5)=38.66814874113873;
rents(966,6)=43.50992359234136;
rents(966,7)=47.63429592058092;
rents(966,8)=50.89702100341015;
rents(966,9)=53.90010670557444;
bref(967)=14000;
bnorm(967)=22000;
incomemean(967)=16000;
rents(967,1)=72.43508747248782;
rents(967,2)=26.34003180817725;
rents(967,3)=31.463995168657483;
rents(967,4)=37.32572353495717;
rents(967,5)=43.165047056769666;
rents(967,6)=48.90086929329537;
rents(967,7)=55.17989825885457;
rents(967,8)=59.509839951505505;
rents(967,9)=64.79412261348251;
bref(968)=14000;
bnorm(968)=22000;
incomemean(968)=17000;
rents(968,1)=76.7048386940376;
rents(968,2)=27.89266861601378;
rents(968,3)=35.513460864422925;
rents(968,4)=43.90390901535722;
rents(968,5)=53.39943617452103;
rents(968,6)=63.81095566856522;
rents(968,7)=74.10310476058002;
rents(968,8)=82.61549475277907;
rents(968,9)=90.29472023616965;
bref(969)=14000;
bnorm(969)=22000;
incomemean(969)=18000;
rents(969,1)=74.93410285460212;
rents(969,2)=27.24876467440086;
rents(969,3)=36.28114586625044;
rents(969,4)=47.09410472197668;
rents(969,5)=58.68210639041198;
rents(969,6)=72.72256444064857;
rents(969,7)=86.86386934683689;
rents(969,8)=98.52328577528309;
rents(969,9)=109.3601693219981;
bref(970)=14000;
bnorm(970)=22000;
incomemean(970)=19000;
rents(970,1)=71.51553623679337;
rents(970,2)=26.005649540652186;
rents(970,3)=36.79251378200742;
rents(970,4)=50.27430557539133;
rents(970,5)=66.43018266091023;
rents(970,6)=85.97550779229041;
rents(970,7)=106.50091493216522;
rents(970,8)=124.11449488268786;
rents(970,9)=138.28617401013773;
bref(971)=14000;
bnorm(971)=24000;
incomemean(971)=10000;
rents(971,1)=73.71867973572378;
rents(971,2)=30.71611655655167;
rents(971,3)=27.591060613260353;
rents(971,4)=24.94435489089003;
rents(971,5)=22.704564629680373;
rents(971,6)=20.775594623997893;
rents(971,7)=19.096364370892534;
rents(971,8)=17.549485411546552;
rents(971,9)=16.084649807490887;
bref(972)=14000;
bnorm(972)=24000;
incomemean(972)=11000;
rents(972,1)=72.34386165249018;
rents(972,2)=30.143275688537535;
rents(972,3)=28.087679614938544;
rents(972,4)=26.414703855000102;
rents(972,5)=24.559153669994707;
rents(972,6)=23.31222836904691;
rents(972,7)=21.82746022560513;
rents(972,8)=20.24252616645838;
rents(972,9)=18.990507959996126;
bref(973)=14000;
bnorm(973)=24000;
incomemean(973)=12000;
rents(973,1)=72.50084553276794;
rents(973,2)=30.208685638653392;
rents(973,3)=29.127494372253345;
rents(973,4)=28.250826715722024;
rents(973,5)=27.299292101223816;
rents(973,6)=26.580901757488235;
rents(973,7)=26.0349763629034;
rents(973,8)=24.858667020589362;
rents(973,9)=23.75007517731163;
bref(974)=14000;
bnorm(974)=24000;
incomemean(974)=13000;
rents(974,1)=74.25840150962141;
rents(974,2)=30.94100062900878;
rents(974,3)=31.422047074452156;
rents(974,4)=31.43696207168203;
rents(974,5)=31.71249973999299;
rents(974,6)=31.9884768607154;
rents(974,7)=32.104381190853665;
rents(974,8)=31.60714184409678;
rents(974,9)=31.324739228768472;
bref(975)=14000;
bnorm(975)=24000;
incomemean(975)=14000;
rents(975,1)=72.39891197000902;
rents(975,2)=30.16621332083737;
rents(975,3)=31.89602462036033;
rents(975,4)=33.71710906569162;
rents(975,5)=35.02323658639522;
rents(975,6)=36.43260541575794;
rents(975,7)=37.86255261536494;
rents(975,8)=38.21708763877385;
rents(975,9)=38.65231996980806;
bref(976)=14000;
bnorm(976)=24000;
incomemean(976)=15000;
rents(976,1)=73.14488925092932;
rents(976,2)=30.477037187887316;
rents(976,3)=34.08127258964786;
rents(976,4)=37.603211958778694;
rents(976,5)=40.98332827355968;
rents(976,6)=44.01033253988994;
rents(976,7)=46.90585503389911;
rents(976,8)=49.20367628415752;
rents(976,9)=51.402768501555755;
bref(977)=14000;
bnorm(977)=24000;
incomemean(977)=16000;
rents(977,1)=69.849329316795;
rents(977,2)=29.103887215331177;
rents(977,3)=33.98459800253426;
rents(977,4)=39.30778323704745;
rents(977,5)=44.33218130365938;
rents(977,6)=50.370410211941994;
rents(977,7)=56.31281888934728;
rents(977,8)=60.209168838997705;
rents(977,9)=64.58693777668772;
bref(978)=14000;
bnorm(978)=24000;
incomemean(978)=17000;
rents(978,1)=74.13838984052546;
rents(978,2)=30.890995766885386;
rents(978,3)=38.06550998353074;
rents(978,4)=46.283645428382194;
rents(978,5)=54.94150860754967;
rents(978,6)=64.62903348362153;
rents(978,7)=74.64106424241967;
rents(978,8)=81.98568902329067;
rents(978,9)=89.18532597971073;
bref(979)=14000;
bnorm(979)=24000;
incomemean(979)=18000;
rents(979,1)=74.38698223568213;
rents(979,2)=30.99457593153425;
rents(979,3)=39.95026936641188;
rents(979,4)=50.89696517335717;
rents(979,5)=62.9551116586035;
rents(979,6)=76.5112188595513;
rents(979,7)=88.77681081654882;
rents(979,8)=100.09617355950277;
rents(979,9)=110.75271049202587;
bref(980)=14000;
bnorm(980)=24000;
incomemean(980)=19000;
rents(980,1)=72.14001978387009;
rents(980,2)=30.058341576612463;
rents(980,3)=40.4603582253681;
rents(980,4)=53.1197574698838;
rents(980,5)=66.63030030683692;
rents(980,6)=82.71591084631072;
rents(980,7)=98.7672744139542;
rents(980,8)=114.23593245276744;
rents(980,9)=126.68148410488075;
bref(981)=14000;
bnorm(981)=26000;
incomemean(981)=10000;
rents(981,1)=72.17988396057785;
rents(981,2)=33.31379259718956;
rents(981,3)=30.205582182571963;
rents(981,4)=27.523991419562815;
rents(981,5)=25.05302285893216;
rents(981,6)=23.025144112002955;
rents(981,7)=21.561597983045008;
rents(981,8)=19.895750275921756;
rents(981,9)=18.457398580747395;
bref(982)=14000;
bnorm(982)=26000;
incomemean(982)=11000;
rents(982,1)=71.98670485137762;
rents(982,2)=33.22463300832818;
rents(982,3)=31.20260441176051;
rents(982,4)=29.409745015313117;
rents(982,5)=27.538983739705856;
rents(982,6)=26.029276475866574;
rents(982,7)=24.76813145649538;
rents(982,8)=23.169246794881982;
rents(982,9)=21.77639097368464;
bref(983)=14000;
bnorm(983)=26000;
incomemean(983)=12000;
rents(983,1)=69.63364289282052;
rents(983,2)=32.138604412070855;
rents(983,3)=31.5657199793015;
rents(983,4)=30.91272938678594;
rents(983,5)=29.818764350962084;
rents(983,6)=29.04235685679047;
rents(983,7)=28.54152115408745;
rents(983,8)=27.702391898370475;
rents(983,9)=26.98964249267263;
bref(984)=14000;
bnorm(984)=26000;
incomemean(984)=13000;
rents(984,1)=68.68600257290969;
rents(984,2)=31.70123195672737;
rents(984,3)=32.30244445441784;
rents(984,4)=32.80869035172736;
rents(984,5)=32.845677178994336;
rents(984,6)=33.06527492266363;
rents(984,7)=33.18595430460824;
rents(984,8)=32.86714333267653;
rents(984,9)=32.58869178785198;
bref(985)=14000;
bnorm(985)=26000;
incomemean(985)=14000;
rents(985,1)=70.80214981326874;
rents(985,2)=32.67791529843179;
rents(985,3)=34.252929490989;
rents(985,4)=35.435727930236375;
rents(985,5)=36.6289508485715;
rents(985,6)=37.730399643113984;
rents(985,7)=39.016111703228404;
rents(985,8)=39.7267689655913;
rents(985,9)=40.22926056242877;
bref(986)=14000;
bnorm(986)=26000;
incomemean(986)=15000;
rents(986,1)=71.85345189351764;
rents(986,2)=33.163131643162195;
rents(986,3)=37.24907386974891;
rents(986,4)=41.41772839187101;
rents(986,5)=45.41494466999684;
rents(986,6)=49.89389647892201;
rents(986,7)=54.38324336306562;
rents(986,8)=58.06598971747158;
rents(986,9)=60.166662670696375;
bref(987)=14000;
bnorm(987)=26000;
incomemean(987)=16000;
rents(987,1)=71.52804685254921;
rents(987,2)=33.0129447011764;
rents(987,3)=38.39119432084098;
rents(987,4)=43.847643586041904;
rents(987,5)=49.04585752766224;
rents(987,6)=54.65322849021869;
rents(987,7)=60.059882366708514;
rents(987,8)=64.39585588859295;
rents(987,9)=68.07451881716835;
bref(988)=14000;
bnorm(988)=26000;
incomemean(988)=17000;
rents(988,1)=72.60647400448659;
rents(988,2)=33.51068030976301;
rents(988,3)=40.52079717095304;
rents(988,4)=48.659447407345915;
rents(988,5)=56.264003824032045;
rents(988,6)=65.89357060217982;
rents(988,7)=74.47133079910557;
rents(988,8)=81.17111583388231;
rents(988,9)=88.35698784814156;
bref(989)=14000;
bnorm(989)=26000;
incomemean(989)=18000;
rents(989,1)=72.97662758013408;
rents(989,2)=33.68152042160023;
rents(989,3)=42.59665113429877;
rents(989,4)=52.356019000646164;
rents(989,5)=63.398260345912774;
rents(989,6)=74.90711679197236;
rents(989,7)=87.35077431376114;
rents(989,8)=95.73314449509895;
rents(989,9)=105.16257432879603;
bref(990)=14000;
bnorm(990)=26000;
incomemean(990)=19000;
rents(990,1)=74.58587076725487;
rents(990,2)=34.42424804642529;
rents(990,3)=45.40761807201061;
rents(990,4)=58.27366472581133;
rents(990,5)=72.9766551933735;
rents(990,6)=88.30873853427839;
rents(990,7)=103.6804096378279;
rents(990,8)=116.1521283674195;
rents(990,9)=127.22145005694723;
bref(991)=14000;
bnorm(991)=28000;
incomemean(991)=10000;
rents(991,1)=72.46144577485244;
rents(991,2)=36.23072288742624;
rents(991,3)=33.233261358168086;
rents(991,4)=30.4571054537519;
rents(991,5)=27.91583991633192;
rents(991,6)=25.690579550986687;
rents(991,7)=24.012040480039317;
rents(991,8)=22.05586242905465;
rents(991,9)=20.459397461894245;
bref(992)=14000;
bnorm(992)=28000;
incomemean(992)=11000;
rents(992,1)=72.11868469214579;
rents(992,2)=36.05934234607291;
rents(992,3)=33.549174898720786;
rents(992,4)=31.13068327972378;
rents(992,5)=29.088172524497377;
rents(992,6)=27.50447604072329;
rents(992,7)=25.964384328045814;
rents(992,8)=24.213510706651608;
rents(992,9)=22.784559189042216;
bref(993)=14000;
bnorm(993)=28000;
incomemean(993)=12000;
rents(993,1)=72.05007866655318;
rents(993,2)=36.02503933327657;
rents(993,3)=35.005632623993606;
rents(993,4)=33.896299596591376;
rents(993,5)=32.571534055999194;
rents(993,6)=31.791365554079647;
rents(993,7)=31.16469682115964;
rents(993,8)=29.891869285351802;
rents(993,9)=28.955200811580738;
bref(994)=14000;
bnorm(994)=28000;
incomemean(994)=13000;
rents(994,1)=69.84177666147544;
rents(994,2)=34.9208883307377;
rents(994,3)=35.659713711273405;
rents(994,4)=36.16698537224414;
rents(994,5)=36.26615168291099;
rents(994,6)=36.24534953337543;
rents(994,7)=36.13974598628213;
rents(994,8)=35.84773022600707;
rents(994,9)=35.84918939749643;
bref(995)=14000;
bnorm(995)=28000;
incomemean(995)=14000;
rents(995,1)=71.17692038971121;
rents(995,2)=35.58846019485558;
rents(995,3)=36.77841398571171;
rents(995,4)=37.868763594242495;
rents(995,5)=38.2785644203286;
rents(995,6)=39.377483001307354;
rents(995,7)=40.03572615394951;
rents(995,8)=40.564037455502614;
rents(995,9)=40.674754241085964;
bref(996)=14000;
bnorm(996)=28000;
incomemean(996)=15000;
rents(996,1)=71.35166579438533;
rents(996,2)=35.67583289719263;
rents(996,3)=38.77851042671309;
rents(996,4)=41.77913105612697;
rents(996,5)=44.61390967124955;
rents(996,6)=47.510139950186925;
rents(996,7)=50.76086743382717;
rents(996,8)=52.769445649293615;
rents(996,9)=54.45493362762309;
bref(997)=14000;
bnorm(997)=28000;
incomemean(997)=16000;
rents(997,1)=73.16956778830456;
rents(997,2)=36.584783894152295;
rents(997,3)=41.88812101284228;
rents(997,4)=47.11920710100906;
rents(997,5)=51.98586748431863;
rents(997,6)=57.537213487588296;
rents(997,7)=62.88501203972062;
rents(997,8)=66.39786455419487;
rents(997,9)=70.29441138667573;
bref(998)=14000;
bnorm(998)=28000;
incomemean(998)=17000;
rents(998,1)=70.29906424207508;
rents(998,2)=35.149532121037545;
rents(998,3)=41.70383138555093;
rents(998,4)=48.872530395425315;
rents(998,5)=55.72919925235438;
rents(998,6)=63.43470166456822;
rents(998,7)=71.13166260284228;
rents(998,8)=77.20832604084364;
rents(998,9)=82.83640605001587;
bref(999)=14000;
bnorm(999)=28000;
incomemean(999)=18000;
rents(999,1)=72.36416409069845;
rents(999,2)=36.1820820453492;
rents(999,3)=45.568301914496054;
rents(999,4)=55.8127264499035;
rents(999,5)=66.62057141022267;
rents(999,6)=78.34129535587692;
rents(999,7)=90.01267547600101;
rents(999,8)=99.23835844366891;
rents(999,9)=108.31284067960124;
bref(1000)=14000;
bnorm(1000)=28000;
incomemean(1000)=19000;
rents(1000,1)=71.80994340417267;
rents(1000,2)=35.904971702086385;
rents(1000,3)=46.647789172569844;
rents(1000,4)=59.611383018373566;
rents(1000,5)=73.2731484207195;
rents(1000,6)=88.91496927493849;
rents(1000,7)=104.86942528643245;
rents(1000,8)=119.00253497289464;
rents(1000,9)=130.74210409547243;
|
88b97081324b3b34daa4ad7999d3adc75f332104 | 7c3f5d0908e4b8296e6f510e1b52197d07f7aa50 | /funcao_pendulo.sce | be84ffa2de277a4f99255faab87be25959847522 | [] | no_license | mtxslv/Projetos-Calculo-Numerico | 883da40114255c871b47fb1882e3890a63d71d9d | 96949e60d384d973f048712a5222796dc989a088 | refs/heads/master | 2020-03-26T08:43:46.551491 | 2018-09-01T23:19:56 | 2018-09-01T23:19:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 141 | sce | funcao_pendulo.sce |
function pendulo = funcao_pendulo(r1,r2,r3,w0,x,n)
pendulo = (r1 + r2*cosseno_taylor(w0*x,n) + r3*seno_taylor(w0*x,n));
endfunction
|
fa06124b1ed328517dc715d1f8a885734c76b9c4 | 8a773c3ae8354003e0be6e117311bcb8226ac442 | /Hola_Mundo.sce | e58fd2007fb548ba45078cd0f3934266c6751232 | [] | no_license | CosentinoFacu/exemys-programs | 6255d29aaecd8adfbba0e2ea6585aba8b01ad239 | 19371204127460ccc37ef76f4a217fd126b249b2 | refs/heads/main | 2023-06-17T16:27:17.790557 | 2021-07-21T11:59:49 | 2021-07-21T11:59:49 | 388,101,077 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 314 | sce | Hola_Mundo.sce | start{ #Iniciamos el bloque start que se repetira una sola vez;
a=10; #Iniciamos la variable a con un valor de 25;
write_str 35,'Hola Mundo',$10,$13; #Imprimimos en el TRACE WINDOWS 'Hola Mundo';
}; #Cerramos el bloque Start;
a=10+a;
#Finalizamos el bloque Start;
end; |
4b3286586c565bd3a76e5adf50362581a7a48622 | 449d555969bfd7befe906877abab098c6e63a0e8 | /542/CH13/EX13.1/Example_13_1.sci | d30204d4ef9ddab2631b896a52be923a14faa58f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,351 | sci | Example_13_1.sci | clear all;
clc;
printf("\n Example 13.1");
printf("\n (a) Countercurrent operation");
//(a) Countercurrent operation
S = 1.6*10^(-4); //Solvent flow rate in m^3/sec
mass_flowrate = (S*800); //mass flow rate is in kg/sec
//Considering the solution, 400cm3/s = 4 × 10−4 m^3/sec containing, say, a m^3/sec A and (5 × 10−4 − a) m3/sec B.
//Thus mass flow rate of A = 1200a kg/sec
//and mass flow rate of B = (4*10^(-4)-a)*1000 = (0.4-1000a)kg/sec
//a total of: (0.4+200a) kg/sec
C = poly([0],'C');
C1 = roots(0.1*(0.4+200*C)-1200*C);
printf("\n Concentration of the solution is %.2f*10^(-5) m^3/sec",C1*10^5);
printf("\n mass flow rate of A = %.3f kg/sec",1200*C1);
printf("\n mass flow rate of B =%.3f kg/sec",0.4+200*C1);
printf("\n Ratio of A/B in the feed, Xf = %.3f kg/kg",0.041/0.366);
X = [0.05 0.10 0.15];
Y = [0.069 0.159 0.258];
plot(X,Y);
xtitle("Equilibrium curve","kg A/kg B","kg A/kg S");
//From The curve:
slope = 0.366/0.128;
printf("\n Slope of the equilibrium line is %.2f",slope);
//Since pure solvent is added, Yn+1 = Y4 = 0 and a line of slope 2.86 is drawn in such that stepping off from Xf = 0.112 kg/kg to Y4 = 0 gives exactly three stages. When Y4 = 0, Xn = X3 = 0.057 kg/kg
printf("\n The composition of final raffinate is 0.057kg A/kg B");
printf("\n\n\n (b)Multiple contact");
printf("\n Stage 1");
printf("\n In this case %.4f kg/sec",0.128/3);
//and from the equilibrium curve, the extract contains 0.18 A/kg S and (0.18 × 0.0427) = 0.0077 kg/s A.
printf("\n Thus raffinate from stage 1 contains %.4f kg/sec Aand %.3f kg/sec B",(0.041-0.0077),0.366);
X1 = 0.0333/0.366;
printf("\n X1 = %.3f kg/kg",0.0333/0.366);
printf("\n Stage 2");
//the extract contains 0.14 kg A/kg S
printf("\n The extract contains %.4f kg/sec A",0.14*0.0427);
//Thus: the raffinate from stage 2 contains (0.0333 − 0.0060) = 0.0273 kg/s A and 0.366 kg/s B
X2 = (0.0273/0.366);
printf("\n X2 = %.3f kg/kg",X2);
printf("\n Stage 3");
//the extract contains 0.114 kg A/kg S
printf("\n The extract contains %.4f kg/sec A/kg S",0.114*0.0427);
printf("\n Thus the raffinate contains %.4f kg/sec A and %.3f kg/sec B",(0.0273-0.0049),0.366);
printf("\n The composition of final raffinate = %3f kg A/kg B",0.0224/0.366);
|
cb93b4ec4412538d91cda42b13ae1f544f61bf3b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2882/CH9/EX9.19/Ex9_19.sce | 855e9daf394992298d122a21414e3a151c85e53e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,005 | sce | Ex9_19.sce | //Tested on Windows 7 Ultimate 32-bit
//Chapter 9 Frequency Response of Amplifier Pg no. 322
clear;
clc;
//Given
//Figure 9.35
Ciss=6D-12;//FET input capacitance in farads
Crss=2.5D-12;//FET reverse transfer capacitance in farads
gm=7500D-6;//transconductance in Siemens
VDD=12;//drain supply voltage in volts
Rs=50;//source resistance in ohms
RG=15D6;//gate resistance in ohms
RD=1.2D3;//drain resistance in ohms
RS=1D3;//source resistance in ohms
RL=15D6;//load resistance in ohms
Cwo=1D-12;//output wiring capacitance in farads
//Solution
Cgd=Crss;//gate to drain capacitance in farads
Cgs=Ciss-Crss;//gate to source capacitance in farads
RL_dash=RD*RL/(RD+RL);//total load resistance in ohms
GV=gm*RL_dash;//total voltage gain
Cout_miller=Cgd*(1+GV)/GV;//output miller capacitance in farads
Cout_dash=Cwo+Cout_miller;//total output capacitance in farads
fc=1/(2*%pi*RL_dash*Cout_dash);//cutoff frequency in hertz
printf("Critical frequency fc = %.2f MHz\n ",fc/10^6);
|
db25c092ad713eee9609f10bd525f9b15382c564 | e9d5f5cf984c905c31f197577d633705e835780a | /GED/nonlinear/scilab/nonlin_pf88/pf88_residuals.sci | 395edc49301e89f396b9d4ecdc523297ea8d5a2c | [] | no_license | faiz-hub/dr-ged-benchmarks | 1ad57a69ed90fe7595c006efdc262d703e22d6c0 | 98b250db9e9f09d42b3413551ce7a346dd99400c | refs/heads/master | 2021-05-18T23:12:18.631904 | 2020-03-30T21:12:16 | 2020-03-30T21:12:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,350 | sci | pf88_residuals.sci | function y = pf88_residuals(x)
//*********************************************************************
// Data Reconciliation Benchmark Problems From Literature Review
// Author: Edson Cordeiro do Valle
// Contact - edsoncv@{gmail.com}{vrtech.com.br}
// Skype: edson.cv
//*********************************************************************
// this function is prepared to use the automatic derivatives toolbox of
// Scilab. This toolbox can be instaled using the ATOMS installer (package name: diffcode).
// This function evaluates the residuals of the flowsheet of the problem proposed by Pai and Fisher 1988:
// C.C. David Pai, Gary D. Fisher
// Application of Broyden's Method to Reconciliation of Nonlinearly Constrained Data
// AICHE Journal 1988, V 34 No. 5 -p 873-876
//
// Outputs:
// y: the contraints residuals
// Inputs:
// x: the column vector of the variables:
// 8 variables and 6 equations
//
xi = x(1:5);
vi = x(6:$);
y(1) = 0.5*xi(1).^2 - 0.7*xi(2) + xi(3)*vi(1) + vi(1)*vi(2)*xi(2).^2 + 2*xi(3)*vi(3).^2;
y(2) = xi(1) - 2*xi(2) + 3*xi(1)*xi(3) - 2*xi(2)*vi(1) - xi(2)*vi(2)*vi(3);
y(3) = xi(3)*vi(1) - xi(1) + 3*xi(2) + xi(1)*vi(2) - xi(3)*vi(3).^0.5;
y(4) = xi(4) - xi(1) - xi(3).^2 + vi(2) + 3*vi(3);
y(5) = xi(5) - 2*xi(3)*vi(2)*vi(3);
y(6) = 2*xi(1) + xi(2)*xi(3)*vi(1) + vi(2) - vi(3);
endfunction
|
4b2d36255b4dde558c443455ca91f8ed983a4285 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/lemma-split/SURPRISE-LANGUAGES/Turkic/tuk.tst | 581bbe5863ad3aef70dd7ca298b16f0232e9651f | [] | no_license | davidgu13/Lemma-vs-Form-Splits | c154f1c0c7b84ba5b325b17507012d41b9ad5cfe | 3cce087f756420523f5a14234d02482452a7bfa5 | refs/heads/master | 2023-08-01T16:15:52.417307 | 2021-09-14T20:19:28 | 2021-09-14T20:19:28 | 395,023,433 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 146,573 | tst | tuk.tst | seretmek V;SG;3;PST
seretmek V;COND+INTEN;SG;3;PST
seretmek V;INTEN;SG;2;PST
seretmek V;INTEN;PL;3;PST
seretmek V;NFH;SG;1;PST
seretmek V;PRF;SG;3;PST
seretmek V;PROG;SG;1;PRS
seretmek V;INTEN;SG;1;PST
seretmek V;SG;1;PST
seretmek V;PROG;SG;2;PRS
seretmek V;SG;2;INFM;PST
seretmek V;COND;PL;1
seretmek V;COND+INTEN;SG;1;PST
seretmek V;NFH;PL;3;PST
seretmek V;COND;PL;3
seretmek V;SG;1;FUT
seretmek V;FRML;SG;2;PST
seretmek V;NFH;PL;1;PST
seretmek V;FRML;COND+INTEN;SG;2;PST
seretmek V;FRML;IMP;PL;2
seretmek V;PRF;PL;1;PST
seretmek V;FRML;SG;2;FUT
seretmek V;COND;SG;2
seretmek V;SG;3;FUT
seretmek V;COND+INTEN;PL;1;PST
seretmek V;COND;SG;1
seretmek V;IMP;PL;2;INFM
seretmek V;PROG;PL;1;PRS
seretmek V;NFH;SG;3;PST
seretmek V;PL;1;FUT
seretmek V;PL;3;PST
seretmek V;FRML;INTEN;SG;2;PST
seretmek V;IMP;SG;2;INFM
seretmek V;INTEN;SG;3;PST
seretmek V;FRML;NFH;SG;2;PST
seretmek V;SG;2;INFM;FUT
seretmek V;INTEN;PL;1;PST
seretmek V;PRF;PL;3;PST
seretmek V;PL;1;PST
seretmek V;SG;2;INFM;PST
seretmek V;PL;3;FUT
seretmek V;NFH;SG;2;PST
seretmek V;PROG;PL;3;PRS
seretmek V;COND+INTEN;SG;2;PST
seretmek V;FRML;COND;SG;2
seretmek V;PROG;SG;3;PRS
seretmek V;FRML;IMP;SG;2
seretmek V;SG;3;PST
seretmek V;PL;1;PST
seretmek V;COND;SG;3
seretmek V;PRF;SG;1;PST
seretmek V;PL;3;PST
seretmek V;PRF;SG;2;INFM;PST
seretmek V;PRF;FRML;SG;2;PST
seretmek V;COND+INTEN;PL;3;PST
seretmek V;PROG;FRML;SG;2;PRS
utulmak V;PL;3;PST
utulmak V;PROG;SG;1;PRS
utulmak V;COND+INTEN;PL;3;PST
utulmak V;INTEN;SG;1;PST
utulmak V;FRML;SG;2;PST
utulmak V;FRML;IMP;PL;2
utulmak V;FRML;INTEN;SG;2;PST
utulmak V;NFH;SG;1;PST
utulmak V;SG;3;FUT
utulmak V;COND+INTEN;SG;2;PST
utulmak V;NFH;PL;3;PST
utulmak V;IMP;PL;2;INFM
utulmak V;FRML;NFH;SG;2;PST
utulmak V;INTEN;SG;3;PST
utulmak V;COND;PL;1
utulmak V;PRF;PL;3;PST
utulmak V;SG;1;FUT
utulmak V;COND;SG;1
utulmak V;FRML;SG;2;FUT
utulmak V;NFH;SG;3;PST
utulmak V;PROG;PL;1;PRS
utulmak V;COND;SG;2
utulmak V;SG;1;PST
utulmak V;PRF;SG;2;INFM;PST
utulmak V;FRML;COND;SG;2
utulmak V;INTEN;SG;2;PST
utulmak V;COND;SG;3
utulmak V;INTEN;PL;3;PST
utulmak V;PROG;SG;2;PRS
utulmak V;IMP;SG;2;INFM
utulmak V;FRML;IMP;SG;2
utulmak V;PL;1;PST
utulmak V;PROG;SG;3;PRS
utulmak V;PRF;SG;3;PST
utulmak V;COND+INTEN;PL;1;PST
utulmak V;PROG;PL;3;PRS
utulmak V;PRF;SG;1;PST
utulmak V;NFH;PL;1;PST
utulmak V;COND+INTEN;SG;3;PST
utulmak V;PRF;FRML;SG;2;PST
utulmak V;FRML;COND+INTEN;SG;2;PST
utulmak V;PL;3;FUT
utulmak V;COND+INTEN;SG;1;PST
utulmak V;PROG;FRML;SG;2;PRS
utulmak V;SG;2;INFM;PST
utulmak V;SG;3;PST
utulmak V;COND;PL;3
utulmak V;SG;2;INFM;PST
utulmak V;NFH;SG;2;PST
utulmak V;PL;1;PST
utulmak V;PRF;PL;1;PST
utulmak V;PL;1;FUT
utulmak V;SG;2;INFM;FUT
utulmak V;INTEN;PL;1;PST
utulmak V;SG;3;PST
goýmak V;NFH;PL;3;PST
goýmak V;SG;3;PST
goýmak V;NFH;SG;1;PST
goýmak V;SG;1;PST
goýmak V;INTEN;SG;3;PST
goýmak V;COND;SG;1
goýmak V;COND;PL;1
goýmak V;COND;SG;3
goýmak V;PL;1;PST
goýmak V;NFH;PL;1;PST
goýmak V;COND;PL;3
goýmak V;PRF;SG;3;PST
goýmak V;COND+INTEN;SG;1;PST
goýmak V;INTEN;SG;1;PST
goýmak V;SG;3;FUT
goýmak V;PRF;SG;1;PST
goýmak V;PROG;SG;1;PRS
goýmak V;FRML;COND+INTEN;SG;2;PST
goýmak V;COND+INTEN;PL;3;PST
goýmak V;SG;2;INFM;PST
goýmak V;COND+INTEN;SG;2;PST
goýmak V;PRF;SG;2;INFM;PST
goýmak V;COND;SG;2
goýmak V;SG;2;INFM;FUT
goýmak V;PRF;PL;3;PST
goýmak V;FRML;SG;2;PST
goýmak V;PROG;FRML;SG;2;PRS
goýmak V;PL;1;FUT
goýmak V;INTEN;PL;3;PST
goýmak V;COND+INTEN;SG;3;PST
goýmak V;PRF;FRML;SG;2;PST
goýmak V;COND+INTEN;PL;1;PST
goýmak V;PROG;PL;3;PRS
goýmak V;PROG;PL;1;PRS
goýmak V;FRML;COND;SG;2
goýmak V;FRML;IMP;SG;2
goýmak V;IMP;SG;2;INFM
goýmak V;PL;3;PST
goýmak V;NFH;SG;2;PST
goýmak V;FRML;SG;2;FUT
goýmak V;FRML;NFH;SG;2;PST
goýmak V;SG;1;FUT
goýmak V;FRML;IMP;PL;2
goýmak V;INTEN;SG;2;PST
goýmak V;PRF;PL;1;PST
goýmak V;NFH;SG;3;PST
goýmak V;PROG;SG;3;PRS
goýmak V;FRML;INTEN;SG;2;PST
goýmak V;PL;3;PST
goýmak V;PROG;SG;2;PRS
goýmak V;SG;1;PST
goýmak V;INTEN;PL;1;PST
goýmak V;SG;2;INFM;PST
goýmak V;PL;3;FUT
goýmak V;IMP;PL;2;INFM
gözi düşmek V;NFH;SG;3;PST
gözi düşmek V;COND+INTEN;SG;1;PST
gözi düşmek V;NFH;SG;1;PST
gözi düşmek V;INTEN;SG;3;PST
gözi düşmek V;IMP;PL;2;INFM
gözi düşmek V;COND;PL;3
gözi düşmek V;PRF;SG;3;PST
gözi düşmek V;SG;1;PST
gözi düşmek V;PL;3;PST
gözi düşmek V;INTEN;SG;2;PST
gözi düşmek V;PRF;FRML;SG;2;PST
gözi düşmek V;COND;PL;1
gözi düşmek V;FRML;IMP;PL;2
gözi düşmek V;COND;SG;3
gözi düşmek V;NFH;PL;1;PST
gözi düşmek V;COND+INTEN;PL;1;PST
gözi düşmek V;INTEN;PL;1;PST
gözi düşmek V;PROG;SG;2;PRS
gözi düşmek V;COND+INTEN;PL;3;PST
gözi düşmek V;PRF;PL;3;PST
gözi düşmek V;SG;3;FUT
gözi düşmek V;SG;2;INFM;PST
gözi düşmek V;FRML;COND+INTEN;SG;2;PST
gözi düşmek V;NFH;SG;2;PST
gözi düşmek V;COND;SG;1
gözi düşmek V;PROG;FRML;SG;2;PRS
gözi düşmek V;SG;2;INFM;FUT
gözi düşmek V;SG;1;FUT
gözi düşmek V;PROG;SG;1;PRS
gözi düşmek V;PL;1;PST
gözi düşmek V;PL;1;FUT
gözi düşmek V;FRML;SG;2;PST
gözi düşmek V;SG;3;PST
gözi düşmek V;PROG;PL;1;PRS
gözi düşmek V;PROG;PL;3;PRS
gözi düşmek V;PL;3;FUT
gözi düşmek V;COND+INTEN;SG;2;PST
gözi düşmek V;FRML;INTEN;SG;2;PST
gözi düşmek V;PROG;SG;3;PRS
gözi düşmek V;SG;2;INFM;PST
gözi düşmek V;INTEN;PL;3;PST
gözi düşmek V;FRML;COND;SG;2
gözi düşmek V;FRML;SG;2;FUT
gözi düşmek V;PL;1;PST
gözi düşmek V;COND;SG;2
gözi düşmek V;PRF;PL;1;PST
gözi düşmek V;FRML;SG;2;PST
gözi düşmek V;FRML;NFH;SG;2;PST
gözi düşmek V;INTEN;SG;1;PST
gözi düşmek V;COND+INTEN;SG;3;PST
gözi düşmek V;SG;3;PST
gözi düşmek V;SG;1;PST
gözi düşmek V;PRF;SG;2;INFM;PST
gözi düşmek V;IMP;SG;2;INFM
gözi düşmek V;PRF;SG;1;PST
gözi düşmek V;NFH;PL;3;PST
gözi düşmek V;FRML;IMP;SG;2
naharlanmak V;FRML;SG;2;PST
naharlanmak V;SG;1;PST
naharlanmak V;PROG;PL;1;PRS
naharlanmak V;COND;PL;3
naharlanmak V;SG;3;PST
naharlanmak V;COND;SG;1
naharlanmak V;INTEN;SG;2;PST
naharlanmak V;PL;1;PST
naharlanmak V;NFH;SG;2;PST
naharlanmak V;INTEN;SG;3;PST
naharlanmak V;NFH;PL;1;PST
naharlanmak V;SG;1;FUT
naharlanmak V;COND+INTEN;PL;1;PST
naharlanmak V;PROG;SG;2;PRS
naharlanmak V;INTEN;SG;1;PST
naharlanmak V;FRML;IMP;PL;2
naharlanmak V;PRF;PL;1;PST
naharlanmak V;SG;2;INFM;PST
naharlanmak V;PROG;SG;3;PRS
naharlanmak V;PRF;FRML;SG;2;PST
naharlanmak V;COND;SG;2
naharlanmak V;PL;1;FUT
naharlanmak V;COND+INTEN;SG;2;PST
naharlanmak V;COND;PL;1
naharlanmak V;PL;3;PST
naharlanmak V;PRF;SG;3;PST
naharlanmak V;IMP;PL;2;INFM
naharlanmak V;COND+INTEN;PL;3;PST
naharlanmak V;SG;2;INFM;FUT
naharlanmak V;PROG;SG;1;PRS
naharlanmak V;PROG;FRML;SG;2;PRS
naharlanmak V;NFH;PL;3;PST
naharlanmak V;PROG;PL;3;PRS
naharlanmak V;FRML;NFH;SG;2;PST
naharlanmak V;PL;3;FUT
naharlanmak V;FRML;COND;SG;2
naharlanmak V;PRF;SG;1;PST
naharlanmak V;FRML;IMP;SG;2
naharlanmak V;INTEN;PL;1;PST
naharlanmak V;COND+INTEN;SG;3;PST
naharlanmak V;SG;2;INFM;PST
naharlanmak V;NFH;SG;3;PST
naharlanmak V;COND+INTEN;SG;1;PST
naharlanmak V;NFH;SG;1;PST
naharlanmak V;FRML;COND+INTEN;SG;2;PST
naharlanmak V;FRML;INTEN;SG;2;PST
naharlanmak V;PRF;PL;3;PST
naharlanmak V;PRF;SG;2;INFM;PST
naharlanmak V;INTEN;PL;3;PST
naharlanmak V;PROG;SG;1;PRS
naharlanmak V;COND;SG;3
naharlanmak V;FRML;SG;2;FUT
naharlanmak V;IMP;SG;2;INFM
naharlanmak V;SG;3;FUT
üns bermek V;PROG;PL;3;PRS
üns bermek V;IMP;PL;2;INFM
üns bermek V;FRML;SG;2;PST
üns bermek V;NFH;PL;3;PST
üns bermek V;SG;2;INFM;PST
üns bermek V;SG;1;PST
üns bermek V;INTEN;PL;3;PST
üns bermek V;COND;SG;1
üns bermek V;PRF;SG;1;PST
üns bermek V;PROG;SG;1;PRS
üns bermek V;PRF;PL;1;PST
üns bermek V;FRML;COND+INTEN;SG;2;PST
üns bermek V;SG;3;FUT
üns bermek V;COND;SG;3
üns bermek V;FRML;INTEN;SG;2;PST
üns bermek V;PROG;PL;1;PRS
üns bermek V;INTEN;SG;3;PST
üns bermek V;COND+INTEN;SG;3;PST
üns bermek V;FRML;COND;SG;2
üns bermek V;INTEN;SG;1;PST
üns bermek V;PROG;FRML;SG;2;PRS
üns bermek V;FRML;NFH;SG;2;PST
üns bermek V;PL;1;PST
üns bermek V;FRML;IMP;SG;2
üns bermek V;PRF;PL;3;PST
üns bermek V;COND+INTEN;SG;2;PST
üns bermek V;SG;3;PST
üns bermek V;COND;SG;2
üns bermek V;PL;1;FUT
üns bermek V;FRML;SG;2;FUT
üns bermek V;FRML;IMP;PL;2
üns bermek V;PL;3;PST
üns bermek V;COND+INTEN;PL;3;PST
üns bermek V;COND+INTEN;PL;1;PST
üns bermek V;INTEN;PL;1;PST
üns bermek V;NFH;PL;1;PST
üns bermek V;PROG;SG;1;PRS
üns bermek V;PROG;SG;2;PRS
üns bermek V;COND;PL;3
üns bermek V;NFH;SG;2;PST
üns bermek V;SG;1;PST
üns bermek V;SG;2;INFM;FUT
üns bermek V;SG;1;FUT
üns bermek V;NFH;SG;1;PST
üns bermek V;PRF;FRML;SG;2;PST
üns bermek V;PL;3;FUT
üns bermek V;PROG;SG;3;PRS
üns bermek V;PL;3;PST
üns bermek V;PRF;SG;2;INFM;PST
üns bermek V;INTEN;SG;2;PST
üns bermek V;NFH;SG;3;PST
üns bermek V;COND+INTEN;SG;1;PST
üns bermek V;COND;PL;1
üns bermek V;PRF;SG;3;PST
üns bermek V;IMP;SG;2;INFM
degmek V;INTEN;SG;1;PST
degmek V;FRML;SG;2;FUT
degmek V;COND;SG;1
degmek V;PRF;PL;3;PST
degmek V;PL;1;FUT
degmek V;SG;2;INFM;PST
degmek V;FRML;COND;SG;2
degmek V;COND+INTEN;SG;2;PST
degmek V;NFH;SG;1;PST
degmek V;PROG;PL;1;PRS
degmek V;PROG;PL;3;PRS
degmek V;SG;3;PST
degmek V;COND;SG;3
degmek V;FRML;IMP;SG;2
degmek V;COND+INTEN;PL;1;PST
degmek V;PRF;SG;1;PST
degmek V;PRF;SG;2;INFM;PST
degmek V;FRML;IMP;PL;2
degmek V;FRML;NFH;SG;2;PST
degmek V;PROG;SG;2;PRS
degmek V;COND;SG;2
degmek V;FRML;COND+INTEN;SG;2;PST
degmek V;COND;PL;1
degmek V;SG;1;FUT
degmek V;PL;1;PST
degmek V;SG;1;PST
degmek V;INTEN;SG;3;PST
degmek V;NFH;SG;3;PST
degmek V;PL;3;PST
degmek V;FRML;SG;2;PST
degmek V;NFH;PL;3;PST
degmek V;IMP;PL;2;INFM
degmek V;FRML;INTEN;SG;2;PST
degmek V;PROG;SG;3;PRS
degmek V;PRF;FRML;SG;2;PST
degmek V;INTEN;PL;1;PST
degmek V;COND+INTEN;SG;3;PST
degmek V;PL;3;PST
degmek V;INTEN;PL;3;PST
degmek V;SG;2;INFM;FUT
degmek V;PROG;FRML;SG;2;PRS
degmek V;SG;3;FUT
degmek V;COND+INTEN;PL;3;PST
degmek V;PROG;SG;1;PRS
degmek V;COND;PL;3
degmek V;COND+INTEN;SG;1;PST
degmek V;PL;3;FUT
degmek V;PRF;SG;3;PST
degmek V;INTEN;SG;2;PST
degmek V;PRF;PL;1;PST
degmek V;IMP;SG;2;INFM
degmek V;NFH;PL;1;PST
degmek V;SG;1;PST
degmek V;NFH;SG;2;PST
çakmak V;PRF;FRML;SG;2;PST
çakmak V;COND+INTEN;SG;2;PST
çakmak V;PRF;SG;1;PST
çakmak V;PL;1;PST
çakmak V;FRML;IMP;PL;2
çakmak V;PROG;PL;1;PRS
çakmak V;NFH;PL;3;PST
çakmak V;SG;2;INFM;PST
çakmak V;SG;1;PST
çakmak V;SG;3;PST
çakmak V;SG;3;FUT
çakmak V;NFH;SG;2;PST
çakmak V;PROG;SG;2;PRS
çakmak V;PROG;PL;3;PRS
çakmak V;COND;SG;3
çakmak V;FRML;INTEN;SG;2;PST
çakmak V;COND+INTEN;SG;1;PST
çakmak V;NFH;SG;1;PST
çakmak V;INTEN;PL;1;PST
çakmak V;FRML;COND;SG;2
çakmak V;FRML;NFH;SG;2;PST
çakmak V;FRML;SG;2;PST
çakmak V;IMP;SG;2;INFM
çakmak V;PRF;PL;3;PST
çakmak V;PRF;PL;1;PST
çakmak V;SG;1;FUT
çakmak V;NFH;SG;3;PST
çakmak V;PROG;SG;1;PRS
çakmak V;INTEN;SG;1;PST
çakmak V;COND+INTEN;SG;3;PST
çakmak V;INTEN;SG;2;PST
çakmak V;SG;2;INFM;FUT
çakmak V;COND+INTEN;PL;3;PST
çakmak V;COND+INTEN;PL;1;PST
çakmak V;PRF;SG;2;INFM;PST
çakmak V;PL;3;PST
çakmak V;SG;1;PST
çakmak V;PRF;SG;3;PST
çakmak V;COND;SG;2
çakmak V;PL;1;FUT
çakmak V;SG;3;PST
çakmak V;SG;2;INFM;PST
çakmak V;FRML;SG;2;FUT
çakmak V;IMP;PL;2;INFM
çakmak V;PL;3;FUT
çakmak V;PROG;FRML;SG;2;PRS
çakmak V;PL;1;PST
çakmak V;COND;PL;1
çakmak V;NFH;PL;1;PST
çakmak V;INTEN;PL;3;PST
çakmak V;COND;SG;1
çakmak V;PL;3;PST
çakmak V;FRML;IMP;SG;2
çakmak V;PROG;SG;3;PRS
çakmak V;FRML;COND+INTEN;SG;2;PST
çakmak V;COND;PL;3
çakmak V;INTEN;SG;3;PST
ýapmak V;PRF;FRML;SG;2;PST
ýapmak V;SG;3;FUT
ýapmak V;COND+INTEN;PL;3;PST
ýapmak V;SG;2;INFM;PST
ýapmak V;PL;3;PST
ýapmak V;PRF;SG;3;PST
ýapmak V;FRML;NFH;SG;2;PST
ýapmak V;COND;SG;1
ýapmak V;PL;1;PST
ýapmak V;NFH;SG;2;PST
ýapmak V;PROG;PL;3;PRS
ýapmak V;IMP;SG;2;INFM
ýapmak V;PROG;SG;3;PRS
ýapmak V;INTEN;SG;3;PST
ýapmak V;FRML;IMP;PL;2
ýapmak V;COND;SG;2
ýapmak V;SG;1;PST
ýapmak V;INTEN;SG;1;PST
ýapmak V;COND+INTEN;SG;1;PST
ýapmak V;SG;2;INFM;FUT
ýapmak V;NFH;SG;1;PST
ýapmak V;FRML;INTEN;SG;2;PST
ýapmak V;PRF;SG;2;INFM;PST
ýapmak V;PROG;SG;1;PRS
ýapmak V;PL;3;FUT
ýapmak V;SG;3;PST
ýapmak V;PROG;PL;1;PRS
ýapmak V;IMP;PL;2;INFM
ýapmak V;PRF;PL;1;PST
ýapmak V;PL;1;FUT
ýapmak V;NFH;PL;3;PST
ýapmak V;COND+INTEN;SG;2;PST
ýapmak V;NFH;SG;3;PST
ýapmak V;FRML;SG;2;PST
ýapmak V;SG;1;FUT
ýapmak V;PRF;PL;3;PST
ýapmak V;NFH;PL;1;PST
ýapmak V;COND;PL;3
ýapmak V;FRML;SG;2;FUT
ýapmak V;PRF;SG;1;PST
ýapmak V;FRML;IMP;SG;2
ýapmak V;PROG;SG;2;PRS
ýapmak V;COND+INTEN;SG;3;PST
ýapmak V;COND+INTEN;PL;1;PST
ýapmak V;PROG;FRML;SG;2;PRS
ýapmak V;COND;SG;3
ýapmak V;INTEN;PL;3;PST
ýapmak V;COND;PL;1
ýapmak V;FRML;COND+INTEN;SG;2;PST
ýapmak V;FRML;SG;2;PST
ýapmak V;INTEN;PL;1;PST
ýapmak V;PROG;SG;1;PRS
ýapmak V;FRML;COND;SG;2
ýapmak V;INTEN;SG;2;PST
öýlenmek V;IMP;SG;2;INFM
öýlenmek V;FRML;COND;SG;2
öýlenmek V;PRF;PL;3;PST
öýlenmek V;PROG;PL;1;PRS
öýlenmek V;COND;SG;3
öýlenmek V;NFH;PL;1;PST
öýlenmek V;COND;SG;2
öýlenmek V;INTEN;SG;1;PST
öýlenmek V;COND+INTEN;SG;2;PST
öýlenmek V;IMP;PL;2;INFM
öýlenmek V;SG;2;INFM;PST
öýlenmek V;INTEN;SG;2;PST
öýlenmek V;NFH;PL;3;PST
öýlenmek V;COND;PL;3
öýlenmek V;COND+INTEN;SG;3;PST
öýlenmek V;PROG;PL;3;PRS
öýlenmek V;SG;3;FUT
öýlenmek V;PL;3;PST
öýlenmek V;COND+INTEN;PL;3;PST
öýlenmek V;SG;1;PST
öýlenmek V;PRF;SG;3;PST
öýlenmek V;COND;SG;1
öýlenmek V;PROG;SG;1;PRS
öýlenmek V;FRML;IMP;PL;2
öýlenmek V;PL;1;PST
öýlenmek V;FRML;SG;2;FUT
öýlenmek V;SG;2;INFM;FUT
öýlenmek V;PROG;SG;2;PRS
öýlenmek V;COND+INTEN;SG;1;PST
öýlenmek V;PROG;SG;3;PRS
öýlenmek V;SG;1;FUT
öýlenmek V;PRF;SG;2;INFM;PST
öýlenmek V;FRML;IMP;SG;2
öýlenmek V;FRML;SG;2;PST
öýlenmek V;PROG;FRML;SG;2;PRS
öýlenmek V;FRML;COND+INTEN;SG;2;PST
öýlenmek V;INTEN;PL;3;PST
öýlenmek V;SG;3;PST
öýlenmek V;COND;PL;1
öýlenmek V;PRF;PL;1;PST
öýlenmek V;PL;3;PST
öýlenmek V;NFH;SG;1;PST
öýlenmek V;PRF;FRML;SG;2;PST
öýlenmek V;INTEN;PL;1;PST
öýlenmek V;NFH;SG;2;PST
öýlenmek V;NFH;SG;3;PST
öýlenmek V;PL;1;FUT
öýlenmek V;SG;1;PST
öýlenmek V;COND+INTEN;PL;1;PST
öýlenmek V;FRML;SG;2;PST
öýlenmek V;INTEN;SG;3;PST
öýlenmek V;FRML;NFH;SG;2;PST
öýlenmek V;FRML;INTEN;SG;2;PST
öýlenmek V;SG;3;PST
öýlenmek V;PL;3;FUT
öýlenmek V;PROG;SG;1;PRS
öýlenmek V;PRF;SG;1;PST
yslanmak V;PROG;SG;1;PRS
yslanmak V;SG;1;FUT
yslanmak V;SG;3;FUT
yslanmak V;INTEN;SG;3;PST
yslanmak V;INTEN;SG;2;PST
yslanmak V;PROG;SG;2;PRS
yslanmak V;PRF;PL;1;PST
yslanmak V;COND;SG;1
yslanmak V;SG;1;PST
yslanmak V;FRML;SG;2;FUT
yslanmak V;PROG;PL;3;PRS
yslanmak V;COND+INTEN;PL;3;PST
yslanmak V;COND+INTEN;PL;1;PST
yslanmak V;SG;2;INFM;FUT
yslanmak V;SG;2;INFM;PST
yslanmak V;FRML;INTEN;SG;2;PST
yslanmak V;IMP;PL;2;INFM
yslanmak V;PL;1;FUT
yslanmak V;FRML;COND+INTEN;SG;2;PST
yslanmak V;COND;SG;3
yslanmak V;PL;1;PST
yslanmak V;NFH;SG;1;PST
yslanmak V;NFH;SG;3;PST
yslanmak V;FRML;IMP;SG;2
yslanmak V;PRF;SG;3;PST
yslanmak V;FRML;NFH;SG;2;PST
yslanmak V;PROG;FRML;SG;2;PRS
yslanmak V;NFH;PL;1;PST
yslanmak V;PRF;SG;2;INFM;PST
yslanmak V;NFH;SG;2;PST
yslanmak V;PROG;SG;3;PRS
yslanmak V;FRML;SG;2;PST
yslanmak V;INTEN;SG;1;PST
yslanmak V;PRF;SG;1;PST
yslanmak V;COND+INTEN;SG;2;PST
yslanmak V;PRF;FRML;SG;2;PST
yslanmak V;COND;PL;1
yslanmak V;PL;3;PST
yslanmak V;COND+INTEN;SG;3;PST
yslanmak V;INTEN;PL;3;PST
yslanmak V;PL;3;FUT
yslanmak V;FRML;IMP;PL;2
yslanmak V;INTEN;PL;1;PST
yslanmak V;PL;3;PST
yslanmak V;PROG;PL;1;PRS
yslanmak V;COND;SG;2
yslanmak V;FRML;COND;SG;2
yslanmak V;FRML;SG;2;PST
yslanmak V;PROG;SG;1;PRS
yslanmak V;IMP;SG;2;INFM
yslanmak V;SG;3;PST
yslanmak V;COND;PL;3
yslanmak V;COND+INTEN;SG;1;PST
yslanmak V;PRF;PL;3;PST
yslanmak V;NFH;PL;3;PST
tüýkürmek V;NFH;PL;1;PST
tüýkürmek V;PRF;SG;3;PST
tüýkürmek V;PRF;FRML;SG;2;PST
tüýkürmek V;PROG;FRML;SG;2;PRS
tüýkürmek V;SG;1;FUT
tüýkürmek V;FRML;SG;2;PST
tüýkürmek V;COND+INTEN;PL;1;PST
tüýkürmek V;PL;3;PST
tüýkürmek V;PROG;SG;3;PRS
tüýkürmek V;PROG;SG;1;PRS
tüýkürmek V;PL;1;PST
tüýkürmek V;SG;1;PST
tüýkürmek V;SG;3;PST
tüýkürmek V;FRML;COND+INTEN;SG;2;PST
tüýkürmek V;IMP;PL;2;INFM
tüýkürmek V;INTEN;SG;1;PST
tüýkürmek V;SG;3;FUT
tüýkürmek V;SG;2;INFM;PST
tüýkürmek V;COND;SG;2
tüýkürmek V;PRF;SG;2;INFM;PST
tüýkürmek V;FRML;INTEN;SG;2;PST
tüýkürmek V;COND;SG;3
tüýkürmek V;PROG;PL;3;PRS
tüýkürmek V;INTEN;SG;3;PST
tüýkürmek V;PL;1;FUT
tüýkürmek V;PROG;PL;1;PRS
tüýkürmek V;INTEN;PL;1;PST
tüýkürmek V;IMP;SG;2;INFM
tüýkürmek V;COND;PL;1
tüýkürmek V;COND;SG;1
tüýkürmek V;FRML;IMP;SG;2
tüýkürmek V;PL;3;FUT
tüýkürmek V;FRML;NFH;SG;2;PST
tüýkürmek V;COND+INTEN;PL;3;PST
tüýkürmek V;NFH;SG;1;PST
tüýkürmek V;COND+INTEN;SG;2;PST
tüýkürmek V;INTEN;SG;2;PST
tüýkürmek V;INTEN;PL;3;PST
tüýkürmek V;FRML;SG;2;FUT
tüýkürmek V;PL;3;PST
tüýkürmek V;PRF;PL;3;PST
tüýkürmek V;NFH;SG;2;PST
tüýkürmek V;PRF;SG;1;PST
tüýkürmek V;FRML;COND;SG;2
tüýkürmek V;NFH;PL;3;PST
tüýkürmek V;PROG;SG;1;PRS
tüýkürmek V;COND+INTEN;SG;1;PST
tüýkürmek V;PRF;PL;1;PST
tüýkürmek V;COND;PL;3
tüýkürmek V;PROG;SG;2;PRS
tüýkürmek V;FRML;IMP;PL;2
tüýkürmek V;COND+INTEN;SG;3;PST
tüýkürmek V;NFH;SG;3;PST
tüýkürmek V;SG;2;INFM;FUT
saklamak V;FRML;COND+INTEN;SG;2;PST
saklamak V;PROG;SG;3;PRS
saklamak V;INTEN;SG;1;PST
saklamak V;COND+INTEN;SG;3;PST
saklamak V;FRML;SG;2;PST
saklamak V;INTEN;PL;3;PST
saklamak V;COND;SG;1
saklamak V;SG;2;INFM;FUT
saklamak V;PROG;SG;1;PRS
saklamak V;PRF;FRML;SG;2;PST
saklamak V;PRF;PL;1;PST
saklamak V;PL;3;PST
saklamak V;NFH;SG;3;PST
saklamak V;COND;SG;2
saklamak V;COND+INTEN;PL;3;PST
saklamak V;SG;1;PST
saklamak V;FRML;SG;2;FUT
saklamak V;PROG;PL;3;PRS
saklamak V;PROG;PL;1;PRS
saklamak V;PL;1;PST
saklamak V;IMP;SG;2;INFM
saklamak V;COND+INTEN;SG;1;PST
saklamak V;INTEN;SG;3;PST
saklamak V;SG;3;PST
saklamak V;PRF;SG;2;INFM;PST
saklamak V;NFH;PL;3;PST
saklamak V;FRML;NFH;SG;2;PST
saklamak V;FRML;COND;SG;2
saklamak V;INTEN;PL;1;PST
saklamak V;SG;2;INFM;PST
saklamak V;PRF;SG;1;PST
saklamak V;PL;1;FUT
saklamak V;COND+INTEN;SG;2;PST
saklamak V;PROG;FRML;SG;2;PRS
saklamak V;NFH;PL;1;PST
saklamak V;COND;PL;1
saklamak V;FRML;IMP;SG;2
saklamak V;PRF;SG;3;PST
saklamak V;NFH;SG;2;PST
saklamak V;INTEN;SG;2;PST
saklamak V;NFH;SG;1;PST
saklamak V;SG;3;FUT
saklamak V;COND;PL;3
saklamak V;PRF;PL;3;PST
saklamak V;COND;SG;3
saklamak V;SG;1;FUT
saklamak V;COND+INTEN;PL;1;PST
saklamak V;PL;3;PST
saklamak V;IMP;PL;2;INFM
saklamak V;PROG;SG;2;PRS
saklamak V;SG;1;PST
saklamak V;FRML;INTEN;SG;2;PST
saklamak V;FRML;IMP;PL;2
saklamak V;PL;1;PST
saklamak V;SG;2;INFM;PST
saklamak V;PL;3;FUT
saklamak V;SG;3;PST
bejermek V;SG;2;INFM;FUT
bejermek V;COND+INTEN;PL;3;PST
bejermek V;PL;1;FUT
bejermek V;COND;SG;2
bejermek V;COND;SG;1
bejermek V;PRF;SG;1;PST
bejermek V;FRML;SG;2;PST
bejermek V;SG;2;INFM;PST
bejermek V;PROG;SG;2;PRS
bejermek V;PL;3;PST
bejermek V;PROG;SG;3;PRS
bejermek V;COND;SG;3
bejermek V;NFH;PL;3;PST
bejermek V;COND+INTEN;SG;1;PST
bejermek V;NFH;PL;1;PST
bejermek V;IMP;SG;2;INFM
bejermek V;COND+INTEN;SG;3;PST
bejermek V;INTEN;PL;3;PST
bejermek V;SG;3;PST
bejermek V;FRML;COND+INTEN;SG;2;PST
bejermek V;COND;PL;1
bejermek V;COND;PL;3
bejermek V;NFH;SG;1;PST
bejermek V;PRF;SG;3;PST
bejermek V;PROG;FRML;SG;2;PRS
bejermek V;FRML;SG;2;FUT
bejermek V;PRF;FRML;SG;2;PST
bejermek V;PRF;PL;1;PST
bejermek V;SG;1;PST
bejermek V;PL;1;PST
bejermek V;INTEN;SG;2;PST
bejermek V;INTEN;PL;1;PST
bejermek V;FRML;NFH;SG;2;PST
bejermek V;NFH;SG;3;PST
bejermek V;PRF;PL;3;PST
bejermek V;IMP;PL;2;INFM
bejermek V;FRML;INTEN;SG;2;PST
bejermek V;INTEN;SG;3;PST
bejermek V;FRML;IMP;SG;2
bejermek V;SG;3;FUT
bejermek V;PROG;PL;1;PRS
bejermek V;SG;2;INFM;PST
bejermek V;PROG;SG;1;PRS
bejermek V;SG;3;PST
bejermek V;FRML;IMP;PL;2
bejermek V;SG;1;FUT
bejermek V;FRML;COND;SG;2
bejermek V;PROG;SG;1;PRS
bejermek V;PROG;PL;3;PRS
bejermek V;PL;3;FUT
bejermek V;COND+INTEN;SG;2;PST
bejermek V;COND+INTEN;PL;1;PST
bejermek V;INTEN;SG;1;PST
bejermek V;PRF;SG;2;INFM;PST
bejermek V;NFH;SG;2;PST
bejermek V;SG;1;PST
ýuwunmak V;SG;1;FUT
ýuwunmak V;IMP;SG;2;INFM
ýuwunmak V;SG;2;INFM;FUT
ýuwunmak V;COND+INTEN;SG;1;PST
ýuwunmak V;PRF;FRML;SG;2;PST
ýuwunmak V;COND;SG;3
ýuwunmak V;PRF;PL;1;PST
ýuwunmak V;PL;3;PST
ýuwunmak V;PL;3;FUT
ýuwunmak V;FRML;INTEN;SG;2;PST
ýuwunmak V;FRML;COND;SG;2
ýuwunmak V;PL;1;FUT
ýuwunmak V;INTEN;SG;1;PST
ýuwunmak V;FRML;IMP;SG;2
ýuwunmak V;PROG;SG;1;PRS
ýuwunmak V;NFH;PL;3;PST
ýuwunmak V;PROG;PL;1;PRS
ýuwunmak V;PL;1;PST
ýuwunmak V;SG;3;FUT
ýuwunmak V;SG;2;INFM;PST
ýuwunmak V;COND+INTEN;PL;3;PST
ýuwunmak V;PRF;SG;1;PST
ýuwunmak V;COND;PL;3
ýuwunmak V;PROG;SG;3;PRS
ýuwunmak V;PRF;SG;3;PST
ýuwunmak V;PROG;PL;3;PRS
ýuwunmak V;PROG;SG;2;PRS
ýuwunmak V;COND;PL;1
ýuwunmak V;NFH;SG;1;PST
ýuwunmak V;SG;3;PST
ýuwunmak V;NFH;PL;1;PST
ýuwunmak V;FRML;NFH;SG;2;PST
ýuwunmak V;INTEN;SG;2;PST
ýuwunmak V;NFH;SG;2;PST
ýuwunmak V;NFH;SG;3;PST
ýuwunmak V;INTEN;SG;3;PST
ýuwunmak V;FRML;SG;2;FUT
ýuwunmak V;COND;SG;1
ýuwunmak V;PROG;SG;1;PRS
ýuwunmak V;SG;2;INFM;PST
ýuwunmak V;INTEN;PL;3;PST
ýuwunmak V;COND;SG;2
ýuwunmak V;SG;1;PST
ýuwunmak V;COND+INTEN;SG;3;PST
ýuwunmak V;FRML;COND+INTEN;SG;2;PST
ýuwunmak V;IMP;PL;2;INFM
ýuwunmak V;PL;1;PST
ýuwunmak V;PRF;SG;2;INFM;PST
ýuwunmak V;SG;3;PST
ýuwunmak V;PROG;FRML;SG;2;PRS
ýuwunmak V;FRML;IMP;PL;2
ýuwunmak V;PRF;PL;3;PST
ýuwunmak V;COND+INTEN;SG;2;PST
ýuwunmak V;COND+INTEN;PL;1;PST
ýuwunmak V;INTEN;PL;1;PST
ýuwunmak V;FRML;SG;2;PST
boýun egmek V;COND+INTEN;SG;2;PST
boýun egmek V;SG;3;PST
boýun egmek V;INTEN;SG;2;PST
boýun egmek V;COND;SG;3
boýun egmek V;PL;1;PST
boýun egmek V;PRF;FRML;SG;2;PST
boýun egmek V;NFH;PL;3;PST
boýun egmek V;COND+INTEN;PL;1;PST
boýun egmek V;FRML;COND;SG;2
boýun egmek V;SG;2;INFM;PST
boýun egmek V;SG;1;FUT
boýun egmek V;FRML;NFH;SG;2;PST
boýun egmek V;NFH;PL;1;PST
boýun egmek V;PL;3;FUT
boýun egmek V;PL;1;FUT
boýun egmek V;INTEN;PL;1;PST
boýun egmek V;COND;SG;2
boýun egmek V;FRML;IMP;SG;2
boýun egmek V;PRF;SG;2;INFM;PST
boýun egmek V;FRML;COND+INTEN;SG;2;PST
boýun egmek V;COND;PL;3
boýun egmek V;NFH;SG;1;PST
boýun egmek V;PROG;SG;1;PRS
boýun egmek V;SG;1;PST
boýun egmek V;NFH;SG;3;PST
boýun egmek V;COND+INTEN;SG;3;PST
boýun egmek V;PROG;SG;2;PRS
boýun egmek V;PRF;PL;1;PST
boýun egmek V;PROG;PL;3;PRS
boýun egmek V;COND;PL;1
boýun egmek V;NFH;SG;2;PST
boýun egmek V;FRML;SG;2;FUT
boýun egmek V;INTEN;SG;3;PST
boýun egmek V;PROG;FRML;SG;2;PRS
boýun egmek V;SG;3;FUT
boýun egmek V;COND+INTEN;PL;3;PST
boýun egmek V;SG;2;INFM;FUT
boýun egmek V;FRML;INTEN;SG;2;PST
boýun egmek V;COND;SG;1
boýun egmek V;PL;3;PST
boýun egmek V;INTEN;PL;3;PST
boýun egmek V;IMP;PL;2;INFM
boýun egmek V;IMP;SG;2;INFM
boýun egmek V;COND+INTEN;SG;1;PST
boýun egmek V;INTEN;SG;1;PST
boýun egmek V;PROG;SG;3;PRS
boýun egmek V;PROG;PL;1;PRS
boýun egmek V;PL;3;PST
boýun egmek V;FRML;SG;2;PST
boýun egmek V;PRF;PL;3;PST
boýun egmek V;FRML;IMP;PL;2
boýun egmek V;SG;1;PST
boýun egmek V;PRF;SG;3;PST
boýun egmek V;PRF;SG;1;PST
basyp almak V;FRML;IMP;PL;2
basyp almak V;PROG;FRML;SG;2;PRS
basyp almak V;SG;3;FUT
basyp almak V;PROG;PL;1;PRS
basyp almak V;COND;PL;3
basyp almak V;COND;SG;3
basyp almak V;SG;2;INFM;PST
basyp almak V;COND;SG;2
basyp almak V;FRML;NFH;SG;2;PST
basyp almak V;COND+INTEN;PL;3;PST
basyp almak V;SG;1;PST
basyp almak V;NFH;SG;1;PST
basyp almak V;INTEN;PL;1;PST
basyp almak V;FRML;COND;SG;2
basyp almak V;NFH;PL;1;PST
basyp almak V;PROG;SG;1;PRS
basyp almak V;COND+INTEN;SG;1;PST
basyp almak V;FRML;IMP;SG;2
basyp almak V;PRF;FRML;SG;2;PST
basyp almak V;PROG;SG;3;PRS
basyp almak V;INTEN;SG;3;PST
basyp almak V;PRF;SG;1;PST
basyp almak V;PL;1;PST
basyp almak V;COND+INTEN;PL;1;PST
basyp almak V;IMP;SG;2;INFM
basyp almak V;SG;1;FUT
basyp almak V;PL;1;FUT
basyp almak V;NFH;SG;3;PST
basyp almak V;PL;3;FUT
basyp almak V;NFH;SG;2;PST
basyp almak V;SG;3;PST
basyp almak V;PRF;SG;2;INFM;PST
basyp almak V;PROG;PL;3;PRS
basyp almak V;IMP;PL;2;INFM
basyp almak V;PRF;PL;1;PST
basyp almak V;PL;3;PST
basyp almak V;INTEN;SG;2;PST
basyp almak V;COND+INTEN;SG;2;PST
basyp almak V;NFH;PL;3;PST
basyp almak V;INTEN;PL;3;PST
basyp almak V;PROG;SG;2;PRS
basyp almak V;PRF;PL;3;PST
basyp almak V;PL;3;PST
basyp almak V;COND;SG;1
basyp almak V;SG;3;PST
basyp almak V;SG;1;PST
basyp almak V;SG;2;INFM;FUT
basyp almak V;FRML;SG;2;FUT
basyp almak V;FRML;INTEN;SG;2;PST
basyp almak V;FRML;SG;2;PST
basyp almak V;INTEN;SG;1;PST
basyp almak V;PRF;SG;3;PST
basyp almak V;COND;PL;1
basyp almak V;COND+INTEN;SG;3;PST
basyp almak V;FRML;COND+INTEN;SG;2;PST
gowulamak V;NFH;SG;2;PST
gowulamak V;PROG;SG;2;PRS
gowulamak V;PRF;SG;1;PST
gowulamak V;INTEN;SG;1;PST
gowulamak V;PRF;FRML;SG;2;PST
gowulamak V;NFH;PL;3;PST
gowulamak V;PL;1;PST
gowulamak V;SG;1;PST
gowulamak V;FRML;NFH;SG;2;PST
gowulamak V;FRML;SG;2;PST
gowulamak V;PRF;SG;2;INFM;PST
gowulamak V;PL;1;FUT
gowulamak V;PROG;SG;1;PRS
gowulamak V;PROG;PL;3;PRS
gowulamak V;SG;2;INFM;PST
gowulamak V;SG;2;INFM;FUT
gowulamak V;SG;3;FUT
gowulamak V;PRF;PL;1;PST
gowulamak V;NFH;PL;1;PST
gowulamak V;NFH;SG;3;PST
gowulamak V;SG;3;PST
gowulamak V;COND;PL;3
gowulamak V;PROG;PL;1;PRS
gowulamak V;COND+INTEN;SG;2;PST
gowulamak V;NFH;SG;1;PST
gowulamak V;IMP;PL;2;INFM
gowulamak V;COND+INTEN;SG;3;PST
gowulamak V;INTEN;PL;1;PST
gowulamak V;COND;SG;1
gowulamak V;FRML;COND+INTEN;SG;2;PST
gowulamak V;FRML;IMP;SG;2
gowulamak V;FRML;INTEN;SG;2;PST
gowulamak V;SG;1;FUT
gowulamak V;INTEN;PL;3;PST
gowulamak V;COND+INTEN;PL;1;PST
gowulamak V;PL;3;FUT
gowulamak V;COND+INTEN;PL;3;PST
gowulamak V;FRML;IMP;PL;2
gowulamak V;COND+INTEN;SG;1;PST
gowulamak V;SG;3;PST
gowulamak V;PRF;PL;3;PST
gowulamak V;INTEN;SG;2;PST
gowulamak V;INTEN;SG;3;PST
gowulamak V;COND;SG;3
gowulamak V;PL;3;PST
gowulamak V;PL;3;PST
gowulamak V;COND;SG;2
gowulamak V;SG;2;INFM;PST
gowulamak V;FRML;COND;SG;2
gowulamak V;PROG;SG;3;PRS
gowulamak V;PROG;FRML;SG;2;PRS
gowulamak V;IMP;SG;2;INFM
gowulamak V;PRF;SG;3;PST
gowulamak V;SG;1;PST
gowulamak V;FRML;SG;2;FUT
gowulamak V;COND;PL;1
tans etmek V;PRF;FRML;SG;2;PST
tans etmek V;PL;1;PST
tans etmek V;NFH;PL;1;PST
tans etmek V;PROG;PL;3;PRS
tans etmek V;PRF;PL;3;PST
tans etmek V;PRF;SG;2;INFM;PST
tans etmek V;COND;SG;1
tans etmek V;FRML;SG;2;PST
tans etmek V;PL;3;FUT
tans etmek V;COND;SG;3
tans etmek V;NFH;PL;3;PST
tans etmek V;PROG;FRML;SG;2;PRS
tans etmek V;PROG;SG;3;PRS
tans etmek V;NFH;SG;2;PST
tans etmek V;COND+INTEN;SG;1;PST
tans etmek V;COND+INTEN;SG;2;PST
tans etmek V;SG;3;FUT
tans etmek V;SG;3;PST
tans etmek V;SG;1;FUT
tans etmek V;FRML;COND;SG;2
tans etmek V;INTEN;SG;2;PST
tans etmek V;FRML;IMP;SG;2
tans etmek V;PROG;SG;1;PRS
tans etmek V;NFH;SG;3;PST
tans etmek V;IMP;SG;2;INFM
tans etmek V;INTEN;PL;3;PST
tans etmek V;NFH;SG;1;PST
tans etmek V;PROG;SG;2;PRS
tans etmek V;PRF;SG;1;PST
tans etmek V;COND+INTEN;PL;1;PST
tans etmek V;COND;SG;2
tans etmek V;FRML;INTEN;SG;2;PST
tans etmek V;SG;1;PST
tans etmek V;IMP;PL;2;INFM
tans etmek V;COND;PL;3
tans etmek V;PL;1;PST
tans etmek V;INTEN;SG;1;PST
tans etmek V;FRML;SG;2;FUT
tans etmek V;FRML;COND+INTEN;SG;2;PST
tans etmek V;PRF;PL;1;PST
tans etmek V;PRF;SG;3;PST
tans etmek V;INTEN;PL;1;PST
tans etmek V;PROG;SG;1;PRS
tans etmek V;SG;2;INFM;PST
tans etmek V;COND+INTEN;PL;3;PST
tans etmek V;COND;PL;1
tans etmek V;INTEN;SG;3;PST
tans etmek V;SG;2;INFM;FUT
tans etmek V;PL;1;FUT
tans etmek V;SG;1;PST
tans etmek V;PROG;PL;1;PRS
tans etmek V;COND+INTEN;SG;3;PST
tans etmek V;PL;3;PST
tans etmek V;FRML;NFH;SG;2;PST
tans etmek V;SG;3;PST
tans etmek V;FRML;IMP;PL;2
pikirlenmek V;SG;1;PST
pikirlenmek V;PROG;PL;3;PRS
pikirlenmek V;PROG;SG;3;PRS
pikirlenmek V;PROG;SG;2;PRS
pikirlenmek V;COND+INTEN;SG;3;PST
pikirlenmek V;COND+INTEN;PL;3;PST
pikirlenmek V;FRML;SG;2;PST
pikirlenmek V;COND+INTEN;PL;1;PST
pikirlenmek V;PRF;PL;3;PST
pikirlenmek V;FRML;COND;SG;2
pikirlenmek V;SG;3;PST
pikirlenmek V;NFH;SG;2;PST
pikirlenmek V;IMP;PL;2;INFM
pikirlenmek V;PRF;SG;1;PST
pikirlenmek V;SG;2;INFM;PST
pikirlenmek V;PRF;SG;3;PST
pikirlenmek V;INTEN;SG;1;PST
pikirlenmek V;COND;PL;1
pikirlenmek V;PRF;FRML;SG;2;PST
pikirlenmek V;COND;SG;3
pikirlenmek V;PL;1;FUT
pikirlenmek V;PL;3;FUT
pikirlenmek V;IMP;SG;2;INFM
pikirlenmek V;SG;2;INFM;FUT
pikirlenmek V;COND;PL;3
pikirlenmek V;PRF;SG;2;INFM;PST
pikirlenmek V;PROG;SG;1;PRS
pikirlenmek V;INTEN;SG;3;PST
pikirlenmek V;FRML;COND+INTEN;SG;2;PST
pikirlenmek V;COND;SG;2
pikirlenmek V;FRML;INTEN;SG;2;PST
pikirlenmek V;PL;1;PST
pikirlenmek V;FRML;SG;2;FUT
pikirlenmek V;PROG;FRML;SG;2;PRS
pikirlenmek V;NFH;SG;1;PST
pikirlenmek V;PROG;PL;1;PRS
pikirlenmek V;SG;3;FUT
pikirlenmek V;FRML;IMP;SG;2
pikirlenmek V;PRF;PL;1;PST
pikirlenmek V;COND;SG;1
pikirlenmek V;INTEN;PL;1;PST
pikirlenmek V;COND+INTEN;SG;1;PST
pikirlenmek V;COND+INTEN;SG;2;PST
pikirlenmek V;SG;2;INFM;PST
pikirlenmek V;PL;3;PST
pikirlenmek V;FRML;NFH;SG;2;PST
pikirlenmek V;INTEN;PL;3;PST
pikirlenmek V;FRML;IMP;PL;2
pikirlenmek V;SG;3;PST
pikirlenmek V;PROG;SG;1;PRS
pikirlenmek V;NFH;PL;3;PST
pikirlenmek V;SG;1;FUT
pikirlenmek V;NFH;PL;1;PST
pikirlenmek V;INTEN;SG;2;PST
pikirlenmek V;NFH;SG;3;PST
kraskalamak V;PL;3;PST
kraskalamak V;INTEN;SG;2;PST
kraskalamak V;IMP;PL;2;INFM
kraskalamak V;PL;3;FUT
kraskalamak V;PRF;PL;1;PST
kraskalamak V;SG;3;FUT
kraskalamak V;FRML;SG;2;PST
kraskalamak V;INTEN;SG;1;PST
kraskalamak V;PROG;PL;3;PRS
kraskalamak V;COND+INTEN;PL;3;PST
kraskalamak V;FRML;IMP;PL;2
kraskalamak V;COND+INTEN;SG;1;PST
kraskalamak V;NFH;PL;3;PST
kraskalamak V;FRML;SG;2;FUT
kraskalamak V;PROG;SG;1;PRS
kraskalamak V;FRML;COND+INTEN;SG;2;PST
kraskalamak V;NFH;SG;2;PST
kraskalamak V;PROG;PL;1;PRS
kraskalamak V;PROG;SG;3;PRS
kraskalamak V;SG;2;INFM;PST
kraskalamak V;PRF;PL;3;PST
kraskalamak V;PROG;SG;2;PRS
kraskalamak V;COND+INTEN;PL;1;PST
kraskalamak V;COND+INTEN;SG;3;PST
kraskalamak V;INTEN;PL;3;PST
kraskalamak V;SG;3;PST
kraskalamak V;SG;1;PST
kraskalamak V;PROG;FRML;SG;2;PRS
kraskalamak V;NFH;PL;1;PST
kraskalamak V;NFH;SG;3;PST
kraskalamak V;PRF;SG;1;PST
kraskalamak V;PRF;FRML;SG;2;PST
kraskalamak V;IMP;SG;2;INFM
kraskalamak V;FRML;INTEN;SG;2;PST
kraskalamak V;PRF;SG;2;INFM;PST
kraskalamak V;PL;1;PST
kraskalamak V;COND+INTEN;SG;2;PST
kraskalamak V;COND;SG;3
kraskalamak V;SG;1;PST
kraskalamak V;FRML;NFH;SG;2;PST
kraskalamak V;COND;PL;3
kraskalamak V;FRML;IMP;SG;2
kraskalamak V;FRML;COND;SG;2
kraskalamak V;NFH;SG;1;PST
kraskalamak V;PL;1;FUT
kraskalamak V;SG;1;PST
kraskalamak V;COND;SG;2
kraskalamak V;PL;1;PST
kraskalamak V;SG;3;PST
kraskalamak V;INTEN;PL;1;PST
kraskalamak V;PRF;SG;3;PST
kraskalamak V;COND;PL;1
kraskalamak V;INTEN;SG;3;PST
kraskalamak V;SG;2;INFM;FUT
kraskalamak V;COND;SG;1
kraskalamak V;PROG;SG;1;PRS
kraskalamak V;SG;1;FUT
ýöremek V;INTEN;SG;2;PST
ýöremek V;SG;2;INFM;FUT
ýöremek V;PROG;SG;1;PRS
ýöremek V;FRML;IMP;SG;2
ýöremek V;NFH;PL;1;PST
ýöremek V;PROG;SG;3;PRS
ýöremek V;COND+INTEN;SG;3;PST
ýöremek V;PROG;PL;1;PRS
ýöremek V;COND+INTEN;SG;2;PST
ýöremek V;FRML;INTEN;SG;2;PST
ýöremek V;PRF;SG;3;PST
ýöremek V;INTEN;PL;3;PST
ýöremek V;IMP;PL;2;INFM
ýöremek V;FRML;SG;2;FUT
ýöremek V;INTEN;PL;1;PST
ýöremek V;PRF;SG;2;INFM;PST
ýöremek V;NFH;SG;2;PST
ýöremek V;PROG;SG;2;PRS
ýöremek V;PRF;PL;1;PST
ýöremek V;SG;1;FUT
ýöremek V;NFH;SG;3;PST
ýöremek V;INTEN;SG;3;PST
ýöremek V;PL;3;PST
ýöremek V;COND;PL;3
ýöremek V;COND;PL;1
ýöremek V;PRF;FRML;SG;2;PST
ýöremek V;COND;SG;3
ýöremek V;PL;1;FUT
ýöremek V;COND;SG;2
ýöremek V;FRML;SG;2;PST
ýöremek V;PROG;FRML;SG;2;PRS
ýöremek V;SG;3;PST
ýöremek V;SG;1;PST
ýöremek V;SG;1;PST
ýöremek V;PL;1;PST
ýöremek V;SG;3;FUT
ýöremek V;PRF;SG;1;PST
ýöremek V;SG;3;PST
ýöremek V;PL;3;FUT
ýöremek V;FRML;SG;2;PST
ýöremek V;IMP;SG;2;INFM
ýöremek V;COND+INTEN;PL;3;PST
ýöremek V;NFH;SG;1;PST
ýöremek V;FRML;IMP;PL;2
ýöremek V;PL;3;PST
ýöremek V;INTEN;SG;1;PST
ýöremek V;PROG;PL;3;PRS
ýöremek V;FRML;COND;SG;2
ýöremek V;FRML;NFH;SG;2;PST
ýöremek V;COND+INTEN;PL;1;PST
ýöremek V;COND;SG;1
ýöremek V;NFH;PL;3;PST
ýöremek V;FRML;COND+INTEN;SG;2;PST
ýöremek V;PL;1;PST
ýöremek V;SG;2;INFM;PST
ýöremek V;COND+INTEN;SG;1;PST
ýöremek V;PRF;PL;3;PST
ölmek V;INTEN;PL;1;PST
ölmek V;SG;3;FUT
ölmek V;COND+INTEN;SG;2;PST
ölmek V;INTEN;SG;2;PST
ölmek V;INTEN;SG;3;PST
ölmek V;FRML;IMP;PL;2
ölmek V;COND;SG;2
ölmek V;PROG;SG;1;PRS
ölmek V;PRF;SG;3;PST
ölmek V;PL;3;FUT
ölmek V;SG;1;FUT
ölmek V;INTEN;PL;3;PST
ölmek V;SG;2;INFM;PST
ölmek V;PRF;PL;1;PST
ölmek V;PROG;PL;1;PRS
ölmek V;PL;3;PST
ölmek V;NFH;PL;3;PST
ölmek V;COND;SG;3
ölmek V;PRF;PL;3;PST
ölmek V;PRF;SG;2;INFM;PST
ölmek V;PL;1;PST
ölmek V;COND;SG;1
ölmek V;COND;PL;3
ölmek V;PROG;PL;3;PRS
ölmek V;SG;1;PST
ölmek V;FRML;SG;2;FUT
ölmek V;FRML;IMP;SG;2
ölmek V;INTEN;SG;1;PST
ölmek V;FRML;INTEN;SG;2;PST
ölmek V;COND+INTEN;SG;1;PST
ölmek V;IMP;SG;2;INFM
ölmek V;FRML;SG;2;PST
ölmek V;FRML;COND;SG;2
ölmek V;COND+INTEN;PL;3;PST
ölmek V;FRML;NFH;SG;2;PST
ölmek V;SG;3;PST
ölmek V;SG;1;PST
ölmek V;FRML;COND+INTEN;SG;2;PST
ölmek V;SG;3;PST
ölmek V;COND+INTEN;SG;3;PST
ölmek V;NFH;SG;3;PST
ölmek V;PRF;FRML;SG;2;PST
ölmek V;PL;1;FUT
ölmek V;PROG;SG;3;PRS
ölmek V;NFH;SG;2;PST
ölmek V;SG;2;INFM;FUT
ölmek V;COND;PL;1
ölmek V;IMP;PL;2;INFM
ölmek V;NFH;SG;1;PST
ölmek V;PRF;SG;1;PST
ölmek V;PROG;FRML;SG;2;PRS
ölmek V;FRML;SG;2;PST
ölmek V;NFH;PL;1;PST
ölmek V;PROG;SG;2;PRS
ölmek V;COND+INTEN;PL;1;PST
datmak V;FRML;NFH;SG;2;PST
datmak V;PL;1;PST
datmak V;COND+INTEN;SG;2;PST
datmak V;FRML;IMP;SG;2
datmak V;PRF;SG;3;PST
datmak V;SG;2;INFM;FUT
datmak V;FRML;SG;2;PST
datmak V;FRML;IMP;PL;2
datmak V;NFH;SG;1;PST
datmak V;PROG;SG;2;PRS
datmak V;NFH;SG;3;PST
datmak V;INTEN;PL;3;PST
datmak V;PRF;PL;3;PST
datmak V;COND+INTEN;SG;1;PST
datmak V;PL;3;FUT
datmak V;FRML;SG;2;FUT
datmak V;PL;3;PST
datmak V;FRML;COND;SG;2
datmak V;PROG;SG;1;PRS
datmak V;SG;2;INFM;PST
datmak V;SG;1;PST
datmak V;PRF;PL;1;PST
datmak V;PRF;FRML;SG;2;PST
datmak V;FRML;INTEN;SG;2;PST
datmak V;INTEN;PL;1;PST
datmak V;COND;SG;1
datmak V;SG;3;PST
datmak V;PRF;SG;1;PST
datmak V;NFH;SG;2;PST
datmak V;PROG;FRML;SG;2;PRS
datmak V;PROG;SG;3;PRS
datmak V;COND+INTEN;PL;1;PST
datmak V;PROG;PL;3;PRS
datmak V;COND;SG;3
datmak V;COND;SG;2
datmak V;INTEN;SG;3;PST
datmak V;NFH;PL;3;PST
datmak V;PL;1;FUT
datmak V;COND+INTEN;SG;3;PST
datmak V;SG;3;FUT
datmak V;NFH;PL;1;PST
datmak V;COND;PL;3
datmak V;INTEN;SG;1;PST
datmak V;SG;3;PST
datmak V;FRML;SG;2;PST
datmak V;PROG;SG;1;PRS
datmak V;IMP;SG;2;INFM
datmak V;INTEN;SG;2;PST
datmak V;PRF;SG;2;INFM;PST
datmak V;COND+INTEN;PL;3;PST
datmak V;FRML;COND+INTEN;SG;2;PST
datmak V;COND;PL;1
datmak V;SG;1;FUT
datmak V;PROG;PL;1;PRS
datmak V;IMP;PL;2;INFM
datmak V;SG;2;INFM;PST
çatmak V;COND;SG;2
çatmak V;SG;3;FUT
çatmak V;PRF;FRML;SG;2;PST
çatmak V;COND+INTEN;SG;1;PST
çatmak V;PROG;SG;1;PRS
çatmak V;FRML;SG;2;PST
çatmak V;SG;2;INFM;PST
çatmak V;COND+INTEN;PL;1;PST
çatmak V;SG;1;PST
çatmak V;COND+INTEN;SG;3;PST
çatmak V;NFH;PL;1;PST
çatmak V;FRML;SG;2;FUT
çatmak V;PRF;SG;2;INFM;PST
çatmak V;INTEN;PL;3;PST
çatmak V;PROG;PL;1;PRS
çatmak V;COND;SG;3
çatmak V;NFH;SG;3;PST
çatmak V;PL;1;PST
çatmak V;PRF;PL;3;PST
çatmak V;INTEN;SG;3;PST
çatmak V;PL;3;FUT
çatmak V;SG;3;PST
çatmak V;PROG;FRML;SG;2;PRS
çatmak V;FRML;COND;SG;2
çatmak V;PL;3;PST
çatmak V;COND;PL;1
çatmak V;COND+INTEN;SG;2;PST
çatmak V;INTEN;PL;1;PST
çatmak V;NFH;PL;3;PST
çatmak V;COND+INTEN;PL;3;PST
çatmak V;PL;1;FUT
çatmak V;IMP;SG;2;INFM
çatmak V;PRF;SG;3;PST
çatmak V;PROG;PL;3;PRS
çatmak V;FRML;INTEN;SG;2;PST
çatmak V;SG;1;FUT
çatmak V;IMP;PL;2;INFM
çatmak V;FRML;IMP;SG;2
çatmak V;PROG;SG;2;PRS
çatmak V;COND;SG;1
çatmak V;PROG;SG;3;PRS
çatmak V;INTEN;SG;2;PST
çatmak V;SG;2;INFM;FUT
çatmak V;PROG;SG;1;PRS
çatmak V;PL;3;PST
çatmak V;SG;3;PST
çatmak V;FRML;IMP;PL;2
çatmak V;COND;PL;3
çatmak V;PRF;SG;1;PST
çatmak V;FRML;COND+INTEN;SG;2;PST
çatmak V;PRF;PL;1;PST
çatmak V;FRML;NFH;SG;2;PST
çatmak V;NFH;SG;2;PST
çatmak V;INTEN;SG;1;PST
çatmak V;SG;1;PST
çatmak V;NFH;SG;1;PST
ýaşmak V;SG;2;INFM;PST
ýaşmak V;PRF;SG;3;PST
ýaşmak V;PL;1;FUT
ýaşmak V;FRML;IMP;PL;2
ýaşmak V;IMP;PL;2;INFM
ýaşmak V;INTEN;PL;1;PST
ýaşmak V;SG;1;FUT
ýaşmak V;SG;3;FUT
ýaşmak V;COND+INTEN;PL;1;PST
ýaşmak V;SG;3;PST
ýaşmak V;PL;3;PST
ýaşmak V;COND;PL;3
ýaşmak V;SG;1;PST
ýaşmak V;COND;SG;2
ýaşmak V;PL;1;PST
ýaşmak V;PRF;PL;3;PST
ýaşmak V;PROG;SG;3;PRS
ýaşmak V;NFH;SG;3;PST
ýaşmak V;FRML;NFH;SG;2;PST
ýaşmak V;NFH;SG;2;PST
ýaşmak V;COND+INTEN;SG;2;PST
ýaşmak V;NFH;SG;1;PST
ýaşmak V;PROG;FRML;SG;2;PRS
ýaşmak V;COND+INTEN;PL;3;PST
ýaşmak V;FRML;IMP;SG;2
ýaşmak V;FRML;SG;2;FUT
ýaşmak V;COND;SG;1
ýaşmak V;IMP;SG;2;INFM
ýaşmak V;PROG;SG;1;PRS
ýaşmak V;SG;2;INFM;FUT
ýaşmak V;INTEN;SG;3;PST
ýaşmak V;PRF;SG;2;INFM;PST
ýaşmak V;PRF;PL;1;PST
ýaşmak V;COND+INTEN;SG;3;PST
ýaşmak V;INTEN;SG;1;PST
ýaşmak V;COND;PL;1
ýaşmak V;FRML;SG;2;PST
ýaşmak V;NFH;PL;3;PST
ýaşmak V;PRF;FRML;SG;2;PST
ýaşmak V;PRF;SG;1;PST
ýaşmak V;PROG;PL;3;PRS
ýaşmak V;PROG;SG;2;PRS
ýaşmak V;INTEN;SG;2;PST
ýaşmak V;INTEN;PL;3;PST
ýaşmak V;FRML;INTEN;SG;2;PST
ýaşmak V;PROG;PL;1;PRS
ýaşmak V;COND;SG;3
ýaşmak V;PL;3;FUT
ýaşmak V;FRML;COND+INTEN;SG;2;PST
ýaşmak V;FRML;SG;2;PST
ýaşmak V;COND+INTEN;SG;1;PST
ýaşmak V;NFH;PL;1;PST
ýaşmak V;FRML;COND;SG;2
süýşmek V;COND+INTEN;SG;1;PST
süýşmek V;SG;2;INFM;PST
süýşmek V;PRF;SG;3;PST
süýşmek V;PL;1;PST
süýşmek V;FRML;IMP;SG;2
süýşmek V;SG;1;PST
süýşmek V;SG;3;FUT
süýşmek V;PRF;SG;2;INFM;PST
süýşmek V;NFH;PL;1;PST
süýşmek V;COND;PL;3
süýşmek V;COND+INTEN;PL;1;PST
süýşmek V;PRF;FRML;SG;2;PST
süýşmek V;COND;PL;1
süýşmek V;PROG;SG;1;PRS
süýşmek V;PL;3;FUT
süýşmek V;FRML;INTEN;SG;2;PST
süýşmek V;FRML;SG;2;FUT
süýşmek V;PRF;PL;3;PST
süýşmek V;FRML;COND;SG;2
süýşmek V;FRML;SG;2;PST
süýşmek V;SG;3;PST
süýşmek V;INTEN;SG;2;PST
süýşmek V;PL;1;FUT
süýşmek V;PL;3;PST
süýşmek V;COND+INTEN;SG;2;PST
süýşmek V;INTEN;PL;3;PST
süýşmek V;FRML;NFH;SG;2;PST
süýşmek V;PROG;PL;3;PRS
süýşmek V;COND;SG;2
süýşmek V;COND;SG;3
süýşmek V;SG;1;FUT
süýşmek V;INTEN;PL;1;PST
süýşmek V;FRML;COND+INTEN;SG;2;PST
süýşmek V;NFH;SG;2;PST
süýşmek V;COND+INTEN;SG;3;PST
süýşmek V;PROG;FRML;SG;2;PRS
süýşmek V;PRF;SG;1;PST
süýşmek V;COND+INTEN;PL;3;PST
süýşmek V;PROG;SG;3;PRS
süýşmek V;NFH;PL;3;PST
süýşmek V;SG;2;INFM;FUT
süýşmek V;PROG;SG;2;PRS
süýşmek V;INTEN;SG;3;PST
süýşmek V;IMP;PL;2;INFM
süýşmek V;IMP;SG;2;INFM
süýşmek V;INTEN;SG;1;PST
süýşmek V;FRML;IMP;PL;2
süýşmek V;PROG;PL;1;PRS
süýşmek V;PRF;PL;1;PST
süýşmek V;NFH;SG;3;PST
süýşmek V;NFH;SG;1;PST
süýşmek V;COND;SG;1
süýşmek V;SG;1;PST
ýüregine düşmek V;PL;3;FUT
ýüregine düşmek V;SG;3;PST
ýüregine düşmek V;SG;1;PST
ýüregine düşmek V;PRF;SG;3;PST
ýüregine düşmek V;INTEN;SG;2;PST
ýüregine düşmek V;FRML;SG;2;PST
ýüregine düşmek V;FRML;SG;2;FUT
ýüregine düşmek V;FRML;INTEN;SG;2;PST
ýüregine düşmek V;PROG;PL;1;PRS
ýüregine düşmek V;INTEN;SG;3;PST
ýüregine düşmek V;SG;1;FUT
ýüregine düşmek V;COND;PL;1
ýüregine düşmek V;IMP;SG;2;INFM
ýüregine düşmek V;NFH;PL;3;PST
ýüregine düşmek V;PROG;SG;2;PRS
ýüregine düşmek V;COND;SG;1
ýüregine düşmek V;PRF;FRML;SG;2;PST
ýüregine düşmek V;COND;PL;3
ýüregine düşmek V;COND;SG;3
ýüregine düşmek V;NFH;SG;3;PST
ýüregine düşmek V;NFH;PL;1;PST
ýüregine düşmek V;PL;1;PST
ýüregine düşmek V;COND+INTEN;SG;2;PST
ýüregine düşmek V;COND+INTEN;PL;3;PST
ýüregine düşmek V;PROG;SG;3;PRS
ýüregine düşmek V;SG;2;INFM;PST
ýüregine düşmek V;PROG;PL;3;PRS
ýüregine düşmek V;FRML;IMP;SG;2
ýüregine düşmek V;COND+INTEN;PL;1;PST
ýüregine düşmek V;FRML;COND;SG;2
ýüregine düşmek V;FRML;COND+INTEN;SG;2;PST
ýüregine düşmek V;PROG;SG;1;PRS
ýüregine düşmek V;PRF;PL;1;PST
ýüregine düşmek V;SG;2;INFM;FUT
ýüregine düşmek V;INTEN;PL;1;PST
ýüregine düşmek V;PL;1;FUT
ýüregine düşmek V;NFH;SG;2;PST
ýüregine düşmek V;FRML;NFH;SG;2;PST
ýüregine düşmek V;PRF;SG;1;PST
ýüregine düşmek V;FRML;IMP;PL;2
ýüregine düşmek V;PRF;PL;3;PST
ýüregine düşmek V;PROG;SG;1;PRS
ýüregine düşmek V;PROG;FRML;SG;2;PRS
ýüregine düşmek V;COND+INTEN;SG;1;PST
ýüregine düşmek V;SG;3;FUT
ýüregine düşmek V;SG;1;PST
ýüregine düşmek V;COND;SG;2
ýüregine düşmek V;PRF;SG;2;INFM;PST
ýüregine düşmek V;COND+INTEN;SG;3;PST
ýüregine düşmek V;PL;3;PST
ýüregine düşmek V;SG;1;PST
ýüregine düşmek V;NFH;SG;1;PST
ýüregine düşmek V;INTEN;SG;1;PST
ýüregine düşmek V;IMP;PL;2;INFM
ýüregine düşmek V;INTEN;PL;3;PST
ýazmak V;PRF;PL;1;PST
ýazmak V;PROG;SG;1;PRS
ýazmak V;PROG;PL;1;PRS
ýazmak V;PRF;PL;3;PST
ýazmak V;INTEN;SG;3;PST
ýazmak V;COND+INTEN;PL;1;PST
ýazmak V;PL;1;PST
ýazmak V;NFH;SG;2;PST
ýazmak V;PROG;SG;3;PRS
ýazmak V;SG;3;FUT
ýazmak V;NFH;PL;3;PST
ýazmak V;SG;1;PST
ýazmak V;NFH;PL;1;PST
ýazmak V;SG;2;INFM;PST
ýazmak V;COND;PL;1
ýazmak V;NFH;SG;1;PST
ýazmak V;PL;3;FUT
ýazmak V;INTEN;SG;2;PST
ýazmak V;COND+INTEN;PL;3;PST
ýazmak V;PL;3;PST
ýazmak V;COND+INTEN;SG;3;PST
ýazmak V;INTEN;SG;1;PST
ýazmak V;SG;2;INFM;FUT
ýazmak V;FRML;SG;2;FUT
ýazmak V;FRML;SG;2;PST
ýazmak V;FRML;COND;SG;2
ýazmak V;PROG;PL;3;PRS
ýazmak V;PROG;FRML;SG;2;PRS
ýazmak V;PL;1;FUT
ýazmak V;IMP;PL;2;INFM
ýazmak V;COND;SG;1
ýazmak V;COND+INTEN;SG;2;PST
ýazmak V;COND+INTEN;SG;1;PST
ýazmak V;FRML;COND+INTEN;SG;2;PST
ýazmak V;FRML;INTEN;SG;2;PST
ýazmak V;INTEN;PL;1;PST
ýazmak V;PRF;SG;1;PST
ýazmak V;FRML;IMP;SG;2
ýazmak V;PRF;FRML;SG;2;PST
ýazmak V;PRF;SG;3;PST
ýazmak V;PL;1;PST
ýazmak V;FRML;IMP;PL;2
ýazmak V;SG;3;PST
ýazmak V;SG;1;FUT
ýazmak V;IMP;SG;2;INFM
ýazmak V;COND;PL;3
ýazmak V;SG;3;PST
ýazmak V;FRML;NFH;SG;2;PST
ýazmak V;PL;3;PST
ýazmak V;PROG;SG;2;PRS
ýazmak V;COND;SG;3
ýazmak V;PRF;SG;2;INFM;PST
ýazmak V;SG;1;PST
ýazmak V;SG;2;INFM;PST
ýazmak V;NFH;SG;3;PST
ýazmak V;PROG;SG;1;PRS
ýazmak V;COND;SG;2
ýazmak V;INTEN;PL;3;PST
gitmek V;SG;1;FUT
gitmek V;PL;1;PST
gitmek V;PRF;SG;2;INFM;PST
gitmek V;SG;2;INFM;PST
gitmek V;FRML;SG;2;PST
gitmek V;PL;1;FUT
gitmek V;PL;3;PST
gitmek V;FRML;COND;SG;2
gitmek V;FRML;INTEN;SG;2;PST
gitmek V;NFH;SG;3;PST
gitmek V;FRML;IMP;PL;2
gitmek V;PROG;PL;3;PRS
gitmek V;SG;3;PST
gitmek V;FRML;COND+INTEN;SG;2;PST
gitmek V;INTEN;PL;3;PST
gitmek V;COND+INTEN;SG;1;PST
gitmek V;COND+INTEN;PL;3;PST
gitmek V;IMP;PL;2;INFM
gitmek V;NFH;SG;1;PST
gitmek V;PRF;SG;1;PST
gitmek V;NFH;SG;2;PST
gitmek V;PROG;PL;1;PRS
gitmek V;NFH;PL;1;PST
gitmek V;PROG;SG;1;PRS
gitmek V;COND;PL;3
gitmek V;SG;1;PST
gitmek V;INTEN;SG;1;PST
gitmek V;SG;2;INFM;FUT
gitmek V;IMP;SG;2;INFM
gitmek V;COND;SG;1
gitmek V;COND;SG;2
gitmek V;PROG;SG;2;PRS
gitmek V;NFH;PL;3;PST
gitmek V;PRF;FRML;SG;2;PST
gitmek V;PRF;PL;1;PST
gitmek V;INTEN;PL;1;PST
gitmek V;COND+INTEN;PL;1;PST
gitmek V;INTEN;SG;2;PST
gitmek V;COND;PL;1
gitmek V;COND;SG;3
gitmek V;PROG;FRML;SG;2;PRS
gitmek V;FRML;IMP;SG;2
gitmek V;PROG;SG;1;PRS
gitmek V;SG;3;FUT
gitmek V;FRML;NFH;SG;2;PST
gitmek V;COND+INTEN;SG;2;PST
gitmek V;PL;3;FUT
gitmek V;PROG;SG;3;PRS
gitmek V;INTEN;SG;3;PST
gitmek V;COND+INTEN;SG;3;PST
gitmek V;FRML;SG;2;PST
gitmek V;PL;1;PST
gitmek V;FRML;SG;2;FUT
gitmek V;PRF;SG;3;PST
gitmek V;PRF;PL;3;PST
gitmek V;SG;3;PST
gaýnamak V;FRML;COND;SG;2
gaýnamak V;PL;1;PST
gaýnamak V;PRF;SG;2;INFM;PST
gaýnamak V;SG;1;PST
gaýnamak V;PRF;SG;3;PST
gaýnamak V;PROG;SG;1;PRS
gaýnamak V;SG;1;FUT
gaýnamak V;FRML;NFH;SG;2;PST
gaýnamak V;COND+INTEN;SG;1;PST
gaýnamak V;FRML;IMP;SG;2
gaýnamak V;SG;2;INFM;PST
gaýnamak V;PL;3;PST
gaýnamak V;PROG;PL;3;PRS
gaýnamak V;NFH;PL;3;PST
gaýnamak V;PROG;FRML;SG;2;PRS
gaýnamak V;COND+INTEN;SG;2;PST
gaýnamak V;COND;PL;3
gaýnamak V;SG;2;INFM;FUT
gaýnamak V;PRF;SG;1;PST
gaýnamak V;COND+INTEN;PL;1;PST
gaýnamak V;COND;PL;1
gaýnamak V;PROG;PL;1;PRS
gaýnamak V;PL;1;FUT
gaýnamak V;FRML;SG;2;FUT
gaýnamak V;PRF;PL;1;PST
gaýnamak V;FRML;COND+INTEN;SG;2;PST
gaýnamak V;COND+INTEN;SG;3;PST
gaýnamak V;PROG;SG;3;PRS
gaýnamak V;SG;3;PST
gaýnamak V;INTEN;SG;1;PST
gaýnamak V;FRML;INTEN;SG;2;PST
gaýnamak V;INTEN;PL;1;PST
gaýnamak V;NFH;SG;3;PST
gaýnamak V;FRML;IMP;PL;2
gaýnamak V;PL;3;FUT
gaýnamak V;NFH;SG;1;PST
gaýnamak V;IMP;PL;2;INFM
gaýnamak V;PL;3;PST
gaýnamak V;IMP;SG;2;INFM
gaýnamak V;COND+INTEN;PL;3;PST
gaýnamak V;SG;3;FUT
gaýnamak V;PRF;FRML;SG;2;PST
gaýnamak V;NFH;SG;2;PST
gaýnamak V;FRML;SG;2;PST
gaýnamak V;SG;1;PST
gaýnamak V;SG;3;PST
gaýnamak V;PRF;PL;3;PST
gaýnamak V;FRML;SG;2;PST
gaýnamak V;PROG;SG;2;PRS
gaýnamak V;COND;SG;1
gaýnamak V;SG;2;INFM;PST
gaýnamak V;NFH;PL;1;PST
gaýnamak V;INTEN;SG;2;PST
gaýnamak V;INTEN;PL;3;PST
gaýnamak V;COND;SG;2
gaýnamak V;COND;SG;3
gaýnamak V;INTEN;SG;3;PST
gaýnamak V;PROG;SG;1;PRS
begendirmek V;FRML;IMP;PL;2
begendirmek V;PL;3;PST
begendirmek V;PROG;FRML;SG;2;PRS
begendirmek V;COND;PL;1
begendirmek V;SG;2;INFM;PST
begendirmek V;PL;1;PST
begendirmek V;SG;2;INFM;FUT
begendirmek V;INTEN;SG;1;PST
begendirmek V;INTEN;PL;3;PST
begendirmek V;NFH;SG;2;PST
begendirmek V;FRML;INTEN;SG;2;PST
begendirmek V;SG;1;FUT
begendirmek V;NFH;SG;1;PST
begendirmek V;PRF;SG;3;PST
begendirmek V;PROG;SG;1;PRS
begendirmek V;FRML;COND;SG;2
begendirmek V;PRF;PL;1;PST
begendirmek V;IMP;SG;2;INFM
begendirmek V;PL;1;FUT
begendirmek V;SG;3;PST
begendirmek V;SG;1;PST
begendirmek V;COND;PL;3
begendirmek V;NFH;PL;1;PST
begendirmek V;COND+INTEN;PL;3;PST
begendirmek V;FRML;SG;2;PST
begendirmek V;COND;SG;2
begendirmek V;INTEN;SG;3;PST
begendirmek V;FRML;SG;2;FUT
begendirmek V;COND;SG;1
begendirmek V;PROG;SG;2;PRS
begendirmek V;PROG;PL;3;PRS
begendirmek V;COND+INTEN;PL;1;PST
begendirmek V;PROG;SG;3;PRS
begendirmek V;FRML;COND+INTEN;SG;2;PST
begendirmek V;PROG;PL;1;PRS
begendirmek V;COND+INTEN;SG;3;PST
begendirmek V;INTEN;SG;2;PST
begendirmek V;SG;3;PST
begendirmek V;PL;3;FUT
begendirmek V;PRF;SG;1;PST
begendirmek V;PRF;PL;3;PST
begendirmek V;FRML;NFH;SG;2;PST
begendirmek V;FRML;SG;2;PST
begendirmek V;NFH;PL;3;PST
begendirmek V;PRF;FRML;SG;2;PST
begendirmek V;COND;SG;3
begendirmek V;SG;3;FUT
begendirmek V;NFH;SG;3;PST
begendirmek V;COND+INTEN;SG;2;PST
begendirmek V;FRML;IMP;SG;2
begendirmek V;INTEN;PL;1;PST
begendirmek V;COND+INTEN;SG;1;PST
begendirmek V;PRF;SG;2;INFM;PST
begendirmek V;IMP;PL;2;INFM
daňmak V;PL;1;PST
daňmak V;COND+INTEN;PL;3;PST
daňmak V;INTEN;SG;3;PST
daňmak V;COND+INTEN;PL;1;PST
daňmak V;FRML;SG;2;PST
daňmak V;SG;2;INFM;PST
daňmak V;NFH;SG;1;PST
daňmak V;PL;1;FUT
daňmak V;INTEN;SG;2;PST
daňmak V;SG;1;FUT
daňmak V;FRML;COND+INTEN;SG;2;PST
daňmak V;COND+INTEN;SG;2;PST
daňmak V;COND+INTEN;SG;1;PST
daňmak V;SG;2;INFM;FUT
daňmak V;PRF;PL;3;PST
daňmak V;SG;1;PST
daňmak V;SG;3;FUT
daňmak V;NFH;PL;1;PST
daňmak V;FRML;IMP;PL;2
daňmak V;COND;PL;3
daňmak V;PROG;PL;1;PRS
daňmak V;PRF;FRML;SG;2;PST
daňmak V;PROG;SG;3;PRS
daňmak V;COND;SG;2
daňmak V;NFH;SG;2;PST
daňmak V;PRF;SG;2;INFM;PST
daňmak V;FRML;NFH;SG;2;PST
daňmak V;COND;SG;1
daňmak V;NFH;PL;3;PST
daňmak V;FRML;IMP;SG;2
daňmak V;PRF;SG;1;PST
daňmak V;PROG;FRML;SG;2;PRS
daňmak V;PROG;PL;3;PRS
daňmak V;SG;3;PST
daňmak V;PROG;SG;1;PRS
daňmak V;PL;3;FUT
daňmak V;COND;SG;3
daňmak V;PL;3;PST
daňmak V;NFH;SG;3;PST
daňmak V;INTEN;PL;3;PST
daňmak V;COND;PL;1
daňmak V;INTEN;PL;1;PST
daňmak V;FRML;SG;2;FUT
daňmak V;INTEN;SG;1;PST
daňmak V;IMP;SG;2;INFM
daňmak V;PRF;PL;1;PST
daňmak V;COND+INTEN;SG;3;PST
daňmak V;FRML;COND;SG;2
daňmak V;FRML;INTEN;SG;2;PST
daňmak V;PL;3;PST
daňmak V;PRF;SG;3;PST
daňmak V;IMP;PL;2;INFM
daňmak V;SG;3;PST
daňmak V;PROG;SG;2;PRS
daňmak V;SG;1;PST
solmak V;PROG;SG;2;PRS
solmak V;COND+INTEN;SG;1;PST
solmak V;PRF;SG;3;PST
solmak V;COND+INTEN;PL;1;PST
solmak V;PRF;SG;1;PST
solmak V;FRML;INTEN;SG;2;PST
solmak V;INTEN;PL;1;PST
solmak V;SG;1;PST
solmak V;FRML;SG;2;PST
solmak V;COND;SG;1
solmak V;COND+INTEN;SG;3;PST
solmak V;FRML;IMP;SG;2
solmak V;PROG;FRML;SG;2;PRS
solmak V;PRF;PL;3;PST
solmak V;INTEN;SG;1;PST
solmak V;SG;2;INFM;PST
solmak V;FRML;NFH;SG;2;PST
solmak V;INTEN;SG;3;PST
solmak V;PRF;SG;2;INFM;PST
solmak V;NFH;PL;1;PST
solmak V;IMP;SG;2;INFM
solmak V;FRML;IMP;PL;2
solmak V;IMP;PL;2;INFM
solmak V;PL;1;FUT
solmak V;PROG;SG;1;PRS
solmak V;PL;1;PST
solmak V;COND+INTEN;SG;2;PST
solmak V;PRF;PL;1;PST
solmak V;NFH;SG;2;PST
solmak V;COND;SG;2
solmak V;FRML;COND+INTEN;SG;2;PST
solmak V;PL;3;PST
solmak V;PROG;PL;3;PRS
solmak V;INTEN;PL;3;PST
solmak V;PRF;FRML;SG;2;PST
solmak V;PROG;PL;1;PRS
solmak V;PL;3;PST
solmak V;FRML;SG;2;PST
solmak V;NFH;SG;1;PST
solmak V;FRML;SG;2;FUT
solmak V;SG;3;PST
solmak V;NFH;PL;3;PST
solmak V;PL;3;FUT
solmak V;PROG;SG;3;PRS
solmak V;COND;PL;1
solmak V;SG;1;FUT
solmak V;COND+INTEN;PL;3;PST
solmak V;SG;1;PST
solmak V;NFH;SG;3;PST
solmak V;FRML;COND;SG;2
solmak V;SG;2;INFM;FUT
solmak V;COND;PL;3
solmak V;SG;3;PST
solmak V;COND;SG;3
solmak V;SG;3;FUT
solmak V;INTEN;SG;2;PST
solmak V;PROG;SG;1;PRS
ünsüni bölmek V;PL;1;PST
ünsüni bölmek V;NFH;SG;3;PST
ünsüni bölmek V;INTEN;SG;2;PST
ünsüni bölmek V;COND+INTEN;PL;3;PST
ünsüni bölmek V;NFH;SG;2;PST
ünsüni bölmek V;COND;SG;2
ünsüni bölmek V;INTEN;PL;3;PST
ünsüni bölmek V;COND;SG;1
ünsüni bölmek V;COND;PL;3
ünsüni bölmek V;PROG;SG;2;PRS
ünsüni bölmek V;COND+INTEN;SG;3;PST
ünsüni bölmek V;SG;3;PST
ünsüni bölmek V;SG;2;INFM;PST
ünsüni bölmek V;PROG;PL;3;PRS
ünsüni bölmek V;FRML;IMP;SG;2
ünsüni bölmek V;PL;3;FUT
ünsüni bölmek V;PRF;SG;3;PST
ünsüni bölmek V;INTEN;PL;1;PST
ünsüni bölmek V;PROG;PL;1;PRS
ünsüni bölmek V;PRF;PL;1;PST
ünsüni bölmek V;COND;SG;3
ünsüni bölmek V;FRML;COND+INTEN;SG;2;PST
ünsüni bölmek V;PRF;SG;2;INFM;PST
ünsüni bölmek V;COND+INTEN;SG;2;PST
ünsüni bölmek V;IMP;SG;2;INFM
ünsüni bölmek V;FRML;SG;2;FUT
ünsüni bölmek V;PROG;FRML;SG;2;PRS
ünsüni bölmek V;FRML;INTEN;SG;2;PST
ünsüni bölmek V;SG;1;FUT
ünsüni bölmek V;PL;1;FUT
ünsüni bölmek V;PROG;SG;1;PRS
ünsüni bölmek V;SG;3;FUT
ünsüni bölmek V;PRF;FRML;SG;2;PST
ünsüni bölmek V;FRML;SG;2;PST
ünsüni bölmek V;PRF;PL;3;PST
ünsüni bölmek V;SG;1;PST
ünsüni bölmek V;INTEN;SG;1;PST
ünsüni bölmek V;COND+INTEN;PL;1;PST
ünsüni bölmek V;COND;PL;1
ünsüni bölmek V;SG;2;INFM;FUT
ünsüni bölmek V;INTEN;SG;3;PST
ünsüni bölmek V;FRML;NFH;SG;2;PST
ünsüni bölmek V;IMP;PL;2;INFM
ünsüni bölmek V;SG;1;PST
ünsüni bölmek V;FRML;SG;2;PST
ünsüni bölmek V;PRF;SG;1;PST
ünsüni bölmek V;SG;2;INFM;PST
ünsüni bölmek V;FRML;IMP;PL;2
ünsüni bölmek V;PL;3;PST
ünsüni bölmek V;FRML;COND;SG;2
ünsüni bölmek V;PROG;SG;3;PRS
ünsüni bölmek V;NFH;PL;1;PST
ünsüni bölmek V;COND+INTEN;SG;1;PST
ünsüni bölmek V;NFH;PL;3;PST
ünsüni bölmek V;SG;1;PST
ünsüni bölmek V;NFH;SG;1;PST
namaz okamak V;IMP;SG;2;INFM
namaz okamak V;FRML;SG;2;PST
namaz okamak V;COND+INTEN;SG;1;PST
namaz okamak V;SG;1;FUT
namaz okamak V;COND+INTEN;PL;3;PST
namaz okamak V;FRML;NFH;SG;2;PST
namaz okamak V;FRML;INTEN;SG;2;PST
namaz okamak V;SG;2;INFM;PST
namaz okamak V;INTEN;SG;3;PST
namaz okamak V;COND;PL;3
namaz okamak V;FRML;IMP;PL;2
namaz okamak V;PRF;FRML;SG;2;PST
namaz okamak V;FRML;COND+INTEN;SG;2;PST
namaz okamak V;SG;1;PST
namaz okamak V;SG;3;PST
namaz okamak V;INTEN;SG;1;PST
namaz okamak V;FRML;IMP;SG;2
namaz okamak V;COND+INTEN;PL;1;PST
namaz okamak V;SG;2;INFM;FUT
namaz okamak V;PL;1;PST
namaz okamak V;PL;1;FUT
namaz okamak V;COND;PL;1
namaz okamak V;NFH;SG;3;PST
namaz okamak V;PROG;SG;1;PRS
namaz okamak V;COND+INTEN;SG;2;PST
namaz okamak V;INTEN;SG;2;PST
namaz okamak V;PRF;SG;2;INFM;PST
namaz okamak V;PRF;PL;1;PST
namaz okamak V;FRML;SG;2;FUT
namaz okamak V;PL;3;PST
namaz okamak V;PROG;SG;3;PRS
namaz okamak V;PROG;FRML;SG;2;PRS
namaz okamak V;SG;3;FUT
namaz okamak V;PRF;SG;3;PST
namaz okamak V;COND;SG;3
namaz okamak V;PROG;SG;2;PRS
namaz okamak V;SG;3;PST
namaz okamak V;COND+INTEN;SG;3;PST
namaz okamak V;INTEN;PL;1;PST
namaz okamak V;FRML;SG;2;PST
namaz okamak V;PRF;SG;1;PST
namaz okamak V;COND;SG;1
namaz okamak V;NFH;PL;3;PST
namaz okamak V;PL;3;FUT
namaz okamak V;FRML;COND;SG;2
namaz okamak V;PL;1;PST
namaz okamak V;INTEN;PL;3;PST
namaz okamak V;NFH;SG;2;PST
namaz okamak V;PROG;PL;1;PRS
namaz okamak V;NFH;PL;1;PST
namaz okamak V;PRF;PL;3;PST
namaz okamak V;PROG;PL;3;PRS
namaz okamak V;SG;1;PST
namaz okamak V;COND;SG;2
namaz okamak V;IMP;PL;2;INFM
namaz okamak V;NFH;SG;1;PST
düýş görmek V;COND;PL;3
düýş görmek V;SG;1;PST
düýş görmek V;NFH;SG;1;PST
düýş görmek V;COND;PL;1
düýş görmek V;INTEN;SG;2;PST
düýş görmek V;PL;1;FUT
düýş görmek V;PROG;PL;1;PRS
düýş görmek V;COND;SG;1
düýş görmek V;IMP;SG;2;INFM
düýş görmek V;INTEN;SG;3;PST
düýş görmek V;NFH;PL;3;PST
düýş görmek V;NFH;PL;1;PST
düýş görmek V;PL;1;PST
düýş görmek V;SG;2;INFM;FUT
düýş görmek V;INTEN;PL;1;PST
düýş görmek V;FRML;SG;2;FUT
düýş görmek V;SG;3;FUT
düýş görmek V;COND+INTEN;SG;2;PST
düýş görmek V;SG;3;PST
düýş görmek V;FRML;INTEN;SG;2;PST
düýş görmek V;IMP;PL;2;INFM
düýş görmek V;INTEN;SG;1;PST
düýş görmek V;PL;3;PST
düýş görmek V;PROG;SG;2;PRS
düýş görmek V;PROG;PL;3;PRS
düýş görmek V;FRML;NFH;SG;2;PST
düýş görmek V;FRML;IMP;PL;2
düýş görmek V;COND;SG;3
düýş görmek V;COND;SG;2
düýş görmek V;NFH;SG;2;PST
düýş görmek V;PRF;PL;1;PST
düýş görmek V;FRML;SG;2;PST
düýş görmek V;NFH;SG;3;PST
düýş görmek V;PROG;SG;1;PRS
düýş görmek V;FRML;IMP;SG;2
düýş görmek V;FRML;COND;SG;2
düýş görmek V;SG;2;INFM;PST
düýş görmek V;SG;3;PST
düýş görmek V;FRML;COND+INTEN;SG;2;PST
düýş görmek V;COND+INTEN;PL;1;PST
düýş görmek V;SG;1;FUT
düýş görmek V;PRF;SG;2;INFM;PST
düýş görmek V;PRF;SG;1;PST
düýş görmek V;COND+INTEN;SG;1;PST
düýş görmek V;PL;1;PST
düýş görmek V;INTEN;PL;3;PST
düýş görmek V;COND+INTEN;SG;3;PST
düýş görmek V;PRF;SG;3;PST
düýş görmek V;COND+INTEN;PL;3;PST
düýş görmek V;PL;3;PST
düýş görmek V;PRF;FRML;SG;2;PST
düýş görmek V;PROG;FRML;SG;2;PRS
düýş görmek V;PROG;SG;3;PRS
düýş görmek V;PRF;PL;3;PST
düýş görmek V;PL;3;FUT
tanamak V;SG;3;FUT
tanamak V;PL;1;FUT
tanamak V;PRF;SG;1;PST
tanamak V;PL;1;PST
tanamak V;SG;1;PST
tanamak V;FRML;IMP;SG;2
tanamak V;PRF;FRML;SG;2;PST
tanamak V;FRML;SG;2;PST
tanamak V;INTEN;SG;3;PST
tanamak V;FRML;COND;SG;2
tanamak V;PRF;PL;3;PST
tanamak V;FRML;COND+INTEN;SG;2;PST
tanamak V;COND+INTEN;PL;3;PST
tanamak V;PROG;SG;1;PRS
tanamak V;NFH;SG;2;PST
tanamak V;INTEN;SG;1;PST
tanamak V;COND+INTEN;SG;2;PST
tanamak V;COND;SG;3
tanamak V;FRML;SG;2;FUT
tanamak V;COND+INTEN;PL;1;PST
tanamak V;PL;3;PST
tanamak V;SG;1;FUT
tanamak V;NFH;SG;1;PST
tanamak V;PRF;SG;3;PST
tanamak V;IMP;SG;2;INFM
tanamak V;INTEN;PL;1;PST
tanamak V;COND;PL;3
tanamak V;SG;2;INFM;PST
tanamak V;SG;3;PST
tanamak V;COND;PL;1
tanamak V;NFH;PL;3;PST
tanamak V;SG;2;INFM;FUT
tanamak V;INTEN;SG;2;PST
tanamak V;COND;SG;2
tanamak V;FRML;IMP;PL;2
tanamak V;FRML;NFH;SG;2;PST
tanamak V;SG;2;INFM;PST
tanamak V;PRF;PL;1;PST
tanamak V;PROG;SG;2;PRS
tanamak V;PROG;PL;3;PRS
tanamak V;INTEN;PL;3;PST
tanamak V;PRF;SG;2;INFM;PST
tanamak V;COND+INTEN;SG;3;PST
tanamak V;IMP;PL;2;INFM
tanamak V;FRML;SG;2;PST
tanamak V;COND;SG;1
tanamak V;PL;3;PST
tanamak V;COND+INTEN;SG;1;PST
tanamak V;PROG;PL;1;PRS
tanamak V;SG;3;PST
tanamak V;SG;1;PST
tanamak V;NFH;PL;1;PST
tanamak V;PL;3;FUT
tanamak V;NFH;SG;3;PST
tanamak V;PROG;SG;3;PRS
tanamak V;PROG;FRML;SG;2;PRS
tanamak V;FRML;INTEN;SG;2;PST
ugramak V;PRF;FRML;SG;2;PST
ugramak V;FRML;INTEN;SG;2;PST
ugramak V;COND;PL;1
ugramak V;SG;2;INFM;PST
ugramak V;COND+INTEN;SG;3;PST
ugramak V;PL;1;PST
ugramak V;COND;SG;3
ugramak V;INTEN;PL;1;PST
ugramak V;INTEN;PL;3;PST
ugramak V;PRF;SG;3;PST
ugramak V;NFH;PL;1;PST
ugramak V;SG;2;INFM;FUT
ugramak V;INTEN;SG;3;PST
ugramak V;COND;PL;3
ugramak V;PROG;SG;1;PRS
ugramak V;PL;3;PST
ugramak V;PROG;PL;1;PRS
ugramak V;FRML;SG;2;PST
ugramak V;COND+INTEN;SG;1;PST
ugramak V;FRML;COND+INTEN;SG;2;PST
ugramak V;NFH;PL;3;PST
ugramak V;PRF;SG;2;INFM;PST
ugramak V;PRF;SG;1;PST
ugramak V;PRF;PL;1;PST
ugramak V;PROG;SG;3;PRS
ugramak V;NFH;SG;1;PST
ugramak V;SG;3;PST
ugramak V;INTEN;SG;2;PST
ugramak V;PROG;PL;3;PRS
ugramak V;COND;SG;2
ugramak V;COND;SG;1
ugramak V;PROG;FRML;SG;2;PRS
ugramak V;IMP;PL;2;INFM
ugramak V;PL;3;FUT
ugramak V;FRML;IMP;PL;2
ugramak V;FRML;COND;SG;2
ugramak V;NFH;SG;3;PST
ugramak V;PROG;SG;1;PRS
ugramak V;SG;1;PST
ugramak V;SG;3;FUT
ugramak V;SG;1;FUT
ugramak V;PRF;PL;3;PST
ugramak V;FRML;SG;2;PST
ugramak V;PROG;SG;2;PRS
ugramak V;COND+INTEN;PL;1;PST
ugramak V;NFH;SG;2;PST
ugramak V;SG;1;PST
ugramak V;PL;1;PST
ugramak V;FRML;NFH;SG;2;PST
ugramak V;FRML;SG;2;FUT
ugramak V;SG;2;INFM;PST
ugramak V;COND+INTEN;PL;3;PST
ugramak V;INTEN;SG;1;PST
ugramak V;FRML;IMP;SG;2
ugramak V;PL;3;PST
ugramak V;PL;1;FUT
ugramak V;IMP;SG;2;INFM
ugramak V;COND+INTEN;SG;2;PST
ýanamak V;PROG;PL;1;PRS
ýanamak V;COND;SG;1
ýanamak V;PL;3;PST
ýanamak V;SG;1;PST
ýanamak V;NFH;SG;2;PST
ýanamak V;COND;PL;1
ýanamak V;PL;1;PST
ýanamak V;INTEN;SG;3;PST
ýanamak V;SG;2;INFM;PST
ýanamak V;IMP;PL;2;INFM
ýanamak V;SG;2;INFM;FUT
ýanamak V;PL;1;FUT
ýanamak V;COND+INTEN;SG;2;PST
ýanamak V;INTEN;SG;1;PST
ýanamak V;FRML;IMP;SG;2
ýanamak V;SG;1;FUT
ýanamak V;FRML;SG;2;PST
ýanamak V;PRF;SG;2;INFM;PST
ýanamak V;PRF;PL;3;PST
ýanamak V;PROG;SG;3;PRS
ýanamak V;FRML;SG;2;FUT
ýanamak V;COND+INTEN;PL;3;PST
ýanamak V;PROG;SG;1;PRS
ýanamak V;FRML;COND+INTEN;SG;2;PST
ýanamak V;NFH;SG;3;PST
ýanamak V;SG;3;PST
ýanamak V;PRF;FRML;SG;2;PST
ýanamak V;NFH;SG;1;PST
ýanamak V;NFH;PL;3;PST
ýanamak V;PROG;PL;3;PRS
ýanamak V;PRF;SG;1;PST
ýanamak V;FRML;INTEN;SG;2;PST
ýanamak V;SG;3;PST
ýanamak V;PRF;SG;3;PST
ýanamak V;COND;SG;3
ýanamak V;COND+INTEN;SG;3;PST
ýanamak V;COND;PL;3
ýanamak V;SG;1;PST
ýanamak V;IMP;SG;2;INFM
ýanamak V;COND+INTEN;PL;1;PST
ýanamak V;INTEN;PL;3;PST
ýanamak V;PROG;SG;2;PRS
ýanamak V;SG;3;FUT
ýanamak V;SG;1;PST
ýanamak V;FRML;COND;SG;2
ýanamak V;INTEN;PL;1;PST
ýanamak V;FRML;NFH;SG;2;PST
ýanamak V;FRML;IMP;PL;2
ýanamak V;PRF;PL;1;PST
ýanamak V;NFH;PL;1;PST
ýanamak V;COND;SG;2
ýanamak V;COND+INTEN;SG;1;PST
ýanamak V;PL;3;FUT
ýanamak V;SG;2;INFM;PST
ýanamak V;INTEN;SG;2;PST
ýanamak V;PROG;FRML;SG;2;PRS
gaýrat etmek V;COND;SG;1
gaýrat etmek V;FRML;IMP;PL;2
gaýrat etmek V;COND+INTEN;PL;3;PST
gaýrat etmek V;PRF;FRML;SG;2;PST
gaýrat etmek V;PROG;PL;1;PRS
gaýrat etmek V;PRF;SG;3;PST
gaýrat etmek V;PRF;SG;1;PST
gaýrat etmek V;COND;PL;3
gaýrat etmek V;PROG;FRML;SG;2;PRS
gaýrat etmek V;COND;SG;3
gaýrat etmek V;PRF;SG;2;INFM;PST
gaýrat etmek V;SG;3;PST
gaýrat etmek V;PL;3;PST
gaýrat etmek V;SG;1;PST
gaýrat etmek V;PRF;PL;3;PST
gaýrat etmek V;FRML;INTEN;SG;2;PST
gaýrat etmek V;FRML;SG;2;FUT
gaýrat etmek V;FRML;SG;2;PST
gaýrat etmek V;SG;1;FUT
gaýrat etmek V;IMP;SG;2;INFM
gaýrat etmek V;INTEN;SG;2;PST
gaýrat etmek V;COND;PL;1
gaýrat etmek V;NFH;PL;1;PST
gaýrat etmek V;PRF;PL;1;PST
gaýrat etmek V;PROG;SG;2;PRS
gaýrat etmek V;SG;2;INFM;PST
gaýrat etmek V;PL;3;FUT
gaýrat etmek V;PROG;PL;3;PRS
gaýrat etmek V;INTEN;PL;1;PST
gaýrat etmek V;COND+INTEN;SG;1;PST
gaýrat etmek V;NFH;SG;2;PST
gaýrat etmek V;NFH;SG;3;PST
gaýrat etmek V;PROG;SG;1;PRS
gaýrat etmek V;NFH;PL;3;PST
gaýrat etmek V;FRML;COND;SG;2
gaýrat etmek V;NFH;SG;1;PST
gaýrat etmek V;INTEN;SG;1;PST
gaýrat etmek V;COND+INTEN;PL;1;PST
gaýrat etmek V;SG;3;FUT
gaýrat etmek V;COND;SG;2
gaýrat etmek V;INTEN;SG;3;PST
gaýrat etmek V;PL;1;PST
gaýrat etmek V;FRML;IMP;SG;2
gaýrat etmek V;INTEN;PL;3;PST
gaýrat etmek V;COND+INTEN;SG;2;PST
gaýrat etmek V;PROG;SG;1;PRS
gaýrat etmek V;PL;1;FUT
gaýrat etmek V;SG;1;PST
gaýrat etmek V;FRML;NFH;SG;2;PST
gaýrat etmek V;PROG;SG;3;PRS
gaýrat etmek V;SG;2;INFM;FUT
gaýrat etmek V;FRML;COND+INTEN;SG;2;PST
gaýrat etmek V;PL;1;PST
gaýrat etmek V;COND+INTEN;SG;3;PST
gaýrat etmek V;IMP;PL;2;INFM
gaýrat etmek V;SG;3;PST
gök gürlemek V;PL;1;FUT
gök gürlemek V;NFH;SG;1;PST
gök gürlemek V;FRML;SG;2;PST
gök gürlemek V;COND;PL;3
gök gürlemek V;COND+INTEN;PL;1;PST
gök gürlemek V;NFH;PL;1;PST
gök gürlemek V;INTEN;PL;1;PST
gök gürlemek V;FRML;INTEN;SG;2;PST
gök gürlemek V;PROG;SG;1;PRS
gök gürlemek V;FRML;COND+INTEN;SG;2;PST
gök gürlemek V;INTEN;PL;3;PST
gök gürlemek V;SG;1;FUT
gök gürlemek V;SG;3;PST
gök gürlemek V;SG;2;INFM;FUT
gök gürlemek V;PL;3;PST
gök gürlemek V;PROG;SG;2;PRS
gök gürlemek V;PRF;PL;1;PST
gök gürlemek V;SG;1;PST
gök gürlemek V;PRF;FRML;SG;2;PST
gök gürlemek V;COND+INTEN;SG;1;PST
gök gürlemek V;COND;SG;1
gök gürlemek V;PRF;PL;3;PST
gök gürlemek V;PROG;PL;1;PRS
gök gürlemek V;FRML;SG;2;FUT
gök gürlemek V;SG;2;INFM;PST
gök gürlemek V;PL;1;PST
gök gürlemek V;FRML;NFH;SG;2;PST
gök gürlemek V;COND+INTEN;PL;3;PST
gök gürlemek V;INTEN;SG;2;PST
gök gürlemek V;COND+INTEN;SG;2;PST
gök gürlemek V;COND+INTEN;SG;3;PST
gök gürlemek V;NFH;SG;3;PST
gök gürlemek V;INTEN;SG;1;PST
gök gürlemek V;SG;3;FUT
gök gürlemek V;PL;3;FUT
gök gürlemek V;PRF;SG;2;INFM;PST
gök gürlemek V;NFH;PL;3;PST
gök gürlemek V;COND;SG;3
gök gürlemek V;SG;1;PST
gök gürlemek V;NFH;SG;2;PST
gök gürlemek V;PL;1;PST
gök gürlemek V;PROG;PL;3;PRS
gök gürlemek V;SG;3;PST
gök gürlemek V;PROG;SG;3;PRS
gök gürlemek V;PRF;SG;3;PST
gök gürlemek V;INTEN;SG;3;PST
gök gürlemek V;FRML;IMP;SG;2
gök gürlemek V;FRML;IMP;PL;2
gök gürlemek V;PRF;SG;1;PST
gök gürlemek V;IMP;SG;2;INFM
gök gürlemek V;PL;3;PST
gök gürlemek V;FRML;COND;SG;2
gök gürlemek V;COND;PL;1
gök gürlemek V;IMP;PL;2;INFM
gök gürlemek V;COND;SG;2
gök gürlemek V;PROG;FRML;SG;2;PRS
ýalamak V;PRF;FRML;SG;2;PST
ýalamak V;PL;1;FUT
ýalamak V;NFH;SG;1;PST
ýalamak V;INTEN;SG;1;PST
ýalamak V;PRF;PL;1;PST
ýalamak V;PRF;SG;3;PST
ýalamak V;PRF;SG;1;PST
ýalamak V;FRML;COND+INTEN;SG;2;PST
ýalamak V;SG;2;INFM;PST
ýalamak V;NFH;PL;1;PST
ýalamak V;SG;1;FUT
ýalamak V;SG;2;INFM;FUT
ýalamak V;FRML;NFH;SG;2;PST
ýalamak V;PL;3;PST
ýalamak V;PROG;PL;3;PRS
ýalamak V;PL;1;PST
ýalamak V;COND;PL;1
ýalamak V;PROG;SG;2;PRS
ýalamak V;SG;3;PST
ýalamak V;SG;1;PST
ýalamak V;COND+INTEN;PL;3;PST
ýalamak V;COND+INTEN;SG;3;PST
ýalamak V;COND;SG;3
ýalamak V;PROG;SG;3;PRS
ýalamak V;FRML;IMP;PL;2
ýalamak V;INTEN;PL;3;PST
ýalamak V;FRML;SG;2;FUT
ýalamak V;COND;SG;2
ýalamak V;FRML;SG;2;PST
ýalamak V;PROG;SG;1;PRS
ýalamak V;PRF;PL;3;PST
ýalamak V;INTEN;SG;3;PST
ýalamak V;IMP;SG;2;INFM
ýalamak V;INTEN;PL;1;PST
ýalamak V;COND+INTEN;SG;1;PST
ýalamak V;NFH;PL;3;PST
ýalamak V;COND+INTEN;SG;2;PST
ýalamak V;COND;PL;3
ýalamak V;SG;3;FUT
ýalamak V;FRML;IMP;SG;2
ýalamak V;FRML;INTEN;SG;2;PST
ýalamak V;FRML;COND;SG;2
ýalamak V;IMP;PL;2;INFM
ýalamak V;PL;3;FUT
ýalamak V;PROG;PL;1;PRS
ýalamak V;PRF;SG;2;INFM;PST
ýalamak V;SG;3;PST
ýalamak V;SG;2;INFM;PST
ýalamak V;PROG;SG;1;PRS
ýalamak V;COND;SG;1
ýalamak V;PL;3;PST
ýalamak V;FRML;SG;2;PST
ýalamak V;PROG;FRML;SG;2;PRS
ýalamak V;NFH;SG;3;PST
ýalamak V;NFH;SG;2;PST
ýalamak V;COND+INTEN;PL;1;PST
ýalamak V;INTEN;SG;2;PST
kämilleşdirmek V;SG;1;PST
kämilleşdirmek V;COND;PL;1
kämilleşdirmek V;COND+INTEN;PL;3;PST
kämilleşdirmek V;PRF;SG;3;PST
kämilleşdirmek V;IMP;SG;2;INFM
kämilleşdirmek V;FRML;IMP;SG;2
kämilleşdirmek V;PROG;PL;1;PRS
kämilleşdirmek V;PL;1;PST
kämilleşdirmek V;FRML;SG;2;FUT
kämilleşdirmek V;FRML;COND;SG;2
kämilleşdirmek V;PL;3;FUT
kämilleşdirmek V;FRML;INTEN;SG;2;PST
kämilleşdirmek V;COND+INTEN;SG;1;PST
kämilleşdirmek V;PROG;PL;3;PRS
kämilleşdirmek V;INTEN;SG;3;PST
kämilleşdirmek V;PRF;FRML;SG;2;PST
kämilleşdirmek V;SG;2;INFM;PST
kämilleşdirmek V;INTEN;PL;3;PST
kämilleşdirmek V;NFH;SG;3;PST
kämilleşdirmek V;SG;3;FUT
kämilleşdirmek V;FRML;SG;2;PST
kämilleşdirmek V;PRF;PL;3;PST
kämilleşdirmek V;PRF;PL;1;PST
kämilleşdirmek V;FRML;NFH;SG;2;PST
kämilleşdirmek V;COND+INTEN;PL;1;PST
kämilleşdirmek V;COND;SG;3
kämilleşdirmek V;PROG;SG;2;PRS
kämilleşdirmek V;FRML;IMP;PL;2
kämilleşdirmek V;INTEN;SG;1;PST
kämilleşdirmek V;NFH;PL;1;PST
kämilleşdirmek V;PROG;FRML;SG;2;PRS
kämilleşdirmek V;INTEN;SG;2;PST
kämilleşdirmek V;IMP;PL;2;INFM
kämilleşdirmek V;SG;3;PST
kämilleşdirmek V;SG;1;FUT
kämilleşdirmek V;PL;3;PST
kämilleşdirmek V;PRF;SG;1;PST
kämilleşdirmek V;COND;PL;3
kämilleşdirmek V;COND;SG;1
kämilleşdirmek V;PL;1;FUT
kämilleşdirmek V;PRF;SG;2;INFM;PST
kämilleşdirmek V;PROG;SG;3;PRS
kämilleşdirmek V;FRML;COND+INTEN;SG;2;PST
kämilleşdirmek V;NFH;SG;2;PST
kämilleşdirmek V;COND+INTEN;SG;3;PST
kämilleşdirmek V;SG;2;INFM;FUT
kämilleşdirmek V;NFH;PL;3;PST
kämilleşdirmek V;INTEN;PL;1;PST
kämilleşdirmek V;PL;3;PST
kämilleşdirmek V;PROG;SG;1;PRS
kämilleşdirmek V;NFH;SG;1;PST
kämilleşdirmek V;COND+INTEN;SG;2;PST
kämilleşdirmek V;COND;SG;2
kämilleşdirmek V;SG;3;PST
taýyn etmek V;FRML;SG;2;PST
taýyn etmek V;SG;1;PST
taýyn etmek V;PROG;SG;3;PRS
taýyn etmek V;NFH;SG;2;PST
taýyn etmek V;NFH;SG;3;PST
taýyn etmek V;NFH;SG;1;PST
taýyn etmek V;INTEN;SG;1;PST
taýyn etmek V;COND+INTEN;SG;2;PST
taýyn etmek V;PRF;PL;1;PST
taýyn etmek V;PL;1;FUT
taýyn etmek V;SG;3;PST
taýyn etmek V;SG;2;INFM;PST
taýyn etmek V;FRML;NFH;SG;2;PST
taýyn etmek V;NFH;PL;3;PST
taýyn etmek V;FRML;IMP;PL;2
taýyn etmek V;IMP;SG;2;INFM
taýyn etmek V;INTEN;SG;2;PST
taýyn etmek V;PL;1;PST
taýyn etmek V;FRML;SG;2;FUT
taýyn etmek V;PRF;SG;2;INFM;PST
taýyn etmek V;COND+INTEN;PL;3;PST
taýyn etmek V;SG;2;INFM;FUT
taýyn etmek V;COND;SG;3
taýyn etmek V;SG;3;FUT
taýyn etmek V;PROG;PL;1;PRS
taýyn etmek V;COND;SG;2
taýyn etmek V;INTEN;SG;3;PST
taýyn etmek V;PROG;PL;3;PRS
taýyn etmek V;COND+INTEN;SG;1;PST
taýyn etmek V;PL;3;PST
taýyn etmek V;PROG;SG;2;PRS
taýyn etmek V;FRML;COND+INTEN;SG;2;PST
taýyn etmek V;FRML;INTEN;SG;2;PST
taýyn etmek V;SG;1;FUT
taýyn etmek V;FRML;COND;SG;2
taýyn etmek V;PRF;FRML;SG;2;PST
taýyn etmek V;INTEN;PL;3;PST
taýyn etmek V;PRF;PL;3;PST
taýyn etmek V;PL;3;FUT
taýyn etmek V;COND;PL;3
taýyn etmek V;PL;3;PST
taýyn etmek V;COND+INTEN;SG;3;PST
taýyn etmek V;SG;3;PST
taýyn etmek V;PROG;SG;1;PRS
taýyn etmek V;INTEN;PL;1;PST
taýyn etmek V;NFH;PL;1;PST
taýyn etmek V;IMP;PL;2;INFM
taýyn etmek V;COND;SG;1
taýyn etmek V;PRF;SG;3;PST
taýyn etmek V;PROG;SG;1;PRS
taýyn etmek V;FRML;IMP;SG;2
taýyn etmek V;COND+INTEN;PL;1;PST
taýyn etmek V;PRF;SG;1;PST
taýyn etmek V;COND;PL;1
taýyn etmek V;PROG;FRML;SG;2;PRS
ýuwutmak V;PL;3;FUT
ýuwutmak V;FRML;IMP;PL;2
ýuwutmak V;SG;1;FUT
ýuwutmak V;COND+INTEN;SG;1;PST
ýuwutmak V;COND+INTEN;PL;1;PST
ýuwutmak V;PROG;SG;2;PRS
ýuwutmak V;SG;1;PST
ýuwutmak V;COND;SG;3
ýuwutmak V;PL;1;PST
ýuwutmak V;PL;1;FUT
ýuwutmak V;IMP;SG;2;INFM
ýuwutmak V;FRML;IMP;SG;2
ýuwutmak V;FRML;NFH;SG;2;PST
ýuwutmak V;PROG;PL;1;PRS
ýuwutmak V;COND+INTEN;PL;3;PST
ýuwutmak V;INTEN;SG;3;PST
ýuwutmak V;PL;3;PST
ýuwutmak V;SG;2;INFM;PST
ýuwutmak V;SG;3;PST
ýuwutmak V;IMP;PL;2;INFM
ýuwutmak V;PRF;SG;1;PST
ýuwutmak V;NFH;SG;3;PST
ýuwutmak V;NFH;SG;2;PST
ýuwutmak V;COND+INTEN;SG;3;PST
ýuwutmak V;COND;PL;3
ýuwutmak V;PROG;FRML;SG;2;PRS
ýuwutmak V;PROG;SG;1;PRS
ýuwutmak V;NFH;PL;1;PST
ýuwutmak V;PRF;PL;1;PST
ýuwutmak V;INTEN;PL;3;PST
ýuwutmak V;INTEN;PL;1;PST
ýuwutmak V;PROG;PL;3;PRS
ýuwutmak V;PRF;SG;3;PST
ýuwutmak V;PROG;SG;3;PRS
ýuwutmak V;PRF;PL;3;PST
ýuwutmak V;PRF;FRML;SG;2;PST
ýuwutmak V;SG;3;FUT
ýuwutmak V;FRML;SG;2;PST
ýuwutmak V;INTEN;SG;1;PST
ýuwutmak V;NFH;SG;1;PST
ýuwutmak V;SG;2;INFM;PST
ýuwutmak V;COND;SG;1
ýuwutmak V;PL;1;PST
ýuwutmak V;INTEN;SG;2;PST
ýuwutmak V;FRML;SG;2;PST
ýuwutmak V;FRML;SG;2;FUT
ýuwutmak V;COND;PL;1
ýuwutmak V;FRML;INTEN;SG;2;PST
ýuwutmak V;COND;SG;2
ýuwutmak V;PL;3;PST
ýuwutmak V;SG;2;INFM;FUT
ýuwutmak V;SG;1;PST
ýuwutmak V;FRML;COND+INTEN;SG;2;PST
ýuwutmak V;FRML;COND;SG;2
ýuwutmak V;COND+INTEN;SG;2;PST
ýuwutmak V;PRF;SG;2;INFM;PST
ýuwutmak V;NFH;PL;3;PST
topulmak V;NFH;SG;2;PST
topulmak V;PRF;SG;3;PST
topulmak V;FRML;IMP;PL;2
topulmak V;SG;3;FUT
topulmak V;COND;PL;1
topulmak V;PL;1;PST
topulmak V;INTEN;PL;1;PST
topulmak V;INTEN;SG;2;PST
topulmak V;SG;3;PST
topulmak V;PRF;PL;1;PST
topulmak V;PL;3;PST
topulmak V;INTEN;SG;1;PST
topulmak V;FRML;SG;2;FUT
topulmak V;FRML;COND;SG;2
topulmak V;COND+INTEN;PL;1;PST
topulmak V;PROG;SG;2;PRS
topulmak V;FRML;INTEN;SG;2;PST
topulmak V;COND+INTEN;SG;3;PST
topulmak V;NFH;SG;3;PST
topulmak V;COND;SG;1
topulmak V;FRML;SG;2;PST
topulmak V;NFH;PL;3;PST
topulmak V;NFH;PL;1;PST
topulmak V;INTEN;SG;3;PST
topulmak V;COND+INTEN;SG;2;PST
topulmak V;COND+INTEN;SG;1;PST
topulmak V;FRML;IMP;SG;2
topulmak V;IMP;PL;2;INFM
topulmak V;NFH;SG;1;PST
topulmak V;FRML;COND+INTEN;SG;2;PST
topulmak V;PROG;PL;1;PRS
topulmak V;SG;1;PST
topulmak V;PROG;PL;3;PRS
topulmak V;PRF;SG;1;PST
topulmak V;PRF;FRML;SG;2;PST
topulmak V;PROG;SG;3;PRS
topulmak V;PL;3;PST
topulmak V;PRF;PL;3;PST
topulmak V;FRML;NFH;SG;2;PST
topulmak V;PL;1;FUT
topulmak V;PL;3;FUT
topulmak V;COND;SG;2
topulmak V;COND+INTEN;PL;3;PST
topulmak V;COND;PL;3
topulmak V;IMP;SG;2;INFM
topulmak V;SG;2;INFM;FUT
topulmak V;SG;2;INFM;PST
topulmak V;COND;SG;3
topulmak V;PROG;FRML;SG;2;PRS
topulmak V;INTEN;PL;3;PST
topulmak V;PRF;SG;2;INFM;PST
topulmak V;SG;1;FUT
topulmak V;PROG;SG;1;PRS
topulmak V;SG;1;PST
toslamak V;SG;2;INFM;PST
toslamak V;PROG;SG;2;PRS
toslamak V;PROG;SG;1;PRS
toslamak V;FRML;INTEN;SG;2;PST
toslamak V;SG;1;FUT
toslamak V;PROG;FRML;SG;2;PRS
toslamak V;INTEN;PL;1;PST
toslamak V;PRF;SG;2;INFM;PST
toslamak V;COND;SG;2
toslamak V;COND+INTEN;SG;3;PST
toslamak V;PL;1;FUT
toslamak V;INTEN;SG;1;PST
toslamak V;COND+INTEN;SG;2;PST
toslamak V;SG;2;INFM;FUT
toslamak V;INTEN;PL;3;PST
toslamak V;PRF;SG;1;PST
toslamak V;PL;1;PST
toslamak V;FRML;COND;SG;2
toslamak V;NFH;SG;1;PST
toslamak V;SG;3;PST
toslamak V;COND;SG;1
toslamak V;NFH;PL;1;PST
toslamak V;PL;3;PST
toslamak V;SG;1;PST
toslamak V;FRML;IMP;PL;2
toslamak V;PL;3;FUT
toslamak V;FRML;NFH;SG;2;PST
toslamak V;FRML;SG;2;FUT
toslamak V;FRML;IMP;SG;2
toslamak V;FRML;COND+INTEN;SG;2;PST
toslamak V;COND;SG;3
toslamak V;PROG;PL;1;PRS
toslamak V;PROG;PL;3;PRS
toslamak V;PRF;PL;1;PST
toslamak V;INTEN;SG;2;PST
toslamak V;COND+INTEN;PL;1;PST
toslamak V;COND;PL;1
toslamak V;PRF;FRML;SG;2;PST
toslamak V;PROG;SG;3;PRS
toslamak V;IMP;SG;2;INFM
toslamak V;COND+INTEN;PL;3;PST
toslamak V;NFH;SG;3;PST
toslamak V;SG;3;FUT
toslamak V;PRF;PL;3;PST
toslamak V;FRML;SG;2;PST
toslamak V;SG;3;PST
toslamak V;PL;3;PST
toslamak V;IMP;PL;2;INFM
toslamak V;COND;PL;3
toslamak V;PRF;SG;3;PST
toslamak V;INTEN;SG;3;PST
toslamak V;COND+INTEN;SG;1;PST
toslamak V;NFH;PL;3;PST
toslamak V;FRML;SG;2;PST
toslamak V;SG;1;PST
toslamak V;NFH;SG;2;PST
üýtgetmek V;PROG;SG;2;PRS
üýtgetmek V;PROG;FRML;SG;2;PRS
üýtgetmek V;IMP;PL;2;INFM
üýtgetmek V;SG;2;INFM;PST
üýtgetmek V;PRF;SG;3;PST
üýtgetmek V;SG;1;FUT
üýtgetmek V;IMP;SG;2;INFM
üýtgetmek V;FRML;COND;SG;2
üýtgetmek V;INTEN;SG;3;PST
üýtgetmek V;PROG;PL;3;PRS
üýtgetmek V;FRML;IMP;SG;2
üýtgetmek V;COND+INTEN;PL;1;PST
üýtgetmek V;FRML;SG;2;PST
üýtgetmek V;COND+INTEN;SG;3;PST
üýtgetmek V;PRF;FRML;SG;2;PST
üýtgetmek V;FRML;IMP;PL;2
üýtgetmek V;PRF;SG;2;INFM;PST
üýtgetmek V;INTEN;PL;1;PST
üýtgetmek V;SG;3;PST
üýtgetmek V;COND+INTEN;PL;3;PST
üýtgetmek V;SG;3;FUT
üýtgetmek V;PL;1;PST
üýtgetmek V;INTEN;SG;2;PST
üýtgetmek V;COND;PL;3
üýtgetmek V;SG;1;PST
üýtgetmek V;NFH;PL;3;PST
üýtgetmek V;PROG;SG;3;PRS
üýtgetmek V;COND+INTEN;SG;2;PST
üýtgetmek V;FRML;INTEN;SG;2;PST
üýtgetmek V;NFH;SG;1;PST
üýtgetmek V;COND;PL;1
üýtgetmek V;FRML;NFH;SG;2;PST
üýtgetmek V;COND;SG;1
üýtgetmek V;PRF;PL;3;PST
üýtgetmek V;NFH;SG;3;PST
üýtgetmek V;PL;3;PST
üýtgetmek V;FRML;SG;2;PST
üýtgetmek V;COND;SG;3
üýtgetmek V;FRML;SG;2;FUT
üýtgetmek V;PL;1;FUT
üýtgetmek V;PL;3;FUT
üýtgetmek V;COND;SG;2
üýtgetmek V;SG;3;PST
üýtgetmek V;NFH;SG;2;PST
üýtgetmek V;PRF;PL;1;PST
üýtgetmek V;INTEN;PL;3;PST
üýtgetmek V;PL;3;PST
üýtgetmek V;PRF;SG;1;PST
üýtgetmek V;FRML;COND+INTEN;SG;2;PST
üýtgetmek V;SG;2;INFM;FUT
üýtgetmek V;NFH;PL;1;PST
üýtgetmek V;COND+INTEN;SG;1;PST
üýtgetmek V;PROG;PL;1;PRS
üýtgetmek V;INTEN;SG;1;PST
üýtgetmek V;PROG;SG;1;PRS
üýtgetmek V;SG;2;INFM;PST
öwrülmek V;SG;3;PST
öwrülmek V;COND;SG;2
öwrülmek V;PL;1;PST
öwrülmek V;PRF;SG;3;PST
öwrülmek V;INTEN;SG;1;PST
öwrülmek V;SG;1;PST
öwrülmek V;FRML;SG;2;FUT
öwrülmek V;FRML;NFH;SG;2;PST
öwrülmek V;PROG;SG;1;PRS
öwrülmek V;FRML;SG;2;PST
öwrülmek V;COND+INTEN;PL;3;PST
öwrülmek V;INTEN;SG;2;PST
öwrülmek V;FRML;IMP;PL;2
öwrülmek V;PL;3;PST
öwrülmek V;COND;SG;3
öwrülmek V;IMP;PL;2;INFM
öwrülmek V;COND;SG;1
öwrülmek V;PRF;SG;2;INFM;PST
öwrülmek V;INTEN;PL;3;PST
öwrülmek V;PL;1;FUT
öwrülmek V;PROG;SG;3;PRS
öwrülmek V;NFH;SG;3;PST
öwrülmek V;PRF;FRML;SG;2;PST
öwrülmek V;NFH;SG;2;PST
öwrülmek V;NFH;PL;3;PST
öwrülmek V;PROG;PL;3;PRS
öwrülmek V;PL;3;FUT
öwrülmek V;SG;3;FUT
öwrülmek V;PROG;SG;2;PRS
öwrülmek V;FRML;COND;SG;2
öwrülmek V;SG;2;INFM;FUT
öwrülmek V;INTEN;SG;3;PST
öwrülmek V;INTEN;PL;1;PST
öwrülmek V;NFH;SG;1;PST
öwrülmek V;COND+INTEN;SG;2;PST
öwrülmek V;SG;2;INFM;PST
öwrülmek V;PROG;FRML;SG;2;PRS
öwrülmek V;FRML;INTEN;SG;2;PST
öwrülmek V;FRML;IMP;SG;2
öwrülmek V;PRF;PL;3;PST
öwrülmek V;SG;1;FUT
öwrülmek V;PROG;PL;1;PRS
öwrülmek V;COND;PL;1
öwrülmek V;COND+INTEN;SG;1;PST
öwrülmek V;FRML;COND+INTEN;SG;2;PST
öwrülmek V;PROG;SG;1;PRS
öwrülmek V;COND;PL;3
öwrülmek V;NFH;PL;1;PST
öwrülmek V;COND+INTEN;SG;3;PST
öwrülmek V;PRF;SG;1;PST
öwrülmek V;PRF;PL;1;PST
öwrülmek V;COND+INTEN;PL;1;PST
öwrülmek V;IMP;SG;2;INFM
guwanmak V;INTEN;PL;1;PST
guwanmak V;COND+INTEN;PL;3;PST
guwanmak V;PROG;PL;1;PRS
guwanmak V;PROG;SG;1;PRS
guwanmak V;COND+INTEN;PL;1;PST
guwanmak V;SG;3;FUT
guwanmak V;PROG;FRML;SG;2;PRS
guwanmak V;PRF;PL;3;PST
guwanmak V;SG;2;INFM;PST
guwanmak V;NFH;PL;1;PST
guwanmak V;COND;PL;1
guwanmak V;INTEN;PL;3;PST
guwanmak V;SG;1;PST
guwanmak V;FRML;COND;SG;2
guwanmak V;COND;SG;3
guwanmak V;NFH;SG;3;PST
guwanmak V;SG;3;PST
guwanmak V;PRF;SG;1;PST
guwanmak V;INTEN;SG;3;PST
guwanmak V;PRF;SG;3;PST
guwanmak V;PL;1;FUT
guwanmak V;IMP;PL;2;INFM
guwanmak V;COND+INTEN;SG;3;PST
guwanmak V;PL;3;PST
guwanmak V;COND+INTEN;SG;1;PST
guwanmak V;PL;1;PST
guwanmak V;FRML;SG;2;FUT
guwanmak V;NFH;PL;3;PST
guwanmak V;PROG;PL;3;PRS
guwanmak V;NFH;SG;1;PST
guwanmak V;FRML;COND+INTEN;SG;2;PST
guwanmak V;INTEN;SG;1;PST
guwanmak V;COND;PL;3
guwanmak V;PRF;FRML;SG;2;PST
guwanmak V;FRML;IMP;SG;2
guwanmak V;FRML;SG;2;PST
guwanmak V;PROG;SG;2;PRS
guwanmak V;PL;3;FUT
guwanmak V;FRML;IMP;PL;2
guwanmak V;SG;1;FUT
guwanmak V;IMP;SG;2;INFM
guwanmak V;COND+INTEN;SG;2;PST
guwanmak V;PRF;PL;1;PST
guwanmak V;PL;1;PST
guwanmak V;PRF;SG;2;INFM;PST
guwanmak V;FRML;INTEN;SG;2;PST
guwanmak V;PL;3;PST
guwanmak V;SG;3;PST
guwanmak V;COND;SG;2
guwanmak V;COND;SG;1
guwanmak V;PROG;SG;3;PRS
guwanmak V;INTEN;SG;2;PST
guwanmak V;PROG;SG;1;PRS
guwanmak V;FRML;NFH;SG;2;PST
guwanmak V;SG;2;INFM;FUT
guwanmak V;NFH;SG;2;PST
ýüregi düşüşmek V;FRML;SG;2;PST
ýüregi düşüşmek V;COND+INTEN;SG;2;PST
ýüregi düşüşmek V;COND+INTEN;SG;1;PST
ýüregi düşüşmek V;PL;1;PST
ýüregi düşüşmek V;PROG;PL;1;PRS
ýüregi düşüşmek V;FRML;SG;2;FUT
ýüregi düşüşmek V;COND+INTEN;PL;1;PST
ýüregi düşüşmek V;COND;SG;2
ýüregi düşüşmek V;FRML;IMP;PL;2
ýüregi düşüşmek V;SG;3;PST
ýüregi düşüşmek V;COND;SG;3
ýüregi düşüşmek V;PL;3;PST
ýüregi düşüşmek V;SG;2;INFM;FUT
ýüregi düşüşmek V;INTEN;PL;1;PST
ýüregi düşüşmek V;PL;1;FUT
ýüregi düşüşmek V;SG;1;PST
ýüregi düşüşmek V;PROG;SG;2;PRS
ýüregi düşüşmek V;NFH;PL;3;PST
ýüregi düşüşmek V;PROG;SG;1;PRS
ýüregi düşüşmek V;FRML;COND;SG;2
ýüregi düşüşmek V;FRML;IMP;SG;2
ýüregi düşüşmek V;PRF;SG;2;INFM;PST
ýüregi düşüşmek V;IMP;PL;2;INFM
ýüregi düşüşmek V;PRF;FRML;SG;2;PST
ýüregi düşüşmek V;INTEN;PL;3;PST
ýüregi düşüşmek V;COND;SG;1
ýüregi düşüşmek V;NFH;SG;2;PST
ýüregi düşüşmek V;PROG;SG;3;PRS
ýüregi düşüşmek V;FRML;INTEN;SG;2;PST
ýüregi düşüşmek V;NFH;PL;1;PST
ýüregi düşüşmek V;IMP;SG;2;INFM
ýüregi düşüşmek V;PROG;FRML;SG;2;PRS
ýüregi düşüşmek V;SG;2;INFM;PST
ýüregi düşüşmek V;FRML;COND+INTEN;SG;2;PST
ýüregi düşüşmek V;INTEN;SG;3;PST
ýüregi düşüşmek V;COND;PL;3
ýüregi düşüşmek V;SG;3;FUT
ýüregi düşüşmek V;SG;1;FUT
ýüregi düşüşmek V;PROG;PL;3;PRS
ýüregi düşüşmek V;INTEN;SG;1;PST
ýüregi düşüşmek V;NFH;SG;3;PST
ýüregi düşüşmek V;PRF;SG;3;PST
ýüregi düşüşmek V;PL;3;FUT
ýüregi düşüşmek V;SG;2;INFM;PST
ýüregi düşüşmek V;FRML;NFH;SG;2;PST
ýüregi düşüşmek V;PRF;PL;3;PST
ýüregi düşüşmek V;NFH;SG;1;PST
ýüregi düşüşmek V;FRML;SG;2;PST
ýüregi düşüşmek V;PRF;SG;1;PST
ýüregi düşüşmek V;PL;1;PST
ýüregi düşüşmek V;INTEN;SG;2;PST
ýüregi düşüşmek V;COND;PL;1
ýüregi düşüşmek V;COND+INTEN;SG;3;PST
ýüregi düşüşmek V;PRF;PL;1;PST
ýüregi düşüşmek V;COND+INTEN;PL;3;PST
suwarmak V;NFH;PL;3;PST
suwarmak V;COND;PL;3
suwarmak V;NFH;SG;2;PST
suwarmak V;FRML;COND+INTEN;SG;2;PST
suwarmak V;SG;2;INFM;PST
suwarmak V;PL;1;PST
suwarmak V;PRF;PL;3;PST
suwarmak V;SG;2;INFM;FUT
suwarmak V;PL;3;PST
suwarmak V;PROG;SG;1;PRS
suwarmak V;COND;SG;3
suwarmak V;FRML;SG;2;PST
suwarmak V;INTEN;PL;3;PST
suwarmak V;FRML;INTEN;SG;2;PST
suwarmak V;COND+INTEN;PL;3;PST
suwarmak V;SG;1;PST
suwarmak V;COND+INTEN;SG;1;PST
suwarmak V;PRF;SG;3;PST
suwarmak V;IMP;SG;2;INFM
suwarmak V;COND+INTEN;SG;3;PST
suwarmak V;PL;3;FUT
suwarmak V;FRML;IMP;PL;2
suwarmak V;PL;1;FUT
suwarmak V;PROG;SG;3;PRS
suwarmak V;INTEN;PL;1;PST
suwarmak V;FRML;SG;2;FUT
suwarmak V;INTEN;SG;2;PST
suwarmak V;INTEN;SG;3;PST
suwarmak V;SG;3;PST
suwarmak V;PRF;SG;2;INFM;PST
suwarmak V;PRF;SG;1;PST
suwarmak V;COND;PL;1
suwarmak V;INTEN;SG;1;PST
suwarmak V;COND;SG;2
suwarmak V;NFH;PL;1;PST
suwarmak V;IMP;PL;2;INFM
suwarmak V;COND+INTEN;PL;1;PST
suwarmak V;SG;1;FUT
suwarmak V;NFH;SG;1;PST
suwarmak V;FRML;IMP;SG;2
suwarmak V;PL;3;PST
suwarmak V;FRML;NFH;SG;2;PST
suwarmak V;FRML;COND;SG;2
suwarmak V;COND+INTEN;SG;2;PST
suwarmak V;PL;1;PST
suwarmak V;NFH;SG;3;PST
suwarmak V;PROG;PL;3;PRS
suwarmak V;SG;1;PST
suwarmak V;PRF;FRML;SG;2;PST
suwarmak V;PRF;PL;1;PST
suwarmak V;PROG;SG;2;PRS
suwarmak V;FRML;SG;2;PST
suwarmak V;PROG;PL;1;PRS
suwarmak V;COND;SG;1
suwarmak V;SG;3;FUT
suwarmak V;PROG;FRML;SG;2;PRS
pikir ýöretmek V;FRML;IMP;PL;2
pikir ýöretmek V;NFH;PL;3;PST
pikir ýöretmek V;SG;1;PST
pikir ýöretmek V;INTEN;SG;2;PST
pikir ýöretmek V;PRF;FRML;SG;2;PST
pikir ýöretmek V;IMP;PL;2;INFM
pikir ýöretmek V;PROG;PL;3;PRS
pikir ýöretmek V;COND+INTEN;PL;3;PST
pikir ýöretmek V;PROG;FRML;SG;2;PRS
pikir ýöretmek V;FRML;SG;2;PST
pikir ýöretmek V;COND+INTEN;SG;1;PST
pikir ýöretmek V;PRF;SG;3;PST
pikir ýöretmek V;PL;3;PST
pikir ýöretmek V;COND+INTEN;PL;1;PST
pikir ýöretmek V;SG;3;FUT
pikir ýöretmek V;SG;3;PST
pikir ýöretmek V;COND+INTEN;SG;3;PST
pikir ýöretmek V;FRML;IMP;SG;2
pikir ýöretmek V;COND+INTEN;SG;2;PST
pikir ýöretmek V;INTEN;SG;1;PST
pikir ýöretmek V;IMP;SG;2;INFM
pikir ýöretmek V;FRML;NFH;SG;2;PST
pikir ýöretmek V;COND;SG;1
pikir ýöretmek V;SG;2;INFM;PST
pikir ýöretmek V;FRML;COND;SG;2
pikir ýöretmek V;PROG;SG;2;PRS
pikir ýöretmek V;SG;2;INFM;FUT
pikir ýöretmek V;PL;1;PST
pikir ýöretmek V;NFH;PL;1;PST
pikir ýöretmek V;PL;3;FUT
pikir ýöretmek V;FRML;SG;2;FUT
pikir ýöretmek V;NFH;SG;1;PST
pikir ýöretmek V;PRF;SG;1;PST
pikir ýöretmek V;PRF;PL;1;PST
pikir ýöretmek V;PROG;SG;1;PRS
pikir ýöretmek V;COND;PL;1
pikir ýöretmek V;PL;1;FUT
pikir ýöretmek V;FRML;INTEN;SG;2;PST
pikir ýöretmek V;COND;PL;3
pikir ýöretmek V;PROG;SG;3;PRS
pikir ýöretmek V;PROG;PL;1;PRS
pikir ýöretmek V;SG;1;PST
pikir ýöretmek V;INTEN;PL;1;PST
pikir ýöretmek V;PL;1;PST
pikir ýöretmek V;COND;SG;3
pikir ýöretmek V;PL;3;PST
pikir ýöretmek V;PRF;SG;2;INFM;PST
pikir ýöretmek V;COND;SG;2
pikir ýöretmek V;FRML;COND+INTEN;SG;2;PST
pikir ýöretmek V;NFH;SG;3;PST
pikir ýöretmek V;INTEN;SG;3;PST
pikir ýöretmek V;INTEN;PL;3;PST
pikir ýöretmek V;PRF;PL;3;PST
pikir ýöretmek V;NFH;SG;2;PST
pikir ýöretmek V;SG;1;FUT
şeýtmek V;PROG;SG;1;PRS
şeýtmek V;SG;1;PST
şeýtmek V;COND;PL;3
şeýtmek V;FRML;NFH;SG;2;PST
şeýtmek V;SG;3;PST
şeýtmek V;PRF;PL;3;PST
şeýtmek V;PRF;SG;1;PST
şeýtmek V;NFH;SG;3;PST
şeýtmek V;PROG;PL;1;PRS
şeýtmek V;SG;2;INFM;FUT
şeýtmek V;COND;PL;1
şeýtmek V;INTEN;SG;3;PST
şeýtmek V;SG;1;FUT
şeýtmek V;PL;3;PST
şeýtmek V;IMP;SG;2;INFM
şeýtmek V;NFH;SG;2;PST
şeýtmek V;INTEN;SG;2;PST
şeýtmek V;FRML;IMP;PL;2
şeýtmek V;SG;2;INFM;PST
şeýtmek V;NFH;PL;3;PST
şeýtmek V;FRML;INTEN;SG;2;PST
şeýtmek V;PROG;SG;3;PRS
şeýtmek V;FRML;COND+INTEN;SG;2;PST
şeýtmek V;INTEN;PL;1;PST
şeýtmek V;PL;1;FUT
şeýtmek V;FRML;IMP;SG;2
şeýtmek V;NFH;SG;1;PST
şeýtmek V;PRF;SG;2;INFM;PST
şeýtmek V;PROG;FRML;SG;2;PRS
şeýtmek V;PL;3;FUT
şeýtmek V;NFH;PL;1;PST
şeýtmek V;IMP;PL;2;INFM
şeýtmek V;PRF;PL;1;PST
şeýtmek V;FRML;SG;2;FUT
şeýtmek V;SG;3;FUT
şeýtmek V;COND+INTEN;SG;2;PST
şeýtmek V;FRML;SG;2;PST
şeýtmek V;PL;1;PST
şeýtmek V;COND+INTEN;PL;1;PST
şeýtmek V;SG;1;PST
şeýtmek V;COND+INTEN;SG;3;PST
şeýtmek V;COND;SG;3
şeýtmek V;COND;SG;2
şeýtmek V;PL;1;PST
şeýtmek V;SG;2;INFM;PST
şeýtmek V;INTEN;SG;1;PST
şeýtmek V;COND+INTEN;PL;3;PST
şeýtmek V;PROG;PL;3;PRS
şeýtmek V;PROG;SG;2;PRS
şeýtmek V;FRML;COND;SG;2
şeýtmek V;INTEN;PL;3;PST
şeýtmek V;COND+INTEN;SG;1;PST
şeýtmek V;PRF;FRML;SG;2;PST
şeýtmek V;FRML;SG;2;PST
şeýtmek V;COND;SG;1
şeýtmek V;PRF;SG;3;PST
bogmak V;PROG;SG;3;PRS
bogmak V;FRML;COND;SG;2
bogmak V;FRML;NFH;SG;2;PST
bogmak V;PL;3;PST
bogmak V;PRF;FRML;SG;2;PST
bogmak V;COND;PL;1
bogmak V;SG;2;INFM;PST
bogmak V;PL;1;FUT
bogmak V;FRML;INTEN;SG;2;PST
bogmak V;PROG;PL;3;PRS
bogmak V;SG;3;FUT
bogmak V;COND+INTEN;SG;2;PST
bogmak V;PROG;SG;2;PRS
bogmak V;NFH;SG;3;PST
bogmak V;PRF;SG;2;INFM;PST
bogmak V;SG;2;INFM;FUT
bogmak V;IMP;PL;2;INFM
bogmak V;PROG;FRML;SG;2;PRS
bogmak V;FRML;SG;2;PST
bogmak V;INTEN;SG;2;PST
bogmak V;COND;SG;1
bogmak V;SG;3;PST
bogmak V;SG;1;PST
bogmak V;NFH;PL;1;PST
bogmak V;COND;PL;3
bogmak V;COND;SG;3
bogmak V;PRF;SG;3;PST
bogmak V;SG;1;FUT
bogmak V;COND+INTEN;SG;1;PST
bogmak V;PRF;PL;3;PST
bogmak V;PROG;PL;1;PRS
bogmak V;FRML;IMP;PL;2
bogmak V;COND+INTEN;PL;3;PST
bogmak V;NFH;SG;1;PST
bogmak V;FRML;IMP;SG;2
bogmak V;IMP;SG;2;INFM
bogmak V;FRML;SG;2;FUT
bogmak V;PRF;PL;1;PST
bogmak V;COND+INTEN;PL;1;PST
bogmak V;NFH;PL;3;PST
bogmak V;INTEN;PL;3;PST
bogmak V;NFH;SG;2;PST
bogmak V;PROG;SG;1;PRS
bogmak V;INTEN;SG;1;PST
bogmak V;SG;1;PST
bogmak V;PL;1;PST
bogmak V;PL;3;PST
bogmak V;INTEN;PL;1;PST
bogmak V;COND+INTEN;SG;3;PST
bogmak V;INTEN;SG;3;PST
bogmak V;FRML;SG;2;PST
bogmak V;PL;3;FUT
bogmak V;COND;SG;2
bogmak V;PRF;SG;1;PST
bogmak V;FRML;COND+INTEN;SG;2;PST
gol çekmek V;COND;SG;2
gol çekmek V;PRF;PL;1;PST
gol çekmek V;FRML;SG;2;FUT
gol çekmek V;INTEN;PL;3;PST
gol çekmek V;PROG;PL;1;PRS
gol çekmek V;IMP;SG;2;INFM
gol çekmek V;NFH;SG;2;PST
gol çekmek V;PROG;PL;3;PRS
gol çekmek V;SG;1;PST
gol çekmek V;FRML;NFH;SG;2;PST
gol çekmek V;INTEN;SG;3;PST
gol çekmek V;PL;1;FUT
gol çekmek V;COND+INTEN;PL;3;PST
gol çekmek V;SG;3;FUT
gol çekmek V;FRML;COND+INTEN;SG;2;PST
gol çekmek V;COND;PL;3
gol çekmek V;PL;1;PST
gol çekmek V;PROG;SG;1;PRS
gol çekmek V;INTEN;PL;1;PST
gol çekmek V;SG;3;PST
gol çekmek V;PROG;SG;2;PRS
gol çekmek V;FRML;INTEN;SG;2;PST
gol çekmek V;COND+INTEN;SG;1;PST
gol çekmek V;NFH;PL;3;PST
gol çekmek V;NFH;SG;3;PST
gol çekmek V;NFH;PL;1;PST
gol çekmek V;INTEN;SG;1;PST
gol çekmek V;COND+INTEN;SG;3;PST
gol çekmek V;PL;3;FUT
gol çekmek V;PRF;FRML;SG;2;PST
gol çekmek V;IMP;PL;2;INFM
gol çekmek V;PL;3;PST
gol çekmek V;NFH;SG;1;PST
gol çekmek V;COND+INTEN;PL;1;PST
gol çekmek V;PRF;SG;2;INFM;PST
gol çekmek V;PRF;PL;3;PST
gol çekmek V;FRML;IMP;SG;2
gol çekmek V;PROG;SG;3;PRS
gol çekmek V;PL;3;PST
gol çekmek V;FRML;SG;2;PST
gol çekmek V;COND;PL;1
gol çekmek V;COND;SG;3
gol çekmek V;PRF;SG;3;PST
gol çekmek V;PRF;SG;1;PST
gol çekmek V;SG;2;INFM;PST
gol çekmek V;SG;3;PST
gol çekmek V;COND;SG;1
gol çekmek V;SG;2;INFM;FUT
gol çekmek V;FRML;IMP;PL;2
gol çekmek V;PL;1;PST
gol çekmek V;INTEN;SG;2;PST
gol çekmek V;SG;1;FUT
gol çekmek V;COND+INTEN;SG;2;PST
gol çekmek V;FRML;COND;SG;2
gol çekmek V;PROG;FRML;SG;2;PRS
sarp etmek V;FRML;SG;2;FUT
sarp etmek V;PROG;SG;3;PRS
sarp etmek V;INTEN;SG;1;PST
sarp etmek V;PRF;SG;2;INFM;PST
sarp etmek V;PL;3;PST
sarp etmek V;SG;3;FUT
sarp etmek V;INTEN;PL;1;PST
sarp etmek V;COND;PL;3
sarp etmek V;IMP;SG;2;INFM
sarp etmek V;FRML;NFH;SG;2;PST
sarp etmek V;NFH;PL;3;PST
sarp etmek V;SG;1;PST
sarp etmek V;COND;SG;3
sarp etmek V;PROG;SG;2;PRS
sarp etmek V;SG;2;INFM;PST
sarp etmek V;SG;3;PST
sarp etmek V;COND+INTEN;SG;3;PST
sarp etmek V;PL;1;FUT
sarp etmek V;NFH;SG;3;PST
sarp etmek V;PRF;SG;1;PST
sarp etmek V;FRML;IMP;SG;2
sarp etmek V;COND;SG;1
sarp etmek V;COND+INTEN;PL;3;PST
sarp etmek V;COND;SG;2
sarp etmek V;PROG;PL;1;PRS
sarp etmek V;PRF;PL;3;PST
sarp etmek V;PL;1;PST
sarp etmek V;SG;2;INFM;FUT
sarp etmek V;FRML;INTEN;SG;2;PST
sarp etmek V;FRML;SG;2;PST
sarp etmek V;PROG;SG;1;PRS
sarp etmek V;PROG;FRML;SG;2;PRS
sarp etmek V;NFH;SG;1;PST
sarp etmek V;COND+INTEN;SG;1;PST
sarp etmek V;COND;PL;1
sarp etmek V;INTEN;SG;2;PST
sarp etmek V;INTEN;PL;3;PST
sarp etmek V;FRML;COND+INTEN;SG;2;PST
sarp etmek V;FRML;SG;2;PST
sarp etmek V;PROG;PL;3;PRS
sarp etmek V;SG;1;PST
sarp etmek V;FRML;IMP;PL;2
sarp etmek V;PL;3;PST
sarp etmek V;PL;3;FUT
sarp etmek V;PL;1;PST
sarp etmek V;FRML;COND;SG;2
sarp etmek V;NFH;SG;2;PST
sarp etmek V;COND+INTEN;SG;2;PST
sarp etmek V;IMP;PL;2;INFM
sarp etmek V;PRF;SG;3;PST
sarp etmek V;PRF;FRML;SG;2;PST
sarp etmek V;SG;1;FUT
sarp etmek V;COND+INTEN;PL;1;PST
sarp etmek V;PROG;SG;1;PRS
sarp etmek V;NFH;PL;1;PST
sarp etmek V;PRF;PL;1;PST
sarp etmek V;INTEN;SG;3;PST
pal atmak V;PRF;SG;1;PST
pal atmak V;FRML;SG;2;PST
pal atmak V;PRF;PL;3;PST
pal atmak V;INTEN;PL;3;PST
pal atmak V;PL;1;FUT
pal atmak V;PL;3;PST
pal atmak V;SG;2;INFM;FUT
pal atmak V;IMP;SG;2;INFM
pal atmak V;NFH;SG;3;PST
pal atmak V;COND;SG;2
pal atmak V;INTEN;SG;2;PST
pal atmak V;PROG;FRML;SG;2;PRS
pal atmak V;INTEN;SG;1;PST
pal atmak V;COND+INTEN;SG;2;PST
pal atmak V;FRML;IMP;PL;2
pal atmak V;PROG;SG;1;PRS
pal atmak V;COND;PL;3
pal atmak V;FRML;IMP;SG;2
pal atmak V;PRF;FRML;SG;2;PST
pal atmak V;COND;SG;3
pal atmak V;SG;1;FUT
pal atmak V;COND+INTEN;SG;1;PST
pal atmak V;PROG;PL;3;PRS
pal atmak V;PRF;SG;2;INFM;PST
pal atmak V;COND+INTEN;PL;3;PST
pal atmak V;SG;2;INFM;PST
pal atmak V;FRML;NFH;SG;2;PST
pal atmak V;INTEN;PL;1;PST
pal atmak V;FRML;SG;2;FUT
pal atmak V;NFH;PL;3;PST
pal atmak V;PRF;PL;1;PST
pal atmak V;PRF;SG;3;PST
pal atmak V;PL;1;PST
pal atmak V;PL;3;FUT
pal atmak V;NFH;PL;1;PST
pal atmak V;PROG;PL;1;PRS
pal atmak V;NFH;SG;1;PST
pal atmak V;FRML;SG;2;PST
pal atmak V;PROG;SG;3;PRS
pal atmak V;SG;1;PST
pal atmak V;COND+INTEN;SG;3;PST
pal atmak V;COND;PL;1
pal atmak V;SG;3;PST
pal atmak V;COND+INTEN;PL;1;PST
pal atmak V;FRML;INTEN;SG;2;PST
pal atmak V;IMP;PL;2;INFM
pal atmak V;PROG;SG;1;PRS
pal atmak V;SG;3;FUT
pal atmak V;FRML;COND;SG;2
pal atmak V;INTEN;SG;3;PST
pal atmak V;FRML;COND+INTEN;SG;2;PST
pal atmak V;PROG;SG;2;PRS
pal atmak V;SG;2;INFM;PST
pal atmak V;NFH;SG;2;PST
pal atmak V;COND;SG;1
pal atmak V;SG;3;PST
pal atmak V;SG;1;PST
bozmak V;INTEN;SG;2;PST
bozmak V;SG;1;PST
bozmak V;COND+INTEN;SG;1;PST
bozmak V;INTEN;SG;1;PST
bozmak V;SG;3;PST
bozmak V;PRF;SG;1;PST
bozmak V;PROG;SG;3;PRS
bozmak V;SG;2;INFM;PST
bozmak V;FRML;NFH;SG;2;PST
bozmak V;FRML;SG;2;FUT
bozmak V;FRML;COND+INTEN;SG;2;PST
bozmak V;PRF;PL;3;PST
bozmak V;PRF;FRML;SG;2;PST
bozmak V;PROG;PL;3;PRS
bozmak V;COND;SG;2
bozmak V;PROG;SG;2;PRS
bozmak V;INTEN;PL;1;PST
bozmak V;FRML;IMP;PL;2
bozmak V;COND;PL;3
bozmak V;NFH;SG;3;PST
bozmak V;FRML;COND;SG;2
bozmak V;NFH;SG;2;PST
bozmak V;NFH;SG;1;PST
bozmak V;PRF;SG;2;INFM;PST
bozmak V;SG;3;FUT
bozmak V;NFH;PL;3;PST
bozmak V;IMP;SG;2;INFM
bozmak V;PL;3;PST
bozmak V;COND;SG;3
bozmak V;COND+INTEN;PL;3;PST
bozmak V;PRF;PL;1;PST
bozmak V;PL;1;PST
bozmak V;NFH;PL;1;PST
bozmak V;FRML;INTEN;SG;2;PST
bozmak V;FRML;SG;2;PST
bozmak V;PROG;SG;1;PRS
bozmak V;INTEN;PL;3;PST
bozmak V;COND;PL;1
bozmak V;PROG;FRML;SG;2;PRS
bozmak V;PL;3;FUT
bozmak V;COND+INTEN;SG;3;PST
bozmak V;PRF;SG;3;PST
bozmak V;PROG;SG;1;PRS
bozmak V;FRML;IMP;SG;2
bozmak V;COND+INTEN;SG;2;PST
bozmak V;COND+INTEN;PL;1;PST
bozmak V;INTEN;SG;3;PST
bozmak V;SG;2;INFM;FUT
bozmak V;IMP;PL;2;INFM
bozmak V;PL;1;FUT
bozmak V;COND;SG;1
bozmak V;SG;2;INFM;PST
bozmak V;PROG;PL;1;PRS
bozmak V;SG;1;FUT
bozmak V;PL;1;PST
ogşamak V;PL;1;PST
ogşamak V;COND+INTEN;SG;2;PST
ogşamak V;SG;1;PST
ogşamak V;COND+INTEN;SG;1;PST
ogşamak V;PRF;SG;1;PST
ogşamak V;INTEN;PL;1;PST
ogşamak V;PROG;PL;3;PRS
ogşamak V;COND;PL;3
ogşamak V;PROG;SG;2;PRS
ogşamak V;PROG;FRML;SG;2;PRS
ogşamak V;NFH;SG;3;PST
ogşamak V;SG;2;INFM;FUT
ogşamak V;FRML;NFH;SG;2;PST
ogşamak V;PROG;SG;1;PRS
ogşamak V;PL;1;FUT
ogşamak V;FRML;SG;2;FUT
ogşamak V;FRML;IMP;SG;2
ogşamak V;COND+INTEN;PL;1;PST
ogşamak V;SG;2;INFM;PST
ogşamak V;PROG;SG;3;PRS
ogşamak V;IMP;PL;2;INFM
ogşamak V;FRML;SG;2;PST
ogşamak V;SG;3;PST
ogşamak V;PRF;PL;1;PST
ogşamak V;NFH;SG;1;PST
ogşamak V;PL;3;PST
ogşamak V;PRF;SG;3;PST
ogşamak V;FRML;COND;SG;2
ogşamak V;PRF;SG;2;INFM;PST
ogşamak V;SG;1;FUT
ogşamak V;FRML;INTEN;SG;2;PST
ogşamak V;FRML;IMP;PL;2
ogşamak V;COND;SG;3
ogşamak V;NFH;PL;3;PST
ogşamak V;NFH;SG;2;PST
ogşamak V;FRML;SG;2;PST
ogşamak V;COND;PL;1
ogşamak V;SG;2;INFM;PST
ogşamak V;INTEN;PL;3;PST
ogşamak V;INTEN;SG;1;PST
ogşamak V;INTEN;SG;2;PST
ogşamak V;IMP;SG;2;INFM
ogşamak V;SG;3;FUT
ogşamak V;NFH;PL;1;PST
ogşamak V;PRF;PL;3;PST
ogşamak V;COND;SG;1
ogşamak V;PL;3;PST
ogşamak V;PL;3;FUT
ogşamak V;PROG;PL;1;PRS
ogşamak V;PL;1;PST
ogşamak V;INTEN;SG;3;PST
ogşamak V;COND+INTEN;PL;3;PST
ogşamak V;COND;SG;2
ogşamak V;FRML;COND+INTEN;SG;2;PST
ogşamak V;PRF;FRML;SG;2;PST
ogşamak V;COND+INTEN;SG;3;PST
gürleşmek V;COND;SG;3
gürleşmek V;INTEN;PL;3;PST
gürleşmek V;PRF;SG;2;INFM;PST
gürleşmek V;PL;1;PST
gürleşmek V;NFH;PL;1;PST
gürleşmek V;FRML;NFH;SG;2;PST
gürleşmek V;COND;SG;2
gürleşmek V;FRML;IMP;SG;2
gürleşmek V;SG;3;PST
gürleşmek V;COND;PL;3
gürleşmek V;COND+INTEN;SG;1;PST
gürleşmek V;COND+INTEN;SG;3;PST
gürleşmek V;PL;3;PST
gürleşmek V;SG;2;INFM;PST
gürleşmek V;PL;1;FUT
gürleşmek V;NFH;SG;1;PST
gürleşmek V;SG;1;PST
gürleşmek V;PL;3;FUT
gürleşmek V;COND;SG;1
gürleşmek V;INTEN;PL;1;PST
gürleşmek V;COND;PL;1
gürleşmek V;INTEN;SG;1;PST
gürleşmek V;SG;3;FUT
gürleşmek V;PRF;FRML;SG;2;PST
gürleşmek V;PROG;PL;3;PRS
gürleşmek V;COND+INTEN;SG;2;PST
gürleşmek V;SG;1;FUT
gürleşmek V;PROG;FRML;SG;2;PRS
gürleşmek V;FRML;SG;2;PST
gürleşmek V;FRML;IMP;PL;2
gürleşmek V;PRF;SG;1;PST
gürleşmek V;SG;2;INFM;FUT
gürleşmek V;NFH;SG;3;PST
gürleşmek V;FRML;COND+INTEN;SG;2;PST
gürleşmek V;PRF;PL;1;PST
gürleşmek V;SG;1;PST
gürleşmek V;NFH;PL;3;PST
gürleşmek V;COND+INTEN;PL;3;PST
gürleşmek V;NFH;SG;2;PST
gürleşmek V;SG;3;PST
gürleşmek V;PROG;SG;1;PRS
gürleşmek V;PRF;PL;3;PST
gürleşmek V;FRML;SG;2;FUT
gürleşmek V;COND+INTEN;PL;1;PST
gürleşmek V;FRML;SG;2;PST
gürleşmek V;FRML;INTEN;SG;2;PST
gürleşmek V;FRML;COND;SG;2
gürleşmek V;IMP;SG;2;INFM
gürleşmek V;INTEN;SG;3;PST
gürleşmek V;INTEN;SG;2;PST
gürleşmek V;PROG;PL;1;PRS
gürleşmek V;PRF;SG;3;PST
gürleşmek V;PROG;SG;1;PRS
gürleşmek V;PROG;SG;3;PRS
gürleşmek V;IMP;PL;2;INFM
gürleşmek V;PROG;SG;2;PRS
zaýalanmak V;NFH;PL;1;PST
zaýalanmak V;PRF;FRML;SG;2;PST
zaýalanmak V;COND;PL;3
zaýalanmak V;PL;1;PST
zaýalanmak V;PROG;SG;1;PRS
zaýalanmak V;COND+INTEN;SG;3;PST
zaýalanmak V;COND;SG;1
zaýalanmak V;PRF;SG;3;PST
zaýalanmak V;COND+INTEN;PL;1;PST
zaýalanmak V;COND;SG;2
zaýalanmak V;FRML;COND+INTEN;SG;2;PST
zaýalanmak V;FRML;SG;2;FUT
zaýalanmak V;PRF;PL;1;PST
zaýalanmak V;PROG;PL;1;PRS
zaýalanmak V;INTEN;PL;1;PST
zaýalanmak V;INTEN;SG;3;PST
zaýalanmak V;FRML;IMP;PL;2
zaýalanmak V;NFH;SG;2;PST
zaýalanmak V;PL;1;FUT
zaýalanmak V;FRML;IMP;SG;2
zaýalanmak V;INTEN;PL;3;PST
zaýalanmak V;PL;3;FUT
zaýalanmak V;PRF;PL;3;PST
zaýalanmak V;SG;3;FUT
zaýalanmak V;SG;2;INFM;PST
zaýalanmak V;COND;PL;1
zaýalanmak V;PROG;SG;2;PRS
zaýalanmak V;NFH;SG;3;PST
zaýalanmak V;FRML;SG;2;PST
zaýalanmak V;COND+INTEN;SG;1;PST
zaýalanmak V;INTEN;SG;2;PST
zaýalanmak V;SG;1;FUT
zaýalanmak V;IMP;PL;2;INFM
zaýalanmak V;IMP;SG;2;INFM
zaýalanmak V;SG;3;PST
zaýalanmak V;COND+INTEN;SG;2;PST
zaýalanmak V;PL;1;PST
zaýalanmak V;NFH;SG;1;PST
zaýalanmak V;NFH;PL;3;PST
zaýalanmak V;FRML;COND;SG;2
zaýalanmak V;COND;SG;3
zaýalanmak V;PL;3;PST
zaýalanmak V;SG;1;PST
zaýalanmak V;FRML;INTEN;SG;2;PST
zaýalanmak V;SG;2;INFM;PST
zaýalanmak V;PRF;SG;1;PST
zaýalanmak V;PROG;PL;3;PRS
zaýalanmak V;FRML;NFH;SG;2;PST
zaýalanmak V;SG;2;INFM;FUT
zaýalanmak V;INTEN;SG;1;PST
zaýalanmak V;PL;3;PST
zaýalanmak V;FRML;SG;2;PST
zaýalanmak V;PRF;SG;2;INFM;PST
zaýalanmak V;PROG;FRML;SG;2;PRS
zaýalanmak V;SG;1;PST
zaýalanmak V;PROG;SG;3;PRS
zaýalanmak V;COND+INTEN;PL;3;PST
zaýalanmak V;SG;3;PST
käýemek V;FRML;SG;2;PST
käýemek V;PRF;PL;1;PST
käýemek V;PL;3;PST
käýemek V;NFH;PL;1;PST
käýemek V;COND+INTEN;SG;3;PST
käýemek V;COND;SG;3
käýemek V;PL;1;FUT
käýemek V;FRML;COND+INTEN;SG;2;PST
käýemek V;FRML;SG;2;FUT
käýemek V;NFH;SG;2;PST
käýemek V;NFH;SG;3;PST
käýemek V;PL;1;PST
käýemek V;IMP;PL;2;INFM
käýemek V;SG;3;FUT
käýemek V;FRML;COND;SG;2
käýemek V;INTEN;SG;3;PST
käýemek V;PROG;SG;1;PRS
käýemek V;INTEN;PL;3;PST
käýemek V;IMP;SG;2;INFM
käýemek V;PROG;FRML;SG;2;PRS
käýemek V;SG;2;INFM;PST
käýemek V;PRF;SG;3;PST
käýemek V;PROG;SG;3;PRS
käýemek V;COND+INTEN;SG;1;PST
käýemek V;PRF;SG;1;PST
käýemek V;COND;PL;1
käýemek V;PL;3;FUT
käýemek V;FRML;NFH;SG;2;PST
käýemek V;SG;3;PST
käýemek V;FRML;IMP;SG;2
käýemek V;FRML;INTEN;SG;2;PST
käýemek V;FRML;IMP;PL;2
käýemek V;NFH;SG;1;PST
käýemek V;COND+INTEN;PL;3;PST
käýemek V;COND+INTEN;SG;2;PST
käýemek V;COND;SG;1
käýemek V;INTEN;SG;2;PST
käýemek V;COND+INTEN;PL;1;PST
käýemek V;SG;1;PST
käýemek V;PRF;PL;3;PST
käýemek V;INTEN;PL;1;PST
käýemek V;NFH;PL;3;PST
käýemek V;SG;2;INFM;FUT
käýemek V;SG;1;FUT
käýemek V;PRF;SG;2;INFM;PST
käýemek V;PROG;PL;3;PRS
käýemek V;INTEN;SG;1;PST
käýemek V;PROG;PL;1;PRS
käýemek V;SG;1;PST
käýemek V;COND;PL;3
käýemek V;PROG;SG;2;PRS
käýemek V;SG;3;PST
käýemek V;COND;SG;2
käýemek V;PRF;FRML;SG;2;PST
başlamak V;PRF;SG;3;PST
başlamak V;PL;3;FUT
başlamak V;PROG;PL;3;PRS
başlamak V;SG;3;PST
başlamak V;INTEN;PL;3;PST
başlamak V;PROG;FRML;SG;2;PRS
başlamak V;PL;3;PST
başlamak V;COND+INTEN;PL;3;PST
başlamak V;COND;PL;3
başlamak V;COND;SG;1
başlamak V;PRF;PL;1;PST
başlamak V;FRML;NFH;SG;2;PST
başlamak V;NFH;PL;1;PST
başlamak V;IMP;SG;2;INFM
başlamak V;INTEN;PL;1;PST
başlamak V;SG;1;PST
başlamak V;NFH;SG;2;PST
başlamak V;SG;2;INFM;PST
başlamak V;COND;SG;3
başlamak V;INTEN;SG;1;PST
başlamak V;COND+INTEN;SG;1;PST
başlamak V;PRF;SG;1;PST
başlamak V;COND+INTEN;SG;3;PST
başlamak V;PL;1;FUT
başlamak V;FRML;COND;SG;2
başlamak V;SG;2;INFM;FUT
başlamak V;PROG;SG;2;PRS
başlamak V;FRML;SG;2;PST
başlamak V;FRML;SG;2;FUT
başlamak V;PROG;SG;3;PRS
başlamak V;FRML;INTEN;SG;2;PST
başlamak V;COND+INTEN;SG;2;PST
başlamak V;INTEN;SG;3;PST
başlamak V;NFH;SG;1;PST
başlamak V;PL;1;PST
başlamak V;PRF;SG;2;INFM;PST
başlamak V;NFH;PL;3;PST
başlamak V;IMP;PL;2;INFM
başlamak V;PROG;SG;1;PRS
başlamak V;PL;1;PST
başlamak V;COND+INTEN;PL;1;PST
başlamak V;SG;1;FUT
başlamak V;PRF;FRML;SG;2;PST
başlamak V;COND;PL;1
başlamak V;SG;3;PST
başlamak V;SG;1;PST
başlamak V;SG;3;FUT
başlamak V;PRF;PL;3;PST
başlamak V;PL;3;PST
başlamak V;COND;SG;2
başlamak V;PROG;PL;1;PRS
başlamak V;SG;1;PST
başlamak V;FRML;IMP;SG;2
başlamak V;NFH;SG;3;PST
başlamak V;FRML;IMP;PL;2
başlamak V;INTEN;SG;2;PST
başlamak V;SG;2;INFM;PST
başlamak V;FRML;COND+INTEN;SG;2;PST
başlamak V;PROG;SG;1;PRS
dykmak V;SG;1;FUT
dykmak V;NFH;PL;3;PST
dykmak V;SG;2;INFM;FUT
dykmak V;IMP;PL;2;INFM
dykmak V;PRF;SG;1;PST
dykmak V;COND;SG;1
dykmak V;SG;1;PST
dykmak V;FRML;SG;2;FUT
dykmak V;SG;3;PST
dykmak V;PRF;PL;1;PST
dykmak V;COND+INTEN;PL;1;PST
dykmak V;IMP;SG;2;INFM
dykmak V;FRML;NFH;SG;2;PST
dykmak V;PROG;FRML;SG;2;PRS
dykmak V;FRML;IMP;SG;2
dykmak V;FRML;INTEN;SG;2;PST
dykmak V;PRF;FRML;SG;2;PST
dykmak V;PRF;PL;3;PST
dykmak V;INTEN;PL;1;PST
dykmak V;COND;PL;1
dykmak V;PRF;SG;2;INFM;PST
dykmak V;FRML;SG;2;PST
dykmak V;PL;1;PST
dykmak V;FRML;COND+INTEN;SG;2;PST
dykmak V;SG;2;INFM;PST
dykmak V;NFH;SG;1;PST
dykmak V;PL;3;FUT
dykmak V;INTEN;PL;3;PST
dykmak V;SG;3;FUT
dykmak V;COND+INTEN;SG;3;PST
dykmak V;PROG;SG;2;PRS
dykmak V;COND+INTEN;SG;1;PST
dykmak V;FRML;COND;SG;2
dykmak V;PROG;PL;3;PRS
dykmak V;PROG;PL;1;PRS
dykmak V;INTEN;SG;1;PST
dykmak V;COND+INTEN;PL;3;PST
dykmak V;PROG;SG;3;PRS
dykmak V;PROG;SG;1;PRS
dykmak V;COND;SG;2
dykmak V;COND;PL;3
dykmak V;COND;SG;3
dykmak V;PROG;SG;1;PRS
dykmak V;SG;1;PST
dykmak V;PL;1;PST
dykmak V;INTEN;SG;2;PST
dykmak V;NFH;SG;2;PST
dykmak V;PRF;SG;3;PST
dykmak V;COND+INTEN;SG;2;PST
dykmak V;FRML;IMP;PL;2
dykmak V;PL;3;PST
dykmak V;NFH;PL;1;PST
dykmak V;PL;1;FUT
dykmak V;NFH;SG;3;PST
dykmak V;INTEN;SG;3;PST
dykmak V;SG;1;PST
terjime etmek V;FRML;SG;2;PST
terjime etmek V;NFH;SG;3;PST
terjime etmek V;IMP;PL;2;INFM
terjime etmek V;NFH;PL;1;PST
terjime etmek V;PROG;SG;1;PRS
terjime etmek V;COND+INTEN;SG;3;PST
terjime etmek V;PROG;SG;3;PRS
terjime etmek V;PRF;FRML;SG;2;PST
terjime etmek V;SG;3;PST
terjime etmek V;PROG;PL;1;PRS
terjime etmek V;IMP;SG;2;INFM
terjime etmek V;SG;1;PST
terjime etmek V;COND+INTEN;SG;1;PST
terjime etmek V;COND+INTEN;SG;2;PST
terjime etmek V;NFH;PL;3;PST
terjime etmek V;PL;1;FUT
terjime etmek V;PL;3;PST
terjime etmek V;SG;1;FUT
terjime etmek V;FRML;COND;SG;2
terjime etmek V;COND;SG;3
terjime etmek V;COND;SG;1
terjime etmek V;INTEN;SG;1;PST
terjime etmek V;INTEN;SG;2;PST
terjime etmek V;PL;1;PST
terjime etmek V;INTEN;PL;1;PST
terjime etmek V;COND+INTEN;PL;3;PST
terjime etmek V;PRF;SG;2;INFM;PST
terjime etmek V;SG;2;INFM;PST
terjime etmek V;PRF;SG;3;PST
terjime etmek V;PROG;SG;2;PRS
terjime etmek V;COND+INTEN;PL;1;PST
terjime etmek V;SG;3;FUT
terjime etmek V;PRF;SG;1;PST
terjime etmek V;INTEN;PL;3;PST
terjime etmek V;COND;PL;1
terjime etmek V;COND;PL;3
terjime etmek V;FRML;IMP;SG;2
terjime etmek V;PROG;FRML;SG;2;PRS
terjime etmek V;FRML;IMP;PL;2
terjime etmek V;FRML;COND+INTEN;SG;2;PST
terjime etmek V;FRML;INTEN;SG;2;PST
terjime etmek V;PROG;PL;3;PRS
terjime etmek V;NFH;SG;1;PST
terjime etmek V;PRF;PL;1;PST
terjime etmek V;PL;1;PST
terjime etmek V;PL;3;FUT
terjime etmek V;SG;2;INFM;FUT
terjime etmek V;INTEN;SG;3;PST
terjime etmek V;PRF;PL;3;PST
terjime etmek V;FRML;NFH;SG;2;PST
terjime etmek V;PROG;SG;1;PRS
terjime etmek V;COND;SG;2
terjime etmek V;PL;3;PST
terjime etmek V;FRML;SG;2;FUT
terjime etmek V;NFH;SG;2;PST
şepbeşmek V;FRML;INTEN;SG;2;PST
şepbeşmek V;SG;3;PST
şepbeşmek V;COND;PL;3
şepbeşmek V;FRML;IMP;SG;2
şepbeşmek V;PL;1;FUT
şepbeşmek V;NFH;SG;3;PST
şepbeşmek V;PRF;SG;2;INFM;PST
şepbeşmek V;COND;SG;2
şepbeşmek V;FRML;SG;2;PST
şepbeşmek V;SG;2;INFM;PST
şepbeşmek V;PL;3;PST
şepbeşmek V;COND+INTEN;SG;2;PST
şepbeşmek V;INTEN;PL;1;PST
şepbeşmek V;PROG;SG;2;PRS
şepbeşmek V;NFH;SG;2;PST
şepbeşmek V;PROG;SG;1;PRS
şepbeşmek V;FRML;SG;2;FUT
şepbeşmek V;COND+INTEN;SG;3;PST
şepbeşmek V;IMP;SG;2;INFM
şepbeşmek V;IMP;PL;2;INFM
şepbeşmek V;PL;1;PST
şepbeşmek V;INTEN;SG;3;PST
şepbeşmek V;NFH;PL;1;PST
şepbeşmek V;NFH;PL;3;PST
şepbeşmek V;SG;3;FUT
şepbeşmek V;INTEN;SG;2;PST
şepbeşmek V;PROG;PL;3;PRS
şepbeşmek V;PL;3;FUT
şepbeşmek V;PROG;FRML;SG;2;PRS
şepbeşmek V;FRML;NFH;SG;2;PST
şepbeşmek V;PRF;SG;1;PST
şepbeşmek V;COND+INTEN;PL;3;PST
şepbeşmek V;COND+INTEN;PL;1;PST
şepbeşmek V;COND;SG;3
şepbeşmek V;COND;PL;1
şepbeşmek V;FRML;IMP;PL;2
şepbeşmek V;PROG;PL;1;PRS
şepbeşmek V;SG;1;PST
şepbeşmek V;PRF;FRML;SG;2;PST
şepbeşmek V;PRF;PL;3;PST
şepbeşmek V;SG;1;PST
şepbeşmek V;PROG;SG;1;PRS
şepbeşmek V;SG;1;FUT
şepbeşmek V;PRF;SG;3;PST
şepbeşmek V;COND+INTEN;SG;1;PST
şepbeşmek V;SG;2;INFM;FUT
şepbeşmek V;PROG;SG;3;PRS
şepbeşmek V;NFH;SG;1;PST
şepbeşmek V;FRML;COND;SG;2
şepbeşmek V;PRF;PL;1;PST
şepbeşmek V;INTEN;SG;1;PST
şepbeşmek V;INTEN;PL;3;PST
şepbeşmek V;FRML;COND+INTEN;SG;2;PST
şepbeşmek V;PL;3;PST
şepbeşmek V;COND;SG;1
iýmek V;PROG;SG;3;PRS
iýmek V;SG;3;PST
iýmek V;FRML;SG;2;PST
iýmek V;INTEN;PL;3;PST
iýmek V;PRF;PL;1;PST
iýmek V;NFH;SG;1;PST
iýmek V;NFH;PL;1;PST
iýmek V;INTEN;SG;1;PST
iýmek V;FRML;NFH;SG;2;PST
iýmek V;SG;1;PST
iýmek V;FRML;SG;2;FUT
iýmek V;SG;1;FUT
iýmek V;PRF;SG;3;PST
iýmek V;COND;PL;3
iýmek V;PL;3;FUT
iýmek V;INTEN;SG;3;PST
iýmek V;PL;1;FUT
iýmek V;NFH;PL;3;PST
iýmek V;PROG;SG;2;PRS
iýmek V;COND;PL;1
iýmek V;COND;SG;1
iýmek V;PROG;SG;1;PRS
iýmek V;IMP;SG;2;INFM
iýmek V;INTEN;SG;2;PST
iýmek V;NFH;SG;2;PST
iýmek V;COND+INTEN;SG;2;PST
iýmek V;PRF;SG;1;PST
iýmek V;COND+INTEN;PL;1;PST
iýmek V;PL;3;PST
iýmek V;COND+INTEN;SG;1;PST
iýmek V;SG;2;INFM;PST
iýmek V;FRML;IMP;SG;2
iýmek V;SG;2;INFM;FUT
iýmek V;PRF;FRML;SG;2;PST
iýmek V;FRML;COND+INTEN;SG;2;PST
iýmek V;SG;3;FUT
iýmek V;PL;1;PST
iýmek V;PROG;PL;3;PRS
iýmek V;NFH;SG;3;PST
iýmek V;IMP;PL;2;INFM
iýmek V;COND+INTEN;PL;3;PST
iýmek V;COND;SG;3
iýmek V;COND+INTEN;SG;3;PST
iýmek V;PRF;PL;3;PST
iýmek V;PL;1;PST
iýmek V;PROG;FRML;SG;2;PRS
iýmek V;INTEN;PL;1;PST
iýmek V;SG;2;INFM;PST
iýmek V;PRF;SG;2;INFM;PST
iýmek V;FRML;COND;SG;2
iýmek V;FRML;IMP;PL;2
iýmek V;PROG;PL;1;PRS
iýmek V;FRML;INTEN;SG;2;PST
iýmek V;SG;3;PST
iýmek V;PL;3;PST
iýmek V;PROG;SG;1;PRS
iýmek V;FRML;SG;2;PST
iýmek V;SG;1;PST
iýmek V;COND;SG;2
towlamak V;NFH;SG;2;PST
towlamak V;PROG;PL;3;PRS
towlamak V;SG;1;PST
towlamak V;PRF;FRML;SG;2;PST
towlamak V;PROG;SG;1;PRS
towlamak V;COND+INTEN;PL;1;PST
towlamak V;PL;3;FUT
towlamak V;SG;2;INFM;PST
towlamak V;COND+INTEN;SG;3;PST
towlamak V;PL;1;FUT
towlamak V;COND;PL;3
towlamak V;COND;PL;1
towlamak V;INTEN;SG;2;PST
towlamak V;IMP;SG;2;INFM
towlamak V;SG;3;PST
towlamak V;SG;3;FUT
towlamak V;PROG;PL;1;PRS
towlamak V;FRML;SG;2;FUT
towlamak V;COND;SG;3
towlamak V;SG;2;INFM;FUT
towlamak V;NFH;SG;1;PST
towlamak V;SG;1;FUT
towlamak V;NFH;PL;3;PST
towlamak V;COND;SG;2
towlamak V;PROG;SG;2;PRS
towlamak V;COND+INTEN;SG;2;PST
towlamak V;PL;3;PST
towlamak V;FRML;IMP;PL;2
towlamak V;PRF;SG;2;INFM;PST
towlamak V;PL;1;PST
towlamak V;IMP;PL;2;INFM
towlamak V;FRML;SG;2;PST
towlamak V;FRML;NFH;SG;2;PST
towlamak V;NFH;PL;1;PST
towlamak V;NFH;SG;3;PST
towlamak V;PRF;PL;3;PST
towlamak V;INTEN;PL;3;PST
towlamak V;FRML;COND;SG;2
towlamak V;PROG;SG;3;PRS
towlamak V;INTEN;PL;1;PST
towlamak V;FRML;INTEN;SG;2;PST
towlamak V;COND;SG;1
towlamak V;PL;1;PST
towlamak V;COND+INTEN;SG;1;PST
towlamak V;PL;3;PST
towlamak V;FRML;IMP;SG;2
towlamak V;PROG;FRML;SG;2;PRS
towlamak V;COND+INTEN;PL;3;PST
towlamak V;FRML;COND+INTEN;SG;2;PST
towlamak V;PRF;SG;3;PST
towlamak V;INTEN;SG;3;PST
towlamak V;PRF;PL;1;PST
towlamak V;PRF;SG;1;PST
towlamak V;FRML;SG;2;PST
towlamak V;INTEN;SG;1;PST
bil baglamak V;FRML;SG;2;FUT
bil baglamak V;INTEN;PL;3;PST
bil baglamak V;PROG;FRML;SG;2;PRS
bil baglamak V;COND;SG;1
bil baglamak V;COND;SG;2
bil baglamak V;FRML;INTEN;SG;2;PST
bil baglamak V;COND+INTEN;SG;3;PST
bil baglamak V;FRML;IMP;PL;2
bil baglamak V;COND;PL;1
bil baglamak V;INTEN;PL;1;PST
bil baglamak V;FRML;COND;SG;2
bil baglamak V;PL;3;PST
bil baglamak V;PRF;FRML;SG;2;PST
bil baglamak V;PROG;PL;1;PRS
bil baglamak V;FRML;NFH;SG;2;PST
bil baglamak V;PRF;SG;3;PST
bil baglamak V;PL;3;FUT
bil baglamak V;PROG;SG;1;PRS
bil baglamak V;IMP;PL;2;INFM
bil baglamak V;COND+INTEN;SG;2;PST
bil baglamak V;SG;2;INFM;PST
bil baglamak V;PL;1;PST
bil baglamak V;INTEN;SG;1;PST
bil baglamak V;SG;1;PST
bil baglamak V;NFH;SG;1;PST
bil baglamak V;SG;3;FUT
bil baglamak V;NFH;SG;2;PST
bil baglamak V;INTEN;SG;2;PST
bil baglamak V;FRML;COND+INTEN;SG;2;PST
bil baglamak V;PRF;PL;3;PST
bil baglamak V;SG;1;FUT
bil baglamak V;PROG;PL;3;PRS
bil baglamak V;FRML;SG;2;PST
bil baglamak V;NFH;PL;1;PST
bil baglamak V;FRML;IMP;SG;2
bil baglamak V;PROG;SG;2;PRS
bil baglamak V;PROG;SG;3;PRS
bil baglamak V;PRF;PL;1;PST
bil baglamak V;PRF;SG;2;INFM;PST
bil baglamak V;PL;1;FUT
bil baglamak V;COND;SG;3
bil baglamak V;SG;1;PST
bil baglamak V;NFH;SG;3;PST
bil baglamak V;PRF;SG;1;PST
bil baglamak V;SG;3;PST
bil baglamak V;COND+INTEN;PL;3;PST
bil baglamak V;IMP;SG;2;INFM
bil baglamak V;COND+INTEN;PL;1;PST
bil baglamak V;PL;1;PST
bil baglamak V;INTEN;SG;3;PST
bil baglamak V;COND+INTEN;SG;1;PST
bil baglamak V;COND;PL;3
bil baglamak V;SG;2;INFM;FUT
bil baglamak V;NFH;PL;3;PST
aldamak V;SG;3;FUT
aldamak V;FRML;COND+INTEN;SG;2;PST
aldamak V;NFH;SG;2;PST
aldamak V;NFH;SG;1;PST
aldamak V;SG;2;INFM;FUT
aldamak V;FRML;IMP;PL;2
aldamak V;COND+INTEN;SG;2;PST
aldamak V;SG;3;PST
aldamak V;FRML;NFH;SG;2;PST
aldamak V;INTEN;PL;3;PST
aldamak V;PRF;SG;2;INFM;PST
aldamak V;COND;SG;1
aldamak V;PRF;SG;1;PST
aldamak V;NFH;PL;3;PST
aldamak V;COND+INTEN;SG;1;PST
aldamak V;SG;1;PST
aldamak V;PROG;SG;2;PRS
aldamak V;SG;2;INFM;PST
aldamak V;PL;3;FUT
aldamak V;COND;PL;3
aldamak V;COND+INTEN;PL;1;PST
aldamak V;PL;3;PST
aldamak V;IMP;SG;2;INFM
aldamak V;COND;SG;2
aldamak V;COND+INTEN;PL;3;PST
aldamak V;PL;1;PST
aldamak V;INTEN;SG;2;PST
aldamak V;PROG;FRML;SG;2;PRS
aldamak V;PRF;SG;3;PST
aldamak V;PROG;PL;1;PRS
aldamak V;COND;SG;3
aldamak V;FRML;SG;2;PST
aldamak V;IMP;PL;2;INFM
aldamak V;INTEN;SG;1;PST
aldamak V;PL;3;PST
aldamak V;PL;1;FUT
aldamak V;PRF;PL;1;PST
aldamak V;FRML;INTEN;SG;2;PST
aldamak V;SG;3;PST
aldamak V;NFH;SG;3;PST
aldamak V;PRF;PL;3;PST
aldamak V;PROG;SG;1;PRS
aldamak V;FRML;IMP;SG;2
aldamak V;COND;PL;1
aldamak V;INTEN;SG;3;PST
aldamak V;FRML;COND;SG;2
aldamak V;COND+INTEN;SG;3;PST
aldamak V;NFH;PL;1;PST
aldamak V;FRML;SG;2;PST
aldamak V;SG;1;FUT
aldamak V;INTEN;PL;1;PST
aldamak V;PRF;FRML;SG;2;PST
aldamak V;SG;1;PST
aldamak V;PROG;SG;3;PRS
aldamak V;PROG;PL;3;PRS
aldamak V;FRML;SG;2;FUT
ulaltmak V;SG;3;PST
ulaltmak V;SG;1;PST
ulaltmak V;COND+INTEN;PL;3;PST
ulaltmak V;FRML;SG;2;FUT
ulaltmak V;FRML;COND;SG;2
ulaltmak V;FRML;SG;2;PST
ulaltmak V;FRML;IMP;PL;2
ulaltmak V;INTEN;PL;1;PST
ulaltmak V;SG;1;FUT
ulaltmak V;COND;SG;1
ulaltmak V;NFH;PL;1;PST
ulaltmak V;FRML;NFH;SG;2;PST
ulaltmak V;COND+INTEN;PL;1;PST
ulaltmak V;FRML;COND+INTEN;SG;2;PST
ulaltmak V;SG;2;INFM;PST
ulaltmak V;INTEN;SG;1;PST
ulaltmak V;PROG;PL;1;PRS
ulaltmak V;COND;SG;3
ulaltmak V;PROG;FRML;SG;2;PRS
ulaltmak V;PRF;SG;1;PST
ulaltmak V;PROG;SG;3;PRS
ulaltmak V;PL;3;FUT
ulaltmak V;NFH;SG;1;PST
ulaltmak V;PRF;SG;2;INFM;PST
ulaltmak V;PRF;FRML;SG;2;PST
ulaltmak V;NFH;SG;2;PST
ulaltmak V;COND;SG;2
ulaltmak V;PL;3;PST
ulaltmak V;FRML;IMP;SG;2
ulaltmak V;IMP;PL;2;INFM
ulaltmak V;PROG;SG;1;PRS
ulaltmak V;INTEN;SG;3;PST
ulaltmak V;COND+INTEN;SG;1;PST
ulaltmak V;PL;1;PST
ulaltmak V;IMP;SG;2;INFM
ulaltmak V;PRF;SG;3;PST
ulaltmak V;PL;1;FUT
ulaltmak V;PROG;SG;2;PRS
ulaltmak V;COND;PL;1
ulaltmak V;PRF;PL;1;PST
ulaltmak V;PROG;PL;3;PRS
ulaltmak V;COND+INTEN;SG;3;PST
ulaltmak V;PL;1;PST
ulaltmak V;FRML;SG;2;PST
ulaltmak V;INTEN;SG;2;PST
ulaltmak V;SG;3;FUT
ulaltmak V;SG;2;INFM;FUT
ulaltmak V;NFH;PL;3;PST
ulaltmak V;NFH;SG;3;PST
ulaltmak V;SG;1;PST
ulaltmak V;COND;PL;3
ulaltmak V;COND+INTEN;SG;2;PST
ulaltmak V;PROG;SG;1;PRS
ulaltmak V;PRF;PL;3;PST
ulaltmak V;FRML;INTEN;SG;2;PST
ulaltmak V;INTEN;PL;3;PST
ulaltmak V;SG;3;PST
münmek V;PROG;SG;1;PRS
münmek V;COND+INTEN;PL;1;PST
münmek V;NFH;SG;3;PST
münmek V;NFH;PL;3;PST
münmek V;PRF;SG;2;INFM;PST
münmek V;FRML;SG;2;PST
münmek V;INTEN;SG;3;PST
münmek V;PL;3;FUT
münmek V;PRF;PL;3;PST
münmek V;IMP;PL;2;INFM
münmek V;SG;3;PST
münmek V;PROG;PL;1;PRS
münmek V;PL;1;FUT
münmek V;PROG;FRML;SG;2;PRS
münmek V;SG;2;INFM;FUT
münmek V;NFH;SG;2;PST
münmek V;PROG;SG;3;PRS
münmek V;SG;2;INFM;PST
münmek V;COND;SG;2
münmek V;SG;1;PST
münmek V;FRML;IMP;SG;2
münmek V;COND;PL;3
münmek V;FRML;COND+INTEN;SG;2;PST
münmek V;PL;1;PST
münmek V;COND;PL;1
münmek V;PRF;SG;3;PST
münmek V;FRML;SG;2;FUT
münmek V;PRF;FRML;SG;2;PST
münmek V;PROG;SG;2;PRS
münmek V;INTEN;PL;1;PST
münmek V;IMP;SG;2;INFM
münmek V;COND;SG;3
münmek V;NFH;SG;1;PST
münmek V;COND;SG;1
münmek V;COND+INTEN;SG;3;PST
münmek V;SG;3;FUT
münmek V;SG;1;FUT
münmek V;COND+INTEN;SG;1;PST
münmek V;COND+INTEN;PL;3;PST
münmek V;PL;3;PST
münmek V;INTEN;PL;3;PST
münmek V;PROG;PL;3;PRS
münmek V;FRML;INTEN;SG;2;PST
münmek V;NFH;PL;1;PST
münmek V;COND+INTEN;SG;2;PST
münmek V;FRML;IMP;PL;2
münmek V;INTEN;SG;2;PST
münmek V;PRF;SG;1;PST
münmek V;PL;1;PST
münmek V;PRF;PL;1;PST
münmek V;FRML;COND;SG;2
münmek V;FRML;NFH;SG;2;PST
münmek V;PL;3;PST
münmek V;INTEN;SG;1;PST
dogramak V;INTEN;PL;1;PST
dogramak V;PRF;SG;1;PST
dogramak V;INTEN;SG;2;PST
dogramak V;NFH;SG;2;PST
dogramak V;FRML;IMP;PL;2
dogramak V;COND;SG;1
dogramak V;PL;3;FUT
dogramak V;SG;1;PST
dogramak V;PROG;SG;2;PRS
dogramak V;PRF;SG;3;PST
dogramak V;PL;1;PST
dogramak V;IMP;SG;2;INFM
dogramak V;PROG;SG;1;PRS
dogramak V;SG;3;PST
dogramak V;IMP;PL;2;INFM
dogramak V;INTEN;SG;3;PST
dogramak V;FRML;SG;2;PST
dogramak V;COND+INTEN;SG;3;PST
dogramak V;SG;1;FUT
dogramak V;SG;2;INFM;PST
dogramak V;PROG;PL;1;PRS
dogramak V;NFH;PL;3;PST
dogramak V;COND+INTEN;PL;3;PST
dogramak V;PROG;PL;3;PRS
dogramak V;PL;3;PST
dogramak V;FRML;NFH;SG;2;PST
dogramak V;PROG;FRML;SG;2;PRS
dogramak V;PRF;SG;2;INFM;PST
dogramak V;PRF;FRML;SG;2;PST
dogramak V;FRML;SG;2;FUT
dogramak V;NFH;SG;1;PST
dogramak V;INTEN;PL;3;PST
dogramak V;COND;PL;1
dogramak V;NFH;PL;1;PST
dogramak V;PL;1;PST
dogramak V;PL;1;FUT
dogramak V;COND+INTEN;PL;1;PST
dogramak V;COND;PL;3
dogramak V;PROG;SG;3;PRS
dogramak V;FRML;IMP;SG;2
dogramak V;PROG;SG;1;PRS
dogramak V;SG;1;PST
dogramak V;COND;SG;3
dogramak V;SG;2;INFM;FUT
dogramak V;FRML;COND;SG;2
dogramak V;SG;3;FUT
dogramak V;PL;3;PST
dogramak V;COND+INTEN;SG;1;PST
dogramak V;COND;SG;2
dogramak V;FRML;COND+INTEN;SG;2;PST
dogramak V;FRML;INTEN;SG;2;PST
dogramak V;PRF;PL;1;PST
dogramak V;NFH;SG;3;PST
dogramak V;COND+INTEN;SG;2;PST
dogramak V;PRF;PL;3;PST
dogramak V;INTEN;SG;1;PST
ýumurmak V;SG;1;PST
ýumurmak V;PROG;SG;1;PRS
ýumurmak V;PRF;SG;1;PST
ýumurmak V;INTEN;PL;3;PST
ýumurmak V;SG;1;FUT
ýumurmak V;PROG;FRML;SG;2;PRS
ýumurmak V;NFH;SG;2;PST
ýumurmak V;SG;3;PST
ýumurmak V;INTEN;SG;2;PST
ýumurmak V;NFH;SG;3;PST
ýumurmak V;PROG;PL;1;PRS
ýumurmak V;COND+INTEN;SG;1;PST
ýumurmak V;PL;1;PST
ýumurmak V;COND+INTEN;PL;3;PST
ýumurmak V;PROG;PL;3;PRS
ýumurmak V;FRML;SG;2;PST
ýumurmak V;SG;2;INFM;FUT
ýumurmak V;PRF;FRML;SG;2;PST
ýumurmak V;INTEN;PL;1;PST
ýumurmak V;NFH;SG;1;PST
ýumurmak V;NFH;PL;1;PST
ýumurmak V;COND;SG;1
ýumurmak V;SG;2;INFM;PST
ýumurmak V;PL;3;PST
ýumurmak V;PL;3;FUT
ýumurmak V;IMP;PL;2;INFM
ýumurmak V;COND;PL;3
ýumurmak V;PROG;SG;2;PRS
ýumurmak V;COND;PL;1
ýumurmak V;COND+INTEN;PL;1;PST
ýumurmak V;FRML;SG;2;FUT
ýumurmak V;PROG;SG;3;PRS
ýumurmak V;PL;1;FUT
ýumurmak V;COND+INTEN;SG;2;PST
ýumurmak V;INTEN;SG;3;PST
ýumurmak V;SG;3;FUT
ýumurmak V;PRF;PL;1;PST
ýumurmak V;FRML;INTEN;SG;2;PST
ýumurmak V;FRML;COND+INTEN;SG;2;PST
ýumurmak V;SG;2;INFM;PST
ýumurmak V;PRF;SG;3;PST
ýumurmak V;SG;1;PST
ýumurmak V;COND+INTEN;SG;3;PST
ýumurmak V;PRF;PL;3;PST
ýumurmak V;PL;3;PST
ýumurmak V;PL;1;PST
ýumurmak V;FRML;SG;2;PST
ýumurmak V;FRML;COND;SG;2
ýumurmak V;FRML;IMP;PL;2
ýumurmak V;IMP;SG;2;INFM
ýumurmak V;COND;SG;2
ýumurmak V;INTEN;SG;1;PST
ýumurmak V;NFH;PL;3;PST
ýumurmak V;FRML;NFH;SG;2;PST
ýumurmak V;FRML;IMP;SG;2
ýumurmak V;PRF;SG;2;INFM;PST
ýumurmak V;COND;SG;3
gorkmak V;COND;PL;1
gorkmak V;COND+INTEN;SG;1;PST
gorkmak V;PL;1;PST
gorkmak V;NFH;PL;3;PST
gorkmak V;PROG;FRML;SG;2;PRS
gorkmak V;INTEN;SG;1;PST
gorkmak V;PROG;SG;2;PRS
gorkmak V;SG;2;INFM;FUT
gorkmak V;FRML;COND;SG;2
gorkmak V;NFH;SG;1;PST
gorkmak V;INTEN;PL;3;PST
gorkmak V;SG;3;FUT
gorkmak V;IMP;SG;2;INFM
gorkmak V;PL;1;FUT
gorkmak V;FRML;SG;2;PST
gorkmak V;COND+INTEN;SG;3;PST
gorkmak V;NFH;PL;1;PST
gorkmak V;SG;1;PST
gorkmak V;PRF;PL;3;PST
gorkmak V;INTEN;SG;2;PST
gorkmak V;PROG;SG;3;PRS
gorkmak V;SG;2;INFM;PST
gorkmak V;PROG;PL;3;PRS
gorkmak V;PL;3;PST
gorkmak V;COND;SG;2
gorkmak V;SG;1;FUT
gorkmak V;PRF;SG;1;PST
gorkmak V;FRML;SG;2;FUT
gorkmak V;COND+INTEN;SG;2;PST
gorkmak V;PRF;FRML;SG;2;PST
gorkmak V;NFH;SG;2;PST
gorkmak V;FRML;COND+INTEN;SG;2;PST
gorkmak V;SG;3;PST
gorkmak V;PROG;SG;1;PRS
gorkmak V;FRML;NFH;SG;2;PST
gorkmak V;INTEN;PL;1;PST
gorkmak V;FRML;IMP;SG;2
gorkmak V;PRF;SG;2;INFM;PST
gorkmak V;COND+INTEN;PL;1;PST
gorkmak V;PRF;SG;3;PST
gorkmak V;PL;3;FUT
gorkmak V;IMP;PL;2;INFM
gorkmak V;SG;1;PST
gorkmak V;FRML;IMP;PL;2
gorkmak V;PROG;SG;1;PRS
gorkmak V;PL;3;PST
gorkmak V;COND;SG;1
gorkmak V;SG;3;PST
gorkmak V;PRF;PL;1;PST
gorkmak V;COND;PL;3
gorkmak V;PROG;PL;1;PRS
gorkmak V;INTEN;SG;3;PST
gorkmak V;COND+INTEN;PL;3;PST
gorkmak V;COND;SG;3
gorkmak V;NFH;SG;3;PST
gorkmak V;FRML;INTEN;SG;2;PST
ösdürmek V;COND;SG;1
ösdürmek V;PROG;SG;1;PRS
ösdürmek V;COND;SG;2
ösdürmek V;SG;3;FUT
ösdürmek V;SG;1;PST
ösdürmek V;PRF;SG;1;PST
ösdürmek V;SG;1;FUT
ösdürmek V;PROG;FRML;SG;2;PRS
ösdürmek V;PRF;SG;2;INFM;PST
ösdürmek V;INTEN;PL;1;PST
ösdürmek V;COND+INTEN;PL;1;PST
ösdürmek V;PL;1;FUT
ösdürmek V;PL;3;FUT
ösdürmek V;SG;3;PST
ösdürmek V;IMP;PL;2;INFM
ösdürmek V;PL;1;PST
ösdürmek V;COND+INTEN;SG;1;PST
ösdürmek V;SG;2;INFM;PST
ösdürmek V;NFH;PL;1;PST
ösdürmek V;PRF;SG;3;PST
ösdürmek V;FRML;SG;2;FUT
ösdürmek V;PROG;SG;3;PRS
ösdürmek V;FRML;COND;SG;2
ösdürmek V;COND+INTEN;SG;3;PST
ösdürmek V;COND+INTEN;SG;2;PST
ösdürmek V;FRML;SG;2;PST
ösdürmek V;NFH;SG;2;PST
ösdürmek V;FRML;IMP;PL;2
ösdürmek V;SG;2;INFM;FUT
ösdürmek V;PRF;PL;1;PST
ösdürmek V;FRML;IMP;SG;2
ösdürmek V;PROG;PL;3;PRS
ösdürmek V;PRF;FRML;SG;2;PST
ösdürmek V;INTEN;SG;3;PST
ösdürmek V;FRML;INTEN;SG;2;PST
ösdürmek V;PROG;PL;1;PRS
ösdürmek V;PROG;SG;2;PRS
ösdürmek V;FRML;NFH;SG;2;PST
ösdürmek V;PRF;PL;3;PST
ösdürmek V;PL;1;PST
ösdürmek V;INTEN;PL;3;PST
ösdürmek V;COND;SG;3
ösdürmek V;INTEN;SG;2;PST
ösdürmek V;COND+INTEN;PL;3;PST
ösdürmek V;NFH;SG;1;PST
ösdürmek V;SG;1;PST
ösdürmek V;NFH;SG;3;PST
ösdürmek V;FRML;SG;2;PST
ösdürmek V;NFH;PL;3;PST
ösdürmek V;FRML;COND+INTEN;SG;2;PST
ösdürmek V;COND;PL;1
ösdürmek V;PL;3;PST
ösdürmek V;INTEN;SG;1;PST
ösdürmek V;IMP;SG;2;INFM
ösdürmek V;COND;PL;3
tanatmak V;COND;SG;1
tanatmak V;COND+INTEN;PL;3;PST
tanatmak V;PROG;SG;2;PRS
tanatmak V;PL;1;FUT
tanatmak V;SG;2;INFM;PST
tanatmak V;COND+INTEN;SG;3;PST
tanatmak V;PRF;SG;1;PST
tanatmak V;INTEN;PL;1;PST
tanatmak V;NFH;SG;3;PST
tanatmak V;SG;3;FUT
tanatmak V;PL;1;PST
tanatmak V;FRML;COND+INTEN;SG;2;PST
tanatmak V;PL;3;PST
tanatmak V;FRML;SG;2;PST
tanatmak V;PROG;SG;3;PRS
tanatmak V;IMP;SG;2;INFM
tanatmak V;SG;1;PST
tanatmak V;SG;3;PST
tanatmak V;FRML;NFH;SG;2;PST
tanatmak V;PROG;PL;1;PRS
tanatmak V;PROG;FRML;SG;2;PRS
tanatmak V;PROG;PL;3;PRS
tanatmak V;PROG;SG;1;PRS
tanatmak V;PRF;SG;3;PST
tanatmak V;NFH;SG;2;PST
tanatmak V;COND+INTEN;SG;2;PST
tanatmak V;FRML;IMP;SG;2
tanatmak V;FRML;COND;SG;2
tanatmak V;INTEN;PL;3;PST
tanatmak V;PRF;PL;3;PST
tanatmak V;FRML;INTEN;SG;2;PST
tanatmak V;INTEN;SG;2;PST
tanatmak V;COND;SG;3
tanatmak V;SG;2;INFM;FUT
tanatmak V;COND+INTEN;SG;1;PST
tanatmak V;INTEN;SG;3;PST
tanatmak V;IMP;PL;2;INFM
tanatmak V;NFH;PL;3;PST
tanatmak V;PL;3;FUT
tanatmak V;NFH;PL;1;PST
tanatmak V;COND+INTEN;PL;1;PST
tanatmak V;PRF;FRML;SG;2;PST
tanatmak V;SG;1;PST
tanatmak V;NFH;SG;1;PST
tanatmak V;SG;1;FUT
tanatmak V;COND;SG;2
tanatmak V;INTEN;SG;1;PST
tanatmak V;PRF;SG;2;INFM;PST
tanatmak V;COND;PL;3
tanatmak V;SG;3;PST
tanatmak V;PL;3;PST
tanatmak V;FRML;SG;2;FUT
tanatmak V;PRF;PL;1;PST
tanatmak V;FRML;IMP;PL;2
tanatmak V;COND;PL;1
göreşmek V;SG;1;PST
göreşmek V;PL;1;PST
göreşmek V;FRML;COND+INTEN;SG;2;PST
göreşmek V;NFH;PL;3;PST
göreşmek V;INTEN;PL;3;PST
göreşmek V;SG;3;PST
göreşmek V;SG;1;FUT
göreşmek V;PRF;SG;1;PST
göreşmek V;COND+INTEN;PL;1;PST
göreşmek V;PROG;PL;1;PRS
göreşmek V;FRML;COND;SG;2
göreşmek V;IMP;PL;2;INFM
göreşmek V;FRML;SG;2;PST
göreşmek V;PROG;FRML;SG;2;PRS
göreşmek V;COND;SG;3
göreşmek V;PROG;SG;3;PRS
göreşmek V;COND;SG;2
göreşmek V;PROG;SG;2;PRS
göreşmek V;INTEN;SG;2;PST
göreşmek V;FRML;SG;2;FUT
göreşmek V;PRF;FRML;SG;2;PST
göreşmek V;NFH;SG;1;PST
göreşmek V;FRML;IMP;SG;2
göreşmek V;INTEN;SG;1;PST
göreşmek V;FRML;NFH;SG;2;PST
göreşmek V;PL;3;PST
göreşmek V;PRF;SG;2;INFM;PST
göreşmek V;PL;3;FUT
göreşmek V;IMP;SG;2;INFM
göreşmek V;SG;2;INFM;PST
göreşmek V;PRF;SG;3;PST
göreşmek V;COND+INTEN;SG;3;PST
göreşmek V;PROG;SG;1;PRS
göreşmek V;SG;3;FUT
göreşmek V;COND+INTEN;PL;3;PST
göreşmek V;PRF;PL;3;PST
göreşmek V;PRF;PL;1;PST
göreşmek V;COND;PL;3
göreşmek V;INTEN;PL;1;PST
göreşmek V;FRML;IMP;PL;2
göreşmek V;PROG;PL;3;PRS
göreşmek V;PROG;SG;1;PRS
göreşmek V;PL;1;PST
göreşmek V;COND+INTEN;SG;1;PST
göreşmek V;SG;2;INFM;PST
göreşmek V;PL;1;FUT
göreşmek V;NFH;SG;3;PST
göreşmek V;COND+INTEN;SG;2;PST
göreşmek V;SG;2;INFM;FUT
göreşmek V;COND;SG;1
göreşmek V;NFH;SG;2;PST
göreşmek V;INTEN;SG;3;PST
göreşmek V;FRML;INTEN;SG;2;PST
göreşmek V;NFH;PL;1;PST
göreşmek V;PL;3;PST
göreşmek V;COND;PL;1
görkezmek V;PRF;FRML;SG;2;PST
görkezmek V;NFH;SG;2;PST
görkezmek V;NFH;PL;1;PST
görkezmek V;SG;1;PST
görkezmek V;PRF;PL;3;PST
görkezmek V;PL;1;PST
görkezmek V;PL;3;FUT
görkezmek V;INTEN;SG;2;PST
görkezmek V;FRML;IMP;PL;2
görkezmek V;FRML;NFH;SG;2;PST
görkezmek V;SG;3;PST
görkezmek V;PRF;PL;1;PST
görkezmek V;SG;1;FUT
görkezmek V;PROG;FRML;SG;2;PRS
görkezmek V;PROG;SG;3;PRS
görkezmek V;PL;3;PST
görkezmek V;FRML;IMP;SG;2
görkezmek V;IMP;SG;2;INFM
görkezmek V;NFH;PL;3;PST
görkezmek V;INTEN;SG;1;PST
görkezmek V;COND+INTEN;SG;2;PST
görkezmek V;PRF;SG;3;PST
görkezmek V;SG;2;INFM;PST
görkezmek V;PROG;SG;1;PRS
görkezmek V;NFH;SG;3;PST
görkezmek V;COND+INTEN;SG;3;PST
görkezmek V;PROG;SG;2;PRS
görkezmek V;INTEN;PL;1;PST
görkezmek V;PROG;PL;3;PRS
görkezmek V;FRML;SG;2;PST
görkezmek V;FRML;COND;SG;2
görkezmek V;SG;2;INFM;FUT
görkezmek V;COND+INTEN;PL;3;PST
görkezmek V;COND;SG;1
görkezmek V;COND;SG;3
görkezmek V;FRML;SG;2;FUT
görkezmek V;COND;PL;1
görkezmek V;PROG;PL;1;PRS
görkezmek V;FRML;INTEN;SG;2;PST
görkezmek V;COND+INTEN;SG;1;PST
görkezmek V;COND;PL;3
görkezmek V;SG;3;FUT
görkezmek V;FRML;COND+INTEN;SG;2;PST
görkezmek V;NFH;SG;1;PST
görkezmek V;INTEN;SG;3;PST
görkezmek V;PRF;SG;2;INFM;PST
görkezmek V;PL;1;FUT
görkezmek V;INTEN;PL;3;PST
görkezmek V;IMP;PL;2;INFM
görkezmek V;PRF;SG;1;PST
görkezmek V;COND+INTEN;PL;1;PST
görkezmek V;COND;SG;2
görkezmek V;SG;1;PST
sülmek V;PL;1;FUT
sülmek V;NFH;SG;1;PST
sülmek V;FRML;IMP;PL;2
sülmek V;FRML;SG;2;PST
sülmek V;PL;3;FUT
sülmek V;PROG;PL;1;PRS
sülmek V;FRML;IMP;SG;2
sülmek V;COND+INTEN;SG;2;PST
sülmek V;PROG;SG;3;PRS
sülmek V;PL;1;PST
sülmek V;IMP;PL;2;INFM
sülmek V;SG;3;FUT
sülmek V;SG;1;PST
sülmek V;INTEN;PL;3;PST
sülmek V;INTEN;SG;1;PST
sülmek V;NFH;PL;3;PST
sülmek V;PL;3;PST
sülmek V;PRF;SG;3;PST
sülmek V;COND+INTEN;SG;1;PST
sülmek V;COND;PL;1
sülmek V;COND;PL;3
sülmek V;PROG;SG;2;PRS
sülmek V;INTEN;SG;2;PST
sülmek V;PRF;FRML;SG;2;PST
sülmek V;PRF;SG;2;INFM;PST
sülmek V;SG;2;INFM;FUT
sülmek V;PROG;FRML;SG;2;PRS
sülmek V;COND+INTEN;PL;1;PST
sülmek V;PRF;PL;3;PST
sülmek V;COND;SG;3
sülmek V;INTEN;PL;1;PST
sülmek V;PRF;PL;1;PST
sülmek V;FRML;COND;SG;2
sülmek V;COND+INTEN;PL;3;PST
sülmek V;FRML;NFH;SG;2;PST
sülmek V;NFH;SG;3;PST
sülmek V;PRF;SG;1;PST
sülmek V;COND;SG;1
sülmek V;IMP;SG;2;INFM
sülmek V;SG;2;INFM;PST
sülmek V;COND;SG;2
sülmek V;PROG;SG;1;PRS
sülmek V;FRML;INTEN;SG;2;PST
sülmek V;COND+INTEN;SG;3;PST
sülmek V;SG;2;INFM;PST
sülmek V;SG;1;PST
sülmek V;FRML;SG;2;PST
sülmek V;NFH;SG;2;PST
sülmek V;NFH;PL;1;PST
sülmek V;PROG;PL;3;PRS
sülmek V;SG;1;FUT
sülmek V;PL;3;PST
sülmek V;FRML;COND+INTEN;SG;2;PST
sülmek V;FRML;SG;2;FUT
sülmek V;SG;3;PST
sülmek V;INTEN;SG;3;PST
sülmek V;PROG;SG;1;PRS
sülmek V;PL;1;PST
getirmek V;PRF;SG;2;INFM;PST
getirmek V;NFH;SG;3;PST
getirmek V;COND+INTEN;SG;1;PST
getirmek V;COND+INTEN;PL;3;PST
getirmek V;PL;1;PST
getirmek V;PROG;PL;1;PRS
getirmek V;INTEN;PL;1;PST
getirmek V;PL;1;FUT
getirmek V;FRML;SG;2;FUT
getirmek V;PROG;FRML;SG;2;PRS
getirmek V;FRML;SG;2;PST
getirmek V;PL;3;PST
getirmek V;NFH;SG;2;PST
getirmek V;PRF;SG;3;PST
getirmek V;COND;PL;3
getirmek V;SG;1;FUT
getirmek V;PROG;SG;1;PRS
getirmek V;PROG;SG;2;PRS
getirmek V;SG;3;PST
getirmek V;COND;PL;1
getirmek V;FRML;IMP;PL;2
getirmek V;FRML;NFH;SG;2;PST
getirmek V;PRF;PL;3;PST
getirmek V;COND;SG;3
getirmek V;IMP;SG;2;INFM
getirmek V;FRML;COND+INTEN;SG;2;PST
getirmek V;PROG;SG;3;PRS
getirmek V;SG;3;FUT
getirmek V;INTEN;SG;1;PST
getirmek V;SG;2;INFM;PST
getirmek V;COND+INTEN;SG;2;PST
getirmek V;SG;2;INFM;FUT
getirmek V;FRML;COND;SG;2
getirmek V;COND+INTEN;SG;3;PST
getirmek V;NFH;PL;3;PST
getirmek V;INTEN;SG;3;PST
getirmek V;FRML;IMP;SG;2
getirmek V;INTEN;SG;2;PST
getirmek V;PROG;PL;3;PRS
getirmek V;SG;1;PST
getirmek V;PRF;SG;1;PST
getirmek V;NFH;SG;1;PST
getirmek V;PRF;FRML;SG;2;PST
getirmek V;PL;3;FUT
getirmek V;IMP;PL;2;INFM
getirmek V;SG;3;PST
getirmek V;COND;SG;1
getirmek V;PRF;PL;1;PST
getirmek V;NFH;PL;1;PST
getirmek V;COND+INTEN;PL;1;PST
getirmek V;FRML;INTEN;SG;2;PST
getirmek V;SG;1;PST
getirmek V;COND;SG;2
getirmek V;INTEN;PL;3;PST
täzelemek V;NFH;PL;3;PST
täzelemek V;PL;1;PST
täzelemek V;IMP;SG;2;INFM
täzelemek V;PROG;PL;1;PRS
täzelemek V;COND+INTEN;SG;2;PST
täzelemek V;COND;PL;1
täzelemek V;SG;1;FUT
täzelemek V;SG;2;INFM;FUT
täzelemek V;PROG;SG;2;PRS
täzelemek V;SG;1;PST
täzelemek V;PL;3;FUT
täzelemek V;FRML;SG;2;FUT
täzelemek V;PL;1;FUT
täzelemek V;NFH;SG;1;PST
täzelemek V;SG;2;INFM;PST
täzelemek V;COND+INTEN;PL;3;PST
täzelemek V;COND+INTEN;SG;1;PST
täzelemek V;PROG;SG;1;PRS
täzelemek V;PL;3;PST
täzelemek V;INTEN;SG;2;PST
täzelemek V;COND+INTEN;SG;3;PST
täzelemek V;SG;3;FUT
täzelemek V;NFH;SG;3;PST
täzelemek V;PROG;SG;3;PRS
täzelemek V;INTEN;PL;3;PST
täzelemek V;PRF;SG;1;PST
täzelemek V;FRML;COND;SG;2
täzelemek V;FRML;IMP;SG;2
täzelemek V;NFH;PL;1;PST
täzelemek V;SG;3;PST
täzelemek V;FRML;INTEN;SG;2;PST
täzelemek V;PRF;SG;3;PST
täzelemek V;PROG;PL;3;PRS
täzelemek V;PRF;FRML;SG;2;PST
täzelemek V;COND;SG;1
täzelemek V;COND+INTEN;PL;1;PST
täzelemek V;FRML;SG;2;PST
täzelemek V;INTEN;SG;3;PST
täzelemek V;NFH;SG;2;PST
täzelemek V;FRML;COND+INTEN;SG;2;PST
täzelemek V;FRML;NFH;SG;2;PST
täzelemek V;FRML;IMP;PL;2
täzelemek V;COND;SG;3
täzelemek V;FRML;SG;2;PST
täzelemek V;COND;SG;2
täzelemek V;PRF;PL;3;PST
täzelemek V;IMP;PL;2;INFM
täzelemek V;PRF;PL;1;PST
täzelemek V;INTEN;PL;1;PST
täzelemek V;INTEN;SG;1;PST
täzelemek V;PROG;FRML;SG;2;PRS
täzelemek V;COND;PL;3
täzelemek V;SG;3;PST
täzelemek V;PRF;SG;2;INFM;PST
partlamak V;SG;1;PST
partlamak V;COND+INTEN;PL;1;PST
partlamak V;INTEN;PL;3;PST
partlamak V;PRF;SG;2;INFM;PST
partlamak V;SG;1;FUT
partlamak V;SG;3;FUT
partlamak V;COND;PL;3
partlamak V;FRML;IMP;SG;2
partlamak V;PL;1;PST
partlamak V;FRML;IMP;PL;2
partlamak V;PRF;PL;3;PST
partlamak V;IMP;PL;2;INFM
partlamak V;COND;PL;1
partlamak V;PL;3;FUT
partlamak V;NFH;PL;3;PST
partlamak V;IMP;SG;2;INFM
partlamak V;NFH;PL;1;PST
partlamak V;SG;3;PST
partlamak V;FRML;SG;2;PST
partlamak V;FRML;NFH;SG;2;PST
partlamak V;COND;SG;2
partlamak V;PROG;SG;3;PRS
partlamak V;PL;3;PST
partlamak V;INTEN;PL;1;PST
partlamak V;COND+INTEN;SG;3;PST
partlamak V;PRF;PL;1;PST
partlamak V;INTEN;SG;3;PST
partlamak V;PL;1;FUT
partlamak V;PRF;FRML;SG;2;PST
partlamak V;NFH;SG;3;PST
partlamak V;COND;SG;1
partlamak V;COND+INTEN;SG;2;PST
partlamak V;PROG;SG;1;PRS
partlamak V;COND+INTEN;SG;1;PST
partlamak V;PRF;SG;3;PST
partlamak V;PROG;PL;3;PRS
partlamak V;PROG;PL;1;PRS
partlamak V;FRML;COND;SG;2
partlamak V;FRML;INTEN;SG;2;PST
partlamak V;PROG;FRML;SG;2;PRS
partlamak V;SG;2;INFM;PST
partlamak V;INTEN;SG;2;PST
partlamak V;NFH;SG;1;PST
partlamak V;PROG;SG;2;PRS
partlamak V;FRML;SG;2;FUT
partlamak V;FRML;COND+INTEN;SG;2;PST
partlamak V;SG;3;PST
partlamak V;COND;SG;3
partlamak V;COND+INTEN;PL;3;PST
partlamak V;PRF;SG;1;PST
partlamak V;NFH;SG;2;PST
partlamak V;INTEN;SG;1;PST
partlamak V;SG;1;PST
partlamak V;SG;2;INFM;FUT
partlamak V;PL;3;PST
partlamak V;SG;2;INFM;PST
aldanmak V;NFH;PL;3;PST
aldanmak V;PRF;PL;1;PST
aldanmak V;PROG;PL;1;PRS
aldanmak V;PROG;PL;3;PRS
aldanmak V;COND;SG;1
aldanmak V;INTEN;SG;2;PST
aldanmak V;FRML;SG;2;PST
aldanmak V;PL;3;PST
aldanmak V;PRF;SG;3;PST
aldanmak V;FRML;SG;2;FUT
aldanmak V;PL;3;FUT
aldanmak V;PROG;SG;1;PRS
aldanmak V;COND;SG;2
aldanmak V;PROG;SG;3;PRS
aldanmak V;INTEN;PL;3;PST
aldanmak V;PL;1;PST
aldanmak V;FRML;IMP;PL;2
aldanmak V;COND+INTEN;SG;1;PST
aldanmak V;PROG;FRML;SG;2;PRS
aldanmak V;SG;2;INFM;PST
aldanmak V;COND;PL;1
aldanmak V;COND+INTEN;PL;3;PST
aldanmak V;NFH;SG;2;PST
aldanmak V;FRML;INTEN;SG;2;PST
aldanmak V;NFH;PL;1;PST
aldanmak V;PRF;PL;3;PST
aldanmak V;SG;1;PST
aldanmak V;SG;3;PST
aldanmak V;COND;SG;3
aldanmak V;COND+INTEN;PL;1;PST
aldanmak V;INTEN;PL;1;PST
aldanmak V;PRF;SG;1;PST
aldanmak V;IMP;SG;2;INFM
aldanmak V;PRF;SG;2;INFM;PST
aldanmak V;NFH;SG;1;PST
aldanmak V;INTEN;SG;3;PST
aldanmak V;SG;2;INFM;FUT
aldanmak V;INTEN;SG;1;PST
aldanmak V;COND;PL;3
aldanmak V;SG;1;FUT
aldanmak V;PROG;SG;2;PRS
aldanmak V;COND+INTEN;SG;3;PST
aldanmak V;IMP;PL;2;INFM
aldanmak V;PL;1;FUT
aldanmak V;PRF;FRML;SG;2;PST
aldanmak V;NFH;SG;3;PST
aldanmak V;FRML;SG;2;PST
aldanmak V;SG;3;FUT
aldanmak V;FRML;COND;SG;2
aldanmak V;FRML;IMP;SG;2
aldanmak V;COND+INTEN;SG;2;PST
aldanmak V;PL;1;PST
aldanmak V;FRML;NFH;SG;2;PST
aldanmak V;FRML;COND+INTEN;SG;2;PST
iç ýanmak V;NFH;SG;2;PST
iç ýanmak V;FRML;SG;2;PST
iç ýanmak V;SG;1;FUT
iç ýanmak V;PRF;FRML;SG;2;PST
iç ýanmak V;FRML;SG;2;FUT
iç ýanmak V;COND;SG;1
iç ýanmak V;SG;2;INFM;FUT
iç ýanmak V;INTEN;PL;3;PST
iç ýanmak V;SG;1;PST
iç ýanmak V;COND+INTEN;SG;3;PST
iç ýanmak V;PL;1;PST
iç ýanmak V;PROG;SG;1;PRS
iç ýanmak V;PRF;PL;3;PST
iç ýanmak V;SG;3;PST
iç ýanmak V;PROG;SG;3;PRS
iç ýanmak V;INTEN;SG;2;PST
iç ýanmak V;COND;SG;2
iç ýanmak V;PL;1;FUT
iç ýanmak V;INTEN;SG;1;PST
iç ýanmak V;COND+INTEN;PL;1;PST
iç ýanmak V;INTEN;SG;3;PST
iç ýanmak V;PL;3;PST
iç ýanmak V;SG;2;INFM;PST
iç ýanmak V;PRF;SG;1;PST
iç ýanmak V;IMP;SG;2;INFM
iç ýanmak V;FRML;NFH;SG;2;PST
iç ýanmak V;PROG;SG;2;PRS
iç ýanmak V;COND+INTEN;SG;2;PST
iç ýanmak V;PL;3;FUT
iç ýanmak V;PROG;PL;1;PRS
iç ýanmak V;SG;3;FUT
iç ýanmak V;COND;PL;3
iç ýanmak V;COND+INTEN;PL;3;PST
iç ýanmak V;FRML;IMP;SG;2
iç ýanmak V;FRML;COND;SG;2
iç ýanmak V;SG;3;PST
iç ýanmak V;FRML;SG;2;PST
iç ýanmak V;PRF;SG;3;PST
iç ýanmak V;PROG;FRML;SG;2;PRS
iç ýanmak V;COND;PL;1
iç ýanmak V;NFH;PL;3;PST
iç ýanmak V;COND+INTEN;SG;1;PST
iç ýanmak V;IMP;PL;2;INFM
iç ýanmak V;NFH;SG;1;PST
iç ýanmak V;FRML;INTEN;SG;2;PST
iç ýanmak V;COND;SG;3
iç ýanmak V;PL;3;PST
iç ýanmak V;FRML;IMP;PL;2
iç ýanmak V;PRF;SG;2;INFM;PST
iç ýanmak V;NFH;PL;1;PST
iç ýanmak V;NFH;SG;3;PST
iç ýanmak V;INTEN;PL;1;PST
iç ýanmak V;PL;1;PST
iç ýanmak V;FRML;COND+INTEN;SG;2;PST
iç ýanmak V;PROG;PL;3;PRS
iç ýanmak V;PRF;PL;1;PST
öçürmek V;IMP;PL;2;INFM
öçürmek V;PROG;FRML;SG;2;PRS
öçürmek V;SG;1;PST
öçürmek V;COND;SG;2
öçürmek V;PL;1;PST
öçürmek V;PRF;SG;3;PST
öçürmek V;INTEN;SG;3;PST
öçürmek V;PRF;SG;1;PST
öçürmek V;FRML;SG;2;PST
öçürmek V;NFH;SG;1;PST
öçürmek V;COND+INTEN;SG;1;PST
öçürmek V;COND+INTEN;PL;3;PST
öçürmek V;SG;3;FUT
öçürmek V;INTEN;PL;1;PST
öçürmek V;INTEN;PL;3;PST
öçürmek V;PL;1;FUT
öçürmek V;IMP;SG;2;INFM
öçürmek V;FRML;INTEN;SG;2;PST
öçürmek V;PROG;PL;3;PRS
öçürmek V;NFH;PL;1;PST
öçürmek V;FRML;NFH;SG;2;PST
öçürmek V;COND;SG;1
öçürmek V;NFH;PL;3;PST
öçürmek V;PROG;SG;1;PRS
öçürmek V;SG;1;FUT
öçürmek V;PL;3;FUT
öçürmek V;COND+INTEN;PL;1;PST
öçürmek V;PRF;SG;2;INFM;PST
öçürmek V;FRML;SG;2;FUT
öçürmek V;PROG;SG;2;PRS
öçürmek V;SG;2;INFM;FUT
öçürmek V;FRML;COND;SG;2
öçürmek V;FRML;COND+INTEN;SG;2;PST
öçürmek V;PL;3;PST
öçürmek V;FRML;IMP;SG;2
öçürmek V;COND+INTEN;SG;3;PST
öçürmek V;INTEN;SG;1;PST
öçürmek V;PRF;PL;1;PST
öçürmek V;COND;PL;3
öçürmek V;SG;3;PST
öçürmek V;SG;2;INFM;PST
öçürmek V;INTEN;SG;2;PST
öçürmek V;SG;2;INFM;PST
öçürmek V;PRF;FRML;SG;2;PST
öçürmek V;COND;PL;1
öçürmek V;SG;3;PST
öçürmek V;NFH;SG;3;PST
öçürmek V;NFH;SG;2;PST
öçürmek V;SG;1;PST
öçürmek V;PRF;PL;3;PST
öçürmek V;PROG;SG;1;PRS
öçürmek V;COND+INTEN;SG;2;PST
öçürmek V;COND;SG;3
öçürmek V;PROG;SG;3;PRS
öçürmek V;PL;1;PST
öçürmek V;FRML;IMP;PL;2
öçürmek V;PROG;PL;1;PRS
arassalamak V;COND;SG;1
arassalamak V;PL;1;PST
arassalamak V;COND+INTEN;SG;3;PST
arassalamak V;IMP;PL;2;INFM
arassalamak V;FRML;INTEN;SG;2;PST
arassalamak V;SG;1;PST
arassalamak V;SG;2;INFM;PST
arassalamak V;PROG;SG;1;PRS
arassalamak V;PROG;FRML;SG;2;PRS
arassalamak V;FRML;COND+INTEN;SG;2;PST
arassalamak V;NFH;SG;3;PST
arassalamak V;PL;3;PST
arassalamak V;INTEN;SG;1;PST
arassalamak V;NFH;PL;1;PST
arassalamak V;COND+INTEN;SG;1;PST
arassalamak V;INTEN;PL;1;PST
arassalamak V;COND;SG;3
arassalamak V;PRF;SG;2;INFM;PST
arassalamak V;FRML;SG;2;FUT
arassalamak V;PRF;SG;3;PST
arassalamak V;INTEN;SG;3;PST
arassalamak V;PL;3;FUT
arassalamak V;PRF;FRML;SG;2;PST
arassalamak V;COND;PL;1
arassalamak V;COND;SG;2
arassalamak V;NFH;SG;2;PST
arassalamak V;FRML;COND;SG;2
arassalamak V;COND+INTEN;SG;2;PST
arassalamak V;COND+INTEN;PL;3;PST
arassalamak V;PRF;PL;1;PST
arassalamak V;PROG;SG;3;PRS
arassalamak V;PL;1;FUT
arassalamak V;INTEN;SG;2;PST
arassalamak V;FRML;NFH;SG;2;PST
arassalamak V;NFH;SG;1;PST
arassalamak V;PRF;PL;3;PST
arassalamak V;SG;3;PST
arassalamak V;SG;1;FUT
arassalamak V;PROG;SG;2;PRS
arassalamak V;FRML;SG;2;PST
arassalamak V;INTEN;PL;3;PST
arassalamak V;PRF;SG;1;PST
arassalamak V;PROG;PL;1;PRS
arassalamak V;IMP;SG;2;INFM
arassalamak V;FRML;SG;2;PST
arassalamak V;COND+INTEN;PL;1;PST
arassalamak V;SG;3;FUT
arassalamak V;PROG;PL;3;PRS
arassalamak V;NFH;PL;3;PST
arassalamak V;FRML;IMP;SG;2
arassalamak V;COND;PL;3
arassalamak V;FRML;IMP;PL;2
arassalamak V;SG;2;INFM;FUT
zaýalamak V;COND+INTEN;SG;1;PST
zaýalamak V;COND;SG;3
zaýalamak V;FRML;INTEN;SG;2;PST
zaýalamak V;FRML;NFH;SG;2;PST
zaýalamak V;COND;PL;3
zaýalamak V;PROG;PL;1;PRS
zaýalamak V;SG;3;PST
zaýalamak V;COND;SG;2
zaýalamak V;PROG;SG;1;PRS
zaýalamak V;PROG;SG;2;PRS
zaýalamak V;SG;3;FUT
zaýalamak V;PRF;SG;1;PST
zaýalamak V;COND+INTEN;PL;3;PST
zaýalamak V;NFH;SG;1;PST
zaýalamak V;IMP;SG;2;INFM
zaýalamak V;NFH;SG;3;PST
zaýalamak V;FRML;SG;2;PST
zaýalamak V;FRML;SG;2;FUT
zaýalamak V;PL;3;FUT
zaýalamak V;COND+INTEN;SG;3;PST
zaýalamak V;FRML;COND;SG;2
zaýalamak V;SG;1;PST
zaýalamak V;PRF;PL;1;PST
zaýalamak V;PROG;SG;3;PRS
zaýalamak V;NFH;SG;2;PST
zaýalamak V;IMP;PL;2;INFM
zaýalamak V;FRML;IMP;SG;2
zaýalamak V;COND+INTEN;SG;2;PST
zaýalamak V;INTEN;SG;2;PST
zaýalamak V;PL;1;PST
zaýalamak V;FRML;COND+INTEN;SG;2;PST
zaýalamak V;FRML;IMP;PL;2
zaýalamak V;PL;3;PST
zaýalamak V;PRF;PL;3;PST
zaýalamak V;INTEN;SG;3;PST
zaýalamak V;INTEN;PL;1;PST
zaýalamak V;SG;1;FUT
zaýalamak V;COND;PL;1
zaýalamak V;NFH;PL;1;PST
zaýalamak V;SG;2;INFM;PST
zaýalamak V;PL;1;PST
zaýalamak V;SG;3;PST
zaýalamak V;PRF;FRML;SG;2;PST
zaýalamak V;SG;2;INFM;FUT
zaýalamak V;COND+INTEN;PL;1;PST
zaýalamak V;PROG;PL;3;PRS
zaýalamak V;PL;1;FUT
zaýalamak V;PRF;SG;2;INFM;PST
zaýalamak V;PRF;SG;3;PST
zaýalamak V;PL;3;PST
zaýalamak V;INTEN;PL;3;PST
zaýalamak V;COND;SG;1
zaýalamak V;NFH;PL;3;PST
zaýalamak V;INTEN;SG;1;PST
zaýalamak V;PROG;FRML;SG;2;PRS
erbetleşmek V;COND;PL;3
erbetleşmek V;PRF;PL;3;PST
erbetleşmek V;PROG;SG;2;PRS
erbetleşmek V;PL;1;PST
erbetleşmek V;FRML;IMP;PL;2
erbetleşmek V;SG;1;PST
erbetleşmek V;COND+INTEN;SG;3;PST
erbetleşmek V;COND+INTEN;SG;1;PST
erbetleşmek V;FRML;INTEN;SG;2;PST
erbetleşmek V;INTEN;PL;3;PST
erbetleşmek V;SG;3;PST
erbetleşmek V;PROG;SG;3;PRS
erbetleşmek V;NFH;SG;3;PST
erbetleşmek V;FRML;COND;SG;2
erbetleşmek V;PL;3;PST
erbetleşmek V;INTEN;PL;1;PST
erbetleşmek V;COND+INTEN;PL;3;PST
erbetleşmek V;PRF;SG;1;PST
erbetleşmek V;PL;3;FUT
erbetleşmek V;COND;SG;1
erbetleşmek V;FRML;NFH;SG;2;PST
erbetleşmek V;NFH;PL;1;PST
erbetleşmek V;COND;SG;2
erbetleşmek V;IMP;PL;2;INFM
erbetleşmek V;INTEN;SG;2;PST
erbetleşmek V;PROG;PL;3;PRS
erbetleşmek V;FRML;IMP;SG;2
erbetleşmek V;PRF;FRML;SG;2;PST
erbetleşmek V;INTEN;SG;1;PST
erbetleşmek V;FRML;COND+INTEN;SG;2;PST
erbetleşmek V;NFH;PL;3;PST
erbetleşmek V;SG;1;FUT
erbetleşmek V;SG;2;INFM;FUT
erbetleşmek V;FRML;SG;2;FUT
erbetleşmek V;PROG;PL;1;PRS
erbetleşmek V;PRF;SG;3;PST
erbetleşmek V;FRML;SG;2;PST
erbetleşmek V;NFH;SG;2;PST
erbetleşmek V;INTEN;SG;3;PST
erbetleşmek V;COND;SG;3
erbetleşmek V;PL;1;FUT
erbetleşmek V;IMP;SG;2;INFM
erbetleşmek V;PROG;FRML;SG;2;PRS
erbetleşmek V;SG;3;FUT
erbetleşmek V;SG;3;PST
erbetleşmek V;PRF;PL;1;PST
erbetleşmek V;FRML;SG;2;PST
erbetleşmek V;COND;PL;1
erbetleşmek V;SG;2;INFM;PST
erbetleşmek V;PRF;SG;2;INFM;PST
erbetleşmek V;SG;1;PST
erbetleşmek V;PROG;SG;1;PRS
erbetleşmek V;COND+INTEN;SG;2;PST
erbetleşmek V;COND+INTEN;PL;1;PST
erbetleşmek V;NFH;SG;1;PST
boýun almak V;PL;1;FUT
boýun almak V;PROG;SG;2;PRS
boýun almak V;SG;2;INFM;PST
boýun almak V;COND+INTEN;SG;1;PST
boýun almak V;COND+INTEN;SG;3;PST
boýun almak V;FRML;IMP;SG;2
boýun almak V;PL;1;PST
boýun almak V;PL;3;PST
boýun almak V;FRML;NFH;SG;2;PST
boýun almak V;INTEN;SG;2;PST
boýun almak V;SG;1;PST
boýun almak V;FRML;COND+INTEN;SG;2;PST
boýun almak V;COND+INTEN;PL;3;PST
boýun almak V;FRML;SG;2;PST
boýun almak V;INTEN;SG;3;PST
boýun almak V;IMP;SG;2;INFM
boýun almak V;PROG;FRML;SG;2;PRS
boýun almak V;PRF;PL;3;PST
boýun almak V;PROG;PL;1;PRS
boýun almak V;COND+INTEN;SG;2;PST
boýun almak V;COND;PL;3
boýun almak V;COND;PL;1
boýun almak V;PROG;SG;1;PRS
boýun almak V;SG;1;FUT
boýun almak V;PRF;SG;2;INFM;PST
boýun almak V;SG;3;PST
boýun almak V;SG;3;FUT
boýun almak V;SG;2;INFM;FUT
boýun almak V;NFH;SG;3;PST
boýun almak V;COND+INTEN;PL;1;PST
boýun almak V;FRML;IMP;PL;2
boýun almak V;INTEN;SG;1;PST
boýun almak V;IMP;PL;2;INFM
boýun almak V;NFH;PL;1;PST
boýun almak V;SG;1;PST
boýun almak V;INTEN;PL;3;PST
boýun almak V;PRF;PL;1;PST
boýun almak V;COND;SG;1
boýun almak V;PRF;FRML;SG;2;PST
boýun almak V;NFH;SG;2;PST
boýun almak V;PRF;SG;3;PST
boýun almak V;NFH;SG;1;PST
boýun almak V;PL;3;FUT
boýun almak V;PROG;SG;3;PRS
boýun almak V;FRML;INTEN;SG;2;PST
boýun almak V;FRML;SG;2;FUT
boýun almak V;PROG;PL;3;PRS
boýun almak V;COND;SG;3
boýun almak V;COND;SG;2
boýun almak V;FRML;COND;SG;2
boýun almak V;NFH;PL;3;PST
boýun almak V;PRF;SG;1;PST
boýun almak V;FRML;SG;2;PST
boýun almak V;INTEN;PL;1;PST
itmek V;COND+INTEN;PL;3;PST
itmek V;FRML;COND+INTEN;SG;2;PST
itmek V;COND;PL;1
itmek V;NFH;PL;3;PST
itmek V;SG;3;FUT
itmek V;SG;2;INFM;PST
itmek V;COND+INTEN;SG;2;PST
itmek V;COND+INTEN;SG;3;PST
itmek V;PL;1;PST
itmek V;PROG;SG;3;PRS
itmek V;INTEN;SG;2;PST
itmek V;INTEN;PL;3;PST
itmek V;COND;PL;3
itmek V;IMP;SG;2;INFM
itmek V;PROG;SG;2;PRS
itmek V;PRF;FRML;SG;2;PST
itmek V;FRML;SG;2;FUT
itmek V;FRML;COND;SG;2
itmek V;FRML;IMP;PL;2
itmek V;PL;3;PST
itmek V;PROG;PL;3;PRS
itmek V;PRF;SG;1;PST
itmek V;NFH;SG;1;PST
itmek V;COND;SG;1
itmek V;FRML;NFH;SG;2;PST
itmek V;INTEN;SG;3;PST
itmek V;NFH;SG;3;PST
itmek V;PL;3;FUT
itmek V;PRF;PL;1;PST
itmek V;COND+INTEN;SG;1;PST
itmek V;INTEN;SG;1;PST
itmek V;PRF;PL;3;PST
itmek V;PROG;PL;1;PRS
itmek V;PROG;FRML;SG;2;PRS
itmek V;INTEN;PL;1;PST
itmek V;PRF;SG;2;INFM;PST
itmek V;PROG;SG;1;PRS
itmek V;FRML;SG;2;PST
itmek V;SG;2;INFM;FUT
itmek V;IMP;PL;2;INFM
itmek V;FRML;IMP;SG;2
itmek V;PRF;SG;3;PST
itmek V;FRML;INTEN;SG;2;PST
itmek V;SG;3;PST
itmek V;COND+INTEN;PL;1;PST
itmek V;NFH;PL;1;PST
itmek V;COND;SG;2
itmek V;SG;1;PST
itmek V;SG;1;FUT
itmek V;NFH;SG;2;PST
itmek V;PL;1;FUT
itmek V;COND;SG;3
itmek V;PROG;SG;1;PRS
itmek V;PL;1;PST
gygyrmak V;PRF;SG;3;PST
gygyrmak V;SG;1;PST
gygyrmak V;PROG;SG;2;PRS
gygyrmak V;FRML;COND+INTEN;SG;2;PST
gygyrmak V;PL;3;PST
gygyrmak V;NFH;SG;1;PST
gygyrmak V;COND+INTEN;SG;1;PST
gygyrmak V;FRML;COND;SG;2
gygyrmak V;COND;SG;3
gygyrmak V;PL;3;FUT
gygyrmak V;PL;1;PST
gygyrmak V;IMP;SG;2;INFM
gygyrmak V;FRML;SG;2;PST
gygyrmak V;PROG;PL;1;PRS
gygyrmak V;FRML;INTEN;SG;2;PST
gygyrmak V;COND;PL;1
gygyrmak V;PROG;SG;3;PRS
gygyrmak V;SG;2;INFM;PST
gygyrmak V;INTEN;SG;1;PST
gygyrmak V;PRF;PL;1;PST
gygyrmak V;SG;3;PST
gygyrmak V;INTEN;PL;3;PST
gygyrmak V;NFH;SG;3;PST
gygyrmak V;COND+INTEN;PL;1;PST
gygyrmak V;SG;2;INFM;FUT
gygyrmak V;PRF;SG;1;PST
gygyrmak V;PL;1;FUT
gygyrmak V;IMP;PL;2;INFM
gygyrmak V;NFH;SG;2;PST
gygyrmak V;SG;3;FUT
gygyrmak V;FRML;NFH;SG;2;PST
gygyrmak V;PROG;SG;1;PRS
gygyrmak V;INTEN;PL;1;PST
gygyrmak V;COND;SG;1
gygyrmak V;PRF;FRML;SG;2;PST
gygyrmak V;COND;PL;3
gygyrmak V;COND+INTEN;SG;3;PST
gygyrmak V;COND+INTEN;PL;3;PST
gygyrmak V;COND+INTEN;SG;2;PST
gygyrmak V;PROG;FRML;SG;2;PRS
gygyrmak V;INTEN;SG;2;PST
gygyrmak V;NFH;PL;1;PST
gygyrmak V;FRML;SG;2;FUT
gygyrmak V;FRML;IMP;PL;2
gygyrmak V;COND;SG;2
gygyrmak V;NFH;PL;3;PST
gygyrmak V;PRF;SG;2;INFM;PST
gygyrmak V;SG;1;PST
gygyrmak V;SG;1;FUT
gygyrmak V;PROG;SG;1;PRS
gygyrmak V;SG;2;INFM;PST
gygyrmak V;PRF;PL;3;PST
gygyrmak V;FRML;IMP;SG;2
gygyrmak V;INTEN;SG;3;PST
gygyrmak V;PL;3;PST
gygyrmak V;PROG;PL;3;PRS
gygyrmak V;PL;1;PST
gün geçirmek V;PL;3;PST
gün geçirmek V;FRML;SG;2;PST
gün geçirmek V;SG;2;INFM;FUT
gün geçirmek V;PRF;PL;1;PST
gün geçirmek V;NFH;SG;3;PST
gün geçirmek V;PL;1;PST
gün geçirmek V;PRF;SG;3;PST
gün geçirmek V;COND+INTEN;SG;3;PST
gün geçirmek V;INTEN;SG;3;PST
gün geçirmek V;COND;PL;1
gün geçirmek V;COND;SG;1
gün geçirmek V;PROG;SG;1;PRS
gün geçirmek V;NFH;PL;1;PST
gün geçirmek V;INTEN;PL;3;PST
gün geçirmek V;INTEN;SG;2;PST
gün geçirmek V;NFH;SG;1;PST
gün geçirmek V;PROG;SG;3;PRS
gün geçirmek V;SG;3;FUT
gün geçirmek V;FRML;IMP;SG;2
gün geçirmek V;FRML;INTEN;SG;2;PST
gün geçirmek V;PROG;SG;2;PRS
gün geçirmek V;PRF;PL;3;PST
gün geçirmek V;PROG;PL;3;PRS
gün geçirmek V;FRML;COND+INTEN;SG;2;PST
gün geçirmek V;NFH;SG;2;PST
gün geçirmek V;PROG;FRML;SG;2;PRS
gün geçirmek V;NFH;PL;3;PST
gün geçirmek V;INTEN;SG;1;PST
gün geçirmek V;SG;2;INFM;PST
gün geçirmek V;FRML;NFH;SG;2;PST
gün geçirmek V;COND;SG;2
gün geçirmek V;IMP;PL;2;INFM
gün geçirmek V;PL;1;FUT
gün geçirmek V;IMP;SG;2;INFM
gün geçirmek V;PRF;FRML;SG;2;PST
gün geçirmek V;COND+INTEN;SG;2;PST
gün geçirmek V;COND+INTEN;PL;3;PST
gün geçirmek V;SG;1;PST
gün geçirmek V;COND+INTEN;SG;1;PST
gün geçirmek V;COND+INTEN;PL;1;PST
gün geçirmek V;SG;3;PST
gün geçirmek V;FRML;IMP;PL;2
gün geçirmek V;SG;1;FUT
gün geçirmek V;PL;3;FUT
gün geçirmek V;PROG;PL;1;PRS
gün geçirmek V;COND;SG;3
gün geçirmek V;FRML;SG;2;FUT
gün geçirmek V;FRML;COND;SG;2
gün geçirmek V;COND;PL;3
gün geçirmek V;PRF;SG;2;INFM;PST
gün geçirmek V;INTEN;PL;1;PST
gün geçirmek V;PRF;SG;1;PST
gün geçirmek V;SG;3;PST
dönmek V;FRML;COND;SG;2
dönmek V;NFH;PL;3;PST
dönmek V;COND;PL;3
dönmek V;COND;SG;2
dönmek V;PROG;SG;1;PRS
dönmek V;SG;1;FUT
dönmek V;FRML;SG;2;PST
dönmek V;PRF;SG;1;PST
dönmek V;COND;SG;3
dönmek V;PRF;FRML;SG;2;PST
dönmek V;NFH;SG;3;PST
dönmek V;COND+INTEN;PL;1;PST
dönmek V;SG;2;INFM;FUT
dönmek V;PL;1;FUT
dönmek V;SG;1;PST
dönmek V;INTEN;PL;3;PST
dönmek V;FRML;INTEN;SG;2;PST
dönmek V;INTEN;PL;1;PST
dönmek V;IMP;SG;2;INFM
dönmek V;PROG;PL;1;PRS
dönmek V;COND+INTEN;PL;3;PST
dönmek V;SG;2;INFM;PST
dönmek V;SG;3;PST
dönmek V;COND+INTEN;SG;1;PST
dönmek V;IMP;PL;2;INFM
dönmek V;PROG;SG;3;PRS
dönmek V;PL;3;PST
dönmek V;FRML;IMP;SG;2
dönmek V;PROG;SG;2;PRS
dönmek V;NFH;SG;1;PST
dönmek V;PRF;PL;3;PST
dönmek V;INTEN;SG;3;PST
dönmek V;PRF;SG;2;INFM;PST
dönmek V;COND+INTEN;SG;2;PST
dönmek V;FRML;NFH;SG;2;PST
dönmek V;PL;3;FUT
dönmek V;PROG;FRML;SG;2;PRS
dönmek V;SG;1;PST
dönmek V;NFH;PL;1;PST
dönmek V;FRML;IMP;PL;2
dönmek V;PL;1;PST
dönmek V;INTEN;SG;2;PST
dönmek V;SG;3;FUT
dönmek V;NFH;SG;2;PST
dönmek V;SG;2;INFM;PST
dönmek V;COND;PL;1
dönmek V;PRF;PL;1;PST
dönmek V;PRF;SG;3;PST
dönmek V;COND+INTEN;SG;3;PST
dönmek V;INTEN;SG;1;PST
dönmek V;PROG;PL;3;PRS
dönmek V;FRML;SG;2;FUT
dönmek V;PL;1;PST
dönmek V;COND;SG;1
dönmek V;FRML;COND+INTEN;SG;2;PST
söndürmek V;IMP;SG;2;INFM
söndürmek V;SG;1;PST
söndürmek V;PL;3;PST
söndürmek V;FRML;COND;SG;2
söndürmek V;PROG;SG;1;PRS
söndürmek V;SG;3;FUT
söndürmek V;INTEN;SG;1;PST
söndürmek V;INTEN;PL;3;PST
söndürmek V;SG;3;PST
söndürmek V;PROG;SG;2;PRS
söndürmek V;COND+INTEN;SG;3;PST
söndürmek V;SG;2;INFM;PST
söndürmek V;PRF;PL;3;PST
söndürmek V;COND+INTEN;SG;1;PST
söndürmek V;NFH;SG;2;PST
söndürmek V;PROG;PL;1;PRS
söndürmek V;COND+INTEN;SG;2;PST
söndürmek V;COND;PL;3
söndürmek V;IMP;PL;2;INFM
söndürmek V;PL;1;PST
söndürmek V;PROG;SG;3;PRS
söndürmek V;PRF;SG;1;PST
söndürmek V;FRML;INTEN;SG;2;PST
söndürmek V;COND+INTEN;PL;1;PST
söndürmek V;NFH;SG;1;PST
söndürmek V;COND;SG;3
söndürmek V;COND;PL;1
söndürmek V;FRML;COND+INTEN;SG;2;PST
söndürmek V;FRML;IMP;SG;2
söndürmek V;INTEN;SG;3;PST
söndürmek V;FRML;NFH;SG;2;PST
söndürmek V;PRF;FRML;SG;2;PST
söndürmek V;FRML;SG;2;PST
söndürmek V;INTEN;SG;2;PST
söndürmek V;INTEN;PL;1;PST
söndürmek V;PL;1;FUT
söndürmek V;COND;SG;2
söndürmek V;FRML;IMP;PL;2
söndürmek V;SG;2;INFM;FUT
söndürmek V;SG;1;FUT
söndürmek V;COND+INTEN;PL;3;PST
söndürmek V;PROG;SG;1;PRS
söndürmek V;PRF;SG;2;INFM;PST
söndürmek V;PROG;PL;3;PRS
söndürmek V;NFH;PL;1;PST
söndürmek V;FRML;SG;2;PST
söndürmek V;PROG;FRML;SG;2;PRS
söndürmek V;PL;3;PST
söndürmek V;PRF;SG;3;PST
söndürmek V;FRML;SG;2;FUT
söndürmek V;PL;3;FUT
söndürmek V;SG;3;PST
söndürmek V;COND;SG;1
söndürmek V;PRF;PL;1;PST
söndürmek V;NFH;SG;3;PST
söndürmek V;NFH;PL;3;PST
taýýarlamak V;INTEN;PL;3;PST
taýýarlamak V;FRML;COND+INTEN;SG;2;PST
taýýarlamak V;COND;SG;2
taýýarlamak V;COND;PL;1
taýýarlamak V;PROG;FRML;SG;2;PRS
taýýarlamak V;SG;2;INFM;PST
taýýarlamak V;PRF;SG;3;PST
taýýarlamak V;IMP;SG;2;INFM
taýýarlamak V;NFH;PL;3;PST
taýýarlamak V;PRF;SG;1;PST
taýýarlamak V;COND+INTEN;PL;3;PST
taýýarlamak V;PL;3;PST
taýýarlamak V;PROG;PL;3;PRS
taýýarlamak V;SG;1;PST
taýýarlamak V;IMP;PL;2;INFM
taýýarlamak V;INTEN;SG;3;PST
taýýarlamak V;PRF;PL;3;PST
taýýarlamak V;FRML;SG;2;PST
taýýarlamak V;FRML;IMP;PL;2
taýýarlamak V;PL;1;PST
taýýarlamak V;SG;3;FUT
taýýarlamak V;NFH;SG;1;PST
taýýarlamak V;INTEN;SG;2;PST
taýýarlamak V;PL;3;FUT
taýýarlamak V;PRF;PL;1;PST
taýýarlamak V;COND;SG;3
taýýarlamak V;COND+INTEN;SG;3;PST
taýýarlamak V;FRML;SG;2;FUT
taýýarlamak V;SG;2;INFM;FUT
taýýarlamak V;NFH;SG;2;PST
taýýarlamak V;COND+INTEN;PL;1;PST
taýýarlamak V;FRML;NFH;SG;2;PST
taýýarlamak V;COND+INTEN;SG;2;PST
taýýarlamak V;SG;3;PST
taýýarlamak V;FRML;COND;SG;2
taýýarlamak V;PROG;SG;2;PRS
taýýarlamak V;PRF;SG;2;INFM;PST
taýýarlamak V;PL;1;FUT
taýýarlamak V;SG;1;FUT
taýýarlamak V;INTEN;PL;1;PST
taýýarlamak V;PROG;SG;3;PRS
taýýarlamak V;COND+INTEN;SG;1;PST
taýýarlamak V;NFH;SG;3;PST
taýýarlamak V;INTEN;SG;1;PST
taýýarlamak V;FRML;IMP;SG;2
taýýarlamak V;SG;3;PST
taýýarlamak V;PROG;PL;1;PRS
taýýarlamak V;COND;SG;1
taýýarlamak V;NFH;PL;1;PST
taýýarlamak V;COND;PL;3
taýýarlamak V;PROG;SG;1;PRS
taýýarlamak V;PRF;FRML;SG;2;PST
taýýarlamak V;FRML;SG;2;PST
taýýarlamak V;FRML;INTEN;SG;2;PST
gutulmak V;INTEN;SG;1;PST
gutulmak V;FRML;COND+INTEN;SG;2;PST
gutulmak V;SG;2;INFM;PST
gutulmak V;SG;1;PST
gutulmak V;PL;1;FUT
gutulmak V;COND;SG;3
gutulmak V;PRF;SG;3;PST
gutulmak V;COND+INTEN;SG;3;PST
gutulmak V;PL;3;FUT
gutulmak V;INTEN;SG;2;PST
gutulmak V;PL;1;PST
gutulmak V;PL;3;PST
gutulmak V;SG;1;FUT
gutulmak V;NFH;SG;2;PST
gutulmak V;PROG;SG;1;PRS
gutulmak V;COND;SG;1
gutulmak V;INTEN;PL;1;PST
gutulmak V;SG;3;FUT
gutulmak V;FRML;IMP;PL;2
gutulmak V;PROG;PL;1;PRS
gutulmak V;SG;3;PST
gutulmak V;PROG;PL;3;PRS
gutulmak V;COND+INTEN;PL;1;PST
gutulmak V;NFH;PL;1;PST
gutulmak V;FRML;IMP;SG;2
gutulmak V;FRML;INTEN;SG;2;PST
gutulmak V;PROG;FRML;SG;2;PRS
gutulmak V;COND;PL;3
gutulmak V;PROG;SG;2;PRS
gutulmak V;COND+INTEN;SG;1;PST
gutulmak V;NFH;PL;3;PST
gutulmak V;NFH;SG;3;PST
gutulmak V;PROG;SG;3;PRS
gutulmak V;INTEN;SG;3;PST
gutulmak V;FRML;SG;2;PST
gutulmak V;FRML;NFH;SG;2;PST
gutulmak V;FRML;COND;SG;2
gutulmak V;FRML;SG;2;PST
gutulmak V;PRF;SG;1;PST
gutulmak V;INTEN;PL;3;PST
gutulmak V;COND;PL;1
gutulmak V;IMP;PL;2;INFM
gutulmak V;SG;2;INFM;FUT
gutulmak V;PRF;FRML;SG;2;PST
gutulmak V;FRML;SG;2;FUT
gutulmak V;NFH;SG;1;PST
gutulmak V;IMP;SG;2;INFM
gutulmak V;COND+INTEN;PL;3;PST
gutulmak V;SG;1;PST
gutulmak V;COND+INTEN;SG;2;PST
gutulmak V;PRF;PL;1;PST
gutulmak V;PRF;SG;2;INFM;PST
gutulmak V;COND;SG;2
gutulmak V;PRF;PL;3;PST
hormatlamak V;PROG;SG;2;PRS
hormatlamak V;IMP;SG;2;INFM
hormatlamak V;SG;3;PST
hormatlamak V;PL;1;PST
hormatlamak V;PROG;SG;1;PRS
hormatlamak V;SG;3;FUT
hormatlamak V;NFH;SG;1;PST
hormatlamak V;INTEN;PL;1;PST
hormatlamak V;INTEN;PL;3;PST
hormatlamak V;SG;1;PST
hormatlamak V;COND+INTEN;PL;3;PST
hormatlamak V;FRML;COND;SG;2
hormatlamak V;FRML;INTEN;SG;2;PST
hormatlamak V;PL;3;FUT
hormatlamak V;SG;1;FUT
hormatlamak V;COND;PL;3
hormatlamak V;NFH;SG;2;PST
hormatlamak V;FRML;SG;2;PST
hormatlamak V;FRML;NFH;SG;2;PST
hormatlamak V;PRF;FRML;SG;2;PST
hormatlamak V;PL;1;FUT
hormatlamak V;FRML;IMP;SG;2
hormatlamak V;COND;SG;3
hormatlamak V;NFH;PL;1;PST
hormatlamak V;SG;2;INFM;FUT
hormatlamak V;SG;2;INFM;PST
hormatlamak V;PL;3;PST
hormatlamak V;COND;PL;1
hormatlamak V;INTEN;SG;3;PST
hormatlamak V;PRF;PL;1;PST
hormatlamak V;FRML;COND+INTEN;SG;2;PST
hormatlamak V;PRF;PL;3;PST
hormatlamak V;INTEN;SG;1;PST
hormatlamak V;COND+INTEN;PL;1;PST
hormatlamak V;COND+INTEN;SG;3;PST
hormatlamak V;INTEN;SG;2;PST
hormatlamak V;FRML;IMP;PL;2
hormatlamak V;PROG;PL;3;PRS
hormatlamak V;NFH;PL;3;PST
hormatlamak V;IMP;PL;2;INFM
hormatlamak V;COND+INTEN;SG;1;PST
hormatlamak V;PRF;SG;3;PST
hormatlamak V;COND;SG;1
hormatlamak V;SG;3;PST
hormatlamak V;COND+INTEN;SG;2;PST
hormatlamak V;SG;2;INFM;PST
hormatlamak V;COND;SG;2
hormatlamak V;SG;1;PST
hormatlamak V;NFH;SG;3;PST
hormatlamak V;FRML;SG;2;FUT
hormatlamak V;PROG;FRML;SG;2;PRS
hormatlamak V;PL;3;PST
hormatlamak V;PROG;PL;1;PRS
hormatlamak V;PL;1;PST
hormatlamak V;PRF;SG;2;INFM;PST
hormatlamak V;PROG;SG;3;PRS
hormatlamak V;PRF;SG;1;PST
|
50174ccf6e14a01e15d9882fcc3074ee7e14fe2f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3776/CH1/EX1.6/Ex1_6.sce | 11a4a83f1a380d07465306c3bc54d2f14db17ad0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 332 | sce | Ex1_6.sce | clear
//Given
mass = 5 //Kg
frequency = 10 //Hz
stress_allow = 200 //MPa
R = 0.5 //m
//calculations
//
w = 2*%pi*frequency //rad/sec
a = (w**2)*R //sq.m/sec
F = mass*a //N
A_req = F/stress_allow //sq.mm , The required area for allowing stress
printf("\n The required size of rod is: %0.2f sq.mm",A_req)
|
082f575926fcd5f18fca976150b96ae47c203993 | 4a1949be12fbe9a81d9308381b34c611e65877ca | /tests/execution/linked_list.tst | 874ac8ba15a7b98f19754af949e5303ec526d087 | [] | no_license | ng88/trad | 26439d8fe2284ece19d6fbfaa397d3f6f0d13e78 | e4d3d4d56928539144d30c5c49e01e65c9b8729c | refs/heads/master | 2020-12-05T07:31:25.854231 | 2008-02-29T10:15:34 | 2008-02-29T10:15:34 | 67,351,952 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,378 | tst | linked_list.tst |
/* Exemple de programme : linked list d'entier avec iterator
*/
/** Iterator (interface generale) */
class Iterator
public Iterator() {}
public integer hasNext() { return (0); }
public integer next() { return (0); }
end
/** Un noeud de la LinkedList */
class Node
private integer val;
private Node next;
public Node(integer v)
{
val := v;
next := nil;
}
public integer val() { return(val); }
public Node next() { return(next); }
public void setVal(integer v) { val := v; }
public void setNext(Node n) { next := n; }
end
/** Iterator pour notre LinkedList */
class LLIterator
inherit Iterator
private Node current;
public LLIterator(Node start) { current := start; }
public integer hasNext() { return(current != nil); }
public integer next()
{
VAR integer val;
if current = nil then
return(0);
endif
val := current.val();
current := current.next();
return(val);
}
end
/** Linked list */
class LinkedList
private Node first;
private Node last;
private integer size;
public LinkedList()
{
first := nil;
last := nil;
size := 0;
}
public void add(integer v)
{
VAR Node n;
n := new Node(v);
if first = nil then
first := n;
else
last.setNext(n);
endif
last := n;
size := size + 1;
}
public Iterator iterator()
{
VAR Iterator ret;
ret := new LLIterator(first);
return(ret);
}
public void clear()
{
VAR Node current, t;
current := first;
while current != nil do
{
VAR string foo;
t := current.next();
freeobj(current);
current := t;
}
size := 0;
first := nil;
last := nil;
}
public integer size() { return(size); }
end
class TestLL
public TestLL() {}
public void burn(LinkedList l, integer n)
{
VAR integer i;
while i < n do
{
l.add(n * i);
i := i + 1;
}
}
public void main()
{
VAR LinkedList l1;
VAR Iterator it;
l1 := new LinkedList();
l1.add(3);
l1.add(36);
l1.add(89);
l1.add(0);
l1.add(5);
l1.add(-623);
l1.add(12);
prints("Taille de la liste=");
printi(l1.size());
prints("\n");
it := l1.iterator();
while it.hasNext() do
{
prints("valeur=");
printi(it.next());
prints("\n");
}
burn(l1, 50000);
prints("Taille de la liste=");
printi(l1.size());
prints("\n");
l1.clear();
freeobj(l1);
}
end
|
d98c8ada35aff5660ec3072c634583bae6125189 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2207/CH3/EX3.7.4/ex_3_7_4.sce | 3ca6cf54ca86841805d3857bead88d667b305878 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,309 | sce | ex_3_7_4.sce | // Example 3.7.4:Vldc,FPF and PF
clc;
clear;
close;
format('v',4)
disp("part (a)")
vm=1;//assume
alpha=[0;30;60;90;120;150;180];//in degree
for i=1:7
vldc(i)=(vm/%pi)*(1+cosd(alpha(i)));//
disp("average load voltage (Vldc) for angle "+string(alpha(i))+" degree is Vm*"+string(vldc(i))+" ")
end
subplot (2,2,1)
plot2d(alpha,vldc);//
xlabel("alpha(degrees)")
ylabel("average voltage (Vldc)")
xtitle("(a) Variation of Vldc Vs alpha")
disp("part (b)")
format('v',6)
vm=1;//assume
alpha=[0;30;60;90;120;150;180];//in degree
for i=1:7
FPF(i)=cosd((alpha(i))/2)
disp("displavefactor or fundamental power factor (FPF) for fringle angle "+string(alpha(i))+" degree is "+string(FPF(i))+" ")
end
subplot (2,2,2)
plot2d(alpha,FPF);//
xlabel("alpha(degrees)")
ylabel("FPF")
xtitle("(b) Variation of FPF Vs alpha")
disp("part (c)")
vm=1;//assume
alpha1=[0;30;60;90;120;150;180];//
alpha=[0;%pi/6;%pi/3;%pi/2;(2*%pi)/3;(5*%pi)/6;%pi];//in degree
for i=1:6
PF(i)=(sqrt(2)*(1+cos(alpha(i))))/sqrt((%pi)*(%pi-alpha(i))) ;
PF(7)=0;//
disp("displavefactor or fundamental power factor (FPF) for fringle angle "+string(alpha1(i))+" degree is "+string(PF(i))+" ")
end
subplot (2,2,3)
plot2d(alpha1,PF);//
xlabel("alpha(degrees)")
ylabel("FPF")
xtitle("(c) Variation of PF Vs alpha")
|
b7ea7ed84fd346375176fa835f6fc29d1739f52c | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH10/EX10.12/example10_12.sce | b0110829be7455184353ddf0035fc8a9e13e6d31 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,517 | sce | example10_12.sce | //Chapter 10
//Example 10_12
//Page 245
clear;clc;
f=50;
ll=100;
pd=20*1e6;
pfr=0.9;
v_r=110*1e3;
r=0.2;
xl=0.4;
y=2.5*1e-6;
tr=r*ll;
txl=ll*xl;
ty=ll*y;
vr=v_r/sqrt(3);
ir=pd/sqrt(3)/v_r/pfr;
z=tr+%i*txl;
ir_p=ir*(pfr-%i*sin(acos(pfr)));
v1=vr+ir_p*z/2;
ic=%i*ty*v1;
is=ir_p+ic;
vs=v1+is*z/2;
lv=abs(vs)*sqrt(3);
loss=3*is^2*tr/2+3*ir^2*tr/2;
n=(pd)/(pd+loss);
printf("Total resistance per phase = %.2f ohm \n\n", tr);
printf("Total reactance per phase = %.2f ohm \n\n", txl);
printf("Total susceptance per phase = %.5f ohm \n\n", ty);
printf("Phase impedance = %.2f+j(%.2f) \n\n", real(z), imag(z));
printf("Recieving end voltage = %.0f V \n\n", vr);
printf("Load current = %.2f A \n\n", ir);
printf("Impedance per phase = %.2f+j(%.2f) \n\n", real(z), imag(z));
printf("Receiving end voltage is the reference phasor = %.2f+j0 \n\n", vr);
printf("Load current = %.2f+j(%.2f) \n\n", real(ir_p), imag(ir_p));
printf("Voltage across C = %.2f+j(%.2f) \n\n", real(v1), imag(v1));
printf("Charging current = %.2f+j(%.2f) \n\n", real(ic), imag(ic));
printf("Sending end current = %.2f+j(%.2f) \n\n", real(is), imag(is));
printf("Sending end current magnitude = %.2f A \n\n", abs(is));
printf("Sending end voltage = %.2f+j(%.2f) \n\n", real(vs), imag(vs));
printf("Sending end voltage magnitude = %.2f V \n\n", abs(vs));
printf("Line value of sending end voltage = %.2f V \n\n", lv/1000);
printf("Total line losses for three phases = %.3f MW \n\n", loss/1e6);
printf("Transmission efficiency = %.2f %% \n\n", n*100);
|
a1da06650519705589a3abd2c83c3ebfbe1f2d50 | 9b60b7963181dd94c8d10cdb75a83bc010957e71 | /taf_monitor_code/taf_monitor/tests/acceptance/03-autumn_rain_band_and_strong_winds.tst | 27dd9ca812bb2541589c5589796d4cf0b569e913 | [] | no_license | alanyon/python | 577773100eac269750925c1f924edc51060ca865 | cbfe0f34fe61ed0495572fa05ea6bf4293ef15bb | refs/heads/master | 2023-07-13T17:27:59.555648 | 2021-08-09T15:59:08 | 2021-08-09T15:59:08 | 393,341,633 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,444 | tst | 03-autumn_rain_band_and_strong_winds.tst | {
"EGTE 150800Z 1509/1518 27015KT 9999 BKN010 BECMG 1509/1512 34015KT 7000 -RA BKN007 TEMPO 1512/1518 35025G35KT 4000 RA BKN004": {
"TAF matches METAR base conditions exactly": {
"metar": "EGTE 150850Z 27015KT 9999 BKN010",
"test time": "20201115T0900Z",
"expected": ""
},
"TAF does not cover METAR - cloud base lifts": {
"metar": "EGTE 151050Z 27015KT 9999 BKN015",
"test time": "20201115T1100Z",
"expected": "EGTE TAF bust by cloud"
},
"TAF does not cover METAR - early rain": {
"metar": "EGTE 151050Z 27015KT 9999 RA BKN010",
"test time": "20201115T1100Z",
"expected": "EGTE TAF bust by weather"
},
"TAF becmg group covers METAR - wind direction very wrong, but covered by becmg": {
"metar": "EGTE 151050Z 20015KT 9999 BKN010",
"test time": "20201115T1100Z",
"expected": ""
},
"TAF does not cover METAR - wind speed outside bounds during becmg period": {
"metar": "EGTE 151050Z 27025KT 9999 BKN010",
"test time": "20201115T1100Z",
"expected": "EGTE TAF bust by wind"
},
"TAF tempo group covers METAR - wind speed differs within bounds": {
"metar": "EGTE 151250Z 34030G40KT 7000 -RA BKN007",
"test time": "20201115T1300Z",
"expected": ""
},
"TAF tempo group covers METAR - rain": {
"metar": "EGTE 151250Z 34015KT 7000 RA BKN007",
"test time": "20201115T1300Z",
"expected": ""
},
"TAF tempo group covers METAR - lower cloud": {
"metar": "EGTE 151250Z 34015KT 7000 -RA BKN003",
"test time": "20201115T1300Z",
"expected": ""
},
"TAF tempo group covers METAR - lower visibility": {
"metar": "EGTE 151250Z 34015KT 4000 -RA BKN007",
"test time": "20201115T1300Z",
"expected": ""
},
"TAF does not cover METAR - rain too heavy": {
"metar": "EGTE 151250Z 34015KT 7000 +RA BKN007",
"test time": "20201115T1300Z",
"expected": "EGTE TAF bust by weather"
},
"TAF does not cover METAR - cloud too low": {
"metar": "EGTE 151250Z 34015KT 7000 -RA BKN001",
"test time": "20201115T1300Z",
"expected": "EGTE TAF bust by cloud"
},
"TAF does not cover METAR - visibility too low": {
"metar": "EGTE 151250Z 34015KT 0800 -RAFG BKN007",
"test time": "20201115T1300Z",
"expected": "EGTE TAF bust by visibility"
},
"TAF does not cover METAR - wind too strong": {
"metar": "EGTE 151250Z 34035G45KT 7000 -RA BKN007",
"test time": "20201115T1300Z",
"expected": "EGTE TAF bust by wind"
},
"TAF does not cover METAR - multiple failures": {
"metar": "EGTE 151250Z 34035KT 0800 +RAFG BKN001",
"test time": "20201115T1300Z",
"expected": "EGTE TAF bust by wind\nEGTE TAF bust by visibility\nEGTE TAF bust by weather\nEGTE TAF bust by cloud"
}
},
"description": "An autumn day with a band of rain and strong winds arriving from the south-west. The cloud and visibility are expected to deteriorate significantly with any moderate rain."
}
|
f1b17975dfbfc025914f91f28d99f8df103021f1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1319/CH1/EX1.34/1_34.sce | 7b8397d8e72514104f6da8c90ba2ec5ce04ddc4d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 556 | sce | 1_34.sce | //Determine the phase angle between 220V main and the current
clc;
clear;
f=50;//Frequency of AC Mains
Vni=100;//Voltage for non inductive load
Ini=10; // Current drawn by a non inductive load
Rni=Vni/Ini;// Resistance of an non inductive load
Vac=220;// Supply from AC Mains
Z=Vac/Ini;
X=sqrt((Z^2)-(Rni^2));
phi=atand(X/Rni);// Phase Angle
L=X/(2*%pi*f);//Inductance
printf('The inductance of a reactor to be connected in series = %g H\n',L)
printf('The phase angle between the 220V mains and the current = %g degrees\n',phi)
|
79ac84f4173b4a65a74150c7a2e6985947fa1cd5 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/isstable/isstable5.sce | 73e765a5cabe50e5d5f65d7a4a0493dde74ece4c | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 79 | sce | isstable5.sce | //check o/p for empty i/p vector
a=[];
b=isstable([]);
disp(b);
//output
// 1
|
24451f48d7ea81c114a65ad220fe1e7c5442b5cb | 449d555969bfd7befe906877abab098c6e63a0e8 | /1682/CH12/EX12.4/Exa12_4.sce | 6aa9982382e4d5772535e7fc7183fb8b289f44e1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 936 | sce | Exa12_4.sce | //Exa 12.4
clc;
clear;
close;
//given data :
r=12000;//in units/year
k=2000*12;//in units/year
Co=400;//in Rs./setup
Cc=0.20*12;//in Rs./year
Cs=15;//in Rs./unit/year
EOQ=sqrt((2*Co*k*r*(Cc+Cs)/(Cc*(k-r)*Cs)));//in units
Q=round(EOQ);//units
disp(Q,"Ordering quantity in units : ");
Q1=sqrt(2*Co*Cc*r*(k-r)/(Cs*(Cc+Cs)*k));//in units
disp(round(Q1),"Maximum Inventory in units : ");
Q2=(Q*(k-r)/k)-Q1;//in Units
disp(round(Q2),"Maximum shortage quantity in units : ");
t=Q/r;//in year
t=t*365;//in days
disp(round(t),"Cycle time in days: ");
t1=(Q2/r)*365;//in days
t2=(Q2/(k-r))*365;//in days
t3=(Q1/(k-r))*365;//in days
t4=(Q1/r)*365;//in days
disp(round(t1),"Period of shortage in days : ");
disp(round(t2),"Period of production satisfying back order in days : ");
disp(ceil(t3),"Period of production satisfying period requirement in days : ");
disp(ceil(t4),"Period of consumption only in days : ");
|
902eec06809b0cf803e75dadae84c109dc3f280b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1022/CH11/EX11.1/11_1.sce | a02b53147b485addde8ca95ed5c73c6339d6dbb3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 224 | sce | 11_1.sce | clc
//initialisation of variables
T= 76 //F
T1= 21 //F
Tw= 67 //W
h= 1.5 //Btu/
A= 1 //ft^2
h0= 6.5 //Btu/hr
//CALCULATIONS
q= h*A*(T-Tw)
t= (q/(h0*A))+T1
//results
printf ('Outside wall temperature= %.1f F',t)
|
5fce7d5480aef3fac2854553b256a6062ede723c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2006/CH7/EX7.6/ex7_6.sce | d2ed3e722ef277a92f4cab7fb33d8a496ac03571 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,139 | sce | ex7_6.sce | clc;
m=1; // Massflow rate of the steam in kg/s
p1=3.5; // Pressure at inlet in MPa
T1=400; // Temperature at inlet in degree celcius
V1=250; // Velocity of stesm at inlet in m/s
p2=50; // Pressure at outlet in kPa
T2=100; // Temperature at outlet in degree celcius
V2=30; // Velocity of stesm at outlet in m/s
// For actual expansion in the turbine
h1=3222.3; h2=2682.5; // specific enthalpy in kJ/kg at inlet and exit
wa=h1-h2+(V1^2-V2^2)/2000; // Work done
W=m*wa; // Power output
disp ("kW",W,"Power output of the turbine = (Error in textbook)");
// For reversible adiabatic expansion
// Following are the values taken from steam table
s1=6.8405; // specific entropy in kJ/kg K
s2s=s1; // Isentropic expansion
sf2=1.091; sfg2=6.5029; // specific entropy in kJ/kg K
hf2=340.49; hfg2=2305.4; // specific enthalpy in kJ/kg
x2s=(s1-sf2)/sfg2; // Quality of steam at state 2
h2s=hf2+x2s*hfg2; // specific enthalpy in kJ/kg
ws=h1-h2s+(V1^2-V2^2)/2000; // Isentropic Work done
eff_isen=wa/ws; // Isentropic efficiency of the turbine
disp("%",eff_isen*100,"Isentropic efficiency of the turbine = (Error in textbook)")
|
8d2f964ee1d03e0b860ed01fa5b965c0ac38a0b0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3733/CH17/EX17.5/Ex17_5.sce | 0ee28a1b9e37aa8562ce37463e2945e00c9e1db4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,037 | sce | Ex17_5.sce | // Example 17_5
clc;funcprot(0);
//Given data
T_s=56;// Temperature of steam entering the condenser in °C
T_a=46;// Temperature at the air pump suction in °C
P_b=76;// The barometer reading in cm of Hg
Q=90;// The discharge of dry air pump in m^3/min
R=287;// J/kg.k
//Calculation
//(a)
//From steam tables,at saturation temperature of 56°C
p_s=0.1684;//Pressure of steam in bar
p_s=p_s/0.01359// cm of Hg
p_a=0;// Partial pressureair at the inlet of condenser in cm of Hg
p_t=p_s+p_a;
p_v=P_b-p_t;//Vacuum in the condenser in cm of Hg
//(b)
//From steam tables,at saturation temperature of 46°C
p_s1=0.1028;// bar
v_s=14.56;// m^3/kg
p_a1=(p_t*0.01359)-p_s1;// bar
m_a=(p_a1*10^5*Q*60)/(R*(T_a+273));//The air leakage in the condenser per hour in kg/hr
//(c)
Ls=(Q*60)/v_s;// Loss of condensate in kg/hr
printf('\n(a)The vacuum in the condenser=%0.1f cm of Hg \n(b)The air leakage in the condenser=%0.1f kg/hr \n(c)Loss of condensate=%0.0f kg/hr',p_v,m_a,Ls);
// The answer vary due to round off error
|
1b9b8b9e47ae39b35632cde0ab1f1f096d0cc11d | 449d555969bfd7befe906877abab098c6e63a0e8 | /557/CH16/EX16.2/2.sce | 09820f38c470d446036a561d5aa07538e566b2d9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 285 | sce | 2.sce | clc; funcprot(0);//Example 16.2
//Initializing the variables
B = [1.4 0.9];
D = [0.6 0.32];
g = 9.81;
h = 0.03;
Z = 0.25;
//Calculations
Q1 = B(2)*D(2)*sqrt(2*g*h/(1-(B(2)*D(2)/B(1)*D(1))^2))
E = D(1)-Z;
Q2 = 1.705*B(2)*E^1.5;
disp(Q2 , "Volume flow rate (m3/s) :");
|
aff1e29b6193bbbed6c8aa4c94c9f754f8db2346 | 63c8bbe209f7a437f8bcc25dc1b7b1e9a100defa | /test/0099.tst | 5020ea3735bfdfcee7a7e7147d792ec1ba21943e | [] | no_license | fmeci/nfql-testing | e9e7edb03a7222cd4c5f17b9b4d2a8dd58ea547c | 6b7d465b32fa50468e3694f63c803e3630c5187d | refs/heads/master | 2021-01-11T04:09:48.579127 | 2013-05-02T13:30:17 | 2013-05-02T13:30:17 | 71,239,280 | 0 | 0 | null | 2016-10-18T11:01:57 | 2016-10-18T11:01:55 | Python | UTF-8 | Scilab | false | false | 383 | tst | 0099.tst | SPLItTer pR {}
FiLter v { }
filTER x {nOt q Or NOt iMhJG oR yI OR noT q oR NoT u }
I -> PqK
gROUpeR RM {AggrEGaTe Max(L) As QNx }
UngrOuper X { }
GrouPfIltER p {NOt bITANd ( X, ) oR NOT 152.166.6.13/3 << 226.169.89.168/52 or not BItoR (7, BitOr (254.252.250.11, ), ) or Q ( FSPeW, fA:Bf:be:2D:AB:CA
, pV, ) nOt B >> D }
merGer O { mOdule I { BRAnches Nw } ExpORT s } |
d965bf92878e198264ce18e3d47944dafd893019 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2672/CH3/EX3.7/Ex3_7.sce | 4a2ff99691515fca0e516b05522bfc819311d6c0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex3_7.sce | //Example 3_7
clc;
clear;
close;
format('v',6);
//given data :
L=0.5;//H
C=100;//micro F
V=230;//V
f=50;//Hz
R=25;//ohm
Vm=sqrt(2)*V;//V
omega=2*%pi*f;//rad/s
disp("Voltage equation")
disp("V="+string(Vm)+"*sin"+string(omega)+"*t");
XL=omega*L;//ohm
XC=1/omega/(C*10^-6);///ohm
disp("Current through the resistor will be ");
disp("i="+string(Vm/R)+"*sin("+string(2*%pi*f)+"*t)");
disp("Current through the inductor will be ");
disp("i="+string(Vm/XL)+"*sin("+string(2*%pi*f)+"*t-90)");
disp("Current through the capacitor will be ");
disp("i="+string(Vm/XC)+"*sin("+string(2*%pi*f)+"*t+90)");
//Answer is not accurate in the book.
|
0dddfb62e1a262e64dc6c5fccb644a3063593c56 | 449d555969bfd7befe906877abab098c6e63a0e8 | /527/CH3/EX3.14/3_14exam.sce | f81f59ed67356b3b9ea9b903cb237246a1b34174 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,239 | sce | 3_14exam.sce | //Engineering and Chemical Thermodynamics
//Example 3.14
//Page no:140
clear ; clc ;
//Given
P_1 = 10 * 10^6 ; // [N/m^2]
T_1 = 600 + 273 ; //[K]
T_H = T_1 ;
T_C = 100 + 273 ; //[K]
P_3 = 10 * 10^4 ; //[N/m^2]
P_4 = P_1 ;
h_cap_1 = 3625.3 ; // [kJ/kg],From steam table
S_cap_1 = 6.9028 ; //[kJ/kgK],From steam table
S_cap_2 = S_cap_1 ; //[kJ/kgK],From steam table
S_cap_v = 7.3593 ; //[kJ/kgK],From steam table
S_cap_l = 1.3025 ; //[kJ/kgK],From steam table
h_cap_l = 417.44 ;// [kJ/kg],From steam table
h_cap_v = 2675.5 ;// [kJ/kg],From steam table
V_cap_l = 10^-3 ; // [m^3/kg],From steam table
X = (S_cap_2 - S_cap_l) / (S_cap_v - S_cap_l);
h_cap_2 = (1 - X) * h_cap_l + X * h_cap_v ;
W_cap_s = h_cap_2 - h_cap_1 ;
h_cap_3 = h_cap_l ;
W_cap_c = V_cap_l * (P_4 - P_3) * 10^-3 ;
h_cap_4 = h_cap_3 + W_cap_c ;
W_net = W_cap_s + W_cap_c ; // [kJ/kg]
n_turb = ( -W_cap_s - W_cap_c) / (h_cap_1 - h_cap_4) ;
disp(" Example: 3.14 Page no : 140") ;
printf("\n Efficiency of the Rankine cycle = %.3f %% \n\n",n_turb * 100 );
n_carnot = 1 - T_C / T_H ;
printf(" Efficiency of the Carnot cycle = %.3f %%\n\n",n_carnot * 100);
disp(" The Rankine efficiecy is lower than Carnot efficiency .")
|
311dd368c87d5cb65a058519d5c3f1d86dd48f97 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2078/CH11/EX11.18/Example11_18.sce | c5785af20c944272d1fcf60f8e0482f93cc3b045 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Example11_18.sce | //Exa 11.18
clc;
clear;
close;
//Given data :
Cs3=1;//micro F/km(between shorted conductor)
Cs=Cs3/3;//micro F
Cdash=0.6;//micro F(Cdash=2*Cc+Cs : between two shorted conductor)
Cc=(Cdash-Cs)/2;//micro F
C2=1/2*[3*Cc+Cs];//micro F
disp(C2,"Capacitance between any two cores(micro F)");
C2dash=2*Cc+2/3*Cs;//micro F
disp(C2dash,"Capacitance between any two shorted conductors and third conductor(micro F)");
|
a51c78ce24c0eda2194ba8e2c197b4a0cd094aba | 0e1b45c07f0938ba9c8a003d6ae1cf2d8315efdb | /acmp.ru/480, Coin game/test-03.tst | d32b8327c20566ec18a3d7426f854771a3a49b2e | [] | no_license | Kot-Angens/acm | c85d8582c3e84f218415321743864b9680e01f2e | 05472eaa0fff7abb6679826085da5e0c990df4cb | refs/heads/master | 2021-01-24T22:36:05.159612 | 2012-10-02T13:51:56 | 2012-10-02T13:51:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 44 | tst | test-03.tst | 5 3 4 8 1 7 2
~~~~~~~~~~~~~~~~~~~~~~~~~~
18
|
98fddd665d2b35df3a3e85b5c0c7126545b32465 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1892/CH1/EX1.69/Example1_69.sce | 6f2e85cf7c10b9cabe89b640c4baefb6d92570c5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 631 | sce | Example1_69.sce | // Example 1.69
clc;clear;close;
// Given data
format('v',7);
P=6;//no. of poles
f1=50;//in Hz
f2=1.5;//in Hz
Zo=150;//useful Torque in N-m
FrictionLoss=10;//in N-m
Psc=700;//stator loss in watt
//calculations
Ns=120*f1/P;//in rpm
S=f2/f1;//slip
Nr=(1-S)*Ns;//in rpm
wr=2*%pi*Nr/60;//in rad/sec
Po=Zo*wr;//in watts
Pmd=(Zo+FrictionLoss)*wr;//in watts
//Part (a)
Prc=S/(1-S)*Pmd;//in watts
disp(Prc/1000,"(a) Rotor Copper Loss in KW : ");
//Part (b)
Pi=Pmd+Prc+Psc;//in watts
disp(Pi/1000,"(b) Input to the motor in KW : ");
//Part (c)
Eff=Po/Pi;//Effiiency
disp(Eff*100,"(d) Efficiency in % : ");
|
cc6aa1214e2215ea3e93163fec3db1bac86d75c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3793/CH6/EX6.4/exp_6_4.sce | 82907e5110d95d49b1d68aa5b8ed517da3b390f4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 347 | sce | exp_6_4.sce | clear;
clc;
y=[4 3 6;2 8 5;1 5 9];
nbus=3;
l11=4;
disp(y(1,2));
u12=(1/l11)*y(1,2);
u13=(1/l11)*y(1,3);
l21=2;
l22=y(2,2)-(l21*u12);
u23=(1/l22)*(y(2,3)-(l21*u13));
l31=1;
l32=y(3,2)-(l31*u12);
l21=2;
l33=y(3,3)-(l31*u13)-(l32*u23);
Yb=[l11 u12 u13; l21 l22 u23;l31 l32 l33];
mprintf("matrix for table of factor is\n")
disp(Yb);
|
316e6c1b4c0e06d0d31cd6a21de3f38199c63860 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1962/CH3/EX3.7/example3_7.sce | ee355bbf51761f60602b978a6157572825cb6735 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 224 | sce | example3_7.sce |
//example 3.7
//page 142
clc; funcprot(0);
// Initialization of Variable
//solved for a general value
x=1;
y=1;
k1=-2*sin(y)//dv/dx
k2=-x^2*sin(y)//du/dy;
R=k1-k2;
if R~=0 then
disp("flow is rotational");
end
|
b8eed223ac21e3563c4b3f7ec6a5155a4f2457cd | 449d555969bfd7befe906877abab098c6e63a0e8 | /135/CH5/EX5.15/EX15.sce | 02c65cacfb337c9948e91afc49eddfe8de7ed379 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 495 | sce | EX15.sce | // Example 5.11: IC1, IC2, IC3
clc, clear
bta=125;
VBE=0.7; // in volts
VT=25e-3; // Voltage equivalent to temperatue at room temperature in volts
// From Fig. 5.27
VC=9; // in volts
RC=30; // in kilo-ohms
RE=1.94; // in kilo-ohms
I_ref=(VC-VBE)/RC; // in mili-amperes
IC=I_ref*bta/(3+bta); // in mili-amperes
for i=0.01:0.001:0.5
if abs(VT*log(IC/i)/(i*(1+1/bta))-RE)<=0.1 then
break;
end
end
disp(IC,"IC1 (mA) =");
disp(IC,"IC2 (mA) =");
disp(i,"IC3 (mA) ="); |
0db3ae556c5f61aca0bb28e6e9eb73141babe0cc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1238/CH8/EX8.16/8_16.sce | 9c9ef990aeca0f4636f2e61023033388668d1cdb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 365 | sce | 8_16.sce | //calculating required data//
//example 16//
clc
//clears the command window//;
clear
//clears//
V=10;//full scale voltage
W=1/2^12;//weight of LSB//
R=V*W;//resolution//
printf('resolution=%f volt\n',R);//result is displayed//
S=R;//step size//
R1=S/V*100;//percentage resolution//
printf('percentage resolution=%f percent',R1)
//result displayed//
|
f6dbfb2b8341fe64e5302616ffaae4aa210f9f85 | 484e05962b62928b49ae2e8fd80d4c45031eb3dc | /outsum/outsum.tst | 5f27e14cdc2a41eed4e8bc3177b6cbb6122828a4 | [] | no_license | Royallle/hdl_cfx | adbb9dce7e3ae69507a4c1b26cddbd3b3a9eb0dc | 52cbe66f365516b659b65909e86aacb60da0342b | refs/heads/master | 2022-02-24T06:54:22.169423 | 2019-09-15T15:29:35 | 2019-09-15T15:29:35 | 110,464,895 | 0 | 0 | null | 2017-11-14T13:40:42 | 2017-11-12T20:05:58 | Scilab | UTF-8 | Scilab | false | false | 341 | tst | outsum.tst | // Ficheiro teste outsum
load outsum.hdl,
output-file outsum.out,
compare-to outsum.cmp,
output-list a%B3.5.3 b%B3.5.3 sum%B3.5.3;
set a %B00000, // 0+0
set b %B00000,
eval,
output;
set a %B00101, // 5+5
set b %B00101,
eval,
output;
set a %B00010, // 2+1
set b %B00001,
eval,
output;
set a %B00010, // 2+20
set b %B10100,
eval,
output;
|
71724c8b46b3ce17c4d481d51a7f335a603ed486 | 449d555969bfd7befe906877abab098c6e63a0e8 | /569/CH2/EX2.2/2_2.sci | 6eff0609e69e06598157740c758352fdf083e511 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 177 | sci | 2_2.sci | // calculating true value of the temperature
clc;
disp('calculating true value of the temperature')
Am = 95.45;
Sc=-0.08;
At=Am+Sc;
disp(At,'True Temperature(Degree C)='); |
8e40acd6728102627a79e9b1dd2b978d4a9808d7 | 4a1effb7ec08302914dbd9c5e560c61936c1bb99 | /Project 2/Experiments/Ripper-C/results/Ripper-C.flare-10-1tra/result4s0.tst | ef95a0bb3e8e2674f70f5c811b1465710b5244f8 | [] | no_license | nickgreenquist/Intro_To_Intelligent_Systems | 964cad20de7099b8e5808ddee199e3e3343cf7d5 | 7ad43577b3cbbc0b620740205a14c406d96a2517 | refs/heads/master | 2021-01-20T13:23:23.931062 | 2017-05-04T20:08:05 | 2017-05-04T20:08:05 | 90,484,366 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 950 | tst | result4s0.tst | @relation flare
@attribute LargestSpotSize{A,R,S,X,K,H}
@attribute SpotDistribution{X,O,I,C}
@attribute Activity{1,2}
@attribute Evolution{1,2,3}
@attribute Prev24Hour{1,2,3}
@attribute HistComplex{1,2}
@attribute BecomeHist{1,2}
@attribute Area{1,2}
@attribute C-class{0,1,2,3,4,5,6,7,8}
@attribute M-class{0,1,2,3,4,5}
@attribute X-class{0,1,2}
@attribute Class{H,D,C,B,E,F}
@inputs LargestSpotSize,SpotDistribution,Activity,Evolution,Prev24Hour,HistComplex,BecomeHist,Area,C-class,M-class,X-class
@outputs Class
@data
B B
B B
D E
D C
B B
E D
F F
H H
C C
E C
H H
H H
H H
H H
D C
H H
C C
D C
D C
C C
H H
D C
H H
H H
B B
C C
D C
H H
H H
B B
C C
B B
B B
B B
B B
D C
H H
D C
D E
C C
D C
D E
D E
F D
B B
C C
C B
H H
H H
B B
C C
D B
H H
H H
C C
D D
H H
F E
C F
H H
C C
B B
H H
H H
F E
F C
H H
C C
B B
C C
C C
H H
C C
H H
H H
D C
H H
E C
D C
C C
C C
H H
H H
E E
E E
D F
C C
H H
E D
D E
D C
D C
E B
H H
D D
B B
H H
H H
E F
C C
E E
H H
B B
C C
H H
D D
D D
|
2bfe0b2e42efc1e124ccac34a48faec5ffe2d491 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1964/CH15/EX15.3/ex15_3.sce | 727e2f5301a7479fa3c32b83b8248a3e354ee864 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 499 | sce | ex15_3.sce | //Chapter-15, Example 15.3, Page 493
//=============================================================================
clc
clear
//INPUT DATA
x1=112;//in decimal form
x2=253;//in decimal form
//CALCULATIONS
y1=dec2base(x1,16)//converting decimal to hexadecimal
y2=dec2base(x2,16)//converting decimal to hexadecimal
disp(y1);
disp(y2);
//=================================END OF PROGRAM=======================================================================================================
|
529c06b6d9a4124cb85d5143c40f970cfb243574 | d465fcea94a1198464d7f8a912244e8a6dcf41f9 | /kMatlab/kGetEncoders.sci | 634af140b743ab31ab34996b78eaf45d8761d708 | [] | no_license | manasdas17/kiks-scilab | 4f4064ed7619cad9e2117a6c0040a51056c938ee | 37dc68914547c9d0f423008d44e973ba296de67b | refs/heads/master | 2021-01-15T14:18:21.918789 | 2009-05-11T05:43:11 | 2009-05-11T05:43:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 826 | sci | kGetEncoders.sci | function [r] = kGetEncoders(ref)
// Ouput variables initialisation (not found in input variables)
r=[];
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
//KGETENCODERS Get the encoder values of Khepera
//
//value = kGetEncoders(ref)
// Return a vector of 2 values corresponding to the position of
// the wheels of Khepera.
// Use the reference obtained with kopen.
retries = 3;
retry = 1;
errmsg = "none yet";
while asciimat(errmsg)&bool2s(retry<=retries)
reply = kcmd(ref,"H");
// !! L.14: Matlab function sscanf not yet converted, original calling sequence used
[r,count,errmsg] = sscanf(reply,"h,%d,%d");
if errmsg then
disp("Error reading encoders. Retrying...")
retry = retry+1;
end;
end;
if errmsg then
disp("Encoders failed.")
r = -1;
end;
endfunction
|
a61dc4b3c9878404d3eb069b123a20f5df6170b9 | 4b2d9739203df5e1b590979df8cdf3282bf81cb2 | /projects/p1/Triangulo.tst | 9503a91d3a516983702bee5b1fa14f80eac933e0 | [] | no_license | serramatutu/mc404 | 2bdf423a839d118c7f09b3d272ba76696d8cc1d3 | 67950b7832acd0b4f6d1db854f57bb78241df03e | refs/heads/main | 2023-06-09T11:42:23.739624 | 2021-07-01T17:47:01 | 2021-07-01T17:47:01 | 348,369,286 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,121 | tst | Triangulo.tst | load Triangulo.asm,
output-file Triangulo.out,
// compare-to Triangulo.cmp,
output-list RAM[0]%D2.6.2 RAM[1]%D2.6.2 RAM[2]%D2.6.2 RAM[4]%D2.6.2;
set RAM[0] 0,
set RAM[1] 0,
set RAM[2] 0;
repeat 70 {
ticktock;
}
output;
set PC 0,
set RAM[0] 10,
set RAM[1] 2,
set RAM[2] 2;
repeat 70 {
ticktock;
}
output;
set PC 0,
set RAM[0] 2,
set RAM[1] 10,
set RAM[2] 2;
repeat 70 {
ticktock;
}
output;
set PC 0,
set RAM[0] 2,
set RAM[1] 2,
set RAM[2] 10;
repeat 70 {
ticktock;
}
output;
set PC 0,
set RAM[0] 3,
set RAM[1] 4,
set RAM[2] 5;
repeat 70 {
ticktock;
}
output;
set PC 0,
set RAM[0] 4,
set RAM[1] 3,
set RAM[2] 5;
repeat 70 {
ticktock;
}
output;
set PC 0,
set RAM[0] 5,
set RAM[1] 4,
set RAM[2] 3;
repeat 70 {
ticktock;
}
output;
set PC 0,
set RAM[0] 5,
set RAM[1] 3,
set RAM[2] 4;
repeat 70 {
ticktock;
}
output;
set PC 0,
set RAM[0] 5,
set RAM[1] 5,
set RAM[2] 10;
repeat 70 {
ticktock;
}
output;
set PC 0,
set RAM[0] 5,
set RAM[1] 10,
set RAM[2] 5;
repeat 70 {
ticktock;
}
output;
set PC 0,
set RAM[0] 10,
set RAM[1] 5,
set RAM[2] 5;
repeat 70 {
ticktock;
}
output;
|
bc9baa734009df0d3b2aaabe29a23a90207f0381 | df9b25ceab5916f0a9256bce2d326a82f8daa2b8 | /app/public/views/student_get.sce | a62954a398e3fcb89ca3802948e47b391c0be1b8 | [] | no_license | TheBrenny/SAD-assignment2 | 6625611ebde9619ca45bdb7996ef51a653868059 | 1f2b247c275b2d3327e58b8752d3e2e5a0cc5823 | refs/heads/master | 2023-01-21T16:46:45.535129 | 2020-11-02T01:22:18 | 2020-11-02T01:22:18 | 297,238,799 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 350 | sce | student_get.sce | [[i= partials/header ]]
[[c= components/student || fname=student.firstName lname=student.lastName studentID=student.studentID ]]
<div class="hr"></div>
[[?= badges.length > 0]]
[[e= badge in badges ]]
[[c= components/badge || sID=student.studentID bID=badge.badgeID bname=badge.badgeName ]]
[[?==]]
[[?==]]
[[i= partials/footer ]] |
548596a8bff7fe045494e22a3842e68089b2cd2d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2912/CH5/EX5.11/Ex5_11.sce | 91ad13ff4766dce3a93862d0da3b0af27ad74c5c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 603 | sce | Ex5_11.sce | //chapter 5
//example 5.11
//Calculate glancing angle
//page 107
clear;
clc;
//given
V=100; // in V (Potential)
n=1; // order of diffraction
d=2.15; // in Angstrom (lattice spacing)
//calculate
lambda=12.27/sqrt(V); // calculation of wavelength in Angstrom
printf('\nThe wavelength is\t=%.3f Angstrom',lambda);
// Since 2*d*sind(theta)=n*lambda
//therefore we have
theta=asind(n*lambda/(2*d)); // calculation of glancing angle
printf('\nThe glancing angle is\t=%.1f degree',theta);
// Note: In question V=100 eV but the solution is using V=100V in the book and I have also used V=100V
|
27a052bd42dec20960217ed4911aed7a6320cc19 | 449d555969bfd7befe906877abab098c6e63a0e8 | /788/CH10/EX10.2.a/10_2_data.sci | 80565b55812103f06d5cf4878babb0fd05180aff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 164 | sci | 10_2_data.sci | // Aim:To find minimum inside diameter of pipe in Metric units
// Given:
// flow-rate through pipe:
Q=0.002; //m^3/s
// average fluid velocity:
v=6.1; //m/s
|
88a44975ca28b4b20e170a24a8727f61d899c062 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1628/CH18/EX18.7/Ex18_7.sce | 79e2b94246917bcfa1a76dcf8eef86b7a0ce766e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 495 | sce | Ex18_7.sce |
// Examle 18.7
k=60/20; // Derived from { Q= k x I }
i=12; // Current
Q1=k*i; // Diflection for Spring-Control Current
disp('Diflection for Spring-Control Current = '+string(Q1)+' Digree');
k1=sind(60)/20; // Derived from { SinQ= k x I }
Q2=asind(k1*12); // Diflection for Gravity-Control Current
disp('Diflection for Gravity-Control Current = '+string(Q2)+' Digree');
// 775 18.7 |
969ace9d921777cf68034f9a2e343047bc3d3482 | 449d555969bfd7befe906877abab098c6e63a0e8 | /343/CH1/EX1.66/ex_66.sce | 0e233026b69f2a29f157a1cca8d1227429529e39 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 357 | sce | ex_66.sce | V1=150; //Assigning values to parameters
V2=50;
I1=13;
R1=15;
R2=60;
R3=40;
R4=30;
A=[-1,1;-15,-100]; //Current coeffecients
B=[13;-150];
I=inv(A)*B;
Vth=-V2+R3*I(2,1); //Thevenin voltage
Ra=R1+R2;
Rth=(R3*Ra)/(R3+Ra); //Thevenin resistance
Il=Vth/(R4+Rth);
disp("Amperes",Il," Current flowing in 20 Ohm resistor"); |
22e258f184d4c3a98e5488508c766fff4da824c7 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.3/macros/scicos_blocks/EVTGEN_f.sci | e094407a6f25e73b2fe8a34556a5437a126506ee | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 901 | sci | EVTGEN_f.sci | function [x,y,typ]=EVTGEN_f(job,arg1,arg2)
x=[];y=[];typ=[];
select job
case 'plot' then
standard_draw(arg1)
case 'getinputs' then
[x,y,typ]=standard_inputs(arg1)
case 'getoutputs' then
[x,y,typ]=standard_outputs(arg1)
case 'getorigin' then
[x,y]=standard_origin(arg1)
case 'set' then
x=arg1;
graphics=arg1(2);label=graphics(4)
model=arg1(3);
while %t do
[ok,tt,label]=getvalue('Set Event time',..
['Event Time'],list('vec',1),label)
if ~ok then break,end
graphics(4)=label
if model(11)<>tt then
model(11)=tt
end
x(2)=graphics;x(3)=model
break
end
case 'define' then
tt=0
model=list('trash',[],[],[],1,[],[],[],[],'d',tt,[%f %f],' ',list())
label=string(tt)
gr_i=['tt=model(11);';
'txt=[''Event at'';''time ''+string(tt)];';
'xstringb(orig(1),orig(2),txt,sz(1),sz(2),''fill'');']
x=standard_define([2 2],model,label,gr_i)
end
|
d764b48621dbe503f2352e45d914936c422110d3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2153/CH7/EX7.2/ex_7_2.sce | 547631c2312f1eb90760d2f008d9d4c0e989c36d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 727 | sce | ex_7_2.sce | //Example 7.2 : young's modulus of elasticity,yield point stress, ultimate stress and percentage elongation
clc;
clear;
close;
format('v',9)
//given data :
d=40*10^-3;//in m
W=40*10^3;// load in N
del_l=3.04*10^-5;// in m
L=200*10^-3;// in m
load_max=242*10^3;//in N
l=249*10^-3;// length of specimen in m
l0=(d+L); // in m
A=(%pi*d^2)/4;
b=W/A;
epsilon=del_l/L;
E=(b/epsilon);
disp(E,"young modulus,E(N/m^2) = ")
Y_load=161*10^3;
Y_stress=Y_load/A;
disp(Y_stress,"yield point stress,Y_stress(N/m^2) = ")
U_stress=load_max/A;
disp(U_stress,"ultimate stress,U_stress(N/m^2) = ")
p_elongation=((l-l0)/l0)*100;
disp(p_elongation,"percentage elongation,p_elongation(%) = ")
//percentage elongation is calculated wrong in textbook
|
e03c8dc4686052504b40c35156eda67fde9d259f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2411/CH7/EX7.18/Ex7_18.sce | 464c0ae4a279b6bdcfa27ac08dc718c8ef371ca6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 607 | sce | Ex7_18.sce | // Scilab Code Ex7.18: Page-384 (2008)
clc; clear;
lambda = 1.8e-010; // Wavelength of the X rays, m
n = 1; // Order of diffraction
theta = 60; // Angle of diffraction for the first order, degree
d = n*lambda/(2*sind(theta)); // Interplanar spacing, m
// Since for a simple cubic lattice, d_111 = d = a/sqrt(3), solving for a
a = sqrt(3)*d; // The interatomic spacing for the given crystal planes, m
printf("\nThe interatomic spacing for the given crystal planes, a = %3.1f angstrom", a/1e-010);
// Result
// The interatomic spacing for the given crystal planes, a = 1.8 angstrom |
d001ed858546463c26439a54c64c65bed371683d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1979/CH8/EX8.15/Ex8_15.sce | a8027ea46476befc14053581984fffe7258f67b2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 699 | sce | Ex8_15.sce | //chapter-8 page 348 example 8.15
//==============================================================================
clc;
clear;
//For a reflex klystron
n=2;//peak mode value
V0=280;//beam voltage in V
I0=0.022;//beam current in A
Vs=30;//signal voltage in V
J1=1.25;//bessel coefficient for n=2
//CALCULATION
Pdc=V0*I0;//The input power in watts
Pac=((2*Pdc*J1)/((2*n*(%pi))-((%pi)/2)));//The output power in watts
n=(Pac/Pdc)*100;//Efficiency in percentage
//OUTPUT
mprintf('\nThe input power is Pdc=%1.2f watts \nThe output power is Pac=%1.1f watts \nEfficiency is n=%2.2f percentage',Pdc,Pac,n);
//=========================END OF PROGRAM===============================
|
4a643cbcda79880cb980461949def7494a0c1a56 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3020/CH13/EX13.16/ex13_16.sce | 0a4e0d521545ae78c15224cab9238a0394343b10 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 332 | sce | ex13_16.sce | clc;
clear all;
a = 0.405e-9; // Lattice constant in meters
t = 0.005e-2; // Thickness of Al foil in meters
sl = 25e-4; // Side length of the Al foil in meters
n = (t*sl)/a^3; // Number of atoms in the Al foil
disp('',n,'The number of atoms in the Al foil is')
// Wrong answer in the textbook... Chcecked in calculator also
|
6a93e7122735750836151536d956b83b5e421c1d | 96d00dc95c65c6e4d0e7a54507a8aaad7cf18d47 | /sources/FG/FP_des.sce | b1ca393205817ba4c3aa2e777912952319320ea8 | [] | no_license | eryeden/R8C_FG | 4ff141e9408cabfb5136e05e513024904db6d04b | 585cff8c808d49fc49b6a1e5e34cecb37bfcd55d | refs/heads/master | 2021-01-10T11:50:41.309419 | 2015-09-28T08:08:09 | 2015-09-28T08:08:09 | 43,061,792 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 596 | sce | FP_des.sce | clear;
scl = 5;
fin = 200;
nop = 64;
phase = 0;
dt = 500 * 10^-6;
tmp = 2^scl;
dt_fp = uint16(dt * tmp);
dt_fp_us = uint16(dt * 10^6 * tmp);
nop_fp = uint16(nop * tmp);
freq_fp = uint16(fin * tmp);
pinv_fp = uint16(fin * nop * uint32(dt_fp_us) / 10^6);
//pinv_fp = uint32(fin * nop * dt * tmp);
pinv_ufp = fin * nop * dt;
disp("MAX");
disp(2^16);
disp("FP")
disp(dt_fp);
disp(dt_fp_us);
disp(nop_fp);
disp(freq_fp);
disp(pinv_fp);
disp("OUT")
disp(dt_fp / tmp);
disp(dt_fp_us / tmp);
disp(nop_fp / tmp);
disp(freq_fp / tmp);
disp(double(pinv_fp) / tmp);
disp("UFP");
disp(pinv_ufp);
|
c77af99d3f41fdf8f53ea39c3ca1105175e19f4a | 449d555969bfd7befe906877abab098c6e63a0e8 | /25/CH5/EX5.2/5_2.sce | 2fa162e7e1263f9e2e3d0e71b43205ace680abf4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 539 | sce | 5_2.sce | //example:-5.2,page no.-212.
//program to compute reflection coefficient.
a=0.03485;b=0.01580;eipsilao=8.854*10^-12;muo=4*%pi*10^-7;
f=4.5*10^9;
w=2*%pi*f; // angular frequency.
// for z<0 region air filled.
eipsilar=2.56; //for z>0 region.
ko=w*sqrt(muo*eipsilao);
k=ko*sqrt(eipsilar);
Ba=sqrt(ko^2-(%pi/a)^2); // propagation constant in air region z<0.
Bd=sqrt(k^2-(%pi/a)^2); // propagation constant in dielectric region z>0.
Zoa=(ko*377)/Ba;
Zod=(ko*377)/Bd;
tao=(Zod-Zoa)/(Zod+Zoa);
disp(tao,'reflection coefficient') |
d9ff40477c69cffe8f95640bea907502895c3122 | 92f5993eb05f0a027cc98c0304337a20d2d9da2e | /rede.sce | 84ca75d2e529956d4ffd1d65f01ca334be70757d | [] | no_license | LuhJunior/Teoria-dos-Grafos | 664d034c857199d75e8a513cd0aaa12364347c89 | 22168992af086a2a03442701bcc26abe99d26aaa | refs/heads/master | 2020-03-28T02:39:12.681260 | 2018-12-06T06:29:07 | 2018-12-06T06:29:07 | 147,586,961 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,013 | sce | rede.sce | function rede()
N1E1 = [0 1 1...
1 0 1...
0 0 1...
0 0 1...
0 0 1]
N1E2 = [1 1 1...
0 0 1...
0 0 1...
0 0 1...
0 0 1]
N1E3 = [0 1 1...
0 0 1...
0 0 1...
0 0 1...
0 0 1]
N1E4 = [0 0 1...
0 0 1...
0 0 1...
0 0 1...
0 0 1]
N1E5 = [0 0 1...
0 1 1...
0 0 1...
0 0 1...
0 0 1]
N2E1 = [1 1 1...
0 0 1...
1 1 1...
1 0 0...
1 1 1]
N3E1 = [1 1 1...
0 0 1...
1 1 1...
0 0 1...
1 1 1]
N4E1 = [1 0 1...
1 0 1...
1 1 1...
0 0 1...
0 0 1]
N5E1 = [1 1 1...
1 0 0...
1 1 1...
0 0 1...
1 1 1]
N6E1 = [1 1 1...
1 0 0...
1 1 1...
1 0 1...
1 1 1]
N7E1 = [1 1 1...
0 0 1...
1 1 1...
0 0 1...
0 0 1]
N8E1 = [1 1 1...
1 0 1...
1 1 1...
1 0 1...
1 1 1]
N9E1 = [1 1 1...
1 0 1...
1 1 1...
0 0 1...
1 1 1]
alpha = 0.1
b = 1
yt = [0 0 1]// 0 0 1 0 0 1 0 0 1 0 0 1]
yt = yt'
x = [N1E1 b]
//N1E2 b;
//N1E3 b;
//N1E4 b;
//N1E5 b]
vw1 = ones(1, 16)
vw2 = ones(1, 16)
vw3 = ones(1, 16)
e = []
for i=1:1000
//disp(x, "x")
z = [x zeros(x) zeros(x); zeros(x) x zeros(x); zeros(x) zeros(x) x] * [vw1'; vw2'; vw3']
a = sigmoid(z)
disp(a, 'a')
erro = 2 * (a - yt).^2
//erro2 = a(2) - yt(2)
//erro3 = a(3) - yt(3)
e = [e, sum(erro)]
//e2(i) = 1/2 * erro2^2
//e3(i) = 1/2 * erro3^2
disp(erro, "erro")
//disp(z, "z")
//disp(x, "x")
gw1 = erro(1) * dsigmoid(z(1)) * x
gw2 = erro(2) * dsigmoid(z(2)) * x
gw3 = erro(3) * dsigmoid(z(3)) * x
//gb = erro * sigmoid(z)
g = [gw1, gw2, gw3]; //disp(g, 'g')
ng = [norm(gw1), norm(gw2), norm(gw3)]
if norm(g)==0 break end;//disp(sum(g), 'g')
//gw1 = gw1/ng(1)
//gw2 = gw2/ng(2)
//gw3 = gw3/ng(3)
//gb = gb/ng
//[nc, nl] = size(x)
for i=1:size(x)(1)
disp(vw1, "vw1")
disp(gw1'(i, 1:$), "gradiente")
vw1 = vw1 - alpha * gw1(i, 1:$)
vw2 = vw2 - alpha * gw2(i, 1:$)
vw3 = vw3 - alpha * gw3(i, 1:$)
//b = b - gb
end
end
disp(a, "a final")
disp(i, "i")
plot(e)
endfunction
function y=f(x)
y = x
endfunction
function s=sigmoid(z)
s = 1./(1 + exp(-z))
endfunction
function dy=dsigmoid(x)
d = 0.0000001
dy = (sigmoid(x+d) - sigmoid(x))/d
endfunction
|
28db26d90d1449ca231626e89185e7cc665e9d7b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1529/CH23/EX23.5/23_05.sce | aaca4f155f0e9d6846493f41923732f2fd2a903f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 485 | sce | 23_05.sce | //Chapter 23, Problem 5
clc;
f=60; //supply frequency
p=2/2; //pairs of poles
ns=(f/p)*60; //synchronous speed
s=2; //slip
nr=ns-((s*ns)/100); //rotor speed
printf("(a) synchronous speed = %d rev/min\n\n",ns);
printf("(b) Speed of the rotor = %d rev/sec\n\n",nr);
printf("(c) Frequency of the induced emf of the rotor = %.1f Hz\n\n",(ns-nr)/60);
|
53c2bbc06d4e7920fb4403c03d1c09e49836fa95 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3537/CH5/EX5.4/Ex5_4.sce | 40b9880322b0ce7ae242e5784367ac624b499a77 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 279 | sce | Ex5_4.sce | //Example 5_4
clc();
clear;
//To determine the interplanar spacing
r=1.278*10^-10 //units in meters
a=(4*r)/sqrt(2) //units in meters
h=1
k=1
l=1
d111=a/sqrt(h^2+k^2+l^2) //units in meters
printf("Inter planar spacing d111=")
disp(d111)
printf("meters")
|
4194e53f31e5e4665c7876761c7a05de8cdbb8b1 | a8592d34f144b71794ebf30f1c2a1b5faf0b053c | /sandbox/scilab/09_plot3d.sce | c8097800e810dcc1c80d3ffd75c1e939f236e0f9 | [] | no_license | f-fathurrahman/ffr-MetodeNumerik | ee9a6a7153b174b1ba3d714fe61ccbd1cb1dd327 | e3a9da224c0fd5b32e671708e890018a3c4104c4 | refs/heads/master | 2023-07-19T22:29:38.810143 | 2023-07-07T10:02:34 | 2023-07-07T10:02:34 | 107,272,110 | 2 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 168 | sce | 09_plot3d.sce | x = linspace( -8.0, 8.0, 41 )';
y = linspace( -8.0, 8.0, 41 )';
[X, Y] = meshgrid(x,y)
Z = sqrt(X.^2 + Y.^2)
plot3d(x, y, Z)
if getscilabmode() ~= "STD"
quit()
end
|
1b1bda8202a169bf97a9276f904b3a4c5d816e28 | 717ddeb7e700373742c617a95e25a2376565112c | /278/CH14/EX14.2/ex_14_2.sce | d98fbd30b5086c4dbf78bcb586c413a99865ad7a | [] | 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 | 283 | sce | ex_14_2.sce | //determine dia of the shaft
clc
//solution
//given
P=10^6//W
N=2400//rpm
//Tmax=1.2*Tmean
t=60//N/mm^2
//let d be dia of shaft
Tmean=(P*60000)/(2*%pi*N)//N-mm
Tmax=12.*Tmean
//Tmax=(%pi/16)*t*d^3=8.25*d^3
d=(Tmax/11.78)^(1/3)//mm
printf("the dia of shaft is,%f mm",d)
|
457cf32b751c7b02b6df202c961a59416dec0758 | 449d555969bfd7befe906877abab098c6e63a0e8 | /812/CH8/EX8.02/8_02.sce | 904e37f227d1e9bfc07fc3ba2e51182f59e0781f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 488 | sce | 8_02.sce | //Torque and power//
pathname=get_absolute_file_path('8.02.sce')
filename=pathname+filesep()+'8.02-data.sci'
exec(filename)
//Shear stres (in lbf/ft^2):
Tyx=u*N*2*%pi/60*D/2/(a/2)
//Torqe(in inches-lbf):
T=%pi/2*Tyx*D^2*L/144
//Power dissipated in the bearing(in hp):
P=T*N/60*2*%pi/12/550
//Reynolds number:
Re=SG*p*N*2*%pi/60*1.5*a/2/u/144
printf("\n\nRESULTS\n\n")
printf("\n\nTorque: %.3f inches-lbf\n\n",T)
printf("\n\nPower dissipated in the bearing: %.3f hp\n\n",P)
|
5a19f6048b9c01baedf390fc9662d4216a02bc02 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH20/EX20.8/Ex20_8.sce | c3312566d23dc2e5bf92f5d99190a249cbc25bd6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 983 | sce | Ex20_8.sce | //Example 20.8
P=60;//Power (W)
t=1000;//Time (h)
E=P*t/1000;//Energy (kW.h)
cost1=E*0.12;//Cost of usage if it costs 12 cents per kWh ($)
printf('a.Cost of using a 60W bulb for 1000h = $%0.2f',cost1)
bulb_cost1=0.25;//Cost of incandescent bulb ($)
total_cost1=cost1+bulb_cost1;//Total cost of using incandescent bulb for 1000h ($)
printf('\n Total cost of using an incandescent bulb = $%0.2f',total_cost1)
cost2=cost1/4;//Cost of using a CFL bulb for 1000h considering it consumes 1/4th the power of the incandesent bulb ($)
bulb_cost2=1.50/10;//Investment cost of CFL bulb for the time period of use, considering it lasts 10 times longer ($)
total_cost2=cost2+bulb_cost2;//Total cost of using the CFL bulb for 1000h ($)
printf('\nb.Total cost of using a CFL bulb = $%0.2f',total_cost2)
//Total cost of usage for incandescent bulb has not been calculated in the textbook
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
4095cc060880709e737affa63d1c7d7f7b0342f3 | a1161d9e9d26e0a7b20c31269be145f13d9d3e89 | /QA/tests/trypsin/trypsin_md.tst | 3362ef930cc0b8254cac5eb6b4129ac8fc1c681b | [
"LicenseRef-scancode-warranty-disclaimer",
"ECL-2.0"
] | permissive | nwchemgit/nwchem | c06e7e1fe11b3afad17b167f29a97c4fa3ad0fda | c5a8125298a6ea7d6eb27b07c196ea8041aa7198 | refs/heads/master | 2023-09-05T17:18:34.513866 | 2023-09-02T02:56:47 | 2023-09-02T02:56:47 | 111,318,191 | 425 | 164 | NOASSERTION | 2023-09-11T16:34:14 | 2017-11-19T17:48:21 | Fortran | UTF-8 | Scilab | false | false | 1,500 | tst | trypsin_md.tst | Time = 0.002
Temperature = 298.11
Volume = 0.00
Pressure = -1.93E+06
Energy = 0.000E+00
Time = 0.004
Temperature = 298.64
Volume = 386.28
Pressure = -2.78E+06
Energy = -4.498E+05
Time = 0.006
Temperature = 298.86
Volume = 386.28
Pressure = -2.89E+06
Energy = -4.498E+05
Time = 0.008
Temperature = 298.54
Volume = 386.27
Pressure = -2.46E+06
Energy = -4.498E+05
Time = 0.010
Temperature = 297.94
Volume = 386.27
Pressure = -1.84E+06
Energy = -4.498E+05
Time = 0.012
Temperature = 297.60
Volume = 386.27
Pressure = -1.37E+06
Energy = -4.499E+05
Time = 0.014
Temperature = 297.75
Volume = 386.27
Pressure = -1.35E+06
Energy = -4.499E+05
Time = 0.016
Temperature = 298.13
Volume = 386.27
Pressure = -2.02E+06
Energy = -4.499E+05
Time = 0.018
Temperature = 298.32
Volume = 386.27
Pressure = -3.35E+06
Energy = -4.500E+05
Time = 0.020
Temperature = 298.25
Volume = 386.27
Pressure = -5.00E+06
Energy = -4.500E+05
|
9256e0ff97826858c63919db7f05ff6839d0b88b | 2ba48648eefadee113a7c2f5d608cab5209c3a8b | /Unit&Func Test/单元测试文档/CagOS单元测试结果/LIBC/testcase/strspn.tst | a4521e164995dc86f4773b60c562a849c1bf8991 | [] | no_license | wangdong412/Consen-SIS | 879762175575d0a62f26ec1effeb46c3fd62e3e8 | bca3fac35c961c3558a3438bca55e6d20825da3a | refs/heads/master | 2020-07-11T05:17:18.814104 | 2019-08-27T09:41:41 | 2019-08-27T09:41:41 | 204,450,874 | 1 | 5 | null | null | null | null | UTF-8 | Scilab | false | false | 2,572 | tst | strspn.tst | -- VectorCAST 6.4c (02/03/16)
-- Test Case Script
--
-- Environment : LIBC
-- Unit(s) Under Test: abort1 abs atof atoi atol bLib memchr memcmp memcpy memmove memset ns16550 qsort rand random random_r strcat strchr strcmp strcpy strlcat strlcpy strlen strncat strncmp strncpy strpbrk strspn strtod strtok strtok_r strtol strtoul
--
-- Script Features
TEST.SCRIPT_FEATURE:C_DIRECT_ARRAY_INDEXING
TEST.SCRIPT_FEATURE:CPP_CLASS_OBJECT_REVISION
TEST.SCRIPT_FEATURE:MULTIPLE_UUT_SUPPORT
TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES
TEST.SCRIPT_FEATURE:STATIC_HEADER_FUNCS_IN_UUTS
--
-- Unit: strspn
-- Subprogram: strspn
-- Test Case: strspn1
TEST.UNIT:strspn
TEST.SUBPROGRAM:strspn
TEST.NEW
TEST.NAME:strspn1
TEST.BASIS_PATH:1 of 4
TEST.NOTES:
This is an automatically generated test case.
Test Path 1
(1) for ((c1 = *(s++)) != 0) ==> FALSE
Test Case Generation Notes:
TEST.END_NOTES:
TEST.VALUE:strspn.strspn.s:<<malloc 1>>
TEST.VALUE:strspn.strspn.s[0]:0x0
TEST.VALUE:strspn.strspn.sep:<<malloc 1>>
TEST.EXPECTED:strspn.strspn.return:0
TEST.END
-- Test Case: strspn2
TEST.UNIT:strspn
TEST.SUBPROGRAM:strspn
TEST.NEW
TEST.NAME:strspn2
TEST.BASIS_PATH:2 of 4
TEST.NOTES:
This is an automatically generated test case.
Test Path 2
(1) for ((c1 = *(s++)) != 0) ==> TRUE
(2) for ((c2 = *(p++)) != c1) ==> FALSE
Test Case Generation Notes:
Cannot set variable c2 = *(p++) in branch 2 since it requires user code.
Cannot set local variable c1 in branch 2
Cannot set variable p++ in branch 2 since it requires user code.
TEST.END_NOTES:
TEST.VALUE:strspn.strspn.s:<<malloc 8>>
TEST.VALUE:strspn.strspn.s:"abcdeds"
TEST.VALUE:strspn.strspn.sep:<<malloc 3>>
TEST.VALUE:strspn.strspn.sep:"ab"
TEST.EXPECTED:strspn.strspn.return:2
TEST.END
-- Test Case: strspn3
TEST.UNIT:strspn
TEST.SUBPROGRAM:strspn
TEST.NEW
TEST.NAME:strspn3
TEST.BASIS_PATH:3 of 4
TEST.NOTES:
This is an automatically generated test case.
Test Path 3
(1) for ((c1 = *(s++)) != 0) ==> TRUE
(2) for ((c2 = *(p++)) != c1) ==> TRUE
(3) if (c2 == 0) ==> TRUE
Test Case Generation Notes:
Cannot set variable c2 = *(p++) in branch 2 since it requires user code.
Cannot set local variable c1 in branch 2
Cannot set variable p++ in branch 2 since it requires user code.
Cannot set local variable c2 in branch 3
TEST.END_NOTES:
TEST.VALUE:strspn.strspn.s:<<malloc 9>>
TEST.VALUE:strspn.strspn.s:"abceddsf"
TEST.VALUE:strspn.strspn.sep:<<malloc 4>>
TEST.VALUE:strspn.strspn.sep:"ace"
TEST.EXPECTED:strspn.strspn.return:1
TEST.END
|
bef946597332a3dd0d43cba82d35d5b80b86c393 | daf9a7434ea9996fc591a79030570f48e396cdc5 | /Binominal/PMF.sce | db81dc5cae1553c92b3e1302087d3623e62cd214 | [] | no_license | isabelle-le/MonteCarloSimulation | c8dbfc2f5485f6dc6291654032ecad6c01cce401 | f96e0a11569b3e4dade452d99e9c1bbd6c3efb81 | refs/heads/master | 2020-04-05T22:40:20.686962 | 2018-11-12T19:18:50 | 2018-11-12T19:18:50 | 157,263,752 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 755 | sce | PMF.sce | //Binominal Probability MASS Function
// Le Thu Huong ADEO1
clc
N = 9000;
alpha = 0;
n = 50;
p = 0.1;
x0 = -2;
delx = 0.02;
xmax = 15;
x = [x0:delx:xmax]
for k = 1 : length(x)
c = 0;
for j = 1:N
cumul = (1-p)^n;
proba = cumul;
u = rand();
alpha = 0;
while ( u > cumul) then
alpha = alpha + 1;
proba = proba * (n - alpha + 1)* p/((1-p)*alpha);
cumul = cumul + proba;
end
binominal = alpha;
if binominal < x(k) + delx & binominal >= x(k) then
c = c + 1 ;
end
end
Proba (k) = c/N;
end
plot (x, Proba,'dr');
title(' SIMULATION OF BINOMINAL - PDF ');
xlabel('number of x');
ylabel('P(x)');
|
097bd29cb263177a684973ce96e668fe5e0c20c4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3630/CH14/EX14.9/Ex14_9.sce | ad1b1105f91a1102e3cfceee351938d9aff12c6d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 132 | sce | Ex14_9.sce | clc;
Rc=1500;
RL=5000;
C=0.00000022;
f1C=1/(2*3.14*(Rc+RL)*C);
disp('Hz',f1C,"f1C=")//The answers vary due to round off error
|
bbe42eeee684773187134d741991dae0b1e9d11b | 449d555969bfd7befe906877abab098c6e63a0e8 | /564/CH25/EX25.6/25_6.sce | 4db2197fe9be27ff110ceacf443bcbcf244f780e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 888 | sce | 25_6.sce | pathname=get_absolute_file_path('25_6.sce')
filename=pathname+filesep()+'25_6data.sci'
exec(filename)
clear
Ixx=((2*E12*t12*((L23/(2*L12))^2)*L12^3)+(E23*t23*L23^3))/12;
alpha=asin(L23*0.5/L12);
function[qb12]=qb12x(s1)
qb12= 0.5*(t12*sin(alpha)*E12*Sy/Ixx)*s1^2;
endfunction
function[qb23]=qb23x(s2)
qb23=((-E23*t23*Sy/Ixx)*(-0.5*L23*s2 +0.5*s2^2))+qb12x(L12);
endfunction
funcprot();
qs0=((Sy*L12)+(L23*L12*qb12x(L12)/3))/(L12*L23);
function[q12]=q12x(s1)
q12=qb12x(s1)-qs0;
endfunction
function[q23]=q23x(s2)
q23=qb23x(s2)-qs0;
endfunction
s1=linspace(0,L12,10*L12);
s2=linspace(0,L23,10*L23);
q12=feval(s1,q12x);
q23=feval(s2,q23x);
subplot(2,1,1)
plot2d(s1,q12);
xgrid(3)
xtitle('','s1','q12')
subplot(2,1,2)
plot2d(s2,q23);
xgrid(3)
xtitle('','s2','q23')
datatipToggle();
printf("\nclick on the point to view its coordinate on plot") |
0e37e8f4c6440e31b942fa7e35f35a13612b1a01 | 449d555969bfd7befe906877abab098c6e63a0e8 | /530/CH3/EX3.4.b/example_3_4b.sce | cba9e4da2f1932d168d419ab083694639c862ace | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | example_3_4b.sce | clear;
clc;
// A Textbook on HEAT TRANSFER by S P SUKHATME
// Chapter 3
// Thermal Radiation
// Example 3.4(b)
// Page 123
printf("Example 3.4(b), Page 123 \n\n")
e = 0.08; //emissivity
T = 800; //temperature, [K]
Stefan_constt = 5.67*10^(-8); //[W/m^2.K^4]
// From Stefan Boltzmann law, equation 3.2.10
q = e*Stefan_constt*T^4; //[W/m^2]
in = (q/(%pi));
// (b)
// Radiant flux emitted in the cone 0 <= pzi <= 50 degree, 0 <= theta <= 2*pi
q_cone=2*(%pi)*in*(-cos(100*(%pi/180))+cos(0))/4;
printf("\n Radiant flux emitted in the cone =%.1f W/m^2",q_cone);
Ratio = q_cone/q;
printf("\n Ratio = %.3f",Ratio);
|
cdccbec0dcc71a7082c5d92704730c3b5a9e9b35 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1397/CH1/EX1.17/1_17.sce | ce22f2ad93fb734269be48ea59e0382f017c1b08 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 332 | sce | 1_17.sce | //clc();
clear;
// To determine the refractive index of the liquid
D12air=1.45; //diameter of 12th ring in air medium
D12liq=1.25; //diameter of 12th ring in liquid
mew=(D12air^2)/(D12liq^2);
printf("refractive index of the liquid when liquid is introduced between the lens and glass plate is %f",mew);
|
c6b73ac9d1b97d217531588c6081031291661f7f | a53f6732a1f067518a17d6c85709e2df62c84995 | /documentation/CAO-disque frein/construction4_disque-frein.tst | 56dec6ad8b5e2373b6f023f1711bfed3611a58e3 | [] | no_license | DamienCM/projet_constru_4 | 607e6d1e9382ee89065854fa463ade67a35c0d42 | 66c0242164cbb449575cc0fef274efd628b58ced | refs/heads/main | 2023-06-03T16:51:23.571493 | 2021-06-09T20:17:26 | 2021-06-09T20:17:26 | 350,459,862 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 419 | tst | construction4_disque-frein.tst | Nom d'instance du modèle Statut de régénération
DISQUE_CO-A CONSTRUCTION4_DISQUE-FREIN Exécuté
DISQUE_CO-B CONSTRUCTION4_DISQUE-FREIN Exécuté
DISQUE_CO-C CONSTRUCTION4_DISQUE-FREIN Exécuté
DISQUE_CO-D CONSTRUCTION4_DISQUE-FREIN Exécuté
DISQUE_CO-E CONSTRUCTION4_DISQUE-FREIN Exécuté
DISQUE_CO-F CONSTRUCTION4_DISQUE-FREIN Exécuté
|
30f529e80691d41f5088e3f11d6b092bae02d2b8 | 494b677053e1199325a80808377463794e1003e5 | /experiments/chi-rw-c/chi-rw-c/results/Ignore-MV.Chi-RW-C.vehicle/result8.tst | 2a3e8d1d6214ae715afc24759234f9575a795e64 | [] | no_license | kylecblyth/IIS-Project | 92fb0770addced8022817470f974bf5191bfe05d | abf66fd98d9b6c7c3a0fbc254ef4026641338489 | refs/heads/master | 2020-06-12T19:41:02.430510 | 2016-12-07T10:35:31 | 2016-12-07T10:35:31 | 75,764,815 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,855 | tst | result8.tst | @relation vehicle
@attribute COMPACTNESS integer[73,119]
@attribute CIRCULARITY integer[33,59]
@attribute DISTANCECIRCULARITY integer[40,112]
@attribute RADIUSRATIO integer[104,333]
@attribute PRAXISASPECTRATIO integer[47,138]
@attribute MAXLENGTHASPECTRATIO integer[2,55]
@attribute SCATTERRATIO integer[112,265]
@attribute ELONGATEDNESS integer[26,61]
@attribute PRAXISRECTANGULAR integer[17,29]
@attribute LENGTHRECTANGULAR integer[118,188]
@attribute MAJORVARIANCE integer[130,320]
@attribute MINORVARIANCE integer[184,1018]
@attribute GYRATIONRADIUS integer[109,268]
@attribute MAJORSKEWNESS integer[59,135]
@attribute MINORSKEWNESS integer[0,22]
@attribute MINORKURTOSIS integer[0,41]
@attribute MAJORKURTOSIS integer[176,206]
@attribute HOLLOWSRATIO integer[181,211]
@attribute class{van,saab,bus,opel}
@inputs COMPACTNESS,CIRCULARITY,DISTANCECIRCULARITY,RADIUSRATIO,PRAXISASPECTRATIO,MAXLENGTHASPECTRATIO,SCATTERRATIO,ELONGATEDNESS,PRAXISRECTANGULAR,LENGTHRECTANGULAR,MAJORVARIANCE,MINORVARIANCE,GYRATIONRADIUS,MAJORSKEWNESS,MINORSKEWNESS,MINORKURTOSIS,MAJORKURTOSIS,HOLLOWSRATIO
@outputs class
@data
van van
saab saab
opel opel
van opel
bus bus
bus bus
van van
bus bus
opel opel
bus van
van van
opel saab
van van
bus bus
van van
opel saab
opel opel
opel saab
van van
bus bus
saab bus
bus bus
bus bus
bus bus
saab saab
saab bus
van van
bus bus
bus bus
saab saab
opel saab
opel opel
van van
bus bus
opel van
van van
bus bus
bus bus
saab saab
opel saab
van van
van saab
bus van
saab saab
van van
opel bus
opel saab
saab bus
opel bus
saab opel
van van
opel opel
van saab
opel opel
saab saab
bus bus
opel van
bus bus
saab bus
bus bus
saab bus
opel opel
opel opel
saab van
bus bus
van saab
van van
van van
bus bus
saab bus
van van
bus bus
saab saab
saab opel
opel opel
opel bus
bus bus
opel van
saab van
saab opel
saab bus
saab saab
saab opel
van van
|
6ab66f1f4f5ac6809000163174ba6f34693a5e63 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3428/CH23/EX14.23.3/Ex14_23_3.sce | f62f0e147ad04afd01c91fde36634c491039620f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 492 | sce | Ex14_23_3.sce | //Section-14,Example-1,Page no.-PC.74
//To calculate the mole of HI formed at equilibrium.
clc;
//H_2 +I_2=2HI
//[HI]=2x,[H_2]=2-x,[I_2]=4-x and K_c=(2x)^2/((2-x)*(4-x))
x_1=(300 +sqrt(90000-(4*46*400)))/(2*46)
x_2=(300 -sqrt(90000-(4*46*400)))/(2*46)
M=2*x_2
disp(M,'Moles of HI formed at equilibrium')
//N_2 +3H_2=2NH_3
//K_c=[NH_3]^2/([N_2]*[H_2]^3)=(4*x^2*V^2)/(27*(1-x)^4)
//Decrease in V should increase the value of x since K_c is constant at particular temperature.
|
23bee241842dbcf59e847eb9a733644385252ffa | 449d555969bfd7befe906877abab098c6e63a0e8 | /1628/CH16/EX16.11/Ex16_11.sce | 96201aa363efb9171ecbbf339d5f02af41d78351 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 573 | sce | Ex16_11.sce |
// Examle 16.11
V=250; // Supply voltage
Rsh=250; // Field winding resistance
Ish=V/Rsh; // The shunt field current (Ish)
disp(' The Shunt field current (Ish) = '+string(Ish)+' Amp');
Il=41; // Full-load current
Ia=Il-Ish; // Armature current
disp(' The Armature current current (Ia) = '+string(Ia)+' Amp');
Ra=0.1; // Armature resistance
Eb=V-(Ia*Ra); // back emf
disp(' The back emf (Eb) = '+string(Eb)+' Volt');
// p 649 16.11 |
9a6eea069766dfe4a45fde9f28feb46aa35e907c | a159f59d19e2b03b234e9c2977ba4a932180e648 | /Software/GreenScilabV0.9/bin/gl_disp_environment.sci | 3faaabf4244028b56c6324e8d044a75d8026427e | [] | no_license | OpenAgricultureFoundation/openag_sim | e052bbcc31b1d7f9b84add066327b479785f8723 | 425e678b55e24b5848d17181d25770175b8c2c3f | refs/heads/master | 2021-07-01T06:25:08.753260 | 2017-09-20T21:44:18 | 2017-09-20T21:44:18 | 80,540,145 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,860 | sci | gl_disp_environment.sci |
// display biomass production, size of organ, number....
//%%%%%%%% curve of biomass repartition between organs QO(id,p,J) %%%%%%%
//if Flag_demo==0 then
// x_message('the information will be shown in the workspace of SCILAB');
//end
f = scf() ;
f.figure_name='Environement condition';
[index_env] = find(Flag_environment);
size_index_env = size(index_env,2);
index_env(size_index_env+1) = 4;
i=1:N;data=[];
for id = 1:(size_index_env+1)
select index_env(id)
case 1 then data=water_sequence(i); titletext='Water';ylabeltext='W';
case 2 then data=theta_sequence(i);titletext='Temperature';ylabeltext='T';
case 3 then data=light_sequence(i);titletext='Light';ylabeltext='L';
case 4 then data =E(i);titletext='Environement factor';ylabeltext='E';
end
if size_index_env == 1 then
subplot(1,2,id)
plot(i,data)
a=gca();
a.children(1).children.thickness=6;
a.title.text=titletext ;
a.title.font_size=3;
a.x_label.text="Plant age" ;
a.x_label.font_size=2;
a.y_label.text=ylabeltext ;
a.y_label.font_size=2;
elseif size_index_env == 0 then
subplot(1,1,id)
plot(i,data)
a=gca();
a.children(1).children.thickness=6;
a.title.text=titletext ;
a.title.font_size=3;
a.x_label.text="Plant age" ;
a.x_label.font_size=2;
a.y_label.text=ylabeltext ;
a.y_label.font_size=2;
else
subplot(2,2,id)
plot(i,data)
a=gca();
a.children(1).children.thickness=6;
a.title.text=titletext ;
a.title.font_size=3;
a.x_label.text="Plant age" ;
a.x_label.font_size=2;
a.y_label.text=ylabeltext ;
a.y_label.font_size=2;
end
end
|
86e57ca409661150e51eb92ef44a2cbb97d1d987 | 449d555969bfd7befe906877abab098c6e63a0e8 | /761/CH7/EX7.4/7_4.sce | 33b9b75f7f34d3a588d11d2f029775d0a36c17ba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 174 | sce | 7_4.sce | clc;
// page no 292
// prob no 7.4
//In the given problem
m=16;
DR=1.76 +6.02*m ; //Dynamic range for a linear PCM in dB
disp('dB',DR,'Dynamic range for a linear PCM'); |
dcbdfd58fdfa7c3736cea24f424c590bb3aa8528 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH35/EX35.09/35_09.sce | c7a967aba6e6f811ae046e2193cfb4209b912c7e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 926 | sce | 35_09.sce | //Problem 35.09: A single-phase, 240 V/1920 V ideal transformer is supplied from a 240 V source through a cable of resistance 5 ohm. If the load across the secondary winding is 1.60 kohm determine (a) the primary current flowing, and (b) the power dissipated in the load resistance.
//initializing the variables:
V1 = 240; // in volts
V2 = 1920; // in volts
R1 = 5; // in ohms
R2 = 1600; // in ohms
//calculation:
//The network is shown in Figure 35.12.
//turn ratio N1/N2 = V1/V2
tr = V1/V2
//Equivalent input resistance of the transformer,
RL = R2
r = RL*tr^2
//Total input resistance,
Rin = R1 + r
//primary current, I1
I1 = V1/Rin
//For an ideal transformer V1/V2 = I2/I1
I2 = I1*(V1/V2)
//Power dissipated in the load resistance
P = RL*I2^2
printf("\n\n Result \n\n")
printf("\n (a) primary current flowing is %.0f A",I1)
printf("\n (b) Power dissipated in the load resistance is %.0fW",P) |
69e72895af73d35b305acf72214f5fb6db649ead | c247bce84b3facd1a13b48e7417327c40c8b3898 | /FOPID/modFPID.sci | 40b80fea7e6faee8754b256eb70829cbc7245b44 | [] | no_license | AstroSayan/FuzzyFOPID | 9de9fa761301da6ae1f5dfe7b8e7e8214f3b472b | ea0e31e8fa0b36e407de9dfa466cf46b583e4103 | refs/heads/main | 2023-04-26T19:18:30.590337 | 2021-05-13T18:27:32 | 2021-05-13T18:27:32 | 367,137,779 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 243 | sci | modFPID.sci | function C=modFPID(Kc,Ti,mu,f,N,w)
s=poly(0,'s'); s=syslin('c',s/((0*s)+1));
exec('C:\Users\SAYAN\Documents\FuzzyFOPID\fod.sci');
muTemp=fix(mu);mu=mu-muTemp;
Ctemp=(s^muTemp)*fod(mu,f,N,w);
C=Kc*(((1+(Ti*Ctemp))^2)/Ctemp);
endfunction
|
5d0a4b63d31c4363427f604d1d852e7301cbf9dc | 449d555969bfd7befe906877abab098c6e63a0e8 | /2345/CH15/EX15.11/Ex15_11.sce | 81b247e914fce134b2de03a9b6b807f4d4693fc0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 361 | sce | Ex15_11.sce | //Conductivity and conductance
//Example 15.11(pg 399)
clc
clear
rho=1.7*(10^-8)//resistivity in ohm-m
K=1/rho//conductivity in mho/m
a=0.125*(10^-4)//cross sectional area of cable in m^2
l=2000//length of cable in meters
G=K*a/l//conductance
printf('Thus conductivity of cable is %e mho/metres \n',K)
printf('and conductance of cable is %3f mho',G)
|
1bbc6bdd7c98bf768c00266b95c997308e30d35d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1322/CH16/EX16.9/128ex1.sce | ec95ef67889d1cde9315b8d0ef7993914b437edd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 159 | sce | 128ex1.sce |
clear;
clc;
close;
clf;
x=linspace(-3,4,8);
y=(x-1)^2;
plot2d(x,y,3);
xtitle("Curve of y=(x-1)^2","x axis","y axis");
legend("y=(x-1)^2");
xgrid();
|
a37f0fc521f3a13e7c4f211851cf0dcea2013b9d | 8781912fe931b72e88f06cb03f2a6e1e617f37fe | /scilab/plasma/gendxgen.sce | 130c6399466de972ee569e58e986ecded0727a93 | [] | 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,739 | sce | gendxgen.sce | //generate dx general file
//describing magnetic fields
//particle locations
function gendxgen(directory,jobname,nsteps, n1,n2,n3)
//write the form file
filename=sprintf('%s.form',jobname);
fd=mopen(filename, 'w');
mfprintf(fd, '%d %d %d %d\n', nsteps, n1,n2,n3);
mclose(fd);
//write the general file for the form file
filename=sprintf('../tmp/%s_form.general',jobname);
fd=mopen(filename, 'w');
mfprintf(fd,"file=%s/%s.form\n", directory, jobname);
mfprintf(fd,"grid = 1\n");
mfprintf(fd,"format = ascii\n");
mfprintf(fd,"interleaving = record\n");
mfprintf(fd,"majority = row\n");
mfprintf(fd,"field = nsteps, nx, ny, nz\n");
mfprintf(fd,"structure = scalar, scalar, scalar, scalar\n");
mfprintf(fd,"type = int, int, int, int\n");
mfprintf(fd,"dependency = positions, positions, positions, positions\n");
mfprintf(fd,"positions = regular, 0, 1\n");
mfprintf(fd,"end\n");
mclose(fd);
//write the general file for the data
filename=sprintf('../tmp/%s.general',jobname);
fd=mopen(filename, 'w');
mfprintf(fd,"file=%s/%s.dat\n", directory, jobname);
mfprintf(fd,"grid = %d x %d x %d\n",n1,n2,n3);
mfprintf(fd,"format = ascii\n");
mfprintf(fd,"interleaving = record\n");
mfprintf(fd,"majority = row\n");
mfprintf(fd,"header = lines 1\n");
mfprintf(fd,"series= %d , 1, 1, separator= lines 1\n",nsteps);
mfprintf(fd,"field = field0\n");
mfprintf(fd,"structure = scalar\n");
mfprintf(fd,"type = float\n");
mfprintf(fd,"dependency = positions\n");
mfprintf(fd,"positions = regular,regular,regular, 0, 1, 0, 1, 0, 1\n");
mfprintf(fd,"end\n");
mclose(fd);
endfunction
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.