blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
c518f6ee61105c2fe8c01938e27d93a2dc815bd0 | 6813325b126713766d9778d7665c10b5ba67227b | /Chapter5/Ch_5_Eg_5.12.sce | 2edfcf25742aee1d76f13998f2d1ff2ebe10e279 | [] | no_license | arvindrachna/Introduction_to_Scilab | 955b2063b3faa33a855d18ac41ed7e0e3ab6bd1f | 9ca5d6be99e0536ba1c08a7a1bf4ba64620ec140 | refs/heads/master | 2020-03-15T19:26:52.964755 | 2018-05-31T04:49:57 | 2018-05-31T04:49:57 | 132,308,878 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 334 | sce | Ch_5_Eg_5.12.sce | // To plot various types of vertical bar charts in a graphics window
x=3:5;
y=1:3;
x1= [1,4,5];
y1=5*rand (3,3);
y2= [1, -2,3];
subplot (2,3,1), bar(y);
subplot (2,3,2), bar(x, y);
subplot (2,3,3), bar (x, y1);
subplot (2,3,4), bar (x, y1,"stacked");
subplot (2,3,5), bar (x, y2);
subplot (2,3,6), bar (x, y1,.2,"green");
|
2a75a9cecbe71d5862e84e1e1ef2cc73181fd4a2 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.1/Unix/scilab-2.1/macros/percent/%spas.sci | aaf70a3ae5438b656ae7fe2c2eb44c425691d089 | [
"MIT",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 160 | sci | %spas.sci | function s=%spas(a,b)
// %spas - adds a sparse matrix and a scalar s
//!
if size(b)==[-1 -1] then
[m,n]=size(a)
s=a+(b+0)*speye(m,n)
else
s=full(a)+b
end
|
736d47b8512b7fb6caf07ff8b47d8679ba3dd4ae | 449d555969bfd7befe906877abab098c6e63a0e8 | /3428/CH12/EX6.12.17/Ex6_12_17.sce | cd5b1c7ee4da2289729c04ff5c71c0e9941f5468 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 197 | sce | Ex6_12_17.sce | //Section-6,Example-2,Page no.-P.53
//To determine the extent of dilution of the solution.
clc;
T_1=283
T_2=298
P_1=500
P_2=105.3
a=(T_2/T_1)*(P_1/P_2)
disp(a,'Extent of dilution of the solution')
|
b7939292bc54a791ae3118813ae1d55e5b124d12 | f6b3a0c494772f6ca78e2f620df06d393dafcc51 | /integration.sce | 753a49cd2272c19492675d2ed53709bfa810cd2a | [] | no_license | rishabhthecoder/scilab | f914595f7af9682a731f49fc1203925c9529297a | f0460b09d16d7349f408183d4089553360ca4ba5 | refs/heads/master | 2020-03-31T05:47:43.762852 | 2018-10-07T16:06:20 | 2018-10-07T16:06:20 | 151,958,910 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 126 | sce | integration.sce | Sysm r th z
f=r^5*z*(sin(th)*cos(th))^2;
I1=integrate(f,z,0,1);
I2=integrate(I1,r,0,1);
I3=integrate(I2,th,0,2*%pi);
disp(I3)
|
8eb3e8b0a14f7750015daa5335d2f8b26eacb1e6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /68/CH5/EX5.5/ex5.sce | ea5d6d6efbf9e874a3716325fec7b8655547c83e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 837 | sce | ex5.sce | // Example 5.5 : Analyse the circuit to find node voltages and branch currents
disp("Assuming active mode operation")
V_CC=10; // (V)
R_C=4.7*10^3; // (V)
R_E=3.3*10^3; // (ohm)
V_BE=0.7; // (V)
V_BB=6; // (V)
V_CEsat=0.2; // (V)
V_E=V_BB-V_BE;
disp(V_E,"Emitter voltage (V)")
I_E=V_E/R_E;
disp(I_E,"Emitter current (A)")
V_C=V_CC-I_E*R_C; // I_E=I_C
disp(V_C,"Collector voltage (V)")
disp("Since V_C < V_B our assumption is wrong\n Hence its saturation mode operation")
V_E=V_BB-V_BE;
disp(V_E,"Emitter voltage (V)")
I_E=V_E/R_E;
disp(I_E,"Emitter current (A)")
V_C=V_E+V_CEsat;
disp(V_C,"Collector voltage (V)")
I_C=(V_CC-V_C)/R_C;
disp(I_C,"Collector current (A)")
I_B=I_E-I_C;
disp(I_B,"Base current (A)")
Bforced=I_C/I_B; // transistor is made to operate at a forced beta value
disp(Bforced,"forced beta") |
ddc1a8d48176152e93c234911ed2741d691c7d63 | 9b68b3d73b63ebcbfe18cc9a4aa8e91c84833a84 | /tests/libs/hdf5/test-env-variables-new/C/H5D/testfiles/112/h5ex_d_sofloat.tst | 54850c90deb7276c9f1c2bd844b011954bb49ec8 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-llnl",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0",
"LicenseRef-scancode-hdf4"
] | permissive | openhpc/ohpc | 17515db5082429eb9f250f12bf242b994beb715f | 725a1f230434d0f08153ba1a5d0a7418574f8ae9 | refs/heads/3.x | 2023-08-19T02:15:14.682630 | 2023-08-18T19:33:51 | 2023-08-18T19:34:18 | 43,318,561 | 827 | 247 | Apache-2.0 | 2023-09-14T01:22:18 | 2015-09-28T18:20:29 | C | UTF-8 | Scilab | false | false | 197 | tst | h5ex_d_sofloat.tst | Maximum value in write buffer is: 106.666667
Minimum value in write buffer is: 1.769231
Filter type is: H5Z_FILTER_SCALEOFFSET
Maximum value in DS1 is: 106.661698
Minimum value in DS1 is: 1.769231
|
8c429d42d2de941f38ffcd4535ca27d229f51c25 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/macros/mtlb/mtlb_rand.sci | 72e52e1819045da66cc32cbac2ac68655c36d5cb | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 258 | sci | mtlb_rand.sci | function r=mtlb_rand(a,opt)
// Copyright INRIA
[lhs,rhs]=argn()
if rhs==1 then
if and(size(a)==[1 1]) then
r=rand(a,a)
else
r=rand(a(1),a(2))
end
else
if and(size(a)==[1 1]) then
r=rand(a,a,opt)
else
r=rand(a(1),a(2),opt)
end
end
|
236f9b4a5b997570d1cd8df396e44622971dbfae | 449d555969bfd7befe906877abab098c6e63a0e8 | /389/CH11/EX11.2/Example11_2.sce | cd7f2f290e9cc2b48b549329564ccaecc9747ef1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 3,057 | sce | Example11_2.sce | clear;
clc;
// Illustration 11.2
// Page: 596
printf('Illustration 11.2 - Page: 596\n\n');
// solution
//*****Data*****//
// x:kg carbon/kg soln
// y_star: Equilibrium colour, units/kg soln.
// X:adsorbate concentration, units/kg carbon
// Data = [x Y_star]
Data = [0 9.6;0.001 8.6;0.004 6.3;0.008 4.3;0.02 1.7;0.04 0.7];
Yo = 9.6;// [units of colour/kg soln]
Y1 = 0.1*Yo;// [units of colour/kg soln]
Ls = 1000;// [kg soln]
//****************//
Data1 = zeros(5);
Val = zeros(5);
for i = 1:5
Data1(i,1) = Data(i+1,1);
Data1(i,2) = Data(i+1,2);
Val(i) = (Data(1,2)-Data1(i,2))/Data1(i,1);
end
scf(31);
plot2d1("gll",Val,Data1(:,2));
xlabel("units of colour/kg carbon");
ylabel("units of colour/kg solution");
title("Equilibium Data(on log scale)");
xgrid();
n = 1.66;// [slope of line]
// At X = 663, Y_star = 4.3
// From eqn. 11.5
X = 663;
Y_star = 4.3;
m = Y_star/X^n;
// Freundlich Equation:
deff('[Y] = f76(X)','Y = m*X^n');
X = 0:1:1000;
scf(32);
plot(X,f76);
xgrid();
xlabel("units of colour/kg carbon");
ylabel("units of colour/kg solution");
title("Equilibium Data(on arithmetic scale)");
// Single Stage Operation:
// Since fresh carbn is used:
Xo = 0;// [units/kg carbon]
// From scf(30):
X1 = 270;// [units/kg carbon]
Data2 = [Xo Yo;X1 Y1];
scf(33);
plot(X,f76,Data2(:,1),Data2(:,2));
xgrid();
xlabel("units of colour/kg carbon");
ylabel("units of colour/kg solution");
legend("Equilbrium curve","Operating line curve");
title("Single stage operation");
// From Eqn. 11.4:
Ss = Ls*((Yo-Y1)/(X1-Xo));// [kg carbon/kg soln]
printf("Quantity of fresh carbon recquired for single stage operation: %f kg carbon/1000 kg solution\n",Ss);
// Two stage cross current operation:
// For the minimumamount of carbon:
X1 = 565;// [units/kg carbon]
Y1 = 3.30;// [units of colour/kg soln]
X2 = 270;// [units/kg carbon]
Y2 = 0.96;// [units of colour/kg soln]
Data3 = [Xo Yo;X1 Y1];
Data4 = [0 Y1;X2 Y2];
scf(34);
plot(X,f76,Data3(:,1),Data3(:,2),Data4(:,1),Data4(:,2));
xgrid();
xlabel("units of colour/kg carbon");
ylabel("units of colour/kg solution");
legend("Equilbrium curve","First of two Cocurrent","Second of two Cocurrent");
title("Two stage Cross current operation");
// From Eqn. 11.8:
Ss1 = Ls*(Yo-Y1)/(X1-Xo);// [kg]
Ss2 = Ls*(Y1-Y2)/(X2-Xo);// [kg]
Ss = Ss1+Ss2;// [kg]
printf("Quantity of fresh carbon recquired for two stage crosscurrent operation: %f kg carbon/1000 kg solution\n",Ss);
// Two Stage counter current operation:
Yo = 9.6;
Y2 = 0.96;
// By trial and error:
XNpPlus1 = 0;
X1 = 675;
Data5 = [X1 Yo;XNpPlus1 Y2];
scf(35);
plot(X,f76,Data5(:,1),Data5(:,2));
xgrid();
xlabel("units of colour/kg carbon");
ylabel("units of colour/kg solution");
legend("Equilbrium curve","Two stage Counter Current");
title("Two stage Counter Current operation");
// By eqn 11.14:
Ss = Ls*(Yo-Y2)/(X1-XNpPlus1);
printf("Quantity of fresh carbon recquired for two stage Counter Current operation: %f kg carbon/1000 kg solution\n",Ss); |
0c1bc7817af87dc01e5420d9a70b1eed06f4b3f8 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/VF58UMP/ATWM1_Working_Memory_MRI_VF58UMP/ATWM1_Working_Memory_MRI_Nonsalient_Uncued_Run1.sce | 1cbe4a9e2eb0a11235cc2d2200fecb2d93f622ad | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 12,282 | sce | ATWM1_Working_Memory_MRI_Nonsalient_Uncued_Run1.sce | # ATWM1 MRI Experiment
scenario = "ATWM1_Working_Memory_MRI_nonsalient_uncued_run1";
scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
#scenario_type = trials;
scan_period = 2000; # TR
pulses_per_scan = 1;
pulse_code = 1;
#pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 28;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
#write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 300; width = 300; color = 0, 0, 0;} frame1;
box { height = 290; width = 290; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 290; width = 290; color = 128, 128, 128;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 9400;
mri_pulse = 1;
code = "BaselinePre";
#port_code = 1;
};
TEMPLATE "ATWM1_Working_Memory_MRI.tem" {
trigger_volume_encoding trigger_volume_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
6 11 292 292 399 125 9543 2992 14342 fixation_cross gabor_045 gabor_001 gabor_019 gabor_064 gabor_045 gabor_001_alt gabor_019 gabor_064_alt "1_1_Encoding_Working_Memory_MRI_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_9601_3000_14400_gabor_patch_orientation_045_001_019_064_target_position_1_3_retrieval_position_1" gabor_090_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_1_Retrieval_Working_Memory_MRI_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
20 25 292 292 399 125 9543 2992 14342 fixation_cross gabor_152 gabor_087 gabor_105 gabor_041 gabor_152_alt gabor_087_alt gabor_105 gabor_041 "1_2_Encoding_Working_Memory_MRI_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_9601_3000_14400_gabor_patch_orientation_152_087_105_041_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_041_framed blank blank blank blank fixation_cross_white "1_2_Retrieval_Working_Memory_MRI_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
34 40 292 292 399 125 11543 2992 12342 fixation_cross gabor_073 gabor_158 gabor_135 gabor_048 gabor_073 gabor_158 gabor_135_alt gabor_048_alt "1_3_Encoding_Working_Memory_MRI_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_11601_3000_12400_gabor_patch_orientation_073_158_135_048_target_position_1_2_retrieval_position_2" gabor_circ gabor_113_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_3_Retrieval_Working_Memory_MRI_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_113_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
48 54 292 292 399 125 11543 2992 14342 fixation_cross gabor_067 gabor_147 gabor_037 gabor_174 gabor_067 gabor_147_alt gabor_037 gabor_174_alt "1_4_Encoding_Working_Memory_MRI_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_067_147_037_174_target_position_1_3_retrieval_position_1" gabor_067_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_4_Retrieval_Working_Memory_MRI_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
63 69 292 292 399 125 11543 2992 14342 fixation_cross gabor_080 gabor_065 gabor_152 gabor_170 gabor_080 gabor_065_alt gabor_152 gabor_170_alt "1_5_Encoding_Working_Memory_MRI_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_080_065_152_170_target_position_1_3_retrieval_position_1" gabor_080_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_5_Retrieval_Working_Memory_MRI_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_080_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
78 83 292 292 399 125 9543 2992 14342 fixation_cross gabor_098 gabor_083 gabor_009 gabor_173 gabor_098 gabor_083_alt gabor_009_alt gabor_173 "1_6_Encoding_Working_Memory_MRI_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_9601_3000_14400_gabor_patch_orientation_098_083_009_173_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_037_framed blank blank blank blank fixation_cross_white "1_6_Retrieval_Working_Memory_MRI_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
92 97 292 292 399 125 9543 2992 14342 fixation_cross gabor_033 gabor_096 gabor_013 gabor_059 gabor_033 gabor_096_alt gabor_013 gabor_059_alt "1_7_Encoding_Working_Memory_MRI_P6_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_9601_3000_14400_gabor_patch_orientation_033_096_013_059_target_position_1_3_retrieval_position_2" gabor_circ gabor_145_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_7_Retrieval_Working_Memory_MRI_P6_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_145_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
106 112 292 292 399 125 11543 2992 14342 fixation_cross gabor_139 gabor_109 gabor_091 gabor_004 gabor_139 gabor_109 gabor_091_alt gabor_004_alt "1_8_Encoding_Working_Memory_MRI_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_139_109_091_004_target_position_1_2_retrieval_position_2" gabor_circ gabor_159_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_8_Retrieval_Working_Memory_MRI_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_159_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
121 126 292 292 399 125 9543 2992 14342 fixation_cross gabor_118 gabor_180 gabor_133 gabor_001 gabor_118_alt gabor_180 gabor_133_alt gabor_001 "1_9_Encoding_Working_Memory_MRI_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_9601_3000_14400_gabor_patch_orientation_118_180_133_001_target_position_2_4_retrieval_position_2" gabor_circ gabor_044_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_9_Retrieval_Working_Memory_MRI_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_044_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
135 141 292 292 399 125 11543 2992 12342 fixation_cross gabor_118 gabor_002 gabor_155 gabor_041 gabor_118_alt gabor_002 gabor_155_alt gabor_041 "1_10_Encoding_Working_Memory_MRI_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_11601_3000_12400_gabor_patch_orientation_118_002_155_041_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_041_framed blank blank blank blank fixation_cross_white "1_10_Retrieval_Working_Memory_MRI_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
149 155 292 292 399 125 11543 2992 12342 fixation_cross gabor_029 gabor_083 gabor_149 gabor_064 gabor_029 gabor_083_alt gabor_149 gabor_064_alt "1_11_Encoding_Working_Memory_MRI_P6_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_11601_3000_12400_gabor_patch_orientation_029_083_149_064_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_064_framed blank blank blank blank fixation_cross_white "1_11_Retrieval_Working_Memory_MRI_P6_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_064_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
163 169 292 292 399 125 11543 2992 12342 fixation_cross gabor_109 gabor_020 gabor_075 gabor_136 gabor_109 gabor_020 gabor_075_alt gabor_136_alt "1_12_Encoding_Working_Memory_MRI_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_11601_3000_12400_gabor_patch_orientation_109_020_075_136_target_position_1_2_retrieval_position_1" gabor_154_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_12_Retrieval_Working_Memory_MRI_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_154_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
177 182 292 292 399 125 9543 2992 12342 fixation_cross gabor_153 gabor_080 gabor_041 gabor_015 gabor_153_alt gabor_080_alt gabor_041 gabor_015 "1_13_Encoding_Working_Memory_MRI_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_9601_3000_12400_gabor_patch_orientation_153_080_041_015_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_015_framed blank blank blank blank fixation_cross_white "1_13_Retrieval_Working_Memory_MRI_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
190 195 292 292 399 125 9543 2992 12342 fixation_cross gabor_055 gabor_032 gabor_172 gabor_137 gabor_055 gabor_032_alt gabor_172_alt gabor_137 "1_14_Encoding_Working_Memory_MRI_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_9601_3000_12400_gabor_patch_orientation_055_032_172_137_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_137_framed blank blank blank blank fixation_cross_white "1_14_Retrieval_Working_Memory_MRI_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_137_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
203 208 292 292 399 125 9543 2992 12342 fixation_cross gabor_110 gabor_161 gabor_078 gabor_053 gabor_110 gabor_161 gabor_078_alt gabor_053_alt "1_15_Encoding_Working_Memory_MRI_P6_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_9601_3000_12400_gabor_patch_orientation_110_161_078_053_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_078_framed gabor_circ blank blank blank blank fixation_cross_white "1_15_Retrieval_Working_Memory_MRI_P6_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_078_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 20600;
code = "BaselinePost";
#port_code = 2;
}; |
85090c96f2eda2ac4708374397f1a4aa2d8189bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /135/CH6/EX6.7/EX7.sce | 5554ae821dc93ab2d0484ab451bab141d2510a5a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 599 | sce | EX7.sce | // Example 6.7: (a) Load resistance RE to make Ri ≥ 500 kΩ
// (b) AV, Ro, Ro'
clc, clear
IC=2e-3; // in amperes
Rs=5e3; // Source resistance in ohms
bta=125;
VT=25e-3; // Voltage equivalent to temperatue at room temperature in volts
disp("Part (a)");
Ri=500e3; // in ohms
gm=IC/VT; // in mho
r_pi=bta/gm; // in ohms
RE=(Ri-r_pi)/(1+bta); // in ohms
REk=RE*1e-3; // in kilo-ohms
disp(REk,"RE (kΩ) =");
disp("Part (b)");
AV=(1+bta)*RE/(Rs+Ri);
Ro=(Rs+r_pi)/(1+bta); // in ohms
Ro_dash=Ro*RE/(Ro+RE); // in ohms
disp(Ro,"Ro (Ω) =");
disp(Ro_dash,"Ro'' (Ω) ="); |
de36820be021a036184ade839d277d80c8e05565 | e6d5f1d801a3fe887b5dc04b8cc0a9eabc1fd432 | /Semana_8/grupal.sce | 91dde501c147775ef6babb780963cacb8b1c14b7 | [] | no_license | lordjuacs/MateIII | 70def332063e56eb10fb47678a7e6130dc0dca63 | 164c53b61c9e35e565121f77ba2c578680a3ab56 | refs/heads/master | 2021-05-24T15:56:01.078904 | 2020-07-27T19:57:34 | 2020-07-27T19:57:34 | 253,643,962 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,759 | sce | grupal.sce | function [minimo, propio] = potencia_inversa(A,x0, Tol)
error = 1
E = inv(A)
while error> Tol
aux = E*x0
[maxi, pos] = max(abs(aux))
auxval = aux(pos)
x1 = aux/auxval
error=norm(x1-x0)/norm(x1)
x0 = x1
end
minimo = 1 / auxval
propio = x0
endfunction
function op = verificadiagdom(A)
[m, n] = size(A)
op = 1
for k=1:n
if abs(A(k,k)) < = sum(abs(A(k,:))) - abs(A(k,k))
op = 0
break
end
end
endfunction
clc
Morig = [6 5 3; 3 3 2;1 1 1]
aux = [1 1 1; 0 1 1; 0 0 1]
A = inv(aux)*Morig
disp(A, "A")
[Q,D]= spec(A)
disp(D, "Valores propios")
disp(Q, "Vectores propios")
[minimo, propio] = potencia_inversa(A, [1;0;0],1e-3)
disp(minimo, "Valor propio minimo - potencia inversa")
disp(propio, "Vector propio - potencia inversa")
//pot = potencia(A, [1 0 0]', 1e-3)
//disp(pot)
//2.
//A*X = lambda*X
//inv(A)*X=(1/lambda)*X
//E = inv(A)
// x0 = [1;0;0]
//iteracion 1
// y1 = E*x0
// [maxi, pos] = max(abs(y1))
// w = y1(pos) //w = 1/lambda
// u = 1/w
// disp(u, "Valor propio (minimo)")
// x1 = y1/w
// disp(x1, "Vector propio")
// //iteracion 2
//y2 = E*x1
//[maxi, pos] = max(abs(y2))
// w = y2(pos) //w = 1/lambda
// u = 1/w
// disp(u, "Valor propio (minimo)")
// x2 = y2/w
// disp(x2, "Vector propio")
disp(A, "A")
b = [1 1 1]'
disp(b, "b")
D = diag(diag(A))
L = -tril(A, -1)
U = -triu(A, 1)
Tj = inv(D)*(L+U)
Tgs = inv(D-L)*U
disp("Metodo de Jacobi")
rhoj = max(abs(spec(Tj)))
disp(rhoj)
disp("No converge, |radio espectral| > 1 ")
disp("Metodo de Jacobi")
rhogs = max(abs(spec(Tgs)))
disp(rhogs)
disp("Si converge, |radio espectral| < 1 ")
|
752000154d1f9ee9c31afa078069ebb8d5d0b0ab | 449d555969bfd7befe906877abab098c6e63a0e8 | /3685/CH15/EX15.4/Ex15_4.sce | a426ce8615adaa1e934bd3ce647fc787225c9072 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 812 | sce | Ex15_4.sce | clc
h1 = 82 // Enthalpy at state 1 in kJ/kg
h2 = 52 // Enthalpy at state 2 in kJ/kg
h3 = 47 // Enthalpy at state 3 in kJ/kg
h4 = 40// Enthalpy at state 4 in kJ/kg
W1 = 0.020 // Specific humidity at state 1
W2 = 0.0115// Specific humidity at state 2
W3 = W2 // Constant humidity process
v1 = 0.887 // Specific volume at state 1
v = 3.33 // amount of free sir circulated
G = v/v1 // air flow rate
CC = (G*(h1-h3)*3600)/14000 // Capacity of the heating Cooling coil
R = G*(W1-W3) // Rate of water vapor removal
HC = G*(h2-h3) //Capacity of the heating coil
printf("\n Example 15.4\n")
printf("\n Capacity of the cooling coil is %f tonnes",CC)
printf("\n Capacity of the heating coil is %f kW",HC)
printf("\n Rate of water vapor removal is %f kg/s",R)
//The answers vary due to round off error
|
18d46201e114359e7a04fce9ce21b5eec0df607b | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH28/EX28.3/example28_3.sce | 65ba5e749d99ef9c5503cdf4898029bcd4da5267 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 419 | sce | example28_3.sce | v=120;
v1=12.6/2;
r=220;
disp("Part a");
vm=v1*sqrt(2);
vdc=2*vm/%pi;
disp("the average dc voltage (in V) is"); disp(vdc);
disp("Part b");
im=vm/r;
disp("the peak current (in mA) though the load is"); disp(im*10^3);
disp("Part c");
idc=2*im/%pi;
disp("the reading of the dc ammeter (in mA) n series with the load is"); disp(idc*10^3);
pdc=vdc*idc;
disp("power delivered (in W) to the load is"); disp(pdc); |
da66f7c537ac6f6e1a0283e7582285e1bf170a1c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2708/CH2/EX2.5/ex_2_5.sce | e8600031aa0de99cd1f499f0fb7e263bebd73cc2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 282 | sce | ex_2_5.sce | //Example 2.5 // wavelength of light used
clc;
clear;
//given data :
c=1/5000;// grating element
theta=%pi/6;//spectral line deviated
n=2;//order of spectral line
w=(c*sin(theta))/(n);//wavelength in cm
w=w*1D8;//to convert in A
disp(w,"wavelength of ligth used in A")
|
b5218e56ac30557e6d9ef83e266993641358df5c | be6c437e65374d9f058b6a13ec704e0ebddeda4b | /ChoreStorefront/Typewriter/controllers/typewriter-controllers.tst | fae8ee740da59ac6e2c89985683dd7ee0fd70bc0 | [] | no_license | dlswimmer/ChoreStorefront | 9bab0b6fc183ac69f754c66db3a0bf1fe290fbf6 | 37c03fee7a5216bc093722d5d0d3be01b7b024c6 | refs/heads/master | 2023-01-16T06:26:34.679767 | 2020-11-29T22:05:29 | 2020-11-29T22:05:29 | 317,050,361 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 5,827 | tst | typewriter-controllers.tst | // @ts-ignore
import * as enums from '../enums';
${
Template(Settings settings)
{
settings.IncludeProject("ChoreStorefront");
}
// =================================== SHARED LOGIC -- PLEASE KEEP IN SYNC WITH typewriter-definitions.tst and typewriter-controllers.tst and typewriter-master.tst
private const string IncludeEnumAttribute = "TsEnumModule";
string DocCommentFormatted(Property p) {
var dc = p.DocComment;
if (dc == null) {
return string.Empty;
}
return @"/**
* " + dc.Summary + @"
*/";
}
// =================================== CONTROLLER LOGIC:
IEnumerable<Method> GetMethods(Class cls) {
return cls.Methods.Where(m=>m.Attributes.Any(a=> a.Name=="HttpGet") && !m.Attributes.Any(a=> a.Name=="TsIgnore"));
}
IEnumerable<Method> PostMethods(Class cls) {
return cls.Methods.Where(m=>m.Attributes.Any(a=> a.Name=="HttpPost") && !m.Attributes.Any(a=> a.Name=="TsIgnore"));
}
string GetType(Parameter p) {
return GetType(p.Type);
}
string GetType(Type t) {
if (t.IsEnum && t.Attributes.Any(a => a.Name ==IncludeEnumAttribute)) {
return "enums." + t.ToString();
}
if (t.OriginalName.StartsWith("IDictionary") && t.TypeArguments.Count==2) {
var keyType = t.TypeArguments[0];
var valueType = t.TypeArguments[1];
var keyTypeStr = keyType.IsEnum ? "string" : keyType.ToString();
return "{ [key: " + keyTypeStr +"]: " + GetType(valueType) +"; }";
}
if (t.IsPrimitive && !t.GetType().Name.StartsWith("IDictionary")) {
return t.ToString();
}
if (t.TypeParameters.Any() && t.Name.Contains("<")) {
var typeParams = t.TypeArguments.Select(m=>GetType(m));
return "models." + t.Name.Substring(0, t.Name.IndexOf("<")) + "<" + string.Join(",", typeParams) + ">";
//name += c.TypeParameters.ToString();
}
return (t.IsEnumerable ? "readonly " : "") + "models." + t.ToString();
}
string GetType(Method p) {
var t = p.Attributes.FirstOrDefault(m=>m.Name=="TsType" || m.Name=="ResponseType");
if (t!=null) {
return GetType(t.Arguments[0].TypeValue);
}
if ( p.Type.Name=="Task")
{
return "void";
}
return (p.Type.IsPrimitive && !p.Type.OriginalName.StartsWith("IDictionary")) || p.Type.Name=="void" ? p.Type.ToString() : GetType(p.Type);
}
Parameter[] ControllerFilterParameters(Method method) {
return method.Parameters.Where(m=>m.Type.Name!="CancellationToken").ToArray();
}
string ControllerPostParameters(Method method) {
var ps = ControllerFilterParameters(method).Where(m=>!m.Type.IsPrimitive).ToArray();
if (ps.Length==0) {
return "";
}
if (ps.Length==1) {
return ", " + ps[0].name;
}
return ", {" + string.Join(", ", ps.Select(p=>p.name)) + "}";
}
string postUrl(Method m) {
var ps = ControllerFilterParameters(m);
if (ps.Length==1 && ps[0].name=="id") {
return "'" + m.name + "/' + id";
}
if (ps.Length>=1 && ps.Any(p=>p.Type.IsPrimitive)) {
return getUrl(m);
}
return "'" + m.name + "/'";
}
string getUrl(Method m) {
var ps = ControllerFilterParameters(m);
if (ps.Length==1 && ps[0].name=="id") {
return "'" + m.name + "/' + id";
}
//if (ps.Length==1 && !ps[0].Type.IsPrimitive) {
// return "'" + m.name + "/?" + string.Join(" + \'&", ps[0].Type.Properties.Select(p=> p.name + "=' + " + (p.Type.name=="string" ? "encodeURIComponent(" + ps[0].name + "." + p.name + ")" : ps[0].name + "." + p.name)));
//}
if (ps.Length==0) {
return "'" + m.name + "/'";
}
return "'" + m.name + "/?" + string.Join(" + \'&", ps.Where(m=>m.Type.IsPrimitive).Select(p=> p.name + "=' + " + (p.Type.name=="string" ? "encodeURIComponent(" + p.name + ")" : p.name)));
}
string nameWithoutController(Class c) {
var name = c.name.EndsWith("Controller") ? c.name.Substring(0, c.name.Length-10) : c.name;
var namespac = c.Namespace;
return name;
}
string importFunctions(File file) {
var anyGet = file.Classes.Any(c=>c.Methods.Any(m=>m.Attributes.Any(a=>a.Name=="HttpGet")));
var anyPost= file.Classes.Any(c=>c.Methods.Any(m=>m.Attributes.Any(a=>a.Name=="HttpPost")));
if (anyGet) {
if (anyPost) {
return "executeGet, executePost";
}
return "executeGet";
}
else if (anyPost) {
return "executePost";
}
return "";
}
}
import { $importFunctions } from '../http-utils';
$Classes(c=>c.Attributes.Any(a=>a.Name=="TsClassController") && (GetMethods(c).Any() || PostMethods(c).Any()))[
export const endpointUrl = '/api/$nameWithoutController/';
$GetMethods[
export function $name($ControllerFilterParameters[$name: $GetType][, ]) { return executeGet<$GetType>(endpointUrl + $getUrl); }
]
$PostMethods[
export function $name($ControllerFilterParameters[$name: $GetType][, ]) { return executePost<$GetType>(endpointUrl + $postUrl$ControllerPostParameters); }
]
] |
7bc5e76987d882a4a3eb39f379e088c2b59e9f80 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2882/CH10/EX10.1/Ex10_1.sce | 7eaf231bc0c6084a4097c129b1b7bd8e5fd3443b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 396 | sce | Ex10_1.sce | //Tested on Windows 7 Ultimate 32-bit
//Chapter 10 Feedback in Amplifiers Pg no. 330
clear;
clc;
//Given
Vi=2D-3;//input voltage in volts
Vo_dash=10;//output voltage with feedback in volts
BVo_dash=200D-3;//feedback voltage in volts
//Solution
A=Vo_dash/Vi;//open loop gain
Afb=Vo_dash/(Vi+BVo_dash);//closed loop gain
B=1/Afb-1/A;//feedback gain beta
printf("β = %.2f",B);
|
2ae4a8301d300d584c10dfa19c2919d3a12efa0d | 9b68b3d73b63ebcbfe18cc9a4aa8e91c84833a84 | /tests/libs/hdf5/test-h5-wrappers-new/C/H5T/testfiles/112/h5ex_t_vlstring.tst | 9516b1afb3bbd3c4e9a1f290d9bb5035d869f4a6 | [
"LicenseRef-scancode-llnl",
"LicenseRef-scancode-hdf4",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | openhpc/ohpc | 17515db5082429eb9f250f12bf242b994beb715f | 725a1f230434d0f08153ba1a5d0a7418574f8ae9 | refs/heads/3.x | 2023-08-19T02:15:14.682630 | 2023-08-18T19:33:51 | 2023-08-18T19:34:18 | 43,318,561 | 827 | 247 | Apache-2.0 | 2023-09-14T01:22:18 | 2015-09-28T18:20:29 | C | UTF-8 | Scilab | false | false | 62 | tst | h5ex_t_vlstring.tst | DS1[0]: Parting
DS1[1]: is such
DS1[2]: sweet
DS1[3]: sorrow.
|
dcadf896b7d24f0005638bd435788755b728d959 | c89c3eb73e1c7b9f26076ad36749b4fd9ee2a69d | /My Implementations/DMUX8Way.tst | a5ab2734064feca9c0dd72469da3d6fb0b36b5b2 | [] | no_license | gvela024/Elements-Of-Computing-Systems | cef0f824a4ca775ff7d2353a49c6510134db83da | 65a2b40979439b0d77e6fab1b3faa4b1a78ddd03 | refs/heads/master | 2021-01-22T03:13:48.244660 | 2015-12-26T00:53:51 | 2015-12-26T00:53:51 | 41,272,979 | 0 | 0 | null | 2015-11-11T22:27:40 | 2015-08-24T00:17:59 | Assembly | UTF-8 | Scilab | false | false | 461 | tst | DMUX8Way.tst | load DMUX8Way.hdl,
output-file DMUX8Way.out,
output-list in0 select%B1.3.1 out0 out1 out2 out3 out4 out5 out6 out7;
set in0 1, set select %B000, eval, output;
set in0 1, set select %B001, eval, output;
set in0 1, set select %B010, eval, output;
set in0 1, set select %B011, eval, output;
set in0 1, set select %B100, eval, output;
set in0 1, set select %B101, eval, output;
set in0 1, set select %B110, eval, output;
set in0 1, set select %B111, eval, output;
|
085d2002d90136c085d06b2086d8c0437edf84fb | 449d555969bfd7befe906877abab098c6e63a0e8 | /3648/CH17/EX17.7/Ex17_7.sce | 981f8feae4519dd10fdfb5e85d01a808169f2321 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 242 | sce | Ex17_7.sce | //Example 17_7
clc();
clear;
//To find the current in circuit
v1=3 //Units in V
v2=12 //Units in V
r1=5 //Units in Ohms
r2=6 //Units in Ohms
i=(v1-v2)/(r1+r2) //Units in A
printf("The current in circuit is I=%.2f A",i)
|
9067b309f6ac47bc5f5117481299a854f523ea4f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2777/CH7/EX7.9/Ex7_9.sce | 2afaf6b61a9ead61fbce4444db5c1d8e63d787d2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,024 | sce | Ex7_9.sce |
// ELECTRICAL MACHINES
// R.K.Srivastava
// First Impression 2011
// CENGAGE LEARNING INDIA PVT. LTD
// CHAPTER : 7 : SPECIAL MOTORS AND INTRODUCTION TO GENERALIZED MACHINE THEORY
// EXAMPLE : 7.9
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
E2 = 100; // Per phase standstill EMF in Volts
Z2s = 0.025 + %i*0.08; // Rotor circuit impedance at standstill
E = 50; // Injected EMF in Volts
// CALCULATIONS
I2 = 0; // Assuming Current is zero
s1 = (E/E2)+(I2*Z2s)/E2; // Slip when injected EMF is opposite to the E2
s2 = (-E/E2)+(I2*Z2s)/E2; // Slip when injected EMF is phase with E2
// DISPLAY RESULTS
disp("EXAMPLE : 7.9: SOLUTION :-");
printf("\n (a) Slip when injected EMF is opposite to the E2, s = %.1f \n",s1)
printf("\n (b) Slip when injected EMF is phase with E2, s = %.1f \n",s2)
|
533455a5d65bd40f59e8eb041c56b298466f9974 | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH12/EX12.14/12_14.sce | e8327b2611f13feb5b3721d8c10b1643680f6640 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 120 | sce | 12_14.sce | Pmout=20000
Pwfl=1500
Pm=Pmout+Pwfl
disp(Pm)
ns=1500
n=1440
s=1-n/ns
Pg=Pm/(1-s)
disp(Pg)
Pcu=s*Pg
disp(Pcu)
|
8a00bb03f1fd9217f73a8f5e65da11f8a3d64af4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3363/CH4/EX4.9/Ex4_9.sce | 41a147816b1754499cf32f21a240eca3fd8bfdc7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 321 | sce | Ex4_9.sce | //Example 4.9, page 124
clc
disp('Part a')
mu=207//207*me
M=1836//183*me
u=(mu*M)/(mu+M)
D=(1/u)*5.3*10^-11
printf("\nMuon nucleus seperation is %e m ",D)
disp('Part b')
E=-u*13.6
printf("\n Binding energy is %f ev ",E)
disp('Part c')
R=109737//in cm
lambda=(1/u)*(1/0.75)*(1/R)
printf("\n Wavelength is %e cm ",lambda)
|
97b73cf7b103022d3771f21039bc54ae4f5ae337 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3886/CH12/EX12.6/12_6.sce | bf95837332904800b17c7ce126ec9c4404905ea7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 486 | sce | 12_6.sce | //Distance covered
//refer fig.12.9
//Let the particle start from A and come to halt at E
//Let initial velocity be u m/sec
//consider motion between A and B
//u+a=10
//consider motion between A and C
//70=7*u+7*a
//solving
a=-10/17.5 //m/sec^2
u=10-(a) //m/sec
//Let distance AD be s1
s1=10.571*10+(-0.571*10^2)/2 //m
//Distance covered in the interval 7 sec to 10 sec
CD=77.16-60 //m
//Let AE=s
s=(10.571^2)/(2*0.571) //m
printf("\nCD=%.2f m\ns=%.2f m",CD,s)
|
f08337d740390318a28efba0b71fa13b194daef8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1019/CH5/EX5.21/Example_5_21.sce | 80ce60377e7746d998c7e9eb7e5f6cb472850ffa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 483 | sce | Example_5_21.sce | //Example 5.21
clear;
clc;
//Given
delHtrans=13.4;//latent heat of fusion in J g^-1
delVm=0.0126;//change in volume due to transition in cm^3 g^-1
T=368.5;//temperature in K
//To determine the increase in the transition point between 2 forms of sulphur for increase in atmospheric pressure
a=(delHtrans*10)/(T*delVm*1.01325);//a=(delP/delT)
b=a^(-1);//b=(delT/delP)
mprintf('The transition point between 2 forms of sulphur should be increased by %f K atm^-1',b);
//end |
2ef3b24d7e68e8805691008baf17c1dd5b36b0e7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /575/DEPENDENCIES/4_2_3.sci | c05f655a6905fcb2bc889e82b145581f6a983bfc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 63 | sci | 4_2_3.sci | m1=200 //g
m2=150 //g
x1=0.4 //methanol/g
x2=0.7 //methanol/g |
7cac120483f99923dba13427bcf80e0d139a8424 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1184/CH3/EX3.5/Ex3_5.sce | a01846f15c9f6e24acc671c2890ba5734152d3b4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 148 | sce | Ex3_5.sce | //Example 3-5, Page No - 108
clear
clc
It = 5.1
Ic =4.8
m=(2*((It/Ic)^2-1))^0.5
printf('The percentage of modulation is %.1f',m*100)
|
e220f2a657f1ab85904d62cc3ab45267730ac17b | 449d555969bfd7befe906877abab098c6e63a0e8 | /213/CH3/EX3.12/3_12.sce | 0d718d9d7d65ac61bff3a53f3a500a3032742ad8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,086 | sce | 3_12.sce | //To find the speed, time and KE lost
clc
//Given:
T=150 //N-m
m1=60,m2=20 //kg
k1=140/1000,k2=80/1000 //m
N1=750,N2=0 //rpm
//Sloution:
//Calculating the angular speeds
omega1=2*%pi*N1/60,omega2=0 //rad/s
//Calculating the mass moment of inertia of the rotor on motor
I1=m1*k1^2 //kg-m^2
//Calculating the mass moment of inertia of the parts attached to machine
I2=m2*k2^2 //kg-m^2
//Calculating the speed after engagement of the clutch and the time taken
//We know that impulsive torque = change in angular momentum
//T*t = I1*(omega1-omega), or I1*omega+T*t = I1*omega1 .....(i)
//T*t = I2*(omega-omega2), or I2*omega-T*t = I2*omega2 .....(ii)
A=[I1 T; I2 -T]
B=[I1*omega1; I2*omega2]
V=A \ B
omega=V(1) //rad/s
t=V(2) //s
//Calculating the kinetic energy lost during the operation
E=I1*I2*(omega1-omega2)^2/(2*(I1+I2)) //N-m
//Results:
printf("\n\n The speed after engagement, omega = %.1f rad/s.\n",omega)
printf(" The time taken, t = %.2f s.\n",t)
printf(" The kinetic energy lost during the operation, E = %d N-m.\n\n",E) |
b04cd49140ab8666aa2b2e50462885a38d1e08b5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1646/CH9/EX9.6/Ch09Ex6.sce | 0b8b646d7e0b82929c25e8e1b4214f4e390066c6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 653 | sce | Ch09Ex6.sce | // Scilab Code Ex9.6: Page-466 (2011)
clc;clear;
mu1 = 1.466; // Refractive index of core
mu2 = 1.460; // Refractive index of cladding
v = 2.4;....// Cut-off parameter of the optical fibre
lambda = 0.8e-006;....// Operating wavelength, m
NA = sqrt(mu1^2-mu2^2);
printf("\nThe NA of optical fibre = %4.2f", NA) ;
// Asthe cut-off parameter v of the optical fibre, v = 2*%pi*a*sqrt(mu1^2-mu2^2)/lambda, solving for a
a = lambda*v/(2*%pi*sqrt(mu1^2-mu2^2));
printf("\nThe core radius of the optical fibre = %4.2e micron", a/1e-006);
// Result
// The NA of optical fibre = 0.13
// The core radius of the optical fibre = 2.31e+00 micron
|
edd6a44166c0e8e007a2b4323c68a3494961daea | 449d555969bfd7befe906877abab098c6e63a0e8 | /2417/CH6/EX6.7/Ex6_7.sce | 7f3e5358dee2d9d1af1d4b4d0ad2a6ebbacc81db | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 564 | sce | Ex6_7.sce | clear;
clc;
printf("\t\t\tProblem Number 6.7\n\n\n");
// Chapter 6: The Ideal Gas
// Problem 6.7 (page no. 245)
// Solution
//Applying , (p1*V1)/T1 = (p2*V2)/T2
//and p2=p1*(T2/T1) because V1=V2
p1=200+14.7; //Unit:psia //initial pressure
T2=460+200; //final temperature is 200 F //Fahrenheit temperature converted to absolute temperature //unit:R
T1=460+73; //Fahrenheit temperature converted to absolute temperature //unit:R
p2=p1*(T2/T1); //final pressure //Unit:psia //Charles's law(volume constant)
printf("The final pressure is %f psia",p2);
|
1124527434b1094a69bc6fe3c6aab114dbefa56d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1118/CH16/EX16.4/eg16_4.sce | c267f1fc568853249bd9fd2975f3b824f21a8398 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 287 | sce | eg16_4.sce | clear;
//clc();
sb=7.5*10^6;
vl=3.3*10^3;
sga=3;
sgb=4.5;
xgb=0.08;
xga=0.07;
xga_pu=sb*xga/sga;
xgb_pu=sb*xgb/sgb;
xgp=(xga_pu*xgb_pu)/(xga_pu+xgb_pu);
xu=0.0724;
ifl=sb/(sqrt(3)*vl);
vn=vl/sqrt(3);
x=xu*vn/ifl;
printf("the reactance of the reactor is:%.3f A",x);
|
b7a67222e654f62e74dd34d360afa685d13c0ed7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2318/CH3/EX3.71.b/ex_3_71_b.sce | d641e6e587d32fdf00bba337efb3d8cb1bf7f43c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 295 | sce | ex_3_71_b.sce | //Example 3.71.b:resistance and capacitance
clc;
clear;
close;
cl=10^-4;//micro-F
c2=0.004;//micro-F
c3=0.001;//micro-F
r3=10;//killo ohms
r4=5;//killo ohms
f=1;//kHz
rx=((c3+cl)/c2)*r4;//killo ohms
cx=(r3/r4)*c2;//micro-F
disp(rx,"resistance is ,(k-ohm)=")
disp(cx,"capacitance is,(micro-F)=")
|
92c35f3e67991fd6d5ed639764ab810282fbbe3b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3888/CH3/EX3.5/Ex3_5.sce | 26acc005b51c0df7573a0f33e75cd433585223cf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,251 | sce | Ex3_5.sce | //Electric Power Generation, Transmission and Distribution by S.N.Singh
//Publisher:PHI Learning Private Limited
//Year: 2012 ; Edition - 2
//Example 3.5
//Scilab Version : 6.0.0 ; OS : Windows
clc;
clear;
kVpry=220; //Primary voltage of Transformer in kV
kVsec=400; //Secondary voltage of Transformer in kV
MVAb=240; //Apparent Base power in Transformer in MVA
Zpry=3+%i*8; //Primary Impedance of Transformer in Ohm
Zsec=5+%i*10; //Secondary Impedance of Transformer in Ohm
Zlv=(Zpry)+(Zsec)*(kVpry/kVsec)^2; //Impedance referred to LV side in Ohm
Zlvpu=(Zlv)*(MVAb/(kVpry)^2); //Per unit impedance referred to LV side in p.u. Ohm
Zhv=(Zsec)+(Zpry)*(kVsec/kVpry)^2; //Impedance referred to HV side in Ohm
Zhvpu=(Zhv)*(MVAb/(kVsec)^2); //Per unit impedance referred to HV side in p.u. Ohm
printf("\nPer unit impedance referred to the L.V side is %.6f + j%.6f",real (Zlvpu),imag (Zlvpu));
printf("\nPer unit impedance referred to the H.V side is %.6f + j%.6f",real (Zhvpu),imag (Zhvpu));
|
063125c1b54a1c76c9b8d2d60f637e164c23d38f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1919/CH5/EX5.8/Ex5_8.sce | 8dba53a38e04bc5b6afd609f21c9754bd95bde7b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,083 | sce | Ex5_8.sce |
// Theory and Problems of Thermodynamics
// Chapter 5
// Second law of Thermodynamics
// Example 8
clear ;clc;
//Given data
Q = 100 // rate of energy losses as heat from roof and walls of auditorium in kW per degree celsius
TD = 298.15 // desired temperature to be maintained in K
TW = 273.15 // outside temperature during winter in K
TS = 314.15 // outside temperature during summer in K
// Winter: Device is used as heat pump
TL = TW // outside temperature
TH = TD // Desired temperature
QH = Q*(TH-TL) // total heat loss to surroundings
// COP_HP = QH/W = TH/(TH-TL)
W = QH * (TH-TL)/TH // Power required in kW
mprintf('The power required to operate the device in winter = %5.2f kW', W)
// Summer: Device is used as refrigerator
TL = TD // Desired temperature
TH = TS // Outside temperature
QL = Q*(TH-TL) // Total heat loss to surroundings
// COP_HP = QH/W = TL/(TH-TL)
W = QL * (TH-TL)/TL // Power required in kW
mprintf('\n The power required to operate the device in summer = %5.2f kW', W)
|
4af55b45d966c9711c909943b7ea50986e9aa290 | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH4/EX4.14/example_4_14.sce | 051e3f1c1f95a9116bb4cbe48e929eac7d342092 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 447 | sce | example_4_14.sce | syms M1 X1 B1 K X2 M2 B2 K3 K1 K2 C1 C2 C3 R1 R2 M3 X3 B3 I1 I2 I3 L3 L1 L2 R3
F=M1*X1*s^2 + B1*s*X1 + K*X1 + B2*(X1-X2)*s
zero=M2*X2*s^2 + B2*s*(X2-X1)+K3*X2+K2*(X2-X3)
zro=K2*(X3-X2)+M3*s^2*X3+B3*s*X3
disp(F)
disp(zero," 0 =")
disp(zro," 0 = ")
disp("F-V equations are")
V=L1*s*I1 + R1*I1 + R2*(I1-I2)+I1/(s*C1)
zero=L2*s*I2 + I2/(s*C3) + R2*(I2-I1)+(I2-I3)/(s*C2)
zro=(I3-I2)/(s*C2)+L3*s*I3+R3*I3
disp(V)
disp(zero)
disp(zro) |
7a8af4e72b26067830507c1114acffa68f3bca5c | c0e925bc1013d8f0568d30788348d188a781ca78 | /A1 - Image Segmentation/ImgSeg.sce | 6ee4fc3478bf6fbf04a73d0dad2fa03e892d2e64 | [] | no_license | YahikoSV/CollegeCodes | 883b9d5174d2021794f55959d3eea09be37e77af | b4d4b988f6eda8c486d133f163c24fdd4d228c92 | refs/heads/main | 2023-01-29T19:36:37.010491 | 2020-12-08T07:09:02 | 2020-12-08T07:09:02 | 319,520,498 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,819 | sce | ImgSeg.sce | J = im2double(imread('D:\College\Physics 186\AP 186 Act - 7\BBIGB.jpg'));
//%{
// ---Short Tip ---
//I = imread('cgc.jpg');
//[count, cells] = imhist(I, 256);
//plot (cells,count);
//BW = I < 125;
//imshow(BW);
//%}
//%Extract Pixels (interactive)
R_J = J(:,:,1);
G_J = J(:,:,2);
B_J = J(:,:,3);
//%RGB to normalized chromnacity coordinates
Int_J = R_J+G_J+B_J;
Int_J(find(Int_J==0))=100000;
r_J = R_J./Int_J;
g_J = G_J./Int_J;
//%Cropped Img
//I = imcrop(J);
//I=imcrop(J,[250,110,50,70]) //skin
I=imcrop(J,[240,220,25,35])
imshow(I)
R_I = I(:,:,1);
G_I = I(:,:,2);
B_I = I(:,:,3);
Int_I = R_I+G_I+B_I;
Int_I(find(Int_I==0))=100000;
R_I = I(:,:,1);
G_I = I(:,:,2);
r_I = R_I./Int_I;
g_I = G_I./Int_I;
//%Histogram Backprojection
BINS = 32;
rint = round(r_I*(BINS-1)+1);
gint = round(g_I*(BINS-1)+1);
colors = gint(:) + (rint(:)-1)*BINS;
hist = zeros(BINS,BINS);
for row = 1:BINS
for col = 1:(BINS-row+1)
hist(row,col) = length (find(colors==(((col+(row-1)*BINS)))));
end;
end;
J_rint = round(r_J*(BINS-1)+1);
J_gint = round(g_J*(BINS-1)+1);
ssize = size(J_rint);
Result = zeros(ssize(1),ssize(2));
figure;
(Matplot(hist*255/max(hist)));
hist2 = round(hist*255/max(hist));
for row1 = 1:ssize(1)
for col1 = 1:ssize(2)
Result(row1,col1) = hist2(J_rint(row1,col1),J_gint(row1,col1));
end;
end;
figure;
Matplot(Result)
//% Parametric Segmentation
//testr = r_J-mean2(r_I);
//p_r = ( 1/(std2(r_I)*sqrt(2*pi)))*exp(-testr.^2/(2*std2(r_I)^2));
//
//testg = g_J-mean2(g_I);
//p_g = ( 1/(std2(g_I)*sqrt(2*pi)))*exp(-testg.^2/(2*std2(g_I)^2));
//
//p_rg = p_r.*p_g;
//figure;
//imagesc(p_rg);
//colormap Gray;
//
//imwrite(Result,'D:\College\Physics 186\AP 186 Act - 7\greenball.csv')
//
csvWrite(Result,'D:\College\Physics 186\AP 186 Act - 7\skin.csv')
|
3f0d890c78a0038c5550978d44ac6106801c9c24 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2360/CH6/EX6.35/ex6_35.sce | 52467d0cf8089d82631c7ed43bcf5e0dba1b0e4d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 963 | sce | ex6_35.sce | // Exa 6.35
format('v',7);clc;clear;close;
// Given data
R3 = 260;//resistance in ohm
C4 = 0.5;// in µF
C4 = C4 * 10^-6;// in F
C2 = 106;// in pF
C2 = C2 * 10^-12;// in F
R4 = 1000/%pi;//resistance in ohm
r1 = (C4/C2)*R3;//resistance in ohm
C1 = (R4/R3)*C2;// in F
Epsilon_o = 8.854*10^-12;
d = 4.5// in mm
d = d * 10^-3;// in m
D= 0.12;// in m
A= %pi*D^2/4;// in m^2
disp(r1,"The resistance in Ω is :")
C1= C1*10^12;// in pF
disp(C1,"The capacitance in pF is");
C1= C1*10^-12;// in F
f = 50;// in Hz
omega = 2*%pi*f;// in rad/sec
Pf= omega*C1*r1;// power factor
disp(Pf,"The power factor is");
// C1 = Epsilon_r*Epsilon_o*(A/d);
Epsilon_r = (C1*d)/(Epsilon_o*A);// the relative permittivity
disp(Epsilon_r,"The relative permittivity is");
// Note: The calculation of evaluating the value of C1 is wrong, so the answer of C1 in the book is wrong. But they putted the correct value of C1 to find the value of relative permittivity
|
ec90fb2676277750db3f179e436501e60671a111 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1694/CH6/EX6.17/Ex6_17.sce | b8a0759876b4a82e4f8213bb07bf52e56795a7c1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 321 | sce | Ex6_17.sce | clear;
clc;
printf("\nEx-6.17\n");
//page no.-191
//given
rho=1.54*10^-8;......//resistivity in ohm m
no=5.8*10^28;.........//no of free electrons per unit vol
m=9.11*10^-31;....//mass
e=1.6*10^-19;......//charge in C
tau=m/(no*e^2*rho)....//relaxation time
printf("\nrelaxation time is 3.97*10^-14 s\n");
|
b07481ddeba7beb3f491494bd939e865812bf759 | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH7/EX7.18/7_18.sce | aa59d086a63e9e0373139d8bffcc604e265a8929 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 142 | sce | 7_18.sce | fluxc=1.5E-3
Ac=12/10000
Bc=fluxc/Ac
Hc=1250
lc=0.3
F=Hc*lc
Fa=200*1
Fb=600*0.75
Fc=F-Fb+Fa
Nc=Fc/0.5
disp(Nc) ////clockwise5 |
ff950d2cb796148b2ff1132c3e7afd4f0350e099 | ac66d3377862c825111275d71485e42fdec9c1bd | /Resources/res/map/map2107.sce | 810810a78307bcfee31540fbdf2f682aef5c1fd3 | [] | no_license | AIRIA/CreazyBomber | 2338d2ad46218180f822682d680ece3a8e0b46c3 | 68668fb95a9865ef1306e5b0d24fd959531eb7ad | refs/heads/master | 2021-01-10T19:58:49.272075 | 2014-07-15T09:55:00 | 2014-07-15T09:55:00 | 19,776,025 | 0 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 2,467 | sce | map2107.sce | <?xml version="1.0" encoding="UTF-8"?>
<Project Name="map2106" Width="19" Height="9" CellSize="40" BackgroundSize="1" Background="13plus.png">
<Cell Name="木箱" X="3" Y="1" />
<Cell Name="木箱" X="5" Y="1" />
<Cell Name="木箱" X="7" Y="1" />
<Cell Name="木箱" X="9" Y="1" />
<Cell Name="木箱" X="11" Y="1" />
<Cell Name="木箱" X="13" Y="1" />
<Cell Name="木箱" X="15" Y="1" />
<Cell Name="出生点" X="1" Y="2" />
<Cell Name="木箱" X="2" Y="2" />
<Cell Name="木箱" X="4" Y="2" />
<Cell Name="木箱" X="6" Y="2" />
<Cell Name="木箱" X="8" Y="2" />
<Cell Name="木箱" X="10" Y="2" />
<Cell Name="木箱" X="12" Y="2" />
<Cell Name="木箱" X="14" Y="2" />
<Cell Name="木箱" X="16" Y="2" />
<Cell Name="木箱" X="1" Y="3" />
<Cell Name="木箱" X="3" Y="3" />
<Cell Name="木箱" X="5" Y="3" />
<Cell Name="木箱" X="7" Y="3" />
<Cell Name="木箱" X="9" Y="3" />
<Cell Name="木箱" X="11" Y="3" />
<Cell Name="木箱" X="13" Y="3" />
<Cell Name="豌豆-右" X="14" Y="3" arg0="3" arg1="3,0" arg2="3" />
<Cell Name="木箱" X="15" Y="3" />
<Cell Name="木箱" X="2" Y="4" />
<Cell Name="木箱" X="4" Y="4" />
<Cell Name="木箱" X="6" Y="4" />
<Cell Name="木箱" X="8" Y="4" />
<Cell Name="木箱" X="10" Y="4" />
<Cell Name="木箱" X="12" Y="4" />
<Cell Name="木箱" X="14" Y="4" />
<Cell Name="木箱" X="16" Y="4" />
<Cell Name="木箱" X="1" Y="5" />
<Cell Name="木箱" X="3" Y="5" />
<Cell Name="木箱" X="5" Y="5" />
<Cell Name="木箱" X="7" Y="5" />
<Cell Name="木箱" X="9" Y="5" />
<Cell Name="木箱" X="11" Y="5" />
<Cell Name="豌豆-左" X="12" Y="5" arg0="2" arg1="3,0" arg2="3" />
<Cell Name="木箱" X="13" Y="5" />
<Cell Name="木箱" X="15" Y="5" />
<Cell Name="火墙" X="1" Y="6" arg0="30" arg1="40" arg2="5" />
<Cell Name="木箱" X="2" Y="6" />
<Cell Name="木箱" X="4" Y="6" />
<Cell Name="木箱" X="6" Y="6" />
<Cell Name="木箱" X="8" Y="6" />
<Cell Name="木箱" X="10" Y="6" />
<Cell Name="木箱" X="12" Y="6" />
<Cell Name="木箱" X="14" Y="6" />
<Cell Name="木箱" X="1" Y="7" />
<Cell Name="木箱" X="3" Y="7" />
<Cell Name="木箱" X="5" Y="7" />
<Cell Name="木箱" X="7" Y="7" />
<Cell Name="木箱" X="9" Y="7" />
<Cell Name="木箱" X="11" Y="7" />
<Cell Name="木箱" X="13" Y="7" />
<Cell Name="木箱" X="15" Y="7" />
<Cell Name="通关点-1" X="16" Y="7" />
</Project> |
7844f7cd582655813c552efc32bca99031295005 | 449d555969bfd7befe906877abab098c6e63a0e8 | /137/CH2/EX2.6a/prob_2_6a.sce | 6326258b1cbd13a0f8f7f8e6c05fc3a42c2b2a90 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 487 | sce | prob_2_6a.sce | clc;
//Assuming SI units for all quantities
//given signal is x(t)=1
//energy of signal x(t)
t0=0;t1=5;
x=1;
y=integrate('x^2','t',t0,t1);
disp(+'joule',y,'energy of signal x(t)=')
//to find correlation coefficient we have to calculate the energies of different given signals
//1st signal g1(t)=1
g1=1;
e1=integrate('g1^2','t',t0,t1);
disp(+'joule',e1,'energy of signal');
//correltion coefficient
c1=integrate('g1*x','t',t0,t1);
disp(+'joule',c1/sqrt(y*e1),'correlation coefficient='); |
423e709fe3c24b38aee577a3c595e5afd27f1bcd | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electric_Machines_-_I_M._Verma_And_V._Ahuja_695.zip/Electric_Machines_-_I_M._Verma_And_V._Ahuja_695/CH3/EX3.4/Ex3_4.sce | 6ac60b1be7b5d91aa92135e46e5fb3e6f1ff858f | [] | 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 | 494 | sce | Ex3_4.sce | errcatch(-1,"stop");mode(2);//Caption:Determine the (a)Secondary voltage (b)current flowing through windings (c)max value of flux
//Exa:3.4
;
;
f=50;//in Hz
E_1=2500;//in volts
N_1=500;
N_2=100;
P=50*1000;//in watts
E_2=E_1*N_2/N_1;
disp(E_2,'(a)Secondary Voltage (in volts)=');
I_1=P/E_1;
disp(I_1,'(b)Primary current (in amperes)=');
I_2=P/E_2;
disp(I_2,' Secondary current (in amperes)=');
Phy_max=E_1/(4.44*f*N_1);
disp(Phy_max,'(c)Max value of flux (in Wb)=')
exit();
|
ac4a251de180314252e184612f12b4881f46b351 | 449d555969bfd7befe906877abab098c6e63a0e8 | /770/CH14/EX14.18/14_18.sce | 36291d60c18669cf4e9513b7391234aaa12c5118 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 487 | sce | 14_18.sce | clear;
clc;
//Example - 14.18
//Page number - 488
printf("Example - 14.18 and Page number - 488\n\n");
//This problem involves proving a relation in which no mathematics and no calculations are involved.
//For prove refer to this example 14.18 on page number 488 of the book.
printf(" This problem involves proving a relation in which no mathematics and no calculations are involved.\n\n");
printf(" For prove refer to this example 14.18 on page number 488 of the book.")
|
b442c0a32620022e1d96771cc898eca5a70b48e3 | 948c6e0314c1822f872350cf63aaceb3d28fa497 | /tests/test-print-UTF-32LE.tst | 68bd640b63e9c588516b220ca713ea49f919c2a7 | [
"Apache-2.0"
] | permissive | archiecobbs/bom | 832eb815b40f4955e6551496bdd2598cb4f00442 | 0bab1a015bb5e53345e5422902e16f802bd4c07f | refs/heads/main | 2023-08-25T05:43:51.470221 | 2021-11-04T16:12:49 | 2021-11-04T16:12:49 | 417,213,171 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 82 | tst | test-print-UTF-32LE.tst | FLAGS='--print UTF-32LE'
STDIN=''
STDOUT='\xff\xfe\x00\x00'
STDERR=''
EXITVAL='0'
|
b2fd75dfa64084b6ee6ce3a3b105f886688b2cb7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1019/CH2/EX2.5/Example_2_5.sce | 9a36b5b97c151707506b3c643c79564c2f451e04 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 427 | sce | Example_2_5.sce | //Example 2.5
clear;
clc;
//Given
n=2;//moles of glucose dissolved
v=1;//volume of glucose solution in dm^3
R=8.314;// gas constant in J K^-1 mol^-1
T=298;// temperature in K
c2=0.2;//concentration to which the solution was diluted in mol dm^-3
// To determine work done
c1=n/v;;// initial concentration of glucose solution in mol dm^-3
w=n*R*T*log(c1/c2);// w in joule
mprintf('Work done (w) = %f J',w);
//end |
194547a14da0c81d5788c28e518a17cd3ca7433b | 42fdf741bf64ea2e63d1546bb08356286f994505 | /test_20161031_draper_lab_demo/xor_input.sce | e200a3d0e2c9829d05321c11e816eeb9d924dc08 | [] | no_license | skim819/RASP_Workspace_sihwan | 7e3cd403dc3965b8306ec203007490e3ea911e3b | 0799e146586595577c8efa05c647b8cb92b962f4 | refs/heads/master | 2020-12-24T05:22:25.775823 | 2017-04-01T22:15:18 | 2017-04-01T22:15:18 | 41,511,563 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,393 | sce | xor_input.sce | //xor_ex_clk_sr = [0 1 0 0 0 0 linspace(0,0,32)]; // 1st
xor_ex_clk_sr = [0 1 0 1 0 0 linspace(0,0,32)]; // 2nd
//xor_ex_clk_sr = [0 1 0 1 0 1 linspace(0,0,32)]; // 3rd XOR output
xor_ex_data_sr = [1 1 linspace(0,0,36)];
xor_ex_Vin=[
linspace(2.1,2.1,6) linspace(2.5,2.5,8) linspace(2.5,2.5,8) linspace(2.5,2.5,8) linspace(2.5,2.5,8);
linspace(2.1,2.1,6) linspace(2.1,2.1,8) linspace(2.1,2.1,8) linspace(2.5,2.5,8) linspace(2.5,2.5,8);
linspace(2.1,2.1,6) linspace(2.5,2.5,8) linspace(2.1,2.1,8) linspace(2.1,2.1,8) linspace(2.5,2.5,8);
linspace(2.1,2.1,6) linspace(2.1,2.1,8) linspace(2.1,2.1,8) linspace(2.1,2.1,8) linspace(2.1,2.1,8);];
//xor_ex_Vin=[
//linspace(0.2,0.2,6) linspace(0.2,0.2,8) linspace(0.2,0.2,8) linspace(0.2,0.2,8) linspace(0.2,0.2,8);
//linspace(0.2,0.2,6) linspace(0.2,0.2,8) linspace(0.2,0.2,8) linspace(2.2,2.2,8) linspace(2.2,2.2,8);
//linspace(0.2,0.2,6) linspace(2.2,2.2,8) linspace(0.2,0.2,8) linspace(0.2,0.2,8) linspace(2.2,2.2,8);
//linspace(0.2,0.2,6) linspace(2.2,2.2,8) linspace(2.2,2.2,8) linspace(2.2,2.2,8) linspace(2.2,2.2,8);];
//[4e-06,1e-10,1e-10,1e-10; 1e-10,4e-06,4e-06,1e-10; 3e-06,2e-06,2e-06,1e-10; 1e-10,1e-10,1e-10,1e-10]
//[8e-06,1e-10,1e-10,1e-10; 1e-10,8e-06,8e-06,1e-10; 6e-06,4e-06,4e-06,1e-10; 1e-10,1e-10,1e-10,1e-10]
//[400e-09,1e-10,1e-10,1e-10; 1e-10,400e-09,400e-09,1e-10;300e-09,200e-09,200e-09,1e-10; 1e-10,1e-10,1e-10,1e-10]
|
0801b9920e62c05fdb1d7ec69d2c38b37ad89eb3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /343/CH4/EX4.6/ex4_6.sce | 5e923cfef8ed005899b2722360582f0611bf5ba4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 120 | sce | ex4_6.sce | clc
k=0.25 //Assigning values to parameters
sr=50
pr=sr/(k*k)
disp("ohms",pr,"The Secondary resistance is") |
3800d79d98a379a14a321eeb37492eb8d71b074e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1019/CH5/EX5.16/Example_5_16.sce | 7f59ba9854f51bd7838813fbb3fe8db3f1e094cf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 323 | sce | Example_5_16.sce | //Example 5.16
clear;
clc;
//Given
delE=-2880;//internal energy in kJ mol^-1
delS=182.4;//Entropy in J K^-1 mol^-1
T=298;//Temperature in K
//To determine delA
delA=delE-(T*delS*0.001);//helmoltz free energy in kJ mol^-1
mprintf('The amount of energy that can be extracted as heat = %f kJ mol^-1',delA);
//end |
722126ed98595019d9330276ef54373bdebe31cb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2672/CH1/EX1.47/Ex1_47.sce | 680c5843303205a31c7b61cf4732f65cae4af133 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 374 | sce | Ex1_47.sce | //Example 1_47
clc;
clear;
close;
format('v',5);
//given data :
V1=6;//V
V2=5;//V
V3=8;//V
R1=2;//ohm
R2=2;//ohm
R3=5;//ohm
R4=4;//ohm
//Node A :
VA=poly(0,'VA');
I1=(V1-VA)/R1;//A
I2=(V2-VA)/R2;//A
I3=(V3+VA)/R3;//A
//KCL at Node A
eqn=I1+I2-I3;
VA=roots(eqn);//V
VB=-V3;//V
I3=(VA-VB)/R3;//A
disp(I3,"Current flowing through 5 ohm Resistance(A)");
|
cb21ec6dc032ec7c9b8077dd29f81c1dc599b492 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1752/CH10/EX10.7/exa_10_7.sce | f34fc7b7c79365ad24801df2c12fc38c585a7e84 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 722 | sce | exa_10_7.sce | //Exa 10.7
clc;
clear;
close;
//given data
format('v',15);
Px1= 0.14;// in bar
Px2= 0;
P=1.013;// in bar
Py1=P-Px1; // in bar
Py2=P-Px2; // in bar
D=8.5*10^-6;// in m^2/s
d=5;// diameter in meter
L=1;// in mm
L=L*10^-3;//in meter
M=78;// molecular weight
Am_x= 1/4*%pi*d^2*M;
R=8314;
del_x=3;// thickness in mm
del_x=del_x*10^-3;// in m
T=20;// in degree C
T=T+273;// in K
P=P*10^5;// in N/m^2
m_x= D*Am_x*P*log(Py2/Py1)/(R*T*del_x);
// The mass of the benzene to be evaporated
mass= 1/4*%pi*d^2*L;
density=880;// in kg/m^3
m_b= mass*density;
toh=m_b/m_x;// in sec
disp(toh,"Time taken for the entire organic compound to evaporate in seconds")
// Note: Answer in the book is wrong
|
c6d860fed6e23cf9293be5f52627e8da195767e9 | 448b934390596180e5965efadbcbe8e13809ab8c | /macros/pkgBuildFrame.sci | 635ba4edc3286cf45b43f54041f63e153d7fc215 | [] | no_license | pirpyn/pkg-scilab | 3834d8b5e5e7cbb71e2d2cff14ea763d32259bf0 | b3ac0d499c9b446d02159f29068616fcf2a57f56 | refs/heads/master | 2021-01-19T17:36:20.707736 | 2017-12-11T21:31:23 | 2017-12-11T21:31:23 | 101,072,162 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,592 | sci | pkgBuildFrame.sci | function fig_handle=pkgBuildFrame()
fig_handle = figure('dockable','off',..
'figure_name','Scilab Atoms Package Creator',..
'tag','pkgMainWindow',..
'figure_size',[600,600],..
'menubar_visible','off',..
'toolbar_visible','off',..
'infobar_visible','on',..
'resize','on',..
'visible','off',..
'layout','gridbag')
main_frame = uicontrol(fig_handle,'style','frame','layout','gridbag','scrollable','on',..
'constraints',createConstraints('gridbag',[1,1,1,1],[1,1],'both','center',[0,0],[-1,600]))
setting_frame = uicontrol(main_frame,'style','frame','layout','gridbag',..
'constraints',createConstraints('gridbag',[1,2,2,1],[0,1],'both','lower_left'))
info_frame = uicontrol(main_frame,'style','frame','layout','gridbag',..
'constraints',createConstraints('gridbag',[1,1,2,1],[1,0],'horizontal','upper_right',[-1,50]))
bottom_frame = uicontrol(main_frame,'style','frame','layout','gridbag',....
'constraints',createConstraints('gridbag',[1,4,2,1],[0,0],'both','lower',[0,0],[-1,60]))
// defining the tabs
setting_tabs = uicontrol(setting_frame,'style','tab','constraints',createConstraints('gridbag',[1,1,1,1],[1,1],'horizontal','upper_left'))
//macro_tabs = uicontrol(macro_frame,'style','tab','constraints',createConstraints('gridbag',[1,1,1,1],[1,1],'both','center'))
info_tabs = uicontrol(info_frame,'style','tab','constraints',createConstraints('gridbag',[1,1,1,1],[1,1],'both','center'))
sett_tab = uicontrol(setting_tabs,'style','frame','layout','gridbag','String','Settings',..
'constraints',createConstraints('gridbag',[1,1,1,1],[1,1],'both','upper_left'))
// for tabs: fig.children(1) is the last uicontrol added, so last tab is the first to be defined and so on
macro_tab = uicontrol(info_tabs,'style','frame','layout','gridbag','String','Macros manager')
optn_tab = uicontrol(info_tabs,'style','frame','layout','gridbag','String','Optionnal infos','scrollable',%t)
basic_tab = uicontrol(info_tabs,'style','frame','layout','gridbag','String','Mandatory infos','scrollable',%t,'tag','info_basic_tag')
// build the basic panel
pkgAddControl(basic_tab,'edit','Toolbox Name','Toolbox',[1,1])
pkgAddControl(basic_tab,'edit','Toolbox Title','Title',[1,2])
pkgAddControl(basic_tab,'edit',[],'Summary',[1,3])
pkgAddControl(basic_tab,'edit',[],'Version',[1,4])
pkgAddControl(basic_tab,'edit',[],'Author',[1,5])
hdes=pkgAddControl(basic_tab,'edit',[],'Description',[1,6],[3,3],[])
hdes.max =2
// Build the optionnal panel
pkgAddControl(optn_tab,'edit',[],'Maintainer',[1,1])
pkgAddControl(optn_tab,'edit',[],'Mail',[1,2])
pkgAddControl(optn_tab,'edit',[],'Entity',[1,3])
pkgAddControl(optn_tab,'edit',[],'WebSite',[1,4])
pkgAddControl(optn_tab,'edit','License file','LicensePath',[1,5],[2,1],[])
pkgAddControl(optn_tab,'edit','License','License',[1,5],[2,1],[])
pkgAddControl(optn_tab,'pushbutton','Browse','LicensePath',[4,5],[],'pkgGetPaths(''*.txt'',''Select the license file'');')
pkgAddControl(optn_tab,'edit',[],'Date',[1,6])
pkgAddControl(optn_tab,'edit','Scilab version','ScilabVersion',[1,7])
depnd=pkgAddControl(optn_tab,'edit','Dependencies','Depends',[1,8])
depnd.max=2
pkgAddControl(optn_tab,'edit','Atoms Category','Category',[1,9])
pkgAddControl(optn_tab,'edit','Help language','HelpLang',[1,10])
// Build the macro tab
lst=pkgAddControl(macro_tab,'listbox','Path to the sources .sci','MacrosPath',[1,1],[1,1],[])
lst.max =2
macro_button_frame=uicontrol(macro_tab,'style','frame','layout','gridbag',..
'constraints',createConstraints('gridbag',[1,2,1,1],[1,0],'horizontal','lower',[0,0],[-1,40]))
btn=pkgAddControl(macro_button_frame,'pushbutton','Add','MacrosPath',[1,4],[],'pkgGetPaths(''*.sci'',''Select .sci files'',%t);')
pkgAddControl(macro_button_frame,'pushbutton','Remove','MacrosPath',[2,4],[],'pkgRemoveMacros()')
pkgAddControl(macro_button_frame,'pushbutton','Edit','MacrosPath',[3,4],[],'pkgEditMacros()')
// Build the settings tab
pkgAddControl(sett_tab,'checkbox','Force overwrite','OverWrite',[1,1],[4,1])
pkgAddControl(sett_tab,'checkbox','Open toolbox when created','OpenToolbox',[1,2],[4,1])
pkgAddControl(sett_tab,'edit','Save toolbox at','Path',[1,3],[2,1])
pkgAddControl(sett_tab,'pushbutton','Browse','Path',[4,3],[],'pkgGetPaths(''%dir'',''Select the directory to save'');')
// button of the bottom frame
pkgAddControl(bottom_frame,'pushbutton','Generate',[],[2,1],[2,1],'pkgSave();pkgCreate()')
//h=pkgAddControl(bottom_frame,'pushbutton','Install',[],[4,1],[],'pkgInstall()')
// h.tag='install_tag'
// h.enable='off'
//info=pkgAddControl(bottom_frame,'text',' ','infobar',[1,2],[5,1],'')
//info.horizontalalignment='center'
endfunction
function uicontrol_handle=pkgAddControl(frame_handle,style,text,tag,uipos,uisize,callback,preferredsize)
weight = [1,1];
alignment = 'left';
backgroundcolor = [-1,-1,-1];
user_data = []
fill = 'both'
anchor = 'center'
callback_type=0
function bol=pkgExists(varstr)
bol = %f
if exists(varstr) then
if evstr(varstr+'<>[]') then
bol = %t
end
end
endfunction
if ~pkgExists('preferredsize')
preferredsize = [-1,-1]
end
if ~pkgExists('uisize')
select style
case 'edit'
uisize = [3,1]
else
uisize = [1,1]
end
end
if ~pkgExists('callback')
callback = '';
callback_type=-1;
end
if ~pkgExists('tag')
tag = ''
end
if ~pkgExists('text')
text = tag
end
if ~pkgExists('uipos')
uipos = [1,1]
end
select style
case 'text'
fill = 'both'
weight = [0,1]
alignment = 'right'
//preferredsize=[-1,20]
case 'edit'
fill = 'both'
//preferredsize=[-1,20]
pkgAddControl(frame_handle,'text',text,'',uipos,[1,1],'')
uipos = uipos+[1,0]
text= pkgInitData(tag)
backgroundcolor = [1,1,1]
case 'listbox'
text = pkgInitData(tag)
case 'pushbutton'
alignment = 'center'
user_data = tag;
preferredsize = [-1,20]
tag =''
case 'checkbox'
fill = 'horizontal'
weight = [0,1]
anchor = 'upper_left'
end
uicontrol_handle=uicontrol(frame_handle,..
'style',style,..
'Constraints',createConstraints('gridbag',[uipos,uisize],weight,fill,anchor),..
'FontName','Monospaced',..
'Max',1,..
'Min',0,..
'String',text,..
'Tag',tag,..
'Verticalalignment','middle',..
'Callback','pkgUpdate();',..
'backgroundcolor',backgroundcolor,..
'horizontalalignment',alignment,...
'callback',callback,..
'callback_type',callback_type,..
'user_data',user_data)
endfunction
|
3df92c376b2e6bbcf2e5853a3f81b71cea424d5b | 013fbb3c74956eb0dd76e916566c11e5823feef4 | /projects/02/Nx16.tst | 233a38f78b3bb2f47b9efcf6b60386727da65573 | [] | no_license | btesf/nand_to_tetris | f0831cbaa41bacedacdef8975d1497f224c0ac55 | 5f418a3e191b89c7f32e35f3ae6180c3b506ce73 | refs/heads/master | 2023-05-28T00:08:37.728944 | 2021-06-19T17:09:22 | 2021-06-19T17:09:22 | 356,931,420 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 623 | tst | Nx16.tst | load Nx16.hdl,
output-file Nx16.out,
compare-to Nx16.cmp,
output-list in%B1.16.1 nx%B1.1.1 out%B1.16.1;
set in %B0000000000000000,
set nx 0,
eval,
output;
set in %B1111111111111111,
set nx 0,
eval,
output;
set in %B1010101010101010,
set nx 0,
eval,
output;
set in %B0011110011000011,
set nx 0,
eval,
output;
set in %B0001001000110100,
set nx 0,
eval,
output;
set in %B0000000000000000,
set nx 1,
eval,
output;
set in %B1111111111111111,
set nx 1,
eval,
output;
set in %B1010101010101010,
set nx 1,
eval,
output;
set in %B0011110011000011,
set nx 1,
eval,
output;
set in %B0001001000110100,
set nx 1,
eval,
output; |
e68b72c19a7cf59dbafb031e83d8a48316ca3664 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2912/CH6/EX6.11/Ex6_11.sce | 31e6cd39bcd9b72c59910940523f6759136822c6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 800 | sce | Ex6_11.sce | //chapter 6
//example 6.11
//Calculate average energy of free electron at 0K and corresponding temperature for a classical particle (an ideal gas)
//page 150
clear;
clc;
//given
E_F=5.51; // in eV (Fermi energy in Silver)
k=1.38E-23; // in J/K (Boltzmann's constant)
e=1.6E-19; // in C (charge of electron)
//calculate
// part-(a)
Eo=(3/5)*E_F; // calculation of average energy of free electron at 0K
printf('\n\nThe average energy of free electron at 0K is \tEo=%.3f eV',Eo);
// part-(b)
Eo=Eo*e; // changing unit from eV to J
// Since for a classical particle E=(3/2)*k*T
// therefroe we have
T=(2/3)*Eo/k; // calculation of temperature for a classical particle (an ideal gas)
printf('\n\nThe temperature at which a classical particle have this much energy is \t T=%1.3E K',T);
|
fdd9a06111f76a1d5b779291e60fb6be7121e06f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2708/CH6/EX6.3/ex_6_3.sce | 01e7683f84eae3b4718471259f4c1ab879f7c7bd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 248 | sce | ex_6_3.sce | //Example 6.3 // Period of Oscillation
clc;
clear;
//given data :
l=1;// length of pendulum in m
m=1;// mass of pendulum in kg
g=9.8;//acceleration of gravity in m/s2
T=2*%pi*sqrt(l/g);//time period
disp(T,"Period of Oscillation in sec")
|
8a5e05106f73b7ec150f907015cba96371eeeea8 | b948892b36eefdb35c47c821c51f69bb60989633 | /Deslocamento.sce | d1dad1e45e0c1000e7cf2bf0cf62d65bc0aebbbf | [] | no_license | lucas-medeiros/Digital-Signal-Processing | c5479eab20119e72ccb6adfe1c1d45fddf6dae7c | ba329ce5e5f6ca9ba7d46faba8661e9344627f9d | refs/heads/master | 2020-07-15T04:51:18.868263 | 2019-08-31T02:20:15 | 2019-08-31T02:20:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,054 | sce | Deslocamento.sce | function des = Deslocamento(ent)
//ent = vetor de entrada
tipo = input('Insira o tipo de deslocamento (+1) ou (-1): ');
//tipo = tipo de deslocamento
//-> tipo = +1 == atraso
//-> tipo = -1 == avanço
tam = input('Insira o tamanho do deslocamento: ');
//tam = tamanho do deslocamento
n = length(ent); //tamanho do vetor de entrada
if(tam > n) then //se o deslocamento for maior que o vetor de entrada o programa é encerrado
printf('Tamanho de deslocamento inválido');
return
end
vet = zeros([-4*n:1:4*n]); //vetor preenchido com zeros
for i = 1:1:n
vet(i+4*n) = ent(i); //copia o vetor de entrada pra um vetor maior preenchido com zeros
end
n2 = length(vet); //tamanho do novo vetor
des = vet;
for j = tam+1:1:(n2-tam-1) //evita o erro de "Invalid index"
des(j) = vet(j + tam*tipo); //realiza o deslocamento
end
printf('Vetor original: ');
disp(vet)
printf('Vetor deslocado: ');
disp(des)
endfunction
|
f447b0463b594e11b87deff5c1b9638a73ab7b8e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1938/CH3/EX3.6/3_6.sce | fcdb7e88e37c2d0e816ebc8e631f36a86f2be8bd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,385 | sce | 3_6.sce | clc,clear
printf('Example 3.6\n\n')
I_a=37,I_sh=0.85//armature and field current for motor
V=230
R_a=0.33 //armature resistance
I_a_g=30,I_sh_g=0.8//armature and field current for generator
//for motor
arm_cu_loss= I_a^2* R_a //armature copper losses
field_cu_loss=V*I_sh //field copper loss
total_cu_loss= field_cu_loss + arm_cu_loss //total copper loss
//for generator
arm_cu_loss_g= I_a_g^2* R_a //armature copper losses
field_cu_loss_g=V*I_sh_g //field copper loss
total_cu_loss_g= field_cu_loss_g + arm_cu_loss_g //total copper loss
//for motor-generator set
total_cu_loss_set= total_cu_loss_g + total_cu_loss
P_supply=V*(I_a - I_a_g + I_sh+ I_sh_g ) //power taken from supply
stray_loss= P_supply - (total_cu_loss_g + total_cu_loss)
stray_loss_each= stray_loss/2 //stray loss for each machine
//efficiency of motor
motor_input = V*(I_a+I_sh)
motor_output = motor_input - (stray_loss_each + total_cu_loss)
eta_m= 100* motor_output/motor_input //efficiency of motor
printf('Efficiency of motor is %.2f percent \n',eta_m)
//efficiency of generator
generator_input = motor_output //output of motor is input of generator
generator_output = generator_input - (stray_loss_each + total_cu_loss_g)
eta_g= 100* generator_output/generator_input //efficiency of generator
printf('Efficiency of generator is %.2f percent \n',eta_g)
|
6d1f803e7f73bd07af49c465bb6d2b9c86545342 | 449d555969bfd7befe906877abab098c6e63a0e8 | /876/CH8/EX8.7/Ex8_7.sce | b31d94cfaa20c77795b751b0ab1ef211608547ca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 381 | sce | Ex8_7.sce | //caption:Find peak amplitude and frequency of the signal
//Ex8.7
clc
clear
close
V=0.5//vertical attenuator(in V/division)
Vo=10^-6//horizontal attenuator(in second/division)
n=6//number of divisions on vertical axis
N=5//number of division for complete one cycle
V1=V*n
Vp=V1/2
disp(Vp,'peak amplitude(in V)=')
T=Vo*N
f=1/T
disp(f,'frequency of the signal(in Hz)=') |
4f4227cf329008a8f4daa70d9f2a822714cfa32c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1373/CH3/EX3.10/Chapter3_Example10.sce | ade01ec5739bd6ab347934ffa5509280e553c3bd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,513 | sce | Chapter3_Example10.sce | //Chapter-3, Example 3.10, Page 65
//=============================================================================
clc
clear
//INPUT DATA
LA=0.05;//Length of section A in m
LB=0.1;//Length of section A in m
LC=0.1;//Length of section A in m
LD=0.05;//Length of section A in m
LE=0.05;//Length of section A in m
kA=50;//Thermal conductivity of section A in W/m.K
kB=10;//Thermal conductivity of section B in W/m.K
kC=6.67;//Thermal conductivity of section C in W/m.K
kD=20;//Thermal conductivity of section D in W/m.K
kE=30;//Thermal conductivity of section E in W/m.K
Aa=1;//Area of section A in m^2
Ab=0.5;//Area of section B in m^2
Ac=0.5;//Area of section C in m^2
Ad=1;//Area of section D in m^2
Ae=1;//Area of section E in m^2
T=[800,100];//Temperature at inlet and outlet temperatures in degree C
//CALCULATIONS
Ra=(LA/(kA*Aa));//Thermal Resistance of section A in K/W
Rb=(LB/(kB*Ab));//Thermal Resistance of section B in K/W
Rc=(LC/(kC*Ac));//Thermal Resistance of section C in K/W
Rd=(LD/(kD*Ad));//Thermal Resistance of section D in K/W
Re=(LE/(kE*Ae));//Thermal Resistance of section E in K/W
Rf=((Rb*Rc)/(Rb+Rc));//Equivalent resistance of section B and section C in K/W
R=Ra+Rf+Rd+Re;//Equivalent resistance of all sections in K/W
Q=((T(1)-T(2))/R)/1000;//Heat transfer through the composite wall in kW
//OUTPUT
mprintf('Heat transfer through the composite wall is %3.1f kW',Q)
//=================================END OF PROGRAM==============================
|
eac1905a4e37a669bd9c6df65afd8e57bb67c2b6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /48/CH3/EX3.6/eg_3_6.sce | a749f31bff3dd59497335c4ba2c4408ca80d0a2b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 455 | sce | eg_3_6.sce | clear
clc
disp("T(A,B,C,D)=A^B+ABD+AB^CD^+BC");
disp("T(A,B,C,D)=B(A^+AD)+C(AD^B^+B)");
disp("T(A,B,C,D)=B(A^+D)+C(AD^+B)");
disp("T(A,B,C,D)=A^B+BD+ACD^+BC");
disp("T(A,B,C,D)=A^B+BD+ACD^+BC(A+A^)");
disp("T(A,B,C,D)=A^B+A^BC+ABC+BD+ACD^");
disp("T(A,B,C,D)=A^B(1+C)+ABC+BD+ACD^");
disp("T(A,B,C,D)=A^B+ABC+BD+ACD^");
disp("**Now apply consensus theorem for 2nd 3rd and 4th terms**");
disp("let x=D,y=B,z=AC");
disp("T(A,B,C,D)=A^B+BD+ACD^"); |
46b8ea9fe1fa7ed108f4d35529a6629550d2ed12 | c206e3f57b0a6f75bd1feefefecd29398746c358 | /scripts/dec2bin.sci | 20be5e077566fff9704d1347db216a0cd5df4bdb | [] | no_license | danielfcollier/scilab-image-processing-scripts | e092a7c1a6a0ade906c020218a9571290245e40f | 43d78cb06dc6c27ab8663f351e4c172d038280ce | refs/heads/main | 2023-04-12T20:05:52.840157 | 2021-04-27T18:56:06 | 2021-04-27T18:56:06 | 362,219,761 | 0 | 0 | null | null | null | null | ISO-8859-1 | Scilab | false | false | 516 | sci | dec2bin.sci | function b = dec2bin(n)
// DEC2BIN_
// b: vetor com número binário
// n: número em decimal de 0 a 255
//
// Uso:
// b = dec2bin(10);
// b = 0 0 0 0 1 0 1 0
//
n = n(:)';
base = 2;
// mascarar os zeros
mascara = 7;
// divisores
d = 2^[1:mascara];
// quocientes
q = int( n'*(d.\1) );
// restos
r = [n' q] - base.*[q zeros(length(n),1)];
// vetor de saída
b = r(:,8:-1:1);
[m n] = size(b);
i = eye(n,n);
k = (ones(n,1)*[d(mascara:-1:1) 1]).*i;
R = (b*k)*ones(n,1);
endfunction
|
9457d1bfdc3bce257784331bc5b6a69fdc095093 | 449d555969bfd7befe906877abab098c6e63a0e8 | /343/CH1/EX1.21/ex1_21.sce | 39a321bb09717fd7c6631421f2ee4d87a788a9b6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 291 | sce | ex1_21.sce | R1=5; //Assigning values to resistors
R2=15;
R3=10;
R4=10;
R5=40;
R6=30;
R7=20;
R8=8;
Rc=R2+R3; //Simplifying the network
Re=R4+R5;
Rf=R6+R7;
R=1/((1/Re)+(1/Rf));
Rd=1/((1/R)+(1/Rc));
Req=Rd+R1+R8;
disp("Ohms",Req,"Effective resistance"); |
f45f852dfc5afb082f2b61f01776e733382759a6 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/BIPO/ZD83MJV/ATWM1_Working_Memory_MEG_ZD83MJV_Session1/ATWM1_Working_Memory_MEG_Salient_Uncued_Run1.sce | 8189fdfcc94127bc7b2861fd968fc7c54c9a44ee | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 48,405 | sce | ATWM1_Working_Memory_MEG_Salient_Uncued_Run1.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_uncued_run1";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 369; width = 369; color = 42, 42, 42;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
42 61 292 292 399 125 1792 2992 2292 fixation_cross gabor_157 gabor_131 gabor_109 gabor_051 gabor_157 gabor_131_alt gabor_109 gabor_051_alt "1_1_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_157_131_109_051_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_003_framed blank blank blank blank fixation_cross_white "1_1_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1892 2992 2192 fixation_cross gabor_008 gabor_128 gabor_045 gabor_066 gabor_008_alt gabor_128 gabor_045_alt gabor_066 "1_2_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2200_gabor_patch_orientation_008_128_045_066_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_045_framed gabor_circ blank blank blank blank fixation_cross_white "1_2_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 2192 fixation_cross gabor_040 gabor_078 gabor_058 gabor_098 gabor_040 gabor_078_alt gabor_058 gabor_098_alt "1_3_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_040_078_058_098_target_position_2_4_retrieval_position_2" gabor_circ gabor_078_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_3_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_078_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1992 2992 2042 fixation_cross gabor_056 gabor_095 gabor_179 gabor_029 gabor_056_alt gabor_095 gabor_179_alt gabor_029 "1_4_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_056_095_179_029_target_position_1_3_retrieval_position_1" gabor_008_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_4_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2192 2992 2342 fixation_cross gabor_176 gabor_107 gabor_150 gabor_043 gabor_176_alt gabor_107 gabor_150_alt gabor_043 "1_5_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2350_gabor_patch_orientation_176_107_150_043_target_position_1_3_retrieval_position_1" gabor_176_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_5_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_176_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1742 2992 1942 fixation_cross gabor_161 gabor_113 gabor_076 gabor_142 gabor_161_alt gabor_113 gabor_076 gabor_142_alt "1_6_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_UncuedRetriev_300_300_399_1750_3000_1950_gabor_patch_orientation_161_113_076_142_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_076_framed gabor_circ blank blank blank blank fixation_cross_white "1_6_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_076_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 1892 fixation_cross gabor_040 gabor_170 gabor_012 gabor_055 gabor_040 gabor_170_alt gabor_012 gabor_055_alt "1_7_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_040_170_012_055_target_position_2_4_retrieval_position_2" gabor_circ gabor_170_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_7_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_078 gabor_145 gabor_112 gabor_027 gabor_078_alt gabor_145 gabor_112_alt gabor_027 "1_8_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_078_145_112_027_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_062_framed gabor_circ blank blank blank blank fixation_cross_white "1_8_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1792 2992 1992 fixation_cross gabor_088 gabor_114 gabor_160 gabor_054 gabor_088 gabor_114_alt gabor_160_alt gabor_054 "1_9_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_088_114_160_054_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_160_framed gabor_circ blank blank blank blank fixation_cross_white "1_9_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2242 2992 2192 fixation_cross gabor_175 gabor_119 gabor_006 gabor_152 gabor_175 gabor_119_alt gabor_006 gabor_152_alt "1_10_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_175_119_006_152_target_position_2_4_retrieval_position_2" gabor_circ gabor_119_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_10_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_119_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2092 2992 2142 fixation_cross gabor_090 gabor_072 gabor_045 gabor_009 gabor_090_alt gabor_072 gabor_045_alt gabor_009 "1_11_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_090_072_045_009_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_180_framed gabor_circ blank blank blank blank fixation_cross_white "1_11_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1842 2992 1992 fixation_cross gabor_007 gabor_072 gabor_039 gabor_178 gabor_007 gabor_072_alt gabor_039_alt gabor_178 "1_12_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_007_072_039_178_target_position_2_3_retrieval_position_2" gabor_circ gabor_118_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_12_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 2092 2992 2092 fixation_cross gabor_029 gabor_056 gabor_180 gabor_117 gabor_029 gabor_056 gabor_180_alt gabor_117_alt "1_13_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2100_gabor_patch_orientation_029_056_180_117_target_position_3_4_retrieval_position_1" gabor_164_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_13_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_164_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2142 2992 1892 fixation_cross gabor_092 gabor_037 gabor_144 gabor_176 gabor_092 gabor_037 gabor_144_alt gabor_176_alt "1_14_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_1900_gabor_patch_orientation_092_037_144_176_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_176_framed blank blank blank blank fixation_cross_white "1_14_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_176_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1742 2992 2392 fixation_cross gabor_089 gabor_071 gabor_029 gabor_105 gabor_089 gabor_071 gabor_029_alt gabor_105_alt "1_15_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_089_071_029_105_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_105_framed blank blank blank blank fixation_cross_white "1_15_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_105_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1892 2992 2392 fixation_cross gabor_029 gabor_078 gabor_143 gabor_007 gabor_029_alt gabor_078 gabor_143 gabor_007_alt "1_16_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_UncuedRetriev_300_300_399_1900_3000_2400_gabor_patch_orientation_029_078_143_007_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_095_framed gabor_circ blank blank blank blank fixation_cross_white "1_16_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_095_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 2142 fixation_cross gabor_009 gabor_167 gabor_082 gabor_127 gabor_009_alt gabor_167_alt gabor_082 gabor_127 "1_17_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_009_167_082_127_target_position_1_2_retrieval_position_1" gabor_009_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_17_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2192 2992 2292 fixation_cross gabor_022 gabor_105 gabor_164 gabor_080 gabor_022 gabor_105_alt gabor_164 gabor_080_alt "1_18_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2300_gabor_patch_orientation_022_105_164_080_target_position_2_4_retrieval_position_2" gabor_circ gabor_105_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_18_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_105_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 2242 2992 2092 fixation_cross gabor_092 gabor_136 gabor_059 gabor_030 gabor_092_alt gabor_136_alt gabor_059 gabor_030 "1_19_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_UncuedRetriev_300_300_399_2250_3000_2100_gabor_patch_orientation_092_136_059_030_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_011_framed gabor_circ blank blank blank blank fixation_cross_white "1_19_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_011_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2242 2992 2242 fixation_cross gabor_062 gabor_171 gabor_103 gabor_034 gabor_062 gabor_171_alt gabor_103_alt gabor_034 "1_20_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2250_gabor_patch_orientation_062_171_103_034_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_150_framed gabor_circ blank blank blank blank fixation_cross_white "1_20_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_150_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1892 2992 2392 fixation_cross gabor_161 gabor_178 gabor_021 gabor_040 gabor_161_alt gabor_178 gabor_021 gabor_040_alt "1_21_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2400_gabor_patch_orientation_161_178_021_040_target_position_1_4_retrieval_position_1" gabor_111_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_21_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_111_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2142 2992 2592 fixation_cross gabor_016 gabor_131 gabor_101 gabor_058 gabor_016 gabor_131 gabor_101_alt gabor_058_alt "1_22_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2600_gabor_patch_orientation_016_131_101_058_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_147_framed gabor_circ blank blank blank blank fixation_cross_white "1_22_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_147_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1892 2992 2042 fixation_cross gabor_026 gabor_009 gabor_057 gabor_165 gabor_026 gabor_009_alt gabor_057_alt gabor_165 "1_23_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_026_009_057_165_target_position_2_3_retrieval_position_2" gabor_circ gabor_147_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_23_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_147_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1792 2992 2542 fixation_cross gabor_130 gabor_046 gabor_107 gabor_151 gabor_130 gabor_046_alt gabor_107_alt gabor_151 "1_24_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2550_gabor_patch_orientation_130_046_107_151_target_position_2_3_retrieval_position_2" gabor_circ gabor_046_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_24_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_046_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1792 2992 2592 fixation_cross gabor_171 gabor_018 gabor_150 gabor_036 gabor_171 gabor_018_alt gabor_150 gabor_036_alt "1_25_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_UncuedRetriev_300_300_399_1800_3000_2600_gabor_patch_orientation_171_018_150_036_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_150_framed gabor_circ blank blank blank blank fixation_cross_white "1_25_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_150_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2042 2992 1892 fixation_cross gabor_094 gabor_075 gabor_143 gabor_019 gabor_094_alt gabor_075_alt gabor_143 gabor_019 "1_26_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_1900_gabor_patch_orientation_094_075_143_019_target_position_1_2_retrieval_position_2" gabor_circ gabor_075_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_26_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1842 2992 2492 fixation_cross gabor_121 gabor_146 gabor_006 gabor_089 gabor_121 gabor_146_alt gabor_006_alt gabor_089 "1_27_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_121_146_006_089_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_056_framed gabor_circ blank blank blank blank fixation_cross_white "1_27_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1992 2992 2192 fixation_cross gabor_090 gabor_176 gabor_159 gabor_138 gabor_090_alt gabor_176 gabor_159 gabor_138_alt "1_28_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_090_176_159_138_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_138_framed blank blank blank blank fixation_cross_white "1_28_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_138_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1942 2992 2492 fixation_cross gabor_141 gabor_122 gabor_005 gabor_067 gabor_141_alt gabor_122 gabor_005 gabor_067_alt "1_29_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_141_122_005_067_target_position_1_4_retrieval_position_1" gabor_141_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_29_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 2192 2992 2442 fixation_cross gabor_154 gabor_133 gabor_076 gabor_003 gabor_154_alt gabor_133 gabor_076 gabor_003_alt "1_30_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_2450_gabor_patch_orientation_154_133_076_003_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_076_framed gabor_circ blank blank blank blank fixation_cross_white "1_30_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_076_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2042 2992 1942 fixation_cross gabor_163 gabor_180 gabor_091 gabor_116 gabor_163 gabor_180 gabor_091_alt gabor_116_alt "1_31_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_163_180_091_116_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_140_framed gabor_circ blank blank blank blank fixation_cross_white "1_31_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_140_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1992 2992 2242 fixation_cross gabor_017 gabor_039 gabor_064 gabor_149 gabor_017 gabor_039 gabor_064_alt gabor_149_alt "1_32_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_017_039_064_149_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_149_framed blank blank blank blank fixation_cross_white "1_32_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2092 2992 2292 fixation_cross gabor_017 gabor_104 gabor_043 gabor_080 gabor_017_alt gabor_104_alt gabor_043 gabor_080 "1_33_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2300_gabor_patch_orientation_017_104_043_080_target_position_1_2_retrieval_position_1" gabor_063_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_33_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_063_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1992 2992 2592 fixation_cross gabor_100 gabor_024 gabor_176 gabor_160 gabor_100 gabor_024_alt gabor_176 gabor_160_alt "1_34_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2600_gabor_patch_orientation_100_024_176_160_target_position_2_4_retrieval_position_2" gabor_circ gabor_070_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_34_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_070_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2242 2992 2242 fixation_cross gabor_074 gabor_162 gabor_030 gabor_011 gabor_074 gabor_162_alt gabor_030 gabor_011_alt "1_35_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2250_gabor_patch_orientation_074_162_030_011_target_position_2_4_retrieval_position_2" gabor_circ gabor_162_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_35_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1792 2992 2492 fixation_cross gabor_171 gabor_030 gabor_083 gabor_100 gabor_171_alt gabor_030_alt gabor_083 gabor_100 "1_36_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_UncuedRetriev_300_300_399_1800_3000_2500_gabor_patch_orientation_171_030_083_100_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_100_framed blank blank blank blank fixation_cross_white "1_36_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_100_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2042 2992 1992 fixation_cross gabor_094 gabor_120 gabor_077 gabor_148 gabor_094_alt gabor_120_alt gabor_077 gabor_148 "1_37_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_094_120_077_148_target_position_1_2_retrieval_position_2" gabor_circ gabor_120_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_37_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_120_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2092 2992 2542 fixation_cross gabor_073 gabor_108 gabor_043 gabor_092 gabor_073_alt gabor_108 gabor_043_alt gabor_092 "1_38_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_073_108_043_092_target_position_1_3_retrieval_position_1" gabor_026_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_38_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1942 2992 2342 fixation_cross gabor_010 gabor_128 gabor_066 gabor_084 gabor_010_alt gabor_128 gabor_066 gabor_084_alt "1_39_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2350_gabor_patch_orientation_010_128_066_084_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_038_framed blank blank blank blank fixation_cross_white "1_39_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1892 2992 2542 fixation_cross gabor_018 gabor_063 gabor_137 gabor_178 gabor_018_alt gabor_063 gabor_137_alt gabor_178 "1_40_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_2550_gabor_patch_orientation_018_063_137_178_target_position_1_3_retrieval_position_2" gabor_circ gabor_063_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_40_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_063_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1742 2992 2142 fixation_cross gabor_015 gabor_031 gabor_054 gabor_171 gabor_015_alt gabor_031 gabor_054 gabor_171_alt "1_41_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_015_031_054_171_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_121_framed blank blank blank blank fixation_cross_white "1_41_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_121_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2242 2992 2092 fixation_cross gabor_118 gabor_138 gabor_002 gabor_053 gabor_118_alt gabor_138 gabor_002 gabor_053_alt "1_42_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_118_138_002_053_target_position_1_4_retrieval_position_1" gabor_070_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_42_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_070_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2192 2992 2442 fixation_cross gabor_106 gabor_144 gabor_075 gabor_032 gabor_106_alt gabor_144_alt gabor_075 gabor_032 "1_43_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2450_gabor_patch_orientation_106_144_075_032_target_position_1_2_retrieval_position_1" gabor_056_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_43_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1742 2992 2242 fixation_cross gabor_012 gabor_088 gabor_072 gabor_132 gabor_012 gabor_088_alt gabor_072_alt gabor_132 "1_44_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2250_gabor_patch_orientation_012_088_072_132_target_position_2_3_retrieval_position_2" gabor_circ gabor_088_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_44_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_088_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1942 2992 1942 fixation_cross gabor_036 gabor_021 gabor_109 gabor_001 gabor_036 gabor_021_alt gabor_109 gabor_001_alt "1_45_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_UncuedRetriev_300_300_399_1950_3000_1950_gabor_patch_orientation_036_021_109_001_target_position_2_4_retrieval_position_1" gabor_036_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_45_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_036_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1942 2992 2542 fixation_cross gabor_102 gabor_015 gabor_126 gabor_040 gabor_102 gabor_015_alt gabor_126 gabor_040_alt "1_46_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_102_015_126_040_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_040_framed blank blank blank blank fixation_cross_white "1_46_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1742 2992 1992 fixation_cross gabor_050 gabor_119 gabor_097 gabor_172 gabor_050 gabor_119_alt gabor_097 gabor_172_alt "1_47_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_050_119_097_172_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_034_framed blank blank blank blank fixation_cross_white "1_47_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2142 2992 2092 fixation_cross gabor_138 gabor_074 gabor_119 gabor_050 gabor_138 gabor_074 gabor_119_alt gabor_050_alt "1_48_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2100_gabor_patch_orientation_138_074_119_050_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_164_framed gabor_circ blank blank blank blank fixation_cross_white "1_48_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_164_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2142 2992 2042 fixation_cross gabor_171 gabor_154 gabor_007 gabor_115 gabor_171_alt gabor_154 gabor_007 gabor_115_alt "1_49_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_171_154_007_115_target_position_1_4_retrieval_position_1" gabor_171_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_49_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1892 2992 2342 fixation_cross gabor_156 gabor_109 gabor_067 gabor_088 gabor_156 gabor_109_alt gabor_067 gabor_088_alt "1_50_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2350_gabor_patch_orientation_156_109_067_088_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_088_framed blank blank blank blank fixation_cross_white "1_50_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_088_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2042 2992 2592 fixation_cross gabor_067 gabor_037 gabor_002 gabor_176 gabor_067 gabor_037_alt gabor_002_alt gabor_176 "1_51_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2600_gabor_patch_orientation_067_037_002_176_target_position_2_3_retrieval_position_2" gabor_circ gabor_087_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_51_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 2092 2992 2192 fixation_cross gabor_032 gabor_120 gabor_139 gabor_013 gabor_032 gabor_120_alt gabor_139_alt gabor_013 "1_52_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2200_gabor_patch_orientation_032_120_139_013_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_059_framed blank blank blank blank fixation_cross_white "1_52_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_059_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1942 2992 1942 fixation_cross gabor_084 gabor_021 gabor_173 gabor_143 gabor_084 gabor_021_alt gabor_173_alt gabor_143 "1_53_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_1950_gabor_patch_orientation_084_021_173_143_target_position_2_3_retrieval_position_2" gabor_circ gabor_066_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_53_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_066_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 64 292 292 399 125 1992 2992 1942 fixation_cross gabor_006 gabor_127 gabor_178 gabor_045 gabor_006_alt gabor_127 gabor_178_alt gabor_045 "1_54_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_UncuedRetriev_300_300_399_2000_3000_1950_gabor_patch_orientation_006_127_178_045_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_045_framed blank blank blank blank fixation_cross_white "1_54_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_045_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1842 2992 2242 fixation_cross gabor_032 gabor_076 gabor_004 gabor_055 gabor_032_alt gabor_076_alt gabor_004 gabor_055 "1_55_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_032_076_004_055_target_position_1_2_retrieval_position_2" gabor_circ gabor_076_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_55_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_076_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_152 gabor_014 gabor_092 gabor_132 gabor_152 gabor_014 gabor_092_alt gabor_132_alt "1_56_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_152_014_092_132_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_132_framed blank blank blank blank fixation_cross_white "1_56_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_132_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_086 gabor_176 gabor_068 gabor_151 gabor_086_alt gabor_176 gabor_068 gabor_151_alt "1_57_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_086_176_068_151_target_position_1_4_retrieval_position_1" gabor_086_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_57_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_086_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1742 2992 2442 fixation_cross gabor_001 gabor_150 gabor_018 gabor_079 gabor_001 gabor_150 gabor_018_alt gabor_079_alt "1_58_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2450_gabor_patch_orientation_001_150_018_079_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_126_framed blank blank blank blank fixation_cross_white "1_58_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2242 2992 2142 fixation_cross gabor_107 gabor_040 gabor_159 gabor_180 gabor_107 gabor_040_alt gabor_159 gabor_180_alt "1_59_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2150_gabor_patch_orientation_107_040_159_180_target_position_2_4_retrieval_position_2" gabor_circ gabor_090_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_59_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2192 2992 2292 fixation_cross gabor_162 gabor_096 gabor_038 gabor_179 gabor_162 gabor_096_alt gabor_038_alt gabor_179 "1_60_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2300_gabor_patch_orientation_162_096_038_179_target_position_2_3_retrieval_position_2" gabor_circ gabor_145_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_60_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 2192 2992 2442 fixation_cross gabor_039 gabor_116 gabor_097 gabor_009 gabor_039 gabor_116_alt gabor_097 gabor_009_alt "1_61_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2450_gabor_patch_orientation_039_116_097_009_target_position_2_4_retrieval_position_2" gabor_circ gabor_164_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_61_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_164_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 2092 2992 2292 fixation_cross gabor_117 gabor_052 gabor_080 gabor_007 gabor_117 gabor_052_alt gabor_080 gabor_007_alt "1_62_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2300_gabor_patch_orientation_117_052_080_007_target_position_2_4_retrieval_position_1" gabor_162_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_62_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_162_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1942 2992 2492 fixation_cross gabor_032 gabor_055 gabor_162 gabor_008 gabor_032 gabor_055_alt gabor_162_alt gabor_008 "1_63_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_032_055_162_008_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_117_framed gabor_circ blank blank blank blank fixation_cross_white "1_63_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_117_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2042 2992 1992 fixation_cross gabor_105 gabor_133 gabor_161 gabor_019 gabor_105_alt gabor_133 gabor_161 gabor_019_alt "1_64_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_105_133_161_019_target_position_1_4_retrieval_position_1" gabor_105_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_64_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_105_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2142 2992 2342 fixation_cross gabor_149 gabor_040 gabor_061 gabor_178 gabor_149_alt gabor_040_alt gabor_061 gabor_178 "1_65_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2350_gabor_patch_orientation_149_040_061_178_target_position_1_2_retrieval_position_2" gabor_circ gabor_040_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_65_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 1992 2992 2092 fixation_cross gabor_128 gabor_010 gabor_053 gabor_087 gabor_128_alt gabor_010 gabor_053_alt gabor_087 "1_66_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_128_010_053_087_target_position_1_3_retrieval_position_1" gabor_128_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_66_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 61 292 292 399 125 1792 2992 2142 fixation_cross gabor_160 gabor_112 gabor_007 gabor_138 gabor_160_alt gabor_112 gabor_007 gabor_138_alt "1_67_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_160_112_007_138_target_position_1_4_retrieval_position_1" gabor_024_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_67_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 2142 2992 2392 fixation_cross gabor_162 gabor_003 gabor_018 gabor_089 gabor_162_alt gabor_003 gabor_018_alt gabor_089 "1_68_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_UncuedRetriev_300_300_399_2150_3000_2400_gabor_patch_orientation_162_003_018_089_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_139_framed blank blank blank blank fixation_cross_white "1_68_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_139_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 62 292 292 399 125 2042 2992 1892 fixation_cross gabor_133 gabor_175 gabor_155 gabor_068 gabor_133 gabor_175 gabor_155_alt gabor_068_alt "1_69_Encoding_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_1900_gabor_patch_orientation_133_175_155_068_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_068_framed blank blank blank blank fixation_cross_white "1_69_Retrieval_Working_Memory_MEG_P6_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_068_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
42 63 292 292 399 125 1842 2992 2042 fixation_cross gabor_013 gabor_043 gabor_093 gabor_150 gabor_013 gabor_043 gabor_093_alt gabor_150_alt "1_70_Encoding_Working_Memory_MEG_P6_RL_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_2050_gabor_patch_orientation_013_043_093_150_target_position_3_4_retrieval_position_1" gabor_060_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_70_Retrieval_Working_Memory_MEG_P6_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_060_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
34a543627a6bf398df75a6002a27ab4d3caa1031 | 449d555969bfd7befe906877abab098c6e63a0e8 | /154/DEPENDENCIES/ch14_1.sce | 4737b796ad6452a3a4f3f2112224711959f2f7de | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | ch14_1.sce | clc
disp("Example 14.1")
printf("\n")
s=%s;
//Applying KVL equation to the two loops we get
//V1=2*I1+s*(I1+I2)
//V2=3*I2+s*(I1+I2)
//On solving we get
disp("(s+2)*I1+s*I2=V1 (1)");
disp("s*I1+(s+3)*I2=V2 (2)");
//The equations which contain Z parameters are
//V1=Z11*I1+Z12*I2
//V2=Z21*I1+Z22*I2
//On comparing (1) and (2) with above equations
Z11=s+2;
Z12=s;
Z21=s;
Z22=s+3;
disp(Z11,"Z11=")
disp(Z12,"Z12=")
disp(Z21,"Z21=")
disp(Z22,"Z22=")
|
3916d277d2f3edfecdb0eb7c5771a27a44664c0e | 25033eda4e7cd13f945f94c5dc35f15825066b42 | /Inria/2 cohorts/Tfini/caracterisationptsingulier.sce | 856393b0711d0417d09d59dcfab6bd84eb333e39 | [] | no_license | julienguegan/Internships | a26cb9efa2f1715832511a7aa94d25bfc675388b | ad51d5845ed8fd41e29259c95e8beff80bac65cf | refs/heads/master | 2020-12-20T21:54:29.099157 | 2020-01-25T19:20:10 | 2020-01-25T19:20:10 | 236,217,889 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,788 | sce | caracterisationptsingulier.sce | clear
//T < +∞
exec('C:\Users\Julien Guégan\Documents\Cours\MAM4\STAGE\2 cohorts\Tfini\Fonctions 2 cohorts - T fini.sci',-1)
T = 40
t = 0:T
// CI
M01 = 400
M02 = 400
tol = 10^-8
n1 = 100
n2 = 1
n = n1+n2
Mee = fsolve(0,eqnM)
τee = fsolve(0,list(lambda,Mee))
disp(" M** = "+string(Mee)+" , τ** = "+string(τee))
gagnants = [] //on stock les Mσ gagnants
perdants = [] //les perdants
egalité = [] //on stock quand il y a egalité
tic()
stepτ = 0.1
τσ = 8:stepτ:14
stepM = 20
Mσ = 1700:stepM:2100
hτ = stepτ
hm = stepM
Mr = [Mee-hm Mee Mee+hm]
τr = [τee-hτ τee τee+hτ]
for i = 1:3 //M1σ
for j = 1:3 //τ1σ
for v = 1:3 //M2σ
for w = 1:3 //τ2σ
n1 = 100
n2 = 1
τ1σ = τr(j)
M1σ = Mr(i)
M2σ = Mr(v)
τ2σ = τr(w)
M = ode("stiff",[M01;M02;800;800],0,t,tol, syst_dyn)
J1 = M(3,length(t))
J2 = M(4,length(t))
n11 = (n1*J1*n)/(n1*J1+n2*J2)
n21 = (n2*J2*n)/(n1*J1+n2*J2)
s(i,j,v,w) = n21/n2 //$s(M_r,τ_r,M_m,τ_m)$
end
end
end
end
H11 = (s(2,2,3,2)-2*s(2,2,2,2)+s(2,2,1,2))/(hm^2) //Mm²
H12 = (s(2,2,3,3)-s(2,2,1,3)-s(2,2,3,1)+s(2,2,1,1))/(4*hm*hτ) //Mmτm
H22 = (s(2,2,2,3)-2*s(2,2,2,2)+s(2,2,2,1))/(hτ^2) //τm²
H = 10^6*[H11,H12;H12,H22]
J11 = (s(3,2,3,2)-s(1,2,3,2)-s(3,2,1,2)+s(1,2,1,2))/(4*hm*hτ) //MmMr
J12 = (s(2,3,3,2)-s(2,1,3,2)-s(2,3,1,2)+s(2,1,1,2))/(4*hm*hτ) //Mmτr
J21 = (s(3,2,2,3)-s(1,2,2,3)-s(3,2,2,1)+s(1,2,2,1))/(4*hm*hτ) //τmMr
J22 = (s(2,3,2,3)-s(2,1,2,3)-s(2,3,2,1)+s(2,1,2,1))/(4*hm*hτ) // τmτr
J = 10^6*[H11+J11,H12+J12;H12+J21,H22+J22]
disp('H = ')
disp(H)
disp('J = ')
disp(J)
|
bd5d66096a60fcf7a71dd41465ac670e9068318b | b74b2ace796d50f1d2550b2ac8747b0c55e7faa7 | /help/en_US/build_help.sce | 03f7eb837128c057b14e3326cecdc8485a3843d3 | [] | no_license | slevin48/plotdeploy | 2f1a5aea6b14b540b7890a86c588e8361e237152 | 2bbba304a9151beb4b01104746ea41f95d73bd78 | refs/heads/master | 2023-02-14T22:09:40.476472 | 2021-01-08T19:00:04 | 2021-01-08T19:00:04 | 263,965,966 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 72 | sce | build_help.sce | tbx_build_help(TOOLBOX_TITLE,get_absolute_file_path("build_help.sce"));
|
f46851f8895e507c2e5712a579a2e49e33511e2f | a5aa8fdd910ba2ea1563462591074ae806206ce2 | /chap08/source.tst | 63ff08907afe8394c4fe2070aad0433f6bc5342c | [] | no_license | ferng/quickPython | 490ab640ed5a315f28cd3d3ff26fa7caedc73a93 | be36dce3d56ac97da7d9a500c49fe92f0cc99d87 | refs/heads/master | 2020-12-18T22:00:07.268869 | 2020-06-30T16:52:33 | 2020-06-30T16:52:33 | 235,532,217 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 612 | tst | source.tst | The Atmel ATmega32u4 gained popularity with its use in the Arduino
Leonardo, due to the built-in USB support, which made an additional
chip unnecessary for that purpose. I’ve had a couple of ATmega32u4s in
storage for a while, so I decided to try and solder the chip and make
an Arduino Leonardo compatible board out of it. Both Adafruit and
Sparkfun have ATmega32u4 breakout boards that they sell, and I
have used their designs as a reference. Why bother? Because if you are
developing an AVR based board with USB, this chip is worth looking at,
especially since you can use the existing Leonardo bootloader.
|
9e9eec919be686cfcfb14eb7973277c96964ce6e | 44399e43f8dd4d0a7c8d41f5f407ee36ce8ab651 | /FalsaPosicion2.sce | d1eee9181948f480805b064a6e0007d5f7439664 | [] | no_license | BanderoChinoZF/MetodosNumericos_SciLab | e021c3f11e25f7216e0b2b3b015d0737e176edfa | eec9fcaa3ff226ca058f515d72b6558923421ad9 | refs/heads/master | 2022-11-13T12:33:03.241216 | 2020-07-02T07:00:42 | 2020-07-02T07:00:42 | 276,572,495 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,294 | sce | FalsaPosicion2.sce | clear, clc
function f=fx(x)
//fx=sqrt(x)-cos(x)
//f = x^3 + 2*x^2 +10*x - 20
f = x^3-7*x^2+14*x-6
endfunction
n=0
Xi=input("Xi: ");
Xd=input("Xd: ");
tol=input("Error permitido");
n_ite=input("Ingrese el num de iteraciones: ")
fXi=feval(Xi,fx); //instruccion para evaluar la funcion con Xi
fXd=feval(Xd,fx); //instruccion para evaluar la funcion con Xd
Xm=(Xd-((fXd)*(Xi-Xd)/((fXi)-(fXd))));
e_rror=10
it=0;
//erp=0;
disp("i Xm |Error| ");
while(e_rror>=tol)
fXm=feval(Xm,fx);
caso_1=fXi*fXm;
caso_2=fXd*fXm;
if(caso_1<0)
Xd=Xm;
fXd=fXm;
valorant=Xm;
Xm=(Xd-((fXd)*(Xi-Xd)/((fXi)-(fXd))));
valoract=Xm;
end
if(caso_2<0)
Xi=Xm;
fXi=fXm;
valorant=Xm;
Xm=(Xd-((fXd)*(Xi-Xd)/((fXi)-(fXd))));
valoract=Xm;
end
if(n_ite==it)
break;
end
n=n+1;
it = it +1;
e_rror=abs(valoract-valorant);
//erp=abs(e_rror*100);
//disp(" i Xm |Error| ");
printf("%1.0f %2.5f %1.5f\n",n,Xm,e_rror);
end
//erp=(e_rror*100)
printf("\nLa raiz de fx es:%12.5f\n",valoract);
printf("Con una tolerancia de: %1.5f \n",e_rror);
//printf("Con una tolerancia de: %1.5f %\n",erp);
|
c42840d31b288426b05db52f714c85031cf24870 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/form-split/SURPRISE-LANGUAGES/Turkic/uzb.tst | 5179b133941f30e8310c8ffecaf309c06eb5b764 | [] | 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 | 221,107 | tst | uzb.tst | sabab bo'lmoq V;PFV;FRML;FH;SG;2
tinglamoq V;PROG;FRML;IND;SG;2;PRS
ajratmoq V;PRF;SBJV;SG;2;INFM;PRS
faxrlanmoq V;PRF+PROG;COND;PL;1;PRS
harakat qilib ko'rmoq V;IND;SG;1;PST
o'xshamoq V;PRF+PROG;FRML;COND;SG;2;PRS
o'xshamoq V;PROG;IND;PL;2;PRS
qimor o'ynamoq V;COND;PL;1;PRS
harakat qilib ko'rmoq V;SBJV;PL;1;PRS
o'tmoq V;PROG;COND;SG;1;PRS
yubormoq V;PROG;COND;PL;1;PRS
o'lmoq V;PRF;SBJV;SG;2;INFM;PRS
aylantirmoq V;SG;2;INFM;PRS
keltirmoq V;PFV;IND;PL;3;PST
tuzmoq V;PFV;SBJV;PL;2;FUT
yiqitmoq V;PRF;SBJV;SG;2;INFM;PRS
yoqtirmoq V;FRML;IND;SG;2;PST
bastalamoq V;PROG;COND;SG;1;PRS
tishlamoq V;SG;2;INFM;PRS
yuvinmoq V;IND;PL;1;PST
izoh bermoq V;SBJV;SG;3;PRS
tark etmoq V;PFV;IND;SG;3;PST
sakramoq V;SBJV;PL;3;PRS
porlamoq V;COND;PL;2;PRS
taslim bo'lmoq V;PFV;SBJV;SG;2;INFM;FUT
yo'qolmoq V;SBJV;SG;1;PRS
artmoq V;PROG;COND;PL;3;PRS
ishga olmoq V;PRF+PROG;COND;PL;3;PRS
rivojlanmoq V;PROG;IND;SG;2;INFM;PRS
emaklamoq V;PRF;SBJV;SG;1;PRS
yashirinmoq V;PRF+PROG;COND;SG;1;PRS
mo'ralamoq V;SG;1;PRS
zabt etmoq V;FRML;COND;SG;2;PRS
berib turmoq V;IND;PL;3;PST
ishontirmoq V;PRF;SBJV;PL;2;PRS
o'tlatmoq V;PFV;SBJV;SG;3;FUT
afzal ko'rmoq V;PROG;COND;SG;3;PRS
yonmoq V;PFV;IND;SG;3;PST
bermoq V;IND;SG;2;INFM;PST
taqiqlamoq V;PROG;IND;SG;1;FUT
bezamoq V;PROG;COND;PL;1;PRS
navbatda turmoq V;PROG;IND;SG;1;PST
shoshilmoq V;PROG;COND;PL;2;PRS
buzmoq V;PROG;FRML;IND;SG;2;FUT
o'g'irlamoq V;PRF;SBJV;SG;2;INFM;PRS
ko'tarmoq V;PROG;IND;PL;2;FUT
marinadlamoq V;PFV;IND;SG;2;INFM;PST
tagiga chizmoq V;IND;PL;2;PST
o'g'irlamoq V;FRML;SG;2;PRS
turmoq V;COND;SG;2;INFM;PRS
aralashmoq V;IND;PL;2;PST
ishtirok etmoq V;PROG;FRML;IND;SG;2;PST
pushaymon bo'lmoq V;PRF;SBJV;SG;3;PRS
shug'ullanmoq V;PFV;FH;PL;1
maslahat bermoq V;PROG;COND;SG;2;PRS
kemada suzmoq V;PFV;FH;PL;1
kulmoq V;SBJV;SG;2;PRS
aylantirmoq V;COND;SG;3;PRS
kirmoq V;COND;PL;2;PRS
erishmoq V;PRF;SBJV;PL;3;PRS
tushunmoq V;PFV;SBJV;PL;3;FUT
bukmoq V;PL;1;PRS
emaklamoq V;PROG;IND;PL;2;PRS
och qolmoq V;FRML;COND;SG;2;PRS
shamollamoq V;PROG;IND;SG;3;FUT
iste'foga chiqmoq V;PFV;SBJV;SG;1;FUT
tinglamoq V;PFV;FH;PL;3
osilmoq V;PFV;FH;PL;1
shoshmoq V;PROG;FRML;IND;SG;2;PST
uzoqlashmoq V;PFV;FRML;SBJV;SG;2;FUT
intervyu olmoq V;PRF+PROG;COND;PL;3;PRS
vaqtni isrof etmoq V;PROG;IND;SG;3;PRS
yo'qotmoq V;IND;SG;2;INFM;PST
hujum qilmoq V;PFV;FH;PL;2
erishmoq V;PFV;SBJV;PL;3;FUT
sevmoq V;PRF;SBJV;PL;2;PRS
taklif etmoq V;PROG;IND;PL;3;FUT
sanamoq V;PRF+PROG;COND;SG;2;INFM;PRS
bormoq V;PROG;IND;SG;1;PRS
haydamoq V;FRML;COND;SG;2;PRS
kirmoq V;PRF+PROG;COND;SG;3;PRS
chiqmoq V;PROG;IND;SG;3;PST
sho'ng'imoq V;FRML;COND;SG;2;PRS
kechiktirmoq V;PFV;SBJV;SG;1;FUT
muomalada bo'lmoq V;IND;SG;2;INFM;PST
o'chirmoq V;PFV;IND;PL;2;PST
taklif qilmoq V;PFV;FRML;SBJV;SG;2;FUT
yasamoq V;PFV;FH;SG;2
keltirmoq V;PFV;IND;SG;2;INFM;PST
quvmoq V;PROG;IND;SG;3;FUT
tushunmoq V;PROG;COND;SG;2;PRS
reja tuzmoq V;FRML;COND;SG;2;PRS
uyg'otmoq V;IND;PL;3;PST
izlamoq V;PRF+PROG;COND;SG;3;PRS
sotmoq V;SBJV;SG;3;PRS
o'tib ketmoq V;PRF;FRML;SBJV;SG;2;PRS
hijjalamoq V;PRF+PROG;COND;SG;3;PRS
quvontirmoq V;PRF;SBJV;SG;2;INFM;PRS
savdo qilmoq V;PL;1;PRS
yetishmoq V;PROG;IND;PL;3;PST
keltirmoq V;PFV;SBJV;PL;2;FUT
yetilmoq V;IND;SG;3;PST
kemada suzmoq V;COND;SG;3;PRS
asabiylashtirmoq V;IND;SG;1;PST
to'plamoq V;PROG;IND;SG;3;PRS
yedirmoq V;FRML;COND;SG;2;PRS
bezmoq V;PL;1;PRS
otmoq V;COND;PL;1;PRS
uylanmoq V;PFV;SBJV;SG;1;FUT
siljimoq V;PROG;IND;SG;1;FUT
faxrlanmoq V;COND;SG;1;PRS
tavsiya etmoq V;PROG;IND;SG;3;PRS
his qilmoq V;PROG;IND;SG;1;FUT
katta qilmoq V;PFV;SBJV;PL;2;FUT
hujum qilmoq V;PROG;COND;SG;1;PRS
chalmoq V;PFV;FRML;SBJV;SG;2;FUT
o'lchamoq V;PRF;SBJV;PL;2;PRS
qimor o'ynamoq V;PFV;FH;PL;1
yengillashtirmoq V;PRF+PROG;COND;PL;1;PRS
vaqtni isrof etmoq V;PROG;COND;PL;3;PRS
o'tmoq V;PFV;IND;PL;3;PST
hidlamoq V;PFV;FRML;SBJV;SG;2;FUT
charchamoq V;PROG;IND;SG;1;PRS
imkon bermoq V;PFV;FH;SG;3
ochmoq V;PRF+PROG;COND;SG;1;PRS
shoshilmoq V;PFV;IND;PL;2;PST
tanlamoq V;PFV;FH;PL;2
to'g'ramoq V;IND;SG;3;PST
ezmoq V;PROG;COND;PL;1;PRS
porlamoq V;SG;2;INFM;PRS
so'kinmoq V;PROG;IND;PL;3;PST
intizorlik bilan kutmoq V;FRML;COND;SG;2;PRS
quvontirmoq V;PRF;SBJV;SG;1;PRS
qatl qilmoq V;PFV;FH;PL;2
uchrashmoq V;PROG;IND;SG;3;FUT
harakat qilmoq V;PROG;IND;SG;2;INFM;PST
bezovta qilmoq V;PFV;IND;PL;1;PST
g'ashini keltirmoq V;PFV;FH;PL;1
qo'llamoq V;IND;SG;2;INFM;PST
parchalamoq V;PROG;IND;PL;2;PST
qo'rqmoq V;PROG;COND;SG;1;PRS
yashamoq V;SG;1;PRS
moslashmoq V;PRF+PROG;COND;PL;1;PRS
yetilmoq V;PFV;IND;PL;3;PST
baqirmoq V;SG;1;PRS
terlamoq V;PFV;FRML;IND;SG;2;PST
nolimoq V;COND;PL;1;PRS
ta'minlamoq V;PFV;FRML;IND;SG;2;PST
to'g'ramoq V;PROG;IND;PL;2;PST
esga solmoq V;PL;2;PRS
ozor bermoq V;PFV;FH;PL;2
harakat qilmoq V;PRF;SBJV;PL;2;PRS
yashamoq V;PROG;IND;SG;1;PRS
hukm qilmoq V;PROG;IND;PL;3;PRS
kulmoq V;PFV;IND;SG;1;PST
yetmoq V;PFV;SBJV;SG;1;FUT
ishga olmoq V;PRF+PROG;COND;SG;3;PRS
siqmoq V;PROG;COND;PL;1;PRS
kechikmoq V;PROG;FRML;IND;SG;2;FUT
yaralamoq V;PROG;COND;SG;1;PRS
tortmoq V;PROG;IND;SG;1;PRS
muhokama qilmoq V;SG;2;INFM;PRS
shug'ullanmoq V;PRF+PROG;COND;PL;2;PRS
yetishmoq V;PROG;FRML;IND;SG;2;PST
yuvmoq V;PFV;FRML;SBJV;SG;2;FUT
kezmoq V;SG;3;PRS
tugatmoq V;PROG;IND;SG;1;PST
o'tirmoq V;PRF;SBJV;SG;2;INFM;PRS
ajratmoq V;PFV;FRML;SBJV;SG;2;FUT
tashkil qilmoq V;PROG;IND;SG;3;PST
bo'lmoq V;PROG;IND;SG;3;PRS
rivojlantirmoq V;PROG;FRML;IND;SG;2;FUT
ko'tarib yurmoq V;PROG;FRML;IND;SG;2;FUT
tavsiya etmoq V;PFV;SBJV;PL;1;FUT
yuvinmoq V;PFV;FH;SG;2
qarshilik ko'rsatmoq V;PFV;SBJV;PL;3;FUT
hisoblamoq V;PFV;IND;SG;2;INFM;PST
ko'rsatmoq V;IND;PL;3;PST
terlamoq V;PFV;FRML;FH;SG;2
ishlamoq V;PROG;IND;SG;1;FUT
rivojlantirmoq V;COND;SG;2;INFM;PRS
rad etmoq V;PROG;IND;PL;1;FUT
taqiqlamoq V;PFV;FH;PL;2
demoq V;PRF+PROG;COND;PL;1;PRS
qo'llamoq V;PRF;SBJV;PL;1;PRS
burmoq V;PFV;FRML;SBJV;SG;2;FUT
ketmoq V;COND;SG;2;INFM;PRS
sog'inmoq V;PROG;COND;SG;3;PRS
ishontirmoq V;SBJV;SG;2;PRS
mazax qilmoq V;PROG;IND;PL;2;PST
bezmoq V;IND;SG;3;PST
suzmoq V;PROG;COND;SG;2;PRS
davom etmoq V;PROG;IND;SG;2;INFM;FUT
reja tuzmoq V;PROG;IND;PL;1;FUT
kuymoq V;PROG;IND;SG;3;FUT
zarar yetkazmoq V;PFV;FRML;FH;SG;2
yaralamoq V;PROG;IND;SG;3;FUT
ko'chmoq V;PROG;IND;PL;3;FUT
yo'talmoq V;PROG;IND;SG;3;FUT
ajratmoq V;PROG;IND;PL;1;FUT
qo'rqmoq V;PFV;IND;PL;1;PST
reklama qilmoq V;PFV;SBJV;PL;1;FUT
shamollamoq V;PFV;FRML;SBJV;SG;2;FUT
yordam bermoq V;PFV;FRML;IND;SG;2;PST
yasamoq V;FRML;COND;SG;2;PRS
tikilmoq V;PROG;COND;SG;2;PRS
sevmoq V;PRF+PROG;COND;SG;1;PRS
emaklamoq V;PFV;FRML;FH;SG;2
uyg'otmoq V;COND;PL;2;PRS
chiqarmoq V;PFV;FRML;IND;SG;2;PST
berib turmoq V;PROG;IND;SG;3;PRS
eslamoq V;IND;PL;1;PST
quvmoq V;FRML;COND;SG;2;PRS
o'zgartirmoq V;PFV;IND;PL;2;PST
esga solmoq V;PRF+PROG;COND;SG;2;INFM;PRS
pullamoq V;PROG;FRML;COND;SG;2;PRS
shoshmoq V;IND;SG;2;INFM;PST
uxlamoq V;PFV;FRML;SBJV;SG;2;FUT
buzilmoq V;PRF;SBJV;SG;2;INFM;PRS
yig'lamoq V;PROG;COND;PL;3;PRS
bahs poylamoq V;PRF+PROG;COND;PL;1;PRS
qaramoq V;SG;1;PRS
yutmoq V;PRF;SBJV;SG;1;PRS
amin bo'lmoq V;PROG;IND;SG;3;FUT
pullamoq V;PL;2;PRS
nolimoq V;PFV;IND;SG;1;PST
yemoq V;PROG;IND;SG;3;PRS
qilmoq V;COND;SG;1;PRS
to'xtamga kelmoq V;PFV;FH;SG;1
qimor o'ynamoq V;SG;1;PRS
uzoqlashmoq V;SG;2;INFM;PRS
kuymoq V;PROG;IND;PL;2;PRS
ko'tarib yurmoq V;PFV;FH;SG;1
ozod etmoq V;PRF+PROG;COND;SG;3;PRS
ta'mirlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
hayratlantirmoq V;PROG;FRML;IND;SG;2;PST
o'tlatmoq V;PROG;COND;SG;3;PRS
sayohat qilmoq V;PROG;IND;SG;3;PST
oldini olmoq V;PRF+PROG;COND;SG;3;PRS
aldamoq V;IND;PL;2;PST
tegmoq V;IND;PL;1;PST
olib tashlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
harakat qilib ko'rmoq V;SBJV;SG;2;PRS
yuvinmoq V;FRML;COND;SG;2;PRS
katta bo'lmoq V;PROG;IND;PL;1;PST
yaratmoq V;PFV;FH;PL;3
yubormoq V;COND;PL;3;PRS
langar tashlamoq V;PFV;SBJV;PL;2;FUT
jalb qilmoq V;PROG;IND;PL;2;PST
chalmoq V;COND;PL;3;PRS
o'tlatmoq V;PRF+PROG;FRML;COND;SG;2;PRS
ma'lum qilmoq V;SG;2;INFM;PRS
uloqtirmoq V;PFV;FH;PL;3
pishirmoq V;PROG;IND;PL;2;PRS
jalb qilmoq V;FRML;COND;SG;2;PRS
ko'ndirmoq V;SG;3;PRS
pishirmoq V;PFV;SBJV;PL;1;FUT
o'g'irlab ketmoq V;PFV;FRML;FH;SG;2
tark etmoq V;IND;SG;2;INFM;PST
yetaklamoq V;PRF;SBJV;SG;2;INFM;PRS
baqirmoq V;PRF;SBJV;PL;1;PRS
sanamoq V;PROG;IND;PL;1;FUT
ta'mirlamoq V;PRF+PROG;COND;SG;3;PRS
ishonmoq V;PFV;IND;SG;2;INFM;PST
og'riqsizlantirmoq V;PROG;FRML;IND;SG;2;PRS
taxlamoq V;PROG;IND;SG;2;INFM;FUT
istamoq V;PFV;FRML;FH;SG;2
asramoq V;PFV;FH;SG;2
yedirmoq V;PRF+PROG;COND;PL;2;PRS
katta qilmoq V;PFV;FRML;IND;SG;2;PST
bo'yatmoq V;PRF+PROG;COND;SG;3;PRS
yashamoq V;PL;3;PRS
aytmoq V;SBJV;PL;2;PRS
takrorlamoq V;PFV;IND;SG;3;PST
rozi bo'lmoq V;PROG;IND;SG;3;PST
imtihondan o'tmoq V;PRF;SBJV;SG;1;PRS
javob bermoq V;PROG;IND;PL;2;PST
uxlab qolmoq V;PROG;IND;SG;3;FUT
sanamoq V;PFV;IND;PL;2;PST
yetilmoq V;PRF+PROG;COND;SG;1;PRS
boshqarmoq V;PROG;IND;SG;2;INFM;PST
kesmoq V;PROG;FRML;IND;SG;2;PST
hujum qilmoq V;PROG;IND;PL;1;FUT
yiqitmoq V;PRF;SBJV;PL;2;PRS
o'ldirmoq V;FRML;SBJV;SG;2;PRS
o'rgatmoq V;COND;PL;3;PRS
kutmoq V;PFV;IND;SG;1;PST
vaqtni isrof etmoq V;PRF;SBJV;PL;1;PRS
o'ramoq V;SG;2;INFM;PRS
qulflamoq V;PROG;FRML;IND;SG;2;PST
shoshmoq V;PFV;FRML;FH;SG;2
demoq V;PFV;SBJV;SG;2;INFM;FUT
pichirlamoq V;PRF;SBJV;SG;2;INFM;PRS
ishlatmoq V;PROG;IND;SG;3;PRS
qaramoq V;PROG;IND;PL;1;FUT
boshlamoq V;PROG;IND;SG;2;INFM;PRS
qo'yib yubormoq V;PROG;COND;SG;3;PRS
taqiqlamoq V;COND;PL;2;PRS
qaramoq V;FRML;IND;SG;2;PST
so'z bermoq V;PRF;FRML;SBJV;SG;2;PRS
bo'lmoq V;COND;PL;3;PRS
yiqitmoq V;PFV;FH;PL;3
emaklamoq V;PROG;IND;SG;1;PST
uxlab qolmoq V;PROG;IND;SG;1;PST
yozmoq V;PFV;FH;SG;1
tutmoq V;PFV;IND;PL;2;PST
ayblamoq V;PFV;FH;PL;2
takror qo'ymoq V;COND;PL;2;PRS
hukm qilmoq V;PROG;IND;SG;2;INFM;PRS
uxlamoq V;PROG;COND;PL;3;PRS
bo'lmoq V;IND;SG;2;INFM;PST
hibsga olmoq V;PFV;IND;SG;1;PST
aniqlamoq V;FRML;COND;SG;2;PRS
sanamoq V;COND;PL;1;PRS
cho'kmoq V;IND;PL;2;PST
yurmoq V;PROG;COND;PL;3;PRS
o'qimoq V;PROG;COND;SG;3;PRS
sachratmoq V;PROG;COND;PL;3;PRS
qatl qilmoq V;PROG;COND;SG;1;PRS
sotib olmoq V;PFV;SBJV;SG;2;INFM;FUT
eslamoq V;PRF+PROG;FRML;COND;SG;2;PRS
shubhalanmoq V;PROG;IND;SG;2;INFM;PRS
yirtmoq V;SBJV;SG;1;PRS
suv qilib ichmoq V;COND;SG;3;PRS
hayratlantirmoq V;COND;PL;3;PRS
olib tashlamoq V;PFV;IND;PL;3;PST
kezmoq V;COND;SG;1;PRS
aylantirmoq V;IND;SG;3;PST
o'tmoq V;SG;2;INFM;PRS
e'lon qilmoq V;PL;3;PRS
bo'yatmoq V;PFV;FH;PL;3
ta'kidlamoq V;PROG;IND;PL;2;PRS
qadoqlamoq V;PROG;IND;SG;2;INFM;PST
afzal ko'rmoq V;PROG;IND;PL;1;PST
orzu qilmoq V;PROG;IND;SG;3;PRS
tanishtirmoq V;PROG;IND;PL;2;PST
horg'in his qilmoq V;IND;PL;2;PST
pullamoq V;PROG;FRML;IND;SG;2;PST
yuvinmoq V;IND;SG;3;PST
tishlamoq V;IND;PL;3;PST
otmoq V;PFV;FH;SG;1
o'ynamoq V;PRF+PROG;COND;PL;2;PRS
ayblamoq V;PFV;FH;SG;2
tasvirlamoq V;PRF;SBJV;PL;1;PRS
taxlamoq V;PRF;SBJV;SG;2;INFM;PRS
yetaklamoq V;PRF+PROG;COND;PL;3;PRS
hibsga olmoq V;PL;1;PRS
maslahat bermoq V;PFV;IND;PL;3;PST
tuzmoq V;PFV;FH;SG;3
takror qo'ymoq V;PROG;IND;SG;1;FUT
chaqmoq V;PFV;FH;PL;3
oldini olmoq V;PROG;IND;PL;3;PRS
javob bermoq V;PFV;FH;SG;2
silkimoq V;PROG;COND;SG;2;PRS
jondan suymoq V;PL;2;PRS
iste'foga chiqmoq V;IND;PL;2;PST
kezmoq V;PROG;IND;PL;2;FUT
nafratlanmoq V;PRF+PROG;COND;SG;3;PRS
tushunmoq V;PROG;IND;SG;1;PST
tortib olmoq V;PFV;IND;SG;2;INFM;PST
sog'inmoq V;PFV;FH;PL;3
yuvmoq V;FRML;SG;2;PRS
aniqlamoq V;PFV;FRML;SBJV;SG;2;FUT
ishga olmoq V;PFV;IND;PL;2;PST
mug'ombirlik qilmoq V;PFV;SBJV;PL;3;FUT
tiqmoq V;IND;PL;2;PST
o'ramoq V;PROG;IND;SG;1;FUT
parchalamoq V;PFV;FRML;IND;SG;2;PST
kirmoq V;COND;SG;3;PRS
ishga olmoq V;PFV;FH;SG;2
kelmoq V;PFV;IND;SG;1;PST
hijjalamoq V;PROG;IND;PL;2;PST
suv qilib ichmoq V;PFV;SBJV;PL;2;FUT
mo'ralamoq V;COND;PL;3;PRS
chopmoq V;PRF;SBJV;SG;1;PRS
o'lchamoq V;PFV;SBJV;PL;1;FUT
oldini olmoq V;PFV;FH;SG;1
og'riqsizlantirmoq V;PFV;FH;PL;1
aylantirmoq V;PFV;IND;PL;2;PST
yiqitmoq V;PFV;SBJV;PL;2;FUT
buzmoq V;PFV;SBJV;SG;1;FUT
tutmoq V;PFV;FH;PL;3
hujum qilmoq V;COND;SG;2;INFM;PRS
chetlashmoq V;PROG;IND;SG;1;FUT
boshqarmoq V;PRF;SBJV;PL;1;PRS
hibsga olmoq V;PFV;SBJV;SG;1;FUT
yubormoq V;PROG;IND;PL;3;FUT
tagiga chizmoq V;SG;2;INFM;PRS
zabt etmoq V;PFV;FH;PL;2
to'plab qo'ymoq V;SG;1;PRS
sakramoq V;PFV;IND;PL;2;PST
yotmoq V;PROG;IND;SG;3;FUT
izoh bermoq V;PFV;IND;PL;3;PST
rozi bo'lmoq V;PFV;IND;SG;2;INFM;PST
qayta olmoq V;COND;SG;1;PRS
eslamoq V;SG;3;PRS
qo'rqmoq V;PFV;FH;SG;1
eshitmoq V;PROG;IND;PL;3;PST
kerak bo'lmoq V;COND;SG;1;PRS
siljimoq V;PROG;IND;PL;2;PST
yolg'on gapirmoq V;PL;2;PRS
olmoq V;PROG;IND;SG;2;INFM;FUT
quvontirmoq V;PROG;COND;SG;1;PRS
shamollatmoq V;IND;PL;1;PST
ovlamoq V;PRF+PROG;COND;SG;3;PRS
kemada suzmoq V;PFV;FH;SG;3
umid qilmoq V;IND;SG;1;PST
javob bermoq V;PROG;COND;SG;3;PRS
qaytmoq V;PFV;IND;PL;2;PST
sirpanmoq V;COND;SG;3;PRS
inkor qilmoq V;PRF;SBJV;SG;2;INFM;PRS
taramoq V;PROG;IND;SG;3;FUT
dazmollamoq V;PFV;FH;SG;1
pastga tushmoq V;PFV;SBJV;PL;3;FUT
uxlab qolmoq V;PFV;IND;PL;3;PST
silkimoq V;COND;PL;2;PRS
ko'zdan g'oyib bo'lmoq V;PL;1;PRS
davolamoq V;PFV;SBJV;SG;2;INFM;FUT
yaralamoq V;PL;2;PRS
topib olmoq V;PROG;COND;SG;3;PRS
to'xtamga kelmoq V;PRF;SBJV;SG;3;PRS
bukmoq V;PRF;SBJV;SG;2;INFM;PRS
o'rnashmoq V;PFV;FH;SG;1
unutmoq V;SG;2;INFM;PRS
xizmat qilmoq V;IND;PL;3;PST
e'tibordan chetda qoldirmoq V;PRF;SBJV;SG;3;PRS
horg'in his qilmoq V;PROG;IND;PL;2;PST
sho'ng'imoq V;SG;3;PRS
qulflamoq V;COND;SG;1;PRS
o'chirmoq V;PFV;FRML;FH;SG;2
terlamoq V;PROG;IND;PL;2;PRS
yasamoq V;PRF;SBJV;PL;2;PRS
yo'qotmoq V;PFV;SBJV;SG;2;INFM;FUT
ishlatmoq V;COND;SG;2;INFM;PRS
uyalmoq V;PFV;IND;SG;2;INFM;PST
pasaymoq V;SBJV;PL;3;PRS
imkon bermoq V;PROG;FRML;IND;SG;2;PRS
yedirmoq V;PL;3;PRS
shoshmoq V;PFV;SBJV;SG;3;FUT
katta bo'lmoq V;PFV;IND;SG;3;PST
pand bermoq V;PROG;IND;PL;3;PRS
bashorat qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
tinglamoq V;FRML;COND;SG;2;PRS
ko'rishmoq V;PROG;IND;SG;1;PRS
yashirmoq V;PROG;COND;SG;3;PRS
tasvirlamoq V;FRML;IND;SG;2;PST
zabt etmoq V;PRF;FRML;SBJV;SG;2;PRS
pishirmoq V;PROG;FRML;IND;SG;2;FUT
uyg'otmoq V;PFV;FRML;SBJV;SG;2;FUT
taraqqiy etmoq V;PROG;IND;PL;2;FUT
o'rnashmoq V;FRML;SG;2;PRS
yashirmoq V;PROG;IND;PL;3;PST
yashamoq V;PFV;IND;SG;2;INFM;PST
kechikmoq V;PROG;IND;PL;3;FUT
qo'lga tushirmoq V;PROG;COND;SG;2;PRS
yaqinlashmoq V;SG;3;PRS
o'rnashmoq V;IND;SG;3;PST
yozib olmoq V;PROG;FRML;IND;SG;2;PST
kezmoq V;PFV;FRML;SBJV;SG;2;FUT
ko'chmoq V;PROG;IND;PL;3;PST
vaqtni isrof etmoq V;PROG;IND;SG;1;FUT
o'ylamoq V;PFV;SBJV;PL;3;FUT
ajrashmoq V;PFV;SBJV;PL;3;FUT
hayratlantirmoq V;PROG;IND;SG;2;INFM;PRS
taraqqiy etmoq V;PFV;IND;SG;2;INFM;PST
pishirmoq V;PRF+PROG;COND;SG;3;PRS
jiringlamoq V;PFV;SBJV;PL;3;FUT
tiqmoq V;PROG;COND;PL;1;PRS
rivojlantirmoq V;COND;PL;3;PRS
shovqin solmoq V;COND;PL;1;PRS
taklif qilmoq V;PROG;IND;SG;3;PRS
o'ynamoq V;PROG;IND;SG;3;PRS
turmoq V;IND;PL;1;PST
bermoq V;PRF+PROG;COND;PL;3;PRS
bastalamoq V;PROG;IND;SG;2;INFM;PST
to'plamoq V;PROG;COND;SG;2;PRS
uylamoq V;PFV;SBJV;SG;2;INFM;FUT
olmoq V;PRF;SBJV;SG;1;PRS
yuvmoq V;PRF+PROG;COND;SG;1;PRS
o'qimoq V;COND;SG;2;INFM;PRS
shoshilmoq V;PROG;IND;SG;2;INFM;FUT
taklif qilmoq V;PROG;IND;PL;3;FUT
iste'foga chiqmoq V;PRF;SBJV;PL;1;PRS
haydamoq V;PFV;SBJV;SG;3;FUT
ovlamoq V;PROG;FRML;IND;SG;2;PRS
xizmat qilmoq V;IND;SG;3;PST
afzal ko'rmoq V;FRML;IND;SG;2;PST
pastga tushmoq V;PL;1;PRS
yemoq V;PROG;FRML;IND;SG;2;PST
ajrashmoq V;SBJV;SG;3;PRS
qaytmoq V;PROG;COND;PL;2;PRS
ishlab chiqarmoq V;IND;SG;2;INFM;PST
la'natlamoq V;PRF;SBJV;PL;1;PRS
o'ramoq V;PRF+PROG;COND;PL;3;PRS
tikilmoq V;PROG;FRML;IND;SG;2;PRS
emaklamoq V;IND;SG;1;PST
uylanmoq V;PROG;IND;SG;3;PRS
yolg'on gapirmoq V;PROG;FRML;IND;SG;2;PST
takror qo'ymoq V;PFV;SBJV;PL;1;FUT
charchamoq V;PFV;SBJV;SG;3;FUT
so'kinmoq V;COND;SG;2;INFM;PRS
sakramoq V;PFV;SBJV;PL;3;FUT
isrof qilmoq V;PROG;IND;SG;3;PRS
izlamoq V;COND;SG;1;PRS
sahnalashtirmoq V;IND;SG;2;INFM;PST
olib tashlamoq V;PFV;FRML;FH;SG;2
topib olmoq V;FRML;COND;SG;2;PRS
umid qilmoq V;PFV;FH;SG;3
javob bermoq V;FRML;SBJV;SG;2;PRS
hibsga olmoq V;COND;PL;1;PRS
tekshirmoq V;PRF;SBJV;PL;2;PRS
suzmoq V;IND;SG;1;PST
ishtirok etmoq V;FRML;SBJV;SG;2;PRS
nazarda tutmoq V;PROG;IND;SG;1;PRS
qidirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
qolmoq V;PROG;IND;PL;1;PST
topib olmoq V;PFV;IND;SG;2;INFM;PST
charchamoq V;SBJV;SG;1;PRS
buyruq bermoq V;FRML;COND;SG;2;PRS
otmoq V;PRF+PROG;COND;SG;3;PRS
yoqtirmoq V;COND;SG;3;PRS
qo'yib yubormoq V;IND;PL;1;PST
qizq'anmoq V;PROG;IND;SG;3;PST
uzoqlashmoq V;PRF;SBJV;SG;2;INFM;PRS
ko'rishmoq V;PFV;IND;PL;2;PST
demoq V;PFV;FH;SG;2
kelmoq V;PFV;SBJV;SG;2;INFM;FUT
aralashmoq V;PFV;FH;SG;1
o'qimoq V;PFV;SBJV;SG;2;INFM;FUT
gapirmoq V;PFV;FH;PL;3
o'xshamoq V;PRF+PROG;COND;PL;1;PRS
suyanmoq V;PFV;SBJV;PL;2;FUT
qayta olmoq V;PRF+PROG;COND;SG;2;INFM;PRS
xizmat qilmoq V;PRF+PROG;COND;SG;3;PRS
tutmoq V;PFV;IND;SG;3;PST
hukm qilmoq V;PROG;COND;SG;2;PRS
dush qabul qilmoq V;PRF;SBJV;PL;2;PRS
unutmoq V;PRF+PROG;COND;PL;2;PRS
to'plamoq V;PROG;IND;SG;3;FUT
tuzmoq V;PROG;IND;PL;1;FUT
ichkariga kirmoq V;PFV;SBJV;SG;3;FUT
yuvinmoq V;PFV;IND;SG;1;PST
muzlatmoq V;PL;1;PRS
uxlamoq V;PRF;SBJV;SG;2;INFM;PRS
o'tib ketmoq V;PFV;SBJV;SG;3;FUT
navbatda turmoq V;IND;SG;2;INFM;PST
muomalada bo'lmoq V;PROG;IND;PL;2;PST
sug'ormoq V;PFV;SBJV;PL;2;FUT
so'z bermoq V;SG;2;INFM;PRS
nafratlanmoq V;PFV;IND;SG;2;INFM;PST
quymoq V;PROG;IND;PL;1;PRS
yasamoq V;PFV;FRML;IND;SG;2;PST
ichkariga kirmoq V;COND;SG;1;PRS
aralashmoq V;IND;SG;2;INFM;PST
bo'yanmoq V;SG;1;PRS
imtihondan o'tmoq V;COND;PL;3;PRS
o'rnatmoq V;PFV;FH;SG;3
topib olmoq V;PROG;IND;PL;1;PST
terlamoq V;PRF;SBJV;SG;3;PRS
taqiqlamoq V;IND;PL;3;PST
yirtmoq V;PROG;COND;SG;2;PRS
umid qilmoq V;PROG;IND;PL;3;FUT
yashamoq V;PROG;IND;SG;2;INFM;PST
o'zini tutmoq V;PRF;SBJV;SG;1;PRS
orzu qilmoq V;PROG;IND;SG;2;INFM;PST
o'rab olmoq V;PROG;IND;PL;2;FUT
sotmoq V;PFV;SBJV;SG;1;FUT
buzmoq V;PROG;IND;PL;2;FUT
pullamoq V;IND;PL;2;PST
sotmoq V;PFV;FH;PL;3
to'xtatmoq V;PFV;IND;SG;3;PST
qutqarmoq V;PRF;FRML;SBJV;SG;2;PRS
sahnalashtirmoq V;PROG;FRML;IND;SG;2;PST
uchrashmoq V;PROG;IND;PL;1;PRS
langar tashlamoq V;PROG;IND;SG;2;INFM;PRS
o'g'irlamoq V;PRF+PROG;COND;PL;3;PRS
to'plab qo'ymoq V;PFV;SBJV;PL;3;FUT
boshlamoq V;PRF;SBJV;SG;3;PRS
tushmoq V;PROG;COND;SG;1;PRS
qaror qabul qilmoq V;PROG;IND;SG;1;PST
sindirmoq V;PROG;IND;SG;3;FUT
qaytmoq V;PROG;COND;SG;3;PRS
ma'lum qilmoq V;PFV;FRML;SBJV;SG;2;FUT
inkor qilmoq V;PFV;SBJV;PL;2;FUT
surtmoq V;PFV;SBJV;SG;2;INFM;FUT
boshqarmoq V;FRML;COND;SG;2;PRS
ma'qullamoq V;PFV;SBJV;PL;2;FUT
shovqin solmoq V;IND;SG;3;PST
tuzmoq V;PRF+PROG;COND;PL;2;PRS
ishtirok etmoq V;PROG;IND;PL;3;FUT
pasaymoq V;PFV;FRML;SBJV;SG;2;FUT
o'tmoq V;IND;PL;1;PST
pishirmoq V;PRF+PROG;COND;PL;3;PRS
sog'inmoq V;PROG;COND;PL;1;PRS
so'zlashmoq V;SBJV;PL;3;PRS
sabab bo'lmoq V;PROG;IND;PL;3;PRS
bog'lamoq V;PROG;IND;SG;3;PST
shamollamoq V;COND;SG;2;INFM;PRS
uyg'onmoq V;PFV;SBJV;PL;3;FUT
dam olmoq V;PROG;FRML;IND;SG;2;PRS
chopmoq V;PFV;SBJV;SG;1;FUT
yuklamoq V;PL;3;PRS
chizmoq V;PROG;IND;SG;2;INFM;PRS
ishontirmoq V;PROG;IND;PL;3;PST
osmoq V;PRF+PROG;COND;SG;3;PRS
ko'rmoq V;PFV;SBJV;SG;3;FUT
pishirmoq V;PFV;FH;SG;2
o'lchamoq V;PFV;SBJV;PL;2;FUT
yozmoq V;SBJV;SG;2;PRS
quvmoq V;PROG;IND;SG;1;FUT
chopmoq V;SG;1;PRS
tutmoq V;IND;SG;1;PST
to'xtatmoq V;PROG;IND;SG;2;INFM;FUT
o'ldirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
pasaymoq V;IND;SG;3;PST
tozalamoq V;PL;3;PRS
tavsiya qilmoq V;PROG;COND;SG;1;PRS
och qolmoq V;PROG;IND;SG;2;INFM;PST
muomalada bo'lmoq V;PROG;IND;PL;3;PRS
qurmoq V;SBJV;PL;1;PRS
dush qabul qilmoq V;FRML;COND;SG;2;PRS
o'ynamoq V;PROG;FRML;IND;SG;2;PRS
o'zgartirmoq V;PFV;FH;SG;2
porlamoq V;PRF+PROG;COND;PL;1;PRS
tushunib yetmoq V;PRF+PROG;COND;PL;2;PRS
yondirmoq V;PRF;SBJV;SG;2;INFM;PRS
g'amgin his etmoq V;PRF+PROG;COND;PL;2;PRS
ishonmoq V;PFV;FH;PL;2
muzlatmoq V;PFV;SBJV;PL;2;FUT
bukchaymoq V;PFV;IND;SG;2;INFM;PST
og'riqsizlantirmoq V;SG;1;PRS
yetishmoq V;PFV;FH;SG;3
hidlamoq V;PROG;FRML;IND;SG;2;PRS
taxlamoq V;SBJV;SG;3;PRS
o'lmoq V;PROG;COND;PL;1;PRS
surtmoq V;PROG;FRML;COND;SG;2;PRS
orzu qilmoq V;PRF+PROG;COND;SG;3;PRS
tabriklamoq V;PROG;COND;SG;1;PRS
to'xtatmoq V;PFV;SBJV;PL;3;FUT
katta bo'lmoq V;PROG;IND;PL;2;FUT
hujum qilmoq V;PROG;IND;PL;3;PRS
kechikmoq V;IND;SG;2;INFM;PST
butamoq V;SBJV;SG;1;PRS
iste'foga chiqmoq V;PFV;IND;SG;3;PST
sotib olmoq V;PFV;FH;PL;1
ovlamoq V;PROG;IND;SG;3;PRS
jiringlamoq V;PRF+PROG;COND;SG;3;PRS
tanitmoq V;PFV;IND;PL;3;PST
keltirmoq V;PFV;FH;SG;3
qilmoq V;PFV;IND;PL;2;PST
esga solmoq V;PRF+PROG;FRML;COND;SG;2;PRS
uylamoq V;SG;2;INFM;PRS
zabt etmoq V;IND;SG;2;INFM;PST
tan olmoq V;PL;1;PRS
terlamoq V;COND;PL;1;PRS
la'natlamoq V;FRML;COND;SG;2;PRS
nazarda tutmoq V;IND;SG;1;PST
ochmoq V;PFV;FRML;IND;SG;2;PST
jiringlamoq V;PFV;FH;PL;3
asramoq V;PFV;SBJV;SG;1;FUT
yozib olmoq V;PROG;COND;PL;1;PRS
bezamoq V;PRF;SBJV;SG;2;INFM;PRS
uchrashmoq V;PRF+PROG;FRML;COND;SG;2;PRS
o'chirmoq V;COND;SG;3;PRS
tadqiq qilmoq V;COND;PL;1;PRS
tekshirmoq V;PFV;SBJV;SG;1;FUT
yolg'on gapirmoq V;PROG;IND;SG;3;PRS
dazmollamoq V;COND;PL;3;PRS
ko'zdan kechirmoq V;PFV;SBJV;PL;3;FUT
sanchmoq V;PFV;SBJV;PL;1;FUT
kechirmoq V;PROG;IND;PL;1;PST
ezmoq V;PROG;IND;SG;2;INFM;FUT
yetkazmoq V;FRML;IND;SG;2;PST
o'pmoq V;PFV;FRML;SBJV;SG;2;FUT
shug'ullanmoq V;PFV;SBJV;SG;2;INFM;FUT
yarashmoq V;PROG;IND;PL;1;FUT
chaqmoq V;IND;SG;1;PST
ko'rmoq V;PFV;SBJV;PL;1;FUT
shoshilmoq V;PFV;IND;PL;1;PST
pasaymoq V;PRF;FRML;SBJV;SG;2;PRS
tugatmoq V;PFV;FH;PL;3
qadoqlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
quvonmoq V;PFV;SBJV;SG;3;FUT
sho'ng'imoq V;PROG;IND;SG;1;PRS
tinglamoq V;PROG;IND;SG;3;FUT
qutqarmoq V;PFV;SBJV;PL;2;FUT
o'tlatmoq V;COND;PL;1;PRS
yozmoq V;COND;PL;2;PRS
davom etmoq V;PFV;IND;SG;2;INFM;PST
ishlab chiqarmoq V;PROG;FRML;IND;SG;2;PRS
osmoq V;PROG;IND;SG;3;FUT
sayohat qilmoq V;PFV;IND;PL;2;PST
jondan suymoq V;COND;PL;2;PRS
bezamoq V;COND;SG;2;INFM;PRS
yashamoq V;PRF+PROG;COND;PL;3;PRS
qulflamoq V;PROG;IND;SG;3;PRS
qutqarmoq V;PROG;COND;SG;2;PRS
tarjima qilmoq V;PFV;FH;SG;1
tarjima qilmoq V;PROG;IND;PL;2;FUT
bilmoq V;COND;PL;1;PRS
siljimoq V;FRML;SG;2;PRS
e'tibordan chetda qoldirmoq V;PRF+PROG;COND;PL;2;PRS
emaklamoq V;PRF+PROG;COND;PL;2;PRS
tikmoq V;PRF;SBJV;SG;3;PRS
yig'moq V;COND;PL;1;PRS
tozalamoq V;PROG;FRML;IND;SG;2;PST
shoshilmoq V;PRF+PROG;COND;PL;3;PRS
qidirmoq V;COND;SG;2;INFM;PRS
o'rnatmoq V;PROG;IND;SG;3;PST
tadqiq qilmoq V;PFV;FH;SG;2
o'tlatmoq V;PROG;IND;SG;3;PRS
yedirmoq V;PFV;IND;PL;3;PST
e'tibordan chetda qoldirmoq V;PROG;COND;SG;1;PRS
dazmollamoq V;PFV;SBJV;SG;3;FUT
farqlamoq V;PRF;SBJV;SG;3;PRS
yo'qolmoq V;PROG;IND;PL;3;FUT
buzilmoq V;PFV;FRML;FH;SG;2
siljimoq V;SG;3;PRS
yirtmoq V;FRML;COND;SG;2;PRS
yedirmoq V;PROG;FRML;IND;SG;2;PRS
sindirmoq V;SBJV;PL;3;PRS
qidirmoq V;PROG;IND;SG;3;PRS
xizmat qilmoq V;PROG;IND;PL;2;PRS
yo'qotmoq V;PRF;SBJV;PL;1;PRS
yugurmoq V;IND;PL;3;PST
yondirmoq V;PROG;FRML;IND;SG;2;PST
nolimoq V;PROG;IND;SG;1;FUT
taxlamoq V;PROG;IND;PL;1;FUT
qochmoq V;PFV;SBJV;SG;2;INFM;FUT
tushunmoq V;PRF;SBJV;SG;1;PRS
olmoq V;PROG;COND;PL;3;PRS
afzal ko'rmoq V;PRF;SBJV;SG;2;INFM;PRS
taramoq V;PFV;IND;SG;1;PST
o'pmoq V;IND;SG;3;PST
asabiylashtirmoq V;SG;3;PRS
ishtirok etmoq V;PL;1;PRS
varaqlamoq V;PROG;IND;PL;2;FUT
tanishtirmoq V;PFV;FRML;SBJV;SG;2;FUT
yubormoq V;PROG;FRML;IND;SG;2;FUT
sotmoq V;PROG;IND;PL;3;FUT
yoqmoq V;PROG;IND;SG;3;PRS
yordam bermoq V;PROG;IND;SG;1;FUT
yubormoq V;PRF+PROG;COND;PL;1;PRS
hayratlantirmoq V;PFV;FH;SG;1
bormoq V;PROG;IND;SG;3;PST
kechiktirmoq V;PRF+PROG;COND;PL;1;PRS
afzal ko'rmoq V;IND;SG;2;INFM;PST
yo'qotmoq V;FRML;COND;SG;2;PRS
amin bo'lmoq V;IND;PL;3;PST
istamoq V;COND;SG;2;INFM;PRS
butamoq V;PROG;IND;SG;2;INFM;FUT
farqlamoq V;PROG;IND;PL;1;PRS
bitirmoq V;SBJV;SG;2;PRS
yashirinmoq V;PRF;SBJV;PL;1;PRS
o'xshamoq V;PL;3;PRS
taqiqlamoq V;PFV;FH;SG;2
taklif qilmoq V;PROG;IND;SG;1;PST
mo'ralamoq V;PFV;FH;PL;2
jiringlamoq V;FRML;IND;SG;2;PST
suzmoq V;PROG;COND;PL;3;PRS
to'xtamga kelmoq V;PFV;SBJV;PL;2;FUT
yo'qolmoq V;COND;PL;1;PRS
qattiq yopmoq V;PROG;IND;SG;3;PST
sog'inmoq V;PROG;IND;SG;1;FUT
ko'rsatmoq V;FRML;IND;SG;2;PST
qizq'anmoq V;IND;SG;3;PST
yuklamoq V;PRF;FRML;SBJV;SG;2;PRS
ketmoq V;COND;SG;1;PRS
tadqiq qilmoq V;IND;PL;2;PST
ko'chib ketmoq V;PRF+PROG;COND;SG;3;PRS
tagiga chizmoq V;PROG;COND;SG;3;PRS
hayron qolmoq V;PROG;IND;SG;2;INFM;PST
horg'in his qilmoq V;PFV;IND;PL;1;PST
tutmoq V;PFV;SBJV;SG;3;FUT
o'rnashmoq V;IND;PL;2;PST
ishontirmoq V;PFV;SBJV;SG;1;FUT
o'rab olmoq V;PROG;IND;PL;2;PST
hijjalamoq V;PROG;FRML;IND;SG;2;PST
o'pmoq V;PROG;IND;PL;1;PST
sanchmoq V;PROG;IND;PL;2;FUT
g'ashini keltirmoq V;PRF;SBJV;PL;3;PRS
tekshirmoq V;COND;PL;2;PRS
iste'foga chiqmoq V;FRML;IND;SG;2;PST
quvontirmoq V;PROG;IND;PL;3;FUT
sotib olmoq V;PROG;IND;PL;1;PRS
yasamoq V;PFV;FRML;SBJV;SG;2;FUT
ogohlantirmoq V;PL;2;PRS
yo'talmoq V;PFV;IND;PL;1;PST
taxlamoq V;PROG;IND;PL;3;PRS
aniqlamoq V;PROG;IND;PL;2;PST
yonmoq V;SG;3;PRS
ishlab chiqarmoq V;PRF+PROG;COND;PL;3;PRS
uylanmoq V;IND;PL;2;PST
ta'minlamoq V;COND;PL;1;PRS
davom etmoq V;PROG;COND;SG;3;PRS
o'zgartirmoq V;PFV;FH;SG;3
tavsiya etmoq V;PL;1;PRS
unutmoq V;PFV;IND;PL;2;PST
xursand bo'lmoq V;PROG;COND;PL;3;PRS
ta'kidlamoq V;PFV;IND;PL;1;PST
uzanmoq V;PROG;IND;SG;1;PRS
ishlab chiqarmoq V;PRF;FRML;SBJV;SG;2;PRS
tanishtirmoq V;PRF+PROG;COND;PL;3;PRS
osilmoq V;PFV;SBJV;PL;3;FUT
pullamoq V;PROG;IND;SG;2;INFM;PST
talab qilmoq V;SG;2;INFM;PRS
kechikmoq V;PROG;COND;PL;1;PRS
yetkazmoq V;PRF;FRML;SBJV;SG;2;PRS
aytmoq V;PFV;IND;PL;2;PST
erishmoq V;PROG;FRML;IND;SG;2;PST
yetilmoq V;PFV;FH;SG;2;INFM
o'g'irlab ketmoq V;PROG;IND;SG;1;PST
qimor o'ynamoq V;PROG;COND;PL;3;PRS
taslim bo'lmoq V;PFV;IND;SG;2;INFM;PST
emaklamoq V;PROG;IND;SG;1;FUT
suyanmoq V;IND;PL;1;PST
kesmoq V;PROG;COND;PL;1;PRS
ko'rmoq V;PL;1;PRS
umid qilmoq V;COND;SG;1;PRS
to'plamoq V;PFV;FH;PL;1
pushaymon bo'lmoq V;PFV;FH;SG;1
orzu qilmoq V;PFV;FH;SG;1
kechiktirmoq V;FRML;SG;2;PRS
his qilmoq V;PROG;COND;PL;1;PRS
ayb qo'ymoq V;PRF+PROG;COND;SG;2;INFM;PRS
tatib ko'rmoq V;COND;SG;3;PRS
tadqiq qilmoq V;PRF;SBJV;SG;3;PRS
aniqlamoq V;PFV;FRML;IND;SG;2;PST
aytmoq V;PFV;SBJV;PL;3;FUT
quvmoq V;SBJV;PL;3;PRS
erishmoq V;PFV;SBJV;PL;1;FUT
ajratmoq V;PFV;SBJV;SG;1;FUT
jondan suymoq V;PFV;FH;PL;3
maslahat bermoq V;PFV;SBJV;SG;3;FUT
bo'lmoq V;PFV;SBJV;SG;3;FUT
g'ashini keltirmoq V;COND;PL;3;PRS
buyurtma bermoq V;PFV;SBJV;SG;1;FUT
dush qabul qilmoq V;PROG;COND;SG;1;PRS
yozib olmoq V;SBJV;PL;2;PRS
chang'i uchmoq V;PFV;FH;PL;2
supurmoq V;SBJV;PL;1;PRS
qolmoq V;PFV;SBJV;SG;3;FUT
sog'inmoq V;IND;SG;2;INFM;PST
pichirlamoq V;PRF+PROG;COND;SG;3;PRS
sotib olmoq V;PROG;IND;SG;2;INFM;FUT
dush qabul qilmoq V;PROG;IND;PL;3;PST
sakramoq V;PFV;FH;SG;1
hayron qolmoq V;FRML;COND;SG;2;PRS
tortmoq V;PRF+PROG;COND;PL;1;PRS
tushmoq V;PROG;IND;SG;2;INFM;FUT
yopishmoq V;PFV;IND;PL;1;PST
ajramoq V;PROG;COND;PL;2;PRS
tushunmoq V;IND;SG;2;INFM;PST
taklif qilmoq V;PL;1;PRS
bastalamoq V;PROG;IND;PL;1;PRS
aniqlamoq V;PRF+PROG;COND;PL;1;PRS
shamollatmoq V;PROG;IND;SG;3;FUT
tarjima qilmoq V;PL;2;PRS
bo'yatmoq V;SBJV;PL;2;PRS
iste'foga chiqmoq V;PFV;IND;SG;2;INFM;PST
sug'ormoq V;PFV;FH;SG;1
sirpanmoq V;PROG;IND;SG;1;PRS
o'z ichiga olmoq V;IND;PL;3;PST
navbatda turmoq V;IND;PL;1;PST
shoshilmoq V;PRF;SBJV;PL;3;PRS
o'lmoq V;SG;3;PRS
pastga tushmoq V;PFV;SBJV;SG;1;FUT
bashorat qilmoq V;IND;SG;1;PST
uyalmoq V;IND;SG;2;INFM;PST
eslamoq V;SG;1;PRS
bo'yatmoq V;IND;PL;1;PST
o'lchamoq V;PRF;SBJV;PL;3;PRS
so'z bermoq V;PFV;SBJV;SG;3;FUT
bekor qilmoq V;PRF;SBJV;SG;2;INFM;PRS
artmoq V;PROG;COND;SG;3;PRS
ko'chib ketmoq V;PROG;IND;PL;2;PRS
pand bermoq V;PFV;SBJV;PL;3;FUT
o'chirmoq V;PFV;FRML;SBJV;SG;2;FUT
dam olmoq V;PFV;FH;SG;3
pastga tushmoq V;PFV;FH;SG;2
unutmoq V;PROG;IND;PL;3;PST
yonmoq V;PROG;IND;SG;1;PRS
ma'lum qilmoq V;PROG;FRML;IND;SG;2;PST
suv qilib ichmoq V;PROG;IND;PL;3;PST
vaqtni isrof etmoq V;PROG;IND;PL;1;PRS
sug'ormoq V;PL;1;PRS
yurmoq V;PRF+PROG;COND;SG;3;PRS
yiqilmoq V;PROG;COND;SG;3;PRS
ochmoq V;IND;PL;1;PST
siqmoq V;PROG;IND;SG;3;PRS
harakat qilmoq V;PFV;SBJV;PL;2;FUT
burmoq V;PFV;IND;SG;1;PST
iborat bo'lmoq V;COND;PL;3;PRS
ko'zdan kechirmoq V;PFV;SBJV;PL;1;FUT
bitirmoq V;PROG;IND;PL;2;PRS
tarjima qilmoq V;PROG;IND;SG;3;PRS
sakramoq V;SBJV;PL;2;PRS
otmoq V;PRF+PROG;COND;SG;1;PRS
bo'lmoq V;PFV;IND;PL;1;PST
qimor o'ynamoq V;COND;SG;2;INFM;PRS
mo'ralamoq V;FRML;COND;SG;2;PRS
urmoq V;COND;PL;2;PRS
tinglamoq V;PROG;IND;PL;2;PST
tozalamoq V;SBJV;PL;1;PRS
quvonmoq V;PRF+PROG;COND;PL;1;PRS
chang'i uchmoq V;PROG;COND;SG;2;PRS
baqirmoq V;PROG;COND;SG;2;PRS
yozmoq V;PROG;FRML;IND;SG;2;PST
shamollatmoq V;PRF;SBJV;SG;2;INFM;PRS
xo'mraymoq V;SG;2;INFM;PRS
hisoblamoq V;PFV;IND;PL;3;PST
o'ynamoq V;PFV;IND;PL;2;PST
yoqtirmoq V;PRF;SBJV;PL;3;PRS
ajramoq V;IND;PL;2;PST
farqlamoq V;PRF+PROG;COND;PL;2;PRS
olib turmoq V;PFV;IND;SG;2;INFM;PST
eshitmoq V;PRF+PROG;COND;SG;2;INFM;PRS
surtmoq V;PROG;COND;PL;1;PRS
bekor qilmoq V;PRF+PROG;COND;PL;1;PRS
ko'rsatmoq V;IND;SG;1;PST
pand bermoq V;FRML;COND;SG;2;PRS
umid qilmoq V;PFV;FH;PL;1
so'zlashmoq V;PRF;SBJV;PL;2;PRS
pishirmoq V;PL;2;PRS
nolimoq V;SG;2;INFM;PRS
sug'ormoq V;IND;SG;1;PST
uzoqlashmoq V;PL;1;PRS
o'tlatmoq V;PROG;IND;PL;2;FUT
kutmoq V;PRF;FRML;SBJV;SG;2;PRS
uzr so'ramoq V;PFV;FH;PL;2
farqlamoq V;PFV;SBJV;PL;2;FUT
ogohlantirmoq V;PRF;SBJV;SG;3;PRS
quvontirmoq V;PROG;IND;PL;3;PRS
yugurmoq V;IND;SG;3;PST
chang'i uchmoq V;PFV;SBJV;PL;2;FUT
sug'ormoq V;PRF;SBJV;SG;2;INFM;PRS
inkor qilmoq V;COND;PL;3;PRS
yig'moq V;PFV;SBJV;PL;2;FUT
yetmoq V;PROG;IND;SG;3;PST
uylanmoq V;PROG;COND;PL;1;PRS
jiringlamoq V;SG;2;INFM;PRS
ishtirok etmoq V;PRF;SBJV;PL;3;PRS
suzmoq V;PROG;COND;PL;1;PRS
yoqtirmoq V;PL;3;PRS
sug'ormoq V;PFV;FRML;IND;SG;2;PST
yoqmoq V;PFV;SBJV;SG;2;INFM;FUT
topmoq V;SBJV;SG;1;PRS
chang'i uchmoq V;PRF+PROG;COND;SG;2;INFM;PRS
qadoqlamoq V;PRF+PROG;COND;PL;1;PRS
ko'zdan kechirmoq V;PFV;SBJV;SG;1;FUT
quvontirmoq V;PFV;IND;SG;2;INFM;PST
takror qo'ymoq V;PROG;FRML;IND;SG;2;PRS
yig'lamoq V;FRML;COND;SG;2;PRS
yoqtirmoq V;PRF+PROG;COND;PL;3;PRS
quvonmoq V;PL;2;PRS
ichmoq V;SG;3;PRS
suyanmoq V;PROG;IND;SG;2;INFM;PST
yurmoq V;FRML;COND;SG;2;PRS
ishga olmoq V;PRF;SBJV;PL;1;PRS
pishirmoq V;IND;PL;3;PST
harakat qilib ko'rmoq V;PRF;FRML;SBJV;SG;2;PRS
chekmoq V;PROG;IND;SG;1;FUT
reja tuzmoq V;SG;2;INFM;PRS
tiqmoq V;PRF;SBJV;PL;3;PRS
bezmoq V;PFV;SBJV;SG;1;FUT
kerak bo'lmoq V;PROG;COND;PL;3;PRS
dam olmoq V;IND;PL;2;PST
yoqtirmoq V;PRF;SBJV;SG;2;INFM;PRS
quvontirmoq V;PFV;FH;SG;1
g'ashini keltirmoq V;PFV;IND;PL;2;PST
zarar yetkazmoq V;PRF;SBJV;SG;3;PRS
buzilmoq V;PROG;COND;SG;2;PRS
asabiylashtirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
osilmoq V;IND;PL;2;PST
hibsga olmoq V;PROG;IND;PL;3;PRS
yetkazmoq V;PRF+PROG;COND;SG;1;PRS
ogohlantirmoq V;COND;PL;3;PRS
yashamoq V;PL;1;PRS
savdo qilmoq V;PROG;IND;PL;3;PST
buyurtma bermoq V;SBJV;SG;2;PRS
mazax qilmoq V;PROG;IND;PL;1;PRS
supurmoq V;FRML;IND;SG;2;PST
g'amgin his etmoq V;IND;PL;1;PST
tashakkur aytmoq V;PROG;IND;PL;2;PRS
reja tuzmoq V;PROG;IND;PL;2;PST
yaqinlashmoq V;PROG;IND;PL;1;PST
o'g'irlab ketmoq V;PFV;IND;SG;1;PST
bukmoq V;SG;3;PRS
hidlamoq V;PROG;COND;SG;2;PRS
pasaymoq V;PRF+PROG;COND;SG;1;PRS
uyg'onmoq V;IND;SG;3;PST
muhokama qilmoq V;PROG;IND;SG;2;INFM;PST
to'kmoq V;PRF+PROG;COND;PL;1;PRS
gapirmoq V;PFV;IND;SG;2;INFM;PST
so'z bermoq V;IND;SG;2;INFM;PST
bo'yamoq V;PFV;FH;SG;3
olib tashlamoq V;PFV;FH;PL;3
narx turmoq V;PFV;IND;SG;2;INFM;PST
to'plab qo'ymoq V;PROG;IND;PL;1;PST
ezmoq V;PL;3;PRS
katta qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
tasvirlamoq V;PROG;IND;SG;3;PRS
saqlamoq V;PROG;IND;PL;2;PST
shoshilmoq V;PROG;IND;SG;1;PST
buzilmoq V;PRF+PROG;COND;SG;3;PRS
bo'lmoq V;SG;2;INFM;PRS
qo'lga tushirmoq V;PROG;IND;PL;2;PRS
sanamoq V;SG;1;PRS
asramoq V;PROG;IND;SG;1;PST
paydo bo'lmoq V;PL;2;PRS
bo'lmoq V;PRF;SBJV;SG;2;INFM;PRS
ma'lum qilmoq V;FRML;COND;SG;2;PRS
asramoq V;PFV;FH;SG;3
vaqtni isrof etmoq V;PRF;SBJV;SG;2;INFM;PRS
bo'yatmoq V;PROG;IND;SG;3;FUT
qo'lga tushirmoq V;PROG;COND;PL;1;PRS
saqlamoq V;IND;SG;1;PST
taraqqiy etmoq V;PFV;SBJV;SG;1;FUT
surtmoq V;FRML;IND;SG;2;PST
quvontirmoq V;IND;SG;2;INFM;PST
surtmoq V;PFV;IND;SG;1;PST
bezamoq V;PROG;IND;SG;2;INFM;PRS
tanishtirmoq V;COND;PL;1;PRS
ortidan bormoq V;PROG;COND;SG;1;PRS
imkon bermoq V;PROG;IND;PL;1;FUT
sezmoq V;PROG;IND;SG;1;PST
rivojlanmoq V;PL;3;PRS
o'chirmoq V;PRF;FRML;SBJV;SG;2;PRS
iste'foga chiqmoq V;IND;SG;2;INFM;PST
tatib ko'rmoq V;SG;3;PRS
shoshmoq V;PROG;IND;SG;3;PRS
iste'foga chiqmoq V;PROG;IND;PL;2;PST
o'tirmoq V;PROG;COND;SG;1;PRS
yig'lamoq V;FRML;SG;2;PRS
qolmoq V;PFV;FH;SG;2
bo'shatmoq V;PROG;IND;PL;3;FUT
sabab bo'lmoq V;PROG;FRML;IND;SG;2;PST
tiqmoq V;PROG;COND;SG;1;PRS
o'rgatmoq V;PRF;SBJV;PL;1;PRS
otmoq V;PRF;SBJV;PL;1;PRS
ko'tarib yurmoq V;PRF;SBJV;PL;3;PRS
inkor qilmoq V;PROG;COND;SG;1;PRS
qo'lga tushirmoq V;PFV;SBJV;SG;1;FUT
porlamoq V;PRF;FRML;SBJV;SG;2;PRS
kelmoq V;PROG;IND;PL;1;PST
surtmoq V;IND;PL;2;PST
ko'zdan g'oyib bo'lmoq V;PROG;COND;SG;3;PRS
yasamoq V;PROG;IND;SG;3;FUT
yig'lamoq V;PROG;IND;PL;3;PST
xo'mraymoq V;PRF+PROG;COND;PL;1;PRS
sug'ormoq V;SG;2;INFM;PRS
dazmollamoq V;PROG;IND;PL;2;FUT
qolmoq V;PFV;FH;PL;2
tadqiq qilmoq V;PFV;IND;PL;1;PST
o'rab olmoq V;PFV;IND;PL;3;PST
to'g'ramoq V;PFV;IND;PL;1;PST
unutmoq V;PFV;SBJV;SG;3;FUT
chiqarmoq V;PROG;IND;PL;3;PST
o'lchamoq V;PROG;IND;PL;3;PRS
olmoq V;PFV;SBJV;SG;1;FUT
pullamoq V;PRF;SBJV;SG;1;PRS
shamollamoq V;PFV;FH;SG;2
baqirmoq V;PRF+PROG;COND;PL;3;PRS
to'xtatmoq V;COND;SG;3;PRS
kiyinmoq V;PRF;SBJV;PL;3;PRS
yo'talmoq V;IND;SG;3;PST
yotmoq V;PRF+PROG;FRML;COND;SG;2;PRS
quvmoq V;IND;PL;3;PST
o'pmoq V;COND;PL;2;PRS
tashkil qilmoq V;PROG;IND;PL;1;PST
shoshilmoq V;PFV;FH;PL;2
cho'kmoq V;PROG;COND;SG;2;PRS
yotmoq V;PROG;FRML;IND;SG;2;FUT
rivojlanmoq V;PFV;FH;PL;2
o'qimoq V;IND;PL;2;PST
ishlatmoq V;PRF;SBJV;PL;3;PRS
o'ldirmoq V;PROG;IND;PL;1;PRS
taramoq V;PFV;IND;PL;3;PST
yozib olmoq V;PL;1;PRS
bo'yatmoq V;IND;PL;3;PST
erishmoq V;PL;3;PRS
baqirmoq V;PFV;FRML;IND;SG;2;PST
ayblamoq V;PFV;SBJV;PL;1;FUT
yo'qotmoq V;PFV;FRML;FH;SG;2
ishontirmoq V;PFV;FH;SG;2
urmoq V;PFV;IND;SG;1;PST
rad etmoq V;PFV;FRML;SBJV;SG;2;FUT
his qilmoq V;PRF;FRML;SBJV;SG;2;PRS
buyruq bermoq V;PROG;IND;SG;3;FUT
kuymoq V;PRF;SBJV;PL;2;PRS
yig'lamoq V;PROG;IND;SG;3;FUT
hukm qilmoq V;PFV;SBJV;PL;2;FUT
tushunmoq V;PFV;FH;SG;3
isrof qilmoq V;PROG;IND;SG;3;FUT
osilmoq V;IND;PL;1;PST
tushunmoq V;PRF+PROG;COND;PL;2;PRS
ajramoq V;PROG;FRML;IND;SG;2;PST
yolg'on gapirmoq V;IND;SG;1;PST
ijaraga bermoq V;COND;SG;2;INFM;PRS
yubormoq V;SG;2;INFM;PRS
to'g'ramoq V;IND;SG;2;INFM;PST
buzilmoq V;IND;PL;3;PST
olib tashlamoq V;COND;PL;2;PRS
chang'i uchmoq V;PFV;SBJV;PL;1;FUT
moslashmoq V;PFV;SBJV;SG;1;FUT
unutmoq V;PFV;SBJV;PL;2;FUT
quymoq V;PRF+PROG;COND;SG;1;PRS
yirtmoq V;SBJV;SG;3;PRS
so'z bermoq V;PFV;IND;PL;3;PST
zarar yetkazmoq V;PROG;IND;SG;2;INFM;PRS
sog'inmoq V;PROG;IND;SG;1;PRS
yuzlashmoq V;PFV;FH;SG;3
hisoblamoq V;SG;1;PRS
tuzmoq V;SBJV;SG;1;PRS
la'natlamoq V;PFV;SBJV;SG;1;FUT
sanamoq V;PROG;IND;PL;3;PRS
supurmoq V;SG;2;INFM;PRS
ishonmoq V;PROG;IND;SG;3;PST
yaqinlashmoq V;COND;SG;2;INFM;PRS
sotmoq V;PRF;SBJV;SG;3;PRS
ayblamoq V;PRF+PROG;COND;PL;1;PRS
ishga olmoq V;PROG;IND;PL;3;PRS
kuylamoq V;SG;1;PRS
aralashmoq V;PRF+PROG;COND;SG;1;PRS
aniqlamoq V;IND;PL;1;PST
hayratlantirmoq V;IND;PL;2;PST
navbatda turmoq V;PRF+PROG;FRML;COND;SG;2;PRS
yotmoq V;PFV;FRML;SBJV;SG;2;FUT
mazax qilmoq V;PFV;SBJV;SG;3;FUT
intizorlik bilan kutmoq V;PROG;IND;SG;2;INFM;PRS
kirmoq V;SBJV;PL;3;PRS
o'z ichiga olmoq V;PFV;IND;PL;1;PST
ishga olmoq V;COND;SG;2;INFM;PRS
olmoq V;PFV;FRML;FH;SG;2
topmoq V;PROG;COND;SG;2;PRS
qarshilik ko'rsatmoq V;PFV;SBJV;SG;3;FUT
aniqlamoq V;PROG;COND;PL;1;PRS
urmoq V;PROG;IND;SG;2;INFM;PRS
ko'ndirmoq V;PROG;COND;PL;1;PRS
terlamoq V;PRF+PROG;COND;SG;3;PRS
yuvmoq V;COND;PL;1;PRS
ovlamoq V;PROG;IND;PL;3;PST
yubormoq V;PROG;IND;PL;1;FUT
sog'inmoq V;PROG;COND;PL;3;PRS
ishlab chiqarmoq V;PROG;IND;PL;3;FUT
qutqarmoq V;PRF;SBJV;SG;1;PRS
ayblamoq V;PFV;SBJV;SG;1;FUT
jalb qilmoq V;COND;SG;1;PRS
uchirmoq V;PFV;FH;PL;2
bog'lamoq V;PFV;SBJV;PL;1;FUT
cho'kmoq V;PROG;COND;SG;1;PRS
varaqlamoq V;PROG;IND;SG;1;PRS
ko'ndirmoq V;PRF;SBJV;PL;3;PRS
hibsga olmoq V;PFV;SBJV;SG;2;INFM;FUT
yopishmoq V;COND;SG;2;INFM;PRS
tinglamoq V;PRF+PROG;COND;SG;3;PRS
jalb qilmoq V;PFV;SBJV;PL;3;FUT
oldini olmoq V;FRML;SBJV;SG;2;PRS
ko'zdan kechirmoq V;PROG;IND;PL;2;PST
uzanmoq V;COND;SG;3;PRS
sho'ng'imoq V;PFV;SBJV;PL;1;FUT
uylanmoq V;FRML;SBJV;SG;2;PRS
tikilmoq V;PFV;FH;PL;3
qayta olmoq V;SBJV;PL;1;PRS
muzlatmoq V;IND;SG;3;PST
tark etmoq V;PFV;IND;SG;1;PST
mahkum qilmoq V;PROG;IND;SG;2;INFM;PRS
yedirmoq V;PFV;FH;SG;3
tatib ko'rmoq V;FRML;IND;SG;2;PST
topib olmoq V;PFV;IND;SG;3;PST
burmoq V;COND;PL;1;PRS
ishonmoq V;PROG;IND;SG;1;PRS
olmoq V;PROG;IND;PL;3;PST
mo'ralamoq V;PROG;IND;PL;1;FUT
o'lmoq V;PROG;COND;SG;1;PRS
o'z ichiga olmoq V;PRF+PROG;COND;PL;3;PRS
kuchga kiritmoq V;SG;1;PRS
quvontirmoq V;PFV;IND;SG;3;PST
tushunmoq V;SG;2;INFM;PRS
qidirmoq V;PROG;IND;PL;1;PRS
maslahat bermoq V;PROG;IND;PL;1;PRS
turmoq V;SBJV;PL;1;PRS
buzmoq V;PROG;FRML;IND;SG;2;PRS
gaplashmoq V;PRF;SBJV;PL;1;PRS
rozi bo'lmoq V;PRF;SBJV;PL;2;PRS
muzlatmoq V;IND;PL;3;PST
bo'lmoq V;PFV;SBJV;SG;2;INFM;FUT
navbatda turmoq V;PRF+PROG;COND;PL;1;PRS
tadqiq qilmoq V;PL;3;PRS
qo'rqmoq V;PFV;FRML;SBJV;SG;2;FUT
tashakkur aytmoq V;PL;3;PRS
yozmoq V;FRML;IND;SG;2;PST
yirtmoq V;SBJV;PL;1;PRS
artmoq V;PROG;IND;PL;3;FUT
uloqtirmoq V;SG;3;PRS
yozmoq V;PFV;SBJV;PL;3;FUT
qo'lga olmoq V;PROG;IND;SG;3;FUT
izoh bermoq V;PRF;SBJV;SG;1;PRS
tark etmoq V;PFV;FH;PL;1
quymoq V;PFV;FH;SG;2
olib turmoq V;PROG;COND;SG;3;PRS
yetmoq V;PRF+PROG;COND;PL;3;PRS
maslahat bermoq V;PFV;IND;SG;1;PST
to'smoq V;PROG;COND;SG;3;PRS
uylanmoq V;PRF+PROG;COND;PL;2;PRS
chaqmoq V;PFV;SBJV;SG;2;INFM;FUT
hukm qilmoq V;PROG;IND;SG;3;FUT
uyg'onmoq V;PROG;IND;SG;2;INFM;FUT
e'tibordan chetda qoldirmoq V;PRF;SBJV;PL;3;PRS
dam olmoq V;PROG;IND;SG;1;PRS
oldini olmoq V;SG;1;PRS
tabriklamoq V;PFV;IND;SG;3;PST
zabt etmoq V;PROG;FRML;IND;SG;2;FUT
umid qilmoq V;PROG;IND;SG;2;INFM;PRS
muzlatmoq V;PROG;IND;SG;2;INFM;PST
ko'rsatmoq V;PROG;COND;SG;2;PRS
shug'ullanmoq V;SG;2;INFM;PRS
bog'lamoq V;PRF;SBJV;PL;2;PRS
hisoblamoq V;PFV;FH;SG;2
izoh bermoq V;PFV;FH;SG;2
suzmoq V;PROG;IND;SG;3;PST
yedirmoq V;PFV;FRML;SBJV;SG;2;FUT
tekshirmoq V;PROG;COND;SG;2;PRS
ketmoq V;PFV;FH;PL;1
taramoq V;PROG;IND;SG;1;PST
kulmoq V;PFV;SBJV;SG;1;FUT
tinglamoq V;PROG;IND;PL;2;PRS
davolamoq V;PFV;IND;SG;3;PST
yuvinmoq V;PFV;IND;SG;2;INFM;PST
o'tirmoq V;COND;PL;1;PRS
intervyu olmoq V;PFV;IND;PL;3;PST
xizmat qilmoq V;PROG;FRML;IND;SG;2;FUT
o'zini tutmoq V;IND;PL;1;PST
bo'shatmoq V;PROG;FRML;IND;SG;2;PST
ko'tarib yurmoq V;PROG;IND;PL;3;PRS
butamoq V;COND;PL;3;PRS
yiqitmoq V;PROG;FRML;IND;SG;2;FUT
xursand bo'lmoq V;PFV;SBJV;PL;1;FUT
to'g'ramoq V;SBJV;PL;2;PRS
sevib qolmoq V;IND;SG;3;PST
kuylamoq V;PFV;SBJV;SG;1;FUT
nafratlanmoq V;PRF+PROG;FRML;COND;SG;2;PRS
hujum qilmoq V;PROG;IND;SG;2;INFM;FUT
yozmoq V;PFV;SBJV;SG;3;FUT
hal qilmoq V;PRF+PROG;COND;SG;3;PRS
o'lchamoq V;PFV;SBJV;SG;2;INFM;FUT
chiqmoq V;SBJV;SG;1;PRS
bekor qilmoq V;PFV;SBJV;PL;2;FUT
mo'ralamoq V;FRML;SG;2;PRS
to'plamoq V;IND;PL;3;PST
qaror qabul qilmoq V;FRML;COND;SG;2;PRS
yuvmoq V;PRF+PROG;COND;PL;2;PRS
yemoq V;PRF+PROG;COND;PL;2;PRS
ajratmoq V;SG;3;PRS
uzanmoq V;PROG;FRML;IND;SG;2;PRS
chaqmoq V;PFV;FH;SG;3
imtihondan o'tmoq V;SG;2;INFM;PRS
buzilmoq V;SG;2;INFM;PRS
qaror qabul qilmoq V;FRML;SG;2;PRS
ichkariga kirmoq V;PROG;IND;PL;2;FUT
tatib ko'rmoq V;IND;PL;2;PST
yozib olmoq V;SBJV;PL;1;PRS
zabt etmoq V;COND;SG;1;PRS
yurmoq V;PRF+PROG;FRML;COND;SG;2;PRS
urmoq V;SBJV;PL;2;PRS
imkon bermoq V;SG;3;PRS
ijaraga bermoq V;PFV;SBJV;SG;1;FUT
sanatmoq V;PROG;IND;PL;1;PRS
tark etmoq V;PRF;SBJV;SG;2;INFM;PRS
yuvmoq V;PROG;COND;PL;3;PRS
his qilmoq V;PFV;IND;SG;3;PST
jondan suymoq V;SG;3;PRS
chetlashmoq V;PRF;FRML;SBJV;SG;2;PRS
katta qilmoq V;PRF;FRML;SBJV;SG;2;PRS
tortmoq V;PROG;FRML;IND;SG;2;PST
jondan suymoq V;PFV;FH;SG;3
qarshilantirmoq V;PFV;IND;PL;3;PST
kulmoq V;FRML;IND;SG;2;PST
kutmoq V;PFV;SBJV;PL;3;FUT
to'xtamga kelmoq V;PROG;IND;SG;3;PRS
quymoq V;SBJV;SG;2;PRS
qaramoq V;PRF+PROG;FRML;COND;SG;2;PRS
bastalamoq V;PRF+PROG;COND;SG;2;INFM;PRS
tasvirlamoq V;IND;PL;2;PST
ishtirok etmoq V;PFV;SBJV;PL;1;FUT
tadqiq qilmoq V;PFV;IND;PL;2;PST
ta'minlamoq V;IND;PL;2;PST
pishirmoq V;PRF;SBJV;PL;2;PRS
yugurmoq V;PROG;IND;PL;1;FUT
kiyinmoq V;PFV;FRML;FH;SG;2
keltirmoq V;PROG;COND;SG;3;PRS
sarflamoq V;PROG;COND;SG;1;PRS
yo'qotmoq V;PROG;FRML;IND;SG;2;PRS
o'rnatmoq V;PROG;IND;PL;2;PST
yaralamoq V;PRF+PROG;COND;SG;3;PRS
aldamoq V;FRML;COND;SG;2;PRS
sirpanmoq V;PFV;FH;PL;2
takror qo'ymoq V;PRF;FRML;SBJV;SG;2;PRS
ezmoq V;FRML;COND;SG;2;PRS
afzal ko'rmoq V;SBJV;PL;1;PRS
ma'qullamoq V;PROG;IND;SG;3;FUT
ishlatmoq V;PROG;IND;SG;3;PST
ishontirmoq V;PRF;SBJV;PL;1;PRS
bitirmoq V;PRF;SBJV;PL;3;PRS
qo'lga olmoq V;PFV;SBJV;PL;3;FUT
hisoblamoq V;COND;PL;1;PRS
o'zgartirmoq V;PROG;IND;PL;2;FUT
ovlamoq V;PROG;IND;PL;3;FUT
og'riqsizlantirmoq V;PROG;IND;SG;3;PRS
qattiq yopmoq V;PRF;SBJV;SG;2;INFM;PRS
inkor qilmoq V;COND;PL;2;PRS
qattiq yopmoq V;PRF;SBJV;SG;3;PRS
ozor bermoq V;PROG;COND;SG;2;PRS
to'lamoq V;PROG;COND;PL;3;PRS
his qilmoq V;PFV;SBJV;SG;1;FUT
ko'tarmoq V;PROG;IND;PL;1;FUT
ortidan bormoq V;PRF;SBJV;SG;1;PRS
muhokama qilmoq V;COND;SG;2;INFM;PRS
qo'lga tushirmoq V;PFV;IND;SG;1;PST
vorislik qilmoq V;SG;2;INFM;PRS
yiqitmoq V;PFV;FH;PL;3
kelmoq V;IND;SG;3;PST
ko'tarib yurmoq V;SG;3;PRS
so'zlashmoq V;PRF;SBJV;SG;2;INFM;PRS
ma'qullamoq V;PROG;COND;PL;3;PRS
nafratlanmoq V;PROG;IND;PL;2;PRS
kemada suzmoq V;PRF+PROG;COND;SG;3;PRS
tanitmoq V;IND;PL;1;PST
aylantirmoq V;PROG;COND;SG;2;PRS
bezamoq V;PFV;FRML;IND;SG;2;PST
buzmoq V;PROG;IND;SG;3;FUT
uloqtirmoq V;PFV;FRML;IND;SG;2;PST
ko'chib ketmoq V;PFV;IND;PL;1;PST
yig'moq V;PRF+PROG;COND;PL;1;PRS
tortmoq V;PRF;SBJV;SG;2;INFM;PRS
ichmoq V;PROG;COND;SG;2;PRS
tanlamoq V;PROG;COND;PL;1;PRS
o'lmoq V;PFV;SBJV;PL;2;FUT
sakramoq V;IND;PL;2;PST
azob chekmoq V;PROG;IND;PL;2;FUT
yonmoq V;PFV;FH;SG;2
ezmoq V;PRF+PROG;COND;SG;1;PRS
eslamoq V;IND;PL;2;PST
yuvmoq V;PROG;IND;PL;3;PST
xursand bo'lmoq V;IND;SG;2;INFM;PST
aniqlamoq V;PROG;COND;SG;1;PRS
yozib olmoq V;PRF+PROG;COND;SG;2;INFM;PRS
taraqqiy etmoq V;SG;3;PRS
olib turmoq V;PROG;IND;PL;1;PRS
umid qilmoq V;PFV;IND;PL;3;PST
sug'ormoq V;PFV;FH;PL;3
savdo qilmoq V;COND;PL;1;PRS
eslamoq V;PROG;IND;PL;2;FUT
yutmoq V;FRML;SG;2;PRS
kuylamoq V;IND;SG;1;PST
pasaymoq V;PFV;FRML;IND;SG;2;PST
maslahat bermoq V;FRML;SBJV;SG;2;PRS
yuvmoq V;PFV;IND;PL;2;PST
tatib ko'rmoq V;SBJV;PL;1;PRS
oldini olmoq V;PRF;SBJV;SG;1;PRS
ichkariga kirmoq V;PRF+PROG;COND;SG;1;PRS
tinglamoq V;PROG;IND;SG;1;PST
zarar yetkazmoq V;PFV;SBJV;PL;3;FUT
mo'ralamoq V;PRF+PROG;COND;PL;2;PRS
horg'in his qilmoq V;COND;SG;2;INFM;PRS
g'ashini keltirmoq V;IND;PL;1;PST
asramoq V;PROG;COND;SG;3;PRS
ajratmoq V;COND;PL;1;PRS
xiyonat qilmoq V;PFV;SBJV;PL;3;FUT
uylamoq V;PROG;IND;SG;1;PRS
yolg'on gapirmoq V;SG;2;INFM;PRS
isrof qilmoq V;PFV;FRML;IND;SG;2;PST
ko'rmoq V;IND;PL;2;PST
o'rnashmoq V;IND;SG;2;INFM;PST
tekshirmoq V;PROG;IND;SG;2;INFM;FUT
xo'mraymoq V;IND;SG;3;PST
yo'talmoq V;PROG;FRML;IND;SG;2;PRS
tarjima qilmoq V;PFV;SBJV;PL;2;FUT
tanlamoq V;PRF+PROG;COND;SG;3;PRS
mahkum qilmoq V;PFV;FH;PL;1
ajrashmoq V;PFV;FH;SG;3
haydamoq V;PFV;SBJV;SG;2;INFM;FUT
aldamoq V;PL;3;PRS
o'rganmoq V;PFV;FH;PL;1
sanamoq V;PROG;IND;SG;2;INFM;PST
emaklamoq V;SG;2;INFM;PRS
maslahat bermoq V;PROG;IND;SG;1;FUT
ishonmoq V;PFV;IND;PL;2;PST
yurmoq V;PROG;IND;SG;2;INFM;PRS
tan olmoq V;PROG;FRML;IND;SG;2;FUT
chetlashmoq V;PFV;FH;SG;3
azob chekmoq V;FRML;SG;2;PRS
bukmoq V;PROG;FRML;IND;SG;2;PST
o'ylamoq V;PFV;FH;SG;3
qo'lga olmoq V;PRF;SBJV;SG;2;INFM;PRS
xursand bo'lmoq V;PRF;SBJV;SG;2;INFM;PRS
javob bermoq V;PFV;SBJV;PL;2;FUT
buzilmoq V;PROG;COND;SG;1;PRS
yozib olmoq V;SBJV;SG;3;PRS
fikr yuritmoq V;PRF+PROG;COND;PL;3;PRS
o'zini tutmoq V;PROG;IND;SG;2;INFM;PST
tashakkur aytmoq V;PFV;FH;PL;3
olib tashlamoq V;PFV;FRML;IND;SG;2;PST
g'ashini keltirmoq V;PFV;FRML;IND;SG;2;PST
ishonqiramay turmoq V;PFV;FRML;IND;SG;2;PST
xursand bo'lmoq V;PFV;FH;PL;3
g'amgin his etmoq V;PFV;FH;SG;2
ajramoq V;COND;SG;2;INFM;PRS
yetaklamoq V;PFV;SBJV;SG;2;INFM;FUT
fikr yuritmoq V;PROG;IND;SG;3;PRS
taslim bo'lmoq V;PRF;FRML;SBJV;SG;2;PRS
sayohat qilmoq V;PROG;IND;SG;1;PRS
qaramoq V;FRML;COND;SG;2;PRS
sahnalashtirmoq V;COND;SG;3;PRS
muzlatmoq V;SG;3;PRS
sog'inmoq V;SBJV;SG;3;PRS
ma'qullamoq V;PFV;IND;SG;3;PST
o'ramoq V;PROG;IND;SG;3;FUT
rozi bo'lmoq V;COND;PL;2;PRS
unutmoq V;PROG;COND;PL;1;PRS
qarshilik ko'rsatmoq V;FRML;SG;2;PRS
hal qilmoq V;PROG;IND;SG;1;PRS
faxrlanmoq V;PRF+PROG;COND;SG;1;PRS
qo'riqlamoq V;IND;PL;1;PST
buzilmoq V;IND;PL;2;PST
o'rgatmoq V;PROG;IND;PL;1;PST
tanitmoq V;PRF;SBJV;SG;3;PRS
turmoq V;PL;1;PRS
reklama qilmoq V;PFV;FH;PL;2
istamoq V;PFV;IND;PL;3;PST
umid qilmoq V;PRF+PROG;COND;PL;3;PRS
quvmoq V;PROG;IND;SG;1;PRS
ogohlantirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
yordam bermoq V;IND;PL;3;PST
ajramoq V;PROG;IND;SG;2;INFM;PST
yopishmoq V;COND;SG;1;PRS
yig'lamoq V;PROG;FRML;IND;SG;2;PRS
la'natlamoq V;PRF;SBJV;SG;2;INFM;PRS
horg'in his qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
sotib olmoq V;IND;PL;3;PST
yutmoq V;FRML;COND;SG;2;PRS
bo'shatmoq V;SG;1;PRS
yubormoq V;PRF+PROG;COND;SG;3;PRS
yasamoq V;PFV;FH;PL;1
chizmoq V;PROG;IND;PL;2;PST
aniqlamoq V;PFV;SBJV;SG;1;FUT
to'g'ramoq V;PROG;IND;PL;1;FUT
taslim bo'lmoq V;PRF;SBJV;SG;2;INFM;PRS
afzal ko'rmoq V;PFV;SBJV;PL;1;FUT
duo qilmoq V;PROG;FRML;IND;SG;2;FUT
o'xshamoq V;PFV;SBJV;SG;1;FUT
o'zini tutmoq V;PROG;IND;SG;2;INFM;FUT
mug'ombirlik qilmoq V;PRF;SBJV;PL;2;PRS
tug'moq V;PFV;IND;SG;3;PST
o'qimoq V;PROG;IND;PL;3;FUT
kutmoq V;FRML;IND;SG;2;PST
bo'yatmoq V;FRML;IND;SG;2;PST
sarflamoq V;SG;1;PRS
qizq'anmoq V;PFV;FH;PL;2
yetilmoq V;PROG;IND;PL;3;PST
qo'llamoq V;PFV;SBJV;PL;2;FUT
dazmollamoq V;PRF+PROG;COND;PL;1;PRS
kechirmoq V;PFV;IND;PL;1;PST
kezmoq V;PL;3;PRS
dazmollamoq V;PFV;SBJV;PL;2;FUT
sog'inmoq V;PROG;IND;PL;1;PRS
rozi bo'lmoq V;PROG;IND;SG;2;INFM;PST
ishga olmoq V;SG;3;PRS
uchmoq V;PROG;COND;PL;3;PRS
baqirmoq V;COND;PL;1;PRS
o'rnashmoq V;PROG;IND;PL;2;PRS
ko'ndirmoq V;PFV;FH;SG;1
qilmoq V;SG;1;PRS
bo'yamoq V;PROG;IND;SG;1;PST
uzanmoq V;PFV;SBJV;SG;2;INFM;FUT
ko'zdan kechirmoq V;PROG;COND;SG;3;PRS
yozib olmoq V;PFV;FH;SG;1
jondan suymoq V;IND;PL;3;PST
chizmoq V;COND;PL;3;PRS
erishmoq V;PFV;IND;SG;1;PST
qizq'anmoq V;COND;SG;3;PRS
tortib olmoq V;PROG;COND;PL;3;PRS
ozor bermoq V;PRF+PROG;COND;PL;1;PRS
ajramoq V;PFV;IND;PL;3;PST
tushunib yetmoq V;IND;PL;2;PST
to'plamoq V;SG;2;INFM;PRS
tirishmoq V;SG;2;INFM;PRS
sayohat qilmoq V;PROG;FRML;IND;SG;2;FUT
qo'rqmoq V;PROG;FRML;IND;SG;2;PRS
topib olmoq V;PROG;IND;SG;1;PST
shoshilmoq V;PFV;SBJV;SG;1;FUT
topmoq V;FRML;SBJV;SG;2;PRS
taramoq V;PRF+PROG;COND;SG;1;PRS
yozib olmoq V;IND;PL;1;PST
yaralamoq V;PROG;IND;PL;2;PRS
taxlamoq V;PROG;IND;PL;2;PRS
qidirmoq V;SBJV;PL;2;PRS
yetishmoq V;PROG;IND;PL;2;FUT
chetlashmoq V;PROG;IND;SG;3;FUT
ko'tarmoq V;PL;3;PRS
ijozat bermoq V;PFV;SBJV;PL;2;FUT
tasvirlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
aytmoq V;PRF;FRML;SBJV;SG;2;PRS
olib tashlamoq V;PRF;SBJV;SG;3;PRS
turmoq V;PFV;FH;SG;3
kutmoq V;SBJV;SG;1;PRS
muomalada bo'lmoq V;PFV;IND;PL;1;PST
tugatmoq V;COND;SG;3;PRS
hayron qolmoq V;PFV;SBJV;PL;3;FUT
takrorlamoq V;IND;PL;2;PST
bo'shatmoq V;PRF;SBJV;PL;1;PRS
talaffuz qilmoq V;FRML;SG;2;PRS
qo'lga olmoq V;IND;SG;2;INFM;PST
o'zini tutmoq V;SG;1;PRS
sachratmoq V;SG;1;PRS
mazax qilmoq V;PFV;FH;SG;2
ozor bermoq V;PROG;IND;PL;3;PRS
o'lchamoq V;PFV;IND;SG;1;PST
o'ylamoq V;PROG;COND;PL;3;PRS
chalmoq V;PROG;COND;PL;3;PRS
bezovta qilmoq V;IND;PL;2;PST
chetlashmoq V;PROG;IND;SG;1;PST
qizq'anmoq V;PFV;SBJV;SG;1;FUT
tashakkur aytmoq V;PFV;IND;SG;3;PST
so'z bermoq V;SBJV;PL;3;PRS
talaffuz qilmoq V;PRF;SBJV;SG;1;PRS
yordam bermoq V;PL;3;PRS
qizq'anmoq V;PFV;IND;PL;2;PST
to'xtamga kelmoq V;PROG;FRML;IND;SG;2;PST
javob bermoq V;PRF;SBJV;SG;1;PRS
tashakkur aytmoq V;COND;PL;1;PRS
ishga olmoq V;COND;PL;2;PRS
qurmoq V;PRF;SBJV;PL;2;PRS
taklif qilmoq V;COND;PL;2;PRS
sanamoq V;PRF;SBJV;SG;2;INFM;PRS
sanamoq V;PROG;IND;PL;1;PRS
to'lamoq V;PRF;SBJV;SG;2;INFM;PRS
yugurmoq V;SBJV;SG;1;PRS
cho'kmoq V;PROG;IND;PL;3;FUT
suv qilib ichmoq V;SG;2;INFM;PRS
suv qilib ichmoq V;SG;3;PRS
tashakkur aytmoq V;PFV;FRML;SBJV;SG;2;FUT
yetilmoq V;PFV;FRML;IND;SG;2;PST
farqlamoq V;PFV;FH;SG;3
g'amgin his etmoq V;PRF+PROG;COND;SG;2;INFM;PRS
tavsiya etmoq V;PROG;IND;PL;2;FUT
sog'inmoq V;PFV;FH;PL;2
qo'llamoq V;PROG;IND;SG;1;FUT
tabriklamoq V;PROG;IND;SG;2;INFM;PRS
sog'inmoq V;PRF;SBJV;PL;2;PRS
pichirlamoq V;PFV;FH;SG;2
tashakkur aytmoq V;PROG;COND;SG;1;PRS
siljimoq V;PL;3;PRS
ishlatmoq V;PFV;FH;SG;3
yengillashtirmoq V;IND;SG;3;PST
yetilmoq V;PRF+PROG;COND;PL;2;PRS
tabriklamoq V;PROG;IND;PL;1;PST
tanishtirmoq V;FRML;COND;SG;2;PRS
ayblamoq V;PFV;FH;SG;3
bilmoq V;PFV;FH;SG;3
bastalamoq V;PFV;SBJV;PL;1;FUT
tanitmoq V;PROG;IND;PL;1;PST
uyg'otmoq V;PL;1;PRS
tushunib yetmoq V;FRML;IND;SG;2;PST
reja tuzmoq V;PROG;IND;PL;1;PRS
hayratlantirmoq V;FRML;COND;SG;2;PRS
shovqin solmoq V;PFV;SBJV;PL;3;FUT
o'g'irlab ketmoq V;COND;SG;1;PRS
tadqiq qilmoq V;PROG;IND;PL;3;FUT
yugurmoq V;PROG;IND;SG;2;INFM;PRS
ishontirmoq V;FRML;IND;SG;2;PST
boshlamoq V;PFV;FH;SG;2
bitirmoq V;PROG;IND;PL;1;PST
xursand bo'lmoq V;PFV;IND;PL;3;PST
sotmoq V;PROG;IND;PL;2;FUT
orzu qilmoq V;PROG;IND;PL;1;PST
chizmoq V;FRML;COND;SG;2;PRS
quvonmoq V;COND;SG;1;PRS
sezmoq V;PFV;IND;SG;1;PST
uzoqlashmoq V;PFV;SBJV;PL;2;FUT
so'kinmoq V;PROG;IND;SG;2;INFM;FUT
parchalamoq V;PFV;FH;SG;1
qidirmoq V;SBJV;PL;1;PRS
tinglamoq V;PROG;COND;SG;2;PRS
siqmoq V;PFV;IND;PL;3;PST
bezovta qilmoq V;PROG;FRML;IND;SG;2;PST
ko'zdan kechirmoq V;IND;SG;2;INFM;PST
uylamoq V;PROG;IND;SG;1;FUT
izlamoq V;PROG;IND;PL;3;PRS
yuvinmoq V;PFV;IND;PL;2;PST
so'ramoq V;PROG;IND;SG;2;INFM;PST
yengillashtirmoq V;COND;PL;2;PRS
sindirmoq V;PFV;SBJV;SG;2;INFM;FUT
katta bo'lmoq V;PFV;IND;SG;2;INFM;PST
pichirlamoq V;PROG;IND;SG;1;PRS
e'tibordan chetda qoldirmoq V;PL;3;PRS
artmoq V;FRML;IND;SG;2;PST
yondirmoq V;PL;3;PRS
o'ylamoq V;COND;SG;2;INFM;PRS
muzlatmoq V;PRF;SBJV;SG;2;INFM;PRS
dush qabul qilmoq V;PFV;SBJV;SG;2;INFM;FUT
o'pmoq V;PROG;IND;SG;2;INFM;PRS
tadqiq qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
chiqmoq V;PRF;SBJV;PL;1;PRS
bog'lamoq V;PFV;FH;PL;2
istamoq V;COND;PL;2;PRS
sarflamoq V;PFV;IND;SG;1;PST
qarshilantirmoq V;COND;PL;1;PRS
so'z bermoq V;PL;3;PRS
sanchmoq V;SG;3;PRS
buyurtma bermoq V;PROG;FRML;IND;SG;2;FUT
to'plamoq V;PROG;COND;PL;1;PRS
rivojlanmoq V;PRF;SBJV;PL;2;PRS
og'riqsizlantirmoq V;PRF+PROG;COND;PL;2;PRS
ta'kidlamoq V;PFV;SBJV;PL;1;FUT
yedirmoq V;PRF;SBJV;PL;2;PRS
ko'rsatmoq V;PRF+PROG;COND;SG;3;PRS
kirmoq V;PFV;SBJV;SG;1;FUT
o'lmoq V;PRF+PROG;COND;PL;2;PRS
esga solmoq V;PRF;SBJV;PL;3;PRS
o'tirmoq V;FRML;IND;SG;2;PST
yashirmoq V;PROG;FRML;IND;SG;2;PRS
pasaymoq V;COND;PL;1;PRS
sho'ng'imoq V;COND;PL;3;PRS
tanlamoq V;FRML;IND;SG;2;PST
o'ramoq V;PROG;IND;PL;1;PST
katta bo'lmoq V;PRF;SBJV;SG;3;PRS
dam olmoq V;PL;1;PRS
tikmoq V;IND;SG;2;INFM;PST
buzilmoq V;PFV;IND;PL;2;PST
ijozat bermoq V;SBJV;PL;1;PRS
qo'yib yubormoq V;PFV;IND;SG;3;PST
chiqarmoq V;PROG;IND;SG;3;PST
xafa qilmoq V;COND;SG;1;PRS
kerak bo'lmoq V;PFV;FRML;FH;SG;2
bezamoq V;PROG;IND;PL;2;FUT
jondan suymoq V;PL;3;PRS
to'lamoq V;PROG;IND;SG;2;INFM;FUT
qutqarmoq V;COND;SG;2;INFM;PRS
uyg'onmoq V;PROG;FRML;IND;SG;2;FUT
qo'llamoq V;PROG;FRML;IND;SG;2;FUT
o'zgartirmoq V;PRF+PROG;COND;SG;1;PRS
ishonmoq V;PRF+PROG;COND;SG;2;INFM;PRS
chaqmoq V;PFV;FH;PL;2
takror qo'ymoq V;PRF+PROG;FRML;COND;SG;2;PRS
uxlamoq V;PFV;FRML;FH;SG;2
yo'qotmoq V;PROG;IND;PL;2;PST
bog'lamoq V;PFV;FH;PL;3
yig'moq V;PRF;SBJV;SG;3;PRS
yutmoq V;PFV;IND;SG;2;INFM;PST
o'zgartirmoq V;PFV;FRML;FH;SG;2
yirtmoq V;SG;1;PRS
ko'ndirmoq V;PROG;IND;SG;1;PST
ta'minlamoq V;PROG;IND;PL;2;FUT
porlamoq V;PROG;IND;SG;2;INFM;FUT
davolamoq V;PROG;IND;SG;1;PST
yopishmoq V;FRML;SG;2;PRS
yashirmoq V;PROG;IND;PL;2;PST
farqlamoq V;PRF;SBJV;SG;1;PRS
javob bermoq V;SBJV;SG;1;PRS
xafa qilmoq V;PFV;SBJV;SG;1;FUT
boshlamoq V;PRF+PROG;COND;PL;2;PRS
takrorlamoq V;PROG;IND;SG;3;PRS
sabab bo'lmoq V;IND;PL;2;PST
turmoq V;PFV;SBJV;SG;1;FUT
ijaraga bermoq V;PFV;FRML;FH;SG;2
suzmoq V;PFV;IND;SG;2;INFM;PST
do'q qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
his qilmoq V;PRF;SBJV;PL;2;PRS
amin bo'lmoq V;IND;SG;1;PST
do'q qilmoq V;PFV;SBJV;PL;3;FUT
yoqtirmoq V;PFV;IND;PL;2;PST
kutmoq V;PROG;IND;PL;1;PST
taqiqlamoq V;COND;PL;3;PRS
o'lchamoq V;SG;1;PRS
vorislik qilmoq V;PROG;FRML;IND;SG;2;PRS
o'xshamoq V;PROG;FRML;IND;SG;2;PST
hisoblamoq V;PROG;COND;SG;1;PRS
qaramoq V;PFV;FH;PL;3
fikr yuritmoq V;PRF;SBJV;SG;3;PRS
kulmoq V;PROG;IND;PL;3;FUT
kiyinmoq V;PRF;SBJV;SG;2;INFM;PRS
rivojlanmoq V;PFV;SBJV;PL;2;FUT
qutqarmoq V;SG;2;INFM;PRS
ishontirmoq V;SG;2;INFM;PRS
kechiktirmoq V;PL;2;PRS
uloqtirmoq V;PFV;SBJV;SG;2;INFM;FUT
ko'rmoq V;PROG;IND;SG;3;FUT
yedirmoq V;SBJV;PL;2;PRS
o'tib ketmoq V;PRF+PROG;FRML;COND;SG;2;PRS
tatib ko'rmoq V;IND;PL;3;PST
o'g'irlamoq V;PROG;IND;PL;2;PST
yarashmoq V;PROG;IND;PL;3;FUT
urmoq V;SG;3;PRS
ishlab chiqarmoq V;PRF+PROG;COND;PL;1;PRS
ishontirmoq V;PFV;IND;PL;1;PST
yormoq V;COND;PL;2;PRS
yoqmoq V;PFV;SBJV;SG;3;FUT
gaplashmoq V;PFV;FRML;IND;SG;2;PST
fikr yuritmoq V;PROG;IND;PL;3;PST
buyruq bermoq V;PROG;IND;PL;2;PRS
quvmoq V;SG;3;PRS
to'smoq V;PROG;IND;SG;2;INFM;FUT
qutqarmoq V;PFV;FH;PL;1
tashakkur aytmoq V;PRF+PROG;COND;PL;1;PRS
tanlamoq V;PRF+PROG;COND;SG;1;PRS
tasvirlamoq V;FRML;SG;2;PRS
o'rab olmoq V;PFV;IND;PL;2;PST
uchrashmoq V;FRML;SBJV;SG;2;PRS
to'xtamga kelmoq V;PFV;SBJV;PL;3;FUT
pand bermoq V;PROG;IND;SG;2;INFM;PRS
demoq V;SG;1;PRS
tishlamoq V;PL;3;PRS
to'xtamga kelmoq V;PROG;IND;PL;2;PST
suv qilib ichmoq V;PROG;COND;SG;1;PRS
buzilmoq V;PL;3;PRS
och qolmoq V;PROG;COND;SG;3;PRS
ortidan bormoq V;COND;SG;2;INFM;PRS
uxlab qolmoq V;PROG;COND;SG;3;PRS
ta'minlamoq V;PROG;IND;SG;1;FUT
parchalamoq V;SG;1;PRS
to'lamoq V;PFV;FRML;IND;SG;2;PST
bastalamoq V;PRF;SBJV;PL;3;PRS
bo'shatmoq V;PFV;IND;SG;2;INFM;PST
ko'rishmoq V;PRF;SBJV;SG;3;PRS
horg'in his qilmoq V;COND;PL;1;PRS
qurmoq V;PROG;IND;PL;2;PST
tegmoq V;PROG;IND;PL;3;PST
o'tirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
taqiqlamoq V;FRML;SG;2;PRS
ishtirok etmoq V;PRF+PROG;COND;PL;3;PRS
jiringlamoq V;PROG;IND;SG;2;INFM;PRS
kirmoq V;PL;3;PRS
yopishmoq V;PL;1;PRS
yolg'on gapirmoq V;PROG;COND;PL;3;PRS
gaplashmoq V;COND;SG;3;PRS
ajramoq V;PFV;FH;SG;3
o'rganmoq V;PFV;FH;SG;1
dush qabul qilmoq V;COND;SG;2;INFM;PRS
izlamoq V;PFV;FH;PL;2
yetaklamoq V;PFV;FRML;SBJV;SG;2;FUT
tortib olmoq V;PROG;IND;PL;2;PRS
yig'lamoq V;PROG;IND;PL;1;PST
hayron qolmoq V;PRF+PROG;COND;SG;3;PRS
ishga olmoq V;PROG;FRML;IND;SG;2;PRS
eshitmoq V;PROG;IND;PL;3;FUT
ayb qo'ymoq V;PFV;FH;PL;3
sabab bo'lmoq V;PROG;FRML;IND;SG;2;FUT
chalmoq V;PL;1;PRS
hujum qilmoq V;SG;3;PRS
tortmoq V;PROG;IND;SG;3;PST
unashtirmoq V;PFV;FH;SG;1
muomalada bo'lmoq V;PROG;IND;PL;1;PST
tadqiq qilmoq V;PROG;IND;PL;3;PST
kirmoq V;PROG;COND;PL;3;PRS
haydamoq V;PFV;IND;PL;1;PST
kuylamoq V;FRML;COND;SG;2;PRS
muzlatmoq V;COND;SG;3;PRS
pastga tushmoq V;PROG;COND;SG;1;PRS
kechikmoq V;PROG;COND;SG;1;PRS
turmoq V;PROG;FRML;IND;SG;2;PRS
ko'rishmoq V;PROG;IND;SG;1;PST
inkor qilmoq V;PROG;COND;SG;3;PRS
quvmoq V;PFV;SBJV;SG;2;INFM;FUT
paydo bo'lmoq V;PROG;IND;SG;2;INFM;PST
his qilmoq V;PROG;IND;SG;3;FUT
hibsga olmoq V;PFV;FH;PL;2
mug'ombirlik qilmoq V;PRF+PROG;COND;SG;3;PRS
yonmoq V;PROG;IND;SG;3;PST
harakat qilib ko'rmoq V;PRF+PROG;COND;SG;1;PRS
qochmoq V;COND;SG;2;INFM;PRS
o'g'irlab ketmoq V;COND;PL;1;PRS
kirmoq V;PFV;SBJV;PL;1;FUT
taramoq V;PFV;FH;SG;2
olib tashlamoq V;PFV;SBJV;SG;2;INFM;FUT
yaqinlashmoq V;PRF;SBJV;SG;2;INFM;PRS
bekor qilmoq V;COND;SG;2;INFM;PRS
taslim bo'lmoq V;SG;1;PRS
o'rab olmoq V;IND;SG;2;INFM;PST
ishlamoq V;IND;PL;2;PST
bo'yanmoq V;PRF+PROG;COND;PL;1;PRS
o'rganmoq V;PRF+PROG;FRML;COND;SG;2;PRS
to'xtatmoq V;PFV;IND;PL;3;PST
langar tashlamoq V;PROG;IND;PL;2;PST
to'plamoq V;PRF+PROG;COND;PL;2;PRS
so'ramoq V;PROG;IND;PL;2;PRS
reklama qilmoq V;PRF;SBJV;PL;2;PRS
bezmoq V;PRF;SBJV;SG;1;PRS
asramoq V;PFV;IND;PL;1;PST
yashirmoq V;IND;SG;2;INFM;PST
boshqarmoq V;PROG;COND;SG;2;PRS
pasaymoq V;PFV;FH;SG;1
ishtirok etmoq V;PROG;IND;PL;2;PRS
qaror qabul qilmoq V;IND;PL;1;PST
sevib qolmoq V;PRF;SBJV;SG;3;PRS
katta qilmoq V;PRF+PROG;COND;PL;2;PRS
moslashmoq V;PROG;IND;PL;1;FUT
siqmoq V;PROG;IND;PL;2;PST
yopishmoq V;PFV;SBJV;PL;3;FUT
to'g'ramoq V;PROG;COND;SG;2;PRS
rozi bo'lmoq V;PFV;SBJV;SG;1;FUT
qo'lga olmoq V;PROG;COND;SG;3;PRS
o'ylamoq V;PROG;IND;SG;3;PRS
topmoq V;PROG;IND;SG;1;FUT
kirmoq V;PROG;IND;PL;1;PST
ijozat bermoq V;PRF+PROG;FRML;COND;SG;2;PRS
tabriklamoq V;PROG;COND;SG;2;PRS
ta'mirlamoq V;PRF;SBJV;SG;1;PRS
quvontirmoq V;PRF;SBJV;PL;3;PRS
qo'llamoq V;PROG;IND;SG;2;INFM;FUT
eshitmoq V;PROG;IND;PL;2;PRS
uyg'onmoq V;PFV;FH;PL;3
burmoq V;PFV;FRML;IND;SG;2;PST
ko'chib ketmoq V;PRF;SBJV;SG;2;INFM;PRS
ijozat bermoq V;PRF;SBJV;SG;3;PRS
yiqilmoq V;PFV;IND;PL;2;PST
o'ynamoq V;FRML;IND;SG;2;PST
xiyonat qilmoq V;PFV;SBJV;SG;3;FUT
hayratlantirmoq V;PFV;IND;PL;3;PST
osilmoq V;PROG;IND;SG;3;PRS
vaqtni isrof etmoq V;PROG;COND;SG;1;PRS
ishlatmoq V;IND;PL;1;PST
yurmoq V;SG;2;INFM;PRS
asramoq V;PROG;IND;SG;3;PRS
ichmoq V;PL;3;PRS
bitirmoq V;PROG;IND;PL;3;FUT
rivojlanmoq V;IND;PL;2;PST
ko'rsatmoq V;SG;1;PRS
ishlamoq V;PROG;COND;SG;3;PRS
suzmoq V;PRF+PROG;COND;SG;1;PRS
uyg'otmoq V;PROG;FRML;IND;SG;2;PST
hal qilmoq V;PROG;IND;SG;3;PRS
chiqmoq V;COND;PL;2;PRS
to'plab qo'ymoq V;PROG;IND;SG;2;INFM;FUT
sho'ng'imoq V;COND;PL;1;PRS
qaramoq V;PROG;FRML;IND;SG;2;PRS
aniqlamoq V;PRF+PROG;COND;PL;3;PRS
hujum qilmoq V;IND;PL;2;PST
ta'minlamoq V;IND;PL;3;PST
sanchmoq V;COND;SG;3;PRS
uchrashmoq V;PRF+PROG;COND;PL;1;PRS
chizmoq V;PROG;IND;SG;1;PST
talab qilmoq V;PROG;IND;PL;1;PRS
ogohlantirmoq V;PROG;IND;PL;1;PST
sindirmoq V;PROG;FRML;IND;SG;2;FUT
tavsiya etmoq V;PFV;FRML;IND;SG;2;PST
asabiylashtirmoq V;PROG;FRML;IND;SG;2;PST
baqirmoq V;PROG;IND;PL;1;PRS
uyalmoq V;COND;SG;2;INFM;PRS
demoq V;PROG;IND;SG;3;FUT
uxlab qolmoq V;PFV;IND;PL;1;PST
kemada suzmoq V;PFV;SBJV;SG;2;INFM;FUT
artmoq V;PFV;IND;PL;2;PST
tanitmoq V;PROG;COND;PL;3;PRS
kuchga kiritmoq V;IND;PL;3;PST
sarflamoq V;PROG;IND;PL;3;PRS
sayohat qilmoq V;PROG;IND;PL;1;PRS
tuzmoq V;PFV;IND;SG;1;PST
tagiga chizmoq V;PFV;SBJV;PL;2;FUT
yoqmoq V;SG;1;PRS
qadoqlamoq V;PRF+PROG;COND;SG;1;PRS
tagiga chizmoq V;SG;3;PRS
jondan suymoq V;PROG;COND;PL;1;PRS
topib olmoq V;SG;1;PRS
takrorlamoq V;PROG;IND;PL;3;PST
ayb qo'ymoq V;PFV;IND;PL;2;PST
yozmoq V;IND;PL;3;PST
harakat qilib ko'rmoq V;PFV;SBJV;SG;1;FUT
bitirmoq V;PROG;IND;PL;3;PRS
berib turmoq V;PRF;SBJV;PL;1;PRS
bezovta qilmoq V;PRF+PROG;COND;PL;1;PRS
isrof qilmoq V;SG;3;PRS
uxlab qolmoq V;PROG;IND;PL;2;PST
bo'shatmoq V;PROG;IND;SG;3;PRS
azob chekmoq V;PROG;COND;SG;2;PRS
tishlamoq V;SG;3;PRS
nolimoq V;PROG;COND;PL;3;PRS
archimoq V;PROG;IND;PL;2;PRS
amin bo'lmoq V;FRML;IND;SG;2;PST
qolmoq V;PL;3;PRS
kelmoq V;PROG;IND;SG;3;PST
sabab bo'lmoq V;FRML;IND;SG;2;PST
ishga olmoq V;PRF+PROG;COND;SG;1;PRS
ishontirmoq V;COND;SG;1;PRS
ishga olmoq V;PRF;SBJV;PL;2;PRS
faxrlanmoq V;PFV;IND;SG;3;PST
rivojlantirmoq V;COND;SG;3;PRS
o'g'irlamoq V;COND;SG;2;INFM;PRS
qolmoq V;IND;SG;3;PST
dush qabul qilmoq V;PROG;IND;PL;2;FUT
ozod etmoq V;IND;SG;3;PST
ta'mirlamoq V;PRF;SBJV;SG;2;INFM;PRS
ko'zdan kechirmoq V;PFV;FH;SG;1
qaramoq V;FRML;SG;2;PRS
to'kmoq V;PROG;FRML;IND;SG;2;PST
uloqtirmoq V;SG;1;PRS
so'zlashmoq V;IND;SG;1;PST
bezovta qilmoq V;PROG;IND;PL;3;PST
o'qimoq V;PROG;IND;PL;2;FUT
unashtirmoq V;PRF;FRML;SBJV;SG;2;PRS
yordam bermoq V;PFV;FH;SG;2
davolamoq V;COND;PL;2;PRS
iste'foga chiqmoq V;PFV;FRML;IND;SG;2;PST
izoh bermoq V;SG;1;PRS
aytmoq V;PROG;IND;PL;2;FUT
yemoq V;FRML;SBJV;SG;2;PRS
pushaymon bo'lmoq V;PRF;SBJV;PL;3;PRS
kuylamoq V;PFV;FH;PL;1
bahs poylamoq V;PROG;COND;SG;2;PRS
qimor o'ynamoq V;PROG;IND;SG;3;PRS
uxlamoq V;IND;PL;3;PST
harakat qilib ko'rmoq V;SBJV;PL;2;PRS
to'plab qo'ymoq V;COND;PL;2;PRS
to'kmoq V;IND;SG;3;PST
tarjima qilmoq V;PRF;SBJV;PL;2;PRS
uxlamoq V;IND;SG;3;PST
sanatmoq V;SBJV;SG;3;PRS
to'lamoq V;PROG;IND;PL;1;PST
rivojlanmoq V;PROG;IND;PL;3;PRS
xursand bo'lmoq V;SG;3;PRS
tirishmoq V;PRF+PROG;COND;SG;3;PRS
qaramoq V;PRF;SBJV;PL;1;PRS
supurmoq V;PFV;SBJV;SG;1;FUT
kutmoq V;PRF;SBJV;PL;1;PRS
duo qilmoq V;PROG;COND;PL;3;PRS
ma'lum qilmoq V;PRF+PROG;COND;SG;1;PRS
yuzlashmoq V;PROG;IND;PL;1;PRS
o'ramoq V;PFV;SBJV;SG;3;FUT
tadqiq qilmoq V;PL;2;PRS
o'ramoq V;PRF;SBJV;PL;1;PRS
muomalada bo'lmoq V;PROG;COND;SG;1;PRS
hal qilmoq V;COND;SG;3;PRS
o'rnatmoq V;PRF;FRML;SBJV;SG;2;PRS
ta'minlamoq V;PROG;COND;PL;3;PRS
shubhalanmoq V;PFV;FH;PL;2
bo'shatmoq V;PFV;FRML;IND;SG;2;PST
yordam bermoq V;PRF;SBJV;SG;3;PRS
ta'mirlamoq V;SG;1;PRS
o'rganmoq V;COND;PL;3;PRS
oldini olmoq V;PFV;SBJV;PL;3;FUT
ta'minlamoq V;PROG;IND;PL;3;FUT
tarjima qilmoq V;FRML;COND;SG;2;PRS
so'z bermoq V;PROG;IND;SG;3;PST
isrof qilmoq V;PROG;IND;SG;2;INFM;PST
qizq'anmoq V;FRML;COND;SG;2;PRS
yetilmoq V;PROG;IND;SG;2;INFM;PRS
rad etmoq V;PROG;IND;SG;2;INFM;FUT
topmoq V;PFV;IND;PL;2;PST
faxrlanmoq V;PFV;FH;SG;2
ishontirmoq V;PFV;IND;PL;3;PST
maslahat bermoq V;PROG;IND;SG;3;FUT
sanamoq V;COND;SG;1;PRS
sachratmoq V;PFV;IND;PL;2;PST
e'tibordan chetda qoldirmoq V;COND;SG;1;PRS
taklif qilmoq V;PROG;IND;SG;1;PRS
suv qilib ichmoq V;PROG;IND;PL;3;PRS
reklama qilmoq V;PRF;SBJV;SG;3;PRS
olib tashlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
siqmoq V;SG;1;PRS
pastga tushmoq V;PROG;IND;PL;3;PRS
taslim bo'lmoq V;COND;SG;3;PRS
narx turmoq V;FRML;COND;SG;2;PRS
mazax qilmoq V;PRF;SBJV;PL;3;PRS
surtmoq V;SBJV;SG;2;PRS
yopishmoq V;PROG;FRML;IND;SG;2;PRS
uylanmoq V;PROG;IND;PL;2;PST
bukchaymoq V;PFV;IND;SG;3;PST
porlamoq V;PRF;SBJV;PL;3;PRS
zarar yetkazmoq V;PFV;FH;SG;1
yotmoq V;PRF;FRML;SBJV;SG;2;PRS
boshqarmoq V;SBJV;SG;3;PRS
qayta olmoq V;SG;1;PRS
zarar yetkazmoq V;PRF;FRML;SBJV;SG;2;PRS
unashtirmoq V;PROG;IND;PL;3;PST
hijjalamoq V;PROG;IND;SG;3;PST
rivojlanmoq V;PFV;SBJV;PL;1;FUT
ko'tarib yurmoq V;PFV;SBJV;PL;1;FUT
asramoq V;PROG;COND;PL;3;PRS
imtihondan o'tmoq V;PFV;SBJV;SG;2;INFM;FUT
saqlamoq V;PL;1;PRS
iste'foga chiqmoq V;PROG;FRML;IND;SG;2;PRS
shoshmoq V;PFV;IND;SG;3;PST
taklif qilmoq V;PFV;FH;SG;2
yig'moq V;PROG;COND;PL;1;PRS
himoya qilmoq V;IND;SG;3;PST
ajrashmoq V;PRF+PROG;COND;SG;1;PRS
muhokama qilmoq V;PFV;IND;PL;1;PST
rivojlanmoq V;PFV;IND;PL;2;PST
mo'ralamoq V;PFV;IND;SG;2;INFM;PST
yordam bermoq V;IND;PL;2;PST
butamoq V;PRF+PROG;COND;PL;2;PRS
asramoq V;SG;2;INFM;PRS
aniqlamoq V;IND;SG;1;PST
qarshilantirmoq V;PRF+PROG;COND;PL;3;PRS
yiqitmoq V;PFV;FH;SG;3
keltirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
bilmoq V;PROG;IND;PL;2;FUT
reja tuzmoq V;PROG;COND;SG;3;PRS
uylamoq V;PROG;IND;SG;3;PST
qulflamoq V;COND;SG;3;PRS
ko'chmoq V;PFV;FH;PL;2
pand bermoq V;IND;SG;3;PST
yo'talmoq V;PROG;COND;SG;3;PRS
bilmoq V;PFV;FH;PL;2
tirishmoq V;PRF;SBJV;SG;2;INFM;PRS
g'amgin his etmoq V;PRF;SBJV;SG;2;INFM;PRS
ayb qo'ymoq V;PROG;IND;PL;2;FUT
bahs poylamoq V;PROG;IND;PL;1;FUT
bormoq V;SG;3;PRS
aniqlamoq V;PFV;FH;PL;2
qaramoq V;SBJV;SG;3;PRS
yetaklamoq V;PROG;IND;PL;3;FUT
ko'chmoq V;SBJV;PL;2;PRS
ko'tarmoq V;IND;SG;2;INFM;PST
qattiq yopmoq V;PFV;FRML;IND;SG;2;PST
buzilmoq V;PFV;FH;PL;1
ezmoq V;PROG;IND;SG;3;PST
to'kmoq V;SG;1;PRS
jiringlamoq V;PROG;COND;PL;1;PRS
o'ramoq V;SG;1;PRS
sevib qolmoq V;PFV;FH;PL;3
chang'i uchmoq V;IND;SG;3;PST
imtihondan o'tmoq V;PRF+PROG;COND;SG;3;PRS
yonmoq V;PROG;FRML;IND;SG;2;PRS
osmoq V;SBJV;SG;1;PRS
talab qilmoq V;PROG;IND;PL;3;PST
qo'yib yubormoq V;PROG;IND;PL;2;PRS
isrof qilmoq V;COND;PL;3;PRS
uchrashmoq V;PFV;SBJV;SG;2;INFM;FUT
o'z ichiga olmoq V;PL;2;PRS
yondirmoq V;IND;PL;3;PST
horg'in his qilmoq V;FRML;SG;2;PRS
topib olmoq V;PROG;IND;SG;2;INFM;PST
ajratmoq V;PFV;IND;SG;1;PST
qatl qilmoq V;PFV;FH;SG;1
sanchmoq V;PROG;FRML;IND;SG;2;PRS
osmoq V;PROG;IND;SG;2;INFM;FUT
boshqarmoq V;PRF+PROG;COND;PL;3;PRS
vaqtni isrof etmoq V;PL;3;PRS
bukmoq V;PFV;FH;PL;1
bekor qilmoq V;PRF;FRML;SBJV;SG;2;PRS
quvonmoq V;PFV;IND;PL;3;PST
yolg'on gapirmoq V;PFV;IND;SG;1;PST
katta bo'lmoq V;IND;SG;3;PST
ma'lum qilmoq V;PFV;SBJV;SG;2;INFM;FUT
yuvinmoq V;PROG;IND;PL;2;PST
davolamoq V;PFV;SBJV;SG;1;FUT
tinglamoq V;PFV;FH;SG;2
erishmoq V;FRML;COND;SG;2;PRS
tanitmoq V;PROG;IND;PL;2;FUT
reja tuzmoq V;PFV;IND;SG;1;PST
shamollatmoq V;PFV;SBJV;PL;3;FUT
g'amgin his etmoq V;PROG;IND;SG;2;INFM;PRS
davolamoq V;PROG;COND;PL;1;PRS
dam olmoq V;COND;SG;2;INFM;PRS
tanitmoq V;PFV;SBJV;SG;3;FUT
aytmoq V;COND;PL;1;PRS
so'ramoq V;COND;SG;3;PRS
yig'moq V;PRF+PROG;FRML;COND;SG;2;PRS
esga solmoq V;PFV;SBJV;SG;3;FUT
marinadlamoq V;PFV;SBJV;PL;2;FUT
izlamoq V;PFV;FRML;IND;SG;2;PST
so'zlashmoq V;PROG;IND;PL;2;PST
otmoq V;PRF+PROG;COND;PL;3;PRS
narx turmoq V;FRML;SG;2;PRS
vorislik qilmoq V;PRF+PROG;COND;SG;3;PRS
ovlamoq V;PFV;IND;PL;1;PST
to'plab qo'ymoq V;PROG;COND;SG;3;PRS
uylanmoq V;SG;1;PRS
og'riqsizlantirmoq V;PRF;FRML;SBJV;SG;2;PRS
yondirmoq V;SG;3;PRS
qaytmoq V;SBJV;SG;1;PRS
taklif qilmoq V;PFV;IND;SG;1;PST
yig'moq V;PROG;FRML;IND;SG;2;FUT
tadqiq qilmoq V;PROG;IND;SG;2;INFM;PRS
e'lon qilmoq V;PROG;IND;PL;2;PRS
yaralamoq V;PROG;IND;PL;1;FUT
silkimoq V;PRF+PROG;FRML;COND;SG;2;PRS
aytmoq V;PFV;SBJV;SG;2;INFM;FUT
sotib olmoq V;PROG;IND;SG;3;PRS
boshqarmoq V;PFV;IND;SG;1;PST
tinglamoq V;PFV;SBJV;SG;2;INFM;FUT
ishonmoq V;SG;3;PRS
osmoq V;PFV;SBJV;PL;2;FUT
topib olmoq V;PROG;COND;PL;1;PRS
tabriklamoq V;PRF+PROG;COND;PL;3;PRS
buyruq bermoq V;SBJV;PL;1;PRS
og'riqsizlantirmoq V;PROG;IND;SG;1;PRS
asabiylashtirmoq V;PROG;COND;PL;3;PRS
tushunmoq V;PRF;FRML;SBJV;SG;2;PRS
pishirmoq V;PROG;COND;SG;1;PRS
pushaymon bo'lmoq V;PROG;COND;PL;3;PRS
yopishmoq V;COND;PL;3;PRS
tegmoq V;COND;SG;2;INFM;PRS
parchalamoq V;COND;SG;2;INFM;PRS
unashtirmoq V;PROG;IND;SG;2;INFM;PST
o'pmoq V;PROG;IND;SG;2;INFM;PST
sotmoq V;PFV;FH;PL;1
talab qilmoq V;PROG;IND;SG;1;PST
to'plamoq V;IND;SG;3;PST
yashirmoq V;PL;3;PRS
katta bo'lmoq V;PRF;FRML;SBJV;SG;2;PRS
keltirmoq V;PFV;FH;SG;1
suzmoq V;PRF+PROG;COND;PL;1;PRS
ayblamoq V;PRF+PROG;COND;SG;1;PRS
davolamoq V;PFV;FRML;IND;SG;2;PST
reja tuzmoq V;PRF;SBJV;PL;2;PRS
to'xtamga kelmoq V;PRF;SBJV;PL;3;PRS
quvonmoq V;SBJV;PL;2;PRS
pishirmoq V;PFV;FH;SG;1
cho'kmoq V;PFV;SBJV;PL;3;FUT
qizq'anmoq V;PFV;FH;SG;3
uzr so'ramoq V;PROG;IND;PL;3;FUT
uxlamoq V;PROG;COND;PL;1;PRS
yormoq V;PROG;IND;SG;1;PST
e'lon qilmoq V;FRML;SG;2;PRS
tushmoq V;PROG;IND;PL;1;FUT
baqirmoq V;COND;SG;3;PRS
och qolmoq V;PROG;COND;SG;2;PRS
navbatda turmoq V;SBJV;PL;1;PRS
siljimoq V;PFV;IND;SG;3;PST
afzal ko'rmoq V;PRF+PROG;COND;SG;1;PRS
taxlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
bormoq V;SG;2;INFM;PRS
uloqtirmoq V;PROG;IND;PL;1;PST
o'g'irlab ketmoq V;PL;3;PRS
o'ynamoq V;PROG;COND;SG;1;PRS
paydo bo'lmoq V;PFV;FH;PL;3
uzr so'ramoq V;COND;SG;1;PRS
qo'llamoq V;SG;2;INFM;PRS
do'q qilmoq V;COND;PL;2;PRS
o'ramoq V;COND;PL;2;PRS
qo'rqitmoq V;PROG;IND;SG;2;INFM;PST
och qolmoq V;PROG;COND;PL;1;PRS
katta qilmoq V;FRML;IND;SG;2;PST
tarjima qilmoq V;COND;SG;2;INFM;PRS
uloqtirmoq V;IND;PL;2;PST
himoya qilmoq V;PFV;SBJV;SG;3;FUT
ortidan bormoq V;PROG;IND;SG;2;INFM;PST
mahkum qilmoq V;PROG;IND;SG;3;FUT
kuymoq V;PROG;IND;PL;2;PST
kuylamoq V;PROG;FRML;COND;SG;2;PRS
oldini olmoq V;SBJV;SG;1;PRS
so'ramoq V;PFV;IND;SG;3;PST
o'g'irlamoq V;PROG;IND;PL;1;FUT
paydo bo'lmoq V;FRML;COND;SG;2;PRS
o'tib ketmoq V;IND;SG;3;PST
sho'ng'imoq V;PFV;SBJV;SG;2;INFM;FUT
yasamoq V;PFV;FH;SG;3
tashkil qilmoq V;PFV;IND;PL;2;PST
kelmoq V;PRF;SBJV;PL;3;PRS
ko'tarib yurmoq V;PFV;IND;SG;3;PST
kerak bo'lmoq V;PROG;IND;PL;1;PST
o'tirmoq V;IND;PL;2;PST
hal qilmoq V;IND;SG;2;INFM;PST
tikmoq V;PFV;FH;PL;2
azob chekmoq V;IND;PL;1;PST
bo'yatmoq V;PROG;IND;SG;3;PRS
bilmoq V;PRF+PROG;COND;SG;3;PRS
xiyonat qilmoq V;SG;2;INFM;PRS
rad etmoq V;PROG;IND;SG;2;INFM;PST
ochmoq V;PFV;FH;PL;2
yiqilmoq V;PFV;SBJV;PL;2;FUT
o'zini tutmoq V;PROG;FRML;IND;SG;2;FUT
tavsiya qilmoq V;PFV;IND;PL;1;PST
taramoq V;PROG;COND;PL;2;PRS
o'lchamoq V;PROG;FRML;IND;SG;2;PRS
chiqarmoq V;PFV;FH;PL;1
yetmoq V;PRF;SBJV;SG;1;PRS
og'riqsizlantirmoq V;IND;SG;1;PST
kiyinmoq V;PFV;SBJV;SG;1;FUT
urmoq V;FRML;COND;SG;2;PRS
qidirmoq V;PRF;SBJV;PL;1;PRS
bukmoq V;PRF+PROG;FRML;COND;SG;2;PRS
to'smoq V;PRF+PROG;FRML;COND;SG;2;PRS
kiyinmoq V;PROG;FRML;IND;SG;2;PRS
quvontirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
imtihondan o'tmoq V;PFV;IND;SG;1;PST
o'ramoq V;PROG;IND;SG;2;INFM;PST
ishlab chiqarmoq V;PRF;SBJV;SG;2;INFM;PRS
tugatmoq V;PFV;FRML;SBJV;SG;2;FUT
kelmoq V;SBJV;PL;2;PRS
asabiylashtirmoq V;COND;PL;2;PRS
isrof qilmoq V;SG;1;PRS
yoqtirmoq V;IND;SG;3;PST
bog'lamoq V;PRF+PROG;COND;SG;1;PRS
yotmoq V;PFV;FH;PL;3
yuvinmoq V;PFV;IND;PL;3;PST
rivojlanmoq V;SG;3;PRS
davom etmoq V;PFV;SBJV;PL;3;FUT
ko'rishmoq V;FRML;SG;2;PRS
zabt etmoq V;PFV;IND;SG;2;INFM;PST
yaratmoq V;PFV;IND;PL;3;PST
faxrlanmoq V;PROG;IND;PL;2;PRS
eshitmoq V;SG;2;INFM;PRS
sotmoq V;PRF+PROG;COND;SG;3;PRS
chizmoq V;PFV;SBJV;SG;1;FUT
saqlamoq V;PRF;SBJV;SG;3;PRS
yo'talmoq V;PFV;FH;SG;3
yozmoq V;PRF+PROG;COND;PL;1;PRS
ijozat bermoq V;PRF+PROG;COND;SG;3;PRS
uxlamoq V;PROG;IND;PL;2;PRS
unashtirmoq V;PRF;SBJV;SG;1;PRS
shamollatmoq V;PROG;IND;SG;1;PRS
tozalamoq V;IND;PL;1;PST
umid qilmoq V;PROG;IND;SG;2;INFM;PST
his qilmoq V;FRML;IND;SG;2;PST
ishlatmoq V;PFV;FRML;SBJV;SG;2;FUT
quvontirmoq V;PFV;SBJV;PL;2;FUT
ochmoq V;SG;1;PRS
yetkazmoq V;COND;PL;3;PRS
kutmoq V;PFV;FH;PL;2
qaror qabul qilmoq V;PROG;IND;SG;2;INFM;FUT
yopishmoq V;PROG;IND;SG;2;INFM;PRS
pushaymon bo'lmoq V;PROG;IND;PL;1;PST
pichirlamoq V;PROG;IND;SG;3;PRS
chizmoq V;IND;PL;1;PST
yaratmoq V;SG;3;PRS
yoqmoq V;PL;2;PRS
kechikmoq V;PRF;SBJV;PL;2;PRS
ichkariga kirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
olmoq V;PRF+PROG;COND;SG;2;INFM;PRS
zabt etmoq V;PFV;FRML;IND;SG;2;PST
butamoq V;PROG;COND;PL;3;PRS
gaplashmoq V;PL;2;PRS
ogohlantirmoq V;PFV;FH;PL;1
eslamoq V;PFV;SBJV;SG;2;INFM;FUT
suyanmoq V;PFV;SBJV;SG;1;FUT
ishtirok etmoq V;PFV;FRML;FH;SG;2
bekor qilmoq V;PL;1;PRS
yiqitmoq V;COND;PL;2;PRS
vaqtni isrof etmoq V;PROG;IND;PL;3;PST
yemoq V;PFV;SBJV;PL;3;FUT
o'g'irlamoq V;FRML;SG;2;PRS
turmoq V;PROG;COND;PL;1;PRS
tiqmoq V;PROG;IND;SG;1;FUT
uzanmoq V;COND;PL;3;PRS
qo'lga tushirmoq V;PFV;SBJV;PL;3;FUT
yozib olmoq V;FRML;IND;SG;2;PST
asramoq V;PROG;IND;SG;1;PRS
yetilmoq V;FRML;IND;SG;2;PST
yirtmoq V;PROG;IND;PL;3;PRS
quymoq V;SBJV;SG;3;PRS
burmoq V;PRF+PROG;COND;PL;2;PRS
xo'mraymoq V;SG;3;PRS
qochmoq V;PRF+PROG;COND;PL;2;PRS
kechiktirmoq V;PFV;IND;SG;3;PST
yashirmoq V;SG;3;PRS
ishlatmoq V;PROG;IND;SG;1;PRS
qo'rqmoq V;PRF+PROG;COND;SG;2;INFM;PRS
og'riqsizlantirmoq V;PRF;SBJV;PL;2;PRS
shovqin solmoq V;PRF+PROG;COND;PL;1;PRS
bog'lamoq V;PFV;SBJV;PL;2;FUT
bezamoq V;SG;1;PRS
moslashmoq V;PROG;IND;PL;3;PST
qo'llamoq V;COND;PL;1;PRS
o'rganmoq V;PRF;SBJV;PL;2;PRS
bahs poylamoq V;PRF+PROG;COND;SG;3;PRS
kechirmoq V;PFV;SBJV;SG;1;FUT
tarjima qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
tikilmoq V;PROG;IND;SG;1;PRS
berib turmoq V;PL;3;PRS
mo'ralamoq V;PROG;COND;SG;2;PRS
tutmoq V;PRF+PROG;COND;PL;3;PRS
ma'lum qilmoq V;PRF;FRML;SBJV;SG;2;PRS
yetilmoq V;COND;PL;1;PRS
yormoq V;SBJV;SG;3;PRS
dush qabul qilmoq V;PRF;SBJV;PL;1;PRS
taramoq V;PL;2;PRS
nafratlanmoq V;PROG;IND;PL;1;FUT
ishonmoq V;PROG;IND;PL;1;FUT
uchirmoq V;PROG;IND;SG;3;PRS
javob bermoq V;PFV;FH;PL;3
emaklamoq V;COND;SG;2;INFM;PRS
ishtirok etmoq V;PROG;IND;PL;1;PRS
uxlamoq V;PL;1;PRS
tan olmoq V;PFV;SBJV;PL;3;FUT
qilmoq V;PROG;IND;PL;3;PRS
uxlamoq V;PL;2;PRS
tugatmoq V;PRF+PROG;COND;SG;3;PRS
ezmoq V;IND;PL;3;PST
sevib qolmoq V;PROG;IND;PL;3;PST
tanitmoq V;PROG;IND;PL;2;PRS
ajramoq V;PFV;SBJV;PL;3;FUT
yolg'on gapirmoq V;PROG;IND;SG;1;PRS
o'qimoq V;PRF;FRML;SBJV;SG;2;PRS
shug'ullanmoq V;PROG;IND;PL;1;PST
o'rganmoq V;PRF+PROG;COND;SG;1;PRS
qo'rqmoq V;PFV;FH;PL;2
chopmoq V;PFV;FH;SG;3
tadqiq qilmoq V;PFV;IND;SG;3;PST
ishlatmoq V;PROG;IND;PL;2;FUT
qo'lga tushirmoq V;COND;PL;3;PRS
uchrashmoq V;PRF+PROG;COND;SG;2;INFM;PRS
sabab bo'lmoq V;PROG;COND;SG;3;PRS
hibsga olmoq V;COND;PL;2;PRS
fikr yuritmoq V;PFV;SBJV;SG;1;FUT
topmoq V;PRF+PROG;COND;SG;2;INFM;PRS
gapirmoq V;COND;SG;1;PRS
ishonmoq V;PROG;FRML;IND;SG;2;PRS
fikr yuritmoq V;PFV;FH;SG;1
buyruq bermoq V;PROG;IND;SG;2;INFM;PST
yonmoq V;PRF;SBJV;PL;1;PRS
qo'riqlamoq V;PFV;FH;PL;1
sezmoq V;SBJV;SG;3;PRS
qimor o'ynamoq V;PRF+PROG;COND;SG;3;PRS
tortib olmoq V;PROG;FRML;IND;SG;2;PRS
urmoq V;FRML;SBJV;SG;2;PRS
pichirlamoq V;PROG;IND;SG;2;INFM;PRS
ma'lum qilmoq V;COND;SG;3;PRS
tashakkur aytmoq V;SG;3;PRS
aldamoq V;COND;PL;1;PRS
vaqtni isrof etmoq V;PFV;IND;SG;3;PST
kirmoq V;PROG;COND;SG;3;PRS
to'xtatmoq V;PRF+PROG;FRML;COND;SG;2;PRS
ajrashmoq V;COND;PL;3;PRS
yasamoq V;PFV;SBJV;SG;1;FUT
sindirmoq V;PROG;IND;PL;1;PST
tagiga chizmoq V;PRF;FRML;SBJV;SG;2;PRS
kuchga kiritmoq V;PRF;SBJV;SG;2;INFM;PRS
tanitmoq V;PROG;IND;PL;1;PRS
kirmoq V;PROG;IND;PL;3;PRS
supurmoq V;PROG;IND;SG;3;FUT
ma'qullamoq V;PROG;FRML;IND;SG;2;PRS
bukchaymoq V;PROG;IND;SG;2;INFM;FUT
o'ramoq V;PFV;IND;SG;2;INFM;PST
ta'mirlamoq V;IND;SG;1;PST
yig'lamoq V;IND;SG;2;INFM;PST
quymoq V;PFV;FH;SG;1
so'z bermoq V;PROG;IND;PL;1;PST
ko'zdan kechirmoq V;PFV;FH;PL;1
kiyinmoq V;PROG;IND;PL;1;PRS
qayta olmoq V;IND;SG;2;INFM;PST
gaplashmoq V;PRF;SBJV;PL;3;PRS
hukm qilmoq V;IND;SG;2;INFM;PST
uyg'otmoq V;PRF;SBJV;SG;1;PRS
to'plamoq V;PROG;IND;PL;2;FUT
to'xtamga kelmoq V;COND;SG;1;PRS
moslashmoq V;PROG;IND;PL;3;FUT
sakramoq V;PROG;IND;PL;1;FUT
og'riqsizlantirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
sotmoq V;FRML;SBJV;SG;2;PRS
rozi bo'lmoq V;PFV;FH;SG;2
yengillashtirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
sog'inmoq V;PRF+PROG;COND;PL;3;PRS
umid qilmoq V;PRF;SBJV;PL;3;PRS
tushmoq V;IND;SG;3;PST
ogohlantirmoq V;PFV;IND;SG;2;INFM;PST
pishirmoq V;PRF;SBJV;SG;3;PRS
yig'moq V;PROG;IND;PL;2;PRS
ko'rmoq V;PRF+PROG;COND;SG;1;PRS
sho'ng'imoq V;PFV;FRML;SBJV;SG;2;FUT
topmoq V;PL;2;PRS
asramoq V;PROG;IND;SG;2;INFM;PST
uloqtirmoq V;PFV;IND;PL;3;PST
yotmoq V;PFV;FH;PL;1
marinadlamoq V;PFV;SBJV;PL;1;FUT
o'rgatmoq V;PRF+PROG;COND;PL;2;PRS
o'qimoq V;PFV;FH;SG;3
aylantirmoq V;PFV;FH;SG;2
yuklamoq V;PFV;FH;PL;2
quvontirmoq V;COND;PL;2;PRS
do'q qilmoq V;PFV;SBJV;PL;2;FUT
xiyonat qilmoq V;PROG;IND;SG;1;FUT
qochmoq V;PROG;COND;PL;1;PRS
qarshilik ko'rsatmoq V;PROG;COND;SG;2;PRS
xursand bo'lmoq V;IND;SG;3;PST
tadqiq qilmoq V;COND;PL;2;PRS
shug'ullanmoq V;PROG;IND;SG;1;PRS
tanishtirmoq V;PROG;COND;SG;3;PRS
ko'tarib yurmoq V;PROG;IND;PL;1;PRS
tegmoq V;PRF;SBJV;PL;1;PRS
o'tmoq V;PROG;COND;PL;3;PRS
azob chekmoq V;SG;1;PRS
o'tlatmoq V;FRML;COND;SG;2;PRS
eshitmoq V;PFV;SBJV;PL;1;FUT
e'lon qilmoq V;PROG;IND;SG;2;INFM;FUT
o'chirmoq V;PROG;IND;PL;3;PST
yarashmoq V;SG;1;PRS
topmoq V;PROG;IND;PL;1;PST
parchalamoq V;COND;PL;3;PRS
og'riqsizlantirmoq V;PROG;FRML;IND;SG;2;FUT
tatib ko'rmoq V;PRF;SBJV;SG;2;INFM;PRS
ko'tarib yurmoq V;PROG;IND;SG;3;FUT
ishtirok etmoq V;PROG;COND;SG;3;PRS
ozor bermoq V;COND;SG;1;PRS
o'lmoq V;PRF+PROG;COND;SG;2;INFM;PRS
yashirmoq V;IND;SG;1;PST
boshlamoq V;COND;SG;1;PRS
to'xtamga kelmoq V;PRF+PROG;COND;PL;3;PRS
quymoq V;PL;1;PRS
och qolmoq V;COND;PL;2;PRS
yedirmoq V;PROG;COND;SG;2;PRS
sanatmoq V;PROG;COND;PL;3;PRS
yuvinmoq V;PROG;IND;SG;1;FUT
archimoq V;PROG;IND;PL;3;PST
vorislik qilmoq V;PROG;IND;PL;1;FUT
yig'moq V;PROG;IND;SG;3;PST
oldini olmoq V;PFV;IND;PL;3;PST
o'lmoq V;FRML;COND;SG;2;PRS
qurmoq V;PRF;SBJV;PL;1;PRS
sabab bo'lmoq V;PFV;FH;SG;1
orzu qilmoq V;PFV;SBJV;PL;3;FUT
mo'ralamoq V;IND;SG;2;INFM;PST
shamollatmoq V;COND;SG;1;PRS
la'natlamoq V;PFV;SBJV;PL;2;FUT
kelmoq V;IND;PL;3;PST
qayta olmoq V;FRML;SBJV;SG;2;PRS
ajratmoq V;PROG;FRML;IND;SG;2;PST
taraqqiy etmoq V;PL;3;PRS
xursand bo'lmoq V;PROG;IND;PL;2;PST
ajrashmoq V;PRF;SBJV;SG;3;PRS
kesmoq V;PL;2;PRS
qadoqlamoq V;PROG;IND;SG;3;PRS
suyanmoq V;PFV;SBJV;PL;1;FUT
qo'yib yubormoq V;PFV;IND;SG;2;INFM;PST
g'amgin his etmoq V;PROG;IND;PL;1;FUT
bilmoq V;PROG;IND;PL;3;PRS
bermoq V;SBJV;SG;3;PRS
navbatda turmoq V;SBJV;SG;1;PRS
hayratlantirmoq V;PROG;IND;SG;1;PRS
qo'llamoq V;PROG;IND;SG;1;PRS
orzu qilmoq V;PL;3;PRS
qo'lga tushirmoq V;PFV;FH;SG;1
moslashmoq V;PROG;IND;PL;3;PRS
bog'lamoq V;PROG;IND;PL;1;PST
qayta olmoq V;PROG;IND;PL;3;PST
ishlamoq V;IND;SG;3;PST
sarflamoq V;PFV;SBJV;PL;2;FUT
faxrlanmoq V;PRF+PROG;COND;SG;3;PRS
jondan suymoq V;PFV;FRML;SBJV;SG;2;FUT
sahnalashtirmoq V;PFV;SBJV;SG;3;FUT
sanamoq V;PFV;FRML;FH;SG;2
yormoq V;IND;SG;2;INFM;PST
buzmoq V;PRF;SBJV;PL;3;PRS
kerak bo'lmoq V;FRML;IND;SG;2;PST
uxlab qolmoq V;PL;3;PRS
kuymoq V;PRF+PROG;FRML;COND;SG;2;PRS
o'g'irlab ketmoq V;FRML;COND;SG;2;PRS
chekmoq V;COND;SG;1;PRS
narx turmoq V;PL;2;PRS
do'q qilmoq V;FRML;COND;SG;2;PRS
maslahat bermoq V;PRF;SBJV;SG;2;INFM;PRS
uloqtirmoq V;PROG;IND;PL;2;FUT
yozmoq V;PROG;IND;SG;1;FUT
ishontirmoq V;PFV;FH;SG;1
langar tashlamoq V;PROG;FRML;IND;SG;2;PRS
ketmoq V;IND;SG;1;PST
cho'kmoq V;PROG;COND;PL;3;PRS
azob chekmoq V;PROG;IND;SG;3;PRS
orzu qilmoq V;PFV;SBJV;PL;1;FUT
supurmoq V;PFV;IND;SG;1;PST
taraqqiy etmoq V;PFV;FRML;SBJV;SG;2;FUT
bermoq V;PROG;IND;SG;3;FUT
ko'rishmoq V;COND;PL;2;PRS
yormoq V;PROG;IND;SG;3;PRS
kechikmoq V;PL;3;PRS
eslamoq V;PFV;SBJV;PL;3;FUT
g'amgin his etmoq V;PROG;IND;SG;1;PST
yig'moq V;PROG;IND;SG;3;PRS
yetkazmoq V;PRF;SBJV;PL;1;PRS
suv qilib ichmoq V;PFV;FRML;IND;SG;2;PST
quvontirmoq V;PROG;IND;SG;1;PST
taklif qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
intizorlik bilan kutmoq V;PRF+PROG;FRML;COND;SG;2;PRS
otmoq V;PROG;IND;SG;3;PRS
yaralamoq V;PROG;IND;PL;3;PRS
yuvmoq V;COND;PL;3;PRS
ko'chmoq V;PROG;IND;SG;1;PRS
tarjima qilmoq V;COND;PL;1;PRS
hijjalamoq V;PROG;FRML;IND;SG;2;FUT
mahkum qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
izoh bermoq V;PRF;SBJV;PL;2;PRS
shamollamoq V;PRF;SBJV;PL;1;PRS
tikilmoq V;PRF;SBJV;SG;2;INFM;PRS
marinadlamoq V;COND;PL;2;PRS
tagiga chizmoq V;SG;1;PRS
suyanmoq V;PROG;IND;SG;3;PST
tishlamoq V;PROG;IND;PL;3;PRS
qaror qabul qilmoq V;PROG;COND;PL;1;PRS
sahnalashtirmoq V;PFV;FH;SG;3
yutmoq V;PRF+PROG;COND;PL;1;PRS
izlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
tatib ko'rmoq V;SBJV;SG;1;PRS
kerak bo'lmoq V;PROG;IND;PL;2;FUT
tiqmoq V;PFV;FH;SG;2
uloqtirmoq V;PRF+PROG;COND;SG;3;PRS
to'smoq V;PFV;FRML;SBJV;SG;2;FUT
o'tmoq V;IND;SG;1;PST
uchrashmoq V;PFV;SBJV;PL;2;FUT
ozor bermoq V;FRML;IND;SG;2;PST
yashamoq V;PFV;FH;SG;2
ketmoq V;IND;SG;3;PST
bekor qilmoq V;PL;2;PRS
sog'inmoq V;PRF;SBJV;SG;3;PRS
o'tirmoq V;COND;SG;3;PRS
tuzmoq V;PFV;FH;SG;1
bo'yanmoq V;PRF;SBJV;SG;1;PRS
tanlamoq V;PFV;FH;PL;3
yozib olmoq V;COND;PL;2;PRS
dush qabul qilmoq V;SG;1;PRS
bezovta qilmoq V;PROG;COND;SG;2;PRS
ogohlantirmoq V;PROG;IND;PL;1;PRS
zabt etmoq V;COND;SG;3;PRS
fikr yuritmoq V;PFV;IND;PL;3;PST
kechikmoq V;IND;PL;1;PST
chekmoq V;PL;1;PRS
tishlamoq V;PFV;IND;SG;2;INFM;PST
intervyu olmoq V;SBJV;SG;3;PRS
ta'kidlamoq V;FRML;COND;SG;2;PRS
turmoq V;PRF;SBJV;SG;2;INFM;PRS
yuzlashmoq V;PROG;IND;PL;3;PRS
bashorat qilmoq V;PFV;FRML;FH;SG;2
to'xtamga kelmoq V;PROG;COND;SG;2;PRS
surtmoq V;SG;1;PRS
kezmoq V;PROG;IND;SG;2;INFM;PRS
yaratmoq V;PROG;COND;PL;3;PRS
charchamoq V;FRML;SG;2;PRS
burmoq V;PFV;FH;PL;1
rivojlanmoq V;PROG;IND;SG;1;FUT
urmoq V;PFV;FRML;IND;SG;2;PST
pullamoq V;SBJV;PL;3;PRS
to'g'ramoq V;PROG;FRML;IND;SG;2;PRS
ijaraga bermoq V;PRF;FRML;SBJV;SG;2;PRS
marinadlamoq V;COND;SG;1;PRS
so'kinmoq V;PFV;IND;PL;2;PST
bekor qilmoq V;FRML;IND;SG;2;PST
hukm qilmoq V;PRF;SBJV;PL;3;PRS
bo'yatmoq V;PRF;SBJV;SG;1;PRS
unashtirmoq V;FRML;COND;SG;2;PRS
yuvinmoq V;PFV;SBJV;PL;2;FUT
shoshilmoq V;PROG;IND;PL;3;FUT
butamoq V;PFV;FRML;IND;SG;2;PST
talaffuz qilmoq V;PROG;FRML;IND;SG;2;PST
hibsga olmoq V;PROG;FRML;IND;SG;2;PST
ayb qo'ymoq V;PFV;SBJV;SG;2;INFM;FUT
bastalamoq V;PROG;IND;PL;1;PST
silkimoq V;PFV;FRML;FH;SG;2
izoh bermoq V;PFV;FH;PL;2
sho'ng'imoq V;PFV;IND;PL;1;PST
pasaymoq V;COND;SG;1;PRS
yo'qolmoq V;PROG;FRML;IND;SG;2;PRS
imtihondan o'tmoq V;IND;SG;1;PST
asramoq V;PROG;IND;PL;1;PST
turmoq V;PRF+PROG;COND;SG;1;PRS
baqirmoq V;PFV;SBJV;PL;2;FUT
erishmoq V;PRF;SBJV;SG;1;PRS
uloqtirmoq V;COND;PL;3;PRS
yiqitmoq V;PROG;COND;SG;3;PRS
uchirmoq V;PRF;SBJV;PL;1;PRS
burmoq V;PROG;COND;SG;2;PRS
og'riqsizlantirmoq V;PRF+PROG;COND;SG;1;PRS
o'xshamoq V;PFV;FRML;FH;SG;2
vorislik qilmoq V;SG;3;PRS
ishlab chiqarmoq V;PFV;SBJV;PL;3;FUT
bezamoq V;PFV;FH;SG;1
yoqmoq V;PRF;SBJV;SG;2;INFM;PRS
hisoblamoq V;PRF+PROG;COND;SG;2;INFM;PRS
ishontirmoq V;PFV;FH;PL;1
o'z ichiga olmoq V;PROG;IND;SG;3;FUT
yuvinmoq V;PRF+PROG;FRML;COND;SG;2;PRS
qilmoq V;IND;PL;3;PST
tekshirmoq V;PROG;IND;PL;1;PST
reklama qilmoq V;FRML;SG;2;PRS
taraqqiy etmoq V;PROG;COND;PL;3;PRS
yonmoq V;COND;PL;3;PRS
tarjima qilmoq V;PROG;FRML;IND;SG;2;FUT
qo'lga olmoq V;PROG;IND;SG;3;PST
sezmoq V;PROG;FRML;IND;SG;2;PRS
bo'lmoq V;FRML;SG;2;PRS
otmoq V;PFV;IND;SG;2;INFM;PST
tug'moq V;PFV;SBJV;SG;3;FUT
ichmoq V;COND;SG;1;PRS
ajratmoq V;PROG;IND;SG;3;PST
ijaraga bermoq V;SG;2;INFM;PRS
so'z bermoq V;SBJV;PL;1;PRS
tatib ko'rmoq V;PFV;IND;PL;3;PST
hayratlantirmoq V;FRML;SG;2;PRS
bastalamoq V;PRF+PROG;COND;PL;2;PRS
bahs poylamoq V;SG;2;INFM;PRS
qutqarmoq V;PL;2;PRS
berib turmoq V;PFV;FH;PL;3
katta qilmoq V;PROG;IND;SG;2;INFM;FUT
narx turmoq V;PFV;IND;SG;1;PST
berib turmoq V;PRF+PROG;COND;PL;3;PRS
qutqarmoq V;PFV;IND;PL;1;PST
yubormoq V;FRML;IND;SG;2;PST
yaqinlashmoq V;PROG;IND;SG;3;PST
hal qilmoq V;PROG;IND;PL;1;PST
tirishmoq V;PROG;IND;PL;2;FUT
uxlamoq V;PROG;IND;PL;2;PST
so'kinmoq V;PROG;COND;SG;3;PRS
chiqmoq V;PL;1;PRS
hujum qilmoq V;IND;SG;1;PST
bezamoq V;PRF;SBJV;SG;3;PRS
qatl qilmoq V;PROG;IND;SG;1;FUT
duo qilmoq V;PROG;IND;PL;1;PRS
tushmoq V;PFV;SBJV;SG;3;FUT
buyurtma bermoq V;PROG;IND;SG;2;INFM;FUT
qaramoq V;PFV;FRML;FH;SG;2
ko'rishmoq V;IND;SG;3;PST
bahs poylamoq V;PFV;SBJV;SG;3;FUT
qulflamoq V;PFV;FH;SG;2;INFM
sog'inmoq V;PFV;SBJV;SG;2;INFM;FUT
yopishmoq V;PFV;FH;SG;1
asramoq V;SBJV;SG;1;PRS
sanatmoq V;PL;1;PRS
mug'ombirlik qilmoq V;PRF+PROG;COND;SG;1;PRS
kerak bo'lmoq V;PFV;FH;SG;2
to'kmoq V;COND;SG;1;PRS
yaqinlashmoq V;PROG;IND;SG;2;INFM;FUT
ajramoq V;PROG;FRML;COND;SG;2;PRS
intervyu olmoq V;PRF;SBJV;SG;3;PRS
otmoq V;COND;SG;2;INFM;PRS
nolimoq V;PROG;IND;SG;1;PST
olib turmoq V;PROG;IND;SG;1;FUT
sachratmoq V;PRF+PROG;COND;SG;3;PRS
so'zlashmoq V;PROG;IND;PL;1;FUT
yasamoq V;PFV;FH;PL;3
tegmoq V;PROG;IND;PL;3;FUT
shamollatmoq V;PROG;IND;SG;2;INFM;PRS
bo'shatmoq V;PFV;SBJV;SG;1;FUT
ishlab chiqarmoq V;PRF;SBJV;PL;1;PRS
quvontirmoq V;PFV;SBJV;PL;3;FUT
yetaklamoq V;PROG;IND;SG;2;INFM;FUT
g'ashini keltirmoq V;COND;PL;1;PRS
qochmoq V;PROG;IND;SG;3;PRS
bermoq V;PFV;FH;PL;2
tiqmoq V;FRML;IND;SG;2;PST
sachratmoq V;PFV;FRML;IND;SG;2;PST
chiqmoq V;PFV;IND;PL;1;PST
muomalada bo'lmoq V;PFV;FH;PL;3
o'g'irlamoq V;IND;PL;1;PST
uyalmoq V;COND;PL;1;PRS
sindirmoq V;PRF+PROG;COND;SG;3;PRS
iste'foga chiqmoq V;COND;PL;1;PRS
bezmoq V;PFV;FRML;FH;SG;2
o'qimoq V;PROG;IND;SG;3;PST
ko'chib ketmoq V;IND;PL;1;PST
rozi bo'lmoq V;PFV;IND;PL;3;PST
sezmoq V;PROG;IND;PL;2;FUT
yetilmoq V;PROG;FRML;IND;SG;2;PST
o'rnatmoq V;COND;SG;1;PRS
qurmoq V;SBJV;PL;2;PRS
pushaymon bo'lmoq V;PL;1;PRS
yashirmoq V;PRF;SBJV;PL;3;PRS
quymoq V;PROG;IND;PL;1;PST
ishonmoq V;PROG;FRML;COND;SG;2;PRS
ishlatmoq V;PROG;COND;PL;3;PRS
horg'in his qilmoq V;PROG;IND;PL;2;PRS
baqirmoq V;PFV;FH;SG;1
ta'kidlamoq V;COND;PL;2;PRS
o'rnashmoq V;PFV;FRML;SBJV;SG;2;FUT
eslamoq V;PROG;IND;SG;1;PST
nolimoq V;PROG;IND;PL;3;PST
qayta olmoq V;SBJV;SG;2;PRS
so'zlashmoq V;SG;3;PRS
bo'lmoq V;PRF;SBJV;PL;3;PRS
shoshilmoq V;PROG;IND;PL;2;PST
javob bermoq V;PROG;IND;PL;3;PRS
yashirmoq V;PROG;FRML;IND;SG;2;FUT
ma'lum qilmoq V;PROG;IND;PL;2;FUT
bilmoq V;PROG;IND;PL;3;PST
ochmoq V;PRF;SBJV;PL;1;PRS
uylamoq V;PFV;FH;PL;1
davom etmoq V;PROG;IND;SG;3;FUT
o'lmoq V;PROG;COND;SG;2;PRS
kuymoq V;PROG;FRML;IND;SG;2;PST
reklama qilmoq V;PROG;COND;PL;1;PRS
talab qilmoq V;PL;2;PRS
fikr yuritmoq V;PRF+PROG;COND;PL;2;PRS
faxrlanmoq V;PFV;IND;PL;1;PST
yozmoq V;PFV;IND;PL;2;PST
rad etmoq V;PROG;IND;SG;3;PST
bezmoq V;PROG;IND;PL;3;FUT
sotib olmoq V;FRML;IND;SG;2;PST
shubhalanmoq V;SG;2;INFM;PRS
izlamoq V;PROG;IND;PL;2;PST
tasvirlamoq V;PROG;IND;SG;2;INFM;FUT
quvmoq V;PFV;FRML;IND;SG;2;PST
boshqarmoq V;PROG;IND;SG;3;PST
azob chekmoq V;PFV;FRML;IND;SG;2;PST
qilmoq V;COND;SG;3;PRS
kiyinmoq V;PFV;IND;PL;1;PST
quvontirmoq V;PFV;FH;PL;2
xursand bo'lmoq V;PFV;SBJV;SG;1;FUT
tabriklamoq V;PRF;SBJV;PL;2;PRS
qaytmoq V;SG;1;PRS
ko'tarib yurmoq V;PFV;FRML;SBJV;SG;2;FUT
ishontirmoq V;PROG;COND;PL;3;PRS
parchalamoq V;COND;PL;2;PRS
qutqarmoq V;IND;SG;2;INFM;PST
tishlamoq V;PFV;SBJV;PL;3;FUT
savdo qilmoq V;COND;PL;2;PRS
qidirmoq V;PFV;SBJV;SG;1;FUT
asabiylashtirmoq V;PFV;SBJV;SG;3;FUT
qo'lga tushirmoq V;PFV;FH;PL;1
yozmoq V;PRF;SBJV;SG;3;PRS
yetishmoq V;PRF+PROG;FRML;COND;SG;2;PRS
bo'lmoq V;PFV;FRML;SBJV;SG;2;FUT
hibsga olmoq V;PROG;IND;SG;2;INFM;FUT
erishmoq V;PROG;IND;SG;2;INFM;FUT
davom etmoq V;PROG;IND;PL;2;FUT
xizmat qilmoq V;SG;3;PRS
surtmoq V;PFV;FH;SG;3
supurmoq V;PROG;COND;SG;1;PRS
parchalamoq V;PRF+PROG;COND;PL;2;PRS
parchalamoq V;PFV;FH;SG;2
sirpanmoq V;PFV;FH;SG;2
o'xshamoq V;PROG;IND;PL;1;FUT
uylanmoq V;IND;SG;2;INFM;PST
intizorlik bilan kutmoq V;PROG;IND;SG;3;FUT
so'ramoq V;PROG;IND;PL;3;FUT
kuchga kiritmoq V;PFV;IND;SG;3;PST
aytmoq V;COND;SG;3;PRS
gaplashmoq V;PROG;COND;PL;3;PRS
bo'yatmoq V;PFV;FH;SG;2
dam olmoq V;PROG;IND;PL;2;FUT
ketmoq V;PFV;SBJV;SG;1;FUT
kuylamoq V;PFV;FRML;IND;SG;2;PST
imkon bermoq V;PRF;FRML;SBJV;SG;2;PRS
tekshirmoq V;PROG;COND;SG;3;PRS
mahkum qilmoq V;PFV;FRML;FH;SG;2
bukchaymoq V;IND;SG;1;PST
demoq V;PROG;FRML;IND;SG;2;PST
ajratmoq V;PFV;FH;SG;1
sahnalashtirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
mug'ombirlik qilmoq V;PROG;IND;SG;3;PRS
aytmoq V;SG;3;PRS
ishonqiramay turmoq V;IND;SG;3;PST
g'amgin his etmoq V;PROG;COND;SG;1;PRS
ishtirok etmoq V;PROG;COND;SG;2;PRS
yiqitmoq V;PROG;COND;PL;2;PRS
chaqmoq V;PRF;FRML;SBJV;SG;2;PRS
ishlab chiqarmoq V;PROG;FRML;IND;SG;2;PST
sanamoq V;PROG;IND;SG;3;FUT
o'z ichiga olmoq V;PFV;FH;PL;1
ijozat bermoq V;PROG;IND;PL;3;PST
ovlamoq V;COND;SG;3;PRS
tozalamoq V;PROG;COND;SG;1;PRS
sezmoq V;PFV;IND;PL;3;PST
olmoq V;PRF;SBJV;PL;1;PRS
yemoq V;PRF+PROG;COND;PL;3;PRS
o'ylamoq V;COND;PL;1;PRS
shamollamoq V;PFV;FH;PL;2
yuklamoq V;PRF+PROG;COND;PL;2;PRS
tanlamoq V;PFV;FH;PL;1
tushmoq V;PFV;SBJV;PL;1;FUT
rad etmoq V;PFV;FRML;FH;SG;2
quymoq V;PROG;IND;PL;2;PST
esga solmoq V;PROG;COND;PL;3;PRS
yaqinlashmoq V;PRF;SBJV;PL;2;PRS
izoh bermoq V;PROG;IND;SG;1;PRS
osilmoq V;PFV;SBJV;SG;3;FUT
parchalamoq V;PRF;SBJV;SG;1;PRS
yotmoq V;PFV;IND;SG;3;PST
chiqarmoq V;PROG;IND;PL;1;FUT
intizorlik bilan kutmoq V;PFV;FRML;IND;SG;2;PST
keltirmoq V;COND;SG;2;INFM;PRS
uloqtirmoq V;PFV;IND;PL;1;PST
taxlamoq V;PROG;COND;PL;3;PRS
yengillashtirmoq V;PL;3;PRS
ko'tarib yurmoq V;PFV;IND;PL;1;PST
qo'lga tushirmoq V;PFV;IND;PL;1;PST
yondirmoq V;PFV;SBJV;SG;3;FUT
boshlamoq V;PROG;FRML;IND;SG;2;PRS
bilmoq V;SG;2;INFM;PRS
o'g'irlab ketmoq V;PRF;SBJV;PL;1;PRS
sayohat qilmoq V;PROG;IND;PL;1;PST
pichirlamoq V;PROG;IND;SG;1;FUT
yuzlashmoq V;IND;PL;3;PST
yengillashtirmoq V;PROG;COND;SG;1;PRS
quvmoq V;PFV;FRML;SBJV;SG;2;FUT
bermoq V;COND;PL;2;PRS
tishlamoq V;PFV;FH;SG;3
yig'lamoq V;PL;2;PRS
shug'ullanmoq V;PROG;IND;PL;2;FUT
o'ylamoq V;PROG;COND;SG;1;PRS
ketmoq V;IND;PL;2;PST
kesmoq V;PL;3;PRS
hujum qilmoq V;PRF;SBJV;SG;2;INFM;PRS
hal qilmoq V;PFV;FH;SG;2
kechirmoq V;PFV;IND;SG;1;PST
chopmoq V;PRF+PROG;COND;PL;2;PRS
boshlamoq V;PROG;IND;SG;1;FUT
tan olmoq V;COND;PL;3;PRS
olib turmoq V;PFV;FH;PL;1
qochmoq V;PL;1;PRS
chaqmoq V;COND;SG;2;INFM;PRS
ko'rishmoq V;PRF+PROG;COND;SG;2;INFM;PRS
katta qilmoq V;PRF;SBJV;PL;2;PRS
intizorlik bilan kutmoq V;PRF;FRML;SBJV;SG;2;PRS
qaytmoq V;PRF;SBJV;PL;1;PRS
uchrashmoq V;PFV;SBJV;PL;3;FUT
nolimoq V;PROG;FRML;IND;SG;2;PRS
takror qo'ymoq V;FRML;IND;SG;2;PST
so'kinmoq V;PROG;IND;SG;1;FUT
tatib ko'rmoq V;PROG;IND;PL;1;PRS
yetaklamoq V;PFV;SBJV;PL;3;FUT
hayron qolmoq V;PFV;FRML;FH;SG;2
baqirmoq V;PROG;IND;PL;2;PRS
olib tashlamoq V;PFV;SBJV;PL;2;FUT
qattiq yopmoq V;PROG;IND;SG;2;INFM;PST
farqlamoq V;PROG;COND;PL;1;PRS
taxlamoq V;PROG;FRML;IND;SG;2;PRS
tozalamoq V;PFV;FH;SG;2
to'xtatmoq V;IND;PL;3;PST
siqmoq V;PFV;FRML;SBJV;SG;2;FUT
davom etmoq V;FRML;IND;SG;2;PST
e'lon qilmoq V;PROG;IND;SG;1;PST
sevib qolmoq V;PRF;SBJV;PL;2;PRS
dush qabul qilmoq V;IND;SG;1;PST
mug'ombirlik qilmoq V;PROG;IND;PL;1;PRS
ketmoq V;PL;1;PRS
yozib olmoq V;PRF+PROG;FRML;COND;SG;2;PRS
o'g'irlab ketmoq V;PRF+PROG;COND;PL;2;PRS
yoqtirmoq V;PFV;IND;PL;3;PST
taramoq V;PFV;FRML;IND;SG;2;PST
yiqilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
varaqlamoq V;PRF;SBJV;SG;2;INFM;PRS
tirishmoq V;PFV;FH;SG;2
yormoq V;PROG;COND;SG;1;PRS
uzanmoq V;PRF+PROG;COND;SG;1;PRS
uloqtirmoq V;PRF;SBJV;PL;3;PRS
berib turmoq V;PROG;IND;PL;2;FUT
shubhalanmoq V;PRF+PROG;COND;PL;2;PRS
intizorlik bilan kutmoq V;PROG;IND;SG;1;FUT
kuylamoq V;IND;PL;1;PST
ozor bermoq V;PROG;FRML;IND;SG;2;PST
shovqin solmoq V;PRF;FRML;SBJV;SG;2;PRS
yugurmoq V;PRF;SBJV;SG;3;PRS
qo'llamoq V;PFV;IND;SG;1;PST
yedirmoq V;PROG;FRML;IND;SG;2;PST
o'zini tutmoq V;PROG;IND;SG;3;FUT
tavsiya etmoq V;PFV;FH;SG;1
qo'riqlamoq V;PROG;IND;SG;2;INFM;FUT
taramoq V;IND;PL;2;PST
o'rnashmoq V;PFV;FH;SG;2
nazarda tutmoq V;COND;SG;1;PRS
mug'ombirlik qilmoq V;PFV;IND;PL;1;PST
ko'rmoq V;PROG;IND;PL;2;PRS
ichmoq V;PROG;FRML;IND;SG;2;PST
o'ynamoq V;PFV;FH;SG;3
o'g'irlamoq V;PROG;COND;SG;3;PRS
rivojlantirmoq V;PRF;FRML;SBJV;SG;2;PRS
artmoq V;PRF;SBJV;SG;3;PRS
taxlamoq V;PROG;FRML;IND;SG;2;FUT
bo'yatmoq V;SBJV;PL;3;PRS
kuylamoq V;PROG;IND;SG;2;INFM;FUT
ajratmoq V;PFV;IND;PL;2;PST
qutqarmoq V;PRF+PROG;COND;SG;2;INFM;PRS
aylantirmoq V;IND;PL;3;PST
qutqarmoq V;PROG;IND;PL;1;FUT
uxlamoq V;PFV;SBJV;PL;1;FUT
taklif qilmoq V;PFV;SBJV;PL;1;FUT
ko'tarib yurmoq V;PROG;IND;SG;1;PST
ogohlantirmoq V;IND;SG;2;INFM;PST
isrof qilmoq V;PRF+PROG;COND;SG;1;PRS
muzlatmoq V;PFV;FH;PL;2
sezmoq V;COND;SG;2;INFM;PRS
aldamoq V;PFV;FH;SG;2
horg'in his qilmoq V;PFV;SBJV;PL;3;FUT
xo'mraymoq V;COND;SG;2;INFM;PRS
imtihondan o'tmoq V;PFV;IND;PL;1;PST
qo'yib yubormoq V;PFV;FRML;SBJV;SG;2;FUT
o'rnashmoq V;FRML;IND;SG;2;PST
sirpanmoq V;PROG;FRML;IND;SG;2;FUT
ishonmoq V;PRF+PROG;COND;PL;2;PRS
chetlashmoq V;PRF+PROG;COND;PL;3;PRS
kechikmoq V;PROG;IND;PL;3;PST
tavsiya etmoq V;PFV;FH;SG;2
yashamoq V;IND;PL;3;PST
yoqmoq V;SBJV;PL;3;PRS
yurmoq V;PROG;IND;SG;3;PST
cho'kmoq V;PROG;IND;PL;3;PRS
bo'yanmoq V;PFV;SBJV;PL;2;FUT
amin bo'lmoq V;PFV;SBJV;PL;3;FUT
paydo bo'lmoq V;PRF;SBJV;SG;2;INFM;PRS
quvontirmoq V;PL;3;PRS
tug'moq V;IND;PL;3;PST
aytmoq V;PFV;SBJV;SG;3;FUT
shamollatmoq V;IND;SG;1;PST
mo'ralamoq V;IND;SG;1;PST
kechikmoq V;PFV;FRML;FH;SG;2
mahkum qilmoq V;COND;PL;2;PRS
suzmoq V;PROG;IND;SG;1;PST
qattiq yopmoq V;COND;PL;3;PRS
faxrlanmoq V;PROG;IND;PL;2;FUT
ko'zdan kechirmoq V;PROG;IND;PL;3;PRS
ijozat bermoq V;PFV;FH;PL;2
takror qo'ymoq V;PROG;COND;PL;1;PRS
yetmoq V;PRF;SBJV;SG;3;PRS
qo'yib yubormoq V;PRF;SBJV;SG;1;PRS
uylanmoq V;PRF+PROG;COND;SG;3;PRS
rozi bo'lmoq V;PRF+PROG;FRML;COND;SG;2;PRS
o'qimoq V;PRF;SBJV;SG;2;INFM;PRS
yondirmoq V;PFV;IND;SG;3;PST
taxlamoq V;SG;2;INFM;PRS
ko'chib ketmoq V;PL;1;PRS
og'riqsizlantirmoq V;IND;PL;2;PST
hisoblamoq V;PL;2;PRS
tegmoq V;PROG;IND;PL;3;PRS
ta'mirlamoq V;IND;PL;2;PST
gaplashmoq V;SG;2;INFM;PRS
dazmollamoq V;PRF+PROG;COND;SG;2;INFM;PRS
tuzmoq V;PFV;IND;SG;2;INFM;PST
his qilmoq V;PRF+PROG;COND;SG;3;PRS
ezmoq V;PFV;FH;SG;2
istamoq V;PL;2;PRS
tashakkur aytmoq V;PFV;SBJV;SG;1;FUT
yormoq V;PROG;IND;PL;3;FUT
uylanmoq V;PL;3;PRS
silkimoq V;PRF+PROG;COND;SG;2;INFM;PRS
ko'tarib yurmoq V;COND;SG;2;INFM;PRS
ishonmoq V;PROG;COND;SG;3;PRS
muhokama qilmoq V;FRML;IND;SG;2;PST
taxlamoq V;FRML;SG;2;PRS
istamoq V;PRF+PROG;FRML;COND;SG;2;PRS
urmoq V;PFV;SBJV;PL;1;FUT
tug'moq V;PFV;FH;SG;1
hijjalamoq V;PFV;FH;SG;2
olib turmoq V;PROG;COND;PL;1;PRS
ishtirok etmoq V;PROG;FRML;IND;SG;2;PRS
tark etmoq V;PROG;COND;SG;1;PRS
olib turmoq V;FRML;IND;SG;2;PST
qochmoq V;PROG;IND;PL;1;PST
kechikmoq V;SG;3;PRS
tagiga chizmoq V;PROG;IND;SG;1;PRS
qarshilantirmoq V;PROG;COND;SG;3;PRS
rad etmoq V;PFV;FH;SG;2
pullamoq V;PROG;IND;PL;1;PRS
iste'foga chiqmoq V;PROG;IND;SG;2;INFM;PRS
bahs poylamoq V;PROG;COND;SG;1;PRS
yiqitmoq V;PFV;IND;PL;1;PST
silkimoq V;PFV;IND;PL;2;PST
saqlamoq V;PFV;FH;SG;3
kuchga kiritmoq V;PFV;IND;SG;2;INFM;PST
sanchmoq V;PRF;SBJV;PL;2;PRS
yetishmoq V;PROG;IND;SG;3;FUT
otmoq V;PROG;IND;SG;2;INFM;PST
yo'qotmoq V;PFV;IND;SG;3;PST
ichkariga kirmoq V;PRF+PROG;COND;PL;2;PRS
o'tib ketmoq V;PROG;FRML;IND;SG;2;PST
tikilmoq V;COND;PL;3;PRS
dam olmoq V;PRF;SBJV;SG;2;INFM;PRS
vorislik qilmoq V;COND;PL;1;PRS
tikmoq V;PFV;SBJV;PL;3;FUT
horg'in his qilmoq V;IND;SG;3;PST
o'g'irlamoq V;PROG;IND;PL;3;FUT
yetilmoq V;FRML;COND;SG;2;PRS
kulmoq V;PRF;FRML;SBJV;SG;2;PRS
hayron qolmoq V;PRF;SBJV;SG;3;PRS
yirtmoq V;PFV;IND;PL;1;PST
o'rnatmoq V;PROG;IND;SG;1;PST
og'riqsizlantirmoq V;PFV;IND;SG;1;PST
g'amgin his etmoq V;PFV;FRML;IND;SG;2;PST
ijaraga bermoq V;PROG;IND;PL;3;FUT
yig'lamoq V;COND;SG;3;PRS
yonmoq V;PFV;IND;SG;1;PST
himoya qilmoq V;PRF;SBJV;PL;1;PRS
dam olmoq V;PRF+PROG;COND;PL;1;PRS
buzilmoq V;FRML;IND;SG;2;PST
burmoq V;COND;SG;1;PRS
ishga olmoq V;PROG;IND;SG;2;INFM;PST
ma'qullamoq V;PFV;IND;PL;2;PST
qaror qabul qilmoq V;COND;PL;3;PRS
ayb qo'ymoq V;PRF+PROG;COND;PL;2;PRS
so'ramoq V;COND;PL;1;PRS
taraqqiy etmoq V;IND;PL;1;PST
qo'riqlamoq V;PROG;FRML;IND;SG;2;PRS
qo'riqlamoq V;PROG;COND;SG;3;PRS
aldamoq V;SBJV;PL;3;PRS
siqmoq V;FRML;IND;SG;2;PST
qo'lga olmoq V;PFV;IND;SG;1;PST
yarashmoq V;PRF;FRML;SBJV;SG;2;PRS
rivojlantirmoq V;PFV;FRML;IND;SG;2;PST
yuvinmoq V;PRF;FRML;SBJV;SG;2;PRS
bermoq V;PROG;IND;PL;1;PST
kelmoq V;COND;PL;3;PRS
azob chekmoq V;IND;SG;2;INFM;PST
tabriklamoq V;SG;1;PRS
maslahat bermoq V;PFV;FH;SG;2
ko'tarmoq V;PFV;IND;PL;3;PST
to'smoq V;COND;PL;2;PRS
qulflamoq V;PROG;IND;PL;3;FUT
o'chirmoq V;PFV;IND;SG;3;PST
qo'lga tushirmoq V;PFV;IND;PL;3;PST
langar tashlamoq V;PL;1;PRS
bahs poylamoq V;PROG;IND;PL;1;PRS
archimoq V;PROG;IND;PL;1;FUT
yuvmoq V;PROG;IND;SG;3;FUT
tabriklamoq V;PROG;IND;SG;3;PST
artmoq V;PROG;FRML;IND;SG;2;PST
shovqin solmoq V;PRF+PROG;COND;PL;3;PRS
mo'ralamoq V;PL;3;PRS
talaffuz qilmoq V;PFV;IND;SG;2;INFM;PST
yashirinmoq V;PFV;IND;PL;3;PST
porlamoq V;PROG;IND;SG;3;PRS
hayratlantirmoq V;PFV;IND;SG;3;PST
yormoq V;PFV;IND;PL;3;PST
yotmoq V;PRF+PROG;COND;SG;1;PRS
terlamoq V;PROG;IND;SG;2;INFM;PRS
iste'foga chiqmoq V;PFV;FH;SG;1
intizorlik bilan kutmoq V;PROG;IND;PL;3;PST
taxlamoq V;PROG;IND;SG;3;FUT
kemada suzmoq V;PROG;IND;PL;1;PRS
qidirmoq V;PFV;SBJV;PL;1;FUT
tadqiq qilmoq V;PFV;FH;PL;2
o'tib ketmoq V;PL;1;PRS
qarshilik ko'rsatmoq V;SG;2;INFM;PRS
chaqmoq V;PROG;COND;PL;2;PRS
kuchga kiritmoq V;PRF+PROG;COND;SG;1;PRS
mug'ombirlik qilmoq V;PFV;FRML;SBJV;SG;2;FUT
la'natlamoq V;COND;SG;2;INFM;PRS
taramoq V;PROG;IND;PL;3;PRS
qattiq yopmoq V;PROG;IND;PL;3;PRS
reklama qilmoq V;PRF;SBJV;SG;2;INFM;PRS
taklif qilmoq V;FRML;SG;2;PRS
o'ramoq V;IND;PL;3;PST
ijozat bermoq V;PFV;SBJV;SG;1;FUT
zabt etmoq V;SG;1;PRS
fikr yuritmoq V;PRF;SBJV;PL;1;PRS
nolimoq V;PFV;SBJV;SG;2;INFM;FUT
ishontirmoq V;SBJV;PL;3;PRS
e'lon qilmoq V;PROG;IND;PL;3;FUT
boshlamoq V;PROG;IND;SG;1;PST
qo'lga tushirmoq V;PRF;SBJV;SG;1;PRS
horg'in his qilmoq V;PROG;IND;PL;3;PRS
mazax qilmoq V;PROG;IND;SG;1;PRS
ovlamoq V;PROG;COND;SG;3;PRS
o'rab olmoq V;COND;SG;2;INFM;PRS
bastalamoq V;IND;SG;3;PST
sezmoq V;PROG;IND;SG;1;PRS
chetlashmoq V;PFV;IND;PL;3;PST
chaqmoq V;PRF+PROG;COND;SG;3;PRS
katta bo'lmoq V;PROG;IND;PL;3;FUT
cho'kmoq V;PRF;SBJV;PL;1;PRS
kulmoq V;IND;PL;2;PST
bezamoq V;FRML;IND;SG;2;PST
ta'minlamoq V;PRF+PROG;COND;PL;1;PRS
ta'minlamoq V;PFV;IND;SG;2;INFM;PST
his qilmoq V;PROG;FRML;IND;SG;2;PST
yordam bermoq V;PFV;FH;PL;3
ishlab chiqarmoq V;PROG;COND;PL;3;PRS
buyruq bermoq V;PROG;COND;PL;1;PRS
katta qilmoq V;PROG;IND;SG;3;PST
ayblamoq V;PROG;IND;PL;1;PRS
boshqarmoq V;PROG;IND;PL;3;PRS
muhokama qilmoq V;PROG;IND;SG;1;FUT
burmoq V;COND;SG;3;PRS
topib olmoq V;PROG;IND;SG;3;FUT
bashorat qilmoq V;PROG;IND;PL;1;FUT
gaplashmoq V;PRF;SBJV;SG;2;INFM;PRS
yetkazmoq V;PRF+PROG;FRML;COND;SG;2;PRS
yedirmoq V;PROG;IND;PL;2;FUT
xafa qilmoq V;COND;PL;2;PRS
tekshirmoq V;PROG;IND;PL;3;PST
tishlamoq V;IND;PL;1;PST
ko'chib ketmoq V;PRF;SBJV;SG;1;PRS
so'ramoq V;PFV;FH;PL;3
bukchaymoq V;PFV;SBJV;SG;1;FUT
yirtmoq V;PROG;IND;SG;1;FUT
ta'minlamoq V;PFV;IND;SG;1;PST
maslahat bermoq V;PROG;IND;SG;3;PST
ogohlantirmoq V;PFV;SBJV;PL;3;FUT
yoqmoq V;PFV;FH;PL;3
taxlamoq V;PROG;IND;PL;2;FUT
muomalada bo'lmoq V;PROG;IND;SG;2;INFM;PST
tasvirlamoq V;PRF;SBJV;PL;2;PRS
hal qilmoq V;PROG;IND;PL;3;PRS
xo'mraymoq V;PL;3;PRS
yashirinmoq V;PFV;FRML;SBJV;SG;2;FUT
hijjalamoq V;SG;3;PRS
chetlashmoq V;IND;PL;2;PST
so'z bermoq V;PRF;SBJV;PL;2;PRS
tushunmoq V;PROG;COND;PL;3;PRS
bo'yatmoq V;PROG;COND;PL;3;PRS
g'ashini keltirmoq V;PFV;FH;SG;2
buyurtma bermoq V;PROG;IND;PL;1;PST
sanchmoq V;PFV;FH;SG;1
ma'qullamoq V;PFV;FH;PL;2
gapirmoq V;PFV;SBJV;PL;3;FUT
qochmoq V;PFV;FRML;IND;SG;2;PST
tug'moq V;PRF;SBJV;PL;1;PRS
to'xtamga kelmoq V;IND;SG;2;INFM;PST
aytmoq V;PFV;IND;SG;3;PST
la'natlamoq V;FRML;IND;SG;2;PST
qulflamoq V;PFV;IND;SG;2;INFM;PST
gaplashmoq V;PROG;IND;PL;3;PST
ozor bermoq V;PROG;IND;PL;2;FUT
bukmoq V;PROG;IND;PL;1;PST
sezmoq V;SBJV;PL;1;PRS
uchmoq V;SG;2;INFM;PRS
kuymoq V;PFV;SBJV;SG;2;INFM;FUT
takrorlamoq V;COND;SG;2;INFM;PRS
tarjima qilmoq V;PROG;IND;SG;3;FUT
uylamoq V;PFV;FH;SG;3
ochmoq V;PFV;SBJV;SG;3;FUT
talab qilmoq V;PL;1;PRS
asabiylashtirmoq V;COND;SG;1;PRS
ko'chmoq V;PRF;SBJV;SG;1;PRS
ko'zdan kechirmoq V;PL;1;PRS
ajratmoq V;PFV;IND;PL;3;PST
chopmoq V;PFV;SBJV;PL;2;FUT
takrorlamoq V;PFV;SBJV;PL;3;FUT
to'kmoq V;PROG;IND;SG;1;PRS
yedirmoq V;IND;PL;3;PST
tikmoq V;COND;SG;3;PRS
tinglamoq V;PROG;IND;PL;3;FUT
qarshilantirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
reklama qilmoq V;PFV;FH;PL;3
mazax qilmoq V;PROG;FRML;IND;SG;2;PST
buzmoq V;PRF;FRML;SBJV;SG;2;PRS
taklif qilmoq V;PROG;IND;SG;1;FUT
rivojlanmoq V;FRML;SG;2;PRS
jiringlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
yopishmoq V;IND;PL;1;PST
mo'ralamoq V;PFV;IND;PL;3;PST
yetaklamoq V;IND;SG;1;PST
bekor qilmoq V;IND;PL;3;PST
pand bermoq V;PRF;SBJV;PL;2;PRS
xizmat qilmoq V;PROG;IND;PL;3;PRS
burmoq V;PROG;IND;PL;3;PST
ijaraga bermoq V;PROG;FRML;IND;SG;2;PRS
oldini olmoq V;PROG;IND;SG;1;PST
qatl qilmoq V;PROG;IND;PL;1;FUT
kechirmoq V;PFV;IND;PL;2;PST
mahkum qilmoq V;PFV;FH;PL;2
ko'rishmoq V;PROG;IND;PL;3;PRS
uchrashmoq V;COND;SG;1;PRS
ishga olmoq V;PRF+PROG;COND;SG;2;INFM;PRS
esga solmoq V;PRF+PROG;COND;PL;1;PRS
ishlatmoq V;PRF;SBJV;PL;1;PRS
iborat bo'lmoq V;COND;PL;2;PRS
xiyonat qilmoq V;PRF;FRML;SBJV;SG;2;PRS
bukmoq V;PFV;IND;PL;2;PST
davom etmoq V;PROG;IND;PL;2;PST
qarshilik ko'rsatmoq V;PROG;IND;PL;1;FUT
tinglamoq V;PRF+PROG;COND;PL;3;PRS
kesmoq V;IND;PL;2;PST
chaqmoq V;PROG;COND;SG;2;PRS
gapirmoq V;PFV;FH;PL;2
chopmoq V;PFV;IND;PL;1;PST
inkor qilmoq V;SG;1;PRS
bukchaymoq V;PROG;COND;SG;3;PRS
terlamoq V;PROG;IND;PL;1;PST
ishontirmoq V;PROG;FRML;IND;SG;2;PST
g'amgin his etmoq V;PROG;IND;PL;3;FUT
siqmoq V;PFV;IND;PL;2;PST
topmoq V;SBJV;SG;2;PRS
aylantirmoq V;PROG;IND;PL;1;FUT
yo'qolmoq V;SBJV;SG;2;PRS
o'tmoq V;PROG;COND;SG;2;PRS
sanchmoq V;PRF;SBJV;SG;3;PRS
uloqtirmoq V;COND;PL;2;PRS
talab qilmoq V;PROG;IND;PL;1;FUT
taslim bo'lmoq V;PROG;IND;PL;2;FUT
his qilmoq V;PROG;IND;SG;2;INFM;PRS
xiyonat qilmoq V;PFV;IND;PL;3;PST
kuylamoq V;PRF+PROG;COND;PL;3;PRS
o'xshamoq V;PRF+PROG;COND;SG;3;PRS
ishonmoq V;FRML;SBJV;SG;2;PRS
taklif etmoq V;PROG;IND;SG;2;INFM;FUT
kerak bo'lmoq V;COND;SG;2;INFM;PRS
taramoq V;PFV;FH;PL;2
kuylamoq V;PROG;IND;PL;3;PST
sirpanmoq V;PROG;FRML;IND;SG;2;PST
yashirinmoq V;PFV;SBJV;PL;1;FUT
sho'ng'imoq V;IND;PL;1;PST
o'pmoq V;PL;2;PRS
taqiqlamoq V;PFV;SBJV;PL;3;FUT
to'plamoq V;COND;PL;3;PRS
o'rganmoq V;PRF+PROG;COND;PL;1;PRS
yuzlashmoq V;PROG;IND;PL;2;PST
tikmoq V;PRF;SBJV;PL;3;PRS
taqiqlamoq V;PL;3;PRS
kulmoq V;PFV;IND;PL;3;PST
to'xtatmoq V;PROG;IND;PL;2;PRS
surtmoq V;PROG;IND;PL;1;FUT
yopishmoq V;PROG;IND;PL;1;PST
yetaklamoq V;PRF;SBJV;SG;1;PRS
uloqtirmoq V;PROG;COND;SG;3;PRS
ichkariga kirmoq V;PROG;IND;SG;1;PST
charchamoq V;PROG;FRML;COND;SG;2;PRS
qilmoq V;COND;PL;1;PRS
yasamoq V;PFV;FH;PL;2
ajrashmoq V;PROG;IND;SG;3;PST
hayron qolmoq V;SG;3;PRS
uxlab qolmoq V;PRF;SBJV;PL;2;PRS
qo'llamoq V;PROG;IND;PL;1;PRS
terlamoq V;PROG;IND;PL;2;PST
ko'rsatmoq V;IND;SG;2;INFM;PST
intervyu olmoq V;PFV;SBJV;PL;3;FUT
sarflamoq V;PROG;IND;SG;3;FUT
asabiylashtirmoq V;PRF;SBJV;PL;2;PRS
zarar yetkazmoq V;PROG;COND;PL;1;PRS
harakat qilmoq V;PRF;FRML;SBJV;SG;2;PRS
o'zgartirmoq V;COND;PL;2;PRS
tikilmoq V;PROG;IND;SG;2;INFM;FUT
javob bermoq V;FRML;SG;2;PRS
tabriklamoq V;PROG;FRML;IND;SG;2;FUT
yopishmoq V;PROG;COND;PL;3;PRS
aniqlamoq V;SG;1;PRS
chang'i uchmoq V;IND;SG;1;PST
hibsga olmoq V;PROG;IND;SG;1;FUT
tikmoq V;PL;1;PRS
davom etmoq V;COND;SG;3;PRS
qo'llamoq V;PROG;COND;SG;1;PRS
buzilmoq V;PRF+PROG;COND;SG;1;PRS
tarjima qilmoq V;PROG;IND;SG;1;FUT
do'q qilmoq V;PRF+PROG;COND;PL;1;PRS
jalb qilmoq V;IND;SG;1;PST
langar tashlamoq V;PROG;COND;PL;1;PRS
langar tashlamoq V;IND;PL;1;PST
moslashmoq V;FRML;IND;SG;2;PST
yetilmoq V;PROG;IND;SG;1;FUT
taslim bo'lmoq V;PROG;FRML;IND;SG;2;PST
uchrashmoq V;PROG;COND;PL;3;PRS
langar tashlamoq V;COND;SG;2;INFM;PRS
qizq'anmoq V;PFV;IND;SG;3;PST
tinglamoq V;PFV;FH;PL;2
muhokama qilmoq V;COND;PL;3;PRS
sanchmoq V;PROG;IND;SG;2;INFM;FUT
ishonmoq V;PROG;IND;PL;3;PRS
xiyonat qilmoq V;PROG;FRML;IND;SG;2;PRS
taslim bo'lmoq V;COND;PL;2;PRS
yormoq V;PRF+PROG;COND;SG;3;PRS
pichirlamoq V;PROG;IND;PL;3;FUT
uyg'otmoq V;PRF;FRML;SBJV;SG;2;PRS
navbatda turmoq V;PROG;IND;SG;1;FUT
yurmoq V;PROG;COND;SG;1;PRS
afzal ko'rmoq V;PRF;SBJV;SG;1;PRS
horg'in his qilmoq V;PFV;IND;PL;3;PST
qaror qabul qilmoq V;PFV;IND;SG;2;INFM;PST
rad etmoq V;COND;PL;1;PRS
qatl qilmoq V;COND;PL;1;PRS
o'ldirmoq V;IND;PL;1;PST
davolamoq V;PROG;IND;SG;3;PRS
yormoq V;PFV;SBJV;PL;3;FUT
marinadlamoq V;COND;SG;3;PRS
tanlamoq V;PFV;IND;PL;3;PST
reja tuzmoq V;PROG;COND;PL;3;PRS
imtihondan o'tmoq V;PROG;IND;SG;3;PRS
taklif etmoq V;PL;2;PRS
bo'shatmoq V;FRML;SG;2;PRS
nolimoq V;PRF;FRML;SBJV;SG;2;PRS
emaklamoq V;COND;PL;2;PRS
tegmoq V;IND;SG;1;PST
chopmoq V;PFV;SBJV;SG;3;FUT
boshlamoq V;PRF;SBJV;PL;3;PRS
mavjud bo'lmoq V;PL;1;PRS
esga solmoq V;PRF;FRML;SBJV;SG;2;PRS
ijozat bermoq V;PROG;IND;PL;1;PRS
ichmoq V;PFV;IND;SG;3;PST
yozib olmoq V;PRF;SBJV;PL;1;PRS
boshlamoq V;PROG;IND;PL;3;FUT
yetkazmoq V;PROG;FRML;IND;SG;2;PRS
qaramoq V;PFV;FRML;SBJV;SG;2;FUT
jondan suymoq V;PRF+PROG;COND;SG;1;PRS
yoqmoq V;PRF;SBJV;PL;3;PRS
o'z ichiga olmoq V;PROG;FRML;IND;SG;2;PRS
yengillashtirmoq V;PRF;SBJV;PL;2;PRS
qayta olmoq V;PROG;COND;PL;1;PRS
olib tashlamoq V;PFV;SBJV;PL;3;FUT
hal qilmoq V;FRML;COND;SG;2;PRS
takror qo'ymoq V;PFV;SBJV;SG;1;FUT
pullamoq V;PFV;IND;PL;1;PST
umid qilmoq V;PROG;IND;PL;1;PRS
eshitmoq V;PFV;FH;SG;1
bezamoq V;PFV;IND;SG;3;PST
yaratmoq V;PFV;FH;PL;2
sachratmoq V;PL;1;PRS
varaqlamoq V;PRF+PROG;COND;SG;3;PRS
kemada suzmoq V;PROG;COND;SG;3;PRS
surtmoq V;COND;SG;3;PRS
ko'rishmoq V;PFV;IND;SG;1;PST
turmoq V;PRF+PROG;COND;PL;1;PRS
himoya qilmoq V;PFV;FH;PL;2
sug'ormoq V;PRF;FRML;SBJV;SG;2;PRS
yiqitmoq V;PRF+PROG;COND;PL;1;PRS
ishonmoq V;PRF+PROG;COND;PL;3;PRS
aniqlamoq V;PROG;IND;PL;1;PRS
ma'qullamoq V;PROG;IND;PL;3;FUT
ozod etmoq V;PFV;SBJV;SG;2;INFM;FUT
chiqarmoq V;PROG;IND;SG;2;INFM;PST
dam olmoq V;SBJV;SG;3;PRS
umid qilmoq V;PFV;FH;SG;1
yetilmoq V;PROG;FRML;IND;SG;2;FUT
taklif etmoq V;PROG;FRML;IND;SG;2;FUT
aralashmoq V;IND;PL;1;PST
paydo bo'lmoq V;PROG;IND;PL;1;FUT
kechiktirmoq V;PFV;IND;SG;2;INFM;PST
uzanmoq V;PROG;IND;PL;3;FUT
chekmoq V;SBJV;PL;1;PRS
unashtirmoq V;PROG;IND;PL;1;FUT
supurmoq V;SG;1;PRS
tekshirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
ajrashmoq V;PFV;SBJV;PL;2;FUT
hibsga olmoq V;PFV;FH;PL;3
qo'rqitmoq V;PROG;COND;SG;2;PRS
sindirmoq V;COND;PL;2;PRS
tavsiya qilmoq V;PFV;IND;PL;2;PST
sachratmoq V;FRML;COND;SG;2;PRS
yozmoq V;IND;PL;2;PST
yiqitmoq V;PROG;IND;SG;3;FUT
nolimoq V;PRF;SBJV;PL;2;PRS
muomalada bo'lmoq V;PROG;FRML;IND;SG;2;PRS
osmoq V;PL;2;PRS
porlamoq V;PROG;IND;PL;1;PST
sho'ng'imoq V;PROG;IND;PL;3;PST
chopmoq V;IND;SG;1;PST
uylanmoq V;PROG;FRML;COND;SG;2;PRS
silkimoq V;PROG;IND;PL;3;PST
asramoq V;PFV;IND;PL;2;PST
pastga tushmoq V;PFV;IND;PL;3;PST
yubormoq V;PFV;IND;PL;2;PST
yaratmoq V;PROG;IND;SG;1;PST
uylanmoq V;PRF;SBJV;PL;2;PRS
aytmoq V;SBJV;SG;3;PRS
ko'zdan kechirmoq V;PFV;SBJV;PL;2;FUT
sahnalashtirmoq V;PRF;SBJV;SG;1;PRS
sezmoq V;PRF+PROG;FRML;COND;SG;2;PRS
navbatda turmoq V;SBJV;SG;2;PRS
ogohlantirmoq V;PFV;FH;SG;1
bahs poylamoq V;PRF+PROG;FRML;COND;SG;2;PRS
kelmoq V;PROG;IND;PL;2;FUT
keltirmoq V;PRF;SBJV;PL;1;PRS
o'rnatmoq V;PFV;SBJV;PL;3;FUT
bezmoq V;PRF+PROG;COND;SG;3;PRS
yuvinmoq V;PRF+PROG;COND;PL;1;PRS
taraqqiy etmoq V;PROG;COND;SG;2;PRS
yoqtirmoq V;PROG;IND;PL;3;PRS
moslashmoq V;PFV;SBJV;PL;2;FUT
ajratmoq V;PROG;COND;PL;3;PRS
chetlashmoq V;PL;2;PRS
imkon bermoq V;PROG;IND;PL;1;PRS
pastga tushmoq V;PRF+PROG;COND;PL;1;PRS
siqmoq V;PROG;IND;SG;2;INFM;PST
savdo qilmoq V;PFV;IND;SG;3;PST
o'rgatmoq V;PFV;FH;SG;1
savdo qilmoq V;PRF+PROG;COND;SG;3;PRS
hukm qilmoq V;PROG;IND;PL;1;PRS
o'ldirmoq V;FRML;SG;2;PRS
yoqtirmoq V;PRF;FRML;SBJV;SG;2;PRS
yig'lamoq V;PRF;SBJV;SG;3;PRS
yashamoq V;PROG;IND;PL;3;PST
tikmoq V;PFV;FH;SG;1
ko'tarmoq V;PFV;FH;PL;2
nolimoq V;PFV;IND;PL;1;PST
bahs poylamoq V;PROG;COND;PL;3;PRS
tishlamoq V;PROG;IND;PL;3;PST
hijjalamoq V;FRML;COND;SG;2;PRS
ketmoq V;IND;PL;1;PST
davom etmoq V;IND;PL;3;PST
afzal ko'rmoq V;PRF+PROG;COND;PL;2;PRS
imkon bermoq V;SBJV;SG;1;PRS
ishtirok etmoq V;PROG;COND;SG;1;PRS
topib olmoq V;SBJV;PL;1;PRS
e'lon qilmoq V;PL;1;PRS
tark etmoq V;PROG;COND;PL;3;PRS
tan olmoq V;PFV;FRML;IND;SG;2;PST
yiqilmoq V;IND;PL;3;PST
tanlamoq V;SBJV;PL;1;PRS
bitirmoq V;COND;PL;3;PRS
qo'rqmoq V;PRF;SBJV;PL;1;PRS
sotmoq V;PFV;FRML;SBJV;SG;2;FUT
tushunmoq V;PRF;SBJV;PL;1;PRS
izlamoq V;PFV;SBJV;PL;3;FUT
osmoq V;PROG;FRML;COND;SG;2;PRS
o'rganmoq V;PROG;IND;SG;3;FUT
yig'moq V;PROG;IND;PL;3;PRS
e'lon qilmoq V;PRF;SBJV;SG;2;INFM;PRS
sabab bo'lmoq V;PFV;SBJV;SG;1;FUT
bekor qilmoq V;SG;3;PRS
kechirmoq V;PL;2;PRS
uylamoq V;PFV;IND;SG;2;INFM;PST
iborat bo'lmoq V;PFV;FRML;FH;SG;2
bashorat qilmoq V;PRF+PROG;COND;SG;1;PRS
e'lon qilmoq V;PFV;SBJV;SG;2;INFM;FUT
sanchmoq V;PROG;IND;PL;1;PST
bo'yamoq V;PROG;IND;SG;3;PST
o'rganmoq V;PROG;IND;PL;1;FUT
o'pmoq V;SG;1;PRS
uylanmoq V;PFV;SBJV;SG;3;FUT
esga solmoq V;IND;SG;2;INFM;PST
yetmoq V;PRF+PROG;COND;PL;2;PRS
so'z bermoq V;PROG;FRML;IND;SG;2;PRS
yozmoq V;PRF;SBJV;SG;1;PRS
qo'rqitmoq V;PROG;FRML;IND;SG;2;PRS
ketmoq V;PRF+PROG;COND;SG;3;PRS
imkon bermoq V;PFV;IND;SG;1;PST
yopishmoq V;PRF;SBJV;SG;3;PRS
bog'lamoq V;PROG;IND;PL;3;PST
yig'moq V;PRF+PROG;COND;SG;2;INFM;PRS
ishtirok etmoq V;PROG;IND;SG;1;PRS
qaytmoq V;PROG;IND;PL;3;PRS
qidirmoq V;PROG;COND;SG;2;PRS
pushaymon bo'lmoq V;COND;PL;3;PRS
sotmoq V;PRF;FRML;SBJV;SG;2;PRS
kechirmoq V;PFV;SBJV;SG;3;FUT
o'rganmoq V;SG;3;PRS
o'chirmoq V;IND;PL;2;PST
langar tashlamoq V;PROG;IND;SG;1;PST
unashtirmoq V;PRF;SBJV;PL;2;PRS
imkon bermoq V;SBJV;SG;2;PRS
tabriklamoq V;PROG;FRML;IND;SG;2;PST
og'riqsizlantirmoq V;PFV;IND;PL;1;PST
terlamoq V;COND;PL;3;PRS
yiqilmoq V;PL;1;PRS
o'ynamoq V;PRF;SBJV;SG;2;INFM;PRS
tozalamoq V;PROG;IND;SG;3;PST
ogohlantirmoq V;PROG;IND;SG;2;INFM;FUT
o'rgatmoq V;IND;PL;1;PST
javob bermoq V;PFV;SBJV;SG;1;FUT
aniqlamoq V;PFV;FH;PL;1
uchrashmoq V;PRF+PROG;COND;PL;2;PRS
rozi bo'lmoq V;PROG;FRML;IND;SG;2;PST
porlamoq V;PRF;SBJV;SG;2;INFM;PRS
pasaymoq V;COND;SG;3;PRS
qarshilik ko'rsatmoq V;COND;SG;3;PRS
kechiktirmoq V;PROG;IND;PL;3;PST
yozib olmoq V;COND;SG;2;INFM;PRS
tatib ko'rmoq V;FRML;COND;SG;2;PRS
tanishtirmoq V;IND;PL;3;PST
so'ramoq V;IND;PL;2;PST
tiqmoq V;PFV;SBJV;SG;1;FUT
shoshilmoq V;PFV;FH;PL;1
saqlamoq V;PROG;IND;PL;2;FUT
javob bermoq V;COND;PL;1;PRS
qarshilantirmoq V;PROG;IND;PL;1;PRS
bukmoq V;PFV;SBJV;SG;3;FUT
o'g'irlamoq V;PFV;FRML;IND;SG;2;PST
og'riqsizlantirmoq V;PFV;SBJV;SG;2;INFM;FUT
uyg'otmoq V;PRF+PROG;COND;PL;2;PRS
uzoqlashmoq V;PROG;IND;PL;2;PRS
pullamoq V;PRF+PROG;COND;SG;2;INFM;PRS
taramoq V;PROG;COND;SG;2;PRS
sirpanmoq V;PFV;IND;PL;2;PST
rivojlanmoq V;COND;PL;3;PRS
yo'talmoq V;PFV;IND;PL;2;PST
tutmoq V;PRF;SBJV;SG;3;PRS
pishirmoq V;PFV;IND;SG;3;PST
o'ldirmoq V;PRF;FRML;SBJV;SG;2;PRS
sotmoq V;PRF;SBJV;PL;2;PRS
qayta olmoq V;PFV;SBJV;SG;2;INFM;FUT
sachratmoq V;PRF;SBJV;PL;1;PRS
parchalamoq V;PROG;FRML;IND;SG;2;PST
qizq'anmoq V;PROG;FRML;IND;SG;2;PRS
hal qilmoq V;PROG;FRML;IND;SG;2;FUT
sezmoq V;IND;SG;2;INFM;PST
uyg'otmoq V;COND;PL;1;PRS
yordam bermoq V;PFV;FRML;SBJV;SG;2;FUT
qo'llamoq V;IND;SG;1;PST
amin bo'lmoq V;PROG;IND;SG;2;INFM;FUT
o'g'irlab ketmoq V;PRF+PROG;COND;SG;1;PRS
o'g'irlamoq V;PFV;FH;SG;2
qo'lga tushirmoq V;PRF;SBJV;PL;1;PRS
siljimoq V;PROG;IND;PL;1;FUT
qatl qilmoq V;IND;PL;3;PST
pastga tushmoq V;PRF;SBJV;SG;1;PRS
aytmoq V;PRF+PROG;COND;SG;2;INFM;PRS
chiqmoq V;PFV;SBJV;SG;2;INFM;FUT
hijjalamoq V;PFV;IND;PL;3;PST
harakat qilib ko'rmoq V;PFV;FRML;SBJV;SG;2;FUT
charchamoq V;PROG;IND;PL;2;FUT
baqirmoq V;PROG;COND;SG;1;PRS
tavsiya etmoq V;PRF;FRML;SBJV;SG;2;PRS
o'zini tutmoq V;PFV;IND;PL;1;PST
tuzmoq V;PFV;SBJV;PL;3;FUT
o'ynamoq V;PFV;SBJV;PL;2;FUT
suyanmoq V;IND;SG;1;PST
xafa qilmoq V;PFV;FH;SG;2
osilmoq V;SBJV;PL;2;PRS
sirpanmoq V;PFV;SBJV;SG;1;FUT
taklif etmoq V;COND;SG;3;PRS
javob bermoq V;SBJV;PL;2;PRS
o'ylamoq V;PFV;FH;PL;1
tiqmoq V;PFV;SBJV;PL;2;FUT
yugurmoq V;PRF;FRML;SBJV;SG;2;PRS
suv qilib ichmoq V;PL;2;PRS
bog'lamoq V;PFV;FH;PL;1
tugatmoq V;PRF;SBJV;PL;1;PRS
xo'mraymoq V;PFV;IND;SG;2;INFM;PST
do'q qilmoq V;PROG;IND;SG;3;PRS
tiqmoq V;PROG;IND;PL;1;PST
ajratmoq V;SBJV;PL;3;PRS
turmoq V;PROG;IND;PL;3;PST
dazmollamoq V;SG;2;INFM;PRS
ko'zdan kechirmoq V;PROG;IND;SG;3;PST
qolmoq V;PFV;FH;SG;1
o'lmoq V;PROG;IND;SG;1;PRS
aralashmoq V;PRF+PROG;COND;SG;3;PRS
qochmoq V;PROG;IND;PL;2;PST
qulflamoq V;PFV;FRML;SBJV;SG;2;FUT
kamaytirmoq V;PROG;IND;SG;1;FUT
sabab bo'lmoq V;PFV;SBJV;PL;1;FUT
surtmoq V;PFV;IND;SG;3;PST
zarar yetkazmoq V;PFV;IND;SG;3;PST
horg'in his qilmoq V;PROG;IND;PL;3;PST
reja tuzmoq V;PFV;FRML;SBJV;SG;2;FUT
faxrlanmoq V;PROG;COND;PL;1;PRS
ishtirok etmoq V;PFV;FRML;IND;SG;2;PST
turmoq V;SBJV;SG;1;PRS
bashorat qilmoq V;IND;PL;2;PST
tasvirlamoq V;PFV;SBJV;SG;1;FUT
chizmoq V;PROG;IND;SG;3;FUT
artmoq V;PROG;IND;SG;2;INFM;FUT
buzmoq V;SBJV;PL;2;PRS
terlamoq V;COND;SG;3;PRS
archimoq V;PFV;IND;PL;1;PST
takror qo'ymoq V;PFV;SBJV;PL;2;FUT
jalb qilmoq V;PRF;SBJV;PL;2;PRS
qaror qabul qilmoq V;PROG;IND;PL;1;FUT
uylanmoq V;PFV;FRML;IND;SG;2;PST
aniqlamoq V;COND;PL;2;PRS
yuvinmoq V;PRF+PROG;COND;SG;3;PRS
uxlab qolmoq V;PFV;SBJV;PL;1;FUT
ko'chib ketmoq V;PROG;COND;PL;1;PRS
yetishmoq V;PFV;SBJV;SG;1;FUT
kirmoq V;PFV;FH;SG;1
yopishmoq V;IND;SG;1;PST
katta bo'lmoq V;PRF+PROG;COND;PL;3;PRS
kesmoq V;PFV;FRML;IND;SG;2;PST
yetishmoq V;PROG;IND;PL;3;PRS
kelmoq V;FRML;SBJV;SG;2;PRS
xizmat qilmoq V;SG;2;INFM;PRS
shamollatmoq V;PFV;FH;PL;3
navbatda turmoq V;PROG;IND;PL;3;PRS
sachratmoq V;PRF+PROG;FRML;COND;SG;2;PRS
chaqmoq V;PFV;FRML;IND;SG;2;PST
tan olmoq V;PFV;SBJV;PL;2;FUT
tortmoq V;PROG;IND;PL;3;PRS
so'z bermoq V;PROG;COND;SG;1;PRS
shug'ullanmoq V;PROG;IND;SG;2;INFM;PST
kerak bo'lmoq V;IND;SG;1;PST
qatl qilmoq V;PROG;IND;SG;2;INFM;FUT
yugurmoq V;PROG;IND;SG;2;INFM;FUT
sho'ng'imoq V;FRML;SG;2;PRS
ijozat bermoq V;SG;1;PRS
tuzmoq V;SG;3;PRS
aytmoq V;PRF+PROG;COND;PL;1;PRS
bog'lamoq V;PROG;IND;SG;1;PST
to'plamoq V;PROG;IND;PL;1;FUT
ishonmoq V;PROG;IND;SG;2;INFM;PRS
uchrashmoq V;PFV;FRML;FH;SG;2
sevmoq V;PROG;IND;SG;1;FUT
olib turmoq V;PFV;IND;SG;3;PST
sanchmoq V;PFV;IND;SG;2;INFM;PST
bukmoq V;COND;PL;3;PRS
uzoqlashmoq V;PRF+PROG;COND;SG;1;PRS
topib olmoq V;PROG;IND;SG;3;PST
sirpanmoq V;PFV;FRML;SBJV;SG;2;FUT
hukm qilmoq V;PRF+PROG;COND;PL;2;PRS
qizq'anmoq V;PROG;IND;PL;2;FUT
og'riqsizlantirmoq V;PRF;SBJV;SG;3;PRS
chopmoq V;PRF+PROG;COND;PL;1;PRS
archimoq V;IND;PL;1;PST
reklama qilmoq V;PFV;FH;SG;2
erishmoq V;PROG;IND;SG;2;INFM;PRS
uzr so'ramoq V;COND;PL;2;PRS
zabt etmoq V;PFV;FRML;FH;SG;2
qidirmoq V;PFV;SBJV;PL;2;FUT
chopmoq V;PROG;IND;SG;3;PST
muzlatmoq V;PFV;FH;PL;1
ochmoq V;PFV;FRML;FH;SG;2
ko'chmoq V;PFV;SBJV;SG;2;INFM;FUT
cho'kmoq V;PFV;SBJV;SG;3;FUT
osmoq V;PROG;FRML;IND;SG;2;FUT
uxlamoq V;PROG;IND;PL;1;PST
rad etmoq V;PFV;IND;SG;3;PST
demoq V;PRF+PROG;COND;PL;3;PRS
ta'minlamoq V;PRF;SBJV;PL;1;PRS
hibsga olmoq V;PROG;IND;PL;2;PRS
olib turmoq V;PFV;FRML;FH;SG;2
so'z bermoq V;PFV;SBJV;PL;3;FUT
ma'qullamoq V;PROG;IND;SG;1;PST
pishirmoq V;PROG;IND;SG;1;PRS
turmoq V;IND;PL;2;PST
xafa qilmoq V;PROG;FRML;IND;SG;2;FUT
uylanmoq V;IND;PL;3;PST
uxlab qolmoq V;IND;PL;1;PST
unutmoq V;FRML;COND;SG;2;PRS
burmoq V;PFV;FH;SG;3
ishtirok etmoq V;PRF;SBJV;PL;2;PRS
kuymoq V;PROG;IND;PL;3;PST
yo'qolmoq V;PROG;IND;SG;1;PST
bezmoq V;PROG;IND;PL;2;PRS
yuvmoq V;PFV;FH;SG;1
bezmoq V;FRML;IND;SG;2;PST
yetilmoq V;PRF;SBJV;SG;1;PRS
bahs poylamoq V;IND;PL;3;PST
yubormoq V;PROG;IND;SG;3;FUT
jiringlamoq V;IND;SG;1;PST
tarjima qilmoq V;PL;1;PRS
o'tib ketmoq V;PFV;FH;SG;3
ma'lum qilmoq V;IND;SG;1;PST
yutmoq V;PFV;IND;SG;1;PST
bermoq V;PROG;FRML;COND;SG;2;PRS
och qolmoq V;PROG;IND;PL;3;PST
qochmoq V;PRF;SBJV;SG;2;INFM;PRS
o'pmoq V;PRF;SBJV;SG;2;INFM;PRS
xizmat qilmoq V;PFV;FRML;FH;SG;2
bukmoq V;PFV;FRML;IND;SG;2;PST
yetishmoq V;SG;2;INFM;PRS
yashirinmoq V;PFV;FH;PL;1
intervyu olmoq V;PROG;IND;SG;2;INFM;PST
yoqtirmoq V;IND;SG;2;INFM;PST
talaffuz qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
bo'lmoq V;PRF;FRML;SBJV;SG;2;PRS
savdo qilmoq V;PROG;IND;PL;1;PST
otmoq V;PFV;FH;PL;1
tekshirmoq V;PROG;IND;SG;1;PST
unutmoq V;IND;PL;1;PST
isrof qilmoq V;PRF;SBJV;PL;3;PRS
o'tlatmoq V;PL;1;PRS
isrof qilmoq V;PRF+PROG;COND;SG;3;PRS
so'ramoq V;PROG;FRML;IND;SG;2;PST
tegmoq V;PRF;SBJV;SG;1;PRS
yuvmoq V;PROG;IND;PL;1;FUT
yashirinmoq V;PROG;IND;SG;2;INFM;PST
erishmoq V;PFV;IND;SG;3;PST
pasaymoq V;PROG;IND;SG;3;FUT
mug'ombirlik qilmoq V;IND;PL;1;PST
o'z ichiga olmoq V;SBJV;PL;3;PRS
uzoqlashmoq V;PROG;COND;PL;1;PRS
bo'yanmoq V;PRF;SBJV;PL;3;PRS
izlamoq V;PROG;FRML;IND;SG;2;FUT
g'amgin his etmoq V;PRF+PROG;COND;PL;3;PRS
tanishtirmoq V;PROG;IND;SG;1;PST
butamoq V;PFV;FH;SG;2
nafratlanmoq V;PFV;FH;PL;1
azob chekmoq V;SG;3;PRS
osilmoq V;PROG;FRML;IND;SG;2;PRS
asabiylashtirmoq V;PROG;IND;PL;2;FUT
tug'moq V;PL;2;PRS
uylanmoq V;PROG;FRML;IND;SG;2;PST
dush qabul qilmoq V;PROG;IND;SG;3;FUT
ichkariga kirmoq V;PROG;IND;SG;2;INFM;PRS
osmoq V;COND;PL;2;PRS
yashamoq V;PFV;FH;SG;3
eslamoq V;PRF+PROG;COND;PL;3;PRS
taslim bo'lmoq V;PRF;SBJV;PL;3;PRS
horg'in his qilmoq V;PFV;IND;SG;3;PST
kerak bo'lmoq V;PRF+PROG;COND;PL;3;PRS
yashirmoq V;PFV;IND;SG;1;PST
ko'chmoq V;PRF+PROG;COND;PL;2;PRS
sevmoq V;SG;3;PRS
yashamoq V;PFV;FRML;SBJV;SG;2;FUT
isrof qilmoq V;PL;2;PRS
ko'tarib yurmoq V;PROG;IND;SG;2;INFM;FUT
intervyu olmoq V;PROG;IND;PL;1;PST
sevib qolmoq V;PL;2;PRS
yetishmoq V;PRF+PROG;COND;SG;3;PRS
farqlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
qattiq yopmoq V;PROG;IND;PL;3;PST
sotmoq V;FRML;IND;SG;2;PST
ta'minlamoq V;PFV;FH;SG;3
tiqmoq V;PRF;SBJV;SG;3;PRS
tabriklamoq V;PROG;COND;SG;3;PRS
qo'llamoq V;COND;SG;1;PRS
o'chirmoq V;PFV;FH;PL;2
harakat qilmoq V;PRF+PROG;COND;SG;3;PRS
azob chekmoq V;PROG;COND;SG;3;PRS
ko'rmoq V;FRML;SG;2;PRS
suyanmoq V;COND;PL;2;PRS
ijaraga bermoq V;SBJV;SG;1;PRS
pand bermoq V;PFV;SBJV;PL;2;FUT
taklif qilmoq V;PFV;FH;SG;3
orzu qilmoq V;PROG;IND;SG;2;INFM;FUT
qutqarmoq V;PFV;FH;SG;3
qo'rqitmoq V;PROG;IND;SG;1;PRS
buyurtma bermoq V;PROG;IND;SG;1;PST
asabiylashtirmoq V;PRF;SBJV;SG;2;INFM;PRS
do'q qilmoq V;PFV;FH;SG;1
davolamoq V;PROG;IND;PL;1;FUT
ovlamoq V;PRF+PROG;COND;PL;2;PRS
sindirmoq V;PROG;IND;SG;1;PRS
hibsga olmoq V;PFV;SBJV;PL;1;FUT
ma'lum qilmoq V;PFV;SBJV;PL;1;FUT
harakat qilmoq V;PRF;SBJV;SG;3;PRS
olmoq V;PFV;FH;PL;3
quvonmoq V;SBJV;PL;3;PRS
tutmoq V;PFV;FH;SG;1
taramoq V;COND;PL;2;PRS
yoqtirmoq V;FRML;SG;2;PRS
o'chirmoq V;PFV;SBJV;PL;3;FUT
pichirlamoq V;PROG;IND;SG;1;PST
kutmoq V;COND;SG;1;PRS
maslahat bermoq V;IND;PL;2;PST
taklif etmoq V;COND;SG;1;PRS
yashamoq V;PFV;SBJV;PL;1;FUT
yugurmoq V;FRML;SG;2;PRS
tinglamoq V;COND;SG;2;INFM;PRS
vorislik qilmoq V;PFV;IND;PL;1;PST
supurmoq V;FRML;COND;SG;2;PRS
tanlamoq V;IND;PL;3;PST
kuchga kiritmoq V;PFV;FH;SG;1
bekor qilmoq V;PROG;IND;PL;2;FUT
mazax qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
qaramoq V;PRF+PROG;COND;SG;1;PRS
chizmoq V;PRF+PROG;COND;PL;2;PRS
izoh bermoq V;SBJV;PL;3;PRS
kechirmoq V;PROG;COND;PL;3;PRS
yiqilmoq V;PRF+PROG;COND;PL;1;PRS
buzilmoq V;PROG;IND;SG;2;INFM;PST
ayblamoq V;SG;1;PRS
fikr yuritmoq V;COND;SG;1;PRS
eshitmoq V;PFV;IND;SG;3;PST
o'lmoq V;PROG;IND;PL;1;PRS
g'amgin his etmoq V;SG;2;INFM;PRS
tavsiya etmoq V;PROG;COND;SG;3;PRS
qulflamoq V;PROG;IND;SG;1;PST
ogohlantirmoq V;FRML;COND;SG;2;PRS
mazax qilmoq V;PROG;COND;PL;1;PRS
sanatmoq V;SG;2;INFM;PRS
qidirmoq V;IND;PL;3;PST
taqiqlamoq V;PROG;COND;SG;3;PRS
uchirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
olib tashlamoq V;PFV;FH;PL;1
qulflamoq V;PROG;IND;PL;1;PST
sahnalashtirmoq V;PFV;FH;PL;3
yoqtirmoq V;PFV;IND;PL;1;PST
e'lon qilmoq V;IND;SG;3;PST
yashamoq V;PROG;IND;SG;2;INFM;PRS
la'natlamoq V;IND;SG;2;INFM;PST
to'g'ramoq V;PFV;SBJV;SG;1;FUT
zabt etmoq V;PFV;FH;SG;3
reja tuzmoq V;IND;PL;3;PST
so'kinmoq V;PROG;IND;SG;1;PST
qidirmoq V;SBJV;PL;3;PRS
kuymoq V;PROG;FRML;COND;SG;2;PRS
bog'lamoq V;PRF+PROG;COND;PL;1;PRS
azob chekmoq V;PRF;FRML;SBJV;SG;2;PRS
yuzlashmoq V;PROG;IND;SG;1;PRS
rad etmoq V;PROG;IND;SG;1;FUT
ovlamoq V;IND;PL;1;PST
qadoqlamoq V;FRML;SG;2;PRS
emaklamoq V;PFV;SBJV;PL;1;FUT
taramoq V;SG;3;PRS
o'qimoq V;PROG;IND;SG;3;PRS
nafratlanmoq V;PROG;FRML;IND;SG;2;FUT
himoya qilmoq V;PRF;FRML;SBJV;SG;2;PRS
ajratmoq V;PL;1;PRS
tarjima qilmoq V;PRF+PROG;COND;PL;3;PRS
yoqmoq V;PRF+PROG;COND;SG;1;PRS
tavsiya qilmoq V;FRML;IND;SG;2;PST
silkimoq V;PROG;IND;SG;1;PST
kiyinmoq V;PROG;IND;SG;1;PST
porlamoq V;PFV;IND;PL;1;PST
bukchaymoq V;PROG;IND;SG;1;PST
yopishmoq V;PROG;IND;SG;1;FUT
taslim bo'lmoq V;PROG;IND;SG;2;INFM;FUT
uzoqlashmoq V;PFV;IND;PL;2;PST
bilmoq V;IND;PL;1;PST
yetishmoq V;PFV;SBJV;PL;3;FUT
aldamoq V;COND;SG;1;PRS
qarshilantirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
takrorlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
tortmoq V;PFV;FRML;IND;SG;2;PST
rivojlanmoq V;PROG;IND;PL;1;PST
qo'yib yubormoq V;PFV;SBJV;PL;2;FUT
to'xtatmoq V;PROG;FRML;IND;SG;2;PST
takrorlamoq V;IND;PL;3;PST
pand bermoq V;FRML;IND;SG;2;PST
ko'tarmoq V;PFV;IND;PL;2;PST
bo'yatmoq V;PL;2;PRS
yaralamoq V;PROG;COND;SG;2;PRS
yo'talmoq V;PFV;FH;PL;1
yetishmoq V;PFV;IND;SG;1;PST
rivojlantirmoq V;PRF;SBJV;SG;1;PRS
yozmoq V;PFV;SBJV;PL;2;FUT
ezmoq V;PROG;IND;PL;1;FUT
baqirmoq V;SG;3;PRS
aniqlamoq V;PFV;IND;SG;1;PST
o'ynamoq V;COND;SG;2;INFM;PRS
otmoq V;PROG;IND;PL;1;PRS
imkon bermoq V;PRF+PROG;COND;PL;1;PRS
nazarda tutmoq V;PRF+PROG;COND;SG;1;PRS
to'plab qo'ymoq V;PRF+PROG;COND;SG;2;INFM;PRS
qo'lga tushirmoq V;COND;PL;1;PRS
zarar yetkazmoq V;PL;3;PRS
dazmollamoq V;PFV;FH;PL;2
taramoq V;PROG;FRML;IND;SG;2;FUT
ta'mirlamoq V;COND;PL;1;PRS
talab qilmoq V;PFV;FH;SG;3
shubhalanmoq V;PROG;IND;PL;1;PRS
xursand bo'lmoq V;PROG;IND;PL;3;PST
yashirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
haydamoq V;PFV;SBJV;PL;1;FUT
otmoq V;PRF;SBJV;SG;2;INFM;PRS
pushaymon bo'lmoq V;PL;3;PRS
bo'lmoq V;COND;SG;3;PRS
mavjud bo'lmoq V;FRML;SG;2;PRS
uchrashmoq V;PROG;IND;SG;1;PRS
yoqmoq V;PRF+PROG;COND;SG;2;INFM;PRS
yo'talmoq V;PRF;SBJV;SG;3;PRS
uyg'otmoq V;PFV;FH;SG;2
yuklamoq V;PROG;FRML;IND;SG;2;FUT
to'g'ramoq V;COND;PL;3;PRS
tasvirlamoq V;PFV;SBJV;SG;2;INFM;FUT
yasamoq V;PROG;IND;PL;2;PRS
ijozat bermoq V;PFV;FRML;SBJV;SG;2;FUT
yoqtirmoq V;PRF+PROG;COND;SG;1;PRS
ko'zdan kechirmoq V;COND;PL;2;PRS
kiyinmoq V;PRF+PROG;COND;SG;3;PRS
uyalmoq V;PROG;COND;PL;1;PRS
taqiqlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
ishlatmoq V;PFV;FH;PL;1
siqmoq V;PFV;SBJV;SG;1;FUT
do'q qilmoq V;PFV;SBJV;SG;3;FUT
istamoq V;PFV;SBJV;SG;2;INFM;FUT
porlamoq V;PROG;IND;PL;3;FUT
yugurmoq V;PFV;IND;PL;1;PST
kerak bo'lmoq V;PFV;SBJV;SG;1;FUT
tinglamoq V;PRF;FRML;SBJV;SG;2;PRS
shubhalanmoq V;PROG;IND;SG;1;FUT
yopishmoq V;PL;3;PRS
qidirmoq V;SBJV;SG;2;PRS
olmoq V;COND;PL;3;PRS
o'rnashmoq V;PFV;FH;SG;3
so'z bermoq V;PFV;FRML;IND;SG;2;PST
to'smoq V;PFV;SBJV;PL;1;FUT
terlamoq V;PFV;IND;PL;1;PST
yondirmoq V;PROG;IND;SG;3;PRS
to'plamoq V;PFV;SBJV;PL;2;FUT
aylantirmoq V;PRF;FRML;SBJV;SG;2;PRS
vorislik qilmoq V;PROG;IND;SG;2;INFM;FUT
olib turmoq V;PRF;SBJV;SG;1;PRS
o'chirmoq V;PROG;IND;PL;3;PRS
qayta olmoq V;PROG;COND;SG;2;PRS
inkor qilmoq V;PROG;IND;SG;3;PST
ko'zdan g'oyib bo'lmoq V;PROG;COND;SG;2;PRS
talaffuz qilmoq V;PFV;SBJV;SG;1;FUT
farqlamoq V;COND;SG;2;INFM;PRS
rivojlanmoq V;COND;SG;1;PRS
vorislik qilmoq V;PROG;IND;SG;3;FUT
turmoq V;PROG;IND;PL;3;PRS
yo'qotmoq V;PROG;IND;PL;1;FUT
buyurtma bermoq V;PFV;SBJV;PL;2;FUT
bormoq V;PRF;SBJV;SG;1;PRS
taraqqiy etmoq V;PFV;FH;PL;1
qaytmoq V;PFV;IND;SG;1;PST
ko'ndirmoq V;PRF;SBJV;PL;2;PRS
unashtirmoq V;PROG;IND;SG;1;PRS
chekmoq V;PL;2;PRS
uzanmoq V;PROG;IND;SG;3;PRS
mug'ombirlik qilmoq V;PL;1;PRS
chiqarmoq V;PROG;IND;SG;3;PRS
quvontirmoq V;PRF;SBJV;PL;1;PRS
uchrashmoq V;PROG;IND;PL;3;PST
to'lamoq V;PFV;FH;PL;3
to'g'ramoq V;COND;PL;2;PRS
surtmoq V;PROG;COND;SG;1;PRS
yutmoq V;PROG;COND;SG;2;PRS
davom etmoq V;PFV;FH;PL;1
taqiqlamoq V;SG;1;PRS
uylamoq V;PFV;FRML;IND;SG;2;PST
yonmoq V;PFV;FH;PL;3
asabiylashtirmoq V;PROG;IND;SG;1;FUT
mo'ralamoq V;PROG;IND;SG;3;FUT
tushunib yetmoq V;PFV;IND;PL;1;PST
qo'llamoq V;PFV;IND;PL;3;PST
o'g'irlab ketmoq V;PROG;COND;PL;1;PRS
yashirinmoq V;PROG;IND;PL;3;PRS
qo'lga tushirmoq V;COND;SG;2;INFM;PRS
kelmoq V;PROG;FRML;IND;SG;2;PST
tashakkur aytmoq V;PROG;IND;PL;1;FUT
chekmoq V;PROG;IND;PL;3;PST
taraqqiy etmoq V;PROG;IND;SG;1;FUT
tushmoq V;PL;2;PRS
artmoq V;PFV;SBJV;PL;3;FUT
mahkum qilmoq V;PROG;COND;PL;3;PRS
ishonmoq V;PFV;FH;SG;3
ishga olmoq V;PROG;IND;PL;2;PST
tashakkur aytmoq V;PROG;IND;SG;2;INFM;PST
talab qilmoq V;PL;3;PRS
sevmoq V;PROG;IND;PL;3;PRS
terlamoq V;PROG;IND;SG;2;INFM;PST
sotib olmoq V;PROG;IND;SG;2;INFM;PST
kerak bo'lmoq V;PRF;SBJV;SG;1;PRS
yashirinmoq V;PROG;FRML;IND;SG;2;PST
so'ramoq V;PROG;FRML;IND;SG;2;PRS
tirishmoq V;PFV;SBJV;PL;2;FUT
yetmoq V;PROG;IND;PL;2;PST
taraqqiy etmoq V;COND;PL;3;PRS
ajrashmoq V;PFV;IND;PL;2;PST
yormoq V;PFV;IND;SG;3;PST
pishirmoq V;PFV;FH;PL;3
xizmat qilmoq V;PROG;IND;SG;1;PRS
keltirmoq V;IND;SG;1;PST
berib turmoq V;PFV;FH;PL;1
to'plab qo'ymoq V;PFV;FH;PL;3
hukm qilmoq V;PRF;SBJV;PL;1;PRS
o'ynamoq V;SBJV;PL;2;PRS
o'tlatmoq V;COND;PL;2;PRS
kechirmoq V;PROG;IND;PL;3;PRS
qayta olmoq V;SBJV;SG;3;PRS
uloqtirmoq V;PFV;FH;SG;3
tanlamoq V;PROG;IND;SG;2;INFM;FUT
topmoq V;PROG;IND;SG;3;FUT
ketmoq V;PROG;COND;SG;1;PRS
bermoq V;PROG;IND;SG;2;INFM;PRS
langar tashlamoq V;PFV;FH;SG;1
surtmoq V;PROG;IND;SG;3;PST
parchalamoq V;COND;PL;1;PRS
shovqin solmoq V;PRF;SBJV;PL;3;PRS
o'g'irlamoq V;PFV;IND;SG;2;INFM;PST
kechiktirmoq V;PRF;SBJV;SG;1;PRS
talaffuz qilmoq V;PROG;IND;PL;2;PST
intervyu olmoq V;IND;PL;3;PST
uloqtirmoq V;PROG;IND;SG;2;INFM;PST
yetmoq V;PFV;FRML;SBJV;SG;2;FUT
uxlamoq V;PRF;SBJV;PL;1;PRS
tushmoq V;PRF;SBJV;PL;1;PRS
boshlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
yutmoq V;PROG;IND;PL;3;FUT
chiqmoq V;PFV;FH;SG;1
ishontirmoq V;PROG;IND;PL;2;PRS
o'g'irlab ketmoq V;PROG;COND;PL;3;PRS
qimor o'ynamoq V;PROG;FRML;IND;SG;2;FUT
hibsga olmoq V;FRML;COND;SG;2;PRS
gapirmoq V;PFV;IND;SG;3;PST
tortmoq V;PRF+PROG;FRML;COND;SG;2;PRS
yotmoq V;PFV;SBJV;SG;3;FUT
o'ylamoq V;IND;SG;3;PST
boshlamoq V;PFV;FH;PL;3
ko'rsatmoq V;PL;2;PRS
rad etmoq V;PROG;COND;SG;3;PRS
pullamoq V;PFV;SBJV;SG;2;INFM;FUT
chiqarmoq V;PRF;SBJV;PL;1;PRS
uxlamoq V;COND;SG;3;PRS
boshlamoq V;PFV;FRML;IND;SG;2;PST
sotmoq V;PRF+PROG;COND;PL;3;PRS
bog'lamoq V;COND;PL;3;PRS
so'zlashmoq V;PROG;IND;PL;3;PST
aylantirmoq V;PRF;SBJV;SG;2;INFM;PRS
bastalamoq V;PROG;IND;SG;1;PRS
terlamoq V;PRF;SBJV;SG;1;PRS
eshitmoq V;PRF+PROG;COND;PL;2;PRS
nazarda tutmoq V;PFV;SBJV;SG;1;FUT
uxlab qolmoq V;COND;PL;3;PRS
chalmoq V;PRF;SBJV;PL;1;PRS
sachratmoq V;PROG;IND;SG;2;INFM;FUT
tirishmoq V;PFV;SBJV;PL;1;FUT
do'q qilmoq V;PFV;FH;PL;1
tekshirmoq V;PRF;SBJV;SG;1;PRS
yedirmoq V;PROG;IND;PL;2;PST
to'plab qo'ymoq V;PRF;SBJV;SG;3;PRS
faxrlanmoq V;PFV;IND;PL;3;PST
yetishmoq V;IND;SG;1;PST
e'lon qilmoq V;SG;3;PRS
uylamoq V;SBJV;PL;3;PRS
o'tirmoq V;PFV;SBJV;PL;2;FUT
vorislik qilmoq V;PROG;IND;SG;2;INFM;PST
yuzlashmoq V;IND;PL;2;PST
tarjima qilmoq V;PL;3;PRS
yutmoq V;COND;SG;1;PRS
sog'inmoq V;PL;1;PRS
nafratlanmoq V;COND;PL;2;PRS
izlamoq V;PRF;SBJV;SG;2;INFM;PRS
o'ramoq V;PROG;IND;PL;1;PRS
tutmoq V;PFV;SBJV;PL;1;FUT
harakat qilmoq V;PRF+PROG;COND;PL;2;PRS
shamollamoq V;PROG;FRML;COND;SG;2;PRS
ishonmoq V;PFV;SBJV;PL;1;FUT
tug'moq V;PRF;SBJV;SG;3;PRS
marinadlamoq V;PFV;SBJV;SG;1;FUT
kerak bo'lmoq V;PFV;SBJV;PL;1;FUT
mahkum qilmoq V;PROG;IND;SG;2;INFM;FUT
ovlamoq V;FRML;IND;SG;2;PST
o'g'irlamoq V;PFV;SBJV;SG;2;INFM;FUT
to'plamoq V;IND;SG;2;INFM;PST
intervyu olmoq V;PRF;FRML;SBJV;SG;2;PRS
kelmoq V;PROG;COND;PL;2;PRS
mo'ralamoq V;COND;SG;1;PRS
ketmoq V;PRF+PROG;COND;SG;1;PRS
yemoq V;PRF+PROG;COND;SG;1;PRS
iste'foga chiqmoq V;PROG;IND;SG;2;INFM;FUT
yozib olmoq V;PFV;FH;SG;2
katta bo'lmoq V;SG;3;PRS
tozalamoq V;PRF;SBJV;SG;2;INFM;PRS
unutmoq V;PFV;FH;PL;2
quvonmoq V;FRML;SG;2;PRS
yozmoq V;PFV;FH;SG;2
tagiga chizmoq V;PFV;IND;SG;2;INFM;PST
moslashmoq V;PROG;IND;SG;2;INFM;FUT
sog'inmoq V;PFV;SBJV;PL;2;FUT
tortib olmoq V;SG;1;PRS
qadoqlamoq V;PRF+PROG;COND;SG;3;PRS
so'zlashmoq V;PRF+PROG;COND;PL;3;PRS
aytmoq V;IND;PL;3;PST
la'natlamoq V;SG;2;INFM;PRS
mug'ombirlik qilmoq V;PRF+PROG;COND;PL;1;PRS
ko'tarib yurmoq V;COND;SG;3;PRS
sarflamoq V;PROG;IND;SG;1;FUT
osmoq V;PROG;COND;PL;2;PRS
reklama qilmoq V;PFV;FH;SG;1
kutmoq V;IND;PL;1;PST
ko'rishmoq V;PROG;IND;SG;3;PST
yedirmoq V;PFV;FH;SG;2
so'ramoq V;PROG;IND;PL;3;PRS
yugurmoq V;PRF;SBJV;PL;2;PRS
sanchmoq V;PFV;FH;SG;3
ta'minlamoq V;PFV;FH;PL;1
sakramoq V;PROG;IND;SG;2;INFM;PRS
tushunmoq V;PROG;COND;PL;2;PRS
bekor qilmoq V;IND;PL;2;PST
to'smoq V;PFV;SBJV;PL;2;FUT
chiqmoq V;PROG;IND;SG;2;INFM;FUT
aralashmoq V;PROG;IND;PL;1;FUT
pullamoq V;FRML;IND;SG;2;PST
afzal ko'rmoq V;SG;2;INFM;PRS
taramoq V;PRF;FRML;SBJV;SG;2;PRS
sog'inmoq V;FRML;COND;SG;2;PRS
artmoq V;PROG;IND;SG;3;PRS
sog'inmoq V;IND;PL;2;PST
olmoq V;PROG;COND;SG;3;PRS
o'zgartirmoq V;PFV;SBJV;SG;3;FUT
keltirmoq V;COND;PL;1;PRS
hidlamoq V;PROG;COND;PL;1;PRS
tanishtirmoq V;PFV;FH;PL;2
yiqilmoq V;PROG;IND;PL;2;PRS
to'plamoq V;PRF+PROG;COND;SG;3;PRS
yetaklamoq V;PROG;IND;PL;2;PRS
pasaymoq V;PROG;IND;SG;1;PST
qo'rqmoq V;PFV;SBJV;PL;1;FUT
osmoq V;PROG;FRML;IND;SG;2;PST
osmoq V;SBJV;PL;3;PRS
baqirmoq V;PRF;FRML;SBJV;SG;2;PRS
emaklamoq V;PFV;SBJV;PL;2;FUT
jondan suymoq V;PROG;IND;SG;1;PRS
taxlamoq V;PL;1;PRS
pastga tushmoq V;PFV;FRML;SBJV;SG;2;FUT
fikr yuritmoq V;PRF;SBJV;PL;2;PRS
qolmoq V;PRF;SBJV;PL;1;PRS
qulflamoq V;PROG;IND;SG;1;FUT
iste'foga chiqmoq V;PFV;FH;PL;2
ishga olmoq V;IND;PL;1;PST
sahnalashtirmoq V;COND;SG;1;PRS
og'riqsizlantirmoq V;PROG;IND;PL;1;FUT
o'tmoq V;PROG;IND;SG;1;FUT
quvontirmoq V;COND;SG;2;INFM;PRS
qidirmoq V;PROG;IND;SG;3;FUT
to'kmoq V;PROG;IND;PL;1;FUT
sachratmoq V;PL;2;PRS
pasaymoq V;PFV;FH;PL;1
hisoblamoq V;PFV;FH;PL;2
chetlashmoq V;COND;PL;2;PRS
chalmoq V;PRF;SBJV;SG;2;INFM;PRS
surtmoq V;PL;3;PRS
bukchaymoq V;PROG;IND;PL;2;PST
o'g'irlab ketmoq V;PFV;SBJV;PL;1;FUT
uchmoq V;FRML;SG;2;PRS
bezmoq V;PROG;FRML;IND;SG;2;FUT
unutmoq V;PROG;IND;SG;1;PRS
och qolmoq V;PROG;IND;PL;2;PST
kiyinmoq V;COND;PL;3;PRS
bekor qilmoq V;PRF+PROG;COND;SG;3;PRS
o'qimoq V;PFV;IND;PL;1;PST
yashirmoq V;PRF+PROG;COND;PL;3;PRS
tanitmoq V;PRF;SBJV;PL;1;PRS
olib turmoq V;PROG;FRML;IND;SG;2;PRS
bormoq V;PFV;SBJV;PL;1;FUT
yig'moq V;PROG;IND;SG;2;INFM;FUT
to'plamoq V;PFV;FH;PL;2
so'zlashmoq V;PROG;IND;PL;1;PRS
ko'ndirmoq V;PFV;FRML;FH;SG;2
tushunib yetmoq V;IND;SG;1;PST
ortidan bormoq V;COND;SG;1;PRS
harakat qilib ko'rmoq V;SBJV;SG;1;PRS
sirpanmoq V;FRML;SG;2;PRS
do'q qilmoq V;IND;PL;3;PST
erishmoq V;PROG;IND;SG;3;PST
tugatmoq V;PFV;SBJV;PL;2;FUT
marinadlamoq V;SG;3;PRS
reklama qilmoq V;PROG;IND;SG;1;PST
qurmoq V;PRF+PROG;FRML;COND;SG;2;PRS
ta'minlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
shoshmoq V;PFV;SBJV;PL;2;FUT
otmoq V;PRF;SBJV;SG;3;PRS
tushunib yetmoq V;SG;3;PRS
tavsiya etmoq V;PROG;IND;SG;1;FUT
jalb qilmoq V;PROG;IND;PL;1;PST
hayratlantirmoq V;IND;PL;1;PST
qattiq yopmoq V;PFV;SBJV;PL;1;FUT
bo'yamoq V;PRF;SBJV;PL;3;PRS
boshlamoq V;PFV;IND;PL;1;PST
qo'riqlamoq V;PROG;IND;PL;3;PST
tegmoq V;PRF+PROG;COND;PL;1;PRS
yo'qolmoq V;PRF+PROG;COND;SG;2;INFM;PRS
buyurtma bermoq V;PRF;FRML;SBJV;SG;2;PRS
berib turmoq V;PROG;IND;PL;2;PST
shovqin solmoq V;PROG;COND;PL;1;PRS
sahnalashtirmoq V;PROG;IND;PL;3;PRS
o'ramoq V;COND;SG;2;INFM;PRS
bog'lamoq V;COND;PL;1;PRS
kulmoq V;PROG;IND;SG;3;FUT
burmoq V;PROG;IND;SG;1;PRS
turmoq V;PRF+PROG;COND;SG;3;PRS
turmoq V;PFV;IND;SG;3;PST
siljimoq V;PROG;IND;SG;2;INFM;PST
hujum qilmoq V;PL;1;PRS
o'tirmoq V;PFV;SBJV;SG;3;FUT
porlamoq V;IND;SG;1;PST
e'lon qilmoq V;FRML;COND;SG;2;PRS
quymoq V;PRF+PROG;COND;PL;3;PRS
rivojlanmoq V;PRF+PROG;FRML;COND;SG;2;PRS
farqlamoq V;IND;PL;2;PST
to'plab qo'ymoq V;PFV;IND;PL;1;PST
to'g'ramoq V;PROG;IND;SG;2;INFM;FUT
jondan suymoq V;PROG;IND;PL;3;PST
suzmoq V;PROG;FRML;IND;SG;2;PRS
kulmoq V;IND;PL;3;PST
yetaklamoq V;PROG;IND;PL;1;PRS
siljimoq V;PRF;SBJV;SG;2;INFM;PRS
ko'ndirmoq V;COND;SG;3;PRS
ishlab chiqarmoq V;PFV;FRML;IND;SG;2;PST
katta qilmoq V;PFV;SBJV;SG;1;FUT
bo'yatmoq V;PFV;FH;SG;3
katta qilmoq V;PFV;FH;PL;2
o'lchamoq V;PROG;IND;SG;2;INFM;FUT
qaytmoq V;COND;SG;1;PRS
boshqarmoq V;COND;SG;3;PRS
o'zini tutmoq V;PROG;COND;SG;1;PRS
taramoq V;PRF;SBJV;SG;2;INFM;PRS
shovqin solmoq V;PFV;IND;SG;3;PST
xursand bo'lmoq V;PRF+PROG;COND;PL;2;PRS
do'q qilmoq V;SG;1;PRS
kezmoq V;PFV;FH;PL;2
tark etmoq V;COND;PL;1;PRS
istamoq V;PFV;IND;PL;2;PST
kechiktirmoq V;PROG;IND;PL;2;PST
chiqarmoq V;PRF+PROG;COND;PL;3;PRS
bilmoq V;PFV;FH;PL;3
faxrlanmoq V;PROG;IND;PL;3;PST
qutqarmoq V;PRF;SBJV;SG;2;INFM;PRS
ta'minlamoq V;COND;SG;1;PRS
tark etmoq V;PFV;IND;PL;1;PST
cho'kmoq V;SBJV;SG;3;PRS
tozalamoq V;FRML;COND;SG;2;PRS
sanatmoq V;PRF+PROG;COND;PL;3;PRS
o'ylamoq V;PRF+PROG;COND;SG;3;PRS
intizorlik bilan kutmoq V;PROG;IND;SG;1;PST
muhokama qilmoq V;PFV;SBJV;SG;3;FUT
haydamoq V;PROG;IND;PL;3;FUT
maslahat bermoq V;PFV;FRML;IND;SG;2;PST
yonmoq V;COND;SG;2;INFM;PRS
sachratmoq V;PROG;IND;SG;1;FUT
tadqiq qilmoq V;PROG;COND;SG;2;PRS
ko'tarib yurmoq V;PFV;SBJV;PL;3;FUT
yedirmoq V;PFV;IND;PL;1;PST
sachratmoq V;FRML;IND;SG;2;PST
buyruq bermoq V;PRF;SBJV;SG;1;PRS
qurmoq V;PROG;IND;PL;1;PST
tortib olmoq V;PRF+PROG;COND;PL;1;PRS
keltirmoq V;FRML;SG;2;PRS
ko'zdan g'oyib bo'lmoq V;PROG;IND;SG;2;INFM;FUT
o'rnashmoq V;COND;PL;2;PRS
chekmoq V;PROG;IND;SG;2;INFM;PST
ko'ndirmoq V;PROG;COND;PL;3;PRS
bo'yamoq V;PROG;IND;SG;2;INFM;PST
yolg'on gapirmoq V;PFV;FRML;FH;SG;2
pushaymon bo'lmoq V;PRF;SBJV;PL;2;PRS
quvmoq V;IND;PL;1;PST
bashorat qilmoq V;SG;1;PRS
qarshilantirmoq V;PFV;FH;SG;1
o'rnatmoq V;PRF+PROG;COND;SG;1;PRS
yubormoq V;IND;PL;1;PST
fikr yuritmoq V;COND;PL;3;PRS
uxlamoq V;PROG;IND;PL;1;PRS
chopmoq V;PFV;SBJV;SG;2;INFM;FUT
og'riqsizlantirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
turmoq V;PRF;SBJV;PL;3;PRS
boshqarmoq V;PFV;IND;PL;2;PST
tushmoq V;IND;PL;2;PST
ozod etmoq V;PROG;IND;SG;1;PRS
ma'lum qilmoq V;PROG;IND;SG;2;INFM;FUT
olib tashlamoq V;PROG;IND;SG;3;PST
ko'rmoq V;SG;3;PRS
taklif qilmoq V;PFV;SBJV;SG;3;FUT
yashirinmoq V;PROG;COND;PL;1;PRS
so'kinmoq V;PROG;IND;PL;3;FUT
yormoq V;PROG;FRML;IND;SG;2;FUT
o'z ichiga olmoq V;PROG;IND;PL;1;PRS
tinglamoq V;PRF+PROG;FRML;COND;SG;2;PRS
talab qilmoq V;PFV;FRML;SBJV;SG;2;FUT
davom etmoq V;SG;2;INFM;PRS
shamollatmoq V;PROG;IND;PL;1;PRS
o'g'irlab ketmoq V;PFV;FH;SG;3
katta qilmoq V;PROG;IND;SG;1;FUT
uyalmoq V;PROG;IND;SG;1;FUT
charchamoq V;PFV;FH;PL;2
o'rgatmoq V;PFV;FH;PL;2
tan olmoq V;FRML;COND;SG;2;PRS
boshqarmoq V;PFV;FH;PL;2
bezmoq V;PROG;COND;PL;1;PRS
jiringlamoq V;PROG;IND;SG;3;PRS
ko'ndirmoq V;PRF;FRML;SBJV;SG;2;PRS
artmoq V;PRF;FRML;SBJV;SG;2;PRS
qidirmoq V;IND;SG;3;PST
eslamoq V;PFV;FH;PL;3
o'tirmoq V;PL;1;PRS
shovqin solmoq V;PROG;IND;SG;3;PST
supurmoq V;PFV;SBJV;SG;3;FUT
yetkazmoq V;PROG;COND;PL;3;PRS
o'tib ketmoq V;PFV;IND;SG;1;PST
yozmoq V;COND;SG;1;PRS
uzanmoq V;PRF+PROG;COND;SG;2;INFM;PRS
tark etmoq V;PROG;IND;SG;2;INFM;PRS
o'zgartirmoq V;PRF;SBJV;SG;1;PRS
artmoq V;PFV;FH;SG;3
silkimoq V;PROG;IND;SG;2;INFM;FUT
taqiqlamoq V;COND;SG;3;PRS
bo'yatmoq V;IND;SG;2;INFM;PST
mug'ombirlik qilmoq V;PROG;IND;SG;2;INFM;FUT
xiyonat qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
so'kinmoq V;PFV;FRML;SBJV;SG;2;FUT
ta'minlamoq V;PROG;IND;SG;1;PRS
so'zlashmoq V;COND;SG;2;INFM;PRS
muzlatmoq V;PROG;IND;SG;2;INFM;FUT
og'riqsizlantirmoq V;PFV;IND;PL;3;PST
olib turmoq V;PROG;IND;SG;1;PRS
yuvinmoq V;SG;3;PRS
archimoq V;PROG;IND;PL;3;PRS
yetaklamoq V;IND;PL;2;PST
ishtirok etmoq V;PROG;IND;SG;1;FUT
ijozat bermoq V;PROG;IND;PL;1;FUT
katta qilmoq V;PFV;SBJV;SG;2;INFM;FUT
ijaraga bermoq V;PL;1;PRS
o'rganmoq V;PFV;IND;PL;3;PST
nafratlanmoq V;IND;PL;1;PST
pand bermoq V;PL;3;PRS
muomalada bo'lmoq V;PROG;COND;SG;3;PRS
tutmoq V;COND;SG;2;INFM;PRS
imkon bermoq V;PRF+PROG;COND;PL;2;PRS
erishmoq V;COND;PL;1;PRS
davom etmoq V;PL;1;PRS
bukchaymoq V;PFV;IND;SG;1;PST
suv qilib ichmoq V;PROG;IND;SG;1;FUT
uchmoq V;PRF+PROG;COND;SG;3;PRS
afzal ko'rmoq V;PROG;COND;PL;3;PRS
uchirmoq V;PRF+PROG;COND;PL;3;PRS
uyalmoq V;IND;SG;1;PST
yormoq V;FRML;SBJV;SG;2;PRS
haydamoq V;PRF+PROG;COND;SG;1;PRS
reklama qilmoq V;PROG;IND;PL;3;FUT
sotib olmoq V;PFV;FH;SG;2
taxlamoq V;PFV;IND;SG;3;PST
yengillashtirmoq V;PL;1;PRS
navbatda turmoq V;PRF;SBJV;SG;3;PRS
davom etmoq V;PROG;FRML;IND;SG;2;PST
langar tashlamoq V;PROG;COND;SG;1;PRS
moslashmoq V;PROG;COND;SG;1;PRS
suv qilib ichmoq V;PFV;SBJV;SG;2;INFM;FUT
farqlamoq V;PROG;IND;SG;2;INFM;FUT
to'xtamga kelmoq V;PRF;FRML;SBJV;SG;2;PRS
amin bo'lmoq V;COND;SG;2;INFM;PRS
tabriklamoq V;COND;SG;2;INFM;PRS
unashtirmoq V;PFV;FH;PL;2
quvonmoq V;PROG;COND;PL;1;PRS
so'ramoq V;COND;SG;2;INFM;PRS
tushunmoq V;SBJV;SG;1;PRS
quymoq V;PROG;COND;PL;1;PRS
sog'inmoq V;PROG;COND;PL;2;PRS
so'kinmoq V;FRML;COND;SG;2;PRS
tutmoq V;PROG;IND;SG;1;FUT
o'tmoq V;PROG;COND;SG;3;PRS
ko'rsatmoq V;SBJV;PL;2;PRS
aniqlamoq V;PFV;IND;PL;3;PST
taklif etmoq V;PROG;IND;PL;2;PST
ko'tarib yurmoq V;PL;3;PRS
tavsiya etmoq V;PROG;IND;SG;3;PST
kesmoq V;PFV;SBJV;PL;2;FUT
qulflamoq V;IND;PL;1;PST
o'lmoq V;PFV;FH;PL;3
paydo bo'lmoq V;PFV;SBJV;PL;1;FUT
o'pmoq V;SG;2;INFM;PRS
turmoq V;COND;SG;1;PRS
suzmoq V;IND;PL;1;PST
yetmoq V;PL;2;PRS
yuzlashmoq V;PROG;COND;PL;1;PRS
g'ashini keltirmoq V;PROG;IND;SG;2;INFM;FUT
paydo bo'lmoq V;PFV;FRML;FH;SG;2
hisoblamoq V;PROG;IND;PL;3;PST
turmoq V;PROG;IND;PL;2;FUT
keltirmoq V;PROG;IND;PL;1;PRS
qo'rqitmoq V;SG;3;PRS
asramoq V;PRF;SBJV;SG;1;PRS
imtihondan o'tmoq V;PROG;IND;SG;2;INFM;PST
sayohat qilmoq V;COND;PL;3;PRS
taslim bo'lmoq V;PFV;IND;PL;2;PST
mazax qilmoq V;PROG;COND;PL;3;PRS
yig'lamoq V;IND;PL;3;PST
qaramoq V;SBJV;SG;2;PRS
g'ashini keltirmoq V;PRF+PROG;COND;PL;1;PRS
e'tibordan chetda qoldirmoq V;PROG;IND;PL;2;PST
quymoq V;PFV;SBJV;SG;1;FUT
tavsiya etmoq V;PROG;IND;PL;2;PRS
uxlab qolmoq V;FRML;COND;SG;2;PRS
ijozat bermoq V;PRF+PROG;COND;SG;1;PRS
siljimoq V;PROG;IND;SG;1;PST
to'plab qo'ymoq V;PROG;IND;SG;2;INFM;PRS
uyalmoq V;PRF;SBJV;SG;1;PRS
yashirinmoq V;PROG;FRML;IND;SG;2;PRS
hijjalamoq V;PL;2;PRS
sayohat qilmoq V;PRF;SBJV;SG;1;PRS
ajrashmoq V;SBJV;SG;2;PRS
rivojlantirmoq V;PROG;COND;SG;3;PRS
yemoq V;PROG;COND;SG;1;PRS
yasamoq V;PFV;SBJV;PL;2;FUT
yo'qotmoq V;PFV;FH;SG;1
yordam bermoq V;PL;1;PRS
taramoq V;SBJV;PL;2;PRS
ishlab chiqarmoq V;PROG;IND;SG;1;FUT
muzlatmoq V;PFV;IND;PL;3;PST
xo'mraymoq V;PFV;IND;PL;2;PST
ma'lum qilmoq V;PROG;COND;SG;3;PRS
kerak bo'lmoq V;PROG;IND;SG;1;FUT
ayb qo'ymoq V;PFV;IND;SG;2;INFM;PST
pullamoq V;FRML;COND;SG;2;PRS
yo'talmoq V;COND;PL;2;PRS
takror qo'ymoq V;IND;SG;2;INFM;PST
yondirmoq V;PROG;COND;PL;1;PRS
taklif etmoq V;PROG;IND;SG;1;FUT
taramoq V;PROG;IND;PL;2;PRS
iborat bo'lmoq V;IND;SG;3;PST
saqlamoq V;PFV;FH;SG;1
buzmoq V;PROG;IND;PL;3;PRS
farqlamoq V;PFV;FH;PL;3
ijaraga bermoq V;SBJV;SG;2;PRS
chopmoq V;PFV;SBJV;PL;1;FUT
yonmoq V;PFV;IND;PL;2;PST
boshqarmoq V;PFV;SBJV;SG;1;FUT
yashirinmoq V;PFV;SBJV;SG;3;FUT
kechirmoq V;PFV;FH;SG;3
taslim bo'lmoq V;PRF;SBJV;PL;2;PRS
sahnalashtirmoq V;PFV;IND;PL;1;PST
e'tibordan chetda qoldirmoq V;PROG;IND;SG;2;INFM;PRS
topib olmoq V;PROG;IND;SG;3;PRS
tatib ko'rmoq V;PFV;IND;SG;3;PST
xo'mraymoq V;PROG;IND;SG;2;INFM;PST
yo'qolmoq V;PFV;SBJV;PL;1;FUT
o'ylamoq V;PROG;IND;PL;3;PRS
o'zgartirmoq V;PROG;IND;SG;1;FUT
yetilmoq V;COND;SG;3;PRS
chiqmoq V;PROG;IND;PL;2;FUT
sabab bo'lmoq V;PFV;FH;SG;2
sho'ng'imoq V;PROG;IND;SG;2;INFM;PST
sug'ormoq V;SBJV;PL;3;PRS
cho'kmoq V;PL;2;PRS
ajratmoq V;PFV;SBJV;PL;2;FUT
kuchga kiritmoq V;IND;SG;3;PST
ko'ndirmoq V;IND;PL;1;PST
ishtirok etmoq V;PFV;SBJV;PL;2;FUT
ko'tarib yurmoq V;PRF;SBJV;PL;1;PRS
takrorlamoq V;PRF;SBJV;SG;1;PRS
mazax qilmoq V;PFV;SBJV;SG;2;INFM;FUT
davom etmoq V;PFV;SBJV;SG;2;INFM;FUT
sho'ng'imoq V;PRF+PROG;FRML;COND;SG;2;PRS
hukm qilmoq V;PROG;COND;PL;1;PRS
uchrashmoq V;IND;SG;1;PST
paydo bo'lmoq V;SG;1;PRS
shoshmoq V;PROG;COND;PL;3;PRS
kelmoq V;FRML;IND;SG;2;PST
yetilmoq V;PROG;COND;PL;1;PRS
tushunmoq V;PROG;IND;SG;3;PST
yengillashtirmoq V;PFV;SBJV;PL;2;FUT
ichmoq V;PROG;COND;PL;1;PRS
tortmoq V;PROG;IND;PL;1;PRS
ayblamoq V;PL;3;PRS
oldini olmoq V;SBJV;SG;2;PRS
bo'yamoq V;COND;SG;3;PRS
olib turmoq V;PROG;IND;SG;2;INFM;PRS
to'g'ramoq V;PROG;IND;PL;1;PST
ko'zdan kechirmoq V;PROG;COND;PL;3;PRS
chiqmoq V;PRF+PROG;COND;PL;2;PRS
pasaymoq V;PFV;SBJV;SG;1;FUT
turmoq V;PROG;FRML;IND;SG;2;PST
ogohlantirmoq V;PFV;SBJV;SG;1;FUT
yig'lamoq V;PRF;SBJV;PL;1;PRS
sirpanmoq V;SG;3;PRS
buzmoq V;PFV;FH;SG;2
nolimoq V;PROG;COND;SG;3;PRS
uyg'otmoq V;PROG;IND;PL;3;PST
tavsiya qilmoq V;PFV;SBJV;PL;3;FUT
buzilmoq V;PFV;SBJV;PL;1;FUT
takrorlamoq V;PFV;FRML;FH;SG;2
bezmoq V;COND;SG;2;INFM;PRS
bo'shatmoq V;PFV;SBJV;SG;2;INFM;FUT
taramoq V;PROG;IND;SG;2;INFM;FUT
qadoqlamoq V;FRML;IND;SG;2;PST
uzr so'ramoq V;PL;3;PRS
chizmoq V;PFV;FRML;SBJV;SG;2;FUT
bo'yamoq V;PRF+PROG;FRML;COND;SG;2;PRS
o'tib ketmoq V;SG;2;INFM;PRS
to'xtatmoq V;PROG;COND;PL;1;PRS
tortib olmoq V;PL;2;PRS
azob chekmoq V;PRF+PROG;COND;PL;3;PRS
ayb qo'ymoq V;PFV;FH;SG;1
berib turmoq V;PRF+PROG;COND;SG;1;PRS
izlamoq V;SG;2;INFM;PRS
ko'zdan g'oyib bo'lmoq V;SG;1;PRS
uxlamoq V;PFV;IND;PL;3;PST
azob chekmoq V;PL;3;PRS
nafratlanmoq V;PROG;IND;SG;1;PRS
tortmoq V;PFV;SBJV;PL;1;FUT
hal qilmoq V;PRF;SBJV;SG;2;INFM;PRS
pichirlamoq V;COND;PL;3;PRS
quymoq V;PFV;FH;PL;1
uyg'otmoq V;IND;PL;2;PST
hibsga olmoq V;IND;PL;2;PST
tekshirmoq V;FRML;SG;2;PRS
sabab bo'lmoq V;PRF;SBJV;SG;3;PRS
bermoq V;PROG;IND;SG;2;INFM;PST
o'rganmoq V;IND;SG;3;PST
kerak bo'lmoq V;COND;PL;1;PRS
tavsiya qilmoq V;PFV;SBJV;PL;2;FUT
ayb qo'ymoq V;COND;SG;2;INFM;PRS
javob bermoq V;COND;SG;2;INFM;PRS
taraqqiy etmoq V;PFV;IND;PL;1;PST
ishontirmoq V;SBJV;PL;2;PRS
tatib ko'rmoq V;PROG;IND;PL;2;FUT
buzilmoq V;COND;PL;1;PRS
butamoq V;PRF+PROG;COND;SG;1;PRS
tushunmoq V;PFV;FRML;FH;SG;2
o'xshamoq V;PROG;IND;SG;3;PST
aylantirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
yiqitmoq V;PFV;IND;SG;3;PST
o'lchamoq V;PFV;FRML;SBJV;SG;2;FUT
istamoq V;PL;3;PRS
zarar yetkazmoq V;PL;2;PRS
o'g'irlab ketmoq V;PROG;IND;SG;2;INFM;PRS
unutmoq V;PRF+PROG;COND;SG;1;PRS
yedirmoq V;IND;SG;2;INFM;PST
sahnalashtirmoq V;PROG;IND;PL;2;FUT
esga solmoq V;PROG;IND;PL;1;PRS
sabab bo'lmoq V;PROG;IND;PL;2;FUT
ayb qo'ymoq V;PROG;IND;PL;1;PST
uzoqlashmoq V;PROG;IND;PL;1;PST
bukchaymoq V;PROG;COND;SG;1;PRS
bilmoq V;PFV;FRML;SBJV;SG;2;FUT
ochmoq V;PRF+PROG;COND;SG;3;PRS
taxlamoq V;PFV;SBJV;SG;3;FUT
dazmollamoq V;PRF;SBJV;PL;2;PRS
quvmoq V;PRF+PROG;FRML;COND;SG;2;PRS
kulmoq V;PROG;COND;SG;3;PRS
kerak bo'lmoq V;PROG;IND;SG;2;INFM;PST
hijjalamoq V;PROG;IND;PL;2;PRS
bezmoq V;PRF+PROG;COND;SG;2;INFM;PRS
o'lchamoq V;PROG;IND;PL;1;PST
o'g'irlamoq V;PRF;FRML;SBJV;SG;2;PRS
aylantirmoq V;COND;PL;3;PRS
e'tibordan chetda qoldirmoq V;PFV;IND;PL;2;PST
rozi bo'lmoq V;PROG;IND;SG;3;FUT
unashtirmoq V;PFV;SBJV;PL;2;FUT
muzlatmoq V;PFV;SBJV;SG;3;FUT
ko'zdan kechirmoq V;PROG;IND;PL;2;FUT
o'tib ketmoq V;PROG;COND;PL;3;PRS
qo'riqlamoq V;PROG;FRML;IND;SG;2;PST
qilmoq V;PRF;SBJV;SG;2;INFM;PRS
tikmoq V;PROG;IND;PL;2;FUT
yemoq V;PFV;FH;SG;3
yaratmoq V;PFV;SBJV;PL;2;FUT
siqmoq V;PROG;COND;SG;3;PRS
yaqinlashmoq V;PROG;COND;SG;3;PRS
nolimoq V;PFV;FH;SG;2
yuklamoq V;COND;SG;1;PRS
davom etmoq V;PROG;COND;SG;1;PRS
savdo qilmoq V;PROG;IND;SG;2;INFM;PRS
rad etmoq V;PFV;FH;SG;1
quvonmoq V;SBJV;SG;1;PRS
pullamoq V;PFV;SBJV;SG;3;FUT
yarashmoq V;IND;PL;3;PST
ishtirok etmoq V;PFV;IND;SG;1;PST
takror qo'ymoq V;PFV;FRML;IND;SG;2;PST
tadqiq qilmoq V;PFV;IND;PL;3;PST
rivojlantirmoq V;PFV;FH;SG;2
kuylamoq V;PL;3;PRS
rivojlantirmoq V;PROG;IND;SG;3;FUT
yo'qolmoq V;COND;SG;3;PRS
aytmoq V;PROG;IND;SG;3;FUT
bezmoq V;PROG;IND;PL;1;FUT
shug'ullanmoq V;PFV;FRML;SBJV;SG;2;FUT
siljimoq V;PFV;FRML;SBJV;SG;2;FUT
muzlatmoq V;PFV;IND;PL;2;PST
yopishmoq V;PRF+PROG;COND;PL;2;PRS
topib olmoq V;COND;SG;1;PRS
tikilmoq V;FRML;COND;SG;2;PRS
ajramoq V;PFV;SBJV;SG;3;FUT
supurmoq V;PRF+PROG;FRML;COND;SG;2;PRS
suv qilib ichmoq V;PFV;IND;SG;3;PST
o'xshamoq V;PROG;FRML;IND;SG;2;FUT
archimoq V;PROG;COND;PL;1;PRS
bo'shatmoq V;PROG;FRML;COND;SG;2;PRS
ishonqiramay turmoq V;PFV;IND;SG;3;PST
mazax qilmoq V;PRF;SBJV;SG;3;PRS
uzoqlashmoq V;PROG;IND;PL;3;FUT
shoshilmoq V;PROG;IND;PL;1;PRS
so'ramoq V;IND;PL;3;PST
sanamoq V;PFV;FH;PL;1
yengillashtirmoq V;PRF;SBJV;PL;1;PRS
bezovta qilmoq V;PRF+PROG;COND;SG;1;PRS
qarshilantirmoq V;COND;PL;3;PRS
yo'qotmoq V;PROG;IND;SG;2;INFM;PRS
o'lchamoq V;PRF;FRML;SBJV;SG;2;PRS
xafa qilmoq V;PFV;FRML;IND;SG;2;PST
o'tib ketmoq V;PROG;IND;PL;1;FUT
muhokama qilmoq V;PROG;FRML;IND;SG;2;PST
ayb qo'ymoq V;PRF+PROG;COND;PL;3;PRS
porlamoq V;COND;SG;3;PRS
qo'rqitmoq V;IND;PL;1;PST
vorislik qilmoq V;COND;SG;3;PRS
tavsiya etmoq V;SG;3;PRS
yordam bermoq V;PRF+PROG;FRML;COND;SG;2;PRS
tavsiya qilmoq V;COND;PL;3;PRS
sotib olmoq V;IND;SG;1;PST
bukmoq V;PROG;COND;SG;3;PRS
archimoq V;PROG;IND;SG;2;INFM;FUT
sevib qolmoq V;PFV;IND;PL;2;PST
shug'ullanmoq V;PROG;IND;SG;2;INFM;PRS
tanlamoq V;SG;3;PRS
o'tmoq V;PROG;FRML;IND;SG;2;FUT
artmoq V;PFV;SBJV;PL;2;FUT
kelmoq V;PRF;SBJV;PL;2;PRS
uchirmoq V;FRML;COND;SG;2;PRS
tug'moq V;PROG;FRML;IND;SG;2;PST
duo qilmoq V;PROG;IND;PL;2;PRS
ishlamoq V;PROG;COND;PL;3;PRS
imkon bermoq V;PFV;IND;PL;2;PST
so'kinmoq V;PROG;IND;SG;3;PRS
tugatmoq V;PFV;SBJV;SG;3;FUT
supurmoq V;PROG;IND;PL;3;PST
to'plab qo'ymoq V;FRML;IND;SG;2;PST
o'tlatmoq V;PRF;FRML;SBJV;SG;2;PRS
ortidan bormoq V;FRML;SG;2;PRS
ishtirok etmoq V;SG;1;PRS
yondirmoq V;PFV;IND;PL;1;PST
yarashmoq V;COND;SG;3;PRS
qizq'anmoq V;PROG;IND;SG;1;PST
tashkil qilmoq V;PFV;FRML;FH;SG;2
yozib olmoq V;PROG;IND;SG;1;PRS
ko'zdan g'oyib bo'lmoq V;PFV;FRML;FH;SG;2
qadoqlamoq V;PROG;COND;SG;2;PRS
qo'lga tushirmoq V;PL;2;PRS
o'rnashmoq V;PRF+PROG;COND;SG;2;INFM;PRS
yozib olmoq V;PFV;FH;SG;3
imtihondan o'tmoq V;FRML;SG;2;PRS
kuylamoq V;SBJV;PL;3;PRS
quymoq V;SG;1;PRS
katta bo'lmoq V;PROG;IND;SG;2;INFM;FUT
chaqmoq V;PFV;SBJV;SG;1;FUT
yuvinmoq V;PL;2;PRS
qaramoq V;PROG;IND;PL;1;PST
qatl qilmoq V;PROG;IND;PL;3;PST
siljimoq V;PROG;IND;PL;2;PRS
yoqtirmoq V;PRF+PROG;COND;SG;3;PRS
tikilmoq V;IND;SG;3;PST
yuzlashmoq V;PROG;COND;SG;1;PRS
dush qabul qilmoq V;PFV;FH;SG;1
o'lmoq V;PROG;IND;PL;1;PST
shamollamoq V;PFV;FH;SG;3
tiqmoq V;PROG;IND;SG;2;INFM;FUT
ichmoq V;SG;1;PRS
surtmoq V;PFV;FH;PL;2
qurmoq V;PROG;IND;SG;1;PST
burmoq V;PROG;IND;PL;3;FUT
tushunib yetmoq V;FRML;SG;2;PRS
talaffuz qilmoq V;PROG;FRML;IND;SG;2;PRS
buzmoq V;SBJV;SG;2;PRS
katta qilmoq V;PFV;IND;PL;2;PST
so'zlashmoq V;SBJV;SG;2;PRS
butamoq V;SBJV;SG;3;PRS
burmoq V;PL;1;PRS
maslahat bermoq V;PRF+PROG;COND;PL;1;PRS
uzanmoq V;PRF;SBJV;PL;2;PRS
pichirlamoq V;PRF;SBJV;PL;3;PRS
o'rnashmoq V;PROG;FRML;IND;SG;2;FUT
savdo qilmoq V;PFV;IND;SG;1;PST
kulmoq V;PRF;SBJV;PL;2;PRS
gapirmoq V;PFV;SBJV;SG;2;INFM;FUT
o'qimoq V;PRF;SBJV;PL;2;PRS
ta'minlamoq V;PROG;IND;PL;3;PRS
boshlamoq V;SG;1;PRS
chopmoq V;PROG;IND;SG;2;INFM;PST
afzal ko'rmoq V;PFV;FRML;SBJV;SG;2;FUT
sevmoq V;PRF+PROG;COND;SG;2;INFM;PRS
qadoqlamoq V;COND;PL;1;PRS
ozod etmoq V;PFV;IND;SG;1;PST
javob bermoq V;PROG;IND;PL;1;PRS
qo'rqitmoq V;PROG;IND;PL;3;PST
tishlamoq V;PROG;IND;PL;3;FUT
berib turmoq V;SG;2;INFM;PRS
boshqarmoq V;PROG;IND;SG;1;PRS
reklama qilmoq V;PL;1;PRS
hujum qilmoq V;PRF;SBJV;PL;2;PRS
sakramoq V;FRML;SG;2;PRS
shug'ullanmoq V;PRF+PROG;FRML;COND;SG;2;PRS
ovlamoq V;SG;2;INFM;PRS
vorislik qilmoq V;PFV;FH;PL;3
boshqarmoq V;PRF+PROG;FRML;COND;SG;2;PRS
yutmoq V;FRML;IND;SG;2;PST
qadoqlamoq V;PROG;IND;SG;3;PST
yemoq V;PRF+PROG;COND;PL;1;PRS
qilmoq V;PFV;FH;SG;2
mug'ombirlik qilmoq V;PFV;IND;SG;3;PST
to'lamoq V;PROG;IND;SG;3;PST
ko'rishmoq V;PRF+PROG;COND;PL;3;PRS
sho'ng'imoq V;PFV;IND;PL;3;PST
o'ldirmoq V;COND;PL;1;PRS
unutmoq V;IND;SG;2;INFM;PST
tagiga chizmoq V;COND;SG;1;PRS
ijozat bermoq V;PFV;IND;SG;1;PST
rivojlantirmoq V;IND;SG;3;PST
charchamoq V;PROG;IND;PL;2;PRS
tan olmoq V;PROG;COND;PL;3;PRS
kerak bo'lmoq V;PRF;SBJV;SG;3;PRS
uxlamoq V;FRML;SG;2;PRS
quvmoq V;PROG;COND;SG;2;PRS
katta bo'lmoq V;PL;1;PRS
ayb qo'ymoq V;PROG;IND;SG;1;FUT
buyruq bermoq V;PROG;IND;SG;1;PRS
to'xtatmoq V;PROG;IND;PL;1;PST
sindirmoq V;SBJV;SG;3;PRS
kezmoq V;PROG;IND;PL;2;PRS
amin bo'lmoq V;PROG;IND;SG;1;PRS
emaklamoq V;COND;PL;3;PRS
xafa qilmoq V;COND;SG;3;PRS
og'riqsizlantirmoq V;PROG;COND;SG;3;PRS
chetlashmoq V;PROG;COND;PL;3;PRS
osilmoq V;PROG;IND;PL;1;FUT
o'tlatmoq V;PROG;IND;SG;1;PST
o'z ichiga olmoq V;PROG;IND;PL;3;PRS
inkor qilmoq V;PFV;SBJV;SG;3;FUT
la'natlamoq V;PRF+PROG;COND;PL;1;PRS
buyruq bermoq V;PFV;SBJV;PL;1;FUT
ajrashmoq V;PROG;IND;SG;2;INFM;PRS
do'q qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
osilmoq V;SBJV;PL;1;PRS
qatl qilmoq V;IND;SG;1;PST
qolmoq V;PROG;IND;SG;2;INFM;PRS
yo'talmoq V;PROG;IND;PL;3;PRS
quvmoq V;SBJV;SG;2;PRS
isrof qilmoq V;PRF;FRML;SBJV;SG;2;PRS
tan olmoq V;PROG;IND;SG;1;FUT
bastalamoq V;PROG;IND;SG;3;PST
rozi bo'lmoq V;COND;SG;2;INFM;PRS
langar tashlamoq V;PFV;IND;SG;3;PST
o'qimoq V;PFV;SBJV;SG;1;FUT
ko'zdan kechirmoq V;PFV;IND;PL;1;PST
kamaytirmoq V;PFV;FRML;SBJV;SG;2;FUT
uloqtirmoq V;PFV;FRML;SBJV;SG;2;FUT
sachratmoq V;PROG;FRML;IND;SG;2;FUT
hujum qilmoq V;PL;3;PRS
reklama qilmoq V;PROG;IND;SG;3;PST
o'rgatmoq V;PROG;IND;SG;1;FUT
jalb qilmoq V;PROG;COND;SG;2;PRS
uyg'onmoq V;PROG;IND;PL;2;PST
yengillashtirmoq V;PROG;FRML;IND;SG;2;PRS
sanamoq V;COND;PL;2;PRS
so'ramoq V;PFV;IND;SG;1;PST
sirpanmoq V;PFV;IND;SG;1;PST
yashirmoq V;SG;1;PRS
osmoq V;PFV;FH;PL;1
narx turmoq V;IND;PL;1;PST
taklif qilmoq V;SG;3;PRS
tug'moq V;PROG;IND;SG;2;INFM;FUT
kechirmoq V;PRF;SBJV;PL;1;PRS
hayratlantirmoq V;PROG;IND;SG;2;INFM;FUT
tozalamoq V;PROG;IND;PL;3;PST
chopmoq V;PROG;IND;SG;1;PST
qo'lga tushirmoq V;PRF;SBJV;SG;2;INFM;PRS
tan olmoq V;PROG;IND;SG;2;INFM;FUT
ichkariga kirmoq V;IND;PL;3;PST
jalb qilmoq V;IND;PL;3;PST
archimoq V;PRF;FRML;SBJV;SG;2;PRS
ma'qullamoq V;IND;PL;1;PST
rivojlanmoq V;IND;PL;3;PST
kesmoq V;PROG;COND;PL;3;PRS
bermoq V;PFV;SBJV;PL;3;FUT
yashirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
cho'kmoq V;PROG;IND;PL;3;PST
siqmoq V;PROG;IND;PL;3;PST
yordam bermoq V;PROG;COND;SG;1;PRS
qidirmoq V;PROG;IND;SG;2;INFM;FUT
tanishtirmoq V;PRF+PROG;COND;SG;3;PRS
o'tirmoq V;COND;PL;2;PRS
ishlamoq V;PFV;SBJV;SG;3;FUT
ishontirmoq V;SG;3;PRS
bezovta qilmoq V;PFV;FH;PL;1
quvmoq V;PROG;COND;PL;1;PRS
yolg'on gapirmoq V;PRF+PROG;COND;SG;1;PRS
taklif qilmoq V;PFV;SBJV;SG;1;FUT
dazmollamoq V;COND;PL;1;PRS
rivojlanmoq V;IND;SG;1;PST
chopmoq V;COND;SG;3;PRS
yozib olmoq V;FRML;SBJV;SG;2;PRS
qo'rqmoq V;PFV;FRML;IND;SG;2;PST
chopmoq V;IND;SG;2;INFM;PST
aldamoq V;FRML;SBJV;SG;2;PRS
quymoq V;PRF+PROG;COND;SG;3;PRS
sahnalashtirmoq V;PRF;SBJV;PL;1;PRS
xo'mraymoq V;PFV;SBJV;SG;3;FUT
osmoq V;PROG;IND;SG;3;PST
sotmoq V;IND;SG;1;PST
qilmoq V;PFV;IND;SG;3;PST
sezmoq V;SBJV;SG;1;PRS
quvontirmoq V;PRF+PROG;COND;PL;1;PRS
duo qilmoq V;PRF+PROG;COND;SG;3;PRS
tarjima qilmoq V;PFV;SBJV;PL;3;FUT
silkimoq V;COND;PL;3;PRS
qizq'anmoq V;PFV;IND;SG;2;INFM;PST
intervyu olmoq V;SG;1;PRS
o'tib ketmoq V;PRF+PROG;COND;PL;2;PRS
qo'lga olmoq V;PRF+PROG;COND;PL;3;PRS
shamollatmoq V;PFV;FH;SG;3
topib olmoq V;PROG;IND;PL;2;PST
azob chekmoq V;PRF+PROG;COND;SG;3;PRS
ichmoq V;PROG;COND;SG;3;PRS
bukmoq V;PFV;FH;SG;1
uylamoq V;PROG;IND;PL;1;FUT
ko'zdan kechirmoq V;PFV;SBJV;SG;3;FUT
bo'yatmoq V;PRF;SBJV;PL;1;PRS
yurmoq V;PROG;IND;PL;1;PST
javob bermoq V;PROG;FRML;IND;SG;2;PST
tishlamoq V;PRF+PROG;COND;SG;3;PRS
uzr so'ramoq V;PROG;IND;SG;1;FUT
pasaymoq V;PFV;FH;SG;3
yordam bermoq V;PFV;SBJV;SG;1;FUT
chizmoq V;PRF;SBJV;SG;2;INFM;PRS
varaqlamoq V;PROG;FRML;IND;SG;2;FUT
haydamoq V;PRF+PROG;COND;SG;2;INFM;PRS
ishga olmoq V;PROG;IND;PL;3;PST
yozib olmoq V;PROG;IND;PL;3;FUT
davolamoq V;PROG;IND;SG;3;FUT
dazmollamoq V;PROG;IND;PL;1;PRS
och qolmoq V;PROG;IND;PL;1;PST
tinglamoq V;FRML;IND;SG;2;PST
ozor bermoq V;IND;SG;1;PST
saqlamoq V;IND;SG;2;INFM;PST
istamoq V;PROG;IND;SG;3;PRS
o'ldirmoq V;PROG;COND;PL;3;PRS
ayblamoq V;PROG;COND;PL;3;PRS
kuylamoq V;PROG;IND;PL;1;PRS
sotib olmoq V;PRF+PROG;COND;SG;3;PRS
nazarda tutmoq V;PROG;FRML;IND;SG;2;FUT
ovlamoq V;PFV;SBJV;SG;3;FUT
yo'qotmoq V;PFV;FRML;IND;SG;2;PST
tavsiya etmoq V;PFV;FH;PL;2
ko'tarib yurmoq V;PROG;IND;SG;2;INFM;PST
sotib olmoq V;COND;PL;1;PRS
kelmoq V;PROG;FRML;IND;SG;2;FUT
olmoq V;PFV;FH;SG;1
dam olmoq V;PFV;SBJV;SG;2;INFM;FUT
suv qilib ichmoq V;PROG;COND;SG;2;PRS
reklama qilmoq V;IND;SG;3;PST
osmoq V;PL;1;PRS
isrof qilmoq V;PFV;SBJV;PL;3;FUT
aniqlamoq V;PROG;COND;SG;2;PRS
iborat bo'lmoq V;COND;SG;1;PRS
uyg'onmoq V;COND;PL;3;PRS
chiqmoq V;COND;PL;3;PRS
hisoblamoq V;PROG;IND;SG;1;FUT
yutmoq V;PFV;FRML;FH;SG;2
qurmoq V;IND;SG;3;PST
ogohlantirmoq V;PFV;FRML;IND;SG;2;PST
chaqmoq V;FRML;SBJV;SG;2;PRS
bog'lamoq V;PROG;IND;SG;1;PRS
turmoq V;IND;SG;3;PST
so'ramoq V;PRF+PROG;FRML;COND;SG;2;PRS
sarflamoq V;PRF+PROG;COND;SG;2;INFM;PRS
sog'inmoq V;PFV;SBJV;PL;3;FUT
kerak bo'lmoq V;PRF+PROG;FRML;COND;SG;2;PRS
izlamoq V;PFV;SBJV;PL;2;FUT
tirishmoq V;PROG;IND;SG;3;PRS
qochmoq V;IND;PL;2;PST
o'tmoq V;PRF;SBJV;SG;1;PRS
hujum qilmoq V;PFV;FH;SG;2
ajrashmoq V;PRF+PROG;COND;SG;3;PRS
hayratlantirmoq V;PFV;SBJV;PL;2;FUT
osmoq V;PROG;IND;SG;2;INFM;PRS
o'ldirmoq V;PROG;IND;PL;3;PRS
yashirmoq V;PROG;IND;PL;3;FUT
sachratmoq V;PFV;SBJV;PL;2;FUT
harakat qilib ko'rmoq V;PRF;SBJV;SG;1;PRS
talab qilmoq V;IND;SG;2;INFM;PST
yolg'on gapirmoq V;PRF;FRML;SBJV;SG;2;PRS
asramoq V;PFV;IND;PL;3;PST
qo'yib yubormoq V;PRF+PROG;COND;SG;2;INFM;PRS
rozi bo'lmoq V;PFV;IND;PL;1;PST
tashkil qilmoq V;PROG;IND;PL;1;PRS
intizorlik bilan kutmoq V;PL;2;PRS
rozi bo'lmoq V;PRF+PROG;COND;PL;1;PRS
marinadlamoq V;PL;2;PRS
o'g'irlab ketmoq V;SG;3;PRS
rivojlantirmoq V;PROG;COND;SG;2;PRS
qidirmoq V;PFV;IND;PL;3;PST
g'ashini keltirmoq V;PFV;IND;SG;2;INFM;PST
chetlashmoq V;PROG;IND;PL;3;FUT
bukmoq V;PFV;IND;PL;3;PST
uylamoq V;IND;PL;1;PST
bormoq V;PROG;COND;PL;1;PRS
hibsga olmoq V;PRF+PROG;FRML;COND;SG;2;PRS
ozor bermoq V;PROG;IND;SG;3;FUT
porlamoq V;PROG;IND;PL;2;PRS
tutmoq V;PL;1;PRS
moslashmoq V;PFV;FH;SG;3
qo'rqmoq V;PFV;SBJV;SG;3;FUT
ichkariga kirmoq V;PROG;IND;SG;3;FUT
gaplashmoq V;PROG;COND;SG;1;PRS
e'tibordan chetda qoldirmoq V;IND;PL;2;PST
ta'mirlamoq V;SG;3;PRS
sevmoq V;PFV;FH;SG;3
chang'i uchmoq V;PROG;FRML;IND;SG;2;PRS
pasaymoq V;SBJV;SG;1;PRS
bog'lamoq V;SG;3;PRS
mahkum qilmoq V;FRML;IND;SG;2;PST
o'tlatmoq V;FRML;SG;2;PRS
yugurmoq V;PFV;IND;PL;3;PST
qaytmoq V;SBJV;PL;1;PRS
osmoq V;SG;1;PRS
quvmoq V;IND;SG;3;PST
ayblamoq V;PRF;SBJV;SG;2;INFM;PRS
davom etmoq V;PRF+PROG;COND;PL;1;PRS
pichirlamoq V;PROG;IND;PL;2;PST
so'kinmoq V;PFV;IND;SG;2;INFM;PST
charchamoq V;PRF;SBJV;PL;2;PRS
langar tashlamoq V;IND;SG;2;INFM;PST
suv qilib ichmoq V;PFV;SBJV;SG;3;FUT
tortib olmoq V;PROG;IND;PL;1;FUT
ko'chib ketmoq V;PFV;FH;PL;3
orzu qilmoq V;PROG;IND;PL;1;PRS
kerak bo'lmoq V;PROG;IND;SG;3;FUT
o'lmoq V;PROG;IND;PL;3;FUT
bilmoq V;PROG;IND;SG;1;FUT
eshitmoq V;IND;SG;3;PST
taklif qilmoq V;PRF;SBJV;SG;1;PRS
pastga tushmoq V;COND;PL;1;PRS
uchrashmoq V;PFV;FRML;IND;SG;2;PST
nazarda tutmoq V;PROG;IND;SG;1;FUT
o'rnatmoq V;COND;PL;2;PRS
yiqitmoq V;SG;3;PRS
so'z bermoq V;PROG;COND;PL;1;PRS
to'xtamga kelmoq V;PFV;IND;SG;2;INFM;PST
boshqarmoq V;PRF;SBJV;PL;3;PRS
urmoq V;PROG;IND;PL;1;PST
xursand bo'lmoq V;COND;SG;2;INFM;PRS
kuylamoq V;PFV;SBJV;SG;3;FUT
bezmoq V;PROG;COND;PL;3;PRS
pushaymon bo'lmoq V;PROG;IND;PL;2;PRS
hibsga olmoq V;PRF;SBJV;SG;1;PRS
yashamoq V;PRF;SBJV;PL;2;PRS
paydo bo'lmoq V;SG;2;INFM;PRS
ishlatmoq V;PRF+PROG;COND;SG;1;PRS
ko'rishmoq V;PFV;SBJV;SG;3;FUT
yubormoq V;PFV;FH;PL;1
sezmoq V;PFV;FH;PL;3
surtmoq V;PFV;FH;SG;1
sakramoq V;COND;SG;1;PRS
hisoblamoq V;PROG;IND;SG;1;PRS
tushunib yetmoq V;PRF;SBJV;SG;2;INFM;PRS
kechirmoq V;PROG;IND;PL;1;FUT
erishmoq V;PROG;IND;PL;3;PRS
hidlamoq V;COND;PL;1;PRS
kechirmoq V;PROG;IND;SG;3;PRS
azob chekmoq V;PROG;IND;SG;3;FUT
o'zini tutmoq V;PROG;IND;SG;1;PST
chekmoq V;PROG;IND;PL;2;FUT
ajramoq V;IND;SG;2;INFM;PST
qidirmoq V;SBJV;SG;3;PRS
harakat qilmoq V;IND;SG;3;PST
chopmoq V;FRML;COND;SG;2;PRS
ajramoq V;COND;SG;3;PRS
suv qilib ichmoq V;PFV;FH;SG;3
tark etmoq V;IND;PL;1;PST
tozalamoq V;PROG;IND;PL;1;FUT
to'xtamga kelmoq V;PL;3;PRS
silkimoq V;PL;3;PRS
uloqtirmoq V;PL;3;PRS
ishlatmoq V;IND;SG;3;PST
tegmoq V;PRF;SBJV;PL;2;PRS
charchamoq V;PFV;FH;SG;3
o'z ichiga olmoq V;PROG;IND;SG;2;INFM;PST
paydo bo'lmoq V;PROG;IND;PL;3;PST
aniqlamoq V;PRF;FRML;SBJV;SG;2;PRS
tug'moq V;PRF+PROG;COND;PL;1;PRS
ezmoq V;PROG;IND;PL;3;FUT
yedirmoq V;PROG;IND;SG;2;INFM;FUT
savdo qilmoq V;COND;PL;3;PRS
uloqtirmoq V;PRF;SBJV;PL;1;PRS
bo'yamoq V;PFV;SBJV;PL;3;FUT
ishlatmoq V;FRML;COND;SG;2;PRS
suv qilib ichmoq V;PROG;IND;SG;3;FUT
jondan suymoq V;PFV;FRML;FH;SG;2
ogohlantirmoq V;PROG;IND;SG;2;INFM;PRS
his qilmoq V;PFV;FH;PL;3
chetlashmoq V;IND;SG;3;PST
himoya qilmoq V;PROG;COND;PL;3;PRS
qo'llamoq V;PROG;FRML;IND;SG;2;PST
urmoq V;SBJV;SG;1;PRS
jalb qilmoq V;PRF;SBJV;SG;2;INFM;PRS
gapirmoq V;SG;3;PRS
tortmoq V;SG;1;PRS
parchalamoq V;PROG;IND;SG;1;PRS
uylamoq V;PROG;IND;PL;1;PST
xafa qilmoq V;PROG;IND;PL;2;PST
uchmoq V;PROG;IND;SG;2;INFM;PST
chekmoq V;PRF;SBJV;SG;3;PRS
mahkum qilmoq V;PRF;FRML;SBJV;SG;2;PRS
qo'lga tushirmoq V;SG;1;PRS
boshlamoq V;IND;SG;2;INFM;PST
supurmoq V;PFV;FH;SG;1
tikmoq V;COND;PL;1;PRS
tarjima qilmoq V;PFV;IND;SG;1;PST
aralashmoq V;PROG;COND;PL;3;PRS
yirtmoq V;PROG;COND;PL;3;PRS
boshqarmoq V;PROG;IND;SG;2;INFM;PRS
qo'rqmoq V;PROG;IND;SG;1;FUT
yugurmoq V;SBJV;SG;2;PRS
kesmoq V;SBJV;SG;3;PRS
qizq'anmoq V;COND;PL;1;PRS
to'xtatmoq V;PROG;IND;SG;1;PRS
yetilmoq V;PRF+PROG;COND;PL;1;PRS
boshlamoq V;PROG;IND;SG;2;INFM;FUT
tark etmoq V;PFV;SBJV;SG;3;FUT
yig'moq V;PFV;SBJV;SG;1;FUT
sug'ormoq V;PROG;IND;PL;3;PST
shamollamoq V;PRF+PROG;COND;SG;3;PRS
hidlamoq V;PRF+PROG;COND;SG;3;PRS
o'zgartirmoq V;PROG;FRML;IND;SG;2;PST
to'xtatmoq V;PFV;IND;SG;2;INFM;PST
umid qilmoq V;PROG;IND;SG;3;PST
katta qilmoq V;IND;SG;1;PST
qarshilantirmoq V;PFV;SBJV;SG;2;INFM;FUT
quvmoq V;PROG;FRML;IND;SG;2;PST
takrorlamoq V;IND;PL;1;PST
yetishmoq V;IND;SG;3;PST
bermoq V;PFV;IND;SG;2;INFM;PST
buzilmoq V;COND;SG;2;INFM;PRS
tortmoq V;COND;PL;3;PRS
ma'lum qilmoq V;PFV;IND;PL;3;PST
yugurmoq V;PFV;IND;SG;3;PST
yozib olmoq V;PROG;COND;SG;1;PRS
sezmoq V;PROG;FRML;COND;SG;2;PRS
kechiktirmoq V;PROG;IND;SG;3;PST
navbatda turmoq V;SG;3;PRS
shovqin solmoq V;PRF+PROG;COND;SG;2;INFM;PRS
olib turmoq V;COND;SG;1;PRS
bo'yanmoq V;PFV;SBJV;SG;2;INFM;FUT
qaror qabul qilmoq V;COND;SG;3;PRS
dush qabul qilmoq V;PRF+PROG;COND;PL;1;PRS
qolmoq V;IND;PL;3;PST
yaralamoq V;PRF+PROG;COND;SG;1;PRS
bahs poylamoq V;PFV;FRML;SBJV;SG;2;FUT
surtmoq V;PROG;IND;PL;2;PST
yugurmoq V;PFV;FH;PL;3
ko'rsatmoq V;PROG;IND;PL;2;FUT
osilmoq V;PRF;FRML;SBJV;SG;2;PRS
mahkum qilmoq V;IND;SG;1;PST
haydamoq V;PFV;FH;PL;1
oldini olmoq V;PRF;FRML;SBJV;SG;2;PRS
bormoq V;IND;SG;1;PST
so'ramoq V;PL;1;PRS
qolmoq V;PROG;COND;SG;1;PRS
qo'yib yubormoq V;PROG;FRML;IND;SG;2;PRS
shug'ullanmoq V;IND;PL;2;PST
o'z ichiga olmoq V;PROG;COND;SG;3;PRS
uylamoq V;PROG;COND;SG;2;PRS
buzilmoq V;PROG;FRML;IND;SG;2;PST
so'ramoq V;PFV;FH;SG;2
paydo bo'lmoq V;COND;SG;1;PRS
pushaymon bo'lmoq V;PROG;IND;SG;2;INFM;PRS
takror qo'ymoq V;PFV;IND;PL;1;PST
chopmoq V;PROG;COND;PL;1;PRS
keltirmoq V;PRF;SBJV;PL;3;PRS
zabt etmoq V;PFV;SBJV;SG;3;FUT
kirmoq V;PFV;FH;PL;3
iborat bo'lmoq V;IND;SG;2;INFM;PST
xiyonat qilmoq V;IND;SG;2;INFM;PST
tuzmoq V;PROG;IND;PL;1;PST
tozalamoq V;PROG;IND;PL;1;PRS
paydo bo'lmoq V;COND;PL;3;PRS
yasamoq V;PL;1;PRS
hayratlantirmoq V;PFV;IND;PL;2;PST
jalb qilmoq V;PFV;FH;PL;3
kulmoq V;PFV;SBJV;SG;3;FUT
marinadlamoq V;PFV;SBJV;SG;2;INFM;FUT
osilmoq V;SBJV;SG;3;PRS
reklama qilmoq V;PFV;FRML;SBJV;SG;2;FUT
tozalamoq V;PFV;FH;PL;2
qayta olmoq V;IND;SG;1;PST
yengillashtirmoq V;PROG;COND;SG;2;PRS
qimor o'ynamoq V;IND;PL;3;PST
o'rgatmoq V;COND;SG;3;PRS
erishmoq V;PROG;COND;PL;1;PRS
yengillashtirmoq V;PFV;FRML;SBJV;SG;2;FUT
qo'yib yubormoq V;PROG;IND;PL;3;PRS
yiqitmoq V;SG;3;PRS
so'kinmoq V;PRF+PROG;COND;SG;1;PRS
uyalmoq V;PROG;IND;SG;2;INFM;PRS
o'zini tutmoq V;PRF;SBJV;PL;2;PRS
tushunmoq V;PROG;IND;SG;1;FUT
iste'foga chiqmoq V;PROG;IND;PL;1;PRS
ma'lum qilmoq V;PL;3;PRS
e'lon qilmoq V;PROG;IND;PL;1;PST
yiqilmoq V;PROG;IND;SG;2;INFM;PRS
pand bermoq V;COND;SG;3;PRS
suzmoq V;PROG;IND;SG;3;PRS
bahs poylamoq V;FRML;IND;SG;2;PST
duo qilmoq V;PRF;SBJV;SG;2;INFM;PRS
taraqqiy etmoq V;COND;SG;2;INFM;PRS
to'smoq V;PFV;FH;SG;3
shoshmoq V;PROG;IND;SG;2;INFM;FUT
uchirmoq V;COND;SG;3;PRS
ta'minlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
sanchmoq V;PRF;SBJV;PL;3;PRS
hukm qilmoq V;PFV;IND;PL;3;PST
sanamoq V;PFV;SBJV;PL;3;FUT
afzal ko'rmoq V;PL;2;PRS
xo'mraymoq V;PRF;SBJV;SG;1;PRS
uyg'onmoq V;COND;PL;1;PRS
o'zini tutmoq V;PL;1;PRS
ishlatmoq V;PFV;SBJV;PL;3;FUT
eslamoq V;SG;2;INFM;PRS
xiyonat qilmoq V;PFV;FRML;FH;SG;2
ko'tarmoq V;PFV;IND;PL;1;PST
aytmoq V;PROG;IND;SG;3;PRS
buzmoq V;PFV;IND;PL;2;PST
ovlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
pullamoq V;SG;1;PRS
quvontirmoq V;SG;2;INFM;PRS
o'ldirmoq V;PROG;IND;PL;3;FUT
buzmoq V;PFV;SBJV;PL;1;FUT
bo'shatmoq V;PRF+PROG;COND;SG;1;PRS
imkon bermoq V;PROG;FRML;IND;SG;2;PST
osmoq V;PFV;IND;PL;1;PST
ko'chib ketmoq V;PFV;FH;SG;3
yengillashtirmoq V;PROG;IND;PL;3;PRS
ma'lum qilmoq V;PROG;IND;SG;3;FUT
aylantirmoq V;PROG;COND;PL;3;PRS
tanlamoq V;PROG;IND;PL;2;PRS
ko'chmoq V;SBJV;PL;3;PRS
o'tmoq V;PFV;SBJV;SG;2;INFM;FUT
urmoq V;PROG;FRML;IND;SG;2;PRS
ta'mirlamoq V;COND;PL;2;PRS
terlamoq V;IND;SG;1;PST
moslashmoq V;IND;PL;3;PST
supurmoq V;PRF;FRML;SBJV;SG;2;PRS
sevib qolmoq V;PL;1;PRS
ko'rmoq V;PROG;FRML;COND;SG;2;PRS
qattiq yopmoq V;SG;1;PRS
pand bermoq V;PROG;IND;PL;3;FUT
sevib qolmoq V;PFV;SBJV;PL;1;FUT
qattiq yopmoq V;PL;1;PRS
ma'lum qilmoq V;PFV;FRML;IND;SG;2;PST
demoq V;PRF+PROG;COND;SG;3;PRS
bitirmoq V;PROG;IND;SG;2;INFM;FUT
davolamoq V;PL;3;PRS
osmoq V;PFV;SBJV;SG;2;INFM;FUT
tirishmoq V;PROG;IND;PL;2;PRS
sakramoq V;PFV;SBJV;SG;1;FUT
hidlamoq V;PRF+PROG;COND;PL;1;PRS
bo'lmoq V;PL;1;PRS
o'chirmoq V;PRF;SBJV;PL;2;PRS
o'zgartirmoq V;COND;PL;3;PRS
moslashmoq V;PFV;FRML;FH;SG;2
ma'lum qilmoq V;FRML;IND;SG;2;PST
kechirmoq V;COND;SG;1;PRS
bo'yatmoq V;PL;3;PRS
paydo bo'lmoq V;PRF+PROG;COND;SG;3;PRS
och qolmoq V;PRF;FRML;SBJV;SG;2;PRS
ketmoq V;PROG;IND;PL;3;PRS
inkor qilmoq V;PROG;IND;SG;2;INFM;FUT
kuylamoq V;PFV;SBJV;PL;3;FUT
bezamoq V;PROG;COND;SG;2;PRS
qimor o'ynamoq V;PFV;FH;SG;2
dam olmoq V;SG;1;PRS
kemada suzmoq V;PRF;SBJV;PL;1;PRS
ta'minlamoq V;PFV;IND;PL;2;PST
kezmoq V;PROG;IND;PL;1;FUT
buzilmoq V;COND;PL;2;PRS
xafa qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
orzu qilmoq V;SG;3;PRS
to'g'ramoq V;PRF;SBJV;SG;3;PRS
tanitmoq V;PL;1;PRS
istamoq V;PROG;COND;SG;3;PRS
ajratmoq V;SBJV;SG;1;PRS
bitirmoq V;PFV;SBJV;PL;2;FUT
tanlamoq V;PFV;SBJV;SG;2;INFM;FUT
bastalamoq V;SG;1;PRS
sabab bo'lmoq V;PFV;SBJV;SG;3;FUT
ajratmoq V;COND;SG;1;PRS
moslashmoq V;PROG;COND;SG;2;PRS
imtihondan o'tmoq V;PRF+PROG;COND;PL;2;PRS
izlamoq V;IND;SG;3;PST
qimor o'ynamoq V;IND;PL;2;PST
to'g'ramoq V;PFV;SBJV;SG;2;INFM;FUT
yarashmoq V;PROG;IND;SG;2;INFM;PRS
harakat qilmoq V;PROG;COND;PL;3;PRS
chekmoq V;COND;PL;2;PRS
yoqmoq V;PRF+PROG;COND;PL;2;PRS
dam olmoq V;SG;3;PRS
tushunmoq V;SBJV;PL;2;PRS
yoqtirmoq V;PFV;IND;SG;1;PST
bekor qilmoq V;PROG;COND;SG;1;PRS
yetilmoq V;PROG;COND;SG;1;PRS
yaratmoq V;PROG;IND;SG;2;INFM;FUT
uloqtirmoq V;COND;SG;1;PRS
muhokama qilmoq V;COND;PL;1;PRS
so'kinmoq V;PFV;SBJV;SG;3;FUT
qarshilik ko'rsatmoq V;PROG;COND;SG;1;PRS
mo'ralamoq V;PROG;IND;SG;3;PST
qochmoq V;PL;2;PRS
asabiylashtirmoq V;PROG;COND;SG;3;PRS
zarar yetkazmoq V;FRML;COND;SG;2;PRS
muzlatmoq V;PFV;FH;PL;3
bashorat qilmoq V;PROG;IND;SG;1;PST
yetmoq V;COND;SG;3;PRS
qizq'anmoq V;COND;PL;2;PRS
marinadlamoq V;PROG;IND;SG;1;PRS
bo'yatmoq V;PROG;COND;SG;3;PRS
tikmoq V;PROG;IND;PL;2;PRS
kechiktirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
uchmoq V;IND;SG;1;PST
yetishmoq V;FRML;IND;SG;2;PST
ma'qullamoq V;PFV;SBJV;PL;3;FUT
chaqmoq V;PROG;IND;SG;1;PRS
chizmoq V;PROG;IND;SG;3;PRS
taqiqlamoq V;PFV;SBJV;PL;1;FUT
amin bo'lmoq V;PRF+PROG;COND;SG;2;INFM;PRS
azob chekmoq V;FRML;IND;SG;2;PST
bo'lmoq V;PROG;COND;SG;1;PRS
pichirlamoq V;PFV;IND;SG;2;INFM;PST
osilmoq V;PRF;SBJV;SG;2;INFM;PRS
rozi bo'lmoq V;PROG;IND;PL;3;PRS
tarjima qilmoq V;PROG;IND;SG;1;PRS
ishga olmoq V;PRF;SBJV;SG;1;PRS
talaffuz qilmoq V;PRF;FRML;SBJV;SG;2;PRS
bukmoq V;PROG;COND;PL;3;PRS
yo'qolmoq V;PFV;IND;PL;1;PST
o'zini tutmoq V;PROG;COND;PL;1;PRS
tadqiq qilmoq V;PROG;FRML;IND;SG;2;PST
to'plab qo'ymoq V;PRF+PROG;COND;PL;1;PRS
zabt etmoq V;PRF+PROG;FRML;COND;SG;2;PRS
buzmoq V;PRF+PROG;COND;SG;3;PRS
tanlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
terlamoq V;PROG;IND;SG;1;PST
shubhalanmoq V;COND;PL;1;PRS
tan olmoq V;SG;2;INFM;PRS
uzoqlashmoq V;COND;PL;3;PRS
duo qilmoq V;IND;SG;2;INFM;PST
nolimoq V;IND;PL;1;PST
qutqarmoq V;PROG;FRML;IND;SG;2;FUT
sog'inmoq V;PROG;IND;SG;3;PRS
intizorlik bilan kutmoq V;PROG;FRML;IND;SG;2;PST
buyruq bermoq V;PROG;IND;PL;3;PRS
duo qilmoq V;COND;PL;2;PRS
tavsiya qilmoq V;PROG;IND;PL;2;PRS
bo'yamoq V;PROG;IND;SG;1;FUT
unashtirmoq V;FRML;SG;2;PRS
ketmoq V;PFV;FRML;FH;SG;2
qutqarmoq V;PRF;SBJV;PL;1;PRS
yetishmoq V;PROG;IND;SG;3;PST
ishontirmoq V;PROG;IND;PL;2;FUT
sarflamoq V;PROG;COND;SG;3;PRS
yetkazmoq V;IND;SG;3;PST
chizmoq V;PROG;IND;PL;1;PRS
ko'chib ketmoq V;PROG;IND;PL;1;FUT
sog'inmoq V;PROG;IND;SG;2;INFM;PRS
yoqmoq V;PL;3;PRS
uzr so'ramoq V;PRF;FRML;SBJV;SG;2;PRS
uylamoq V;PFV;FH;PL;2
kezmoq V;PFV;IND;SG;1;PST
nazarda tutmoq V;FRML;COND;SG;2;PRS
ortidan bormoq V;PROG;IND;PL;3;FUT
varaqlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
sanatmoq V;FRML;IND;SG;2;PST
ayb qo'ymoq V;PROG;IND;PL;2;PST
unutmoq V;COND;SG;1;PRS
bekor qilmoq V;PRF;SBJV;PL;3;PRS
uxlamoq V;PROG;COND;PL;2;PRS
tug'moq V;PFV;SBJV;PL;2;FUT
xizmat qilmoq V;PFV;FH;SG;3
qo'llamoq V;PROG;IND;SG;2;INFM;PRS
orzu qilmoq V;SG;1;PRS
quvmoq V;PROG;COND;SG;3;PRS
yuvmoq V;PFV;FRML;IND;SG;2;PST
eslamoq V;COND;PL;3;PRS
farqlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
gapirmoq V;PROG;COND;PL;1;PRS
uzanmoq V;PRF+PROG;COND;PL;3;PRS
yoqmoq V;PROG;COND;SG;3;PRS
ko'rsatmoq V;PRF;FRML;SBJV;SG;2;PRS
pastga tushmoq V;PROG;COND;SG;3;PRS
amin bo'lmoq V;PROG;IND;SG;3;PST
tanishtirmoq V;PRF;FRML;SBJV;SG;2;PRS
sirpanmoq V;IND;SG;2;INFM;PST
tarjima qilmoq V;PFV;IND;PL;1;PST
qo'lga tushirmoq V;PROG;IND;SG;1;FUT
ko'tarib yurmoq V;PROG;IND;PL;2;PST
ko'zdan kechirmoq V;PFV;FH;SG;2
olmoq V;IND;SG;2;INFM;PST
maslahat bermoq V;PRF+PROG;COND;PL;3;PRS
tiqmoq V;PRF;SBJV;PL;2;PRS
kechikmoq V;PFV;FH;SG;3
to'kmoq V;IND;PL;3;PST
varaqlamoq V;PROG;IND;PL;1;FUT
qutqarmoq V;PROG;IND;SG;1;PST
aniqlamoq V;COND;PL;1;PRS
yiqilmoq V;COND;SG;3;PRS
ajratmoq V;COND;PL;2;PRS
terlamoq V;SG;1;PRS
ko'zdan g'oyib bo'lmoq V;PRF;SBJV;PL;3;PRS
yedirmoq V;SG;2;INFM;PRS
esga solmoq V;PROG;IND;SG;2;INFM;PST
faxrlanmoq V;PFV;SBJV;SG;1;FUT
xizmat qilmoq V;PFV;FH;SG;2
tushunmoq V;PFV;IND;SG;2;INFM;PST
yozib olmoq V;PFV;IND;SG;2;INFM;PST
tasvirlamoq V;PROG;IND;SG;2;INFM;PST
intervyu olmoq V;PRF;SBJV;SG;1;PRS
butamoq V;PFV;IND;PL;3;PST
hal qilmoq V;PFV;FH;SG;1
bilmoq V;FRML;SG;2;PRS
o'tib ketmoq V;PFV;FH;SG;1
yemoq V;PRF;SBJV;PL;1;PRS
suyanmoq V;PROG;IND;PL;2;FUT
bastalamoq V;PROG;COND;PL;1;PRS
sanchmoq V;PRF+PROG;COND;SG;2;INFM;PRS
o'rnatmoq V;PRF+PROG;COND;SG;2;INFM;PRS
o'ldirmoq V;COND;PL;2;PRS
ko'chmoq V;COND;PL;1;PRS
o'z ichiga olmoq V;PFV;FRML;FH;SG;2
tishlamoq V;PRF+PROG;COND;PL;1;PRS
osilmoq V;PROG;IND;SG;2;INFM;FUT
taramoq V;PROG;COND;SG;1;PRS
uxlab qolmoq V;PFV;SBJV;PL;3;FUT
ozod etmoq V;PL;1;PRS
tekshirmoq V;PROG;IND;PL;2;FUT
osmoq V;COND;PL;1;PRS
ovlamoq V;PFV;IND;PL;2;PST
hibsga olmoq V;SBJV;PL;2;PRS
fikr yuritmoq V;PRF;SBJV;PL;3;PRS
to'xtamga kelmoq V;PRF;SBJV;PL;2;PRS
takrorlamoq V;PRF;FRML;SBJV;SG;2;PRS
sho'ng'imoq V;PROG;IND;SG;3;PST
ortidan bormoq V;IND;PL;2;PST
siqmoq V;PFV;SBJV;PL;1;FUT
qo'lga olmoq V;IND;SG;1;PST
langar tashlamoq V;PFV;FH;PL;3
sachratmoq V;PROG;IND;PL;1;PRS
ko'rmoq V;COND;PL;1;PRS
uylamoq V;COND;PL;1;PRS
tekshirmoq V;PRF;SBJV;SG;3;PRS
jiringlamoq V;PFV;SBJV;PL;1;FUT
o'z ichiga olmoq V;PFV;FH;SG;1
o'pmoq V;PROG;IND;PL;2;PST
o'ynamoq V;SBJV;SG;3;PRS
mo'ralamoq V;PROG;IND;SG;1;FUT
hal qilmoq V;IND;SG;1;PST
to'lamoq V;PRF+PROG;COND;PL;2;PRS
ta'kidlamoq V;PROG;IND;PL;1;PST
o'zini tutmoq V;PROG;IND;PL;3;PST
chiqmoq V;PFV;IND;SG;2;INFM;PST
siljimoq V;IND;SG;3;PST
ortidan bormoq V;PROG;IND;SG;3;PST
yedirmoq V;PFV;FRML;IND;SG;2;PST
kulmoq V;PRF;SBJV;SG;3;PRS
sezmoq V;PRF+PROG;COND;PL;2;PRS
davolamoq V;PFV;FH;PL;1
amin bo'lmoq V;PL;2;PRS
osmoq V;PRF;SBJV;SG;2;INFM;PRS
rivojlanmoq V;PL;2;PRS
chiqmoq V;PRF;SBJV;SG;3;PRS
talaffuz qilmoq V;PRF+PROG;COND;SG;1;PRS
taraqqiy etmoq V;PFV;IND;PL;2;PST
o'rganmoq V;PRF;SBJV;PL;3;PRS
o'rab olmoq V;PROG;IND;SG;1;PRS
bezovta qilmoq V;PROG;COND;PL;3;PRS
otmoq V;IND;SG;3;PST
tortmoq V;PFV;IND;PL;1;PST
baqirmoq V;PFV;SBJV;PL;3;FUT
hayratlantirmoq V;COND;SG;1;PRS
ijaraga bermoq V;PROG;IND;PL;2;PST
do'q qilmoq V;PROG;IND;PL;1;PRS
unashtirmoq V;PL;3;PRS
suv qilib ichmoq V;PFV;IND;SG;1;PST
mazax qilmoq V;PROG;IND;SG;3;PRS
ko'rishmoq V;PFV;FRML;SBJV;SG;2;FUT
nafratlanmoq V;PRF+PROG;COND;SG;2;INFM;PRS
ishtirok etmoq V;PFV;SBJV;SG;1;FUT
o'rganmoq V;PRF;FRML;SBJV;SG;2;PRS
tagiga chizmoq V;PFV;IND;SG;3;PST
yig'lamoq V;PRF;SBJV;PL;2;PRS
yashirmoq V;PRF+PROG;COND;SG;3;PRS
yutmoq V;PFV;SBJV;SG;2;INFM;FUT
tishlamoq V;PFV;FH;SG;1
aldamoq V;COND;PL;2;PRS
bog'lamoq V;PROG;IND;PL;2;PST
chekmoq V;PRF;SBJV;SG;1;PRS
olib tashlamoq V;PROG;IND;PL;3;FUT
pichirlamoq V;IND;PL;3;PST
hayron qolmoq V;FRML;SG;2;PRS
osilmoq V;FRML;IND;SG;2;PST
yuvinmoq V;COND;SG;3;PRS
bezamoq V;PROG;FRML;IND;SG;2;PRS
topib olmoq V;PROG;IND;PL;3;PRS
taslim bo'lmoq V;PRF;SBJV;PL;1;PRS
supurmoq V;PROG;FRML;COND;SG;2;PRS
tabriklamoq V;SBJV;PL;2;PRS
tatib ko'rmoq V;PRF+PROG;COND;SG;2;INFM;PRS
tushmoq V;PROG;IND;SG;1;PRS
yuvinmoq V;PFV;SBJV;SG;2;INFM;FUT
yiqilmoq V;COND;SG;1;PRS
imkon bermoq V;COND;PL;3;PRS
emaklamoq V;PFV;IND;PL;2;PST
qo'lga tushirmoq V;PRF;SBJV;PL;3;PRS
uchmoq V;PFV;IND;PL;1;PST
qattiq yopmoq V;PROG;IND;SG;3;FUT
ijaraga bermoq V;PRF+PROG;COND;SG;3;PRS
yaqinlashmoq V;PL;3;PRS
uchrashmoq V;PFV;IND;SG;3;PST
nazarda tutmoq V;COND;PL;1;PRS
tirishmoq V;FRML;IND;SG;2;PST
hujum qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
asabiylashtirmoq V;PFV;FH;PL;3
imtihondan o'tmoq V;COND;SG;2;INFM;PRS
qaror qabul qilmoq V;PFV;FH;PL;1
dam olmoq V;PROG;IND;PL;2;PRS
kamaytirmoq V;PFV;IND;SG;3;PST
himoya qilmoq V;PROG;IND;SG;2;INFM;FUT
imkon bermoq V;SBJV;SG;3;PRS
ko'tarmoq V;PROG;IND;SG;3;PRS
tortmoq V;PFV;FH;PL;1
yo'talmoq V;PRF+PROG;FRML;COND;SG;2;PRS
bermoq V;COND;PL;1;PRS
xo'mraymoq V;PFV;SBJV;PL;2;FUT
o'ynamoq V;PROG;IND;PL;2;PST
muhokama qilmoq V;PL;2;PRS
istamoq V;SG;2;INFM;PRS
ijozat bermoq V;SBJV;PL;3;PRS
charchamoq V;PROG;COND;SG;1;PRS
pasaymoq V;PROG;FRML;IND;SG;2;PST
takrorlamoq V;IND;SG;2;INFM;PST
amin bo'lmoq V;PROG;IND;PL;1;PRS
yashirmoq V;PFV;FRML;FH;SG;2
yondirmoq V;PFV;FH;SG;1
tishlamoq V;SBJV;PL;2;PRS
kechikmoq V;PL;1;PRS
ichkariga kirmoq V;PFV;FRML;FH;SG;2
ma'qullamoq V;SG;2;INFM;PRS
terlamoq V;PFV;IND;PL;3;PST
hujum qilmoq V;PROG;FRML;IND;SG;2;FUT
pand bermoq V;FRML;SG;2;PRS
kuymoq V;PFV;FH;PL;3
charchamoq V;IND;PL;2;PST
o'rganmoq V;PROG;IND;PL;1;PST
oldini olmoq V;PFV;SBJV;SG;2;INFM;FUT
terlamoq V;PRF;FRML;SBJV;SG;2;PRS
kechirmoq V;PROG;IND;PL;3;PST
inkor qilmoq V;PFV;FH;SG;3
qo'llamoq V;PROG;IND;PL;3;PST
nolimoq V;PROG;FRML;IND;SG;2;FUT
tashkil qilmoq V;COND;SG;2;INFM;PRS
qolmoq V;COND;PL;2;PRS
cho'kmoq V;SBJV;PL;1;PRS
sindirmoq V;PFV;FH;SG;1
tortib olmoq V;IND;SG;3;PST
yolg'on gapirmoq V;PROG;IND;SG;2;INFM;PST
bashorat qilmoq V;PROG;FRML;IND;SG;2;PST
yetmoq V;PRF;SBJV;PL;2;PRS
qaramoq V;PL;3;PRS
keltirmoq V;PROG;IND;PL;1;FUT
sevmoq V;PFV;IND;PL;3;PST
tushunmoq V;PFV;FH;PL;3
ishonmoq V;IND;PL;3;PST
sakramoq V;PFV;FRML;SBJV;SG;2;FUT
to'plamoq V;PRF+PROG;COND;PL;3;PRS
ayb qo'ymoq V;COND;SG;1;PRS
so'kinmoq V;COND;PL;2;PRS
o'rgatmoq V;PRF;SBJV;SG;1;PRS
ichmoq V;PROG;IND;PL;3;PRS
esga solmoq V;PROG;FRML;IND;SG;2;PRS
yo'qotmoq V;PRF;SBJV;PL;3;PRS
yetmoq V;PROG;COND;SG;1;PRS
bo'yanmoq V;IND;PL;3;PST
muzlatmoq V;PFV;FH;SG;3
pichirlamoq V;IND;SG;3;PST
navbatda turmoq V;PRF+PROG;COND;SG;1;PRS
o'rganmoq V;PRF;SBJV;SG;2;INFM;PRS
ko'rishmoq V;PROG;IND;PL;1;PRS
ovlamoq V;PL;2;PRS
yetmoq V;PFV;FH;SG;2
sotib olmoq V;PRF+PROG;COND;PL;3;PRS
buzilmoq V;PROG;IND;SG;2;INFM;PRS
javob bermoq V;PROG;FRML;IND;SG;2;FUT
quvontirmoq V;PFV;IND;SG;1;PST
yozib olmoq V;PRF+PROG;COND;PL;2;PRS
yasamoq V;IND;PL;2;PST
so'zlashmoq V;PRF+PROG;FRML;COND;SG;2;PRS
kechikmoq V;PRF+PROG;FRML;COND;SG;2;PRS
tirishmoq V;COND;PL;2;PRS
bo'yatmoq V;COND;SG;2;INFM;PRS
taqiqlamoq V;PROG;IND;SG;2;INFM;FUT
sezmoq V;PFV;FRML;FH;SG;2
ishtirok etmoq V;PFV;FH;PL;3
yig'moq V;PROG;COND;PL;3;PRS
to'lamoq V;PFV;SBJV;SG;1;FUT
hidlamoq V;IND;SG;3;PST
tortmoq V;PFV;FH;PL;2
yolg'on gapirmoq V;IND;SG;2;INFM;PST
ko'rmoq V;PROG;COND;PL;3;PRS
yetkazmoq V;PRF;SBJV;PL;2;PRS
ishonmoq V;PFV;IND;PL;3;PST
ko'rmoq V;PROG;COND;PL;2;PRS
taklif etmoq V;PFV;IND;PL;2;PST
quvonmoq V;PFV;FRML;IND;SG;2;PST
moslashmoq V;PRF+PROG;COND;SG;3;PRS
zabt etmoq V;PFV;FH;PL;3
siqmoq V;PRF+PROG;COND;PL;1;PRS
yo'qotmoq V;PRF;SBJV;PL;2;PRS
sog'inmoq V;IND;PL;3;PST
qatl qilmoq V;PROG;IND;SG;2;INFM;PRS
ko'rmoq V;COND;SG;2;INFM;PRS
tashakkur aytmoq V;PROG;IND;PL;1;PST
pand bermoq V;PFV;FH;SG;2
og'riqsizlantirmoq V;PRF+PROG;COND;PL;1;PRS
qo'rqitmoq V;COND;PL;2;PRS
turmoq V;PRF;SBJV;PL;1;PRS
pand bermoq V;SBJV;PL;2;PRS
qimor o'ynamoq V;PFV;SBJV;PL;2;FUT
bilmoq V;PFV;IND;SG;1;PST
tatib ko'rmoq V;PROG;IND;PL;1;FUT
nolimoq V;PROG;IND;PL;2;FUT
quymoq V;PFV;IND;PL;2;PST
yo'qotmoq V;PRF;SBJV;SG;2;INFM;PRS
ko'rishmoq V;PROG;IND;PL;3;FUT
kirmoq V;PROG;IND;SG;3;FUT
tushmoq V;PFV;IND;SG;3;PST
archimoq V;PRF+PROG;COND;SG;3;PRS
olib turmoq V;PROG;IND;PL;2;PRS
dush qabul qilmoq V;PFV;FH;PL;1
qarshilantirmoq V;PFV;FH;PL;1
ko'chmoq V;PFV;SBJV;SG;3;FUT
pushaymon bo'lmoq V;SG;3;PRS
to'g'ramoq V;PROG;IND;PL;1;PRS
g'amgin his etmoq V;COND;PL;1;PRS
tekshirmoq V;IND;PL;3;PST
kuymoq V;PROG;IND;SG;1;PRS
ko'rishmoq V;PROG;IND;PL;2;FUT
mahkum qilmoq V;PFV;IND;SG;1;PST
ishontirmoq V;PFV;SBJV;SG;3;FUT
ayb qo'ymoq V;PRF;SBJV;PL;3;PRS
o'ldirmoq V;PROG;IND;PL;2;FUT
chang'i uchmoq V;PFV;FH;SG;1
yordam bermoq V;SBJV;SG;1;PRS
tanishtirmoq V;PROG;IND;PL;3;PST
yemoq V;PFV;FH;PL;2
yondirmoq V;COND;SG;1;PRS
o'lmoq V;PROG;COND;SG;3;PRS
artmoq V;PRF+PROG;COND;PL;3;PRS
ta'kidlamoq V;PFV;FRML;SBJV;SG;2;FUT
kemada suzmoq V;COND;PL;3;PRS
och qolmoq V;PL;3;PRS
yo'qotmoq V;PROG;IND;PL;2;FUT
bezmoq V;FRML;COND;SG;2;PRS
qaytmoq V;SG;3;PRS
rozi bo'lmoq V;PFV;SBJV;PL;3;FUT
do'q qilmoq V;PFV;FRML;SBJV;SG;2;FUT
bormoq V;PFV;FH;SG;2
ishlamoq V;PFV;IND;PL;2;PST
to'g'ramoq V;SBJV;SG;2;PRS
ko'chmoq V;PRF;SBJV;PL;2;PRS
osmoq V;PRF+PROG;COND;SG;1;PRS
mahkum qilmoq V;PFV;IND;PL;2;PST
hijjalamoq V;PFV;FH;PL;1
to'xtamga kelmoq V;PROG;IND;PL;3;PRS
isrof qilmoq V;PRF;SBJV;SG;3;PRS
qochmoq V;PROG;COND;PL;2;PRS
ishga olmoq V;PROG;IND;SG;1;FUT
demoq V;COND;SG;3;PRS
ozod etmoq V;PFV;SBJV;SG;3;FUT
tushmoq V;SBJV;PL;2;PRS
yozib olmoq V;SBJV;SG;2;PRS
yurmoq V;PFV;SBJV;PL;3;FUT
ichmoq V;FRML;COND;SG;2;PRS
tanlamoq V;FRML;SBJV;SG;2;PRS
taklif etmoq V;PFV;FRML;FH;SG;2
kechirmoq V;PRF;SBJV;PL;2;PRS
talaffuz qilmoq V;PROG;IND;SG;1;PRS
o'chirmoq V;PROG;IND;PL;2;FUT
amin bo'lmoq V;PROG;IND;PL;3;PRS
olib turmoq V;PROG;IND;PL;2;FUT
yetkazmoq V;PROG;IND;SG;3;PST
bo'yamoq V;PL;3;PRS
pullamoq V;PFV;FRML;SBJV;SG;2;FUT
ma'lum qilmoq V;PRF+PROG;COND;PL;3;PRS
oldini olmoq V;PROG;FRML;IND;SG;2;PRS
sanatmoq V;PFV;FH;SG;2
chizmoq V;PRF+PROG;FRML;COND;SG;2;PRS
yo'talmoq V;PRF+PROG;COND;SG;1;PRS
ajramoq V;FRML;SG;2;PRS
hayron qolmoq V;IND;PL;3;PST
narx turmoq V;PFV;FH;SG;1
uchirmoq V;PFV;IND;SG;1;PST
qo'rqitmoq V;PRF+PROG;COND;PL;2;PRS
tug'moq V;PROG;IND;PL;2;PST
haydamoq V;PROG;IND;SG;1;PRS
archimoq V;COND;PL;3;PRS
so'zlashmoq V;PFV;FH;SG;1
urmoq V;PROG;COND;PL;1;PRS
pushaymon bo'lmoq V;FRML;COND;SG;2;PRS
o'xshamoq V;PL;1;PRS
mo'ralamoq V;PROG;IND;PL;3;FUT
yashirmoq V;PROG;IND;SG;1;FUT
takrorlamoq V;PFV;FH;SG;3
talab qilmoq V;PROG;COND;SG;3;PRS
davolamoq V;PRF+PROG;FRML;COND;SG;2;PRS
o'ynamoq V;PL;1;PRS
tortib olmoq V;PROG;FRML;IND;SG;2;PST
shamollamoq V;PROG;FRML;IND;SG;2;FUT
o'qimoq V;IND;SG;1;PST
o'pmoq V;PROG;COND;SG;1;PRS
ko'zdan g'oyib bo'lmoq V;PROG;IND;SG;3;PST
qattiq yopmoq V;FRML;COND;SG;2;PRS
e'lon qilmoq V;PRF+PROG;COND;PL;1;PRS
silkimoq V;PFV;IND;PL;1;PST
ko'chmoq V;IND;PL;1;PST
unashtirmoq V;IND;PL;3;PST
yo'qolmoq V;PFV;FRML;SBJV;SG;2;FUT
yotmoq V;PL;1;PRS
o'g'irlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
tan olmoq V;PROG;IND;PL;1;PST
tushmoq V;PROG;COND;SG;2;PRS
siljimoq V;PROG;IND;SG;1;PRS
his qilmoq V;PFV;FH;PL;2
shoshmoq V;PRF;SBJV;PL;2;PRS
o'rab olmoq V;SBJV;SG;3;PRS
chiqmoq V;PROG;IND;SG;2;INFM;PRS
bahs poylamoq V;COND;SG;1;PRS
gaplashmoq V;PL;1;PRS
qatl qilmoq V;PROG;IND;PL;2;PRS
topmoq V;PRF+PROG;COND;PL;2;PRS
uylamoq V;PFV;IND;PL;1;PST
ijozat bermoq V;IND;SG;1;PST
o'rab olmoq V;PROG;IND;PL;1;PST
hibsga olmoq V;PL;3;PRS
qimor o'ynamoq V;PROG;IND;SG;1;PRS
uyalmoq V;PROG;COND;SG;1;PRS
reja tuzmoq V;PFV;FH;SG;2
sahnalashtirmoq V;PROG;IND;SG;1;PST
o'rgatmoq V;PFV;FRML;IND;SG;2;PST
qolmoq V;PRF+PROG;COND;PL;2;PRS
sug'ormoq V;IND;SG;3;PST
vorislik qilmoq V;PFV;FH;PL;1
faxrlanmoq V;PFV;SBJV;PL;2;FUT
suyanmoq V;PRF+PROG;COND;PL;2;PRS
yoqmoq V;PROG;IND;PL;2;PRS
siljimoq V;PROG;IND;PL;2;FUT
unutmoq V;PL;1;PRS
yengillashtirmoq V;FRML;COND;SG;2;PRS
tekshirmoq V;PFV;FH;PL;3
tasvirlamoq V;PFV;FRML;FH;SG;2
mazax qilmoq V;PFV;FRML;SBJV;SG;2;FUT
g'ashini keltirmoq V;PRF+PROG;COND;SG;3;PRS
navbatda turmoq V;PFV;IND;SG;1;PST
shubhalanmoq V;PROG;IND;PL;2;PST
yuvinmoq V;SBJV;SG;3;PRS
taqiqlamoq V;PFV;FRML;SBJV;SG;2;FUT
tikilmoq V;PFV;IND;SG;2;INFM;PST
tuzmoq V;COND;PL;2;PRS
aylantirmoq V;PRF+PROG;COND;SG;3;PRS
yoqmoq V;SBJV;PL;1;PRS
yasamoq V;PL;3;PRS
shoshmoq V;COND;SG;3;PRS
pand bermoq V;PRF+PROG;COND;PL;3;PRS
yuzlashmoq V;PFV;FH;PL;3
bormoq V;PFV;IND;SG;3;PST
pasaymoq V;PRF;SBJV;PL;1;PRS
yetkazmoq V;PROG;IND;PL;2;PRS
xizmat qilmoq V;PFV;FH;PL;1
qurmoq V;PFV;FH;PL;3
sayohat qilmoq V;PRF+PROG;COND;PL;1;PRS
izlamoq V;PROG;IND;SG;3;FUT
horg'in his qilmoq V;PRF;SBJV;SG;2;INFM;PRS
o'zini tutmoq V;COND;SG;2;INFM;PRS
yotmoq V;PRF+PROG;COND;PL;2;PRS
o'ldirmoq V;PRF+PROG;COND;SG;1;PRS
o'rganmoq V;COND;SG;2;INFM;PRS
tanlamoq V;PRF+PROG;COND;PL;2;PRS
muzlatmoq V;PFV;FRML;SBJV;SG;2;FUT
ajrashmoq V;PFV;IND;PL;3;PST
suyanmoq V;PFV;FH;SG;2
artmoq V;PRF;SBJV;PL;2;PRS
yaqinlashmoq V;PROG;IND;PL;3;FUT
ochmoq V;PFV;FH;SG;2
imtihondan o'tmoq V;FRML;COND;SG;2;PRS
hukm qilmoq V;PROG;COND;SG;3;PRS
to'kmoq V;PFV;IND;PL;3;PST
ko'chib ketmoq V;PROG;FRML;IND;SG;2;PST
qidirmoq V;PROG;IND;PL;3;PRS
ma'lum qilmoq V;PFV;SBJV;SG;1;FUT
nolimoq V;PROG;IND;PL;2;PST
ko'ndirmoq V;PFV;SBJV;SG;3;FUT
o'tirmoq V;PFV;IND;PL;1;PST
o'z ichiga olmoq V;COND;SG;1;PRS
uxlamoq V;PFV;IND;SG;1;PST
yubormoq V;COND;PL;1;PRS
uzoqlashmoq V;PFV;IND;SG;3;PST
buyruq bermoq V;PRF;SBJV;SG;3;PRS
chaqmoq V;PRF;SBJV;SG;1;PRS
otmoq V;PROG;IND;PL;2;PRS
harakat qilib ko'rmoq V;PROG;COND;SG;3;PRS
sezmoq V;PRF;FRML;SBJV;SG;2;PRS
qo'lga olmoq V;COND;PL;1;PRS
ma'lum qilmoq V;PFV;FH;SG;1
sezmoq V;IND;SG;1;PST
rivojlanmoq V;PRF;SBJV;SG;2;INFM;PRS
sirpanmoq V;PFV;FRML;FH;SG;2
ishontirmoq V;PROG;IND;PL;3;PRS
supurmoq V;PRF;SBJV;SG;3;PRS
yasamoq V;PRF+PROG;COND;PL;2;PRS
boshqarmoq V;IND;SG;3;PST
qulflamoq V;PRF;FRML;SBJV;SG;2;PRS
sanatmoq V;PROG;COND;PL;1;PRS
shubhalanmoq V;PRF;SBJV;PL;1;PRS
to'plab qo'ymoq V;PRF+PROG;COND;PL;3;PRS
sog'inmoq V;SG;1;PRS
qo'rqitmoq V;COND;SG;2;INFM;PRS
ishonmoq V;SBJV;PL;3;PRS
reja tuzmoq V;PRF;SBJV;SG;1;PRS
taqiqlamoq V;FRML;COND;SG;2;PRS
ma'qullamoq V;PFV;FH;SG;3
o'pmoq V;FRML;COND;SG;2;PRS
tikmoq V;PROG;COND;SG;1;PRS
mahkum qilmoq V;PROG;IND;PL;3;FUT
xizmat qilmoq V;PROG;COND;PL;3;PRS
iborat bo'lmoq V;PL;3;PRS
eslamoq V;PFV;FH;PL;1
bilmoq V;PFV;SBJV;SG;3;FUT
zabt etmoq V;PROG;IND;PL;2;PRS
uyalmoq V;PROG;IND;PL;1;PRS
afzal ko'rmoq V;PRF;SBJV;PL;2;PRS
hal qilmoq V;PFV;IND;PL;3;PST
taklif etmoq V;PL;3;PRS
zarar yetkazmoq V;COND;PL;1;PRS
yaqinlashmoq V;PRF+PROG;COND;PL;1;PRS
quvonmoq V;PFV;IND;PL;2;PST
chang'i uchmoq V;PFV;FRML;SBJV;SG;2;FUT
ajramoq V;PRF+PROG;COND;SG;2;INFM;PRS
mahkum qilmoq V;SG;1;PRS
bahs poylamoq V;PL;3;PRS
iborat bo'lmoq V;PFV;IND;SG;2;INFM;PST
kutmoq V;PFV;SBJV;SG;3;FUT
tegmoq V;PFV;FH;SG;1
buzilmoq V;PRF;SBJV;PL;3;PRS
kezmoq V;PROG;IND;PL;3;FUT
harakat qilib ko'rmoq V;COND;SG;1;PRS
boshqarmoq V;PROG;COND;PL;2;PRS
azob chekmoq V;PFV;IND;SG;2;INFM;PST
qo'lga tushirmoq V;FRML;SG;2;PRS
yirtmoq V;PROG;IND;SG;2;INFM;PRS
yetilmoq V;IND;SG;2;INFM;PST
horg'in his qilmoq V;COND;PL;3;PRS
uxlab qolmoq V;PROG;IND;PL;2;PRS
kemada suzmoq V;PFV;IND;PL;3;PST
boshqarmoq V;FRML;IND;SG;2;PST
silkimoq V;PFV;FH;PL;2
keltirmoq V;FRML;IND;SG;2;PST
oldini olmoq V;PRF+PROG;COND;PL;2;PRS
osilmoq V;SBJV;PL;3;PRS
shubhalanmoq V;PFV;IND;SG;3;PST
reklama qilmoq V;PROG;COND;SG;3;PRS
qilmoq V;PFV;FH;PL;1
yiqilmoq V;PROG;IND;SG;3;FUT
yiqitmoq V;COND;SG;1;PRS
ozor bermoq V;PRF;SBJV;SG;3;PRS
mavjud bo'lmoq V;PFV;IND;PL;2;PST
marinadlamoq V;IND;PL;1;PST
buzmoq V;COND;SG;2;INFM;PRS
orzu qilmoq V;PROG;IND;SG;1;PRS
yemoq V;PFV;FH;SG;1
fikr yuritmoq V;PROG;COND;SG;2;PRS
ijozat bermoq V;PFV;FH;PL;3
ko'rmoq V;IND;PL;1;PST
o'rganmoq V;PROG;IND;SG;2;INFM;PRS
javob bermoq V;PRF+PROG;FRML;COND;SG;2;PRS
ochmoq V;PROG;IND;PL;3;PRS
tuzmoq V;IND;PL;3;PST
yolg'on gapirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
taramoq V;COND;PL;1;PRS
zarar yetkazmoq V;IND;PL;1;PST
kuchga kiritmoq V;PFV;IND;PL;2;PST
yormoq V;FRML;COND;SG;2;PRS
varaqlamoq V;PFV;FRML;IND;SG;2;PST
langar tashlamoq V;PFV;FRML;SBJV;SG;2;FUT
sevmoq V;PFV;FH;SG;2
o'zgartirmoq V;PROG;IND;PL;2;PST
osilmoq V;COND;PL;1;PRS
muomalada bo'lmoq V;PFV;SBJV;SG;2;INFM;FUT
tashkil qilmoq V;PL;3;PRS
chiqarmoq V;FRML;IND;SG;2;PST
marinadlamoq V;COND;SG;2;INFM;PRS
kuchga kiritmoq V;PFV;FRML;IND;SG;2;PST
unashtirmoq V;PFV;SBJV;PL;3;FUT
og'riqsizlantirmoq V;SG;3;PRS
taklif qilmoq V;PRF+PROG;COND;SG;1;PRS
yaralamoq V;PFV;FH;SG;1
hukm qilmoq V;PROG;IND;PL;3;PST
tanitmoq V;PFV;IND;SG;2;INFM;PST
mahkum qilmoq V;IND;PL;1;PST
kuylamoq V;PRF;SBJV;SG;2;INFM;PRS
horg'in his qilmoq V;PROG;IND;PL;3;FUT
qo'lga tushirmoq V;IND;SG;2;INFM;PST
bo'yamoq V;COND;PL;2;PRS
ko'ndirmoq V;PROG;IND;PL;3;PRS
ozod etmoq V;PFV;SBJV;PL;1;FUT
yuvinmoq V;PROG;COND;PL;1;PRS
ortidan bormoq V;PRF;SBJV;PL;1;PRS
hisoblamoq V;FRML;COND;SG;2;PRS
kelmoq V;PFV;IND;PL;1;PST
topmoq V;COND;SG;2;INFM;PRS
horg'in his qilmoq V;PROG;IND;PL;1;PST
ajrashmoq V;PFV;FRML;SBJV;SG;2;FUT
bukmoq V;FRML;SG;2;PRS
ko'rishmoq V;PROG;IND;PL;2;PRS
uchrashmoq V;PROG;IND;SG;2;INFM;PRS
qaytmoq V;PRF+PROG;COND;PL;1;PRS
yaqinlashmoq V;PFV;SBJV;PL;3;FUT
sirpanmoq V;PROG;IND;PL;2;PRS
olib turmoq V;PL;2;PRS
tanishtirmoq V;PFV;IND;SG;2;INFM;PST
qaytmoq V;IND;SG;1;PST
tushunmoq V;PROG;COND;SG;3;PRS
ajrashmoq V;PROG;COND;PL;1;PRS
qaytmoq V;PROG;FRML;IND;SG;2;PST
cho'kmoq V;PFV;FRML;IND;SG;2;PST
to'plab qo'ymoq V;PROG;FRML;IND;SG;2;FUT
tutmoq V;PRF+PROG;COND;SG;2;INFM;PRS
cho'kmoq V;FRML;SBJV;SG;2;PRS
tirishmoq V;PRF+PROG;COND;SG;1;PRS
chopmoq V;PROG;IND;PL;3;PRS
buzmoq V;PROG;IND;SG;1;PRS
hujum qilmoq V;PRF;SBJV;PL;3;PRS
ishlatmoq V;PROG;COND;PL;1;PRS
qayta olmoq V;COND;SG;2;INFM;PRS
yemoq V;PROG;IND;PL;1;PST
mo'ralamoq V;PROG;IND;SG;1;PRS
bilmoq V;PROG;COND;SG;2;PRS
bitirmoq V;PFV;SBJV;SG;2;INFM;FUT
dam olmoq V;PROG;IND;SG;3;PRS
to'xtamga kelmoq V;PROG;IND;PL;1;PRS
turmoq V;IND;SG;1;PST
dush qabul qilmoq V;SG;3;PRS
qaramoq V;IND;SG;3;PST
farqlamoq V;SG;2;INFM;PRS
o'zini tutmoq V;COND;PL;1;PRS
sarflamoq V;PL;3;PRS
olib turmoq V;PRF;SBJV;SG;3;PRS
to'xtatmoq V;PRF;FRML;SBJV;SG;2;PRS
butamoq V;PROG;IND;PL;3;PST
og'riqsizlantirmoq V;PROG;IND;SG;3;PST
o'tlatmoq V;PROG;IND;PL;3;PST
ovlamoq V;PROG;IND;PL;2;PST
ko'chib ketmoq V;PRF;SBJV;PL;2;PRS
qochmoq V;PRF+PROG;COND;SG;2;INFM;PRS
bormoq V;IND;SG;2;INFM;PST
xursand bo'lmoq V;PRF+PROG;COND;SG;3;PRS
vorislik qilmoq V;PFV;IND;SG;2;INFM;PST
qimor o'ynamoq V;PFV;SBJV;SG;2;INFM;FUT
urmoq V;PRF+PROG;COND;SG;3;PRS
mavjud bo'lmoq V;PFV;FH;PL;1
chizmoq V;PFV;IND;SG;2;INFM;PST
archimoq V;PL;1;PRS
nafratlanmoq V;PFV;SBJV;PL;2;FUT
sug'ormoq V;PFV;IND;SG;2;INFM;PST
hayratlantirmoq V;PROG;IND;PL;2;PRS
quymoq V;PRF;FRML;SBJV;SG;2;PRS
parchalamoq V;PRF;SBJV;PL;3;PRS
unashtirmoq V;PROG;IND;SG;1;FUT
tugatmoq V;PROG;FRML;IND;SG;2;PST
to'smoq V;FRML;COND;SG;2;PRS
erishmoq V;IND;PL;3;PST
xiyonat qilmoq V;PROG;FRML;IND;SG;2;PST
tushunib yetmoq V;PFV;SBJV;PL;3;FUT
bo'yamoq V;PRF+PROG;COND;PL;2;PRS
to'smoq V;COND;PL;1;PRS
qidirmoq V;PROG;COND;PL;2;PRS
xizmat qilmoq V;PFV;IND;PL;1;PST
tashkil qilmoq V;FRML;IND;SG;2;PST
olib tashlamoq V;PFV;IND;PL;2;PST
intizorlik bilan kutmoq V;PFV;IND;SG;1;PST
qo'yib yubormoq V;IND;PL;3;PST
yotmoq V;PRF;SBJV;SG;2;INFM;PRS
buyurtma bermoq V;PROG;IND;SG;1;PRS
og'riqsizlantirmoq V;PROG;IND;PL;2;PRS
to'kmoq V;PROG;IND;SG;1;PST
uyalmoq V;PROG;COND;SG;2;PRS
aldamoq V;PROG;IND;SG;2;INFM;FUT
tegmoq V;FRML;SG;2;PRS
ma'lum qilmoq V;PROG;IND;PL;1;PST
reklama qilmoq V;PFV;IND;PL;2;PST
sirpanmoq V;PRF+PROG;COND;SG;3;PRS
buzilmoq V;PFV;FRML;SBJV;SG;2;FUT
yo'qolmoq V;SG;2;INFM;PRS
sarflamoq V;PRF;SBJV;PL;3;PRS
haydamoq V;PRF;SBJV;SG;3;PRS
savdo qilmoq V;PROG;FRML;IND;SG;2;PRS
so'zlashmoq V;IND;PL;3;PST
parchalamoq V;PFV;FH;SG;3
yarashmoq V;PFV;FH;SG;2
sotmoq V;IND;PL;1;PST
qurmoq V;PFV;FH;SG;3
ajramoq V;PROG;FRML;IND;SG;2;PRS
do'q qilmoq V;PROG;IND;SG;2;INFM;PST
sindirmoq V;PFV;FRML;FH;SG;2
tishlamoq V;PROG;FRML;COND;SG;2;PRS
yopishmoq V;PFV;IND;PL;3;PST
yetilmoq V;PFV;FH;SG;2
ozor bermoq V;PRF+PROG;COND;SG;2;INFM;PRS
yedirmoq V;COND;PL;3;PRS
ko'rsatmoq V;PRF+PROG;COND;SG;1;PRS
yonmoq V;PFV;SBJV;SG;1;FUT
unutmoq V;PROG;IND;PL;1;PST
kechiktirmoq V;PFV;SBJV;PL;1;FUT
yubormoq V;PFV;SBJV;PL;2;FUT
yo'qotmoq V;PROG;FRML;COND;SG;2;PRS
varaqlamoq V;IND;PL;3;PST
so'z bermoq V;PFV;FH;PL;1
kiyinmoq V;PRF+PROG;COND;SG;2;INFM;PRS
osmoq V;PRF+PROG;COND;PL;1;PRS
ko'rmoq V;PROG;FRML;IND;SG;2;FUT
uylamoq V;SBJV;PL;1;PRS
tuzmoq V;PROG;IND;PL;2;PST
navbatda turmoq V;SG;1;PRS
tushmoq V;PROG;IND;PL;2;PRS
yetilmoq V;IND;PL;3;PST
chaqmoq V;PROG;IND;SG;3;FUT
ko'chmoq V;IND;PL;2;PST
suyanmoq V;PFV;SBJV;SG;2;INFM;FUT
taklif etmoq V;PROG;IND;SG;3;FUT
yordam bermoq V;PRF+PROG;COND;PL;1;PRS
ko'zdan kechirmoq V;PROG;IND;SG;3;PRS
to'lamoq V;COND;SG;3;PRS
pichirlamoq V;PROG;IND;SG;3;PST
hujum qilmoq V;PROG;IND;SG;1;PST
hayratlantirmoq V;PROG;COND;PL;1;PRS
erishmoq V;PROG;COND;PL;3;PRS
qayta olmoq V;FRML;IND;SG;2;PST
qarshilantirmoq V;PROG;IND;SG;3;PST
taslim bo'lmoq V;PRF;SBJV;SG;3;PRS
sindirmoq V;PFV;SBJV;SG;1;FUT
supurmoq V;PROG;IND;SG;2;INFM;PRS
bo'yamoq V;PFV;SBJV;PL;2;FUT
muhokama qilmoq V;PRF;SBJV;SG;1;PRS
o'rgatmoq V;COND;SG;1;PRS
yotmoq V;SG;2;INFM;PRS
reklama qilmoq V;IND;PL;2;PST
chiqmoq V;PRF;FRML;SBJV;SG;2;PRS
ko'rsatmoq V;PROG;IND;SG;3;PRS
tabriklamoq V;PFV;SBJV;PL;3;FUT
ishontirmoq V;IND;PL;2;PST
sindirmoq V;PRF+PROG;COND;SG;1;PRS
o'rgatmoq V;PRF+PROG;COND;SG;3;PRS
jiringlamoq V;IND;PL;1;PST
sanatmoq V;PFV;SBJV;PL;3;FUT
kamaytirmoq V;PFV;IND;SG;1;PST
qo'yib yubormoq V;SG;1;PRS
ezmoq V;PROG;IND;SG;3;FUT
yotmoq V;PROG;COND;PL;2;PRS
hal qilmoq V;PFV;SBJV;SG;1;FUT
tanishtirmoq V;PFV;FH;SG;1
sakramoq V;COND;SG;2;INFM;PRS
taraqqiy etmoq V;PROG;IND;SG;2;INFM;PRS
sahnalashtirmoq V;PFV;FH;PL;1
ko'rsatmoq V;COND;SG;2;INFM;PRS
yarashmoq V;PRF;SBJV;SG;3;PRS
otmoq V;PRF+PROG;COND;PL;2;PRS
izoh bermoq V;PFV;IND;PL;1;PST
yoqmoq V;PROG;IND;PL;3;FUT
qulflamoq V;PFV;FH;SG;1
nazarda tutmoq V;PRF;SBJV;SG;1;PRS
ko'rishmoq V;PL;1;PRS
e'lon qilmoq V;PRF;SBJV;PL;2;PRS
quvontirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
suv qilib ichmoq V;PFV;SBJV;PL;3;FUT
xursand bo'lmoq V;PFV;SBJV;PL;2;FUT
moslashmoq V;PL;2;PRS
uchrashmoq V;PFV;FH;SG;2
o'g'irlamoq V;PRF+PROG;COND;SG;1;PRS
asabiylashtirmoq V;PFV;FRML;FH;SG;2
suv qilib ichmoq V;IND;PL;3;PST
bashorat qilmoq V;PFV;FH;PL;3
unashtirmoq V;PROG;COND;PL;3;PRS
buyurtma bermoq V;COND;PL;1;PRS
yetmoq V;COND;PL;3;PRS
tikilmoq V;COND;SG;3;PRS
yuzlashmoq V;PROG;IND;SG;3;PRS
azob chekmoq V;PROG;IND;SG;1;PST
yuklamoq V;PFV;FH;PL;3
ochmoq V;PFV;FRML;SBJV;SG;2;FUT
reja tuzmoq V;PROG;COND;SG;2;PRS
archimoq V;PFV;FH;SG;1
langar tashlamoq V;PROG;IND;SG;1;FUT
uxlamoq V;PFV;SBJV;PL;2;FUT
yozmoq V;COND;PL;1;PRS
topmoq V;SBJV;PL;3;PRS
qo'rqmoq V;PFV;FH;SG;3
muhokama qilmoq V;PFV;IND;PL;3;PST
savdo qilmoq V;PROG;COND;PL;3;PRS
mug'ombirlik qilmoq V;PROG;IND;SG;2;INFM;PST
horg'in his qilmoq V;IND;SG;1;PST
o'zini tutmoq V;PRF;SBJV;SG;3;PRS
o'rab olmoq V;PFV;SBJV;PL;3;FUT
o'pmoq V;PROG;IND;SG;3;FUT
yuvmoq V;PROG;COND;SG;3;PRS
shamollatmoq V;PFV;FRML;IND;SG;2;PST
navbatda turmoq V;COND;SG;2;INFM;PRS
bo'lmoq V;PROG;COND;SG;2;PRS
yuvmoq V;IND;SG;1;PST
ozor bermoq V;PFV;FH;SG;2
cho'kmoq V;SBJV;PL;2;PRS
yurmoq V;PL;2;PRS
ko'chib ketmoq V;SG;3;PRS
vorislik qilmoq V;PROG;IND;SG;2;INFM;PRS
o'rab olmoq V;FRML;IND;SG;2;PST
asabiylashtirmoq V;PRF+PROG;COND;PL;1;PRS
mahkum qilmoq V;PRF;SBJV;SG;2;INFM;PRS
shug'ullanmoq V;SG;3;PRS
tasvirlamoq V;PRF;FRML;SBJV;SG;2;PRS
reklama qilmoq V;PFV;SBJV;SG;2;INFM;FUT
buzilmoq V;SG;1;PRS
tasvirlamoq V;PROG;IND;SG;3;FUT
aytmoq V;SG;2;INFM;PRS
ozor bermoq V;PFV;FRML;FH;SG;2
to'smoq V;SG;3;PRS
aralashmoq V;PROG;COND;PL;1;PRS
yordam bermoq V;PROG;IND;PL;2;PST
tinglamoq V;PFV;IND;SG;2;INFM;PST
mo'ralamoq V;COND;PL;1;PRS
ajrashmoq V;IND;PL;2;PST
yarashmoq V;PFV;SBJV;SG;3;FUT
amin bo'lmoq V;IND;SG;2;INFM;PST
qizq'anmoq V;FRML;IND;SG;2;PST
chopmoq V;PFV;FRML;SBJV;SG;2;FUT
unashtirmoq V;PROG;FRML;IND;SG;2;PRS
o'ynamoq V;SG;2;INFM;PRS
unutmoq V;PRF+PROG;COND;SG;3;PRS
horg'in his qilmoq V;PRF+PROG;COND;PL;2;PRS
ijaraga bermoq V;COND;SG;1;PRS
esga solmoq V;PROG;IND;SG;3;PST
izlamoq V;PRF;SBJV;SG;1;PRS
ijozat bermoq V;PFV;IND;PL;1;PST
bahs poylamoq V;PROG;IND;SG;1;PRS
silkimoq V;PROG;COND;PL;1;PRS
uyalmoq V;PRF+PROG;COND;PL;1;PRS
oldini olmoq V;PFV;FRML;FH;SG;2
yedirmoq V;PRF+PROG;COND;SG;3;PRS
sachratmoq V;PROG;COND;SG;1;PRS
urmoq V;PROG;IND;SG;2;INFM;FUT
imkon bermoq V;PROG;IND;SG;3;FUT
sarflamoq V;PROG;IND;PL;2;FUT
xo'mraymoq V;COND;PL;1;PRS
eslamoq V;PROG;IND;PL;3;PST
davom etmoq V;PRF;SBJV;PL;3;PRS
qatl qilmoq V;PRF;SBJV;SG;1;PRS
duo qilmoq V;PROG;COND;SG;1;PRS
ma'qullamoq V;COND;SG;2;INFM;PRS
aylantirmoq V;PROG;IND;SG;3;PRS
jalb qilmoq V;PROG;IND;SG;1;PRS
zabt etmoq V;PL;2;PRS
varaqlamoq V;PL;1;PRS
ayblamoq V;PROG;IND;PL;3;PST
och qolmoq V;PROG;FRML;IND;SG;2;FUT
yetishmoq V;PFV;FH;SG;1
ko'chmoq V;PROG;IND;PL;1;FUT
to'xtatmoq V;PFV;FRML;SBJV;SG;2;FUT
bukmoq V;PROG;IND;PL;1;FUT
sevib qolmoq V;SG;3;PRS
ishlatmoq V;IND;PL;3;PST
tutmoq V;PROG;COND;PL;3;PRS
tekshirmoq V;IND;SG;2;INFM;PST
uchirmoq V;PROG;IND;SG;1;PST
bekor qilmoq V;PROG;IND;SG;3;FUT
bo'yanmoq V;PROG;COND;PL;1;PRS
yozib olmoq V;PROG;COND;SG;3;PRS
umid qilmoq V;PROG;IND;PL;1;PST
qaytmoq V;PROG;IND;SG;2;INFM;FUT
o'xshamoq V;PFV;SBJV;PL;3;FUT
amin bo'lmoq V;PFV;IND;SG;2;INFM;PST
sezmoq V;PROG;COND;SG;2;PRS
rivojlantirmoq V;COND;PL;1;PRS
ezmoq V;PL;1;PRS
ko'zdan g'oyib bo'lmoq V;PFV;SBJV;SG;1;FUT
chekmoq V;IND;SG;3;PST
kuchga kiritmoq V;PROG;IND;SG;1;PRS
mazax qilmoq V;PRF+PROG;COND;PL;3;PRS
gapirmoq V;PROG;IND;PL;2;FUT
tiqmoq V;IND;PL;3;PST
ayb qo'ymoq V;PROG;IND;PL;3;PST
nolimoq V;PRF+PROG;COND;PL;1;PRS
tiqmoq V;PFV;FH;PL;3
qimor o'ynamoq V;PRF+PROG;COND;SG;1;PRS
shug'ullanmoq V;PRF;SBJV;PL;3;PRS
taqiqlamoq V;IND;SG;1;PST
uzoqlashmoq V;PFV;FRML;FH;SG;2
ko'zdan kechirmoq V;PROG;COND;PL;1;PRS
berib turmoq V;PROG;FRML;IND;SG;2;FUT
bo'yamoq V;PRF+PROG;COND;SG;1;PRS
tortib olmoq V;PROG;COND;PL;1;PRS
kulmoq V;PROG;IND;PL;2;FUT
suv qilib ichmoq V;PROG;IND;SG;2;INFM;PST
yuklamoq V;PRF;SBJV;PL;3;PRS
bekor qilmoq V;PROG;FRML;IND;SG;2;PST
mo'ralamoq V;PRF;SBJV;PL;2;PRS
keltirmoq V;PROG;IND;SG;3;FUT
bezmoq V;PROG;IND;PL;2;PST
o'chirmoq V;COND;SG;2;INFM;PRS
gaplashmoq V;PROG;IND;PL;2;PST
uyalmoq V;PL;2;PRS
aralashmoq V;PRF+PROG;COND;PL;3;PRS
taklif etmoq V;PROG;COND;SG;2;PRS
artmoq V;IND;SG;3;PST
kerak bo'lmoq V;SG;3;PRS
chaqmoq V;SG;3;PRS
uchirmoq V;SG;1;PRS
yonmoq V;IND;PL;2;PST
parchalamoq V;IND;SG;2;INFM;PST
tortib olmoq V;PFV;IND;SG;3;PST
o'tlatmoq V;IND;SG;2;INFM;PST
ko'zdan g'oyib bo'lmoq V;PFV;FH;PL;3
o'rgatmoq V;PROG;IND;SG;3;FUT
bo'yanmoq V;PRF+PROG;COND;PL;2;PRS
to'kmoq V;PFV;FH;SG;3
ko'rsatmoq V;PFV;IND;SG;1;PST
to'smoq V;PROG;IND;PL;2;FUT
qarshilik ko'rsatmoq V;PFV;SBJV;SG;2;INFM;FUT
qidirmoq V;PROG;IND;PL;3;FUT
og'riqsizlantirmoq V;FRML;SG;2;PRS
shamollamoq V;PROG;COND;PL;3;PRS
ko'chmoq V;PROG;IND;SG;2;INFM;PST
yuklamoq V;PROG;IND;SG;1;PST
o'ylamoq V;PFV;IND;SG;2;INFM;PST
ijaraga bermoq V;PROG;IND;PL;2;PRS
o'xshamoq V;PROG;IND;PL;3;PST
sevmoq V;PFV;IND;SG;2;INFM;PST
yutmoq V;PFV;SBJV;PL;2;FUT
to'plamoq V;PFV;SBJV;SG;2;INFM;FUT
taramoq V;PROG;IND;PL;2;FUT
ayblamoq V;PRF+PROG;COND;PL;3;PRS
savdo qilmoq V;PROG;IND;SG;3;PST
qolmoq V;COND;SG;3;PRS
yozmoq V;PFV;FH;PL;2
qaytmoq V;PFV;SBJV;SG;1;FUT
uzoqlashmoq V;PRF;FRML;SBJV;SG;2;PRS
duo qilmoq V;PFV;IND;SG;3;PST
yormoq V;IND;PL;1;PST
yashamoq V;PRF;SBJV;SG;1;PRS
ishlamoq V;IND;SG;2;INFM;PST
ishga olmoq V;PFV;SBJV;SG;1;FUT
sotmoq V;SG;3;PRS
ishlamoq V;PROG;IND;PL;2;PRS
harakat qilmoq V;PROG;COND;SG;3;PRS
to'lamoq V;PFV;IND;PL;2;PST
qilmoq V;PROG;COND;SG;2;PRS
bo'yatmoq V;PROG;IND;PL;1;PRS
qolmoq V;PFV;FH;PL;1
ko'rsatmoq V;PROG;IND;PL;2;PRS
yetaklamoq V;SG;2;INFM;PRS
sanatmoq V;PFV;IND;PL;2;PST
talaffuz qilmoq V;PRF+PROG;COND;PL;3;PRS
qaytmoq V;FRML;SBJV;SG;2;PRS
bahs poylamoq V;PRF+PROG;COND;SG;1;PRS
to'xtamga kelmoq V;PFV;FH;PL;3
bashorat qilmoq V;PFV;SBJV;SG;3;FUT
tarjima qilmoq V;PROG;FRML;IND;SG;2;PRS
savdo qilmoq V;PFV;FH;PL;1
oldini olmoq V;PRF;SBJV;SG;3;PRS
chizmoq V;PRF;SBJV;PL;3;PRS
chetlashmoq V;PROG;IND;SG;2;INFM;FUT
bezamoq V;FRML;COND;SG;2;PRS
kechirmoq V;PFV;IND;SG;3;PST
yuvmoq V;PRF;SBJV;SG;1;PRS
quvmoq V;PFV;FH;SG;1
shug'ullanmoq V;PRF+PROG;COND;SG;2;INFM;PRS
istamoq V;PFV;FRML;IND;SG;2;PST
tark etmoq V;PROG;IND;SG;1;PST
yondirmoq V;PRF+PROG;COND;PL;1;PRS
varaqlamoq V;IND;PL;2;PST
kemada suzmoq V;PROG;IND;SG;2;INFM;PRS
yemoq V;SBJV;PL;2;PRS
turmoq V;PRF;SBJV;SG;3;PRS
yarashmoq V;PROG;COND;SG;1;PRS
bahs poylamoq V;FRML;SG;2;PRS
qarshilantirmoq V;FRML;IND;SG;2;PST
buzilmoq V;PFV;IND;SG;2;INFM;PST
gapirmoq V;COND;PL;2;PRS
ajramoq V;PRF+PROG;FRML;COND;SG;2;PRS
ko'tarmoq V;PROG;IND;PL;3;FUT
qo'lga olmoq V;PRF+PROG;COND;SG;2;INFM;PRS
azob chekmoq V;SBJV;PL;1;PRS
pichirlamoq V;SG;1;PRS
ochmoq V;PROG;COND;SG;1;PRS
artmoq V;PROG;IND;PL;1;PRS
kiyinmoq V;PFV;IND;SG;1;PST
suv qilib ichmoq V;PFV;FRML;FH;SG;2
chetlashmoq V;PFV;FH;PL;1
topmoq V;PRF+PROG;COND;PL;1;PRS
o'zgartirmoq V;PFV;IND;PL;3;PST
aytmoq V;PRF+PROG;FRML;COND;SG;2;PRS
uxlamoq V;IND;PL;1;PST
mo'ralamoq V;PROG;IND;PL;3;PRS
sakramoq V;PROG;IND;PL;1;PST
tatib ko'rmoq V;IND;PL;1;PST
mazax qilmoq V;PROG;COND;SG;1;PRS
tarjima qilmoq V;PRF;SBJV;SG;1;PRS
intervyu olmoq V;PROG;IND;PL;2;PRS
aldamoq V;PFV;IND;PL;2;PST
ayb qo'ymoq V;IND;SG;2;INFM;PST
boshqarmoq V;IND;PL;2;PST
reklama qilmoq V;PRF+PROG;COND;SG;1;PRS
tasvirlamoq V;PROG;IND;PL;3;PST
uxlamoq V;PROG;IND;PL;3;PRS
intizorlik bilan kutmoq V;PFV;FH;SG;1
yedirmoq V;COND;PL;2;PRS
saqlamoq V;PROG;IND;SG;1;FUT
yaratmoq V;IND;SG;1;PST
yaralamoq V;PFV;IND;PL;3;PST
emaklamoq V;COND;SG;1;PRS
yetmoq V;PRF;SBJV;SG;2;INFM;PRS
supurmoq V;PROG;COND;PL;3;PRS
to'g'ramoq V;PFV;FRML;IND;SG;2;PST
pand bermoq V;COND;SG;2;INFM;PRS
o'tirmoq V;PROG;IND;SG;2;INFM;PRS
tan olmoq V;PFV;IND;SG;1;PST
o'tirmoq V;PROG;IND;PL;1;PST
bo'yamoq V;SBJV;SG;1;PRS
yarashmoq V;PRF+PROG;COND;PL;1;PRS
yengillashtirmoq V;PROG;IND;PL;1;PST
istamoq V;FRML;IND;SG;2;PST
uylanmoq V;PROG;IND;PL;2;FUT
intervyu olmoq V;COND;SG;1;PRS
taklif etmoq V;PRF+PROG;COND;SG;3;PRS
osmoq V;PRF;FRML;SBJV;SG;2;PRS
sanamoq V;PROG;IND;PL;3;PST
sanatmoq V;PRF+PROG;FRML;COND;SG;2;PRS
sirpanmoq V;PROG;IND;PL;2;FUT
yemoq V;PFV;SBJV;PL;2;FUT
pullamoq V;PROG;COND;SG;1;PRS
aniqlamoq V;PFV;IND;PL;2;PST
hukm qilmoq V;IND;PL;3;PST
tishlamoq V;COND;SG;2;INFM;PRS
rivojlantirmoq V;PFV;FH;PL;3
o'chirmoq V;IND;SG;2;INFM;PST
qizq'anmoq V;PFV;IND;PL;1;PST
yetishmoq V;COND;PL;3;PRS
kutmoq V;PROG;IND;PL;1;PRS
qo'lga olmoq V;PFV;SBJV;PL;1;FUT
yaralamoq V;PRF+PROG;COND;SG;2;INFM;PRS
shoshmoq V;PROG;IND;SG;3;FUT
duo qilmoq V;SG;3;PRS
tanlamoq V;PFV;SBJV;PL;1;FUT
tushmoq V;PROG;IND;SG;3;FUT
tikilmoq V;PFV;FRML;IND;SG;2;PST
taxlamoq V;PRF;SBJV;SG;1;PRS
gapirmoq V;PFV;IND;PL;2;PST
yoqmoq V;SBJV;SG;3;PRS
qidirmoq V;COND;PL;2;PRS
qaror qabul qilmoq V;SG;1;PRS
yetaklamoq V;PFV;IND;PL;1;PST
ta'minlamoq V;FRML;SG;2;PRS
yoqtirmoq V;PROG;IND;PL;2;PST
o'pmoq V;PFV;FRML;IND;SG;2;PST
jalb qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
ishonqiramay turmoq V;COND;SG;3;PRS
taramoq V;PFV;SBJV;PL;2;FUT
reja tuzmoq V;PROG;FRML;IND;SG;2;FUT
tinglamoq V;SG;1;PRS
ozod etmoq V;PRF+PROG;COND;PL;2;PRS
buzilmoq V;PFV;SBJV;SG;3;FUT
dush qabul qilmoq V;PL;1;PRS
shoshilmoq V;PROG;FRML;IND;SG;2;PST
yugurmoq V;PROG;IND;PL;2;PRS
eslamoq V;PL;2;PRS
yetishmoq V;PROG;IND;PL;2;PRS
o'lmoq V;PFV;IND;PL;3;PST
qayta olmoq V;PROG;IND;PL;1;PST
g'ashini keltirmoq V;PFV;IND;SG;3;PST
tanitmoq V;PFV;SBJV;PL;3;FUT
tavsiya qilmoq V;PROG;IND;SG;3;FUT
to'smoq V;PRF+PROG;COND;SG;2;INFM;PRS
yetaklamoq V;PRF+PROG;COND;SG;1;PRS
olib tashlamoq V;PFV;FRML;SBJV;SG;2;FUT
yetishmoq V;PL;2;PRS
yasamoq V;FRML;SG;2;PRS
chetlashmoq V;COND;SG;3;PRS
bahs poylamoq V;PFV;FRML;FH;SG;2
dam olmoq V;PL;2;PRS
afzal ko'rmoq V;COND;PL;1;PRS
yoqmoq V;PROG;IND;PL;2;PST
quymoq V;FRML;SG;2;PRS
taxlamoq V;SBJV;PL;2;PRS
kezmoq V;PRF+PROG;COND;SG;1;PRS
sakramoq V;SBJV;SG;2;PRS
kuylamoq V;PROG;IND;PL;3;PRS
yetilmoq V;PFV;FH;SG;3
qo'lga olmoq V;PROG;IND;SG;3;PRS
to'smoq V;PFV;SBJV;SG;1;FUT
yuvmoq V;PRF+PROG;COND;PL;3;PRS
tanitmoq V;PFV;FRML;IND;SG;2;PST
ko'chib ketmoq V;PFV;FH;SG;1
vaqtni isrof etmoq V;PFV;SBJV;PL;3;FUT
xursand bo'lmoq V;IND;PL;2;PST
kuchga kiritmoq V;PFV;SBJV;PL;3;FUT
so'kinmoq V;PROG;FRML;IND;SG;2;FUT
ta'mirlamoq V;PROG;COND;SG;2;PRS
qulflamoq V;PFV;FH;SG;1
yarashmoq V;PRF+PROG;COND;PL;3;PRS
yirtmoq V;PROG;FRML;IND;SG;2;PRS
ko'chib ketmoq V;PFV;IND;SG;2;INFM;PST
qo'lga tushirmoq V;COND;SG;3;PRS
hibsga olmoq V;COND;SG;1;PRS
yo'qotmoq V;IND;PL;3;PST
yolg'on gapirmoq V;PROG;IND;SG;2;INFM;PRS
ko'rmoq V;PFV;FH;SG;3
pushaymon bo'lmoq V;PFV;IND;SG;3;PST
hayron qolmoq V;PRF;SBJV;PL;3;PRS
so'z bermoq V;PFV;IND;PL;2;PST
jiringlamoq V;PROG;COND;PL;3;PRS
tavsiya etmoq V;PROG;IND;SG;2;INFM;PST
qolmoq V;PFV;IND;PL;2;PST
so'kinmoq V;PFV;SBJV;SG;1;FUT
aylantirmoq V;PFV;SBJV;PL;2;FUT
talaffuz qilmoq V;COND;PL;1;PRS
archimoq V;COND;PL;1;PRS
osmoq V;PFV;FH;SG;1
navbatda turmoq V;PROG;IND;PL;1;PST
tabriklamoq V;PRF;SBJV;SG;2;INFM;PRS
o'ylamoq V;IND;SG;2;INFM;PST
so'z bermoq V;PRF+PROG;COND;SG;1;PRS
ishonmoq V;PROG;IND;PL;3;FUT
qo'riqlamoq V;SG;2;INFM;PRS
tatib ko'rmoq V;PFV;FRML;IND;SG;2;PST
yolg'on gapirmoq V;PRF+PROG;COND;PL;2;PRS
qaytmoq V;PFV;IND;PL;3;PST
vaqtni isrof etmoq V;PROG;COND;SG;3;PRS
keltirmoq V;PFV;FH;PL;3
muhokama qilmoq V;PFV;SBJV;SG;2;INFM;FUT
osilmoq V;PROG;FRML;IND;SG;2;PST
ishtirok etmoq V;PRF+PROG;COND;SG;1;PRS
navbatda turmoq V;PFV;FRML;FH;SG;2
takrorlamoq V;PRF+PROG;COND;PL;1;PRS
kulmoq V;PFV;IND;PL;2;PST
ijaraga bermoq V;COND;PL;2;PRS
yuvinmoq V;PRF+PROG;COND;SG;1;PRS
kamaytirmoq V;PFV;IND;PL;1;PST
boshlamoq V;PROG;IND;PL;1;PRS
aylantirmoq V;PROG;COND;SG;3;PRS
yashirinmoq V;SG;3;PRS
asramoq V;PROG;IND;PL;3;FUT
takror qo'ymoq V;PL;3;PRS
to'kmoq V;PFV;SBJV;SG;3;FUT
ishga olmoq V;PFV;SBJV;SG;2;INFM;FUT
rad etmoq V;COND;PL;2;PRS
demoq V;FRML;SG;2;PRS
o'ynamoq V;PFV;SBJV;SG;2;INFM;FUT
sahnalashtirmoq V;PFV;FRML;IND;SG;2;PST
quvontirmoq V;PFV;FH;SG;3
yasamoq V;PRF;FRML;SBJV;SG;2;PRS
bo'yanmoq V;PFV;IND;SG;2;INFM;PST
esga solmoq V;PROG;IND;SG;1;PST
so'ramoq V;PRF;SBJV;PL;1;PRS
terlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
esga solmoq V;SG;3;PRS
to'kmoq V;COND;PL;2;PRS
archimoq V;PROG;IND;SG;3;PRS
inkor qilmoq V;PFV;FRML;FH;SG;2
to'xtatmoq V;FRML;SG;2;PRS
turmoq V;COND;PL;3;PRS
ko'chib ketmoq V;PFV;FH;SG;2
dazmollamoq V;PFV;FH;PL;1
takror qo'ymoq V;PRF;SBJV;SG;2;INFM;PRS
pastga tushmoq V;PROG;IND;SG;1;PST
unutmoq V;PFV;IND;SG;2;INFM;PST
chopmoq V;PRF+PROG;COND;SG;2;INFM;PRS
ajramoq V;PFV;FH;SG;3
mug'ombirlik qilmoq V;IND;SG;3;PST
nolimoq V;PRF+PROG;COND;SG;2;INFM;PRS
yarashmoq V;IND;SG;3;PST
yuvmoq V;PRF;SBJV;PL;3;PRS
o'zgartirmoq V;IND;SG;2;INFM;PST
so'z bermoq V;FRML;SBJV;SG;2;PRS
talab qilmoq V;PROG;IND;PL;2;FUT
qadoqlamoq V;PRF;SBJV;PL;3;PRS
ishonmoq V;PROG;COND;PL;2;PRS
nolimoq V;PROG;IND;PL;1;PRS
mazax qilmoq V;PFV;SBJV;PL;2;FUT
tanlamoq V;PFV;SBJV;SG;3;FUT
yoqtirmoq V;IND;PL;1;PST
ko'chib ketmoq V;PROG;IND;SG;1;PST
farqlamoq V;PFV;SBJV;PL;1;FUT
kutmoq V;PFV;IND;SG;3;PST
o'ramoq V;PRF+PROG;COND;SG;1;PRS
himoya qilmoq V;PRF+PROG;COND;SG;1;PRS
uzoqlashmoq V;PFV;SBJV;SG;3;FUT
o'lmoq V;PROG;IND;SG;3;PST
yo'talmoq V;FRML;IND;SG;2;PST
bezmoq V;PRF+PROG;COND;PL;3;PRS
bilmoq V;PL;1;PRS
sho'ng'imoq V;PFV;IND;SG;2;INFM;PST
hujum qilmoq V;PRF;SBJV;PL;1;PRS
baqirmoq V;COND;SG;2;INFM;PRS
asabiylashtirmoq V;PFV;SBJV;PL;1;FUT
sanatmoq V;PRF+PROG;COND;PL;2;PRS
artmoq V;PFV;SBJV;PL;1;FUT
do'q qilmoq V;PROG;IND;SG;2;INFM;FUT
takror qo'ymoq V;PROG;COND;SG;3;PRS
qarshilik ko'rsatmoq V;IND;SG;2;INFM;PST
kulmoq V;PFV;FH;PL;2
kechirmoq V;PRF+PROG;COND;PL;2;PRS
zarar yetkazmoq V;PROG;IND;SG;1;FUT
ishlatmoq V;PROG;IND;PL;3;PST
shoshmoq V;PFV;SBJV;PL;3;FUT
taklif etmoq V;IND;PL;1;PST
o'rnatmoq V;PROG;IND;SG;2;INFM;PST
ko'tarib yurmoq V;PFV;IND;PL;2;PST
yiqitmoq V;PROG;IND;PL;1;PST
taklif etmoq V;COND;PL;3;PRS
aytmoq V;PFV;FH;SG;1
bezamoq V;PROG;IND;SG;2;INFM;PST
mazax qilmoq V;PFV;FH;PL;2
terlamoq V;PFV;IND;SG;2;INFM;PST
topib olmoq V;SG;2;INFM;PRS
surtmoq V;PROG;COND;PL;2;PRS
reja tuzmoq V;PROG;IND;PL;3;PRS
ishlatmoq V;PFV;SBJV;SG;2;INFM;FUT
tutmoq V;PFV;SBJV;SG;2;INFM;FUT
kerak bo'lmoq V;PL;2;PRS
zabt etmoq V;PFV;SBJV;SG;2;INFM;FUT
yig'lamoq V;PROG;IND;PL;1;FUT
osmoq V;PROG;COND;PL;1;PRS
shovqin solmoq V;PL;1;PRS
sho'ng'imoq V;PFV;SBJV;SG;3;FUT
hisoblamoq V;IND;PL;3;PST
amin bo'lmoq V;PFV;SBJV;PL;1;FUT
o'ylamoq V;PRF;SBJV;SG;3;PRS
kutmoq V;PFV;FH;SG;1
pullamoq V;PROG;IND;SG;3;PRS
tug'moq V;PL;3;PRS
buzmoq V;PL;1;PRS
vorislik qilmoq V;IND;PL;1;PST
sanchmoq V;PROG;IND;SG;2;INFM;PST
quvmoq V;PRF+PROG;COND;PL;3;PRS
kuchga kiritmoq V;PRF+PROG;COND;PL;2;PRS
tark etmoq V;PFV;FH;SG;2
to'xtamga kelmoq V;PROG;IND;SG;3;PST
takrorlamoq V;PROG;IND;PL;2;PST
hijjalamoq V;SG;1;PRS
sug'ormoq V;PFV;SBJV;PL;1;FUT
qo'riqlamoq V;PROG;IND;PL;2;PRS
tavsiya qilmoq V;PROG;IND;PL;3;FUT
tegmoq V;PROG;COND;PL;3;PRS
taslim bo'lmoq V;PFV;FRML;SBJV;SG;2;FUT
bo'yamoq V;PRF;SBJV;PL;2;PRS
pasaymoq V;COND;PL;3;PRS
yondirmoq V;PROG;IND;PL;1;PST
muomalada bo'lmoq V;PROG;COND;PL;3;PRS
chiqmoq V;COND;SG;2;INFM;PRS
asabiylashtirmoq V;PFV;IND;SG;3;PST
zabt etmoq V;PRF;SBJV;SG;1;PRS
ko'chib ketmoq V;IND;PL;3;PST
qilmoq V;PROG;IND;PL;2;FUT
to'plab qo'ymoq V;PFV;FRML;FH;SG;2
eshitmoq V;PROG;COND;SG;2;PRS
jiringlamoq V;PROG;IND;PL;3;FUT
yutmoq V;PRF;SBJV;SG;2;INFM;PRS
ichmoq V;PRF+PROG;COND;PL;2;PRS
siqmoq V;PRF;SBJV;SG;1;PRS
pichirlamoq V;PFV;FH;PL;1
imkon bermoq V;PROG;IND;SG;1;PST
tozalamoq V;SBJV;PL;3;PRS
hisoblamoq V;PROG;IND;PL;3;PRS
shovqin solmoq V;PRF+PROG;FRML;COND;SG;2;PRS
suv qilib ichmoq V;FRML;IND;SG;2;PST
siqmoq V;PFV;FH;SG;1
kutmoq V;FRML;SBJV;SG;2;PRS
talaffuz qilmoq V;PRF;SBJV;PL;3;PRS
chaqmoq V;PROG;COND;PL;1;PRS
sezmoq V;PL;1;PRS
chekmoq V;PROG;IND;SG;3;FUT
uloqtirmoq V;IND;PL;3;PST
paydo bo'lmoq V;PRF;SBJV;SG;1;PRS
tanishtirmoq V;PRF;SBJV;PL;2;PRS
shovqin solmoq V;PROG;IND;PL;3;PST
talaffuz qilmoq V;FRML;IND;SG;2;PST
javob bermoq V;PFV;IND;SG;3;PST
intervyu olmoq V;SBJV;PL;2;PRS
takrorlamoq V;PROG;COND;SG;1;PRS
burmoq V;PROG;IND;SG;2;INFM;PRS
terlamoq V;PROG;FRML;IND;SG;2;FUT
chaqmoq V;SBJV;PL;3;PRS
ichmoq V;PFV;SBJV;PL;1;FUT
ishonmoq V;PFV;SBJV;SG;2;INFM;FUT
qarshilantirmoq V;PROG;IND;PL;1;PST
reklama qilmoq V;PRF;FRML;SBJV;SG;2;PRS
o'tib ketmoq V;PFV;SBJV;PL;3;FUT
katta qilmoq V;FRML;COND;SG;2;PRS
haydamoq V;PL;3;PRS
qatl qilmoq V;FRML;COND;SG;2;PRS
javob bermoq V;PFV;FH;SG;1
qizq'anmoq V;PFV;SBJV;PL;3;FUT
o'rganmoq V;PROG;IND;PL;2;FUT
kezmoq V;PFV;SBJV;PL;3;FUT
yemoq V;PROG;IND;PL;2;FUT
uxlab qolmoq V;PL;2;PRS
chiqarmoq V;PFV;FH;PL;2
osilmoq V;PROG;IND;PL;3;PST
faxrlanmoq V;PRF+PROG;FRML;COND;SG;2;PRS
azob chekmoq V;IND;PL;2;PST
tozalamoq V;COND;PL;1;PRS
tarjima qilmoq V;IND;SG;2;INFM;PST
o'pmoq V;PROG;COND;PL;1;PRS
bo'yamoq V;PROG;IND;SG;2;INFM;PRS
o'rnatmoq V;PRF;SBJV;SG;3;PRS
yarashmoq V;PFV;FH;PL;2
o'g'irlamoq V;COND;PL;1;PRS
taslim bo'lmoq V;PFV;FH;PL;3
burmoq V;PROG;COND;SG;3;PRS
bo'yatmoq V;PRF+PROG;FRML;COND;SG;2;PRS
chaqmoq V;PROG;COND;SG;1;PRS
o'zgartirmoq V;PROG;IND;PL;1;FUT
yopishmoq V;FRML;COND;SG;2;PRS
to'plamoq V;PROG;IND;SG;1;FUT
yutmoq V;PROG;COND;SG;1;PRS
taklif etmoq V;PRF;SBJV;SG;2;INFM;PRS
o'zgartirmoq V;PFV;IND;SG;2;INFM;PST
bo'shatmoq V;PFV;SBJV;PL;2;FUT
yemoq V;PFV;IND;SG;1;PST
baqirmoq V;PFV;IND;SG;3;PST
ta'minlamoq V;PL;3;PRS
ko'tarmoq V;PROG;IND;SG;1;FUT
ishlab chiqarmoq V;COND;PL;1;PRS
umid qilmoq V;IND;PL;1;PST
kerak bo'lmoq V;IND;SG;2;INFM;PST
talaffuz qilmoq V;COND;SG;2;INFM;PRS
siqmoq V;PFV;IND;SG;3;PST
haydamoq V;PROG;COND;PL;1;PRS
g'ashini keltirmoq V;PROG;IND;SG;3;PRS
pullamoq V;PFV;FH;SG;3
hidlamoq V;IND;SG;2;INFM;PST
ma'lum qilmoq V;IND;SG;3;PST
baqirmoq V;PFV;IND;PL;2;PST
asramoq V;PROG;COND;PL;2;PRS
kiyinmoq V;PROG;FRML;IND;SG;2;PST
o'ynamoq V;PROG;IND;PL;1;PST
kirmoq V;SG;2;INFM;PRS
tirishmoq V;COND;PL;1;PRS
uylamoq V;PFV;FH;PL;3
buyruq bermoq V;PROG;FRML;IND;SG;2;PST
ko'rsatmoq V;PROG;IND;SG;2;INFM;PST
o'ylamoq V;COND;PL;3;PRS
yasamoq V;PROG;IND;PL;3;FUT
muzlatmoq V;PRF+PROG;COND;SG;3;PRS
yolg'on gapirmoq V;COND;SG;2;INFM;PRS
so'ramoq V;PROG;COND;PL;1;PRS
tikmoq V;PROG;FRML;IND;SG;2;FUT
dam olmoq V;PROG;COND;PL;1;PRS
shoshilmoq V;PROG;COND;SG;1;PRS
ajramoq V;COND;PL;3;PRS
emaklamoq V;COND;PL;1;PRS
baqirmoq V;PFV;FRML;SBJV;SG;2;FUT
ishontirmoq V;PFV;FH;PL;3
himoya qilmoq V;PRF;SBJV;PL;3;PRS
suyanmoq V;PFV;IND;SG;1;PST
osilmoq V;PFV;FH;PL;3
qulflamoq V;PROG;IND;PL;3;PST
yemoq V;PRF;SBJV;PL;3;PRS
yashirmoq V;PROG;IND;SG;1;PRS
yiqilmoq V;PFV;IND;SG;2;INFM;PST
yiqitmoq V;PFV;SBJV;PL;3;FUT
pichirlamoq V;PL;2;PRS
sarflamoq V;PRF;SBJV;PL;2;PRS
o'z ichiga olmoq V;COND;SG;3;PRS
kulmoq V;PROG;IND;SG;1;FUT
uyg'onmoq V;PROG;COND;PL;3;PRS
javob bermoq V;SG;3;PRS
pastga tushmoq V;PROG;COND;PL;1;PRS
suyanmoq V;PRF+PROG;FRML;COND;SG;2;PRS
sabab bo'lmoq V;PRF;FRML;SBJV;SG;2;PRS
rozi bo'lmoq V;PROG;IND;PL;1;PRS
eslamoq V;PROG;IND;SG;3;PRS
sevib qolmoq V;PROG;IND;PL;2;PST
bermoq V;PRF;SBJV;PL;3;PRS
g'ashini keltirmoq V;PRF;FRML;SBJV;SG;2;PRS
bormoq V;PFV;SBJV;PL;3;FUT
ijaraga bermoq V;IND;PL;3;PST
mug'ombirlik qilmoq V;PROG;IND;PL;3;PST
bastalamoq V;PRF;FRML;SBJV;SG;2;PRS
qutqarmoq V;PROG;COND;PL;1;PRS
yetishmoq V;PROG;IND;SG;2;INFM;PST
harakat qilib ko'rmoq V;PRF+PROG;FRML;COND;SG;2;PRS
hisoblamoq V;PRF+PROG;COND;SG;1;PRS
mug'ombirlik qilmoq V;PROG;IND;PL;2;PRS
to'plab qo'ymoq V;PROG;COND;SG;1;PRS
mug'ombirlik qilmoq V;PRF;SBJV;SG;3;PRS
tinglamoq V;FRML;SG;2;PRS
o'tirmoq V;PRF;SBJV;PL;2;PRS
xursand bo'lmoq V;PROG;IND;PL;1;PRS
chiqmoq V;COND;PL;1;PRS
pullamoq V;FRML;SBJV;SG;2;PRS
ta'kidlamoq V;PRF;SBJV;PL;2;PRS
o'tmoq V;PFV;SBJV;SG;1;FUT
o'rganmoq V;PFV;FH;PL;3
vorislik qilmoq V;PROG;IND;PL;3;PST
o'rgatmoq V;PROG;IND;PL;1;FUT
esga solmoq V;PFV;FH;PL;3
ko'chmoq V;PFV;FRML;FH;SG;2
o'zgartirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
buyurtma bermoq V;PRF+PROG;COND;SG;2;INFM;PRS
jondan suymoq V;PROG;IND;SG;2;INFM;FUT
taraqqiy etmoq V;PRF+PROG;COND;PL;3;PRS
hukm qilmoq V;FRML;SG;2;PRS
takror qo'ymoq V;COND;PL;3;PRS
surtmoq V;PROG;COND;SG;2;PRS
uyalmoq V;FRML;COND;SG;2;PRS
yugurmoq V;PROG;IND;SG;1;PRS
sanamoq V;PFV;IND;SG;3;PST
azob chekmoq V;SBJV;SG;2;PRS
ajrashmoq V;PRF;SBJV;PL;3;PRS
sindirmoq V;SG;2;INFM;PRS
tanitmoq V;PROG;COND;SG;2;PRS
sog'inmoq V;PRF+PROG;COND;PL;2;PRS
uxlab qolmoq V;PFV;SBJV;SG;3;FUT
bilmoq V;PRF;SBJV;PL;3;PRS
qadoqlamoq V;PFV;IND;PL;2;PST
aldamoq V;PFV;FRML;SBJV;SG;2;FUT
uzoqlashmoq V;PROG;IND;SG;1;PRS
ogohlantirmoq V;PFV;IND;SG;3;PST
asabiylashtirmoq V;COND;PL;3;PRS
sanamoq V;SG;2;INFM;PRS
bekor qilmoq V;PFV;FH;SG;2
taqiqlamoq V;PFV;IND;PL;2;PST
kechiktirmoq V;COND;SG;3;PRS
bezamoq V;PROG;IND;PL;3;PRS
shoshilmoq V;PROG;IND;SG;2;INFM;PST
ketmoq V;SBJV;SG;3;PRS
supurmoq V;PFV;FRML;SBJV;SG;2;FUT
olib tashlamoq V;PL;2;PRS
yuklamoq V;SG;1;PRS
ogohlantirmoq V;PROG;COND;PL;3;PRS
kulmoq V;PFV;FRML;FH;SG;2
sindirmoq V;PROG;IND;PL;3;PST
dam olmoq V;PRF;SBJV;PL;2;PRS
quvonmoq V;SBJV;SG;3;PRS
mazax qilmoq V;PRF+PROG;COND;SG;1;PRS
surtmoq V;PFV;SBJV;PL;2;FUT
e'lon qilmoq V;PROG;IND;PL;1;FUT
saqlamoq V;PROG;COND;PL;3;PRS
mahkum qilmoq V;PFV;SBJV;SG;3;FUT
katta bo'lmoq V;PROG;FRML;IND;SG;2;FUT
tinglamoq V;SG;3;PRS
tekshirmoq V;SG;2;INFM;PRS
nazarda tutmoq V;PRF+PROG;COND;PL;2;PRS
sayohat qilmoq V;COND;PL;1;PRS
o'g'irlab ketmoq V;PROG;IND;PL;1;PRS
qaror qabul qilmoq V;PFV;IND;SG;3;PST
saqlamoq V;IND;PL;3;PST
qochmoq V;PFV;IND;PL;3;PST
porlamoq V;SG;3;PRS
kamaytirmoq V;PFV;SBJV;PL;3;FUT
o'lchamoq V;PL;1;PRS
emaklamoq V;PROG;IND;SG;1;PRS
yasamoq V;PFV;FH;SG;1
intizorlik bilan kutmoq V;PRF;SBJV;PL;1;PRS
qaramoq V;PROG;IND;SG;2;INFM;PRS
ko'rsatmoq V;SBJV;PL;1;PRS
kelmoq V;PROG;IND;PL;2;PRS
yutmoq V;PRF;SBJV;PL;2;PRS
aylantirmoq V;PRF;SBJV;SG;3;PRS
quymoq V;SBJV;PL;2;PRS
yaqinlashmoq V;PFV;SBJV;PL;2;FUT
tark etmoq V;PROG;COND;PL;1;PRS
javob bermoq V;FRML;COND;SG;2;PRS
ishlab chiqarmoq V;PFV;SBJV;PL;1;FUT
zabt etmoq V;PRF;SBJV;PL;3;PRS
nafratlanmoq V;IND;PL;3;PST
qurmoq V;FRML;COND;SG;2;PRS
qadoqlamoq V;PFV;FRML;IND;SG;2;PST
ishlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
azob chekmoq V;PFV;FH;PL;2
uzanmoq V;COND;PL;1;PRS
chekmoq V;PFV;FRML;SBJV;SG;2;FUT
yormoq V;PROG;IND;SG;3;PST
jalb qilmoq V;PROG;IND;PL;1;FUT
taslim bo'lmoq V;PROG;COND;SG;3;PRS
ichmoq V;PFV;FH;PL;2
taslim bo'lmoq V;PROG;IND;SG;1;FUT
so'ramoq V;PROG;IND;SG;2;INFM;PRS
ogohlantirmoq V;PRF;SBJV;SG;2;INFM;PRS
ta'kidlamoq V;PFV;IND;SG;2;INFM;PST
dush qabul qilmoq V;PFV;FH;SG;2
qaytmoq V;COND;PL;2;PRS
sarflamoq V;PFV;IND;PL;2;PST
tavsiya etmoq V;PFV;FH;PL;1
kechiktirmoq V;PFV;SBJV;PL;2;FUT
ajratmoq V;PROG;IND;SG;3;FUT
sanamoq V;PFV;SBJV;SG;1;FUT
suv qilib ichmoq V;IND;SG;2;INFM;PST
afzal ko'rmoq V;PFV;FH;PL;2
hayron qolmoq V;PROG;IND;SG;2;INFM;FUT
ortidan bormoq V;PRF;SBJV;PL;3;PRS
sevib qolmoq V;PROG;IND;PL;3;PRS
o'zini tutmoq V;PROG;IND;PL;2;PRS
davolamoq V;PROG;IND;SG;2;INFM;PRS
yetishmoq V;COND;SG;1;PRS
o'ynamoq V;IND;PL;3;PST
intizorlik bilan kutmoq V;PFV;IND;PL;1;PST
o'ramoq V;PROG;COND;PL;1;PRS
tavsiya etmoq V;COND;PL;3;PRS
navbatda turmoq V;PFV;SBJV;SG;3;FUT
o'tmoq V;PROG;IND;PL;2;FUT
to'g'ramoq V;PFV;IND;SG;2;INFM;PST
sotmoq V;PROG;IND;SG;1;FUT
qo'lga olmoq V;PROG;FRML;IND;SG;2;PRS
izlamoq V;PROG;IND;SG;1;PRS
to'g'ramoq V;PRF+PROG;COND;PL;2;PRS
yiqilmoq V;PROG;IND;SG;1;FUT
ogohlantirmoq V;FRML;SG;2;PRS
katta bo'lmoq V;PFV;FH;SG;3
hayron qolmoq V;PFV;IND;SG;3;PST
kirmoq V;PFV;IND;SG;1;PST
takrorlamoq V;PROG;IND;SG;1;PRS
o'ldirmoq V;PROG;COND;PL;1;PRS
o'g'irlab ketmoq V;PFV;IND;PL;3;PST
bezamoq V;PFV;SBJV;PL;2;FUT
yig'moq V;PRF;SBJV;PL;2;PRS
ma'qullamoq V;PFV;IND;PL;3;PST
o'tlatmoq V;PRF;SBJV;PL;2;PRS
bormoq V;PROG;IND;SG;3;FUT
sevmoq V;PFV;SBJV;SG;2;INFM;FUT
o'rgatmoq V;PROG;IND;PL;2;PRS
davolamoq V;PROG;COND;SG;2;PRS
tanlamoq V;COND;PL;1;PRS
qilmoq V;PROG;IND;SG;1;PRS
o'rgatmoq V;PROG;IND;PL;2;FUT
bo'shatmoq V;SG;3;PRS
bo'yanmoq V;PROG;IND;SG;3;PST
archimoq V;FRML;COND;SG;2;PRS
chizmoq V;PFV;FH;SG;3
bashorat qilmoq V;IND;SG;2;INFM;PST
o'lmoq V;PROG;IND;SG;2;INFM;PRS
kamaytirmoq V;PROG;IND;PL;2;PRS
tashakkur aytmoq V;PROG;IND;SG;1;PST
inkor qilmoq V;IND;SG;3;PST
ketmoq V;COND;PL;3;PRS
to'plamoq V;PFV;IND;SG;2;INFM;PST
yig'lamoq V;COND;PL;2;PRS
xiyonat qilmoq V;IND;SG;1;PST
dush qabul qilmoq V;PROG;IND;SG;3;PRS
qurmoq V;PRF;SBJV;PL;3;PRS
buyruq bermoq V;PRF+PROG;COND;PL;3;PRS
yubormoq V;PRF+PROG;COND;SG;1;PRS
g'amgin his etmoq V;PROG;COND;PL;1;PRS
sevib qolmoq V;PFV;FH;PL;1
yo'qolmoq V;PRF;FRML;SBJV;SG;2;PRS
yetkazmoq V;PFV;SBJV;PL;2;FUT
katta bo'lmoq V;PRF+PROG;COND;PL;1;PRS
oldini olmoq V;PROG;COND;SG;1;PRS
la'natlamoq V;COND;PL;1;PRS
yomg'ir yog'moq V;PRF+PROG;COND;SG;3;PRS
chiqmoq V;SBJV;PL;3;PRS
yo'qotmoq V;PFV;SBJV;PL;3;FUT
ko'zdan g'oyib bo'lmoq V;IND;SG;1;PST
chalmoq V;PRF+PROG;COND;SG;3;PRS
gapirmoq V;PROG;IND;SG;3;FUT
unutmoq V;PFV;IND;PL;1;PST
rivojlantirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
asabiylashtirmoq V;PROG;IND;PL;3;FUT
ma'qullamoq V;COND;PL;2;PRS
ajrashmoq V;SBJV;PL;1;PRS
chetlashmoq V;PROG;IND;PL;1;FUT
yetkazmoq V;PRF+PROG;COND;PL;2;PRS
so'kinmoq V;PRF+PROG;COND;PL;3;PRS
hayron qolmoq V;PFV;FH;SG;2
hidlamoq V;PROG;IND;PL;2;FUT
vorislik qilmoq V;PRF;SBJV;PL;3;PRS
bo'lmoq V;COND;SG;2;INFM;PRS
tortib olmoq V;PRF+PROG;COND;PL;3;PRS
yoqmoq V;FRML;SG;2;PRS
aldamoq V;PFV;SBJV;SG;1;FUT
ko'zdan kechirmoq V;PRF+PROG;COND;PL;3;PRS
ayb qo'ymoq V;PROG;IND;PL;1;FUT
kuymoq V;PROG;IND;PL;1;PST
bo'lmoq V;PROG;FRML;IND;SG;2;PST
bo'yanmoq V;PRF+PROG;COND;SG;2;INFM;PRS
takror qo'ymoq V;PFV;FRML;SBJV;SG;2;FUT
yo'talmoq V;PL;3;PRS
yashamoq V;PROG;COND;SG;2;PRS
ayb qo'ymoq V;PROG;IND;SG;3;PST
sotib olmoq V;SBJV;PL;3;PRS
o'tmoq V;PFV;FH;PL;2
ayb qo'ymoq V;PRF;SBJV;SG;3;PRS
tanishtirmoq V;PROG;IND;PL;2;FUT
tegmoq V;PFV;FH;SG;3
butamoq V;COND;PL;2;PRS
o'ldirmoq V;PL;2;PRS
yetishmoq V;PROG;COND;SG;3;PRS
yashirmoq V;SG;2;INFM;PRS
qo'rqitmoq V;PROG;COND;PL;1;PRS
o'qimoq V;PROG;IND;SG;1;PRS
chang'i uchmoq V;IND;PL;3;PST
keltirmoq V;IND;PL;3;PST
o'rgatmoq V;PROG;IND;PL;3;PST
suv qilib ichmoq V;PROG;COND;PL;3;PRS
tikilmoq V;PROG;IND;PL;2;PST
vaqtni isrof etmoq V;PROG;FRML;IND;SG;2;PRS
tortmoq V;PROG;IND;SG;2;INFM;FUT
bukchaymoq V;PROG;IND;PL;3;PRS
his qilmoq V;SG;2;INFM;PRS
qochmoq V;COND;SG;1;PRS
sindirmoq V;SBJV;PL;1;PRS
yig'lamoq V;PFV;FRML;FH;SG;2
xo'mraymoq V;PROG;IND;PL;2;PST
osilmoq V;PL;3;PRS
yetishmoq V;FRML;COND;SG;2;PRS
baqirmoq V;SG;2;INFM;PRS
bo'yamoq V;FRML;COND;SG;2;PRS
tirishmoq V;PFV;FH;PL;2
o'z ichiga olmoq V;PRF;SBJV;PL;3;PRS
tashkil qilmoq V;PFV;FH;PL;3
o'tmoq V;PFV;SBJV;PL;2;FUT
tikmoq V;PRF+PROG;COND;PL;2;PRS
gaplashmoq V;FRML;IND;SG;2;PST
tiqmoq V;PROG;IND;PL;1;FUT
pullamoq V;PFV;IND;PL;2;PST
to'xtatmoq V;PRF;SBJV;PL;2;PRS
sog'inmoq V;PROG;FRML;IND;SG;2;FUT
uyg'otmoq V;PROG;IND;SG;2;INFM;PST
yashamoq V;PFV;FRML;IND;SG;2;PST
to'lamoq V;PROG;IND;SG;1;PRS
yaratmoq V;PROG;IND;PL;2;FUT
chiqarmoq V;PROG;COND;SG;2;PRS
tirishmoq V;COND;SG;3;PRS
sanchmoq V;PROG;IND;PL;2;PST
sog'inmoq V;PROG;COND;SG;1;PRS
chetlashmoq V;PRF+PROG;COND;PL;1;PRS
ko'rsatmoq V;PROG;COND;PL;1;PRS
sayohat qilmoq V;PROG;COND;SG;1;PRS
og'riqsizlantirmoq V;PRF;SBJV;PL;3;PRS
sachratmoq V;FRML;SG;2;PRS
uzoqlashmoq V;PROG;IND;PL;1;FUT
otmoq V;PFV;IND;PL;3;PST
terlamoq V;COND;SG;1;PRS
moslashmoq V;FRML;COND;SG;2;PRS
ko'zdan kechirmoq V;COND;PL;3;PRS
qilmoq V;PROG;FRML;IND;SG;2;PRS
buyurtma bermoq V;PROG;FRML;IND;SG;2;PRS
savdo qilmoq V;PROG;IND;PL;1;PRS
sanamoq V;SG;3;PRS
ayblamoq V;COND;PL;2;PRS
duo qilmoq V;PFV;SBJV;PL;1;FUT
oldini olmoq V;PROG;IND;PL;1;PST
bashorat qilmoq V;PRF;SBJV;SG;1;PRS
mug'ombirlik qilmoq V;PROG;IND;SG;2;INFM;PRS
sahnalashtirmoq V;PFV;IND;PL;2;PST
o'g'irlamoq V;PROG;COND;PL;3;PRS
yozmoq V;PROG;IND;PL;2;PST
duo qilmoq V;PFV;SBJV;SG;1;FUT
so'ramoq V;PROG;IND;SG;1;PST
taklif etmoq V;PROG;IND;SG;2;INFM;PST
uxlab qolmoq V;PROG;IND;SG;2;INFM;PRS
ovlamoq V;PROG;IND;SG;1;FUT
o'lmoq V;PRF+PROG;COND;PL;3;PRS
aylantirmoq V;PROG;FRML;IND;SG;2;PRS
bermoq V;FRML;IND;SG;2;PST
tushmoq V;PFV;FRML;SBJV;SG;2;FUT
jondan suymoq V;PRF;SBJV;PL;3;PRS
chiqmoq V;PFV;SBJV;PL;2;FUT
shamollamoq V;PRF;FRML;SBJV;SG;2;PRS
bezovta qilmoq V;PFV;SBJV;SG;2;INFM;FUT
to'xtatmoq V;PROG;IND;PL;3;PRS
o'g'irlab ketmoq V;PFV;FH;SG;2
kelmoq V;PL;1;PRS
yig'lamoq V;PRF+PROG;FRML;COND;SG;2;PRS
urmoq V;PRF+PROG;COND;PL;2;PRS
bilmoq V;COND;SG;3;PRS
ishlamoq V;COND;PL;1;PRS
pastga tushmoq V;COND;SG;1;PRS
g'amgin his etmoq V;IND;SG;3;PST
afzal ko'rmoq V;PROG;IND;SG;1;FUT
shug'ullanmoq V;COND;PL;2;PRS
to'lamoq V;PROG;COND;SG;2;PRS
umid qilmoq V;PFV;SBJV;SG;3;FUT
quvonmoq V;PFV;FH;PL;2
muhokama qilmoq V;PROG;IND;PL;1;PRS
tishlamoq V;SBJV;PL;3;PRS
orzu qilmoq V;PFV;IND;SG;2;INFM;PST
tugatmoq V;FRML;SG;2;PRS
reklama qilmoq V;PROG;IND;SG;1;PRS
qatl qilmoq V;PRF;SBJV;PL;1;PRS
hibsga olmoq V;PRF;SBJV;SG;3;PRS
yaralamoq V;IND;PL;1;PST
tarjima qilmoq V;PFV;FRML;IND;SG;2;PST
yugurmoq V;PROG;IND;PL;2;PST
tasvirlamoq V;PFV;FRML;SBJV;SG;2;FUT
to'xtamga kelmoq V;PROG;IND;PL;1;FUT
so'zlashmoq V;PFV;FH;PL;1
qolmoq V;PFV;FH;SG;3
parchalamoq V;PRF+PROG;COND;SG;3;PRS
xursand bo'lmoq V;FRML;IND;SG;2;PST
pasaymoq V;PROG;COND;SG;2;PRS
yopishmoq V;PL;2;PRS
shug'ullanmoq V;IND;PL;3;PST
demoq V;PROG;IND;SG;3;PRS
emaklamoq V;IND;PL;1;PST
ko'rishmoq V;PROG;IND;PL;1;FUT
uchmoq V;IND;PL;3;PST
aniqlamoq V;IND;PL;3;PST
azob chekmoq V;PROG;IND;PL;2;PRS
hukm qilmoq V;PRF+PROG;COND;SG;1;PRS
azob chekmoq V;PROG;IND;SG;3;PST
uyg'onmoq V;PFV;FH;PL;2
bormoq V;PROG;FRML;IND;SG;2;PST
bilmoq V;PROG;COND;PL;1;PRS
to'xtatmoq V;PROG;IND;PL;2;FUT
taklif qilmoq V;PFV;IND;PL;2;PST
quvmoq V;PRF;FRML;SBJV;SG;2;PRS
uchirmoq V;PRF;SBJV;SG;2;INFM;PRS
tiqmoq V;PROG;IND;SG;3;PST
ishlatmoq V;PRF;SBJV;SG;1;PRS
demoq V;PROG;COND;PL;1;PRS
aylantirmoq V;PFV;FH;PL;2
tortmoq V;PRF+PROG;COND;SG;2;INFM;PRS
xo'mraymoq V;PRF+PROG;COND;SG;1;PRS
yondirmoq V;IND;SG;1;PST
ko'tarmoq V;PROG;FRML;IND;SG;2;FUT
hisoblamoq V;PROG;IND;SG;3;PRS
sachratmoq V;SBJV;SG;2;PRS
hayratlantirmoq V;PROG;IND;PL;3;PRS
so'kinmoq V;COND;PL;1;PRS
pand bermoq V;PROG;FRML;IND;SG;2;PST
pand bermoq V;PFV;FRML;IND;SG;2;PST
kiyinmoq V;PFV;FH;PL;1
yashirinmoq V;PL;2;PRS
ozor bermoq V;PROG;IND;SG;1;FUT
uzanmoq V;PL;2;PRS
sog'inmoq V;PL;3;PRS
o'g'irlab ketmoq V;IND;PL;2;PST
demoq V;PROG;FRML;COND;SG;2;PRS
yozib olmoq V;PFV;FH;PL;3
yugurmoq V;PROG;FRML;IND;SG;2;FUT
yuvmoq V;PRF+PROG;FRML;COND;SG;2;PRS
qilmoq V;PROG;IND;SG;3;PST
mazax qilmoq V;PRF;SBJV;SG;1;PRS
haydamoq V;PFV;IND;SG;1;PST
demoq V;PFV;SBJV;PL;2;FUT
his qilmoq V;PROG;COND;SG;2;PRS
yiqitmoq V;PRF;SBJV;PL;1;PRS
yuvmoq V;PROG;COND;SG;2;PRS
hidlamoq V;FRML;IND;SG;2;PST
navbatda turmoq V;PROG;COND;SG;2;PRS
charchamoq V;PRF+PROG;COND;SG;2;INFM;PRS
so'zlashmoq V;PL;1;PRS
o'ynamoq V;PFV;FH;SG;2
yaqinlashmoq V;PRF;SBJV;SG;3;PRS
ta'kidlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
uxlamoq V;SBJV;SG;2;PRS
bezovta qilmoq V;PFV;FH;SG;2
kuymoq V;PFV;FH;SG;2
o'rganmoq V;PROG;FRML;IND;SG;2;PRS
tikilmoq V;PROG;COND;PL;1;PRS
ishonqiramay turmoq V;PFV;FRML;FH;SG;2
yugurmoq V;PFV;IND;SG;2;INFM;PST
ma'qullamoq V;PROG;IND;SG;3;PRS
o'qimoq V;PL;1;PRS
sog'inmoq V;SG;2;INFM;PRS
quvonmoq V;PRF+PROG;FRML;COND;SG;2;PRS
otmoq V;PFV;IND;SG;3;PST
o'ylamoq V;FRML;SG;2;PRS
pushaymon bo'lmoq V;PROG;IND;PL;1;FUT
zabt etmoq V;PROG;IND;PL;3;PRS
ajratmoq V;FRML;SG;2;PRS
bezmoq V;PRF;SBJV;SG;2;INFM;PRS
tashakkur aytmoq V;PFV;FRML;IND;SG;2;PST
bormoq V;COND;SG;2;INFM;PRS
bilmoq V;PRF;SBJV;SG;3;PRS
shamollamoq V;PL;3;PRS
yordam bermoq V;PROG;IND;SG;1;PRS
mavjud bo'lmoq V;PFV;IND;SG;2;INFM;PST
savdo qilmoq V;SG;1;PRS
yedirmoq V;FRML;IND;SG;2;PST
xizmat qilmoq V;PFV;IND;PL;3;PST
tanlamoq V;PFV;SBJV;PL;2;FUT
kelmoq V;SG;1;PRS
o'ramoq V;PFV;FRML;SBJV;SG;2;FUT
suzmoq V;PROG;IND;SG;1;PRS
ortidan bormoq V;PL;1;PRS
ko'zdan g'oyib bo'lmoq V;PFV;FH;SG;1
yormoq V;PRF+PROG;COND;SG;1;PRS
uchirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
olib turmoq V;PROG;IND;PL;3;PST
yaratmoq V;PL;2;PRS
butamoq V;PFV;FH;PL;1
o'lmoq V;PFV;SBJV;SG;2;INFM;FUT
ko'ndirmoq V;PL;2;PRS
o'chirmoq V;PFV;IND;SG;2;INFM;PST
bo'lmoq V;PFV;FH;SG;2
qaramoq V;PFV;SBJV;PL;2;FUT
fikr yuritmoq V;COND;SG;2;INFM;PRS
bastalamoq V;IND;PL;3;PST
imtihondan o'tmoq V;PRF;SBJV;SG;2;INFM;PRS
ortidan bormoq V;PROG;IND;SG;3;FUT
katta qilmoq V;PROG;COND;PL;3;PRS
qimor o'ynamoq V;PRF+PROG;FRML;COND;SG;2;PRS
narx turmoq V;COND;PL;2;PRS
katta bo'lmoq V;FRML;IND;SG;2;PST
yozmoq V;PROG;IND;PL;1;FUT
erishmoq V;PRF+PROG;COND;SG;3;PRS
bahs poylamoq V;PROG;IND;SG;3;FUT
saqlamoq V;PFV;FRML;SBJV;SG;2;FUT
ko'tarib yurmoq V;PRF;SBJV;SG;2;INFM;PRS
takror qo'ymoq V;PFV;IND;PL;2;PST
to'g'ramoq V;SG;3;PRS
ko'rmoq V;PRF+PROG;COND;PL;3;PRS
duo qilmoq V;PROG;IND;SG;3;FUT
ajratmoq V;PRF+PROG;COND;PL;1;PRS
quvontirmoq V;PROG;FRML;IND;SG;2;PRS
hidlamoq V;PRF;SBJV;PL;3;PRS
qayta olmoq V;PL;2;PRS
maslahat bermoq V;PFV;SBJV;SG;2;INFM;FUT
shamollatmoq V;PROG;IND;SG;1;PST
zarar yetkazmoq V;PFV;SBJV;SG;1;FUT
tagiga chizmoq V;PRF+PROG;COND;SG;1;PRS
shug'ullanmoq V;PROG;COND;PL;3;PRS
ta'minlamoq V;PFV;SBJV;SG;1;FUT
tashakkur aytmoq V;COND;SG;2;INFM;PRS
bahs poylamoq V;PL;1;PRS
yasamoq V;COND;PL;2;PRS
yig'lamoq V;SG;2;INFM;PRS
yiqitmoq V;PROG;FRML;COND;SG;2;PRS
qo'riqlamoq V;PROG;IND;PL;2;FUT
sotib olmoq V;PRF+PROG;COND;SG;2;INFM;PRS
azob chekmoq V;SBJV;PL;2;PRS
aralashmoq V;PRF+PROG;COND;PL;1;PRS
jalb qilmoq V;SG;2;INFM;PRS
uylanmoq V;IND;SG;1;PST
kuchga kiritmoq V;COND;SG;2;INFM;PRS
shubhalanmoq V;PFV;SBJV;PL;1;FUT
qadoqlamoq V;PFV;IND;SG;3;PST
cho'kmoq V;PFV;FH;SG;3
uxlamoq V;PROG;FRML;IND;SG;2;PRS
to'kmoq V;PROG;IND;PL;2;PRS
o'z ichiga olmoq V;PFV;FH;SG;2
izoh bermoq V;PFV;FRML;SBJV;SG;2;FUT
bog'lamoq V;PROG;IND;PL;1;FUT
navbatda turmoq V;PFV;FH;PL;2
unutmoq V;PROG;IND;PL;1;PRS
buyruq bermoq V;PFV;SBJV;SG;3;FUT
yozib olmoq V;IND;SG;1;PST
javob bermoq V;PFV;IND;SG;2;INFM;PST
uzanmoq V;PFV;SBJV;SG;1;FUT
shovqin solmoq V;COND;PL;2;PRS
charchamoq V;PROG;COND;PL;1;PRS
butamoq V;PROG;FRML;IND;SG;2;FUT
qarshilantirmoq V;SG;3;PRS
tugatmoq V;PROG;IND;SG;1;PRS
afzal ko'rmoq V;SBJV;PL;2;PRS
takror qo'ymoq V;IND;PL;1;PST
his qilmoq V;PROG;FRML;IND;SG;2;FUT
kezmoq V;PRF+PROG;FRML;COND;SG;2;PRS
sog'inmoq V;PROG;FRML;IND;SG;2;PRS
o'chirmoq V;PFV;SBJV;PL;2;FUT
yugurmoq V;PFV;FH;PL;2
talaffuz qilmoq V;PFV;FRML;FH;SG;2
bormoq V;PFV;SBJV;SG;2;INFM;FUT
sevmoq V;PROG;IND;PL;2;PRS
yuzlashmoq V;PROG;IND;SG;2;INFM;FUT
gaplashmoq V;PFV;IND;SG;2;INFM;PST
tortib olmoq V;PFV;FH;SG;1
uzanmoq V;PFV;FRML;FH;SG;2
topmoq V;COND;SG;1;PRS
ogohlantirmoq V;PROG;COND;PL;1;PRS
ketmoq V;PFV;SBJV;SG;3;FUT
ozor bermoq V;PL;3;PRS
varaqlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
tasvirlamoq V;PRF+PROG;COND;SG;1;PRS
qo'rqitmoq V;PRF+PROG;COND;SG;3;PRS
otmoq V;PROG;IND;PL;3;PST
qarshilantirmoq V;PROG;IND;PL;3;PST
e'tibordan chetda qoldirmoq V;IND;SG;1;PST
ishonqiramay turmoq V;IND;SG;2;INFM;PST
o'xshamoq V;PFV;FH;SG;1
bashorat qilmoq V;PRF;SBJV;SG;2;INFM;PRS
siqmoq V;IND;SG;3;PST
o'pmoq V;PFV;SBJV;PL;2;FUT
ta'minlamoq V;PRF+PROG;COND;SG;3;PRS
o'chirmoq V;PROG;IND;PL;1;PST
o'lmoq V;PROG;IND;SG;2;INFM;PST
qochmoq V;PFV;FH;PL;2
uzoqlashmoq V;IND;SG;2;INFM;PST
mo'ralamoq V;SG;2;INFM;PRS
shamollamoq V;PFV;FH;PL;3
imtihondan o'tmoq V;PFV;FH;SG;1
ko'rsatmoq V;PROG;FRML;IND;SG;2;PST
harakat qilib ko'rmoq V;IND;SG;3;PST
afzal ko'rmoq V;PRF;SBJV;PL;3;PRS
shubhalanmoq V;COND;PL;3;PRS
o'lmoq V;COND;PL;1;PRS
muomalada bo'lmoq V;PRF+PROG;COND;PL;1;PRS
taklif qilmoq V;PFV;FH;PL;2
saqlamoq V;PROG;IND;PL;3;PRS
sezmoq V;PROG;IND;SG;3;PST
yirtmoq V;PROG;FRML;COND;SG;2;PRS
la'natlamoq V;PRF;SBJV;PL;2;PRS
kamaytirmoq V;PFV;FH;SG;3
kutmoq V;PROG;COND;PL;3;PRS
yo'talmoq V;PROG;IND;PL;1;PST
inkor qilmoq V;PROG;FRML;IND;SG;2;FUT
javob bermoq V;PROG;COND;SG;2;PRS
bashorat qilmoq V;IND;PL;1;PST
ko'tarib yurmoq V;PFV;SBJV;SG;1;FUT
taraqqiy etmoq V;PROG;IND;PL;2;PRS
amin bo'lmoq V;PFV;SBJV;SG;1;FUT
qo'rqitmoq V;PRF;SBJV;PL;3;PRS
ishlab chiqarmoq V;PRF;SBJV;PL;2;PRS
uchirmoq V;PRF;SBJV;PL;2;PRS
kuymoq V;PROG;COND;SG;2;PRS
kesmoq V;SBJV;PL;3;PRS
pichirlamoq V;PRF+PROG;COND;SG;1;PRS
qolmoq V;PFV;IND;PL;3;PST
o'lchamoq V;PRF+PROG;COND;PL;1;PRS
olib turmoq V;PROG;IND;SG;2;INFM;FUT
farqlamoq V;PRF;SBJV;PL;3;PRS
o'tmoq V;PRF+PROG;COND;PL;1;PRS
rivojlanmoq V;PROG;COND;PL;1;PRS
ishlab chiqarmoq V;SG;2;INFM;PRS
ko'zdan g'oyib bo'lmoq V;PFV;FH;PL;1
umid qilmoq V;PFV;SBJV;SG;2;INFM;FUT
sog'inmoq V;PL;2;PRS
bezamoq V;PROG;FRML;IND;SG;2;PST
yoqtirmoq V;IND;PL;3;PST
so'zlashmoq V;PROG;IND;SG;2;INFM;FUT
eslamoq V;COND;PL;1;PRS
yemoq V;PFV;IND;SG;2;INFM;PST
uchmoq V;PROG;IND;PL;2;FUT
tanlamoq V;PFV;SBJV;SG;1;FUT
la'natlamoq V;COND;PL;3;PRS
hayratlantirmoq V;PROG;IND;PL;1;PST
yurmoq V;IND;SG;2;INFM;PST
buyruq bermoq V;COND;SG;3;PRS
azob chekmoq V;PL;1;PRS
pastga tushmoq V;PRF;SBJV;SG;3;PRS
g'amgin his etmoq V;PROG;IND;SG;1;FUT
kutmoq V;IND;PL;3;PST
shovqin solmoq V;PROG;IND;SG;3;FUT
hujum qilmoq V;FRML;COND;SG;2;PRS
ishontirmoq V;PROG;IND;SG;2;INFM;FUT
buyruq bermoq V;PFV;FH;PL;1
o'ramoq V;COND;SG;3;PRS
artmoq V;SG;2;INFM;PRS
yig'moq V;PFV;FRML;IND;SG;2;PST
to'xtamga kelmoq V;PRF+PROG;COND;PL;1;PRS
himoya qilmoq V;PROG;IND;SG;1;FUT
chetlashmoq V;PROG;IND;PL;3;PRS
gapirmoq V;IND;PL;1;PST
yopishmoq V;FRML;IND;SG;2;PST
artmoq V;PFV;FRML;SBJV;SG;2;FUT
aytmoq V;PFV;IND;SG;2;INFM;PST
yubormoq V;IND;SG;1;PST
marinadlamoq V;PRF;SBJV;PL;3;PRS
nafratlanmoq V;PROG;IND;SG;2;INFM;PST
qutqarmoq V;PFV;IND;SG;3;PST
sahnalashtirmoq V;IND;PL;2;PST
shamollamoq V;PFV;IND;SG;3;PST
asramoq V;PROG;IND;SG;3;FUT
sotmoq V;PL;3;PRS
qattiq yopmoq V;PROG;COND;SG;2;PRS
yashirinmoq V;PROG;IND;PL;1;FUT
qurmoq V;PL;3;PRS
bashorat qilmoq V;PFV;SBJV;PL;1;FUT
ta'kidlamoq V;PRF;SBJV;PL;3;PRS
demoq V;COND;PL;1;PRS
buyruq bermoq V;PROG;IND;SG;3;PST
tug'moq V;PROG;IND;SG;3;FUT
ko'rmoq V;SBJV;PL;1;PRS
to'plamoq V;FRML;IND;SG;2;PST
hujum qilmoq V;PROG;IND;PL;3;PST
charchamoq V;PFV;IND;SG;1;PST
tanlamoq V;PROG;IND;PL;1;PST
intervyu olmoq V;PRF;SBJV;PL;2;PRS
umid qilmoq V;COND;PL;1;PRS
sevmoq V;FRML;SG;2;PRS
otmoq V;PRF;SBJV;PL;3;PRS
sanatmoq V;PROG;IND;PL;1;FUT
bog'lamoq V;PRF;SBJV;SG;3;PRS
to'plab qo'ymoq V;PFV;FH;PL;1
yemoq V;FRML;IND;SG;2;PST
yuzlashmoq V;IND;SG;2;INFM;PST
siqmoq V;IND;PL;3;PST
o'z ichiga olmoq V;FRML;SG;2;PRS
quvonmoq V;PFV;SBJV;PL;3;FUT
yo'qotmoq V;PROG;IND;PL;2;PRS
reja tuzmoq V;PFV;IND;PL;2;PST
xursand bo'lmoq V;PFV;FH;SG;2
unutmoq V;COND;SG;3;PRS
tortmoq V;PRF;SBJV;PL;1;PRS
izoh bermoq V;PROG;FRML;IND;SG;2;PRS
tadqiq qilmoq V;PROG;IND;PL;2;FUT
nafratlanmoq V;PRF;SBJV;PL;1;PRS
zarar yetkazmoq V;IND;SG;3;PST
yetaklamoq V;PROG;IND;SG;2;INFM;PRS
yaralamoq V;PFV;IND;SG;1;PST
uloqtirmoq V;PL;1;PRS
yetishmoq V;PROG;IND;SG;2;INFM;FUT
vaqtni isrof etmoq V;PFV;SBJV;PL;2;FUT
tavsiya etmoq V;PRF+PROG;FRML;COND;SG;2;PRS
boshqarmoq V;PROG;IND;PL;1;PRS
ortidan bormoq V;PRF+PROG;COND;PL;1;PRS
silkimoq V;PROG;IND;PL;2;PRS
sanatmoq V;PFV;IND;SG;1;PST
gaplashmoq V;PFV;SBJV;PL;3;FUT
hal qilmoq V;IND;PL;3;PST
katta qilmoq V;PFV;IND;SG;2;INFM;PST
qutqarmoq V;FRML;SG;2;PRS
muhokama qilmoq V;PROG;COND;SG;1;PRS
rivojlantirmoq V;PFV;IND;SG;2;INFM;PST
o'ylamoq V;PROG;IND;SG;1;PST
rad etmoq V;COND;SG;3;PRS
sachratmoq V;PROG;IND;PL;1;PST
yoqtirmoq V;PROG;IND;SG;1;FUT
qidirmoq V;PRF+PROG;COND;PL;2;PRS
tug'moq V;PFV;SBJV;PL;1;FUT
qizq'anmoq V;PRF+PROG;COND;PL;3;PRS
tadqiq qilmoq V;PROG;COND;SG;3;PRS
qo'lga tushirmoq V;PFV;IND;SG;3;PST
buzilmoq V;PROG;IND;SG;1;PRS
yig'lamoq V;PROG;IND;SG;1;PST
pishirmoq V;PROG;IND;PL;1;FUT
kiyinmoq V;PROG;COND;SG;1;PRS
bo'yatmoq V;PROG;FRML;IND;SG;2;PRS
o'ynamoq V;PRF+PROG;FRML;COND;SG;2;PRS
topib olmoq V;PL;2;PRS
yordam bermoq V;PROG;COND;SG;2;PRS
imtihondan o'tmoq V;PFV;FH;SG;3
qolmoq V;PROG;IND;SG;3;PST
harakat qilib ko'rmoq V;PFV;SBJV;PL;2;FUT
uzanmoq V;PRF;SBJV;PL;1;PRS
ko'ndirmoq V;PFV;SBJV;PL;3;FUT
intizorlik bilan kutmoq V;PROG;IND;PL;1;FUT
uylanmoq V;COND;PL;3;PRS
pand bermoq V;PFV;FRML;SBJV;SG;2;FUT
afzal ko'rmoq V;COND;SG;3;PRS
so'z bermoq V;PROG;IND;PL;3;FUT
tushunib yetmoq V;SG;1;PRS
nolimoq V;PRF;SBJV;SG;1;PRS
talab qilmoq V;PROG;COND;PL;1;PRS
amin bo'lmoq V;PRF+PROG;COND;PL;3;PRS
qo'lga olmoq V;COND;SG;2;INFM;PRS
topmoq V;COND;PL;1;PRS
ishontirmoq V;PRF+PROG;COND;SG;1;PRS
uylamoq V;PRF+PROG;COND;PL;2;PRS
orzu qilmoq V;PROG;IND;PL;3;FUT
yordam bermoq V;PRF+PROG;COND;SG;1;PRS
yedirmoq V;PROG;IND;SG;1;PST
sanamoq V;PFV;FH;SG;1
o'tib ketmoq V;PFV;FRML;FH;SG;2
buyruq bermoq V;SG;2;INFM;PRS
olmoq V;PFV;FRML;SBJV;SG;2;FUT
supurmoq V;PRF;SBJV;SG;1;PRS
yarashmoq V;IND;PL;2;PST
tanlamoq V;PROG;IND;SG;1;PST
kesmoq V;SBJV;SG;2;PRS
yaratmoq V;PRF+PROG;COND;PL;1;PRS
tortmoq V;PRF;SBJV;PL;3;PRS
yuklamoq V;PROG;IND;PL;1;PST
yashirmoq V;PFV;FRML;SBJV;SG;2;FUT
ishlab chiqarmoq V;PROG;COND;SG;3;PRS
sarflamoq V;PFV;FRML;SBJV;SG;2;FUT
tavsiya etmoq V;SG;1;PRS
jiringlamoq V;PFV;FH;PL;1
paydo bo'lmoq V;PROG;IND;PL;1;PRS
yashirinmoq V;PROG;IND;PL;3;PST
quymoq V;PROG;IND;PL;3;FUT
orzu qilmoq V;PROG;IND;SG;1;FUT
kemada suzmoq V;PROG;IND;PL;2;FUT
to'g'ramoq V;FRML;SG;2;PRS
o'g'irlamoq V;PFV;IND;PL;2;PST
porlamoq V;PRF+PROG;COND;PL;3;PRS
ishontirmoq V;PROG;IND;SG;1;FUT
o'rab olmoq V;PFV;FRML;SBJV;SG;2;FUT
tavsiya qilmoq V;SG;3;PRS
unashtirmoq V;IND;SG;1;PST
|
0b9e4db913bb1f6681d858dd5dddbd9e46eb7575 | 449d555969bfd7befe906877abab098c6e63a0e8 | /617/CH9/EX9.9/Example9_9.sci | 8e3f36ba8453ee21bda6d935c20ffdbb2da4ca9f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,035 | sci | Example9_9.sci | clc();
clear;
// To determine the value of product of overall heat transfer and the total area
To1=140; // inlet temperature of oil in degF
To2=90; // Outlet temperature of oil in degf
Cpo=0.5; // Specific heat capacity in Btu/lb-degf
Tw1=60; // Inlet tempearture of water in degF
Tw2=80; // Outlet temperature of water in degF
mo=2000; // Mass flow rate of oil in lb/hr
q=mo*Cpo*(To1-To2); // Heat transferred in Btu/hr
Cpw=1; // Heat capacity of water in Btu/hr
mw=q/(Cpw*(Tw2-Tw1)); // Mass flow rate in lb/hr
E1=(Tw1-Tw2)/(Tw1-To2); // Effective ratio
// Seeing the effective ratio and mass flow rate ratio, from the graph we get UA
UA=1.15*mo*Cpo;
printf("The product of overall heat transfer and total area is %d Btu/hr-degF",UA);
|
364ce6ad9357663ea8e461f07d23231e37ca2565 | 449d555969bfd7befe906877abab098c6e63a0e8 | /965/CH4/EX4.25/25.sci | 0fef49ef0c950a2967cbd8b153d9a5c406bc3c32 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 387 | sci | 25.sci | clc;
clear all;
disp("Maximum temperature rise")
a=1.25*10^(-5);//m^2/s
k=54;// W/(m.C)
A=4*360*10^(-4);//m^2
m=1600;//kg
v=90;// km/h
tau=9;//seconds
KE=0.5*m*v*v*(1000/3600)^2;
Q=KE/tau;
Qs=Q;
disp("W",Q,"heat flow rate at surface Qs =")
//Qs=-k*(ti-ta)/(3.1416*a*tau)^0.5;
delT=Qs*((3.1416*a*tau)^0.5)/(k*A);
disp("degree C",delT,"temperature rise ta-ti =")
|
5008c6134fb86a5399884dbc3c5be062b01032c9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /331/CH6/EX6.3/Example_6_3.sce | 484271d17e1fb6665c98f600a7ad20dae920d059 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,115 | sce | Example_6_3.sce | //Caption: Cumulative distribution of the binomial distribution
//F(X,n,p)
//Example6.3
//Page176
clear;
clc;
//(a). Probability of nil project in time
X1 = 0;// nil project
n = 5; //number of trials
Pr = 0.9; //Probability of success in each binomial trial
Ompr = 1-Pr; //Probability of failure in each binomial trial
[P1,Q1]=cdfbin("PQ",X1,n,Pr,Ompr);
disp(P1,'Probability of zero head P(X=0,10,0.5)=')
//(b). two projects in time
X2 = 2;// two projects
P2 = (factorial(n)/(factorial(X2)*factorial(n-X2)))*(Pr^X2)*(Ompr^(n-X2));
disp(P2,'Probability of three heads P(X=2,10,0.5)=')
//(c). at most one project in time
X3 = 1;
[P3,Q3]=cdfbin("PQ",X3,n,Pr,Ompr);
disp(P3,'Probability of atmost 2 heads P(X<=1,10,0.5)=')
//(d). at least two projects in time
disp(1-P3,'Probability of atleat 3 heads P(X>=2,10,0.5)=')
//Result
//Probability of zero head P(X=0,10,0.5)=
// 0.00001
//Probability of three heads P(X=2,10,0.5)=
// 0.0081
//Probability of atmost 2 heads P(X<=1,10,0.5)=
// 0.00046
//Probability of atleat 3 heads P(X>=2,10,0.5)=
// 0.99954 |
cda8dbdd3e986e730fa481cd46cf8072dbed1ccf | 4b9c097ca22b5c8ccd28a75ce626422c90535bc7 | /test_vcast/example/environment/MULTIPLY/MULTIPLY.tst | 04b4715fa2a7d0f845ddabbef432dbfe2340ea21 | [] | no_license | narethim/cpp_examples | f227ba6f12da756159eed31ef9c81236890a4be1 | 7f2fa3ed6ddba646420175a8c7802ed6376d362c | refs/heads/master | 2022-12-29T01:12:28.535346 | 2020-10-17T22:05:03 | 2020-10-17T22:05:03 | 292,093,588 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,018 | tst | MULTIPLY.tst | -- VectorCAST 20.sp1 (05/27/20)
-- Test Case Script
--
-- Environment : MULTIPLY
-- Unit(s) Under Test: Multiply
--
-- 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:REMOVED_CL_PREFIX
TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES
TEST.SCRIPT_FEATURE:STANDARD_SPACING_R2
TEST.SCRIPT_FEATURE:OVERLOADED_CONST_SUPPORT
TEST.SCRIPT_FEATURE:UNDERSCORE_NULLPTR
TEST.SCRIPT_FEATURE:FULL_PARAMETER_TYPES
TEST.SCRIPT_FEATURE:STRUCT_DTOR_ADDS_POINTER
TEST.SCRIPT_FEATURE:STRUCT_FIELD_CTOR_ADDS_POINTER
TEST.SCRIPT_FEATURE:STATIC_HEADER_FUNCS_IN_UUTS
TEST.SCRIPT_FEATURE:VCAST_MAIN_NOT_RENAMED
--
-- Unit: Multiply
-- Subprogram: Multiply::twoValues
-- Test Case: BASIS-PATH-001
TEST.UNIT:Multiply
TEST.SUBPROGRAM:Multiply::twoValues
TEST.NEW
TEST.NAME:BASIS-PATH-001
TEST.BASIS_PATH:1 of 1
TEST.NOTES:
No branches in subprogram
TEST.END_NOTES:
TEST.VALUE:Multiply.<<GLOBAL>>.(cl).Multiply.Multiply.<<constructor>>.Multiply().<<call>>:0
TEST.VALUE:Multiply.Multiply::twoValues.x:<<MIN>>
TEST.VALUE:Multiply.Multiply::twoValues.y:<<MIN>>
TEST.END
-- Test Case: Multiply::twoValues.001
TEST.UNIT:Multiply
TEST.SUBPROGRAM:Multiply::twoValues
TEST.NEW
TEST.NAME:Multiply::twoValues.001
TEST.VALUE:Multiply.Multiply::twoValues.x:2
TEST.VALUE:Multiply.Multiply::twoValues.y:2
TEST.EXPECTED:Multiply.Multiply::twoValues.return:4
TEST.END
-- Test Case: Multiply::twoValues.002
TEST.UNIT:Multiply
TEST.SUBPROGRAM:Multiply::twoValues
TEST.NEW
TEST.NAME:Multiply::twoValues.002
TEST.VALUE:Multiply.Multiply::twoValues.x:-2
TEST.VALUE:Multiply.Multiply::twoValues.y:-2
TEST.EXPECTED:Multiply.Multiply::twoValues.return:4
TEST.END
-- Test Case: Multiply::twoValues.003
TEST.UNIT:Multiply
TEST.SUBPROGRAM:Multiply::twoValues
TEST.NEW
TEST.NAME:Multiply::twoValues.003
TEST.VALUE:Multiply.Multiply::twoValues.x:-2
TEST.VALUE:Multiply.Multiply::twoValues.y:2
TEST.EXPECTED:Multiply.Multiply::twoValues.return:-4
TEST.END
|
79ccb842ca12ca8f364d8e9f6773d2f6fa8bef49 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2417/CH6/EX6.24/Ex6_24.sce | f5e3ea2fc9db01db7c488779bba48db7b7cdda6a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,298 | sce | Ex6_24.sce | clear;
clc;
printf("\t\t\tProblem Number 6.24\n\n\n");
// Chapter 6: The Ideal Gas
// Problem 6.24 (page no. 267)
// Solution
//data given
T2=460+400; //Fahrenheit temperature converted to absolute final temperature //unit:R
T1=460+70; //Fahrenheit temperature converted to absolute initial temperature //unit:R
cp=0.24; //specific heat at constant pressure //Btu/lbm*R
J=778; //conversion factor
R=1545/29; //moleculer weight=29 //Unit:ft*lbf/lbm*R //constant of proportionality
//From the energy equation for the constant-pressure process,the heat transferred is deltah.Therefore,
//q=deltah=cp*(T2-T1)
deltah=cp*(T2-T1); //heat transferred //Btu/lb //into system
printf("The heat transferred is %f Btu/lb(into system)\n",deltah);
deltas=cp*log(T2/T1); //increase in entropy //Btu/lbm*R
printf("The increase in entropy is %f Btu/lbm*R\n",deltas);
//The flow work change is (p2*v2)/J - (p1*v1)/J = (R/J)*(T2-T1)
flowworkchange=(R/J)*(T2-T1); //Btu/lbm //The flow work change per pound of air
printf("The flow work change per pound of air is %f Btu/lbm\n",flowworkchange);
//In addition to each of the assumptions made in all the process being considered,it has further been tacitly assumed that these processes are carried out quasi- statically and without friction.
|
c17fb44b33e484b862619202e18b18cad0809090 | 8c8c1ab38e21729879e1fb57636eb778aaf88ca5 | /EXP_4_2.sce | a8ecafc1f351ab9c346fd2b588480d3bc37ff4e8 | [] | no_license | Rutvik1999/Scilab_3rdSemester | 3b9454b18220ed503e7129bf77a797feecd8f039 | 12342f90814f64e86398621be3070d5569388634 | refs/heads/master | 2020-05-18T08:21:10.203092 | 2019-04-30T16:03:59 | 2019-04-30T16:03:59 | 184,292,298 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 565 | sce | EXP_4_2.sce |
t = -10:1:10;
y = [ zeros(1,10), ones(1,1), zeros(1,10)];
clf(0)
subplot(3,1,1);
plot2d3(t,y);
energy_uimpulse = sum(t.*y);
disp("Energy of Unit impulse signal = ");
disp(energy_uimpulse);
title("unit impulse");
y2 = [ zeros(1,10), ones(1,11) ];
subplot(3,1,2);
plot2d3(t,y2);
energy_ustep = sum(t.*y2);
disp("Energy of Unit step signal = ");
disp(energy_ustep);
title("Unit Step");
subplot(3,1,3);
t2 = y2.*t;
energy_uramp = sum(t.*t2);
disp("Energy of Unit ramp signal = ");
disp(energy_uramp);
plot2d3(t,t2);
title("Unit Ramp");
|
3345e4e0f4f396240a66304b3994ffe6bc716da7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /991/CH10/EX10.2/Example10_2.sce | fa693ab3c39ca9e2fd9f1ceac82e705a8e7974fa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,259 | sce | Example10_2.sce | //Example 10.2.
clc
format(6)
hfe=50
hie=1200
hoe=30*10^-6
hre=2.5*10^-4
RC=5*10^3
C=160*10^-12
CC=6*10^-6
R1=100*10^3
R2=10*10^3
gm=50*10^-3
Ro=1/hoe
x1=(Ro*10^-3)
disp(x1,"Ro(k-ohm) = 1/hoe =")
format(4)
RB=(R1*R2)/(R1+R2)
x2=RB*10^-3
disp(x2,"RB(k-ohm) = R1 || R2 =")
Ri=hie
x3=Ri*10^-3
disp(x3,"Ri(k-ohm) = hie =")
format(5)
R_C=(RC*Ro)/(RC+Ro)
x4=R_C*10^-3
disp(x4,"RC''(k-ohm) = RC || Ro =")
format(4)
R_i=(RB*Ri)/(RB+Ri)
x6=R_i*10^-3
disp(x6,"Ri''(k-ohm) = RB || Ri =")
format(5)
R_ci=(R_C*R_i)/(R_C+R_i)
x7=R_ci*10^-3
disp(x7,"Rci'' = Rc'' || Ri'' =")
rbe=hfe/gm
disp(rbe,"rbe(ohm) = hfe / gm =")
disp("(a) Mid-band current gain,")
AIm=(-50*4.35*10^3)/((4.35*10^3)+(1.1*10^3))
disp(AIm,"AIm = (-hfe*R''C) / (RC''+Ri'') =")
disp("(b) Mid-band voltage gain,")
format(6)
AVm=(-50)*((0.87*10^3)/(1.2*10^3))
disp(AVm,"AVm = (-hfe) * (Rcid/hie) =")
disp("(c) Lower 3dB frequency,")
format(5)
fL=1/(2*%pi*6*10^-6*(5.45*10^3))
disp(fL,"fL(Hz) = 1 / (2*%pi*CC*(R_C+R_i)) =")
disp("Higher 3dB frequency,")
format(6)
fH=1/(2*%pi*C*rbe)
x8=fH*10^-3
disp(x8,"fH(kHz) = 1 / (2*%pi*C*rbe) =") // answer in textbook is wrong
disp("(d) Voltage gain x bandwidth")
y=abs(AVm*fH)
x9=(y*10^-6)
disp(x9,"|AVmfH| =") |
1fbc7ec233a7c2ba7e4dbef46f477922c4009df6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /73/CH16/EX16.3/Example16_3.sci | debdd5976b598e71c74db9b71c889615469c5ee0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 899 | sci | Example16_3.sci | //Chapter 16_Bipolar and MOS Digital Gate Circuits
//Caption : Fanouts
//Example 16.3: A TTL gate is guartnteed to sink 10mA without exceeding ann output voltage Vol=0.4V and to source 5mA without dropping below Voh=2.4V. If Tih=100uA at 2.4V and Iil=1mA at 0.4V,calculate the low-state and high-state fan-outs.
// Solution:
clear;
clc;
// for TTL gate
// fanout at low output is= collector saturation current of output transitor/load current of the driven gate.
// fanout for high output is=source current in driving gatte/input current of load gate
// from question given
Ic3=10*10^-3;// collector saturatioon current at output transistor
Ie=1*10^-3;// load current of driven gate
Ie4=5*10^-3;// source current in driving gate
Ic1=100*10^-6;// input current of load gate
Fl=Ic3/Ie;
disp(Fl,'fan out at low output state is:')
Fh=Ie4/Ic1;
disp(Fh,'fan out at high output state is:') |
fd6634936b2da59e1f3913984ac383fce92b25e1 | 05d972abeab11d213913aa6124e6a2104d859132 | /src/etc/McpSelUser4.tst | 838b936f19e79913e495aac45df93676e03139b1 | [] | no_license | LivTel/sdb_puller | 50ac8289d57c4927245ca70c4809cf2b9c807e82 | 9e573ee4d20035f846cb010a02099b9a25dc4e76 | refs/heads/master | 2022-06-24T04:59:10.771334 | 2019-12-18T19:10:47 | 2019-12-18T19:10:47 | 179,494,067 | 0 | 0 | null | 2020-07-01T23:30:44 | 2019-04-04T12:34:54 | C | UTF-8 | Scilab | false | false | 31 | tst | McpSelUser4.tst | sysreq, SYSREQ_REQ_SEL_USER_4
|
e3be88900e80773a33f8b05a2104293ba1f97cb9 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set7/s_Electronic_Devices_And_Circuits__J._Paul_2045.zip/Electronic_Devices_And_Circuits__J._Paul_2045/CH4/EX4.10/Ex4_10.sce | 69d6d6bc556b4352c9f7a9db0eb865ece6ffa939 | [] | 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 | 78 | sce | Ex4_10.sce | errcatch(-1,"stop");mode(2);//example 10
disp("rb/re<<1");
exit();
|
02b48903704cd5d8f6e381f8f6b06f63845b5216 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2534/CH13/EX13.1/Ex13_1.sce | d9b158eb3f52f06ef80eb1b0133992cd06de57b4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 202 | sce | Ex13_1.sce | //Ex13_1
clc
A = 100//amplification gain
A_Beta = 1//for sustain oscillation
Beta = A_Beta/A//feeback ratio
disp("A = "+string(A))
disp("A_Beta = "+string(A_Beta))
disp("Beta = "+string(Beta))
|
8f2192d7e4745215e85def508448d8f88e9b5f4b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2414/CH6/EX6.16/Ex6_16.sce | f8f27162d1800ef9481f65b95f8acf14369de825 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 773 | sce | Ex6_16.sce | clc;
close();
//page no 209
//prob no. 6.16
//All power in Watts
global('Pc')
Pc=1000;
funcprot(0) //to avoid function warnings
function [P]=avg_P(m) //function for total average power
P=(1+(m^2/2))*Pc;
endfunction
function [Pp]=peak_P(m) //function for peak power
Pp=(1+m)^2*Pc;
endfunction
function [Psb]=SB_P(m) //function for SB power
Psb=avg_P(m)-Pc;
endfunction
function display(m) //function for displaying table
table=[m*100 avg_P(m) peak_P(m) SB_P(m)];
disp(table);
endfunction
disp('Summary for the result is displayed in the table ');
disp('Mod^n_% Avg_Pwr Peak_Pwr SB_Pwe');
m=0; //for m=0
display(m);
m=0.5; //for m=0.5
display(m);
m=1; //for m=1
display(m);
|
e221891a88f7e63fb2add130112a16aef36ce622 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2720/CH1/EX1.21.3/ex1_21_3.sce | e915b00a8ac8010138d3d4724ac07ab75eb02ad0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 291 | sce | ex1_21_3.sce | // Exa 1.21.3
clc;
clear;
close;
// Given data
n = 1;
theta = 30;// in degree
lembda = 1.78;// in Å
lembda = lembda * 10^-10;// in m
//Formula 2*d*sin(theta) = n*lembda;
d = (n*lembda)/(2*sind(theta));// in m
d = d * 10^10;// in Å
disp(d,"The interplaner spacing in Å is");
|
2223d7a3e7cfd8d36406c1942cc0755f3092eb75 | d9111ba53f15c146e1ba9ef4c76ae213b4af2db0 | /Iakobi,zeidel (копия)/Scilab/Iakobi.sce | 2991164c6cd199d007022d1c0c21496936257a82 | [] | no_license | Andruka/ChislMethod-5-semestr- | c404b946e093d2e7ac2bbdd914ffb4b243310f0b | a28547b347d62bb5594131900bd8a33653aef259 | refs/heads/master | 2021-09-02T05:04:10.915470 | 2017-12-30T16:05:16 | 2017-12-30T16:05:16 | 115,805,317 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,371 | sce | Iakobi.sce | funcprot(0);
function []=checkUslovie(N,a)
num=0;
summ=0;
for i=1:N
num=abs(a(i,i));
for j=1:N
if(i~=j) then
summ=summ+abs(a(i,j));
end
end
if(num<summ) then
disp('Условие диагонального преобладания не выполнено!');
abort;
end
summ=0;
end
endfunction
function[x]=findX(N,method,y,a,tempX)
if(method==1) then
for i=1:N
x(i,1)=y(i,1);
for j=1:N
if(i~=j) then
x(i,1)=x(i,1)-a(i,j)*tempX(j,1);
end
end
x(i,1)=x(i,1)/a(i,i);
end
end
if(method==2) then
for i=1:N
x(i,1)=y(i,1);
for j=1:i
if(i~=j) then
x(i,1)=x(i,1)-a(i,j)*x(j,1);
end
end
for j=i:N
if(i~=j) then
x(i,1)=x(i,1)-a(i,j)*tempX(j,1);
end
end
x(i,1)=x(i,1)/a(i,i);
end
end
endfunction
function[iter,x,tempX]=func(E,N,y,a,method,iter,x,tempX)
Max=0;
while 1
[x]=findX(N,method,y,a,tempX);
iter=iter+1;
Max=abs(x(1,1)-tempX(1,1));
for i=2:N
if(Max<abs(x(i,1)-tempX(i,1))) then
Max=abs(x(i,1)-tempX(i,1));
end
end
if(Max<E) then
return
end
for i=1:N
tempX(i,1)=x(i,1);
end
end
endfunction
N=input('N=');
E=input('E=');
x=zeros(N,1);
iter=0;
disp('Ввод матрицы A');
a=input('');
disp('Ввод матрицы Y');
y=input('');
if(size(a,1)~=N) then
abort;
elseif (size(a,2)~=N) then
abort;
elseif (size(y)~=N)
abort;
end
checkUslovie(N,a);
tempX=zeros(N,1)
z=[a y];
disp('');
disp('Система:');
disp(z);
[iter,x,tempX]=func(E,N,y,a,1,iter,x,tempX);
disp('');
disp('Метод Якоби:');
disp('Решение:');
disp(x);
disp('Итераций:');
disp(iter);
for i=1:N
x(i,1)=0;
tempX(i,1)=0;
F(i,1)=0;
end
iter=0;
d=0;
[iter,x,tempX]=func(E,N,y,a,2,iter,x,tempX);
disp('');
disp('Метод Зейделя:');
disp('Решение:');
disp(x);
disp('Итераций:');
disp(iter);
|
8f17694b9f1d076e42eba5c11b0ce0d9cc539b05 | 449d555969bfd7befe906877abab098c6e63a0e8 | /635/CH10/EX10.6/Ch10Ex6.sci | f9e4f9987804ae89af9bdfa9a3cb7b4ffc2f0793 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 845 | sci | Ch10Ex6.sci | // Scilab Code Ex 10.6 Electron probability above Fermi energy: Page-336 (2010)
k = 1.38D-23; // Boltzmann constant, in J/mol-K
FD = 0.10; // Fermi-Dirac distribution probability for electrons
Efermi = 5.5; // Fermi Energy of silver, in eV
E = Efermi + 0.01*Efermi; // Allowed energy for electrons
dE = E - Efermi; //Deviation of allowed energy from Fermi energy, in eV
DEeV = dE*1.6D-19; //Convert into joule
// The Fermi-Dirac distribution function as at any temperature T is given by
// F(E) = FD = 1/(exp((E-Efermi)/kT)+1
// Solving for T
T = DEeV/(k*log(1/FD-1)); // Absolute temperature at which result follows, in K
disp(DEeV, dE, E);
disp(T, "The temperature at which the given probability is expected, in K, is :");
//Result
// The temperature at which the given probability is expected, in K, is :
// 290.2212 |
1d879e7b5d6a3623e01cc7e1b7664e51193d4b59 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2144/CH2/EX2.10/exa_2_10.sce | e40e44475eb5adad3c69a11ac2ec6e3287f3f5b0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 638 | sce | exa_2_10.sce | // Example 2.10
clc;
clear;
close;
// Given data
MR= 8314.2;// in J/kg-mole-K
mass= 44;// Molecular mass of carbon dioxide in kg
R= MR/mass;// in J/kg-K
P= 11;// in MPa
P=P*10^6;// in Pa
V= 50*10^-3;// in m^3
T= 18+273;// in K
// Formula P*V= m*R*T
m= P*V/(R*T);// in kg
m=round(m);// in kg
MolecularVolume= MR*T/P;// in m^3
D= m/V;// density of the gas in kg/m^3
SpecificVolume= 1/D;// in m^3/kg
disp(m,"The mass of the gas in kg is : ")
disp(MolecularVolume,"The Molecular volume in m^3 is : ")
disp(D,"The density of the gas in kg/m^3 is : ")
disp(SpecificVolume,"The specific volume of the gas in m^3/kg is : ")
|
a83c9152a3f03bbee90dbfff499fcc1e4932b693 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3401/CH9/EX9.1/Ex9_1.sce | 4808cf386590fb94b13260111e576411ae34f130 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 479 | sce | Ex9_1.sce | clc
T=300 //K
k=8.617*10**-5//eV/K
e=1.6*10**-19 //C
Nd=10**16 //cm^-3
Nr=2.8*10**19 //cm^-3
Vbi=0.33
phim=4.55 //V
psi=4.01 //V
esp=11.7
esp0=8.85*10^-14
hb=phim-psi
disp(hb,"barrier height in V is= ")
phiu=(k*T)*log(Nr/Nd)
disp(phiu,"schottky barrier height in V is= ")
Vbt=hb-phiu
disp(Vbt,"in V is=")
xn=sqrt((2*esp*esp0*Vbi)/(e*Nd))
disp(xn,"space charge in cm is= ")
Emax=(e*Nd*xn)/(esp*esp0)
disp(Emax,"maxi electric field in V/cm is= ")
|
e4b60e55b5b133ce95b10115f4c4f0f3df8b6a1f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3763/CH5/EX5.1/Ex5_1.sce | 68e8666c5b1d370f420fc46b14b2dfa01ef385f0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 653 | sce | Ex5_1.sce | clear
//
//
//
//Variable declaration
Na=6.023*10**26 //avagadro number
e=1.602*10**-19
d=8960 //density
N=1 //number of free electrons
w=63.54 //atomic weight
i=10 //current(ampere)
m=9.1*10**-31
rho=2*10**-8 //resistivity(ohm m)
r=0.08*10**-2 //radius(m)
c=1.6*10**6 //mean thermal velocity(m/s)
//Calculation
A=%pi*r**2 //area(m**2)
n=Na*d*N/w
vd=i/(A*n*e) //drift speed(m/s)
tow_c=m/(n*e**2*rho)
lamda=tow_c*c //mean free path(m)
//Result
printf("\n drift speed is %0.1f *10**-5 m/s",vd*10**5)
printf("\n mean free path is %0.2f *10**-8 m",lamda*10**8)
printf("\n answer given in the book is wrong")
|
75d320fc68d6a1d8dde71608df7bb5a967f6f1a5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /821/CH5/EX5.51/5_51.sce | 5225eaf913ebe02ccec95c58afede2b091d04762 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 376 | sce | 5_51.sce | lf=80;//Latent heat of fusion of Ice in cal per gram//
lv=540;//Latent heat of evaporation of water in cal per gram//
Tf=273;//fusion temperature in kelvin//
Tb=373;//Boiling temperature in kelvin//
dTb=Tb-Tf;//change in temperature//
dTf=(dTb*Tf^2*lv)/(Tb^2*lf*1000);
FP=0-dTf;//Freezing point of the solution//
printf('The Freezing point of the solution=FP=%f',FP);
|
15dddaabb0365ac75f67f42f4d70b20500d21f61 | 3cbee2296fd6b54f80587eead83813d4c878e06a | /sci2blif/macrocab_gen_fcn.sce | 15a52a4943361e2044ef2ab45ddffeb3aae7a8ad | [] | no_license | nikhil-soraba/rasp30 | 872afa4ad0820b8ca3ea4f232c4168193acbd854 | 936c6438de595f9ac30d5619a887419c5bae2b0f | refs/heads/master | 2021-01-12T15:19:09.899590 | 2016-10-31T03:23:48 | 2016-10-31T03:23:48 | 71,756,442 | 0 | 0 | null | 2016-10-24T05:58:57 | 2016-10-24T05:58:56 | null | UTF-8 | Scilab | false | false | 36,552 | sce | macrocab_gen_fcn.sce | global file_name path fname extension chip_num board_num brdtype macrocab_name folder_name;
function dir_callback()
disp(" ");
endfunction
function MC_folder_name_callback()
global folder_name;
folder_name_obj = findobj('tag','MC_folder_name');
folder_name = folder_name_obj.string;
endfunction
function MC_block_name_callback()
global macrocab_name;
block_name_obj = findobj('tag','MC_block_name');
macrocab_name = block_name_obj.string;
endfunction
function Start_MC_design_callback()
global macrocab_name folder_name;
// Macro cab block name overlap check
fd_r = mopen("/home/ubuntu/rasp30/vpr2swcs/block_list",'r');block_list=mgetl(fd_r);mclose(fd_r); // Default value: frame.
l_block_list=size(block_list,1);
for ii=1:l_block_list
if block_list(ii) == macrocab_name then messagebox('Please change the name of macro-cab block.', "Macroblock name error", "error"); abort; end
end
file_list=listfiles("/home/ubuntu/rasp30/xcos_blocks/*.sci");
l_file_list=size(file_list,1);
for ii=1:l_file_list
if file_list(ii) == "/home/ubuntu/rasp30/xcos_blocks/"+macrocab_name+".sci" then messagebox('Please change the name of macro-cab block.', "Macroblock name error", "error"); abort; end
end
temp_string="/home/ubuntu/RASP_Workspace/"+folder_name;
mkdir(temp_string);
cd(temp_string);
unix_g("cp /home/ubuntu/rasp30/sci2blif/xcos_ref/macrocab_generation/macrocab_xcosref_30_30a.xcos "+macrocab_name+".xcos");
xcos(macrocab_name+".xcos");
messagebox('Make changes based on the provided xcos and Save it',"Design Macro-CAB block", "info", ["OK"], "modal");
endfunction
function Generate_MC_callback()
clear blk;
global macrocab_name;
importXcosDiagram(macrocab_name+".xcos");
no=length(scs_m.objs);
objnum=1; numoflink=0; numofblk=0; blk_objs=[]; link_name=zeros(1,no);
j=1;
for i =1:no
if(length(scs_m.objs(i))==5) then // Blocks
blk(j,1)=i;
blk_name.entries(j)=scs_m.objs(i).gui;
blk_objs(objnum)=j; //BLOCK NUMBER actually stored
objnum=objnum+1;
j=j+1;
numofblk=numofblk+1;
end
end
// Get block information
input_matrix=[0 0]; output_matrix=[0 0];
j_fgswc=1; fgswc_matrix=["" ""];
j_fgota=1; fgota_matrix=["" ""];
j_ota=1; ota_matrix=["" ""];
j_cap=1; cap_matrix=["" ""];
for bl=1:length(blk_objs)
if (blk_name.entries(bl)=='macrocab_in') then
if scs_m.objs(bl).model.rpar(1) ~= "-" then
input_matrix(strtod(scs_m.objs(bl).model.rpar(1))+1,1)=strtod(scs_m.objs(bl).model.rpar(1));
input_matrix(strtod(scs_m.objs(bl).model.rpar(1))+1,2)=scs_m.objs(bl).model.ipar(1);
end
end
if (blk_name.entries(bl)=='macrocab_out') then
if scs_m.objs(bl).model.rpar(1) ~= "-" then
output_matrix(strtod(scs_m.objs(bl).model.rpar(1))+1,1)=strtod(scs_m.objs(bl).model.rpar(1));
output_matrix(strtod(scs_m.objs(bl).model.rpar(1))+1,2)=scs_m.objs(bl).model.ipar(1);
end
end
if (blk_name.entries(bl)=='macrocab_fgswc') then
if scs_m.objs(bl).model.rpar(1) ~= "-" then
fgswc_matrix(j_fgswc,1) = scs_m.objs(bl).model.rpar(1);
fgswc_matrix(j_fgswc,2) = string(scs_m.objs(bl).model.ipar(1));
fgswc_matrix(j_fgswc,3) = string(scs_m.objs(bl).model.ipar(2));
if scs_m.objs(bl).model.rpar(1) == "T" then
fgswc_matrix(j_fgswc,4) = scs_m.objs(bl).model.rpar(2);
fgswc_matrix(j_fgswc,5) = scs_m.objs(bl).model.rpar(3);
end
j_fgswc=j_fgswc+1;
end
end
if (blk_name.entries(bl)=='macrocab_fgota0') | (blk_name.entries(bl)=='macrocab_fgota1') then
if scs_m.objs(bl).model.rpar(1) ~= "-" then
for ii=1:7
fgota_matrix(j_fgota,ii) = scs_m.objs(bl).model.rpar(ii+1);
end
for ii=1:10
fgota_matrix(j_fgota,ii+7) = string(scs_m.objs(bl).model.ipar(ii));
end
j_fgota=j_fgota+1;
end
end
if (blk_name.entries(bl)=='macrocab_ota0') | (blk_name.entries(bl)=='macrocab_ota1') then
if scs_m.objs(bl).model.rpar(1) ~= "-" then
ota_matrix(j_ota,1) = scs_m.objs(bl).model.rpar(2);
ota_matrix(j_ota,2) = scs_m.objs(bl).model.rpar(3);
ota_matrix(j_ota,3) = string(scs_m.objs(bl).model.ipar(1));
ota_matrix(j_ota,4) = string(scs_m.objs(bl).model.ipar(2));
j_ota=j_ota+1;
end
end
if (blk_name.entries(bl)=='macrocab_cap0') | (blk_name.entries(bl)=='macrocab_cap1') | (blk_name.entries(bl)=='macrocab_cap2') | (blk_name.entries(bl)=='macrocab_cap3') then
if scs_m.objs(bl).model.rpar(1) ~= "-" then
cap_matrix(j_cap,1) = scs_m.objs(bl).model.rpar(2);
cap_matrix(j_cap,2) = string(scs_m.objs(bl).model.ipar(1));
cap_matrix(j_cap,3) = string(scs_m.objs(bl).model.ipar(2));
cap_matrix(j_cap,4) = string(scs_m.objs(bl).model.ipar(3));
cap_matrix(j_cap,5) = string(scs_m.objs(bl).model.ipar(4));
cap_matrix(j_cap,6) = string(scs_m.objs(bl).model.ipar(5));
cap_matrix(j_cap,7) = string(scs_m.objs(bl).model.ipar(6));
j_cap=j_cap+1;
end
end
end
//disp(input_matrix); disp(output_matrix); disp(fgswc_matrix); disp(fgota_matrix); disp(ota_matrix); disp(cap_matrix);
numofinput = size(input_matrix,1);
numofoutput = size(output_matrix,1);
numoffgswc = size(fgswc_matrix,1); if fgswc_matrix == ["" ""] then numoffgswc =0; end
numoffgota = size(fgota_matrix,1); if fgota_matrix == ["" ""] then numoffgota =0; end
numofota = size(ota_matrix,1); if ota_matrix == ["" ""] then numofota =0; end
numofcap = size(cap_matrix,1); if cap_matrix == ["" ""] then numofcap =0; end
// arch
fd_w= mopen("rasp3_arch_"+macrocab_name+"_1.xml",'wt');
mputl(msprintf("\t\t")+"<model name="""+macrocab_name+""">",fd_w);
mputl(msprintf("\t\t\t")+"<input_ports>",fd_w);
mputl(msprintf("\t\t\t\t")+"<port name=""in""/>",fd_w);
mputl(msprintf("\t\t\t")+"</input_ports>",fd_w);
mputl(msprintf("\t\t\t")+"<output_ports>",fd_w);
mputl(msprintf("\t\t\t\t")+"<port name=""out""/>",fd_w);
mputl(msprintf("\t\t\t")+"</output_ports>",fd_w);
mputl(msprintf("\t\t")+"</model>",fd_w);
mclose(fd_w);
fd_w= mopen("rasp3_arch_"+macrocab_name+"_2.xml",'wt');
mputl(msprintf("\t\t\t")+"<pb_type name="""+macrocab_name+""" blif_model=""."+macrocab_name+""" num_pb=""1"">",fd_w);
mputl(msprintf("\t\t\t\t")+"<input name=""in"" num_pins="""+string(numofinput)+"""/>",fd_w);
mputl(msprintf("\t\t\t\t")+"<output name=""out"" num_pins="""+string(numofoutput)+"""/>",fd_w);
mputl(msprintf("\t\t\t\t")+"<delay_constant max=""1.667e-9"" in_port="""+macrocab_name+".in"" out_port="""+macrocab_name+".out""/>",fd_w);
mputl(msprintf("\t\t\t")+"</pb_type>",fd_w);
mclose(fd_w);
fd_w= mopen("rasp3_arch_"+macrocab_name+"_3.xml",'wt');
if numofinput == 1 then mputl(msprintf("\t\t\t\t")+"<complete name=""crossbar"" input=""cab.I[12:0]"" output="""+macrocab_name+".in[0]""/>",fd_w); end
if numofinput ~= 1 then mputl(msprintf("\t\t\t\t")+"<complete name=""crossbar"" input=""cab.I[12:0]"" output="""+macrocab_name+".in["+string(numofinput-1)+":0]""/>",fd_w); end
if numofoutput == 1 then mputl(msprintf("\t\t\t\t")+"<complete name=""crossbar"" input="""+macrocab_name+"[0].out[0]"" output=""cab.O[4]""/>",fd_w); end
if numofoutput ~= 1 then mputl(msprintf("\t\t\t\t")+"<complete name=""crossbar"" input="""+macrocab_name+"[0].out["+string(numofoutput-1)+":0]"" output=""cab.O[4:"+string(4-(numofoutput-1))+"]""/>",fd_w); end
mclose(fd_w);
// python
fd_w= mopen("rasp30_"+macrocab_name+"_2_1.py",'wt');
if numofoutput == 1 then mputl(",''"+macrocab_name+"[0].out[0]''",fd_w); end
if numofoutput ~= 1 then mputl(",''"+macrocab_name+"[0].out[0:"+string(numofoutput-1)+"]''",fd_w); end
mclose(fd_w);
fd_w= mopen("rasp30_"+macrocab_name+"_3_1.py",'wt');
if numofinput == 1 then mputl(",''"+macrocab_name+"[0].in[0]''",fd_w); end
if numofinput ~= 1 then mputl(",''"+macrocab_name+"[0].in[0:"+string(numofinput-1)+"]''",fd_w); end
mclose(fd_w);
fd_w= mopen("rasp30_"+macrocab_name+"_4.py",'wt');
if numofoutput == 1 then mputl(msprintf("\t\t")+"''"+macrocab_name+"[0].out[0]'',[0,"+string(output_matrix(1,2))+"],",fd_w); end
if numofoutput ~= 1 then
output_string_temp="["+string(output_matrix(1,2));
for ii=2:numofoutput
output_string_temp=output_string_temp+","+string(output_matrix(ii,2));
end
output_string_temp=output_string_temp+"]";
mputl(msprintf("\t\t")+"''"+macrocab_name+"[0].out[0:"+string(numofoutput-1)+"]'',[0,"+output_string_temp+"],",fd_w);
end
mclose(fd_w);
fd_w= mopen("rasp30_"+macrocab_name+"_5.py",'wt');
if numofinput == 1 then mputl(msprintf("\t\t")+"''"+macrocab_name+"[0].in[0]'',["+string(input_matrix(1,2))+",0],",fd_w); end
if numofinput ~= 1 then
input_string_temp="["+string(input_matrix(1,2));
for ii=2:numofinput
input_string_temp=input_string_temp+","+string(input_matrix(ii,2));
end
input_string_temp=input_string_temp+"]";
mputl(msprintf("\t\t")+"''"+macrocab_name+"[0].in[0:"+string(numofinput-1)+"]'',["+input_string_temp+",0],",fd_w);
end
mclose(fd_w);
fd_w= mopen("rasp30_"+macrocab_name+"_7.py",'wt');
mputl("+[''"+macrocab_name+"'']*1",fd_w);
mclose(fd_w);
fd_w= mopen("rasp30_"+macrocab_name+"_8_1.py",'wt');
mputl(",''"+macrocab_name+"_in'':"+string(numofinput),fd_w);
mclose(fd_w);
fd_w= mopen("rasp30_"+macrocab_name+"_8_2.py",'wt');
mputl(",''"+macrocab_name+"_out'':"+string(numofoutput),fd_w);
mclose(fd_w);
fd_w= mopen("rasp30_"+macrocab_name+"_9.py",'wt');
mputl(msprintf("\t\t")+"''"+macrocab_name+"[0]'',[0,0],",fd_w);
mclose(fd_w);
fd_w= mopen("rasp30_"+macrocab_name+"_10.py",'wt');
ls_temp = msprintf("\t\t")+"''"+macrocab_name+"_ls[0]'',["; // ls: local switch
comma_string="";
ls_flag=0; // 0: off, 1: on
if numoffgswc ~= 0 then
for ii=1:numoffgswc
if fgswc_matrix(ii,1) == "C" then ls_temp=ls_temp+comma_string+"["+fgswc_matrix(ii,2)+","+fgswc_matrix(ii,3)+"]";comma_string=","; ls_flag=1; end
end
end
if numoffgota ~= 0 then
for ii=1:numoffgota
if fgota_matrix(ii,7) == "0" then ls_temp=ls_temp+comma_string+"["+fgota_matrix(ii,14)+","+fgota_matrix(ii,15)+"],["+fgota_matrix(ii,16)+","+fgota_matrix(ii,17)+"]"; comma_string=","; ls_flag=1; end
end
end
ls_temp = ls_temp + "],";
if ls_flag == 1 then mputl(ls_temp,fd_w); end
if numofcap ~= 0 then
for ii=1:numofcap // cs: cap switch
mputl(msprintf("\t\t")+"''"+macrocab_name+"_"+cap_matrix(ii,1)+"_4x_cs[0]'',["+cap_matrix(ii,2)+","+cap_matrix(ii,3)+"],",fd_w);
mputl(msprintf("\t\t")+"''"+macrocab_name+"_"+cap_matrix(ii,1)+"_2x_cs[0]'',["+cap_matrix(ii,4)+","+cap_matrix(ii,5)+"],",fd_w);
mputl(msprintf("\t\t")+"''"+macrocab_name+"_"+cap_matrix(ii,1)+"_1x_cs[0]'',["+cap_matrix(ii,6)+","+cap_matrix(ii,7)+"],",fd_w);
end
end
if numoffgota ~= 0 then
for ii=1:numoffgota
mputl(msprintf("\t\t")+"''"+macrocab_name+"_"+fgota_matrix(ii,1)+"[0]'',["+fgota_matrix(ii,8)+","+fgota_matrix(ii,9)+"],",fd_w);
mputl(msprintf("\t\t")+"''"+macrocab_name+"_"+fgota_matrix(ii,3)+"[0]'',["+fgota_matrix(ii,10)+","+fgota_matrix(ii,11)+"],",fd_w);
mputl(msprintf("\t\t")+"''"+macrocab_name+"_"+fgota_matrix(ii,5)+"[0]'',["+fgota_matrix(ii,12)+","+fgota_matrix(ii,13)+"],",fd_w);
end
end
if numofota ~= 0 then
for ii=1:numofota
mputl(msprintf("\t\t")+"''"+macrocab_name+"_"+ota_matrix(ii,1)+"[0]'',["+ota_matrix(ii,3)+","+ota_matrix(ii,4)+"],",fd_w);
end
end
if numoffgswc ~= 0 then
for ii=1:numoffgswc
if fgswc_matrix(ii,1) == "T" then mputl(msprintf("\t\t")+"''"+macrocab_name+"_"+fgswc_matrix(ii,4)+"[0]'',["+fgswc_matrix(ii,2)+","+fgswc_matrix(ii,3)+"],",fd_w); end
end
end
mclose(fd_w);
fd_w= mopen("rasp30_"+macrocab_name+"_11.py",'wt');
append1_temp = msprintf("\t\t\t\t\t")+"elif swc_name1 in ["; // append1: local target (FGs)
comma_string="";
append1_flag=0; // 0: off, 1: on
if numoffgswc ~= 0 then
for ii=1:numoffgswc
if fgswc_matrix(ii,1) == "T" then append1_temp=append1_temp+comma_string+"''"+macrocab_name+"_"+fgswc_matrix(ii,4)+"[0]''";comma_string=","; append1_flag=1; end
end
end
append1_temp = append1_temp + "]:";
if append1_flag == 1 then mputl(append1_temp,fd_w); mputl(msprintf("\t\t\t\t\t\t")+"swcx.append(1)",fd_w); end
append2_temp = msprintf("\t\t\t\t\t")+"elif swc_name1 in ["; // append2: ota bias
comma_string="";
append2_flag=0; // 0: off, 1: on
if numofota ~= 0 then
for ii=1:numofota
append2_temp=append2_temp+comma_string+"''"+macrocab_name+"_"+ota_matrix(ii,1)+"[0]''"; comma_string=","; append2_flag=1;
end
end
if numoffgota ~= 0 then
for ii=1:numoffgota
append2_temp=append2_temp+comma_string+"''"+macrocab_name+"_"+fgota_matrix(ii,1)+"[0]''"; comma_string=","; append2_flag=1;
end
end
append2_temp = append2_temp + "]:";
if append2_flag == 1 then mputl(append2_temp,fd_w); mputl(msprintf("\t\t\t\t\t\t")+"swcx.append(2)",fd_w); end
append3_temp = msprintf("\t\t\t\t\t")+"elif swc_name1 in ["; // append3: fgota input FG bias
comma_string="";
append3_flag=0; // 0: off, 1: on
if numoffgota ~= 0 then
for ii=1:numoffgota
append3_temp=append3_temp+comma_string+"''"+macrocab_name+"_"+fgota_matrix(ii,3)+"[0]''"; comma_string=",";
append3_temp=append3_temp+comma_string+"''"+macrocab_name+"_"+fgota_matrix(ii,5)+"[0]''"; comma_string=",";
append3_flag=1;
end
end
append3_temp = append3_temp + "]:";
if append3_flag == 1 then mputl(append3_temp,fd_w); mputl(msprintf("\t\t\t\t\t\t")+"swcx.append(3)",fd_w); end
mclose(fd_w);
// genswcs.py
fd_w= mopen("genswcs_"+macrocab_name+"_2_1.py",'wt');
if numofoutput > 1 then mputl(",''"+macrocab_name+"[0]''",fd_w); end
mclose(fd_w);
fd_w= mopen("genswcs_"+macrocab_name+"_4_1.py",'wt');
if numofoutput > 1 then mputl(",''"+macrocab_name+"[0]''",fd_w); end
mclose(fd_w);
fd_w= mopen("genswcs_"+macrocab_name+"_5.py",'wt');
mputl(msprintf("\t\t")+"elif subckt in [''"+macrocab_name+"'']:",fd_w);
mputl(msprintf("\t\t\t")+"key=ports["+string(numofinput)+"]",fd_w);
mclose(fd_w);
dir_frame ="/home/ubuntu/rasp30/vpr2swcs/macroblk_generation/frame/";
// .xml (arch)
rasp_xml_list={"rasp3";"rasp3_vmm";"rasp3a";"rasp3a_vmm";};
l_rasp_xml_list=size(rasp_xml_list,1);
for ii=1:l_rasp_xml_list
unix_w("cat "+dir_frame+rasp_xml_list(ii)+"_arch_frame1.xml rasp3_arch_"+macrocab_name+"_1.xml > "+rasp_xml_list(ii)+"_arch_gen1.xml");
unix_w("cat "+dir_frame+rasp_xml_list(ii)+"_arch_frame2.xml rasp3_arch_"+macrocab_name+"_2.xml > "+rasp_xml_list(ii)+"_arch_gen2.xml");
unix_w("cat "+dir_frame+rasp_xml_list(ii)+"_arch_frame3.xml rasp3_arch_"+macrocab_name+"_3.xml > "+rasp_xml_list(ii)+"_arch_gen3.xml");
end
// .py (python)
rasp_py_list={"rasp30";"rasp30_vmm";"rasp30a";"rasp30a_vmm";};
l_rasp_py_list=size(rasp_py_list,1);
for ii=1:l_rasp_py_list
//unix_w("cp "+dir_frame+rasp_py_list(ii)+"_frame1.py .");
fd_r = mopen(dir_frame+rasp_py_list(ii)+"_frame2_1.py",'r');temp2=mgetl(fd_r);mclose(fd_r);
fd_r = mopen("rasp30_"+macrocab_name+"_2_1.py",'r');temp2=temp2+mgetl(fd_r);mclose(fd_r);
fd_w= mopen(rasp_py_list(ii)+"_frame2_1.py",'wt');mputl(temp2,fd_w);mclose(fd_w);
fd_r = mopen(dir_frame+rasp_py_list(ii)+"_frame2_2.py",'r');temp2=temp2+mgetl(fd_r);mclose(fd_r);
fd_w= mopen(rasp_py_list(ii)+"_gen2.py",'wt');mputl(temp2,fd_w);mclose(fd_w);
fd_r = mopen(dir_frame+rasp_py_list(ii)+"_frame3_1.py",'r');temp3=mgetl(fd_r);mclose(fd_r);
fd_r = mopen("rasp30_"+macrocab_name+"_3_1.py",'r');temp3=temp3+mgetl(fd_r);mclose(fd_r);
fd_w= mopen(rasp_py_list(ii)+"_frame3_1.py",'wt');mputl(temp3,fd_w);mclose(fd_w);
fd_r = mopen(dir_frame+rasp_py_list(ii)+"_frame3_2.py",'r');temp3=temp3+mgetl(fd_r);mclose(fd_r);
fd_w= mopen(rasp_py_list(ii)+"_gen3.py",'wt');mputl(temp3,fd_w);mclose(fd_w);
unix_w("cat "+dir_frame+rasp_py_list(ii)+"_frame4.py rasp30_"+macrocab_name+"_4.py > "+rasp_py_list(ii)+"_gen4.py");
unix_w("cat "+dir_frame+rasp_py_list(ii)+"_frame5.py rasp30_"+macrocab_name+"_5.py > "+rasp_py_list(ii)+"_gen5.py");
//unix_w("cp "+dir_frame+rasp_py_list(ii)+"_frame6.py .");
fd_r = mopen(dir_frame+rasp_py_list(ii)+"_frame7.py",'r');temp7=mgetl(fd_r);mclose(fd_r);
fd_r = mopen("rasp30_"+macrocab_name+"_7.py",'r');temp7=temp7+mgetl(fd_r);mclose(fd_r);
fd_w= mopen(rasp_py_list(ii)+"_gen7.py",'wt');mputl(temp7,fd_w);mclose(fd_w);
fd_r = mopen(dir_frame+rasp_py_list(ii)+"_frame8_1.py",'r');temp8_1=mgetl(fd_r);mclose(fd_r);
fd_r = mopen("rasp30_"+macrocab_name+"_8_1.py",'r');temp8_1=temp8_1+mgetl(fd_r);mclose(fd_r);
fd_w= mopen(rasp_py_list(ii)+"_frame8_1.py",'wt');mputl(temp8_1,fd_w);mclose(fd_w);
fd_r = mopen(dir_frame+rasp_py_list(ii)+"_frame8_2.py",'r');temp8_2=mgetl(fd_r);mclose(fd_r);
fd_r = mopen("rasp30_"+macrocab_name+"_8_2.py",'r');temp8_2=temp8_2+mgetl(fd_r);mclose(fd_r);
fd_w= mopen(rasp_py_list(ii)+"_frame8_2.py",'wt');mputl(temp8_2,fd_w);mclose(fd_w);
fd_r = mopen(dir_frame+rasp_py_list(ii)+"_frame8_3.py",'r');temp8=temp8_1+temp8_2+mgetl(fd_r);mclose(fd_r);
fd_w= mopen(rasp_py_list(ii)+"_gen8.py",'wt');mputl(temp8,fd_w);mclose(fd_w);
unix_w("cat "+dir_frame+rasp_py_list(ii)+"_frame9.py rasp30_"+macrocab_name+"_9.py > "+rasp_py_list(ii)+"_gen9.py");
unix_w("cat "+dir_frame+rasp_py_list(ii)+"_frame10.py rasp30_"+macrocab_name+"_10.py > "+rasp_py_list(ii)+"_gen10.py");
unix_w("cat "+dir_frame+rasp_py_list(ii)+"_frame11.py rasp30_"+macrocab_name+"_11.py > "+rasp_py_list(ii)+"_gen11.py");
//unix_w("cp "+dir_frame+rasp_py_list(ii)+"_frame12.py .");
end
// genswcs.py
fd_r = mopen(dir_frame+"genswcs_frame2_1.py",'r');temp2=mgetl(fd_r);mclose(fd_r);
fd_r = mopen("genswcs_"+macrocab_name+"_2_1.py",'r');temp2=temp2+mgetl(fd_r);mclose(fd_r);
fd_w= mopen("genswcs_frame2_1.py",'wt');mputl(temp2,fd_w);mclose(fd_w);
fd_r = mopen(dir_frame+"genswcs_frame2_2.py",'r');temp2=temp2+mgetl(fd_r);mclose(fd_r);
fd_w= mopen("genswcs_gen2.py",'wt');mputl(temp2,fd_w);mclose(fd_w);
fd_r = mopen(dir_frame+"genswcs_frame4_1.py",'r');temp4=mgetl(fd_r);mclose(fd_r);
fd_r = mopen("genswcs_"+macrocab_name+"_4_1.py",'r');temp4=temp4+mgetl(fd_r);mclose(fd_r);
fd_w= mopen("genswcs_frame4_1.py",'wt');mputl(temp4,fd_w);mclose(fd_w);
fd_r = mopen(dir_frame+"genswcs_frame4_2.py",'r');temp4=temp4+mgetl(fd_r);mclose(fd_r);
fd_w= mopen("genswcs_gen4.py",'wt');mputl(temp4,fd_w);mclose(fd_w);
unix_w("cat "+dir_frame+"genswcs_frame5.py genswcs_"+macrocab_name+"_5.py > genswcs_gen5.py");
//////////////////////////////////////////////
// Make Xcos block
//////////////////////////////////////////////
model_in="["; model_in2="["; model_intyp="[";
for i=1:numofinput
model_in=model_in+"-1;"; model_in2=model_in2+"-1;"; model_intyp=model_intyp+"-1;";
end
model_in=model_in+"]"; model_in2=model_in2+"]"; model_intyp=model_intyp+"]";
model_out="["; model_out2="["; model_outtyp="[";
for i=1:numofoutput
model_out=model_out+"-1;"; model_out2=model_out2+"-1;"; model_outtyp=model_outtyp+"-1;";
end
model_out=model_out+"]"; model_out2=model_out2+"]"; model_outtyp=model_outtyp+"]";
// Parameter order (Important): 1.fgswc 2.fgota 3.ota 4.cap
No_of_para_xcos=0; define_str=[""]; set_str1=""; set_str2=""; set_str3=""; set_rpar=""; exprs_str="";
if numoffgswc ~= 0 then
for ii=1:numoffgswc
if fgswc_matrix(ii,1) == "T" then
No_of_para_xcos=No_of_para_xcos+1;
variable_name=macrocab_name+"_"+fgswc_matrix(ii,4);
define_str(No_of_para_xcos)=variable_name+"=["+fgswc_matrix(ii,5)+"];";
set_str1=set_str1+variable_name+", ";
set_str2=set_str2+"; ''"+variable_name+"''";
set_str3=set_str3+", ''vec'', -1";
set_rpar=set_rpar+variable_name+" ";
exprs_str=exprs_str+";sci2exp("+variable_name+")";
end
end
end
if numoffgota ~= 0 then // Ibias -> pbias -> nbias
for ii=1:numoffgota
// Ibias
No_of_para_xcos=No_of_para_xcos+1;
variable_name=macrocab_name+"_"+fgota_matrix(ii,1);
define_str(No_of_para_xcos)=variable_name+"=["+fgota_matrix(ii,2)+"];";
set_str1=set_str1+variable_name+", ";
set_str2=set_str2+"; ''"+variable_name+"''";
set_str3=set_str3+", ''vec'', -1";
set_rpar=set_rpar+variable_name+" ";
exprs_str=exprs_str+";sci2exp("+variable_name+")";
// Ibias_p
No_of_para_xcos=No_of_para_xcos+1;
variable_name=macrocab_name+"_"+fgota_matrix(ii,3);
define_str(No_of_para_xcos)=variable_name+"=["+fgota_matrix(ii,4)+"];";
set_str1=set_str1+variable_name+", ";
set_str2=set_str2+"; ''"+variable_name+"''";
set_str3=set_str3+", ''vec'', -1";
set_rpar=set_rpar+variable_name+" ";
exprs_str=exprs_str+";sci2exp("+variable_name+")";
// Ibias_n
No_of_para_xcos=No_of_para_xcos+1;
variable_name=macrocab_name+"_"+fgota_matrix(ii,5);
define_str(No_of_para_xcos)=variable_name+"=["+fgota_matrix(ii,6)+"];";
set_str1=set_str1+variable_name+", ";
set_str2=set_str2+"; ''"+variable_name+"''";
set_str3=set_str3+", ''vec'', -1";
set_rpar=set_rpar+variable_name+" ";
exprs_str=exprs_str+";sci2exp("+variable_name+")";
end
end
if numofota ~= 0 then
for ii=1:numofota
// Ibias
No_of_para_xcos=No_of_para_xcos+1;
variable_name=macrocab_name+"_"+ota_matrix(ii,1);
define_str(No_of_para_xcos)=variable_name+"="+ota_matrix(ii,2)+";";
set_str1=set_str1+variable_name+", ";
set_str2=set_str2+"; ''"+variable_name+"''";
set_str3=set_str3+", ''vec'', -1";
set_rpar=set_rpar+variable_name+" ";
exprs_str=exprs_str+";sci2exp("+variable_name+")";
end
end
if numofcap ~= 0 then
for ii=1:numofcap
// Cap size
No_of_para_xcos=No_of_para_xcos+1;
variable_name=macrocab_name+"_"+cap_matrix(ii,1);
define_str(No_of_para_xcos)=variable_name+"=[1];";
set_str1=set_str1+variable_name+", ";
set_str2=set_str2+"; ''"+variable_name+"_64fF_x_1to7''";
set_str3=set_str3+", ''vec'', -1";
set_rpar=set_rpar+variable_name+" ";
exprs_str=exprs_str+";sci2exp("+variable_name+")";
end
end
fd_w= mopen ("/home/ubuntu/rasp30/xcos_blocks/"+macrocab_name+".sci",'wt');
mputl("function [x,y,typ]="+macrocab_name+"(job,arg1,arg2)",fd_w);
mputl(" x=[];y=[];typ=[];",fd_w);
mputl(" select job",fd_w);
mputl(" case ''plot'' then",fd_w);
mputl(" standard_draw(arg1)",fd_w);
mputl(" case ''getinputs'' then //** GET INPUTS ",fd_w);
mputl(" [x,y,typ]=standard_inputs(arg1)",fd_w);
mputl(" case ''getoutputs'' then",fd_w);
mputl(" [x,y,typ]=standard_outputs(arg1)",fd_w);
mputl(" case ''getorigin'' then",fd_w);
mputl(" [x,y]=standard_origin(arg1)",fd_w);
mputl(" case ''set'' then",fd_w);
mputl(" x=arg1;",fd_w);
mputl(" graphics=arg1.graphics",fd_w);
mputl(" model=arg1.model",fd_w);
mputl(" exprs=graphics.exprs",fd_w);
mputl(" while %t do",fd_w);
mputl(" [ok, in_out_num, "+set_str1+"exprs]=scicos_getvalue(''New Block Parameter'',[''number of blocks''"+set_str2+"],list(''vec'',-1"+set_str3+"),exprs)",fd_w);
mputl(" ",fd_w);
mputl(" if ~ok then break,end",fd_w);
mputl(" if ok then",fd_w);
mputl(" model.ipar=in_out_num",fd_w);
mputl(" model.rpar=["+set_rpar+"]",fd_w);
mputl(" graphics.exprs=exprs;",fd_w);
mputl(" x.graphics=graphics;",fd_w);
mputl(" x.model=model",fd_w);
mputl(" break;",fd_w);
mputl(" end",fd_w);
mputl(" end",fd_w);
mputl(" case ''define'' then",fd_w);
mputl(" in_out_num=1",fd_w);
if No_of_para_xcos ~= 0 then
for i=1:No_of_para_xcos
mputl(" "+define_str(i),fd_w);
end
end
mputl(" model=scicos_model()",fd_w);
mputl(" model.sim=list(''"+macrocab_name+"_c'',5)",fd_w);
mputl(" model.in="+model_in,fd_w);
mputl(" model.in2="+model_in2,fd_w);
mputl(" model.intyp="+model_intyp,fd_w);
mputl(" model.out="+model_out,fd_w);
mputl(" model.out2="+model_out2,fd_w);
mputl(" model.outtyp="++model_outtyp,fd_w);
mputl(" model.ipar=in_out_num",fd_w);
mputl(" //model.state=zeros(1,1)",fd_w);
mputl(" model.rpar=["+set_rpar+"]",fd_w);
mputl(" model.blocktype=''d''",fd_w);
mputl(" model.dep_ut=[%f %t] //[block input has direct feedthrough to output w/o ODE block always active]",fd_w);
mputl(" ",fd_w);
mputl(" exprs=[sci2exp(in_out_num)"+exprs_str+"]",fd_w);
mputl(" gr_i=[''txt=[''''"+macrocab_name+"''''];'';''xstringb(orig(1),orig(2),txt,sz(1),sz(2),''''fill'''');'']",fd_w);
mputl(" x=standard_define([5 2],model, exprs,gr_i) //Numbers define the width and height of block",fd_w);
mputl(" end",fd_w);
mputl("endfunction",fd_w);
mclose(fd_w);
//////////////////////////////////////////////
// Generate rasp_design function
//////////////////////////////////////////////
fd_w= mopen ("/home/ubuntu/rasp30/sci2blif/rasp_design_added_blocks/"+macrocab_name+".sce",'wt');
mputl("style.displayedLabel="""+macrocab_name+"""",fd_w);
mputl("pal5=xcosPalAddBlock(pal5,"""+macrocab_name+""",[],style);",fd_w);
mclose(fd_w);
//////////////////////////////////////////////
// Generate sci2blif function
//////////////////////////////////////////////
No_of_para_sci2blif=0;
fd_w= mopen ("/home/ubuntu/rasp30/sci2blif/sci2blif_added_blocks/"+macrocab_name+".sce",'wt');
mputl("//**************************** "+macrocab_name+" **********************************",fd_w);
mputl("if (blk_name.entries(bl) == """+macrocab_name+""") then",fd_w);
mputl(" mputl(""#"+macrocab_name+""",fd_w);",fd_w);
mputl(" for ss=1:scs_m.objs(bl).model.ipar(1)",fd_w);
inoutput_net="";net_in=0;net_out=0;
for ii=1:numofinput
inoutput_net=inoutput_net+"+'' in["+string(net_in)+"]=net''+string(blk(blk_objs(bl),"+string(net_in+2)+"))+''_''+string(ss)";
net_in=net_in+1;
end
for ii=1:numofoutput
inoutput_net=inoutput_net+"+'' out["+string(net_out)+"]=net''+string(blk(blk_objs(bl),"+string(net_out+2)+"+numofip))+''_''+string(ss)";
net_out=net_out+1;
end
para_string="";
para_string=para_string+"+'' #"+macrocab_name+"_ls =0''";
if numoffgswc ~= 0 then
for ii=1:numoffgswc
if fgswc_matrix(ii,1) == "T" then
No_of_para_sci2blif=No_of_para_sci2blif+1;
para_string=para_string+"+''&"+macrocab_name+"_"+fgswc_matrix(ii,4)+" =''+string(sprintf(''%e'',scs_m.objs(bl).model.rpar(scs_m.objs(bl).model.ipar(1)*("+string(No_of_para_sci2blif)+"-1)+ss)))";
end
end
end
if numoffgota ~= 0 then // Ibias -> pbias -> nbias
for ii=1:numoffgota
// Ibias
No_of_para_sci2blif=No_of_para_sci2blif+1;
para_string=para_string+"+''&"+macrocab_name+"_"+fgota_matrix(ii,1)+" =''+string(sprintf(''%e'',scs_m.objs(bl).model.rpar(scs_m.objs(bl).model.ipar(1)*("+string(No_of_para_sci2blif)+"-1)+ss)))";
// Ibias_p
No_of_para_sci2blif=No_of_para_sci2blif+1;
para_string=para_string+"+''&"+macrocab_name+"_"+fgota_matrix(ii,3)+" =''+string(sprintf(''%e'',scs_m.objs(bl).model.rpar(scs_m.objs(bl).model.ipar(1)*("+string(No_of_para_sci2blif)+"-1)+ss)))";
// Ibias_n
No_of_para_sci2blif=No_of_para_sci2blif+1;
para_string=para_string+"+''&"+macrocab_name+"_"+fgota_matrix(ii,5)+" =''+string(sprintf(''%e'',scs_m.objs(bl).model.rpar(scs_m.objs(bl).model.ipar(1)*("+string(No_of_para_sci2blif)+"-1)+ss)))";
end
end
if numofota ~= 0 then
for ii=1:numofota
// Ibias
No_of_para_sci2blif=No_of_para_sci2blif+1;
para_string=para_string+"+''&"+macrocab_name+"_"+ota_matrix(ii,1)+" =''+string(sprintf(''%e'',scs_m.objs(bl).model.rpar(scs_m.objs(bl).model.ipar(1)*("+string(No_of_para_sci2blif)+"-1)+ss)))";
end
end
mputl(" "+macrocab_name+"_str= ''.subckt "+macrocab_name+"''"+inoutput_net+para_string,fd_w);
if numofcap ~= 0 then
for ii=1:numofcap
// Cap size
No_of_para_sci2blif=No_of_para_sci2blif+1;
mputl(" if scs_m.objs(bl).model.rpar(scs_m.objs(bl).model.ipar(1)*("+string(No_of_para_sci2blif)+"-1)+ss) == 1 then "+macrocab_name+"_str="+macrocab_name+"_str+"+"''&"+macrocab_name+"_"+cap_matrix(ii,1)+"_1x_cs =0''; end",fd_w);
mputl(" if scs_m.objs(bl).model.rpar(scs_m.objs(bl).model.ipar(1)*("+string(No_of_para_sci2blif)+"-1)+ss) == 2 then "+macrocab_name+"_str="+macrocab_name+"_str+"+"''&"+macrocab_name+"_"+cap_matrix(ii,1)+"_2x_cs =0''; end",fd_w);
mputl(" if scs_m.objs(bl).model.rpar(scs_m.objs(bl).model.ipar(1)*("+string(No_of_para_sci2blif)+"-1)+ss) == 3 then "+macrocab_name+"_str="+macrocab_name+"_str+"+"''&"+macrocab_name+"_"+cap_matrix(ii,1)+"_1x_cs =0''+''&"+macrocab_name+"_"+cap_matrix(ii,1)+"_2x_cs =0''; end",fd_w);
mputl(" if scs_m.objs(bl).model.rpar(scs_m.objs(bl).model.ipar(1)*("+string(No_of_para_sci2blif)+"-1)+ss) == 4 then "+macrocab_name+"_str="+macrocab_name+"_str+"+"''&"+macrocab_name+"_"+cap_matrix(ii,1)+"_4x_cs =0''; end",fd_w);
mputl(" if scs_m.objs(bl).model.rpar(scs_m.objs(bl).model.ipar(1)*("+string(No_of_para_sci2blif)+"-1)+ss) == 5 then "+macrocab_name+"_str="+macrocab_name+"_str+"+"''&"+macrocab_name+"_"+cap_matrix(ii,1)+"_1x_cs =0''+''&"+macrocab_name+"_"+cap_matrix(ii,1)+"_4x_cs =0''; end",fd_w);
mputl(" if scs_m.objs(bl).model.rpar(scs_m.objs(bl).model.ipar(1)*("+string(No_of_para_sci2blif)+"-1)+ss) == 6 then "+macrocab_name+"_str="+macrocab_name+"_str+"+"''&"+macrocab_name+"_"+cap_matrix(ii,1)+"_2x_cs =0''+''&"+macrocab_name+"_"+cap_matrix(ii,1)+"_4x_cs =0''; end",fd_w);
mputl(" if scs_m.objs(bl).model.rpar(scs_m.objs(bl).model.ipar(1)*("+string(No_of_para_sci2blif)+"-1)+ss) == 7 then "+macrocab_name+"_str="+macrocab_name+"_str+"+"''&"+macrocab_name+"_"+cap_matrix(ii,1)+"_1x_cs =0''+''&"+macrocab_name+"_"+cap_matrix(ii,1)+"_2x_cs =0''+''&"+macrocab_name+"_"+cap_matrix(ii,1)+"_4x_cs =0''; end",fd_w);
end
end
mputl(" mputl("+macrocab_name+"_str,fd_w);",fd_w);
mputl(" mputl("""",fd_w);",fd_w);
mputl(" end",fd_w);
mputl("end",fd_w);
mclose(fd_w);
dir_py="/home/ubuntu/rasp30/vpr2swcs/";
dir_arch="/home/ubuntu/rasp30/vpr2swcs/arch/";
// Update files to folders
for ii=1:l_rasp_xml_list
unix_w("cp "+rasp_xml_list(ii)+"_arch_gen1.xml "+dir_frame+rasp_xml_list(ii)+"_arch_frame1.xml");
unix_w("cp "+rasp_xml_list(ii)+"_arch_gen2.xml "+dir_frame+rasp_xml_list(ii)+"_arch_frame2.xml");
unix_w("cp "+rasp_xml_list(ii)+"_arch_gen3.xml "+dir_frame+rasp_xml_list(ii)+"_arch_frame3.xml");
unix_w("cat "+dir_frame+rasp_xml_list(ii)+"_arch_frame1.xml "+dir_frame+rasp_xml_list(ii)+"_arch_frame2.xml "+dir_frame+rasp_xml_list(ii)+"_arch_frame3.xml "+dir_frame+rasp_xml_list(ii)+"_arch_frame4.xml "+"> "+dir_arch+rasp_xml_list(ii)+"_arch.xml");
end
for ii=1:l_rasp_py_list
unix_w("cp "+rasp_py_list(ii)+"_frame2_1.py "+dir_frame+rasp_py_list(ii)+"_frame2_1.py");
unix_w("cp "+rasp_py_list(ii)+"_gen2.py "+dir_frame+rasp_py_list(ii)+"_gen2.py");
unix_w("cp "+rasp_py_list(ii)+"_frame3_1.py "+dir_frame+rasp_py_list(ii)+"_frame3_1.py");
unix_w("cp "+rasp_py_list(ii)+"_gen3.py "+dir_frame+rasp_py_list(ii)+"_gen3.py");
unix_w("cp "+rasp_py_list(ii)+"_gen4.py "+dir_frame+rasp_py_list(ii)+"_frame4.py");
unix_w("cp "+rasp_py_list(ii)+"_gen5.py "+dir_frame+rasp_py_list(ii)+"_frame5.py");
unix_w("cp "+rasp_py_list(ii)+"_gen7.py "+dir_frame+rasp_py_list(ii)+"_frame7.py");
unix_w("cp "+rasp_py_list(ii)+"_frame8_1.py "+dir_frame+rasp_py_list(ii)+"_frame8_1.py");
unix_w("cp "+rasp_py_list(ii)+"_frame8_2.py "+dir_frame+rasp_py_list(ii)+"_frame8_2.py");
unix_w("cp "+rasp_py_list(ii)+"_gen8.py "+dir_frame+rasp_py_list(ii)+"_gen8.py");
unix_w("cp "+rasp_py_list(ii)+"_gen9.py "+dir_frame+rasp_py_list(ii)+"_frame9.py");
unix_w("cp "+rasp_py_list(ii)+"_gen10.py "+dir_frame+rasp_py_list(ii)+"_frame10.py");
unix_w("cp "+rasp_py_list(ii)+"_gen11.py "+dir_frame+rasp_py_list(ii)+"_frame11.py");
unix_w("cp "+rasp_py_list(ii)+".py_generated "+dir_py+rasp_py_list(ii)+".py");
unix_w("cat "+dir_frame+rasp_py_list(ii)+"_frame1.py "+dir_frame+rasp_py_list(ii)+"_gen2.py "+dir_frame+rasp_py_list(ii)+"_gen3.py "+dir_frame+rasp_py_list(ii)+"_frame4.py "+dir_frame+rasp_py_list(ii)+"_frame5.py "+dir_frame+rasp_py_list(ii)+"_frame6.py "+dir_frame+rasp_py_list(ii)+"_frame7.py "+dir_frame+rasp_py_list(ii)+"_gen8.py "+dir_frame+rasp_py_list(ii)+"_frame9.py "+dir_frame+rasp_py_list(ii)+"_frame10.py "+dir_frame+rasp_py_list(ii)+"_frame11.py "+dir_frame+rasp_py_list(ii)+"_frame12.py "+"> "+dir_py+rasp_py_list(ii)+".py");
end
unix_w("cp genswcs_frame2_1.py "+dir_frame+"genswcs_frame2_1.py");
unix_w("cp genswcs_gen2.py "+dir_frame+"genswcs_gen2.py");
unix_w("cp genswcs_frame4_1.py "+dir_frame+"genswcs_frame4_1.py");
unix_w("cp genswcs_gen4.py "+dir_frame+"genswcs_gen4.py");
unix_w("cp genswcs_gen5.py "+dir_frame+"genswcs_frame5.py");
unix_w("cat "+dir_frame+"genswcs_frame1.py "+dir_frame+"genswcs_gen2.py "+dir_frame+"genswcs_frame3.py "+dir_frame+"genswcs_gen4.py "+dir_frame+"genswcs_frame5.py "+dir_frame+"genswcs_frame6.py > "+dir_py+"genswcs.py");
// Macro cab block name update for overlap checking
fd_r = mopen("/home/ubuntu/rasp30/vpr2swcs/block_list",'r');block_list=mgetl(fd_r);mclose(fd_r); // Default value: frame.
l_block_list=size(block_list,1);
block_list(l_block_list+1)=macrocab_name;
fd_w = mopen("/home/ubuntu/rasp30/vpr2swcs/block_list",'wt');mputl(block_list,fd_w);mclose(fd_w);
unix_w("cp "+macrocab_name+".xcos /home/ubuntu/rasp30/vpr2swcs/macroblk_generation/macrocab_xcos/");
disp("Macro-CAB block has been generated.");
filebrowser();
endfunction
|
2e5de9381dbffc61a1346d24a2b41cbcadd3842b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3685/CH4/EX4.2/Ex4_2.sce | 6fdbe4dc3d8f8b9c78b59f98d030112705635a29 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,017 | sce | Ex4_2.sce | clc
Qacb = 84 // Heat transfer along the path acb in kJ
Wacb = 32 // Work done along the path acb in kJ
Uba = Qacb-Wacb // Ub-Ua
// Part (a)
Wadb = 10.5 // Work done along the path adb in kJ
Qadb = Uba+Wadb // Heat flow into the system along the path adb
printf("\n Example 4.2")
printf("\n The heat flow into the system along the path adb is %f kJ.",Qadb)
// Part (b)
Wb_a = -21 // work done along the path ba in kJ
Uab = - Uba // Change in internal energy along the path ab in kJ
Qb_a = Uab+Wb_a // Heat liberated along the path b-a
printf("\n The heat liberated along the path b-a is %d kJ.",Qb_a)
// Part (c)
Wdb = 0 // Constant volume
Wad = 10.5 // work done along the path ad in kJ
Wadb = Wdb-Wad // work done along the path adb in kJ
Ud = 42
Ua = 0
Qad = Ud-Ua+Wad // Heat flow into the system along the path ad in kJ
Qdb = Qadb-Qad //Heat flow into the system along the path db in kJ
printf("\n The heat absorbed in the path ad and db are %f kJ nd %d kJ respectively.",Qad,Qdb)
|
91df428561f39bdf33b8b38bee0b805fadc39f92 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set7/s_Electronic_Measurements_And_Instrumentation_R._K._Rajput_2096.zip/Electronic_Measurements_And_Instrumentation_R._K._Rajput_2096/CH1/EX1.10/ex_1_10.sce | bb05dec944d87289543e02a23080ddf53498ca7f | [] | 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 | 443 | sce | ex_1_10.sce | errcatch(-1,"stop");mode(2);//Example 1.10// deflection
;
;
S1=6.8;//sensivity of the piezoelectric transducer in pC/bar
S2=0.0032;//sensivity of the piezoelectric transducer in V/bar
S3=16;//sensivity of the piezoelectric transducer in mm/V
OS= S1*S2*S3;// overall sensivity in mm/bar
CI=20;//changeb in input pressure
CO=OS*CI;//change in out put signal
DC= CO;//deflection on the chart mm
disp(DC,"deflection on the chart in mm")
exit();
|
228667286abd09d1d4c1cfd21d7ea4881ea5abfc | 449d555969bfd7befe906877abab098c6e63a0e8 | /3516/CH17/EX17.2/Ex17_2.sce | e4283e5acc1b52c01fb8fbef0301288a46da4bba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,367 | sce | Ex17_2.sce | printf("\t example 17.2 \n");
printf("\t approximate values are mentioned in the book \n");
printf("\t by numerical integration \n");
T1=85;
T2=120;
A=576; // ground area, from fig 17.12
L=1500*(500/576);
G=1400;
R=(L/G);
printf("\t R is : %.2f \n",R);
H1=39.1; // fig 17.12
H2=H1+(R*(T2-T1));
printf("\t H2 is : %.1f Btu \n",H2);
// The area between the saturation line and the operating line represents the potential for heat transfer
// at T=85F
Hs=50; // fig 17.12
d1=(Hs-H1);
printf("\t difference is : %.1f \n",d1);
//at t=90
Hs=56.7; // fig 17.12
H=43.7; // fig 17.12
d2=Hs-H;
printf("\t difference is : %.1f \n",d2);
d=(d1+d2)/(2);
printf("\t average of difference is : %.1f \n",d);
dT=5; // F
nd1=(dT/d);
printf("\t nd1 is : %.3f \n",nd1);
// similarly calculating nd at each temperature and adding them will give you total nd value
nd=1.70;
printf("\t number of diffusing units : %.2f \n",nd);
printf("\t log mean enthalpy difference \n");
dt=49.9; // diff. of enthalpies at top of the tower, from table in solution
db=10.9; // diff of enthalpies at bottom of the tower,from table in solution
LME=(dt-db)/(2.3*log10(dt/db));
printf("\t log mean of enthalpy : %.1f Btu/lb \n",LME);
nd=(T2-T1)/(LME);
printf("\t number of diffusing units are : %.2f \n",nd);
// The error is naturally larger the greater the range
//end
|
07de2e90057ee8f977bfa5a2bdcb976b9f6ff816 | 0156c657b547f9ab9045d6ddbc14e31954096a78 | /Assignment 3.sce | 86e9494420bf6f1759d36bdfea0e92562302bac3 | [] | no_license | anihm136/LA_2020_Assignments | 18e2e30c86c8c196aca04fd11aeb3227465c3f41 | 4982b560f584ca08f14caa846cf7cbecdd5657ce | refs/heads/master | 2021-01-03T05:41:46.213301 | 2020-04-13T18:12:06 | 2020-04-13T18:12:06 | 239,946,265 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 440 | sce | Assignment 3.sce | n = input('Enter the number of equations:')
for i=1:n
for j=1:2
message = "Enter the element at [" + string(i) + "," + string(j) +"]"
a(i,j) = input(message)
end
end
disp(a)
for i=1:n
b(i) = input("Enter the values:")
end
disp(b)
x=(a'*a)\(a'*b)
disp(x)
C=x(1,1)
D=x(2,1)
disp(C,'C=')
disp(D,'D=')
disp("the best line fit is " + string(b) + " = " + string(C) + " + " + string(D) + "t")
|
83c87854a2d395c84db098b9e2d89bcfa71c0185 | 717ddeb7e700373742c617a95e25a2376565112c | /3428/CH21/EX14.21.13/Ex14_21_13.sce | 2da8e03a30324b2b247a67e02543b2a6a6b962af | [] | 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 | 659 | sce | Ex14_21_13.sce | //Section-14,Example-1,Page no.-PC.21
//To calculate collision number,collision frequency and mean free path for oxygen at 298K and 1 atm pressure.
clc;
M=((32*10^-3)/(6.023*10^23))
disp(M,'Mass of one oxygen molecule(kg)')
//N=P/(R*T)
N=(1*6.023*10^23*10^3)/(0.0821*298)
disp(N,'No.of O_2 molecules per m^3')
R=8.314
T=298
m=32*10^-3
v_avg=sqrt((8*R*T)/(%pi*m))
disp(v_avg,'Average velocity of O2 molecule(ms^-1)')
sig=3.6*10^-10
Z_1=sqrt(2)*pi*(sig)^2*v_avg*N
disp(Z_1,'Collision number(collisions per sec)')
Z_11=(1/2)*(Z_1*N)
disp(Z_11,'Collision frequency(collisions s^-1 m^-3)')
lm=v_avg/Z_1
disp(lm,'Mean free path(m)')
|
0c61a8dfd6f8bea3fb7b06ab13794c21f2ba9151 | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/CompressibleFlowSolver/Tests/RAE5240_BSF_LE_bcsfromfile_par.tst | 9a5feea745cbc71f7621b630264a2201a9be99b1 | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 1,339 | tst | RAE5240_BSF_LE_bcsfromfile_par.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>Euler, LE simulation, BCs from file, FRHU, SEM, parallel</description>
<executable>CompressibleFlowSolver</executable>
<parameters>--use-scotch RAE5240_BSF_LE_bcsfromfile_par.xml</parameters>
<processes>2</processes>
<files>
<file description="Session File">RAE5240_BSF_LE_bcsfromfile_par.xml</file>
<file description="Session File">RAE5240_BSF_LE_bcsfromfile_par.rst</file>
<file description="Session File">RAE5240_BSF_LE_bcsfromfile_par_bc1.bc</file>
<file description="Session File">RAE5240_BSF_LE_bcsfromfile_par_bc2.bc</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="rho" tolerance="1e-12">1.55432</value>
<value variable="rhou" tolerance="1e-12">348.059</value>
<value variable="rhov" tolerance="1e-8">21.034</value>
<value variable="E" tolerance="1e-12">359066</value>
</metric>
<metric type="Linf" id="2">
<value variable="rho" tolerance="1e-12">1.49139</value>
<value variable="rhou" tolerance="1e-12">299.495</value>
<value variable="rhov" tolerance="1e-8">165.412</value>
<value variable="E" tolerance="1e-12">333880</value>
</metric>
</metrics>
</test>
|
57daa18c10e0da7ac9a87c83e26b99ff1d29291f | 2c133950bf9f7b9f23a448ca2c879913f8bea028 | /Part1.sce | d3ec6d40d0df5f22c780c7ab63fdc04f0d23ed22 | [] | no_license | mrcastr0/P166 | b42a52de60af99a01c0311e9ed99cd4e6ba52207 | 3aaeff78afe3ffc2cb3fd00f47de7630d7ff592e | refs/heads/master | 2020-04-27T13:25:43.396654 | 2019-03-07T19:39:12 | 2019-03-07T19:39:12 | 174,369,602 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 8,569 | sce | Part1.sce | //Circle
n = 128;
x = linspace(-1,1,n);
y = linspace(-1,1,n);
[X,Y] = ndgrid(x,y);
r = sqrt(X.^2 + Y.^2);
circle = zeros(n,n);
circle(find(r<0.3)) = 1;
imwrite(circle,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\circle.png');
//Circle FFT
circle_load = imread('C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\circle.png');
circle_gray = fft2(double(circle_load));
num3_dp = mat2gray(abs(circle_gray));
num4_dp = mat2gray(abs(fftshift(circle_gray)));
num5_dp = mat2gray(abs(fft2(circle_gray)));
num3_8bit = uint8(abs(circle_gray));
num4_8bit = uint8(abs(fftshift(circle_gray)));
num5_8bit = uint8(abs(fft2(circle_gray)));
rl = real(fftshift(circle_gray));
im = imag(fftshift(circle_gray));
//Circle Outputs
imwrite(num3_dp,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTCircle_dp.png');
imwrite(num4_dp,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTShiftCircle_dp.png');
imwrite(num5_dp,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTInvCircle_dp.png');
imwrite(num3_8bit,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTCircle_8bit.png');
imwrite(num4_8bit,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTShiftCircle_8bit.png');
imwrite(num5_8bit,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTInvCircle_8bit.png');
imwrite(rl,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\RLCircle.png');
imwrite(im,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\IMCircle.png');
//Letter A
A_x = imread('C:\Users\Marc Castro\Desktop\p166\Part1\A.png');
Agray = fft2(double(A_x));
num6a_8bit = uint8(abs(Agray));
num6b_8bit = uint8(abs(fftshift(Agray)));
num6c_8bit = uint8(abs(fft2(Agray)));
num6a_dp = mat2gray(abs(Agray));
num6b_dp = mat2gray(abs(fftshift(Agray)));
num6c_dp = mat2gray(abs(fft2(Agray)));
Arl_8bit = uint8(real(fftshift(Agray)));
Aim_8bit = uint8(imag(fftshift(Agray)));
Arl_dp = mat2gray(real(fftshift(Agray)));
Aim_dp = mat2gray(imag(fftshift(Agray)));
//A Outputs
imwrite(num6a_8bit,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTA_8bit.png');
imwrite(num6b_8bit,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTShiftA_8bit.png');
imwrite(num6c_8bit,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTInvA_8bit.png');
imwrite(num6a_dp,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTA_dp.png');
imwrite(num6b_dp,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTShiftA_dp.png');
imwrite(num6c_dp,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTInvA_dp.png');
imwrite(Arl_8bit,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\RLA_8bit.png');
imwrite(Aim_8bit,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\IMA_8bit.png');
imwrite(Arl_dp,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\RLA_dp.png');
imwrite(Aim_dp,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\IMA_dp.png');
//Corrugated Roof
nx = 128;
ny = 128;
xroof = linspace(-1,1,nx);
yroof = linspace(-1,1,ny);
[Xroof,Yroof] = ndgrid(xroof,yroof);
freq = 3;
z = sin(2*%pi*freq*Yroof);
imwrite(z,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\croof.png');
roof_load = imread('C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\croof.png');
roof_gray = fft2(double(roof_load));
num8a = mat2gray(abs(fftshift(roof_gray)));
num8av2 = uint8(abs(fftshift(roof_gray)));
imwrite(num8a,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTroof_dp.png');
imwrite(num8av2,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTroof_8bit.png');
//Double Slit
slit_load = imread('C:\Users\Marc Castro\Desktop\p166\Part1\double_slit.png');
slit_gray = fft2(double(slit_load));
num8b = mat2gray(abs(fftshift(slit_gray)));
num8bv2 = uint8(abs(fftshift(slit_gray)));
imwrite(num8b,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTslit_dp.png');
imwrite(num8bv2,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTslit_8bit.png');
//Square Function
z1 = squarewave(2 * %pi * 5 * Yroof);
imwrite(z1,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\squarewave.png');
square_load = imread('C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\squarewave.png');
square_gray = fft2(double(square_load));
num8c = mat2gray(abs(fftshift(square_gray)));
num8cv2 = uint8(abs(fftshift(square_gray)));
imwrite(num8c,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTsquare_dp.png');
imwrite(num8cv2,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTsquare_8bit.png');
//Gaussian Bell Curve
r = sqrt(Xroof.^2 + Yroof.^2);
A = (1/sqrt(2*%pi))*exp(-0.9*r/2);
B = zeros(nx,ny);
B(find(r<0.1)) = 1;
A = A.*B;
f = scf();
grayplot(xroof,yroof,A);
f.color_map = graycolormap(32);
xs2png(f,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\bcurve.png'); //Crop and resize using paint
bcurve_load = imread('C:\Users\Marc Castro\Desktop\p166\Part1\bcurve_parsed.png');
bgray = rgb2gray(bcurve_load);
bcurve_gray = fft2(double(bgray));
num8d = mat2gray(abs(bcurve_gray));
num8dv2 = uint8(abs(fftshift(bcurve_gray)));
num8dv3 = uint16(abs(fftshift(bcurve_gray)));
imwrite(num8d,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTbcurve_dp.png');
imwrite(num8dv2,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTbcurve_8bit.png');
imwrite(num8dv3,'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\FFTbcurve_16bit.png');
////////SIMULATION OF AN IMAGING DEVICE////////////////////////
//Small Circle
vip = imread('C:\Users\Marc Castro\Desktop\p166\Part1\VIP.png');
scircle = imread('C:\Users\Marc Castro\Desktop\p166\Part1\circle2.png');
fftshift_circ2 = fftshift(double(scircle));
fft_vip = fft2(double(vip));
FRA = fftshift_circ2.*fft_vip;
IRA = fft2(FRA);
FImage = mat2gray(abs(IRA));
imwrite(FImage, 'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\VIP_apertured.png');
//Circle
vcircle = imread('C:\Users\Marc Castro\Desktop\p166\Part1\circle.png');
fftshift_circv = fftshift(double(vcircle));
fft_vip = fft2(double(vip));
FRAv = fftshift_circv.*fft_vip;
IRAv = fft2(FRAv);
FImagev = mat2gray(abs(IRAv));
imwrite(FImagev, 'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\VIP_aperturedv.png');
//Bigger Circle
scircle2 = imread('C:\Users\Marc Castro\Desktop\p166\Part1\circle3.png');
fftshift_circ3 = fftshift(double(scircle2));
fft_vip2 = fft2(double(vip));
FRA2 = fftshift_circ3.*fft_vip;
IRA2 = fft2(FRA2);
FImage2 = mat2gray(abs(IRA2));
imwrite(FImage2, 'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\VIP_apertured2.png');
////////CORRELATION///////////////////////////////////
sent = imread('C:\Users\Marc Castro\Desktop\p166\Part1\sentence.png');
asmall = imread('C:\Users\Marc Castro\Desktop\p166\Part1\Asmall.png');
fft_sent = fft2(double(sent));
fft_asmall = fft2(double(asmall));
conj_sent = conj(fft_sent);
sentas = fft_asmall.*conj_sent;
inverse_sentas = mat2gray(abs(fftshift(fft2(sentas))));
imwrite(inverse_sentas, 'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\correlation.png');
/////////////EDGE DETECTION////////////////////////
n = 128;
raw_image = zeros(n,n);
//Image Augmentations
vertical = [-1 2 -1; -1 2 -1; -1 2 -1]
horizontal = [-1 -1 -1; 2 2 2;-1 -1 -1]
rightDiag = [-1 -1 2; -1 2 -1; 2 -1 -1]
leftDiag = [2 -1 -1; -1 2 -1; -1 -1 2]
spot = [-1 -1 -1;-1 8 -1; -1 -1 -1]
V = raw_image;
H = raw_image;
rD = raw_image;
lD = raw_image;
sp = raw_image;
V(63:65,63:65) = vertical;
H(63:65,63:65) = horizontal;
rD(63:65,63:65) = rightDiag;
lD(63:65,63:65) = leftDiag;
sp(63:65,63:65) = spot;
vip = imread('C:\Users\Marc Castro\Desktop\p166\Part1\VIP.png');
vip_filter = conj(fft2(double(vip)));
vipfilter_gray = uint8(abs(vip_filter));
imwrite(vipfilter_gray, 'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\vip_filter.png');
V_fft = fft2(double(V));
H_fft = fft2(double(H));
rD_fft = fft2(double(rD));
lD_fft = fft2(double(lD));
sp_fft = fft2(double(sp));
conv_V = V_fft.*vip_filter;
conv_H = H_fft.*vip_filter;
conv_rD = rD_fft.*vip_filter;
conv_lD = lD_fft.*vip_filter;
conv_sp = sp_fft.*vip_filter;
imwrite(mat2gray(abs(fftshift(fft2(double(conv_V))))),'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\VIP_vertical_conv.png');
imwrite(mat2gray(abs(fftshift(fft2(double(conv_H))))),'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\VIP_horizontal_conv.png');
imwrite(mat2gray(abs(fftshift(fft2(double(conv_rD))))),'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\VIP_rightdiag_conv.png');
imwrite(mat2gray(abs(fftshift(fft2(double(conv_lD))))),'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\VIP_leftdiag_conv.png');
imwrite(mat2gray(abs(fftshift(fft2(double(conv_sp))))),'C:\Users\Marc Castro\Desktop\p166\Part1\Outputs\VIP_spot_conv.png');
|
8783c53835cc8e8afeae7e4248d7038da6408683 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2288/CH3/EX3.21.24/ex3_21_24.sce | 9c9807ac864f9ad48ae679adb55691c986b10226 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 863 | sce | ex3_21_24.sce | // Exa 3.21.24
clc;
clear;
close;
// Given data
format('e',9)
Mu_p = 500;// in cm^2/v-s
kT = 0.0259;
Toh_p = 10^-10;// in sec
p_o = 10^17;// in cm^-3
q= 1.6*10^-19;// in C
A=0.5;// in square meter
del_p = 5 * 10^16;// in cm^-3
n_i= 1.5*10^10;// in cm^-3
D_p = kT * Mu_p;// in cm/s
L_p = sqrt(D_p * Toh_p);// in cm
x = 10^-5;// in cm
p = p_o+del_p* %e^(x/L_p);// in cm^-3
// p= n_i*%e^(Eip)/kT where Eip=E_i-F_p
Eip= log(p/n_i)*kT;// in eV
Ecp= 1.1/2-Eip;// value of E_c-E_p in eV
Ip= q*A*D_p/L_p*del_p*%e^(x/L_p);// in A
disp(Ip,"The hole current in A is : ")
Qp= q*A*del_p*L_p;// in C
disp(Qp,"The value of Qp in C is : ")
// Note: There is a calculation error to evalaute the value of hole current but they putted correct value of it to evaluate the value of Qp.
// Hence the value of hole current in the book is wrong
|
62593b4591d0d47626e85feb5f82d0fc2f8f309f | 449d555969bfd7befe906877abab098c6e63a0e8 | /555/CH7/EX7.8/8.sce | 45abb4d0ae565a4c0e4911bcbf66833e1aa462d5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 610 | sce | 8.sce | // Implementation of example 7.8
// Basic and Applied Thermodynamics by P.K.Nag
clc
clear
Pa = 130; //kPa
Pb = 100; //kPa
Ta = 50; //degree C
Ta = Ta + 273; //K
Tb = 13; //degree C
Tb = Tb + 273; //K
Cp = 1.005; //kJ/kg K
dS_sys = Cp * log(Tb/Ta) - 0.287 * log(Pb/Pa);
dS_surr = 0;
dS_univ = dS_sys + dS_surr;
printf("dS_univ = %f kJ/kg K\n\n",dS_univ);
if dS_univ<0 then
printf("Flow must be from B to A since entropy cannot be negative\n");
elseif dS_univ>0 then
printf("Flow must be from A to B as entropy change is positive\n");
else
printf("Flow will not occur\n");
end |
ca41bd4541ec233ca7bcd47ac984bd465a5b2dab | 676ffceabdfe022b6381807def2ea401302430ac | /solvers/ADRSolver/Tests/ExDiffusion_2D_LFRDG_deformed.tst | c922eb99f2403754e8c1428d2ef2a80859dd2d14 | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 628 | tst | ExDiffusion_2D_LFRDG_deformed.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>2D unsteady LFRDG explicit diffusion, deformed quads, P=3</description>
<executable>ADRSolver</executable>
<parameters>ExDiffusion_2D_LFRDG_deformed.xml</parameters>
<files>
<file description="Session File">ExDiffusion_2D_LFRDG_deformed.xml</file>
</files>
<metrics>
<metric type="L2" id="1">
<value variable="u" tolerance="1e-12">0.00165715</value>
</metric>
<metric type="Linf" id="2">
<value variable="u" tolerance="1e-12">0.0110807</value>
</metric>
</metrics>
</test>
|
5d88056c80d62a08e77f71687dd76ce513bc15a1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3537/CH1/EX1.18/Ex1_18.sce | af0ca40048a28b0a7f1a4c2fdc498ab6d7d11dcc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 355 | sce | Ex1_18.sce | //Example 1_18
clc();
clear;
//To calculate the smallest thickness of the plate
lemda=5890 //units in angstroam
lemda=5890*10^-10 //units in mts
u=1.5
n=1
r=60 //units in degree
t=(n*lemda)/(2*u*cos(r*%pi/180))*10^10
printf("Thickness of the glass plate is %.0f angstroam",t)
|
962581f0a0442fee328a6bef96b2f29d4dec2eb1 | 1b969fbb81566edd3ef2887c98b61d98b380afd4 | /Rez/bivariate-lcmsr-post_mi/bfi_e_usi/~BivLCM-SR-bfi_e_usi-PLin-VLin.tst | cf20796e3403077f766d41cec1abee43e6b7e614 | [] | no_license | psdlab/life-in-time-values-and-personality | 35fbf5bbe4edd54b429a934caf289fbb0edfefee | 7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e | refs/heads/master | 2020-03-24T22:08:27.964205 | 2019-03-04T17:03:26 | 2019-03-04T17:03:26 | 143,070,821 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,974 | tst | ~BivLCM-SR-bfi_e_usi-PLin-VLin.tst |
THE OPTIMIZATION ALGORITHM HAS CHANGED TO THE EM ALGORITHM.
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 0.518918D+00
2 -0.722289D-02 0.419411D-02
3 0.382206D-01 0.203792D-02 0.265445D+00
4 0.150160D-02 0.283644D-03 -0.247524D-02 0.214789D-02
5 0.648971D-03 0.126883D-03 -0.773725D-03 -0.175662D-04 0.389603D-02
6 0.529416D-03 -0.117675D-03 0.696548D-03 0.748490D-04 -0.106589D-03
7 -0.213523D-03 -0.625036D-04 0.139686D-02 0.240237D-04 -0.821208D-04
8 0.645454D-03 0.114537D-03 0.723269D-03 -0.510330D-04 -0.106833D-03
9 -0.124238D+00 0.235001D-01 0.788051D-01 -0.300891D-01 0.964074D-01
10 0.697980D-01 0.143481D-01 0.277527D-02 -0.706089D-02 0.170448D+00
11 -0.381941D-01 -0.109738D-01 -0.152281D+00 -0.617974D-03 -0.750943D-02
12 0.448028D+00 -0.284242D-01 0.209680D+00 -0.266041D-02 0.146798D-01
13 -0.399378D-03 -0.675232D-02 0.115805D+00 0.793894D-02 -0.103727D-01
14 0.693223D-01 0.113528D-01 0.269266D+00 0.229961D-02 0.176061D-02
15 -0.797010D+00 -0.740218D-01 -0.133568D+01 0.401716D-01 -0.133285D+00
16 -0.434837D-01 -0.466163D-02 0.155503D-01 -0.463521D-02 -0.254507D-02
17 -0.145592D-02 -0.524113D-03 0.554387D-03 -0.790911D-05 -0.827941D-03
18 -0.123901D+01 0.548724D-01 -0.829015D-01 -0.277433D-01 0.327654D-01
19 0.291570D-02 0.481963D-02 0.135151D+00 -0.134583D-01 0.556812D-02
20 -0.562038D+00 0.115399D-01 0.383552D+00 0.188750D-01 -0.789816D-02
21 0.356608D-01 -0.130209D-01 -0.149049D+00 0.125080D-01 -0.990243D-02
22 -0.785148D-03 -0.201534D-03 -0.903761D-03 -0.115968D-04 -0.974432D-04
23 -0.331357D-02 -0.177561D-02 0.179013D-01 0.248178D-02 0.129636D-02
24 0.175797D-02 -0.395001D-05 -0.114389D-02 0.206099D-03 -0.166717D-03
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 0.137956D-02
7 0.812080D-03 0.186546D-02
8 0.145387D-03 0.211708D-03 0.244478D-02
9 -0.142561D-02 0.222417D-01 -0.461895D-02 0.570678D+02
10 -0.245352D-02 0.919620D-02 0.103728D-01 0.318063D+01 0.245622D+02
11 0.110339D-01 0.104073D-01 -0.234617D-01 0.563387D+00 0.139132D+01
12 0.822401D-02 -0.417168D-02 0.797108D-01 0.167537D+01 0.984060D-01
13 0.558278D-01 0.768508D-01 0.738497D-02 0.489721D+00 -0.152940D+00
14 0.108593D-02 0.965723D-02 0.121453D+00 -0.240403D+00 0.157222D+01
15 0.320880D-01 0.313169D-01 0.267388D-02 -0.175881D+02 -0.154406D+02
16 0.257323D-02 0.888193D-03 -0.711509D-03 0.153655D+01 -0.460427D+00
17 -0.229605D-03 -0.178826D-03 -0.348339D-03 -0.209384D+00 -0.324692D-01
18 0.101894D-01 -0.345719D-01 0.196458D-01 0.596202D+00 -0.442881D+01
19 -0.532729D-02 0.552871D-02 -0.894248D-03 0.126626D+01 0.122093D+01
20 0.852331D-02 0.325987D-01 -0.104448D+00 -0.420816D+01 0.467759D+01
21 0.419369D-02 -0.416910D-02 -0.493154D-03 -0.129591D+01 -0.121397D+01
22 -0.435533D-03 -0.437072D-03 -0.437771D-04 -0.751555D-02 0.143363D-02
23 -0.223808D-03 -0.516312D-03 -0.123194D-03 -0.152274D+00 0.728426D-01
24 -0.147801D-03 -0.208561D-03 -0.278057D-03 0.456410D-02 -0.269869D-01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 0.215944D+02
12 -0.439358D+01 0.427512D+02
13 -0.123332D+01 0.463208D-01 0.807683D+01
14 -0.771832D+00 0.162306D+01 0.161851D+00 0.203721D+02
15 -0.241523D+01 0.410540D+01 0.302105D+01 -0.514761D+00 0.594096D+03
16 -0.123431D-01 0.296993D-01 0.162162D+00 -0.306398D+00 0.178244D+01
17 0.412652D-01 -0.599516D-01 -0.325305D-01 -0.283481D-02 -0.245233D+01
18 -0.415352D+01 0.537562D+01 -0.270486D+00 0.278311D+01 0.427390D+02
19 0.613169D+00 -0.357421D+00 -0.132666D+00 0.703621D-01 0.185115D+01
20 0.170173D+01 -0.175821D+02 0.107356D+01 -0.821516D+01 0.981453D+01
21 0.246770D+00 0.407994D+00 0.475633D-01 -0.101434D+00 -0.220685D+01
22 -0.486806D-01 -0.269702D-01 -0.259456D-01 -0.178214D-01 -0.515844D-01
23 0.316484D-01 0.153624D+00 0.322650D-02 -0.310271D-01 -0.492254D+00
24 -0.448249D-02 -0.735663D-02 -0.138079D-02 -0.322006D-01 -0.336581D-01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 0.870612D+00
17 -0.574839D-01 0.266119D-01
18 0.623029D+00 -0.149836D+00 0.200327D+03
19 0.765943D-01 -0.705040D-02 0.899792D+00 0.399761D+01
20 0.592353D-01 -0.739805D-02 0.112763D+02 0.485563D+01 0.163065D+03
21 0.128637D+00 0.865867D-02 0.804566D+00 -0.349919D+01 -0.513217D+01
22 -0.332940D-02 0.148321D-02 -0.883532D+00 -0.987385D-02 -0.527214D-01
23 -0.334289D-02 0.131009D-02 -0.303746D+00 -0.101857D+00 0.987923D+00
24 -0.194649D-02 0.191693D-03 -0.397316D-03 -0.232882D-01 -0.745730D+00
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 0.432778D+01
22 -0.400631D-01 0.100765D-01
23 0.138274D+00 0.489726D-03 0.212865D+00
24 0.263925D-01 0.242140D-03 -0.145826D-01 0.767052D-02
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 1.000
2 -0.155 1.000
3 0.103 0.061 1.000
4 0.045 0.095 -0.104 1.000
5 0.014 0.031 -0.024 -0.006 1.000
6 0.020 -0.049 0.036 0.043 -0.046
7 -0.007 -0.022 0.063 0.012 -0.030
8 0.018 0.036 0.028 -0.022 -0.035
9 -0.023 0.048 0.020 -0.086 0.204
10 0.020 0.045 0.001 -0.031 0.551
11 -0.011 -0.036 -0.064 -0.003 -0.026
12 0.095 -0.067 0.062 -0.009 0.036
13 0.000 -0.037 0.079 0.060 -0.058
14 0.021 0.039 0.116 0.011 0.006
15 -0.045 -0.047 -0.106 0.036 -0.088
16 -0.065 -0.077 0.032 -0.107 -0.044
17 -0.012 -0.050 0.007 -0.001 -0.081
18 -0.122 0.060 -0.011 -0.042 0.037
19 0.002 0.037 0.131 -0.145 0.045
20 -0.061 0.014 0.058 0.032 -0.010
21 0.024 -0.097 -0.139 0.130 -0.076
22 -0.011 -0.031 -0.017 -0.002 -0.016
23 -0.010 -0.059 0.075 0.116 0.045
24 0.028 -0.001 -0.025 0.051 -0.030
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 1.000
7 0.506 1.000
8 0.079 0.099 1.000
9 -0.005 0.068 -0.012 1.000
10 -0.013 0.043 0.042 0.085 1.000
11 0.064 0.052 -0.102 0.016 0.060
12 0.034 -0.015 0.247 0.034 0.003
13 0.529 0.626 0.053 0.023 -0.011
14 0.006 0.050 0.544 -0.007 0.070
15 0.035 0.030 0.002 -0.096 -0.128
16 0.074 0.022 -0.015 0.218 -0.100
17 -0.038 -0.025 -0.043 -0.170 -0.040
18 0.019 -0.057 0.028 0.006 -0.063
19 -0.072 0.064 -0.009 0.084 0.123
20 0.018 0.059 -0.165 -0.044 0.074
21 0.054 -0.046 -0.005 -0.082 -0.118
22 -0.117 -0.101 -0.009 -0.010 0.003
23 -0.013 -0.026 -0.005 -0.044 0.032
24 -0.045 -0.055 -0.064 0.007 -0.062
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 1.000
12 -0.145 1.000
13 -0.093 0.002 1.000
14 -0.037 0.055 0.013 1.000
15 -0.021 0.026 0.044 -0.005 1.000
16 -0.003 0.005 0.061 -0.073 0.078
17 0.054 -0.056 -0.070 -0.004 -0.617
18 -0.063 0.058 -0.007 0.044 0.124
19 0.066 -0.027 -0.023 0.008 0.038
20 0.029 -0.211 0.030 -0.143 0.032
21 0.026 0.030 0.008 -0.011 -0.044
22 -0.104 -0.041 -0.091 -0.039 -0.021
23 0.015 0.051 0.002 -0.015 -0.044
24 -0.011 -0.013 -0.006 -0.081 -0.016
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 1.000
17 -0.378 1.000
18 0.047 -0.065 1.000
19 0.041 -0.022 0.032 1.000
20 0.005 -0.004 0.062 0.190 1.000
21 0.066 0.026 0.027 -0.841 -0.193
22 -0.036 0.091 -0.622 -0.049 -0.041
23 -0.008 0.017 -0.047 -0.110 0.168
24 -0.024 0.013 0.000 -0.133 -0.667
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 1.000
22 -0.192 1.000
23 0.144 0.011 1.000
24 0.145 0.028 -0.361 1.000
|
0e7815f0f6fecb908e6c8c9affe7d932db47fcbf | 449d555969bfd7befe906877abab098c6e63a0e8 | /1439/CH6/EX6.5/6_5.sce | 3d161e11b298d1784a8c3d5f49ba54dd1cc25765 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 258 | sce | 6_5.sce | clc
//initialisation of variables
H= 342 //cal mole^-1 g^-1
G= 21 //gms
T= 60 //C
R= 1.987 //cal / mol K
//CALCULATIONS
Hvap= G*H
P1= 1/(%e^(Hvap*9/(2.303*R*(273.1+T)*H)))
//RESULTS
printf ('molar heat of vapourization = %.f cal mole^-1',Hvap)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.