blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
21 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
141k
586M
star_events_count
int64
0
30.4k
fork_events_count
int64
0
9.67k
gha_license_id
stringclasses
8 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
50 values
src_encoding
stringclasses
23 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
29 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
2a496e21fb50c18514f06fea9dbc6e47a446ffad
6b317caeff9d26dcf0051f56bfcaa94676704bb3
/Hebb.sce
c3259cd857e0eebf01f5e74a249b76815516c863
[]
no_license
devanshmody/c-cpp-programs
8d1a11915a421f420ba8cec71ea6d369e574baf9
fc2cbe444c2f7ce49417e06db62c24ee89c6acaa
refs/heads/main
2023-04-24T15:03:10.218495
2021-05-05T09:41:10
2021-05-05T09:41:10
364,527,543
0
0
null
null
null
null
UTF-8
Scilab
false
false
390
sce
Hebb.sce
n=input("Number of input pattern"); x=[] c=1; for i=1:n a=input("Enter a pattern"); x=cat(1,x,a) end wtmat=input("Enter wight matrix"); for i=1:n net=0; for j=1:length(wtmat); net=net+wtmat(j)*x(i,j); end r=sign(net); for j=1:length(wtmat) delta(j)=r*c*x(i,j) end wtmat=wtmat+delta'; disp(wtmat); end
53710e68f692090fcc6e8b1d4f0f5ca643eba37d
ffda72af53128fa90b1d8ad1a8772b965c2e3442
/António Vacations/Scilab/vacations.sce
5a81b9898a8b5552da74b4d7cfa1f9b1999d7abc
[ "MIT" ]
permissive
linux-man/The-Travelling-Salesman-Problem
5ca99a3b0024273ed1f6404000fb28785ee18a9f
6e6d1020b3ae86dc928aeaeea773065d3a9145d7
refs/heads/main
2023-03-07T06:04:59.935447
2021-02-16T12:52:32
2021-02-16T12:52:32
333,133,666
0
0
null
null
null
null
UTF-8
Scilab
false
false
8,040
sce
vacations.sce
/* Cities Codes Amesterdam 1 Athens 2 Berlin 3 Bern 4 Brussels 5 Budapest 6 Copenhagen 7 Stockolm 8 Helsinki 9 Lisbon 10 London 11 Madrid 12 Oslo 13 Paris 14 Porto 15 Rome 16 Vienna 17 Frankfurt 18 */ //Data nCities = 17 visit_duration = [2 2 3 1 3 2 2 2 1 2 4 3 1 4 1 4 3] distance_matrix = [ 0 3122 686 852 210 1476 929 1584 1708 2485 197 1780 1549 506 2242 1768 1182 436; 3122 0 2646 2337 3063 1646 3270 3925 3428 4484 3267 3832 3890 2871 4318 2480 1755 2481; 686 2646 0 974 817 900 724 1379 1421 2887 871 2366 1344 1115 3191 1651 661 520; 852 2337 974 0 672 1117 1344 1999 2544 2230 759 1731 1964 534 2217 982 873 1457; 210 3063 817 672 0 1417 1078 1733 2238 2114 220 1572 1698 296 2032 1545 1127 382; 1476 1646 900 1117 1417 0 1344 1999 1782 3475 1796 2823 1964 1513 3309 1395 278 956; 929 3270 724 1344 1078 1344 0 655 892 3229 2113 2641 620 1379 3115 2088 1105 958; 1584 3925 1379 1999 1733 1999 655 0 237 3086 2768 3296 590 2034 3770 2730 1799 1813; 1708 3428 1421 2544 2238 1782 892 237 0 4927 2492 4228 827 2744 4781 3007 1831 2175; 2485 4484 2887 2230 2114 3475 3229 3086 4927 0 2227 636 3783 1815 321 2708 3200 2474; 197 3267 871 759 220 1796 2113 2768 2492 2227 0 1635 2733 366 2121 1876 1347 602; 1780 3832 2366 1731 1572 2823 2641 3296 4228 636 1635 0 3281 1249 604 2038 2529 1851; 1549 3890 1344 1964 1698 1964 620 590 827 3783 2733 3281 0 1999 3735 2703 1780 1578; 506 2871 1115 534 296 1513 1379 2034 2744 1815 366 1249 1999 0 1736 1490 1248 587; 2242 4318 3191 2217 2032 3309 3115 3770 4781 321 2121 604 3735 1736 0 2524 3090 2337; 1768 2480 1651 982 1545 1395 2088 2730 3007 2708 1876 2038 2703 1490 2524 0 1184 1353; 1182 1755 661 873 1127 278 1105 1799 1831 3200 1347 2529 1780 1248 3090 1184 0 727; 436 2481 520 1457 382 956 958 1813 2175 2474 602 1851 1578 587 2337 1353 727 0; ] //Calculating Travels (combinations) that respect the travel duration restriction //One of the best ways to represent a combination is using a "bit" sequence. Each bit represents a city //17 bits on (1) corresponds to the number 131071, so we know that there are 131071 possible combinations disp("Calculating travels") maxBytes = bin2dec(part('1', ones(1:nCities))) cases = 0 travel_list = list() for travel = 1:maxBytes travel_days = 0 for bit = 1:nCities city = bitget(travel, bit) if city == 1 then travel_days = travel_days + visit_duration(bit) end end if travel_days <= 7 then cases = cases + 1 travel_list($+1) = travel disp(travel) end end disp("Number of travels", cases) disp("") //Convert list to matrix - first column //Columns: 1- Travel Code 2- Number of Cities 3- Distance 4- Average distance 5-9 Best order travels = list2vec(travel_list) travels = resize_matrix(travels, -1, 10) //Optimizing each travel (finding the shortest path) disp("Optimizing each travel") for travel = 1:cases cities_list = list() for bit = 1:nCities city = bitget(travels(travel, 1), bit) if city == 1 then cities_list($+1) = bit end end permutations = perms(list2vec(cities_list)) //Calculate all permutations fon each travel, choose best and save min_distance = %inf for permutation = 1:size(permutations, 'r') travel_order = list() distance = 0 for city_order = 1:size(permutations, 'c') travel_order($+1) = permutations(permutation, city_order) if city_order == 1 then //First City distance = distance + distance_matrix(nCities + 1, permutations(permutation, city_order)) else distance = distance + distance_matrix(permutations(permutation, city_order - 1), permutations(permutation, city_order)) end end distance = distance + distance_matrix(permutations(permutation, size(permutations, 'c')), nCities + 1) //Coming home if distance < min_distance then //Saving the best distance travels(travel, 2) = size(permutations, 'c') travels(travel, 3) = distance travels(travel, 4) = distance / size(permutations, 'c') for t = 1:size(permutations, 'c') travels(travel, 4 + t) = travel_order(t) end end min_distance = min(min_distance, distance) end end //Sorting by average distance - ascending [dummy,idx]=gsort(travels(:,4),"g","i") travels=travels(idx,:) disp(travels) disp("") //Now, the hard part: let's start to combine the best travels so all cities are visited //Travels with cities already visited are avoided: There is no situation where A->B->C distance < A->C distance //vectors "step" and "vacation" are travel "slots". The search is linear - incremental. Each slot starts searching at the previous one position + 1 //Each has 17 slots because, teoretically one solution is to visit the 17 cities one at a time //vacation stores the last valid sequence, step stores the current sequence //Again, this is a combination problem - the order don't matter disp("Searching solutions") step = linspace(0, 0, nCities) vacation = linspace(0, 0, nCities) best_vacation = linspace(0, 0, 18) best_distance = %inf best_average = %inf while step(1) < cases for v = 1:size(vacation, 'c') if vacation(v) ~= 0 step(v) = vacation(v) else visited_cities = 0 //Calculate visited cities to test new travels for n = 1:v - 1 if vacation(n) ~= 0 visited_cities = bitor(visited_cities, travels(vacation(n), 1)) end end while step(v) < cases //This is the cycle for each "slot" step(v) = step(v) + 1 if bitand(visited_cities, travels(step(v), 1)) == 0 //If this new travel don't go to previous cities, add it to the vacation vacation(v) = step(v) step(v + 1) = step(v) + 1 break //Stop incrementing and move to next travel end end end end visited_cities = 0 //See again which cities were visited for n = 1:size(vacation, 'c') if vacation(n) ~= 0 visited_cities = bitor(visited_cities, travels(vacation(n), 1)) end end if visited_cities == maxBytes //If ALL cities were visited, let's calculate the distance vacation_distance = 0 for n = 1:size(vacation, 'c') if vacation(n) > 0 vacation_distance = vacation_distance + travels(vacation(n), 3) end end if vacation_distance < best_distance //Replace best vacation best_distance = vacation_distance best_average = vacation_distance / nCities best_vacation(1:nCities) = vacation best_vacation(18) = best_distance end disp("Current vacation") disp(vacation) disp(vacation_distance) disp("Best vacation") disp(best_vacation) end vc = 0 //Optimization: if the average distance between visited cities are greater than the best calculated, jump to the next travel vd = 0 //There's no use to continue searching on this sequence. Speed up by a HUGE factor (from weeks to hours). It works because travels are ordered by average distance for v = 1:size(vacation, 'c') if vacation(v) > 0 vc = vc + travels(vacation(v), 2) vd = vd + travels(vacation(v), 3) if vd / vc > best_average step(v) = cases + 1 end end end for v = 2:size(vacation, 'c') //Clean up the cycle - if any travel slot reaches maximum (tried all travels), then the previous slot will jump to the next travel if step(v) >= cases for vv = v:size(vacation, 'c') step(vv) == vacation(vv - 1) + 1 vacation(vv) = 0 end vacation(v - 1) = 0 end end end
e879474d516a266ad63cde1998b478f2f7e4f078
d9111ba53f15c146e1ba9ef4c76ae213b4af2db0
/interpolation/interpolation.sce
9923133b5642c32d75adc9c3f29081be7b85711d
[]
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
974
sce
interpolation.sce
x=[0 2 4 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 42 44 46 48 50 52 54 56 58 60 62 64 66 68 70 72 74 76 78 80 82 84 86 88 90 92 94 96 98 100 102 104 106 108 110 112 114 116 118 120 122 124 126 128 130 132 134 136 138 140 142 144 146 148 150 152 154 156 158 160 162 164 166 168 170 172 174 176 178 180]; y=[234 232 229 226 221 216 210 204 197 190 183 173 158 145 128 122 119 117 115 113 110 108 105 101 97 92 86 80 72 65 60 56 52 47 42 37 32 27 22 17 13 9 6 4 3 3 3 3 4 5 6 7 8 10 13 15 18 21 26 31 37 45 55 65 75 83 90 95 101 106 111 116 121 125 129 134 139 144 150 158 167 175 183 190 198 206 214 221 227 233 239]; x1=1:180; y1=(1201./41652).*(x1.^2)-(215023./41652).*x1+234; y2=234-(3356513./2026797427200).*(x1.^4)+(3372274961./6080392281600).*(x1.^3)-(488052407./18096405600).*(x1.^2)-(5318838757./1551120480).*x1; plot2d(x,y,style=[color("black")]); plot2d(x1,y1,style=[color("red")]); plot2d(x1,y2,style=[color("green")]); legend('y=f(x)','3dots','5dots');
1ecf0fcc8dd560721e26012e3233c2642abd6e7f
449d555969bfd7befe906877abab098c6e63a0e8
/1913/CH6/EX6.13/ex13.sce
800f3f60b0df592ae1fb6310859973daf7421834
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
810
sce
ex13.sce
clc clear //Input data R1=0.06;//Thickness of material layer in m R2=0.12;//Thickness of the two insulating materials in m R3=0.16;//Thickness of material layers with pipe in m K1=0.24;//Thermal conductivity of one layer in W/mC K2=0.4;//Thermal conductivity of another layer in W/mC L=60;//Length of the pipe in m hi=60;//Heat transfer coefficient inside in W/m^2C ho=12;//Heat transfer coefficient outside in W/m^2C ti=65;//Temperature of hot air flowing in pipe in degree centigrade to=20;//Atmospheric temperature in degree centigrade pi=3.1428;//Constant value of pi //Calculations Q=(ti-to)*(2*pi*L)/((1/(hi*R1))+(log(R2/R1)/(K1))+(log(R3/R2)/(K2))+(1/(ho*R3)));//Rate of heat loss in W Q1=Q/1000;//Rate of heat loss in kW //Output printf('The rate of heat loss Q = %3.5f kW ',Q1)
cd4fd126f56f31ea9344d129f4a6c52c0693e712
449d555969bfd7befe906877abab098c6e63a0e8
/3864/CH2/EX2.23/Ex2_23.sce
b1ee4ddd9902039ce940e84245f44fe77ce1dad1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,159
sce
Ex2_23.sce
clear // // //Initilization of Variables D_s=20 //mm //Diameter of steel D_Ci=20 //mm //Internal Diameter of Copper t=5 //mm //THickness of copper bar P=100*10**3 //N //Load E_s=2*10**5 //N/mm**2 //modulus of elasticity of steel E_c=1.2*10**5 //N/mm**2 //Modulus of Elasticity of Copper //Calculations A_s=%pi*4**-1*D_s**2 //mm**2 //Area of steel D_Ce=D_s+2*t //mm //External Diameterof Copper Tube A_c=%pi*4**-1*(D_Ce**2-D_Ci**2) //mm**2 //Area of Copper //From static Equilibrium condition //Let P_s and P_c be the Load shared by steel and copper in KN //P_s+P_c=100 ....................................(1) //From compatibility Equation,dell_l_s=dell_l_c //P_s*L*(A_s*E_s)**-1=P_c*L*(A_c*E_c)**-1 //Substituting values in above Equation we get //P_s=1.3333*P_C //Now Substituting value of P_s in Equation (1),we get P_c=100*2.3333**-1 //KN P_s=100-P_c //KN //Stress in steel sigma_s=P_s*10**3*A_s**-1 //N/mm**2 //Stress in copper sigma_c=P_c*10**3*A_c**-1 //N/mm**2 //Result printf("\n Stresses Developed in Two material are:sigma_s %0.2f N/mm**2",sigma_s) printf("\n :sigma_c %0.2f N/mm**2",sigma_c)
99a730eeaeff2d07ca166424191e41b5afe6ef43
449d555969bfd7befe906877abab098c6e63a0e8
/1592/CH4/EX4.3/example_4_3.sce
3c9b9984e3d36b615fd0918d77d7bafe61ec0f22
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
670
sce
example_4_3.sce
//Scilab Code for Example 4.3 of Signals and systems by //P.Ramakrishna Rao //x(t)=A*cos w0*t*gate(t/T) //T=1/2*fo //fo=0.5 Hz clear; clc; //Fourier Transform A=1; T=0.5; fo=1/(2*T); Wo=2*%pi*fo; for f=-20:1:20; X(f+21)=A*integrate('cos(Wo*t)*cos(2*%pi*f*t)','t',-0.25,0.25); end disp(X,'X(0)-->X(20)'); t=-0.25:0.01:0.25; q=cos(Wo*t); a = gca (); a.y_location ="origin"; a.x_location ="origin"; plot(t,q); xlabel ( 'Time in Seconds' ); title ('Signal x(t)'); figure(1); a = gca (); a.y_location ="origin"; a.x_location ="origin"; f=-20:1:20; plot (f, X); xlabel ( 'Frequency in Hz ' ); title ('Continuous Time Fourier Transform X(jW)');
286eb9dc58df16af570b5c8469f9640957603d37
449d555969bfd7befe906877abab098c6e63a0e8
/1844/CH3/EX3.10/3Q10.sce
effc293f6a6b2ec6ae005fbbe0fa756d8a91e8a3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
361
sce
3Q10.sce
clc L=882.1 // in m a = 65*10^(-7)//in ()1 degree F)^-1 Tm=65 To=84 Ct= L * a * (Tm-To) l1=100 k1=2+1/6 l2= 150 k2=4+12/60 l3=50 k3=1+1/10 l4=200 k4=7+48/60 l5=300 k5=3 l6=82.1 k6=5+1/6 Cs= l1*(1-cosd(k1))+l2*(1-cosd(k2))+l3*(1-cosd(k3))+l4*(1-cosd(k4))+l5*(1-cosd(k6))+l6*(1-cosd(k6)) TC=Ct-Cs CL=L+TC printf('Corrected Length =%f m',CL)
15417b168131322f7b884d112323f2a0495e9b31
3d76fea8c13ccbbd85a72caff487d44353b3c546
/2018-2019/Fall 2018/Object Oriented (Java)/homework7/TestPreorderElementIterator.tst
b0be7deef95034e807ab42deb125076f1033912e
[]
no_license
munoz24/schoolWork
7b3c4b77b10d0ff449098052858dbd0470ff2507
abfb2203a28005be129f52bed79c38d0f869a49d
refs/heads/master
2020-04-26T02:10:35.656695
2019-03-01T03:33:18
2019-03-01T03:33:18
173,226,541
0
0
null
null
null
null
UTF-8
Scilab
false
false
63
tst
TestPreorderElementIterator.tst
729888243="d e" 1574077876=true 632230633="bc" 1794997492=true
8b30a9ed7e762c5311479ffd020f0e0981656e88
449d555969bfd7befe906877abab098c6e63a0e8
/2990/CH6/EX6.6/Ex6_6.sce
2e529469ae3fb887dfa5d29f996dcf5a1511a2a7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
210
sce
Ex6_6.sce
clc; funcprot(0); // Initialization of Variable d=62.4;//displacement in mm H=250.0;//height of datum m r=115.4;//image distance in mm //calculation h=H*d/r; disp(h,"height of chimney in m") clear()
3216dec373668707bda8f6c1d61ce1ab551f6fc6
449d555969bfd7befe906877abab098c6e63a0e8
/2204/CH5/EX5.1/ex5_1.sce
237037ad0a2e993b62f566e17430abb18c60197a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
340
sce
ex5_1.sce
// Exa 5.1 clc; clear; close; // Given data R = 10;// in k ohm R = R * 10^3;// in ohm C = 0.001;// in µF C = C * 10^-6;// in F f_c = 1/(2*%pi*R*C);// Hz f_c = f_c * 10^-3;// in kHz disp(f_c,"Cutoff frequency in kHz is"); R_F = 100;// in k ohm R1 = 10;// in k ohm A_F = 1+(R_F/R1); disp(A_F,"The passband voltage gain is");
6ba4d3db6dbd42156619e2b5b331bee25c6758f4
449d555969bfd7befe906877abab098c6e63a0e8
/3825/CH3/EX3.6/Ex3_6.sce
8c87e5be77400e12ddaf207d6efdd699805e80ad
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
547
sce
Ex3_6.sce
clc M=30 //molar mass for ethane in kg/kmol Tc=305.43 //temperature in kelvin Pc=4.884 //pressure in MPa P=70 //pressure in bar Pr=(P*10^5)/(Pc*10^6) mprintf("Pr=%f\n",Pr)//ans vary due to roundoff error M1=7 //mass of ethane present in kg Moles=(M1/M)*1000 //moles of ethane mprintf("Moles of ethane=%fmol\n",Moles) V=0.1 //volume of ethane in metre-cube v=V/Moles R=8.314 vr=Pc*10^6*v/(R*Tc) mprintf("vr=%f\n",vr)//ans may vary due to roundoff error Tr=1.4 T=Tr*Tc mprintf("T=%f K",T)//ans may vary due to roundoff error
978e4da6c977411dfa2183de48f000085f60a8a7
7a77a301987b89460fe3eddfbb6110d64a45e293
/d.sci
5e63dc8c6f86d04181275dbe4a16cb4ad802d7c9
[ "MIT" ]
permissive
UTEC-mateIII/TAP-1
e73758b5401730365b9e14f8405234b94151f2b1
d6c0c2d2e1e890864107d680a6e0d7547d271d6f
refs/heads/master
2022-06-06T03:39:54.375274
2020-04-19T18:55:40
2020-04-19T18:57:51
256,275,251
0
4
MIT
2020-04-19T17:15:09
2020-04-16T16:50:29
Scilab
UTF-8
Scilab
false
false
468
sci
d.sci
exec('platesD.sci') exec('Doolittle.sci') filas=5 [A b] = platesD(filas,1,1) disp('Ejercicio c:') printf('A:\n') disp(A) printf('\n') printf('b:\n') disp(b) printf('\n') rA = rank(A) rAb = rank([A b]) [n _n] = size(b) if(rA == rAb) if(rA == n) printf('Determinado\n') // Solución por Doolitle lu = Doolittle(A) x = inv(lu.U)*inv(lu.L)*b disp('x:') disp(x) elseif(rA < n) printf('Indeterminado\n') end else printf('Sin solución\n') end
f5e119079ec52175087527896a62cf4943c84650
449d555969bfd7befe906877abab098c6e63a0e8
/830/CH11/EX11.6.1/Weiner_Filter.sce
b5cc11fa82c009867e56c4951c311840da0beae3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
514
sce
Weiner_Filter.sce
//Graphical// //Example 11.6.1 //Design of wiener filter of Length M =2 clear; close; clc; M =2; //Wiener Filter Length Rdx = [0.6 2 0.6] //Cross correlation matrix between the desired input sequence and actual input sequence C = Rdx(M:$) //Right sided sequence To_M = toeplitz(C) Rxx = [0.6 1 0.6] //Auto correlation matrix Rss = Rxx(M:$) //Filter coefficients h = [0.451 0.165] //Calculation of Minimum Mean Square Error sigma_d = 1; //Average power of desired sequence MSE = sigma_d - h*Rss'
0d36d6c838c5459460bab0d2aef3f91bc66a7148
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH27/EX27.15/Ex27_15.sce
c7741d555886653c1e673fb9347613ff5e642514
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
131
sce
Ex27_15.sce
clear //Given a=10 b=2 c=3 //Calculation Vce=a-b Ic=c-b Ro=Vce/Ic //Result printf("\n The output resistance is %0.3f k ohm",Ro)
7f7d85686bb4827082803cee5b521ed55cadd554
449d555969bfd7befe906877abab098c6e63a0e8
/1946/CH7/EX7.9/Ex_7_9.sce
2e3a1814be06e0bbdc7e2b5a94cc6fc7ab850947
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
255
sce
Ex_7_9.sce
// Example 7.9;//overall power clc; clear; close; Pdc=300*10^-6;//d.c. power in watt f=20*10^6;//frequency in hertz Ti=5*10^-9;//recombination life time in nano second Pe=(Pdc*sqrt(1+(2*%pi*f*Ti)^2))*10^6; disp(Pe,"overall power in micro watt")
8fa2cad53cb65ddd7cf9b957bd62cf5e66ebc032
46ffb5fda9448453eba4d6787a1568028b241d88
/ABMLangangen/calibration/calibSimplexMeanSquares_11:58:13.350 AM 07-juin-2013.sci
c99f8d5ccbce8a07f926b2680afc785cd4b259dd
[]
no_license
JusteRaimbault/Models
f81f886dc050445dae68e933e0c052c7f9c0b59c
52f9c28fe20c8e491fb83e22ef162256eb966d32
refs/heads/master
2016-09-10T23:23:05.419418
2013-07-30T22:02:34
2013-07-30T22:02:34
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
13,643
sci
calibSimplexMeanSquares_11:58:13.350 AM 07-juin-2013.sci
ms=[];incomemean=[];bref=[];bnorm=[]; ms(1)=4.837358271377804E7; incomemean(1)=17000; bref(1)=12000; bnorm(1)=30000; ms(2)=4.8155241393382326E7; incomemean(2)=17000; bref(2)=13000; bnorm(2)=30000; ms(3)=5.092290478630149E7; incomemean(3)=17000; bref(3)=12000; bnorm(3)=31000; ms(4)=1.8876618021012735E7; incomemean(4)=18000; bref(4)=12000; bnorm(4)=30000; ms(5)=2.8164011612766314E7; incomemean(5)=17666.666666666668; bref(5)=12666.666666666664; bnorm(5)=28999.999999999993; ms(6)=1.8703609328573488E7; incomemean(6)=18111.111111111113; bref(6)=13111.11111111111; bnorm(6)=29333.333333333336; ms(7)=1.0675944424470617E7; incomemean(7)=18666.66666666668; bref(7)=13666.666666666668; bnorm(7)=29000.000000000007; ms(8)=6046822.208492681; incomemean(8)=19222.22222222223; bref(8)=12555.555555555555; bnorm(8)=28666.66666666668; ms(9)=1.5844667446283419E7; incomemean(9)=20333.33333333335; bref(9)=12333.333333333336; bnorm(9)=28000.00000000003; ms(10)=6883203.945089115; incomemean(10)=19592.592592592606; bref(10)=12814.814814814814; bnorm(10)=29444.444444444467; ms(11)=1.7569214663876478E7; incomemean(11)=20320.987654321016; bref(11)=14024.691358024691; bnorm(11)=28074.07407407411; ms(12)=1.0254753624798235E7; incomemean(12)=19740.74074074076; bref(12)=13518.518518518518; bnorm(12)=28555.55555555558; ms(13)=1.819898201493084E7; incomemean(13)=20370.37037037039; bref(13)=12259.25925925926; bnorm(13)=28777.77777777781; ms(14)=6476105.784993606; incomemean(14)=19092.592592592606; bref(14)=13314.814814814816; bnorm(14)=28944.44444444446; ms(15)=6688474.144343579; incomemean(15)=18864.1975308642; bref(15)=12271.604938271605; bnorm(15)=29481.48148148149; ms(16)=1.3649705429440811E7; incomemean(16)=18526.748971193418; bref(16)=12613.168724279836; bnorm(16)=28617.283950617282; ms(17)=6253666.011153272; incomemean(17)=19326.131687242807; bref(17)=12764.403292181069; bnorm(17)=29237.65432098767; ms(18)=6031014.1170515455; incomemean(18)=19563.100137174235; bref(18)=13484.91083676268; bnorm(18)=28417.695473251057; ms(19)=8724957.053310512; incomemean(19)=19912.551440329262; bref(19)=14091.56378600822; bnorm(19)=27885.80246913585; ms(20)=7158448.349299634; incomemean(20)=19648.376771833577; bref(20)=12555.098308184712; bnorm(20)=28603.566529492484; ms(21)=6395186.1408873005; incomemean(21)=19231.53863740285; bref(21)=13124.88568815729; bnorm(21)=28859.224965706468; ms(22)=6488736.857447605; incomemean(22)=19509.430727023333; bref(22)=12745.027434842239; bnorm(22)=28688.78600823046; ms(23)=6090114.192831304; incomemean(23)=19301.01165980797; bref(23)=13029.921124828528; bnorm(23)=28816.615226337468; ms(24)=6043931.0792781785; incomemean(24)=19398.090992226815; bref(24)=13282.5217192501; bnorm(24)=28029.663923182467; ms(25)=6515840.163880349; incomemean(25)=19563.100137174235; bref(25)=13484.91083676268; bnorm(25)=28417.695473251057; ms(26)=6876974.492399666; incomemean(26)=19563.100137174235; bref(26)=13484.91083676268; bnorm(26)=28417.695473251057; ms(27)=6588926.786767876; incomemean(27)=19563.100137174235; bref(27)=14484.91083676268; bnorm(27)=28417.695473251057; ms(28)=6841397.755887903; incomemean(28)=19563.100137174235; bref(28)=13484.91083676268; bnorm(28)=29417.695473251057; ms(29)=2.064949434895894E7; incomemean(29)=20563.100137174235; bref(29)=13484.91083676268; bnorm(29)=28417.695473251057; ms(30)=1.2662623323773343E7; incomemean(30)=18563.10013717423; bref(30)=14151.577503429347; bnorm(30)=29084.36213991772; ms(31)=5829905.437380575; incomemean(31)=19063.100137174235; bref(31)=13984.91083676268; bnorm(31)=28917.695473251053; ms(32)=6788923.637656409; incomemean(32)=19229.7668038409; bref(32)=14484.910836762683; bnorm(32)=29417.69547325105; ms(33)=6226758.561724926; incomemean(33)=19007.54458161868; bref(33)=15151.577503429347; bnorm(33)=28417.695473251035; ms(34)=5928841.712782485; incomemean(34)=19192.729766803866; bref(34)=14596.021947873789; bnorm(34)=27751.028806584363; ms(35)=1.0633575626746263E7; incomemean(35)=18612.482853223617; bref(35)=14670.09602194787; bnorm(35)=28306.584362139896; ms(36)=5792196.816070264; incomemean(36)=19325.44581618658; bref(36)=14531.207133058977; bnorm(36)=28389.91769547327; ms(37)=6372698.407235155; incomemean(37)=19379.97256515777; bref(37)=13589.84910836762; bnorm(37)=28288.065843621407; ms(38)=5817499.668049665; incomemean(38)=19100.651577503453; bref(38)=14761.145404663916; bnorm(38)=28385.288065843626; ms(39)=6099028.662156373; incomemean(39)=19133.401920438973; bref(39)=14255.486968449932; bnorm(39)=29377.572016460923; ms(40)=6048715.236574418; incomemean(40)=19177.897805212644; bref(40)=14510.888203017825; bnorm(40)=28157.664609053503; ms(41)=5659740.865556846; incomemean(41)=19259.08779149522; bref(41)=14563.614540466384; bnorm(41)=28070.473251028816; ms(42)=6775361.679186357; incomemean(42)=19213.048696845017; bref(42)=14646.176268861447; bnorm(42)=28387.602880658447; ms(43)=6064471.720291805; incomemean(43)=19194.272976680408; bref(43)=14258.05898491083; bnorm(43)=28653.80658436216; ms(44)=6069822.791738635; incomemean(44)=19306.15569272979; bref(44)=14255.744170096012; bnorm(44)=28355.195473251042; ms(45)=6369459.192371646; incomemean(45)=19282.8789437586; bref(45)=14353.35219478737; bnorm(45)=28363.297325102896; ms(46)=5476800.104416423; incomemean(46)=19292.266803840903; bref(46)=14547.41083676268; bnorm(46)=28230.195473251042; ms(47)=6054401.708548927; incomemean(47)=19282.621742112504; bref(47)=14409.679355281198; bnorm(47)=28212.83436213993; ms(48)=5857968.659097719; incomemean(48)=19226.680384087813; bref(48)=14410.836762688607; bnorm(48)=28362.139917695487; ms(49)=5631687.941891126; incomemean(49)=19236.068244170125; bref(49)=14604.895404663916; bnorm(49)=28229.038065843633; ms(50)=5889460.2128958795; incomemean(50)=19298.268175583024; bref(50)=14733.110425240044; bnorm(50)=27990.99794238685; ms(51)=6215798.362176451; incomemean(51)=19244.577331961616; bref(51)=14491.405178326466; bnorm(51)=28269.354423868328; ms(52)=6571037.332275783; incomemean(52)=19275.677297668062; bref(52)=14555.512688614532; bnorm(52)=28150.33436213993; ms(53)=6154795.607743514; incomemean(53)=19264.167524005512; bref(53)=14576.153120713298; bnorm(53)=28229.616769547338; ms(54)=5984712.623164698; incomemean(54)=19259.473593964358; bref(54)=14479.123799725643; bnorm(54)=28296.167695473265; ms(55)=5831057.421282645; incomemean(55)=19268.261316872464; bref(55)=14512.945816186548; bnorm(55)=28353.65226337451; ms(56)=6560758.591760365; incomemean(56)=19282.500285779646; bref(56)=14450.167181069948; bnorm(56)=28357.060185185204; ms(57)=6242087.214297597; incomemean(57)=19268.750714449045; bref(57)=14544.656635802461; bnorm(57)=28261.477623456805; ms(58)=6065574.919400863; incomemean(58)=19280.264060356683; bref(58)=14530.178326474614; bnorm(58)=28291.923868312777; ms(59)=5800493.4244804885; incomemean(59)=19278.217163923207; bref(59)=14561.781978737989; bnorm(59)=28229.906121399188; ms(60)=5729508.484514622; incomemean(60)=19275.87019890263; bref(60)=14513.267318244161; bnorm(60)=28263.18158436215; ms(61)=5810267.596377297; incomemean(61)=19283.972050754477; bref(61)=14551.461762688603; bnorm(61)=28190.264917695473; ms(62)=5870309.768480608; incomemean(62)=19283.045053155027; bref(62)=14546.140903635107; bnorm(62)=28215.6796553498; ms(63)=5828745.07789962; incomemean(63)=19288.11942729769; bref(63)=14549.436299725641; bnorm(63)=28210.230195473257; ms(64)=5916454.944813652; incomemean(64)=19285.241983882057; bref(64)=14554.596407750334; bnorm(64)=28230.050797325115; ms(65)=6074460.717656177; incomemean(65)=19284.068501371767; bref(65)=14530.33907750342; bnorm(65)=28246.688528806597; ms(66)=5795034.913962193; incomemean(66)=19293.016975308663; bref(66)=14570.623285322352; bnorm(66)=28200.295781893008; ms(67)=5943273.637143773; incomemean(67)=19297.026820416108; bref(67)=14557.050540123448; bnorm(67)=28197.09683641976; ms(68)=5688979.207328657; incomemean(68)=19288.18819301557; bref(68)=14555.209940843612; bnorm(68)=28221.81230709878; ms(69)=6145656.672943988; incomemean(69)=19294.1952208124; bref(69)=14566.059742226782; bnorm(69)=28224.63884602196; ms(70)=5971065.994431928; incomemean(70)=19289.638375676368; bref(70)=14553.592160350927; bnorm(70)=28213.832358110434; ms(71)=5668921.702976982; incomemean(71)=19290.193115569295; bref(71)=14548.423568244161; bnorm(71)=28220.21283436215; ms(72)=5928979.942064076; incomemean(72)=19290.227498428234; bref(72)=14551.310388803146; bnorm(72)=28226.00389017491; ms(73)=6286369.54128986; incomemean(73)=19292.641889574785; bref(73)=14559.017061042516; bnorm(73)=28215.245627572025; ms(74)=5869052.873776395; incomemean(74)=19289.14972231751; bref(74)=14539.079468164138; bnorm(74)=28235.69583762005; ms(75)=5541203.6099156495; incomemean(75)=19290.845596056915; bref(75)=14538.632193310841; bnorm(75)=28231.398873313927; ms(76)=6377596.670062184; incomemean(76)=19293.053954660576; bref(76)=14550.56493071431; bnorm(76)=28218.842282998034; ms(77)=5705799.953374613; incomemean(77)=19290.125780403276; bref(77)=14541.950833801682; bnorm(77)=28231.482448964547; ms(78)=5628576.906599886; incomemean(78)=19292.077896574818; bref(78)=14547.69356507677; bnorm(78)=28223.05567165355; ms(79)=5398347.594459715; incomemean(79)=19293.267082079143; bref(79)=14540.734161856028; bnorm(79)=28236.220511116873; ms(80)=6303685.931167203; incomemean(80)=19294.804065334072; bref(80)=14536.88945866196; bnorm(80)=28244.224349494238; ms(81)=5499116.222464485; incomemean(81)=19292.175091409834; bref(81)=14536.824562876256; bnorm(81)=28242.1542334677; ms(82)=6319449.288791718; incomemean(82)=19294.29372216302; bref(82)=14544.680847685799; bnorm(82)=28240.98127190984; ms(83)=5575273.329755235; incomemean(83)=19291.70762758344; bref(83)=14540.14435690458; bnorm(83)=28233.794472962905; ms(84)=6014210.574740779; incomemean(84)=19292.76694296002; bref(84)=14544.072499309354; bnorm(84)=28233.207992183958; ms(85)=5822370.581197063; incomemean(85)=19292.05633906803; bref(85)=14539.683177583434; bnorm(85)=28233.8096922154; ms(86)=5826386.515602187; incomemean(86)=19292.72108674449; bref(86)=14538.779362366142; bnorm(86)=28239.187372292286; ms(87)=5525503.408687967; incomemean(87)=19292.59606230108; bref(87)=14535.391968561049; bnorm(87)=28239.603724899083; ms(88)=5820658.498208677; incomemean(88)=19292.55856888767; bref(88)=14538.426842967529; bnorm(88)=28233.90191319528; ms(89)=6257658.4201396825; incomemean(89)=19293.558136443888; bref(89)=14536.685471339628; bnorm(89)=28239.341073925425; ms(90)=5871153.614051288; incomemean(90)=19292.431788411996; bref(90)=14538.933751022483; bnorm(90)=28235.192537642906; ms(91)=5816482.37136566; incomemean(91)=19292.93157219011; bref(91)=14538.063065208538; bnorm(91)=28237.91211800798; ms(92)=5747618.722287889; incomemean(92)=19292.661710573586; bref(92)=14540.20866971973; bnorm(92)=28235.015101666137; ms(93)=5965114.766259411; incomemean(93)=19292.912825483407; bref(93)=14539.580502411778; bnorm(93)=28235.061212156077; ms(94)=6063639.354939269; incomemean(94)=19292.99408441182; bref(94)=14539.756762111087; bnorm(94)=28237.70394170458; ms(95)=6192358.709554072; incomemean(95)=19292.93314021551; bref(95)=14539.624567336607; bnorm(95)=28235.721894543203; ms(96)=5328704.860764723; incomemean(96)=19293.099327134627; bref(96)=14539.398613532283; bnorm(96)=28237.066314562428; ms(97)=6186357.440288253; incomemean(97)=19292.964396326366; bref(97)=14540.471415787879; bnorm(97)=28235.617806391507; ms(98)=5861415.033121908; incomemean(98)=19293.089953781273; bref(98)=14540.157332133902; bnorm(98)=28235.640861636475; ms(99)=5742208.101745148; incomemean(99)=19293.339845670333; bref(99)=14539.721989226928; bnorm(99)=28237.000651819006; ms(100)=6040710.673778645; incomemean(100)=19293.380882808127; bref(100)=14539.745844276258; bnorm(100)=28237.88412336239; ms(101)=5816967.509734537; incomemean(101)=19293.162686037987; bref(101)=14540.054460169491; bnorm(101)=28236.201677067955; ms(102)=6315172.47949146; incomemean(102)=19293.30815055141; bref(102)=14539.848716240671; bnorm(102)=28237.32330793092; ms(103)=6111204.996777965; incomemean(103)=19293.199052166343; bref(103)=14540.003024187285; bnorm(103)=28236.482084783696; ms(104)=6082147.808355582; incomemean(104)=19293.183204606885; bref(104)=14540.066387694154; bnorm(104)=28236.64341283965; ms(105)=6240125.319329808; incomemean(105)=19293.21958640248; bref(105)=14539.560301379606; bnorm(105)=28237.033483190717; ms(106)=5805502.569521809; incomemean(106)=19293.131006586307; bref(106)=14539.726536850887; bnorm(106)=28236.63399581519; ms(107)=5792365.980227975; incomemean(107)=19293.05610581607; bref(107)=14539.900724005282; bnorm(107)=28236.528998954134; ms(108)=5940028.8876711065; incomemean(108)=19293.00775508445; bref(108)=14539.284195231481; bnorm(108)=28236.842793381533; ms(109)=5916255.532396786; incomemean(109)=19293.051617465062; bref(109)=14539.47974334715; bnorm(109)=28236.79294824606; ms(110)=5888621.373189368; incomemean(110)=19293.139342226274; bref(110)=14539.870839578489; bnorm(110)=28236.693257975123; ms(111)=5979362.932245005; incomemean(111)=19293.11741103597; bref(111)=14539.773065520654; bnorm(111)=28236.71818054286; ms(112)=5711000.065959055; incomemean(112)=19293.11933468045; bref(112)=14539.634726555385; bnorm(112)=28236.879786268775; ms(113)=5805581.920824345; incomemean(113)=19293.07771647535; bref(113)=14539.649668768783; bnorm(113)=28236.79765675828; ms(114)=6282938.063762185; incomemean(114)=19293.115166860465; bref(114)=14539.562575191585; bnorm(114)=28236.85015518881; ms(115)=6253405.510492768; incomemean(115)=19293.08241866648; bref(115)=14539.559430712721; bnorm(115)=28236.979016537516;
5df1a67184fe779ed0913c869ff254af48314906
4caec94f4ed1e7a859ef5a3d1e26c29855ab6e4b
/scilab.sce
18ae454c648ab2543ee7cbd127794d1a5fae5eed
[]
no_license
idebland/conhecimento
03b28d45c4d68124e4158897d249ed9bf24366bf
acfec9eb49a1f14afd0311717bb75edb7a2f4639
refs/heads/master
2021-01-10T20:40:27.360471
2014-10-28T22:55:50
2014-10-28T23:02:15
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
46
sce
scilab.sce
clc clear mprintf("entre com o primeiro nº")
1edc0a47f9f135d2676c687867d21a57cd46867c
449d555969bfd7befe906877abab098c6e63a0e8
/2795/CH3/EX3.10/Ex3_10.sce
3a55d656c746e577a78a23707930aebefe500063
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex3_10.sce
// Scilab Code Ex3.10: Page-106 (2013) clc; clear phi = 2.36; // Work function of sodium, eV N_A = 6.02e+023; // Avogadro's number e = 1.6e-019; // Energy equivalent of 1 eV, J I = 1e-008; // Intensity of incident radiation, W/Sq.m K = 1.00; // Kinetic energy of the ejected photoelectron, eV rho = 0.97; // Density of Na atoms, g/cc M = 23; // Gram atomic mass of Na, g/mol n = N_A*1e+006/M*rho; // Number of Na atoms per unit volume, atoms/metre-cube // Assume a cubic structure, then 1/d^3 = n, solving for d d = (1/n)^(1/3); // Thickness of one layer of sodium atoms, m N = n*d; // Number of exposed atoms per Sq.m R = I/(N*e); // Rate of energy received by each atom, eV/s t = (phi+K)/R; // Time needed to absorb 3.36 eV energy printf("\nThe exposure time of light to produce the photoelectron of %4.2f kinetic energy = %4.1f years", K, t/(60*60*24*365.25)); // Result // The exposure time of light to produce the photoelectron of 1.00 kinetic energy = 14.7 years
e380e446a27e95ca8ebc65ef32ddb9fca4f5b095
449d555969bfd7befe906877abab098c6e63a0e8
/2609/CH5/EX5.1/ex_5_1.sce
214198dcb30209821bf5a272393f73e6544f4b3d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
215
sce
ex_5_1.sce
//Ex 5.1 clc; clear; close; format('v',5); V1=2;V2=3;V3=4;V4=5;//V R1=10;R2=15;R3=22;R4=50;//kohm Rf=10;//kohm Vout=-Rf/R1*V1-Rf/R2*V2-Rf/R3*V3-Rf/R4*V4;//V disp(Vout,"Output voltage of the circuit(V)");;
c5c4cad61658c82f4f3d270808d2acfd2f2d524d
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.5/macros/percent/%r_n_r.sci
dd15d49451101ad4011913a489e765e8b99a9dd8
[ "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
195
sci
%r_n_r.sci
function r=%r_n_r(l1,l2) //%r_n_r(l1,l2) <=> l1<>l2 for rational matrices //! // Copyright INRIA r=l1('dt')<>l2('dt') if ~r then r=l1('num')<>l2('num')|(l1('den')<>l2('den')&l1('num')<>0) end
4dfe2a8c7daaf541e2826fdee29beb7ad94ba1d2
449d555969bfd7befe906877abab098c6e63a0e8
/3673/CH1/EX1.a.16/Example_a_1_16.sce
ac51dd351549f30ef0a27318a92dd35c9ae55f44
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
384
sce
Example_a_1_16.sce
//Example 1_16 page no:33 clc; R1=5 R2=6 R3=3 R4=3 R5=10 R6=6 R7=2 R8=4 V=100; R9=1/((1/(R7+R8))+(1/R6));//calculating the resistances R10=1/((1/(R3+R4))+(1/R2)); Rt=1/((1/13)+(1/8)); It=V/Rt; I8=20.2*(13/(13+8)); I13=20.2*(8/(13+8)); I5=I8; I10=I13; I4=3.845; I3=6.25; Va=I3*3; Vb=I4*4; Vab=Va-Vb;//voltage calculation disp(Vab,"the voltage Vab is (in V)");
89d1a427873f4e4e18ef30e1315dbd3853a24575
449d555969bfd7befe906877abab098c6e63a0e8
/587/CH3/EX3.8/example3_8.sce
f272c3242b9ca32eb382f408a29f05ae258a5613
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,696
sce
example3_8.sce
clear; clc; //Example3.8[Heat Loss through an Insulated Steam Pipe] //Given:- T_steam=320;//[degree Celcius] T_surr=5;//[degree Celcius] k_iron=80;//Thermal conductivity of cast iron[W/m.degree Celcius] k_insu=0.05;//Thermal conductivity of glass wool insulation[W/m.degree Celcius] h_out=18;//Covection heat transfer coefficient outside the pipe[w/m^2.degree Celcius] h_in=60;//Covection heat transfer coefficient insideside the pipe[w/m^2.degree Celcius] D_in=0.05;//Inner diameter of pipe[m] D_out=0.055;//Outer diameter of pipe[m] t=0.03;//Thickness of insulation[m] r=(D_out/2)+t;//Effective outer radius[m] L=1;//Length of pipe[m] //Solution:- //Areas of surfaces exposed to convection A1=2*%pi*(D_in/2)*L;//Inner Area of pipe[m^2] A2=2*%pi*(r)*L;//Outer Area of pipe[m^2 //Individual Thermal Resistances R_conv_in=1/(h_in*A1);//Resistance to convetion from inner surface of pipe[degree Celcius/W] R_pipe=(log(D_out/D_in))/(2*%pi*k_iron*L);//Resitance to conduction through iron pipe[degree Celcius/W] R_insu=(log(r/(D_out/2)))/(2*%pi*k_insu*L);//Resistance to conduction through insulation[degree Celcius/W] R_conv_out=1/(h_out*A2);//Resistance to convetion from outer surface of insulation on pipe[degree Celcius/W] //All resistances are in series R_total=R_conv_in+R_pipe+R_insu+R_conv_out;//Total Resistance[degree Celcius] Q_=(T_steam-T_surr)/R_total;//[W] disp("W",Q_,"The Steady rate of heat loss from the steam per m length of pipe is") delta_T_pipe=Q_*R_pipe;//[degree Celcius] delta_T_insu=Q_*R_insu;//[degree Celcius] disp("degree Celcius",delta_T_insu,"and",delta_T_pipe,,"The temperature drop across the pipe and the insulation is respectively")
df7b47105f0de656d0d92588589f669024ff3d90
449d555969bfd7befe906877abab098c6e63a0e8
/3751/CH17/EX17.21/Ex17_21.sce
db67ae8a4e77533b2c23eb2d3a7c247cb79ba655
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
817
sce
Ex17_21.sce
//Fluid Systems - By Shiv Kumar //Chapter 17- Dimensional and Model Analysis //Example 17.21 //To Find the Ship Velocity and Propulsive Force in the Prototype. clc clear //Given Data:- //For Model, Lm=1; //Length of Model, m Vm=0.7; //Speed in the Model, m/s Fm=5; //Force in the Model, N //For Prototype, Lp=50; //Length of Prototype, m //Computations:- //By Froude's Law of Similarity, Vp=Vm*(Lp/Lm)^(1/2); //Velocity of the Prototype(Ship), m/s Fp=Fm*(Lp/Lm)^3/1000; // Propulsive Force in the Prototype, kN //Results:- printf("The Ship(Prototype) Velocity , Vp=%.2f m/s \n",Vp) printf("The Propulsive Force in the Prototype , Fp=%.f kN \n",Fp)
523604762587eb2f278064fde0d64d67256fde1f
449d555969bfd7befe906877abab098c6e63a0e8
/3754/CH3/EX3.34/3_34.sce
2a595b89433843fc77b39bf4ffb16cfcd019c3bd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
456
sce
3_34.sce
clear// //Case a : //Variables R = 8.0 //Resistance (in ohm) P1 = 60.0 //Power (in watt) //Calculation I1 = (P1/R)**0.5 //Current (in Ampere) //Case b : //Variables R = 8.0 //Resistance (in ohm) P2 = 120.0 //Power (in watt) //Calculation I2 = (P2/R)**0.5 //Current (in Ampere) //Result printf("\n Maximum new current is %0.2f A.\nMaximum new current is %0.2f A.",I1,I2)
db6b30bc623e14a4b77ce825893984ed9712f9cd
449d555969bfd7befe906877abab098c6e63a0e8
/3648/CH6/EX6.8/Ex6_8.sce
300cde46b6874e791ef38bc2ed48591a126130d4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
584
sce
Ex6_8.sce
//Example 6_8 clc(); clear; //To determine the velocity of the third piece momentumbefore=0 //units in kg meter/s m=0.33 //units in Kgs vz=momentumbefore/m printf("The Z component of velocity is Vz=%d meters/sec\n",vz) m=0.33 //units in Kgs v0=0.6 //units in meters/sec vy=-(m*v0)/m //interms of v0 and meters/sec printf("The Y component of velocity is Vy=%.1f*V0\n",vy) v01=1 //units in meters/sec v02=0.8 //units in meters/sec vx=-((v01+v02)*m)/m //interms of v0 and units in meters/sec printf("The X component of velocity is Vx=%.1f*V0",vx)
987f1b26e081b61692844f943deacb8e66929934
449d555969bfd7befe906877abab098c6e63a0e8
/3871/CH7/EX7.5/Ex7_5.sce
a5ba78d77c755794475c26ddf1eb5103fabdb7a7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
634
sce
Ex7_5.sce
//=========================================================================== //chapter 7 example 5 clc;clear all; //variable declaration f = 50; //frequency in Hz L = 5*10^-3 //inductance V = 100; //voltage in V I = 10; //current in A R1 = 3000; //resistance in Ω //calculations x = ((2*%pi*f*L)/R1); //tan(theta) theta = atan(x); //the angle by which the current in pressure coil lags behind the voltage //W = V*I*sin(90+theta) = V*I*cos(theta) = V*I*tan(theta) //W=V*I*theta //since theta is small W = V*I*x; //reading of wattmeter in watt //result mprintf("error = %3.2f watts",W);
62435c5fed0aca4a68b35afd2a763688575eb02a
449d555969bfd7befe906877abab098c6e63a0e8
/527/CH3/EX3.13/3_13exam.sce
b6f2e6600d0cad43a38ccab67f9235b44d0e489e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
3_13exam.sce
//Engineering and Chemical Thermodynamics // Example 3.13 //Page no:137 clear ; clc ; //Given Ws_real = -2.1 ; //[MW] Ws_rev = -2.8 ; // [MW] n_tur = Ws_real / Ws_rev ; disp(" Example: 3.13 Page no : 137") ; printf("\n Isentropic efficiency of turbine = %.2f %%", n_tur * 100);
f80892044811728188ffba9ccf0d003c460aad2c
449d555969bfd7befe906877abab098c6e63a0e8
/3492/CH7/EX7.12/Ex7_12.sce
e79c5df8c5c1b19d42259bf9c9c817342366c6c7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
233
sce
Ex7_12.sce
clc //Chapter7 //Ex_12 //Given Eo=8.85*10^-12//F/m2 Er=1000 D=3*10^-3 //in m V=5000 // in V d=200*10^-12 //in m/V L=10*10^-3 //in mm A=%pi*(D/2)^2 F=Eo*Er*A*V/(d*L) disp(F,"Force required to spark the gap in Newton is")
b2e8d7805193ad8661efff487fcdcb10b9fbe884
fa428f297a915e9a041597642bfe29627ab69c42
/app/views/listings/sell.sce
ff47f11e2607ff9460b8575eefe211c88c32452c
[]
no_license
TheBrenny/Web-Dev-and-Security
dff903be92838b14f7126dd1f7092922b86bf2cc
e4abb96dc24e606704b09f5acdd2684d6d5d577d
refs/heads/main
2023-06-17T08:33:35.176024
2021-06-15T05:07:20
2021-06-15T05:07:20
343,603,444
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,084
sce
sell.sce
[[i= partials/header ]] [[i= partials/navbar ]] <div class="container"> <div class="flex row product"> <div class="container center productImg"> <img src="/assets/img/products/defaultImage.svg" alt="img"> <input type="text" name="image" placeholder="defaultImage.svg" disabled /> </div> <div class="container center productData" style="width:78%;"> <input type="text" name="name" placeholder="Item Name" /> <span class="costWrapper"><input type="number" name="cost" placeholder="Cost" /></span> <!-- <label for="cost">$</label> --> <textarea placeholder="Description" class="productDescription" name="description"></textarea> </div> </div> <div class="flex row actions"> <div class="btn" action="sellProduct">Sell Product</div> <div class="btn red" action="cancelSell">Cancel</div> </div> </div> <link rel="stylesheet" href="/assets/css/listings.css"> <script src="/assets/js/listings.js"></script> [[i= partials/footer ]]
ab7f76814b1d886ff7cad22a5d708da5c4a3cad8
449d555969bfd7befe906877abab098c6e63a0e8
/2951/CH3/EX3.3.A/additional_ex_3.sce
c665cb5e00b4f13e543d01c809454016231f2702
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
409
sce
additional_ex_3.sce
clc; clear; disp("efficiency(n)=(useful power/total power)*100%"); disp(" =total sideband power/(total sideband power+carrier power)*100%"); syms m Pc N=[((m^2)*Pc/2)/(Pc*(1+(m^2)/2))]; disp("*100% ",N); disp("----------------------------------------------------------------"); m=0.7 //modulation index n=[m^2/(m^2+2)]*100; //efficiency disp(n,"the percentage of useful power is ");
fc8aaebc0539a8f03fb5467029e8ff4a4bb64d1a
e580123e7d2608cf56ac7c63d2102b7a3aa60ec0
/structure.sce
272781ccd56961baf6098024e079b6187c9fa25c
[]
no_license
Ray-mech/league-software
439397a7dcb307c736b9a8a5d3f11d641ccc856b
8a404148529975df6932dec91066c45ae6cd974c
refs/heads/master
2021-07-01T05:07:00.401185
2018-07-12T04:13:52
2018-07-12T04:13:52
96,173,739
0
0
null
null
null
null
UTF-8
Scilab
false
false
6,938
sce
structure.sce
//init clear; clf; //define function //positive definite? function [ispos] = isPos(X) ev = spec(X); ispos = "POSITIVE"; for i = ev', if real(i) < 0.0 then ispos = "NON-POSITIVE"; end, end endfunction //parameters of the structure //rigid bodies m11=15; m12=20; m21=20; m22=15; j11=7.5; j12=10; j21=10; j22=7.5; //links dv11=0.3; dv12=0.3; dv13=0.3; dv21=0.3; dv22=0.3; dv23=0.3; kv11=10000; kv12=10000; kv13=10000; kv21=10000; kv22=10000; kv23=10000; dc1=0.4; dc2=0.4; dc3=0.4; dc4=0.4; dc5=0.4; dc6=0.4; kc1=11000; kc2=11000; kc3=11000; kc4=11000; kc5=11000; kc6=11000; //connection l111=1; l112=1; l113=1; l114=1; l121=1; l122=1; l123=1; l124=1; l211=1; l212=1; l213=1; l214=1; l221=1; l222=1; l223=1; l224=1; psi111=%pi/3; psi112=%pi/3; psi113=%pi/3; psi114=%pi/3; psi121=%pi/3; psi122=%pi/3; psi123=%pi/3; psi124=%pi/3; psi211=%pi/3; psi212=%pi/3; psi213=%pi/3; psi214=%pi/3; psi221=%pi/3; psi222=%pi/3; psi223=%pi/3; psi224=%pi/3; phi111=%pi/3; phi112=%pi/3; phi113=%pi/3; phi114=%pi/3; phi121=%pi/3; phi122=%pi/3; phi123=%pi/3; phi124=%pi/3; phi211=%pi/3; phi212=%pi/3; phi213=%pi/3; phi214=%pi/3; phi221=%pi/3; phi222=%pi/3; phi223=%pi/3; phi224=%pi/3; // parameter of controller //**select controller**// slctCtrl = 2 //*********************// select slctCtrl, case 1 then //P,Q: POSITIVE definite z1=17; p1=10; k1=1; alp1=1; bet1=100; gam1=15000; z2=17; p2=10; k2=1; alp2=4; bet2=400; gam2=7500;, case 2 then //P,Q: NON-POSITIVE definite z1=17; p1=5; k1=1; alp1=1; bet1=100; gam1=400; z2=17; p2=5; k2=1; alp2=2; bet2=400; gam2=100;, else disp("invalid controller select") end //matrices of subsystem1,2 M1 = diag([m11,m11,j11,m12,m12,j12]); M2 = diag([m21,m21,j21,m22,m22,j22]); N11 = [0 0 -cos(phi111); 1 1 sin(phi111); -l111*cos(psi111) l112*cos(psi112) -l111*sin(psi111+phi111)]; N12 = [0 0 -cos(phi122); 1 1 sin(phi122); -l121*cos(psi121) l122*cos(psi122) -l122*sin(psi122+phi122)]; N21 = [0 0 -cos(phi211); 1 1 sin(phi211); -l211*cos(psi211) l212*cos(psi212) -l211*sin(psi211+phi211)]; N22 = [0 0 -cos(phi222); 1 1 sin(phi222); -l221*cos(psi221) l222*cos(psi222) -l222*sin(psi222+phi222)]; D1 = [N11; -N12] * diag([dv11 dv12 dv13]) * [N11' -N12']; D2 = [N21; -N22] * diag([dv21 dv22 dv23]) * [N21' -N22']; K1 = [N11; -N12] * diag([kv11 kv12 kv13]) * [N11' -N12']; K2 = [N21; -N22] * diag([kv21 kv22 kv23]) * [N21' -N22']; L1 = sysdiag(eye(3,3),zeros(3,3)); L2 = sysdiag(zeros(3,3),eye(3,3)); //matrices of overall system Nb121 = [1 1 sin(phi114); 0 0 cos(phi114); l114*cos(psi113) -l113*cos(psi114) l114*sin(psi114+phi114)]; Nb122 = [1 1 sin(phi124); 0 0 cos(phi124); l124*cos(psi124) -l123*cos(psi124) l124*sin(psi124+phi124)]; Nb12 = sysdiag(Nb121,Nb122); Nb211 = [1 1 sin(phi213); 0 0 cos(phi213); l214*cos(psi213) -l213*cos(psi214) -l213*sin(psi213+phi213)]; Nb212 = [1 1 sin(phi223); 0 0 cos(phi223); l224*cos(psi224) -l223*cos(psi224) -l223*sin(psi223+phi223)]; Nb21 = sysdiag(Nb211,Nb212); Mb = sysdiag(M1,M2); Db = sysdiag(D1,D2) + [Nb12; -Nb21]*diag([dc1 dc2 dc3 dc4 dc5 dc6])*[Nb12' -Nb21']; Kb = sysdiag(K1,K2) + [Nb12; -Nb21]*diag([kc1 kc2 kc3 kc4 kc5 kc6])*[Nb12' -Nb21']; Lb = sysdiag(L1,L2); //matrices of overall controller zb = sysdiag(z1*eye(6,6),z2*eye(6,6)); pb = sysdiag(p1*eye(6,6),p2*eye(6,6)); kb = sysdiag(k1*eye(6,6),k2*eye(6,6)); alpb=sysdiag(alp1*eye(6,6),alp2*eye(6,6)); betb=sysdiag(bet1*eye(6,6),bet2*eye(6,6)); gamb=sysdiag(gam1*eye(6,6),gam2*eye(6,6)); //matrices of overall system with controller Ab = [zeros(12,12) eye(12,12) zeros(12,12) zeros(12,12); -inv(Mb)*Kb -inv(Mb)*Db kb*pb*inv(Mb)*Lb kb*pb/zb*inv(Mb)*Lb; zeros(12,12) zeros(12,12) zeros(12,12) eye(12,12); zeros(12,12) zeros(12,12) zeros(12,12) zeros(12,12)]; Bb = [zeros(12,12); zeros(12,12); zeros(12,12); eye(12,12)]; //controller R1 = eye(6,6); R2 = eye(6,6); Rh = sysdiag(R1,R2); Rb = inv(Rh); Pb11 = 1/2*(gamb^2*zb*alpb*inv(kb)*inv(pb)*Db+Db*zb*alpb*inv(kb)*inv(pb)*gamb^2)+1/2*(Kb*zb*betb*inv(kb)*inv(pb)*gamb^2+gamb^2*zb*betb*inv(kb)*inv(pb)*Kb)+gamb^2*alpb*betb*Lb*Rh*Lb'; Pb12 = inv(kb)*inv(pb)*zb*gamb^2*alpb*Mb; Pb13 = zeros(12,12); Pb14 = Lb*alpb*gamb; Pb22 = inv(kb)*inv(pb)*zb*gamb^2*betb*Mb; Pb23 = zeros(12,12); Pb24 = Lb*betb*gamb; Pb33 = gamb*pb*(gamb+pb)*Rb-Lb'*inv(Mb)*Lb*kb*pb*betb*gamb; Pb34 = gamb*pb*Rh; Pb44 = (gamb+pb)*Rb; Pb = [Pb11 Pb12 Pb13 Pb14; Pb12' Pb22 Pb23 Pb24; Pb13' Pb23' Pb33 Pb34; Pb14' Pb24' Pb34' Pb44]; disp(strcat(["Pb:",isPos(Pb)])); Qb11 = gamb^2*alpb^2*Lb*Rh*Lb'+kb^(-1)*pb^(-1)*zb*gamb^2*alpb*Kb+Kb*alpb*gamb^2*zb*pb^(-1)*kb^(-1); Qb12 = 1/2*(kb^(-1)*pb^(-1)*zb*gamb^2*alpb*Db-Db*alpb*gamb^2*zb*pb^(-1)*kb^(-1))+1/2*(Kb*kb^(-1)*pb^(-1)*zb*gamb^2*betb-betb*gamb^2*zb*pb^(-1)*kb^(-1)*Kb); Qb13 = Lb*(pb-zb)*alpb*gamb^2; Qb14 = Kb*inv(Mb)*Lb*betb*gamb+Lb*alpb*gamb*pb; Qb22 = gamb^2*betb^2*Lb*Lb'-kb^(-1)*pb^(-1)*zb*gamb^2*alpb*Mb+kb^(-1)*pb^(-1)*zb*gamb^2*betb*Db+Db*betb*gamb^2*zb*pb^(-1)*kb^(-1)-Mb*alpb*gamb^2*zb*pb^(-1)*kb^(-1); Qb23 = Lb*(pb-zb)*betb*gamb^2; Qb24 = Lb*(betb*pb-gamb*alpb)+Db*inv(Mb)*Lb*betb*gamb; Qb33 = gamb^2*pb^2*Rb; Qb34 = zeros(12,12); Qb44 = -2*gamb*betb*kb*pb*zb^(-1)*Lb'*Mb*Lb+(gamb^2+pb^2)*Rb; Qb = [Qb11 Qb12 Qb13 Qb14; Qb12' Qb22 Qb23 Qb24; Qb13' Qb23' Qb33 Qb34; Qb14' Qb24' Qb34' Qb44]; disp(strcat(["Qb:",isPos(Qb)])); //Feedback gain F F = inv(Rb)*Bb'*Pb; //simulation Cb = sysdiag(eye(12,12),zeros(12,12),zeros(24,24)); G = syslin('c',Ab-Bb*F,Bb,Cb); tEnd = 200; tStep = 0.01; t = 0:tStep:tEnd; r = zeros(12,tEnd/tStep+1); x0 = [0.2 -0.2 0.5 zeros(1,9) zeros(1,36)]'; y = csim(r,t,G,x0); //draw //pause; subplot(2,2,1); plot(t',y(1:3,:)'); xlabel("time,s"); xgrid(4); xtitle("rigid body 11"); subplot(2,2,2); plot(t',y(7:9,:)'); xlabel("time,s"); xgrid(4); xtitle("rigid body 21"); subplot(2,2,3); plot(t',y(4:6,:)'); xgrid(4); xtitle("rigid body 12"); subplot(2,2,4); plot(t',y(10:12,:)'); xgrid(4); xtitle("rigid body 22"); //legends(['$x_{ij}(t)$','$y_{ij}(t)$','$\theta_{ij}(t)$'],[2,13,5],font_size=3); //writeCSV (for visualize software) filepath = "D:\resData.csv" //write_csv(y',filepath);
ed4f3218643ec3409a1022d2ad237b78baa78660
b9602336613b26d0b9c22a09d219c0ed8e158b4e
/Examples/Examples_MatFunc/normalize.sce
4b194d09b73bda56a0bd72972e1db54b2515ca62
[ "BSD-2-Clause" ]
permissive
CEG-MCA-Scilab-Hackathon/Scilab_Armadillo_Toolbox
d0a366f5f058ee45d3c4be7a41e08ed419d4b7cd
70c97cda4e0dd54df0a638e9b99f380c09ffa37e
refs/heads/master
2022-12-11T01:28:28.742041
2020-08-26T12:24:27
2020-08-26T12:24:27
290,481,428
0
0
null
null
null
null
UTF-8
Scilab
false
false
238
sce
normalize.sce
// Function Name: normalize // Return its normalised version, has been normalised to have unit p-norm(3rd parameter) // Calculating the normalize inputMat = [ 1, 2, 3; 4, 5, 6; 7, 8, 10;] result = armaMatFunc("normalize",inputMat)
811b0428170f42a903e6f0af1688bb27856e0070
717ddeb7e700373742c617a95e25a2376565112c
/1592/CH6/EX6.1/Example_6_1.sce
6dfef7a585b38db8b3fad7366028af6a54561c8f
[]
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
717
sce
Example_6_1.sce
//Scilab Code for Example 6.1 of Signals and systems by //P.Ramakrishna Rao //Sampling of signal clc; clear f n X X_delta w; fs=200; for f=-200:200 X(f+201)=5*[delta(f-75)+delta(f+75)]; end figure(1); f=-200:200; plot2d3(f,X,-2); title('X(f)'); xlabel('---> f'); w=1; n=-1; for f=-275:275 X_delta1(f+276)=fs*5*[delta(f-n*fs-75)+delta(f-n*fs+75)]; end n=n+1; for f=-275:275 X_delta2(f+276)=fs*5*[delta(f-n*fs-75)+delta(f-n*fs+75)]; end n=n+1; for f=-275:275 X_delta3(f+276)=fs*5*[delta(f-n*fs-75)+delta(f-n*fs+75)]; end X_delta=X_delta1+X_delta2+X_delta3; figure(2); f=-275:275; plot2d3(f,X_delta,-2); title('X_delta(f) at fs=200'); xlabel('---> f');
b4aa0265c50c98ebac29fe5378c127e1b6f34045
3655c97e8146a7ca97eaf60c4eb20ced2238eacb
/scilab/Eight Queens/bestFitness.sci
af9d1c6799f0951717e30009008bd2b0b9838a4b
[]
no_license
edielsonpf/genetic-algorithm
99ae112982b6fee77ecfc55cbd10172b381e1dde
94c599a23fa3b2f477c7a5062f65248a93cc395a
refs/heads/master
2020-04-05T22:02:45.016605
2018-12-24T14:36:40
2018-12-24T14:36:40
32,630,334
0
1
null
2019-03-25T12:23:16
2015-03-21T11:45:11
Python
UTF-8
Scilab
false
false
361
sci
bestFitness.sci
function [best_fit, best_individual]=bestFitness(populacao) pop_fit = fitnessFunction(populacao); best_fit=pop_fit(1); best_individual=1; for i=2:length(pop_fit) if(pop_fit(i)>best_fit) best_fit = pop_fit(i); best_individual=i; end end disp("Best fit: "+string(best_fit)); endfunction
29a68ceeabe4646c4cf8a959916f2f4281e7c016
449d555969bfd7befe906877abab098c6e63a0e8
/2006/CH14/EX14.7/ex14_7.sce
85812cd578d9c1f0b72b493788bdd90ee7817da7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
789
sce
ex14_7.sce
clc; //From table 14.2 at 25 oC and 1 atm for C8H8 del_Ho=-2039.7; // LHV in MJ/kmol // Combustion equation is C3H8+ 5O2 +18.8N2 → 3CO2 +4H2O +18.8N2 // From table 14.3 h333_C3H8=2751; // h333_h298 of C3H8 in kJ/kmol h333_O2=147; // h333_h298 of O2 in kJ/kmol h333_N2=145; // h333_h298 of N2 in kJ/kmol h1333_CO2=52075; // h1333_h298 of CO2 in kJ/kmol h1333_H2O=32644; // h1333_h298 of H2O in kJ/kmol h1333_N2=32644; // h1333_h298 of N2 in kJ/kmol M=44; // molecular mass of C3H8 Ha_H1=h333_C3H8+5*h333_C3H8+18.8*h333_N2; // The enthalpy differences Hb_H2=3*h1333_CO2+4*h1333_H2O+18.8*h1333_N2; // The enthalpy differences Q=(del_Ho+Hb_H2/1000-Ha_H1/1000)/M; // Heat transfer from combustion chamber disp ("MJ/kg C3H8",abs (Q),"Heat transfer from combustion chamber =");
19d2dbd3788808c95c68cf790ce5de4105c28d77
fdc5047b7bf8122bad1e621df236b0481226c36e
/virtualProcessComm_V4/demos/hrtFrameCommand.sce
6131580c1710da9b6de9074f7b8f74dbfb9bef0b
[]
no_license
jpbevila/virtualHartSci
aea3c6ba23d054670eb193f441ea7de982b531cc
a3f5be6041d230bd9f0fd67e5d7efa71f41cfca5
refs/heads/main
2023-07-26T23:05:28.044194
2021-09-09T11:50:59
2021-09-09T11:50:59
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
373
sce
hrtFrameCommand.sce
// // This help file was automatically generated from hrtFrameCommand.sci using help_from_sci(). // PLEASE DO NOT EDIT // mode(1) // // Demo of hrtFrameCommand.sci // //========= E N D === O F === D E M O =========// // // Load this script into the editor // filename = "hrtFrameCommand.sce"; dname = get_absolute_file_path(filename); editor ( fullfile(dname,filename) );
207dc9ef19151c08dfcab47825c5eed6bc206497
449d555969bfd7befe906877abab098c6e63a0e8
/1322/CH17/EX17.8/145ex1.sce
f8d94ead067eafeb7acf17b61b262610f9c32a9c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
446
sce
145ex1.sce
//given u=160,g=10,h=240 clear clc close //using the formulae "h=u*t-(g*t^2)/2" u=160; g=10; h=240; t=poly(0,'t'); r=(240-u*t+(g*t^2)/2)//u*t-(g*t^2)/2-h=0 a=5;b=-160;c=240;//from equation we get these values //using the formulae - solution of quadratic equation ax^2+bx+c=0 t=(-b+sqrt(b^2-4*a*c))/(2*a); t1=(-b-sqrt(b^2-4*a*c))/(2*a); mprintf("\n the solution is t=%f or t=%f\n",t,t1)//the answer given in textbook is wrong
f514725986c867011d55c78f58582e4d063c105f
449d555969bfd7befe906877abab098c6e63a0e8
/476/CH9/EX9.9/Example_9_9.sce
7482d7ddb816c84fafe68629cb80015bc9026166
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,161
sce
Example_9_9.sce
//A Textbook of Chemical Engineering Thermodynamics //Chapter 9 //Chemical Reaction Equilibria //Example 9 clear; clc; //Given: //Reaction: N2(g) + 3H2(g) --> 2NH3(g) To = 298; //temperature in K T = 700; //(K) R = 8.314; //ideal gas constant Hf = -46100; //standard heat of formation (J/mol) Gf = -16500; //standard free energy of formtion of ammonia (J/mol) //Specific heat data //Cp = 27.27 + 4.93*10^-3T (for N2) //Cp = 27.01 + 3.51*10^-3T (for H2) //Cp = 29.75 + 25.11*10^-3T (for NH3) //To estimate free energy change and equilirium constant at 700 K Ho = 2*Hf; Go = 2*Gf; alpha = 2*29.75 - 27.27 - 3*27.01; betta = (2*25.11 - 4.93 - 3*3.51)*10^-3; //Using eq. 9.46 (Page no. 412) del_H = Ho - alpha*To - (betta/2)*To^2; //Using eq. 9.48 (Page no. 413) A = -(Go - del_H + alpha*To*log(To) + (betta/2)*To^2)/(R*To); //Using eq. 9.47 and 9.48 (Page no. 412) K = %e^((-del_H/(R*T)) + (alpha/R)*log(T) + (betta/(2*R))*T + A); G = del_H - alpha*T*log(T) -(betta/2)*T^2 - A*R*T; mprintf('At 700 K'); mprintf('\n Equilibrium constant is %3.2e',K); mprintf('\n Standard free energy change is %f J/mol',G); //end
c14217145b1f5c5eb4d9dca1615513c3a75732a5
449d555969bfd7befe906877abab098c6e63a0e8
/839/CH5/EX5.1/Example_5_1.sce
141ba9a06d19bdbd6c7b573fe755a4f38dee6295
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
645
sce
Example_5_1.sce
//clear// clear; clc; //Example 5.1 // Given mu = 0.004; //[kg/m-s] D = 0.0779;// [m] rho = 0.93*998; //[kg/m^3] L = 45; //[m] //For fittings, form Table 5.1 sum_Kf = 0.9 + 2*0.2; //From Eq.(4.29), assuming alpha_a = 1, // since pa = pb, and Va_bar = 0 //A = Vb_bar^2/2 + hf = g*(Za-Zb) A = 9.80665*(6+9); //[m^2/s^2] //Using Fig 5.9 f = 0.0055; //Using Eq.(5.68), There is no exapnsion loss and Ke = 0. //From Eq.(5.66), since Sa is very lage, Kc = 0.4. Hence Vb_bar = sqrt(294.2/(2.7+2311*f));//[m/s] //From Appendix 5, cross sectional area of the pipe S = 0.00477; //[m^2] flow_rate = S*Vb_bar*3600 //[m^3/hr]
014231216cf4bba48e6e8a2249a5a0302e48124a
449d555969bfd7befe906877abab098c6e63a0e8
/1655/CH7/EX7.5.2/Example_7_5_2.sce
e3866eb5b82e9b78c9702956c5e56f87144e6831
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
220
sce
Example_7_5_2.sce
// Example 7.5.2 page 7.24 clc; clear; R=0.6; //responsivity Pin=15; //optical power in microwatt Ip=R*Pin; //computing photocurrent printf("\nPhotocurrent generated is %d microAmpere.",Ip);
d288834afe643243aa81cf520638823be1e7239b
449d555969bfd7befe906877abab098c6e63a0e8
/1286/CH8/EX8.27/8_27.sce
9157c43f27191eed9abd539f7ffdfa03b5b0e929
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
184
sce
8_27.sce
clc //initialisation of variables dq=-80 dv=0.091*10^-6//m^3 p=1.013*10^5//n/m^2 //CALCULATIONS du=dq-(p*dv/46) //results printf(' \n change in internal energy= % 1f cal',du)
512a8e4104b998bfac4706c268d2d979316b6df0
449d555969bfd7befe906877abab098c6e63a0e8
/2441/CH1/EX1.7/Ex1_7.sce
fa7fe2be9ceff6740a36a3cf0c2c9b0ea5126c61
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
431
sce
Ex1_7.sce
//exa 1.7 clc;clear;close; format('v',9); dmax=40;//MW//Maximum demand CF=0.5;//Capacity Factor UF=0.8;//Utilisation Factor LF=CF/UF;///Load Factor disp(LF,"(a) Load Factor : "); C=dmax/UF;//MW//Plant Capacity disp(C,"(b) Plant Capacity(MW) : "); RC=C-dmax;//MW//Reserve Capacity disp(RC,"(c) Reserve Capacity(MW) : "); p=dmax*LF*24*365;//MWh//Annual Energy Production disp(p,"(d) Annual Energy Production(MWh) : ");
1ffa0c1df69ca9628bbef7610b77ce12e90d8162
449d555969bfd7befe906877abab098c6e63a0e8
/944/CH3/EX3.1/example3_1_TACC.sce
174d4cbda5749f2258cb98d39b775763067ff19f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
423
sce
example3_1_TACC.sce
//example 3.1 clear; clc; //given: V1=14;//initial volume of cylinder in m3 V2=9;//final volume of cylinder in m3 P=2000;//pressure during the operation in N/m2 U=(-6000);//internal energy of the system in J //to find energy transfered in form of heat: W=-P*(V2-V1);//work done during the operation in J Q=U-W;//energy tranfered in form of heat in J printf("energy tranfered in form of heat is %f J",Q);
c22ba45c82d2a5f61f7b1429e524958a552b9c7c
449d555969bfd7befe906877abab098c6e63a0e8
/3755/CH6/EX6.2/Ex6_2.sce
21e7b7a1c0ecc1015087b6c4dadbc96eff6e2a1d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,110
sce
Ex6_2.sce
clear // // // //Variable declaration h=6.63*10^-34; //planck's constant(J-sec) m=1.673*10^-27; //mass of proton(kg) v=10^4; //velocity of proton(m/sec) V1=100; //potential difference in 1st case(V) V2=10000; //potential difference in 2nd case(V) V3=6400; //potential difference in 3rd case(V) //Calculations lamda1=12.25/sqrt(V1) //de-broglie wavelength in 1st case(angstrom) lamda2=12.25/sqrt(V2) //de-broglie wavelength in 2nd case(angstrom) lamda3=12.25/sqrt(V3) //de-broglie wavelength in 3rd case(angstrom) lamda4=12.25/sqrt(V2) //de-broglie wavelength in 4th case(angstrom) lamda5=h/(m*v); //de-broglie wavelength of proton(m) //Result printf("\n de-broglie wavelength in 1st case is %0.3f angstrom",lamda1) printf("\n de-broglie wavelength in 2nd case is %0.3f angstrom",lamda2) printf("\n de-broglie wavelength in 3rd case is %0.3f angstrom",lamda3) printf("\n de-broglie wavelength in 4th case is %0.3f angstrom",lamda4) printf("\n de-broglie wavelength of proton is %0.4f angstrom",lamda5*10^10)
5cc8c75820188283bd68ed74039600a1fc7ad11f
449d555969bfd7befe906877abab098c6e63a0e8
/51/CH1/EX2/1_2data.sci
dc6b25a4817a2c04aa4414eecdff273ecae9abc7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
30
sci
1_2data.sci
m=36;//kg acc=7;//ft/sq sec
53b33c49ddea2849a7b4589edd6e90416c850245
717ddeb7e700373742c617a95e25a2376565112c
/752/CH12/EX12.4.2/12_4_2.sce
bef067f0a7922e50e516523aca26a08aaf75311f
[]
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
306
sce
12_4_2.sce
clc; //page no 420 //problem no 12.4.2 //a binary unipolar waveform with following specifications are given A=4;//max value of received signal voltage Vn=0.5;//rms noise voltage Vth=2;//Threshold voltage for the comparator Pbe=1/2 * b;// bit error probability disp(Pbe,'The bit error probability');
fa45b0abbddd02c307c32e70668b5efd9e68b2a0
47adabef6eb8924aff50314b05cfd89f90e19aec
/macros/http_urldecode.sci
28ebdf4507b2a24a51c86aaa77f531275951e398
[ "BSD-3-Clause" ]
permissive
sengupta/scilab-http
acf41286543dfadb62bfbf1fc74d19cd6ec65815
114ac7ab3a55e08399a82e8a1c084bc23cace3a3
refs/heads/master
2021-03-12T20:38:08.900774
2012-04-03T13:14:33
2012-04-03T13:14:33
3,886,870
1
0
null
null
null
null
UTF-8
Scilab
false
false
204
sci
http_urldecode.sci
function [keys, values] = http_urldecode(URL) // This function converts a URL-encoded set of key-value pairs to a // pair of Scilab vectors corresponding to the keys and values respectively endfunction
6cb418e8b91db3752f8a72be9b30c82c2bbbf4c5
449d555969bfd7befe906877abab098c6e63a0e8
/405/CH7/EX7.12/7_12.sce
f377b3c22e5507e096784d533bed5d113eb8a08c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,818
sce
7_12.sce
clear; clc; printf("\t\t\tExample Number 7.12\n\n\n"); // heat transfer across evacuated space // Example 7.12 (page no.-351-352) // solution E = 0.06;// emmisvity of polished aluminium plate d = 0.025;// [m] seperation between plates p = 101325*10^(-6);// [Pa] pressure of air between plates T1 = 100;// [degree celsius] temperature of plate 1 T2 = 30;// [degree celsius] temperature of plate 2 // we first calculate the mean free path to determine if low-density effects to be important. // evaluating properties at the mean air temperature of 65 degree celsius, we have lambda = (2.27*10^(-5)*((T1+T2)/2+273))/(p);// [m] // since the plate spacing is only 2.5 cm, we should expect low-density effects to be important. // evaluating properties at the mean temperature of 65 degree celsius, we have k = 0.0291;// [W/m degree celsius] Gamma = 1.40; Pr = 0.7; alpha = 0.9;// from table 7-4(page no.-350) // combining equations (7-75)with the central temperature gradient relation gives // inserting the appropriate properties gives deff('y = f(dT)','y = dT-((2-alpha)/alpha)*(2*Gamma/(Gamma+1))*(lambda/Pr)*((T1-T2-2*dT)/d)'); dT = fsolve(1,f); // the conduction heat transfer is thus q_by_A = k*((T1-T2-2*dT)/d);// [W/square meter] printf("conduction heat transfer through the air gap is %f W/square meter",q_by_A); // at normal atmospheric pressure the conduction would be q_by_A1 = k*((T1-T2)/d);// [W/square meter] // the radiation heat transfer is calculated with equation (8-42), taking E1=E2=0.06 for polished aluminium: sigma = 5.669*10^(-8);// [] q_by_A_rad = sigma*(((T1+273)^(4)-(T2+273)^(4))/((2/E)-1));// [W/square meter] printf("\n\n thus, at the low density condition the radiation heat transfer is almost %f times as large as the conduction",q_by_A_rad/q_by_A);
5694569e33c25ddbf2a4ab76a0eb390e4c3d7b34
449d555969bfd7befe906877abab098c6e63a0e8
/2213/CH7/EX7.7/ex_7_7.sce
0ada0f30c8b44af4a392edc8970e33462fa5f89f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
519
sce
ex_7_7.sce
//Example 7.7: Acceleration, Coasting and Braking periods clc; clear; close; //given data : S=1.6;// in km Va=40;// in km/h V1=64;// in km/h alfa=2.0;//in km/p/sec Beta_c=0.16;// in km/h/sec Beta=3.2;// in km/h/sec t1=V1/alfa;// in sec disp(t1,"Duration of Acceleration,t1(sec) = ") T=(S*3600)/Va;// in sec // Formula: T=(V1/alfa)+((V1-V2)/Beta_c)+(V2/Beta) V2=(t1+(V1/Beta_c)-T)/((1/Beta_c)-(1/Beta)); t2=(V1-V2)/Beta_c; disp(t2,"Duration of coasting,t2(sec) = ") t3=V2/Beta; disp(t3,"Duration of braking,t3(sec) = ")
ff2b2f0212d404e54b094ecb52814db0c88ef06b
449d555969bfd7befe906877abab098c6e63a0e8
/3710/CH4/EX4.3/Ex4_3.sce
3f143509db81db406f426aa1d9ff7dc51bfa77d9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,246
sce
Ex4_3.sce
//Example 4.3, Page Number 158 //The Function fpround(dependency) is used to round a floating point number x to n decimal places clc; d=0.2*(10**-3) //Chip Diameter in meter d1=1 //Distance in Meter l=550*(10**-9 ) //Wavelength in Meter q=0.001 //External Quantum Efficiency i=50*(10**-3) //Operational Current h=6.6*(10**-34)//Plancks Constant c=3*(10**8)//Speed of Light e=1.6*(10**-19)//Charge of an electron theta=(d/2) mprintf("Angle Theta of Emitting Area :%f\n",theta) mprintf(" Since theta is less than one, the LED acts as a Point Source\n") W=((h*c)/l)*q*(i/e) //W is the Total Radiant Power W=fpround(W,6) mprintf(" The Total Radiant Power is :%.2e W\n",W) //From the graph(Fig 1.24 Page No.33) l1=600 //Average Luminosity lf=W*l1 //lf is the luminous flux from the source lf=fpround(lf,3) mprintf(" The Luminous Flux from the source is:%.2e lm\n",lf) li=lf/(2*3.14)//li is the luminous intensity at normal incidence since flux is distributed over angle 2PI li=fpround(li,4) mprintf(" The Luminous Intensity at normal incidence is: %.2e candela\n",li) X = [400,500,555,600,650,700] V = [0.0,0.3,1.0,0.7,0.3,0.0] plot(X,V); xlabel("Wavelength in nm") ylabel("V") title("Fig 1.24")
b86dfcc4470bb221aac4eade2f89efac0f18f41f
449d555969bfd7befe906877abab098c6e63a0e8
/881/CH10/EX10.8/exa10_8.sce
f7cd02d3a143890ef385ec010b6e9a8de287f18a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
236
sce
exa10_8.sce
clc; //Example 10.8 //Page No 418 //solution s=8; //(a) disp("(a)With the 7 bit PCM,"); b=7; r=s*b; disp('kbps',r,"line speed = "); //(b) disp("(b)With the 8 bit PCM, "); b1=8; r1=s*b1; disp('kbps',r1,"line speed = ");
1a8e605768a610f1d12a99decb5af85ef1baefa6
449d555969bfd7befe906877abab098c6e63a0e8
/3169/CH6/EX6.3/Ex6_3.sce
9d5a64f0a4805ffda375a6a9115edc1012434801
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
978
sce
Ex6_3.sce
//developed in windows XP operating system //platform Scilab 5.4.1 clc;clear; //example 6.3 //calculation of series resistance ,damping resistance and maximum output voltage of the generator //given data n=8//number of stages C=0.16*10^-6//value of condenser(in farad) Cl=1000*10^-12//value of load capacitor (in farad) t1=1.2*10^-6//time to front(in second) t2=50*10^-6//time to tail(in second) Vc=120*10^3//charging voltage(in V) //calculation C1=C/n//generator capacitance C2=Cl//load capacitance R1=(t1*(C1+C2))/(3*C1*C2) R2=(t2/(0.7*(C1+C2)))-R1 V=n*Vc//dc charging voltage for n stages alpha=1/(R1*C2) betaa=1/(R2*C1) Vmax=(V*(exp(-alpha*t1)-exp(-betaa*t1)))/(R1*C2*(alpha-betaa)) printf('The value of series resistance is %d ohm',round(R1)) printf('\nThe value of damping resistance is %d ohm',round(R2)) printf('\nThe value of maximum output voltage of the generator is %3.2f kV',-Vmax*10^-3) //Vmax value from the equation is 892.02 kV
539056fb19d1dfa820b540590ff41ebb7c9d5adb
449d555969bfd7befe906877abab098c6e63a0e8
/659/CH8/EX2.cs/Casestudy8_2.sce
5279f4453ef1a2e57ca61e806d349c347b4b903b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,722
sce
Casestudy8_2.sce
// Csae study: Chapter-8, Page No:253 // 2.Processing of a customer list CUSTOMERS=10; printf(" Input names and telephone numbers\n"); printf(" [Names must have First,Second and Last_name]\n"); for i=1:CUSTOMERS //Read data [first_name(i),second_name(i),surname(i),telephone(i)]=scanf("%s %s %s %s"); //Converting full name to surname with initials l1=length(surname(i)); //Compute length of surname at i name(i)=strncpy(surname(i),l1) ; name(i)=strcat([name(i),',']); dummy(1)=part(first_name(i,1),1); name(i)=strcat([name(i),dummy]); name(i)=strcat([name(i),'.']); dummy(1)=part(second_name(i,1),1); name(i)=strcat([name(i),dummy]); end //Alphabetical odering of surnames for i=1:CUSTOMERS //Outer loop begins for j=2:CUSTOMERS-i+1 //Inner loop begins k=strcmp(name(j-1),name(j)); if(k>0) then //Swaping names l1=length(name(j-1)); l2=length(name(j)); dummy=strncpy(name(j-1),l1); name(j-1)=strncpy(name(j),l2); l3=length(dummy); name(j)=strncpy(dummy,l3); //Swapping telephone numbers l3=length(telephone(j-1)); l4=length(telephone(j)); dummy=strncpy(telephone(j-1),l3); telephone(j-1)=strncpy(telephone(j),l4); telephone(j)=strncpy(dummy,l3); end end //Inner loop ends end //Outer loop ends //Printing alphabetical list disp("CUSTOMER LIST IN ALPHABETICAL ORDER"); for i=1:CUSTOMERS printf("%-20s\t %-10s\n",name(i),telephone(i)); end
93cb8a74599060baa1e2811de4365f881d1c165c
717ddeb7e700373742c617a95e25a2376565112c
/1301/CH3/EX3.22/ex3_22.sce
cd4cc0d1b4bdb5539bc886d3174404aabbe5490b
[]
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
268
sce
ex3_22.sce
clc; F=50-30; //force in lb w1=50; //weight in lb w2=30; //weight in lb m=(w1+w2)/g; //calculating mass disp(m,"Mass in slugs = "); //displaying result a=F/m; //Newton's Law disp(a,"Accelaration in ft/sec square = "); //displaying result
8a29c1b991846d64707db08ed36d0e31a16ad524
449d555969bfd7befe906877abab098c6e63a0e8
/1026/CH8/EX8.9/Example8_9.sce
d4c3c89f35ab3144094ddbb5d9d1d03ad0463a7c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
204
sce
Example8_9.sce
//chapter8,Example8_9,pg 184 alpha=((%pi*10)/(60*60*180))//converting into radian B=0.5//fringe width u=1.4 lam=2*B*alpha*u printf("wavelength of light used\n") printf("lam=%.12f m",lam)
8eea8e23988d47667c61086dc01db374cccd2a1d
449d555969bfd7befe906877abab098c6e63a0e8
/1388/CH6/EX6.2/6_2.sce
896d3b5028d5a2fc78c4b84fadbd7b2c87538c7f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
153
sce
6_2.sce
clc //initialisation of variables P= 10 //atm Kp= 0.1719 //CALCULATIONS a= sqrt(Kp/(10+Kp))*100 //RESULTS printf (' percentage = %.f percent',a)
93a75f53ed61cee0bedaa9d07a3be1dccf9fdd34
4483ff664b4d01c53114a7fc535625c197c8f989
/green routing/anirudhga3.sce
d29cd25310192228738ef2a62a7f2997f7b575b3
[]
no_license
winash1618/myproject
be9b77d4a405edce7e625a999803016b50ab99d0
2132e76e6a996bee19f356a2b68af827fa6c621b
refs/heads/master
2022-12-06T06:09:06.487979
2020-08-20T02:00:54
2020-08-20T02:00:54
288,880,158
0
0
null
null
null
null
UTF-8
Scilab
false
false
4,134
sce
anirudhga3.sce
clc clear x=5 z=26 iter=5 bob=1000 se=zeros(1,iter) vo=zeros(1,iter) a=zeros(1,z) cap=[288 95 115 133 107 22 34 186 190 33 56 100 90 82 143 68 166 44 73 72 60 68 15 8 20 29] tim=[0 12 6.2 5.6 27 17 20 44 18 16 23 24 34 11 9 11 11 13 17 14 30 25 30 28 27 33; 12 0 5.2 9.9 39 29 32 52 29 27 34 36 46 23 20 23 15 18 24 21 37 32 37 36 34 37; 6.2 5.2 0 5.7 35 25 28 48 19 22 30 32 41 18 16 19 11 14 21 18 34 28 33 32 31 33; 5.6 9.9 5.7 0 29 19 22 42 19 17 26 26 36 13 10 13 5.5 8.8 15 12 28 23 28 26 25 27; 27 39 35 29 0 6.5 4.5 41 15 12 10 9.7 6.8 17 18 18 27 29 22 29 34 31 27 32 21 37; 17 29 25 19 6.5 0 2.9 35 9.6 3.7 7.6 6.9 12 7 8.3 8.5 17 79 18 19 25 21 22 23 14 28; 20 32 28 22 4.5 2.9 0 34 13 6.6 6.2 5.5 10 10 11 11 20 21 18 22 23 20 21 22 12 26; 44 52 48 42 41 35 34 0 54 6.6 6.2 5.5 10 10 11 11 20 21 18 21 23 20 21 22 12 26; 18 29 19 19 15 9.6 13 54 0 5.6 17 17 22 9.6 9.5 13 22 23 22 24 40 34 40 38 23 42; 16 27 22 17 12 3.7 6.6 6.6 5.6 0 11 11 19 5.6 6.8 7 16 17 16 18 34 28 34 32 18 36; 23 34 30 26 10 7.6 6.2 6.2 17 11 0 0.7 5.8 15 16 12 23 22 12 15 18 15 15 16 6.8 21; 24 36 32 26 9.7 6.9 5.5 5.5 17 11 0.7 0 5.1 14 15 12 23 22 13 15 18 14 15 16 6.9 21; 34 46 41 36 6.8 12 10 10 22 19 5.8 5.1 0 24 25 17 28 27 18 20 23 21 20 21 9.8 26; 11 23 18 13 17 7 10 10 9.6 5.6 15 14 24 0 5.2 2.1 11 12 12 13 29 24 29 27 18 32; 9 20 16 10 18 8.3 11 11 9.5 6.8 16 15 25 5.2 0 5.7 13 14 18 15 31 25 31 29 21 33; 11 23 19 13 18 8.5 11 11 13 7 12 12 17 2.1 5.7 0 11 13 9.4 11 23 18 23 21 15 26; 11 15 11 5.5 27 17 20 20 22 16 23 23 28 11 13 11 0 7.4 11 8 24 19 24 22 21 27; 13 18 14 8.8 29 79 21 21 23 17 22 22 27 12 14 13 7.4 0 9.8 6.8 23 18 23 21 20 19; 17 24 21 15 22 18 18 18 22 16 12 13 18 12 18 9.4 11 9.8 0 3.4 15 9.7 15 13 11 18; 14 21 18 12 29 19 22 21 24 18 15 15 20 13 15 11 8 6.8 3.4 0 17 11 16 15 14 19; 30 37 34 28 34 25 23 23 40 34 18 18 23 29 31 23 24 23 15 17 0 8 11 2.3 14 5; 25 32 28 23 31 21 20 20 34 28 15 14 21 24 25 18 19 18 9.7 11 8 0 8.3 6.1 11 6.4; 30 37 33 28 27 22 21 21 40 34 15 15 20 29 31 23 24 23 15 16 11 8.3 0 9.4 10 14; 28 36 32 26 32 23 22 22 38 32 16 16 21 27 29 21 22 21 13 15 2.3 6.1 9.4 0 12 5.1; 27 34 31 25 21 14 12 12 23 18 6.8 6.9 9.8 18 21 15 21 20 11 14 14 11 10 12 0 17; 33 37 33 27 37 28 26 26 42 36 21 21 26 32 33 26 27 19 18 19 5 6.4 14 5.1 17 0; ] dib=[5 12 6.8 7.4 23 15 18 48 12 14 23 22 29 15 9.3 15 13 16 22 19 35 30 35 33 30 35; 13 20 14 16 15 8.1 11 50 5.1 5.5 16 15 22 5.6 5.3 11 18 19 23 20 36 31 36 34 22 39; 23 34 29 24 8.6 4.9 4.1 4.1 14 8.5 3.1 2.4 7.4 12 13 13 22 23 15 18 20 17 18 19 9.3 23; 16 27 23 14 23 13 14 14 17 11 7.4 8.1 13 6.3 9.8 4.2 14 13 5.5 6.9 19 14 19 18 11 22; 25 33 29 23 30 20 19 19 35 29 13 13 18 21 26 18 19 18 10 12 4.7 3.3 6.5 2.9 9.1 7.5; ] best=zeros(x,z) bval=1000 for i=1:z a(i)=i end for sim=1:200 for y=1:iter dis=zeros(1,x) po=zeros(x,z) mo=zeros(z,z,x) kom=1+round((z-1)*rand(1,(x-1))) i=1 for k=1:x temp=0 r=1 while i<min(kom) & i<=z disp(min(kom)) po(k,r)=a(i) r=r+1 if i<=z i=i+1 end end for g=1:x-1 if kom(g)==min(kom) kom(g)=100 break end end disp(kom) end disp(po) for k=1:x i=1 while po(k,i+1)~=0 mo(po(k,i),po(k,i+1),k)=1 i=i+1 end end for k=1:x for i=1:z for j=1:z dis(k)=dis(k)+tim(i,j)*mo(i,j,k) end end end for k=1:x temp=0 for i=1:z if(po(k,i)~=0) temp=temp+1 end end if temp>0 dis(k)=dis(k)+dib(k,po(k,1))+dib(k,po(k,temp)) end end disp(sum(dis)) if(sum(dis)<bval) bval=sum(dis) sd=dis best=po end mut1=1+round((z-12)*rand(1,1)) mut2=(z-12)+round(11*rand(1,1)) temp=a(mut1) a(mut1)=a(mut2) a(mut2)=temp vo(y)=sum(dis) se(y)=y+1 end plot(se,vo) if bob>bval bob=bval beb=best bdb=sd end end
3356a4c99823eb960a195f3e6bc9df1206ecc0cf
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.1/macros/percent/%ssr.sci
f71d1ca942f0c4d814cbf2255ddaec8670b7f068
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer", "MIT" ]
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
276
sci
%ssr.sci
//<f>=%ssr(m,f) // %ssr(m,f) soustrait la matrice de fractions rationnelles f a la //matrice de scalaires m. //Cette macro correspond a l'operation m-f //! [t,n2,d2]=f(1:3), if sum(size(m))=-2 then m=m*eye(d2); end; [n2,d2]=simp(m.*d2-n2,d2) f=list(t,n2,d2,f(4)) //end
2113a90375462e026028e9ace194bfe4de4f5d11
449d555969bfd7befe906877abab098c6e63a0e8
/1073/CH2/EX2.10/2_10.sce
2e0ca6d0c76448e445c05c1868e3d859d63d37a1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
552
sce
2_10.sce
clear; clc; //Example 2.10 printf("Example 2.10") A= 1 //sq m x1=0.15 x2=0.01 x4=0.15 T1=973 //[K] T2=288 //[K] dT=T1-T2 //[K] //Thermal conductivities k1=1.75 k2=16.86 k3=0.033 k4=5.23 //in absence of air gap,sum of thermal resistances sR=(x1/k1*A)+(x2/k2*A)+(x4/k4*A) Q= dT/sR printf("Heat lost per sq meter is %d W/sq m",Q); //When heat loss,Q=1163,then new resistance =sR1 Q1=1163 //[W/sq m] sR1=dT/Q1 //width of air gap be w then w=(sR1-sR)*k3*A // [m] w=w*1000 //in [mm] printf("Width of air gap is %f mm",w);
b25923683221e83ec68b5f0ca137ba83cfeee030
e8bcf3f9ffdfb367940fb9ed498b1c598ce92e65
/clear.sce
1aa96edfc32aceacabe08d74569ab45ad17c819b
[]
no_license
yoddha24/Intro-to-Scilab
1fe25aee3ebd319bc2c9e2cf7c25d7050b09890e
4c458c1bea6880839ebae07adfd39dea0eac4e2c
refs/heads/master
2021-01-20T18:24:05.191473
2016-08-08T13:45:16
2016-08-08T13:45:16
65,207,356
1
1
null
null
null
null
UTF-8
Scilab
false
false
289
sce
clear.sce
disp("Define three vaiables named a,b,c") a = 10; b = 12.2; c = a * b; disp("Checking if variables have been defined as a,b,c") disp(isdef("a")) disp(isdef("b")) disp(isdef("b")) disp("After clearing the variable a") clear a disp(isdef("a")) disp(isdef("b")) disp(isdef("b"))
7be9c960d9b11ba1862f8fb3c3fdace488e38005
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.5/Unix-Windows/scilab-2.5/examples/addinter-examples/ex13f.sce
02dbf2882b56ad69bca9d3e86d92492aca1c5592
[ "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
156
sce
ex13f.sce
[a]=ex13f([1,2,3]+%i*[4,5,5]); if norm(a-2*[1,2,3]-%i*[4,5,5]*3) > %eps then pause,end [a]=ex13f([1,2,3]); if norm(a-2*[1,2,3]) > %eps then pause,end
65328b49e3f801203a88436d58ed5b4f0583afe0
9cb37875b74a713c93c09fa50ccc70ac0f71ecdb
/Human/radiateur.sce
9a4143bbd38edc8bf8e0093a8192c41247f37d22
[]
no_license
jmainpri/move3d-assets
a5b621daaedaaf8784fed0da1e80d029c83f3983
939db49d17a14e052bb58324b70e6112803d3105
refs/heads/master
2021-01-16T17:48:56.669119
2016-02-16T14:04:09
2016-02-16T14:04:09
20,237,987
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,494
sce
radiateur.sce
#************************************************************ # Scenario of radiateur # # date : Wed Nov 24 14:33:26 2004 #************************************************************ p3d_sel_desc_name P3D_ENV radiateur p3d_sel_desc_name P3D_ROBOT radiateur p3d_set_robot_steering_method Linear p3d_set_robot_current 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -17.519665 0.000000 -56.817664 53.552551 0.000000 -55.169478 -55.758485 27.439544 63.533085 63.755116 11.222487 2.882067 -64.959398 -21.163447 -5.335433 0.000000 0.000000 0.000000 0.000000 -20.000000 0.000000 230.309723 76.696167 7.448380 0.000000 0.000000 0.000000 0.000000 0.000000 p3d_set_robot_goto 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.406586 0.000000 41.347786 23.777464 0.000000 15.384077 -5.814927 105.740776 123.972116 -55.924995 16.763456 -24.804347 28.669435 32.923550 -36.155147 0.000000 0.000000 0.000000 0.000000 -20.000000 0.000000 113.544739 -9.832840 575.294983 15.044250 0.000000 0.000000 0.000000 0.000000 p3d_constraint_dof p3d_R7_human_arm_ik 7 3 4 5 9 11 12 13 0 0 0 0 0 0 0 1 24 0 1 0.000000 0 1 p3d_constraint_dof p3d_R7_human_arm_ik 7 6 7 8 10 14 15 16 0 0 0 0 0 0 0 1 25 0 1 0.000000 0 1 p3d_constraint_dof parallel_sys_fixmanip 0 0 0 0 0 #------------------------------------------------------------ # Planner: p3d_set_NB_TRY 1000 p3d_col_set_dmax 28.284271
87aa21a07753ce77f56f332cb33c8686c6ae19e8
449d555969bfd7befe906877abab098c6e63a0e8
/3594/CH11/EX11.5/Ex11_5.sce
fd5b35e4a562616bdf83ad86541492c1e574e1e6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
275
sce
Ex11_5.sce
clc //given Tb=27 Tc=30 Td=24 Te=21 k=Te*Tb/(Tc*Td)//k=Nd/Ne //by applying componendo and dividendo, using Ne=0 and reducing we get a=(1-k)//where a = Nd/Na b=1/a printf("\nThe ratio of the speed of driving shaft to the speed of driven shaft\n\nNa/Nd = %.2f",b)
806a76163a84ff19892ee6ddde790031e79f947d
449d555969bfd7befe906877abab098c6e63a0e8
/647/CH9/EX9.10/Example9_10.sce
4a99ac9fdbe1c82b0255b01b97efe94be36db795
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
602
sce
Example9_10.sce
clear; clc; // Example: 9.10 // Page: 354 printf("Example: 9.10 - Page: 354\n\n"); // Solution //*****Data******// x1 = 0.3;// [mole fraction of component 1 in the mixture] x2 = 0.7;// [mole fraction of component 2 in the mixture] phi1 = 0.7;// [fugacity coeffecient of component 1 in the mixture] phi2 = 0.85;// [fugacity coeffecient of component 2 in the mixture] P = 50;// [bar] T = 273 + 100;// [K] //*************// phi = exp(x1*log(phi1) + x2*log(phi2));// [fugacity coeffecient of the mixture] f = phi*P;// [bar] printf("Fugacity of the gaseous mixture is %.3f bar",f);
164606cd705a61c50f31675e9918b9c6183308e6
449d555969bfd7befe906877abab098c6e63a0e8
/1752/CH6/EX6.7/exa6_7.sce
c7130ca232a31ccf8bfa5814ca2204daf7cfe67d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
577
sce
exa6_7.sce
//Exa 6.7 clc; clear; close; //given data L=3;// in m delta=0; hx='10*x^(-1/4)' // (a) Average heat transfer coefficient h=1/L*integrate(hx,'x',delta,L); disp("(a) Average heat transfer coefficient is : "+string(h)+" W/m^2K") // (b) Heat transfer rate A=3*.3;// in m^2 Tp=170;// plate temp. in degree C Tg=30;// gas temp. in degree C del_T=Tp-Tg; q=h*A*del_T;// in W disp("(b) Heat transfer rate is : "+string(q)+" W") // (c) x=2;// in m qx_by_A= 10*x^(-1/4)*(Tp-Tg); disp("Local heat flux 2 m from the leading edge is : "+string(qx_by_A)+" W/m^2");
c44160ee10e602fa6b9bb2c8d1daa713e1e32ea4
573df9bfca39973c9bf2fa36f6e5af2643d7771e
/scilab/regressão/exemplo_reg_linear2.sce
8cfb088790cc0a108291fc5a9c5df1b3d0f66b24
[]
no_license
DCC-CN/152cn
ef92c691edabe211b1a552dbb963f9fd9ceec94a
4fe0b02f961f37935a1335b5eac22d81400fa609
refs/heads/master
2016-08-13T01:34:17.966430
2015-04-07T07:31:58
2015-04-07T07:31:58
44,502,526
1
0
null
null
null
null
UTF-8
Scilab
false
false
331
sce
exemplo_reg_linear2.sce
// // // clear; clc; getd('../lib'); getd('.'); // exemplo do livro Algoritmos Numéricos, 2a. ediçao x = [ 1.2 2.5 3.0 4.1 6.2 7.1 8.8 9.5]; y = [ 6.8 6.1 9.9 9.7 12.1 17.9 18.0 21.5]; [b1 b0 r2 s2] = reglin_simples(x, y, %T); x_reg = linspace(0,10,1000); y_reg = b1*x_reg + b0; plot(x, y, 'g.'); plot(x_reg, y_reg, 'r-');
1133b4d84a7cdb27de0870aab74d493b7a23a9ac
e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4
/New LSTMAttn Model/.data/lemma-split/DEVELOPMENT-LANGUAGES/oto-manguean/ctp.tst
acb3f2c6b127cfb50904744bbfc72a62c910cc4b
[]
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
7,772
tst
ctp.tst
xlyu V;HAB;1 xlyu V;PFV;1 xlyu V;PFV;3 xlyu V;HAB;3 xlyu V;PROSP;2 xlyu V;PROSP;1 xlyu V;HAB;2 xlyu V;PROG;3 xlyu V;PROSP;3 xlyu V;PROG;2 xlyu V;PROG;1 xlyu V;PFV;2 lya V;PROG;2 lya V;PROSP;1 lya V;PROG;1 lya V;PFV;3 lya V;HAB;3 lya V;HAB;1 lya V;PROSP;2 lya V;PROSP;3 lya V;HAB;2 lya V;PFV;2 lya V;PROG;3 lya V;PFV;1 jlya V;HAB;1 jlya V;HAB;3 jlya V;PROSP;3 jlya V;PROSP;2 jlya V;PFV;1 jlya V;PFV;2 jlya V;PROG;2 jlya V;PROSP;1 jlya V;PFV;3 jlya V;PROG;3 jlya V;PROG;1 jlya V;HAB;2 tjin V;PFV;1 tjin V;PROSP;2 tjin V;PROSP;1 tjin V;PROG;2 tjin V;HAB;1 tjin V;HAB;2 tjin V;PFV;2 tjin V;PROG;3 tjin V;PROSP;3 tjin V;HAB;3 tjin V;PROSP;1 tjin V;PROG;1 tjin V;HAB;1 tjin V;PROG;3 tjin V;HAB;3 tjin V;PROSP;3 tjin V;PFV;3 tjin V;PROG;1 tjin V;HAB;2 stya V;PROSP;1 stya V;PFV;3 stya V;HAB;3 stya V;PROSP;2 stya V;HAB;1 stya V;PROG;1 stya V;HAB;2 stya V;PROG;2 stya V;PROG;3 stya V;PFV;2 stya V;PROSP;3 stya V;PFV;1 tiyan V;PFV;3 tiyan V;PFV;2 tiyan V;PROG;1 tiyan V;PFV;1 tiyan V;HAB;2 tiyan V;HAB;1 tiyan V;PROSP;1 tiyan V;PROG;2 tiyan V;PROG;3 tiyan V;PROSP;3 tiyan V;HAB;3 tiyan V;PROSP;2 tiyan V;PROSP;3 tiyan V;PFV;2 tiyan V;PROSP;2 tiyan V;PROG;2 jkwi V;HAB;2 jkwi V;PFV;2 jkwi V;HAB;3 jkwi V;PFV;1 jkwi V;PROSP;1 jkwi V;PROG;2 jkwi V;HAB;1 jkwi V;PROG;3 jkwi V;PROSP;3 jkwi V;PROSP;2 jkwi V;PROG;1 jkwi V;PFV;3 jkwi V;PROSP;3 jkwi V;PROSP;2 jnya V;PROSP;3 jnya V;HAB;2 jnya V;PROG;1 jnya V;PROSP;2 jnya V;PROG;3 jnya V;PFV;2 jnya V;PFV;1 jnya V;PROG;2 jnya V;HAB;1 jnya V;PFV;3 jnya V;PROSP;1 jnya V;HAB;3 kya V;PROSP;3 kya V;HAB;3 kya V;PROG;3 kya V;PFV;2 kya V;PFV;3 kya V;PROG;1 kya V;PFV;1 kya V;HAB;2 kya V;PROG;2 kya V;PROSP;2 kya V;PROSP;3 kya V;HAB;1 kya V;PROSP;1 xnya V;PROSP;3 xnya V;PROG;3 xnya V;PFV;1 xnya V;HAB;1 xnya V;PFV;2 xnya V;PFV;3 xnya V;PROG;1 xnya V;PROG;2 xnya V;PROSP;1 xnya V;HAB;2 xnya V;PROSP;2 xnya V;HAB;3 tkwiʔ V;PFV;2 tkwiʔ V;PROSP;3 tkwiʔ V;PROG;1 tkwiʔ V;PFV;3 tkwiʔ V;PROG;3 tkwiʔ V;HAB;3 tkwiʔ V;HAB;2 tkwiʔ V;HAB;1 tkwiʔ V;PROSP;1 tkwiʔ V;PFV;1 tkwiʔ V;PROG;2 tkwiʔ V;PROSP;2 tkwiʔ V;PROSP;2 tkwiʔ V;HAB;1 tkwiʔ V;PROSP;3 tkwiʔ V;PROG;2 tkwiʔ V;PFV;3 tkwiʔ V;HAB;1 xkwi V;PROSP;1 xkwi V;PFV;3 xkwi V;PROG;1 xkwi V;HAB;1 xkwi V;PROG;2 xkwi V;HAB;3 xkwi V;PROSP;3 xkwi V;PROG;3 xkwi V;PFV;1 xkwi V;HAB;2 xkwi V;PROSP;2 xkwi V;PFV;2 cha V;PFV;2 cha V;HAB;2 cha V;PFV;1 cha V;PROG;2 cha V;PFV;3 cha V;PROG;1 cha V;HAB;1 cha V;PROG;3 cha V;HAB;3 cha V;PROSP;3 jwiʔ V;HAB;3 jwiʔ V;PROG;3 jwiʔ V;PROG;2 jwiʔ V;PROSP;1 jwiʔ V;PROSP;2 jwiʔ V;PFV;2 jwiʔ V;PFV;1 jwiʔ V;HAB;1 jwiʔ V;PROSP;3 jwiʔ V;PROG;1 jwiʔ V;PFV;3 jwiʔ V;HAB;2 tzen V;PFV;2 tzen V;PFV;3 tzen V;HAB;3 tzen V;PROSP;2 tzen V;PROSP;1 tzen V;PROSP;3 tzen V;HAB;2 tzen V;PROG;2 tzen V;PFV;1 tzen V;PROG;3 tzen V;PROG;1 tzen V;HAB;1 xyuʔn V;PFV;3 xyuʔn V;HAB;3 xyuʔn V;PROSP;3 xyuʔn V;PROG;2 xyuʔn V;HAB;1 xyuʔn V;PROG;3 xyuʔn V;PFV;1 xyuʔn V;PROG;1 xyuʔn V;PROSP;2 xyuʔn V;HAB;2 xyuʔn V;PROSP;1 xyuʔn V;PFV;2 xtiʔ V;PFV;1 xtiʔ V;HAB;1 xtiʔ V;HAB;3 xtiʔ V;PROG;3 xtiʔ V;PROSP;2 xtiʔ V;PROG;1 xtiʔ V;PROSP;1 xtiʔ V;PFV;3 xtiʔ V;PROG;2 xtiʔ V;HAB;2 xtiʔ V;PROSP;3 xtiʔ V;PFV;2 sweʔn V;PROSP;3 sweʔn V;HAB;3 sweʔn V;PFV;2 sweʔn V;PROG;2 sweʔn V;PFV;3 sweʔn V;HAB;2 sweʔn V;PROG;3 sweʔn V;HAB;1 sweʔn V;PROSP;1 sweʔn V;PROG;1 sweʔn V;PFV;1 sweʔn V;PROSP;1 sweʔn V;PROG;3 sweʔn V;HAB;2 sweʔn V;HAB;3 sweʔn V;HAB;1 sweʔn V;PROSP;2 sweʔn V;PROSP;3 xʔya V;PROG;2 xʔya V;PROG;3 xʔya V;HAB;3 xʔya V;PFV;3 xʔya V;HAB;2 xʔya V;HAB;1 xʔya V;PFV;1 xʔya V;PROSP;3 xʔya V;PROSP;1 xʔya V;PROSP;2 xʔya V;PFV;2 xʔya V;PROG;1 jlyo V;PROG;2 jlyo V;PFV;1 jlyo V;HAB;3 jlyo V;PROG;1 jlyo V;PROG;3 jlyo V;PFV;3 jlyo V;PROSP;1 jlyo V;HAB;1 jlyo V;PROSP;2 jlyo V;PFV;2 jlyo V;HAB;2 jlyo V;PROSP;3 kitun V;PROSP;3 kitun V;PFV;3 kitun V;PFV;2 kitun V;HAB;1 kitun V;PROSP;1 kitun V;PFV;1 kitun V;PROSP;2 kitun V;PROG;2 kitun V;HAB;2 kitun V;HAB;3 kitun V;PROG;3 kitun V;PROG;1 chaʔ V;PROG;3 chaʔ V;PFV;2 chaʔ V;PFV;3 chaʔ V;HAB;1 chaʔ V;HAB;2 chaʔ V;PROG;1 chaʔ V;PFV;1 chaʔ V;PROSP;3 chaʔ V;PROSP;1 chaʔ V;PROSP;2 chaʔ V;PROG;2 chaʔ V;HAB;3 swi V;HAB;1 swi V;HAB;3 swi V;PROSP;2 swi V;PROG;3 swi V;PROG;1 swi V;PROG;2 swi V;PFV;3 swi V;PFV;2 swi V;PROSP;1 swi V;PFV;1 swi V;HAB;2 swi V;PROSP;3 a V;PROG;3 a V;PROSP;2 a V;HAB;1 a V;PROG;1 a V;PROG;2 a V;PROSP;3 a V;HAB;2 a V;PROSP;1 a V;PFV;3 a V;PFV;1 a V;HAB;3 a V;PFV;2 su V;PROSP;2 su V;PROG;1 su V;PROG;2 su V;PROG;3 su V;PROSP;1 su V;PROSP;3 xʔo V;PROSP;1 xʔo V;PFV;2 xʔo V;PROG;3 xʔo V;PROSP;2 xʔo V;PROSP;3 xʔo V;PROG;2 xʔo V;PFV;3 xʔo V;PFV;1 xʔo V;HAB;3 xʔo V;PROG;1 xʔo V;HAB;1 xʔo V;HAB;2 jkwa V;PROG;2 jkwa V;PFV;2 jkwa V;PROSP;1 jkwa V;HAB;3 jkwa V;PROSP;2 jkwa V;HAB;1 jkwa V;PROG;3 jkwa V;HAB;2 jkwa V;PROG;1 jkwa V;PFV;1 jkwa V;PROSP;3 jkwa V;PROG;3 jkwa V;PFV;2 jkwa V;PFV;3 jkwa V;PROG;2 jkwa V;PROSP;2 jkwa V;PROSP;1 jkwa V;PROG;1 jkwa V;PROSP;3 jkwa V;PFV;3 kija V;PROG;2 kija V;PFV;2 kija V;PROG;3 kija V;HAB;1 kija V;PROSP;2 kija V;PROSP;3 kija V;PFV;1 kija V;PROSP;1 kija V;PROG;1 kija V;HAB;2 kija V;PFV;3 kija V;HAB;3 ne V;HAB;2 ne V;HAB;3 ne V;PROG;2 ne V;PROSP;3 ne V;HAB;1 ne V;PROSP;2 ne V;PROSP;1 ne V;PFV;1 ne V;PFV;3 ne V;PFV;2 ne V;PROG;3 ne V;PROG;1 siʔn V;PFV;2 siʔn V;PROSP;1 siʔn V;PROSP;2 siʔn V;PROG;2 siʔn V;PROG;3 siʔn V;PFV;3 siʔn V;PROSP;3 siʔn V;HAB;2 siʔn V;HAB;3 siʔn V;HAB;1 siʔn V;PROG;1 siʔn V;PFV;1 ʔyu V;PFV;1 ʔyu V;PROG;2 ʔyu V;PROG;3 ʔyu V;HAB;1 ʔyu V;HAB;3 ʔyu V;PROG;1 ʔyu V;PROSP;1 ʔyu V;PFV;2 ʔyu V;PROSP;2 ʔyu V;HAB;2 ʔyu V;PROSP;3 ʔyu V;PFV;3 kin V;PROSP;1 kin V;PROG;2 kin V;PFV;2 kin V;PROG;3 kin V;HAB;2 kin V;PROSP;2 kin V;HAB;3 kin V;PROG;1 kin V;PFV;3 kin V;PFV;1 kin V;PROSP;3 kin V;HAB;1 kisa V;PROG;1 kisa V;PROSP;3 kisa V;PROG;3 kisa V;HAB;1 kisa V;HAB;3 kisa V;PROSP;1 kisa V;PROG;2 kisa V;PFV;1 kisa V;PFV;2 kisa V;PFV;3 kisa V;PROSP;2 kisa V;HAB;2 xʔyu V;PFV;1 xʔyu V;PROSP;2 xʔyu V;HAB;1 xʔyu V;PROSP;1 xʔyu V;HAB;3 xʔyu V;PROG;2 xʔyu V;PROG;3 xʔyu V;PFV;3 xʔyu V;PROG;1 xʔyu V;HAB;2 xʔyu V;PFV;2 xʔyu V;PROSP;3 xen V;HAB;3 xen V;HAB;2 xen V;PROG;1 xen V;PROSP;2 xen V;PROSP;3 xen V;PROG;2 xen V;PFV;3 xen V;PROSP;1 xen V;PROG;3 xen V;PFV;1 xen V;HAB;1 xen V;PFV;2 xen V;PFV;2 xen V;PROG;3 wen V;PFV;1 wen V;HAB;3 wen V;HAB;2 wen V;HAB;1 wen V;PROG;1 wen V;PROSP;2 wen V;PROSP;3 wen V;PROG;2 wen V;PFV;2 wen V;PFV;3 wen V;PROG;3 wen V;PROSP;1 kitzi V;PROG;3 kitzi V;PROSP;2 kitzi V;HAB;2 kitzi V;HAB;1 kitzi V;PROG;2 kitzi V;PROSP;3 kitzi V;PFV;2 kitzi V;PFV;1 kitzi V;PFV;3 kitzi V;PROSP;1 kitzi V;HAB;3 kitzi V;PROG;1 stun V;HAB;2 stun V;PROSP;1 stun V;PFV;2 stun V;PFV;3 stun V;PROSP;2 stun V;HAB;1 stun V;PROG;2 stun V;HAB;3 stun V;PROG;1 stun V;PROG;3 stun V;PROSP;3 stun V;PFV;1 xʔan V;PROG;2 xʔan V;PROG;1 xʔan V;PFV;2 xʔan V;HAB;3 xʔan V;PROSP;3 xʔan V;HAB;2 xʔan V;PFV;1 xʔan V;HAB;1 xʔan V;PFV;3 xʔan V;PROSP;1 xʔan V;PROG;3 xʔan V;PROSP;2 tkun V;PROSP;3 tkun V;PFV;2 tkun V;PROSP;2 tkun V;PFV;1 tkun V;HAB;2 tkun V;PROG;1 tkun V;PFV;3 tkun V;PROSP;1 tkun V;PROG;2 tkun V;HAB;3 tkun V;HAB;1 tkun V;PROG;3 ʔa V;PROSP;3 ʔa V;PFV;2 ʔa V;HAB;1 ʔa V;PFV;3 ʔa V;PROG;1 ʔa V;PROG;3 ʔa V;HAB;2 ʔa V;PROSP;2 ʔa V;PFV;1 ʔa V;HAB;3 ʔa V;PROG;3 ʔa V;PFV;3 ʔa V;PROSP;1 ʔa V;PROG;2 keʔ V;HAB;3 keʔ V;PROG;3 keʔ V;PFV;2 keʔ V;PFV;3 keʔ V;HAB;2 keʔ V;PROG;2 keʔ V;PROSP;2 keʔ V;PROG;1 keʔ V;HAB;1 keʔ V;PFV;1 keʔ V;PROSP;3 keʔ V;PROSP;1 xtya V;HAB;3 xtya V;HAB;2 xtya V;PFV;2 xtya V;PROSP;2 xtya V;PFV;3 xtya V;PFV;1 xtya V;PROG;2 xtya V;PROG;1 xtya V;PROG;3 xtya V;PROSP;3 xtya V;PROSP;1 xtya V;HAB;1 ʔya V;PROG;1 ʔya V;HAB;3 ʔya V;PFV;1 ʔya V;PFV;3 ʔya V;PROSP;1 ʔya V;PROSP;3 ʔya V;PROSP;2 ʔya V;HAB;2 ʔya V;PROG;3 ʔya V;PFV;2 ʔya V;PROG;2 ʔya V;HAB;1 ʔya V;HAB;1 ʔya V;HAB;3 ʔya V;PFV;1
3b695e2025c66b4b89766d5744b6dcfdee87310a
449d555969bfd7befe906877abab098c6e63a0e8
/3685/CH18/EX18.9/Ex18_9.sce
2bb42384daf0a33d29fa31f52ef67ccf6b2173ab
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
649
sce
Ex18_9.sce
clc u_m = 0.8 // mean velocity in m/s D = 5 // Diameter in cm v = 4.78e-7 // dynamic coefficient of viscosity Pr = 2.98 // Prantl number K = 0.66 // Thermal conductivity in W/mK l = 3 // length of pipe in m tw = 70 // Wall temperature tf = 50 // mean water temperature printf("\n Example 18.9\n") Re = u_m*D*1e-2/v // Reynold number Nu = 0.023*(Re^0.8)*(Pr^0.4) h = K*Nu/(D*1e-2) // Heat transfer coefficient A = %pi*D*1e-2*l // Surface area Q = h*A*(tw-tf) // Rate of heat transfer printf("\n Heat transfer coefficient is %d W/m^2K",h) printf("\n Rate of heat transfer is %f kW",Q/1e3) //The answers vary due to round off error
3adcedb3b7033e5406a626714032dfed51e4038a
717ddeb7e700373742c617a95e25a2376565112c
/3044/CH5/EX5.20/Ex5_20.sce
db63c8b83da3033ab6c354d65208264adf90b3dc
[]
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
301
sce
Ex5_20.sce
// Calculation function ans = f1(x1,x2) ans = 6*exp(-2*x1-3*x2) endfunction // (A) x1 limit- (0,1) x2 limit- (0,1) p1 = feval([0,1],[0,1],f1) p = p1(2) // Result printf ( "P(x1<1 and x2<1): %.3f",p) // Note : Answer may vary because scilab use feval function and it calculates differently.
b8c2b4a59d23ff860a194d216e83ad85bc4bf5c4
449d555969bfd7befe906877abab098c6e63a0e8
/1883/CH5/EX5.15.5/Example5_24.sce
17daed58cd5074af4fa54d466d801d2b742a2814
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,502
sce
Example5_24.sce
//Chapter-5,Example5_15_5,pg 5-44 //for an electron e=1.6*10^-19 //electron charge m_e=9.1*10^-31 //mass of an electron L=10^-9 //width of well h=6.63*10^-34 //Plank's constant //the energy level are given by En = n^2 *h^2/(8*m*L^2) Ee1=(1^2)*(h^2)/(8*m_e*e*(L^2)) //for n = 1 Ee2=(2^2)*(h^2)/(8*m_e*e*(L^2)) //for n = 2 Ee3=(3^2)*(h^2)/(8*m_e*e*(L^2)) //for n = 3 printf('\n FOR AN ELECTRON') printf('\n the lowest three energy states are obtained ') printf('\n for n = 1 Ee1 = %.4f eV',Ee1) printf('\n for n = 2 Ee2 = %.4f eV',Ee2) printf('\n for n = 3 Ee3 = %.4f eV',Ee3) //for the grain of dust m=10^-9 //mass of grain of dust l=10^-4 //width of well E1=(1^2)*(h^2)/(8*m*e*(l^2)) //for n = 1 E2=(2^2)*(h^2)/(8*m*e*(l^2)) //for n = 2 E3=(3^2)*(h^2)/(8*m*e*(l^2)) //for n = 3 printf('\n\n FOR THE GRAIN OF DUST ') printf('\n the lowest three energy states are obtained ') printf('\n for n = 1 E1 = ') disp(E1) printf(' eV') printf('\n for n = 2 E2 = ') disp(E2) printf(' eV') printf('\n for n = 3 E3 = ') disp(E3) printf(' eV')
fbc78859746e3f609b17c4c7c4a366f2c377eb74
449d555969bfd7befe906877abab098c6e63a0e8
/26/CH6/EX6.1.1/6_1_1.sce
b2fee30f0339b53128982490e4e26bbb5e0edf9f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
135
sce
6_1_1.sce
disp('Vectors u an v are:') u=[-1;2] v=[4;6] disp(v,u) disp('Projection of v on u=(u.v)/(v.v)') a=u'*v b=u'*u p=a/b disp(p,'=')
fe6211260ab0c7f93fdd49ee74cb74a51b7d9cd7
449d555969bfd7befe906877abab098c6e63a0e8
/55/CH11/EX11.2/11ex2.sci
532bb89671fdd34142dda904ee5646f54a2191bf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
383
sci
11ex2.sci
disp('Division Algorithm') a=4461; //dividend b=16; //divisor r=modulo(a,b) //remainder k=fix(a/b) //quotient j=b*k+r //dividend=divisor*quotient+remainder a=-262; //dividend b=3; //divisor k=fix(a/b) //remainder r=modulo(a,b) //quotient j=b*k+r //dividend=divisor*quotient+remainder disp('a and j have equal values.Hence division algorithm is proved')
aae379430ff1caccee71bb456baf99091e514e50
449d555969bfd7befe906877abab098c6e63a0e8
/2159/CH2/EX2.11/211.sce
7dcc0f4843eb6f546687a7eca68efb3aa54a5585
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
238
sce
211.sce
// problem 2.11 d=4 h=4 s=0.6 s1=1 h1=s*h/s1 v=3.142*d*d*0.25*h1 x=h1/2 cog=h/2 h2=cog-x a=3.142*d*d*d*d/64 bm=a/v mh=bm-h2 disp(mh,"metacentric height in m,negative sign indicte that cylinder is in unstable equilibrium")
506346a4f637f374ed660508d2250a19ec536f9b
66106821c3fd692db68c20ab2934f0ce400c0890
/test/jintgen/arity_02.tst
72ec02c403b97a6b5ba5f8c3ddc15f1d47796c0b
[]
no_license
aurelf/avrora
491023f63005b5b61e0a0d088b2f07e152f3a154
c270f2598c4a340981ac4a53e7bd6813e6384546
refs/heads/master
2021-01-19T05:39:01.927906
2008-01-27T22:03:56
2008-01-27T22:03:56
4,779,104
2
0
null
null
null
null
UTF-8
Scilab
false
false
228
tst
arity_02.tst
// @Harness: verifier // @Purpose: "Test for arity mismatch in subroutine calls" // @Result: "ArityMismatch @ 8:8" architecture arity_02 { external subroutine a(x: int): void; subroutine b(): void { a(); } }
37b42673c9cb8e84f0e80a7cdb1a66aecd9e83cb
449d555969bfd7befe906877abab098c6e63a0e8
/2168/CH6/EX6.2/Chapter6_example2.sce
32dee3ca1ec111c2fd21c28c68ee7a8853f1fe3f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
757
sce
Chapter6_example2.sce
clc clear //Input data //Data from combustion chart p=[1,33,33,1]//Pressure of air fuel mixture in kg/cm^2 T=[65,600,1450,725]//Temperature of air fuel mixture in K V=[16,1.23,3.45,16]//Volume in m^3/kg U=[11.8,110,295,140]//Internal energy in kcal/kg H=[22.7,150,395,225]//Enthalpy in kcal/kg S=[0.068,0.068,0.264,0.264]//Entropy in kcal/kg.degree C //Calculations r=(V(1)/V(2))//Compression ratio q=(H(3)-H(2))//Heat supplied in kcal/kg qre=(U(4)-U(1))//Heat rejected in kcal/kg nt=((q-qre)/q)*100//Thermal efficiency in percent //Output printf('(a)Compression ratio is %3.0f \n (b) Heat supplied to the cycle is %3.0f kcal/kg \n (c) Heat rejected by the cycle is %3.2f kcal/kg \n (d) Thermal efficiency is %3.2f percent',r,q,qre,nt)
20a1b457b7ed91053b7aeb23b45183c034ed128e
e806e966b06a53388fb300d89534354b222c2cad
/macros/boundingRect.sci
9c8e8826f75e80c6249e50d2252880ea941f46d9
[]
no_license
gursimarsingh/FOSSEE_Image_Processing_Toolbox
76c9d524193ade302c48efe11936fe640f4de200
a6df67e8bcd5159cde27556f4f6a315f8dc2215f
refs/heads/master
2021-01-22T02:08:45.870957
2017-01-15T21:26:17
2017-01-15T21:26:17
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
93
sci
boundingRect.sci
function [rectMat]=boundingRect(points) rectMat=opencv_boundingRect(points); endfunction
6677a6d8efe104a195b0f74d3455aaca0db46cf8
449d555969bfd7befe906877abab098c6e63a0e8
/199/CH9/EX9.11/Example_9_11.sce
e5558c94136b882847f078c1fe0a2dbeb831dd55
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
862
sce
Example_9_11.sce
// Chapter9 // Page.No-444 // Example_9_11 // Design of voltage regulator // Given clear;clc; Vo_min=5; // Min output voltage in volt Vo_max=12; // Max output voltage in volt Vref=1.25; // Reference voltage in volt Iadj=100*10^-6; // Adjustment pin current in ampere R1=240; // Assumption R2_min=R1*(Vo_min-Vref)/(Vref+Iadj*R1); // Using Vo_min=Vref*(1+R2/R1)+Iadj*R2 printf("\n Resistance R2_min is = %.1f ohm \n",R2_min) // Result R2_max=R1*(Vo_max-Vref)/(Vref+Iadj*R1); // Using Vo_max=Vref*(1+R2/R1)+Iadj*R2 printf("\n Resistance R2_max is = %.1f ohm \n",R2_max) // Result printf("\n Therefore resistance should be varied from R2_min to R2_max values.To do this we take R2 as 3kohm potentiometer \n") C2=1*10^-6; // Added to the circuit to improve transient response C3=1*10^-6; // Added to the circuit to obtain high ripple rejection ratios
c68483d3ebb3e369227c2a5d8a2f0b45867f61be
449d555969bfd7befe906877abab098c6e63a0e8
/278/CH28/EX28.6/ex_28_6.sce
be50f72f9ef0cccb162c33145f1857d787be3190
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
ex_28_6.sce
//find clc //solution //given L=500//mm Nm=900//rpm Nc=200//rpm T=5000//N-m Tmax=1.25*T vr=Nm/Nc //Dp+Dg=(L*2)...eq1 //Dg=vr*Dp....eq2 //usieng eq1 and eq2 Dp=182//mm Dg=4.5*Dp/1000//m v=%pi*Dg*Nc/60//m/s Cv=3/(3+v) fog=140 //yg=.175-(0.841/Tg)=0.175-0.841*m/Dg...Tg=Dg/m //yg=0.175-0.001m Wt=2*Tmax/Dg//N //Wt=fog*Cv*b*%pi*m*yg=200*m^2-1.144m^3.... //using hit anf trial m=8.95,say 10 m=10//mm b=10*m printf("module is,%f mm\n",m) printf("face width is,%f mm\n",b) Tp=Dp/m Tg=Dg/m Dp=m*Tp Dg=m*Tg printf("pitch dia of pinion and gear si,%f mm\n,%f mm\n",Dp,Dg*1000)
d2aa9c1bac9fe21bbf2e3d670db4ba211ef0a2da
449d555969bfd7befe906877abab098c6e63a0e8
/2417/CH10/EX10.15/Ex10_15.sce
4c9364a8dfb5d08825f8d3c9b2d01abf5713b54f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
sce
Ex10_15.sce
//scilab 5.4.1 clear; clc; printf("\t\t\tProblem Number 10.15\n\n\n"); // Chapter 10 : Refrigeration // Problem 10.15 (page no. 539) // Solution //THE HEAT PUMP T1=70+460; //70F=70+460 R //Energy flows into the system at reservoir at constant temperature T1(unit:R) //from problem 10.1 T2=32+460; //32F=32+460 R //Heat is rejected to the constant temperature T2(Unit:R) //from problem 10.1 COP=T1/(T1-T2); //Coefficient of performance for carnot heat pump printf("Coefficient of performance(COP) of the carnot cycle is %f\n",COP); printf("The COP can also be obtained from the energy items solved for in problem 10.1\n") //In problem 10.1, The power was found to be 77.2 Btu/min and the total tare of heat rejection was 1077.2 Btu/min //Therefore, printf("Coefficient of performance(COP) of the cycle is %f\n",1077.2/77.2);
43bc99156caca655de96e1d2e49bb882226443e5
449d555969bfd7befe906877abab098c6e63a0e8
/3428/CH23/EX14.23.6/Ex14_23_6.sce
6aa62b497bbc79bab1c8f10f5d96b27b77cad098
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
165
sce
Ex14_23_6.sce
//Section-14,Example-4,Page no.-PC.77 //To calculate pressure of CO. clc; K_p=4*10^-2 Kbar_p=2 p_CO=sqrt(K_p*Kbar_p) disp(p_CO,'Required pressure of CO')
2e0a41495e455ad7cfb7b870f829e3b1c9d60e3d
449d555969bfd7befe906877abab098c6e63a0e8
/1892/CH3/EX3.4.s/Example3_4_at_page198.sce
00ca0c6c2fca09cb26a869be82a28ff2cdb912ee
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
412
sce
Example3_4_at_page198.sce
// Sp_Example 3.4 clear; clc; close; format('v',6); // Given data Nr=4;//poles La=10.7;//in mH Lu=1.5;//in mH i=7;//in A q=3;//phase //Calculations lambda_a=La*10^-3*i;//in Wb/T lambda_u=lambda_a;//in Wb/T i2=lambda_u/Lu/10^-3;//in Ampere Wm=(i2-i)*lambda_u/2;//in Jooules disp(Wm,"Energy conversion per stroke in Joules : "); T=Wm*q*Nr/2/%pi;//in N-m disp(T,"Average Tourque in N-m : ");
fca97c2814282327f2804d8e917af8f2484cffd4
891e9f4e3fce67f553f07f24cef2e802423770b9
/fseminf/fseminf.sci
67885c2107cee9244711327becec6772a2a1177d
[]
no_license
animeshbaranawal/FOSSEE
ae6b6c1a39803ad0fb26780b7f960a62431c71d2
75b1b18dcfd935f7ebbe89b44573c8076dae4267
refs/heads/master
2022-06-24T14:20:49.508846
2022-05-30T17:13:09
2022-05-30T17:13:09
50,281,099
1
0
null
null
null
null
UTF-8
Scilab
false
false
4,300
sci
fseminf.sci
function [x,fval] = fseminf(fun,x0,ntheta,seminfcon,w,s,A,b,Aeq,beq,lb,ub) fsinfObjfun = fun fsinfStartpoint = x0 intervals = w samplespace = s fsinfA = A fsinfb = b fsinfAeq = Aeq fsinfBeq = beq fsinflb = lb fsinfub = ub [v,t1,t2] = seminfcon(fsinfStartpoint,[0 0]) //disp(v) //disp(size(v,'c')) //disp(size(v,'r')) assert_checktrue(size(v,'r') == ntheta) assert_checktrue(size(w,'r') == ntheta) assert_checktrue(size(w,'c') == 4) assert_checktrue(size(s,'r') == ntheta) assert_checktrue(size(s,'c') == 2) function Ki = semiK(z,t,i) [v,t1,t2] = seminfcon(z,t) Ki = v(i) endfunction function Kimax = findMaxi(z,i) t = [intervals(i,1):samplespace(i,1):intervals(i,3)]'; for j = 1:size(t,'r') y(j) = semiK(z,t(j),i); end dy = splin(t,y); tt = [intervals(i,1):samplespace(i,1)/100:intervals(i,3)]'; yy = interp(tt,t,y,dy); Kimax = max(yy); endfunction function f = allMax(z) f = []; for i = 1:ntheta //disp(findMaxi(z,i)); f = [f; findMaxi(z,i)]; end f = max(f); endfunction funcprot(0) isMaxPos = 0 isMaxNeg = 0 MaxIter = 100 xStart = fsinfStartpoint interpmax = allMax(xStart) disp(xStart) disp(interpmax) function [c,ceq] = fsinfNonlinfun(z) [t1,c,ceq] = seminfcon(z,[0 0]); tmpVal = allMax(z) if interpmax > 0 then c = [c, interpmax]; end endfunction xNext = fmincon(fsinfObjfun,xStart,fsinfA,fsinfb,fsinfAeq,fsinfBeq,fsinflb,fsinfub,fsinfNonlinfun,list("MaxIter",1)) if(allMax(xNext) > 0) then isMaxPos = 1 else isMaxNeg = 1 end exitFlag = 0 if isMaxNeg == 1 then while(exitFlag == 0 & MaxIter > 0) disp([1 2 3 4]) xStart = xNext interpmax = allMax(xStart) disp(xStart) disp(interpmax) function [c,ceq] = fsinfNonlinfun(z) [t1,c,ceq] = seminfcon(z,[0 0]); tmpVal = allMax(z); if interpmax > 0 then c = [c, interpmax]; end endfunction xNext = fmincon(fsinfObjfun,xStart,fsinfA,fsinfb,fsinfAeq,fsinfBeq,fsinflb,fsinfub,fsinfNonlinfun,list("MaxIter",1)) MaxIter = MaxIter - 1 if allMax(xNext) > 0 then disp([1 2 3 4 5 6 7 8 9]) exitFlag = 1 end end else while(exitFlag == 0 & MaxIter > 0) disp([1 2 3 5]) xStart = xNext interpmax = allMax(xStart) disp(xStart) disp(interpmax) function [c,ceq] = fsinfNonlinfun(z) [t1,c,ceq] = seminfcon(z,[0 0]); tmpVal = allMax(z) if interpmax > 0 then c = [c, interpmax]; end endfunction xNext = fmincon(fsinfObjfun,xStart,fsinfA,fsinfb,fsinfAeq,fsinfBeq,fsinflb,fsinfub,fsinfNonlinfun,list("MaxIter",1)) MaxIter = MaxIter - 1 if allMax(xNext) <= 0 then disp([1 2 3 4 5 6 7 8 9]) exitFlag = 1 end end exitFlag = 0 MaxIter = 10000 while(exitFlag == 0 & MaxIter > 0) disp([1 2 3 6]) xStart = xNext interpmax = allMax(xStart) disp(xStart) disp(interpmax) function [c,ceq] = fsinfNonlinfun(z) [t1,c,ceq] = seminfcon(z,[0 0]); tmpVal = allMax(z) if interpmax > 0 then c = [c, interpmax]; end endfunction xNext = fmincon(fsinfObjfun,xStart,fsinfA,fsinfb,fsinfAeq,fsinfBeq,fsinflb,fsinfub,fsinfNonlinfun,list("MaxIter",1)) MaxIter = MaxIter - 1 if allMax(xNext) > 0 then exitFlag = 1 disp([1 2 3 4 5 6 7 8 9]) end end end fval = fsinfObjfun(xStart) x = xStart endfunction
d2ae502e2f079fb82720e9b99d053d561c93101b
449d555969bfd7befe906877abab098c6e63a0e8
/1760/CH3/EX3.24/EX3_24.sce
c431dd9e1caef9087026c359e9c6c84018312360
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
214
sce
EX3_24.sce
//EXAMPLE 3-24 PG NO-189 W1=-1200; W2=3400; P=W1+W2; disp('iv) Power (P) is = '+string (P) +' W '); X=[sqrt(3)*(W2-W1)]/P; disp('iv) (tan (Q)) is = '+string (X) +' ');
660f2f3196b291d067c7b34b32e2021230df733f
449d555969bfd7befe906877abab098c6e63a0e8
/2873/CH12/EX12.9/Ex12_9.sce
2d1eb9ae6ecd05ae55b4d43d79141aec3ab78712
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
601
sce
Ex12_9.sce
// Display mode mode(0); // Display warning for floating point exception ieee(1); clear; clc; disp("Engineering Thermodynamics by Onkar Singh Chapter 12 Example 9") T1=(1200+273);//temperature of body in K T2=(600+273);//temperature of black surrounding in K epsilon=0.4;//emissivity of body at 1200 degree celcius sigma=5.67*10^-8;//stephen boltzman constant in W/m^2 K^4 disp("rate of heat loss by radiation(Q)=wpsilon*sigma*A*(T1^4-T2^4)") disp("heat loss per unit area by radiation(Q)in W") disp("Q=epsilon*sigma*(T1^4-T2^4)") Q=epsilon*sigma*(T1^4-T2^4) disp("Q in KW") Q=Q/1000
6e989a307e411a7cb599da839031ab10509fa9b4
449d555969bfd7befe906877abab098c6e63a0e8
/3472/CH46/EX46.3/Example46_3.sce
9e8f5b0482e3b51203622ebe4769ad73eb023ec8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,568
sce
Example46_3.sce
// A Texbook on POWER SYSTEM ENGINEERING // A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar // DHANPAT RAI & Co. // SECOND EDITION // PART IV : UTILIZATION AND TRACTION // CHAPTER 8: BRAKING // EXAMPLE : 8.3 : // Page number 810 clear ; clc ; close ; // Clear the work space and console // Given data W = 400.0 // Weight of train(tonne) G = 100.0/70 // Gradient(%) t = 120.0 // Time(sec) V_1 = 80.0 // Speed(km/hr) V_2 = 50.0 // Speed(km/hr) r_kg = 5.0 // Tractive resistance(kg/tonne) I = 7.5 // Rotational inertia(%) n = 0.75 // Overall efficiency // Calculations W_e = W*(100+I)/100 // Accelerating weight of train(tonne) r = r_kg*9.81 // Tractive resistance(N-m/tonne) energy_recuperation = 0.01072*W_e*(V_1**2-V_2**2)/1000 // Energy available for recuperation(kWh) F_t = W*(r-98.1*G) // Tractive effort during retardation(N) distance = (V_1+V_2)*1000*t/(2*3600) // Distance travelled by train during retardation period(m) energy_train = abs(F_t)*distance/(3600*1000) // Energy available during train movement(kWh) net_energy = n*(energy_recuperation+energy_train) // Net energy returned to supply system(kWh) // Results disp("PART IV - EXAMPLE : 8.3 : SOLUTION :-") printf("\nEnergy returned to lines = %.2f kWh\n", net_energy) printf("\nNOTE: ERROR: Calculation mistakes & more approximation in textbook solution")
35328196516c4c18a5a24d1b7e022d6f4a2a48fd
449d555969bfd7befe906877abab098c6e63a0e8
/3116/CH16/EX16.1/Ex16_1.sce
15f4eeedbc7ef16eec8d6cab123867cb0510b4e4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
604
sce
Ex16_1.sce
clc // Given that V_Cd=-0.403 //Half Cell Potential of Cd++|Cd in volt V_Ni=-0.250 //Half Cell Potential of Ni++|Ni volt C_Ni=10^-3 C_Cd=0.5 n=2 //Net electron exchange in Redox reaction printf(" Example 16.1\n") printf("\n Part A:") dV=V_Ni-V_Cd // Potential difference in volts printf("\n Standard Cell potential is : %.3f V\n",dV) printf("\n Part B:") V=-dV-(0.0592*log10(C_Ni/C_Cd)/n) printf("\n Net EMF is : %.3f V\n",V) printf("\n That is,") if V<0 then printf("\t Cd is oxidised & Ni is reduced \n") else printf("\t Cd is reduced & Ni is oxidised\n") end
779a2f25f41ec1504c4979e5f6a6b7e93baa8963
449d555969bfd7befe906877abab098c6e63a0e8
/1544/CH3/EX3.10/Ch03Ex10.sce
6ec4e12d56d58e5e73c8cd1e2829ad90a8f3917a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,335
sce
Ch03Ex10.sce
// Scilab code Ex3.10: Pg 90-91 (2008) clc; clear; C_1 = 6e-06; //Capacitance, F C_2 = 4e-06; //Capacitance, F V = 150; // Supply voltage, V // Part (a) // The reciprocal of the resulting capacitance of capacitors connected in series is the sum of the reciprocal of the individual capacitances present in the circuit i.e 1/C = 1/C1 + 1/C2, solving for C C = ( C_1*C_2 )/(C_1 + C_2); // Resulting capacitance, F // Part (b) Q = V*C; // Electric charge on the capacitors, C // Part (c) V_1 = Q/C_1; // P.d across capacitor C_1, V V_2 = Q/C_2; // P.d across capacitor C_2, V printf("\nThe total capacitance of the combination = %3.1f micro-farad", C/1e-06); printf("\nThe charge on each capacitor = %3d micro-coulomb",Q/1e-06); printf("\nThe p.d. developed across %1d micro-farad capacitor = %2d V", C_1/1e-06, V_1); printf("\nThe p.d. developed across %1d micro-farad capacitor = %2d V", C_2/1e-06, V_2); // Result // The total capacitance of the combination = 2.4 micro-farad // The charge on each capacitor = 360 micro-coulomb // The p.d. developed across 6 micro-farad capacitor = 60 V // The p.d. developed across 4 micro-farad capacitor = 90 V
975cca49914d27715cd805242b8d7ac049fd8607
449d555969bfd7befe906877abab098c6e63a0e8
/52/CH2/EX2.13.a/Example2_13_a.sce
42728da958ed2c6136b5241cea257dd438e9cf06
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Example2_13_a.sce
//Example 2.13 (a) //MAXIMA SCILAB TOOLBOX REQUIRED FOR THIS PROGRAM //Z- transform of (-1/5)^n u(n)+5(1/2)^(-n)u(-n-1) clear; clc ; close ; syms n z; x1 =(-1/5)^n ; X1= symsum (x1 *(z^(-n)),n ,0, %inf ); x2 =(1/2)^(-n); X2= symsum (5* x2 *(z^(-n)),n ,0, %inf ); X = (X1 -X2); //Display the result in command window disp (X,"Z-transform of [3(3^n)-4(2)^n] u(n) is:"); disp('ROC is the Region 1/5 < mod(z) < 2');
1bc3337315cebe9978ff2a4dfd0ec9a7bbb06183
449d555969bfd7befe906877abab098c6e63a0e8
/2384/CH5/EX5.9/ex5_9.sce
91c5ebdc9914599e78f4eb5ca383fb97273ab20e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
523
sce
ex5_9.sce
// Exa 5.9 clc; clear; close; format('v',6) // Given data W1 = 300;// in kW W2 = 100;// in kW V_L= 2000;// in V Eta= 90/100; P = W1+W2;// in kW disp(P,"The power input in kW is"); // tan(phi) = sqrt(3)*((W1-W2)/(W1+W2)); phi = atand(sqrt(3)*((W1-W2)/(W1+W2))); pf = cosd(phi);// power factor disp(pf,"The power factor is"); // P = sqrt(3)*V_L*I_L*cosd(phi); I_L = (P*10^3)/(sqrt(3)*V_L*pf);// in A disp(I_L,"The line current in A is"); output = P*Eta;// in kW disp(output,"The power output in kW is");
e3c53329752e6cc0ab9d7c12bbdad26e63315bc6
5bc3a272ac3972765259062ed2c4abd8ac31eb84
/EE 324 controls lab/lab8/q2.sce
617b979dfae05f69c921c2cd651c754de5364df4
[]
no_license
ishan-2404/Duaon-mei-yaad-rakhna-XD
51a268cb15695d78a1bd086d958f402fe6ee093d
bf702ac84c18f7d677a35f9f850e3bfb63a32625
refs/heads/main
2023-07-13T17:10:57.650902
2021-08-14T07:06:22
2021-08-14T07:06:22
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
590
sce
q2.sce
s = poly(0,'s'); k1_range = [.001, .01, .1, 1]; t = 0:.1:75; steps = zeros(length(t), length(k1_range)); impulses = zeros(length(t), length(k1_range)); for i = 1:length(k1_range) k1 = k1_range(i) k2 = k1/5; G = (s+k1)/(s+k2); G = syslin('c',G); steps(:, i) = csim('step', t, G); impulses(:, i) = csim('impulse', t, G); end scf(0); plot2d(t, steps) title('step responses') legend(['k1 = .001', 'k1= .01', 'k1 = .1', 'k1 = 1']) scf(1); plot2d(t, impulses) title('Impulse responses') legend(['k1 = .001', 'k1= .01', 'k1 = .1', 'k1 = 1'])
2dfed5e065397ac341f72404199fc09896452ebc
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/ngram/5.10_17.tst
d5e65adbde3b3137c5503c2f37395e59fa3db44f
[]
no_license
mandar15/NLP_Project
3142cda82d49ba0ea30b580c46bdd0e0348fe3ec
1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2
refs/heads/master
2020-05-20T13:36:05.842840
2013-07-31T06:53:59
2013-07-31T06:53:59
6,534,406
0
1
null
null
null
null
UTF-8
Scilab
false
false
241,186
tst
5.10_17.tst
10 1337:1 1464:1 2944:1 3054:1 4077:1 4312:1 4370:1 5651:1 5899:1 6835:1 7597:1 7718:1 7928:1 9537:1 9587:1 9849:1 11446:1 11792:1 11811:1 14086:1 14680:1 16409:17 16884:1 17156:1 17636:1 18493:1 19584:1 19867:1 19924:1 23123:1 23665:1 23703:1 24502:1 25034:1 25281:1 10 807:1 1337:1 1464:1 1816:1 2786:1 2944:2 3054:1 3306:1 3397:1 4077:1 4309:1 4312:1 4370:1 4969:1 5110:1 5185:1 5651:1 5889:1 5899:1 6048:1 6835:1 7140:1 7597:1 7718:1 7841:1 7928:1 8633:1 8871:1 8961:1 9216:1 9313:1 9537:1 9587:1 9815:1 9849:1 9992:1 10089:1 10924:1 11230:1 11446:1 11792:1 11811:1 12030:1 12242:1 12540:1 12657:1 12741:1 13053:1 13236:1 13345:1 14086:1 14227:1 14680:2 14843:1 15054:1 15123:1 15182:1 15980:1 16077:1 16409:79 16424:1 16884:1 17042:1 17054:1 17058:1 17156:1 17636:1 18493:1 18767:1 19007:1 19407:1 19584:1 19743:1 19867:2 19924:1 21648:1 21901:1 22787:1 23123:1 23665:1 23703:1 24176:1 24502:1 24780:1 25034:2 25281:1 10 807:1 1176:1 1284:1 1337:1 1464:1 1816:1 2606:1 2786:1 2944:2 3054:1 3306:1 3397:1 3563:1 4066:1 4077:1 4309:1 4312:1 4370:1 4526:1 4969:1 5110:1 5185:1 5551:1 5651:1 5889:1 5899:1 6048:1 6835:1 7014:1 7140:1 7597:1 7718:1 7841:1 7928:1 8576:1 8633:1 8871:1 8961:1 9177:1 9216:1 9313:1 9443:1 9537:1 9587:1 9815:1 9849:1 9992:1 10089:1 10924:1 11230:1 11446:1 11792:1 11811:1 12030:1 12242:1 12281:1 12540:1 12657:1 12741:1 13053:1 13236:1 13345:1 14086:1 14227:1 14680:2 14843:1 14954:1 15054:1 15123:1 15182:1 15980:1 16077:1 16341:1 16409:120 16424:1 16884:1 17042:1 17054:1 17058:1 17156:1 17536:1 17602:1 17636:1 17693:1 18288:1 18336:1 18493:1 18767:1 18825:1 19007:1 19076:1 19407:1 19552:1 19584:1 19743:1 19867:2 19924:1 19968:1 20344:1 20705:1 21626:1 21648:1 21901:1 22549:1 22787:1 23123:1 23351:1 23665:1 23703:1 23745:1 24176:1 24416:1 24502:1 24504:1 24780:1 25034:2 25281:1 10 807:1 1176:1 1284:1 1337:1 1464:1 1816:1 2049:1 2359:1 2606:1 2786:1 2944:2 3054:1 3306:1 3397:1 3563:1 4066:1 4077:1 4140:1 4309:1 4312:1 4370:1 4526:1 4969:1 5110:1 5185:1 5551:1 5651:1 5889:1 5899:1 6048:1 6414:1 6835:1 6892:1 7014:1 7140:1 7597:1 7718:1 7841:1 7928:1 8455:1 8576:1 8633:1 8871:1 8961:1 9177:1 9216:1 9313:1 9443:1 9537:1 9587:1 9815:1 9849:1 9992:1 10089:1 10924:1 11230:1 11446:1 11792:1 11811:1 12030:1 12108:1 12242:1 12281:1 12377:1 12540:1 12657:1 12741:1 13053:1 13236:1 13345:1 14086:1 14227:1 14680:2 14843:1 14954:1 15054:1 15123:1 15182:1 15740:1 15980:1 16077:1 16341:1 16351:1 16409:131 16424:1 16884:1 17042:1 17054:1 17058:1 17156:1 17536:1 17602:1 17636:1 17693:1 18288:1 18336:1 18493:1 18767:1 18825:1 19007:1 19076:1 19407:1 19552:1 19584:1 19743:1 19867:2 19924:1 19968:1 20344:1 20705:1 21379:1 21626:1 21648:1 21901:1 22549:1 22787:1 23123:1 23351:1 23665:1 23703:1 23745:1 24176:1 24416:1 24502:1 24504:1 24780:1 25034:2 25281:1 10 429:1 807:1 1176:1 1284:1 1337:1 1432:1 1464:1 1816:1 2049:1 2359:1 2606:1 2786:1 2944:2 3054:1 3176:1 3306:1 3397:1 3428:1 3563:1 3750:1 4066:1 4077:1 4106:1 4140:1 4309:1 4312:1 4370:1 4526:1 4969:1 5110:1 5185:1 5551:1 5651:1 5889:1 5899:1 6048:1 6414:1 6835:1 6892:1 7014:1 7140:1 7597:1 7718:1 7841:1 7928:1 8455:1 8576:1 8633:1 8871:1 8961:1 9177:1 9216:1 9313:1 9443:1 9537:1 9587:1 9815:1 9849:1 9992:1 10089:1 10924:1 11230:1 11446:2 11792:1 11811:1 12030:1 12108:1 12242:1 12281:1 12377:1 12540:1 12657:1 12741:1 13053:1 13236:1 13345:1 14086:1 14227:1 14283:1 14680:2 14843:1 14954:1 15054:2 15123:1 15182:1 15740:1 15884:1 15980:1 16077:1 16341:1 16351:1 16409:134 16424:1 16884:1 17042:1 17054:1 17058:1 17156:1 17536:1 17602:1 17614:1 17636:1 17693:1 18288:1 18312:1 18336:1 18493:1 18767:1 18825:1 19007:1 19076:1 19159:1 19407:1 19552:1 19584:1 19743:1 19852:1 19867:2 19924:1 19968:1 20344:1 20705:1 21379:1 21626:1 21648:1 21901:1 22193:1 22549:1 22787:1 23123:1 23351:1 23665:1 23703:1 23745:1 24176:1 24416:1 24502:1 24504:1 24557:1 24780:1 25034:2 25281:1 10 429:1 539:1 807:1 1176:1 1284:1 1337:1 1432:2 1464:1 1704:1 1816:1 2049:1 2359:1 2606:2 2786:1 2944:2 3054:1 3176:1 3306:1 3397:1 3428:1 3563:1 3750:1 4066:1 4077:1 4106:2 4140:1 4309:1 4312:1 4370:1 4526:1 4969:1 5110:1 5185:1 5551:1 5651:1 5889:1 5899:1 6048:1 6414:1 6835:1 6892:1 7014:1 7140:1 7597:1 7718:1 7841:1 7928:1 8455:1 8576:1 8633:1 8832:1 8871:1 8881:1 8961:1 9177:1 9216:1 9313:1 9443:1 9537:1 9587:1 9815:1 9849:1 9992:1 10089:1 10924:1 11230:1 11446:3 11792:1 11811:1 11817:1 12030:1 12108:1 12242:1 12281:1 12377:1 12540:1 12657:1 12741:1 13053:1 13236:1 13345:1 14086:1 14227:1 14283:1 14680:2 14843:1 14954:1 15054:2 15123:1 15182:1 15740:1 15839:1 15884:1 15980:1 16077:1 16341:1 16351:1 16409:180 16424:1 16884:1 17042:1 17054:1 17058:1 17080:1 17156:1 17381:1 17536:1 17602:1 17614:1 17636:1 17693:1 18288:1 18312:1 18336:1 18399:1 18493:1 18767:1 18825:1 18844:1 19007:1 19076:1 19159:1 19407:1 19552:1 19584:1 19743:1 19852:1 19867:2 19924:1 19968:1 20344:1 20705:1 21379:1 21626:1 21648:1 21901:1 22034:1 22193:2 22549:1 22787:1 23123:1 23351:1 23665:1 23703:1 23745:1 24176:1 24416:1 24502:1 24504:1 24557:1 24780:1 25013:1 25034:2 25077:1 25281:1 10 429:1 539:1 807:1 831:1 1176:1 1284:1 1337:1 1342:1 1432:2 1464:1 1554:1 1704:1 1816:1 2049:1 2359:1 2606:3 2786:1 2944:2 3054:1 3133:1 3176:1 3177:1 3306:1 3397:1 3428:1 3470:1 3563:1 3750:1 4066:2 4077:1 4106:3 4140:1 4185:1 4304:1 4309:1 4312:1 4370:1 4526:1 4969:1 5110:1 5115:1 5185:1 5551:1 5651:1 5677:2 5889:1 5899:1 5994:1 6048:1 6414:1 6431:1 6463:1 6596:1 6835:1 6846:1 6892:1 6909:1 7014:1 7140:1 7597:1 7718:1 7841:1 7928:1 7940:1 8184:1 8455:1 8576:1 8633:1 8832:1 8853:1 8871:1 8881:1 8961:1 9015:1 9177:1 9216:1 9219:1 9313:1 9443:1 9510:1 9537:1 9587:1 9815:1 9849:1 9992:1 10089:1 10162:1 10541:1 10924:1 11195:1 11230:1 11446:3 11450:1 11475:1 11708:1 11792:1 11811:1 11817:1 12030:1 12108:1 12242:1 12281:1 12377:1 12528:1 12540:1 12657:1 12741:1 13053:1 13236:1 13345:1 13540:1 13777:1 14086:1 14227:1 14283:1 14680:2 14843:1 14954:1 15054:2 15123:1 15182:1 15227:1 15740:1 15839:1 15884:1 15980:1 16077:1 16341:1 16351:1 16409:203 16424:1 16698:1 16884:1 17042:1 17054:1 17058:1 17080:1 17156:1 17381:1 17536:1 17602:1 17614:1 17636:1 17688:1 17693:1 18288:1 18312:1 18336:1 18399:1 18469:1 18493:1 18767:1 18825:1 18844:1 18906:1 18914:1 19007:1 19076:2 19159:1 19332:1 19342:1 19407:1 19552:1 19584:1 19611:1 19743:1 19852:1 19867:2 19924:1 19948:1 19968:1 20344:1 20705:2 21250:1 21379:1 21626:1 21648:1 21901:1 22034:1 22193:2 22293:1 22300:1 22549:1 22787:1 23123:1 23351:1 23418:1 23494:1 23665:1 23703:1 23745:2 24176:1 24323:1 24416:2 24460:1 24502:1 24504:2 24557:1 24780:1 24786:1 25013:1 25034:2 25077:1 25281:1 10 429:1 539:1 807:1 831:1 1176:1 1284:1 1337:1 1342:1 1425:1 1432:2 1464:1 1554:1 1704:1 1816:2 2049:1 2359:1 2606:3 2786:1 2944:3 3054:1 3133:1 3176:1 3177:1 3306:1 3397:1 3428:1 3470:1 3535:1 3563:1 3750:1 4066:2 4077:1 4106:3 4140:1 4185:1 4304:1 4309:1 4312:1 4370:1 4526:1 4969:1 5110:1 5115:1 5185:1 5407:1 5551:1 5651:1 5677:2 5889:1 5899:1 5994:1 6048:1 6414:1 6431:1 6463:1 6596:1 6835:1 6846:1 6892:1 6909:1 7014:1 7140:2 7597:1 7718:1 7841:2 7928:1 7940:1 8184:1 8201:1 8455:1 8576:1 8633:1 8832:1 8853:1 8871:1 8881:1 8961:1 9015:1 9177:1 9216:1 9219:1 9313:1 9443:1 9510:1 9537:1 9587:1 9815:1 9849:1 9992:1 10089:1 10162:1 10541:1 10924:1 11063:1 11195:1 11230:1 11446:3 11450:1 11475:1 11708:1 11792:1 11811:1 11817:1 12030:1 12108:1 12242:1 12281:1 12377:1 12528:1 12540:1 12657:1 12741:1 13053:2 13236:2 13287:1 13345:1 13540:1 13777:1 13854:1 14086:1 14227:1 14283:1 14680:3 14843:1 14954:1 15054:2 15123:1 15182:1 15227:1 15740:1 15839:1 15884:1 15921:1 15980:1 16077:1 16341:1 16351:1 16409:229 16424:1 16698:1 16884:1 17042:1 17054:1 17058:1 17080:1 17156:1 17381:1 17536:1 17602:1 17614:1 17636:1 17688:1 17693:1 18288:1 18312:1 18336:1 18399:1 18469:1 18493:1 18758:1 18767:1 18825:1 18844:1 18906:1 18914:1 19007:2 19076:2 19159:1 19332:1 19342:1 19407:1 19552:1 19584:1 19611:1 19743:1 19852:1 19867:3 19924:1 19948:1 19968:1 20344:1 20553:1 20705:2 21250:1 21379:1 21626:1 21648:1 21901:1 22034:1 22193:2 22293:1 22300:1 22549:1 22787:1 23045:1 23123:1 23351:1 23418:1 23494:1 23665:1 23703:1 23745:2 24176:1 24323:1 24416:2 24460:1 24502:1 24504:2 24557:1 24780:1 24786:1 25013:1 25034:3 25077:1 25281:1 10 172:1 249:1 429:1 539:1 690:1 807:1 831:1 846:1 1176:1 1284:1 1337:1 1342:1 1425:1 1432:2 1464:1 1554:1 1704:1 1816:2 2049:1 2359:1 2606:3 2786:1 2817:1 2944:3 2948:1 3054:1 3133:1 3176:1 3177:1 3306:1 3397:1 3428:1 3470:1 3535:1 3563:1 3750:1 3993:1 4020:1 4066:2 4077:1 4106:3 4140:1 4185:1 4227:1 4304:1 4309:1 4312:1 4370:1 4526:1 4623:1 4965:1 4969:1 5110:1 5115:1 5185:1 5407:1 5551:1 5651:1 5677:2 5889:1 5899:1 5994:1 6048:1 6414:1 6431:1 6457:1 6463:1 6596:1 6835:1 6846:1 6892:1 6909:1 7014:1 7066:1 7140:2 7597:1 7718:1 7841:2 7928:1 7940:1 8184:1 8201:1 8455:1 8576:1 8633:1 8715:1 8832:1 8853:1 8871:1 8881:1 8961:1 9015:1 9177:1 9216:1 9219:1 9313:1 9439:1 9443:1 9510:1 9537:1 9587:1 9727:1 9815:1 9849:1 9992:1 10089:1 10162:1 10541:1 10924:1 11063:1 11195:1 11230:1 11322:1 11403:1 11446:3 11450:1 11475:1 11682:1 11708:1 11792:1 11811:1 11817:1 12030:1 12108:1 12242:1 12281:1 12377:1 12528:1 12540:1 12657:1 12741:1 12838:1 12874:1 13053:2 13236:2 13287:1 13345:1 13540:1 13555:1 13777:1 13854:1 14073:1 14086:1 14114:1 14227:1 14283:1 14398:1 14680:3 14843:1 14954:1 15054:2 15123:1 15164:1 15182:1 15227:1 15740:1 15839:1 15884:1 15921:1 15980:1 16077:1 16341:1 16351:1 16409:244 16424:1 16698:1 16884:1 17006:1 17042:1 17054:1 17058:1 17080:1 17156:1 17381:1 17536:1 17602:1 17614:1 17636:1 17688:1 17693:1 18288:1 18312:1 18336:1 18399:1 18416:1 18469:1 18475:1 18493:1 18671:1 18758:1 18767:1 18825:1 18844:1 18906:1 18914:1 19007:2 19076:2 19159:1 19332:1 19342:1 19407:1 19552:1 19577:1 19584:1 19611:1 19743:1 19852:1 19867:3 19924:1 19948:1 19968:1 20344:1 20361:1 20553:1 20580:1 20705:2 21104:1 21154:1 21250:1 21379:1 21626:1 21648:1 21901:1 22034:1 22193:2 22293:1 22300:1 22549:1 22787:1 23045:1 23123:1 23351:1 23418:1 23468:1 23494:1 23596:1 23665:1 23703:1 23745:2 23910:1 24176:1 24323:1 24352:1 24416:2 24460:1 24464:1 24502:1 24504:2 24557:1 24780:1 24786:1 25013:1 25034:3 25077:1 25281:1 10 6:1 172:1 249:1 429:1 539:1 690:1 701:1 792:1 807:1 815:1 831:1 844:1 846:1 847:1 877:1 1176:1 1205:1 1284:1 1337:1 1342:1 1425:1 1428:1 1432:2 1464:1 1554:1 1621:1 1704:1 1816:2 1993:1 2049:1 2059:2 2183:1 2258:1 2292:1 2359:1 2441:2 2606:3 2614:1 2619:1 2786:1 2812:1 2817:1 2944:3 2948:1 3054:1 3133:1 3176:1 3177:1 3254:1 3306:1 3364:1 3397:1 3428:1 3470:1 3535:1 3563:1 3750:1 3766:1 3830:1 3954:1 3993:1 4020:1 4051:1 4066:2 4077:1 4106:3 4116:1 4140:1 4185:1 4227:1 4281:1 4304:1 4309:1 4312:1 4370:1 4388:2 4510:1 4526:1 4623:1 4903:1 4965:1 4969:1 5007:1 5110:1 5115:2 5185:1 5322:1 5407:1 5551:1 5640:1 5651:1 5677:2 5840:1 5889:1 5899:1 5994:2 6048:2 6364:1 6414:1 6431:1 6457:1 6463:1 6596:2 6835:2 6846:1 6857:1 6881:1 6892:4 6909:1 7014:1 7066:1 7075:1 7133:1 7140:2 7597:1 7710:1 7718:1 7841:2 7928:1 7940:1 8184:1 8201:1 8455:1 8576:1 8633:1 8715:1 8832:1 8853:1 8871:1 8881:1 8901:1 8961:1 9015:1 9177:1 9216:1 9219:1 9313:1 9381:1 9437:1 9439:1 9443:1 9510:2 9537:1 9587:1 9641:1 9727:1 9811:1 9815:1 9849:1 9992:1 10089:1 10162:1 10387:1 10412:1 10419:1 10460:1 10541:1 10924:1 11036:1 11063:1 11195:1 11230:1 11322:1 11355:1 11403:1 11446:3 11450:1 11475:1 11567:1 11682:1 11708:1 11792:1 11811:1 11817:1 12030:1 12108:1 12111:1 12172:1 12227:1 12242:1 12281:1 12295:1 12377:1 12483:1 12528:1 12540:1 12657:1 12741:1 12838:1 12874:1 12991:1 13009:1 13053:2 13061:1 13136:1 13188:1 13236:2 13237:1 13287:1 13345:1 13540:1 13555:1 13641:1 13750:1 13777:1 13854:1 13935:1 13999:1 14073:1 14086:1 14089:2 14114:1 14227:1 14283:1 14398:1 14680:3 14740:1 14843:2 14954:1 15054:2 15123:1 15164:1 15182:1 15227:2 15611:1 15740:1 15839:1 15884:1 15921:1 15950:1 15980:1 16077:1 16159:2 16341:1 16351:1 16409:288 16424:1 16592:1 16599:1 16698:2 16884:1 17006:1 17042:1 17054:1 17058:1 17080:1 17115:1 17156:1 17317:1 17381:1 17449:1 17536:2 17602:1 17614:1 17636:1 17688:1 17693:1 18090:1 18288:1 18312:1 18336:1 18399:1 18416:1 18455:1 18469:2 18475:1 18493:1 18671:1 18758:1 18767:1 18825:1 18844:1 18850:1 18906:1 18914:2 18922:1 18964:1 19007:2 19076:2 19159:1 19332:1 19342:1 19344:2 19407:1 19501:1 19552:1 19577:1 19584:1 19611:2 19743:1 19852:1 19867:3 19924:1 19925:1 19940:1 19948:1 19968:1 20034:1 20340:1 20344:1 20361:1 20553:1 20580:1 20705:2 20737:1 20852:1 20988:1 21104:1 21154:1 21210:1 21223:1 21250:1 21379:1 21626:1 21648:1 21701:1 21864:2 21901:1 22034:1 22048:1 22193:2 22293:1 22300:1 22430:1 22549:1 22787:1 22917:1 23045:1 23123:1 23158:1 23351:1 23418:1 23463:1 23468:1 23494:2 23596:1 23665:3 23703:1 23710:1 23745:2 23881:1 23910:1 23969:1 24176:1 24313:1 24323:1 24352:1 24357:1 24416:2 24460:1 24464:1 24498:1 24502:1 24504:2 24531:1 24557:1 24780:1 24786:1 24980:1 25013:1 25034:3 25053:1 25077:1 25227:1 25281:1 10 6:1 50:1 172:1 249:1 429:1 508:1 539:1 690:1 701:1 792:1 807:1 815:1 831:1 844:1 846:1 847:1 877:1 1176:1 1205:1 1254:1 1284:1 1337:1 1342:1 1425:1 1428:1 1432:2 1464:1 1554:1 1586:1 1621:1 1704:1 1816:2 1993:1 2049:1 2059:2 2183:1 2258:1 2292:1 2359:1 2441:2 2606:3 2614:2 2619:1 2686:1 2786:1 2812:1 2817:1 2863:1 2944:4 2948:1 3054:1 3133:1 3176:1 3177:1 3254:1 3306:1 3364:1 3397:1 3428:1 3470:1 3535:1 3563:1 3750:1 3766:1 3830:1 3954:1 3993:1 4020:1 4051:1 4066:2 4077:1 4106:3 4116:1 4140:1 4167:1 4185:1 4227:1 4281:1 4304:1 4309:1 4312:1 4370:1 4388:2 4510:1 4526:1 4623:1 4903:1 4965:1 4969:1 5007:1 5102:1 5110:1 5115:2 5185:1 5322:1 5407:1 5539:1 5551:1 5640:1 5651:1 5677:2 5840:1 5889:1 5899:1 5994:2 6048:2 6364:1 6402:1 6414:1 6431:1 6457:1 6463:1 6596:2 6835:2 6846:1 6857:1 6881:1 6892:4 6909:1 7014:1 7066:1 7075:1 7133:1 7140:2 7597:1 7710:1 7718:1 7841:3 7928:1 7940:1 8083:1 8184:1 8201:1 8455:1 8514:1 8575:1 8576:1 8633:1 8715:1 8832:1 8853:1 8871:1 8881:1 8901:1 8961:1 8980:1 9015:1 9177:1 9216:1 9219:1 9313:1 9381:1 9437:1 9439:1 9443:1 9510:2 9537:1 9587:1 9603:1 9641:1 9727:1 9811:1 9815:1 9849:1 9992:1 10089:2 10162:1 10387:1 10412:1 10419:1 10460:1 10541:1 10924:1 11036:1 11063:1 11195:1 11230:1 11322:1 11355:1 11361:1 11403:1 11446:3 11450:1 11475:1 11567:1 11682:1 11708:1 11792:1 11811:1 11817:1 12030:1 12103:1 12108:1 12111:1 12172:1 12227:1 12242:2 12281:1 12295:1 12377:1 12483:1 12528:1 12540:1 12657:1 12741:1 12838:1 12859:1 12874:1 12991:1 13009:1 13053:2 13061:1 13136:1 13188:1 13236:3 13237:1 13287:1 13345:1 13540:1 13555:1 13641:1 13750:1 13777:1 13854:1 13935:1 13999:1 14073:1 14086:1 14089:2 14114:1 14227:1 14283:1 14398:1 14680:4 14740:1 14843:2 14954:1 15054:2 15123:1 15141:1 15164:1 15182:1 15227:2 15285:1 15611:1 15740:1 15839:1 15884:1 15921:1 15950:1 15980:1 16077:1 16130:1 16159:2 16341:1 16351:1 16409:321 16424:1 16592:1 16599:1 16698:2 16884:1 17006:1 17042:2 17054:1 17058:1 17080:1 17115:1 17156:1 17218:1 17317:1 17381:1 17449:1 17536:2 17602:1 17614:1 17636:1 17688:1 17693:1 18090:1 18267:1 18288:1 18312:1 18336:1 18399:1 18416:1 18455:1 18469:3 18475:1 18493:1 18671:1 18758:1 18767:1 18825:1 18844:1 18850:1 18906:1 18914:2 18922:1 18964:1 19007:2 19076:2 19159:1 19332:1 19342:1 19344:2 19407:1 19501:1 19552:1 19577:1 19584:1 19611:2 19743:1 19852:1 19867:4 19924:1 19925:1 19940:1 19948:1 19968:1 20034:1 20340:1 20344:1 20361:1 20553:1 20580:1 20705:2 20737:1 20799:1 20852:1 20988:1 21104:1 21154:1 21210:1 21223:1 21250:1 21379:1 21626:1 21648:1 21701:1 21864:2 21901:1 22034:1 22048:1 22193:2 22293:1 22300:1 22430:1 22549:1 22787:1 22917:1 23045:1 23123:1 23158:1 23175:1 23351:1 23418:1 23463:1 23468:1 23494:2 23596:1 23665:3 23703:1 23710:1 23745:2 23881:1 23910:1 23969:1 24176:1 24279:1 24313:1 24323:1 24352:1 24357:1 24416:2 24460:1 24464:1 24498:1 24502:1 24504:2 24531:1 24557:1 24780:1 24786:1 24967:1 24980:1 25013:1 25034:4 25053:1 25077:1 25139:1 25227:1 25281:1 25416:1 10 6:1 50:1 172:1 249:1 429:1 508:1 539:1 690:1 701:1 707:1 792:1 807:1 815:1 831:1 844:1 846:1 847:1 877:1 1176:1 1185:1 1205:1 1254:1 1268:1 1284:1 1327:1 1337:1 1342:1 1425:1 1428:1 1432:2 1464:2 1497:1 1554:1 1586:1 1621:1 1643:1 1685:1 1704:1 1816:2 1956:1 1992:1 1993:1 2049:1 2059:2 2183:1 2258:1 2292:1 2359:1 2441:2 2606:3 2614:2 2619:1 2670:1 2675:1 2686:1 2786:1 2812:1 2814:1 2817:1 2863:1 2944:4 2948:1 2964:1 3022:1 3054:1 3133:1 3167:1 3176:1 3177:1 3254:1 3306:1 3364:1 3397:1 3428:1 3470:1 3535:1 3563:2 3699:1 3717:1 3750:1 3766:1 3807:1 3816:1 3830:1 3954:1 3993:1 4020:1 4051:1 4066:2 4077:1 4106:3 4112:1 4116:1 4140:1 4167:1 4185:1 4227:1 4281:1 4304:2 4309:1 4312:1 4370:1 4388:2 4438:1 4510:1 4526:1 4618:1 4623:1 4903:1 4965:1 4969:1 5007:1 5011:1 5102:1 5110:1 5115:4 5185:1 5322:2 5407:1 5539:1 5551:1 5640:1 5651:1 5677:2 5840:1 5889:1 5899:1 5994:3 6048:2 6364:1 6374:1 6402:1 6414:1 6431:1 6457:1 6463:1 6596:4 6737:1 6790:1 6835:2 6846:1 6857:1 6881:1 6892:4 6909:1 7014:1 7066:1 7075:1 7133:1 7140:2 7322:1 7368:1 7597:1 7710:1 7718:1 7728:1 7751:1 7828:1 7841:3 7858:1 7928:1 7940:1 8083:1 8184:1 8201:1 8342:1 8410:1 8455:1 8514:1 8575:1 8576:1 8633:1 8715:1 8832:1 8853:1 8871:1 8881:1 8901:1 8961:1 8980:1 9015:1 9177:1 9216:1 9219:1 9313:1 9381:1 9437:1 9439:1 9443:1 9510:3 9537:1 9587:1 9603:1 9641:1 9655:1 9681:1 9690:1 9710:1 9727:1 9799:1 9811:1 9815:1 9849:1 9992:1 10089:2 10162:1 10387:1 10412:1 10419:1 10460:1 10506:1 10541:1 10829:1 10924:1 11036:1 11063:1 11195:1 11230:1 11322:1 11355:1 11361:1 11403:1 11446:3 11450:1 11475:1 11567:1 11682:1 11708:1 11792:1 11811:1 11817:1 12030:1 12103:1 12108:1 12111:1 12172:1 12227:1 12242:2 12281:1 12295:1 12305:1 12352:1 12377:1 12483:1 12509:1 12528:1 12540:1 12657:1 12723:1 12741:1 12770:1 12838:1 12852:1 12859:1 12874:1 12896:1 12964:1 12991:1 13009:1 13053:2 13061:1 13136:1 13188:1 13236:3 13237:1 13287:1 13345:1 13540:1 13555:1 13641:1 13750:1 13777:1 13854:1 13935:1 13959:1 13970:1 13999:1 14049:2 14073:1 14086:1 14089:2 14114:1 14208:1 14227:1 14230:1 14283:1 14387:1 14398:1 14680:4 14740:1 14809:1 14843:2 14879:1 14954:1 15054:3 15123:1 15141:1 15164:1 15182:1 15227:3 15285:1 15587:1 15611:1 15740:1 15839:1 15884:1 15921:1 15950:1 15980:1 16077:1 16130:1 16159:2 16282:1 16341:1 16351:1 16409:356 16424:1 16592:1 16599:1 16698:4 16884:1 17006:1 17042:2 17054:1 17058:1 17080:2 17115:1 17156:1 17218:1 17317:1 17381:1 17449:1 17536:2 17602:1 17614:1 17636:1 17688:1 17693:1 18090:1 18153:1 18267:1 18288:1 18312:1 18336:1 18399:1 18416:1 18455:1 18469:5 18475:1 18493:1 18671:1 18758:1 18767:1 18780:1 18825:2 18844:1 18850:1 18906:1 18914:2 18922:1 18964:1 19007:2 19076:2 19159:1 19332:1 19342:1 19344:2 19407:1 19501:1 19517:1 19552:1 19577:1 19584:1 19611:3 19743:1 19852:1 19867:4 19918:1 19924:1 19925:1 19940:1 19948:1 19968:2 20034:1 20340:1 20344:1 20361:1 20553:1 20580:1 20682:1 20705:2 20737:2 20799:1 20852:1 20857:1 20988:1 21033:1 21104:1 21154:1 21210:1 21223:1 21250:1 21379:1 21626:1 21648:1 21701:1 21756:1 21864:2 21901:1 21928:1 22034:1 22048:1 22193:2 22293:1 22300:1 22430:1 22549:1 22787:1 22911:1 22917:1 23045:1 23123:1 23158:1 23175:1 23351:1 23418:1 23463:1 23468:1 23485:1 23494:4 23587:1 23596:1 23665:3 23703:1 23710:1 23725:1 23745:2 23800:1 23881:1 23910:1 23969:1 24176:1 24279:1 24313:1 24323:1 24352:1 24357:1 24416:2 24460:1 24464:1 24498:1 24502:1 24504:2 24531:1 24548:1 24557:1 24780:1 24786:1 24861:1 24967:1 24980:1 25013:1 25034:4 25053:1 25077:1 25139:1 25227:1 25281:1 25416:1 10 6:1 50:1 172:1 249:1 429:1 508:1 539:1 690:1 701:1 707:1 792:1 807:1 815:1 831:1 844:1 846:1 847:1 877:1 1176:1 1185:1 1205:1 1254:1 1268:1 1284:1 1327:1 1337:1 1342:1 1425:1 1428:1 1432:2 1464:2 1497:1 1554:1 1586:1 1621:1 1643:1 1685:2 1704:1 1816:2 1956:1 1992:2 1993:1 2049:1 2059:2 2183:1 2258:1 2292:1 2359:1 2441:2 2606:3 2614:2 2619:1 2670:1 2675:1 2686:1 2786:1 2812:1 2814:1 2817:1 2863:1 2944:4 2948:1 2964:1 3022:1 3054:1 3133:1 3167:1 3176:1 3177:1 3254:1 3306:1 3364:1 3388:1 3397:1 3428:1 3470:1 3535:1 3563:2 3699:1 3717:1 3750:1 3766:1 3807:1 3811:1 3816:1 3830:1 3954:1 3993:1 4020:1 4051:1 4066:2 4077:1 4106:3 4112:1 4116:1 4140:1 4167:1 4185:1 4227:1 4281:1 4304:2 4309:1 4312:1 4370:1 4388:2 4438:1 4510:1 4526:1 4618:1 4623:1 4903:1 4965:1 4969:1 5007:1 5011:1 5042:1 5102:1 5110:1 5115:5 5185:1 5322:2 5407:1 5539:1 5551:1 5640:1 5651:1 5677:2 5840:1 5889:1 5899:1 5994:4 6048:2 6364:1 6374:1 6402:1 6414:1 6431:1 6457:1 6463:1 6596:5 6737:1 6790:1 6835:2 6846:1 6857:1 6881:1 6892:4 6909:1 7014:1 7066:1 7075:1 7133:1 7140:2 7322:1 7368:1 7597:1 7710:1 7718:1 7728:1 7751:1 7828:1 7841:3 7858:1 7928:1 7940:1 8083:1 8184:1 8201:1 8342:1 8410:1 8455:1 8514:1 8575:1 8576:1 8633:1 8715:1 8832:1 8853:1 8871:1 8881:1 8901:1 8961:1 8980:1 9015:1 9105:1 9177:1 9216:1 9219:1 9313:1 9381:1 9437:1 9439:1 9443:1 9510:4 9537:1 9587:1 9603:1 9641:1 9655:1 9681:1 9690:1 9710:1 9727:1 9799:1 9811:1 9815:1 9849:1 9992:1 10089:2 10162:1 10387:1 10395:1 10412:1 10419:1 10460:1 10506:1 10541:1 10561:1 10829:1 10924:1 11036:1 11063:1 11195:1 11230:1 11322:1 11355:1 11361:1 11403:1 11424:1 11446:3 11450:1 11475:1 11567:1 11666:1 11682:1 11708:1 11792:1 11803:1 11811:1 11817:1 12030:1 12103:1 12108:1 12111:1 12172:1 12227:1 12242:2 12281:1 12295:1 12305:1 12352:1 12377:1 12483:1 12509:1 12528:1 12540:1 12657:1 12723:1 12741:1 12770:1 12838:1 12852:1 12859:1 12874:1 12896:1 12964:1 12991:1 13009:1 13053:2 13061:1 13136:1 13188:1 13236:3 13237:1 13287:1 13345:1 13540:1 13555:1 13641:1 13750:1 13777:1 13854:1 13935:1 13959:1 13970:1 13999:1 14049:2 14073:1 14086:1 14089:2 14114:1 14208:1 14211:1 14227:1 14230:1 14279:1 14283:1 14387:1 14398:1 14659:1 14680:4 14740:1 14809:1 14843:2 14879:1 14954:1 15054:3 15123:1 15141:1 15164:1 15182:1 15227:4 15285:1 15454:1 15587:1 15611:1 15740:1 15839:1 15884:1 15921:1 15950:1 15980:1 16077:1 16130:1 16159:2 16282:1 16341:1 16351:1 16409:364 16424:1 16592:1 16599:1 16698:5 16884:1 17006:1 17042:2 17054:1 17058:1 17080:2 17115:1 17156:1 17218:1 17317:1 17381:1 17449:1 17536:2 17602:1 17614:1 17636:1 17688:1 17693:1 18090:1 18153:1 18267:1 18288:1 18312:1 18336:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:6 18475:1 18493:1 18671:1 18758:1 18767:1 18780:1 18825:2 18844:1 18850:1 18906:1 18914:2 18922:1 18964:1 19007:2 19076:2 19159:1 19332:1 19342:1 19344:2 19407:1 19501:1 19517:1 19552:1 19577:1 19584:1 19611:4 19743:1 19852:1 19867:4 19918:1 19924:1 19925:1 19940:1 19948:1 19968:2 20034:1 20340:1 20344:1 20361:1 20553:1 20580:1 20682:1 20705:2 20737:3 20799:1 20852:1 20857:1 20988:1 21033:1 21104:1 21154:1 21210:1 21223:1 21250:1 21316:1 21379:1 21626:1 21648:1 21701:1 21756:1 21864:2 21901:1 21928:1 22034:1 22048:1 22193:2 22293:1 22300:1 22430:1 22549:1 22787:1 22911:1 22917:2 23045:1 23123:1 23158:1 23175:1 23351:1 23418:1 23463:1 23468:1 23485:1 23494:5 23587:1 23596:1 23665:3 23703:1 23710:1 23725:1 23745:2 23800:1 23881:1 23910:1 23921:1 23969:1 24176:1 24279:1 24313:1 24323:1 24352:1 24357:1 24416:2 24460:1 24464:1 24498:1 24502:1 24504:2 24531:1 24548:1 24557:1 24780:1 24786:1 24861:1 24915:1 24967:1 24980:1 25013:1 25034:4 25053:1 25077:1 25139:1 25227:1 25281:1 25416:1 10 6:2 50:1 172:1 249:1 429:1 508:1 539:1 557:1 690:1 701:1 707:1 792:1 805:1 807:1 815:2 831:1 844:1 846:1 847:2 877:1 914:1 1096:1 1176:1 1185:1 1205:1 1254:1 1268:1 1284:1 1327:1 1337:1 1342:1 1346:1 1425:1 1428:1 1432:2 1464:2 1497:1 1554:1 1586:1 1621:2 1643:1 1685:2 1704:1 1816:2 1956:1 1992:2 1993:1 2049:1 2059:2 2183:1 2258:1 2292:1 2359:1 2441:2 2450:1 2538:1 2606:3 2614:2 2619:1 2670:1 2675:2 2686:1 2786:1 2812:1 2814:1 2817:1 2863:1 2944:4 2948:1 2964:1 3022:1 3054:1 3133:1 3167:1 3176:1 3177:1 3254:1 3306:1 3340:1 3345:1 3364:1 3388:1 3397:1 3428:1 3470:1 3535:1 3563:2 3699:1 3717:1 3750:1 3766:1 3807:1 3811:1 3816:1 3830:1 3945:1 3954:1 3993:1 4020:1 4051:1 4066:2 4077:1 4106:3 4112:1 4116:1 4140:1 4167:1 4185:1 4194:1 4227:1 4281:1 4304:2 4309:1 4312:1 4370:1 4388:2 4413:1 4438:1 4510:1 4526:1 4618:1 4623:1 4774:1 4903:1 4965:1 4969:1 5007:1 5011:1 5042:1 5102:1 5110:1 5115:6 5185:1 5322:2 5324:1 5407:1 5539:1 5551:1 5640:1 5651:1 5677:2 5725:1 5840:2 5889:1 5899:1 5994:4 6048:2 6364:1 6374:1 6402:1 6414:1 6431:1 6457:1 6463:1 6596:6 6737:1 6790:1 6835:2 6846:1 6857:2 6865:1 6877:1 6881:1 6892:4 6909:1 7014:1 7066:1 7075:1 7133:1 7140:2 7322:3 7368:1 7597:1 7710:1 7718:1 7728:1 7751:1 7828:1 7841:3 7858:1 7928:1 7940:1 8023:1 8083:1 8184:1 8201:1 8224:1 8342:1 8410:1 8455:1 8514:1 8561:1 8575:1 8576:1 8609:1 8633:1 8715:1 8780:1 8806:1 8832:1 8853:1 8871:1 8881:1 8901:1 8961:1 8980:1 9015:1 9033:1 9105:1 9150:1 9177:1 9216:1 9219:1 9313:1 9381:1 9437:1 9439:1 9443:1 9453:1 9510:4 9537:1 9587:1 9603:1 9641:1 9655:1 9681:1 9690:1 9710:1 9725:1 9727:1 9799:1 9811:1 9815:1 9849:1 9992:1 10089:2 10162:1 10367:1 10387:1 10395:1 10412:1 10419:1 10460:1 10506:1 10541:1 10561:1 10829:1 10924:1 11036:1 11063:1 11195:1 11230:1 11322:1 11355:1 11361:1 11403:1 11408:1 11424:1 11446:3 11450:1 11475:1 11567:1 11666:1 11676:1 11682:1 11708:1 11792:1 11803:1 11811:1 11817:1 11860:1 11955:1 11982:1 12030:1 12103:1 12105:1 12108:1 12111:1 12172:1 12227:1 12242:2 12281:1 12295:1 12305:1 12352:1 12377:1 12483:1 12509:1 12528:1 12540:1 12657:1 12723:1 12741:1 12770:1 12838:1 12852:1 12859:1 12874:1 12896:1 12964:1 12991:1 12997:1 13009:1 13053:2 13061:1 13136:1 13188:1 13236:3 13237:1 13287:1 13345:1 13540:1 13555:1 13641:1 13750:1 13777:1 13854:1 13935:1 13959:1 13970:1 13999:1 14049:2 14073:1 14086:1 14089:2 14114:1 14158:1 14208:1 14211:1 14227:1 14230:1 14276:1 14279:1 14283:1 14293:1 14387:1 14398:1 14401:1 14412:1 14535:1 14659:1 14680:4 14740:2 14809:1 14843:2 14879:1 14954:1 15054:3 15123:1 15141:1 15164:1 15182:1 15227:4 15247:1 15285:1 15384:1 15454:1 15587:1 15611:1 15740:1 15839:1 15884:1 15921:1 15950:1 15980:1 16077:1 16130:1 16159:2 16187:1 16282:1 16341:1 16351:1 16409:411 16424:1 16592:1 16599:1 16698:6 16884:1 17006:1 17018:1 17042:2 17054:1 17058:1 17080:2 17088:1 17115:1 17156:1 17204:1 17218:1 17317:1 17381:1 17449:1 17536:2 17602:1 17614:1 17636:1 17688:1 17689:1 17693:1 17860:1 17990:1 18090:1 18153:1 18267:1 18288:1 18312:1 18336:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:7 18475:1 18493:1 18671:1 18758:1 18767:1 18780:1 18825:2 18844:1 18850:1 18906:1 18914:2 18922:1 18964:1 19007:2 19076:3 19159:1 19253:1 19332:1 19342:1 19344:2 19399:1 19405:1 19407:1 19457:1 19501:1 19505:1 19517:1 19552:1 19577:1 19584:1 19611:4 19743:1 19852:1 19867:4 19883:2 19918:1 19924:1 19925:1 19940:1 19948:1 19968:2 20034:1 20338:1 20340:1 20344:1 20359:1 20361:1 20458:1 20553:1 20580:1 20682:1 20705:2 20737:3 20757:1 20799:1 20852:1 20857:1 20988:1 21033:1 21048:1 21104:1 21154:1 21198:1 21210:1 21223:1 21250:1 21316:1 21379:1 21520:1 21548:1 21626:1 21648:1 21701:1 21739:1 21756:1 21849:1 21864:2 21901:1 21928:1 22022:1 22034:1 22048:1 22051:1 22193:2 22266:1 22290:1 22293:1 22300:1 22357:1 22430:1 22549:1 22787:1 22911:1 22917:2 23045:1 23123:1 23158:1 23175:1 23351:1 23418:1 23426:1 23463:2 23468:1 23485:1 23494:6 23581:1 23587:1 23596:1 23665:3 23690:1 23703:1 23710:1 23725:1 23745:2 23800:1 23881:1 23910:1 23921:1 23969:1 24176:1 24279:1 24313:1 24323:1 24352:1 24357:1 24410:1 24416:2 24440:1 24460:1 24464:1 24498:1 24502:1 24504:2 24531:1 24548:1 24557:1 24590:1 24780:1 24786:1 24861:1 24915:1 24967:1 24980:1 25013:1 25034:4 25053:1 25077:1 25139:1 25227:1 25238:1 25281:1 25416:1 10 6:2 50:1 172:1 249:1 429:1 508:1 539:1 557:1 690:1 701:1 707:1 792:1 805:2 807:1 815:2 831:1 844:1 846:1 847:3 877:1 914:2 1096:2 1176:1 1185:1 1205:1 1254:1 1268:1 1284:2 1327:1 1337:1 1342:1 1346:2 1425:1 1428:1 1432:2 1464:2 1497:1 1554:1 1586:1 1621:2 1643:1 1685:2 1704:1 1816:2 1956:1 1992:2 1993:1 2049:1 2059:2 2183:1 2258:1 2292:1 2359:1 2441:2 2450:1 2538:2 2606:3 2614:2 2619:1 2654:1 2670:1 2675:3 2686:1 2786:1 2812:1 2814:1 2817:1 2863:1 2944:4 2948:1 2964:1 3022:1 3054:1 3133:1 3167:1 3176:1 3177:1 3254:1 3306:2 3340:1 3345:2 3364:1 3388:1 3397:1 3428:1 3470:1 3535:1 3563:2 3699:1 3717:1 3750:1 3766:1 3807:1 3811:1 3816:1 3830:1 3837:1 3838:1 3945:2 3954:1 3993:1 4020:1 4051:1 4066:2 4077:1 4106:3 4112:1 4116:1 4140:1 4167:1 4185:1 4194:2 4227:1 4281:1 4304:2 4309:1 4312:1 4370:1 4388:2 4413:2 4438:1 4510:1 4526:1 4618:1 4623:1 4774:1 4903:1 4965:1 4969:1 5007:1 5011:1 5042:1 5102:1 5110:1 5115:7 5185:1 5322:2 5324:1 5407:1 5539:1 5551:1 5640:1 5651:1 5677:2 5725:1 5840:2 5889:1 5899:1 5994:4 6048:2 6364:1 6374:1 6402:1 6414:1 6431:1 6457:1 6463:1 6596:7 6737:1 6790:1 6835:2 6846:1 6857:2 6865:1 6877:2 6881:1 6892:4 6909:1 6911:1 7014:1 7066:1 7075:1 7133:1 7140:2 7312:1 7322:3 7368:1 7597:1 7710:1 7718:1 7728:1 7751:1 7828:1 7841:3 7858:1 7928:1 7940:1 8023:1 8083:1 8184:1 8201:1 8224:2 8342:1 8410:1 8455:1 8514:1 8561:1 8575:1 8576:1 8609:1 8633:1 8715:1 8780:2 8806:1 8832:1 8853:1 8871:1 8881:1 8901:1 8961:1 8980:1 9015:1 9033:1 9105:1 9150:1 9177:1 9216:1 9219:1 9313:1 9353:1 9381:1 9437:1 9439:1 9443:2 9453:2 9510:4 9537:1 9587:1 9603:1 9641:1 9655:1 9681:1 9690:1 9710:1 9725:2 9727:1 9799:1 9811:1 9815:1 9849:1 9992:1 10089:2 10162:1 10367:2 10387:1 10395:1 10412:1 10419:1 10460:1 10506:1 10541:1 10561:1 10829:1 10924:1 11013:1 11036:1 11063:1 11195:1 11230:1 11322:1 11355:1 11361:1 11403:1 11408:2 11424:1 11446:3 11450:1 11475:1 11567:1 11666:1 11676:1 11682:1 11708:1 11792:1 11803:1 11811:1 11817:1 11860:2 11955:2 11982:1 12030:1 12103:1 12105:1 12108:1 12111:1 12172:1 12227:1 12242:2 12281:1 12295:1 12305:1 12352:1 12377:1 12483:1 12509:1 12528:1 12540:1 12657:1 12723:1 12741:1 12770:1 12838:1 12852:1 12859:1 12874:1 12896:1 12964:1 12991:1 12997:2 13009:1 13053:2 13061:1 13136:1 13188:1 13236:3 13237:1 13287:1 13345:1 13540:1 13555:1 13641:1 13750:1 13777:1 13854:1 13935:1 13959:1 13970:1 13999:1 14049:2 14073:1 14086:1 14089:2 14114:1 14158:2 14208:1 14211:1 14227:1 14230:1 14276:2 14279:1 14283:1 14293:2 14387:1 14398:1 14401:1 14412:1 14535:1 14659:1 14680:4 14740:2 14809:1 14843:2 14879:1 14954:1 15054:3 15123:1 15141:1 15164:1 15182:1 15227:4 15247:2 15285:1 15384:1 15454:1 15587:1 15611:1 15681:1 15687:1 15740:1 15839:1 15884:1 15921:1 15950:1 15962:1 15980:1 16077:1 16130:1 16159:2 16187:1 16282:1 16341:1 16351:1 16409:438 16424:1 16592:1 16599:1 16698:7 16884:1 17006:1 17018:2 17042:2 17054:1 17058:1 17080:3 17088:1 17115:1 17156:1 17204:2 17218:1 17317:1 17381:1 17449:1 17536:2 17592:1 17602:1 17614:1 17636:1 17688:1 17689:1 17693:1 17803:1 17860:1 17990:1 18090:1 18153:1 18267:1 18288:1 18312:1 18336:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:8 18475:1 18493:1 18671:1 18758:1 18767:1 18780:1 18825:3 18844:1 18850:1 18906:1 18914:2 18922:1 18964:1 19007:2 19049:1 19066:1 19076:3 19159:1 19253:2 19332:1 19342:1 19344:2 19399:2 19405:1 19407:1 19457:1 19501:1 19505:1 19517:1 19552:1 19577:1 19584:1 19611:4 19743:1 19852:1 19867:4 19883:2 19918:1 19924:1 19925:1 19940:1 19948:1 19968:2 20034:1 20338:1 20340:1 20344:1 20359:1 20361:1 20458:2 20553:1 20580:1 20682:1 20705:2 20737:3 20757:1 20799:1 20852:1 20857:1 20988:1 21033:1 21048:2 21104:1 21154:1 21198:1 21210:1 21223:1 21250:1 21316:1 21379:1 21520:1 21548:2 21626:1 21648:1 21701:1 21739:2 21756:1 21849:2 21864:2 21901:1 21928:1 22022:2 22034:1 22048:1 22051:1 22193:2 22266:2 22290:1 22293:1 22300:1 22357:1 22430:1 22549:1 22550:1 22787:1 22911:1 22917:2 22975:1 23045:1 23123:1 23158:1 23175:1 23351:1 23418:1 23426:2 23463:2 23468:1 23485:1 23494:7 23581:2 23587:1 23596:1 23665:3 23690:1 23703:1 23710:1 23725:1 23745:2 23800:1 23881:1 23910:1 23921:1 23969:1 24176:1 24279:1 24313:1 24323:1 24352:1 24357:1 24410:1 24416:2 24440:1 24460:1 24464:1 24498:1 24502:1 24504:2 24531:1 24548:1 24557:1 24590:1 24780:1 24786:1 24861:1 24915:1 24967:1 24980:1 25013:1 25034:4 25053:1 25077:1 25139:1 25227:1 25238:1 25281:1 25416:1 10 6:2 50:1 65:1 164:1 172:1 249:1 429:1 508:1 539:1 557:1 690:1 701:1 707:1 792:1 805:2 807:1 815:2 831:1 844:1 846:1 847:3 877:1 914:2 1096:2 1176:1 1185:1 1205:1 1254:1 1268:1 1284:2 1327:1 1337:1 1342:1 1346:2 1425:1 1428:1 1432:2 1464:2 1497:1 1554:1 1586:1 1621:2 1643:1 1673:1 1685:2 1704:1 1769:1 1816:2 1926:1 1956:1 1992:2 1993:2 2049:1 2059:2 2183:1 2258:1 2292:1 2359:1 2441:2 2450:1 2473:1 2538:2 2606:3 2614:2 2619:2 2654:1 2670:1 2675:3 2686:1 2786:1 2812:1 2814:1 2817:1 2863:1 2944:4 2948:1 2964:1 3022:1 3031:1 3054:1 3133:1 3167:1 3176:1 3177:1 3254:1 3306:2 3340:1 3345:2 3364:1 3388:1 3397:1 3428:1 3470:1 3535:1 3563:2 3699:1 3717:1 3750:1 3766:1 3807:1 3811:1 3816:1 3830:1 3837:1 3838:1 3945:2 3954:1 3993:1 4020:1 4051:1 4066:2 4077:1 4106:3 4112:1 4116:1 4140:1 4167:1 4185:1 4194:2 4227:1 4281:1 4304:2 4309:1 4312:1 4370:1 4388:2 4393:1 4413:2 4438:1 4510:1 4526:1 4618:1 4623:1 4714:1 4774:1 4903:1 4965:1 4969:1 5007:1 5011:1 5042:1 5102:1 5110:1 5115:8 5185:1 5322:2 5324:2 5407:1 5447:1 5539:1 5551:1 5640:1 5651:1 5677:2 5725:1 5757:1 5840:2 5889:1 5899:1 5994:5 6048:2 6364:1 6374:1 6402:1 6414:1 6431:1 6457:1 6463:1 6596:8 6737:1 6790:1 6835:2 6846:1 6857:2 6865:1 6877:2 6881:1 6892:5 6909:1 6911:1 7014:1 7066:1 7075:1 7133:1 7140:2 7312:1 7322:3 7368:1 7597:1 7710:1 7718:1 7728:1 7751:1 7828:1 7841:3 7858:1 7928:1 7940:1 8023:1 8083:1 8184:1 8191:1 8201:1 8224:2 8342:1 8410:1 8455:1 8514:1 8561:1 8575:1 8576:1 8609:1 8633:1 8715:1 8716:1 8718:1 8780:2 8806:1 8832:1 8853:1 8871:1 8881:1 8901:1 8961:1 8980:1 9015:1 9033:1 9105:1 9150:1 9159:1 9177:1 9216:1 9219:1 9313:1 9353:1 9381:1 9416:1 9437:1 9439:1 9443:2 9453:2 9510:5 9537:1 9587:1 9603:1 9641:1 9655:1 9681:1 9689:1 9690:1 9710:1 9725:2 9727:1 9799:1 9811:1 9813:1 9815:1 9849:1 9992:1 10089:2 10162:1 10246:1 10367:2 10387:1 10395:1 10412:1 10419:1 10460:1 10506:1 10541:1 10561:1 10596:1 10783:1 10804:1 10829:1 10924:1 11013:1 11036:1 11063:1 11089:1 11195:1 11230:1 11322:1 11355:1 11361:1 11403:1 11408:2 11424:1 11446:3 11450:1 11475:1 11524:1 11567:1 11666:1 11676:1 11682:1 11708:1 11792:1 11803:1 11811:1 11817:1 11860:2 11955:2 11982:1 12030:1 12103:1 12105:1 12108:1 12111:1 12157:1 12172:1 12227:1 12242:2 12281:1 12295:1 12305:1 12352:1 12377:1 12483:1 12509:1 12521:1 12528:1 12540:1 12601:1 12657:1 12723:1 12741:1 12770:1 12838:1 12852:1 12859:1 12874:1 12891:1 12896:1 12964:1 12991:1 12997:2 13009:1 13053:2 13061:1 13136:1 13188:1 13236:3 13237:1 13287:1 13297:1 13345:1 13540:1 13555:1 13641:1 13750:1 13777:1 13790:1 13854:1 13935:2 13959:1 13970:1 13999:1 14049:2 14073:1 14086:1 14089:2 14114:1 14158:2 14208:1 14211:1 14227:1 14230:1 14276:2 14279:1 14283:1 14293:2 14387:1 14398:1 14401:1 14412:1 14535:1 14659:1 14680:4 14740:2 14809:1 14843:2 14879:1 14954:1 15054:3 15123:1 15141:1 15164:1 15182:1 15227:5 15247:2 15285:1 15384:1 15454:1 15587:1 15611:1 15681:1 15687:1 15738:1 15740:1 15821:1 15825:1 15839:1 15884:1 15921:1 15950:1 15960:1 15962:1 15980:1 16077:1 16130:1 16159:2 16187:1 16282:1 16341:1 16351:1 16409:471 16424:1 16592:1 16599:1 16698:8 16884:1 17006:1 17018:2 17042:2 17054:1 17058:1 17080:3 17088:1 17115:1 17156:1 17204:2 17218:1 17317:1 17381:1 17449:2 17536:2 17537:1 17592:1 17602:1 17614:1 17636:1 17688:1 17689:1 17693:1 17803:1 17860:1 17953:1 17990:1 18090:1 18153:1 18267:1 18288:1 18312:1 18336:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:9 18475:1 18493:1 18671:1 18758:1 18767:1 18780:1 18825:3 18844:1 18850:1 18906:1 18914:2 18922:1 18964:1 19007:2 19036:1 19049:1 19066:1 19076:3 19159:1 19253:2 19306:1 19332:1 19342:1 19344:2 19399:2 19405:1 19407:1 19457:1 19501:1 19505:1 19517:1 19552:1 19577:1 19584:1 19611:5 19743:1 19807:1 19852:1 19867:4 19883:2 19918:1 19924:1 19925:1 19940:1 19948:1 19968:2 20034:1 20046:1 20103:1 20338:1 20340:1 20344:1 20359:1 20361:1 20458:2 20553:1 20580:1 20682:1 20705:2 20737:4 20757:1 20799:1 20852:1 20857:1 20947:1 20988:1 21033:1 21048:2 21104:1 21154:1 21198:1 21210:1 21223:1 21250:1 21316:1 21379:1 21520:1 21548:2 21626:1 21648:1 21650:1 21701:1 21739:2 21756:1 21849:2 21864:3 21901:1 21910:1 21918:1 21928:1 22022:2 22034:1 22048:1 22051:1 22193:2 22266:2 22287:1 22290:1 22293:1 22300:1 22357:1 22430:1 22549:1 22550:1 22745:1 22787:1 22911:1 22917:2 22975:1 23045:1 23058:1 23123:1 23158:2 23175:1 23351:1 23418:1 23426:2 23463:2 23468:1 23485:1 23494:8 23581:2 23587:1 23596:1 23665:3 23690:1 23703:1 23710:1 23725:1 23745:2 23785:1 23800:1 23881:1 23910:1 23921:1 23969:1 24176:1 24179:1 24184:1 24279:1 24313:1 24323:1 24352:1 24357:1 24410:1 24416:2 24440:1 24460:1 24464:1 24498:1 24502:1 24504:2 24531:1 24548:1 24557:1 24590:1 24780:1 24786:1 24861:1 24915:1 24967:1 24980:1 24998:1 25013:1 25034:4 25053:1 25077:1 25139:1 25227:1 25238:1 25281:1 25318:1 25416:1 10 6:2 50:1 65:1 164:2 172:2 249:1 395:1 429:1 508:1 539:1 557:1 690:1 701:1 707:1 792:1 805:2 807:1 815:2 831:1 844:1 846:1 847:3 877:1 914:2 1096:2 1176:1 1185:1 1205:1 1254:1 1268:1 1284:2 1327:1 1337:1 1342:1 1346:2 1425:1 1428:1 1432:2 1464:2 1497:1 1554:1 1586:2 1621:2 1643:1 1673:1 1685:2 1704:2 1769:1 1816:2 1926:2 1956:1 1992:2 1993:2 2045:1 2049:1 2059:2 2183:1 2258:1 2292:1 2359:1 2441:2 2450:1 2473:2 2477:1 2538:2 2606:3 2614:2 2619:2 2654:1 2670:1 2675:3 2686:1 2786:1 2812:1 2814:1 2817:1 2863:1 2944:4 2948:1 2964:1 3022:1 3031:2 3054:1 3133:1 3167:1 3176:1 3177:1 3254:1 3306:2 3340:1 3345:2 3364:1 3388:1 3397:1 3428:1 3470:1 3535:1 3563:2 3699:1 3717:1 3750:1 3766:1 3807:1 3811:1 3816:1 3830:1 3837:1 3838:1 3945:2 3954:1 3993:1 4020:1 4051:1 4066:2 4077:1 4106:3 4112:1 4116:2 4140:1 4167:1 4185:1 4194:2 4227:1 4281:1 4304:2 4309:1 4312:1 4370:1 4385:1 4388:2 4393:1 4413:2 4438:1 4510:1 4526:1 4618:1 4623:1 4714:1 4774:1 4792:1 4903:1 4965:1 4969:2 5007:1 5011:1 5042:1 5102:1 5110:1 5115:8 5185:2 5322:2 5324:2 5407:1 5447:2 5539:1 5551:1 5640:1 5651:1 5677:2 5725:1 5757:2 5840:2 5889:2 5899:1 5994:5 6048:3 6073:1 6364:1 6374:1 6402:1 6414:1 6431:1 6457:1 6463:1 6596:8 6737:1 6790:1 6835:2 6846:1 6857:2 6865:1 6877:2 6881:1 6892:6 6909:1 6911:1 7014:1 7066:1 7075:1 7097:1 7133:1 7140:2 7312:1 7322:3 7368:1 7471:1 7597:1 7710:2 7718:1 7728:1 7751:1 7828:1 7841:3 7858:1 7928:1 7940:1 7958:1 8023:1 8038:1 8083:1 8184:1 8191:2 8201:1 8224:2 8342:1 8362:1 8410:1 8455:1 8514:1 8561:1 8575:1 8576:1 8609:1 8633:1 8715:1 8716:2 8718:2 8735:1 8780:2 8806:1 8832:1 8853:1 8871:1 8881:1 8901:1 8961:1 8980:1 9015:1 9033:1 9105:1 9150:1 9159:1 9177:1 9216:1 9219:1 9313:1 9353:1 9381:1 9416:1 9437:1 9439:1 9443:2 9453:2 9510:5 9537:1 9587:1 9603:1 9641:1 9655:1 9681:1 9689:2 9690:1 9710:1 9725:2 9727:1 9799:1 9811:1 9813:1 9815:1 9849:1 9992:1 10089:2 10162:1 10246:1 10367:2 10387:1 10395:1 10412:1 10419:1 10456:1 10460:1 10474:1 10506:1 10541:1 10561:1 10596:2 10783:2 10804:2 10829:1 10924:1 11013:1 11036:1 11063:1 11089:2 11195:1 11230:1 11322:1 11355:1 11361:1 11403:1 11408:2 11424:1 11446:3 11450:1 11475:1 11524:1 11567:1 11666:1 11676:1 11682:1 11708:1 11792:1 11803:1 11811:1 11817:1 11860:2 11955:2 11982:1 12030:2 12103:1 12105:1 12108:1 12111:1 12157:1 12172:1 12227:1 12242:2 12281:1 12295:1 12305:1 12352:1 12377:1 12483:1 12509:1 12521:1 12528:1 12540:1 12601:1 12657:1 12723:1 12741:1 12770:1 12838:1 12852:1 12859:1 12874:1 12891:1 12896:1 12964:1 12991:1 12997:2 13009:1 13053:2 13061:1 13136:1 13188:1 13236:3 13237:1 13287:1 13297:1 13345:1 13540:1 13555:1 13641:1 13750:1 13777:1 13790:1 13854:1 13935:2 13959:1 13970:1 13999:1 14049:2 14073:1 14086:1 14089:2 14114:1 14158:2 14208:1 14211:1 14227:1 14230:1 14276:2 14279:1 14283:1 14293:2 14387:1 14398:1 14401:1 14412:1 14535:1 14659:1 14680:4 14740:2 14809:1 14843:3 14852:1 14879:1 14954:1 15054:3 15123:1 15141:1 15164:1 15182:1 15227:5 15247:2 15285:1 15306:1 15384:1 15454:1 15587:1 15611:1 15681:1 15687:1 15738:1 15740:1 15821:2 15825:1 15839:1 15884:1 15921:1 15950:1 15960:1 15962:1 15980:1 16077:1 16130:1 16159:2 16187:1 16282:1 16341:1 16351:1 16409:508 16424:1 16592:1 16599:1 16698:8 16884:1 17006:1 17018:2 17042:2 17054:1 17058:1 17080:3 17088:1 17115:1 17156:1 17204:2 17218:1 17317:1 17381:1 17449:2 17536:2 17537:1 17592:1 17602:1 17614:1 17636:1 17675:1 17688:1 17689:1 17693:1 17803:1 17860:1 17953:2 17990:1 18090:1 18153:1 18267:1 18288:1 18312:1 18336:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:9 18475:1 18493:1 18671:1 18708:1 18758:1 18767:1 18780:1 18825:3 18844:1 18850:1 18906:1 18914:2 18922:1 18964:1 19007:2 19036:1 19049:1 19066:1 19076:3 19159:1 19253:2 19306:1 19332:1 19342:1 19344:2 19399:2 19405:1 19407:1 19421:1 19457:1 19501:2 19505:1 19517:1 19552:1 19577:1 19584:1 19611:5 19743:1 19807:1 19852:1 19867:4 19883:2 19918:1 19924:1 19925:1 19940:1 19948:1 19968:2 20034:1 20046:2 20103:2 20174:1 20338:1 20340:1 20344:1 20359:1 20361:1 20458:2 20507:1 20553:1 20580:1 20682:1 20705:2 20737:4 20757:1 20799:1 20852:1 20857:1 20947:1 20988:1 21006:1 21033:1 21048:2 21104:1 21154:1 21198:1 21210:1 21223:1 21250:1 21316:1 21379:1 21520:1 21548:2 21612:1 21626:1 21648:1 21650:2 21701:1 21739:2 21756:1 21832:1 21849:2 21864:4 21901:1 21910:1 21918:2 21928:1 22022:2 22034:1 22048:1 22051:1 22193:2 22266:2 22287:2 22290:1 22293:1 22300:1 22357:1 22430:1 22549:1 22550:1 22745:1 22760:1 22787:1 22911:1 22917:2 22975:1 23045:1 23058:1 23123:1 23158:2 23175:1 23180:1 23351:1 23418:1 23426:2 23463:2 23468:1 23485:1 23494:8 23581:2 23587:1 23596:1 23665:3 23690:1 23703:1 23710:1 23725:1 23745:2 23785:2 23796:1 23800:1 23881:1 23910:1 23921:1 23969:1 24176:1 24179:2 24184:1 24279:1 24313:1 24323:1 24352:1 24357:1 24410:1 24416:2 24440:1 24460:1 24464:1 24498:1 24502:1 24504:2 24531:1 24548:1 24557:1 24590:1 24728:1 24780:1 24786:1 24861:1 24915:1 24967:1 24980:1 24998:1 25013:1 25034:4 25053:1 25077:1 25113:1 25139:1 25227:1 25238:1 25281:1 25318:1 25379:1 25416:1 10 6:2 50:1 65:1 164:3 172:2 249:1 374:1 395:1 429:1 508:1 539:1 557:1 690:1 701:1 707:1 715:1 792:1 805:2 807:1 815:2 831:1 844:1 846:1 847:3 877:1 914:2 1096:2 1176:1 1185:1 1205:1 1254:1 1268:1 1284:2 1327:1 1337:1 1342:1 1346:2 1425:1 1428:1 1432:2 1464:2 1497:1 1554:1 1586:2 1621:2 1643:1 1673:1 1685:2 1704:2 1769:1 1816:2 1926:2 1956:1 1992:2 1993:2 2045:1 2049:1 2051:1 2059:2 2183:1 2258:1 2292:1 2359:1 2441:2 2450:1 2473:3 2477:1 2538:2 2552:1 2606:4 2614:2 2619:2 2654:1 2670:1 2675:3 2686:1 2749:1 2786:1 2812:2 2814:1 2817:1 2863:1 2881:1 2884:1 2944:4 2948:1 2964:1 3022:1 3031:3 3054:1 3133:1 3167:1 3176:1 3177:1 3254:1 3306:2 3340:1 3345:2 3364:1 3388:1 3397:1 3428:1 3470:1 3535:1 3563:2 3699:1 3717:1 3750:1 3766:1 3807:1 3811:1 3816:1 3830:1 3837:1 3838:1 3945:2 3954:1 3993:1 4020:1 4051:1 4066:2 4077:1 4106:3 4112:1 4116:2 4140:1 4167:1 4185:1 4194:2 4227:1 4281:1 4304:2 4309:1 4312:1 4370:1 4385:1 4388:2 4393:1 4413:2 4438:1 4510:1 4526:1 4618:1 4623:1 4714:1 4774:1 4792:1 4877:1 4903:1 4965:1 4969:2 5007:1 5011:1 5042:1 5102:1 5110:1 5115:8 5185:2 5322:2 5324:2 5407:1 5428:1 5447:3 5539:1 5551:1 5640:1 5651:1 5677:2 5725:1 5757:3 5840:2 5849:1 5889:2 5899:1 5994:5 6048:3 6053:1 6073:1 6364:1 6374:1 6402:1 6414:1 6431:1 6457:1 6463:1 6596:8 6737:1 6790:1 6835:2 6846:1 6857:2 6865:1 6877:2 6881:1 6892:6 6909:2 6911:1 6995:1 7014:1 7066:1 7075:1 7097:1 7133:1 7140:2 7312:1 7322:3 7368:1 7471:1 7597:1 7710:2 7718:1 7728:1 7751:1 7828:1 7841:3 7858:1 7928:1 7940:1 7958:1 8023:1 8038:1 8083:1 8184:1 8191:3 8201:1 8224:2 8342:1 8362:1 8410:1 8455:1 8514:1 8561:1 8575:1 8576:1 8609:1 8633:1 8640:1 8682:1 8715:1 8716:3 8718:3 8735:1 8780:2 8806:1 8832:1 8853:1 8871:1 8881:1 8901:1 8961:1 8980:1 8985:1 9015:1 9033:1 9105:1 9150:1 9159:1 9162:1 9177:1 9216:1 9219:1 9313:1 9353:1 9381:1 9416:1 9437:1 9439:1 9443:2 9453:2 9510:5 9537:1 9587:1 9603:1 9641:1 9655:1 9681:1 9689:3 9690:1 9710:1 9725:2 9727:1 9799:1 9811:1 9813:1 9815:1 9823:1 9849:1 9992:1 10089:2 10162:1 10246:1 10367:2 10387:1 10395:1 10412:1 10419:1 10456:1 10460:1 10474:1 10506:1 10541:1 10561:1 10596:3 10607:1 10783:3 10804:3 10829:1 10924:1 11013:1 11036:1 11063:1 11089:3 11195:1 11230:1 11279:1 11322:1 11355:1 11361:1 11403:1 11408:2 11424:1 11446:3 11450:1 11475:1 11524:1 11563:1 11567:1 11666:1 11676:1 11682:1 11700:1 11708:1 11780:1 11792:1 11803:1 11811:1 11817:1 11860:2 11955:2 11982:1 12030:3 12103:1 12105:1 12108:1 12111:1 12157:1 12172:1 12227:1 12242:2 12281:1 12295:1 12305:1 12352:1 12377:1 12483:1 12509:1 12521:1 12528:1 12540:1 12601:1 12657:1 12723:1 12741:1 12770:1 12838:1 12852:1 12859:1 12866:1 12874:1 12891:1 12896:1 12964:1 12991:1 12997:2 13009:1 13053:2 13061:1 13136:1 13188:1 13236:3 13237:1 13287:1 13297:1 13345:1 13540:1 13555:1 13641:1 13750:1 13776:1 13777:1 13790:1 13854:1 13935:2 13959:1 13970:1 13977:1 13999:1 14049:2 14073:1 14086:1 14089:2 14114:1 14158:2 14208:1 14211:1 14227:1 14230:1 14276:2 14279:1 14283:1 14293:2 14387:1 14398:1 14401:1 14412:1 14535:1 14659:1 14680:4 14740:3 14809:1 14843:3 14852:1 14879:1 14954:1 14999:1 15054:3 15123:1 15141:1 15164:1 15182:1 15227:5 15247:2 15285:1 15306:1 15384:1 15454:1 15492:1 15587:1 15611:1 15676:1 15681:1 15687:1 15738:1 15740:1 15821:3 15825:1 15839:1 15884:1 15921:1 15950:1 15960:1 15962:1 15980:1 16077:1 16130:1 16159:2 16187:1 16282:1 16341:1 16351:1 16409:566 16424:1 16592:1 16599:1 16698:8 16884:1 16888:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:1 17080:3 17088:1 17115:2 17156:1 17204:2 17218:1 17317:1 17381:1 17449:2 17536:2 17537:1 17592:1 17602:1 17612:1 17614:1 17636:1 17675:1 17688:1 17689:1 17693:1 17803:1 17860:1 17953:2 17990:1 18081:1 18090:1 18153:1 18267:1 18288:1 18312:1 18336:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:9 18475:1 18493:1 18671:1 18708:1 18758:1 18767:1 18780:1 18825:3 18844:1 18850:1 18906:1 18914:2 18922:1 18964:1 19007:2 19034:1 19036:1 19049:1 19066:1 19076:3 19159:1 19253:2 19306:1 19332:1 19342:1 19344:2 19399:2 19405:1 19407:1 19421:1 19457:1 19501:2 19505:1 19517:1 19552:1 19564:1 19577:1 19584:1 19611:5 19723:1 19743:1 19807:1 19852:1 19867:4 19883:2 19918:1 19924:1 19925:1 19940:1 19948:1 19968:2 20034:1 20046:3 20103:3 20174:1 20315:1 20338:1 20340:1 20344:1 20359:1 20361:1 20458:2 20507:1 20553:1 20580:1 20682:1 20705:2 20737:4 20757:1 20799:1 20852:1 20857:1 20947:1 20988:1 21006:1 21033:1 21048:2 21104:1 21154:1 21198:1 21210:1 21223:1 21250:1 21316:1 21379:1 21520:1 21548:2 21612:1 21626:1 21648:1 21650:3 21701:1 21739:2 21756:1 21832:1 21849:2 21864:4 21901:1 21910:1 21918:3 21928:1 22022:2 22034:1 22048:1 22051:1 22193:2 22266:2 22287:3 22290:1 22293:1 22300:1 22357:1 22430:1 22549:1 22550:1 22745:1 22760:1 22787:1 22908:1 22911:1 22917:2 22975:1 23045:1 23058:1 23103:1 23123:1 23158:2 23175:1 23180:1 23230:1 23351:1 23418:1 23426:2 23463:3 23468:1 23485:1 23494:8 23581:2 23587:1 23596:1 23665:3 23690:1 23703:1 23710:2 23725:1 23745:2 23785:3 23796:1 23800:1 23881:1 23910:1 23921:1 23969:2 23971:1 24114:1 24176:1 24179:3 24184:1 24279:1 24313:1 24323:1 24352:1 24357:1 24410:1 24416:2 24440:1 24460:1 24464:1 24498:1 24502:1 24504:2 24531:1 24548:1 24557:1 24590:1 24728:1 24780:1 24786:1 24861:1 24915:1 24967:1 24980:1 24998:1 25013:1 25034:4 25053:1 25077:1 25113:1 25139:1 25227:1 25238:1 25281:1 25318:1 25379:1 25416:1 10 6:2 50:1 65:1 164:4 172:3 249:1 374:1 395:1 429:1 508:1 539:1 557:1 690:1 701:1 707:1 715:1 792:1 805:2 807:1 815:2 831:1 844:1 846:1 847:3 877:1 914:2 1096:2 1176:1 1185:1 1205:1 1254:1 1268:1 1284:2 1327:1 1337:1 1342:1 1346:2 1425:1 1428:1 1432:2 1464:2 1497:1 1554:1 1586:2 1621:2 1643:1 1673:1 1685:2 1704:2 1769:1 1816:2 1926:3 1956:1 1992:2 1993:2 2045:1 2049:1 2051:1 2059:2 2183:1 2258:1 2292:1 2359:1 2441:2 2450:1 2473:4 2477:1 2538:2 2552:1 2606:4 2614:2 2619:2 2654:1 2670:1 2675:3 2686:1 2749:1 2786:1 2812:2 2814:1 2817:1 2863:1 2881:1 2884:1 2944:4 2948:1 2964:1 3022:1 3031:4 3054:1 3133:1 3167:1 3176:1 3177:1 3230:1 3254:1 3268:1 3306:2 3340:1 3345:2 3364:1 3388:1 3397:1 3428:1 3470:1 3535:1 3563:2 3699:1 3717:1 3750:1 3766:1 3807:1 3811:1 3816:1 3830:1 3837:1 3838:1 3891:1 3945:2 3954:1 3993:1 4020:1 4051:1 4066:2 4077:1 4106:3 4112:1 4116:2 4140:1 4167:1 4185:1 4194:2 4227:1 4281:1 4304:2 4309:1 4312:1 4370:1 4383:1 4385:1 4388:2 4393:1 4413:2 4438:1 4510:1 4526:1 4618:1 4623:1 4714:1 4774:1 4792:2 4822:2 4877:1 4903:1 4965:1 4969:2 5007:1 5011:1 5042:1 5102:1 5110:1 5115:8 5185:2 5322:3 5324:2 5407:1 5428:1 5447:4 5539:1 5551:1 5640:1 5651:1 5677:2 5725:1 5757:4 5840:2 5849:1 5889:2 5899:1 5994:5 6048:3 6053:1 6073:1 6273:1 6364:1 6370:1 6374:1 6402:1 6414:1 6431:1 6457:1 6463:1 6596:8 6731:1 6737:1 6790:1 6835:2 6846:1 6857:2 6865:1 6877:2 6881:1 6892:6 6909:2 6911:1 6995:1 7014:1 7066:1 7075:1 7097:2 7116:1 7133:1 7140:2 7144:1 7312:1 7322:4 7368:1 7471:2 7597:1 7710:2 7718:1 7728:1 7751:1 7828:1 7841:3 7858:1 7928:1 7940:1 7958:1 8023:1 8038:2 8083:1 8184:1 8191:4 8201:1 8224:2 8342:1 8362:3 8410:1 8455:1 8514:1 8561:1 8575:1 8576:1 8609:1 8633:1 8640:1 8682:1 8715:1 8716:4 8718:4 8735:1 8780:2 8806:1 8832:1 8853:1 8871:1 8881:1 8901:1 8961:1 8980:1 8985:1 9015:1 9033:1 9105:1 9150:1 9159:1 9162:1 9177:1 9216:1 9219:1 9313:1 9353:1 9381:1 9416:1 9437:1 9439:1 9443:2 9453:2 9510:5 9537:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:4 9690:1 9710:1 9725:2 9727:1 9799:1 9811:1 9813:1 9815:1 9823:1 9849:1 9992:1 10089:2 10162:1 10246:1 10367:2 10387:1 10395:1 10412:1 10419:1 10456:2 10460:1 10474:2 10506:1 10541:1 10561:1 10596:4 10607:1 10783:4 10804:4 10825:1 10829:1 10840:1 10841:1 10924:1 11013:1 11036:1 11063:1 11089:4 11195:1 11230:1 11279:1 11322:1 11355:1 11361:1 11403:1 11408:2 11424:1 11446:3 11450:1 11475:1 11524:1 11563:1 11567:1 11666:1 11676:1 11682:1 11700:1 11708:1 11780:1 11786:1 11792:1 11803:1 11811:1 11817:1 11860:2 11915:1 11955:2 11982:1 12030:3 12103:1 12105:1 12108:1 12111:1 12157:1 12172:1 12227:1 12242:2 12281:1 12295:1 12305:1 12352:1 12377:1 12483:1 12509:1 12521:1 12528:1 12540:1 12601:1 12657:1 12723:1 12741:1 12770:1 12838:1 12852:1 12859:1 12866:1 12874:1 12891:1 12896:1 12964:1 12991:1 12997:2 13009:1 13053:2 13061:1 13136:1 13184:1 13188:1 13219:1 13236:3 13237:1 13287:1 13295:1 13297:1 13345:1 13515:1 13540:1 13555:1 13641:1 13750:1 13776:1 13777:1 13790:1 13854:1 13935:3 13959:1 13967:1 13970:1 13977:1 13999:1 14049:2 14073:1 14086:1 14089:2 14114:1 14158:2 14208:1 14211:1 14227:1 14230:1 14276:2 14279:1 14283:1 14293:2 14387:1 14388:1 14398:1 14401:1 14409:1 14412:1 14535:1 14659:1 14680:4 14740:3 14809:1 14837:1 14843:3 14852:3 14879:1 14954:1 14999:1 15054:3 15123:1 15141:1 15164:1 15182:1 15227:5 15247:2 15285:1 15306:1 15384:1 15454:1 15492:1 15587:1 15611:1 15676:1 15681:1 15687:1 15738:1 15740:1 15821:4 15825:1 15839:1 15866:1 15884:1 15921:1 15950:1 15960:1 15962:1 15980:1 16077:1 16130:1 16159:2 16187:1 16282:1 16341:1 16351:1 16409:607 16424:1 16592:1 16599:1 16698:8 16884:1 16888:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:1 17077:1 17080:3 17088:1 17115:3 17156:1 17204:2 17218:1 17317:1 17381:1 17407:1 17446:1 17449:2 17536:2 17537:1 17592:1 17602:1 17612:1 17614:1 17636:1 17675:1 17688:1 17689:1 17693:1 17803:1 17860:1 17953:3 17990:1 18021:1 18081:1 18090:1 18153:1 18267:1 18288:1 18312:1 18332:1 18336:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:9 18475:1 18493:1 18671:1 18708:1 18758:1 18767:1 18780:1 18825:3 18843:1 18844:1 18850:1 18906:1 18914:2 18922:2 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19066:1 19076:3 19159:1 19253:2 19306:1 19332:1 19342:1 19344:2 19399:2 19405:1 19407:1 19421:1 19457:1 19501:2 19505:1 19517:1 19552:1 19564:1 19567:1 19577:1 19584:1 19611:5 19723:1 19743:1 19807:1 19812:1 19852:1 19867:4 19883:2 19918:1 19924:1 19925:2 19940:1 19948:1 19965:1 19968:2 20034:1 20046:4 20103:4 20174:2 20259:2 20315:1 20338:1 20340:1 20344:1 20359:1 20361:1 20405:1 20458:2 20507:2 20553:1 20580:1 20682:1 20705:2 20737:4 20757:1 20799:1 20852:1 20857:1 20947:1 20988:1 21006:1 21033:1 21048:2 21059:1 21104:1 21154:1 21198:1 21210:2 21223:1 21250:1 21316:1 21351:1 21379:1 21520:2 21548:2 21612:1 21617:1 21626:1 21648:1 21650:4 21701:1 21739:2 21756:1 21832:1 21849:2 21864:4 21901:1 21910:1 21918:4 21928:1 22019:2 22022:2 22034:1 22048:1 22051:1 22111:1 22193:2 22266:2 22287:4 22290:1 22293:1 22300:1 22357:1 22430:1 22549:1 22550:1 22745:1 22760:1 22787:1 22908:1 22911:1 22917:2 22975:1 23045:1 23058:1 23103:1 23123:1 23158:2 23175:1 23180:1 23230:2 23351:1 23418:1 23426:2 23463:3 23468:1 23485:1 23494:8 23555:1 23573:1 23581:2 23587:1 23596:1 23665:3 23666:1 23690:1 23703:1 23710:2 23725:1 23745:2 23785:4 23796:2 23800:1 23881:1 23910:1 23921:1 23969:2 23971:1 24015:1 24114:1 24176:1 24179:4 24184:1 24279:1 24313:1 24323:1 24352:1 24357:1 24364:1 24410:1 24416:2 24440:1 24460:1 24464:1 24498:1 24502:1 24504:2 24531:1 24548:1 24557:1 24590:1 24728:1 24761:1 24780:1 24786:1 24861:1 24915:1 24967:1 24980:1 24998:1 25013:1 25034:4 25053:2 25077:1 25113:1 25139:1 25227:1 25238:1 25281:1 25318:1 25379:1 25415:1 25416:1 25422:1 10 6:2 50:1 65:1 164:5 172:3 246:1 249:1 374:1 395:1 429:1 508:1 539:1 557:2 564:1 690:1 701:1 707:1 715:1 792:1 805:2 807:1 815:2 831:2 844:1 846:1 847:3 877:1 914:2 934:1 1087:1 1096:2 1176:1 1185:1 1205:1 1254:1 1268:1 1284:2 1327:1 1337:1 1342:1 1343:1 1346:2 1425:1 1428:1 1432:2 1464:2 1497:1 1554:1 1586:2 1621:2 1643:1 1673:1 1685:2 1704:2 1769:1 1816:2 1926:3 1956:1 1992:2 1993:2 2045:1 2049:1 2051:1 2059:2 2183:1 2258:1 2292:1 2300:1 2359:1 2441:2 2450:1 2473:5 2477:1 2538:4 2552:1 2606:4 2611:1 2614:2 2619:2 2638:1 2641:1 2654:1 2660:1 2670:1 2675:3 2686:1 2749:1 2786:1 2812:2 2814:1 2817:1 2863:1 2881:1 2884:1 2944:4 2948:1 2964:1 3022:1 3031:5 3054:1 3133:1 3167:1 3176:1 3177:1 3230:1 3254:1 3268:1 3306:2 3340:2 3345:3 3364:1 3388:1 3397:1 3428:1 3440:1 3470:1 3535:1 3563:2 3699:1 3717:1 3750:1 3766:1 3807:1 3811:1 3816:1 3830:1 3837:1 3838:1 3891:1 3945:2 3954:1 3993:1 4020:1 4051:1 4066:2 4077:1 4106:3 4112:1 4116:2 4140:1 4167:1 4185:1 4194:2 4207:1 4227:1 4260:1 4281:1 4304:2 4309:1 4312:1 4370:1 4383:1 4385:1 4388:2 4393:1 4413:2 4438:1 4466:1 4510:1 4526:1 4618:1 4623:1 4714:1 4774:1 4792:2 4822:2 4877:1 4903:1 4965:1 4969:2 5007:1 5011:1 5042:1 5102:1 5110:1 5115:8 5185:2 5264:1 5322:3 5324:2 5407:1 5428:1 5447:4 5539:1 5551:1 5640:1 5651:1 5677:2 5725:1 5757:5 5840:2 5849:1 5889:2 5899:1 5994:5 6027:1 6048:3 6052:1 6053:1 6073:1 6273:1 6364:1 6370:1 6374:1 6402:1 6414:1 6431:1 6457:1 6463:1 6596:8 6731:1 6737:1 6760:1 6790:1 6835:3 6846:1 6857:2 6865:1 6877:2 6881:1 6892:6 6909:2 6911:1 6995:1 7014:1 7066:1 7075:1 7097:2 7116:1 7133:1 7140:2 7144:1 7312:1 7322:4 7339:1 7360:1 7368:1 7471:2 7597:1 7710:2 7718:1 7728:1 7751:1 7828:1 7841:3 7858:1 7928:1 7940:1 7958:1 8023:1 8038:2 8048:1 8083:1 8184:1 8191:5 8194:1 8201:1 8224:2 8342:1 8362:3 8410:1 8455:1 8514:1 8561:2 8575:1 8576:1 8609:1 8633:1 8640:2 8682:1 8715:1 8716:5 8718:5 8735:1 8780:2 8806:2 8832:1 8853:1 8871:1 8881:1 8901:1 8961:1 8980:1 8985:1 9015:1 9033:1 9105:1 9150:1 9159:1 9162:1 9177:1 9216:1 9219:1 9295:1 9313:1 9353:1 9381:1 9416:1 9437:1 9439:1 9443:2 9453:4 9510:5 9537:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:5 9690:1 9710:1 9725:2 9727:1 9799:1 9811:1 9813:1 9815:1 9823:1 9849:1 9961:1 9992:1 10089:2 10162:1 10246:1 10367:2 10387:1 10395:1 10412:1 10419:1 10456:2 10460:1 10474:2 10506:1 10541:1 10561:1 10596:5 10607:1 10783:5 10804:5 10825:1 10829:1 10840:1 10841:1 10924:1 11013:1 11036:1 11063:1 11089:5 11118:1 11195:1 11230:1 11279:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:1 11524:1 11563:1 11567:1 11666:1 11676:1 11682:1 11700:1 11708:1 11780:1 11786:1 11792:1 11803:1 11811:1 11817:1 11860:2 11915:1 11955:2 11982:1 12030:3 12103:1 12105:1 12108:1 12111:1 12157:1 12172:1 12205:1 12227:1 12242:2 12281:1 12295:1 12305:1 12352:1 12377:1 12483:1 12509:1 12521:1 12528:1 12540:1 12601:1 12657:1 12723:1 12741:1 12770:1 12776:1 12838:1 12852:1 12859:1 12866:1 12874:1 12891:1 12896:1 12964:1 12991:1 12997:2 13009:1 13053:2 13061:1 13136:1 13184:1 13188:1 13219:1 13236:3 13237:1 13287:1 13295:1 13297:1 13345:1 13515:1 13540:1 13555:1 13641:1 13750:1 13776:2 13777:1 13790:1 13854:1 13935:3 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14049:2 14064:1 14073:1 14086:1 14089:2 14114:1 14158:2 14208:1 14211:1 14227:1 14230:1 14276:3 14279:1 14283:1 14293:2 14387:1 14388:1 14398:1 14401:1 14409:1 14412:1 14477:1 14535:1 14597:1 14659:1 14680:4 14740:3 14809:1 14837:1 14843:3 14852:3 14870:1 14878:1 14879:1 14954:1 14973:1 14999:1 15054:4 15123:1 15141:1 15164:1 15182:1 15227:5 15247:2 15285:1 15306:1 15384:1 15454:1 15466:1 15474:1 15492:1 15587:1 15611:1 15676:2 15681:1 15687:1 15738:1 15740:1 15789:1 15821:5 15825:1 15839:1 15866:2 15884:1 15921:1 15950:1 15960:1 15962:1 15980:1 16077:1 16130:1 16159:2 16187:1 16228:1 16268:1 16282:1 16341:1 16351:1 16409:691 16424:1 16592:1 16599:1 16698:8 16864:2 16884:1 16888:1 16896:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:1 17077:2 17080:3 17088:1 17115:3 17156:1 17204:2 17218:1 17317:1 17381:1 17407:1 17446:1 17449:2 17536:2 17537:1 17592:1 17602:1 17612:1 17614:1 17636:1 17675:1 17688:1 17689:1 17693:1 17803:1 17860:1 17953:3 17990:1 18021:1 18081:1 18090:1 18153:1 18250:1 18267:1 18288:1 18312:1 18332:1 18336:1 18342:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:9 18475:1 18493:1 18671:1 18708:1 18758:1 18767:1 18780:1 18825:3 18843:2 18844:1 18850:1 18906:1 18914:2 18922:2 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19066:1 19076:3 19159:1 19253:2 19306:1 19332:1 19342:1 19344:2 19382:1 19399:2 19405:1 19407:1 19421:1 19457:1 19501:2 19505:1 19517:1 19552:1 19564:1 19567:1 19577:1 19584:1 19611:5 19723:1 19743:1 19807:1 19812:1 19852:1 19867:4 19883:2 19918:1 19924:1 19925:2 19940:1 19948:1 19965:1 19968:2 20034:1 20046:5 20103:5 20174:2 20259:2 20315:1 20338:1 20340:1 20344:1 20359:1 20361:1 20405:1 20458:3 20507:2 20553:1 20580:1 20682:1 20705:2 20737:4 20757:1 20799:1 20852:1 20857:1 20947:1 20988:1 21006:1 21012:1 21033:1 21048:2 21054:1 21059:1 21080:1 21081:1 21104:1 21154:1 21198:1 21210:2 21223:1 21245:1 21250:1 21316:1 21351:1 21379:1 21505:1 21520:2 21548:2 21612:1 21617:1 21626:1 21648:1 21650:5 21701:1 21739:2 21756:1 21795:1 21832:1 21849:2 21864:4 21901:1 21910:1 21914:1 21918:5 21928:1 22019:2 22022:2 22034:1 22044:1 22048:1 22051:1 22111:1 22193:2 22266:4 22287:5 22290:1 22293:1 22300:1 22357:1 22430:1 22549:1 22550:1 22745:2 22760:1 22787:1 22908:1 22911:1 22917:2 22975:1 23045:1 23058:1 23103:1 23123:1 23158:2 23175:1 23180:1 23230:2 23309:1 23351:1 23418:1 23426:2 23463:3 23468:1 23485:1 23494:8 23555:1 23573:1 23581:3 23587:1 23596:1 23665:3 23666:1 23690:1 23703:1 23710:2 23713:1 23725:1 23745:2 23785:5 23796:2 23800:1 23802:1 23840:1 23881:1 23910:1 23921:1 23969:2 23971:1 24015:1 24114:1 24176:1 24179:5 24184:1 24258:1 24279:1 24313:1 24323:1 24352:1 24357:1 24364:1 24410:1 24416:2 24440:1 24460:1 24464:1 24498:2 24502:1 24504:2 24531:1 24548:1 24557:1 24590:1 24728:1 24761:1 24780:1 24786:1 24791:1 24820:1 24861:1 24915:1 24967:1 24980:1 24998:1 25013:1 25034:4 25053:2 25077:1 25113:1 25135:1 25139:1 25227:1 25238:1 25281:1 25318:1 25375:1 25379:1 25415:1 25416:1 25422:1 10 6:2 50:1 65:1 164:5 172:3 173:1 246:1 249:1 374:1 395:1 429:1 508:1 539:1 557:2 564:2 690:1 701:1 707:1 715:1 738:1 792:1 805:2 807:1 815:2 831:2 844:1 846:1 847:3 877:1 914:2 934:1 1007:1 1032:1 1087:1 1096:2 1176:1 1185:1 1205:1 1254:1 1268:1 1284:2 1327:1 1337:1 1342:1 1343:1 1346:2 1425:1 1428:1 1432:2 1464:2 1497:1 1554:1 1586:2 1621:2 1643:1 1661:1 1673:1 1685:2 1704:2 1769:1 1816:2 1926:3 1956:1 1992:2 1993:2 2045:1 2049:1 2051:1 2059:2 2060:1 2170:1 2183:1 2258:1 2292:1 2300:2 2359:1 2434:1 2441:2 2450:1 2473:5 2477:1 2538:4 2552:1 2606:4 2611:1 2614:2 2619:2 2638:1 2641:1 2654:1 2660:1 2670:1 2675:3 2686:1 2693:1 2749:1 2786:1 2812:2 2814:1 2817:1 2863:1 2881:1 2884:1 2944:4 2948:1 2964:1 3022:1 3031:5 3054:1 3133:1 3167:1 3176:1 3177:1 3230:1 3254:1 3268:1 3306:2 3340:2 3345:3 3364:1 3388:1 3397:1 3428:1 3440:1 3470:1 3535:1 3563:2 3699:1 3717:1 3743:1 3750:1 3766:1 3807:1 3811:1 3816:1 3830:1 3837:1 3838:1 3891:1 3945:2 3954:1 3993:1 4020:1 4051:1 4066:2 4077:2 4106:3 4112:1 4116:2 4140:1 4167:1 4185:1 4194:2 4207:1 4227:1 4240:1 4260:1 4281:1 4304:2 4309:1 4312:1 4370:1 4383:1 4385:1 4388:2 4393:2 4413:2 4438:1 4466:1 4510:1 4526:1 4618:1 4623:1 4714:1 4774:1 4792:2 4822:2 4877:1 4903:1 4965:1 4969:2 5007:1 5011:1 5042:1 5102:1 5110:1 5115:8 5185:2 5264:1 5322:3 5324:2 5407:1 5428:1 5447:4 5539:1 5551:1 5640:1 5651:1 5677:2 5725:1 5757:5 5840:2 5849:1 5889:2 5899:1 5994:5 6027:1 6048:3 6052:1 6053:1 6073:1 6273:1 6364:1 6370:1 6374:1 6402:1 6414:1 6431:1 6457:1 6463:1 6596:8 6731:1 6737:1 6760:1 6790:1 6835:3 6846:1 6857:2 6865:1 6877:2 6881:1 6892:7 6909:2 6911:1 6995:1 7014:1 7066:1 7075:1 7097:2 7116:1 7133:1 7140:2 7144:1 7312:1 7322:4 7339:1 7360:1 7368:1 7471:2 7597:1 7710:2 7718:1 7728:1 7751:1 7828:1 7841:3 7858:1 7928:1 7940:1 7958:1 8023:1 8038:2 8048:1 8083:1 8184:1 8191:5 8194:1 8201:1 8224:2 8342:1 8362:3 8410:1 8455:1 8514:1 8561:2 8575:1 8576:1 8609:1 8633:1 8640:2 8682:1 8715:1 8716:5 8718:5 8735:1 8780:2 8806:2 8832:1 8853:1 8871:1 8881:1 8901:1 8961:1 8980:1 8985:1 9015:1 9033:1 9105:1 9150:1 9159:1 9162:1 9177:1 9216:1 9219:1 9295:1 9313:1 9353:1 9381:2 9416:1 9437:1 9439:1 9443:2 9453:4 9464:1 9510:5 9537:1 9541:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:5 9690:1 9710:1 9725:2 9727:1 9799:1 9811:1 9813:1 9815:1 9823:1 9849:1 9961:1 9989:1 9992:1 10089:2 10162:1 10246:1 10367:2 10387:1 10395:1 10412:1 10419:1 10456:2 10460:1 10474:2 10506:1 10541:1 10561:1 10596:5 10607:1 10783:5 10804:5 10825:1 10829:1 10840:1 10841:1 10924:1 11013:1 11036:1 11063:1 11089:5 11118:1 11195:1 11230:1 11279:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:1 11524:1 11563:1 11567:1 11666:1 11676:1 11682:1 11700:1 11708:1 11780:1 11786:1 11792:1 11803:1 11811:2 11817:1 11860:2 11915:1 11936:1 11941:1 11955:2 11982:1 12030:3 12103:1 12105:1 12108:1 12111:1 12157:1 12172:1 12205:1 12227:1 12242:2 12281:1 12295:1 12305:1 12352:1 12377:1 12483:1 12509:1 12521:1 12528:1 12540:1 12601:2 12657:1 12723:1 12741:1 12770:1 12776:1 12838:1 12852:1 12859:1 12866:1 12874:1 12891:1 12896:1 12964:1 12991:1 12997:2 13009:1 13053:2 13061:1 13136:1 13184:1 13188:1 13219:1 13236:3 13237:1 13287:1 13295:1 13297:1 13345:1 13515:1 13540:1 13555:1 13641:1 13750:1 13776:2 13777:1 13790:1 13854:1 13935:3 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14049:2 14064:1 14073:1 14086:1 14089:3 14114:1 14158:2 14166:1 14208:1 14211:1 14227:1 14230:1 14276:3 14279:1 14283:1 14293:2 14387:1 14388:1 14398:1 14401:1 14409:1 14412:1 14477:1 14535:1 14597:1 14659:1 14680:4 14740:3 14809:1 14837:1 14843:3 14852:3 14870:1 14878:1 14879:1 14954:1 14973:1 14999:1 15054:4 15123:1 15141:1 15164:1 15182:1 15227:5 15247:2 15285:1 15306:1 15384:1 15454:1 15466:2 15474:1 15492:1 15587:1 15611:1 15676:2 15681:1 15687:1 15738:1 15740:1 15789:1 15821:5 15825:1 15839:1 15866:2 15884:1 15921:1 15950:1 15960:1 15962:1 15980:1 16077:1 16130:1 16159:2 16187:1 16228:1 16264:1 16268:1 16282:1 16341:1 16351:1 16409:709 16424:1 16592:1 16599:1 16698:8 16864:2 16884:1 16888:1 16896:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:1 17077:2 17080:3 17088:1 17115:3 17156:1 17204:2 17218:1 17317:1 17381:1 17407:1 17446:1 17449:2 17536:2 17537:1 17592:1 17602:1 17612:1 17614:1 17636:1 17675:1 17688:1 17689:1 17693:1 17803:1 17860:1 17953:3 17990:1 18021:1 18081:1 18090:1 18153:1 18250:1 18267:1 18288:1 18312:1 18332:1 18336:1 18342:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:9 18475:1 18493:1 18671:1 18708:1 18758:1 18767:1 18780:1 18825:3 18843:2 18844:1 18850:1 18906:1 18914:2 18922:2 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19066:1 19076:3 19159:1 19253:2 19304:1 19306:1 19332:1 19342:1 19344:2 19382:1 19399:2 19405:1 19407:1 19421:1 19457:1 19501:2 19505:1 19517:1 19552:1 19564:1 19567:1 19577:1 19584:1 19611:5 19723:1 19743:1 19807:1 19812:1 19852:1 19867:4 19883:2 19918:1 19924:2 19925:2 19940:1 19948:1 19965:1 19968:2 20034:1 20046:5 20103:5 20174:2 20259:2 20315:1 20338:1 20340:1 20344:1 20359:1 20361:1 20405:1 20458:3 20507:2 20553:1 20580:1 20682:1 20705:2 20737:4 20757:1 20799:1 20852:1 20853:1 20857:1 20947:1 20988:1 21006:1 21012:1 21033:1 21048:2 21054:1 21059:1 21080:1 21081:1 21104:1 21154:1 21198:1 21210:2 21223:1 21245:1 21250:1 21316:1 21351:1 21379:1 21413:1 21505:1 21520:2 21548:2 21612:1 21617:1 21626:1 21648:1 21650:5 21701:1 21739:2 21756:1 21795:1 21832:1 21849:2 21864:4 21901:1 21910:1 21914:1 21918:5 21928:1 22011:1 22019:2 22022:2 22034:1 22044:1 22048:1 22051:1 22111:1 22193:2 22266:4 22287:5 22290:1 22293:1 22300:1 22357:1 22409:1 22430:1 22549:1 22550:1 22693:1 22745:2 22760:1 22787:1 22908:1 22911:1 22917:2 22975:1 23045:1 23058:1 23103:1 23123:1 23158:2 23175:1 23180:1 23230:2 23309:1 23351:1 23418:1 23426:2 23463:3 23468:1 23485:1 23494:8 23555:1 23573:1 23581:3 23587:1 23596:1 23665:4 23666:1 23690:1 23703:1 23710:2 23713:1 23725:1 23726:1 23745:2 23785:5 23796:2 23800:1 23802:1 23840:1 23881:1 23910:1 23921:1 23969:2 23971:1 24015:1 24114:1 24176:1 24179:5 24184:1 24258:1 24279:1 24313:1 24323:1 24352:1 24357:1 24364:1 24410:1 24416:2 24440:1 24460:1 24464:1 24498:2 24502:1 24504:2 24531:1 24548:1 24557:1 24590:1 24728:1 24761:1 24780:1 24786:1 24791:1 24820:1 24861:1 24915:1 24967:1 24980:1 24998:1 25013:1 25034:4 25053:2 25077:1 25113:1 25135:1 25139:1 25227:1 25238:1 25281:2 25318:1 25375:1 25379:1 25415:1 25416:1 25422:1 10 6:2 50:1 65:1 164:5 172:3 173:1 246:1 249:1 374:1 395:1 429:1 508:1 539:1 555:1 557:2 564:2 690:1 701:2 707:1 715:1 738:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:3 877:1 914:2 934:1 1007:1 1032:1 1087:1 1096:2 1176:1 1185:1 1205:1 1254:1 1268:1 1284:3 1327:1 1333:1 1337:1 1342:1 1343:1 1346:2 1425:1 1428:1 1432:2 1464:2 1497:1 1554:1 1586:2 1605:1 1621:2 1643:1 1661:1 1673:1 1685:2 1704:2 1769:1 1816:2 1926:3 1956:1 1992:2 1993:2 2045:1 2049:1 2051:1 2059:2 2060:1 2170:1 2183:1 2249:1 2258:1 2292:1 2300:2 2359:1 2434:1 2441:2 2450:1 2473:5 2477:1 2538:4 2552:1 2606:4 2611:1 2614:2 2619:2 2638:1 2641:1 2654:1 2660:1 2670:1 2675:3 2686:1 2693:1 2730:1 2749:1 2786:1 2812:2 2814:1 2817:1 2863:1 2881:1 2884:1 2885:1 2944:4 2948:1 2964:1 3022:1 3031:5 3054:1 3133:1 3167:1 3176:1 3177:1 3230:1 3254:1 3268:1 3306:2 3340:2 3345:3 3364:1 3382:1 3388:1 3397:1 3427:1 3428:1 3440:1 3470:1 3535:1 3563:2 3699:1 3703:1 3717:1 3743:1 3750:1 3766:1 3807:1 3811:1 3816:1 3830:1 3837:1 3838:1 3891:1 3945:2 3954:1 3993:1 4020:1 4051:1 4066:2 4077:2 4106:3 4112:1 4116:2 4140:1 4167:1 4185:1 4194:2 4207:1 4227:1 4240:1 4260:1 4281:1 4304:2 4309:1 4312:1 4370:1 4383:1 4385:1 4388:2 4393:2 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4714:2 4774:1 4792:2 4822:2 4877:1 4903:1 4929:1 4965:1 4969:2 5007:1 5011:1 5042:1 5102:1 5110:1 5115:8 5185:2 5264:1 5322:3 5324:2 5407:1 5415:1 5428:1 5447:4 5539:1 5551:1 5640:1 5651:1 5677:2 5679:1 5725:1 5757:5 5840:2 5849:1 5889:2 5899:2 5994:5 6027:1 6048:4 6052:1 6053:1 6073:1 6273:1 6364:1 6370:1 6374:1 6402:1 6414:1 6431:1 6457:1 6463:1 6596:8 6731:1 6737:1 6760:1 6790:1 6835:3 6846:1 6857:2 6865:1 6877:2 6881:1 6892:7 6909:2 6911:1 6995:1 7014:1 7066:1 7075:1 7097:2 7116:1 7133:1 7140:2 7144:1 7312:1 7322:4 7339:1 7360:1 7368:1 7471:2 7597:1 7710:2 7718:1 7728:1 7751:1 7828:1 7841:3 7858:1 7928:2 7940:1 7958:1 8023:1 8038:2 8048:1 8083:1 8184:1 8191:5 8194:1 8201:1 8224:2 8326:1 8342:1 8362:3 8410:1 8455:1 8514:1 8561:2 8575:1 8576:1 8609:1 8633:1 8640:2 8682:1 8715:1 8716:5 8718:5 8735:1 8780:2 8806:2 8832:1 8853:1 8871:1 8881:1 8901:1 8961:1 8980:1 8985:1 9015:1 9033:1 9105:1 9150:1 9159:1 9162:1 9177:1 9216:1 9219:1 9295:1 9313:1 9353:1 9381:2 9392:1 9416:1 9437:1 9439:1 9443:3 9453:4 9456:1 9464:1 9510:5 9537:1 9541:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:5 9690:1 9710:1 9725:2 9727:1 9799:1 9811:1 9813:1 9815:1 9823:2 9849:1 9961:1 9989:1 9992:1 10089:2 10162:1 10246:1 10367:2 10387:1 10395:1 10412:1 10419:1 10456:2 10460:1 10474:2 10506:1 10541:1 10561:1 10596:5 10607:1 10783:5 10804:5 10825:1 10829:1 10840:1 10841:1 10924:1 11013:1 11036:1 11063:1 11089:5 11118:1 11195:1 11230:1 11279:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:1 11524:1 11563:1 11567:1 11666:1 11676:1 11678:1 11682:1 11700:2 11708:1 11780:1 11786:1 11792:2 11803:1 11811:2 11817:1 11860:2 11915:1 11936:1 11941:1 11955:2 11982:1 12030:3 12103:1 12105:1 12108:1 12111:1 12157:1 12172:1 12205:1 12227:1 12242:2 12281:1 12295:1 12305:1 12352:1 12367:1 12377:1 12483:1 12509:1 12521:1 12528:1 12540:1 12601:2 12657:1 12723:1 12741:1 12770:1 12776:1 12838:1 12852:1 12859:1 12866:1 12874:1 12891:1 12896:1 12964:1 12991:1 12997:2 13009:1 13053:2 13061:1 13136:1 13184:1 13188:1 13219:1 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13345:1 13433:1 13515:1 13540:1 13555:1 13641:1 13750:1 13776:3 13777:1 13790:2 13854:1 13935:3 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14049:2 14064:1 14073:1 14086:1 14089:3 14114:1 14158:2 14166:1 14208:1 14211:1 14227:1 14230:1 14276:3 14279:1 14283:1 14293:2 14387:1 14388:1 14398:1 14401:1 14409:1 14412:1 14477:1 14535:1 14597:1 14659:1 14680:4 14740:3 14809:1 14837:1 14843:4 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14999:1 15054:4 15123:1 15141:1 15164:1 15182:1 15227:5 15247:2 15285:1 15306:1 15384:1 15393:1 15454:1 15466:2 15474:1 15492:1 15587:1 15611:1 15676:3 15681:1 15687:1 15738:1 15740:1 15789:1 15821:5 15825:1 15826:1 15839:1 15866:2 15884:1 15921:1 15950:1 15960:1 15962:1 15980:1 16046:1 16077:1 16090:1 16130:1 16159:2 16187:1 16228:1 16264:2 16268:1 16282:1 16321:1 16341:1 16351:1 16409:755 16424:1 16592:1 16599:1 16698:8 16864:2 16884:1 16888:2 16896:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:1 17077:2 17080:3 17088:1 17115:3 17156:1 17204:2 17218:1 17317:1 17351:1 17381:1 17407:1 17446:1 17449:2 17536:2 17537:1 17592:1 17602:1 17612:1 17614:1 17623:1 17636:2 17675:1 17688:1 17689:1 17693:1 17803:1 17860:1 17953:3 17990:1 18021:1 18081:1 18090:1 18153:1 18250:1 18267:1 18288:2 18312:1 18332:1 18336:1 18342:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:9 18475:1 18493:1 18633:1 18671:1 18708:1 18758:1 18767:1 18780:1 18825:3 18843:2 18844:1 18850:1 18866:1 18906:1 18914:2 18922:2 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19066:1 19076:3 19159:1 19247:1 19253:2 19304:1 19306:1 19332:1 19342:1 19344:2 19382:2 19399:2 19405:1 19407:1 19421:1 19457:1 19501:2 19505:1 19517:1 19552:1 19564:1 19567:1 19577:1 19584:2 19611:5 19723:1 19743:1 19807:1 19812:1 19852:1 19867:4 19883:2 19918:1 19924:2 19925:2 19940:1 19948:1 19965:1 19968:2 20034:1 20046:5 20103:5 20174:2 20259:2 20315:1 20338:1 20340:1 20344:1 20359:1 20361:1 20405:1 20458:3 20507:2 20553:1 20580:1 20682:1 20705:2 20737:4 20757:1 20799:1 20852:1 20853:1 20857:1 20947:1 20988:1 21006:1 21012:1 21033:1 21048:2 21054:1 21059:1 21080:2 21081:1 21104:1 21154:1 21198:1 21210:2 21223:1 21244:1 21245:1 21250:1 21279:1 21316:1 21351:1 21356:1 21379:1 21413:1 21505:1 21520:2 21548:2 21612:1 21617:1 21626:1 21648:1 21650:5 21701:1 21739:2 21756:1 21795:1 21832:1 21849:2 21864:4 21901:1 21910:1 21914:1 21918:5 21928:1 22011:1 22014:1 22019:2 22022:2 22034:1 22044:1 22048:1 22051:1 22111:1 22193:2 22266:4 22287:5 22290:1 22293:1 22300:1 22357:1 22409:1 22430:1 22549:1 22550:1 22560:1 22693:2 22745:2 22760:1 22787:1 22908:1 22911:1 22917:2 22975:1 23045:1 23058:1 23103:1 23123:1 23158:2 23175:1 23180:1 23230:2 23309:1 23351:1 23418:1 23426:2 23463:3 23468:1 23485:1 23494:8 23555:1 23573:1 23581:3 23587:1 23596:1 23665:4 23666:1 23690:1 23703:1 23706:1 23710:2 23713:1 23725:1 23726:1 23745:2 23785:5 23796:2 23800:1 23802:1 23840:1 23881:1 23910:1 23921:1 23969:3 23971:1 24006:1 24015:1 24114:1 24176:1 24179:5 24184:1 24258:1 24279:1 24313:1 24323:1 24348:1 24352:1 24357:1 24364:1 24396:1 24410:1 24416:2 24429:1 24440:1 24460:1 24464:1 24498:3 24502:1 24504:2 24531:1 24548:1 24557:1 24561:1 24590:1 24728:1 24761:1 24780:1 24786:1 24791:1 24820:1 24861:1 24868:1 24898:1 24915:1 24967:1 24980:1 24998:1 25013:1 25034:4 25053:2 25077:1 25113:1 25135:1 25139:1 25227:1 25238:1 25281:2 25318:1 25375:1 25379:1 25415:1 25416:1 25422:1 10 6:2 50:1 65:1 164:5 172:3 173:1 246:1 249:1 311:1 374:1 395:1 429:1 508:1 539:1 555:1 557:2 564:2 579:1 690:1 701:2 707:1 715:1 738:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:3 877:1 914:2 934:1 1007:1 1032:1 1087:1 1096:2 1176:1 1185:1 1205:1 1254:1 1268:1 1284:3 1327:1 1333:1 1337:1 1342:1 1343:1 1346:2 1425:1 1428:1 1432:2 1464:2 1497:1 1554:1 1586:2 1605:1 1621:2 1643:1 1661:1 1673:1 1685:2 1704:2 1769:1 1816:2 1926:3 1956:1 1992:2 1993:2 2045:2 2049:1 2051:1 2059:2 2060:1 2170:1 2183:1 2249:1 2258:1 2292:1 2300:2 2359:1 2434:1 2441:2 2450:1 2473:5 2477:1 2484:1 2538:4 2552:1 2606:4 2611:1 2614:2 2619:2 2638:1 2641:1 2654:1 2660:1 2670:1 2675:3 2686:1 2693:1 2730:1 2749:1 2786:1 2812:2 2814:1 2817:1 2863:1 2881:1 2884:1 2885:1 2944:4 2948:1 2964:1 3022:1 3031:5 3054:1 3133:1 3167:1 3176:1 3177:1 3182:1 3230:1 3254:1 3268:1 3306:2 3340:2 3345:3 3364:1 3382:1 3388:1 3397:1 3427:1 3428:1 3440:1 3470:1 3535:1 3563:2 3652:1 3699:1 3703:1 3717:1 3743:1 3750:1 3766:1 3807:1 3811:1 3816:1 3830:1 3837:1 3838:1 3891:1 3945:2 3954:1 3993:1 4020:1 4051:1 4066:2 4077:2 4106:3 4112:1 4116:2 4140:1 4167:1 4185:1 4194:2 4207:1 4227:1 4240:2 4260:1 4281:1 4304:2 4309:1 4312:1 4370:1 4383:1 4385:1 4388:2 4393:2 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4714:2 4774:1 4792:2 4822:2 4877:1 4903:1 4929:1 4965:1 4969:2 5007:1 5011:1 5042:1 5102:1 5110:1 5115:9 5185:2 5264:1 5322:3 5324:2 5407:1 5415:1 5428:1 5447:4 5539:1 5551:1 5640:1 5651:1 5677:2 5679:1 5725:1 5757:5 5840:2 5849:1 5889:2 5899:2 5994:6 6027:1 6048:4 6052:1 6053:1 6073:1 6273:1 6364:1 6370:1 6374:1 6402:1 6414:1 6431:1 6457:1 6463:1 6596:9 6731:1 6737:1 6760:1 6790:1 6835:3 6846:1 6857:2 6865:1 6877:2 6881:1 6892:8 6909:2 6911:1 6995:1 7014:1 7066:1 7075:1 7097:2 7116:1 7133:1 7140:2 7144:1 7312:1 7322:4 7339:1 7360:1 7368:1 7471:2 7597:1 7710:2 7718:1 7728:1 7751:1 7828:1 7841:3 7858:1 7928:2 7940:1 7958:1 8023:1 8038:2 8048:1 8083:1 8184:1 8191:5 8194:1 8201:1 8224:2 8326:1 8342:1 8362:3 8410:1 8455:1 8514:1 8531:1 8561:2 8575:1 8576:1 8609:1 8633:1 8640:2 8682:1 8715:1 8716:5 8718:5 8735:1 8780:2 8806:2 8832:1 8853:1 8871:1 8881:1 8901:1 8961:1 8980:1 8985:1 9015:1 9033:1 9105:1 9150:1 9159:1 9162:1 9177:1 9216:1 9219:1 9248:1 9295:1 9313:1 9353:1 9381:2 9392:1 9416:1 9437:1 9439:1 9443:3 9453:4 9456:1 9464:1 9510:6 9537:1 9541:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:5 9690:1 9710:1 9725:2 9727:1 9799:1 9811:1 9813:1 9815:1 9823:2 9849:1 9961:1 9989:1 9992:1 10089:2 10162:1 10246:1 10367:2 10387:1 10395:1 10412:1 10419:1 10456:2 10460:1 10474:2 10506:1 10541:1 10561:1 10596:5 10607:1 10783:5 10804:5 10825:1 10829:1 10840:1 10841:1 10924:1 11013:1 11036:1 11063:1 11089:5 11118:1 11195:1 11230:1 11279:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:1 11524:1 11563:1 11567:1 11666:1 11676:1 11678:1 11682:1 11700:2 11708:1 11716:1 11780:1 11786:1 11792:2 11803:1 11811:2 11817:1 11860:2 11902:1 11915:1 11936:1 11941:1 11955:2 11982:1 12030:3 12103:1 12105:1 12108:1 12111:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:2 12281:1 12295:1 12305:1 12352:1 12367:1 12377:1 12483:1 12509:1 12521:1 12528:1 12540:1 12601:2 12657:1 12723:1 12734:1 12741:1 12770:1 12776:1 12838:1 12852:1 12859:1 12866:1 12874:1 12891:1 12896:1 12964:1 12991:1 12997:2 13009:1 13053:2 13061:1 13136:1 13184:1 13188:1 13219:1 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13345:1 13433:1 13515:1 13540:1 13555:1 13641:1 13750:1 13776:3 13777:1 13790:2 13854:1 13935:3 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14049:2 14064:1 14073:1 14086:1 14089:3 14114:1 14158:2 14166:1 14208:1 14211:1 14227:1 14230:1 14276:3 14279:1 14283:1 14293:2 14387:1 14388:1 14398:1 14401:1 14409:1 14412:1 14477:1 14535:1 14597:1 14659:1 14680:4 14740:3 14756:1 14809:1 14837:1 14843:4 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14999:1 15054:4 15123:1 15141:1 15164:1 15182:1 15227:6 15247:2 15285:1 15306:1 15384:1 15393:1 15415:1 15454:1 15466:2 15474:1 15492:1 15587:1 15611:1 15676:3 15681:1 15687:1 15738:1 15740:1 15789:1 15821:5 15825:1 15826:1 15839:1 15866:2 15884:1 15921:1 15950:1 15960:1 15962:1 15980:1 16046:1 16077:1 16090:1 16130:1 16159:2 16187:1 16228:1 16264:3 16268:1 16282:1 16321:1 16341:1 16351:1 16409:794 16424:1 16592:1 16599:1 16698:9 16864:2 16884:1 16888:2 16896:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:1 17077:2 17080:3 17088:1 17115:3 17156:1 17204:2 17218:1 17317:1 17351:1 17381:1 17407:1 17446:1 17449:2 17536:2 17537:1 17592:1 17602:1 17612:1 17614:1 17623:1 17636:2 17675:1 17688:1 17689:1 17693:1 17803:1 17860:1 17953:3 17990:1 18021:1 18081:1 18090:1 18153:1 18250:1 18267:1 18288:2 18312:1 18332:1 18336:1 18342:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:10 18475:1 18493:1 18633:1 18671:1 18708:1 18758:1 18767:1 18780:1 18825:3 18843:2 18844:1 18850:1 18866:1 18906:1 18914:2 18922:2 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19066:1 19076:3 19159:1 19247:1 19253:2 19304:1 19306:1 19332:1 19342:1 19344:2 19382:2 19399:2 19405:1 19407:1 19421:1 19457:1 19501:2 19505:1 19517:1 19552:1 19564:1 19567:1 19577:1 19584:2 19611:6 19723:1 19743:1 19807:1 19812:1 19852:1 19853:1 19867:4 19883:2 19918:1 19924:2 19925:2 19940:1 19948:1 19965:1 19968:2 20034:1 20046:5 20103:5 20174:2 20259:2 20315:1 20338:1 20340:1 20344:1 20359:1 20361:1 20405:1 20458:3 20507:2 20553:1 20580:1 20682:1 20705:2 20737:4 20757:1 20799:1 20852:1 20853:2 20857:1 20947:1 20988:1 21006:1 21012:1 21033:1 21048:2 21054:1 21059:1 21080:2 21081:1 21104:1 21154:1 21198:1 21210:2 21223:1 21244:1 21245:1 21250:1 21279:1 21316:1 21351:1 21356:1 21379:1 21413:1 21505:1 21520:2 21548:2 21612:1 21617:1 21626:1 21648:1 21650:5 21701:1 21739:2 21756:1 21795:1 21832:1 21849:2 21864:4 21901:1 21910:1 21914:1 21918:5 21928:1 22011:1 22014:1 22019:2 22022:2 22034:1 22044:1 22048:1 22051:1 22111:1 22193:2 22266:4 22287:5 22290:1 22293:1 22300:1 22357:1 22409:1 22430:1 22549:1 22550:1 22560:1 22693:3 22745:2 22760:1 22787:1 22908:1 22911:1 22917:2 22975:1 23045:1 23058:1 23103:1 23123:1 23158:2 23175:1 23180:1 23230:2 23299:1 23309:1 23351:1 23418:2 23426:2 23463:3 23468:1 23485:1 23494:9 23555:1 23573:1 23581:3 23587:1 23596:1 23665:4 23666:1 23690:1 23703:1 23706:1 23710:2 23713:1 23725:1 23726:1 23745:2 23785:5 23796:2 23800:1 23802:1 23840:1 23881:1 23910:1 23921:1 23969:3 23971:1 24006:1 24015:1 24114:1 24176:1 24179:5 24184:1 24258:1 24279:1 24313:1 24323:1 24348:1 24352:1 24357:1 24364:1 24396:1 24410:1 24416:2 24429:1 24440:1 24460:1 24464:1 24498:3 24502:1 24504:2 24531:1 24548:1 24557:1 24561:1 24590:1 24728:1 24761:1 24780:1 24786:1 24791:1 24820:1 24861:1 24868:1 24898:1 24915:1 24967:1 24980:1 24998:1 25013:1 25034:4 25053:2 25077:1 25113:1 25135:1 25139:1 25227:1 25238:1 25281:2 25318:1 25345:1 25375:1 25379:1 25415:1 25416:1 25422:1 10 6:2 50:1 65:1 164:5 172:3 173:1 246:1 249:1 311:2 374:1 395:1 429:1 508:1 539:1 555:1 557:2 564:2 579:1 690:1 701:2 707:1 715:1 738:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:3 877:1 914:2 918:1 934:1 1007:1 1032:1 1087:1 1096:2 1176:1 1185:1 1205:1 1254:1 1268:1 1269:1 1284:3 1327:1 1333:1 1337:1 1342:1 1343:1 1346:2 1425:2 1428:1 1432:2 1464:2 1497:1 1554:1 1586:2 1605:1 1621:2 1643:1 1661:1 1673:1 1685:2 1704:2 1769:1 1816:2 1855:1 1926:3 1956:1 1992:2 1993:2 2022:1 2045:2 2049:1 2051:1 2059:2 2060:1 2170:1 2183:1 2249:1 2258:1 2292:1 2300:2 2359:1 2434:1 2441:2 2450:1 2452:1 2473:5 2477:1 2484:1 2538:4 2552:1 2578:1 2606:4 2611:1 2614:2 2619:2 2638:1 2641:1 2654:2 2660:1 2670:1 2675:3 2686:1 2693:1 2730:1 2749:1 2786:1 2812:2 2814:1 2817:1 2863:1 2881:1 2884:1 2885:1 2927:1 2944:4 2948:1 2964:1 3022:1 3031:5 3054:1 3133:1 3167:1 3176:1 3177:1 3182:1 3230:1 3254:1 3268:1 3306:2 3340:2 3345:3 3364:1 3382:1 3388:1 3397:1 3427:1 3428:1 3440:1 3470:1 3535:1 3563:2 3652:1 3699:1 3703:1 3717:1 3743:1 3750:1 3766:1 3807:1 3811:1 3816:1 3830:1 3837:1 3838:1 3891:1 3945:2 3954:1 3993:1 4020:1 4051:1 4066:2 4077:2 4106:3 4112:1 4116:2 4140:1 4167:2 4185:1 4194:2 4207:1 4227:1 4240:2 4260:1 4281:3 4304:2 4309:1 4312:1 4370:1 4382:1 4383:1 4385:1 4388:2 4393:2 4394:1 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4714:3 4774:1 4792:2 4822:2 4877:1 4903:1 4929:1 4965:1 4969:2 5007:1 5011:1 5042:1 5102:1 5110:1 5115:10 5149:1 5183:1 5185:2 5264:1 5322:3 5324:2 5407:1 5415:1 5428:1 5447:4 5539:1 5551:1 5640:1 5651:1 5658:1 5677:2 5679:1 5725:1 5757:5 5840:2 5849:1 5889:2 5899:2 5994:7 6027:1 6048:4 6052:1 6053:1 6073:1 6104:1 6273:1 6364:1 6370:1 6374:1 6402:1 6414:1 6431:1 6457:1 6462:1 6463:1 6546:1 6596:10 6731:1 6737:1 6760:1 6790:1 6835:3 6846:1 6857:2 6865:1 6877:2 6881:1 6892:9 6909:2 6911:2 6920:1 6960:1 6995:1 7014:1 7066:1 7075:1 7097:2 7116:1 7133:1 7140:2 7144:1 7312:1 7322:5 7339:1 7360:1 7368:1 7471:2 7560:1 7597:1 7710:2 7718:1 7728:1 7751:1 7828:1 7841:3 7858:1 7928:2 7940:1 7958:1 8023:1 8038:2 8048:1 8065:1 8083:1 8184:1 8191:5 8194:1 8201:1 8224:2 8326:1 8342:1 8362:3 8384:1 8410:1 8455:1 8514:1 8531:1 8561:3 8575:1 8576:1 8609:1 8633:1 8640:2 8682:1 8715:1 8716:5 8718:5 8735:1 8780:2 8806:2 8832:1 8853:1 8871:1 8881:1 8901:1 8961:1 8980:1 8985:1 9015:1 9033:1 9105:1 9150:1 9159:1 9162:1 9177:1 9216:1 9219:1 9248:1 9295:1 9313:1 9353:1 9381:2 9392:1 9416:1 9437:1 9439:1 9443:3 9453:4 9456:1 9464:1 9510:7 9537:1 9541:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:5 9690:1 9710:1 9725:2 9727:1 9799:1 9811:1 9813:2 9815:1 9823:2 9849:1 9961:1 9989:1 9992:1 10089:2 10162:1 10246:1 10367:2 10387:1 10395:1 10400:1 10405:1 10412:1 10419:1 10456:2 10460:1 10474:2 10506:1 10541:1 10561:1 10596:5 10607:1 10783:5 10804:5 10819:2 10825:1 10829:1 10840:1 10841:1 10924:1 11013:2 11036:1 11063:1 11089:5 11118:1 11195:1 11230:1 11249:1 11279:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:1 11524:1 11563:1 11567:1 11574:1 11666:1 11676:1 11678:1 11682:1 11700:2 11708:1 11716:1 11780:1 11786:1 11792:2 11803:1 11811:2 11817:1 11860:2 11902:2 11915:1 11936:1 11941:1 11955:2 11982:1 12030:3 12103:1 12105:1 12108:1 12111:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:2 12281:1 12295:1 12305:1 12352:1 12367:1 12377:1 12474:1 12483:1 12489:2 12509:1 12521:1 12528:1 12540:1 12601:2 12657:1 12723:1 12734:1 12741:1 12770:1 12776:1 12838:1 12852:1 12859:1 12866:1 12874:1 12891:1 12896:1 12944:1 12964:1 12991:2 12996:1 12997:2 13009:1 13053:2 13061:1 13136:1 13184:1 13188:1 13209:1 13219:1 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13345:1 13433:1 13515:1 13540:1 13555:1 13641:1 13750:1 13776:3 13777:1 13790:2 13854:1 13914:1 13935:3 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14049:2 14064:1 14073:1 14086:1 14089:3 14114:1 14158:2 14166:1 14208:1 14211:1 14227:1 14230:1 14276:3 14279:1 14283:1 14293:2 14306:1 14370:1 14386:1 14387:1 14388:1 14398:1 14401:1 14409:1 14412:1 14477:1 14535:1 14597:1 14659:1 14680:4 14740:3 14756:1 14809:1 14837:1 14843:4 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14999:1 15054:4 15123:1 15141:1 15164:1 15182:1 15227:7 15247:2 15276:1 15285:1 15306:1 15384:1 15393:1 15415:1 15454:1 15466:2 15474:1 15492:1 15587:1 15611:1 15676:3 15681:1 15687:1 15699:1 15738:1 15740:1 15789:1 15821:5 15825:1 15826:1 15839:1 15858:1 15866:2 15884:1 15921:1 15950:1 15960:1 15962:1 15980:1 16046:1 16077:1 16090:1 16130:1 16159:2 16187:1 16228:1 16264:3 16268:1 16282:1 16321:1 16341:1 16351:1 16409:836 16424:1 16521:1 16592:1 16599:1 16698:10 16864:2 16884:1 16888:2 16896:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:1 17077:2 17080:3 17088:1 17115:3 17156:1 17204:2 17218:1 17317:1 17351:1 17381:1 17407:1 17446:1 17449:2 17517:1 17536:2 17537:1 17592:1 17602:1 17612:1 17614:1 17623:1 17636:2 17675:1 17688:1 17689:1 17693:1 17697:1 17803:2 17860:1 17953:3 17990:2 18021:1 18081:1 18090:1 18153:1 18250:1 18267:1 18288:2 18312:1 18332:1 18336:1 18342:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:11 18475:1 18493:1 18612:1 18633:1 18671:1 18708:1 18758:1 18767:1 18780:1 18825:3 18832:1 18843:2 18844:1 18850:1 18866:1 18868:1 18906:1 18914:2 18922:2 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19066:1 19067:1 19076:3 19159:1 19247:1 19253:2 19304:1 19306:1 19332:1 19342:1 19344:2 19382:2 19399:2 19405:1 19407:1 19421:1 19457:1 19501:2 19505:1 19517:1 19552:1 19564:1 19567:1 19577:1 19584:2 19611:7 19723:1 19743:1 19807:1 19812:1 19852:1 19853:1 19867:4 19883:2 19918:1 19924:2 19925:2 19940:1 19948:1 19965:1 19968:2 20034:1 20046:5 20103:5 20174:2 20259:2 20315:1 20338:1 20340:1 20344:1 20359:1 20361:1 20392:1 20405:1 20453:1 20458:3 20507:2 20553:1 20580:1 20682:1 20705:2 20737:4 20757:1 20799:1 20852:1 20853:2 20857:1 20878:1 20947:1 20988:1 21006:1 21012:1 21033:1 21043:1 21048:2 21054:1 21059:1 21080:2 21081:1 21104:1 21154:1 21198:1 21210:2 21223:1 21244:1 21245:1 21250:1 21279:1 21316:1 21351:1 21356:1 21379:1 21413:1 21505:1 21520:2 21548:2 21612:1 21617:1 21626:1 21648:1 21650:5 21701:1 21739:2 21756:1 21795:1 21832:1 21849:2 21864:4 21901:1 21910:1 21914:1 21918:5 21928:1 22011:1 22014:1 22019:2 22022:2 22034:1 22044:1 22048:1 22051:1 22111:1 22193:2 22266:4 22287:5 22290:2 22293:1 22300:1 22357:1 22409:1 22430:1 22549:1 22550:1 22560:1 22693:3 22745:2 22760:1 22787:1 22908:1 22911:1 22917:2 22975:1 23045:1 23058:1 23103:1 23123:1 23158:2 23175:1 23180:1 23230:2 23299:1 23309:1 23351:1 23418:3 23426:2 23463:3 23468:1 23485:1 23494:10 23521:1 23555:1 23573:1 23581:3 23587:1 23596:1 23665:4 23666:1 23690:1 23703:1 23706:1 23710:2 23713:1 23725:1 23726:1 23745:2 23785:5 23796:2 23800:1 23802:1 23840:1 23881:1 23910:1 23921:1 23969:3 23971:1 24006:1 24015:1 24114:1 24176:1 24179:5 24184:1 24258:1 24279:1 24313:2 24323:1 24348:1 24352:1 24357:1 24364:1 24396:1 24410:1 24416:2 24429:1 24440:1 24460:1 24464:1 24498:3 24502:1 24504:2 24531:1 24548:1 24557:1 24561:1 24590:1 24728:1 24761:1 24780:1 24786:1 24791:1 24804:1 24820:1 24861:1 24868:1 24898:1 24915:1 24967:1 24980:1 24998:1 25013:1 25034:4 25053:2 25077:1 25113:1 25135:1 25139:1 25227:1 25238:1 25281:2 25318:1 25345:1 25375:1 25379:1 25415:1 25416:1 25422:1 10 6:2 50:1 65:1 130:1 164:5 172:3 173:1 246:1 249:1 294:1 311:2 317:1 374:1 395:1 429:1 508:2 539:1 555:1 557:2 564:2 579:1 690:1 701:2 707:1 715:1 738:1 787:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:4 877:1 914:2 918:1 934:1 1007:1 1032:1 1087:1 1096:2 1129:1 1143:1 1176:1 1185:1 1205:1 1254:1 1268:1 1269:1 1284:3 1327:1 1333:1 1337:1 1342:1 1343:1 1346:2 1425:2 1428:1 1432:2 1464:2 1478:1 1497:1 1554:1 1586:2 1605:1 1621:2 1643:1 1661:1 1673:1 1685:2 1704:2 1769:1 1816:2 1855:1 1926:3 1956:1 1992:2 1993:2 2022:2 2045:2 2049:1 2051:1 2059:2 2060:1 2170:1 2183:1 2249:1 2258:1 2292:1 2300:2 2359:1 2434:1 2441:2 2450:1 2452:1 2473:5 2477:1 2484:1 2538:4 2552:1 2578:1 2606:4 2611:1 2614:2 2619:2 2638:1 2641:1 2654:2 2660:1 2670:1 2675:3 2686:1 2693:1 2701:1 2730:1 2749:1 2786:1 2812:2 2814:1 2817:1 2863:1 2881:1 2884:1 2885:1 2927:1 2944:4 2948:1 2964:1 3022:1 3031:5 3054:1 3133:1 3167:1 3176:1 3177:1 3182:1 3230:1 3254:1 3268:1 3305:1 3306:2 3340:2 3345:4 3364:1 3370:1 3382:1 3388:1 3397:1 3427:1 3428:1 3440:1 3449:1 3470:1 3522:1 3535:1 3563:2 3652:1 3691:1 3699:1 3703:1 3717:1 3743:1 3750:1 3766:1 3807:2 3810:1 3811:1 3816:1 3830:1 3837:1 3838:1 3891:1 3945:2 3954:1 3993:1 4020:1 4050:1 4051:1 4066:2 4077:2 4106:3 4112:1 4116:2 4140:1 4167:2 4185:1 4194:2 4207:1 4227:1 4240:2 4260:1 4281:3 4304:2 4309:1 4312:1 4370:1 4382:1 4383:1 4385:1 4388:2 4393:2 4394:1 4410:1 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4714:3 4774:1 4792:2 4822:2 4877:1 4903:1 4907:1 4929:1 4965:1 4969:2 5007:1 5011:1 5042:1 5102:1 5110:1 5115:12 5125:1 5149:2 5183:1 5185:2 5264:1 5322:3 5324:3 5400:1 5407:1 5415:1 5428:1 5447:4 5533:1 5539:1 5551:1 5640:1 5651:1 5658:1 5677:3 5679:1 5725:1 5757:5 5840:2 5849:1 5889:2 5898:1 5899:2 5994:9 6027:1 6048:4 6052:1 6053:1 6073:1 6104:1 6273:1 6364:1 6370:1 6374:1 6402:1 6414:1 6431:1 6457:1 6462:1 6463:1 6546:1 6596:12 6731:1 6737:1 6760:1 6790:1 6835:4 6846:1 6857:2 6865:1 6877:2 6881:1 6892:10 6909:2 6911:2 6920:1 6960:1 6995:1 7014:1 7066:1 7075:1 7097:2 7116:1 7133:1 7140:2 7144:1 7312:1 7322:5 7339:2 7360:1 7368:1 7471:2 7516:1 7560:1 7597:1 7710:2 7718:1 7728:1 7751:1 7828:1 7841:3 7858:1 7928:2 7940:1 7958:1 8023:1 8038:2 8048:1 8065:1 8083:1 8184:1 8191:5 8194:1 8201:1 8224:2 8326:1 8342:1 8362:3 8384:1 8410:1 8455:1 8514:1 8531:1 8561:3 8575:1 8576:1 8609:1 8633:1 8640:2 8682:1 8715:1 8716:5 8718:5 8735:1 8780:2 8806:2 8832:1 8842:1 8853:1 8871:1 8881:1 8901:2 8961:1 8980:1 8985:1 9015:1 9033:1 9105:1 9150:1 9159:1 9162:1 9177:1 9216:1 9219:1 9248:1 9295:1 9313:1 9353:1 9381:2 9392:1 9416:1 9437:1 9439:1 9443:3 9453:4 9456:1 9464:1 9510:9 9537:1 9541:1 9583:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:5 9690:1 9710:1 9725:2 9727:1 9799:1 9811:1 9813:2 9815:1 9823:2 9849:1 9961:1 9989:1 9992:1 10089:2 10162:1 10246:1 10367:2 10387:1 10395:1 10400:1 10405:1 10412:1 10419:1 10456:2 10460:1 10474:2 10506:1 10541:1 10561:1 10596:5 10607:1 10783:5 10804:5 10819:2 10825:1 10829:1 10840:1 10841:1 10924:1 11013:2 11036:1 11063:1 11089:5 11118:2 11195:1 11230:1 11249:1 11279:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:1 11524:1 11563:1 11567:1 11574:1 11666:1 11676:1 11678:1 11682:1 11700:2 11708:1 11716:1 11780:1 11786:1 11792:2 11803:1 11811:2 11817:1 11854:1 11860:2 11902:2 11915:1 11936:1 11941:1 11955:2 11982:1 12030:3 12103:1 12105:1 12108:1 12111:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:2 12281:1 12295:1 12305:1 12352:1 12367:1 12377:1 12474:1 12483:1 12489:2 12509:1 12521:1 12528:1 12540:1 12601:2 12619:1 12645:1 12657:1 12659:1 12723:1 12734:1 12741:1 12770:1 12776:1 12838:1 12852:1 12859:1 12866:1 12874:1 12891:1 12896:1 12944:1 12964:1 12991:2 12996:1 12997:2 13009:1 13053:2 13061:1 13136:1 13184:1 13188:1 13209:1 13219:1 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13345:1 13433:1 13515:1 13540:1 13555:1 13641:1 13750:1 13776:3 13777:1 13790:2 13854:1 13914:1 13935:3 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14049:2 14064:2 14073:1 14086:1 14089:3 14114:1 14158:2 14166:1 14208:1 14211:1 14227:1 14230:1 14276:4 14279:1 14283:1 14293:2 14306:1 14370:1 14386:1 14387:1 14388:1 14398:1 14401:1 14409:1 14412:1 14477:1 14535:1 14597:1 14659:1 14680:4 14740:3 14756:1 14809:1 14837:1 14843:4 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14999:1 15054:4 15123:1 15141:1 15164:1 15182:1 15227:9 15247:2 15276:1 15285:1 15306:1 15350:1 15378:1 15384:1 15393:1 15415:1 15435:1 15454:1 15466:2 15474:1 15492:1 15587:1 15611:1 15669:1 15676:3 15681:1 15687:1 15699:1 15738:1 15740:1 15789:1 15821:5 15825:1 15826:1 15839:1 15858:1 15866:2 15884:1 15921:1 15950:1 15960:1 15962:1 15980:1 16046:1 16077:1 16090:1 16130:1 16159:2 16161:1 16187:1 16228:1 16264:3 16268:1 16282:1 16321:1 16341:1 16351:1 16409:858 16424:1 16446:1 16521:1 16592:1 16599:1 16698:12 16864:2 16884:1 16888:2 16896:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:1 17077:2 17080:4 17088:1 17115:3 17156:1 17158:1 17204:2 17218:1 17317:1 17351:1 17381:1 17407:1 17446:1 17449:2 17517:2 17536:2 17537:1 17573:1 17592:1 17602:1 17612:1 17614:1 17623:1 17636:2 17675:1 17688:1 17689:1 17693:1 17697:2 17803:2 17820:1 17860:1 17953:3 17990:2 18021:1 18081:1 18090:1 18153:1 18250:2 18266:1 18267:1 18288:2 18312:1 18332:1 18336:1 18342:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:13 18475:1 18493:1 18612:1 18633:1 18671:1 18708:1 18758:1 18767:1 18780:1 18825:4 18832:1 18843:2 18844:1 18850:1 18866:1 18868:1 18906:1 18914:3 18922:2 18953:1 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19066:1 19067:1 19076:3 19159:1 19237:1 19247:1 19253:2 19304:1 19306:1 19327:1 19332:1 19342:1 19344:2 19382:2 19399:2 19405:1 19407:1 19421:1 19457:1 19501:2 19505:1 19517:1 19552:1 19564:1 19567:1 19577:1 19584:2 19611:9 19723:1 19743:1 19807:1 19812:1 19852:1 19853:1 19867:4 19883:3 19918:1 19924:2 19925:2 19940:1 19948:1 19965:1 19968:2 19973:1 20034:1 20046:5 20054:1 20103:5 20174:2 20259:2 20315:1 20338:1 20340:1 20344:1 20359:1 20361:1 20392:1 20405:1 20453:1 20458:4 20507:2 20553:1 20565:1 20580:1 20682:1 20705:2 20737:5 20757:1 20799:1 20852:1 20853:2 20857:1 20878:1 20881:1 20947:1 20988:1 21006:1 21012:1 21033:1 21043:1 21048:2 21054:1 21059:1 21080:2 21081:1 21104:1 21154:1 21198:1 21210:2 21223:1 21244:1 21245:1 21250:1 21279:1 21316:1 21351:1 21356:1 21379:1 21413:1 21505:1 21520:2 21548:2 21612:1 21617:1 21626:1 21648:1 21650:5 21701:1 21739:2 21756:1 21795:1 21832:1 21849:2 21864:4 21901:1 21910:1 21914:1 21918:5 21928:1 22011:1 22014:1 22017:1 22019:2 22022:2 22034:1 22044:1 22048:1 22051:2 22111:1 22193:2 22266:4 22287:5 22290:2 22293:1 22300:1 22357:1 22409:1 22430:1 22537:1 22549:1 22550:1 22560:1 22693:3 22745:2 22760:1 22787:1 22908:1 22911:1 22917:2 22933:1 22975:1 23045:1 23058:1 23103:1 23123:1 23145:1 23158:2 23175:1 23180:1 23230:2 23299:1 23309:2 23351:1 23418:3 23426:2 23463:3 23468:1 23485:1 23494:12 23521:1 23555:1 23573:1 23581:4 23587:1 23596:1 23665:4 23666:1 23690:1 23703:1 23706:1 23710:2 23713:1 23721:1 23725:1 23726:1 23745:2 23785:5 23796:2 23800:1 23802:1 23840:1 23881:1 23910:1 23921:1 23969:3 23971:1 24006:1 24015:1 24114:1 24176:1 24179:5 24184:1 24230:1 24258:1 24279:1 24313:2 24323:1 24348:1 24352:1 24357:1 24363:1 24364:1 24396:1 24410:1 24416:2 24429:1 24440:2 24460:1 24464:1 24498:4 24502:1 24504:2 24531:1 24548:1 24557:1 24561:1 24590:1 24728:1 24761:1 24780:1 24786:1 24791:1 24804:1 24820:1 24861:1 24868:1 24877:1 24898:1 24915:1 24967:1 24980:1 24998:1 25013:1 25034:4 25053:2 25077:1 25113:1 25135:1 25139:1 25227:1 25238:1 25281:2 25318:1 25345:1 25375:1 25376:1 25379:1 25415:1 25416:1 25422:1 10 4:1 6:2 50:1 65:1 130:1 164:5 172:3 173:1 246:1 249:1 294:1 311:2 317:1 374:1 395:1 429:1 466:1 508:2 539:1 555:1 557:2 564:2 579:1 690:1 701:2 707:1 715:1 738:1 787:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:4 877:1 914:2 918:1 934:1 1007:1 1032:1 1087:1 1096:2 1129:1 1143:1 1176:1 1185:1 1205:1 1254:1 1268:1 1269:1 1284:3 1327:1 1333:2 1337:1 1342:1 1343:1 1346:2 1425:2 1428:1 1432:2 1464:2 1478:1 1497:1 1554:1 1586:2 1605:1 1621:2 1643:1 1661:1 1673:1 1685:2 1704:2 1769:1 1816:2 1855:1 1926:3 1956:1 1992:2 1993:2 2022:2 2045:2 2049:1 2051:1 2059:2 2060:1 2170:1 2183:1 2249:1 2258:1 2292:1 2300:2 2359:1 2434:1 2441:2 2450:1 2452:1 2473:5 2477:1 2484:1 2538:4 2552:1 2578:2 2606:5 2611:1 2614:2 2619:2 2638:1 2641:1 2654:2 2660:1 2670:1 2675:4 2686:1 2693:1 2701:1 2730:1 2749:1 2786:1 2812:2 2814:1 2817:1 2863:1 2881:1 2884:1 2885:1 2927:1 2928:1 2944:4 2948:1 2964:1 3022:1 3031:5 3054:1 3133:1 3167:1 3176:1 3177:1 3182:1 3230:1 3254:1 3268:1 3305:1 3306:2 3340:2 3345:4 3364:1 3370:1 3382:1 3388:1 3397:1 3427:1 3428:1 3440:1 3449:1 3470:1 3522:1 3535:1 3563:2 3652:1 3691:1 3699:1 3703:2 3707:1 3717:1 3743:1 3750:1 3766:1 3807:2 3810:1 3811:1 3816:1 3830:1 3837:1 3838:1 3891:1 3925:1 3945:2 3954:1 3993:1 4020:1 4050:1 4051:1 4066:2 4077:2 4106:3 4112:1 4116:2 4140:1 4167:2 4185:1 4194:2 4207:1 4227:1 4240:2 4260:1 4281:4 4304:2 4309:1 4312:1 4370:1 4382:1 4383:1 4385:1 4388:2 4393:2 4394:1 4410:1 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4709:1 4714:3 4774:1 4792:2 4822:2 4877:1 4903:1 4907:1 4929:1 4965:1 4969:2 5007:1 5011:1 5027:1 5042:1 5102:1 5110:1 5115:12 5125:1 5149:2 5183:1 5185:2 5264:1 5322:3 5324:3 5400:1 5407:1 5415:1 5428:1 5447:4 5533:1 5539:1 5551:1 5640:1 5651:1 5658:1 5677:3 5679:1 5725:1 5757:5 5840:2 5849:1 5889:2 5898:1 5899:2 5967:1 5994:9 6027:1 6048:4 6052:1 6053:1 6072:1 6073:1 6104:1 6273:1 6364:1 6370:1 6374:1 6402:1 6414:1 6431:1 6457:1 6462:1 6463:1 6546:1 6596:12 6701:1 6731:1 6737:1 6760:1 6790:1 6835:4 6846:1 6857:2 6865:1 6877:2 6881:1 6892:10 6909:3 6911:2 6920:1 6960:1 6995:1 7014:1 7066:1 7075:1 7097:2 7116:1 7133:1 7140:2 7144:1 7312:1 7322:6 7323:1 7339:2 7360:1 7368:1 7471:2 7516:1 7560:1 7597:1 7710:2 7718:1 7728:1 7751:1 7828:1 7841:3 7858:1 7916:1 7928:2 7940:2 7958:1 8023:1 8038:2 8048:1 8065:1 8083:1 8184:1 8191:5 8194:1 8201:1 8224:2 8326:1 8342:1 8362:3 8384:1 8410:1 8455:1 8514:1 8531:1 8561:3 8575:1 8576:1 8609:1 8633:1 8640:2 8682:1 8715:1 8716:5 8718:5 8735:1 8780:2 8806:2 8832:1 8842:1 8853:1 8871:1 8881:1 8901:2 8961:1 8980:1 8985:1 9015:1 9033:1 9105:1 9150:1 9159:1 9162:1 9177:1 9216:1 9219:1 9248:1 9295:1 9313:1 9353:1 9381:2 9392:1 9416:1 9437:1 9439:1 9443:3 9453:4 9456:1 9464:2 9510:9 9523:1 9537:1 9540:1 9541:1 9583:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:5 9690:1 9710:1 9725:2 9727:1 9799:1 9811:1 9813:2 9815:1 9823:2 9849:1 9961:1 9989:2 9992:1 10089:2 10162:1 10246:1 10263:1 10367:2 10387:1 10395:1 10400:1 10405:1 10412:1 10415:1 10419:1 10456:2 10460:1 10474:2 10506:1 10541:1 10561:1 10590:1 10596:5 10607:1 10783:5 10804:5 10819:2 10825:1 10829:1 10840:1 10841:1 10924:1 11013:2 11036:1 11063:1 11089:5 11118:2 11195:1 11230:1 11249:1 11279:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:1 11524:1 11563:1 11567:1 11574:1 11666:1 11676:1 11678:1 11682:1 11684:1 11700:2 11708:1 11716:1 11780:1 11786:1 11792:2 11803:1 11811:2 11817:1 11833:1 11854:1 11860:2 11902:2 11915:1 11936:2 11941:1 11955:2 11978:1 11982:1 12030:3 12103:1 12105:1 12108:1 12111:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:2 12274:1 12281:1 12295:1 12305:1 12352:1 12367:1 12377:1 12474:1 12483:1 12489:2 12509:1 12521:2 12528:1 12540:1 12601:3 12619:1 12645:1 12657:1 12659:1 12723:1 12734:1 12741:1 12770:1 12776:1 12838:1 12852:1 12859:1 12866:1 12874:1 12891:1 12896:1 12944:1 12964:1 12991:2 12996:1 12997:2 13009:1 13053:2 13061:1 13136:1 13184:1 13188:1 13209:1 13219:1 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13307:1 13345:1 13433:1 13515:1 13540:1 13555:1 13641:1 13750:1 13776:4 13777:1 13790:2 13854:1 13914:1 13935:3 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14049:2 14064:2 14073:1 14086:1 14089:3 14114:1 14158:2 14166:1 14208:1 14211:1 14227:1 14230:1 14276:4 14279:1 14283:1 14293:2 14306:2 14370:1 14386:1 14387:1 14388:1 14398:1 14401:1 14409:1 14412:1 14477:1 14535:1 14597:1 14659:1 14680:4 14740:3 14756:1 14809:1 14837:1 14843:4 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14999:1 15054:4 15123:1 15141:1 15164:1 15182:1 15227:9 15247:2 15276:1 15285:1 15306:1 15350:1 15378:1 15384:1 15393:1 15415:1 15435:1 15454:1 15466:2 15474:1 15492:1 15587:1 15611:1 15669:1 15676:4 15681:1 15687:1 15699:1 15738:2 15740:1 15789:1 15821:5 15825:1 15826:1 15839:1 15858:1 15866:2 15884:1 15921:1 15950:1 15960:1 15962:1 15980:1 16046:1 16077:1 16090:1 16130:1 16159:2 16161:1 16187:1 16228:1 16264:3 16268:1 16282:1 16321:1 16341:1 16351:1 16409:913 16424:1 16446:1 16521:1 16592:1 16599:1 16637:1 16698:12 16864:2 16884:1 16888:2 16896:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:1 17077:2 17080:4 17088:1 17115:3 17156:1 17158:1 17204:2 17218:1 17317:1 17351:1 17381:1 17407:1 17446:1 17449:2 17517:2 17536:2 17537:1 17573:1 17592:1 17602:1 17612:1 17614:1 17623:1 17636:2 17675:1 17688:1 17689:1 17693:1 17697:2 17803:2 17820:1 17838:1 17860:1 17953:3 17990:2 18021:1 18081:1 18090:1 18145:1 18153:1 18250:2 18266:1 18267:1 18288:2 18312:1 18332:1 18336:1 18342:1 18346:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:13 18475:1 18493:1 18612:1 18633:1 18671:1 18708:1 18758:1 18767:1 18780:1 18825:4 18832:1 18843:2 18844:1 18850:1 18866:1 18868:1 18906:1 18914:3 18922:2 18927:1 18953:1 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19056:1 19066:1 19067:1 19076:3 19096:1 19159:1 19232:1 19237:1 19247:1 19253:2 19304:1 19306:1 19327:1 19332:1 19342:1 19344:2 19382:2 19399:2 19405:1 19407:1 19421:1 19457:1 19501:2 19505:1 19517:1 19552:2 19564:1 19567:1 19577:1 19584:2 19611:9 19723:1 19743:1 19807:1 19812:1 19852:1 19853:1 19867:4 19883:3 19918:1 19924:2 19925:2 19940:1 19948:1 19965:1 19968:2 19973:1 20034:1 20046:5 20054:1 20103:5 20174:2 20259:2 20315:1 20328:1 20338:1 20340:1 20344:1 20359:1 20361:1 20392:1 20405:1 20453:1 20458:4 20507:2 20553:1 20565:1 20580:1 20659:1 20682:1 20705:2 20737:5 20757:1 20799:1 20848:1 20852:1 20853:2 20857:1 20878:1 20881:1 20947:2 20988:1 21006:1 21012:1 21033:1 21043:1 21048:2 21054:1 21059:1 21080:2 21081:1 21104:1 21154:1 21198:1 21210:2 21223:1 21244:1 21245:1 21250:1 21279:1 21316:1 21351:1 21356:1 21379:1 21413:1 21505:1 21520:2 21548:2 21612:1 21617:1 21626:1 21648:1 21650:5 21701:1 21739:2 21756:1 21795:1 21832:1 21849:2 21864:4 21901:1 21910:1 21914:1 21918:5 21928:1 22011:1 22014:1 22017:1 22019:2 22022:2 22034:1 22044:1 22048:1 22051:2 22111:1 22193:2 22266:4 22287:5 22290:2 22293:1 22300:1 22357:1 22409:1 22430:1 22537:1 22549:1 22550:1 22560:1 22693:3 22745:2 22760:1 22787:1 22908:1 22911:1 22917:2 22933:1 22975:1 23045:1 23058:1 23103:1 23123:1 23145:1 23158:2 23175:1 23180:1 23230:2 23299:1 23309:2 23351:1 23418:3 23426:2 23463:3 23468:1 23485:1 23494:12 23521:1 23555:1 23573:1 23581:4 23587:1 23596:1 23665:4 23666:1 23690:1 23703:1 23706:1 23710:2 23713:1 23721:1 23725:1 23726:1 23745:2 23785:5 23796:2 23800:1 23802:1 23840:1 23881:1 23910:1 23921:1 23969:3 23971:1 24006:1 24015:1 24114:1 24176:1 24179:5 24184:2 24226:1 24230:1 24258:1 24279:1 24313:2 24323:2 24348:1 24352:1 24357:1 24363:1 24364:1 24396:1 24410:1 24416:2 24429:2 24440:2 24460:1 24464:1 24498:4 24502:1 24504:2 24531:1 24542:1 24548:1 24557:1 24561:1 24590:1 24728:1 24761:1 24780:1 24786:2 24791:1 24804:1 24820:1 24861:1 24868:1 24877:1 24898:1 24915:1 24967:1 24980:1 24998:1 25013:1 25034:4 25053:2 25077:1 25113:1 25135:2 25139:1 25227:1 25238:1 25281:2 25318:2 25345:1 25375:1 25376:1 25379:1 25415:1 25416:1 25422:1 10 4:1 6:2 50:1 65:1 130:1 164:5 172:3 173:1 246:1 249:1 294:1 311:2 317:1 374:1 395:1 429:1 466:1 508:2 539:1 555:1 557:2 564:2 579:1 690:1 701:2 707:1 715:1 738:1 787:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:4 877:1 914:2 918:1 934:1 1007:1 1032:1 1087:1 1096:2 1129:1 1143:1 1176:1 1185:1 1205:1 1254:1 1268:1 1269:1 1284:3 1290:1 1327:1 1333:2 1337:1 1338:1 1342:1 1343:1 1346:2 1425:2 1428:1 1432:2 1464:2 1478:1 1497:1 1554:1 1586:2 1605:1 1621:2 1643:1 1661:1 1673:1 1685:2 1704:2 1769:1 1816:2 1824:1 1855:1 1926:3 1956:1 1992:2 1993:2 2022:2 2045:2 2048:1 2049:1 2051:1 2058:1 2059:2 2060:1 2062:1 2170:1 2183:1 2249:1 2258:1 2292:1 2300:2 2359:1 2434:1 2441:2 2450:1 2452:1 2468:1 2473:5 2477:1 2484:1 2503:1 2538:4 2552:1 2578:2 2606:5 2611:1 2614:2 2619:2 2638:1 2641:1 2654:2 2660:1 2670:1 2675:4 2686:1 2693:1 2701:1 2730:1 2749:1 2786:1 2812:2 2814:1 2817:1 2863:1 2881:1 2884:1 2885:1 2927:1 2928:1 2944:4 2948:1 2964:1 3022:1 3031:5 3054:1 3133:1 3167:1 3176:1 3177:1 3182:1 3230:1 3254:1 3268:1 3305:1 3306:2 3340:2 3345:4 3364:1 3370:1 3382:1 3388:1 3397:1 3427:1 3428:2 3440:1 3449:1 3470:1 3522:1 3535:1 3563:2 3652:1 3691:1 3699:1 3703:2 3707:1 3717:1 3743:1 3750:1 3766:1 3807:2 3810:1 3811:1 3816:1 3830:1 3837:1 3838:1 3891:1 3925:1 3945:2 3954:1 3993:1 4020:1 4050:1 4051:1 4066:2 4077:2 4106:3 4112:1 4116:2 4140:1 4167:2 4185:1 4194:2 4207:1 4227:1 4240:2 4260:1 4281:4 4282:1 4304:2 4309:1 4312:1 4370:1 4382:2 4383:1 4385:1 4388:2 4393:2 4394:1 4410:1 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4709:1 4714:3 4766:1 4774:1 4792:2 4822:2 4877:1 4903:1 4907:1 4929:1 4965:1 4969:2 5007:1 5011:1 5027:1 5042:1 5045:1 5102:1 5110:1 5115:12 5125:1 5149:2 5183:1 5185:2 5264:1 5322:3 5324:3 5400:1 5407:1 5415:1 5428:1 5447:4 5532:1 5533:1 5539:1 5551:1 5640:1 5651:1 5658:1 5662:1 5677:3 5679:1 5725:1 5757:5 5840:2 5849:1 5889:2 5898:1 5899:2 5951:1 5967:1 5994:9 6027:1 6048:4 6052:1 6053:1 6072:1 6073:1 6104:1 6273:1 6364:1 6370:1 6374:1 6402:1 6414:1 6431:1 6457:1 6462:1 6463:1 6546:1 6596:12 6701:1 6731:1 6737:1 6760:1 6790:1 6835:4 6846:1 6857:2 6865:1 6877:2 6881:1 6892:12 6909:3 6911:2 6920:1 6960:1 6995:1 7014:1 7066:1 7075:1 7097:2 7116:1 7133:1 7140:2 7144:1 7312:1 7322:8 7323:1 7339:2 7360:1 7368:1 7471:2 7516:1 7560:1 7597:1 7647:1 7710:2 7718:1 7728:1 7751:1 7828:1 7841:3 7858:1 7916:1 7928:2 7940:2 7958:1 8023:1 8038:2 8048:1 8065:1 8083:1 8102:1 8184:1 8191:5 8194:1 8201:1 8224:2 8326:1 8342:1 8362:3 8384:1 8410:1 8455:1 8514:1 8531:1 8561:3 8575:1 8576:1 8609:1 8633:1 8640:2 8682:1 8715:1 8716:5 8718:5 8735:1 8780:2 8806:2 8832:1 8842:1 8853:1 8871:1 8881:1 8901:2 8961:1 8980:1 8985:1 9015:1 9033:1 9105:1 9150:1 9159:1 9162:1 9177:1 9216:1 9219:1 9248:1 9295:1 9313:1 9353:1 9381:3 9392:1 9411:1 9416:1 9437:1 9439:1 9443:3 9453:4 9456:1 9464:2 9510:9 9523:1 9537:1 9540:1 9541:1 9583:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:5 9690:1 9710:1 9725:2 9727:1 9799:1 9811:1 9813:2 9815:1 9823:2 9849:1 9961:1 9989:2 9992:1 10089:2 10162:1 10246:1 10263:1 10367:2 10387:1 10395:1 10400:1 10405:1 10412:1 10415:1 10419:1 10456:2 10460:1 10474:2 10506:1 10541:1 10561:1 10590:1 10596:5 10607:1 10783:5 10804:5 10819:2 10825:1 10829:1 10840:1 10841:1 10924:1 11013:2 11036:1 11063:1 11089:5 11115:1 11118:2 11195:1 11230:1 11249:1 11279:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:1 11524:1 11563:1 11567:1 11574:1 11666:1 11676:1 11678:1 11682:1 11684:1 11700:2 11708:1 11716:1 11750:1 11780:1 11786:1 11792:2 11803:1 11811:2 11817:1 11833:1 11854:1 11860:2 11902:2 11915:1 11936:2 11941:1 11955:2 11978:1 11982:1 12030:3 12103:1 12105:1 12108:1 12111:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:3 12274:1 12281:1 12295:1 12305:1 12352:1 12367:1 12377:1 12474:1 12483:2 12489:2 12509:1 12521:2 12528:1 12540:1 12601:3 12619:1 12645:1 12657:1 12659:1 12723:1 12734:1 12741:1 12770:1 12776:1 12838:1 12852:1 12859:1 12866:1 12874:1 12891:1 12896:1 12944:2 12964:1 12991:2 12996:1 12997:2 13009:1 13053:2 13061:1 13136:1 13184:1 13188:1 13209:1 13219:1 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13307:1 13345:1 13398:1 13433:1 13515:1 13540:1 13555:1 13564:1 13641:1 13750:1 13776:4 13777:2 13790:2 13854:1 13914:2 13935:3 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14049:2 14064:2 14073:1 14086:1 14089:4 14114:1 14158:2 14166:1 14208:1 14211:1 14227:1 14230:1 14276:4 14279:1 14283:1 14293:2 14306:2 14370:1 14386:1 14387:1 14388:1 14398:2 14401:2 14409:1 14412:1 14477:1 14535:1 14597:1 14659:1 14680:4 14740:3 14756:1 14809:1 14837:1 14843:4 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14999:1 15054:4 15123:1 15141:1 15164:1 15182:1 15227:9 15247:2 15276:1 15285:1 15306:1 15350:1 15378:1 15384:1 15393:1 15415:1 15435:1 15454:1 15466:2 15474:1 15492:1 15587:1 15611:1 15669:1 15676:4 15681:1 15687:1 15699:2 15738:2 15740:1 15789:1 15821:5 15825:1 15826:1 15839:1 15858:1 15866:2 15884:1 15921:1 15950:2 15960:1 15962:1 15980:1 16046:1 16077:1 16090:1 16130:1 16159:2 16161:1 16187:1 16228:1 16264:3 16268:1 16282:1 16321:1 16341:1 16351:1 16409:955 16424:1 16446:1 16521:1 16592:1 16599:1 16637:1 16698:12 16794:1 16864:2 16884:1 16888:2 16896:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:1 17077:2 17080:4 17088:1 17115:3 17156:1 17158:1 17204:2 17218:1 17317:1 17351:1 17381:1 17407:1 17446:1 17449:2 17517:2 17536:2 17537:1 17573:1 17592:1 17602:1 17612:1 17614:1 17623:1 17636:2 17675:1 17688:1 17689:1 17693:1 17697:2 17803:2 17820:1 17838:1 17860:1 17953:3 17990:2 18021:1 18081:1 18090:1 18145:1 18153:1 18250:2 18266:1 18267:1 18288:2 18312:1 18332:1 18336:1 18342:1 18346:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:13 18475:1 18493:1 18612:1 18633:1 18671:1 18708:1 18758:1 18767:1 18780:1 18825:4 18832:1 18843:2 18844:1 18850:2 18866:1 18868:1 18906:1 18914:3 18922:2 18927:1 18953:1 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19056:1 19066:1 19067:2 19076:3 19096:1 19159:1 19232:1 19237:1 19247:1 19253:2 19304:1 19306:1 19327:1 19332:1 19342:1 19344:2 19382:2 19399:2 19405:1 19407:1 19421:1 19457:1 19501:2 19505:1 19517:1 19552:2 19564:1 19567:1 19577:1 19584:2 19611:9 19723:1 19743:1 19807:1 19812:1 19814:1 19852:1 19853:1 19867:4 19883:3 19918:1 19924:2 19925:2 19940:1 19948:1 19965:1 19968:2 19973:1 20034:1 20046:5 20054:1 20103:5 20174:2 20259:2 20315:1 20328:1 20338:1 20340:1 20344:1 20359:1 20361:1 20371:1 20392:1 20405:1 20453:1 20458:4 20507:2 20553:1 20565:1 20567:1 20580:1 20659:1 20682:1 20705:2 20737:5 20757:1 20799:1 20848:1 20852:2 20853:2 20857:1 20878:1 20881:1 20947:2 20988:1 21006:1 21012:1 21033:1 21043:1 21048:2 21054:1 21059:1 21080:2 21081:1 21104:1 21154:1 21198:1 21210:2 21223:1 21244:1 21245:1 21250:1 21279:1 21316:1 21351:1 21356:1 21379:1 21413:1 21505:1 21520:2 21548:2 21612:1 21617:1 21626:1 21648:1 21650:5 21701:2 21739:2 21756:1 21766:1 21795:1 21832:1 21849:2 21864:4 21901:1 21910:1 21914:1 21918:5 21928:1 22011:1 22014:1 22017:1 22019:2 22022:2 22034:1 22044:1 22048:1 22051:2 22111:1 22193:2 22266:4 22287:5 22290:2 22293:2 22300:1 22357:1 22409:1 22430:1 22537:1 22549:1 22550:1 22560:1 22628:1 22693:3 22745:2 22760:1 22787:1 22908:1 22911:1 22917:2 22933:1 22975:1 23045:1 23058:1 23103:1 23123:1 23145:1 23158:2 23175:1 23180:1 23230:2 23299:1 23309:2 23351:1 23418:3 23426:2 23449:1 23463:3 23464:1 23468:1 23485:1 23494:12 23521:1 23555:1 23573:1 23581:4 23587:1 23596:1 23665:5 23666:1 23690:1 23703:1 23706:1 23710:2 23713:1 23721:1 23725:1 23726:1 23745:2 23785:5 23796:2 23800:1 23802:1 23840:1 23881:1 23910:1 23921:1 23969:3 23971:1 24006:1 24015:1 24114:1 24176:1 24179:5 24184:2 24226:1 24230:1 24258:1 24260:1 24279:1 24313:3 24323:2 24348:1 24352:1 24357:1 24363:1 24364:1 24396:1 24410:1 24416:2 24429:2 24440:2 24460:1 24464:1 24498:4 24502:1 24504:2 24531:1 24542:1 24548:1 24557:1 24561:1 24590:1 24728:1 24761:1 24780:1 24786:2 24791:1 24795:1 24804:1 24820:1 24861:1 24868:1 24877:1 24898:1 24915:1 24967:1 24980:1 24998:1 25013:1 25034:4 25053:2 25077:1 25113:1 25135:2 25139:1 25227:1 25238:1 25281:2 25318:2 25345:1 25375:1 25376:1 25379:1 25415:1 25416:1 25422:1 10 4:1 6:2 50:1 65:1 130:1 164:5 172:3 173:1 246:1 249:1 294:1 303:1 311:2 317:1 374:1 395:1 429:1 466:1 508:2 539:1 555:1 557:3 564:2 579:1 690:1 701:2 707:1 715:1 738:1 787:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:4 877:1 914:2 918:1 934:1 1007:1 1032:1 1087:1 1096:2 1129:1 1143:1 1176:1 1185:1 1205:1 1254:1 1268:1 1269:1 1284:3 1290:1 1327:1 1333:2 1337:2 1338:1 1342:1 1343:1 1346:2 1425:2 1428:1 1432:2 1464:3 1478:1 1497:1 1548:1 1554:1 1586:2 1605:1 1621:2 1643:1 1661:1 1673:1 1685:2 1704:2 1769:1 1816:2 1824:1 1855:1 1926:3 1956:1 1992:2 1993:2 2022:2 2045:2 2048:1 2049:1 2051:1 2058:1 2059:2 2060:1 2062:1 2170:1 2183:1 2249:1 2258:1 2292:1 2300:2 2359:1 2434:1 2441:2 2450:1 2452:2 2468:1 2473:5 2477:1 2484:1 2503:1 2538:4 2552:1 2578:2 2606:5 2611:1 2614:2 2619:2 2638:1 2641:1 2654:3 2660:1 2670:1 2675:4 2686:1 2693:1 2701:1 2730:1 2749:1 2786:1 2812:2 2814:1 2817:1 2863:1 2881:1 2884:1 2885:1 2927:1 2928:1 2944:4 2948:1 2964:1 3022:1 3031:5 3054:1 3133:1 3167:2 3176:1 3177:1 3182:1 3230:1 3254:1 3268:1 3305:1 3306:2 3340:2 3345:4 3364:1 3370:1 3382:1 3388:1 3397:1 3427:1 3428:2 3440:1 3449:1 3470:1 3522:1 3535:1 3563:2 3652:1 3691:1 3699:2 3703:2 3707:1 3717:1 3743:1 3750:1 3766:1 3807:2 3810:1 3811:1 3816:1 3830:1 3837:1 3838:1 3891:1 3925:1 3945:2 3954:1 3993:1 4020:1 4050:1 4051:1 4066:3 4077:2 4106:3 4112:1 4116:2 4140:1 4167:2 4185:1 4194:2 4207:1 4227:1 4240:2 4260:1 4281:4 4282:1 4304:2 4309:1 4312:1 4370:1 4382:2 4383:1 4385:1 4388:2 4393:2 4394:1 4410:1 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4709:1 4714:3 4766:1 4774:1 4792:2 4822:2 4877:1 4903:1 4907:1 4929:1 4965:1 4969:2 5007:1 5011:1 5027:1 5042:1 5045:1 5102:1 5110:1 5115:12 5125:1 5149:2 5183:1 5185:2 5264:1 5322:3 5324:3 5400:1 5407:1 5415:1 5428:1 5447:4 5532:1 5533:1 5539:1 5551:1 5640:1 5651:1 5658:1 5662:1 5677:3 5679:1 5725:1 5757:5 5763:1 5840:2 5849:1 5889:2 5898:1 5899:2 5951:1 5967:1 5994:9 6027:1 6048:4 6052:1 6053:1 6072:1 6073:1 6104:1 6273:1 6364:1 6370:1 6374:1 6402:1 6414:1 6431:1 6457:1 6462:1 6463:1 6546:1 6596:12 6701:1 6731:1 6737:2 6760:1 6790:1 6835:4 6846:1 6857:2 6865:1 6877:2 6881:1 6892:12 6909:3 6911:3 6920:1 6960:1 6995:1 7014:1 7066:1 7075:1 7097:2 7116:1 7133:1 7140:2 7144:1 7312:1 7322:9 7323:1 7339:2 7360:1 7368:1 7471:2 7516:1 7560:1 7597:1 7647:1 7710:2 7718:1 7728:2 7751:1 7828:1 7841:3 7858:1 7916:1 7928:2 7940:2 7958:1 8023:1 8038:2 8048:1 8065:1 8083:1 8102:1 8184:1 8191:5 8194:1 8201:1 8224:2 8326:1 8342:1 8362:3 8384:1 8410:1 8455:1 8514:1 8531:1 8561:3 8575:1 8576:1 8609:1 8633:1 8640:2 8682:1 8715:1 8716:5 8718:5 8735:1 8780:2 8806:2 8832:1 8842:1 8853:1 8871:1 8881:1 8901:2 8961:1 8980:1 8985:1 9015:1 9033:1 9105:1 9150:1 9159:1 9162:1 9177:1 9216:1 9219:1 9248:1 9295:1 9313:1 9353:1 9381:3 9392:1 9411:1 9416:1 9437:1 9439:1 9443:3 9453:4 9456:1 9464:2 9510:9 9523:1 9537:1 9540:1 9541:1 9583:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:5 9690:1 9710:1 9725:2 9727:1 9799:1 9811:1 9813:2 9815:1 9823:2 9849:1 9961:1 9989:2 9992:1 10089:2 10162:1 10246:1 10263:1 10367:2 10387:1 10395:1 10400:1 10405:1 10412:1 10415:1 10419:1 10456:2 10460:1 10474:2 10506:1 10541:1 10561:1 10590:1 10596:5 10607:1 10783:5 10804:5 10819:2 10825:1 10829:1 10840:1 10841:1 10924:1 11013:3 11036:1 11063:1 11089:5 11115:1 11118:2 11195:1 11230:1 11249:1 11279:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:2 11524:1 11563:1 11567:1 11574:1 11666:1 11676:1 11678:1 11682:2 11684:1 11700:2 11708:1 11716:1 11750:1 11780:1 11786:1 11792:2 11803:1 11811:2 11817:1 11833:1 11854:1 11860:2 11902:2 11915:1 11936:2 11941:1 11955:2 11978:1 11982:1 12030:3 12103:1 12105:1 12108:1 12111:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:3 12274:1 12281:1 12295:1 12305:1 12352:1 12367:1 12377:1 12474:1 12483:2 12489:2 12509:1 12521:2 12528:1 12540:1 12601:3 12619:1 12645:1 12657:1 12659:1 12723:1 12734:1 12741:1 12770:1 12776:1 12838:1 12852:1 12859:1 12866:1 12874:1 12891:1 12896:1 12944:2 12964:1 12991:2 12996:1 12997:2 13009:1 13053:2 13061:1 13136:1 13184:1 13188:1 13209:1 13219:1 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13307:1 13345:1 13398:1 13433:1 13515:1 13540:1 13555:1 13564:1 13641:1 13750:1 13776:4 13777:2 13790:2 13854:1 13914:2 13935:3 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14025:1 14049:3 14064:2 14073:1 14086:1 14089:4 14114:1 14158:2 14166:1 14208:1 14211:1 14227:1 14230:1 14276:4 14279:1 14283:1 14293:2 14306:2 14370:1 14386:1 14387:1 14388:1 14391:1 14398:2 14401:2 14409:1 14412:1 14477:1 14535:1 14597:1 14613:1 14659:1 14680:4 14740:3 14756:1 14809:1 14837:1 14843:4 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14999:1 15054:4 15123:1 15141:1 15164:1 15182:1 15227:9 15247:2 15276:1 15285:1 15306:1 15350:1 15378:1 15384:1 15393:1 15415:1 15435:1 15454:1 15466:2 15474:1 15492:1 15587:1 15611:1 15669:1 15676:4 15681:1 15687:1 15699:2 15738:2 15740:1 15789:1 15821:5 15825:1 15826:1 15839:1 15858:1 15866:2 15884:1 15895:1 15921:1 15950:2 15960:1 15962:1 15980:1 16046:1 16077:1 16090:1 16130:1 16159:2 16161:1 16187:1 16228:1 16264:3 16268:1 16282:1 16321:1 16341:1 16351:1 16409:984 16424:1 16446:1 16521:1 16592:1 16599:1 16637:1 16698:12 16794:1 16864:2 16884:1 16888:2 16896:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:1 17077:2 17080:4 17088:1 17115:3 17156:1 17158:1 17204:2 17218:1 17317:1 17351:1 17381:1 17407:1 17446:1 17449:2 17517:2 17536:2 17537:1 17573:1 17592:1 17602:1 17612:1 17614:1 17623:1 17636:2 17675:1 17688:1 17689:1 17693:1 17697:2 17803:3 17820:1 17838:1 17860:1 17953:3 17990:3 18021:1 18081:1 18090:1 18145:1 18153:1 18250:2 18266:1 18267:1 18288:2 18312:1 18332:1 18336:1 18342:1 18346:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:13 18475:1 18493:1 18612:1 18633:1 18671:1 18708:1 18758:1 18767:1 18780:1 18825:4 18832:1 18843:2 18844:1 18850:2 18866:1 18868:1 18906:1 18914:3 18922:2 18927:1 18953:1 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19056:1 19066:1 19067:2 19076:3 19096:1 19159:1 19232:1 19237:1 19247:1 19253:2 19304:1 19306:1 19327:1 19332:1 19342:1 19344:2 19382:2 19399:2 19405:1 19407:1 19421:1 19457:1 19501:2 19505:1 19517:1 19552:2 19564:1 19567:1 19577:1 19584:2 19611:9 19723:1 19743:1 19807:1 19812:1 19814:1 19852:1 19853:1 19867:4 19883:3 19918:1 19924:2 19925:2 19940:1 19948:1 19965:1 19968:2 19973:1 20034:1 20046:5 20054:1 20103:5 20174:2 20259:2 20315:1 20328:1 20338:1 20340:1 20344:1 20359:1 20361:1 20371:1 20392:1 20405:1 20453:1 20458:4 20507:2 20553:1 20565:1 20567:1 20580:1 20659:1 20682:1 20705:3 20737:5 20757:1 20799:1 20848:1 20852:2 20853:2 20857:1 20878:1 20881:1 20947:2 20988:1 21006:1 21012:1 21033:1 21043:1 21048:2 21054:1 21059:1 21080:2 21081:1 21104:1 21154:1 21198:1 21210:2 21223:1 21244:1 21245:1 21250:1 21279:1 21316:1 21351:1 21356:1 21379:1 21413:1 21505:1 21520:3 21548:2 21612:1 21617:1 21626:1 21648:1 21650:5 21701:2 21739:2 21756:1 21766:1 21795:1 21832:1 21849:2 21864:4 21901:1 21910:1 21914:1 21918:5 21928:1 22011:1 22014:1 22017:1 22019:2 22022:2 22034:1 22044:1 22048:1 22051:2 22111:1 22193:2 22266:4 22287:5 22290:3 22293:2 22300:1 22357:1 22409:1 22430:1 22537:1 22549:1 22550:1 22560:1 22628:1 22693:3 22745:2 22760:1 22787:1 22831:1 22908:1 22911:1 22917:2 22933:1 22975:1 23045:1 23058:1 23103:1 23123:1 23145:1 23158:2 23175:1 23180:1 23230:2 23299:1 23309:2 23351:1 23418:3 23426:2 23449:1 23463:3 23464:1 23468:1 23485:1 23494:12 23521:1 23555:1 23573:1 23581:4 23587:1 23596:1 23665:5 23666:1 23690:1 23703:1 23706:1 23710:2 23713:1 23721:1 23725:1 23726:1 23745:3 23785:5 23796:2 23800:1 23802:1 23840:1 23881:1 23910:1 23921:1 23969:3 23971:1 24006:1 24015:1 24114:1 24176:1 24179:5 24184:2 24226:1 24230:1 24258:1 24260:1 24279:1 24313:3 24323:2 24348:1 24352:1 24357:1 24363:1 24364:1 24396:1 24410:1 24416:3 24429:2 24440:2 24460:1 24464:1 24498:4 24502:1 24504:3 24531:1 24542:1 24548:1 24557:1 24561:1 24590:1 24728:1 24761:1 24780:1 24786:2 24791:1 24795:1 24804:1 24820:1 24861:1 24868:1 24877:1 24898:1 24915:1 24967:1 24980:1 24998:1 25013:1 25034:4 25053:2 25077:1 25113:1 25135:2 25139:1 25227:1 25238:1 25281:2 25318:2 25345:1 25375:1 25376:1 25379:1 25415:1 25416:1 25422:1 10 4:1 6:2 50:1 65:1 130:1 164:5 172:3 173:1 246:1 249:1 294:1 303:1 311:2 317:1 367:1 374:1 395:1 429:1 466:1 508:2 539:1 555:1 557:3 564:3 579:1 616:1 690:1 701:2 707:1 715:1 738:1 787:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:4 877:1 914:2 918:1 934:1 1007:1 1032:1 1087:1 1096:2 1129:1 1143:1 1176:1 1185:1 1205:1 1254:1 1268:1 1269:1 1284:3 1290:1 1327:1 1333:2 1337:2 1338:1 1342:1 1343:1 1346:2 1425:2 1428:1 1432:2 1464:3 1478:1 1497:1 1548:1 1554:1 1586:2 1605:1 1621:2 1643:1 1661:1 1673:1 1685:2 1704:2 1769:1 1816:2 1824:1 1855:1 1926:3 1956:1 1992:2 1993:2 2022:2 2045:2 2048:1 2049:1 2051:1 2058:1 2059:2 2060:2 2062:1 2170:2 2183:1 2249:1 2258:1 2292:1 2300:3 2332:1 2359:1 2434:2 2441:2 2450:1 2452:2 2468:1 2473:5 2477:1 2484:1 2503:1 2538:4 2552:1 2578:2 2606:5 2611:1 2614:2 2619:2 2638:1 2641:1 2654:3 2660:1 2670:1 2675:4 2686:1 2693:1 2701:1 2730:1 2749:1 2786:1 2812:2 2814:1 2817:1 2863:1 2881:1 2884:1 2885:1 2927:1 2928:1 2944:4 2948:1 2964:1 3022:1 3031:5 3054:1 3133:1 3167:2 3176:1 3177:1 3182:1 3230:1 3254:1 3268:1 3305:1 3306:2 3340:2 3345:4 3364:1 3370:1 3382:1 3388:1 3397:1 3427:1 3428:2 3440:1 3449:1 3470:1 3522:1 3535:1 3563:2 3652:1 3691:1 3699:2 3703:2 3707:1 3717:1 3743:1 3750:1 3766:1 3807:2 3810:1 3811:1 3816:1 3830:1 3837:1 3838:1 3891:1 3925:1 3945:2 3954:1 3993:1 4020:1 4050:1 4051:1 4066:3 4077:2 4106:3 4112:1 4116:2 4140:1 4160:1 4167:2 4185:1 4194:2 4207:1 4227:1 4240:2 4260:1 4281:4 4282:1 4304:2 4309:1 4312:1 4370:1 4382:2 4383:1 4385:1 4388:2 4393:2 4394:1 4410:1 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4709:1 4714:3 4766:1 4774:1 4792:2 4822:2 4877:1 4903:1 4907:1 4929:1 4965:1 4969:2 5007:1 5011:1 5027:1 5042:1 5045:1 5102:1 5110:1 5115:12 5125:1 5149:2 5183:1 5185:2 5264:1 5322:3 5324:3 5400:1 5407:1 5415:1 5428:2 5447:4 5532:1 5533:1 5539:1 5551:1 5565:1 5640:1 5651:1 5658:1 5662:1 5677:3 5679:1 5725:1 5757:5 5763:1 5840:2 5849:1 5889:2 5898:1 5899:2 5951:1 5967:1 5994:9 6027:1 6048:4 6052:1 6053:1 6072:1 6073:1 6104:1 6273:1 6364:1 6370:1 6374:1 6375:1 6402:1 6414:1 6431:1 6457:1 6462:1 6463:1 6546:1 6596:12 6701:1 6731:1 6737:2 6760:1 6790:1 6835:4 6846:1 6857:2 6865:1 6869:1 6877:2 6881:1 6892:13 6909:3 6911:3 6920:1 6960:1 6995:1 7014:1 7066:1 7075:1 7097:2 7116:1 7133:1 7140:2 7144:1 7312:1 7322:9 7323:1 7339:2 7360:1 7368:1 7471:2 7516:1 7560:1 7597:1 7647:1 7710:2 7718:1 7728:2 7751:1 7828:1 7841:3 7858:1 7896:1 7912:1 7916:1 7928:2 7940:2 7958:1 8023:1 8038:2 8048:1 8065:1 8083:1 8102:1 8184:1 8191:5 8194:1 8201:1 8224:2 8326:1 8342:1 8362:3 8384:1 8410:1 8455:1 8514:1 8531:1 8561:3 8575:1 8576:1 8609:1 8633:1 8640:2 8682:1 8715:1 8716:5 8718:5 8726:1 8735:1 8780:2 8806:2 8832:1 8842:1 8853:1 8871:1 8881:1 8901:2 8961:1 8980:1 8985:2 9015:1 9033:1 9105:1 9150:1 9159:1 9162:1 9177:1 9216:1 9219:1 9248:1 9295:1 9313:1 9353:1 9381:3 9392:1 9411:1 9416:1 9437:1 9439:1 9443:3 9453:4 9456:1 9464:2 9510:9 9523:1 9537:1 9540:1 9541:1 9583:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:5 9690:1 9710:1 9725:2 9727:1 9799:1 9811:1 9813:2 9815:1 9823:2 9849:1 9961:1 9989:2 9992:1 10089:2 10162:1 10246:1 10263:1 10367:2 10387:1 10395:1 10400:1 10405:1 10412:1 10415:1 10419:1 10456:2 10460:1 10474:2 10506:1 10541:1 10561:1 10590:1 10596:5 10607:1 10783:5 10804:5 10819:2 10825:1 10829:1 10840:1 10841:1 10924:1 11013:3 11036:1 11063:1 11089:5 11115:1 11118:2 11195:1 11230:1 11249:1 11279:1 11294:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:2 11524:1 11563:1 11567:1 11574:1 11666:1 11676:1 11678:1 11682:2 11684:1 11700:2 11708:1 11716:1 11750:1 11780:1 11786:1 11792:2 11803:1 11811:2 11817:1 11833:1 11854:1 11860:2 11871:1 11902:2 11915:1 11936:2 11941:1 11955:2 11978:1 11982:1 12030:3 12103:1 12105:1 12108:1 12111:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:3 12274:1 12281:1 12295:1 12305:1 12352:1 12367:1 12377:1 12474:1 12483:2 12489:2 12509:1 12521:2 12528:1 12540:1 12601:3 12619:1 12645:1 12657:1 12659:1 12723:1 12734:1 12741:1 12770:1 12776:1 12838:1 12852:1 12859:1 12866:1 12874:1 12891:1 12896:1 12944:2 12964:1 12991:2 12996:1 12997:2 13009:1 13053:2 13061:1 13136:1 13184:1 13188:1 13209:1 13219:1 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13307:1 13345:1 13398:1 13433:1 13515:1 13540:1 13555:1 13564:1 13641:1 13750:1 13776:4 13777:2 13790:2 13854:1 13914:2 13935:4 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14025:1 14049:3 14064:2 14073:1 14086:1 14089:4 14114:1 14158:2 14166:1 14208:1 14211:1 14227:1 14230:1 14276:4 14279:1 14283:1 14293:2 14306:2 14370:1 14386:1 14387:1 14388:1 14391:1 14398:2 14401:2 14409:1 14412:1 14477:1 14535:1 14597:1 14613:1 14659:1 14680:4 14740:3 14756:1 14809:1 14837:1 14843:4 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14999:1 15054:4 15123:1 15141:1 15164:1 15182:1 15227:9 15247:2 15276:1 15285:1 15306:1 15350:1 15378:1 15384:1 15393:1 15415:1 15435:1 15454:1 15466:3 15474:1 15492:1 15520:1 15587:1 15611:1 15669:1 15676:4 15681:1 15687:1 15699:2 15738:2 15740:1 15789:1 15821:5 15825:1 15826:1 15839:1 15858:1 15866:2 15884:1 15895:1 15921:1 15950:2 15960:1 15962:1 15980:1 16046:1 16077:1 16090:1 16130:1 16159:2 16161:1 16187:1 16228:1 16247:1 16264:3 16268:1 16282:1 16321:1 16341:1 16351:1 16379:1 16409:1003 16424:1 16446:1 16521:1 16592:1 16599:1 16637:1 16698:12 16794:1 16864:2 16884:1 16888:2 16896:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:1 17077:2 17080:4 17088:1 17115:3 17156:1 17158:1 17204:2 17218:1 17317:1 17351:1 17381:1 17407:1 17446:1 17449:3 17517:2 17536:2 17537:1 17573:1 17592:1 17602:1 17612:1 17614:1 17623:1 17636:2 17675:1 17688:1 17689:1 17693:1 17697:2 17803:3 17820:1 17838:1 17860:1 17953:3 17990:3 18021:1 18081:1 18090:1 18145:1 18153:1 18250:2 18253:1 18266:1 18267:1 18288:2 18312:1 18332:1 18336:1 18342:1 18346:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:13 18475:1 18493:1 18567:1 18612:1 18633:1 18671:1 18708:1 18758:1 18767:1 18780:1 18825:4 18832:1 18843:2 18844:1 18850:2 18852:1 18866:1 18868:1 18906:1 18914:3 18922:2 18927:1 18953:1 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19056:1 19066:1 19067:2 19076:3 19096:1 19159:1 19232:1 19237:1 19247:1 19253:2 19304:1 19306:1 19327:1 19332:1 19342:1 19344:2 19382:2 19399:2 19405:1 19407:1 19421:1 19457:1 19501:2 19505:1 19507:1 19517:1 19552:2 19564:1 19567:1 19577:1 19584:2 19611:9 19723:1 19743:1 19793:1 19807:1 19812:1 19814:1 19852:1 19853:1 19867:4 19883:3 19918:1 19924:2 19925:2 19940:1 19948:1 19965:1 19968:2 19973:1 20034:1 20046:5 20054:1 20103:5 20174:2 20259:2 20315:1 20328:1 20338:1 20340:1 20344:1 20359:1 20361:1 20371:1 20392:1 20397:1 20405:1 20453:1 20458:4 20507:2 20551:1 20553:1 20565:1 20567:1 20580:1 20659:1 20682:1 20705:3 20737:5 20757:1 20799:1 20848:1 20852:2 20853:2 20857:1 20878:1 20881:1 20947:2 20988:1 21006:1 21012:1 21033:1 21043:1 21048:2 21054:1 21059:1 21080:2 21081:1 21104:1 21154:1 21198:1 21210:2 21223:1 21244:1 21245:1 21250:1 21279:1 21316:1 21351:1 21356:1 21379:1 21413:1 21505:1 21511:1 21520:3 21548:2 21612:1 21617:1 21626:1 21648:1 21650:5 21701:2 21739:2 21756:1 21766:1 21795:1 21832:1 21849:2 21864:5 21901:1 21910:1 21914:1 21918:5 21928:1 22011:1 22014:1 22017:1 22019:2 22022:2 22034:1 22044:1 22048:1 22051:2 22111:1 22193:2 22266:4 22287:5 22290:3 22293:2 22300:1 22357:1 22409:1 22430:1 22537:1 22549:1 22550:1 22560:1 22628:1 22693:3 22745:2 22760:1 22787:1 22831:1 22908:1 22911:1 22917:2 22933:1 22975:1 23045:1 23058:1 23103:1 23123:1 23145:1 23158:2 23175:1 23180:1 23230:2 23299:1 23309:2 23351:1 23418:3 23426:2 23449:1 23463:3 23464:1 23468:1 23485:1 23494:12 23521:1 23555:1 23573:1 23581:4 23587:1 23596:1 23617:1 23665:5 23666:1 23690:1 23703:1 23706:1 23710:2 23713:1 23721:1 23725:1 23726:1 23745:3 23785:5 23796:2 23800:1 23802:1 23840:1 23881:1 23910:1 23921:1 23969:3 23971:1 24006:1 24015:1 24114:1 24176:1 24179:5 24184:2 24226:1 24230:1 24240:1 24258:1 24260:1 24279:1 24313:3 24323:2 24348:1 24352:1 24357:1 24363:1 24364:1 24396:1 24410:1 24416:3 24429:2 24440:2 24460:1 24464:1 24498:4 24502:1 24504:3 24531:1 24542:1 24548:1 24557:1 24561:1 24590:1 24728:1 24761:1 24780:1 24786:2 24791:1 24795:1 24804:1 24820:1 24861:1 24868:1 24877:1 24898:1 24915:1 24967:1 24980:1 24998:1 25013:1 25034:4 25053:2 25077:1 25113:1 25135:2 25139:1 25227:1 25238:1 25281:2 25318:2 25345:1 25375:1 25376:1 25379:1 25415:1 25416:1 25422:1 10 4:1 6:2 50:1 65:1 72:1 98:1 130:1 164:6 172:3 173:2 246:1 249:1 294:1 298:1 303:1 311:2 317:1 367:1 374:1 395:1 429:1 466:1 508:3 539:1 555:1 557:3 564:3 579:1 616:1 690:1 701:2 707:1 715:1 738:1 787:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:4 877:1 914:2 918:1 934:1 1007:1 1032:1 1087:1 1096:2 1129:1 1143:1 1154:1 1176:1 1185:1 1205:1 1249:1 1254:1 1268:1 1269:1 1284:3 1290:1 1327:1 1333:2 1337:2 1338:1 1342:1 1343:1 1346:2 1366:1 1425:2 1428:1 1432:2 1464:3 1478:1 1497:1 1505:1 1548:1 1554:1 1586:2 1605:1 1618:1 1621:2 1643:1 1661:1 1673:1 1685:3 1704:2 1712:1 1769:1 1790:1 1806:1 1816:2 1824:1 1855:1 1926:3 1946:1 1956:1 1992:2 1993:2 2022:2 2028:1 2032:1 2045:2 2048:1 2049:1 2051:1 2058:1 2059:3 2060:2 2062:1 2108:1 2170:2 2183:1 2184:1 2249:1 2258:1 2288:1 2292:1 2300:3 2332:1 2359:1 2434:2 2441:2 2450:1 2452:2 2468:1 2473:6 2477:1 2484:1 2503:1 2516:1 2528:1 2538:4 2552:1 2578:2 2606:5 2611:1 2614:2 2619:2 2638:1 2641:1 2654:3 2660:1 2670:1 2675:4 2686:1 2693:1 2701:1 2730:2 2749:1 2786:1 2812:2 2814:1 2817:1 2863:1 2881:1 2884:1 2885:2 2927:1 2928:1 2944:4 2948:1 2964:1 3022:1 3031:6 3054:1 3133:1 3167:2 3176:1 3177:1 3182:1 3230:1 3254:1 3260:1 3268:1 3305:1 3306:2 3340:2 3345:4 3364:1 3370:1 3382:1 3388:1 3397:1 3427:1 3428:2 3440:1 3449:1 3470:1 3522:1 3535:1 3556:1 3563:2 3652:1 3691:1 3699:2 3703:2 3707:1 3717:1 3743:1 3750:1 3766:1 3807:2 3810:1 3811:1 3815:1 3816:1 3830:1 3837:1 3838:1 3841:1 3874:1 3891:1 3925:1 3945:2 3954:1 3993:1 4020:1 4050:1 4051:1 4066:3 4077:2 4106:3 4112:1 4116:2 4140:1 4160:1 4167:2 4185:1 4194:2 4207:1 4227:1 4240:2 4260:1 4281:4 4282:1 4293:1 4304:2 4309:1 4312:1 4370:1 4382:2 4383:1 4385:1 4388:2 4393:2 4394:1 4410:1 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4694:1 4709:1 4714:4 4766:1 4774:1 4792:2 4822:2 4877:2 4903:1 4907:1 4919:1 4929:1 4965:1 4969:2 5007:1 5011:1 5027:1 5042:1 5045:1 5051:1 5102:1 5110:1 5115:12 5125:1 5149:2 5183:1 5185:2 5264:1 5322:3 5324:3 5400:1 5407:1 5415:1 5428:2 5447:5 5532:2 5533:1 5539:1 5551:1 5565:1 5640:1 5651:1 5658:1 5662:1 5667:1 5677:3 5679:1 5725:1 5757:6 5763:1 5840:2 5849:1 5889:2 5898:1 5899:2 5951:1 5967:1 5994:9 6027:2 6048:4 6052:1 6053:1 6072:2 6073:1 6104:1 6273:1 6364:1 6370:1 6374:1 6375:1 6402:1 6414:1 6431:1 6457:1 6462:1 6463:1 6546:1 6596:12 6639:1 6701:1 6731:1 6737:2 6760:1 6790:1 6818:1 6835:5 6846:1 6857:2 6865:1 6869:1 6877:2 6881:1 6892:16 6909:3 6911:3 6920:1 6960:1 6995:1 7014:1 7066:1 7075:1 7097:2 7116:1 7133:1 7140:2 7144:1 7312:1 7322:10 7323:1 7339:2 7360:1 7368:1 7471:2 7516:1 7560:1 7597:1 7647:1 7710:2 7718:1 7728:2 7751:1 7828:1 7841:3 7858:1 7896:1 7912:1 7916:1 7928:2 7940:2 7958:1 8023:1 8035:1 8038:2 8048:1 8064:1 8065:1 8083:1 8102:1 8184:1 8191:6 8194:1 8201:1 8224:2 8326:1 8342:1 8362:3 8384:1 8410:2 8455:1 8492:1 8514:1 8531:1 8561:3 8575:1 8576:1 8582:1 8609:1 8633:1 8640:2 8682:1 8715:1 8716:6 8718:6 8726:1 8735:1 8780:2 8806:2 8832:1 8842:1 8853:1 8871:1 8881:1 8901:2 8961:1 8980:1 8985:2 9015:1 9033:1 9099:1 9105:1 9150:1 9159:1 9162:1 9177:1 9216:1 9219:1 9248:1 9295:1 9313:1 9353:1 9381:3 9392:1 9411:1 9416:1 9437:1 9439:1 9443:3 9453:4 9456:1 9464:2 9510:9 9523:1 9537:1 9540:1 9541:1 9583:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:6 9690:1 9710:1 9725:2 9727:1 9799:2 9811:1 9813:3 9815:1 9823:3 9849:1 9901:1 9961:1 9989:2 9992:1 10089:2 10162:1 10200:1 10246:1 10263:1 10367:2 10387:1 10395:1 10400:1 10405:1 10412:1 10415:1 10419:1 10456:2 10460:1 10461:1 10474:2 10506:1 10516:1 10541:1 10561:1 10590:2 10596:6 10607:2 10783:6 10804:6 10819:2 10825:1 10829:1 10840:1 10841:1 10924:1 11013:3 11036:1 11063:1 11089:6 11115:1 11118:2 11152:1 11195:1 11230:1 11249:1 11279:1 11294:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:2 11524:1 11529:1 11563:1 11567:1 11574:1 11666:1 11676:1 11678:1 11682:2 11684:1 11700:3 11708:1 11716:1 11750:1 11780:1 11786:1 11792:2 11803:1 11811:2 11817:1 11833:1 11854:1 11860:2 11871:1 11902:2 11915:1 11936:2 11941:1 11955:2 11978:1 11982:1 12030:3 12103:1 12105:1 12108:1 12111:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:3 12274:1 12281:1 12295:1 12297:1 12299:1 12305:1 12351:1 12352:1 12367:1 12377:1 12474:1 12483:2 12489:2 12509:1 12521:2 12528:1 12540:1 12601:3 12619:1 12645:1 12657:1 12659:1 12716:1 12723:2 12734:1 12741:1 12770:1 12776:1 12802:1 12838:1 12852:1 12859:1 12866:1 12874:1 12891:1 12896:1 12944:2 12964:1 12991:2 12996:1 12997:2 13009:1 13053:2 13061:1 13136:1 13184:1 13188:1 13209:1 13219:1 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13307:1 13345:1 13398:1 13433:1 13515:1 13540:1 13555:1 13564:1 13641:1 13750:1 13776:4 13777:2 13790:2 13854:1 13914:2 13935:5 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14025:1 14049:3 14064:2 14073:1 14086:1 14089:4 14114:1 14158:2 14166:1 14208:1 14211:1 14214:1 14227:1 14230:1 14276:4 14279:1 14283:1 14293:2 14306:2 14370:1 14386:1 14387:1 14388:1 14391:1 14398:2 14401:2 14409:1 14412:1 14418:1 14477:1 14535:1 14597:1 14613:1 14620:1 14659:1 14664:1 14680:4 14740:3 14756:1 14809:1 14837:1 14843:4 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14999:1 15054:4 15123:1 15141:1 15164:1 15182:1 15227:9 15247:2 15258:1 15276:1 15285:1 15306:1 15350:1 15378:1 15384:1 15393:1 15415:1 15435:1 15454:1 15466:3 15474:1 15492:1 15520:1 15587:1 15611:1 15669:1 15675:1 15676:4 15681:1 15687:1 15699:2 15700:1 15738:2 15740:1 15789:1 15821:6 15825:1 15826:1 15839:1 15858:1 15866:2 15884:1 15895:1 15921:1 15950:2 15960:2 15962:1 15980:1 16046:1 16077:1 16081:1 16090:1 16130:1 16142:1 16159:2 16161:1 16187:1 16228:1 16247:1 16264:3 16268:1 16282:1 16321:1 16341:1 16351:1 16379:1 16409:1076 16424:1 16446:1 16521:1 16592:1 16599:1 16637:1 16697:1 16698:12 16794:1 16864:2 16884:1 16888:3 16896:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:2 17077:2 17080:4 17088:1 17093:1 17104:1 17115:3 17156:1 17158:1 17204:2 17218:1 17317:1 17351:1 17381:1 17407:1 17446:1 17449:4 17517:2 17536:2 17537:1 17573:1 17592:1 17602:1 17612:1 17614:1 17623:1 17636:2 17675:1 17688:1 17689:1 17693:1 17697:2 17803:3 17820:1 17838:1 17843:1 17860:1 17953:3 17990:3 18021:1 18081:1 18090:1 18145:1 18153:1 18250:2 18253:1 18266:1 18267:2 18288:2 18312:1 18332:1 18336:1 18342:1 18346:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:13 18475:1 18493:1 18567:1 18612:1 18633:1 18671:1 18708:1 18712:1 18717:1 18758:1 18767:1 18780:1 18825:4 18832:1 18843:2 18844:1 18850:2 18852:1 18866:1 18868:1 18906:1 18914:3 18922:2 18927:1 18953:1 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19056:1 19066:1 19067:2 19076:3 19096:1 19159:1 19232:1 19237:1 19247:1 19253:2 19304:1 19306:1 19327:1 19332:1 19342:1 19344:2 19382:2 19399:2 19405:1 19407:1 19421:1 19457:1 19501:2 19505:1 19507:1 19517:1 19552:2 19564:1 19567:1 19577:1 19584:2 19611:9 19723:1 19743:1 19793:1 19807:1 19812:2 19814:1 19852:1 19853:1 19867:4 19883:3 19918:1 19924:2 19925:2 19940:1 19948:1 19965:1 19968:2 19973:1 20034:2 20046:6 20054:1 20103:6 20174:2 20259:2 20315:1 20328:1 20338:1 20340:1 20344:1 20359:1 20361:1 20371:1 20392:1 20397:1 20405:1 20427:1 20453:1 20458:4 20507:2 20551:1 20553:1 20565:1 20567:1 20580:1 20659:1 20682:1 20705:3 20737:5 20757:1 20799:1 20848:1 20852:2 20853:2 20857:1 20878:1 20881:1 20947:2 20988:1 21006:1 21012:1 21033:1 21043:1 21048:2 21054:1 21059:1 21080:2 21081:1 21104:1 21154:1 21198:1 21210:2 21223:1 21244:1 21245:1 21250:1 21279:1 21316:2 21351:1 21355:1 21356:1 21359:1 21379:1 21413:1 21505:1 21511:1 21520:3 21548:2 21612:1 21617:1 21626:1 21644:1 21648:1 21650:6 21690:1 21701:2 21739:2 21756:1 21766:1 21795:1 21832:1 21849:2 21864:6 21901:1 21910:1 21914:1 21918:6 21928:1 22011:1 22014:1 22017:1 22019:2 22022:2 22023:1 22034:1 22044:1 22048:1 22051:2 22089:1 22111:1 22193:2 22226:1 22266:4 22287:6 22290:3 22293:2 22300:1 22357:1 22374:1 22409:1 22430:1 22537:1 22549:1 22550:1 22560:1 22628:1 22693:3 22745:2 22760:1 22787:1 22831:1 22908:2 22911:1 22917:2 22933:1 22975:1 23045:1 23058:1 23103:1 23123:1 23145:1 23158:2 23175:1 23180:1 23230:2 23299:1 23309:2 23337:1 23351:1 23418:3 23426:2 23449:1 23463:3 23464:1 23468:1 23485:1 23494:12 23514:1 23521:1 23555:1 23573:1 23581:4 23587:1 23596:1 23617:1 23623:1 23641:1 23665:5 23666:1 23689:1 23690:1 23703:2 23706:1 23710:3 23713:1 23718:1 23721:1 23725:1 23726:1 23745:3 23785:6 23796:2 23800:1 23802:1 23840:1 23881:1 23892:1 23910:1 23921:2 23969:3 23971:1 24006:1 24015:1 24114:2 24176:1 24179:6 24184:2 24226:1 24230:1 24240:1 24258:1 24260:1 24279:1 24313:3 24323:2 24348:1 24352:1 24357:1 24363:1 24364:2 24396:1 24410:1 24416:3 24429:2 24440:2 24460:1 24464:1 24498:5 24502:1 24504:3 24531:1 24542:1 24548:1 24557:1 24561:1 24590:1 24728:1 24761:1 24780:1 24786:2 24791:1 24795:1 24804:1 24820:1 24861:1 24868:1 24877:1 24898:1 24915:1 24967:1 24980:1 24998:1 25013:1 25034:4 25053:2 25077:1 25113:1 25135:2 25139:1 25227:1 25238:1 25281:3 25318:2 25345:1 25375:1 25376:1 25379:1 25415:1 25416:1 25422:2 10 4:1 6:3 50:1 65:1 72:1 98:1 130:1 164:7 172:3 173:2 246:1 249:1 258:1 294:1 298:1 303:1 311:2 317:1 367:1 374:2 395:1 429:1 466:1 508:3 539:1 555:1 557:3 564:3 579:1 616:1 690:1 701:2 707:1 715:2 738:1 787:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:4 877:1 914:2 918:1 934:1 1007:1 1032:1 1087:1 1096:2 1129:1 1143:1 1154:1 1176:1 1185:1 1205:1 1249:1 1254:1 1268:1 1269:1 1284:4 1290:1 1327:1 1333:2 1337:2 1338:1 1342:1 1343:1 1346:2 1366:1 1425:2 1428:1 1432:2 1464:3 1478:1 1497:1 1505:1 1548:1 1554:1 1586:2 1605:1 1618:1 1621:3 1643:1 1661:1 1673:1 1685:3 1704:2 1712:1 1769:1 1790:1 1806:1 1816:2 1824:1 1855:1 1926:3 1946:1 1956:1 1992:2 1993:2 2022:2 2028:1 2032:1 2045:2 2048:1 2049:1 2051:1 2058:1 2059:3 2060:2 2062:1 2108:1 2170:2 2183:1 2184:1 2249:1 2258:1 2288:1 2292:1 2300:3 2332:1 2359:1 2434:2 2441:2 2450:1 2452:2 2468:1 2473:7 2477:1 2484:1 2503:1 2516:1 2528:1 2538:4 2552:1 2578:2 2605:1 2606:5 2611:1 2614:2 2619:2 2638:1 2641:1 2654:3 2660:1 2670:1 2675:4 2686:1 2693:1 2701:1 2712:1 2730:2 2749:1 2786:1 2812:3 2814:1 2817:1 2863:1 2881:2 2884:2 2885:2 2927:1 2928:1 2944:4 2948:1 2964:1 3022:1 3031:7 3054:1 3133:1 3157:1 3167:2 3176:1 3177:1 3182:1 3200:1 3230:1 3254:1 3260:1 3268:1 3305:1 3306:3 3340:3 3345:5 3364:1 3370:1 3382:1 3388:1 3397:1 3427:1 3428:2 3440:1 3449:1 3470:1 3522:1 3535:1 3556:1 3563:2 3652:1 3691:1 3699:2 3703:2 3707:1 3717:1 3743:1 3750:1 3766:1 3807:2 3810:1 3811:1 3815:1 3816:1 3830:1 3837:1 3838:1 3841:1 3874:1 3891:1 3925:1 3945:2 3954:1 3993:1 4020:1 4050:1 4051:1 4066:3 4069:1 4077:2 4106:3 4112:1 4116:2 4140:1 4160:1 4167:2 4185:1 4194:2 4207:1 4227:1 4240:2 4260:1 4281:4 4282:1 4293:1 4304:2 4309:1 4312:1 4370:1 4382:2 4383:1 4385:1 4388:2 4393:2 4394:1 4410:1 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4694:1 4709:1 4714:4 4751:1 4766:1 4774:1 4792:2 4822:2 4877:2 4896:1 4903:2 4907:1 4919:1 4929:1 4965:1 4969:2 5007:1 5011:1 5027:1 5042:1 5045:1 5051:1 5102:1 5110:1 5115:12 5125:1 5149:2 5180:1 5183:1 5185:2 5264:1 5319:1 5322:3 5324:3 5400:1 5407:1 5415:1 5428:2 5447:6 5532:2 5533:1 5539:1 5551:1 5565:1 5640:1 5651:1 5658:1 5662:1 5667:1 5677:3 5679:1 5725:1 5757:7 5763:1 5840:3 5849:1 5889:2 5898:1 5899:2 5951:1 5967:1 5994:9 6027:2 6048:4 6052:1 6053:1 6072:2 6073:1 6104:1 6273:1 6364:1 6370:1 6374:1 6375:1 6402:1 6414:1 6431:1 6457:1 6462:1 6463:1 6546:1 6596:12 6639:1 6701:1 6731:1 6737:2 6760:1 6790:1 6818:1 6835:6 6846:1 6857:2 6865:1 6869:1 6877:2 6881:1 6892:16 6909:4 6911:3 6920:1 6960:1 6995:2 7014:1 7066:1 7075:1 7097:2 7116:1 7133:1 7140:2 7144:1 7224:1 7312:1 7322:10 7323:1 7339:2 7360:1 7368:1 7471:2 7494:1 7516:1 7560:1 7597:1 7647:1 7710:2 7718:1 7726:1 7728:2 7751:1 7828:1 7841:3 7858:1 7896:1 7912:1 7916:1 7927:1 7928:2 7940:2 7958:1 8023:1 8035:1 8038:2 8048:1 8064:1 8065:1 8083:1 8102:1 8184:1 8191:7 8194:1 8201:1 8216:1 8224:2 8326:1 8342:1 8362:3 8384:1 8410:2 8455:1 8492:1 8514:1 8531:1 8561:3 8575:1 8576:1 8582:1 8609:1 8633:1 8640:2 8682:2 8715:1 8716:7 8718:7 8726:1 8735:1 8773:1 8780:3 8806:3 8832:1 8842:1 8853:1 8871:1 8881:1 8901:2 8961:1 8980:1 8985:2 9015:1 9033:1 9099:1 9105:1 9142:1 9150:1 9159:1 9162:1 9177:1 9216:1 9219:1 9248:1 9295:1 9313:1 9353:1 9381:3 9387:1 9392:1 9411:1 9416:2 9437:1 9439:1 9443:4 9453:4 9456:1 9464:2 9510:9 9523:1 9537:2 9540:2 9541:1 9583:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:7 9690:1 9710:1 9725:3 9727:1 9799:2 9811:1 9813:3 9815:1 9823:4 9849:1 9901:1 9961:1 9989:2 9992:1 10089:2 10162:1 10200:1 10246:1 10263:1 10367:2 10387:1 10395:1 10400:1 10405:1 10412:1 10415:1 10419:1 10456:2 10460:1 10461:1 10474:2 10506:1 10516:1 10541:1 10561:1 10590:2 10596:7 10607:2 10783:7 10804:7 10819:2 10825:1 10829:1 10840:1 10841:1 10924:1 11013:3 11036:1 11063:1 11089:7 11115:1 11118:2 11152:1 11161:1 11195:1 11230:1 11249:1 11279:2 11294:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:2 11524:1 11529:1 11563:2 11567:1 11574:1 11666:1 11676:1 11678:1 11682:2 11684:1 11700:3 11708:1 11716:1 11750:1 11780:2 11786:1 11792:2 11803:1 11811:2 11817:1 11833:1 11854:1 11860:2 11871:1 11902:2 11915:1 11936:2 11941:1 11955:2 11978:1 11982:1 12030:3 12103:1 12105:1 12108:1 12111:1 12122:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:3 12274:1 12281:1 12295:1 12297:1 12299:1 12305:1 12351:1 12352:1 12367:1 12377:1 12474:1 12483:2 12489:2 12509:1 12521:2 12528:1 12540:1 12601:3 12619:1 12645:1 12657:1 12659:1 12713:1 12716:1 12723:2 12734:1 12741:1 12770:1 12776:1 12802:1 12838:1 12852:2 12859:1 12866:1 12874:1 12891:1 12896:1 12944:2 12964:1 12991:2 12996:2 12997:2 13009:1 13053:2 13061:1 13136:1 13184:1 13188:1 13209:1 13219:1 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13307:1 13345:1 13398:1 13433:1 13515:1 13540:1 13555:1 13564:1 13641:1 13750:1 13776:5 13777:2 13790:3 13854:1 13914:2 13935:5 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14025:1 14049:4 14064:2 14073:1 14086:1 14089:5 14114:1 14158:2 14166:1 14208:1 14211:1 14214:1 14227:1 14230:1 14276:6 14279:1 14283:1 14293:2 14306:2 14365:1 14370:1 14386:1 14387:1 14388:1 14391:1 14398:2 14401:2 14409:1 14412:1 14418:1 14477:1 14535:1 14597:1 14613:1 14620:1 14659:1 14664:1 14680:4 14740:4 14756:1 14809:1 14837:1 14843:4 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14986:1 14999:1 15054:4 15123:1 15141:1 15164:1 15182:1 15227:9 15247:2 15258:1 15276:1 15285:1 15306:1 15350:1 15378:1 15384:1 15393:1 15415:1 15435:1 15454:1 15466:3 15474:1 15492:2 15520:1 15587:1 15611:1 15669:1 15675:1 15676:5 15681:1 15687:1 15699:2 15700:1 15716:1 15733:1 15738:2 15740:1 15789:1 15821:7 15825:1 15826:1 15839:1 15858:1 15866:2 15884:1 15895:1 15921:1 15950:2 15960:2 15962:1 15980:1 16036:1 16046:1 16077:1 16081:1 16090:1 16130:1 16142:1 16159:2 16161:1 16187:1 16228:2 16247:1 16264:3 16268:1 16282:1 16321:1 16341:1 16351:1 16379:1 16409:1126 16424:1 16446:1 16521:1 16592:1 16599:1 16637:1 16697:1 16698:12 16794:1 16864:2 16884:1 16888:4 16896:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:2 17077:2 17080:4 17088:1 17093:1 17104:1 17115:4 17156:1 17158:1 17204:2 17218:1 17317:1 17330:1 17351:1 17381:1 17407:1 17446:1 17449:4 17517:2 17536:2 17537:1 17573:1 17592:1 17594:1 17602:1 17612:1 17614:1 17623:1 17636:2 17675:1 17688:1 17689:1 17693:1 17697:2 17718:1 17803:3 17820:1 17838:1 17843:1 17860:1 17953:3 17990:3 18021:1 18081:1 18090:1 18145:1 18153:1 18250:2 18253:1 18266:1 18267:2 18288:3 18312:1 18332:1 18336:1 18342:1 18346:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:13 18475:1 18493:1 18567:1 18612:1 18633:1 18671:1 18708:1 18712:1 18717:1 18758:1 18767:1 18780:1 18791:1 18825:4 18832:1 18843:2 18844:1 18850:2 18852:1 18866:1 18868:1 18906:1 18914:3 18922:2 18927:1 18953:1 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19056:1 19066:1 19067:2 19076:3 19096:1 19159:1 19189:1 19232:1 19237:1 19247:1 19253:2 19304:1 19306:1 19327:1 19332:1 19342:1 19344:2 19382:2 19399:2 19405:1 19407:1 19421:1 19457:1 19501:2 19505:1 19507:1 19517:1 19552:2 19564:2 19567:1 19577:1 19584:2 19611:9 19723:2 19734:1 19743:1 19793:1 19807:1 19812:2 19814:1 19852:1 19853:1 19867:4 19883:3 19918:1 19924:2 19925:2 19940:1 19948:1 19965:1 19968:2 19973:1 20034:2 20046:7 20054:1 20103:7 20174:2 20259:2 20315:1 20328:1 20338:1 20340:1 20344:1 20359:1 20361:1 20371:1 20392:1 20397:1 20405:1 20427:1 20453:1 20458:5 20507:2 20551:1 20553:1 20565:1 20567:1 20580:1 20603:1 20659:1 20682:1 20705:3 20737:5 20757:1 20799:1 20848:1 20852:2 20853:2 20857:1 20878:1 20881:1 20947:2 20988:1 21006:1 21012:1 21033:1 21043:1 21048:2 21054:1 21059:1 21080:2 21081:1 21104:1 21154:1 21198:1 21210:2 21223:1 21224:1 21244:1 21245:1 21250:1 21279:1 21316:2 21351:2 21355:1 21356:1 21359:1 21379:1 21413:1 21505:1 21511:1 21520:3 21544:1 21548:2 21590:1 21612:1 21617:1 21626:1 21644:1 21648:1 21650:7 21690:1 21701:2 21739:2 21756:1 21766:1 21795:1 21832:1 21849:2 21864:6 21901:1 21910:1 21914:1 21918:7 21928:1 21962:1 22011:1 22014:1 22016:1 22017:1 22019:2 22022:2 22023:1 22034:1 22044:1 22048:1 22051:2 22089:1 22111:1 22193:2 22226:1 22266:4 22287:7 22290:3 22293:2 22300:1 22357:1 22374:1 22409:1 22430:1 22537:1 22549:1 22550:2 22560:1 22628:1 22693:3 22745:2 22760:1 22787:1 22831:1 22908:2 22911:1 22917:2 22933:1 22975:1 23045:1 23058:1 23103:1 23112:1 23123:1 23145:1 23158:2 23175:1 23180:1 23230:3 23299:1 23309:2 23337:1 23351:1 23418:3 23426:2 23449:1 23463:4 23464:1 23468:1 23485:1 23494:12 23514:1 23521:1 23555:1 23573:1 23581:5 23587:1 23596:1 23617:1 23623:1 23641:1 23665:6 23666:1 23689:1 23690:1 23703:2 23706:1 23710:3 23713:1 23718:1 23721:1 23725:1 23726:1 23745:3 23785:7 23796:2 23800:1 23802:1 23840:1 23881:1 23892:1 23910:1 23921:2 23969:4 23971:1 24006:1 24015:1 24114:2 24176:1 24179:7 24184:2 24226:1 24230:1 24240:1 24258:1 24260:1 24279:1 24313:3 24323:2 24348:1 24352:1 24357:1 24363:1 24364:2 24396:1 24410:1 24416:3 24429:2 24440:2 24460:1 24464:1 24498:6 24502:1 24504:3 24531:1 24542:1 24548:1 24557:1 24561:1 24590:1 24728:1 24761:1 24780:1 24786:2 24791:1 24795:1 24804:1 24820:2 24861:1 24868:1 24877:1 24898:1 24915:1 24967:1 24980:1 24998:1 25013:1 25034:4 25053:2 25077:1 25113:1 25135:2 25139:1 25180:1 25227:1 25238:1 25281:3 25318:2 25345:1 25375:1 25376:1 25379:1 25415:1 25416:1 25422:3 10 4:1 6:3 50:1 65:1 72:1 78:1 98:1 130:1 164:8 172:4 173:2 246:1 249:1 258:1 294:1 298:1 303:1 311:2 317:1 367:1 374:2 395:1 429:1 466:1 508:3 539:1 555:1 557:3 564:4 579:1 616:1 690:1 701:2 707:1 715:2 738:1 787:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:4 877:1 914:2 918:1 934:1 1007:1 1032:2 1087:1 1096:2 1129:1 1143:1 1154:1 1176:1 1185:1 1205:1 1249:1 1251:1 1254:1 1268:1 1269:1 1284:4 1290:1 1327:1 1333:2 1337:2 1338:1 1342:1 1343:1 1346:2 1360:1 1366:1 1424:1 1425:2 1428:1 1432:2 1464:4 1478:1 1497:1 1505:1 1548:1 1554:1 1586:2 1605:1 1618:1 1621:3 1643:1 1661:1 1673:1 1685:4 1704:2 1712:1 1769:1 1790:1 1806:1 1816:2 1824:1 1855:1 1926:3 1946:1 1956:1 1992:2 1993:2 2022:2 2028:1 2032:1 2038:1 2045:2 2048:1 2049:1 2051:1 2058:1 2059:3 2060:2 2062:1 2108:1 2170:2 2183:1 2184:1 2221:1 2249:2 2258:1 2288:1 2292:1 2300:4 2332:1 2359:1 2434:2 2441:2 2450:1 2452:2 2468:1 2473:8 2477:1 2484:1 2503:1 2516:1 2528:1 2538:4 2552:1 2578:2 2605:1 2606:5 2611:1 2614:2 2619:2 2638:1 2641:1 2654:3 2660:1 2670:1 2675:4 2686:1 2693:1 2701:1 2712:1 2730:2 2749:1 2786:1 2812:3 2814:1 2817:1 2863:1 2881:3 2884:2 2885:2 2927:1 2928:1 2944:4 2948:1 2964:1 3022:1 3031:8 3054:1 3133:1 3157:1 3167:2 3176:1 3177:1 3182:1 3200:1 3230:1 3254:1 3260:1 3268:2 3305:1 3306:3 3340:3 3345:5 3364:1 3370:1 3382:1 3388:2 3397:1 3427:1 3428:2 3440:1 3449:1 3470:1 3522:1 3535:1 3556:1 3563:2 3652:1 3691:1 3699:3 3703:2 3707:1 3717:1 3743:1 3750:1 3766:1 3807:2 3810:1 3811:1 3815:1 3816:1 3830:1 3837:1 3838:1 3841:1 3874:1 3891:1 3925:1 3945:2 3954:1 3993:1 4020:1 4050:1 4051:1 4066:3 4069:1 4077:3 4106:3 4112:1 4116:2 4140:1 4160:1 4167:2 4185:1 4194:2 4207:1 4227:1 4240:2 4260:1 4281:4 4282:1 4293:1 4304:2 4309:1 4312:1 4370:1 4382:2 4383:1 4385:1 4388:2 4393:3 4394:1 4410:1 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4694:1 4707:1 4709:1 4714:4 4751:1 4766:1 4774:1 4792:2 4822:2 4877:2 4896:1 4903:3 4907:1 4919:1 4929:1 4965:1 4969:2 5007:1 5011:1 5027:2 5042:1 5045:1 5051:1 5102:1 5110:1 5115:13 5125:1 5138:1 5149:2 5180:1 5183:1 5185:2 5264:2 5319:1 5322:3 5324:3 5400:1 5407:1 5415:1 5428:2 5447:6 5532:2 5533:1 5539:1 5551:1 5565:1 5640:1 5651:1 5658:1 5662:1 5667:1 5677:3 5679:1 5725:1 5757:8 5763:1 5840:3 5849:1 5889:2 5898:1 5899:2 5951:1 5967:1 5994:9 6027:2 6048:4 6052:1 6053:1 6072:2 6073:1 6104:1 6273:1 6283:1 6352:1 6364:1 6370:1 6374:1 6375:1 6402:1 6414:1 6431:1 6457:1 6462:1 6463:1 6471:1 6546:1 6596:13 6639:1 6701:1 6731:1 6737:2 6760:1 6790:1 6818:1 6835:8 6836:1 6846:1 6857:2 6865:1 6869:2 6877:2 6881:1 6892:17 6909:4 6911:3 6920:1 6960:1 6970:1 6995:2 7014:1 7066:1 7075:1 7097:3 7116:1 7133:1 7140:2 7144:1 7224:1 7312:1 7322:12 7323:1 7339:2 7360:1 7368:1 7471:2 7494:1 7509:1 7516:1 7560:1 7597:1 7604:1 7647:1 7710:2 7718:1 7726:1 7728:2 7751:1 7828:1 7841:3 7858:1 7896:1 7912:1 7916:1 7927:1 7928:2 7940:2 7958:1 8023:1 8035:1 8038:2 8048:1 8064:1 8065:1 8083:1 8102:1 8184:1 8187:1 8191:8 8194:1 8199:1 8201:1 8216:2 8224:2 8326:1 8342:1 8362:3 8384:1 8410:2 8455:1 8492:1 8514:1 8531:1 8561:3 8575:1 8576:1 8582:1 8609:1 8633:1 8640:2 8682:3 8715:1 8716:8 8718:8 8726:1 8735:1 8773:2 8780:3 8806:3 8832:1 8842:1 8853:1 8871:1 8881:1 8901:2 8961:1 8980:1 8985:2 9015:1 9033:1 9099:1 9105:1 9142:1 9150:2 9159:1 9162:1 9177:1 9216:1 9219:1 9248:1 9295:1 9313:1 9353:1 9381:4 9387:1 9392:1 9411:1 9416:2 9437:1 9439:1 9443:4 9453:4 9456:1 9464:2 9510:9 9523:1 9537:4 9540:2 9541:1 9583:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:8 9690:1 9710:1 9725:3 9727:1 9799:2 9811:1 9813:3 9815:1 9823:5 9849:1 9901:1 9961:1 9989:2 9992:1 10089:2 10162:1 10200:1 10246:1 10263:1 10367:2 10387:1 10395:1 10400:1 10405:1 10412:1 10415:1 10419:1 10456:2 10460:1 10461:1 10474:2 10506:1 10516:1 10541:1 10561:1 10590:3 10596:8 10607:2 10681:1 10783:8 10804:8 10819:2 10825:1 10829:1 10840:2 10841:2 10858:1 10924:1 10939:1 11013:3 11036:1 11063:1 11089:8 11115:1 11118:2 11152:1 11161:1 11195:1 11230:1 11249:1 11279:2 11294:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:2 11524:1 11529:1 11563:2 11567:1 11574:1 11666:1 11676:1 11678:1 11682:2 11684:1 11700:3 11708:1 11716:1 11720:1 11750:1 11780:2 11786:1 11792:2 11803:1 11811:2 11817:1 11833:1 11854:1 11860:2 11871:1 11902:2 11915:1 11936:2 11941:1 11955:2 11978:1 11982:2 12030:3 12103:1 12105:1 12108:1 12111:1 12122:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:3 12274:1 12281:1 12295:1 12297:1 12299:1 12305:1 12351:1 12352:1 12367:1 12377:1 12451:1 12474:1 12483:2 12489:2 12509:1 12521:2 12528:1 12540:1 12601:3 12619:1 12645:1 12657:1 12659:1 12713:2 12716:1 12723:2 12734:1 12741:1 12770:1 12776:1 12795:1 12802:1 12838:1 12852:2 12859:1 12866:1 12874:1 12891:1 12896:1 12944:2 12964:1 12991:3 12996:2 12997:2 13009:1 13053:2 13061:1 13136:1 13184:1 13188:1 13209:1 13219:2 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13307:1 13330:1 13345:1 13398:1 13433:1 13515:1 13540:1 13555:1 13564:1 13641:1 13750:1 13776:6 13777:2 13790:3 13854:1 13914:2 13935:5 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14025:1 14049:4 14064:2 14073:1 14075:1 14086:1 14089:6 14114:1 14158:2 14166:2 14208:1 14211:1 14214:1 14227:1 14230:1 14276:6 14279:1 14283:1 14293:2 14306:2 14365:1 14370:1 14386:1 14387:1 14388:1 14391:1 14398:2 14401:2 14409:1 14411:1 14412:1 14418:1 14423:1 14477:1 14535:1 14597:1 14613:1 14620:1 14659:1 14664:1 14680:4 14740:4 14756:1 14809:1 14837:1 14843:4 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14986:1 14999:1 15054:4 15123:1 15141:1 15164:1 15182:1 15227:9 15247:2 15258:1 15276:1 15285:1 15296:1 15306:1 15350:1 15378:1 15384:1 15393:1 15415:1 15435:1 15454:1 15466:4 15474:1 15492:2 15520:1 15587:1 15611:1 15669:1 15675:1 15676:6 15681:1 15687:1 15699:2 15700:1 15716:1 15719:1 15733:1 15738:2 15740:1 15789:1 15821:8 15825:1 15826:1 15839:1 15858:1 15866:4 15884:1 15895:1 15921:1 15950:2 15960:2 15962:1 15979:1 15980:1 16036:1 16046:1 16077:1 16081:1 16090:1 16130:1 16142:1 16159:2 16161:1 16187:1 16228:2 16247:1 16264:3 16268:1 16282:1 16321:1 16341:1 16351:1 16379:1 16409:1187 16424:1 16446:1 16521:1 16592:1 16599:1 16637:1 16697:1 16698:13 16794:1 16864:2 16884:1 16888:5 16896:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:2 17077:3 17080:4 17088:1 17093:1 17104:1 17115:5 17156:1 17158:1 17204:2 17218:1 17317:1 17330:1 17351:1 17381:1 17407:1 17446:1 17449:4 17517:2 17536:2 17537:1 17573:1 17592:1 17594:1 17602:1 17612:1 17614:1 17623:1 17636:2 17675:1 17688:1 17689:1 17693:1 17697:2 17718:1 17803:3 17820:1 17838:1 17843:1 17860:1 17866:1 17894:1 17953:3 17990:3 18021:1 18081:1 18090:1 18145:1 18153:1 18250:2 18253:1 18266:1 18267:2 18288:3 18312:1 18319:1 18332:1 18336:1 18342:1 18346:1 18356:1 18399:1 18408:1 18416:1 18455:1 18469:14 18475:1 18493:1 18567:1 18612:1 18633:1 18671:1 18708:1 18712:1 18717:1 18719:1 18758:1 18767:1 18780:1 18791:1 18825:4 18832:1 18843:4 18844:1 18850:2 18852:1 18866:1 18868:1 18906:1 18914:3 18922:2 18927:1 18953:1 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19056:1 19066:1 19067:2 19076:3 19096:1 19159:1 19189:1 19232:1 19237:1 19247:1 19253:2 19304:2 19305:1 19306:1 19327:1 19332:1 19342:1 19344:2 19382:2 19399:2 19405:1 19407:1 19421:1 19457:1 19501:2 19505:1 19507:1 19517:1 19552:2 19564:2 19567:1 19577:1 19584:2 19611:9 19723:2 19734:1 19743:1 19793:1 19807:1 19812:2 19814:1 19852:1 19853:1 19867:4 19883:3 19902:1 19918:1 19924:3 19925:2 19940:1 19948:1 19965:1 19968:2 19973:1 20034:2 20046:8 20054:1 20103:8 20174:2 20259:2 20315:1 20328:1 20338:1 20340:1 20344:1 20359:1 20361:1 20371:1 20392:1 20397:1 20405:1 20427:1 20453:1 20458:5 20507:2 20551:2 20553:1 20565:1 20567:1 20580:1 20603:1 20659:1 20682:1 20684:1 20705:3 20737:5 20757:1 20799:1 20848:1 20852:2 20853:2 20857:1 20878:1 20881:1 20947:2 20988:1 21006:1 21012:1 21029:1 21033:1 21043:1 21048:2 21054:1 21059:1 21080:2 21081:1 21091:1 21104:1 21154:1 21198:1 21210:2 21223:1 21224:1 21244:1 21245:1 21250:1 21274:1 21279:1 21316:2 21351:2 21355:1 21356:1 21359:1 21379:1 21413:1 21505:1 21511:1 21520:3 21536:1 21544:1 21548:2 21590:1 21612:1 21617:1 21626:1 21644:1 21648:1 21650:8 21690:1 21701:2 21739:2 21756:1 21766:1 21795:1 21832:1 21849:2 21864:6 21901:1 21910:1 21914:1 21918:8 21928:1 21939:1 21962:1 22011:1 22014:2 22016:1 22017:2 22019:2 22022:2 22023:1 22034:1 22044:1 22048:1 22051:2 22089:1 22111:1 22193:2 22226:1 22266:4 22287:8 22290:3 22293:2 22300:1 22357:1 22374:1 22409:2 22430:1 22537:1 22549:1 22550:2 22560:1 22628:1 22693:3 22745:2 22760:1 22787:1 22831:1 22908:2 22911:1 22917:2 22933:1 22975:1 23045:1 23058:1 23103:1 23112:1 23115:1 23123:1 23145:1 23158:2 23175:1 23180:1 23230:4 23299:1 23309:2 23337:1 23351:1 23418:3 23426:2 23449:1 23463:4 23464:1 23468:1 23485:1 23494:13 23514:1 23521:1 23555:1 23573:1 23581:5 23587:1 23596:1 23617:2 23623:1 23641:1 23665:7 23666:2 23689:1 23690:1 23703:2 23706:1 23710:3 23713:1 23718:1 23721:1 23725:1 23726:1 23745:3 23785:8 23796:2 23800:1 23802:1 23840:1 23881:1 23892:1 23910:1 23921:3 23969:4 23971:1 24006:1 24015:1 24114:2 24176:1 24179:8 24184:2 24201:1 24226:1 24230:1 24239:1 24240:1 24258:1 24260:1 24279:1 24313:3 24323:2 24348:1 24352:1 24357:1 24363:1 24364:2 24396:1 24410:1 24416:3 24429:2 24440:2 24453:1 24460:1 24464:1 24498:8 24502:1 24504:3 24531:1 24542:1 24548:1 24557:1 24561:1 24590:1 24728:1 24761:1 24780:1 24786:2 24791:3 24795:1 24804:1 24820:2 24861:1 24868:1 24877:1 24898:1 24913:1 24915:1 24967:1 24980:1 24986:1 24998:1 25013:1 25034:4 25053:2 25077:1 25113:1 25135:2 25139:1 25180:1 25227:1 25238:1 25281:3 25314:1 25318:2 25345:1 25375:1 25376:1 25379:1 25383:1 25415:1 25416:1 25422:3 10 4:2 6:3 50:1 65:1 72:1 78:1 98:1 130:1 164:8 172:4 173:2 246:1 249:1 258:1 294:1 298:1 303:1 311:2 317:1 367:2 374:2 395:1 429:1 466:1 508:3 529:1 539:1 555:1 557:3 564:4 579:1 616:1 690:1 701:2 707:1 715:2 738:1 787:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:5 877:1 879:2 914:2 918:1 934:1 1007:1 1032:2 1087:1 1096:2 1129:1 1143:1 1154:1 1176:1 1185:1 1205:1 1249:1 1251:1 1254:1 1268:1 1269:1 1284:4 1290:1 1327:1 1333:2 1337:2 1338:1 1342:2 1343:1 1346:2 1360:1 1366:1 1424:1 1425:2 1428:1 1432:2 1464:4 1478:1 1497:1 1505:1 1548:1 1554:1 1586:2 1605:1 1618:1 1621:3 1643:1 1661:1 1673:1 1685:4 1700:1 1704:2 1712:1 1769:1 1790:1 1806:1 1816:2 1823:1 1824:1 1855:1 1887:1 1926:3 1946:1 1956:1 1979:1 1992:2 1993:2 2021:2 2022:2 2028:1 2032:1 2038:1 2045:2 2048:1 2049:1 2051:1 2058:1 2059:3 2060:3 2062:1 2108:1 2170:2 2183:1 2184:1 2221:2 2249:2 2258:1 2288:1 2292:1 2300:4 2332:1 2359:1 2434:2 2441:2 2450:1 2452:2 2468:1 2473:8 2477:1 2484:1 2503:1 2516:1 2528:1 2538:4 2552:1 2578:2 2605:1 2606:5 2611:1 2614:2 2619:2 2638:1 2641:1 2654:3 2660:1 2670:1 2675:4 2686:1 2693:1 2701:1 2712:1 2730:2 2749:1 2786:1 2812:3 2814:1 2817:1 2863:1 2881:3 2884:2 2885:2 2927:1 2928:1 2944:4 2948:1 2958:1 2964:1 3022:1 3031:8 3054:1 3133:1 3157:1 3167:2 3176:1 3177:1 3182:1 3200:1 3230:1 3246:1 3254:1 3260:1 3268:2 3305:1 3306:3 3340:3 3345:5 3364:1 3369:1 3370:1 3382:1 3388:2 3397:1 3427:1 3428:2 3440:1 3449:1 3470:1 3522:1 3527:1 3535:1 3556:1 3563:2 3652:1 3691:1 3699:3 3703:2 3707:1 3717:1 3743:1 3750:1 3766:1 3807:3 3810:1 3811:1 3815:1 3816:1 3830:1 3837:1 3838:1 3841:1 3874:1 3891:1 3894:1 3925:1 3945:2 3954:1 3993:1 4020:1 4050:1 4051:1 4066:4 4069:1 4077:3 4081:1 4106:3 4112:1 4116:2 4140:1 4160:1 4167:2 4185:1 4194:2 4207:1 4227:1 4240:2 4260:1 4281:5 4282:1 4293:1 4304:2 4309:1 4312:1 4370:1 4382:2 4383:1 4385:1 4388:2 4393:3 4394:1 4410:1 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4694:1 4707:1 4709:1 4714:4 4751:1 4766:1 4774:1 4792:2 4822:2 4877:2 4896:1 4903:3 4907:1 4919:1 4929:1 4965:1 4969:2 4979:1 5007:1 5011:1 5027:2 5042:1 5045:1 5051:1 5102:1 5110:1 5115:14 5125:1 5138:1 5149:2 5180:1 5183:1 5185:2 5264:2 5319:2 5322:3 5324:3 5400:1 5407:1 5415:1 5425:1 5428:2 5447:6 5532:2 5533:1 5539:1 5551:1 5565:1 5640:1 5651:1 5654:1 5658:1 5662:1 5667:1 5677:3 5678:1 5679:1 5725:1 5757:8 5763:1 5840:3 5849:1 5889:2 5898:1 5899:2 5951:1 5967:1 5994:10 6027:2 6048:4 6052:1 6053:1 6072:3 6073:1 6104:2 6273:1 6283:1 6352:1 6364:1 6370:1 6374:1 6375:1 6402:1 6414:1 6431:1 6457:1 6462:1 6463:1 6471:1 6546:1 6596:14 6639:1 6701:1 6731:1 6737:2 6760:1 6790:1 6818:1 6835:8 6836:1 6846:1 6857:2 6865:1 6869:2 6877:2 6881:1 6892:20 6909:4 6911:3 6920:1 6960:1 6970:1 6995:2 7014:1 7066:1 7075:2 7097:3 7116:1 7133:1 7140:2 7144:1 7224:1 7312:1 7322:12 7323:1 7339:2 7360:1 7368:1 7440:1 7471:2 7494:2 7509:1 7516:1 7560:1 7597:1 7604:1 7647:1 7710:2 7718:1 7726:1 7728:2 7751:1 7828:1 7841:3 7858:1 7896:1 7912:1 7916:1 7927:1 7928:2 7940:2 7958:1 8023:1 8035:1 8038:2 8043:1 8048:1 8064:1 8065:1 8083:1 8102:1 8184:1 8187:1 8191:8 8194:1 8199:1 8201:1 8216:2 8224:2 8326:1 8342:1 8362:3 8384:2 8400:1 8410:2 8455:1 8492:1 8514:1 8531:1 8561:3 8575:1 8576:1 8582:1 8609:1 8633:1 8640:2 8682:3 8715:1 8716:8 8718:8 8726:1 8735:1 8773:2 8780:3 8806:3 8832:1 8842:1 8853:1 8871:1 8881:1 8901:2 8961:1 8980:1 8985:2 9015:1 9033:1 9099:1 9105:1 9142:1 9150:2 9159:1 9162:1 9177:1 9216:1 9219:1 9248:1 9295:1 9313:1 9345:1 9353:1 9381:4 9387:1 9392:1 9410:1 9411:1 9416:2 9437:1 9439:1 9443:4 9453:4 9456:1 9464:2 9510:10 9523:2 9537:4 9540:2 9541:1 9583:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:8 9690:1 9710:1 9725:3 9727:1 9799:2 9811:1 9813:3 9815:1 9823:5 9849:1 9901:1 9961:1 9989:2 9992:1 10089:2 10162:1 10200:1 10246:1 10263:1 10367:2 10387:1 10395:1 10400:1 10405:1 10412:2 10415:1 10419:2 10456:2 10460:1 10461:1 10474:2 10506:1 10516:1 10541:1 10561:1 10590:3 10596:8 10607:2 10681:1 10783:8 10804:8 10819:2 10825:1 10829:1 10840:2 10841:2 10858:1 10888:1 10920:1 10924:1 10939:1 11013:3 11036:1 11063:1 11089:8 11115:1 11118:2 11152:1 11161:1 11195:1 11230:1 11249:1 11279:2 11294:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:2 11524:1 11529:1 11563:2 11567:1 11574:1 11666:1 11676:1 11678:1 11682:2 11684:1 11700:3 11708:1 11716:1 11720:1 11750:1 11780:2 11786:1 11792:2 11803:1 11811:2 11817:1 11833:1 11854:1 11860:2 11871:1 11902:2 11915:1 11936:2 11941:1 11955:2 11978:1 11982:2 12030:3 12103:1 12105:1 12108:1 12111:1 12122:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:3 12274:1 12281:1 12295:1 12297:1 12299:1 12305:1 12351:1 12352:1 12367:1 12377:1 12451:1 12474:1 12483:2 12489:2 12509:1 12521:2 12528:1 12540:1 12601:3 12619:1 12645:1 12657:1 12659:1 12713:2 12716:1 12723:2 12734:1 12741:1 12747:1 12770:1 12776:1 12795:1 12802:1 12838:1 12852:2 12859:1 12866:1 12874:1 12891:1 12896:1 12944:2 12964:1 12991:3 12996:2 12997:2 13009:1 13053:2 13061:1 13136:1 13184:1 13188:1 13209:1 13219:2 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13307:1 13330:1 13345:1 13398:1 13433:1 13515:1 13540:1 13555:1 13564:1 13641:1 13750:1 13776:6 13777:2 13790:3 13854:1 13914:2 13935:5 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14025:1 14049:4 14064:2 14073:1 14075:1 14086:1 14089:7 14114:1 14158:2 14166:2 14208:1 14211:1 14214:1 14227:1 14230:1 14236:1 14276:6 14279:1 14283:1 14293:2 14306:2 14365:1 14370:1 14386:1 14387:1 14388:1 14391:1 14398:2 14401:2 14409:1 14411:1 14412:1 14418:1 14423:1 14477:1 14483:1 14535:1 14597:1 14613:1 14620:1 14659:1 14664:1 14680:4 14740:4 14756:1 14809:1 14837:1 14843:4 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14986:1 14999:1 15054:4 15123:1 15141:1 15164:1 15182:1 15227:10 15247:2 15258:1 15276:2 15285:1 15296:1 15306:1 15350:1 15378:1 15384:1 15393:1 15415:1 15435:1 15448:1 15454:1 15466:4 15474:1 15492:2 15520:1 15587:1 15611:1 15669:1 15675:1 15676:6 15681:1 15687:1 15699:2 15700:1 15716:1 15719:1 15733:1 15738:2 15740:1 15752:1 15789:1 15821:8 15825:1 15826:1 15839:1 15858:1 15866:4 15884:1 15895:1 15921:1 15950:2 15960:2 15962:1 15979:1 15980:1 16036:1 16046:1 16077:1 16081:1 16090:1 16130:1 16142:2 16159:2 16161:1 16187:1 16228:2 16247:1 16264:3 16268:1 16282:1 16321:1 16341:1 16351:1 16379:1 16409:1236 16424:1 16446:1 16521:1 16583:1 16592:1 16599:1 16637:1 16697:1 16698:14 16794:1 16864:2 16884:1 16888:5 16896:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:2 17077:3 17080:6 17088:1 17093:1 17104:1 17115:5 17156:1 17158:1 17165:1 17204:2 17218:1 17317:1 17330:1 17351:1 17381:1 17407:1 17446:1 17449:4 17517:2 17536:2 17537:1 17573:1 17592:1 17594:1 17602:1 17612:1 17613:1 17614:1 17623:1 17636:2 17675:1 17688:1 17689:1 17693:1 17697:2 17718:1 17803:3 17820:1 17838:1 17843:1 17860:1 17866:1 17894:1 17953:3 17990:3 18021:1 18081:1 18090:1 18145:1 18153:1 18233:1 18250:2 18253:1 18266:1 18267:2 18288:3 18312:1 18319:1 18332:1 18336:1 18342:1 18346:2 18356:1 18399:1 18408:1 18416:1 18455:1 18469:15 18475:1 18493:1 18555:1 18567:1 18612:1 18633:1 18657:1 18671:1 18708:1 18712:1 18717:1 18719:1 18758:1 18767:1 18780:1 18791:1 18825:6 18830:1 18832:1 18843:4 18844:1 18845:1 18850:2 18852:1 18866:1 18868:1 18906:1 18914:3 18922:2 18927:1 18953:1 18955:1 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19056:1 19066:1 19067:2 19076:3 19096:1 19127:1 19159:1 19189:1 19232:1 19237:1 19247:1 19253:2 19304:2 19305:1 19306:1 19327:1 19332:1 19342:1 19344:2 19382:2 19399:2 19405:1 19407:2 19421:1 19453:2 19457:1 19501:2 19505:1 19507:1 19517:1 19528:1 19552:2 19564:2 19567:1 19577:1 19584:2 19611:10 19723:2 19730:1 19734:1 19743:1 19793:1 19807:1 19812:2 19814:1 19852:1 19853:1 19867:4 19883:3 19901:1 19902:1 19918:1 19924:3 19925:2 19940:1 19948:1 19965:1 19968:2 19973:1 20034:2 20046:8 20054:1 20103:8 20174:2 20232:1 20259:2 20315:1 20328:1 20338:1 20340:1 20344:1 20359:1 20361:1 20371:1 20392:1 20397:1 20405:1 20427:1 20453:1 20458:5 20507:2 20518:1 20551:2 20553:1 20565:1 20567:1 20580:1 20603:1 20659:1 20682:1 20684:1 20705:4 20737:5 20757:1 20799:1 20848:1 20852:2 20853:2 20857:1 20878:1 20881:1 20947:2 20988:1 21006:1 21012:1 21029:1 21033:1 21043:1 21048:2 21054:1 21059:1 21080:2 21081:1 21091:1 21104:1 21154:1 21198:1 21210:2 21223:1 21224:1 21244:1 21245:1 21250:1 21274:1 21279:1 21316:2 21351:2 21355:1 21356:1 21359:1 21368:1 21379:1 21413:1 21505:1 21511:1 21520:3 21536:1 21544:1 21548:2 21590:1 21612:1 21617:1 21626:1 21644:1 21648:1 21650:8 21659:1 21690:1 21701:2 21739:2 21756:1 21766:1 21795:1 21832:1 21849:2 21864:6 21901:1 21910:1 21914:1 21918:8 21928:1 21939:1 21945:1 21962:1 22011:1 22014:2 22016:1 22017:2 22019:2 22022:2 22023:1 22034:1 22044:1 22048:1 22051:2 22089:2 22111:1 22193:2 22226:1 22266:4 22287:8 22290:3 22293:2 22300:1 22357:1 22374:1 22409:2 22430:1 22537:1 22549:1 22550:2 22553:1 22560:1 22568:1 22628:1 22675:1 22693:3 22745:2 22760:1 22787:1 22831:1 22908:2 22911:1 22917:2 22933:1 22975:1 23045:1 23058:1 23103:1 23112:1 23115:1 23123:1 23145:1 23158:2 23175:1 23180:1 23230:4 23299:1 23309:2 23337:1 23351:1 23418:3 23426:2 23449:1 23463:4 23464:1 23468:1 23485:1 23494:14 23514:1 23521:2 23555:1 23573:1 23581:5 23587:1 23596:1 23617:2 23623:1 23641:1 23665:7 23666:2 23689:1 23690:1 23703:2 23706:1 23710:3 23713:1 23718:1 23721:1 23725:1 23726:1 23745:3 23750:1 23785:8 23796:2 23800:1 23802:1 23840:1 23881:1 23892:1 23910:1 23921:3 23955:1 23969:4 23971:1 24006:1 24015:1 24114:2 24176:1 24179:8 24184:2 24188:1 24201:1 24226:1 24230:1 24239:1 24240:1 24258:1 24260:1 24279:1 24313:3 24323:2 24348:1 24352:1 24357:1 24363:1 24364:2 24396:1 24408:1 24410:1 24416:3 24429:2 24440:2 24453:1 24460:1 24464:1 24498:8 24502:1 24504:4 24531:1 24542:1 24548:1 24557:1 24561:1 24590:1 24728:1 24761:1 24780:1 24786:2 24791:3 24795:1 24804:1 24820:2 24861:1 24868:1 24877:1 24898:1 24913:1 24915:1 24967:1 24980:1 24986:1 24998:1 25013:1 25031:1 25034:4 25053:2 25077:1 25113:1 25135:2 25139:1 25180:2 25227:1 25238:1 25281:3 25314:1 25318:2 25345:1 25375:1 25376:1 25379:1 25383:1 25415:1 25416:1 25422:3 10 4:2 6:3 50:1 60:1 65:1 72:1 78:1 98:1 130:1 164:8 172:4 173:2 246:1 249:1 258:1 294:1 298:1 303:1 311:2 317:1 363:1 367:2 374:2 395:1 429:1 466:1 508:3 529:1 539:1 555:1 557:3 564:4 579:1 616:1 690:1 701:2 707:1 715:2 738:1 787:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:5 877:1 879:2 914:2 918:1 934:1 1007:1 1032:2 1087:1 1096:2 1129:1 1143:1 1154:1 1167:1 1176:1 1185:1 1205:1 1249:1 1251:1 1254:1 1268:1 1269:1 1284:4 1290:1 1327:1 1333:2 1337:2 1338:1 1342:2 1343:1 1346:2 1354:1 1360:1 1366:1 1424:1 1425:2 1428:1 1432:2 1464:4 1478:1 1497:1 1505:1 1548:1 1554:1 1586:2 1605:1 1618:1 1621:3 1643:1 1661:1 1673:1 1685:4 1700:1 1704:2 1712:1 1769:1 1790:1 1806:1 1816:2 1823:1 1824:1 1855:1 1887:1 1926:3 1946:1 1956:1 1979:1 1992:2 1993:2 2021:2 2022:2 2028:1 2032:1 2038:1 2045:2 2048:1 2049:1 2051:1 2058:1 2059:3 2060:3 2062:1 2108:1 2170:2 2183:1 2184:1 2221:2 2249:2 2258:1 2288:1 2292:1 2300:4 2329:1 2332:1 2359:1 2434:2 2441:2 2450:1 2452:2 2468:1 2473:8 2477:1 2484:1 2503:1 2516:1 2528:1 2538:4 2552:1 2578:2 2605:1 2606:6 2611:1 2614:2 2619:2 2638:1 2641:1 2654:3 2660:1 2670:1 2675:4 2686:1 2693:1 2701:1 2712:1 2730:2 2749:1 2786:1 2812:3 2814:1 2817:1 2863:1 2881:3 2884:2 2885:2 2927:1 2928:1 2944:4 2948:1 2958:1 2964:1 3022:1 3031:8 3054:1 3133:1 3155:1 3157:1 3167:2 3176:1 3177:1 3182:1 3200:1 3224:1 3230:1 3246:1 3254:1 3260:1 3268:2 3305:1 3306:3 3340:3 3345:5 3364:1 3369:1 3370:1 3382:1 3388:2 3397:1 3427:1 3428:2 3440:1 3449:1 3470:1 3522:1 3527:1 3535:1 3556:1 3563:2 3652:1 3691:1 3699:3 3703:2 3707:1 3717:1 3743:1 3750:1 3766:1 3807:3 3810:1 3811:1 3815:1 3816:1 3830:1 3837:1 3838:1 3841:1 3874:1 3891:1 3894:1 3925:1 3945:2 3954:1 3993:1 4020:1 4050:1 4051:1 4066:4 4069:1 4077:3 4081:1 4106:3 4112:1 4116:2 4140:1 4160:1 4167:2 4185:1 4194:2 4207:1 4227:1 4240:2 4260:1 4281:6 4282:1 4293:1 4304:2 4309:1 4312:1 4370:1 4382:2 4383:1 4385:1 4388:2 4393:4 4394:1 4402:1 4410:1 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4649:1 4694:1 4707:1 4709:1 4714:4 4751:1 4766:1 4774:1 4792:2 4822:2 4877:2 4896:1 4903:3 4907:1 4919:1 4929:1 4965:1 4969:2 4979:1 5007:1 5011:1 5027:2 5042:1 5045:1 5051:1 5102:1 5110:1 5115:15 5125:1 5138:1 5149:2 5180:1 5183:1 5185:2 5264:2 5319:2 5322:3 5324:3 5400:1 5407:1 5415:2 5425:1 5428:2 5447:6 5532:2 5533:1 5539:1 5551:1 5565:1 5640:1 5651:1 5654:1 5658:1 5662:1 5667:1 5677:3 5678:1 5679:1 5725:1 5757:8 5763:1 5840:3 5849:1 5889:2 5898:1 5899:2 5951:1 5967:1 5994:11 6027:2 6048:4 6052:1 6053:1 6072:3 6073:1 6104:2 6204:1 6273:1 6283:1 6352:1 6364:1 6370:1 6374:1 6375:1 6402:1 6414:1 6431:1 6457:1 6462:1 6463:1 6471:1 6546:1 6596:15 6611:1 6639:1 6701:1 6731:1 6737:2 6760:1 6761:1 6790:1 6818:1 6835:8 6836:1 6846:1 6857:2 6865:1 6869:2 6877:2 6881:1 6892:20 6909:5 6911:3 6920:1 6960:1 6970:1 6995:2 7014:1 7066:1 7075:3 7097:3 7116:1 7133:1 7140:2 7144:1 7179:1 7224:1 7312:2 7322:12 7323:1 7339:2 7360:1 7368:1 7440:1 7471:2 7487:1 7494:2 7509:1 7516:1 7560:2 7597:1 7604:1 7647:1 7710:3 7718:1 7726:1 7728:2 7751:1 7828:1 7841:3 7858:1 7896:1 7912:1 7916:1 7927:1 7928:2 7940:2 7958:1 8023:1 8035:1 8038:2 8043:1 8048:1 8064:1 8065:1 8083:1 8102:1 8184:1 8187:1 8191:8 8194:1 8199:1 8201:1 8216:2 8224:2 8326:1 8342:1 8362:3 8384:2 8400:1 8410:2 8455:1 8492:1 8514:1 8531:1 8561:3 8575:1 8576:1 8582:1 8609:1 8633:1 8640:2 8682:3 8715:1 8716:8 8718:8 8726:1 8735:1 8773:2 8780:3 8806:3 8832:1 8842:1 8853:1 8871:1 8881:1 8901:2 8961:1 8980:1 8985:2 8995:1 8997:1 9015:1 9033:1 9099:1 9105:1 9142:1 9150:2 9159:1 9162:1 9177:2 9216:1 9219:1 9248:1 9295:1 9313:1 9345:1 9353:1 9381:4 9387:1 9392:1 9410:1 9411:1 9416:2 9437:1 9439:1 9443:4 9453:4 9456:1 9464:2 9510:11 9523:2 9537:4 9540:2 9541:1 9583:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:8 9690:1 9710:1 9725:3 9727:1 9799:2 9811:1 9813:3 9815:1 9823:5 9845:1 9849:1 9901:1 9961:1 9989:2 9992:1 10089:2 10162:1 10196:1 10200:1 10246:1 10262:1 10263:1 10367:2 10387:1 10395:1 10400:1 10405:1 10412:3 10415:1 10417:1 10419:2 10456:2 10460:1 10461:1 10474:2 10506:1 10516:1 10541:1 10561:1 10590:3 10596:8 10607:2 10681:1 10783:8 10804:8 10819:2 10825:1 10829:1 10840:2 10841:2 10858:1 10888:1 10920:1 10924:1 10939:1 11013:3 11036:1 11063:1 11089:8 11115:1 11118:2 11152:1 11161:1 11195:1 11230:1 11249:1 11279:2 11294:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:2 11524:1 11529:1 11563:2 11567:1 11574:1 11666:1 11676:1 11678:1 11682:2 11684:1 11700:3 11708:1 11716:1 11720:1 11750:1 11780:2 11786:1 11792:2 11803:1 11811:2 11817:1 11833:1 11854:1 11860:3 11871:1 11902:2 11915:1 11936:2 11941:1 11955:2 11978:1 11982:2 12020:1 12030:3 12103:1 12105:1 12108:1 12111:1 12122:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:3 12274:1 12281:1 12295:1 12297:1 12299:1 12305:1 12351:1 12352:1 12367:1 12377:1 12451:1 12474:1 12483:2 12489:2 12509:1 12521:2 12528:1 12540:1 12601:3 12619:1 12645:1 12657:1 12659:1 12713:2 12716:1 12723:2 12734:1 12741:1 12747:1 12770:1 12776:1 12795:1 12802:1 12838:1 12852:2 12859:1 12866:1 12874:1 12891:1 12896:1 12906:1 12941:1 12944:2 12964:1 12991:3 12996:2 12997:2 13009:1 13053:2 13061:1 13136:1 13184:1 13188:1 13209:1 13219:2 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13307:1 13330:1 13345:1 13388:1 13398:1 13433:1 13515:1 13540:1 13555:1 13564:1 13641:1 13750:1 13776:6 13777:2 13790:3 13854:1 13914:2 13935:5 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14025:1 14049:4 14064:2 14073:1 14075:1 14086:1 14089:7 14114:1 14158:3 14166:2 14208:1 14211:1 14214:1 14227:1 14230:1 14236:1 14276:6 14279:1 14283:1 14293:3 14306:2 14365:1 14370:1 14386:1 14387:1 14388:1 14391:1 14398:2 14401:2 14409:1 14411:1 14412:1 14418:1 14423:1 14477:1 14483:1 14535:1 14597:1 14613:1 14620:1 14659:1 14664:1 14680:4 14740:4 14756:1 14809:1 14837:1 14843:4 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14986:1 14999:1 15045:1 15054:4 15123:1 15141:1 15164:1 15182:1 15227:11 15247:2 15258:1 15267:1 15276:2 15285:1 15296:1 15306:1 15350:1 15378:1 15384:1 15393:1 15415:1 15435:1 15448:1 15454:1 15466:4 15474:1 15492:2 15520:1 15587:1 15611:1 15669:1 15675:1 15676:6 15681:1 15687:1 15699:2 15700:1 15716:1 15719:1 15733:1 15738:2 15740:1 15752:1 15789:1 15821:8 15825:1 15826:1 15839:1 15858:1 15866:4 15884:1 15895:1 15921:1 15950:2 15960:2 15962:1 15979:1 15980:1 16036:1 16046:1 16077:1 16081:1 16090:1 16130:1 16142:2 16159:2 16161:1 16187:1 16228:2 16247:1 16264:4 16268:1 16282:1 16321:1 16341:1 16351:1 16379:1 16409:1283 16424:1 16446:1 16521:1 16583:1 16592:1 16599:1 16637:1 16697:1 16698:15 16794:1 16864:2 16884:1 16888:5 16896:1 16956:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:2 17075:1 17077:3 17080:6 17088:1 17093:1 17104:1 17115:5 17156:1 17158:1 17165:1 17204:2 17218:1 17317:1 17330:1 17351:1 17360:1 17381:1 17407:1 17446:1 17449:4 17517:2 17536:2 17537:1 17573:1 17592:2 17594:1 17602:1 17612:1 17613:1 17614:1 17623:2 17636:2 17675:1 17688:1 17689:1 17693:1 17697:2 17718:1 17803:3 17820:1 17838:1 17843:1 17860:1 17866:1 17894:1 17898:1 17953:3 17990:3 18021:1 18081:1 18090:1 18145:1 18153:1 18233:1 18250:2 18253:1 18255:1 18266:1 18267:2 18288:3 18312:1 18319:1 18332:1 18336:1 18342:1 18346:2 18356:1 18399:1 18408:1 18416:1 18455:1 18469:16 18475:1 18493:1 18507:1 18555:1 18567:1 18612:1 18633:1 18657:1 18671:1 18708:2 18712:1 18717:1 18719:1 18732:1 18758:1 18767:1 18780:1 18791:1 18825:6 18830:1 18832:1 18843:4 18844:1 18845:1 18850:2 18852:1 18866:1 18868:1 18906:1 18914:3 18922:2 18927:1 18953:1 18955:1 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19056:1 19057:1 19066:1 19067:2 19076:3 19096:1 19103:1 19127:1 19159:1 19189:1 19232:1 19237:1 19247:1 19253:2 19261:1 19304:2 19305:1 19306:1 19327:1 19332:1 19342:1 19344:2 19382:2 19399:2 19405:1 19407:2 19421:1 19453:2 19457:1 19501:3 19505:1 19507:1 19517:1 19528:1 19552:3 19564:2 19567:1 19577:1 19584:2 19606:1 19611:11 19723:2 19730:1 19734:1 19743:1 19793:1 19807:1 19812:2 19814:1 19852:1 19853:1 19864:1 19867:4 19883:3 19901:1 19902:1 19918:1 19924:3 19925:2 19940:1 19948:1 19965:1 19968:2 19973:1 20034:2 20046:8 20054:1 20103:8 20174:2 20232:1 20257:1 20259:2 20272:1 20276:1 20315:1 20326:1 20328:1 20338:1 20340:1 20344:1 20359:1 20361:1 20371:1 20392:2 20397:1 20405:1 20427:1 20453:1 20458:5 20465:1 20507:2 20518:1 20551:2 20553:1 20565:1 20567:1 20580:1 20603:1 20651:1 20659:1 20682:1 20684:1 20705:4 20737:5 20757:1 20799:1 20848:1 20852:2 20853:2 20857:1 20878:1 20881:1 20947:2 20988:1 21006:1 21012:1 21029:1 21033:1 21043:1 21048:2 21054:1 21059:1 21080:2 21081:1 21091:1 21104:1 21154:1 21198:1 21210:2 21223:1 21224:1 21244:1 21245:1 21250:1 21274:1 21279:1 21316:2 21351:2 21355:1 21356:1 21359:1 21368:1 21379:1 21413:1 21505:1 21511:1 21520:3 21536:1 21544:1 21548:2 21590:1 21612:1 21617:1 21626:1 21644:1 21648:1 21650:8 21659:1 21690:1 21701:2 21739:2 21756:1 21766:1 21795:1 21832:1 21849:2 21864:6 21901:1 21910:1 21914:1 21918:8 21928:1 21939:1 21945:1 21962:1 21966:1 22011:1 22014:2 22016:1 22017:2 22019:2 22022:3 22023:1 22034:1 22044:1 22048:1 22051:2 22089:2 22111:1 22193:2 22226:1 22266:4 22287:8 22290:3 22293:2 22300:1 22357:1 22374:1 22409:2 22430:1 22537:1 22549:1 22550:2 22553:1 22560:1 22568:1 22628:1 22633:1 22675:1 22693:4 22745:2 22760:1 22787:1 22793:1 22831:1 22908:2 22911:1 22917:2 22933:1 22975:1 23045:1 23058:1 23103:1 23112:1 23115:1 23123:1 23133:1 23145:1 23158:2 23175:1 23180:1 23230:4 23299:1 23309:2 23337:1 23351:1 23418:3 23426:2 23449:1 23463:4 23464:1 23468:1 23485:1 23494:15 23514:1 23521:2 23555:1 23573:1 23581:5 23587:1 23596:1 23617:2 23623:1 23641:1 23665:7 23666:2 23689:1 23690:1 23703:2 23706:1 23710:3 23713:1 23718:1 23721:1 23725:1 23726:1 23745:3 23750:1 23785:8 23796:2 23800:1 23802:1 23823:1 23840:1 23881:1 23892:1 23910:1 23921:3 23955:1 23969:4 23971:1 24006:2 24015:1 24114:2 24176:1 24179:8 24184:2 24188:1 24201:1 24226:1 24230:1 24239:1 24240:1 24258:1 24260:1 24279:1 24313:3 24323:2 24348:1 24352:1 24357:1 24363:1 24364:2 24396:2 24408:1 24410:1 24416:3 24429:2 24440:2 24453:1 24460:1 24464:1 24498:8 24502:1 24504:4 24531:1 24542:1 24548:1 24557:1 24561:1 24590:1 24725:1 24728:1 24761:1 24780:1 24786:2 24791:3 24795:1 24804:1 24820:2 24861:1 24868:1 24877:1 24898:1 24913:1 24915:1 24967:1 24980:1 24986:1 24998:1 25013:1 25031:1 25034:4 25053:2 25077:1 25113:1 25135:2 25139:1 25180:2 25227:1 25238:1 25281:3 25314:1 25318:2 25345:1 25375:1 25376:2 25379:1 25383:1 25415:1 25416:1 25422:3 10 4:2 6:3 50:1 60:1 65:1 72:1 78:1 98:1 130:1 164:8 172:4 173:2 246:1 249:1 258:1 294:1 298:1 303:1 311:2 317:1 337:1 363:1 367:2 374:2 395:1 429:1 466:2 508:3 529:1 539:1 555:1 557:3 564:4 579:1 616:1 690:1 701:2 707:1 715:2 738:1 787:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:5 877:1 879:2 914:2 918:1 934:1 1007:1 1032:2 1087:1 1096:2 1129:1 1143:1 1154:1 1167:1 1176:1 1185:1 1205:1 1249:1 1251:1 1254:1 1268:1 1269:1 1284:4 1290:1 1327:1 1333:2 1337:2 1338:1 1342:2 1343:1 1346:2 1354:1 1360:1 1366:1 1424:1 1425:2 1428:1 1432:2 1464:4 1478:1 1497:1 1505:1 1548:1 1554:1 1586:2 1605:1 1618:1 1621:3 1643:1 1661:1 1673:1 1685:4 1700:1 1704:2 1712:1 1769:1 1790:1 1806:1 1816:2 1823:1 1824:1 1855:1 1887:1 1926:3 1946:1 1956:1 1979:1 1992:2 1993:2 2021:2 2022:2 2028:1 2032:1 2038:1 2045:2 2048:1 2049:1 2051:1 2058:1 2059:3 2060:3 2062:1 2108:1 2170:2 2183:1 2184:1 2221:2 2249:2 2258:1 2288:1 2292:1 2300:4 2329:1 2332:1 2359:1 2368:1 2434:2 2441:2 2450:1 2452:2 2468:1 2473:8 2477:1 2484:1 2503:1 2516:1 2528:1 2538:4 2552:1 2578:2 2605:1 2606:6 2611:1 2614:2 2619:2 2638:1 2641:1 2654:3 2660:1 2670:1 2675:4 2686:1 2693:1 2701:1 2712:1 2730:2 2749:1 2786:1 2812:3 2814:1 2817:1 2863:1 2881:3 2884:2 2885:2 2927:1 2928:1 2944:4 2948:1 2958:1 2964:1 3022:1 3031:8 3054:1 3133:1 3155:1 3157:1 3167:2 3176:1 3177:1 3182:1 3200:1 3224:1 3230:1 3246:1 3254:1 3260:1 3268:2 3305:1 3306:3 3340:3 3345:5 3364:1 3369:1 3370:1 3382:1 3388:2 3397:1 3427:1 3428:2 3440:1 3449:1 3470:1 3522:1 3527:1 3535:1 3556:1 3563:2 3652:1 3691:1 3699:3 3703:2 3707:1 3717:1 3743:1 3750:1 3766:1 3807:3 3810:1 3811:1 3815:1 3816:1 3830:1 3837:1 3838:1 3841:1 3874:1 3891:1 3894:1 3925:1 3945:2 3954:1 3993:1 4020:1 4050:1 4051:1 4066:4 4069:1 4077:3 4081:1 4106:3 4112:1 4116:2 4140:1 4160:1 4167:2 4185:1 4194:2 4207:1 4227:1 4240:2 4260:1 4281:6 4282:1 4293:1 4304:2 4309:1 4312:1 4370:1 4382:2 4383:1 4385:1 4388:2 4393:4 4394:1 4402:1 4410:1 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4649:1 4694:1 4707:1 4709:1 4714:4 4751:1 4766:1 4774:1 4792:2 4822:2 4877:2 4896:1 4903:3 4907:1 4919:1 4929:1 4965:1 4969:2 4979:1 5007:1 5011:1 5027:2 5042:1 5045:1 5051:1 5102:1 5110:1 5115:15 5125:1 5138:1 5149:2 5180:1 5183:1 5185:2 5264:2 5319:2 5322:3 5324:3 5400:1 5407:1 5415:2 5425:1 5428:3 5447:6 5532:3 5533:1 5539:1 5551:1 5565:1 5640:1 5651:1 5654:1 5658:1 5662:1 5667:1 5677:3 5678:1 5679:1 5725:1 5757:8 5763:1 5840:3 5849:1 5889:2 5898:1 5899:2 5951:1 5967:1 5994:11 6014:1 6027:2 6048:4 6052:1 6053:1 6072:3 6073:1 6104:2 6204:1 6273:1 6283:1 6352:1 6364:1 6370:1 6374:1 6375:1 6402:1 6414:1 6431:1 6457:1 6462:1 6463:1 6471:1 6546:1 6596:15 6611:1 6639:1 6701:1 6731:1 6737:2 6760:1 6761:1 6790:1 6818:1 6835:8 6836:1 6846:1 6857:2 6865:1 6869:3 6877:2 6881:1 6892:20 6909:5 6911:3 6920:1 6960:1 6970:1 6995:2 7014:1 7066:1 7075:3 7097:3 7116:1 7133:1 7140:2 7144:1 7179:1 7224:1 7312:2 7322:12 7323:1 7339:2 7360:1 7368:1 7440:1 7471:2 7487:1 7494:2 7509:1 7516:1 7560:2 7597:1 7604:1 7647:1 7710:3 7718:1 7726:1 7728:2 7751:1 7828:1 7841:3 7858:1 7896:1 7912:1 7916:1 7927:1 7928:2 7940:2 7958:1 8023:1 8035:1 8038:2 8043:1 8048:1 8064:1 8065:1 8083:1 8102:1 8184:1 8187:1 8191:8 8194:1 8199:1 8201:1 8216:2 8224:2 8326:1 8342:1 8362:3 8384:2 8400:1 8410:2 8455:1 8492:1 8514:1 8531:1 8561:3 8575:1 8576:1 8582:1 8609:1 8633:1 8640:2 8682:3 8715:1 8716:8 8718:8 8726:1 8735:1 8773:2 8780:3 8806:3 8832:1 8842:1 8853:1 8871:1 8881:1 8901:2 8961:1 8980:1 8985:3 8995:1 8997:1 9015:1 9033:1 9099:1 9105:1 9142:1 9150:2 9159:1 9162:1 9177:2 9216:1 9219:1 9248:1 9295:1 9313:1 9345:1 9353:1 9381:4 9387:1 9392:1 9410:1 9411:1 9416:2 9437:1 9439:1 9443:4 9453:4 9456:1 9464:2 9510:11 9523:2 9537:4 9540:2 9541:1 9583:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:8 9690:1 9710:1 9725:3 9727:1 9799:2 9811:1 9813:3 9815:1 9823:5 9845:1 9849:1 9901:1 9961:1 9989:2 9992:1 10089:2 10162:1 10196:1 10200:1 10246:1 10262:1 10263:1 10367:2 10387:1 10395:1 10400:1 10405:1 10412:3 10415:1 10417:1 10419:2 10456:2 10460:1 10461:1 10474:2 10506:1 10516:1 10541:1 10561:1 10590:3 10596:8 10607:2 10681:1 10783:8 10804:8 10819:2 10825:1 10829:1 10840:2 10841:2 10858:1 10888:1 10920:1 10924:1 10939:1 11013:3 11036:1 11063:1 11089:8 11115:1 11118:2 11152:1 11161:1 11195:1 11230:1 11249:1 11279:2 11294:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:2 11524:1 11529:1 11563:2 11567:1 11574:1 11666:1 11676:1 11678:1 11682:2 11684:1 11700:3 11708:1 11716:1 11720:1 11750:2 11780:2 11786:1 11792:2 11803:1 11811:2 11817:1 11833:1 11854:1 11860:3 11871:1 11902:2 11915:1 11936:2 11941:1 11955:2 11978:1 11982:2 12020:1 12030:3 12103:1 12105:1 12108:1 12111:1 12122:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:3 12274:1 12281:1 12295:1 12297:1 12299:1 12305:1 12351:1 12352:1 12367:1 12377:1 12451:1 12474:1 12483:2 12489:2 12509:1 12521:2 12528:1 12540:1 12601:3 12619:1 12645:1 12657:1 12659:1 12713:2 12716:1 12723:2 12734:1 12741:1 12747:1 12770:1 12776:1 12795:1 12802:1 12838:1 12852:2 12859:1 12866:1 12874:1 12891:1 12896:1 12906:1 12941:1 12944:2 12964:1 12991:3 12996:2 12997:2 13009:1 13053:2 13061:1 13136:1 13184:1 13188:1 13209:1 13219:2 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13307:1 13330:1 13345:1 13388:1 13398:1 13433:1 13515:1 13524:1 13540:1 13555:1 13564:1 13641:1 13750:1 13776:6 13777:2 13790:3 13854:1 13914:2 13935:5 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14025:1 14049:4 14064:2 14073:1 14075:1 14086:1 14089:7 14114:1 14158:3 14166:2 14208:1 14211:1 14214:1 14227:1 14230:1 14236:1 14276:6 14279:1 14283:1 14293:3 14306:2 14365:1 14370:1 14386:1 14387:1 14388:1 14391:1 14398:2 14401:2 14409:1 14411:1 14412:1 14418:1 14423:1 14477:1 14483:1 14535:1 14597:1 14613:1 14615:1 14620:1 14659:1 14664:1 14680:4 14740:4 14756:1 14809:1 14837:1 14843:4 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14986:1 14999:1 15045:1 15054:4 15123:1 15141:1 15164:1 15182:1 15227:11 15247:2 15258:1 15267:1 15276:2 15285:1 15296:1 15306:1 15350:1 15378:1 15384:1 15393:1 15415:1 15435:1 15448:1 15454:1 15466:4 15474:1 15492:2 15520:1 15587:1 15611:1 15669:1 15675:1 15676:6 15681:1 15687:1 15699:2 15700:1 15716:1 15719:1 15733:1 15738:2 15740:1 15752:1 15789:1 15821:8 15825:1 15826:1 15839:1 15858:1 15866:4 15884:1 15895:1 15921:1 15950:2 15960:2 15962:1 15979:1 15980:1 16036:1 16046:1 16077:1 16081:1 16090:1 16130:1 16142:2 16159:2 16161:1 16187:1 16228:2 16247:1 16264:4 16268:1 16282:1 16321:1 16341:1 16351:1 16379:1 16409:1314 16424:1 16446:1 16521:1 16583:1 16592:1 16599:1 16637:1 16697:1 16698:15 16794:1 16864:2 16884:1 16888:5 16896:1 16956:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:2 17075:1 17077:3 17080:6 17088:1 17093:1 17104:1 17115:5 17156:1 17158:1 17165:1 17204:2 17218:1 17317:1 17330:1 17351:1 17360:1 17381:1 17407:1 17446:1 17449:4 17517:2 17536:2 17537:1 17573:1 17592:2 17594:1 17602:1 17612:1 17613:1 17614:1 17623:2 17636:2 17675:1 17688:1 17689:1 17693:1 17697:2 17718:1 17803:3 17820:1 17838:1 17843:1 17860:1 17866:1 17878:1 17894:1 17898:1 17953:3 17990:3 18021:1 18081:1 18090:1 18145:1 18153:1 18233:1 18250:2 18253:1 18255:1 18266:1 18267:2 18288:3 18312:1 18319:1 18332:1 18336:1 18342:1 18346:2 18356:1 18399:1 18408:1 18416:1 18455:1 18469:16 18475:1 18493:1 18507:1 18555:1 18567:1 18612:1 18633:1 18657:1 18671:1 18708:2 18712:1 18717:1 18719:1 18732:1 18758:1 18767:1 18780:1 18791:1 18825:6 18830:1 18832:1 18843:4 18844:1 18845:1 18850:2 18852:1 18866:1 18868:1 18906:1 18914:3 18922:2 18927:1 18953:1 18955:1 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19056:1 19057:1 19066:1 19067:2 19076:3 19096:1 19103:1 19127:1 19159:1 19189:1 19232:1 19237:1 19247:1 19253:2 19261:1 19304:2 19305:1 19306:1 19327:1 19332:1 19342:1 19344:2 19382:2 19399:2 19405:1 19407:2 19421:1 19453:2 19457:1 19501:3 19505:1 19507:1 19517:1 19528:1 19552:3 19564:2 19567:1 19577:1 19584:2 19606:1 19611:11 19723:2 19730:1 19734:1 19743:1 19793:1 19807:1 19812:2 19814:1 19852:1 19853:1 19864:1 19867:4 19883:3 19901:1 19902:1 19918:1 19924:3 19925:2 19940:1 19948:1 19965:1 19968:2 19973:1 20034:2 20046:8 20054:1 20103:8 20174:2 20232:1 20257:1 20259:2 20272:1 20276:1 20315:1 20326:1 20328:1 20338:1 20340:1 20344:1 20359:1 20361:1 20371:1 20392:2 20397:1 20405:1 20427:1 20453:1 20458:5 20465:1 20507:2 20518:1 20551:3 20553:1 20565:1 20567:1 20580:1 20603:1 20651:1 20659:1 20682:1 20684:1 20705:4 20737:5 20757:1 20799:1 20848:1 20852:2 20853:2 20857:1 20878:1 20881:1 20947:2 20988:1 21006:1 21012:1 21029:1 21033:1 21043:1 21048:2 21054:1 21059:1 21080:2 21081:1 21091:1 21104:1 21154:1 21198:1 21210:2 21223:1 21224:1 21244:1 21245:1 21250:1 21274:1 21279:1 21316:2 21351:2 21355:1 21356:1 21359:1 21368:1 21379:1 21413:1 21482:1 21505:1 21511:1 21520:3 21536:1 21544:1 21548:2 21590:1 21612:1 21617:1 21626:1 21644:1 21648:1 21650:8 21659:1 21690:1 21701:2 21739:2 21756:1 21766:1 21795:1 21832:1 21849:2 21864:6 21901:1 21910:1 21914:1 21918:8 21925:1 21928:1 21939:1 21942:1 21945:1 21962:1 21966:1 22011:1 22014:2 22016:1 22017:2 22019:2 22022:3 22023:1 22034:1 22044:1 22048:1 22051:2 22089:2 22111:1 22193:2 22226:1 22266:4 22287:8 22290:3 22293:2 22300:1 22357:1 22374:1 22409:2 22430:1 22537:1 22549:1 22550:2 22553:1 22560:1 22568:1 22628:1 22633:1 22675:1 22693:4 22745:2 22760:1 22787:1 22793:1 22831:1 22908:2 22911:1 22917:2 22933:1 22975:1 23045:1 23058:1 23103:1 23112:1 23115:1 23123:1 23133:1 23145:1 23158:2 23175:1 23180:1 23230:4 23299:1 23309:2 23337:1 23351:1 23418:3 23426:2 23449:1 23463:4 23464:1 23468:1 23485:1 23494:15 23514:1 23521:2 23555:1 23573:1 23581:5 23587:1 23596:1 23617:2 23623:1 23641:1 23665:7 23666:2 23689:1 23690:1 23703:2 23706:1 23710:3 23713:1 23718:1 23721:1 23725:1 23726:1 23745:3 23750:1 23785:8 23796:2 23800:1 23802:1 23823:1 23840:1 23881:1 23892:1 23910:1 23921:3 23955:1 23969:4 23971:1 24006:2 24015:1 24114:2 24176:1 24179:8 24184:2 24188:1 24201:1 24226:1 24230:1 24239:1 24240:1 24258:1 24260:1 24279:1 24313:3 24323:2 24348:1 24352:1 24357:1 24363:1 24364:2 24396:2 24408:1 24410:1 24416:3 24429:2 24440:2 24453:1 24460:1 24464:1 24498:8 24502:1 24504:4 24531:1 24542:2 24548:1 24557:1 24561:1 24590:1 24725:1 24728:1 24761:1 24780:1 24786:2 24791:3 24795:1 24804:1 24820:2 24861:1 24868:1 24877:1 24898:1 24913:1 24915:1 24967:1 24980:1 24986:1 24998:1 25013:1 25031:1 25034:4 25053:2 25077:1 25113:1 25135:2 25139:1 25180:2 25227:1 25238:1 25281:3 25314:1 25318:2 25345:1 25375:1 25376:2 25379:1 25383:1 25415:1 25416:1 25422:3 10 4:2 6:3 50:1 60:1 65:1 72:1 78:1 98:1 130:1 164:8 172:4 173:2 246:1 249:1 258:1 294:1 298:1 303:1 311:2 317:1 337:1 363:1 367:2 374:2 395:1 429:1 466:2 508:3 529:1 539:1 555:1 557:3 564:4 579:1 616:1 690:1 701:2 707:1 715:2 738:1 762:1 787:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:5 877:1 879:2 914:2 918:1 934:1 1007:1 1032:2 1087:1 1096:2 1129:1 1143:1 1154:1 1167:1 1176:1 1185:1 1205:1 1249:1 1251:1 1254:1 1268:1 1269:1 1284:4 1290:1 1327:1 1333:2 1337:2 1338:1 1342:2 1343:1 1346:2 1354:1 1360:1 1366:1 1424:1 1425:2 1428:1 1432:2 1464:4 1478:1 1497:1 1505:1 1548:1 1554:1 1586:2 1605:1 1618:1 1621:3 1643:1 1661:1 1673:1 1685:4 1700:1 1704:2 1712:1 1769:1 1790:1 1806:1 1816:2 1823:1 1824:1 1855:1 1887:1 1926:3 1946:1 1956:1 1979:1 1992:2 1993:2 2021:2 2022:2 2028:1 2032:1 2038:1 2045:2 2048:1 2049:1 2051:1 2058:1 2059:3 2060:3 2062:1 2108:1 2170:2 2183:1 2184:1 2221:2 2249:2 2258:1 2288:1 2292:1 2300:4 2329:1 2332:1 2359:1 2368:1 2434:2 2441:2 2450:1 2452:2 2468:1 2473:8 2477:1 2484:1 2503:1 2516:1 2528:1 2538:4 2552:1 2569:1 2578:2 2605:1 2606:6 2611:1 2614:2 2619:2 2638:1 2641:1 2654:3 2660:1 2670:1 2675:4 2686:1 2693:1 2701:1 2712:1 2730:2 2749:1 2786:1 2812:3 2814:1 2817:1 2863:1 2881:3 2884:2 2885:2 2927:1 2928:1 2944:4 2948:1 2958:1 2964:1 3022:1 3031:8 3054:1 3133:1 3155:1 3157:1 3167:2 3176:1 3177:1 3182:1 3200:1 3224:1 3230:1 3246:1 3254:1 3260:1 3268:2 3305:1 3306:3 3340:3 3345:5 3364:1 3369:1 3370:1 3382:1 3388:2 3397:1 3427:1 3428:2 3440:1 3449:1 3470:1 3522:1 3527:1 3535:1 3556:1 3563:2 3652:1 3691:1 3699:3 3703:2 3707:1 3717:1 3743:1 3750:1 3766:1 3807:3 3810:1 3811:1 3815:1 3816:1 3830:1 3837:1 3838:1 3841:1 3874:1 3891:1 3894:1 3925:1 3937:1 3945:2 3954:1 3993:1 4020:1 4050:1 4051:1 4066:4 4069:1 4077:3 4081:1 4106:3 4112:1 4116:2 4140:1 4160:1 4167:2 4185:1 4194:2 4207:1 4227:1 4240:2 4260:1 4281:6 4282:1 4293:1 4304:2 4309:1 4312:1 4370:2 4382:2 4383:1 4385:1 4388:2 4393:4 4394:1 4402:1 4410:1 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4649:1 4694:1 4698:1 4707:1 4709:1 4714:4 4751:1 4766:1 4774:1 4792:2 4822:2 4877:2 4896:1 4903:3 4907:1 4919:1 4929:1 4965:1 4969:2 4979:1 5007:1 5011:1 5027:2 5042:1 5045:1 5051:1 5102:1 5110:1 5115:15 5125:1 5138:1 5149:2 5180:1 5183:1 5185:2 5264:2 5319:2 5322:3 5324:3 5400:1 5407:1 5415:2 5425:1 5428:3 5447:6 5532:3 5533:1 5539:1 5551:1 5565:1 5640:1 5651:1 5654:2 5658:1 5662:1 5667:1 5674:1 5677:3 5678:1 5679:1 5725:1 5757:8 5763:1 5840:3 5849:1 5889:2 5898:1 5899:2 5951:1 5967:1 5994:11 6014:1 6027:2 6048:4 6052:1 6053:1 6072:3 6073:1 6104:2 6204:1 6273:1 6283:1 6345:1 6352:1 6364:1 6370:1 6374:1 6375:1 6402:1 6414:1 6431:1 6457:1 6462:1 6463:1 6471:1 6546:1 6596:15 6611:1 6639:1 6700:1 6701:1 6731:1 6737:2 6760:1 6761:1 6790:1 6818:1 6835:8 6836:1 6846:1 6857:2 6865:1 6869:3 6877:2 6881:1 6892:20 6909:5 6911:3 6920:1 6960:1 6970:1 6995:2 7014:1 7066:1 7075:3 7097:3 7116:1 7133:1 7140:2 7144:1 7179:1 7224:1 7312:2 7322:12 7323:1 7339:2 7360:1 7368:1 7440:1 7471:2 7487:1 7494:2 7509:1 7516:1 7560:2 7597:2 7604:1 7647:1 7710:3 7713:1 7718:2 7726:1 7728:2 7751:1 7828:1 7841:3 7858:1 7896:1 7912:1 7916:1 7927:1 7928:2 7940:2 7958:1 8023:1 8035:1 8038:2 8043:1 8048:1 8064:1 8065:1 8083:1 8102:1 8184:1 8187:1 8191:8 8194:1 8199:1 8201:1 8216:2 8224:2 8326:1 8342:1 8362:3 8384:2 8400:1 8410:2 8455:1 8492:1 8514:1 8531:1 8561:3 8575:1 8576:1 8582:1 8609:1 8633:1 8640:2 8682:3 8715:1 8716:8 8718:8 8726:1 8735:1 8773:2 8780:3 8806:3 8832:1 8842:1 8853:1 8871:1 8881:1 8901:2 8961:1 8980:1 8985:3 8995:1 8997:1 9015:1 9033:1 9099:1 9105:1 9142:1 9150:2 9159:1 9162:1 9177:2 9216:1 9219:1 9248:1 9295:1 9313:1 9345:1 9353:1 9381:4 9387:1 9392:1 9410:1 9411:1 9416:2 9437:1 9439:1 9443:4 9453:4 9456:1 9464:2 9510:11 9523:2 9537:4 9540:2 9541:1 9583:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:8 9690:1 9710:1 9725:3 9727:1 9799:2 9811:1 9813:3 9815:1 9823:5 9845:1 9849:1 9901:1 9961:1 9989:2 9992:1 10089:2 10162:1 10196:1 10200:1 10246:1 10262:1 10263:1 10337:1 10367:2 10387:1 10395:1 10400:1 10405:1 10412:3 10415:1 10417:1 10419:2 10456:2 10460:1 10461:1 10474:2 10506:1 10516:1 10541:1 10561:1 10590:3 10596:8 10607:2 10681:1 10783:8 10804:8 10819:2 10825:1 10829:1 10840:2 10841:2 10858:1 10888:1 10920:1 10924:1 10939:1 11013:3 11036:1 11063:1 11089:8 11115:1 11118:2 11152:1 11161:1 11195:1 11230:1 11249:1 11279:2 11294:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:2 11524:1 11529:1 11563:2 11567:1 11574:1 11583:1 11666:1 11676:1 11678:1 11682:2 11684:1 11700:3 11708:1 11716:1 11720:1 11750:2 11780:2 11786:1 11792:2 11803:1 11811:2 11817:1 11833:1 11854:1 11860:3 11871:1 11902:2 11915:1 11936:2 11941:1 11955:2 11978:1 11982:2 12020:1 12030:3 12103:1 12105:1 12108:1 12111:1 12122:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:3 12274:1 12281:1 12295:1 12297:1 12299:1 12305:1 12351:1 12352:1 12367:1 12377:1 12451:1 12474:1 12483:2 12489:2 12509:1 12521:2 12528:1 12540:1 12601:3 12619:1 12645:1 12657:1 12659:1 12713:2 12716:1 12723:2 12734:1 12741:1 12747:1 12770:1 12776:1 12795:1 12802:1 12838:1 12852:2 12859:1 12866:1 12874:1 12891:1 12896:1 12906:1 12941:1 12944:2 12964:1 12991:3 12996:2 12997:2 13009:1 13053:2 13061:1 13136:1 13174:1 13184:1 13188:1 13209:1 13219:2 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13307:1 13330:1 13345:1 13388:1 13398:1 13433:1 13515:1 13524:1 13540:1 13555:1 13564:1 13641:1 13750:1 13776:6 13777:2 13790:3 13854:1 13914:2 13935:5 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14025:1 14049:5 14064:2 14073:1 14075:1 14086:1 14089:7 14114:1 14158:3 14166:2 14208:1 14211:1 14214:1 14227:1 14230:1 14236:1 14276:6 14279:1 14283:1 14293:3 14306:2 14365:1 14370:1 14386:1 14387:1 14388:1 14391:1 14398:2 14401:2 14409:1 14411:1 14412:1 14418:1 14423:1 14477:1 14483:1 14535:1 14597:1 14613:1 14615:1 14620:1 14659:1 14664:1 14680:4 14740:4 14756:1 14809:1 14837:1 14843:4 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14986:1 14999:1 15045:1 15054:4 15123:1 15141:1 15164:1 15182:1 15227:11 15247:2 15258:1 15267:1 15276:2 15285:1 15296:1 15306:1 15350:1 15378:1 15384:1 15393:1 15415:1 15435:1 15448:1 15454:1 15466:4 15474:1 15492:2 15520:1 15587:1 15611:1 15669:1 15675:1 15676:6 15681:1 15687:1 15699:2 15700:1 15716:1 15718:1 15719:1 15733:1 15738:2 15740:1 15752:1 15789:1 15821:8 15825:1 15826:1 15839:1 15858:1 15866:4 15884:1 15895:1 15921:1 15950:2 15960:2 15962:1 15979:1 15980:1 16036:1 16046:1 16077:1 16081:1 16090:1 16130:1 16142:2 16159:2 16161:1 16187:1 16228:2 16247:1 16264:4 16268:1 16282:1 16321:1 16341:1 16351:1 16379:1 16409:1335 16424:1 16446:1 16521:1 16583:1 16592:1 16599:1 16637:1 16697:1 16698:15 16794:1 16864:2 16884:1 16888:5 16896:1 16956:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:2 17075:1 17077:3 17080:6 17088:1 17093:1 17104:1 17115:5 17156:1 17158:1 17165:1 17204:2 17218:1 17317:1 17330:2 17351:1 17360:1 17381:1 17407:1 17446:1 17449:4 17517:2 17536:2 17537:1 17539:1 17573:1 17592:2 17594:1 17602:1 17612:1 17613:1 17614:1 17623:2 17636:2 17675:1 17688:1 17689:1 17693:1 17697:2 17718:1 17752:1 17803:3 17820:1 17838:1 17843:1 17860:1 17866:1 17878:1 17894:1 17898:1 17953:3 17990:3 18021:1 18081:1 18090:1 18145:1 18153:1 18233:1 18250:2 18253:1 18255:1 18266:1 18267:2 18288:3 18312:1 18319:1 18332:1 18336:1 18342:1 18346:2 18356:1 18380:1 18399:1 18408:1 18416:1 18455:1 18469:16 18475:1 18493:1 18507:1 18555:1 18567:1 18612:1 18633:1 18657:1 18660:1 18671:1 18708:2 18712:1 18717:1 18719:1 18732:1 18758:1 18767:1 18780:1 18791:1 18825:6 18830:1 18832:1 18843:4 18844:1 18845:1 18850:2 18852:1 18866:1 18868:1 18904:1 18906:1 18914:3 18922:2 18927:1 18953:1 18955:1 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19056:1 19057:1 19066:1 19067:2 19076:3 19096:1 19103:1 19127:1 19159:1 19189:1 19232:1 19237:1 19247:1 19253:2 19261:1 19304:2 19305:1 19306:1 19327:1 19332:1 19342:1 19344:2 19382:2 19399:2 19405:1 19407:2 19421:1 19453:2 19457:1 19501:3 19505:1 19507:1 19517:1 19528:1 19552:3 19564:2 19567:1 19577:1 19584:2 19606:1 19611:11 19638:1 19723:2 19730:1 19734:1 19743:1 19793:1 19807:1 19812:2 19814:1 19852:1 19853:1 19864:1 19867:4 19883:3 19901:1 19902:1 19918:1 19924:3 19925:2 19940:1 19948:1 19965:1 19968:2 19973:1 20034:2 20046:8 20054:1 20103:8 20174:2 20232:1 20257:1 20259:2 20272:1 20276:1 20315:1 20326:1 20328:1 20338:1 20340:1 20344:1 20359:1 20361:1 20371:1 20392:2 20397:1 20405:1 20427:1 20453:1 20458:5 20465:1 20507:2 20518:1 20551:3 20553:1 20565:1 20567:1 20580:1 20603:2 20651:1 20659:1 20682:1 20684:1 20705:4 20737:5 20757:1 20799:1 20848:1 20852:2 20853:2 20857:1 20878:1 20881:1 20947:2 20988:1 21006:1 21012:1 21029:1 21033:1 21043:1 21048:2 21054:1 21059:1 21080:2 21081:1 21091:1 21104:1 21154:1 21197:1 21198:1 21210:2 21223:1 21224:1 21244:1 21245:1 21250:1 21267:1 21274:1 21279:1 21316:2 21351:2 21355:1 21356:1 21359:1 21368:1 21379:1 21413:1 21482:1 21505:1 21511:1 21520:3 21536:1 21544:1 21548:2 21590:1 21612:1 21617:1 21626:1 21644:1 21648:1 21650:8 21659:1 21690:1 21701:2 21739:2 21756:1 21766:1 21795:1 21832:1 21849:2 21864:6 21901:1 21910:1 21914:1 21918:8 21925:1 21928:1 21939:1 21942:1 21945:1 21962:1 21966:1 22011:1 22014:2 22016:1 22017:2 22019:2 22022:3 22023:1 22034:1 22044:1 22048:1 22051:2 22089:2 22111:1 22193:2 22226:1 22266:4 22287:8 22290:3 22293:2 22300:1 22357:1 22374:1 22409:2 22430:1 22531:1 22537:1 22549:1 22550:2 22553:1 22560:1 22568:1 22628:1 22633:1 22675:1 22693:4 22745:2 22760:1 22787:1 22793:1 22831:1 22908:2 22911:1 22917:2 22933:1 22975:1 23045:1 23058:1 23103:1 23112:1 23115:1 23123:1 23133:1 23145:1 23158:2 23175:1 23180:1 23230:4 23299:1 23309:2 23337:1 23351:1 23418:3 23426:2 23449:1 23463:4 23464:1 23468:1 23485:1 23494:15 23514:1 23521:2 23555:1 23573:1 23581:5 23587:1 23596:1 23617:2 23623:1 23641:1 23665:7 23666:2 23689:1 23690:1 23703:2 23706:1 23710:3 23713:1 23718:1 23721:1 23725:1 23726:1 23745:3 23750:1 23785:8 23796:2 23800:1 23802:1 23823:1 23840:1 23881:1 23892:1 23910:1 23921:3 23955:1 23969:4 23971:1 24006:2 24015:1 24114:2 24176:1 24179:8 24184:2 24188:1 24201:1 24226:1 24230:1 24239:1 24240:1 24258:1 24260:1 24279:1 24313:3 24323:2 24348:1 24352:1 24357:1 24363:1 24364:2 24396:2 24408:1 24410:1 24416:3 24429:2 24440:2 24453:1 24460:1 24464:1 24498:8 24502:1 24504:4 24531:1 24542:3 24548:1 24557:1 24561:1 24590:1 24725:1 24728:1 24761:1 24780:1 24786:2 24791:3 24795:1 24804:1 24820:2 24861:1 24868:1 24877:1 24898:1 24913:1 24915:1 24967:1 24980:1 24986:1 24998:1 25013:1 25031:1 25034:4 25053:2 25077:1 25113:1 25135:2 25139:1 25180:2 25227:1 25238:1 25281:3 25314:1 25318:2 25345:1 25375:1 25376:2 25379:1 25383:1 25415:1 25416:1 25422:3 10 4:2 6:3 50:1 60:1 65:1 72:1 78:1 87:1 98:1 130:1 164:8 172:4 173:2 246:1 249:1 258:1 294:1 298:2 303:1 311:2 317:1 337:1 363:1 367:2 374:2 395:1 429:1 466:2 508:3 529:1 539:1 555:1 557:3 564:4 579:1 616:1 690:1 701:2 707:1 715:2 738:1 762:1 787:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:5 877:1 879:2 914:2 918:1 934:1 974:1 1007:1 1032:2 1087:1 1096:2 1129:1 1143:1 1154:1 1167:1 1176:1 1185:1 1205:1 1249:1 1251:1 1254:1 1268:1 1269:1 1284:4 1290:1 1327:1 1333:2 1337:2 1338:1 1342:2 1343:1 1346:2 1354:1 1360:1 1366:1 1424:1 1425:2 1428:1 1432:2 1464:4 1478:1 1497:1 1505:1 1548:1 1554:1 1586:2 1605:1 1618:1 1621:3 1643:1 1661:1 1673:1 1685:4 1700:1 1704:2 1712:1 1769:1 1790:1 1806:1 1816:2 1823:1 1824:1 1849:1 1855:1 1887:1 1926:3 1946:1 1956:1 1979:1 1992:2 1993:2 2021:2 2022:2 2026:1 2028:1 2032:1 2038:1 2045:2 2048:2 2049:1 2051:1 2058:1 2059:4 2060:3 2062:1 2108:1 2170:2 2183:1 2184:1 2221:2 2249:2 2258:1 2288:1 2292:1 2300:4 2329:1 2332:1 2359:1 2368:1 2434:2 2441:2 2450:1 2452:3 2468:1 2473:8 2477:1 2484:1 2499:1 2503:1 2516:1 2528:1 2530:1 2538:4 2552:1 2569:1 2578:2 2605:1 2606:6 2611:1 2614:2 2619:2 2638:1 2641:1 2654:4 2660:1 2670:1 2675:4 2686:1 2693:1 2701:1 2712:1 2717:1 2730:2 2749:1 2786:1 2812:3 2814:1 2817:1 2863:1 2881:3 2884:2 2885:2 2927:1 2928:1 2944:4 2948:2 2958:1 2964:1 3022:1 3031:8 3054:1 3133:1 3155:1 3157:1 3167:2 3176:1 3177:1 3182:1 3200:1 3224:1 3230:1 3246:1 3254:1 3260:1 3268:2 3305:1 3306:3 3340:3 3345:5 3364:1 3369:1 3370:1 3382:1 3388:2 3397:1 3427:1 3428:2 3440:1 3449:1 3470:1 3522:1 3527:1 3535:1 3556:1 3563:2 3652:1 3691:1 3699:3 3703:2 3707:1 3717:1 3743:1 3750:1 3766:1 3807:3 3810:1 3811:1 3815:1 3816:1 3830:1 3837:1 3838:1 3841:1 3874:1 3891:1 3894:1 3925:1 3937:1 3945:2 3954:1 3993:1 4020:1 4050:1 4051:1 4066:4 4069:1 4077:3 4081:1 4106:3 4112:1 4116:2 4140:1 4160:1 4167:2 4185:1 4194:2 4207:1 4227:1 4240:2 4260:1 4281:6 4282:1 4293:1 4304:2 4309:1 4312:1 4370:2 4382:2 4383:1 4385:1 4388:2 4393:4 4394:1 4402:1 4410:1 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4649:1 4694:1 4698:1 4707:1 4709:1 4714:4 4751:1 4766:1 4774:1 4792:2 4813:1 4822:2 4877:2 4896:1 4903:3 4907:1 4919:1 4929:1 4965:1 4969:2 4979:1 5007:1 5011:1 5027:2 5042:1 5045:1 5051:2 5102:1 5110:1 5115:15 5125:1 5138:1 5149:2 5164:1 5180:1 5183:1 5185:2 5264:2 5319:2 5322:3 5324:3 5400:1 5407:1 5415:2 5425:1 5428:3 5447:6 5532:3 5533:1 5539:1 5551:1 5565:1 5640:1 5651:1 5654:2 5658:1 5662:1 5667:1 5674:1 5677:3 5678:1 5679:1 5725:1 5757:8 5763:1 5840:3 5849:1 5889:2 5898:1 5899:2 5951:1 5967:1 5994:11 6014:1 6027:2 6048:4 6052:1 6053:1 6072:3 6073:1 6104:2 6204:1 6273:1 6283:1 6345:1 6352:1 6364:1 6370:1 6374:1 6375:1 6402:1 6414:1 6431:1 6457:1 6462:1 6463:1 6471:1 6546:1 6596:15 6611:1 6639:1 6700:1 6701:1 6731:1 6737:2 6760:1 6761:1 6790:1 6818:1 6835:8 6836:1 6846:1 6857:2 6865:1 6869:3 6877:2 6881:1 6892:22 6909:5 6911:4 6920:1 6960:1 6970:1 6995:2 7014:1 7066:1 7075:3 7097:3 7116:1 7133:1 7140:2 7144:1 7179:1 7224:1 7312:2 7322:13 7323:1 7339:2 7360:1 7368:1 7440:1 7471:2 7487:1 7494:2 7509:1 7516:1 7560:2 7597:2 7604:1 7647:1 7710:3 7713:1 7718:2 7726:1 7728:2 7751:1 7828:1 7841:3 7858:1 7896:1 7912:1 7916:1 7927:1 7928:2 7940:2 7958:1 8012:1 8023:1 8035:1 8038:2 8043:1 8048:1 8064:1 8065:1 8083:1 8102:1 8184:1 8187:1 8191:8 8194:1 8199:1 8201:1 8216:2 8224:2 8259:1 8326:1 8342:1 8362:3 8384:2 8400:1 8410:2 8455:1 8492:1 8514:1 8531:1 8561:3 8575:1 8576:1 8582:1 8609:1 8633:1 8640:2 8682:3 8715:1 8716:8 8718:8 8726:1 8735:1 8773:2 8780:3 8806:3 8832:1 8842:1 8853:1 8871:1 8881:1 8901:2 8961:1 8980:1 8985:3 8995:1 8997:1 9015:1 9033:1 9099:1 9105:1 9142:1 9150:2 9159:1 9162:1 9177:2 9216:1 9219:1 9248:1 9295:1 9313:1 9345:1 9353:1 9381:4 9387:1 9392:1 9410:1 9411:1 9416:2 9437:1 9439:1 9443:4 9453:4 9456:1 9464:2 9510:11 9523:2 9537:4 9540:2 9541:1 9583:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:8 9690:1 9710:1 9725:3 9727:2 9799:2 9811:1 9813:3 9815:1 9823:5 9845:1 9849:1 9901:1 9961:1 9989:2 9992:1 10089:2 10162:1 10196:2 10200:1 10246:1 10262:1 10263:1 10337:1 10367:2 10387:1 10395:1 10400:1 10405:1 10412:3 10415:1 10417:1 10419:2 10421:1 10456:2 10460:1 10461:1 10474:2 10506:1 10516:1 10541:1 10561:1 10590:3 10596:8 10607:2 10681:1 10783:8 10804:8 10819:2 10825:1 10829:1 10840:2 10841:2 10858:1 10888:1 10920:1 10924:1 10939:1 11013:4 11036:1 11063:1 11089:8 11115:1 11118:2 11152:1 11161:1 11195:1 11225:1 11230:1 11249:1 11279:2 11294:1 11322:1 11355:1 11361:1 11403:1 11408:4 11424:1 11446:3 11450:1 11475:2 11524:1 11529:1 11563:2 11567:1 11574:1 11583:1 11666:1 11676:1 11678:1 11682:2 11684:1 11700:4 11708:1 11716:1 11720:1 11750:2 11780:2 11786:1 11792:2 11803:1 11811:2 11817:1 11833:1 11854:1 11860:3 11871:1 11902:2 11915:1 11936:2 11941:1 11955:2 11978:1 11982:2 12020:1 12030:3 12103:1 12105:1 12108:1 12111:1 12122:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:3 12274:1 12281:1 12294:1 12295:1 12297:1 12299:1 12305:1 12351:1 12352:1 12367:1 12377:1 12451:1 12474:1 12483:2 12489:2 12509:1 12521:2 12528:1 12540:1 12601:3 12619:1 12645:1 12657:1 12659:1 12713:2 12716:1 12723:2 12734:1 12741:1 12747:1 12770:1 12773:1 12776:1 12795:1 12802:2 12838:1 12852:2 12859:1 12866:1 12874:1 12891:1 12896:1 12906:1 12941:1 12944:2 12964:1 12991:3 12996:2 12997:2 13009:1 13053:2 13061:1 13136:1 13174:1 13184:1 13188:1 13209:1 13219:2 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13307:1 13330:1 13345:1 13388:1 13398:1 13433:1 13515:1 13524:1 13540:1 13555:1 13564:1 13641:1 13750:1 13764:1 13776:6 13777:2 13790:3 13854:1 13914:2 13935:5 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14025:1 14049:5 14064:2 14073:1 14075:1 14086:1 14089:7 14114:1 14158:3 14166:2 14208:1 14211:1 14214:1 14227:1 14230:1 14236:1 14276:6 14279:1 14283:1 14293:4 14306:2 14333:1 14365:1 14370:1 14386:1 14387:1 14388:1 14391:1 14398:2 14401:3 14409:1 14411:1 14412:1 14418:1 14423:1 14477:1 14483:1 14535:1 14597:1 14613:1 14615:1 14620:1 14659:1 14664:1 14680:4 14740:4 14756:1 14809:1 14837:1 14843:4 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14986:1 14999:1 15011:1 15045:1 15054:4 15123:1 15141:1 15155:1 15164:1 15182:1 15227:11 15247:2 15258:1 15267:1 15276:2 15285:1 15296:1 15306:1 15350:1 15353:1 15378:1 15384:1 15393:1 15415:1 15435:1 15448:1 15454:1 15466:4 15474:1 15492:2 15520:1 15587:1 15611:1 15669:1 15675:1 15676:6 15681:1 15687:1 15699:2 15700:1 15716:1 15718:1 15719:1 15733:1 15738:2 15740:1 15752:1 15789:1 15821:8 15825:1 15826:1 15839:1 15858:1 15866:4 15884:1 15895:1 15921:1 15938:1 15950:2 15960:2 15962:1 15979:1 15980:1 16036:1 16046:1 16077:1 16081:1 16090:1 16130:1 16142:2 16159:2 16161:1 16187:1 16228:2 16247:1 16264:4 16268:1 16282:1 16321:1 16341:1 16351:1 16379:1 16409:1378 16424:1 16446:1 16521:1 16583:1 16592:1 16599:1 16637:1 16697:1 16698:15 16794:1 16864:2 16884:1 16888:5 16896:1 16956:1 17006:1 17018:2 17042:2 17054:1 17058:1 17067:2 17075:1 17077:3 17080:6 17088:2 17093:1 17104:1 17115:5 17131:2 17135:1 17156:1 17158:1 17165:1 17204:2 17218:1 17317:1 17330:2 17351:1 17360:1 17365:1 17381:1 17407:1 17446:1 17449:4 17517:2 17536:2 17537:1 17539:1 17573:1 17592:2 17594:1 17602:1 17612:1 17613:1 17614:1 17623:3 17636:2 17675:1 17688:1 17689:1 17693:1 17697:2 17718:1 17752:1 17803:4 17820:1 17838:1 17843:1 17860:1 17866:1 17871:1 17878:1 17894:1 17898:1 17953:3 17990:3 18021:1 18081:1 18090:1 18145:1 18153:1 18233:1 18250:2 18253:1 18255:1 18266:1 18267:2 18288:3 18312:1 18319:1 18332:1 18336:1 18342:1 18346:2 18356:1 18380:1 18399:1 18408:1 18416:1 18455:1 18469:16 18475:1 18493:1 18507:1 18555:1 18567:1 18612:1 18633:1 18657:1 18660:1 18671:1 18708:2 18712:1 18717:1 18719:1 18732:1 18758:1 18767:1 18780:1 18791:1 18825:6 18830:1 18832:1 18843:4 18844:1 18845:1 18850:2 18852:1 18866:1 18868:1 18904:1 18906:1 18914:3 18922:2 18927:1 18953:1 18955:1 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19056:1 19057:1 19066:1 19067:2 19076:3 19096:1 19103:1 19127:1 19159:1 19189:1 19232:1 19237:1 19247:1 19253:2 19261:1 19304:2 19305:1 19306:1 19320:2 19327:1 19332:1 19342:1 19344:2 19382:2 19399:3 19405:1 19407:2 19421:1 19453:2 19457:1 19501:3 19505:1 19507:1 19517:1 19528:1 19552:3 19564:2 19567:1 19577:1 19584:2 19606:1 19611:11 19638:1 19723:2 19730:1 19734:1 19743:1 19793:1 19807:1 19812:2 19814:1 19852:1 19853:1 19864:1 19867:4 19883:3 19901:1 19902:1 19918:1 19924:3 19925:2 19940:1 19948:1 19965:1 19968:2 19973:1 20034:2 20046:8 20054:1 20103:8 20174:2 20202:1 20232:1 20257:1 20259:2 20272:1 20276:1 20315:1 20326:1 20328:1 20338:1 20340:1 20344:1 20359:1 20361:1 20371:2 20392:2 20397:1 20405:1 20427:1 20453:1 20458:5 20465:1 20507:2 20518:1 20551:3 20553:1 20565:1 20567:1 20580:1 20603:2 20651:1 20659:1 20682:1 20684:1 20705:4 20720:1 20737:5 20757:1 20799:1 20848:1 20852:2 20853:2 20857:1 20878:1 20881:1 20947:2 20988:1 21006:1 21012:1 21029:1 21033:1 21043:1 21048:2 21054:1 21059:1 21080:2 21081:1 21091:1 21104:1 21154:1 21197:1 21198:1 21210:2 21223:1 21224:1 21244:1 21245:1 21250:1 21267:1 21274:1 21279:1 21316:2 21351:2 21355:1 21356:1 21359:1 21368:1 21379:1 21389:1 21413:1 21482:1 21505:1 21511:1 21520:3 21536:1 21544:1 21548:2 21590:1 21612:1 21617:1 21626:1 21644:1 21648:1 21650:8 21659:1 21690:1 21701:2 21739:2 21756:1 21766:1 21795:1 21832:1 21849:2 21864:6 21901:1 21910:1 21914:1 21918:8 21925:1 21928:1 21931:1 21939:1 21942:1 21945:1 21962:1 21966:1 22011:1 22014:2 22016:1 22017:2 22019:2 22022:4 22023:1 22034:1 22044:1 22048:1 22051:2 22089:2 22111:1 22193:2 22226:1 22266:4 22287:8 22290:3 22293:2 22300:1 22357:1 22374:1 22409:2 22430:1 22531:1 22537:1 22549:1 22550:2 22553:1 22560:1 22568:1 22628:1 22633:1 22675:1 22693:4 22745:2 22760:1 22787:1 22793:1 22831:1 22908:2 22911:1 22917:2 22933:1 22975:1 23045:1 23058:1 23103:1 23112:1 23115:1 23123:1 23133:1 23145:1 23158:2 23175:1 23180:1 23230:4 23290:1 23299:1 23309:2 23337:2 23351:1 23418:3 23426:2 23449:1 23463:4 23464:1 23468:1 23485:1 23494:15 23514:1 23521:2 23555:1 23573:1 23581:5 23587:1 23596:1 23617:2 23623:1 23641:1 23665:7 23666:2 23689:1 23690:1 23703:2 23706:1 23710:3 23713:1 23718:1 23721:1 23725:1 23726:1 23745:3 23750:1 23785:8 23796:2 23800:1 23802:1 23823:1 23840:1 23881:1 23892:1 23910:1 23921:3 23955:1 23969:4 23971:1 24006:2 24015:1 24114:2 24176:1 24179:8 24184:2 24188:1 24201:1 24226:1 24230:1 24239:1 24240:1 24258:1 24260:1 24279:1 24313:3 24323:2 24348:1 24352:1 24357:1 24363:1 24364:2 24396:2 24408:1 24410:1 24416:3 24429:2 24440:2 24453:1 24460:1 24464:1 24498:8 24502:1 24504:4 24531:1 24542:3 24548:1 24557:1 24561:1 24590:1 24647:1 24725:1 24728:1 24761:1 24780:1 24786:2 24791:3 24795:1 24804:1 24820:2 24861:1 24868:1 24877:1 24898:1 24913:1 24915:1 24967:1 24980:1 24986:1 24998:1 25013:1 25031:1 25034:4 25053:2 25077:1 25113:1 25135:2 25139:1 25180:2 25186:1 25227:1 25238:1 25281:3 25314:1 25318:2 25345:1 25375:1 25376:2 25379:1 25383:1 25415:1 25416:1 25422:3 10 4:2 6:3 50:1 60:1 65:1 72:1 78:1 87:1 98:1 130:1 164:8 172:5 173:2 246:1 249:1 258:1 294:1 298:2 303:1 311:2 317:1 337:1 363:1 367:2 374:2 395:1 429:1 466:2 508:4 529:1 539:1 555:1 557:3 564:4 579:1 616:1 690:1 701:2 707:1 715:2 738:1 762:1 787:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:7 877:1 879:2 881:1 914:2 918:1 934:1 974:1 1007:1 1032:2 1079:1 1087:1 1096:2 1103:1 1121:1 1129:1 1143:1 1154:1 1167:1 1176:1 1185:1 1205:2 1249:1 1251:1 1254:1 1268:1 1269:1 1275:1 1284:4 1290:1 1327:1 1333:2 1337:2 1338:1 1342:3 1343:1 1346:2 1354:1 1360:1 1366:1 1424:1 1425:2 1428:1 1432:3 1464:4 1478:1 1497:1 1505:1 1511:1 1512:1 1548:1 1554:1 1586:2 1605:1 1618:1 1621:3 1643:1 1661:1 1673:1 1685:4 1700:1 1704:2 1712:1 1769:1 1790:1 1806:1 1816:2 1823:1 1824:1 1849:1 1855:1 1887:1 1926:3 1946:1 1956:1 1979:1 1992:3 1993:2 2021:2 2022:2 2026:1 2028:1 2032:1 2038:1 2045:2 2048:2 2049:1 2051:1 2058:1 2059:4 2060:3 2062:1 2108:1 2170:2 2183:2 2184:1 2221:2 2249:2 2258:1 2288:1 2292:1 2300:4 2329:1 2332:1 2359:1 2368:1 2434:2 2441:2 2450:1 2452:4 2468:1 2473:8 2477:1 2484:1 2499:1 2503:1 2516:1 2528:1 2530:1 2536:1 2538:6 2552:1 2569:1 2578:2 2605:1 2606:6 2611:1 2614:3 2619:2 2638:1 2641:1 2654:5 2660:1 2670:1 2675:4 2686:1 2693:1 2701:1 2712:1 2717:1 2730:2 2749:1 2786:1 2812:3 2814:1 2817:1 2863:1 2881:3 2884:2 2885:2 2927:1 2928:1 2944:4 2948:2 2958:1 2963:1 2964:1 3022:1 3031:8 3054:1 3081:1 3133:1 3155:1 3157:1 3167:2 3176:1 3177:1 3182:1 3200:1 3224:1 3230:1 3246:1 3254:1 3260:1 3268:2 3305:1 3306:3 3340:3 3345:5 3364:1 3369:1 3370:1 3382:1 3388:2 3397:1 3427:1 3428:2 3440:1 3449:1 3470:1 3522:1 3527:1 3535:1 3556:1 3563:2 3603:1 3628:1 3630:1 3652:1 3691:2 3699:3 3703:2 3707:1 3717:1 3743:1 3750:1 3766:1 3807:3 3810:1 3811:1 3815:1 3816:1 3830:1 3837:1 3838:1 3841:1 3874:1 3891:1 3894:1 3925:1 3937:1 3945:2 3954:1 3993:1 4020:1 4044:1 4050:1 4051:1 4066:4 4069:1 4077:3 4081:1 4106:3 4112:1 4116:2 4140:2 4160:1 4167:2 4185:1 4194:2 4207:1 4218:1 4219:1 4227:1 4240:2 4260:1 4281:7 4282:1 4293:1 4304:2 4309:1 4312:1 4370:2 4382:2 4383:1 4385:1 4388:2 4393:4 4394:1 4402:1 4410:1 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4636:1 4649:1 4694:1 4698:1 4707:1 4709:1 4714:4 4751:1 4766:1 4774:1 4792:2 4813:1 4822:2 4877:2 4896:1 4903:3 4907:1 4919:1 4929:1 4965:1 4969:2 4979:1 5007:1 5011:2 5027:2 5042:1 5045:1 5051:2 5102:1 5110:1 5115:15 5125:1 5138:1 5149:2 5164:2 5180:1 5183:1 5185:2 5264:2 5319:2 5322:3 5324:3 5351:1 5400:1 5407:1 5415:2 5425:1 5428:3 5447:6 5483:1 5532:5 5533:1 5539:1 5551:1 5565:1 5640:1 5651:1 5654:2 5658:1 5662:1 5667:1 5674:1 5677:3 5678:1 5679:1 5725:1 5757:8 5763:1 5840:3 5849:1 5889:2 5898:1 5899:2 5951:1 5967:1 5994:11 6014:1 6027:2 6048:4 6052:1 6053:1 6072:3 6073:1 6081:1 6104:2 6204:1 6273:1 6283:1 6345:1 6352:1 6364:1 6370:1 6374:1 6375:1 6402:1 6414:1 6431:1 6457:1 6462:1 6463:1 6471:1 6546:1 6596:15 6611:1 6639:1 6700:1 6701:1 6731:1 6737:2 6760:1 6761:1 6790:1 6818:1 6835:8 6836:1 6846:1 6853:1 6857:2 6865:1 6869:3 6877:2 6878:1 6881:2 6892:22 6909:5 6911:5 6920:1 6960:2 6970:1 6976:1 6995:2 7014:1 7060:1 7066:1 7075:3 7097:3 7116:1 7132:1 7133:1 7140:2 7144:1 7179:1 7224:1 7286:1 7312:2 7322:14 7323:1 7339:2 7360:1 7368:1 7440:1 7471:2 7487:1 7494:2 7509:1 7516:1 7560:2 7597:2 7604:1 7647:1 7710:3 7713:1 7718:2 7726:1 7728:2 7751:1 7828:1 7841:3 7858:1 7896:1 7912:1 7916:1 7927:1 7928:2 7940:2 7958:1 7993:1 8012:1 8023:1 8035:1 8038:2 8043:1 8048:2 8064:1 8065:1 8083:1 8102:1 8184:1 8187:1 8191:8 8194:1 8199:1 8201:1 8216:2 8224:2 8259:1 8326:1 8342:1 8362:3 8384:2 8400:1 8410:2 8455:1 8492:1 8500:1 8514:1 8531:1 8561:3 8575:1 8576:1 8582:1 8609:1 8633:1 8640:2 8682:3 8715:1 8716:8 8718:8 8726:1 8735:1 8773:2 8780:3 8796:1 8806:3 8832:1 8842:1 8853:1 8871:1 8881:1 8901:2 8961:1 8980:1 8985:3 8995:1 8997:1 9015:1 9033:1 9099:1 9105:1 9142:1 9150:2 9159:1 9162:1 9177:2 9216:1 9219:1 9248:1 9295:2 9313:1 9345:1 9353:1 9373:1 9381:4 9387:1 9392:1 9410:1 9411:1 9416:2 9437:1 9439:1 9443:4 9453:6 9456:1 9464:2 9510:11 9523:2 9537:4 9540:2 9541:1 9583:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:8 9690:1 9710:1 9725:3 9727:3 9799:2 9811:1 9813:3 9815:1 9823:5 9845:1 9849:1 9901:1 9961:1 9989:2 9992:1 10073:1 10089:2 10091:1 10162:1 10167:1 10196:2 10200:1 10243:1 10246:1 10262:1 10263:1 10337:1 10367:2 10387:1 10395:1 10400:1 10405:2 10412:3 10415:1 10417:1 10419:2 10421:1 10430:1 10456:2 10460:1 10461:1 10474:2 10506:1 10516:1 10541:1 10561:1 10590:3 10596:8 10607:2 10681:1 10763:1 10783:8 10804:8 10819:2 10825:1 10829:1 10840:2 10841:2 10858:1 10888:1 10920:1 10924:1 10939:1 11013:4 11036:1 11063:1 11089:8 11115:1 11118:2 11152:1 11161:1 11195:1 11225:1 11230:1 11249:1 11279:2 11294:1 11322:1 11355:2 11361:1 11403:1 11408:6 11424:1 11446:4 11450:1 11475:2 11524:1 11529:1 11563:2 11567:1 11574:1 11583:1 11666:1 11676:1 11678:2 11682:2 11684:1 11700:4 11708:1 11716:1 11720:1 11750:2 11780:2 11786:1 11792:2 11803:1 11811:2 11817:1 11833:1 11854:1 11860:4 11871:1 11902:2 11912:1 11915:1 11936:2 11941:1 11955:2 11978:1 11982:2 12020:1 12030:3 12064:1 12103:1 12105:1 12108:1 12111:1 12122:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:3 12274:2 12281:1 12294:1 12295:1 12297:1 12299:1 12305:1 12351:1 12352:1 12367:1 12377:1 12451:1 12474:1 12483:2 12489:2 12509:1 12521:2 12528:1 12540:1 12601:3 12619:1 12645:1 12657:1 12659:1 12713:3 12716:1 12723:2 12734:1 12741:1 12747:1 12770:1 12773:1 12776:1 12795:1 12802:2 12838:1 12852:3 12859:1 12866:1 12874:1 12891:1 12896:1 12906:1 12941:1 12944:2 12964:1 12991:3 12996:2 12997:2 13009:1 13053:2 13061:1 13136:1 13174:1 13184:1 13188:1 13209:1 13219:2 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13307:1 13330:2 13345:1 13357:1 13388:1 13398:1 13433:1 13515:1 13524:1 13540:1 13555:1 13564:1 13597:1 13641:1 13750:1 13764:1 13776:6 13777:2 13790:3 13854:1 13914:2 13928:1 13935:5 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14025:1 14049:5 14064:2 14073:1 14075:1 14086:1 14089:7 14114:1 14145:1 14150:1 14158:4 14166:2 14208:1 14211:1 14214:1 14227:1 14230:1 14236:1 14276:6 14279:1 14283:1 14293:4 14306:2 14316:1 14333:1 14365:1 14370:1 14386:1 14387:1 14388:1 14391:1 14398:2 14400:1 14401:3 14409:1 14411:1 14412:1 14418:1 14423:1 14477:1 14483:1 14535:1 14597:1 14613:1 14615:1 14620:1 14659:1 14664:1 14680:4 14740:4 14756:1 14809:1 14819:1 14837:1 14843:4 14846:1 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14986:1 14999:1 15011:1 15045:1 15054:5 15123:1 15141:1 15155:1 15164:1 15182:1 15209:1 15227:11 15247:2 15258:1 15267:1 15276:2 15285:1 15296:1 15306:1 15350:1 15353:1 15378:1 15384:1 15393:1 15415:1 15435:1 15448:1 15454:2 15466:4 15474:1 15492:2 15520:1 15587:1 15611:1 15669:1 15675:1 15676:6 15681:1 15687:1 15699:2 15700:1 15716:1 15718:1 15719:1 15733:1 15738:2 15740:1 15752:1 15789:1 15821:8 15825:1 15826:1 15839:1 15858:1 15859:1 15866:4 15884:1 15895:1 15921:1 15938:1 15950:2 15960:2 15962:1 15979:1 15980:1 16036:1 16046:1 16077:1 16081:1 16090:1 16102:1 16130:1 16142:2 16159:2 16161:1 16187:1 16228:2 16247:1 16264:4 16268:1 16282:1 16321:1 16341:1 16348:1 16351:1 16379:2 16409:1428 16424:1 16446:1 16480:1 16521:1 16583:1 16592:1 16599:1 16606:1 16637:1 16697:1 16698:15 16794:1 16864:3 16884:1 16888:5 16896:1 16956:2 17006:1 17018:2 17042:2 17054:1 17058:1 17067:2 17075:1 17077:3 17080:6 17088:2 17093:1 17104:1 17115:5 17131:3 17135:2 17156:1 17158:1 17165:1 17204:2 17218:1 17233:1 17317:1 17330:2 17351:1 17360:1 17365:1 17381:1 17407:1 17446:1 17449:4 17517:2 17533:1 17536:2 17537:1 17539:1 17573:1 17592:2 17594:1 17602:1 17612:1 17613:1 17614:1 17623:3 17636:2 17648:1 17675:1 17688:1 17689:1 17693:1 17697:2 17718:1 17720:1 17752:1 17766:1 17803:4 17820:1 17838:1 17843:1 17860:1 17866:1 17871:1 17878:1 17894:1 17898:1 17953:3 17990:3 18021:1 18081:1 18090:1 18145:1 18153:1 18233:1 18250:2 18253:1 18255:1 18266:1 18267:2 18288:3 18312:1 18319:1 18332:1 18336:1 18342:1 18346:2 18356:1 18380:1 18399:1 18408:1 18416:1 18455:1 18469:16 18475:1 18493:1 18507:1 18555:1 18567:1 18612:1 18633:1 18657:1 18660:1 18671:1 18708:2 18712:1 18717:1 18719:1 18732:1 18758:1 18767:1 18780:1 18791:1 18825:6 18830:1 18832:1 18843:4 18844:1 18845:1 18850:2 18852:1 18866:1 18868:1 18904:1 18906:1 18914:3 18922:2 18927:1 18953:1 18955:1 18964:1 19007:2 19034:1 19036:1 19041:1 19049:1 19056:1 19057:1 19066:1 19067:2 19076:3 19096:1 19103:1 19127:1 19159:1 19189:1 19232:1 19237:1 19238:1 19247:1 19253:2 19261:1 19304:2 19305:1 19306:1 19320:3 19327:1 19332:1 19342:2 19344:2 19382:2 19399:3 19405:1 19407:2 19421:1 19453:2 19457:1 19501:3 19505:1 19507:1 19517:1 19528:1 19552:3 19564:2 19567:1 19577:1 19584:3 19606:1 19611:11 19638:1 19723:2 19730:1 19734:1 19743:1 19793:1 19807:1 19812:2 19814:1 19852:1 19853:1 19864:1 19867:4 19883:3 19901:1 19902:1 19918:1 19924:3 19925:2 19940:1 19948:1 19965:1 19968:2 19973:1 20034:2 20046:8 20054:1 20103:8 20174:2 20202:1 20232:1 20257:1 20259:2 20272:1 20276:1 20315:1 20326:1 20328:1 20338:1 20340:1 20344:1 20359:1 20361:1 20371:2 20392:3 20397:1 20405:1 20420:1 20427:1 20453:1 20458:5 20465:1 20507:2 20518:1 20551:3 20553:1 20565:1 20567:1 20580:1 20603:2 20651:1 20659:1 20682:1 20684:1 20705:4 20720:1 20737:5 20757:1 20799:1 20837:1 20848:1 20852:2 20853:2 20857:1 20878:1 20881:1 20947:2 20988:1 21006:1 21012:1 21029:1 21033:1 21043:1 21048:2 21054:1 21059:1 21080:2 21081:1 21091:1 21104:1 21154:1 21197:1 21198:1 21210:2 21223:1 21224:1 21244:1 21245:1 21250:1 21267:1 21274:1 21279:2 21316:2 21351:2 21355:1 21356:1 21359:1 21368:1 21379:1 21389:1 21413:1 21482:1 21505:1 21511:1 21520:3 21536:1 21544:1 21548:2 21573:1 21590:1 21612:1 21617:1 21626:1 21644:1 21648:1 21650:8 21659:1 21690:1 21701:2 21739:2 21756:1 21766:1 21795:1 21832:1 21849:2 21864:7 21890:1 21901:1 21910:1 21914:1 21918:8 21925:1 21928:1 21931:1 21939:1 21942:1 21945:1 21962:1 21966:1 22011:1 22014:2 22016:1 22017:2 22019:3 22022:4 22023:1 22034:1 22044:1 22048:1 22051:2 22089:2 22111:1 22193:3 22205:1 22226:1 22266:6 22285:1 22287:8 22290:4 22293:3 22300:1 22357:1 22374:1 22409:2 22430:1 22531:1 22537:1 22549:1 22550:2 22553:1 22560:1 22568:1 22628:1 22633:1 22675:1 22693:4 22745:2 22760:1 22787:1 22793:1 22831:1 22908:2 22911:1 22917:2 22933:1 22975:1 23045:1 23058:1 23103:1 23112:1 23115:1 23123:1 23133:1 23145:1 23158:2 23175:1 23180:1 23230:4 23290:2 23294:1 23299:1 23309:2 23324:1 23337:2 23351:1 23418:3 23426:2 23449:1 23463:4 23464:1 23468:1 23485:2 23494:15 23505:1 23514:1 23521:2 23555:1 23573:1 23581:5 23587:1 23596:1 23617:2 23623:1 23641:1 23665:7 23666:2 23689:1 23690:1 23703:2 23706:1 23710:3 23713:1 23718:1 23721:1 23725:1 23726:1 23745:3 23750:1 23785:8 23796:2 23800:1 23802:1 23823:1 23840:2 23881:1 23892:1 23910:1 23921:3 23955:1 23969:4 23971:1 24006:2 24015:1 24114:2 24176:1 24179:8 24184:2 24188:1 24201:1 24226:1 24230:1 24239:1 24240:1 24258:1 24260:1 24279:1 24313:3 24323:2 24348:1 24352:1 24357:1 24363:1 24364:2 24396:2 24408:1 24410:1 24416:3 24429:2 24440:2 24453:1 24460:1 24464:1 24498:8 24502:1 24504:4 24531:2 24542:3 24548:1 24557:1 24561:1 24590:1 24647:1 24725:1 24728:1 24761:1 24780:1 24786:2 24791:3 24795:1 24804:1 24820:2 24832:1 24861:2 24868:1 24877:1 24898:1 24913:1 24915:1 24928:1 24967:1 24970:1 24980:1 24986:1 24998:1 25013:1 25031:1 25034:4 25053:2 25077:1 25113:1 25135:2 25139:1 25180:2 25186:1 25227:1 25238:1 25281:3 25314:1 25318:2 25345:1 25375:1 25376:2 25379:1 25383:1 25415:1 25416:1 25422:3 10 4:2 6:3 50:1 60:1 65:1 72:1 78:1 87:1 98:1 130:1 164:8 172:5 173:2 246:1 249:1 258:1 294:1 298:2 303:1 311:2 317:1 337:1 363:1 367:2 374:2 395:1 429:1 466:2 508:4 529:1 539:1 555:1 557:3 564:4 579:1 616:1 690:1 701:2 707:1 715:2 738:1 762:1 787:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:7 877:1 879:2 881:1 914:2 918:1 934:1 974:1 1007:1 1032:2 1079:1 1087:1 1096:2 1103:1 1121:1 1129:1 1143:1 1154:1 1167:1 1176:1 1185:1 1205:2 1249:1 1251:1 1254:1 1268:1 1269:1 1275:1 1284:4 1290:1 1327:1 1333:2 1337:2 1338:1 1342:3 1343:1 1346:2 1354:1 1360:1 1366:1 1424:1 1425:2 1428:1 1432:3 1464:4 1478:1 1497:1 1505:1 1511:1 1512:1 1548:1 1554:1 1586:2 1605:1 1618:1 1621:3 1643:1 1661:1 1673:1 1685:4 1700:1 1704:2 1712:1 1769:1 1790:1 1806:1 1816:2 1823:1 1824:1 1849:1 1855:1 1887:1 1926:3 1946:1 1956:1 1979:1 1992:3 1993:2 2021:2 2022:2 2026:1 2028:1 2032:1 2038:1 2045:2 2048:2 2049:1 2051:1 2058:1 2059:4 2060:3 2062:1 2108:1 2170:2 2183:2 2184:1 2221:2 2249:2 2258:1 2288:1 2292:1 2300:4 2329:1 2332:1 2359:1 2368:1 2434:2 2441:2 2450:1 2452:4 2468:1 2473:8 2477:1 2484:1 2499:1 2503:1 2516:1 2528:1 2530:1 2536:1 2538:6 2552:1 2569:1 2578:2 2605:1 2606:6 2611:1 2614:3 2619:2 2638:1 2641:1 2654:5 2660:1 2670:1 2675:4 2686:1 2693:1 2701:1 2712:1 2717:1 2730:2 2749:1 2786:1 2812:3 2814:1 2817:1 2863:1 2881:3 2884:2 2885:2 2927:1 2928:1 2944:4 2948:2 2958:1 2963:1 2964:1 3022:1 3031:8 3054:1 3081:1 3133:1 3155:1 3157:1 3167:2 3176:1 3177:1 3182:1 3200:1 3224:1 3230:1 3246:1 3254:1 3260:1 3268:2 3305:1 3306:3 3340:3 3345:5 3364:1 3369:2 3370:1 3382:1 3388:2 3397:1 3427:1 3428:2 3440:1 3449:1 3470:1 3522:1 3527:1 3535:1 3556:1 3563:2 3603:1 3628:1 3630:1 3652:1 3691:2 3699:3 3703:2 3707:1 3717:1 3743:1 3750:1 3766:1 3807:4 3810:1 3811:1 3815:1 3816:1 3830:1 3837:1 3838:1 3841:1 3874:1 3891:1 3894:1 3925:1 3937:1 3945:2 3954:1 3993:1 4020:1 4044:1 4050:1 4051:1 4066:4 4069:1 4077:3 4081:1 4106:3 4112:1 4116:2 4140:2 4160:1 4167:2 4185:1 4194:2 4207:1 4218:1 4219:1 4227:1 4240:2 4260:1 4281:7 4282:1 4293:1 4304:2 4309:1 4312:1 4370:2 4382:2 4383:1 4385:1 4388:2 4393:4 4394:1 4402:1 4410:1 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4636:1 4649:1 4694:1 4698:1 4707:1 4709:1 4714:4 4751:1 4766:1 4774:1 4792:2 4813:1 4822:2 4877:2 4896:1 4903:3 4907:1 4919:1 4929:1 4965:1 4969:2 4979:1 5007:1 5011:2 5027:2 5042:1 5045:1 5051:2 5102:1 5110:1 5115:16 5125:1 5138:1 5149:2 5164:2 5180:1 5183:1 5185:2 5264:2 5319:2 5322:3 5324:3 5351:1 5400:1 5407:1 5415:2 5425:1 5428:3 5447:6 5483:1 5532:5 5533:1 5539:1 5551:1 5565:1 5640:1 5651:1 5654:2 5658:1 5662:1 5667:1 5674:1 5677:3 5678:1 5679:1 5725:1 5757:8 5763:1 5840:3 5849:1 5889:2 5898:1 5899:2 5951:1 5967:1 5994:12 6014:1 6027:2 6048:4 6052:1 6053:1 6072:3 6073:1 6081:1 6104:2 6204:1 6273:1 6283:1 6345:1 6352:1 6364:1 6370:1 6374:1 6375:1 6402:1 6414:1 6431:1 6457:1 6462:1 6463:1 6471:1 6546:1 6596:16 6611:1 6639:1 6700:1 6701:1 6731:1 6737:2 6760:1 6761:1 6790:1 6818:1 6835:8 6836:1 6846:1 6853:1 6857:2 6865:1 6869:3 6877:2 6878:1 6881:2 6892:22 6909:5 6911:5 6920:1 6960:2 6970:1 6976:1 6995:2 7014:1 7060:1 7066:1 7075:3 7097:3 7116:1 7132:1 7133:1 7140:2 7144:1 7179:1 7224:1 7286:1 7312:2 7322:14 7323:1 7339:2 7360:1 7368:1 7440:1 7471:2 7487:1 7494:2 7509:1 7516:1 7560:2 7597:2 7604:1 7647:1 7710:3 7713:1 7718:2 7726:1 7728:2 7751:1 7828:1 7841:3 7858:1 7896:1 7912:1 7916:1 7927:1 7928:2 7940:2 7958:1 7974:1 7993:1 8012:1 8023:1 8035:1 8038:2 8043:1 8048:2 8064:1 8065:1 8083:1 8102:1 8184:1 8187:1 8191:8 8194:1 8199:1 8201:1 8216:2 8224:2 8259:1 8326:1 8342:1 8362:3 8384:2 8400:1 8410:2 8455:1 8492:1 8500:1 8514:1 8531:1 8561:3 8575:1 8576:1 8582:1 8609:1 8633:1 8640:2 8682:3 8715:1 8716:8 8718:8 8726:1 8735:1 8773:2 8780:3 8796:1 8806:3 8832:1 8842:1 8853:1 8871:1 8881:1 8901:2 8961:1 8980:1 8985:3 8995:1 8997:1 9015:1 9033:1 9099:1 9105:1 9142:1 9150:2 9159:1 9162:1 9177:2 9216:1 9219:1 9248:1 9295:2 9313:1 9345:1 9353:1 9373:1 9381:4 9387:1 9392:1 9410:2 9411:1 9416:2 9437:1 9439:2 9443:4 9453:6 9456:1 9464:2 9510:12 9523:2 9537:4 9540:2 9541:1 9583:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:8 9690:1 9710:1 9725:3 9727:3 9799:2 9811:1 9813:3 9815:1 9823:5 9845:1 9849:1 9901:1 9961:1 9989:2 9992:1 10073:1 10089:2 10091:1 10162:1 10167:1 10196:2 10200:1 10204:1 10243:1 10246:1 10262:1 10263:1 10337:1 10367:2 10387:1 10395:1 10400:1 10405:2 10412:3 10415:1 10417:1 10419:2 10421:1 10430:1 10456:2 10460:1 10461:1 10474:2 10506:1 10516:1 10541:1 10561:1 10590:3 10596:8 10607:2 10681:1 10763:1 10783:8 10804:8 10819:2 10825:1 10829:1 10840:2 10841:2 10858:1 10888:2 10920:1 10924:1 10939:1 11013:4 11036:1 11063:1 11089:8 11115:1 11118:2 11152:1 11161:1 11195:1 11225:1 11230:1 11249:1 11279:2 11294:1 11322:1 11355:2 11361:1 11403:1 11408:6 11424:1 11446:4 11450:1 11475:2 11524:1 11529:1 11563:2 11567:1 11574:1 11583:1 11666:1 11676:1 11678:2 11682:2 11684:1 11700:4 11708:1 11716:1 11720:1 11750:2 11780:2 11786:1 11792:2 11803:1 11811:2 11817:1 11833:1 11854:1 11860:5 11871:1 11902:2 11912:1 11915:1 11936:2 11941:1 11955:2 11978:1 11982:2 12020:1 12030:3 12064:1 12103:1 12105:1 12108:1 12111:1 12122:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:3 12250:1 12274:2 12281:1 12294:1 12295:1 12297:1 12299:1 12305:1 12351:1 12352:1 12367:1 12377:1 12451:1 12474:1 12483:2 12489:2 12509:1 12521:2 12528:1 12540:1 12601:3 12619:1 12645:1 12657:1 12659:1 12713:3 12716:1 12723:2 12734:1 12741:1 12747:1 12770:1 12773:1 12776:1 12795:1 12802:2 12838:1 12852:3 12859:1 12866:1 12874:1 12891:1 12896:1 12906:1 12941:1 12944:2 12964:1 12991:3 12996:2 12997:2 13009:1 13053:2 13061:1 13136:1 13174:1 13184:1 13188:1 13209:1 13219:2 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13307:1 13330:2 13345:1 13357:1 13388:1 13398:1 13433:1 13512:1 13515:1 13524:1 13540:1 13555:1 13564:1 13591:1 13597:1 13641:1 13750:1 13764:1 13776:6 13777:2 13790:3 13854:1 13914:2 13928:1 13935:5 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14025:1 14049:5 14064:2 14073:1 14075:1 14086:1 14089:7 14114:1 14145:1 14150:1 14158:5 14166:2 14208:1 14211:1 14214:1 14227:1 14230:1 14236:1 14276:6 14279:1 14283:1 14293:4 14306:2 14316:1 14333:1 14365:1 14370:1 14386:1 14387:1 14388:1 14391:1 14398:2 14400:1 14401:3 14409:1 14411:1 14412:1 14418:1 14423:1 14477:1 14483:1 14535:1 14597:1 14613:1 14615:1 14620:1 14659:1 14664:1 14680:4 14740:4 14756:1 14809:1 14819:1 14837:1 14843:4 14846:1 14852:3 14870:1 14878:1 14879:1 14954:2 14973:1 14986:1 14999:1 15011:1 15045:1 15054:5 15123:1 15141:1 15155:1 15164:1 15182:1 15209:1 15227:12 15247:2 15258:1 15267:1 15276:2 15285:1 15296:1 15306:1 15350:1 15353:1 15378:1 15384:1 15393:1 15415:1 15435:1 15448:1 15454:2 15466:4 15474:1 15492:2 15520:1 15587:1 15611:1 15669:1 15675:1 15676:6 15681:1 15687:1 15699:2 15700:1 15716:1 15718:1 15719:1 15733:1 15738:2 15740:1 15752:1 15789:1 15821:8 15825:1 15826:1 15839:1 15858:1 15859:1 15866:4 15884:1 15895:1 15921:1 15938:1 15950:2 15960:2 15962:1 15979:1 15980:1 16036:1 16046:1 16077:1 16081:1 16090:1 16102:1 16130:1 16142:2 16159:2 16161:1 16187:1 16228:2 16247:1 16264:4 16268:1 16282:1 16321:1 16341:1 16348:1 16351:1 16379:2 16409:1437 16424:1 16446:1 16480:1 16521:1 16583:1 16592:1 16599:1 16606:1 16637:1 16685:1 16697:1 16698:16 16794:1 16864:3 16884:1 16888:5 16896:1 16956:2 17006:1 17018:2 17042:2 17054:1 17058:1 17067:2 17075:2 17077:3 17080:6 17088:2 17093:1 17104:1 17115:5 17131:3 17135:2 17156:1 17158:1 17165:1 17204:2 17218:1 17233:1 17234:1 17317:1 17330:2 17351:1 17360:1 17365:1 17381:1 17407:1 17446:1 17449:4 17517:2 17533:1 17536:2 17537:1 17539:1 17573:1 17592:2 17594:1 17602:1 17612:1 17613:1 17614:1 17623:3 17636:2 17648:1 17675:1 17688:1 17689:1 17693:1 17697:2 17718:1 17720:1 17752:1 17766:1 17803:4 17820:1 17838:1 17843:1 17860:1 17866:1 17871:1 17878:1 17894:1 17898:1 17953:3 17990:3 18021:1 18081:1 18090:1 18145:1 18153:1 18233:2 18250:2 18253:1 18255:1 18266:1 18267:2 18288:3 18312:1 18319:1 18332:1 18336:1 18342:1 18346:2 18356:1 18380:1 18399:1 18408:1 18416:1 18455:1 18469:17 18475:1 18493:1 18507:1 18555:1 18567:1 18612:1 18633:1 18657:1 18660:1 18671:1 18708:2 18712:1 18717:1 18719:1 18732:2 18758:1 18767:1 18780:1 18791:1 18825:6 18830:1 18832:1 18843:4 18844:1 18845:1 18850:2 18852:1 18866:1 18868:1 18904:1 18906:1 18914:3 18922:2 18927:1 18953:1 18955:1 18964:1 19007:2 19034:1 19036:1 19041:1 19048:1 19049:1 19056:1 19057:1 19066:1 19067:2 19076:3 19096:1 19103:1 19127:1 19159:1 19189:1 19232:1 19237:1 19238:1 19247:1 19253:2 19261:1 19304:2 19305:1 19306:1 19320:3 19327:1 19332:1 19342:2 19344:2 19382:2 19399:3 19405:1 19407:2 19421:1 19453:2 19457:1 19501:3 19505:1 19507:1 19517:1 19528:1 19552:3 19564:2 19567:1 19577:1 19584:3 19606:1 19611:12 19638:1 19723:2 19730:1 19734:1 19743:1 19793:1 19807:1 19812:2 19814:1 19852:1 19853:1 19864:1 19867:4 19883:3 19887:1 19901:1 19902:1 19918:1 19924:3 19925:2 19940:1 19948:1 19965:1 19968:2 19973:1 20034:2 20046:8 20054:1 20103:8 20174:2 20202:1 20232:1 20257:1 20259:2 20272:1 20276:1 20315:1 20326:1 20328:1 20338:1 20340:1 20344:1 20359:2 20361:1 20371:2 20392:3 20397:1 20405:1 20420:1 20427:1 20453:1 20458:5 20465:1 20507:2 20518:1 20551:3 20553:1 20565:1 20567:1 20580:1 20603:2 20651:1 20659:1 20682:1 20684:1 20705:4 20720:1 20737:5 20757:1 20799:1 20837:1 20848:1 20852:2 20853:2 20857:1 20878:1 20881:1 20947:2 20988:1 21006:1 21012:1 21029:1 21033:1 21043:1 21048:2 21054:1 21059:1 21080:2 21081:1 21091:1 21104:1 21154:1 21197:1 21198:1 21210:2 21223:1 21224:1 21244:1 21245:1 21250:1 21267:1 21274:1 21279:2 21316:2 21351:2 21355:1 21356:1 21359:1 21368:1 21379:1 21389:1 21413:1 21482:1 21505:1 21511:1 21520:3 21536:1 21544:1 21548:2 21573:1 21590:1 21612:1 21617:1 21626:1 21644:1 21648:1 21650:8 21659:1 21690:1 21701:2 21739:2 21756:1 21766:1 21795:1 21832:1 21849:2 21864:7 21890:1 21901:1 21910:1 21914:1 21918:8 21925:1 21928:1 21931:1 21939:1 21942:1 21945:1 21962:1 21966:1 22011:1 22014:2 22016:1 22017:2 22019:3 22022:4 22023:1 22034:1 22044:1 22048:1 22051:2 22089:2 22111:1 22193:3 22205:1 22226:1 22266:6 22285:1 22287:8 22290:4 22293:3 22300:1 22357:1 22374:1 22409:2 22430:1 22509:1 22531:1 22537:1 22549:1 22550:2 22553:1 22560:1 22568:1 22628:1 22633:1 22675:1 22693:4 22708:1 22745:2 22760:1 22787:1 22793:1 22831:1 22908:2 22911:1 22917:2 22933:1 22975:1 23045:1 23058:1 23103:1 23112:1 23115:1 23123:1 23133:1 23145:1 23158:2 23175:1 23180:1 23230:4 23290:2 23294:1 23299:1 23309:2 23324:1 23337:2 23351:1 23418:3 23426:2 23449:1 23463:4 23464:1 23468:1 23485:2 23494:16 23505:1 23514:1 23521:2 23555:1 23573:1 23581:5 23587:1 23596:1 23617:2 23623:1 23641:1 23665:7 23666:2 23689:1 23690:1 23703:2 23706:1 23710:3 23713:1 23718:1 23721:1 23725:1 23726:1 23745:3 23750:1 23785:8 23796:2 23800:1 23802:1 23823:1 23840:2 23881:1 23892:1 23910:1 23921:3 23955:1 23969:4 23971:1 24006:2 24015:1 24059:1 24114:2 24176:1 24179:8 24184:2 24188:1 24201:1 24226:1 24230:1 24239:1 24240:1 24258:1 24260:1 24279:1 24313:3 24323:2 24348:1 24352:1 24357:1 24363:1 24364:2 24396:2 24408:1 24410:1 24416:3 24429:2 24440:2 24453:1 24460:1 24464:1 24498:8 24502:1 24504:4 24511:1 24531:2 24542:3 24548:1 24557:1 24561:1 24590:1 24647:1 24725:1 24728:1 24761:1 24780:1 24786:2 24791:3 24795:1 24804:1 24820:2 24832:1 24861:2 24868:1 24877:1 24898:1 24913:1 24915:1 24928:1 24967:1 24970:1 24980:1 24986:1 24998:1 25013:1 25031:1 25034:4 25053:2 25077:1 25113:1 25135:2 25139:1 25180:2 25186:1 25227:1 25238:1 25281:3 25314:1 25318:2 25345:1 25375:1 25376:2 25379:1 25383:1 25415:1 25416:1 25422:3 10 4:2 6:3 50:1 60:1 65:1 72:1 78:1 87:1 98:1 130:1 164:9 172:5 173:2 246:1 249:1 258:1 294:1 298:2 303:1 311:2 317:1 321:1 337:1 363:1 367:2 374:2 395:1 429:1 466:2 508:4 529:1 539:1 555:1 557:3 564:4 579:1 616:1 653:1 690:1 701:2 707:1 715:2 738:1 762:1 787:1 792:1 805:2 807:1 815:2 831:2 842:1 844:1 846:1 847:8 877:1 879:2 881:1 914:2 918:1 934:1 974:1 1007:1 1032:2 1079:1 1087:1 1096:2 1103:1 1121:1 1125:1 1129:2 1143:1 1154:1 1167:1 1176:1 1185:1 1205:2 1249:1 1251:1 1254:1 1268:1 1269:1 1275:1 1284:4 1290:1 1327:1 1333:2 1337:2 1338:1 1342:5 1343:1 1346:2 1354:1 1360:1 1366:1 1424:1 1425:2 1428:1 1432:3 1464:5 1478:1 1497:1 1505:1 1511:1 1512:1 1548:1 1554:1 1586:2 1605:1 1618:1 1621:3 1643:1 1661:1 1673:1 1685:4 1700:1 1704:2 1712:1 1769:1 1790:1 1806:1 1816:2 1823:1 1824:1 1834:1 1849:1 1855:1 1887:1 1926:3 1946:1 1956:1 1979:1 1992:3 1993:2 2021:2 2022:2 2026:1 2028:1 2031:1 2032:1 2038:1 2043:1 2045:2 2048:2 2049:1 2051:1 2058:1 2059:4 2060:4 2062:1 2108:1 2170:3 2183:2 2184:1 2221:2 2249:2 2258:1 2288:1 2292:1 2300:5 2329:1 2332:1 2359:1 2368:1 2411:1 2434:3 2441:2 2450:1 2452:4 2468:1 2473:9 2477:1 2484:1 2499:1 2503:1 2516:1 2528:1 2530:1 2536:1 2538:6 2552:1 2569:1 2578:2 2605:1 2606:6 2611:1 2614:3 2619:2 2638:1 2641:1 2654:5 2660:1 2670:1 2675:4 2686:1 2693:1 2701:1 2712:1 2717:1 2730:2 2733:1 2749:1 2786:1 2812:3 2814:1 2817:1 2863:1 2868:1 2881:3 2884:2 2885:2 2927:1 2928:1 2944:4 2948:2 2958:1 2963:1 2964:1 3022:1 3031:9 3054:1 3075:1 3081:1 3133:1 3155:1 3157:1 3167:2 3176:1 3177:1 3182:1 3200:1 3224:1 3230:1 3246:1 3254:1 3260:1 3268:2 3305:1 3306:3 3340:3 3345:5 3364:1 3369:2 3370:1 3382:1 3388:2 3397:1 3427:1 3428:2 3440:1 3449:1 3470:1 3522:1 3527:1 3535:1 3556:1 3563:2 3603:1 3628:1 3630:1 3652:1 3691:2 3699:4 3703:2 3707:1 3717:1 3743:1 3750:1 3760:1 3766:1 3807:4 3810:1 3811:1 3815:1 3816:1 3830:1 3837:1 3838:1 3841:1 3874:1 3891:1 3894:1 3925:1 3926:1 3937:1 3945:2 3954:1 3993:1 4020:1 4044:1 4050:1 4051:1 4066:4 4069:1 4077:3 4081:1 4106:3 4112:1 4116:2 4140:2 4160:1 4167:2 4185:1 4194:2 4207:1 4218:1 4219:1 4227:1 4240:2 4260:1 4281:7 4282:1 4293:1 4304:4 4309:1 4312:1 4370:2 4382:2 4383:1 4385:1 4388:2 4393:4 4394:1 4402:1 4410:1 4413:2 4438:1 4466:2 4510:1 4526:1 4618:1 4623:1 4636:1 4649:1 4694:1 4698:1 4707:1 4709:1 4714:4 4751:1 4766:1 4774:1 4792:2 4813:1 4822:2 4877:2 4896:1 4903:3 4907:1 4919:1 4929:1 4965:1 4969:2 4979:1 5007:1 5011:2 5027:2 5042:1 5045:1 5051:2 5102:1 5110:1 5115:17 5125:1 5138:1 5149:2 5164:2 5180:1 5183:1 5185:2 5257:1 5264:2 5319:2 5322:3 5324:3 5351:1 5400:1 5407:1 5415:2 5425:1 5428:3 5447:6 5483:1 5532:5 5533:1 5539:1 5551:1 5565:1 5640:1 5651:1 5654:2 5656:1 5658:1 5660:1 5662:1 5667:1 5674:1 5677:4 5678:1 5679:1 5725:1 5757:8 5763:1 5840:3 5849:1 5889:2 5898:1 5899:2 5951:1 5967:1 5994:13 6014:1 6027:2 6048:4 6052:1 6053:1 6072:3 6073:1 6081:1 6104:2 6204:1 6273:1 6283:1 6345:1 6352:1 6364:1 6370:1 6374:2 6375:1 6402:1 6414:1 6431:1 6457:1 6462:1 6463:1 6471:1 6546:1 6596:17 6611:1 6639:1 6700:1 6701:1 6731:1 6737:2 6760:1 6761:1 6790:1 6818:1 6835:8 6836:1 6846:1 6853:1 6857:2 6865:1 6869:3 6877:2 6878:1 6881:2 6892:24 6909:5 6911:5 6920:1 6960:2 6970:1 6976:1 6995:2 7013:1 7014:1 7060:1 7066:1 7075:3 7097:3 7116:1 7132:2 7133:1 7140:2 7144:1 7179:1 7224:1 7286:1 7312:2 7322:14 7323:1 7339:2 7360:1 7368:1 7440:1 7471:2 7487:1 7494:2 7509:1 7516:1 7518:1 7560:2 7597:2 7604:1 7647:1 7710:3 7713:1 7718:2 7726:1 7728:2 7751:1 7828:1 7841:3 7858:1 7896:1 7912:1 7914:1 7916:1 7927:1 7928:2 7940:2 7958:1 7974:1 7993:1 8012:1 8023:1 8035:1 8038:2 8042:1 8043:1 8048:2 8064:1 8065:1 8083:1 8102:1 8184:1 8187:1 8191:9 8194:1 8199:1 8201:1 8216:2 8224:2 8259:1 8326:1 8342:1 8362:3 8384:2 8400:1 8410:2 8455:1 8492:1 8500:1 8514:1 8531:1 8561:3 8575:1 8576:1 8582:1 8609:1 8633:1 8640:2 8682:3 8715:1 8716:8 8718:8 8726:1 8735:1 8773:2 8780:3 8796:1 8806:3 8832:1 8842:1 8849:1 8853:1 8871:1 8881:1 8901:2 8961:1 8980:1 8985:3 8995:1 8997:1 9015:1 9033:1 9099:1 9105:1 9142:1 9150:2 9155:1 9159:1 9162:1 9177:2 9216:1 9219:1 9248:1 9295:2 9313:1 9345:1 9353:1 9373:1 9381:4 9387:1 9392:1 9410:2 9411:1 9416:2 9437:1 9439:2 9443:4 9453:6 9456:1 9464:2 9510:13 9523:2 9537:4 9540:2 9541:1 9583:1 9587:1 9603:1 9640:1 9641:1 9647:1 9655:1 9681:1 9689:8 9690:1 9710:1 9725:3 9727:3 9799:2 9806:1 9811:1 9813:3 9815:1 9823:5 9845:1 9849:1 9901:1 9961:1 9989:2 9992:1 10073:1 10089:2 10091:1 10162:1 10167:1 10196:2 10200:1 10204:1 10243:1 10246:1 10262:1 10263:1 10337:1 10367:2 10387:1 10395:1 10400:1 10405:2 10412:3 10415:1 10417:1 10419:2 10421:1 10430:1 10456:2 10460:1 10461:1 10474:2 10506:2 10516:1 10541:1 10561:1 10590:3 10596:9 10607:2 10677:1 10681:1 10763:1 10783:8 10804:8 10819:2 10825:1 10829:1 10840:2 10841:2 10855:1 10858:1 10888:2 10920:1 10924:1 10939:1 11013:4 11036:1 11063:1 11089:9 11115:1 11118:2 11152:1 11161:1 11195:1 11225:1 11230:1 11249:1 11279:2 11294:1 11322:1 11355:2 11361:1 11403:1 11408:6 11416:1 11424:1 11446:4 11450:1 11475:2 11524:1 11529:1 11563:2 11567:1 11574:1 11583:1 11666:1 11676:1 11678:3 11682:2 11684:1 11700:4 11708:1 11716:1 11720:1 11750:2 11780:2 11786:1 11792:2 11803:1 11811:2 11817:1 11833:1 11854:1 11860:5 11871:1 11902:2 11912:1 11915:1 11936:2 11941:1 11955:2 11978:1 11982:2 12020:1 12030:3 12064:1 12103:1 12105:1 12108:1 12111:1 12122:1 12157:1 12172:1 12184:1 12205:1 12227:1 12242:3 12250:1 12274:2 12281:1 12294:1 12295:1 12297:1 12299:1 12305:1 12351:1 12352:1 12367:1 12377:1 12451:1 12474:1 12483:2 12489:2 12509:1 12521:2 12528:1 12540:1 12601:3 12619:1 12645:1 12657:1 12659:1 12713:3 12716:1 12723:2 12734:1 12741:1 12747:1 12770:1 12773:1 12776:1 12795:1 12802:2 12838:1 12852:3 12856:1 12859:1 12866:1 12874:1 12891:1 12896:1 12906:1 12941:1 12944:2 12964:1 12991:3 12996:2 12997:2 13009:1 13053:2 13061:1 13116:1 13119:1 13128:1 13136:1 13174:1 13184:1 13188:1 13209:1 13219:2 13236:3 13237:1 13243:1 13287:1 13295:1 13297:2 13307:1 13330:2 13345:1 13357:1 13388:1 13398:1 13433:1 13512:1 13515:1 13524:1 13540:1 13555:1 13564:1 13591:1 13597:1 13641:1 13750:1 13764:1 13776:6 13777:2 13790:3 13854:1 13914:2 13928:1 13935:5 13936:1 13959:1 13967:1 13970:1 13977:1 13999:1 14025:1 14049:5 14064:2 14073:1 14075:1 14086:1 14089:7 14114:1 14145:1 14150:1 14158:5 14166:2 14208:1 14211:1 14214:1 14227:1 14230:1 14236:1 14276:6 14279:1 14283:1 14293:5 14306:2 14316:1 14333:1 14365:1 14370:1 14386:1 14387:1 14388:1 14391:1 14398:2 14400:1 14401:3 14409:1 14411:1 14412:1 14418:1 14423:1 14477:1 14483:1 14535:1 14597:1 14613:1 14615:1 14620:1 14659:1 14664:1 14680:4 14740:4 14756:1 14809:1 14819:1 14837:1 14843:4 14846:1 14852:3 14870:1 14878:1 14879:1 14954:2 14969:1 14973:1 14986:1 14999:1 15011:1 15045:1 15054:6 15123:1 15141:1 15155:1 15164:1 15182:1 15193:1 15209:1 15227:13 15247:2 15258:1 15267:1 15276:2 15285:1 15296:1 15306:1 15350:1 15353:1 15378:1 15384:1 15393:1 15415:1 15435:1 15448:1 15454:2 15466:5 15474:1 15492:2 15520:1 15587:1 15611:1 15669:1 15675:1 15676:6 15681:1 15687:1 15699:2 15700:1 15716:1 15718:1 15719:1 15733:1 15738:2 15740:1 15752:1 15789:1 15812:1 15821:9 15825:1 15826:1 15839:1 15858:1 15859:1 15866:4 15884:1 15895:1 15921:1 15937:1 15938:1 15950:2 15960:2 15962:1 15979:1 15980:1 16036:1 16046:1 16077:1 16081:1 16090:1 16102:1 16130:1 16142:2 16159:2 16161:1 16187:1 16228:2 16247:1 16264:4 16268:1 16282:1 16321:1 16341:1 16348:1 16351:1 16379:2 16409:1474 16424:1 16446:1 16480:1 16521:1 16583:1 16592:1 16599:1 16606:1 16637:1 16685:1 16697:1 16698:17 16794:1 16864:3 16884:1 16888:5 16896:1 16956:2 17006:1 17018:2 17042:2 17054:1 17058:1 17067:2 17075:2 17077:3 17080:6 17088:2 17093:1 17104:1 17115:5 17131:3 17135:2 17156:1 17158:1 17165:1 17204:2 17218:1 17233:1 17234:1 17317:1 17330:2 17351:1 17360:1 17365:1 17381:1 17407:1 17446:1 17449:4 17517:2 17533:1 17536:2 17537:1 17539:1 17573:1 17592:2 17594:1 17602:1 17612:2 17613:1 17614:1 17623:3 17636:2 17648:1 17675:1 17688:1 17689:1 17693:1 17697:2 17718:1 17720:1 17741:1 17752:1 17766:1 17803:4 17820:1 17838:1 17843:1 17860:1 17866:1 17871:1 17878:1 17894:1 17898:1 17953:3 17990:3 18021:1 18081:1 18090:1 18145:1 18153:1 18217:1 18233:2 18250:2 18253:1 18255:1 18266:2 18267:2 18268:1 18288:3 18312:1 18319:1 18332:1 18336:1 18342:1 18346:2 18356:1 18380:1 18399:1 18408:1 18416:1 18455:1 18469:18 18475:1 18493:1 18507:1 18555:1 18567:1 18612:1 18629:1 18633:1 18657:1 18660:1 18671:1 18672:1 18708:2 18712:1 18717:1 18719:1 18732:2 18758:1 18767:1 18780:1 18791:1 18825:6 18830:1 18832:1 18843:4 18844:1 18845:1 18850:2 18852:1 18866:1 18868:1 18904:1 18906:2 18914:3 18922:2 18927:1 18953:1 18955:1 18964:1 19007:2 19034:1 19036:1 19041:1 19048:1 19049:1 19056:1 19057:1 19066:1 19067:2 19076:3 19096:1 19103:1 19127:1 19159:1 19189:1 19232:1 19237:1 19238:1 19247:1 19253:2 19261:1 19304:2 19305:1 19306:1 19320:3 19327:1 19332:1 19342:2 19344:2 19382:2 19399:4 19405:1 19407:2 19421:1 19453:2 19457:1 19501:3 19505:1 19507:1 19517:1 19528:1 19552:3 19564:2 19567:1 19577:1 19584:4 19606:1 19611:13 19638:1 19723:2 19730:1 19734:1 19743:1 19793:1 19807:1 19812:2 19814:1 19852:1 19853:1 19864:1 19867:4 19883:3 19887:1 19901:2 19902:1 19918:1 19924:3 19925:2 19940:1 19948:1 19965:1 19968:2 19973:1 20034:2 20046:8 20054:1 20103:9 20174:2 20202:1 20232:1 20257:1 20259:2 20272:1 20276:1 20315:1 20326:1 20328:1 20330:1 20338:1 20340:1 20344:1 20359:2 20361:1 20371:2 20392:3 20397:1 20405:1 20420:1 20427:1 20453:1 20458:5 20465:1 20507:2 20518:1 20551:3 20553:1 20565:1 20567:1 20580:1 20603:2 20651:1 20659:1 20682:1 20684:1 20705:4 20720:1 20737:6 20757:1 20799:1 20837:1 20848:1 20852:2 20853:2 20857:1 20878:1 20881:1 20947:2 20988:1 21006:1 21012:1 21029:1 21033:1 21043:1 21048:2 21054:1 21059:1 21080:2 21081:1 21091:1 21104:1 21154:1 21197:1 21198:1 21210:2 21223:1 21224:1 21244:1 21245:1 21250:1 21267:1 21274:1 21279:2 21316:2 21351:2 21355:1 21356:1 21359:1 21368:1 21379:1 21389:1 21413:1 21482:1 21505:1 21511:1 21520:3 21536:1 21544:1 21548:2 21573:1 21590:1 21612:1 21617:1 21626:1 21644:1 21648:1 21650:8 21659:1 21690:1 21701:2 21739:2 21756:1 21766:1 21795:1 21832:1 21849:2 21864:7 21890:1 21901:1 21910:1 21914:1 21918:8 21925:1 21928:1 21931:1 21939:1 21942:1 21945:1 21962:1 21966:1 22011:1 22014:2 22016:1 22017:2 22019:3 22022:5 22023:1 22034:1 22044:1 22048:1 22051:2 22089:2 22111:1 22193:3 22205:1 22226:1 22266:6 22285:1 22287:8 22290:4 22293:3 22300:1 22357:1 22374:1 22409:2 22430:1 22509:1 22531:1 22537:1 22549:1 22550:2 22553:1 22560:1 22568:1 22628:1 22633:1 22675:1 22693:4 22708:1 22745:2 22760:1 22787:1 22793:1 22831:1 22908:2 22911:2 22917:2 22933:1 22975:1 22976:1 23045:1 23058:1 23103:1 23112:1 23115:1 23123:1 23133:1 23145:1 23158:2 23175:1 23180:1 23230:4 23290:2 23294:1 23299:1 23301:1 23309:2 23324:1 23337:2 23351:1 23418:3 23426:2 23449:1 23463:4 23464:1 23468:1 23485:2 23494:17 23505:1 23514:1 23521:2 23555:1 23573:1 23581:5 23587:1 23596:1 23617:2 23623:1 23641:1 23665:7 23666:2 23689:1 23690:1 23703:2 23706:1 23710:3 23713:1 23718:1 23721:2 23725:1 23726:1 23728:1 23745:3 23750:1 23785:8 23796:2 23800:1 23802:1 23823:1 23840:2 23881:1 23892:1 23910:1 23921:3 23955:1 23969:4 23971:1 24006:2 24015:1 24059:1 24114:2 24176:1 24179:9 24184:2 24188:2 24201:1 24205:1 24226:1 24230:1 24239:1 24240:1 24258:1 24260:1 24279:1 24298:1 24313:3 24323:2 24338:1 24348:1 24352:1 24357:1 24363:1 24364:2 24396:2 24408:1 24410:1 24416:3 24429:2 24440:2 24453:1 24460:1 24464:1 24468:1 24498:8 24502:1 24504:4 24511:1 24531:2 24542:3 24548:1 24557:1 24561:1 24590:1 24647:1 24718:1 24725:1 24728:1 24761:1 24780:1 24786:2 24791:3 24795:1 24804:1 24820:2 24832:2 24861:2 24868:1 24877:1 24898:1 24913:1 24915:1 24928:1 24967:1 24970:1 24980:1 24986:1 24998:1 25013:1 25031:1 25034:4 25053:2 25077:1 25113:1 25135:2 25139:1 25180:2 25186:1 25227:1 25238:1 25281:3 25314:1 25318:2 25345:1 25375:1 25376:2 25379:1 25383:1 25415:1 25416:1 25422:3
4d074ccffe5a11b0e997fb58c2dffbcfd65979fe
68e9d6c19069591c9f3af13aedcbd686cb7053cb
/tests/ieee-sqrts.tst
a8947834cd46c2ee167675382448fa794bf73846
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-other-permissive", "BSD-2-Clause", "Zlib", "BSD-3-Clause" ]
permissive
erwinmars/hyperion
c0de7ab000e49564b98d54d5dfe9636ec0159b8c
6a042a852e52bb73ed9089c76587c0f4ed9d8d1b
refs/heads/master
2020-06-12T13:22:37.841600
2016-12-05T12:06:40
2016-12-05T12:06:40
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
5,134
tst
ieee-sqrts.tst
* *Testcase ieee-sqrts.tst: IEEE Square Root, Convert From/To Fixed *Message Testcase ieee-sqrts.tst: IEEE Square Root, Convert From/To Fixed *Message ..Includes SQUARE ROOT (5), CONVERT FROM/TO FIXED 32 (6), 11 instr total * * SQUARE ROOT tests - Binary Floating Point * # # Tests five square root instructions: # SQUARE ROOT (extended BFP, RRE) # SQUARE ROOT (long BFP, RRE) # SQUARE ROOT (long BFP, RXE) # SQUARE ROOT (short BFP, RRE) # SQUARE ROOT (short BFP, RXE) # # Also tests the following twelve conversion instructions # CONVERT FROM FIXED (32 to short BFP, RRE) # CONVERT FROM FIXED (32 to long BFP, RRE) # CONVERT FROM FIXED (32 to extended BFP, RRE) # CONVERT TO FIXED (32 to short BFP, RRE) # CONVERT TO FIXED (32 to long BFP, RRE) # CONVERT TO FIXED (32 to extended BFP, RRE) # CONVERT FROM FIXED (64 to short BFP, RRE) # CONVERT FROM FIXED (64 to long BFP, RRE) # CONVERT FROM FIXED (64 to extended BFP, RRE) # CONVERT TO FIXED (64 to short BFP, RRE) # CONVERT TO FIXED (64 to long BFP, RRE) # CONVERT TO FIXED (64 to extended BFP, RRE) # # Also tests the following floating point support instructions # LOAD (Short) # LOAD (Long) # LOAD ZERO (Long) # STORE (Short) # STORE (Long) # # Convert integers 1, 2, 4, 16 to each BFP floating point format # Take the square root of each in each BFP format # Convert back to integers (Note: SQRT(2) will/should round) # Because all inputs must be positive, we'll use this rig to test # logical (unsigned) conversions when that support is added to # Hercules. And we will test 32 and 64 bit logical conversions. # The comments will still say "integers" though. # sysclear archmode esame loadcore "$(testpath)/ieee-sqrts.core" runtest .1 *Compare r 410.10 # Inputs converted to BFP short *Want "CEFBR/CEGBR test pairs 1-2" 3F800000 40000000 40800000 41800000 *Compare r 420.10 # Inputs converted to BFP long one of two *Want "CDFBR/CDGBR test pair 1" 3FF00000 00000000 40000000 00000000 *Compare r 430.10 # Inputs converted to BFP long two of two *Want "CDFBR/CDGBR test pair 2" 40100000 00000000 40300000 00000000 *Compare r 440.10 # Inputs converted to BFP ext one of four *Want "CXFBR test 1" 3FFF0000 00000000 00000000 00000000 *Compare r 450.10 # Inputs converted to BFP ext two of four *Want "CXGBR test 1" 40000000 00000000 00000000 00000000 *Compare r 460.10 # Inputs converted to BFP ext three of four *Want "CXFBR test 2" 40010000 00000000 00000000 00000000 *Compare r 470.10 # Inputs converted to BFP ext four of four *Want "CXGBR test 2" 40030000 00000000 00000000 00000000 *Compare r 500.10 # BFP short square roots RXE and RRE part 1 *Want "SQEB/SQEBR Tests 1-2" 3F800000 3F800000 3FB504F3 3FB504F3 *Compare r 510.10 # BFP short square roots RXE and RRE part 2 *Want "SQEB/SQEBR Tests 3-4" 40000000 40000000 40800000 40800000 *Compare r 520.10 # BFP long square roots RXE and RRE part 1 *Want "SQDB/SQDBR Test 1" 3FF00000 00000000 3FF00000 00000000 *Compare r 530.10 # BFP long square roots RXE and RRE part 2 *Want "SQDB/SQDBR Test 2" 3FF6A09E 667F3BCD 3FF6A09E 667F3BCD *Compare r 540.10 # BFP long square roots RXE and RRE part 3 *Want "SQDB/SQDBR Test 3" 40000000 00000000 40000000 00000000 *Compare r 550.10 # BFP long square roots RXE and RRE part 4 *Want "SQDB/SQDBR Test 4" 40100000 00000000 40100000 00000000 *Compare r 560.10 # BFP extended square roots RRE part 1 *Want "SQXBR test 1" 3FFF0000 00000000 00000000 00000000 *Compare r 570.10 # BFP extended square roots RRE part 2 *Want "SQXBR test 2" 3FFF6A09 E667F3BC C908B2FB 1366EA95 *Compare r 580.10 # BFP extended square roots RRE part 3 *Want "SQXBR test 3" 40000000 00000000 00000000 00000000 *Compare r 590.10 # BFP extended square roots RRE part 4 *Want "SQXBR test 4" 40010000 00000000 00000000 00000000 *Compare r A00.10 # Short BFP to Integer results part 1 *Want "CFEBR Test pair 1" 00000000 00000001 00000000 00000001 *Compare r A10.10 # Short BFP to Integer results part 2 *Want "CGEBR Test pair 1" 00000000 00000001 00000000 00000001 *Compare r A20.10 # Short BFP to Integer results part 3 *Want "CFEBR Test pair 2" 00000000 00000002 00000000 00000002 *Compare r A30.10 # Short BFP to Integer results part 4 *Want "CGEBR Test pair 2" 00000000 00000004 00000000 00000004 *Compare r A40.10 # Convert long BFP to Integer results part 1 *Want "CFDBR Test pair 1" 00000000 00000001 00000000 00000001 *Compare r A50.10 # Convert long BFP to Integer results part 2 *Want "CGDBR Test pair 1" 00000000 00000001 00000000 00000001 *Compare r A60.10 # Convert long BFP to Integer results part 3 *Want "CFDBR Test pair 2" 00000000 00000002 00000000 00000002 *Compare r A70.10 # Convert long BFP to Integer results part 4 *Want "CGDBR Test pair 2" 00000000 00000004 00000000 00000004 *Compare r A80.10 # Convert extended BFP to Integer results part 1 *Want "CFXBR/CGXBR Test Pair 1" 00000000 00000001 00000000 00000001 *Compare r A90.10 # Convert extended BFP to Integer results part 2 *Want "CFXBR/CGXBR Test Pair 2" 00000000 00000002 00000000 00000004 *Done
0a2951546da6366fa4c67a1ed119e5187acf3993
449d555969bfd7befe906877abab098c6e63a0e8
/3129/CH7/EX7.4/Ex7_4.sce
c19ceaf1f954ea1b5ad6d02df7f24b70632ec04f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
625
sce
Ex7_4.sce
//Finding the values of the Snubber Circuit for a thyristor cicuit //Example 7.4(Page No- 340) clc clear //given data dv = 100;//V/us; I_TD = 100;//A R = 5;//Ohm L = 0;//H Ls = 0; fs = 2*10^3;//Hz Vs = 200;//V //part(a) Rs = Vs/I_TD; Cs = ((0.632*R*Vs)/(100*(R+Rs)^2)); printf('(a) Rs : %d Ohm',Rs); printf('\n Cs : %.3f uF',Cs); Cs = Cs*10^-6;//to convert into F //part(b) Ps = 0.5*Cs*Vs^2*fs; printf('\n (b) The snubber loss: %.1f W',Ps); //part(c) printf('\n (c) Assuming that all the enerfy stored in Cs is dissipated at Rs only the powering rating of the snubber resistor is %.1f W',Ps)
3e85fce398280b2eb0f1414d7e8db741fde09d3d
449d555969bfd7befe906877abab098c6e63a0e8
/761/CH18/EX18.4/18_4.sce
187d6662fd8f32fec366150f89c613175dd9f60d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
222
sce
18_4.sce
clc; // page no 680 // prob no 18_4 T_sky=120;// Sky temp expressed in K L_dB=2;// antenna feedline loss L=10^(L_dB/10); // the noise temp is given as Ta=((L-1)*290 + T_sky)/L; disp('K',Ta,'Noise temperature is' );
d8e589a00bf8e82804ee83500d4fa490a3110187
527c41bcbfe7e4743e0e8897b058eaaf206558c7
/Positive_Negative_test/Netezza-Base-MachineLearning/SP_DecisionTree-NZ-01.tst
46671a1aba65777fb891c3d9956280808b969235
[]
no_license
kamleshm/intern_fuzzy
c2dd079bf08bede6bca79af898036d7a538ab4e2
aaef3c9dc9edf3759ef0b981597746d411d05d34
refs/heads/master
2021-01-23T06:25:46.162332
2017-07-12T07:12:25
2017-07-12T07:12:25
93,021,923
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,063
tst
SP_DecisionTree-NZ-01.tst
---------------------------------------------------------------------------------------- --Create View CREATE OR REPLACE VIEW tblDecisionTreeMulti_VW AS( SELECT OBSID, VARID, NUM_VAL AS Value FROM tblDecisionTreeMulti); -- Execute Stored Procedure -- note: alter table column VAL to VALUE in tblDTData. SELECT '***** EXECUTING SP_DecisionTree *****'; EXEC SP_DecisionTree('tblDecisionTreeMulti_VW', 5, 5, 0.95, 'Cont. Sample'); ---------------------------------------------------------------------------------------- SELECT '***** EXECUTING SP_DecisionTree *****'; EXEC SP_DecisionTree('tblDTData', 100, 4, 0.8, 'Cont. Sample'); ---------------------------------------------------------------------------------------- DROP TABLE tblDecisionTreeMulti_VW_Score; EXEC SP_DecisionTreeScore('tblDecisionTreeMulti_VW','SSHARMA_558233','tblDecisionTreeMulti_VW_Score','score test');
c7123314ba5bccb6da8b19defcbd679c131e285b
e806e966b06a53388fb300d89534354b222c2cad
/macros/isEpipoleInImage.sci
b2d48d076a2db60bf19c8a5ecb7b7505f507f3e6
[]
no_license
gursimarsingh/FOSSEE_Image_Processing_Toolbox
76c9d524193ade302c48efe11936fe640f4de200
a6df67e8bcd5159cde27556f4f6a315f8dc2215f
refs/heads/master
2021-01-22T02:08:45.870957
2017-01-15T21:26:17
2017-01-15T21:26:17
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,568
sci
isEpipoleInImage.sci
function [isepi, varargout ] = isEpipoleInImage(fundamental_matrix, imagesize) // Find whether image contains epipole. // // Calling Sequence // isepi = isEpipoleInImage(F, imagesize) // [isepi, epipole] = isEpipoleInImage(F, imagesize) // // Parameters // F : A 3 * 3 fundamental matrix computed from stereo images. It should be double or single // imagesize : The size of the image // isepi : Logical value true / false denoting whether the image contains epipole // epipole : Location of the epipole. It is 1 * 2 vector. // // Description // The function determines whether the image with fundamental matrix F contains the epipole or not. It also gives the position of the epipole. // // Examples // F = estimateFundamentalMatrix(matchedPoints1, matchedPoints2) // imageSize = [200 300] // isepi = isEpipoleInImage(F, imagesize) // [isepi, epipole] = isEpipoleInImage(F, imagesize) // // Authors // Suraj Prakash [ lhs, rhs ] = argn(0) if lhs > 2 then error(msprintf("Too many output arguments")); end /// If there is more than one output parameter [rows cols] = size(fundamental_matrix) if rows ~= 3 | cols ~=3 then error(msprintf("Invalid size of fundamental matrix\n")); end [rows1 col2] = size(imagesize) if rows1 ~=1 | cols ~= 2 then error(msprintf("Invalid image size matrix\n")); end if lhs == 2 then [isepi, temp ] = opencv_isEpipoleInImage(fundamental_matrix, imagesize); varargout(1) = temp; /// if there is only one output parameter else isepi = opencv_isEpipoleInImage(fundamental_matrix, imagesize); end endfunction
d5654f2a800d3eca6a1e65afca30517338c85443
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH18/EX18.8/example18_8.sce
3eb1ba3dcf2a3428e44e42ec8f9647f6c2d8a3ea
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
507
sce
example18_8.sce
clc // Given that r = 0.6e-10 // radius of the atom N = 28e26 // no. of electron in per m^3 mu_ = 4 * %pi * 1e-7 // magnetic permeability of space Z = 2 // atomic no. of helium m = 9.1e-31 // mass of an electron in kg e = 1.6e-19 // charge on an electron in C // Sample Problem 8 on page no. 18.24 printf("\n # PROBLEM 8 # \n") printf("Standard formula used \n ") printf(" Chi = mu_0*Z*e^2 *N*R^2 /(6*m) \n") Chi = -(mu_ * Z * N * r^2 * e^2) / (6 * m) printf("\n Diamagnetic susceptibility is %e .",Chi)
bcf9dec61f639f0218c75ba40444fc45a882aa53
449d555969bfd7befe906877abab098c6e63a0e8
/1938/CH5/EX5.19/5_19.sce
7e387899f459c5cbec85231aeb769f1f2ce6eeb9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
548
sce
5_19.sce
clc,clear printf('Example 5.19\n\n') VA=2000*1000 V_L=11000,V_ph=V_L/sqrt(3) R_a=0.3,X_s=5 //armature resistance and synchronous reactance //case (i) phi=acos(0.8) //lagging I_L=VA/(sqrt(3)*V_L) , I_a=I_L E_ph = sqrt((V_ph*cos(phi)+I_a*R_a)^2 +(V_ph*sin(phi)+ I_a*X_s)^2) //Using E_ph = sqrt((V_ph*cos(phi)+I_aph*R_a)^2 +(V_ph*sin(phi)+ I_aph*X_s)^2) //we get V_ph^2 -579.4455 V_ph -44653301.91=0 p=[1 -579.4455 -44653301.91] roots(p) V_ph=ans(1) //second root is ignored as its -ve printf('Terminal voltage is %.4f V',V_ph)
f5a150bd2c3deb9be6ac21488dd95f52cc123664
2e676e3b1cebfbb9d20f9b935ceacd507c57d36a
/Octave/octave-4.2.1/share/octave/packages/interval-2.1.0/test/libieeep1788_tests_num.tst
191ffbb6ad16c1efeb7b210b7ed173656654ec23
[]
no_license
vohrahul/ML-ang-coursera
239469e763b290aa178b7aa8a86eda08e4e7f4be
4c24fd2ecfb9f3de7df15e3a9f75627f782f9915
refs/heads/master
2022-12-28T03:45:54.810173
2020-10-16T12:33:25
2020-10-16T12:33:25
304,620,441
1
0
null
null
null
null
UTF-8
Scilab
false
false
10,582
tst
libieeep1788_tests_num.tst
## DO NOT EDIT! Generated automatically from test/libieeep1788_tests_num.itl ## by the Interval Testing Framework for IEEE 1788. ## https://github.com/nehmeier/ITF1788/tree/92558f7e942665a78f2e883dbe7af52320100fba ## ## Copyright 2013-2015 Marco Nehmeier (nehmeier@informatik.uni-wuerzburg.de) ## Copyright 2015-2016 Oliver Heimlich ## ## Original author: Marco Nehmeier (unit tests in libieeep1788, ## original license: Apache License 2.0) ## Converted into portable ITL format by Oliver Heimlich with minor corrections. ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 3 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, see <http://www.gnu.org/licenses/>. ## %!#Test library imports %!#Arithmetic library imports pkg load interval %!#Preamble try; error ("__FILE__"); catch test (lasterror.stack.file, "quiet", stdout); end_try_catch; %!function assert_warn (observed_value, expected_value) %! if (not (isequal (observed_value, expected_value))) %! observed_expression = regexprep (argn(1, :), '\s+$', ''); %! expected_expression = regexprep (argn(2, :), '\s+$', ''); %! observed_as_char = disp (observed_value)(1 : end - 1); %! expected_as_char = disp(expected_value)(1 : end - 1); %! warning ([observed_expression, " != ", expected_expression, ... %! "\n ", observed_as_char, " != ", expected_as_char]); %! endif %!endfunction ## minimal_inf_test %!test %! assert (isequal (inf (infsup), inf)); %!test %! assert (isequal (inf (infsup (-inf, inf)), -inf)); %!test %! assert (isequal (inf (infsup (1.0, 2.0)), 1.0)); %!test %! assert (isequal (inf (infsup (-3.0, -2.0)), -3.0)); %!test %! assert (isequal (inf (infsup (-inf, 2.0)), -inf)); %!test %! assert (isequal (inf (infsup (-inf, 0.0)), -inf)); %!test %! assert (isequal (inf (infsup (-inf, -0.0)), -inf)); %!test %! assert (isequal (inf (infsup (-2.0, inf)), -2.0)); %!test %! assert (isequal (inf (infsup (0.0, inf)), -0.0)); %!test %! assert (isequal (inf (infsup (-0.0, inf)), -0.0)); %!test %! assert (isequal (inf (infsup (-0.0, 0.0)), -0.0)); %!test %! assert (isequal (inf (infsup (0.0, -0.0)), -0.0)); %!test %! assert (isequal (inf (infsup (0.0, 0.0)), -0.0)); %!test %! assert (isequal (inf (infsup (-0.0, -0.0)), -0.0)); ## minimal_inf_dec_test %!test %! assert (isequal (inf (infsupdec (empty, "trv")), inf)); %!test %! assert (isequal (inf (infsupdec (-inf, inf, "def")), -inf)); %!test %! assert (isequal (inf (infsupdec (1.0, 2.0, "com")), 1.0)); %!test %! assert (isequal (inf (infsupdec (-3.0, -2.0, "trv")), -3.0)); %!test %! assert (isequal (inf (infsupdec (-inf, 2.0, "dac")), -inf)); %!test %! assert (isequal (inf (infsupdec (-inf, 0.0, "def")), -inf)); %!test %! assert (isequal (inf (infsupdec (-inf, -0.0, "trv")), -inf)); %!test %! assert (isequal (inf (infsupdec (-2.0, inf, "trv")), -2.0)); %!test %! assert (isequal (inf (infsupdec (0.0, inf, "def")), -0.0)); %!test %! assert (isequal (inf (infsupdec (-0.0, inf, "trv")), -0.0)); %!test %! assert (isequal (inf (infsupdec (-0.0, 0.0, "dac")), -0.0)); %!test %! assert (isequal (inf (infsupdec (0.0, -0.0, "trv")), -0.0)); %!test %! assert (isequal (inf (infsupdec (0.0, 0.0, "trv")), -0.0)); %!test %! assert (isequal (inf (infsupdec (-0.0, -0.0, "trv")), -0.0)); ## minimal_sup_test %!test %! assert (isequal (sup (infsup), -inf)); %!test %! assert (isequal (sup (infsup (-inf, inf)), inf)); %!test %! assert (isequal (sup (infsup (1.0, 2.0)), 2.0)); %!test %! assert (isequal (sup (infsup (-3.0, -2.0)), -2.0)); %!test %! assert (isequal (sup (infsup (-inf, 2.0)), 2.0)); %!test %! assert (isequal (sup (infsup (-inf, 0.0)), 0.0)); %!test %! assert (isequal (sup (infsup (-inf, -0.0)), 0.0)); %!test %! assert (isequal (sup (infsup (-2.0, inf)), inf)); %!test %! assert (isequal (sup (infsup (0.0, inf)), inf)); %!test %! assert (isequal (sup (infsup (-0.0, inf)), inf)); %!test %! assert (isequal (sup (infsup (-0.0, 0.0)), 0.0)); %!test %! assert (isequal (sup (infsup (0.0, -0.0)), 0.0)); %!test %! assert (isequal (sup (infsup (0.0, 0.0)), 0.0)); %!test %! assert (isequal (sup (infsup (-0.0, -0.0)), 0.0)); ## minimal_sup_dec_test %!test %! assert (isequal (sup (infsupdec (empty, "trv")), -inf)); %!test %! assert (isequal (sup (infsupdec (-inf, inf, "def")), inf)); %!test %! assert (isequal (sup (infsupdec (1.0, 2.0, "com")), 2.0)); %!test %! assert (isequal (sup (infsupdec (-3.0, -2.0, "trv")), -2.0)); %!test %! assert (isequal (sup (infsupdec (-inf, 2.0, "dac")), 2.0)); %!test %! assert (isequal (sup (infsupdec (-inf, 0.0, "def")), 0.0)); %!test %! assert (isequal (sup (infsupdec (-inf, -0.0, "trv")), 0.0)); %!test %! assert (isequal (sup (infsupdec (-2.0, inf, "trv")), inf)); %!test %! assert (isequal (sup (infsupdec (0.0, inf, "def")), inf)); %!test %! assert (isequal (sup (infsupdec (-0.0, inf, "trv")), inf)); %!test %! assert (isequal (sup (infsupdec (-0.0, 0.0, "dac")), +0.0)); %!test %! assert (isequal (sup (infsupdec (0.0, -0.0, "trv")), +0.0)); %!test %! assert (isequal (sup (infsupdec (0.0, 0.0, "trv")), +0.0)); %!test %! assert (isequal (sup (infsupdec (-0.0, -0.0, "trv")), +0.0)); ## minimal_mid_test %!test %! assert (isequal (mid (infsup (-inf, inf)), 0.0)); %!test %! assert (isequal (mid (infsup (-1.797693134862315708e+308, 1.797693134862315708e+308)), 0.0)); %!test %! assert (isequal (mid (infsup (0.0, 2.0)), 1.0)); %!test %! assert (isequal (mid (infsup (2.0, 2.0)), 2.0)); %!test %! assert (isequal (mid (infsup (-2.0, 2.0)), 0.0)); %!test %! assert (isequal (mid (infsup (-9.881312916824930884e-324, 4.940656458412465442e-324)), 0.0)); %!test %! assert (isequal (mid (infsup (-4.940656458412465442e-324, 9.881312916824930884e-324)), 0.0)); ## minimal_mid_dec_test %!test %! assert (isequal (mid (infsupdec (-inf, inf, "def")), 0.0)); %!test %! assert (isequal (mid (infsupdec (-1.797693134862315708e+308, 1.797693134862315708e+308, "trv")), 0.0)); %!test %! assert (isequal (mid (infsupdec (0.0, 2.0, "com")), 1.0)); %!test %! assert (isequal (mid (infsupdec (2.0, 2.0, "dac")), 2.0)); %!test %! assert (isequal (mid (infsupdec (-2.0, 2.0, "trv")), 0.0)); %!test %! assert (isequal (mid (infsupdec (-9.881312916824930884e-324, 4.940656458412465442e-324, "trv")), 0.0)); %!test %! assert (isequal (mid (infsupdec (-4.940656458412465442e-324, 9.881312916824930884e-324, "trv")), 0.0)); ## minimal_rad_test %!test %! assert (isequal (rad (infsup (0.0, 2.0)), 1.0)); %!test %! assert (isequal (rad (infsup (2.0, 2.0)), 0.0)); %!test %! assert (isequal (rad (infsup (-inf, inf)), inf)); %!test %! assert (isequal (rad (infsup (0.0, inf)), inf)); %!test %! assert (isequal (rad (infsup (-inf, 1.2)), inf)); ## minimal_rad_dec_test %!test %! assert (isequal (rad (infsupdec (0.0, 2.0, "trv")), 1.0)); %!test %! assert (isequal (rad (infsupdec (2.0, 2.0, "com")), 0.0)); %!test %! assert (isequal (rad (infsupdec (-inf, inf, "trv")), inf)); %!test %! assert (isequal (rad (infsupdec (0.0, inf, "def")), inf)); %!test %! assert (isequal (rad (infsupdec (-inf, 1.2, "trv")), inf)); ## minimal_wid_test %!test %! assert (isequal (wid (infsup (2.0, 2.0)), 0.0)); %!test %! assert (isequal (wid (infsup (1.0, 2.0)), 1.0)); %!test %! assert (isequal (wid (infsup (1.0, inf)), inf)); %!test %! assert (isequal (wid (infsup (-inf, 2.0)), inf)); %!test %! assert (isequal (wid (infsup (-inf, inf)), inf)); ## minimal_wid_dec_test %!test %! assert (isequal (wid (infsupdec (2.0, 2.0, "com")), 0.0)); %!test %! assert (isequal (wid (infsupdec (1.0, 2.0, "trv")), 1.0)); %!test %! assert (isequal (wid (infsupdec (1.0, inf, "trv")), inf)); %!test %! assert (isequal (wid (infsupdec (-inf, 2.0, "def")), inf)); %!test %! assert (isequal (wid (infsupdec (-inf, inf, "trv")), inf)); ## minimal_mag_test %!test %! assert (isequal (mag (infsup (1.0, 2.0)), 2.0)); %!test %! assert (isequal (mag (infsup (-4.0, 2.0)), 4.0)); %!test %! assert (isequal (mag (infsup (-inf, 2.0)), inf)); %!test %! assert (isequal (mag (infsup (1.0, inf)), inf)); %!test %! assert (isequal (mag (infsup (-inf, inf)), inf)); %!test %! assert (isequal (mag (infsup (-0.0, 0.0)), 0.0)); %!test %! assert (isequal (mag (infsup (-0.0, -0.0)), 0.0)); ## minimal_mag_dec_test %!test %! assert (isequal (mag (infsupdec (1.0, 2.0, "com")), 2.0)); %!test %! assert (isequal (mag (infsupdec (-4.0, 2.0, "trv")), 4.0)); %!test %! assert (isequal (mag (infsupdec (-inf, 2.0, "trv")), inf)); %!test %! assert (isequal (mag (infsupdec (1.0, inf, "def")), inf)); %!test %! assert (isequal (mag (infsupdec (-inf, inf, "trv")), inf)); %!test %! assert (isequal (mag (infsupdec (-0.0, 0.0, "trv")), 0.0)); %!test %! assert (isequal (mag (infsupdec (-0.0, -0.0, "trv")), 0.0)); ## minimal_mig_test %!test %! assert (isequal (mig (infsup (1.0, 2.0)), 1.0)); %!test %! assert (isequal (mig (infsup (-4.0, 2.0)), 0.0)); %!test %! assert (isequal (mig (infsup (-4.0, -2.0)), 2.0)); %!test %! assert (isequal (mig (infsup (-inf, 2.0)), 0.0)); %!test %! assert (isequal (mig (infsup (-inf, -2.0)), 2.0)); %!test %! assert (isequal (mig (infsup (-1.0, inf)), 0.0)); %!test %! assert (isequal (mig (infsup (1.0, inf)), 1.0)); %!test %! assert (isequal (mig (infsup (-inf, inf)), 0.0)); %!test %! assert (isequal (mig (infsup (-0.0, 0.0)), 0.0)); %!test %! assert (isequal (mig (infsup (-0.0, -0.0)), 0.0)); ## minimal_mig_dec_test %!test %! assert (isequal (mig (infsupdec (1.0, 2.0, "com")), 1.0)); %!test %! assert (isequal (mig (infsupdec (-4.0, 2.0, "trv")), 0.0)); %!test %! assert (isequal (mig (infsupdec (-4.0, -2.0, "trv")), 2.0)); %!test %! assert (isequal (mig (infsupdec (-inf, 2.0, "def")), 0.0)); %!test %! assert (isequal (mig (infsupdec (-inf, -2.0, "trv")), 2.0)); %!test %! assert (isequal (mig (infsupdec (-1.0, inf, "trv")), 0.0)); %!test %! assert (isequal (mig (infsupdec (1.0, inf, "trv")), 1.0)); %!test %! assert (isequal (mig (infsupdec (-inf, inf, "trv")), 0.0)); %!test %! assert (isequal (mig (infsupdec (-0.0, 0.0, "trv")), 0.0)); %!test %! assert (isequal (mig (infsupdec (-0.0, -0.0, "trv")), 0.0));
8b55572babf02288956f4b256663110449906087
449d555969bfd7befe906877abab098c6e63a0e8
/1376/CH5/EX5.5/5_5.sci
628de84d86a226f10a7f60b1525950fac3c83721
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
267
sci
5_5.sci
//5.5 clc; emf_std_cell=1.0183; emf_cell=70/50*emf_std_cell; printf("e.m.f. of the cell=%.2f V",emf_cell) V_read=1.35; V_cal=1.32379; error_voltmeter_percent=((V_read-V_cal)/V_cal)*100; printf("\nPerentage error of the voltmeter=%.2f",error_voltmeter_percent)