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
78451fd277ff940ac81d8cf73b5b2c20a79b7176
212b7d8fd961629af73deb965a4aa4a85ae82baa
/Projeto_1/barra-bola/funcoes_identificacao.sci
3f1fb11874a290371c19d446dd861b8f6015fbae
[]
no_license
danielsmorais/system-identification
8f1d0bc1529ac2126a1e3326d1161e86538bf1b6
66496651a4042e2e7ec864a9c797ae4263400117
refs/heads/master
2020-07-17T18:24:54.127707
2019-12-10T14:27:52
2019-12-10T14:27:52
206,071,079
0
0
null
null
null
null
UTF-8
Scilab
false
false
9,000
sci
funcoes_identificacao.sci
// // FUNCOES AUXILIARES // // Testa se o parametro eh um vetor coluna function test_column(v) if (~iscolumn(v)) then error('The parameter must be a column vector.'); end endfunction // Testa se o parametro eh um escalar function test_scalar(s) if (~isscalar(s)) then error('The parameter must be a scalar.'); end endfunction // Retorna o valor do indice-esimo elemento do vetor, caso indice esteja dentro // da dimensao do vetor; caso contrario, retorna 0.0 function [valor]=test_index(vetor,indice) test_column(vetor); test_scalar(indice); if (indice < 1 | indice > size(vetor,"r")) then valor = 0.0; else valor = vetor(indice,1); end endfunction // Testa o parametro theta // N=2 (ARX) ou N=3 (ARMAX) -> size(theta) = N*order function test_parameterT(theta,N) test_column(theta); if (N~=2 & N~=3) then error('The N parameter must be 2 (ARX) or 3(ARMAX).'); end if (size(theta,"r") < N) then error('The size of the theta parameter must be >= N'); end if (pmodulo(size(theta,"r"),N) ~= 0) then error('The size of the theta parameter must be a multiple of N.'); end endfunction // Testa o parametro order function test_parameterO(order) test_scalar(order); if (order < 1) then error('The order parameter must be >= 1.'); end endfunction // Testa o parametro delay function test_parameterD(delay) test_scalar(delay); if (delay < 0) then error('The delay parameter must be >= 0.'); end endfunction // Testa os parametros u e y function test_parametersUY(u,y) test_column(u); test_column(y); if (size(u,"r") ~= size(y,"r")) then error('The u and y parameters must have the same size.'); end endfunction // Adiciona ruido gaussiano de desvio padrao sdev a um vetor function [y_noise]=add_noise(y,sdev) test_column(y); test_scalar(sdev); y_noise = y+sdev*rand(size(y,"r"),1,"normal"); endfunction // // SIMULACAO // // SIMULACAO ARX // Simula a saida de um sistema ARX, descrito pelo vetor de parametros theta, // para uma entrada u determinada // O vetor de erros eh gerado aleatoriamente (normal, media 0.0, desvio padrao sdev) function y=simulARX(u,theta,delay,sdev) test_column(u); test_parameterT(theta,2); test_parameterD(delay); test_scalar(sdev); order = size(theta,"r")/2; num_pontos = size(u,"r"); // Gera uma semente aleatoria para o gerador de numeros aleatorios semente=getdate("s"); rand("seed",semente); // Gera o vetor de sinais de erro e = sdev*rand(num_pontos,1,"normal"); // Inicializa com zeros (poderia ser dispensado) y = zeros(num_pontos,1); // Simulacao for (i=1:num_pontos) // Ruido dinamico y(i,1) = e(i,1); for (j=1:order) // Parte AR y(i,1) = y(i,1) + theta(j,1)*test_index(y,i-j); // Parte X y(i,1) = y(i,1) + theta(j+order,1)*test_index(u,i-delay-j); end end endfunction // SIMULACAO ARMAX // Simula a saida de um sistema ARMAX, descrito pelo vetor de parametros theta, // para uma entrada u determinada // O vetor de erros eh gerado aleatoriamente (normal, media 0.0, desvio padrao sdev) function y=simulARMAX(u,theta,delay,sdev) test_column(u); test_parameterT(theta,3); test_parameterD(delay); test_scalar(sdev); order = size(theta,"r")/3; num_pontos = size(u,"r"); // Gera uma semente aleatoria para o gerador de numeros aleatorios semente=getdate("s"); rand("seed",semente); // Gera o vetor de sinais de erro e = sdev*rand(num_pontos,1,"normal"); // Inicializa com zeros (poderia ser dispensado) y = zeros(num_pontos,1); // Simulacao for (i=1:num_pontos) // Ruido dinamico y(i,1) = e(i,1); for (j=1:order) // Parte AR y(i,1) = y(i,1) + theta(j,1)*test_index(y,i-j); // Parte X y(i,1) = y(i,1) + theta(j+order,1)*test_index(u,i-delay-j); // Parte MA y(i,1) = y(i,1) + theta(j+2*order,1)*test_index(e,i-j); end end endfunction // // IDENTIFICACAO // // IDENTIFICACAO ARX // Para um conjunto de pontos <u,y>, identifica o melhor sistema ARX com ordem e // tempo de atraso (delay) dados que se adequa aos pontos. Retorna o vetor de parametros // theta e os residuos function [theta,res]=identifyARX(u,y,order,delay) test_parametersUY(u,y); test_parameterO(order); test_parameterD(delay); num_pontos = size(y,"r"); num_minimo_pontos = 3*order + delay; if (num_pontos < num_minimo_pontos) then error('The u and y parameters must have a minimal of 3*order+delay points.'); end // Montagem das matrizes da equacao matricial A*theta = B // A = matriz de regressores // theta = vetor de parametros (a ser identificado) // B = vetor com sinais de saida num_equacoes = num_pontos-order-delay; // Inicializa com zeros (poderia ser dispensado) B = zeros(num_equacoes,1); A = zeros(num_equacoes,2*order); // Preenche os valores corretos dos elementos de A e B for (i=1:num_equacoes) for (j=1:order) A(i,j) = y(i+order+delay-j,1); A(i,j+order) = u(i+order-j,1); end B(i,1) = y(i+order+delay,1); end // Calcula theta pela pseudoinversa: theta = inv(A'*A)*A'*B theta = pinv(A)*B; // Calcula os residuos (erros de predicao) y_pred = A*theta; res = B-y_pred; // Para a utilização de uma nova informação, B vai ser o y_2 de outro conjunto de dados, que no caso pode ser parte do conjunto de amostra. // res = y_2 - y_pred endfunction // IDENTIFICACAO ARMAX // Funcao interna (nao deve ser utilizada para identificar) // Identifica os coeficientes supondo que o vetor de erro eh conhecido // Similar aa identificacao de modelos ARX // Nao pode ser utilizada diretamente porque o vetor de erro e nunca eh conhecido function [theta,res]=identifyARMAX_int(u,e,y,order,delay) test_parametersUY(u,y); test_parameterO(order); test_parameterD(delay); test_column(e); if (size(e,"r") ~= size(y,"r")) then error('The e and y parameters must have the same size.'); end num_pontos = size(y,"r"); num_minimo_pontos = 4*order + delay; if (num_pontos < num_minimo_pontos) then error('The u, e and y parameters must have a minimal of 4*order+delay points.'); end // Montagem das matrizes da equacao matricial A*theta = B // A = matriz de regressores // theta = vetor de parametros (a ser identificado) // B = vetor com sinais de saida num_equacoes = num_pontos-order-delay; // Inicializa com zeros (poderia ser dispensado) B = zeros(num_equacoes,1); A = zeros(num_equacoes,3*order); // Preenche os valores corretos dos elementos de A e B for (i=1:num_equacoes) for (j=1:order) A(i,j) = y(i+order+delay-j,1); A(i,j+order) = u(i+order-j,1); A(i,j+2*order) = e(i+order+delay-j,1); end B(i,1) = y(i+order+delay,1); end // Calcula theta pela pseudoinversa: theta = inv(A'*A)*A'*B theta = pinv(A)*B; // Calcula os residuos (erros de predicao) y_pred = A*theta; res = B-y_pred; endfunction // IDENTIFICACAO ARMAX // Essa e a funcao que deve ser utilizada para identificacao ARMAX // // Para um conjunto de pontos <u,y>, identifica o melhor sistema ARMAX com ordem e // tempo de atraso (delay) dados que se adequa aos pontos. Retorna o vetor de parametros // theta e os residuos // Para o calculo dos parametros, usa o vetor de residuos do passo anterior como se // fosse o vetor de erros. Com os pontos <u,e,y>, calcula os coeficientes ARMAX e o // novo vetor de residuos, o que permite nova iteracao ate que o erro quadratico medio // (media quadratica dos residuos) nao se reduza de maneira significativa. // Ao final, retorna o vetor de parametros theta e os residuos da última iteracao. function [theta,res]=identifyARMAX(u,y,order,delay) // Os testes dos parametros serao feitos ao chamar a funcao identifyARX [theta,res] = identifyARX(u,y,order,delay); desv_resid = stdev(res); desv_resid_ant = 2.0*desv_resid; // Para garantir que execute o laco ao menos uma vez N = 0; while (abs(desv_resid_ant-desv_resid)/desv_resid > 0.01 & N < 30) e_estim = [zeros(order+delay,1) ; res]; // Os testes dos parametros serao feitos ao chamar a funcao identifyARMAX_int [theta,res] = identifyARMAX_int(u,e_estim,y,order,delay); desv_resid_ant = desv_resid; desv_resid = stdev(res); N = N+1; end endfunction
92c371720ca2e8c6f416646cb9a0d8330aeac30a
449d555969bfd7befe906877abab098c6e63a0e8
/2024/CH2/EX2.3/2_3.sce
be12d4a90daae4bf127215c534261bd51faf41a7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
187
sce
2_3.sce
clc //Initialization of variables u=100 //Btu/lbm P=100 //psia v=5 //ft^3 //calculations h=u + P*v*144/778.16 //results printf("Enthalpy of unit mass of fluid = %.1f Btu/lbm",h)
3a5be158a03d1319006356a64787317d1f2e9ff6
2ae858a680a4ccf8a2ec89a45a1e48a0292d8eab
/macros/trainANNMLPClassifier.sci
87f0380a89594da6d6196bc8941554a000344fd6
[]
no_license
shreyneil/FOSSEE-Image-Processing-Toolbox
f315a82c325b2d6cbd0611689f3e30071a38490d
dd1cbd0dcbe0c3dd11d6ce1ab205b4b72011ae56
refs/heads/master
2020-12-02T16:26:13.755637
2017-07-07T19:22:33
2017-07-07T19:22:33
96,552,147
0
0
null
2017-07-07T15:32:15
2017-07-07T15:32:15
null
UTF-8
Scilab
false
false
4,323
sci
trainANNMLPClassifier.sci
// Copyright (C) 2015 - IIT Bombay - FOSSEE // // This file must be used under the terms of the CeCILL. // This source file is licensed as described in the file COPYING, which // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt // Author: Shreyash Sharma // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in function classifier = trainANNMLPClassifier(imgSets, bag, classifierName, varargin) // This function is used to train an image classifier. // // Calling Sequence // imgSet = imageSet(directory,'recursive'); // 'or' // imgSet = imageSet(image); // bag = bagOfFeatures(imgSet); // classifier = trainANNClassifier(imgSets, bag); // classifier = trainANNClassifier(imgSets, bag,'nameclass') // classifier = trainANNClassifier(imgSets, bag,'nameclass',save) // classifier = trainANNClassifier(imgSets, bag,'nameclass',save,alpha,nlayers) // classifier = trainANNClassifier(imgSets, bag,'nameclass',save,alpha,nlayers,nmeth) // classifier = trainANNClassifier(imgSets, bag,'nameclass',save,alpha,nlayers,nmeth,param1) // classifier = trainANNClassifier(imgSets, bag,'nameclass',save,alpha,nlayers,nmeth,param1,param2) // [classifier,BagofFeaturesLocation,Description] = trainANNClassifier() // // Parameters // classifier: Image category classifier location. // BagofFeaturesLocation : location of the xml or yml file. // Description : features obtained after training. // imgSets: Input imageSet to train the classifier on. // bag: The bagOfFeatures of the imageSet provided. // image: The set of images used for creating the imageset used for training. // nameclass: Name of the classifier one wants for their bag of features .xml or .yml file // save:Option for the users to save their training data. // aplha: The first parameter of the activation function, αlpha. Default value is 0. // beta : The second parameter of the activation function, β. Default value is 0. // nlayers : Describes the number of layers present.Used for handling the layersize vector and subsequently passing it in the opencvfunction. // nmeth : Current training method used. // param1 : Passed to setRpropDW0 for ANN_MLP::RPROP and to setBackpropWeightScale for ANN_MLP::BACKPROP. // param2 : Passed to setRpropDWMin for ANN_MLP::RPROP and to setBackpropMomentumScale for ANN_MLP::BACKPROP. // // Description // This function trains a ANN classifier which can be used to predict classes of images given to it as // input using the predictANNMLP() function. // // Examples // imgSet = imageSet(directory,'recursive'); // bag = bagOfFeatures(trainingSet); // categoryClassifier = trainANNMLPClassifier(trainingSet, bag); // bag_list = bagStructToList(bag); imgSets_list = imageSetToList(imgSets); // Handling variable arguments. [lhs rhs] = argn(0) if lhs > 1 error(msprintf("Too many output arguments")); elseif rhs < 3 error(msprintf("Not enough input arguments")); elseif rhs > 10 error(msprintf("Too many input arguments")); end if rhs == 3 temp = raw_trainANNMLPClassifier(imgSets_list, bag_list, classifierName); elseif rhs == 4 temp = raw_trainANNMLPClassifier(imgSets_list, bag_list, classifierName, varargin(1)); elseif rhs == 4 temp = raw_trainANNMLPClassifier(imgSets_list, bag_list, classifierName, varargin(1), varargin(2)); elseif rhs == 6 temp = raw_trainANNMLPClassifier(imgSets_list, bag_list, classifierName, varargin(1), varargin(2), varargin(3)); elseif rhs == 7 temp = raw_trainANNMLPClassifier(imgSets_list, bag_list, classifierName, varargin(1), varargin(2), varargin(3), varargin(4)); elseif rhs == 8 temp = raw_trainANNMLPClassifier(imgSets_list, bag_list, classifierName, varargin(1), varargin(2), varargin(3), varargin(4), varargin(5)); elseif rhs == 9 temp = raw_trainANNMLPClassifier(imgSets_list, bag_list, classifierName, varargin(1), varargin(2), varargin(3), varargin(4), varargin(5), varargin(6)); elseif rhs == 10 temp = raw_trainANNMLPClassifier(imgSets_list, bag_list, classifierName, varargin(1), varargin(2), varargin(3), varargin(4), varargin(5), varargin(6), varargin(7)); end classifier = struct("ClassifierLocation", temp(2), "BagofFeaturesLocation", temp(3), "Description", temp(4)) endfunction
fe896729afda6f69666c07e50f124a21e8c9799a
449d555969bfd7befe906877abab098c6e63a0e8
/3311/CH6/EX6.6/Ex6_6.sce
2fcdc85c63cc5c7dca76238bc2e4b22f087b9cc1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,853
sce
Ex6_6.sce
// chapter 6 // example 6.6 // fig. 6.21 // Determine variuos parameters // page-288-290 clear; clc; // given Erms=230; // in V (voltage supply) alpha=%pi/3; // in degree (firing angle) Id=4; // in A (load current) // calculate Em=Erms*sqrt(2); // calculation of rms voltage Edc=(2*Em/%pi)*cos(alpha); // calculation of dc output voltage Pi=(2*Em/%pi)*Id*cos(alpha); // calculation of active power input Qi=(2*Em/%pi)*Id*sin(alpha); // calculation of reactive power input R=Edc/Id; // calculation of load resistance Edc_1=(Em/%pi)*(1+cos(alpha)); // calculation of dc output voltage when free wheeling diode is connected Id_1=Edc_1/R; I1=(2*sqrt(2)*Id_1/%pi)*cos(alpha/2); // calculation of fundamental value of alternating current Pi_1=(Erms*I1)*cos(alpha/2); // calculation of active input power input when free wheeling diode is connected Qi_1=(Erms*I1)*sin(alpha/2); // calculation of reactive power input when free wheeling diode is connected Edc_2=Em/(2*%pi)*(1+cos(alpha)); // calculation of dc output voltage when SCR3 is damaged Id_2=Edc_2/R; // calculation of dc output current when SCR3 is damaged printf("\nThe dc output voltage is \tEdc=%.2f V",Edc); printf("\nThe active power input is \tPi=%.2f W",Pi); printf("\nThe reactive power input is \tQi=%.2f Vars",Qi); printf("\nThe load resistance is \t\tR=%.2f ohm",R); printf("\n\nWhen free wheeling diode is connected\n"); printf("\n\tThe dc output voltage is \tEdc=%.2f V",Edc_1); printf("\n\tThe dc output current is \tIdc=%.f V",Id_1); printf("\n\tThe fundamental value of alternating current is \tI1=%.2f A",I1); printf("\n\tThe active power input is \tPi=%.2f W",Pi_1); printf("\n\tThe reactive power input is \tQi=%.f Vars",Qi_1); printf("\n\nWhen SCR3 is damaged\n"); printf("\n\tThe dc output voltage is \tEdc=%.2f V",Edc_2); printf("\n\tThe dc output current is \tIdc=%.f A",Id_2);
489b609d9f647c4659cddd40bc5446c06cdbb312
8781912fe931b72e88f06cb03f2a6e1e617f37fe
/scilab/qscatter/tdl.sce
a2f3ddc1acc3f9cbb33825fe08f04f6faf31a156
[]
no_license
mikeg2105/matlab-old
fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e
eac168097f9060b4787ee17e3a97f2099f8182c1
refs/heads/master
2021-05-01T07:58:19.274277
2018-02-11T22:09:18
2018-02-11T22:09:18
121,167,118
1
0
null
null
null
null
UTF-8
Scilab
false
false
206
sce
tdl.sce
function [tdl]=tdl(u1,u2,r1,r2,l,k) //calculate phase shift of partial waves tand deltl kk=(r1*u1)/(r2*u2); tdl=(kk*besselj(l,k*r1)-besselj(l,k*r2))/(kk*bessely(l,k*r1)-bessely(l,k*r2)); endfunction
16c2b1347c4dc53d2cddc08fe26e19537befdd32
6d1f05d2074f1d6f18d3d473f2dbd867c94fc7ee
/giarratano/SOURCE/TESTING/miscfnx.tst
96adda42b12db6b66df6aacc95c6b8fcc0a7f110
[]
no_license
arranger1044/icse-1516
c40d2c86892cd90c14042a95581cbb0e238190fb
ee4bafb57bb549ef40e29b8edf8cdad038e97162
refs/heads/master
2020-12-24T19:04:01.588095
2016-05-31T07:46:47
2016-05-31T07:46:47
56,578,768
14
5
null
null
null
null
UTF-8
Scilab
false
false
311
tst
miscfnx.tst
(unwatch all) (clear) (set-strategy depth) (open "miscfnx.rsl" miscfnx "w") (dribble-on "miscfnx.out") (batch "miscfnx.bat") (dribble-off) (load "compline.clp") (printout miscfnx "miscfnx.bat differences are as follows:" crlf) (compare-files miscfnx.exp miscfnx.out miscfnx) ; close result file (close miscfnx)
733924919e43052be37aced7649ac44da4b3d2ef
449d555969bfd7befe906877abab098c6e63a0e8
/2951/CH2/EX2.2.A/additional_ex_2.sce
f69e233f12ddb6761a18db5ad24b50b989d5e969
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
399
sce
additional_ex_2.sce
clc; clear; t = 0:1:10; for i = 1:length(t) x(i) = (t(i)^6) + 2*(t(i)^4)+ 3*(t(i)^2)+4 ; end for i = 1:length(t) y(i) = ((-t(i))^6)+ 2*((-t(i))^4)+ 3*((-t(i))^2)+4 ; end // checking if the function is even x(t)=x(-t) if x==y then disp("the function is even"); end //odd part of the signal=0.5(x(t)-x(-t)) z=0.5*(x-y); if z==0 then disp("the odd part is 0") end
534617d6ddad2cc8840319d0f142883bd45eb137
449d555969bfd7befe906877abab098c6e63a0e8
/2510/CH4/EX4.6/Ex4_6.sce
b9702a8420329dc1822784b1c45281b25ac46329
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,484
sce
Ex4_6.sce
//Variable declaration: q1 = 1000.0 //Volumetric flowrate from tank 1 (gal/day) q2 = 1000.0 //Volumetric flowrate from tank 2 (gal/day) q3 = 2000.0 //Volumetric flowrate from tank 3 (gal/day) q4 = 200.0 //Volumetric flowrate from tank 4 (gal/day) q5 = 1800.0 //Volumetric flowrate from tank 5 (gal/day) q6 = 1000.0 //Volumetric flowrate from tank 6 (gal/day) C1 = 4.0 //Phosphate concentration in tank 1 (ppm) C2 = 0.0 //Phosphate concentration in tank 2 (ppm) C3 = 2.0 //Phosphate concentration in tank 3 (ppm) C4 = 20.0 //Phosphate concentration in tank 4 (ppm) C5 = 0.0 //Phosphate concentration in tank 5 (ppm) C6 = 0.0 //Phosphate concentration in tank 6 (ppm) Cf = 120000.0 //conversion factor for water (gal/10**6lb) //Calculations: C1q1 = C1*q1/Cf //Data 1 (lb/day) C2q2 = C2*q2/Cf //Data 2 (lb/day) C3q3 = C3*q3/Cf //Data 3 (lb/day) C4q4 = C4*q4/Cf //Data 4 (lb/day) C5q5 = C5*q5/Cf //Data 5 (lb/day) C6q6 = C6*q6/Cf //Data 6 (lb/day) //Results: if (((C1q1 + C2q2) == C3q3) & C3q3 == (C4q4 + C5q5) & C5q5 == C6q6 & C2q2 == C6q6) then printf("The data appear to be consistent .") else printf ("The data appear to be inconsistent .") end
5a2e8c03d9ebc54c5bd3dac08b6ad1069cf74dc8
449d555969bfd7befe906877abab098c6e63a0e8
/243/CH3/EX3.10/3_10.sce
a00aa0d85c1f386bb5555f31430e9e2b4f0bd67b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
3_10.sce
//Example No. 3_10 //Floating Point Notation //Pg No. 52 clear ; close ; clc ; function [m,e] =float_notation(n) m = n ; for i = 1:16 if abs(m) >= 1 then m = n/10^i e = i elseif abs(m) < 0.1 m = n*10^i e = -i else if i == 1 then e = 0 end break ; end end endfunction [m,e] = float_notation(0.00596) mprintf('\n 0.00596 is expressed as %f*10^%i \n',m,e) [m,e] = float_notation(65.7452) mprintf('\n 65.7452 is expressed as %f*10^%i \n',m,e) [m,e] = float_notation(-486.8) mprintf('\n -486.8 is expressed as %f*10^%i \n',m,e)
0b2aafa03f8dbbdf3ef4b2f8e8105fef02700d3a
b74b2ace796d50f1d2550b2ac8747b0c55e7faa7
/demos/welcome.dem.sce
114f15793702d062988cf88c04ec324f9ec3b505
[]
no_license
slevin48/plotdeploy
2f1a5aea6b14b540b7890a86c588e8361e237152
2bbba304a9151beb4b01104746ea41f95d73bd78
refs/heads/master
2023-02-14T22:09:40.476472
2021-01-08T19:00:04
2021-01-08T19:00:04
263,965,966
0
0
null
null
null
null
UTF-8
Scilab
false
false
245
sce
welcome.dem.sce
function demo_plotdeploy() x=[0:0.1:2*%pi]; y=2*sin(x); plot(x,y) f=gcf(); herokuapp=x_dialog('Name of the herokuapp to deploy','plotdeploy') plotdeploy(f,herokuapp) endfunction demo_plotdeploy(); clear demo_plotdeploy;
afbf8a2a116cf0497be8177c7e1193dfd44b68e7
449d555969bfd7befe906877abab098c6e63a0e8
/2621/CH5/EX5.10/Ex5_10.sce
8a1dea92b408afc26c753d3566e9e3488115ac9a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex5_10.sce
// Example 5.10 clc; clear; close; // Given data format('v',6); I_Bmax= 500;// in nA I_Bmax= I_Bmax*10^-9;// in A VCC= 10;// in V f= 10*10^3;// in Hz I1= 500*10^-6;// current through R1 in A (assume) Vout= (VCC-1);//output voltage in V // Rf+R1= Vout/I1 and Rf= 2*R1, so R1= Vout/(3*I1);// in Ω R1= R1*10^-3;// in kΩ disp("The value of R1 is : "+string(R1)+" kΩ (standard value 5.6 kΩ)"); R1= 5.6;// in kΩ (standard value) Rf= 2*R1;// in kΩ disp("The value of Rf is : "+string(Rf)+" kΩ (standard value 12 kΩ)"); R= R1;// in kΩ R= R*10^3;// in Ω C= 1/(2*%pi*f*R);// in F C= C*10^12;// in pF disp("The value of C is : "+string(C)+" pF");
32b9853a1cc0fba64892f704a524d83b426991fc
449d555969bfd7befe906877abab098c6e63a0e8
/2522/CH6/EX6.4/exm6_4.sce
4dbf06ddb2bc3bf5c5387cbe16adc9aa4999ea98
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
411
sce
exm6_4.sce
//page no 175 //example 6.4 //CONTINUATION OF PREVIOUS EXAMPLE. //the sum of previous example is added to 35H clc; S=hex2dec(['4A']); //4AH is converted into decimal value. A=hex2dec(['35']); //35H is converted into decimal value s=A+S; //the result comes out to be 127. it is a decimal value Y=dec2hex(s); printf('Sum= ') disp(Y); if s>255 then printf('CY=1') else printf('CY=0') end
b6e88afa3c4e112591a567e599a947d6577dae21
3c47dba28e5d43bda9b77dca3b741855c25d4802
/microdaq/help/cleaner_help.sce
8471065260c428303936a96142d09e59ecc3e821
[ "BSD-3-Clause" ]
permissive
microdaq/Scilab
78dd3b4a891e39ec20ebc4e9b77572fd12c90947
ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf
refs/heads/master
2021-09-29T11:55:21.963637
2019-10-18T09:47:29
2019-10-18T09:47:29
35,049,912
6
3
BSD-3-Clause
2019-10-18T09:47:30
2015-05-04T17:48:48
Scilab
UTF-8
Scilab
false
false
640
sce
cleaner_help.sce
// This file is released under the 3-clause BSD license. See COPYING-BSD. function cleaner_help() path = get_absolute_file_path("cleaner_help.sce"); langdirs = dir(path); langdirs = langdirs.name(langdirs.isdir); for l = 1:size(langdirs, '*') masterfile = fullpath(path + filesep() + langdirs(l) + "/master_help.xml"); mdelete(masterfile); jarfile = fullpath(path + "/../jar/scilab_" + langdirs(l) + "_help.jar"); mdelete(jarfile); tmphtmldir = fullpath(path + "/" + langdirs(l) + "/scilab_" + langdirs(l) + "_help"); rmdir(tmphtmldir, 's'); end endfunction cleaner_help(); clear cleaner_help;
0ae120ff7a3058c414ed21963ab64aac2de465a5
449d555969bfd7befe906877abab098c6e63a0e8
/1448/CH7/EX7.2.e/E7_2.sce
18fa720ac8a01cb5c14f1ba81bdcd3a763922437
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
180
sce
E7_2.sce
clc //Initialization of variables Hr=-285.83 //kJ/mol Sr=-163.34 //J/ K mol T=298.15 //K //calculations Gr=Hr-T*Sr/1000. //results printf('Gibbs energy = %.2f kJ/mol',Gr)
462ca5e34db24cd83139d7c8936ac4afe8e58305
244971ae8af51184d278cdc2be1c80775413adae
/SSSoModPhase.sci
056a8e51fa944570c123571a6aa2a8c35f71d1e8
[]
no_license
MSCA-SIMFREE/748767
5879f1f139b608c7cd2f1bd62325b281c9c1e7d1
4726206e514f1e47e939e73b9339c056057866db
refs/heads/master
2020-12-27T15:21:13.646362
2020-02-03T11:40:00
2020-02-03T11:40:00
237,951,088
1
0
null
null
null
null
UTF-8
Scilab
false
false
900
sci
SSSoModPhase.sci
// The code was developed under Horizon2020 Framework Programme // Project: 748767 — SIMFREE function Out=SSSoModPhase(In,V) // Optical Phase Modulator // // Calling Sequence // Out=SSSoModPhase(In,V) // // Parameters // In : Optical Input // V : Electrical Input // Y : Optical Output // // Description // The modulation of the optical field is described by: // Out(t) = In(t)·exp(j·V(t)) // [lhs,rhs]=argn(0); if rhs<=2 then error("Expect at least two arguments"); end Xin=In(:,1); Yin=In(:,2); xin=fft(Xin,1); yin=fft(Yin,1); fxin=atan(imag(xin),real(xin))+%pi*V; fyin=atan(imag(yin),real(yin))+%pi*V; Out(:,1)=fft(abs(xin).*exp(%i*(atan(imag(xin),real(xin))+%pi*V)),'nonsymmetric'); Out(:,2)=fft(abs(yin).*exp(%i*(atan(imag(yin),real(yin))+%pi*V)),'nonsymmetric'); endfunction
2865892da83dedfdff6b91c7ec75d875c1b4421e
449d555969bfd7befe906877abab098c6e63a0e8
/3828/CH1/EX1.5/Ex1_5.sce
b051eaaa87c31af3fd27fc08843b11a97b40864d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
692
sce
Ex1_5.sce
//Chapter 1 : Wave Optics clear; //Variable declaration i=35 //incident angle in degrees myu=1.33 //refractive index n=1 //first minimum t=4*10**-5 //thickness //Calculations cos_r=0.90 lamda1=2*myu*t*cos_r/10**-5 //for first order n=1 lamda2=(2*myu*t*cos_r)/2/10**-5 //for second order n=2 lamda3=(2*myu*t*cos_r)/3/10**-5 //for third order n=3 //Result mprintf("(i)For the first order wavelength= %.2f*10**-5 cm" ,lamda1) //The answer provided in the textbook is incorrect mprintf("\n(ii)For the second order wavelength= %.2f*10**-5 cm",lamda2) mprintf("\n(iii)For the third order wavelength= %.2f*10**-5 cm",lamda3)
2f41e0e3c6d8f9b0b371478ac3cb5e676fa1cf2c
449d555969bfd7befe906877abab098c6e63a0e8
/575/CH8/EX8.5.2/8_5_2.sce
bae529f828b5e4614e05ebeb92d0195952b10b8d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
8_5_2.sce
clc pathname=get_absolute_file_path('8_5_2.sce') filename=pathname+filesep()+'852.sci' exec(filename) printf(" All the values in the textbook are Approximated hence the values in this code differ from those of Textbook") disp("sulphuric acid balance") m2=x*mdot/y disp("Total Mass balance") m1=mdot-m2 Qdot=m1*Hv+m2*Hl-mdot*Hf printf(" Rate of Heat transfer= %f Btu/h",Qdot)
78bf5f13f712cd3ab3b8161d0be89bc805ed5eee
fc8df434ad0d41a6af96fd01e5123a5d303327af
/plot02.sce
2776e3d6eadaa5d015d72c69f194ab04a016e8c2
[]
no_license
Itolab2016/drone_regurator
262f351c1f01b2c5c6daa05ecd3f9c73b7f4536a
fc3039a6107f4ff33f01f7095a061098538a219b
refs/heads/master
2021-01-12T10:04:11.802552
2016-12-14T15:08:49
2016-12-14T15:08:49
76,348,025
0
0
null
null
null
null
UTF-8
Scilab
false
false
697
sce
plot02.sce
subplot(321) xtitle("p") xgrid() plot(hoge.time,hoge.values(:,1)) subplot(323) xtitle("q") xgrid() plot(hoge.time,hoge.values(:,2)) subplot(325) xtitle("r") xgrid() plot(hoge.time,hoge.values(:,3)) subplot(322) xtitle("phi") xgrid() plot(hoge.time,hoge.values(:,4)) subplot(324) xtitle("theta") xgrid() plot(hoge.time,hoge.values(:,5)) subplot(326) xtitle("psi") xgrid() plot(hoge.time,hoge.values(:,6)) //Input scf() subplot(411) xtitle("d1") xgrid() plot(delta.time,delta.values(:,1)) subplot(412) xtitle("d2") xgrid() plot(delta.time,delta.values(:,2)) subplot(413) xtitle("d3") xgrid() plot(delta.time,delta.values(:,3)) subplot(414) xtitle("d4") xgrid() plot(delta.time,delta.values(:,4))
a95410ee4080285292affe112225043085621a1a
449d555969bfd7befe906877abab098c6e63a0e8
/1970/CH7/EX7.4/Ch07Exa4.sce
c056f164c351eb292a233119a35866a27122fb0d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
555
sce
Ch07Exa4.sce
// Scilab code Exa7.4: : Page-293 (2011) clc; clear; alpha_k = 45; // Ratio between decay constants sum_alpha = 0.08; // Sum of alphas P = 0.35*1/60; // Probability of the isomeric transition,per hour lambda_g = P*sum_alpha/alpha_k; // Decay constant of the gamma radiations, per hour T_g = 1/(lambda_g*365*24); // Partial life time for gamma emission,years printf("\nThe partial life time for gamma emission = %5.3f years", T_g); // Result // The partial life time for gamma emission = 11.008 years
8b576e1987d199182d39a2787d9f481ac3b3f257
449d555969bfd7befe906877abab098c6e63a0e8
/122/CH9/EX9.a.5/exaA_9_5.sce
f2347eac72f1034afb13d3ae7b3a744130ab520b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
258
sce
exaA_9_5.sce
// Example A-9-5 // Conversion from transfer function model to state space model clear; clc; xdel(winsid()); //close all windows s = %s; num = 25.04*s + 5.008; den = poly( [5.008 25.1026 5.03247 1],'s','c'); Hss = cont_frm(num,den); disp(Hss,'Hss = ');
6431f16343ceb41c5cf5fcbe10ba9e558dbfe739
449d555969bfd7befe906877abab098c6e63a0e8
/69/CH6/EX6.1/6_1.sce
d8889ee48bda1ec52c70d8b7c0eebe87b94473f4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
347
sce
6_1.sce
clear; clc; close; Idss = 12; Vp = -4; //point 1 Vgs1 = Vp/2; Id1 = Idss/4; //point 2 Id2 = Idss/2; Vgs2 = 0.3*Vp; x = [-4 -2 -1.2 0]; y = [0 3 6 12]; //plot2d(x,y); yi=smooth([x;y],0.1); a = gca(); a.thickness = 2; a.y_location = 'right'; a.x_label.text = 'Vgs'; a.y_label.text = 'Id(mA)'; plot2d(yi(1,:)',yi(2,:)',[3]);
bfaa18de723621d71e36461165091b022bce90e7
449d555969bfd7befe906877abab098c6e63a0e8
/284/CH9/EX9.5/ex_5.sce
48c5d5ce19d8c4f02777e9160eab2b359bd3228a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
651
sce
ex_5.sce
// Chapter 9_The bipolar transistor //Caption_Non ideal effects //Ex_5//page 376 T=300 e=1.6*10^-19 NB=5*10^16 //doping concentration in base NC=2*10^15 //doping concentration in collecor XB=0.70*10^-4 //mettulurgical base width ni=1.5*10^10 //intrinsic ion concentration Vbi=0.718 //built-in potential Vcb1=2 eps=11.7*8.85*10^-14 xdb1=(2*eps*(Vbi+Vcb1)*NC/(e*NB*(NC+NB)))^0.5 Vcb2=10 xdb2=(2*eps*(Vbi+Vcb2)*NC/(e*NB*(NC+NB)))^0.5 xb1=XB-xdb1 //neutral base width xb2=XB-xdb2 del_xb=((xb1-xb2)/xb1)*100 printf('The neutral base width changes by %1.0f percent as the C-B voltage changes from 2 to 10 V',del_xb)
7e51997bd02f43fa1d4c811eca7013a94ace2ad6
449d555969bfd7befe906877abab098c6e63a0e8
/3104/CH2/EX2.3/Ex2_3.sce
9f42520ee9d729c1036aba15960a7a0a7bbab2e7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
749
sce
Ex2_3.sce
clear clc; I_CEO=2*10^-3;//A V_CC=220;//V t_d=.4*10^-6;//s f=5000; V_CES=2;//V t_r=1*10^-6;//s I_CS=80;//A t_n=50*10^-6;//s t_0=40*10^-6;//s t_f=3*10^-6;//s P_st=I_CS*V_CES;// instant. power loss during t_s P_s=f*I_CS*V_CES*t_f;//avg power loss during t_s P_f=f*t_f*(I_CS/6)*(V_CC-V_CES);//avg power loss during fall time P_fm=(I_CS/4)*(V_CC-V_CES);//peak instant power dissipation P_off=P_s+P_f; printf("total avg power loss during turn off=%.0f W",P_off); P_0t=I_CEO*V_CC; printf("\ninstantaneous power loss during t_0=%.2f W",P_0t); P_0=f*I_CEO*V_CC*t_0;//avg power loss during t_s P_on=14.9339;//W from previous eg P_n=40;//W from previous eg P_T=P_on+P_n+P_off+P_0; printf("\ntotal power loss=%.3f W",P_T);
f3a0eeb7e45702ad61056b5dc5f808914c536a24
449d555969bfd7befe906877abab098c6e63a0e8
/2240/CH1/EX0.10/EXI_10.sce
30fb40c9983d1637cd89ca1e2a13e751c6bba50b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
353
sce
EXI_10.sce
// Grob's Basic Electronics 11e // Chapter No. I // Example No. I_10 clc; clear; // Substract 250*10^3 and 1.5*10^6. Express the final answer in scientific notation. // Given data A = 1.5*10^6; // Variable 1 B = 250*10^3; // Variable 2 C = A-B; disp (C,'The substraction of 250*10^3 and 1.5*10^6 is') disp ('i.e 1.25*10^6')
a1d4b49df37d4c552d026872d0d6486776f2b92e
449d555969bfd7befe906877abab098c6e63a0e8
/1109/CH11/EX11.12/11_12.sce
da64d9a82cdf16933af1bd30d2bc8ff70f41eabf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
373
sce
11_12.sce
clear; clc; w=5*(10^6);Rg=800;Rl=200;b=-12; X3=-(sqrt(Rg*Rl))/sin(b*%pi/180); L3=X3/w; X1=(-Rg/tan(b*%pi/180))+((sqrt(Rg*Rl)/sin(b*%pi/180))); L1=X1/w; X2=(-Rl/tan(b*%pi/180))+((sqrt(Rg*Rl)/sin(b*%pi/180))); C2=-1/(X2*w); printf("-L3 = %f micro-henry\n",fix(L3*(10^6))); printf("-L1 = %f micro-henry\n",fix(L1*(10^6))); printf("-C2 = %f pf",round(C2*(10^12)));
50e1f42ce17c05d857d373b8b754e0af21aa64e1
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set9/s_Engineering_Physics_(volume_2)_Dr._K._V._Kumar_2258.zip/Engineering_Physics_(volume_2)_Dr._K._V._Kumar_2258/CH7/EX7.27/7_27.sce
f116e8191b5726630a2149fa036b7151ab57b08b
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
257
sce
7_27.sce
errcatch(-1,"stop");mode(2);; ; // To calculate the concentration sigma_e=2.2*10^-4; //conductivity mew_e=125*10^-3; //mobility of electrons in m^2/Vs e=1.602*10^-19; ne=sigma_e/(e*mew_e); printf("concentration in m^3 is"); disp(ne); exit();
f6026b1c9a39075d18137dec0f1f75cd9b6d7733
449d555969bfd7befe906877abab098c6e63a0e8
/2381/CH10/EX10.4/ex_4.sce
d996d3a5809819f201da2ef7e87dadba8eaa65a5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
170
sce
ex_4.sce
//Example 4 // Young's modulus clc; clear; close; //given data : l=3;// in m n=600;// in Hz p=8.3*10^3;// in kg/m^3 Y=p*n^2*(2*l)^2; disp(Y,"Youngs modulus,Y(N/m^2) = ")
5e027eae31c50a2605f635e14e51402a352ea2bb
449d555969bfd7befe906877abab098c6e63a0e8
/343/CH4/EX4.15/ex4_15.sce
81e15b730d91dddb02ecd83fb4dfa2e66184cfd7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
274
sce
ex4_15.sce
clc x=1 //Assigning values to parameters kva=25 pf=0.8 wi=0.35 wcf=0.4 n1=x*kva*pf*100/((x*kva*pf)+(wi*0.001)+(x*x*wcf*0.001)) kva1=kva*(sqrt(wi/wcf)) nm=kva1*pf*100/((kva1*pf)+2*wi) disp(kva1,"Load in KVA is") disp("Percent",nm,"Maximum Efficency is")
cd604b67c321847ef8910ead3c9887d0b3416d2f
449d555969bfd7befe906877abab098c6e63a0e8
/3637/CH5/EX5.7/Ex5_7.sce
da3089ce6817a4b6fb1cb02bba9c737050a10d9c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
258
sce
Ex5_7.sce
//problem 7 pagenumber 5.100 //given enw=20e-9;//volt/hz fce=200;//hz inw=0.5e-12;//A fci=2e3;//hz //determine RMS voltage z=fce*log(20e3/20)+(20e3-20); en=nthroot(enw,z); format(5); disp("Rms Input Voltage = "+string(en)+' volt');//error in book
b5e0eb76680fccafe3346097864771b71c982fc2
449d555969bfd7befe906877abab098c6e63a0e8
/3756/CH6/EX6.1/Ex6_1.sce
56b1cba1ced9c97611acc97f8f9c2021d00a87ee
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
273
sce
Ex6_1.sce
clc // // // //Variable declaration lambdaa=5400*10**-10 //Wavelength tc=10**-10 //coherence time c=3*10**-8 //Calculations dom=((lambdaa)/(tc*c))*10**-10 //Result printf("\n The Degree of Monochromaticity is %2.0f *10**-6",dom)
aeeda18feaa9cb21b824cd84c2d7f59e73518a2e
0592c9e4cfbb77a0755aff6f0c798d9fe31f6ff4
/nsp/scripts/portfolio-generator.sci
59bbbbf03ca970e2f067e68df082d2c6f69ea9be
[]
no_license
FinancialEngineerLab/premia-13-cpp_FICC
e19caa6a9cadb4ad1361053efc0dfc9418071cf9
e271da627dbfc8c2c1f7e9f700766544f64c72b2
refs/heads/master
2023-03-16T11:11:26.830681
2016-04-19T05:58:16
2016-04-19T05:58:16
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,176
sci
portfolio-generator.sci
//-*- fill-column: 90 -*- // This script must be launched from the directory scripts. // It creates the test files for every Premia pb. // exec('../libpremia/loader.sce'); function Lnew = relative_path_data_aux (L, outdir) Lnew = list(); if is(L, %types.List) && length(L)>0 && ~is(L(1), %types.List); then Lnew = L; if Lnew(1) == "FILENAME"; then file ("copy", [Lnew(3), outdir]); Lnew(3) = file("join", [outdir, file ("tail", Lnew(3))]); end else for i=(1:size(L)) Lnew.add_last[relative_path_data_aux (L(i), outdir)]; end end endfunction function relative_path_data (P, outdir) L = P.get_model_values[]; Lnew = relative_path_data_aux (L, outdir); P.set_model_values[Lnew]; L = P.get_option_values[]; Lnew = relative_path_data_aux (L, outdir); P.set_option_values[Lnew]; L = P.get_method_values[]; Lnew = relative_path_data_aux (L, outdir); P.set_method_values[Lnew]; endfunction function gener_test_files (outdir) P=premia_create(); assets = premia_get_assets(); for asset = assets' models = premia_get_models ( asset=asset ); nmodels = size ( models, '*' ); families = premia_get_families ( asset=asset ); nfamilies = size ( families, '*' ); P.set_asset[str=asset]; for imodel=(1:nmodels) P.set_model[str=models(imodel)]; for ifamily=(1:nfamilies) options = premia_get_family ( ifamily, imodel, asset=asset ); noptions = size(options, '*'); for ioption=(1:noptions); P.set_option[str=options(ioption)]; methods=P.get_methods[]; nmethods=size ( methods, '*' ); for imethod=(1:nmethods) names = [ asset; models(imodel); options(ioption); methods(imethod) ]; P.set_method[imethod]; filename = catenate ( names, sep="@" ) + ".bin"; fullname = file ( "join", [ outdir, filename ] ) file ( "mkdir", outdir ); relative_path_data (P, outdir); printf(filename + "\n"); save(fullname,P); end end end end end endfunction gener_test_files ("../portfolio-1");
0c2086ff280532fc57dc2e281737f5334e8311f7
449d555969bfd7befe906877abab098c6e63a0e8
/1985/CH14/EX14.6/Chapter14_example6.sce
820d90ad8b21287300df5fe2149333c77ec6e2c9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
335
sce
Chapter14_example6.sce
clc clear //Input data N=5*10^28//Number of atoms present per m^3 a=2*10^-40//polarizability in F.m^2 eo=8.854*10^-12//permittivity of free space in F/m //Calculations E=1/(1-((N*a)/(3*eo)))//Ratio of the internal field to the applied field //Output printf('Ratio of the internal field to the applied field is %3.4f',E)
b75fe30112f54b68eab19e08dfd5b48707134e3b
1d62731ed2ebc3c84ed27d40c7d0417f6ce0ab0e
/tests/sex.tst
dab4fef1313c456cde2319f13cd0515a53a2c3bf
[]
no_license
kishmakov/rs
064fd19aeac4dafda8788a35aa3bb5c5e78c687c
c5e932c36fd2a62625aaf5b374f754ee8b839602
refs/heads/master
2021-01-10T08:25:21.901462
2013-03-23T18:04:55
2013-03-23T18:04:55
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,596
tst
sex.tst
Секс 2 Важно ли во время секса достижения оргазма обоими партнёрами? 2 Нужно ли пробовать новые способы, если одному из партнёров это не по душе? 2 Вы бы занялись сексом, если один из партнёров испытывает сильное сексуальное желание, а другой — нет? 2 Допустимо ли использование секс-игрушек? 1 Во время секса партнёры должны быть нежными? 2 Стоит ли обращаться к специалисту, если в сексуальной жизни возникли трудности? 2 Бывает ли желание без любви? 2 Можно ли пригласить в постель третьего? 2 Связи на стороне недопустимы? 2 Можно ли заняться сексом на природе? 2 Хотели бы попробовать свинг (обмен партнёрами)? 2 Хотите ли бы вы попробовать элементы садо-мазо? 2 Хватает ли вам разнообразия? 1 Секс должен быть дерзким и пылким? 2 Любите ли вы разговаривать о сексе? 2 Спальня — это самое эротичное место? 2 Регулярный секс необходим для здоровых отношений? 2 Нужно ли планировать секс?
bcc35febb8c7bfcdb4d4776d15b9d3270ac68096
caafd05eb866a2bd249681ceeb5734ca2df71833
/TP7/place.sci
cadb13913d11fd86f28135215fde661ba35b8dfc
[ "MIT" ]
permissive
mmewen/MT09-numerical-analysis
5fb1f251e86f9d43d7eeb23ce7bcc91d6ca3fa8b
cde3871aa885811bc31166e778b2a4f052e74b64
refs/heads/master
2021-01-11T22:11:18.631204
2017-01-14T10:59:23
2017-01-14T10:59:23
78,934,966
0
0
null
null
null
null
UTF-8
Scilab
false
false
466
sci
place.sci
function [i] = place(T, t) n = length(T); if t < T(1) | t > T(n) then error("t en dehors des bornes"); end if t == T(n) then i= n-1; return; end imin = 1; imax = n; while (imax - imin) > 1 then mil = imin + floor((imax - imin) / 2); if t >= T(mil) then imin = mil; else imax = mil; end end i = imin; endfunction
9bbfbc06c2b46c29fe0bece6776a2c20252b552c
7ef51c5d0a21a0b16fdcf1e2b0ba34941a192b5d
/resultados/rf.sci
bfabc821c4e04dd01dc88593e58fea2b959ad976
[]
no_license
josepedro/TCC
c4ab515fea01859420ba3f5123815430ea2b0e02
72622069c60ae6c639d9aa2189f868b6db22c6df
refs/heads/master
2021-01-21T22:29:10.992789
2014-12-26T22:32:02
2015-01-02T03:06:25
22,113,358
2
0
null
null
null
null
ISO-8859-1
Scilab
false
false
1,502
sci
rf.sci
function [SINAL,f]=rf(sinal,fs) f=(0:length(sinal)-1)*fs/length(sinal); t = fft(sinal); SINAL=sqrt(t.*conj(t)); SINAL=abs(SINAL); scf(10); plot(f(1:round(length(f)/2)),SINAL(1:round(length(f)/2)),'-o'); //%stem(f(1:round(length(f)/2)),SINAL(1:round(length(f)/2))); // xtitle('Resposta em Frequência', 'Frequência (Hz)', 'Resposta'); //Transformando as respectivas frequencias em slots l = 1; //variavel auxiliar de contagem dos slots do novo vetor resposta-frequencia j = 0; //variavel auxiliar de contagem das respostas numa mesma faixa de frequencia i = 1; //variavel auxiliar de contagem dos slots do vetor resposta SOMA = 0; while (i<length(freq))//laco da acoplacao if (round(freq(i)) == round(freq(i+1)))//se as frequencias arrendondadas vizinhas forem iguais... SOMA = SOM(i+1) + SOMA;//soma das respostas das frequencias parecidas j = j + 1;//contagem de frequencias parecidas achadas else respfreq(l) = SOMA/(j+1);//incersao da media das frequencias parecidas no vetor j = 0;//zerar a contagem das frequencias parecidas para o proximo conjunto de sequencias SOMA = SOM(i+1);//comecando um novo conjunto de sequencias l = l+1;//proximo slot do respfreq end i = i+1;//proximo slot do vetor SOM end //fim do laco e zerando os contadores usados l = 0; j = 0; i = 0; //-------------------------- endfunction
e67765de7445eae068ef47a4498448e901814631
449d555969bfd7befe906877abab098c6e63a0e8
/2465/CH4/EX4.5/Example_5.sce
ce36439e79c67d373ccf5dd3140a3160311e9369
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
303
sce
Example_5.sce
//Chapter-4,Example 5,Page 93 clc; close; delta_H= -109 // heat change in Kcal n_1= 2 //mols of gaseous reactant n_2= 1 // mols of gaseous product delta_n= n_2-n_1 T=500 R= 2*10^-3 delta_E = (delta_H) - (delta_n*R*T) printf('the value of delta_E is %.f Kcal',delta_E)
c8eeb48b21acae1da42ef10839a9596e21fe11a6
430e7adb489914d378a5b0a27d8d41352fa45f3a
/scilab/example/ナイキスト線図1.sce
08e951e8482039ab85cc0106b398c835d6f94641
[]
no_license
ziaddorbuk/Lesson
04906ff94bf8c1f6bbc6971d5692ae011a9b8869
20fe20a6c9c145ef48a35574d885d3952f9ab6ff
refs/heads/master
2021-09-23T11:48:05.958608
2018-04-30T01:54:13
2018-04-30T01:54:13
null
0
0
null
null
null
null
SHIFT_JIS
Scilab
false
false
166
sce
ナイキスト線図1.sce
//ナイキスト線図 s=%s; H=1; G=(s+2)^2/((s+1)*(s^2-2*s+4)); GH=G*H; sys=syslin("c",GH); clf(); nyquist(sys) CharEq=denom(GH)+numer(GH) roots(CharEq)
47bc59902ea2d457052cfa0bb7d2943348987044
b513eb49824ff62ddd2289a920c92cfcb362d5f2
/magister/course_2/gerasimov/adaptive/Lab6/scilab/plot_x.sce
02e6fb310b77e44837151ee9331b69a12d9864f2
[]
no_license
kirillin/ifmo
6264ac42ec2031777145b39d4930f2f645e1d316
633919ba09d43814298c3a2145d5d6f72b5b068e
refs/heads/master
2021-01-12T09:32:27.270130
2018-11-18T12:17:46
2018-11-18T12:17:46
76,181,268
3
1
null
null
null
null
UTF-8
Scilab
false
false
846
sce
plot_x.sce
r = 2000000:2100000 subplot(2,1,1); plot2d(X.time(r), [X.values(r,1) X_est.values(r,1)]); legend("$x_1$", "$\hat{x_1}$" ,4) a = gca(); a.x_label.text = "$t\text{, с}$" a.x_label.font_size = 4; str = "$x_{\small" + string(1)+ "}$" a.y_label.text = str; a.y_label.font_size = 4; line2 = a.children(2).children(1); line2.thickness = 3; line2.foreground = 1; a.children(1).font_size = 2; subplot(2,1,2); plot2d(X.time(r), [X.values(r,2) X_est.values(r,2)]); legend("$x_2$", "$\hat{x_2}$" ,4) a = gca(); a.x_label.text = "$t\text{, с}$" a.x_label.font_size = 4; str = "$x_{\small" + string(2)+ "}$" a.y_label.text = str; a.y_label.font_size = 4; line2 = a.children(2).children(1); line2.thickness = 3; line2.foreground = 1; a.children(1).font_size = 2;
b7a0a60c07c46900e79be140262b6fbc9ea15fe6
449d555969bfd7befe906877abab098c6e63a0e8
/1883/CH5/EX5.7.6/Example5_20.sce
d6b0b7a3954ac55d1d94c06480b0c6bd5acb4d03
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
594
sce
Example5_20.sce
//Chapter-5,Example5_7_6,pg 5-29 h=6.63*10^-34 //Plancks constant e=1.6*10^-19 //charge of an electron delta_t=1.4*10^-10 //time spent in excited state delta_E=h/(4*%pi*delta_t*e) //By Heisenberg's uncertainty principle (delta_E*delta_t)>= h/(4*%pi) printf("\nThe uncertainty in energy of Iradium in the excited state Delta_E = %.8f eV\n",delta_E)
9c3db298ac32e7fd08f228674ad091a60aec564b
a4bbc60bcc82ee6212825ce21fc9e4fa7b04e870
/Bioinformatics_3k/4uzd/tests/1A26.tst
a518bee60a7998afdee36de3dfdb2cc38410a840
[]
no_license
Luksys5/LT_programos
3a7cabb6c5e8a23a856983c1938d2d492cddf916
959ab74029df334767fcad84adc46ae36cf7cdf1
refs/heads/master
2021-01-19T19:33:11.505596
2017-03-12T18:08:14
2017-03-12T18:08:14
16,478,166
0
1
null
null
null
null
UTF-8
Scilab
false
false
14,782
tst
1A26.tst
VDWCONT 3.032 3.04 -0.0079 1A26.cif A O ASP 147 C O HOH . VDWCONT 3.032 3.04 -0.0079 1A26.cif C O HOH . A O ASP 147 VDWCONT 3.0347 3.04 -0.0052 1A26.cif A O ASP 117 C O HOH . VDWCONT 3.0347 3.04 -0.0052 1A26.cif C O HOH . A O ASP 117 VDWCONT 3.036 3.04 -0.0039 1A26.cif C O HOH . C O HOH . VDWCONT 3.036 3.04 -0.0039 1A26.cif C O HOH . C O HOH . VDWCONT 3.0365 3.04 -0.0034 1A26.cif A O ASP 25 A O SER 28 VDWCONT 3.0365 3.04 -0.0034 1A26.cif A O SER 28 A O ASP 25 VDWCONT 3.0412 3.04 0.0012 1A26.cif A O GLY 223 C O HOH . VDWCONT 3.0412 3.04 0.0012 1A26.cif C O HOH . A O GLY 223 VDWCONT 3.0445 3.04 0.0045 1A26.cif A O TYR 104 A O TYR 84 VDWCONT 3.0445 3.04 0.0045 1A26.cif A O TYR 84 A O TYR 104 VDWCONT 3.0463 3.04 0.0063 1A26.cif A O LEU 224 C O HOH . VDWCONT 3.0463 3.04 0.0063 1A26.cif C O HOH . A O LEU 224 VDWCONT 3.047 3.04 0.007 1A26.cif B O CNA . B O CNA . VDWCONT 3.047 3.04 0.007 1A26.cif B O CNA . B O CNA . VDWCONT 3.0481 3.04 0.0081 1A26.cif A O GLY 71 A O SER 72 VDWCONT 3.0481 3.04 0.0081 1A26.cif A O SER 72 A O GLY 71 VDWCONT 3.0602 3.07 -0.0097 1A26.cif A N LYS 108 A O ILE 105 VDWCONT 3.0602 3.07 -0.0097 1A26.cif A O ILE 105 A N LYS 108 VDWCONT 3.0603 3.07 -0.0096 1A26.cif A N THR 306 A O THR 306 VDWCONT 3.0603 3.07 -0.0096 1A26.cif A O THR 306 A N THR 306 VDWCONT 3.0604 3.07 -0.0095 1A26.cif A N ASP 113 A O GLN 110 VDWCONT 3.0604 3.07 -0.0095 1A26.cif A O GLN 110 A N ASP 113 VDWCONT 3.063 3.07 -0.0069 1A26.cif A N VAL 34 A O LYS 31 VDWCONT 3.063 3.07 -0.0069 1A26.cif A O LYS 31 A N VAL 34 VDWCONT 3.0648 3.07 -0.0051 1A26.cif A N PHE 354 A O PRO 262 VDWCONT 3.0648 3.07 -0.0051 1A26.cif A O PRO 262 A N PHE 354 VDWCONT 3.0658 3.07 -0.0041 1A26.cif A N ILE 16 A O LYS 14 VDWCONT 3.0658 3.07 -0.0041 1A26.cif A O LYS 14 A N ILE 16 VDWCONT 3.0672 3.07 -0.0027 1A26.cif A N LYS 296 A O TYR 277 VDWCONT 3.0672 3.07 -0.0027 1A26.cif A O TYR 277 A N LYS 296 VDWCONT 3.0677 3.07 -0.0022 1A26.cif A N SER 68 A O GLN 64 VDWCONT 3.0677 3.07 -0.0022 1A26.cif A O GLN 64 A N SER 68 VDWCONT 3.0685 3.07 -0.0014 1A26.cif A N PHE 198 A O LYS 196 VDWCONT 3.0685 3.07 -0.0014 1A26.cif A O LYS 196 A N PHE 198 VDWCONT 3.0691 3.07 -0.0008 1A26.cif A N CYS 255 A O ALA 252 VDWCONT 3.0691 3.07 -0.0008 1A26.cif A O ALA 252 A N CYS 255 VDWCONT 3.0694 3.07 -0.0005 1A26.cif A N SER 249 A O MET 247 VDWCONT 3.0694 3.07 -0.0005 1A26.cif A O MET 247 A N SER 249 VDWCONT 3.0698 3.07 -0.0001 1A26.cif A N ALA 56 A O GLN 52 VDWCONT 3.0698 3.07 -0.0001 1A26.cif A O GLN 52 A N ALA 56 VDWCONT 3.071 3.07 0.001 1A26.cif A N ASP 261 A O SER 258 VDWCONT 3.071 3.07 0.001 1A26.cif A O SER 258 A N ASP 261 VDWCONT 3.0724 3.07 0.0024 1A26.cif A N SER 55 A O ARG 51 VDWCONT 3.0724 3.07 0.0024 1A26.cif A O ARG 51 A N SER 55 VDWCONT 3.0726 3.07 0.0026 1A26.cif A N MET 247 A O ASP 246 VDWCONT 3.0726 3.07 0.0026 1A26.cif A O ASP 246 A N MET 247 VDWCONT 3.07 3.07 0 1A26.cif A N GLY 92 A O ASP 90 VDWCONT 3.07 3.07 0 1A26.cif A O ASP 90 A N GLY 92 VDWCONT 3.0735 3.07 0.0035 1A26.cif A N GLN 222 A O SER 221 VDWCONT 3.0735 3.07 0.0035 1A26.cif A O SER 221 A N GLN 222 VDWCONT 3.0737 3.07 0.0037 1A26.cif A N ALA 342 A O ASP 340 VDWCONT 3.0737 3.07 0.0037 1A26.cif A O ASP 340 A N ALA 342 VDWCONT 3.0761 3.07 0.0061 1A26.cif A N LYS 21 A O GLN 17 VDWCONT 3.0761 3.07 0.0061 1A26.cif A O GLN 17 A N LYS 21 VDWCONT 3.0776 3.07 0.0076 1A26.cif A N LYS 300 A O LEU 332 VDWCONT 3.0776 3.07 0.0076 1A26.cif A O LEU 332 A N LYS 300 VDWCONT 3.0786 3.07 0.0086 1A26.cif A N PHE 24 A O ILE 20 VDWCONT 3.0786 3.07 0.0086 1A26.cif A O ILE 20 A N PHE 24 VDWCONT 3.0788 3.07 0.0088 1A26.cif A N LYS 108 A O TYR 104 VDWCONT 3.0788 3.07 0.0088 1A26.cif A O TYR 104 A N LYS 108 VDWCONT 3.2102 3.22 -0.0097 1A26.cif A C ASP 131 A O ASP 131 VDWCONT 3.2102 3.22 -0.0097 1A26.cif A O ASP 131 A C ASP 131 VDWCONT 3.2104 3.22 -0.0095 1A26.cif A C LEU 201 A O LEU 201 VDWCONT 3.2104 3.22 -0.0095 1A26.cif A O LEU 201 A C LEU 201 VDWCONT 3.211 3.22 -0.0089 1A26.cif A C VAL 248 A O VAL 165 VDWCONT 3.211 3.22 -0.0089 1A26.cif A O VAL 165 A C VAL 248 VDWCONT 3.2123 3.22 -0.0076 1A26.cif A C GLN 41 A O GLN 41 VDWCONT 3.2123 3.22 -0.0076 1A26.cif A O GLN 41 A C GLN 41 VDWCONT 3.2124 3.22 -0.0075 1A26.cif A C ASN 114 A O ASN 114 VDWCONT 3.2124 3.22 -0.0075 1A26.cif A O ASN 114 A C ASN 114 VDWCONT 3.2127 3.22 -0.0072 1A26.cif A C ILE 16 A O PRO 15 VDWCONT 3.2127 3.22 -0.0072 1A26.cif A O PRO 15 A C ILE 16 VDWCONT 3.2138 3.22 -0.0061 1A26.cif A C LEU 318 A O GLY 319 VDWCONT 3.2138 3.22 -0.0061 1A26.cif A O GLY 319 A C LEU 318 VDWCONT 3.2139 3.22 -0.006 1A26.cif A C ASP 135 A O ASP 135 VDWCONT 3.2139 3.22 -0.006 1A26.cif A O ASP 135 A C ASP 135 VDWCONT 3.214 3.22 -0.0059 1A26.cif A C ASN 114 A O ASP 113 VDWCONT 3.214 3.22 -0.0059 1A26.cif A C ASP 135 C O HOH . VDWCONT 3.214 3.22 -0.0059 1A26.cif A C GLY 223 A O LEU 224 VDWCONT 3.214 3.22 -0.0059 1A26.cif A O ASP 113 A C ASN 114 VDWCONT 3.214 3.22 -0.0059 1A26.cif A O LEU 224 A C GLY 223 VDWCONT 3.214 3.22 -0.0059 1A26.cif C O HOH . A C ASP 135 VDWCONT 3.2154 3.22 -0.0045 1A26.cif A C GLN 200 A O LEU 201 VDWCONT 3.2154 3.22 -0.0045 1A26.cif A O LEU 201 A C GLN 200 VDWCONT 3.2155 3.22 -0.0044 1A26.cif A C SER 249 A O SER 249 VDWCONT 3.2155 3.22 -0.0044 1A26.cif A C TYR 84 A O TYR 84 VDWCONT 3.2155 3.22 -0.0044 1A26.cif A O SER 249 A C SER 249 VDWCONT 3.2155 3.22 -0.0044 1A26.cif A O TYR 84 A C TYR 84 VDWCONT 3.2157 3.22 -0.0042 1A26.cif A C GLY 71 A O GLY 70 VDWCONT 3.2157 3.22 -0.0042 1A26.cif A O GLY 70 A C GLY 71 VDWCONT 3.2158 3.22 -0.0041 1A26.cif A C ILE 285 A O SER 283 VDWCONT 3.2158 3.22 -0.0041 1A26.cif A O SER 283 A C ILE 285 VDWCONT 3.2161 3.22 -0.0038 1A26.cif A C LEU 45 C O HOH . VDWCONT 3.2161 3.22 -0.0038 1A26.cif C O HOH . A C LEU 45 VDWCONT 3.2166 3.22 -0.0033 1A26.cif A C ASP 304 A O THR 306 VDWCONT 3.2166 3.22 -0.0033 1A26.cif A O THR 306 A C ASP 304 VDWCONT 3.2167 3.22 -0.0032 1A26.cif A C MET 237 A O MET 237 VDWCONT 3.2167 3.22 -0.0032 1A26.cif A O MET 237 A C MET 237 VDWCONT 3.2174 3.22 -0.0025 1A26.cif A C VAL 120 A O VAL 120 VDWCONT 3.2174 3.22 -0.0025 1A26.cif A O VAL 120 A C VAL 120 VDWCONT 3.2178 3.22 -0.0021 1A26.cif A C GLY 319 A O ASN 320 VDWCONT 3.2178 3.22 -0.0021 1A26.cif A O ASN 320 A C GLY 319 VDWCONT 3.218 3.22 -0.0019 1A26.cif A C HIS 293 A O LEU 273 VDWCONT 3.218 3.22 -0.0019 1A26.cif A C VAL 67 A O VAL 67 VDWCONT 3.218 3.22 -0.0019 1A26.cif A O LEU 273 A C HIS 293 VDWCONT 3.218 3.22 -0.0019 1A26.cif A O VAL 67 A C VAL 67 VDWCONT 3.2184 3.22 -0.0015 1A26.cif A C THR 85 A O THR 85 VDWCONT 3.2184 3.22 -0.0015 1A26.cif A O THR 85 A C THR 85 VDWCONT 3.2185 3.22 -0.0014 1A26.cif A C TYR 164 A O LEU 206 VDWCONT 3.2185 3.22 -0.0014 1A26.cif A O LEU 206 A C TYR 164 VDWCONT 3.2188 3.22 -0.0011 1A26.cif A C LYS 357 A O LYS 357 VDWCONT 3.2188 3.22 -0.0011 1A26.cif A O LYS 357 A C LYS 357 VDWCONT 3.2196 3.22 -0.0003 1A26.cif A C ALA 260 A O ALA 260 VDWCONT 3.2196 3.22 -0.0003 1A26.cif A O ALA 260 A C ALA 260 VDWCONT 3.2201 3.22 0.0001 1A26.cif A C ALA 66 A O ALA 66 VDWCONT 3.2201 3.22 0.0001 1A26.cif A O ALA 66 A C ALA 66 VDWCONT 3.2205 3.22 0.0005 1A26.cif A C ILE 139 A O ASP 135 VDWCONT 3.2205 3.22 0.0005 1A26.cif A O ASP 135 A C ILE 139 VDWCONT 3.2219 3.22 0.0019 1A26.cif A C TYR 348 A O TYR 348 VDWCONT 3.2219 3.22 0.0019 1A26.cif A O TYR 348 A C TYR 348 VDWCONT 3.2221 3.22 0.0021 1A26.cif A C PRO 305 A O ASP 304 VDWCONT 3.2221 3.22 0.0021 1A26.cif A O ASP 304 A C PRO 305 VDWCONT 3.2226 3.22 0.0026 1A26.cif A C ASP 312 A O ASP 312 VDWCONT 3.2226 3.22 0.0026 1A26.cif A O ASP 312 A C ASP 312 VDWCONT 3.22 3.22 0 1A26.cif A C TYR 195 A O GLU 270 VDWCONT 3.22 3.22 0 1A26.cif A O GLU 270 A C TYR 195 VDWCONT 3.2242 3.22 0.0042 1A26.cif A C ILE 59 A O ILE 59 VDWCONT 3.2242 3.22 0.0042 1A26.cif A C THR 286 A O THR 286 VDWCONT 3.2242 3.22 0.0042 1A26.cif A O ILE 59 A C ILE 59 VDWCONT 3.2242 3.22 0.0042 1A26.cif A O THR 286 A C THR 286 VDWCONT 3.2249 3.22 0.0049 1A26.cif A C ALA 227 A O TYR 236 VDWCONT 3.2249 3.22 0.0049 1A26.cif A O TYR 236 A C ALA 227 VDWCONT 3.2254 3.22 0.0054 1A26.cif A C ASN 281 A O ASN 281 VDWCONT 3.2254 3.22 0.0054 1A26.cif A O ASN 281 A C ASN 281 VDWCONT 3.2257 3.22 0.0057 1A26.cif A C ALA 56 A O ILE 53 VDWCONT 3.2257 3.22 0.0057 1A26.cif A O ILE 53 A C ALA 56 VDWCONT 3.226 3.22 0.006 1A26.cif A C ILE 87 A O TYR 84 VDWCONT 3.226 3.22 0.006 1A26.cif A O TYR 84 A C ILE 87 VDWCONT 3.2267 3.22 0.0067 1A26.cif A C ALA 252 A O ALA 252 VDWCONT 3.2267 3.22 0.0067 1A26.cif A O ALA 252 A C ALA 252 VDWCONT 3.2278 3.22 0.0078 1A26.cif A C VAL 233 A O VAL 233 VDWCONT 3.2278 3.22 0.0078 1A26.cif A O VAL 233 A C VAL 233 VDWCONT 3.2279 3.22 0.0079 1A26.cif A C GLN 259 A O GLN 259 VDWCONT 3.2279 3.22 0.0079 1A26.cif A O GLN 259 A C GLN 259 VDWCONT 3.2281 3.22 0.0081 1A26.cif A C ILE 59 A O ALA 56 VDWCONT 3.2281 3.22 0.0081 1A26.cif A C TYR 333 A O TYR 333 VDWCONT 3.2281 3.22 0.0081 1A26.cif A O ALA 56 A C ILE 59 VDWCONT 3.2281 3.22 0.0081 1A26.cif A O TYR 333 A C TYR 333 VDWCONT 3.228 3.22 0.008 1A26.cif A C VAL 165 A O ILE 161 VDWCONT 3.228 3.22 0.008 1A26.cif A O ILE 161 A C VAL 165 VDWCONT 3.2294 3.22 0.0094 1A26.cif A C ASN 203 A O ASN 203 VDWCONT 3.2294 3.22 0.0094 1A26.cif A O ASN 203 A C ASN 203 VDWCONT 3.2401 3.25 -0.0098 1A26.cif A C LEU 115 A N ASP 117 VDWCONT 3.2401 3.25 -0.0098 1A26.cif A N ASP 117 A C LEU 115 VDWCONT 3.2408 3.25 -0.0091 1A26.cif A C ALA 32 A N VAL 34 VDWCONT 3.2408 3.25 -0.0091 1A26.cif A N VAL 34 A C ALA 32 VDWCONT 3.2429 3.25 -0.007 1A26.cif A C LYS 108 A N GLN 110 VDWCONT 3.2429 3.25 -0.007 1A26.cif A C PHE 24 A N PHE 24 VDWCONT 3.2429 3.25 -0.007 1A26.cif A N GLN 110 A C LYS 108 VDWCONT 3.2429 3.25 -0.007 1A26.cif A N PHE 24 A C PHE 24 VDWCONT 3.24 3.25 -0.0099 1A26.cif A C ILE 160 A N LYS 162 VDWCONT 3.24 3.25 -0.0099 1A26.cif A C PRO 305 A N ALA 307 VDWCONT 3.24 3.25 -0.0099 1A26.cif A N ALA 307 A C PRO 305 VDWCONT 3.24 3.25 -0.0099 1A26.cif A N LYS 162 A C ILE 160 VDWCONT 3.2433 3.25 -0.0066 1A26.cif A C VAL 26 A N GLU 27 VDWCONT 3.2433 3.25 -0.0066 1A26.cif A N GLU 27 A C VAL 26 VDWCONT 3.2435 3.25 -0.0064 1A26.cif A C VAL 63 A N VAL 63 VDWCONT 3.2435 3.25 -0.0064 1A26.cif A N VAL 63 A C VAL 63 VDWCONT 3.2437 3.25 -0.0062 1A26.cif A C GLU 27 A N SER 28 VDWCONT 3.2437 3.25 -0.0062 1A26.cif A N SER 28 A C GLU 27 VDWCONT 3.2451 3.25 -0.0048 1A26.cif A C VAL 233 A N THR 234 VDWCONT 3.2451 3.25 -0.0048 1A26.cif A N THR 234 A C VAL 233 VDWCONT 3.2468 3.25 -0.0031 1A26.cif A C ASP 312 A N VAL 314 VDWCONT 3.2468 3.25 -0.0031 1A26.cif A N VAL 314 A C ASP 312 VDWCONT 3.251 3.25 0.001 1A26.cif A C GLU 27 A N MET 29 VDWCONT 3.251 3.25 0.001 1A26.cif A N MET 29 A C GLU 27 VDWCONT 3.2513 3.25 0.0013 1A26.cif A C GLU 73 A N SER 74 VDWCONT 3.2513 3.25 0.0013 1A26.cif A N SER 74 A C GLU 73 VDWCONT 3.2543 3.25 0.0043 1A26.cif A C ILE 105 A N ALA 107 VDWCONT 3.2543 3.25 0.0043 1A26.cif A N ALA 107 A C ILE 105 VDWCONT 3.2551 3.25 0.0051 1A26.cif A C SER 28 A N MET 29 VDWCONT 3.2551 3.25 0.0051 1A26.cif A N MET 29 A C SER 28 VDWCONT 3.255 3.25 0.005 1A26.cif A C ALA 107 A N VAL 109 VDWCONT 3.255 3.25 0.005 1A26.cif A N VAL 109 A C ALA 107 VDWCONT 3.2558 3.25 0.0058 1A26.cif A C LEU 220 A N SER 221 VDWCONT 3.2558 3.25 0.0058 1A26.cif A N SER 221 A C LEU 220 VDWCONT 3.2565 3.25 0.0065 1A26.cif A C LEU 79 A N ASN 81 VDWCONT 3.2565 3.25 0.0065 1A26.cif A N ASN 81 A C LEU 79 VDWCONT 3.2571 3.25 0.0071 1A26.cif A C PHE 244 A N PHE 244 VDWCONT 3.2571 3.25 0.0071 1A26.cif A N PHE 244 A C PHE 244 VDWCONT 3.2582 3.25 0.0082 1A26.cif A C GLU 156 A N ALA 158 VDWCONT 3.2582 3.25 0.0082 1A26.cif A N ALA 158 A C GLU 156 VDWCONT 3.258 3.25 0.008 1A26.cif A C GLN 41 A N LYS 42 VDWCONT 3.258 3.25 0.008 1A26.cif A N LYS 42 A C GLN 41 VDWCONT 3.2584 3.25 0.0084 1A26.cif A C LYS 287 A N LEU 288 VDWCONT 3.2584 3.25 0.0084 1A26.cif A N LEU 288 A C LYS 287 VDWCONT 3.2585 3.25 0.0085 1A26.cif A C TYR 104 A N ILE 105 VDWCONT 3.2585 3.25 0.0085 1A26.cif A N ILE 105 A C TYR 104 VDWCONT 3.2591 3.25 0.0091 1A26.cif A C PRO 229 A N ALA 231 VDWCONT 3.2591 3.25 0.0091 1A26.cif A N ALA 231 A C PRO 229 VDWCONT 3.3907 3.4 -0.0092 1A26.cif A C ALA 245 A C ASP 246 VDWCONT 3.3907 3.4 -0.0092 1A26.cif A C ASP 246 A C ALA 245 VDWCONT 3.3913 3.4 -0.0086 1A26.cif A C LYS 11 A C SER 10 VDWCONT 3.3913 3.4 -0.0086 1A26.cif A C SER 10 A C LYS 11 VDWCONT 3.3915 3.4 -0.0084 1A26.cif A C ASP 328 A C THR 329 VDWCONT 3.3915 3.4 -0.0084 1A26.cif A C THR 329 A C ASP 328 VDWCONT 3.3926 3.4 -0.0073 1A26.cif A C GLY 241 A C ILE 242 VDWCONT 3.3926 3.4 -0.0073 1A26.cif A C ILE 242 A C GLY 241 VDWCONT 3.3938 3.4 -0.0061 1A26.cif A C PRO 97 A C PRO 97 VDWCONT 3.3938 3.4 -0.0061 1A26.cif A C PRO 97 A C PRO 97 VDWCONT 3.3943 3.4 -0.0056 1A26.cif A C THR 308 A C THR 309 VDWCONT 3.3943 3.4 -0.0056 1A26.cif A C THR 309 A C THR 308 VDWCONT 3.394 3.4 -0.0059 1A26.cif A C PHE 184 A C PHE 184 VDWCONT 3.394 3.4 -0.0059 1A26.cif A C PHE 184 A C PHE 184 VDWCONT 3.3979 3.4 -0.002 1A26.cif A C ASN 327 A C ILE 326 VDWCONT 3.3979 3.4 -0.002 1A26.cif A C ILE 326 A C ASN 327 VDWCONT 3.3981 3.4 -0.0018 1A26.cif A C LEU 267 A C LEU 268 VDWCONT 3.3981 3.4 -0.0018 1A26.cif A C LEU 268 A C LEU 267 VDWCONT 3.398 3.4 -0.0019 1A26.cif A C LYS 347 A C TYR 348 VDWCONT 3.398 3.4 -0.0019 1A26.cif A C TYR 348 A C LYS 347 VDWCONT 3.3986 3.4 -0.0013 1A26.cif A C ILE 23 A C PHE 24 VDWCONT 3.3986 3.4 -0.0013 1A26.cif A C PHE 24 A C ILE 23 VDWCONT 3.3999 3.4 0 1A26.cif A C LEU 178 A C LYS 179 VDWCONT 3.3999 3.4 0 1A26.cif A C LYS 179 A C LEU 178 VDWCONT 3.4014 3.4 0.0014 1A26.cif A C ILE 337 A C VAL 338 VDWCONT 3.4014 3.4 0.0014 1A26.cif A C VAL 338 A C ILE 337 VDWCONT 3.4019 3.4 0.0019 1A26.cif A C LYS 296 A C LYS 296 VDWCONT 3.4019 3.4 0.0019 1A26.cif A C LYS 296 A C LYS 296 VDWCONT 3.4025 3.4 0.0025 1A26.cif A C MET 237 B C CNA . VDWCONT 3.4025 3.4 0.0025 1A26.cif B C CNA . A C MET 237 VDWCONT 3.4027 3.4 0.0027 1A26.cif A C LEU 178 A C LYS 179 VDWCONT 3.4027 3.4 0.0027 1A26.cif A C LYS 179 A C LEU 178 VDWCONT 3.4036 3.4 0.0036 1A26.cif A C LYS 42 A C MET 43 VDWCONT 3.4036 3.4 0.0036 1A26.cif A C MET 43 A C LYS 42 VDWCONT 3.4043 3.4 0.0043 1A26.cif A C GLU 230 A C GLU 230 VDWCONT 3.4043 3.4 0.0043 1A26.cif A C GLU 230 A C GLU 230 VDWCONT 3.4045 3.4 0.0045 1A26.cif A C ASP 261 A C PRO 262 VDWCONT 3.4045 3.4 0.0045 1A26.cif A C PRO 262 A C ASP 261 VDWCONT 3.4047 3.4 0.0047 1A26.cif A C LEU 332 A C TYR 333 VDWCONT 3.4047 3.4 0.0047 1A26.cif A C TYR 333 A C LEU 332 VDWCONT 3.405 3.4 0.005 1A26.cif A C ARG 204 A C GLN 205 VDWCONT 3.405 3.4 0.005 1A26.cif A C GLN 205 A C ARG 204 VDWCONT 3.4075 3.4 0.0075 1A26.cif A C TRP 208 A C TRP 208 VDWCONT 3.4075 3.4 0.0075 1A26.cif A C TRP 208 A C TRP 208 VDWCONT 3.408 3.4 0.008 1A26.cif A C LEU 298 A C LYS 296 VDWCONT 3.408 3.4 0.008 1A26.cif A C LYS 296 A C LEU 298 VDWCONT 3.4095 3.4 0.0095 1A26.cif A C PRO 317 A C PRO 317 VDWCONT 3.4095 3.4 0.0095 1A26.cif A C PRO 317 A C PRO 317
b9866ea60afb90cd2729513c14d7b51704431d07
449d555969bfd7befe906877abab098c6e63a0e8
/1109/CH5/EX5.4/5_4.sce
7994fd8c2f035b9d6ae512fa92ae74705ad06adf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
563
sce
5_4.sce
clear; clc; R=10;C=0.04*(10^-6);L=0;G=0;f=1000;l=100*(10^-3);r=12;d=0.9; w=2*%pi*f; a=sqrt(w*C*R/2); b=sqrt(w*C*R/2); Vp=(w/b)*10^-5; printf("-Phase velocity before loading = %f * 10^5 km/sec\n",fix(Vp*10)/10); Rc=R+(r/d); Lc=L+(l/d); al=((Rc/2)*sqrt(C/Lc))+((G/2)*sqrt(Lc/C)); Vpl=(1/(sqrt(Lc*C)))*10^-4; printf("-Phase velocity after loading = %f * 10^4 km/sec\n",Vpl); A=a-al; printf("-Decrease in attenuation = %f neper/km\n",round(A*10000)/10000); Fc=1/(%pi*(sqrt(Lc*C*d))); printf("-Cutoff frequency = %f kHz",round(Fc*(10^-3)*1000)/1000);
553326479825f29372519a65bb696e4e6bdd8381
449d555969bfd7befe906877abab098c6e63a0e8
/965/CH2/EX2.24/24.sci
f0678f5ca748390e3afcc90c21d650b040b428ec
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
511
sci
24.sci
clc; clear all; disp("rate of heat removal") La=0.003;//m Lb=0.05;//m Lc=0.003;//m kA=46.5;//W/(m*C) kB=0.046;//W/(m*C) kC=46.5;//W/(m*C) h0=11.6;//W/(m^2*C) hi=14.5;//W/(m^2*C) t0=25;// degree C temperature ti=6;// degree C temperature A=0.5*0.5*2+0.5*1*4; Q=A*(t0-ti)/(1/h0+La/kA+Lb/kB+Lc/kC+1/hi); disp("W",Q,"rate of heat removal = ") //Q=h0*A*(25-t1) t1=25-Q/(h0*A);// degree C temperature of outer surface disp ("degree C",t1,"temperature of outer surface of metal sheet= ")
bf9259a46f5d5ad0a75f8e175ffa74df9093bb14
449d555969bfd7befe906877abab098c6e63a0e8
/615/CH2/EX2.5/2_5.sce
f69c9a3a9a17d73b0d3b9dcd1067fae337936e36
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
846
sce
2_5.sce
//acids and bases// //example 2.5// K1=10^-8;//dissociation constant of weak mono basic acid// N1=0.01;//normality of the acid// V1=1/N1; a1=sqrt(K1*V1);//degree of dissociation for weak acids// H1=N1*a1;//H+ concentration of the solution// pH1=-log10(H1); printf("pH value of 0.01N solution of a weak mono basic acid is %f",pH1); a2=4/100;//percentage of dissociation of acid at 20C// N2=0.1;//normality of acid// V2=1/N2; K2=(a2^2)/V2; K2a=K2/10^-4; printf("\nThe dissociation constant of the acid is %f*10^-4",K2a); N3=0.1;//normality of HCl// pH3=-log10(N3); printf("\nThe pH of the 0.1N HCl solution is %f",pH3); N4=1/50;//normality of HCl// pH4=-log10(N4); printf("\nThe pH of the 1/50N HCl solution is %f",pH4); N5=0.01;//normality of H2SO4// pH5=-log10(N5); printf("\nThe pH of the 0.01N H2SO4 solution is %f",pH5);
d593156806be33b80a9f2dcc19a22ea27eb4d231
449d555969bfd7befe906877abab098c6e63a0e8
/1748/CH2/EX2.51/Exa2_51.sce
abad737efa075a777efa023dd0c0cd652e9e9131
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Exa2_51.sce
//Exa 2.51 clc; clear; close; //Given data : format('v',5); disp("Star delta starter :"); ISCbyIFL=6;//ratio of SC current to full load current Slip=4;//in % Slip=4/100;//in fraction TsBYTfl=(1/3)*(ISCbyIFL)^2*Slip;//ratio of starting torque to full load torque disp("Starting torque is "+string(TsBYTfl*100)+"% of full load value."); disp("For an auto transformer :"); K=70.70;//in % K=70.70/100;//in fraction TsBYTfl=K^2*(ISCbyIFL)^2*Slip;//ratio of starting torque to full load torque disp("Starting torque is "+string(TsBYTfl*100)+"% of full load torque.");
58eb2baf9aa0e313bffa69b514092b416b030df1
449d555969bfd7befe906877abab098c6e63a0e8
/401/CH2/EX2.6/Example2_6.sce
c3d9fd0a9e5acba8803c74c9d334a05ca690cfbe
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,139
sce
Example2_6.sce
//Example 2.6 //Program to estimate //(a) The maximum core diameter of an optical fiber for Example 2.4 //(b) The new core diameter for single mode operation when the //relative refractive index difference is reduced by a factor of 10 clear; clc ; close ; //Given data V=2.4; //Normalized Frequency lambda=0.85*10^(-6); //metre - OPERATING WAVELENGTH n1=1.48; //CORE REFRACTIVE INDEX delta=0.015; //RELATIVE REFRACTIVE INDEX DIFFERENCE //(a) The maximum core radius of the optical fiber with delta=1.5% a1=V*lambda/(2*%pi*n1*sqrt(2*delta)); //(b) The new core radius for single mode operation when the //relative refractive index difference is reduced by a factor of 10 delta=delta/10; a2=V*lambda/(2*%pi*n1*sqrt(2*delta)); //Displaying the Results in Command Window printf("\n\n\t The maximum core diameter of the optical fiber with delta 1.5 percent is %0.1f micrometre.",2*a1*10^6); printf("\n\n\t The new core diameter for single mode operation when the relative refractive index difference is reduced by a factor of 10 is %0.1f micrometre.",2*a2*10^6);
ac99d47cdd82a530488f2f991b8ed9a51c0ca96b
00fc439a1f2cc38d50ec7b050222d6ba1c2b76cf
/macros/herokupython.sci
3dfb690f63d0fb907b2aac0b6a7c512d020ab39d
[]
no_license
slevin48/datadeploy
c9cc657db8d45aa0ab8fa5845b8f2552f3781140
1ed8be8d0b4ad5ab5cbdb91f20338df90e913f88
refs/heads/master
2022-07-28T20:19:46.917688
2020-05-25T08:58:25
2020-05-25T08:58:25
266,721,169
0
0
null
null
null
null
UTF-8
Scilab
false
false
354
sci
herokupython.sci
function herokupython() // Create a app.py file to start the heroku app // Done only once copyfile(datadeploy_getpath()+"\heroku\Procfile",SCIHOME+'\datadeploy\') copyfile(datadeploy_getpath()+"\heroku\datadeploy.py",SCIHOME+'\datadeploy\') copyfile(datadeploy_getpath()+"\heroku\requirements.txt",SCIHOME+'\datadeploy\') endfunction
240955cc30710d90efe55cf9be9969b763ca5868
449d555969bfd7befe906877abab098c6e63a0e8
/2528/CH4/EX4.15/Ex4_15.sce
ba8c554fafd35b1b96db4e7f63b58672aa17ab47
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
231
sce
Ex4_15.sce
clc; clear; close; //pagec no 118 //Figure 4.27 Ri=10*10^3; //In ohm Av=26; //In dB Av1=10*log10(Av); Rf1=Av1*Ri; //Rf1=20*Ri1; //Ri1+20*Ri1=Ri; //Ri1=Ri-Rf1; Ri1=Ri/21; Rf1=20*Ri1; disp("ohm",Rf1,"Rf1 is")
f0f9b032065331450828b6f44c026f0121206988
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/vco/vco9.sce
4fe8b2e16c6f0a9e805faf0c1ca08e427503811f
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
280
sce
vco9.sce
//i/p vector contains zeros x=[1 .2 .3 0 .2 .3 1 0 -1]; y=vco(x,100,550); disp(y); ////output // column 1 to 6 // // 0.4154150 - 0.8090170 - 0.6548607 0.4154150 0.9740119 - 0.1423148 // // column 7 to 9 // // - 0.6548607 0.4154150 0.4154150
89ed1648f34ddc1f189329c1625d3401fa0eb383
449d555969bfd7befe906877abab098c6e63a0e8
/710/CH11/EX11.12/11_12.sci
65eb55cadc4850604abda6b489a40728054c8b01
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
518
sci
11_12.sci
clc(); clear; //To determine the magnetic field k=1.5; //maximum kinetic energy in MeV m=1.67*10^-27; //mass of proton in kg q=1.6*(10^-19); //charge of particle r=0.35; //radius in m //k=[(q^2)*(B^2)*(r^2)]/(2*m).Therefore B=[sqrt(k*2*m)]/q*r B=sqrt(k*10^6*1.6*10^-19*2*m)/(q*r) //magnetic field in T printf("The mgnetic field is %f T",B);
1fed801d7abf914a1da65ccee2a6d8eba62b0976
449d555969bfd7befe906877abab098c6e63a0e8
/1163/CH2/EX2.3/example_2_3.sce
c2a01c1dbe308cb6c778056726ea63fc926566bc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,746
sce
example_2_3.sce
clear; clc; disp("--------------Example 2.3---------------") // display the example printf("Each device(computer or router) has a pair of addresses (logical and physical) for each connection. In this\ncase, each computer is connected to only one link and therefore has only one pair of addresses. Each router,\nhowever, is connected to three networks . So each router has three pairs of addresses,one for each\nconnection. Although it may obvious that each router must have a separate physical address for each connection,\n;it may not be obvious why it needs a logical address for each connection."); printf("\n\nIn this example,the computer with logical address A and physical address 10 needs to send a packet to\nthe computer with logical address P and physical address 95. The sender encapsulates its data\nin a packet at the network layer and adds two logical addresses (A and P). The logical source address comes before the logical destination address .\nThe network layer, however, needs to find the physical address of the next hop before the packet can be\ndelivered. The network layer consults its routing table and finds the logical address of the next hop (router 1) to be F.\nThe ARP finds the physical address of router 1 that corresponds to the logical address of 20. Now the network layer passes\nthis address to the data link layer, which in turn, encapsulates the packet with physical destination address 20 and physical source address 10.\n\n"); printf("The frame is received by every device on LAN 1, but is discarded by all except router 1, which finds that\nthe destination physical address in the frame matches with its own physical address. The router decapsulates the\npacket from the frame to read the logical destination address P. Since the logical destination address does not match the\nrouters logical address, the router knows that the packet needs to be forwarded. The router consults its routing table\nand ARP to find the physical destination address of the next hop (router 2), creates a new frame, encapsulates the packet, and sends it to router 2.\n\n"); printf("The source physical address changes from 10 to 99. The destination physical address changes from 20 (router 1 physical address) to 33\n(router 2 physical address). The logical source and destination addresses must remain the same; otherwise the packet will be lost.\n\n"); printf("At router 2 we have a similar scenario. The physical addresses are changed, and a new frame is sent to the destination computer.\nWhen the frame reaches the destination, the packet is decapsulated. The destination logical address P matches the logical address\nof the computer. The data are decapsulated from the packet and delivered to the upper layer.")
e151080367922679cef7674f240ae59a39cf19fb
449d555969bfd7befe906877abab098c6e63a0e8
/3876/CH2/EX2.5/Ex2_5.sce
e69ec1e9ba798ec44a5497ea92757755f114854c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
230
sce
Ex2_5.sce
//Chapter 2 Gases clc; clear; //Initialisation of Variables R= 8.31*10**7 //ergs mole^-1 T= 27 //C M= 28 //gram per mole //CALCULATIONS c= sqrt(3*R*(273+T)/M) //RESULTS mprintf("Root-Mean-Square velocity = %.2e cm per sec",c)
b60bf7b817a862ebdb6e2c7975008613e49e9df6
430e7adb489914d378a5b0a27d8d41352fa45f3a
/scilab/SMC-input4.sce
51cee15f656ec8e0522f19b4e9b23e63b997797d
[]
no_license
ziaddorbuk/Lesson
04906ff94bf8c1f6bbc6971d5692ae011a9b8869
20fe20a6c9c145ef48a35574d885d3952f9ab6ff
refs/heads/master
2021-09-23T11:48:05.958608
2018-04-30T01:54:13
2018-04-30T01:54:13
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,994
sce
SMC-input4.sce
lines(0) // 定数行列 // AF = [1 1 0;0 2 1;0 0 1]; BF = [0;0;1]; S = [20 10 1]; // むだ時間 // L = 0.5; L1 = 0.5; LL = 500*L; LL1 = 500*L1; // 離散化システム // h = 0.002; // サンプリング時間 // cont = syslin('c',AF,BF,S); disc = dscr(cont,h); // 離散化 // [A,B,Sd] = abcd(disc); // 初期条件 // X = [1 2 3]'; zc = [1 2 3]'; zh = [1 2 3]'; K = 10; // スライディングモード制御とスミス法 // for i = 1:2500; sigma = S*X; // 切換超平面 // sigma1 = S*(-(X-zh)+zc); // スミス法を用いた切換超平面 // U(i) = -inv(S*BF)*(S*AF*X)-K*sigma/norm(sigma); u(i) = -inv(S*BF)*(S*AF*(-(X-zh)+zc))-K*sigma1/norm(sigma1); if i<=LL // むだ時間経過前 // UL = 0; else // むだ時間経過後 // UL = U(i-LL); end if i<=LL1 // むだ時間経過前 // UL1 = 0; else // むだ時間経過後 // UL1 = U(i-LL1); end dX = A*X+B*UL; dzc = A*zc+B*u(i); dzh = A*zh+B*UL1; Xh1(:,i) = X; Wh1(:,i) = -(X-zh)+zc; Uh1(1,i) = UL; Sh1(1,i) = sigma; Sh2(1,i) = sigma1; X = dX; zc = dzc; zh = dzh; end // グラフ作成 // clf() tt =0:h:(i-1)*h; xset("window",0); subplot(222),plot(tt,Uh1),xgrid title('Control Input') xlabel('Time [s]') ylabel('Control Input [N]') subplot(221),plot(tt,Xh1(1,:),tt,Xh1(2,:),tt,Xh1(3,:)),xgrid title('Parameter') xlabel('Time [s]') ylabel('Displacement [m]') subplot(223),plot(tt,Sh1),xgrid title('Swiching Function') xlabel('Time [s]') ylabel('Swiching Function') xset("window",1); subplot(222),plot(tt,Uh1),xgrid title('Control Input') xlabel('Time [s]') ylabel('Control Input [N]') subplot(221),plot(tt,Wh1(1,:),tt,Wh1(2,:),tt,Wh1(3,:)),xgrid title('Parameter') xlabel('Time [s]') ylabel('Displacement [m]') subplot(223),plot(tt,Sh2),xgrid title('Swiching Function') xlabel('Time [s]') ylabel('Swiching Function') clear tt Uh1 Xh1 Sh1 Wh1 Sh2;
af907a30503e94ae3db7fcbdb90240ade2f83732
449d555969bfd7befe906877abab098c6e63a0e8
/542/CH11/EX11.5/Example_11_5.sce
00904143f6de820e687bbf757f82cce01b3ec235
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
903
sce
Example_11_5.sce
//Example 11.5 clear; clc; printf("\tExample 11.5\n"); function[p0]=antoine(k1,k2,k3,T) p0=10^(k1-(k2/(T+k3-273))); funcprot(0) endfunction k1_B=6.90565; k2_B=1211.033; k3_B=220.79; k1_T=6.95334; k2_T=1343.943; k3_T=219.377; //Since total pressure is 101.3 kPa, pB=pT pB=50.65; pT=50.65; printf("\n\tT(K)"); T=[373.2 371.2 371.7 371.9 372]; disp(T); i=1; while i<6 p0_B(i)=antoine(k1_B,k2_B,k3_B,T(i))*101.325/760; p0_T(i)=antoine(k1_T,k2_T,k3_T,T(i))*101.325/760; xB(i)=pB/p0_B(i); xT(i)=pT/p0_T(i); x(i)=xB(i)+xT(i); i=i+1; end printf("\n\tp0 B") disp(p0_B); printf("\n\tp0 T"); disp(p0_T); printf("\n\txB"); disp(xB); printf("\n\txT"); disp(xT); printf("\n\tx = xB+xT"); disp(x); //Since last value is closer to 1, 372 K is the required dew point printf("\nDew point can be taken as %f K",T(5)); //End
f7005469721f3b8fafe9ef60d3ac401e3b282619
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/ngram/5.10_18.tst
ef74bb7d754f04116ab26906e3bce68d70839516
[]
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
242,900
tst
5.10_18.tst
10 8:1 1494:1 2401:1 2579:1 2637:1 3470:1 5480:1 5711:1 6405:12 7378:1 7453:1 7897:1 7989:1 8020:1 8866:1 10132:1 10305:1 10559:1 10757:1 12521:1 12554:1 13085:1 13199:1 13589:1 13908:1 14160:1 14494:1 16854:1 17046:1 17153:1 17675:1 19311:1 20267:1 20342:1 20435:1 21212:1 21240:1 21715:1 22745:1 23184:1 10 8:1 11:1 474:1 1494:1 1574:1 1789:1 2401:1 2459:1 2579:1 2637:2 2658:1 2962:1 3139:1 3456:1 3470:1 3593:1 5271:1 5448:1 5480:2 5711:1 6068:1 6235:1 6405:70 6440:1 7378:1 7453:1 7712:1 7746:1 7772:1 7893:1 7897:1 7989:1 8020:1 8866:1 9247:1 9445:1 9578:1 10132:1 10305:1 10559:1 10727:1 10757:1 11072:1 11119:1 11239:1 11481:1 11766:1 12198:1 12521:1 12554:1 12861:1 13078:1 13085:2 13199:1 13589:1 13908:1 14160:1 14494:1 15527:1 15997:1 16155:1 16202:1 16513:1 16668:1 16724:1 16854:1 17046:1 17153:1 17600:1 17638:1 17675:1 17913:1 18059:1 18748:1 19311:1 19373:1 19972:1 20267:1 20342:1 20435:1 21212:1 21240:1 21647:1 21715:1 21770:1 21814:1 21904:1 22032:1 22219:1 22521:1 22729:1 22745:2 22866:1 23184:1 23386:1 10 8:1 11:1 474:1 1494:1 1574:1 1789:1 2191:1 2340:1 2345:1 2401:1 2459:1 2579:1 2637:2 2658:1 2962:1 3139:1 3217:1 3456:1 3470:2 3593:1 4730:1 5271:1 5448:1 5480:2 5711:1 6068:1 6134:1 6235:1 6405:105 6440:1 6510:1 6666:1 6677:1 7378:1 7431:1 7453:1 7712:1 7746:1 7772:1 7893:1 7897:1 7989:1 8020:1 8324:1 8690:1 8799:1 8866:1 8936:1 9247:1 9445:1 9489:1 9578:1 10132:1 10172:1 10206:1 10297:1 10305:1 10559:1 10727:1 10757:1 11072:1 11119:1 11141:1 11239:1 11481:1 11583:1 11766:1 12198:1 12303:1 12478:1 12521:1 12554:1 12861:1 13078:1 13085:2 13199:1 13301:1 13589:1 13908:1 14113:1 14160:1 14494:1 14532:1 15433:1 15527:1 15997:1 16144:1 16155:1 16202:1 16438:1 16513:1 16668:1 16724:1 16854:1 16884:1 17046:1 17153:1 17600:1 17638:1 17675:1 17913:1 18059:1 18323:1 18748:1 19311:1 19373:1 19694:1 19972:1 20267:1 20342:1 20418:1 20435:1 20496:1 21212:1 21240:1 21548:1 21647:1 21715:1 21720:1 21770:1 21814:1 21904:1 22032:1 22090:1 22219:1 22521:1 22729:1 22745:2 22866:1 23184:1 23386:1 10 8:1 11:1 474:1 1494:1 1574:1 1789:1 2191:1 2340:1 2345:1 2401:1 2459:1 2579:1 2637:2 2658:1 2962:1 3139:1 3217:1 3456:1 3470:2 3593:1 3631:1 4222:1 4730:1 5271:1 5448:1 5480:2 5711:1 6068:1 6134:1 6235:1 6405:118 6440:1 6510:1 6666:1 6677:1 7378:1 7431:1 7453:1 7559:1 7712:1 7746:1 7772:1 7893:1 7897:1 7989:1 8020:1 8324:1 8690:1 8799:1 8866:1 8936:1 9247:1 9445:1 9489:1 9578:1 10132:1 10172:1 10206:1 10297:1 10305:1 10559:1 10727:1 10757:1 11072:1 11119:1 11141:1 11239:1 11481:1 11583:1 11729:1 11766:1 12198:1 12303:1 12478:1 12521:1 12554:1 12643:1 12861:1 13078:1 13085:2 13199:1 13301:1 13589:1 13908:1 14113:1 14160:1 14494:1 14532:1 15260:1 15433:1 15527:1 15732:1 15997:1 16144:1 16155:1 16202:1 16438:1 16513:1 16668:1 16724:1 16854:1 16884:1 17046:1 17153:1 17600:1 17638:1 17675:1 17913:1 18059:1 18323:1 18748:1 19311:1 19373:1 19694:1 19972:1 20267:1 20342:1 20418:1 20435:1 20496:1 21212:1 21240:1 21548:1 21647:1 21715:1 21720:1 21770:1 21779:1 21814:1 21904:1 22032:1 22090:1 22219:1 22231:1 22521:1 22729:1 22745:2 22866:1 23184:1 23386:1 10 8:1 11:1 474:1 895:1 1494:1 1574:1 1789:1 1865:1 2191:1 2340:1 2345:1 2401:1 2459:1 2538:1 2579:1 2637:2 2658:1 2962:1 3139:1 3217:1 3456:2 3470:2 3593:1 3631:1 4222:1 4730:1 5058:1 5271:1 5448:1 5480:2 5711:1 5874:1 6068:1 6134:1 6235:1 6301:1 6405:120 6440:1 6510:1 6666:1 6677:1 6864:1 7378:1 7431:1 7453:1 7498:1 7559:1 7712:1 7746:1 7772:1 7893:1 7897:1 7989:1 8020:1 8324:1 8690:1 8799:1 8824:1 8866:1 8936:1 9247:1 9445:1 9489:1 9578:1 10132:1 10172:1 10206:1 10253:1 10297:1 10305:1 10559:1 10727:1 10757:1 11072:1 11119:1 11141:1 11239:1 11481:1 11583:1 11729:1 11765:1 11766:1 12198:1 12303:1 12478:1 12521:1 12554:1 12608:1 12643:1 12861:1 13073:1 13078:1 13085:2 13199:1 13301:1 13589:1 13908:1 14113:1 14160:1 14494:1 14532:1 15260:1 15433:1 15527:1 15732:1 15997:1 16144:1 16155:1 16202:1 16438:1 16513:1 16668:1 16724:1 16854:1 16884:1 17046:1 17153:1 17500:1 17600:1 17638:1 17675:1 17913:1 18059:1 18323:1 18748:1 19311:1 19373:1 19694:1 19972:1 20267:1 20342:1 20418:1 20435:2 20496:1 21212:1 21240:1 21548:1 21647:1 21715:1 21720:1 21770:1 21779:1 21814:1 21831:1 21904:1 22032:1 22090:1 22219:1 22231:1 22521:1 22729:1 22745:2 22866:1 23184:1 23386:1 10 8:1 11:1 474:1 895:1 1494:1 1574:1 1789:1 1865:1 2191:1 2340:1 2345:1 2401:1 2459:1 2538:2 2579:1 2637:2 2658:1 2962:1 2990:1 3139:1 3217:1 3456:2 3470:2 3593:1 3631:1 4222:1 4730:2 4979:1 5058:1 5271:1 5448:1 5480:2 5640:1 5711:1 5874:1 6068:1 6134:1 6235:1 6301:1 6405:168 6440:1 6510:1 6666:1 6677:1 6864:1 7378:1 7431:1 7453:1 7498:2 7559:1 7712:1 7746:1 7772:1 7853:1 7893:1 7897:1 7989:1 8020:1 8316:1 8324:1 8690:1 8799:1 8824:1 8866:1 8936:1 9247:1 9445:1 9489:1 9578:1 10132:1 10172:1 10206:1 10253:1 10297:1 10305:1 10409:1 10559:1 10727:1 10757:1 11072:1 11119:1 11141:1 11161:1 11239:1 11481:1 11583:1 11729:1 11765:1 11766:1 12198:1 12303:1 12478:1 12521:1 12554:1 12608:1 12643:1 12861:1 13073:1 13078:1 13085:2 13199:1 13301:1 13589:1 13908:1 14113:1 14160:1 14494:1 14532:1 15260:1 15433:1 15527:1 15732:1 15939:1 15997:1 16018:1 16093:1 16144:1 16155:1 16202:1 16438:1 16513:1 16668:1 16724:1 16854:1 16884:1 17046:1 17153:1 17500:2 17600:1 17638:1 17675:1 17913:1 18059:1 18323:1 18748:1 19311:1 19373:1 19694:1 19972:1 20267:1 20342:1 20418:1 20435:3 20496:1 21212:1 21240:1 21252:1 21548:1 21647:1 21715:1 21720:1 21770:1 21779:1 21814:1 21831:1 21904:1 22032:1 22090:1 22219:1 22231:1 22521:1 22729:1 22745:2 22866:1 23184:1 23386:1 10 8:1 11:1 474:1 476:1 895:1 951:1 1494:1 1574:1 1607:1 1789:1 1865:1 2191:1 2340:1 2345:1 2401:1 2405:1 2423:1 2459:1 2538:2 2579:1 2637:2 2658:1 2750:1 2962:1 2990:1 3139:1 3217:1 3456:2 3470:2 3593:1 3631:1 3844:1 4222:1 4730:3 4979:1 5058:1 5271:1 5411:1 5448:1 5480:2 5640:1 5711:1 5809:1 5874:1 5877:1 6068:1 6134:1 6235:1 6301:1 6362:1 6405:193 6440:1 6510:1 6666:1 6677:1 6864:1 6994:1 7378:1 7431:2 7453:1 7498:3 7559:1 7712:1 7746:1 7772:1 7853:1 7886:1 7893:1 7897:1 7989:1 8020:1 8316:1 8324:1 8690:1 8799:1 8824:1 8866:1 8930:1 8936:1 9247:1 9445:1 9454:1 9489:1 9578:1 10132:1 10172:1 10206:1 10253:1 10297:1 10305:1 10338:2 10409:1 10512:1 10559:1 10727:1 10757:1 10984:1 11072:1 11119:1 11141:1 11161:1 11239:1 11300:1 11321:1 11481:1 11583:2 11729:1 11765:1 11766:1 11809:1 12071:1 12077:1 12091:1 12198:1 12303:1 12478:1 12521:1 12552:1 12554:1 12602:1 12608:1 12643:1 12676:1 12861:1 13073:1 13078:1 13085:2 13199:1 13259:1 13301:1 13589:1 13908:1 14113:1 14160:1 14494:1 14516:1 14532:2 14867:1 15260:1 15433:1 15506:1 15527:1 15732:1 15939:1 15967:1 15997:1 16018:1 16093:1 16144:1 16155:1 16202:1 16235:1 16438:1 16513:1 16668:1 16724:1 16854:1 16884:1 17009:1 17046:1 17153:1 17500:2 17600:1 17638:1 17675:1 17739:1 17761:1 17913:1 18059:1 18068:1 18145:1 18323:1 18748:1 18796:1 19311:1 19373:1 19694:1 19902:1 19904:1 19972:1 20267:1 20342:1 20418:2 20435:3 20440:1 20492:1 20496:1 21048:1 21212:1 21240:1 21252:1 21355:1 21548:2 21647:1 21653:1 21715:1 21720:2 21770:1 21779:1 21814:1 21831:1 21904:1 22032:1 22090:1 22219:1 22231:1 22235:1 22521:1 22729:1 22745:2 22866:1 23184:1 23386:1 10 8:1 11:2 106:1 474:1 476:1 895:1 951:1 1093:1 1494:1 1574:1 1607:1 1789:1 1865:1 2191:1 2340:1 2345:1 2401:1 2405:1 2423:1 2459:1 2521:1 2538:2 2579:1 2637:3 2658:1 2750:1 2962:1 2990:1 3139:2 3217:1 3456:2 3470:2 3593:1 3631:1 3844:1 4222:1 4730:3 4979:1 5058:1 5271:1 5411:1 5448:1 5480:3 5640:1 5711:1 5809:1 5874:1 5877:1 6068:1 6134:1 6235:1 6301:1 6362:1 6405:221 6440:1 6472:1 6510:1 6666:1 6677:1 6864:1 6994:1 7378:1 7431:2 7453:1 7498:3 7559:1 7712:1 7746:1 7772:1 7853:1 7886:1 7893:1 7897:1 7989:1 8020:1 8316:1 8324:1 8690:1 8799:1 8824:1 8866:1 8930:1 8936:1 9247:1 9445:1 9454:1 9489:1 9578:1 9920:1 10132:1 10172:1 10206:1 10253:1 10297:1 10305:1 10338:2 10409:1 10512:1 10559:1 10727:1 10757:1 10984:1 11059:1 11072:1 11119:1 11141:1 11161:1 11239:1 11300:1 11321:1 11481:2 11583:2 11729:1 11765:1 11766:1 11809:1 12071:1 12077:1 12091:1 12198:1 12303:1 12478:1 12521:1 12552:1 12554:1 12602:1 12608:1 12643:1 12676:1 12861:1 13073:1 13078:2 13085:3 13199:1 13259:1 13301:1 13589:1 13908:1 14113:1 14160:1 14266:1 14494:1 14516:1 14532:2 14867:1 14899:1 15260:1 15433:1 15506:1 15527:1 15732:1 15939:1 15967:1 15997:1 16018:1 16093:1 16144:1 16155:1 16202:1 16235:1 16438:1 16513:1 16668:1 16724:1 16854:1 16884:1 17009:1 17046:1 17153:1 17500:2 17600:1 17638:1 17675:1 17739:1 17761:1 17913:1 18059:1 18068:1 18145:1 18323:1 18748:1 18796:1 19207:1 19311:1 19373:1 19606:1 19694:1 19902:1 19904:1 19972:1 20267:1 20342:1 20418:2 20435:3 20440:1 20492:1 20496:1 21048:1 21212:1 21240:1 21252:1 21355:1 21548:2 21647:1 21653:1 21715:1 21720:2 21770:1 21779:1 21814:1 21831:1 21904:1 22032:1 22090:1 22219:1 22231:1 22235:1 22521:1 22729:1 22745:3 22866:1 23184:1 23386:2 10 8:1 11:2 106:1 474:1 476:1 489:1 548:1 895:1 951:1 1093:1 1410:1 1464:1 1494:1 1533:1 1574:1 1607:1 1639:1 1789:1 1865:1 2052:1 2191:1 2340:1 2345:1 2401:1 2405:1 2423:1 2459:1 2521:1 2538:2 2579:1 2637:3 2658:1 2750:1 2962:1 2990:1 3139:2 3217:1 3456:2 3470:2 3593:1 3631:1 3844:1 4222:1 4730:3 4979:1 5058:1 5174:1 5271:1 5411:1 5448:1 5480:3 5493:1 5640:1 5711:1 5776:1 5809:1 5874:1 5877:1 6068:1 6134:1 6235:1 6301:1 6362:1 6405:241 6440:1 6472:1 6510:1 6666:1 6677:1 6864:1 6994:1 7256:1 7378:1 7431:2 7453:1 7498:3 7559:1 7633:1 7712:1 7715:1 7746:1 7772:1 7853:1 7886:1 7893:1 7897:1 7989:1 8020:1 8316:1 8324:1 8506:1 8690:1 8799:1 8824:1 8866:1 8930:1 8936:1 9247:1 9445:1 9454:1 9489:1 9578:1 9920:1 10132:1 10172:1 10206:1 10253:1 10297:1 10305:1 10338:2 10409:1 10424:1 10512:1 10559:1 10727:1 10757:1 10894:1 10984:1 11059:1 11072:1 11119:1 11141:1 11161:1 11239:1 11300:1 11321:1 11481:2 11583:2 11729:1 11765:1 11766:1 11809:1 12071:1 12077:1 12091:1 12198:1 12303:1 12478:1 12521:1 12547:1 12552:1 12554:1 12602:1 12608:1 12643:1 12676:1 12861:1 13073:1 13078:2 13085:3 13199:1 13259:1 13301:1 13589:1 13908:1 13967:1 14113:1 14160:1 14266:1 14494:1 14516:1 14532:2 14867:1 14899:1 15234:1 15260:1 15330:1 15433:1 15506:1 15527:1 15732:1 15734:1 15939:1 15967:1 15997:1 16018:1 16093:1 16144:1 16155:1 16202:1 16235:1 16438:1 16513:1 16668:1 16724:1 16854:1 16879:1 16884:1 17009:1 17046:1 17153:1 17500:2 17503:1 17600:1 17638:1 17675:1 17739:1 17761:1 17913:1 18059:1 18068:1 18145:1 18292:1 18323:1 18610:1 18748:1 18796:1 19207:1 19311:1 19373:1 19606:1 19694:1 19852:1 19902:1 19904:1 19972:1 20098:1 20164:1 20267:1 20313:1 20342:1 20418:2 20435:3 20440:1 20492:1 20496:1 20683:1 20989:1 21048:1 21212:1 21240:1 21252:1 21355:1 21397:1 21548:2 21647:1 21653:1 21662:1 21715:1 21720:2 21770:1 21779:1 21814:1 21831:1 21904:1 22032:1 22090:1 22219:1 22231:1 22235:1 22521:1 22729:1 22745:3 22866:1 22989:1 23029:1 23184:1 23386:2 10 8:1 11:2 13:1 31:1 68:1 106:1 474:1 476:1 489:1 548:1 657:1 895:1 898:1 951:1 1093:1 1246:1 1349:1 1410:1 1427:1 1464:1 1494:1 1497:2 1533:1 1544:1 1574:1 1588:1 1607:1 1637:1 1639:1 1642:1 1685:1 1789:1 1865:1 2052:1 2191:1 2234:1 2340:1 2345:1 2401:1 2405:1 2423:1 2459:1 2521:1 2532:1 2538:2 2579:1 2637:3 2658:1 2750:1 2756:1 2763:1 2852:1 2962:2 2990:1 3139:2 3217:1 3456:2 3470:2 3552:1 3593:1 3631:1 3646:2 3844:2 3857:1 4029:1 4090:1 4222:1 4377:2 4562:1 4730:3 4741:1 4747:1 4979:1 5058:1 5165:1 5174:1 5184:1 5271:1 5411:1 5448:1 5480:3 5493:1 5640:1 5653:2 5711:1 5776:1 5809:1 5874:1 5877:1 5980:1 6068:1 6134:1 6174:1 6235:1 6301:1 6362:1 6405:280 6440:1 6472:1 6510:1 6666:1 6677:1 6794:1 6808:1 6864:1 6896:1 6994:2 7014:1 7204:1 7256:1 7378:1 7390:1 7431:2 7453:1 7498:3 7522:1 7559:1 7633:1 7712:1 7715:1 7746:1 7772:1 7824:1 7853:1 7886:1 7893:1 7897:1 7912:1 7989:1 8020:1 8056:2 8256:1 8295:1 8316:1 8324:1 8506:1 8521:1 8690:2 8799:1 8824:1 8866:1 8930:1 8936:1 9127:1 9247:1 9312:1 9445:1 9454:2 9489:1 9578:1 9802:1 9837:1 9920:1 10132:1 10172:1 10206:1 10253:1 10297:1 10305:1 10338:2 10409:1 10424:1 10493:1 10512:2 10559:1 10640:1 10727:1 10757:1 10894:1 10984:2 11059:1 11072:1 11119:2 11141:1 11161:1 11174:1 11239:1 11300:1 11321:2 11339:1 11401:1 11481:2 11583:2 11626:1 11729:1 11765:1 11766:1 11809:1 12071:2 12077:1 12091:1 12092:2 12198:1 12303:1 12391:1 12478:1 12521:2 12547:1 12552:1 12554:1 12564:1 12602:2 12608:1 12619:1 12643:4 12676:1 12861:1 12954:1 13068:1 13073:1 13078:2 13085:3 13199:1 13201:1 13227:1 13259:1 13301:1 13460:1 13502:1 13589:1 13908:1 13930:1 13967:1 14113:1 14142:1 14160:1 14266:1 14494:1 14516:1 14532:2 14586:1 14814:1 14867:1 14899:1 15078:1 15234:1 15260:1 15330:1 15430:1 15433:1 15446:1 15506:1 15527:1 15732:1 15734:1 15939:1 15967:1 15997:1 16018:1 16029:1 16052:1 16093:1 16144:1 16155:1 16202:1 16235:1 16304:1 16438:1 16513:1 16668:1 16724:1 16779:2 16783:1 16796:1 16854:1 16877:1 16879:1 16884:1 17009:2 17046:1 17153:1 17207:1 17308:1 17500:2 17503:1 17600:1 17633:1 17638:1 17675:1 17739:1 17761:1 17913:1 18044:1 18059:1 18068:1 18145:1 18292:1 18323:1 18570:1 18581:1 18610:1 18655:1 18748:1 18796:1 19012:1 19207:1 19311:1 19367:1 19373:1 19573:1 19606:1 19694:1 19843:1 19852:1 19902:2 19904:1 19972:1 20098:1 20164:1 20224:1 20267:3 20313:1 20342:1 20350:1 20418:2 20435:3 20440:1 20492:1 20496:1 20650:1 20683:1 20687:1 20763:1 20989:1 21048:1 21212:1 21240:1 21252:1 21344:1 21355:1 21397:1 21408:1 21548:2 21647:1 21653:1 21662:1 21708:1 21715:1 21720:2 21756:1 21770:1 21779:1 21787:1 21814:1 21831:1 21850:1 21904:1 21910:1 22000:1 22032:1 22090:1 22111:1 22219:1 22231:1 22235:1 22425:1 22521:1 22642:1 22729:1 22745:3 22772:1 22866:1 22989:1 23029:1 23048:1 23087:1 23184:1 23272:1 23302:1 23386:2 23394:1 23532:1 23606:1 10 8:1 11:3 13:1 31:1 68:1 106:1 184:1 474:1 476:1 489:1 548:1 657:1 895:1 898:1 951:1 1072:1 1093:1 1246:1 1349:1 1410:1 1427:1 1464:1 1494:1 1497:2 1533:1 1544:1 1574:1 1588:1 1607:1 1637:1 1639:1 1642:1 1685:1 1789:1 1865:1 2052:1 2191:1 2234:1 2303:1 2340:1 2345:1 2401:1 2405:1 2423:1 2459:1 2521:1 2532:1 2538:2 2579:1 2637:4 2658:1 2750:1 2756:1 2763:1 2852:1 2962:2 2990:1 3139:2 3217:1 3456:2 3470:2 3552:1 3593:1 3631:1 3646:2 3686:1 3844:2 3857:1 3971:1 3996:1 4029:1 4090:1 4222:1 4377:2 4562:1 4730:3 4741:2 4747:1 4867:1 4979:1 5058:1 5165:1 5174:1 5184:1 5271:1 5272:1 5411:1 5448:1 5480:4 5493:1 5572:1 5640:1 5653:2 5711:1 5776:1 5809:1 5874:1 5877:1 5980:1 6068:1 6134:1 6174:1 6235:1 6301:1 6362:1 6405:316 6440:1 6472:1 6510:1 6666:1 6677:1 6794:1 6808:1 6864:1 6896:1 6994:2 7014:1 7204:1 7256:1 7378:1 7390:1 7431:2 7453:1 7498:3 7522:1 7559:1 7623:1 7633:1 7712:2 7715:1 7746:1 7772:1 7824:1 7853:1 7886:1 7893:1 7897:1 7912:1 7989:1 8020:1 8056:2 8135:1 8256:1 8295:1 8316:1 8324:1 8506:1 8521:1 8690:2 8799:1 8824:1 8866:1 8930:1 8936:1 9127:1 9247:1 9312:1 9430:1 9445:1 9454:2 9489:1 9578:1 9802:1 9837:1 9920:1 10132:1 10151:1 10172:1 10174:1 10206:1 10253:1 10297:1 10305:1 10338:2 10409:1 10424:1 10493:1 10512:3 10559:1 10640:1 10727:1 10757:1 10894:1 10984:2 11059:1 11072:1 11119:2 11141:1 11161:1 11174:1 11239:1 11300:1 11321:2 11339:1 11401:1 11481:2 11583:2 11626:1 11706:1 11729:1 11765:1 11766:1 11809:1 12071:2 12077:1 12091:1 12092:2 12198:1 12303:1 12391:1 12478:1 12521:2 12547:1 12552:1 12554:1 12564:1 12602:2 12608:1 12619:1 12643:4 12676:1 12861:1 12954:1 13068:1 13073:1 13078:2 13085:4 13199:1 13201:1 13227:1 13259:1 13301:1 13460:1 13502:1 13589:1 13908:1 13930:1 13967:1 14113:1 14142:1 14160:1 14266:1 14494:1 14516:1 14532:2 14586:1 14728:1 14735:1 14814:1 14867:1 14899:1 15078:1 15234:1 15260:1 15330:1 15430:1 15433:1 15446:1 15506:1 15527:1 15732:1 15734:1 15939:1 15967:1 15997:1 16018:1 16029:1 16052:1 16093:1 16144:1 16155:1 16173:1 16202:1 16235:1 16304:1 16438:1 16513:1 16668:1 16724:1 16779:2 16783:1 16796:1 16854:1 16877:1 16879:1 16884:1 17009:2 17046:1 17153:1 17207:1 17210:1 17308:1 17500:2 17503:1 17600:1 17633:1 17638:1 17675:1 17739:1 17761:1 17913:1 18044:1 18059:2 18068:1 18145:1 18292:1 18323:1 18570:1 18581:1 18610:1 18655:1 18748:1 18796:1 19012:1 19207:1 19311:1 19367:1 19373:1 19383:1 19573:1 19606:1 19693:1 19694:1 19841:1 19843:1 19852:1 19902:2 19904:1 19972:1 20098:1 20164:1 20224:1 20243:1 20267:3 20313:1 20342:1 20350:1 20418:2 20435:3 20440:1 20492:1 20496:1 20650:1 20683:1 20687:1 20763:1 20989:1 21048:1 21212:1 21240:1 21252:1 21299:1 21344:1 21355:1 21397:1 21408:1 21548:2 21647:1 21653:1 21662:1 21708:1 21715:1 21720:2 21756:1 21770:1 21779:1 21787:1 21814:1 21831:1 21850:1 21904:1 21910:1 22000:1 22032:2 22090:1 22111:1 22219:1 22231:1 22235:1 22425:1 22521:1 22623:1 22642:1 22729:1 22745:4 22772:1 22866:1 22941:1 22989:1 23029:1 23048:1 23087:1 23184:1 23272:1 23302:1 23386:2 23394:1 23489:1 23532:1 23606:1 10 8:1 11:3 13:1 31:1 68:1 106:1 184:1 474:1 476:1 489:1 548:1 657:1 895:1 898:1 951:1 1072:1 1093:1 1246:1 1283:1 1299:1 1349:1 1410:1 1422:2 1427:1 1430:1 1464:1 1494:1 1497:2 1533:1 1544:1 1574:1 1588:1 1607:1 1637:1 1639:1 1642:1 1685:1 1739:1 1789:1 1791:1 1865:1 1945:1 2039:1 2052:1 2191:1 2204:1 2234:1 2303:1 2315:1 2340:1 2345:1 2391:1 2401:1 2405:1 2423:1 2459:1 2521:1 2532:1 2538:2 2579:2 2637:4 2652:1 2658:1 2750:1 2756:1 2763:1 2852:1 2876:1 2881:1 2957:1 2962:2 2990:1 3078:1 3139:2 3217:1 3456:3 3470:2 3550:1 3552:1 3593:1 3631:1 3646:2 3686:1 3844:3 3857:1 3971:1 3996:1 4000:1 4029:1 4090:1 4222:1 4377:2 4537:1 4562:1 4730:3 4741:2 4747:1 4835:1 4844:1 4867:1 4979:1 5058:1 5165:1 5168:1 5174:1 5184:1 5271:1 5272:1 5411:1 5448:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5711:1 5776:1 5809:1 5859:1 5874:1 5877:1 5958:1 5980:1 6068:1 6134:1 6174:1 6235:1 6301:1 6362:1 6405:350 6440:1 6472:1 6510:2 6666:1 6677:1 6749:1 6779:1 6794:1 6808:1 6864:1 6896:1 6972:1 6991:1 6994:4 7014:1 7204:1 7256:1 7378:1 7390:1 7431:2 7453:1 7498:3 7506:1 7522:1 7559:1 7623:1 7633:1 7712:2 7715:1 7746:1 7772:1 7824:1 7853:2 7886:2 7893:1 7897:1 7912:1 7927:1 7989:1 8020:1 8056:2 8135:1 8173:1 8256:1 8295:1 8316:1 8324:1 8490:1 8506:1 8521:1 8690:2 8799:1 8824:1 8866:1 8930:1 8936:1 9127:1 9247:1 9296:1 9312:1 9322:1 9430:1 9445:1 9454:4 9489:1 9578:1 9802:2 9837:1 9920:1 9976:1 10126:1 10132:1 10151:1 10172:1 10174:1 10206:1 10253:1 10297:1 10305:1 10338:2 10409:1 10424:1 10493:1 10512:5 10559:1 10640:1 10727:1 10757:1 10894:1 10984:3 11059:1 11072:1 11100:1 11119:2 11141:2 11161:1 11174:1 11239:1 11300:1 11321:2 11339:1 11401:1 11481:2 11583:2 11626:1 11653:1 11706:1 11729:1 11765:1 11766:1 11809:1 12071:4 12077:1 12091:1 12092:2 12198:1 12303:1 12312:1 12391:1 12421:1 12478:1 12521:2 12547:1 12552:1 12554:1 12564:1 12602:3 12608:1 12619:1 12643:4 12676:1 12861:1 12954:1 13068:1 13073:1 13078:2 13085:4 13181:1 13199:1 13201:1 13227:1 13259:1 13301:2 13359:1 13460:1 13502:1 13589:1 13908:1 13930:1 13967:1 14113:1 14142:1 14160:1 14171:1 14200:1 14266:1 14308:1 14488:1 14494:1 14516:1 14532:2 14586:2 14728:1 14735:1 14814:1 14822:1 14867:1 14899:1 15078:1 15085:1 15138:1 15196:1 15234:1 15260:1 15330:1 15430:1 15433:1 15446:1 15506:1 15527:1 15732:1 15734:1 15939:1 15967:1 15997:1 16018:1 16029:1 16052:1 16093:1 16144:1 16155:1 16173:1 16202:1 16235:1 16304:1 16438:1 16460:1 16513:1 16668:1 16724:1 16779:2 16783:1 16796:1 16854:1 16877:1 16879:1 16884:1 16977:1 17009:3 17046:1 17153:1 17207:1 17210:1 17308:1 17327:1 17383:1 17410:1 17466:1 17500:2 17503:1 17600:1 17620:1 17633:1 17638:1 17675:1 17739:1 17761:1 17913:1 18044:1 18059:2 18068:1 18145:1 18292:1 18323:1 18570:1 18581:1 18610:1 18655:1 18742:1 18748:1 18796:1 19006:1 19012:1 19207:1 19241:1 19311:1 19367:1 19373:1 19383:1 19573:1 19606:1 19693:1 19694:1 19841:1 19843:1 19852:1 19883:1 19902:4 19904:1 19972:1 20078:1 20098:1 20164:1 20224:1 20243:1 20267:3 20313:1 20342:1 20350:1 20367:1 20418:2 20435:3 20440:1 20492:1 20496:1 20508:1 20650:1 20683:1 20687:1 20763:1 20989:1 21048:1 21212:1 21240:1 21252:1 21299:1 21344:1 21355:1 21397:1 21408:1 21548:2 21647:1 21653:1 21662:1 21708:1 21715:1 21720:2 21756:1 21770:1 21779:1 21786:1 21787:1 21814:1 21831:1 21850:1 21904:1 21910:1 22000:1 22032:2 22090:1 22111:1 22126:1 22185:1 22219:1 22231:1 22235:1 22388:1 22425:1 22469:1 22521:1 22623:1 22642:1 22729:1 22745:4 22772:1 22844:1 22866:1 22909:1 22941:1 22989:1 23012:1 23029:1 23048:1 23076:1 23087:1 23184:1 23223:1 23272:1 23302:1 23386:2 23394:1 23489:1 23532:1 23606:1 10 8:1 11:3 13:1 31:1 68:1 106:1 184:1 474:1 476:1 489:1 548:1 657:1 895:1 898:1 951:1 1072:1 1093:1 1246:1 1283:1 1299:1 1349:1 1410:1 1422:2 1427:1 1430:1 1464:1 1494:1 1497:2 1533:1 1544:1 1574:1 1588:1 1607:1 1637:1 1639:1 1642:1 1685:1 1739:1 1753:1 1789:1 1791:1 1864:1 1865:1 1945:1 2039:1 2052:1 2191:1 2204:1 2234:1 2303:1 2315:1 2340:1 2345:1 2391:1 2401:1 2405:1 2423:1 2459:1 2521:1 2532:1 2538:2 2579:2 2605:1 2637:4 2652:1 2658:1 2750:1 2756:1 2763:1 2852:1 2876:1 2881:1 2957:2 2962:2 2990:1 3078:1 3139:2 3217:1 3456:3 3470:2 3550:2 3552:1 3593:1 3631:1 3646:2 3686:1 3844:4 3857:1 3971:1 3996:1 4000:1 4029:1 4090:1 4222:1 4270:1 4377:2 4537:1 4562:1 4730:3 4741:2 4747:1 4835:1 4844:1 4867:1 4979:1 5058:1 5165:1 5168:1 5174:1 5184:1 5271:1 5272:1 5411:1 5448:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5711:1 5776:1 5809:1 5859:1 5874:1 5877:1 5958:1 5980:1 6068:1 6134:1 6174:1 6211:1 6235:1 6301:1 6362:1 6405:359 6440:1 6472:1 6510:2 6666:1 6677:1 6749:1 6779:1 6794:1 6808:1 6864:1 6896:1 6972:1 6977:1 6991:1 6994:5 7014:1 7204:1 7256:1 7378:1 7390:1 7431:2 7453:1 7498:3 7506:1 7522:1 7559:1 7623:1 7633:1 7712:2 7715:1 7746:1 7772:1 7824:1 7853:2 7886:2 7893:1 7897:1 7912:1 7927:1 7989:1 8020:1 8056:2 8135:1 8173:1 8256:1 8295:1 8316:1 8324:1 8490:1 8506:1 8521:1 8690:2 8799:1 8824:1 8866:1 8930:1 8936:1 9127:1 9247:1 9296:1 9312:1 9322:1 9362:1 9430:1 9445:1 9454:5 9489:1 9578:1 9802:2 9837:1 9920:1 9976:1 10126:1 10132:1 10151:1 10172:1 10174:1 10206:1 10253:1 10297:1 10305:1 10338:2 10409:1 10414:1 10424:1 10493:1 10512:6 10559:1 10640:1 10727:1 10757:1 10894:1 10984:4 11059:1 11072:1 11100:1 11119:2 11141:2 11161:1 11174:1 11239:1 11300:1 11321:2 11339:1 11401:1 11481:2 11583:2 11626:1 11653:1 11706:1 11729:1 11765:1 11766:1 11809:1 12071:5 12077:1 12091:1 12092:2 12198:1 12303:1 12312:1 12391:1 12421:1 12478:1 12521:2 12547:1 12552:1 12554:1 12564:1 12602:4 12608:1 12619:1 12643:4 12676:1 12861:1 12954:1 13068:1 13073:1 13078:2 13085:4 13181:1 13199:1 13201:1 13227:1 13259:1 13301:2 13359:1 13460:1 13502:1 13589:1 13908:1 13930:1 13967:1 14113:1 14142:1 14160:1 14171:1 14200:1 14266:1 14308:1 14488:1 14494:1 14516:1 14532:2 14586:3 14728:1 14735:1 14814:1 14822:1 14867:1 14899:1 15078:1 15085:1 15138:1 15196:1 15234:1 15260:1 15330:1 15430:1 15433:1 15446:1 15506:1 15527:1 15621:1 15732:1 15734:1 15939:1 15967:1 15997:1 16018:1 16029:1 16052:1 16093:1 16144:1 16155:1 16173:1 16202:1 16235:1 16304:1 16360:1 16438:1 16460:1 16513:1 16668:1 16724:1 16779:2 16783:1 16796:1 16854:1 16877:1 16879:1 16884:1 16977:1 17009:4 17046:1 17153:1 17207:1 17210:1 17308:1 17327:1 17383:1 17410:1 17466:1 17500:2 17503:1 17600:1 17620:1 17633:1 17638:1 17675:1 17739:1 17761:1 17913:1 18044:1 18059:2 18068:1 18145:1 18292:1 18323:1 18540:1 18570:1 18581:1 18610:1 18655:1 18742:1 18748:1 18796:1 18855:1 19006:1 19012:2 19207:1 19241:1 19311:1 19367:1 19373:1 19383:1 19573:1 19606:1 19693:1 19694:1 19841:1 19843:1 19852:1 19883:1 19902:5 19904:1 19972:1 20078:1 20098:1 20164:1 20224:1 20243:1 20267:3 20313:1 20342:1 20350:1 20367:1 20377:1 20418:2 20435:3 20440:1 20492:1 20496:1 20508:1 20650:1 20683:1 20687:1 20698:1 20763:1 20960:1 20989:1 21048:1 21212:1 21226:1 21240:1 21252:1 21299:1 21344:1 21355:1 21397:1 21408:1 21548:2 21647:1 21653:1 21662:1 21708:1 21715:1 21720:2 21756:1 21770:1 21779:1 21786:1 21787:1 21814:1 21831:1 21850:1 21904:1 21910:1 22000:1 22032:2 22090:1 22111:1 22126:1 22185:1 22219:1 22231:1 22235:1 22388:1 22425:1 22469:1 22496:1 22521:1 22623:1 22642:1 22729:1 22745:4 22772:1 22844:1 22866:1 22909:1 22941:1 22989:1 23012:1 23029:1 23048:1 23076:1 23087:1 23184:1 23223:1 23272:1 23302:1 23386:2 23394:1 23489:1 23532:1 23606:1 10 8:1 11:3 13:1 31:2 68:1 106:1 184:1 474:1 476:1 489:1 548:1 657:1 895:1 898:1 951:1 1072:1 1093:1 1167:1 1246:1 1283:1 1299:1 1349:1 1410:1 1422:2 1427:1 1430:1 1464:1 1494:1 1497:2 1533:1 1544:1 1569:1 1574:1 1588:2 1607:1 1622:1 1637:1 1639:1 1642:2 1685:1 1738:1 1739:1 1753:1 1789:1 1791:1 1862:1 1864:1 1865:1 1887:1 1945:1 2039:1 2052:1 2059:1 2074:1 2075:1 2191:1 2204:1 2234:1 2303:1 2315:1 2340:1 2345:1 2391:1 2397:1 2401:1 2405:1 2409:1 2423:1 2459:1 2521:1 2532:1 2538:2 2579:2 2605:1 2637:4 2652:1 2658:1 2750:1 2756:2 2763:1 2852:2 2876:1 2881:1 2957:2 2962:2 2990:1 3078:1 3139:2 3217:1 3456:3 3470:2 3550:2 3552:1 3593:1 3631:1 3646:2 3686:1 3844:4 3857:1 3891:1 3971:1 3996:1 4000:1 4029:1 4090:1 4222:1 4270:1 4377:2 4393:1 4537:1 4557:1 4562:1 4730:3 4741:2 4747:1 4835:1 4844:2 4867:1 4979:1 5058:1 5165:1 5168:1 5174:1 5184:1 5271:1 5272:1 5411:1 5448:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5711:1 5776:1 5809:1 5859:1 5874:1 5877:1 5958:1 5980:1 6068:1 6124:1 6134:1 6135:1 6174:1 6211:1 6235:1 6301:1 6362:1 6405:413 6440:1 6472:1 6510:2 6666:1 6677:1 6749:1 6779:1 6794:1 6808:1 6864:1 6896:1 6972:1 6977:1 6991:1 6994:6 7014:1 7197:1 7204:1 7256:1 7378:1 7390:1 7431:2 7453:1 7498:3 7506:1 7522:1 7559:1 7623:1 7633:1 7659:1 7671:1 7712:2 7715:1 7746:1 7772:1 7824:1 7853:2 7863:1 7886:2 7893:1 7897:1 7912:1 7927:1 7989:1 8020:1 8056:2 8099:1 8110:1 8135:1 8173:1 8256:1 8295:1 8316:1 8324:1 8490:1 8506:1 8521:1 8690:2 8799:1 8824:1 8849:1 8866:1 8930:1 8932:1 8936:1 9127:1 9247:1 9272:1 9296:1 9312:1 9322:1 9362:1 9430:1 9445:1 9454:6 9489:1 9571:1 9578:1 9802:2 9803:1 9837:1 9920:1 9976:1 10126:1 10132:1 10151:1 10172:1 10174:1 10206:1 10253:1 10297:1 10305:1 10338:2 10409:1 10414:1 10424:1 10493:1 10512:7 10559:1 10640:2 10727:1 10757:1 10894:1 10984:4 11059:1 11072:1 11100:1 11119:2 11141:2 11161:1 11174:1 11239:1 11300:1 11321:2 11339:1 11401:1 11481:2 11583:3 11626:1 11653:1 11706:1 11729:1 11765:1 11766:1 11809:1 12071:6 12077:1 12091:1 12092:2 12165:1 12198:1 12303:1 12312:1 12391:1 12397:1 12421:1 12478:1 12521:2 12547:1 12552:1 12554:1 12564:2 12602:4 12608:1 12613:1 12619:1 12643:4 12676:1 12861:1 12954:1 13068:1 13073:1 13078:2 13085:4 13128:2 13181:1 13199:1 13201:1 13227:1 13259:1 13301:2 13359:3 13460:1 13502:1 13589:1 13908:1 13930:1 13964:1 13967:1 14113:1 14130:1 14142:1 14160:1 14171:1 14200:1 14266:1 14308:1 14488:1 14494:1 14516:1 14532:2 14586:3 14639:1 14650:1 14728:1 14735:1 14814:1 14822:1 14842:1 14867:1 14899:1 14940:1 15078:1 15085:1 15138:1 15167:1 15196:1 15234:1 15260:1 15330:1 15404:1 15414:1 15430:1 15433:1 15446:1 15501:1 15506:1 15527:1 15621:1 15732:1 15734:1 15849:1 15904:1 15933:1 15939:1 15967:1 15981:1 15997:1 16018:1 16029:1 16052:1 16093:1 16144:1 16155:1 16173:1 16202:1 16235:1 16268:1 16304:1 16360:1 16401:1 16414:1 16438:1 16460:1 16513:1 16668:1 16694:1 16724:1 16779:2 16783:1 16796:1 16854:1 16877:1 16879:1 16884:1 16902:1 16977:1 17009:4 17046:1 17153:1 17164:1 17207:1 17210:1 17213:1 17308:1 17327:1 17383:1 17410:1 17466:1 17499:1 17500:2 17503:1 17600:1 17620:1 17633:1 17638:1 17664:1 17675:1 17733:1 17739:1 17761:1 17792:1 17859:1 17913:1 18044:1 18059:2 18068:1 18145:1 18292:1 18323:1 18493:1 18540:1 18570:1 18581:1 18610:1 18655:1 18742:1 18748:1 18796:1 18855:1 19006:1 19012:2 19207:1 19241:1 19311:1 19367:1 19373:1 19383:1 19573:1 19606:1 19693:1 19694:1 19788:1 19841:1 19843:2 19852:1 19883:1 19902:6 19904:1 19972:1 20064:1 20078:1 20098:1 20164:1 20224:1 20243:1 20267:3 20313:1 20318:1 20331:1 20342:1 20350:1 20367:1 20377:1 20418:2 20435:3 20440:1 20492:1 20496:1 20508:1 20555:1 20650:1 20683:1 20687:1 20698:1 20763:1 20960:1 20975:1 20989:1 21048:1 21212:1 21226:1 21240:1 21252:1 21299:1 21338:1 21344:1 21355:1 21397:1 21408:1 21503:1 21548:2 21565:1 21599:1 21647:1 21653:1 21662:1 21708:1 21715:1 21720:2 21756:1 21770:1 21772:1 21779:1 21786:1 21787:1 21814:1 21831:1 21850:1 21875:1 21904:1 21910:1 22000:1 22032:2 22090:1 22111:1 22126:1 22185:1 22219:1 22231:1 22235:1 22388:1 22425:1 22469:1 22496:1 22521:1 22623:1 22642:1 22729:1 22745:4 22772:1 22844:1 22866:1 22909:1 22941:1 22989:1 23012:1 23029:1 23048:1 23076:1 23087:1 23113:1 23184:1 23223:1 23272:1 23302:1 23386:2 23394:1 23489:1 23532:1 23606:1 10 8:1 11:3 13:1 31:2 68:1 106:1 184:1 474:1 476:1 489:1 548:1 657:1 895:1 898:1 951:1 1072:1 1093:1 1167:1 1246:1 1283:1 1299:1 1349:1 1410:1 1422:2 1427:1 1430:1 1464:1 1494:1 1497:2 1533:1 1544:1 1569:2 1574:1 1588:2 1607:1 1622:2 1637:1 1639:1 1642:3 1685:1 1738:2 1739:1 1753:1 1789:1 1791:1 1862:2 1864:1 1865:1 1887:2 1945:1 2039:1 2052:1 2059:1 2074:2 2075:1 2191:1 2204:1 2234:1 2303:1 2315:1 2340:1 2345:2 2391:1 2397:1 2401:1 2405:1 2409:2 2423:1 2459:1 2521:1 2532:1 2538:2 2579:2 2605:1 2637:4 2652:1 2658:1 2750:1 2756:2 2763:1 2852:2 2876:1 2881:1 2957:2 2962:2 2990:1 3078:1 3139:2 3217:1 3456:3 3470:2 3550:2 3552:1 3593:1 3631:1 3646:2 3686:1 3732:1 3844:4 3857:1 3891:2 3971:1 3996:1 4000:1 4029:1 4090:1 4222:1 4270:1 4377:2 4393:1 4537:1 4557:2 4562:1 4673:1 4678:1 4730:3 4741:2 4747:1 4803:1 4835:1 4844:3 4867:1 4979:1 5058:1 5165:1 5168:1 5174:1 5184:1 5230:1 5271:1 5272:1 5411:1 5448:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5711:1 5776:1 5809:1 5859:1 5874:1 5877:1 5958:1 5980:1 6053:1 6068:2 6124:1 6134:1 6135:2 6174:1 6211:1 6235:1 6301:1 6362:1 6405:436 6440:1 6472:1 6510:2 6666:1 6677:1 6749:1 6779:1 6794:1 6808:1 6864:1 6896:1 6972:1 6977:1 6991:1 6994:7 7014:1 7022:1 7024:1 7197:2 7204:1 7256:1 7378:1 7390:1 7431:2 7453:1 7498:3 7506:1 7522:1 7559:1 7623:1 7633:1 7659:2 7671:2 7712:2 7715:1 7746:1 7772:1 7824:1 7853:3 7863:1 7886:2 7893:1 7897:1 7912:1 7927:1 7989:1 8020:1 8056:2 8099:2 8110:2 8135:1 8173:1 8256:1 8295:1 8316:1 8324:1 8490:1 8506:1 8521:1 8690:2 8772:1 8799:1 8824:1 8849:1 8866:1 8930:1 8932:1 8936:1 9127:1 9167:1 9247:1 9272:1 9296:1 9312:1 9322:1 9362:1 9430:1 9445:1 9454:7 9489:1 9571:1 9578:1 9802:2 9803:1 9837:1 9920:1 9976:1 10126:1 10132:1 10151:1 10172:1 10174:1 10206:1 10253:1 10297:1 10305:1 10338:2 10409:1 10414:1 10424:1 10493:1 10512:8 10559:1 10640:2 10727:1 10757:1 10894:1 10984:4 11059:1 11072:1 11100:1 11119:2 11141:3 11161:1 11174:1 11239:1 11300:1 11321:2 11339:1 11401:1 11481:2 11539:1 11565:1 11583:3 11626:1 11653:1 11706:1 11729:1 11765:1 11766:1 11809:1 12071:7 12077:1 12091:1 12092:2 12165:2 12198:1 12303:1 12312:1 12391:1 12397:1 12421:1 12478:1 12521:2 12547:1 12552:1 12554:1 12564:2 12602:4 12608:1 12613:2 12619:1 12643:4 12676:1 12680:1 12861:1 12954:1 13068:1 13073:1 13078:2 13085:4 13128:2 13181:1 13199:1 13201:1 13227:1 13259:1 13301:2 13344:1 13359:3 13460:1 13502:1 13589:1 13908:1 13930:1 13964:1 13967:1 14113:1 14130:2 14142:1 14160:1 14171:1 14200:1 14266:1 14308:1 14488:1 14494:1 14516:1 14532:2 14586:3 14639:1 14650:1 14728:1 14735:1 14814:1 14822:1 14842:1 14867:1 14899:1 14940:2 15078:1 15085:1 15138:1 15167:2 15196:1 15234:1 15260:1 15330:1 15404:1 15414:1 15430:1 15433:1 15446:1 15501:1 15506:1 15527:1 15621:1 15732:1 15734:1 15849:2 15904:1 15933:1 15939:1 15967:1 15981:2 15997:1 16018:1 16029:1 16052:1 16093:1 16144:1 16155:1 16173:1 16202:1 16235:1 16268:1 16304:1 16360:1 16401:1 16414:2 16438:1 16460:1 16513:1 16668:1 16694:2 16724:1 16734:1 16742:1 16779:2 16783:1 16796:1 16854:1 16877:1 16879:1 16884:2 16902:2 16977:1 17009:4 17046:1 17153:1 17164:2 17207:1 17210:1 17213:1 17308:1 17327:1 17383:1 17410:1 17466:1 17499:2 17500:2 17503:1 17600:1 17620:1 17633:1 17638:1 17664:2 17675:1 17733:1 17739:1 17761:1 17792:1 17859:1 17913:1 17948:1 18044:1 18059:2 18068:1 18145:1 18292:1 18323:1 18324:1 18493:2 18540:1 18570:1 18581:1 18610:1 18655:1 18742:1 18748:1 18796:1 18855:1 19006:1 19012:2 19110:1 19207:1 19241:1 19311:1 19367:1 19373:1 19383:1 19522:1 19573:1 19606:1 19693:1 19694:1 19788:2 19841:1 19843:2 19852:1 19883:1 19902:7 19904:1 19972:1 20064:2 20078:1 20098:1 20164:1 20224:1 20243:1 20267:3 20313:1 20318:1 20331:2 20342:1 20350:1 20367:1 20377:1 20418:2 20435:3 20440:1 20492:1 20496:1 20508:1 20555:2 20650:1 20683:1 20687:1 20698:1 20763:1 20775:1 20960:1 20975:1 20989:1 21048:1 21212:1 21226:1 21240:1 21252:1 21299:1 21338:2 21344:1 21355:1 21397:1 21408:1 21503:2 21548:2 21565:1 21599:1 21647:1 21653:1 21662:1 21708:1 21715:1 21720:2 21756:1 21770:1 21772:1 21779:1 21786:1 21787:1 21814:1 21831:1 21850:1 21875:1 21904:1 21910:1 22000:1 22032:2 22090:1 22111:1 22126:1 22185:1 22219:1 22231:1 22235:1 22388:1 22425:1 22469:1 22496:1 22521:1 22623:1 22642:1 22729:1 22745:4 22772:1 22844:1 22866:1 22909:1 22941:1 22989:1 23012:1 23029:1 23048:1 23076:1 23087:1 23113:1 23184:1 23223:1 23272:1 23302:1 23386:2 23394:1 23489:1 23532:1 23606:1 10 8:1 11:3 13:1 31:2 68:1 106:1 128:1 184:1 394:1 474:1 476:1 489:1 548:1 657:1 895:1 898:1 951:1 981:1 1072:1 1093:1 1167:1 1246:2 1283:1 1299:1 1349:1 1410:1 1422:2 1427:1 1430:1 1464:1 1494:1 1497:2 1533:1 1544:1 1569:2 1574:1 1588:2 1607:1 1622:2 1637:1 1639:1 1642:3 1685:1 1738:2 1739:1 1753:1 1789:1 1791:1 1862:2 1864:1 1865:1 1887:2 1945:1 2039:1 2052:1 2059:1 2074:2 2075:1 2191:1 2204:1 2234:1 2303:1 2315:1 2340:1 2345:2 2391:1 2397:1 2401:1 2405:1 2409:2 2423:1 2459:1 2521:1 2532:1 2538:2 2579:2 2605:1 2637:4 2652:1 2658:1 2750:1 2756:2 2763:1 2852:2 2876:1 2881:1 2936:1 2957:2 2962:2 2990:1 3067:1 3078:1 3139:2 3217:1 3368:1 3456:3 3470:2 3542:1 3550:2 3552:2 3593:1 3631:1 3646:2 3686:1 3732:1 3844:5 3857:1 3891:2 3971:1 3996:1 4000:1 4029:1 4090:1 4147:1 4222:1 4270:1 4377:2 4393:1 4433:1 4537:1 4557:2 4562:1 4673:1 4678:1 4730:3 4741:2 4747:2 4785:1 4803:1 4835:1 4844:3 4867:1 4941:1 4946:1 4979:1 5058:1 5165:1 5168:1 5174:1 5184:1 5218:1 5230:1 5271:1 5272:1 5411:1 5448:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5660:1 5711:1 5776:1 5809:1 5859:1 5874:1 5877:1 5958:1 5980:1 6053:1 6068:2 6124:1 6134:1 6135:2 6174:1 6211:1 6235:1 6282:1 6301:1 6362:1 6405:469 6440:1 6472:1 6510:2 6666:1 6677:1 6749:1 6779:1 6794:1 6808:1 6864:1 6896:1 6972:1 6977:1 6991:1 6994:8 7014:1 7022:1 7024:1 7197:2 7204:1 7256:1 7378:1 7390:1 7431:2 7453:1 7498:3 7506:1 7522:1 7559:1 7623:1 7633:1 7659:2 7671:2 7712:2 7715:1 7746:1 7772:1 7824:1 7853:3 7863:1 7886:2 7893:1 7897:1 7912:1 7927:1 7989:1 8020:1 8056:2 8064:1 8099:2 8110:2 8135:1 8173:1 8256:1 8295:1 8316:1 8324:1 8490:1 8506:1 8521:2 8689:1 8690:2 8720:1 8772:1 8799:1 8824:1 8849:1 8866:1 8930:1 8932:1 8936:1 9127:1 9167:1 9247:1 9272:1 9296:1 9312:1 9322:1 9362:1 9430:1 9445:1 9454:8 9489:1 9491:1 9571:1 9578:1 9802:2 9803:2 9837:1 9920:1 9976:1 10126:1 10132:1 10151:1 10172:1 10174:1 10206:1 10253:1 10297:1 10305:1 10338:2 10409:1 10414:1 10424:1 10444:1 10493:1 10512:9 10559:1 10640:2 10718:1 10727:1 10757:1 10894:1 10984:5 11059:1 11072:1 11100:1 11119:2 11141:3 11161:1 11174:1 11239:1 11300:1 11321:2 11339:1 11401:1 11481:2 11539:1 11565:1 11583:3 11626:1 11653:1 11706:1 11729:1 11765:1 11766:1 11809:1 12045:1 12071:8 12077:1 12091:1 12092:2 12165:2 12198:1 12212:1 12231:1 12303:1 12312:1 12391:1 12397:1 12421:1 12478:1 12521:2 12547:1 12552:1 12554:1 12564:2 12602:5 12608:1 12613:2 12619:1 12643:5 12676:1 12680:1 12861:1 12954:1 12980:1 13068:1 13073:1 13078:2 13085:4 13128:2 13181:1 13199:1 13201:1 13227:1 13259:1 13301:2 13344:1 13359:3 13460:1 13475:1 13502:1 13571:1 13589:1 13908:1 13930:1 13964:1 13967:1 14113:1 14130:2 14142:1 14160:1 14171:1 14200:1 14266:1 14308:1 14488:1 14494:1 14516:1 14532:2 14586:4 14639:1 14650:1 14728:1 14735:1 14814:1 14822:1 14842:1 14867:1 14889:1 14899:1 14940:2 14984:1 15078:1 15085:1 15138:1 15167:2 15196:1 15234:1 15260:1 15330:1 15404:1 15414:1 15430:1 15433:1 15446:1 15501:1 15506:1 15527:1 15621:1 15732:1 15734:1 15735:1 15746:1 15849:2 15904:1 15933:1 15939:1 15967:1 15981:2 15997:1 16018:1 16029:1 16052:1 16093:1 16144:1 16155:1 16173:1 16202:1 16207:1 16235:1 16268:1 16304:1 16360:1 16401:1 16413:1 16414:2 16438:1 16460:1 16513:1 16668:1 16694:2 16724:1 16734:1 16742:1 16779:3 16783:1 16796:1 16845:1 16854:1 16877:1 16879:1 16884:2 16902:2 16948:1 16977:1 17009:5 17046:1 17153:1 17164:2 17207:1 17210:1 17213:1 17308:1 17327:1 17383:1 17408:1 17410:1 17466:1 17499:2 17500:2 17503:1 17600:1 17620:1 17633:1 17636:1 17638:1 17664:2 17675:1 17732:1 17733:1 17739:1 17761:1 17792:1 17859:1 17913:1 17948:1 18044:1 18059:2 18068:1 18145:1 18252:1 18292:1 18323:1 18324:1 18493:2 18540:1 18570:1 18581:1 18610:1 18655:1 18666:1 18742:1 18748:1 18796:1 18855:1 18910:1 19006:1 19012:2 19110:1 19174:1 19203:1 19207:1 19241:1 19311:1 19367:2 19373:1 19383:1 19522:1 19573:1 19606:1 19667:1 19693:1 19694:1 19788:2 19841:1 19843:2 19852:1 19883:1 19902:8 19904:1 19972:1 20064:2 20078:1 20091:1 20098:1 20164:1 20224:1 20243:1 20267:3 20313:1 20318:1 20331:2 20342:1 20350:1 20367:1 20377:1 20418:2 20435:3 20440:1 20479:1 20492:1 20496:1 20508:1 20555:2 20650:1 20683:1 20687:1 20698:1 20763:1 20775:1 20960:1 20975:1 20989:1 21048:1 21162:1 21174:1 21212:1 21226:1 21240:1 21252:1 21299:1 21338:2 21344:1 21355:1 21397:1 21408:1 21503:2 21548:2 21565:1 21599:1 21647:1 21653:1 21662:1 21708:1 21715:1 21720:2 21756:1 21770:1 21772:1 21779:1 21786:1 21787:1 21814:1 21831:1 21850:1 21875:1 21887:1 21904:1 21910:1 22000:1 22032:2 22090:1 22111:1 22126:1 22185:1 22219:1 22231:1 22235:1 22388:1 22425:1 22469:1 22492:1 22496:1 22521:1 22623:1 22625:1 22642:1 22729:1 22745:4 22772:1 22844:1 22866:1 22909:1 22941:1 22989:1 23012:1 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23184:1 23223:1 23272:1 23293:1 23302:1 23386:2 23394:1 23489:1 23532:1 23606:1 10 8:1 11:3 13:1 31:2 68:1 106:1 128:1 184:1 394:2 474:1 476:1 489:1 548:1 657:1 805:1 895:1 898:1 951:1 981:1 1072:1 1093:1 1167:1 1246:2 1283:1 1299:1 1349:1 1410:1 1422:2 1427:1 1430:1 1464:1 1494:1 1497:2 1533:1 1544:1 1569:2 1574:1 1588:2 1607:1 1622:2 1637:1 1639:1 1642:3 1685:1 1738:2 1739:1 1753:1 1789:1 1791:1 1862:2 1864:1 1865:1 1887:2 1945:1 2039:1 2052:1 2059:1 2074:2 2075:1 2191:1 2204:1 2234:1 2303:1 2315:1 2340:1 2345:2 2391:1 2397:1 2401:1 2405:1 2409:2 2423:1 2459:1 2521:1 2532:1 2538:2 2579:2 2605:1 2637:4 2652:1 2658:1 2750:1 2756:2 2763:1 2852:2 2876:1 2881:1 2936:1 2957:2 2962:3 2990:2 2997:1 3067:1 3078:1 3139:2 3217:1 3368:2 3456:3 3470:2 3542:1 3550:2 3552:2 3593:1 3627:1 3631:1 3646:2 3686:1 3732:1 3844:5 3857:1 3891:2 3971:1 3996:1 4000:1 4029:1 4090:1 4147:1 4222:1 4270:1 4377:2 4393:1 4433:2 4444:1 4537:1 4557:2 4562:1 4673:1 4678:1 4730:3 4741:2 4747:2 4785:1 4803:1 4827:1 4835:1 4844:3 4867:1 4941:2 4946:1 4979:1 5058:1 5165:1 5168:1 5174:1 5184:1 5218:1 5230:1 5271:1 5272:1 5411:1 5448:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5660:2 5711:1 5776:1 5809:1 5859:1 5874:1 5877:1 5958:1 5980:1 6053:1 6068:2 6124:1 6133:1 6134:1 6135:2 6174:1 6211:1 6235:1 6282:1 6301:1 6362:1 6405:514 6440:1 6472:1 6510:2 6666:1 6677:1 6749:1 6779:1 6794:1 6808:1 6864:1 6896:1 6972:1 6977:1 6991:1 6994:8 7014:1 7022:1 7024:1 7197:2 7204:1 7256:1 7378:1 7390:1 7431:2 7453:1 7498:3 7506:1 7522:2 7559:1 7623:1 7633:1 7659:2 7671:2 7712:2 7715:1 7746:1 7772:1 7824:1 7853:3 7863:1 7886:2 7893:1 7897:1 7912:1 7927:1 7989:1 8020:1 8054:1 8056:2 8064:1 8099:2 8110:2 8135:1 8173:1 8256:1 8295:1 8316:1 8324:1 8490:1 8506:1 8521:2 8689:1 8690:2 8720:1 8772:1 8799:1 8824:1 8849:1 8866:1 8891:1 8896:1 8930:1 8932:1 8936:1 9127:1 9167:1 9247:2 9272:1 9296:1 9312:1 9322:1 9362:1 9430:1 9445:1 9454:8 9489:1 9491:2 9571:1 9578:2 9802:2 9803:2 9837:1 9920:1 9976:1 10126:1 10132:1 10151:1 10172:1 10174:1 10206:1 10253:1 10297:1 10305:1 10338:2 10409:1 10414:1 10424:1 10444:2 10493:1 10512:9 10559:1 10640:2 10718:1 10727:2 10757:1 10894:1 10970:1 10984:5 11059:1 11072:1 11100:1 11119:3 11141:3 11161:1 11174:1 11183:1 11239:1 11300:1 11321:2 11339:1 11401:1 11481:2 11539:1 11565:1 11583:3 11626:1 11653:1 11706:1 11729:1 11765:1 11766:1 11809:1 12045:1 12071:8 12077:1 12091:1 12092:2 12165:2 12198:1 12212:1 12231:1 12303:1 12312:1 12391:2 12397:1 12421:1 12478:1 12521:2 12547:1 12552:1 12554:1 12564:2 12602:5 12608:1 12613:2 12619:1 12643:6 12676:1 12680:1 12861:1 12954:1 12980:1 13068:1 13073:1 13078:2 13085:4 13128:2 13181:1 13199:1 13201:1 13227:1 13259:1 13301:2 13344:1 13359:3 13460:1 13475:2 13502:1 13571:2 13589:1 13665:1 13703:1 13908:1 13930:1 13964:1 13967:1 14113:1 14130:2 14142:2 14160:1 14171:1 14200:1 14266:1 14308:1 14488:1 14494:1 14516:1 14532:2 14586:4 14639:1 14650:1 14671:1 14728:1 14735:1 14814:1 14822:1 14842:1 14867:1 14889:2 14899:1 14940:2 14984:1 15078:1 15085:1 15127:1 15138:1 15167:2 15196:1 15234:1 15260:1 15330:1 15404:1 15414:1 15430:1 15433:1 15446:1 15501:1 15506:1 15527:1 15621:1 15732:1 15734:1 15735:2 15746:2 15785:1 15849:2 15904:1 15933:1 15939:1 15967:1 15981:2 15997:1 16018:1 16029:1 16052:1 16088:1 16093:1 16144:1 16155:1 16173:1 16202:1 16207:2 16235:1 16268:1 16304:1 16360:1 16401:1 16413:1 16414:2 16438:1 16460:1 16513:1 16668:1 16694:2 16724:1 16734:1 16742:1 16779:4 16783:1 16796:1 16845:1 16854:1 16877:1 16879:1 16884:2 16902:2 16948:2 16977:1 17009:5 17046:1 17153:1 17164:2 17207:1 17210:1 17213:1 17308:1 17327:1 17383:1 17408:2 17410:1 17466:1 17499:2 17500:2 17503:1 17600:1 17620:1 17633:1 17636:1 17638:1 17664:2 17675:1 17732:2 17733:1 17739:1 17761:1 17792:1 17859:1 17913:1 17924:1 17948:1 18044:1 18059:2 18068:1 18145:1 18252:1 18292:1 18323:1 18324:1 18493:2 18540:1 18570:1 18581:1 18610:1 18653:1 18655:1 18666:1 18685:1 18700:1 18742:1 18748:1 18796:1 18855:1 18910:2 19006:1 19012:2 19110:1 19174:2 19203:2 19207:1 19241:1 19311:1 19367:2 19373:1 19383:1 19522:1 19573:1 19606:1 19667:2 19693:1 19694:1 19788:2 19841:1 19843:2 19852:1 19883:1 19902:8 19904:1 19972:1 20064:2 20078:1 20091:1 20098:1 20164:1 20224:1 20243:1 20267:3 20313:1 20318:1 20331:2 20342:1 20350:1 20367:1 20377:1 20418:2 20435:3 20440:1 20479:2 20492:1 20493:1 20496:1 20508:1 20555:2 20650:1 20683:1 20687:1 20698:1 20763:1 20775:1 20960:1 20975:1 20989:1 21048:1 21162:2 21174:1 21212:1 21226:1 21240:1 21252:1 21299:1 21338:2 21344:1 21355:1 21397:1 21408:1 21503:2 21548:2 21565:1 21599:1 21647:2 21653:1 21662:1 21708:1 21715:1 21720:2 21756:1 21770:1 21772:1 21779:1 21786:1 21787:1 21814:1 21831:1 21850:1 21875:1 21887:1 21904:1 21910:1 22000:1 22032:2 22090:1 22111:1 22126:1 22135:1 22185:1 22219:1 22231:1 22235:1 22388:1 22425:1 22469:1 22492:1 22496:1 22521:1 22623:1 22625:1 22642:1 22729:1 22745:4 22772:1 22844:1 22866:1 22891:1 22909:1 22941:1 22989:1 23012:1 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23184:1 23223:1 23272:1 23293:1 23302:1 23386:2 23394:1 23429:1 23489:1 23532:1 23606:1 10 8:1 11:3 13:1 31:2 68:1 106:1 128:1 184:1 394:3 474:1 476:1 489:1 548:1 657:1 764:1 805:1 895:1 898:1 949:1 951:1 981:1 1072:1 1093:1 1167:1 1246:2 1283:1 1299:1 1349:1 1410:1 1422:2 1427:1 1430:1 1436:1 1464:1 1494:1 1497:2 1533:1 1544:1 1569:2 1574:1 1588:2 1607:1 1622:2 1637:1 1639:1 1642:3 1685:1 1738:2 1739:1 1753:1 1789:1 1791:1 1862:2 1864:1 1865:1 1887:2 1945:1 2039:1 2052:1 2059:1 2074:2 2075:1 2191:1 2204:1 2234:1 2303:1 2315:1 2340:1 2345:2 2391:1 2397:1 2401:1 2405:1 2409:2 2423:1 2459:1 2521:1 2532:1 2538:2 2579:2 2605:1 2637:4 2652:1 2658:1 2750:1 2756:3 2763:1 2852:2 2876:1 2881:1 2936:1 2957:2 2962:3 2990:2 2997:1 3067:1 3078:1 3139:2 3217:1 3318:1 3368:2 3456:3 3470:2 3542:1 3550:2 3552:2 3593:1 3627:1 3631:1 3639:1 3646:2 3686:1 3732:1 3844:5 3857:1 3891:2 3971:1 3996:1 4000:1 4029:1 4090:1 4147:1 4222:1 4270:1 4338:1 4377:2 4393:1 4433:3 4444:1 4537:1 4557:2 4562:1 4665:1 4673:1 4678:1 4730:4 4741:2 4747:2 4785:1 4803:1 4827:1 4835:1 4844:3 4867:1 4941:3 4946:1 4979:1 5039:1 5058:1 5165:2 5168:1 5174:1 5184:1 5218:1 5230:1 5271:1 5272:1 5318:1 5334:1 5411:1 5448:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5660:3 5711:1 5776:1 5809:1 5859:1 5874:1 5877:1 5958:1 5980:1 6053:1 6068:2 6124:1 6133:1 6134:1 6135:2 6174:1 6211:1 6235:1 6282:1 6283:1 6301:1 6362:1 6405:574 6440:1 6472:1 6510:2 6666:1 6677:1 6749:1 6779:1 6794:1 6808:1 6864:1 6896:1 6972:1 6977:1 6991:1 6994:8 7014:1 7022:1 7024:1 7197:2 7204:1 7256:1 7378:1 7388:1 7390:1 7431:2 7453:1 7498:3 7506:1 7522:2 7559:1 7623:1 7633:1 7659:2 7671:2 7712:2 7715:1 7746:1 7772:1 7793:1 7824:1 7853:3 7863:1 7886:2 7893:1 7897:1 7912:2 7927:1 7989:1 8020:1 8054:1 8056:2 8064:1 8099:2 8110:2 8135:1 8173:1 8256:1 8295:1 8316:1 8324:1 8490:1 8506:1 8521:2 8689:1 8690:2 8720:1 8772:1 8799:1 8819:1 8824:1 8849:1 8866:1 8891:1 8896:1 8930:1 8932:1 8936:1 9082:1 9127:1 9167:1 9247:2 9272:1 9296:1 9312:1 9322:1 9362:1 9430:1 9445:1 9454:8 9489:1 9491:2 9571:1 9578:2 9802:2 9803:2 9822:1 9837:1 9920:1 9943:1 9976:1 10022:1 10126:1 10132:1 10151:1 10172:1 10174:1 10206:1 10253:1 10297:1 10305:1 10338:2 10409:1 10414:1 10424:1 10444:3 10493:1 10512:9 10559:1 10640:2 10667:1 10718:1 10727:2 10757:1 10894:1 10970:1 10984:5 11059:1 11072:1 11100:1 11119:3 11126:1 11141:3 11161:1 11174:1 11183:1 11239:1 11300:1 11321:2 11339:1 11401:1 11481:2 11539:1 11565:1 11583:3 11626:1 11653:1 11706:1 11729:1 11765:1 11766:1 11809:1 12045:1 12071:8 12077:1 12091:1 12092:2 12165:2 12198:1 12212:1 12231:1 12303:1 12312:1 12391:2 12397:1 12421:1 12478:1 12521:2 12523:1 12547:1 12552:1 12554:1 12564:2 12602:5 12608:1 12613:2 12619:1 12643:6 12676:2 12680:1 12811:1 12828:1 12861:1 12954:1 12980:1 13068:1 13073:1 13078:2 13085:4 13128:2 13181:1 13199:1 13201:1 13227:1 13259:1 13301:2 13344:1 13359:3 13460:1 13475:3 13502:1 13571:3 13589:1 13665:1 13670:1 13703:1 13887:1 13908:1 13930:1 13964:1 13967:1 14113:1 14130:2 14142:2 14160:1 14171:1 14200:1 14266:1 14308:1 14488:1 14494:1 14516:1 14532:2 14586:4 14639:1 14650:1 14671:1 14728:1 14735:1 14814:1 14822:1 14842:1 14846:1 14867:1 14889:3 14899:1 14940:2 14984:1 15078:1 15085:1 15127:1 15138:1 15167:2 15196:1 15234:1 15260:1 15330:1 15404:1 15414:1 15430:1 15433:1 15446:1 15501:1 15506:1 15527:1 15544:1 15621:1 15637:1 15732:1 15734:1 15735:3 15746:3 15785:1 15849:2 15904:1 15933:1 15939:1 15967:1 15981:2 15997:1 16018:1 16029:1 16052:1 16088:1 16093:1 16144:1 16155:1 16173:1 16184:1 16202:1 16207:3 16235:1 16268:1 16304:1 16360:1 16401:1 16413:1 16414:2 16416:1 16438:1 16460:1 16513:1 16668:1 16694:2 16724:1 16734:1 16742:1 16779:4 16783:1 16796:1 16845:1 16854:1 16877:1 16879:1 16884:2 16902:2 16948:3 16977:1 17009:5 17046:1 17153:1 17164:2 17207:1 17210:1 17213:1 17308:1 17327:1 17383:1 17408:3 17410:1 17466:1 17499:2 17500:2 17503:1 17600:1 17620:1 17633:1 17636:1 17638:1 17642:1 17664:2 17675:1 17732:3 17733:1 17739:1 17761:1 17792:1 17859:1 17913:1 17924:1 17948:1 18044:1 18059:2 18068:1 18145:1 18252:1 18292:1 18323:1 18324:1 18493:2 18540:1 18570:1 18581:1 18610:1 18653:1 18655:1 18666:1 18685:1 18700:1 18742:1 18748:1 18796:1 18855:1 18910:3 18926:1 19002:1 19006:1 19012:2 19110:1 19174:3 19203:3 19207:1 19241:1 19291:1 19311:1 19367:2 19373:1 19383:1 19522:1 19573:1 19606:1 19667:3 19693:1 19694:1 19788:2 19841:1 19843:3 19852:1 19883:1 19902:8 19904:1 19972:1 20064:2 20077:1 20078:1 20091:1 20098:1 20164:1 20224:1 20243:1 20267:3 20313:1 20318:1 20331:2 20342:1 20350:2 20367:1 20377:1 20418:2 20435:3 20440:1 20479:3 20492:1 20493:1 20496:1 20508:1 20555:2 20650:1 20682:1 20683:1 20687:1 20698:1 20763:2 20766:1 20775:1 20960:1 20975:1 20989:1 21023:1 21043:1 21048:1 21162:3 21174:1 21185:1 21212:1 21226:1 21240:1 21252:1 21299:1 21338:2 21344:1 21355:1 21397:1 21408:1 21503:2 21548:2 21565:1 21599:1 21647:3 21653:1 21662:1 21708:1 21715:1 21720:2 21756:1 21770:1 21772:1 21779:1 21786:1 21787:1 21814:1 21831:1 21850:1 21875:1 21887:1 21904:1 21910:1 22000:1 22032:2 22090:1 22111:1 22126:1 22135:1 22185:1 22219:1 22231:1 22235:1 22388:1 22425:1 22469:1 22492:1 22496:1 22521:1 22623:1 22625:1 22642:1 22729:1 22745:4 22772:1 22844:1 22866:1 22891:1 22909:1 22941:1 22989:1 23012:1 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23184:1 23223:1 23272:1 23293:1 23302:1 23386:2 23394:1 23429:1 23489:1 23532:1 23606:1 10 8:1 11:3 13:1 31:2 68:1 106:1 117:1 128:1 184:1 394:4 429:1 474:1 476:1 489:1 548:1 657:1 764:1 805:1 895:1 898:1 949:1 951:1 981:1 1072:1 1093:1 1167:1 1246:3 1283:1 1297:1 1299:1 1349:1 1410:1 1422:2 1427:1 1430:1 1436:1 1464:1 1494:1 1497:2 1533:1 1544:1 1569:2 1574:1 1588:2 1607:1 1622:2 1637:1 1639:1 1642:3 1685:1 1738:2 1739:1 1753:1 1789:1 1791:1 1862:2 1864:1 1865:1 1887:2 1945:1 2039:1 2040:1 2052:1 2059:1 2068:1 2074:2 2075:1 2191:1 2204:1 2234:1 2303:1 2315:1 2340:1 2345:2 2391:1 2397:1 2401:1 2405:1 2409:2 2423:1 2459:1 2521:1 2532:1 2538:2 2579:2 2605:1 2637:4 2652:1 2658:1 2750:1 2756:3 2763:1 2852:2 2876:1 2881:1 2929:1 2936:1 2957:2 2962:3 2990:2 2997:3 3067:1 3078:1 3139:2 3217:1 3318:1 3368:3 3456:3 3470:2 3542:1 3550:2 3552:2 3593:1 3627:1 3631:1 3639:1 3646:2 3686:1 3732:1 3844:5 3857:1 3891:2 3971:1 3996:1 4000:1 4029:1 4090:1 4147:1 4222:1 4270:1 4338:1 4377:2 4393:1 4433:4 4444:1 4537:1 4557:2 4562:1 4665:1 4673:1 4678:1 4730:4 4741:2 4747:2 4785:1 4803:1 4827:2 4835:1 4844:3 4867:1 4941:4 4946:1 4979:1 5039:1 5058:1 5165:2 5168:1 5174:1 5184:1 5218:1 5230:1 5271:1 5272:1 5318:1 5334:1 5411:1 5448:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5660:4 5711:1 5776:1 5809:1 5859:1 5874:1 5877:1 5941:1 5958:1 5980:1 5999:1 6053:1 6068:2 6124:1 6133:1 6134:1 6135:2 6174:1 6211:1 6235:1 6282:1 6283:1 6301:1 6362:1 6405:622 6440:1 6472:1 6510:2 6666:1 6677:1 6749:1 6779:1 6794:1 6808:1 6864:1 6896:1 6972:1 6977:1 6991:1 6994:8 7014:1 7022:1 7024:1 7094:1 7197:2 7204:1 7256:1 7378:1 7388:1 7390:1 7431:2 7453:1 7498:3 7506:1 7522:2 7559:1 7623:1 7633:1 7659:2 7671:2 7712:2 7715:1 7746:1 7772:1 7793:1 7824:1 7844:1 7853:3 7863:1 7886:2 7893:1 7897:1 7912:3 7927:1 7989:1 8020:1 8052:1 8054:1 8056:2 8064:1 8099:2 8110:2 8135:1 8173:1 8256:1 8295:1 8316:1 8324:1 8439:1 8490:1 8506:1 8517:1 8521:2 8689:1 8690:2 8720:1 8772:1 8799:1 8819:1 8824:1 8849:1 8866:1 8891:2 8896:1 8930:1 8932:1 8936:1 8958:2 9082:1 9127:1 9167:1 9247:2 9272:1 9296:1 9312:1 9322:1 9362:1 9430:1 9445:1 9454:8 9489:1 9491:3 9571:1 9578:2 9680:1 9802:3 9803:2 9822:1 9837:1 9920:1 9943:1 9976:1 10022:1 10126:1 10132:1 10151:1 10172:1 10174:1 10206:1 10253:1 10287:1 10297:1 10305:1 10338:2 10409:1 10414:1 10424:1 10444:4 10493:1 10512:9 10559:1 10640:2 10667:1 10718:1 10727:2 10757:1 10894:1 10970:1 10984:5 11059:1 11072:1 11100:1 11119:3 11126:1 11141:3 11161:1 11174:1 11183:1 11239:1 11300:1 11321:2 11339:2 11401:1 11453:1 11481:2 11528:1 11539:1 11565:1 11583:3 11626:1 11644:1 11653:1 11706:1 11729:1 11765:1 11766:1 11809:1 12045:1 12071:8 12077:1 12091:1 12092:2 12165:2 12198:1 12212:1 12231:1 12303:1 12304:1 12312:1 12391:2 12397:1 12421:1 12478:1 12521:2 12523:1 12528:1 12547:1 12552:1 12554:1 12564:2 12602:5 12608:1 12613:2 12619:1 12643:6 12676:2 12680:1 12811:1 12828:1 12861:1 12954:1 12980:1 12997:1 13038:1 13068:1 13073:1 13078:2 13084:1 13085:4 13128:2 13181:1 13199:1 13201:2 13227:1 13259:1 13293:1 13301:2 13344:1 13359:4 13460:1 13475:4 13502:1 13571:4 13589:1 13665:2 13670:1 13703:2 13799:2 13887:1 13908:1 13930:1 13964:1 13967:1 14113:1 14130:2 14142:2 14160:1 14171:1 14200:1 14266:1 14308:1 14488:1 14494:1 14516:1 14532:2 14586:4 14639:1 14650:1 14671:2 14728:1 14735:1 14814:1 14822:1 14842:1 14846:1 14867:1 14889:4 14899:1 14940:2 14984:1 15078:1 15085:1 15127:3 15138:1 15167:2 15185:1 15196:1 15234:1 15260:1 15330:1 15404:1 15414:1 15430:2 15433:1 15446:1 15501:1 15506:1 15527:1 15544:1 15621:1 15637:1 15679:1 15732:1 15734:1 15735:4 15746:4 15785:1 15849:2 15904:1 15933:2 15939:1 15967:1 15981:2 15997:1 16018:1 16029:1 16052:1 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:1 16202:1 16207:4 16235:1 16268:1 16304:1 16360:1 16401:1 16413:1 16414:2 16416:1 16438:1 16460:1 16513:1 16668:1 16694:2 16724:1 16734:1 16742:1 16779:4 16783:1 16796:1 16845:1 16854:1 16877:1 16879:1 16884:2 16902:2 16948:4 16977:1 17009:5 17046:1 17153:1 17159:2 17164:2 17207:1 17210:1 17213:1 17307:1 17308:1 17327:1 17359:1 17383:1 17408:4 17410:1 17466:1 17499:2 17500:2 17503:1 17600:1 17620:1 17633:1 17636:1 17638:1 17642:1 17664:2 17675:1 17732:4 17733:1 17739:1 17761:1 17792:1 17859:1 17913:1 17924:2 17948:1 18044:1 18059:2 18068:1 18145:1 18252:1 18292:1 18323:1 18324:1 18493:2 18540:1 18570:1 18581:1 18610:1 18653:2 18655:1 18666:1 18685:2 18700:1 18742:1 18748:1 18796:1 18855:1 18910:4 18926:1 19002:1 19006:1 19012:2 19110:1 19174:4 19203:4 19207:1 19230:1 19241:1 19270:1 19271:1 19291:1 19311:1 19367:2 19373:1 19383:1 19411:1 19522:1 19573:1 19606:1 19667:4 19693:1 19694:1 19788:2 19841:1 19843:3 19852:1 19883:1 19902:8 19904:1 19909:1 19972:1 20048:1 20064:2 20077:1 20078:1 20091:1 20098:1 20164:1 20224:1 20243:1 20267:3 20270:1 20313:1 20318:1 20331:2 20342:1 20350:2 20367:1 20377:1 20418:2 20435:3 20440:1 20479:4 20492:1 20493:2 20496:1 20508:1 20555:2 20650:1 20682:1 20683:1 20687:1 20698:1 20763:2 20766:1 20775:1 20873:1 20960:1 20975:1 20989:1 21023:1 21043:1 21048:1 21162:4 21174:1 21185:1 21212:1 21226:1 21240:1 21252:1 21299:1 21338:2 21344:1 21355:1 21397:1 21408:1 21432:1 21441:1 21503:2 21548:2 21565:1 21599:1 21647:3 21653:1 21662:1 21708:1 21715:1 21720:2 21756:1 21770:1 21772:1 21779:1 21786:1 21787:1 21814:1 21831:1 21850:1 21875:1 21887:1 21904:1 21910:1 22000:1 22032:2 22090:1 22111:1 22126:1 22135:1 22185:1 22198:1 22219:1 22231:1 22235:1 22388:1 22425:1 22469:1 22492:1 22496:1 22521:1 22623:1 22625:1 22642:1 22729:1 22745:4 22772:2 22844:1 22866:1 22891:1 22909:1 22941:1 22989:1 23012:1 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23184:1 23223:1 23272:1 23293:1 23302:1 23386:2 23394:1 23429:1 23489:1 23490:1 23506:1 23532:1 23600:1 23606:1 23656:1 10 8:1 11:3 13:1 31:2 68:1 106:1 117:1 128:1 184:1 394:5 429:1 474:1 476:1 489:1 541:1 548:1 657:1 764:1 805:1 895:1 898:1 949:2 951:1 981:1 1072:1 1093:1 1167:2 1188:1 1246:3 1248:1 1283:1 1297:1 1299:1 1349:1 1410:1 1422:2 1427:1 1430:1 1436:1 1449:1 1464:1 1494:1 1497:2 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:2 1637:1 1639:1 1642:3 1685:1 1738:2 1739:1 1753:1 1784:1 1789:1 1791:1 1862:3 1864:1 1865:1 1887:2 1944:1 1945:1 2039:1 2040:1 2050:1 2052:1 2059:1 2068:1 2074:2 2075:1 2191:1 2204:1 2234:1 2303:1 2315:1 2340:1 2345:2 2391:1 2397:1 2401:1 2405:1 2407:1 2409:2 2423:1 2459:1 2515:1 2521:1 2532:1 2538:2 2579:2 2605:1 2637:4 2652:1 2658:1 2750:1 2756:3 2763:1 2852:2 2876:1 2881:1 2929:1 2936:1 2957:2 2962:3 2990:2 2997:3 3039:1 3067:1 3068:1 3078:1 3139:2 3217:1 3276:1 3318:1 3368:3 3456:4 3470:2 3492:1 3542:1 3550:2 3552:2 3593:1 3594:1 3627:1 3631:1 3639:1 3646:2 3686:1 3732:1 3844:5 3857:1 3891:2 3971:1 3996:1 4000:1 4029:1 4090:1 4109:1 4147:1 4222:1 4270:1 4286:1 4298:1 4338:1 4377:2 4393:1 4433:5 4444:1 4487:1 4537:1 4557:4 4562:1 4665:2 4673:1 4678:1 4730:4 4741:2 4747:2 4778:1 4785:1 4803:1 4813:1 4827:3 4835:1 4844:3 4867:1 4877:1 4941:5 4946:1 4979:1 5039:1 5058:1 5165:2 5168:1 5174:1 5184:1 5218:1 5230:1 5271:1 5272:1 5318:1 5334:1 5411:1 5448:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5660:5 5711:1 5776:1 5809:1 5833:1 5859:1 5874:1 5877:1 5932:1 5941:1 5958:1 5980:1 5999:1 6053:1 6068:2 6124:2 6133:1 6134:1 6135:3 6174:1 6211:1 6235:1 6282:1 6283:1 6301:1 6319:1 6362:1 6405:707 6440:1 6472:1 6510:2 6666:1 6677:1 6749:1 6779:1 6794:1 6808:1 6864:1 6896:1 6972:1 6977:1 6991:1 6994:8 7014:1 7022:1 7024:1 7094:1 7197:2 7204:1 7256:1 7337:2 7378:1 7388:1 7390:1 7430:1 7431:2 7453:1 7498:3 7506:1 7522:2 7559:1 7623:1 7633:1 7659:2 7671:2 7712:2 7715:1 7746:1 7772:1 7793:1 7824:1 7844:2 7853:3 7863:1 7886:2 7893:1 7897:1 7912:3 7927:1 7989:1 8020:1 8052:1 8054:1 8056:2 8064:1 8099:2 8110:2 8135:1 8173:1 8211:1 8256:1 8295:1 8316:1 8324:1 8439:1 8490:1 8506:1 8517:1 8521:2 8534:1 8689:1 8690:2 8720:1 8772:1 8799:1 8819:1 8824:1 8849:1 8866:1 8891:2 8896:1 8930:1 8932:1 8936:1 8958:2 9082:1 9127:1 9167:1 9247:2 9272:1 9296:1 9312:1 9322:1 9362:1 9430:1 9432:1 9445:1 9454:8 9489:1 9491:3 9571:1 9578:2 9680:1 9802:3 9803:2 9822:1 9837:1 9920:1 9943:1 9976:1 10022:1 10126:1 10132:1 10136:1 10151:1 10172:1 10174:1 10206:1 10253:1 10287:1 10297:1 10305:1 10317:1 10338:2 10409:1 10414:1 10424:1 10444:5 10493:1 10512:9 10559:1 10640:2 10667:1 10718:1 10727:2 10757:1 10894:1 10970:1 10984:5 11059:1 11065:1 11072:1 11100:1 11119:3 11125:1 11126:1 11141:3 11161:1 11174:1 11183:1 11239:1 11300:1 11321:2 11339:2 11401:1 11453:1 11481:2 11528:1 11539:1 11565:1 11583:3 11626:1 11644:1 11653:1 11706:1 11729:1 11765:1 11766:1 11809:1 12045:1 12071:8 12077:1 12091:1 12092:2 12143:1 12165:2 12198:1 12212:1 12231:1 12303:1 12304:1 12312:1 12381:1 12391:2 12397:1 12421:1 12478:1 12521:3 12523:1 12528:1 12547:1 12552:1 12554:1 12564:2 12602:5 12608:1 12613:2 12619:1 12643:6 12676:2 12680:1 12811:1 12828:1 12861:1 12954:1 12980:1 12997:1 13038:1 13068:1 13073:1 13078:2 13084:1 13085:4 13128:2 13181:1 13199:1 13201:2 13227:1 13259:1 13293:1 13301:2 13344:1 13359:4 13406:1 13446:1 13460:1 13475:5 13502:1 13571:5 13589:1 13665:2 13670:1 13703:2 13799:2 13887:1 13908:1 13930:1 13964:1 13967:1 13982:1 14113:1 14130:3 14142:2 14160:1 14171:1 14200:1 14266:1 14308:1 14488:1 14494:1 14516:1 14532:2 14586:4 14639:1 14650:1 14671:2 14687:1 14728:1 14735:1 14814:1 14822:1 14842:1 14846:1 14867:1 14889:5 14899:1 14940:2 14984:1 15078:1 15085:1 15127:3 15138:1 15167:2 15180:1 15185:1 15196:1 15205:1 15234:1 15260:1 15330:1 15404:2 15414:1 15430:2 15433:1 15446:1 15494:1 15501:1 15506:1 15527:1 15544:2 15621:1 15637:1 15679:1 15732:1 15734:1 15735:5 15746:5 15785:1 15849:2 15904:2 15910:1 15933:2 15939:1 15967:1 15981:2 15997:1 16018:1 16029:1 16052:1 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:1 16202:1 16207:5 16235:1 16268:1 16304:1 16360:1 16401:1 16413:1 16414:2 16416:1 16438:1 16460:1 16513:1 16540:1 16643:1 16668:1 16694:2 16724:1 16734:1 16742:1 16779:4 16783:1 16796:1 16845:1 16854:1 16877:1 16879:1 16884:2 16902:4 16938:1 16948:5 16977:1 17009:5 17046:1 17153:1 17159:2 17164:2 17203:1 17207:1 17210:1 17213:1 17307:1 17308:1 17327:1 17359:1 17383:1 17408:5 17410:1 17466:1 17499:2 17500:2 17503:1 17600:1 17620:1 17633:1 17636:1 17638:1 17642:1 17664:4 17675:1 17732:5 17733:1 17739:1 17761:1 17792:1 17859:1 17868:1 17913:1 17924:3 17948:1 18029:1 18044:1 18059:2 18068:1 18145:1 18252:1 18292:1 18323:1 18324:1 18493:2 18540:1 18570:1 18581:1 18610:1 18653:2 18655:1 18666:2 18685:2 18700:1 18742:1 18748:1 18796:1 18855:1 18910:5 18926:1 19002:1 19006:1 19012:2 19110:1 19174:5 19203:5 19207:1 19230:1 19241:1 19270:1 19271:1 19291:1 19311:1 19367:2 19373:1 19383:1 19411:1 19522:1 19573:1 19606:1 19631:1 19667:5 19693:1 19694:1 19739:1 19788:2 19841:1 19843:3 19852:1 19883:1 19902:8 19904:1 19909:1 19972:1 20048:1 20064:3 20077:1 20078:1 20091:1 20098:1 20164:1 20224:1 20243:1 20267:3 20270:1 20313:1 20318:1 20331:4 20342:1 20350:2 20356:1 20367:1 20377:1 20418:2 20435:3 20440:1 20479:5 20492:1 20493:2 20496:1 20508:1 20511:1 20555:2 20572:1 20650:1 20682:1 20683:1 20687:1 20698:1 20763:2 20766:1 20775:1 20873:1 20960:1 20975:1 20989:1 21023:1 21043:1 21048:1 21162:5 21174:1 21185:1 21212:1 21226:1 21240:1 21252:1 21279:1 21299:1 21338:2 21344:1 21355:1 21397:1 21408:1 21432:1 21441:1 21503:2 21548:2 21565:1 21599:1 21647:3 21653:1 21662:1 21708:2 21715:1 21720:2 21756:1 21770:1 21772:1 21779:1 21786:1 21787:1 21814:1 21831:1 21850:1 21875:1 21887:1 21904:1 21910:1 21964:1 22000:1 22032:2 22090:1 22111:1 22126:1 22135:1 22185:1 22198:1 22219:1 22231:1 22235:1 22246:1 22303:1 22388:1 22425:1 22469:1 22492:1 22496:1 22521:1 22623:1 22625:1 22642:1 22729:1 22745:4 22772:2 22844:1 22866:1 22891:1 22909:1 22919:1 22937:1 22941:1 22989:1 23012:1 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23184:1 23223:1 23272:1 23293:1 23302:1 23386:2 23394:1 23427:1 23429:1 23489:1 23490:1 23506:1 23532:1 23600:1 23606:1 23656:1 10 8:1 11:3 13:1 31:2 68:1 106:1 117:1 128:1 184:1 394:5 417:1 429:1 474:1 476:1 489:1 541:1 548:1 657:1 764:1 805:1 895:1 898:1 949:2 951:1 981:1 1072:1 1093:1 1167:2 1188:2 1246:3 1248:1 1283:1 1297:1 1299:1 1349:1 1410:1 1422:2 1427:1 1430:1 1436:1 1449:1 1464:1 1491:1 1494:1 1497:3 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:2 1637:1 1639:1 1642:3 1659:1 1685:1 1738:2 1739:1 1753:1 1784:1 1789:1 1791:1 1862:3 1864:1 1865:1 1887:2 1944:1 1945:1 1969:1 2039:1 2040:1 2050:1 2052:1 2059:1 2068:1 2074:2 2075:1 2191:1 2204:1 2234:1 2303:1 2315:1 2340:1 2345:2 2391:1 2397:1 2401:1 2405:1 2407:1 2409:2 2423:1 2459:1 2515:1 2521:1 2532:1 2538:2 2579:2 2605:1 2637:4 2652:1 2658:1 2750:1 2756:3 2763:1 2852:2 2876:1 2881:1 2910:1 2929:1 2936:1 2957:2 2962:3 2990:2 2997:3 3039:1 3067:1 3068:1 3078:1 3139:2 3217:1 3276:1 3318:1 3368:3 3456:4 3470:2 3492:1 3542:1 3550:2 3552:2 3593:1 3594:1 3627:1 3631:1 3639:1 3646:2 3651:1 3686:1 3732:1 3833:1 3844:5 3857:1 3891:2 3971:1 3996:1 4000:1 4029:1 4090:1 4109:2 4147:1 4222:1 4270:1 4286:2 4295:1 4298:1 4338:1 4370:1 4377:2 4393:1 4433:5 4444:1 4487:1 4537:1 4557:4 4562:1 4665:2 4673:1 4678:1 4730:4 4741:2 4747:2 4778:1 4785:1 4803:1 4813:1 4827:3 4835:1 4844:3 4867:1 4877:1 4941:5 4946:1 4979:1 5039:1 5058:1 5165:2 5168:1 5174:1 5184:1 5218:1 5230:1 5271:1 5272:1 5318:1 5334:1 5411:1 5448:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5660:5 5711:1 5776:1 5809:1 5833:1 5859:1 5874:1 5877:1 5916:1 5932:1 5941:1 5958:1 5980:1 5999:1 6053:1 6068:2 6124:2 6133:1 6134:1 6135:3 6174:1 6211:1 6235:1 6282:1 6283:1 6301:1 6319:1 6362:1 6405:726 6440:1 6472:1 6510:2 6666:1 6677:1 6749:1 6779:1 6794:1 6808:1 6841:1 6864:1 6896:1 6972:1 6977:1 6991:1 6994:8 7014:1 7022:1 7024:1 7094:1 7197:2 7204:1 7256:1 7337:2 7378:1 7388:1 7390:1 7430:1 7431:2 7453:2 7498:3 7506:1 7522:2 7559:1 7623:1 7633:1 7659:2 7671:2 7712:2 7715:1 7745:1 7746:1 7772:1 7793:1 7824:1 7844:2 7853:3 7863:1 7886:2 7893:1 7897:1 7912:3 7927:1 7989:1 8020:1 8052:1 8054:1 8056:2 8064:2 8099:2 8110:2 8135:1 8173:1 8211:1 8256:1 8295:1 8316:1 8324:1 8439:1 8490:1 8506:1 8517:1 8521:2 8534:1 8689:1 8690:2 8720:1 8772:1 8799:1 8819:1 8824:1 8849:1 8866:1 8891:2 8896:1 8930:1 8932:1 8936:1 8958:2 9082:1 9127:1 9167:1 9247:2 9272:1 9296:1 9312:1 9322:1 9362:1 9430:1 9432:1 9445:1 9454:8 9489:1 9491:3 9571:1 9578:2 9680:1 9802:3 9803:2 9822:1 9837:1 9920:1 9943:1 9976:1 10022:1 10126:1 10132:1 10136:1 10151:1 10172:1 10174:1 10206:1 10253:1 10287:1 10297:1 10305:1 10317:1 10338:2 10409:1 10414:1 10424:1 10444:5 10493:1 10512:9 10559:1 10640:2 10667:1 10718:1 10727:2 10757:1 10894:1 10970:1 10984:5 11059:1 11065:1 11072:1 11100:1 11119:3 11125:1 11126:1 11141:3 11161:1 11174:1 11183:1 11239:1 11300:1 11321:2 11339:2 11401:1 11453:1 11481:2 11528:1 11539:1 11565:1 11583:3 11626:1 11644:1 11653:1 11706:1 11729:1 11765:1 11766:1 11809:1 12045:1 12071:8 12077:1 12091:1 12092:2 12143:1 12165:2 12198:1 12212:1 12231:1 12303:1 12304:1 12312:1 12381:1 12391:2 12397:1 12421:1 12478:1 12521:3 12523:1 12528:1 12547:1 12552:1 12554:1 12564:2 12602:5 12608:1 12613:2 12619:1 12643:7 12676:2 12680:1 12811:1 12828:1 12861:1 12954:1 12980:1 12997:1 13038:1 13068:1 13073:1 13078:2 13084:1 13085:4 13128:2 13181:1 13199:2 13201:2 13227:1 13259:1 13293:1 13301:2 13344:1 13359:4 13406:1 13446:1 13460:1 13475:5 13502:1 13571:5 13589:1 13665:2 13670:1 13703:2 13799:2 13887:1 13908:1 13930:1 13964:1 13967:1 13982:1 14113:1 14130:3 14142:2 14160:1 14171:1 14200:1 14266:1 14308:1 14488:1 14494:1 14516:1 14532:2 14586:4 14639:1 14650:1 14671:2 14687:1 14728:1 14735:1 14814:1 14819:1 14822:1 14842:1 14846:1 14867:1 14889:5 14899:1 14940:2 14984:1 15078:1 15085:1 15127:3 15138:1 15167:2 15180:1 15185:1 15196:1 15205:1 15234:1 15260:1 15330:1 15404:2 15414:1 15430:2 15433:1 15446:1 15494:1 15501:1 15506:1 15527:1 15544:2 15621:1 15637:1 15679:1 15732:1 15734:1 15735:5 15746:5 15785:1 15849:2 15904:2 15910:1 15933:2 15939:1 15967:1 15981:2 15997:1 16018:1 16029:1 16052:1 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:1 16202:1 16207:5 16235:1 16268:1 16304:1 16360:1 16401:1 16413:1 16414:2 16416:1 16438:1 16460:1 16513:1 16540:1 16643:1 16668:1 16694:2 16724:1 16734:1 16742:1 16779:4 16783:2 16796:1 16845:1 16854:1 16877:1 16879:1 16884:2 16902:4 16926:1 16938:1 16948:5 16977:1 17009:5 17046:1 17055:1 17149:1 17153:1 17159:2 17164:2 17203:1 17207:1 17210:1 17213:1 17307:1 17308:1 17327:1 17359:1 17383:1 17408:5 17410:1 17466:1 17499:2 17500:2 17503:1 17600:1 17620:1 17633:1 17636:1 17638:1 17642:1 17664:4 17675:1 17732:5 17733:1 17739:1 17761:1 17792:1 17859:1 17868:1 17908:1 17913:1 17924:3 17948:1 17995:1 18029:1 18044:1 18059:2 18068:1 18145:1 18252:1 18292:1 18323:1 18324:1 18493:2 18540:1 18559:1 18570:1 18581:1 18610:1 18653:2 18655:1 18666:2 18685:2 18700:1 18742:1 18748:1 18796:1 18855:1 18910:5 18926:1 19002:1 19006:1 19012:2 19110:1 19174:5 19203:5 19207:1 19230:1 19241:1 19270:1 19271:1 19291:1 19311:1 19367:2 19373:1 19383:1 19411:1 19522:1 19573:1 19606:1 19631:1 19667:5 19693:1 19694:1 19739:1 19788:2 19841:1 19843:3 19852:1 19883:1 19902:8 19904:1 19909:1 19972:1 20048:1 20064:3 20077:1 20078:1 20091:1 20098:1 20164:1 20224:1 20243:1 20267:4 20270:1 20313:1 20318:1 20331:4 20342:1 20350:2 20356:1 20367:1 20369:1 20377:1 20418:2 20435:3 20440:1 20479:5 20492:1 20493:2 20496:1 20508:1 20511:1 20555:2 20572:1 20650:1 20682:1 20683:1 20687:1 20698:1 20763:2 20766:1 20775:1 20873:1 20960:1 20975:1 20989:1 21023:1 21043:1 21048:1 21162:5 21174:1 21185:1 21212:1 21226:1 21240:2 21252:1 21279:1 21299:1 21330:1 21338:2 21344:1 21355:1 21397:1 21408:1 21432:1 21441:1 21474:1 21483:1 21503:2 21548:2 21565:1 21599:1 21647:3 21653:1 21654:1 21662:1 21708:2 21715:1 21720:2 21756:1 21770:1 21772:1 21779:1 21786:1 21787:1 21814:1 21831:1 21850:1 21875:1 21887:1 21904:1 21910:1 21964:1 22000:1 22032:2 22090:1 22111:1 22126:1 22135:1 22185:1 22198:1 22219:1 22231:1 22235:1 22246:1 22303:1 22388:1 22425:1 22469:1 22492:1 22496:1 22521:1 22623:1 22625:2 22642:1 22729:1 22745:4 22772:2 22844:1 22866:1 22891:1 22909:1 22919:1 22937:1 22941:1 22989:1 23012:1 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23184:2 23223:1 23272:1 23293:1 23302:1 23386:2 23394:1 23427:1 23429:1 23489:1 23490:1 23506:1 23532:1 23600:1 23606:1 23656:1 10 8:1 11:3 13:1 18:1 31:2 68:1 106:1 117:1 128:2 184:1 311:1 394:5 417:1 429:1 474:1 476:1 489:1 541:1 548:1 657:1 764:1 805:1 895:1 898:1 949:3 951:1 981:2 1072:1 1075:1 1093:1 1159:1 1167:2 1188:2 1246:3 1248:1 1283:1 1297:1 1299:1 1349:1 1410:1 1422:2 1427:2 1430:1 1436:1 1449:1 1464:1 1491:1 1494:1 1497:3 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:2 1630:1 1637:1 1639:1 1642:3 1659:1 1685:1 1738:2 1739:1 1753:1 1784:1 1789:1 1791:1 1862:3 1864:1 1865:1 1887:2 1944:1 1945:1 1969:1 2039:1 2040:1 2050:1 2052:1 2059:1 2068:1 2074:2 2075:1 2191:1 2204:1 2234:1 2303:1 2315:1 2340:1 2345:3 2391:1 2395:1 2397:1 2401:1 2405:1 2407:1 2409:2 2423:1 2459:1 2515:1 2521:1 2532:1 2538:2 2579:2 2605:1 2637:4 2652:1 2658:1 2750:1 2756:3 2763:1 2818:1 2852:2 2876:1 2881:1 2910:1 2929:1 2936:1 2957:2 2962:4 2990:2 2997:3 3039:1 3067:1 3068:1 3078:1 3139:2 3217:2 3276:1 3318:1 3368:3 3456:4 3470:2 3492:1 3542:1 3550:2 3552:2 3593:1 3594:1 3627:1 3631:1 3639:1 3646:2 3651:1 3686:1 3732:1 3833:1 3844:5 3857:1 3891:2 3971:1 3996:1 4000:1 4017:1 4029:1 4090:1 4109:2 4147:1 4222:1 4270:1 4286:2 4295:1 4298:1 4338:1 4370:1 4377:2 4393:1 4433:5 4444:1 4487:1 4537:1 4557:4 4562:1 4665:3 4673:1 4678:1 4730:4 4741:2 4747:2 4778:1 4785:1 4803:1 4813:1 4827:3 4835:1 4844:3 4867:1 4877:1 4941:5 4946:1 4948:1 4962:1 4979:1 5039:1 5058:1 5165:2 5168:1 5174:1 5184:1 5218:1 5230:1 5271:1 5272:1 5318:1 5334:1 5339:1 5389:1 5411:1 5448:1 5473:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5660:5 5711:1 5776:1 5809:1 5833:1 5859:1 5874:1 5877:1 5916:2 5932:1 5941:1 5958:1 5980:1 5999:1 6053:1 6068:2 6086:1 6124:2 6133:1 6134:1 6135:3 6174:1 6199:1 6211:1 6235:1 6282:1 6283:1 6295:1 6301:1 6319:1 6362:1 6405:770 6440:1 6472:1 6510:2 6666:1 6677:1 6749:1 6761:1 6779:1 6794:1 6808:1 6841:1 6864:1 6896:1 6972:1 6977:1 6991:1 6994:8 7014:1 7022:1 7024:1 7094:1 7197:2 7204:1 7256:1 7337:2 7378:1 7388:2 7390:1 7430:1 7431:2 7453:2 7498:3 7506:1 7522:2 7559:1 7623:1 7633:1 7659:2 7671:2 7712:2 7715:1 7745:1 7746:1 7772:1 7793:1 7824:1 7844:2 7853:3 7863:1 7886:2 7893:1 7897:1 7912:3 7927:1 7989:1 8020:1 8052:1 8054:1 8056:2 8064:2 8099:2 8110:2 8135:1 8173:1 8211:2 8256:1 8295:1 8316:1 8324:1 8347:1 8439:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:2 8534:1 8689:1 8690:2 8720:2 8772:1 8799:1 8819:1 8824:1 8842:1 8849:1 8866:2 8891:2 8896:1 8930:1 8932:1 8936:1 8958:2 9082:1 9127:1 9167:1 9170:1 9247:2 9272:1 9296:1 9312:1 9322:1 9362:1 9430:1 9432:1 9445:1 9454:8 9489:1 9491:3 9571:1 9578:2 9680:1 9802:3 9803:2 9822:1 9837:1 9920:1 9930:1 9943:1 9976:1 10022:1 10085:1 10126:1 10132:1 10136:1 10151:1 10172:1 10174:1 10206:2 10253:1 10287:1 10297:1 10305:1 10317:1 10338:2 10342:1 10409:1 10414:1 10424:1 10444:5 10493:1 10512:9 10559:1 10640:2 10667:1 10718:1 10727:2 10757:2 10818:1 10894:1 10970:1 10984:5 11059:1 11065:1 11072:1 11100:1 11119:4 11125:1 11126:1 11141:3 11161:1 11174:1 11183:1 11199:1 11239:1 11300:1 11321:2 11339:2 11401:1 11453:1 11481:2 11528:1 11539:1 11565:1 11583:3 11626:1 11644:1 11653:1 11706:1 11729:1 11765:1 11766:1 11809:1 11917:1 12045:1 12071:8 12077:1 12091:1 12092:2 12143:2 12165:2 12198:1 12212:1 12231:1 12303:1 12304:1 12312:1 12381:1 12391:2 12397:1 12421:1 12478:1 12521:3 12523:1 12528:1 12547:1 12552:1 12554:2 12564:2 12602:5 12608:1 12613:2 12619:1 12643:7 12676:2 12680:1 12811:1 12828:1 12861:1 12954:1 12980:1 12997:1 13038:1 13068:1 13073:1 13078:2 13084:1 13085:4 13128:2 13181:1 13199:2 13201:2 13227:1 13259:1 13293:1 13301:2 13344:1 13359:4 13406:1 13446:1 13460:1 13475:5 13502:1 13571:5 13589:1 13665:2 13670:1 13703:2 13790:1 13799:2 13887:1 13908:1 13930:1 13964:1 13967:1 13982:1 14113:1 14130:3 14142:2 14160:1 14171:1 14200:1 14266:1 14308:1 14488:1 14494:2 14516:1 14532:2 14586:4 14639:1 14650:1 14671:2 14687:1 14728:1 14735:1 14814:1 14819:1 14822:1 14842:1 14846:1 14867:1 14889:5 14899:1 14940:2 14984:1 15062:1 15078:1 15085:1 15127:3 15138:1 15167:2 15180:1 15185:1 15196:1 15205:2 15234:1 15260:1 15330:1 15404:2 15414:1 15430:2 15433:1 15446:1 15488:1 15494:1 15501:1 15506:1 15527:1 15544:2 15562:1 15621:1 15637:1 15679:1 15693:1 15732:1 15734:1 15735:5 15746:5 15785:1 15849:2 15904:2 15910:1 15933:2 15939:1 15967:1 15981:2 15997:1 16018:1 16029:1 16052:1 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:1 16202:1 16207:5 16235:1 16268:1 16304:1 16360:1 16401:1 16413:1 16414:2 16416:1 16438:1 16460:1 16513:1 16540:1 16643:1 16668:1 16694:2 16724:1 16734:1 16742:1 16779:4 16783:2 16796:1 16805:1 16845:1 16854:1 16877:1 16879:1 16884:3 16902:4 16904:1 16926:1 16938:1 16948:5 16977:1 17009:5 17046:1 17055:1 17149:1 17153:1 17159:2 17164:2 17203:1 17207:1 17210:1 17213:1 17307:1 17308:1 17327:1 17359:1 17383:1 17408:5 17410:1 17466:1 17499:2 17500:2 17503:1 17600:1 17620:1 17633:1 17636:1 17638:1 17642:2 17664:4 17675:1 17732:5 17733:1 17739:1 17761:1 17792:1 17859:1 17868:1 17908:1 17913:1 17924:3 17948:1 17995:1 18029:1 18044:1 18059:2 18068:1 18145:1 18252:1 18292:1 18323:1 18324:1 18339:1 18493:2 18540:1 18559:2 18570:1 18581:1 18610:1 18653:2 18655:1 18666:2 18685:2 18700:1 18742:1 18748:1 18796:1 18855:1 18910:5 18926:1 19002:1 19006:1 19012:2 19110:1 19174:5 19203:5 19207:1 19230:1 19241:1 19270:1 19271:1 19291:1 19311:1 19367:2 19373:1 19383:1 19411:1 19522:1 19573:1 19606:1 19631:1 19667:5 19693:1 19694:1 19739:1 19788:2 19841:1 19843:3 19852:1 19883:1 19902:8 19904:1 19909:1 19972:1 20048:1 20064:3 20077:1 20078:1 20091:1 20098:1 20164:1 20224:1 20243:1 20267:4 20270:1 20313:1 20318:1 20331:4 20342:1 20344:1 20350:2 20356:1 20367:1 20369:1 20377:1 20418:2 20435:3 20440:1 20479:5 20492:1 20493:2 20496:1 20508:1 20511:1 20555:2 20572:1 20650:1 20682:1 20683:1 20687:1 20698:1 20763:3 20766:1 20775:1 20863:1 20873:1 20960:1 20975:1 20980:1 20989:1 21023:2 21043:1 21048:1 21162:5 21174:1 21185:1 21212:2 21226:1 21240:2 21252:1 21279:1 21299:1 21330:1 21338:2 21344:1 21355:1 21397:1 21408:1 21432:1 21441:1 21474:1 21483:1 21503:2 21521:1 21548:2 21565:1 21578:1 21599:1 21647:3 21653:1 21654:1 21662:1 21708:3 21715:1 21720:2 21756:1 21770:1 21772:1 21779:1 21786:1 21787:1 21814:1 21831:1 21835:1 21850:1 21875:1 21887:1 21904:1 21910:1 21964:1 22000:1 22032:2 22090:1 22111:1 22126:1 22135:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:1 22246:1 22303:1 22388:1 22397:1 22425:1 22466:1 22469:1 22492:1 22496:1 22521:1 22623:1 22625:2 22642:1 22729:1 22745:4 22772:2 22844:1 22866:1 22891:1 22909:1 22919:1 22937:1 22941:1 22989:1 23012:1 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23184:2 23223:1 23272:1 23293:1 23302:1 23386:2 23394:1 23427:1 23429:1 23489:1 23490:1 23506:1 23532:1 23600:1 23606:1 23656:1 10 8:1 11:3 13:1 18:1 31:2 68:1 106:1 117:1 128:2 184:1 311:1 394:5 417:1 429:1 474:1 476:1 489:1 541:1 548:1 655:1 657:1 764:1 805:1 895:1 898:1 949:3 951:1 981:2 1072:1 1075:1 1093:1 1159:1 1167:2 1188:2 1238:1 1246:3 1248:1 1283:1 1297:1 1299:1 1349:1 1410:1 1422:2 1427:2 1430:1 1436:1 1449:1 1464:1 1491:1 1494:1 1497:3 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:2 1630:1 1637:1 1639:1 1642:3 1659:1 1685:1 1738:2 1739:1 1753:1 1784:1 1789:1 1791:1 1862:3 1864:1 1865:1 1887:2 1944:1 1945:1 1969:1 2039:1 2040:1 2050:1 2052:1 2059:1 2068:1 2074:2 2075:1 2191:1 2200:1 2204:1 2234:1 2303:1 2315:1 2340:1 2345:3 2391:1 2395:1 2397:1 2401:1 2405:1 2407:1 2409:2 2423:1 2459:1 2515:1 2521:1 2532:1 2538:2 2579:2 2605:1 2637:4 2652:1 2658:1 2750:1 2756:3 2763:1 2783:1 2818:1 2852:2 2876:1 2881:1 2910:1 2929:1 2936:1 2957:2 2962:4 2990:2 2997:3 3039:1 3067:1 3068:1 3078:1 3139:2 3217:2 3276:1 3318:1 3368:3 3456:4 3470:2 3492:1 3542:1 3550:2 3552:2 3593:1 3594:1 3627:2 3631:1 3639:1 3646:2 3651:1 3686:1 3732:1 3833:1 3844:6 3857:1 3891:2 3908:1 3971:1 3996:1 4000:1 4017:1 4029:1 4090:1 4109:2 4147:1 4206:1 4222:1 4270:1 4286:2 4295:1 4298:1 4338:1 4370:1 4377:2 4393:1 4433:5 4444:1 4487:1 4537:1 4557:4 4562:1 4665:3 4673:1 4678:1 4730:4 4741:2 4747:2 4778:1 4785:1 4803:1 4813:1 4827:3 4835:1 4844:3 4867:1 4877:1 4941:5 4946:1 4948:1 4962:1 4979:1 5039:1 5058:1 5165:2 5168:1 5174:1 5184:1 5218:1 5230:1 5271:1 5272:1 5318:1 5334:1 5339:1 5389:1 5411:1 5448:1 5473:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5660:5 5711:1 5776:1 5809:1 5833:1 5859:1 5874:1 5877:1 5889:1 5916:3 5932:1 5941:1 5958:1 5980:1 5999:1 6053:1 6068:2 6086:1 6124:2 6133:1 6134:1 6135:3 6174:1 6199:1 6211:1 6235:1 6282:1 6283:1 6295:1 6301:1 6319:1 6362:1 6405:806 6440:1 6472:1 6510:2 6666:1 6668:1 6677:1 6749:1 6761:1 6779:1 6794:1 6808:1 6841:1 6864:1 6896:1 6972:1 6977:1 6991:1 6994:9 7014:1 7022:1 7024:1 7094:1 7197:2 7204:1 7256:1 7337:2 7378:1 7388:2 7390:1 7430:1 7431:2 7453:2 7498:3 7506:1 7522:2 7559:1 7623:1 7633:1 7659:2 7671:2 7712:2 7715:1 7745:2 7746:1 7772:1 7793:1 7824:1 7844:2 7853:3 7863:1 7886:2 7893:1 7897:1 7912:3 7927:1 7989:1 8020:1 8052:1 8054:1 8056:2 8064:2 8099:2 8110:2 8135:1 8173:1 8211:2 8256:1 8295:1 8316:1 8324:1 8347:1 8439:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:2 8534:1 8689:1 8690:2 8720:2 8772:1 8799:1 8819:1 8824:1 8842:1 8849:1 8866:2 8891:2 8896:1 8930:1 8932:1 8936:1 8958:2 9082:1 9127:1 9167:1 9170:1 9247:2 9272:1 9296:1 9312:1 9322:1 9362:1 9430:1 9432:1 9445:1 9454:9 9489:1 9491:3 9571:1 9578:2 9680:1 9802:3 9803:2 9822:1 9837:1 9920:1 9930:1 9943:1 9976:1 9989:1 10022:1 10085:1 10126:1 10132:1 10136:1 10151:1 10172:1 10174:1 10206:2 10253:1 10287:1 10297:1 10305:1 10317:1 10338:2 10342:1 10409:1 10414:1 10424:1 10444:5 10493:1 10512:10 10559:1 10640:2 10667:1 10718:1 10727:2 10757:2 10818:1 10894:1 10970:1 10984:6 11059:1 11065:1 11072:1 11075:1 11100:1 11119:4 11125:1 11126:1 11141:3 11161:1 11174:1 11183:1 11199:1 11239:1 11300:1 11321:2 11339:2 11401:1 11453:1 11481:2 11528:1 11539:1 11565:1 11583:3 11626:1 11644:1 11653:1 11706:1 11729:1 11765:1 11766:1 11809:1 11917:1 12045:1 12071:9 12077:1 12091:1 12092:2 12143:2 12165:2 12198:1 12212:1 12231:1 12303:1 12304:1 12312:1 12381:1 12391:2 12397:1 12421:1 12478:1 12521:3 12523:1 12528:1 12547:1 12552:1 12554:2 12564:2 12602:6 12608:1 12613:2 12619:1 12643:8 12676:2 12680:1 12811:1 12828:1 12861:1 12954:1 12980:1 12997:1 13038:1 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:2 13181:1 13199:2 13201:2 13227:1 13259:1 13293:1 13301:2 13344:1 13359:4 13406:1 13446:1 13460:1 13475:5 13502:1 13571:5 13589:1 13665:2 13670:1 13703:2 13790:1 13799:2 13887:1 13908:1 13930:1 13964:1 13967:1 13982:1 14113:1 14130:3 14142:2 14160:1 14171:1 14200:1 14266:1 14308:1 14488:1 14494:2 14516:1 14532:2 14586:4 14639:1 14650:1 14671:2 14687:1 14728:1 14735:1 14814:1 14819:2 14822:1 14842:1 14846:1 14867:1 14889:5 14899:1 14940:2 14984:1 15062:1 15078:1 15085:1 15127:3 15138:1 15167:2 15180:1 15185:1 15196:1 15205:2 15234:1 15260:1 15330:1 15372:1 15404:2 15414:1 15430:2 15433:1 15446:1 15488:1 15494:1 15501:1 15506:1 15527:1 15544:2 15562:1 15621:1 15637:1 15679:1 15693:1 15732:1 15734:1 15735:5 15746:5 15785:1 15849:2 15904:2 15910:1 15933:2 15939:1 15967:1 15981:2 15997:1 16018:1 16029:1 16052:1 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:1 16202:1 16207:5 16235:1 16268:1 16304:1 16360:1 16401:1 16413:1 16414:2 16416:1 16438:1 16460:1 16513:1 16540:1 16556:1 16643:1 16668:1 16694:2 16724:1 16734:1 16742:1 16779:4 16783:2 16796:1 16805:1 16845:1 16854:1 16877:1 16879:1 16884:3 16902:4 16904:1 16926:1 16938:1 16948:5 16977:1 17009:6 17046:1 17055:1 17149:1 17153:1 17159:2 17164:2 17203:1 17207:1 17210:1 17213:1 17307:1 17308:1 17327:1 17359:1 17383:1 17408:5 17410:1 17466:1 17499:2 17500:2 17503:1 17600:1 17620:1 17633:1 17636:1 17638:1 17642:2 17664:4 17675:1 17732:5 17733:1 17739:1 17761:1 17792:1 17859:1 17868:1 17908:1 17913:1 17924:3 17948:1 17995:1 18029:1 18044:1 18059:2 18068:1 18145:1 18252:1 18292:1 18323:1 18324:1 18339:1 18493:2 18540:1 18559:3 18570:1 18581:1 18610:1 18653:2 18655:1 18666:2 18685:2 18700:1 18742:1 18748:1 18796:1 18855:1 18910:5 18926:1 19002:1 19006:1 19012:2 19110:1 19174:5 19203:5 19207:1 19230:1 19241:1 19270:1 19271:1 19291:1 19311:1 19367:2 19373:1 19383:1 19411:1 19522:1 19573:1 19606:1 19618:1 19631:1 19667:5 19693:1 19694:1 19739:1 19788:2 19841:1 19843:3 19852:1 19883:1 19902:9 19904:1 19909:1 19972:1 20048:1 20064:3 20077:1 20078:1 20091:1 20098:1 20164:1 20224:1 20243:1 20267:4 20270:1 20313:1 20318:1 20331:4 20342:1 20344:1 20350:2 20356:1 20367:1 20369:1 20377:1 20418:2 20435:3 20440:1 20479:5 20492:1 20493:2 20496:1 20508:1 20511:1 20555:2 20572:1 20650:1 20682:1 20683:1 20687:1 20698:1 20763:3 20766:1 20775:1 20863:1 20873:1 20960:1 20975:1 20980:1 20989:1 21023:2 21043:1 21048:1 21069:1 21162:5 21174:1 21185:1 21212:2 21226:1 21240:2 21252:1 21279:1 21299:1 21330:1 21338:2 21344:1 21355:1 21397:1 21408:1 21417:1 21432:1 21441:1 21474:1 21483:1 21503:2 21521:1 21548:2 21565:1 21578:1 21599:1 21647:3 21653:1 21654:1 21662:1 21708:3 21715:1 21720:2 21756:1 21770:1 21772:1 21779:1 21786:1 21787:1 21814:1 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 22000:1 22032:2 22090:1 22111:1 22126:1 22135:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:1 22246:1 22303:1 22388:1 22397:1 22425:1 22466:1 22469:1 22492:1 22496:1 22521:1 22623:1 22625:2 22642:1 22729:1 22745:4 22772:2 22844:1 22861:1 22866:1 22891:1 22909:1 22919:1 22937:1 22941:1 22989:1 23012:1 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23184:2 23223:1 23272:1 23293:1 23302:1 23363:1 23386:2 23394:1 23427:1 23429:1 23489:1 23490:1 23506:1 23532:1 23600:1 23606:1 23656:1 10 8:1 11:3 13:1 18:1 31:2 68:1 106:1 117:1 128:2 184:1 311:1 394:5 417:1 429:1 474:1 476:1 489:1 541:1 548:1 655:2 657:1 764:1 805:1 895:1 898:1 949:3 951:1 981:2 1072:1 1075:1 1093:1 1159:1 1167:2 1188:2 1199:1 1238:1 1246:3 1248:1 1283:1 1297:1 1299:1 1349:1 1410:1 1422:2 1427:2 1430:1 1436:1 1449:1 1464:1 1491:1 1494:1 1497:3 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:2 1630:1 1637:1 1639:1 1642:3 1659:1 1685:1 1738:2 1739:1 1742:1 1753:1 1784:1 1789:1 1791:1 1862:3 1864:1 1865:1 1887:2 1912:1 1944:1 1945:1 1969:1 2011:1 2037:1 2039:1 2040:1 2050:1 2052:1 2059:1 2068:1 2074:2 2075:1 2191:1 2200:1 2204:1 2234:1 2303:1 2315:1 2317:1 2340:1 2345:3 2391:1 2395:1 2397:1 2401:1 2405:1 2407:1 2409:2 2423:1 2459:1 2515:1 2521:2 2532:1 2538:2 2579:2 2605:1 2637:4 2652:1 2658:1 2750:1 2756:3 2763:1 2783:1 2818:1 2852:2 2876:1 2881:1 2910:1 2929:1 2936:1 2957:2 2962:4 2990:2 2997:3 3039:1 3067:1 3068:1 3078:1 3139:2 3195:1 3217:2 3276:1 3318:1 3368:3 3456:4 3470:2 3492:1 3542:1 3550:2 3552:2 3593:1 3594:1 3599:1 3627:2 3631:1 3639:1 3646:2 3651:1 3686:1 3732:1 3833:1 3844:7 3857:1 3891:2 3908:1 3947:1 3971:1 3996:1 4000:1 4017:1 4029:1 4090:1 4109:2 4147:1 4206:1 4222:1 4270:1 4286:2 4295:1 4298:1 4338:1 4370:1 4377:2 4393:1 4397:1 4433:5 4444:1 4487:1 4537:1 4557:4 4562:1 4665:3 4669:1 4673:1 4678:1 4699:1 4730:4 4741:2 4747:2 4778:1 4785:1 4803:2 4813:1 4827:3 4835:1 4844:3 4867:1 4877:1 4941:5 4946:1 4948:1 4962:1 4979:1 5008:1 5039:1 5058:1 5165:2 5168:1 5174:1 5184:1 5218:1 5230:1 5271:1 5272:1 5318:1 5334:1 5339:1 5389:1 5411:1 5437:1 5448:1 5473:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5660:5 5711:1 5776:1 5809:1 5833:1 5859:1 5874:1 5877:1 5889:1 5916:3 5932:1 5941:1 5958:1 5980:1 5999:1 6053:1 6068:2 6086:1 6124:2 6133:1 6134:1 6135:3 6174:1 6199:1 6211:1 6235:1 6282:1 6283:1 6295:1 6301:1 6319:1 6362:1 6405:844 6440:1 6472:1 6510:2 6637:1 6666:1 6668:1 6677:1 6749:1 6761:1 6779:1 6794:1 6808:1 6841:1 6864:1 6896:1 6972:1 6977:1 6991:1 6994:10 7014:1 7022:1 7024:1 7094:1 7196:1 7197:2 7204:1 7256:1 7337:2 7378:1 7388:2 7390:1 7430:1 7431:2 7453:2 7498:3 7506:1 7522:2 7559:1 7623:2 7633:1 7659:2 7671:2 7712:2 7715:1 7745:2 7746:1 7772:1 7793:1 7824:3 7844:2 7853:3 7863:1 7886:2 7893:1 7897:1 7912:3 7927:1 7989:1 8020:1 8049:1 8052:1 8054:1 8056:2 8064:2 8066:1 8099:2 8110:2 8135:1 8173:1 8211:2 8256:1 8295:1 8316:1 8324:1 8347:1 8439:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:2 8534:1 8651:1 8689:1 8690:2 8720:3 8772:1 8799:1 8819:1 8824:1 8842:1 8849:1 8866:2 8891:2 8896:1 8930:1 8932:1 8936:1 8947:1 8958:2 9082:1 9127:1 9167:2 9170:1 9247:2 9272:1 9296:1 9312:1 9322:1 9362:1 9430:1 9432:1 9445:1 9454:10 9489:1 9491:3 9529:1 9571:2 9574:1 9578:2 9680:1 9802:3 9803:2 9822:1 9837:1 9920:1 9930:1 9943:1 9976:1 9989:1 10022:1 10085:1 10126:2 10132:1 10136:1 10151:1 10172:1 10174:1 10206:2 10253:1 10287:1 10297:1 10305:1 10317:1 10318:1 10338:2 10342:1 10409:1 10414:1 10424:1 10444:5 10493:1 10512:11 10559:1 10640:2 10667:1 10718:1 10727:2 10757:2 10775:1 10818:1 10894:1 10970:1 10984:7 11059:1 11065:1 11072:1 11075:1 11100:1 11119:4 11125:1 11126:1 11141:3 11161:1 11174:1 11183:1 11199:1 11201:1 11225:1 11239:1 11300:1 11321:2 11331:1 11339:2 11401:1 11453:1 11481:2 11528:1 11539:1 11565:1 11567:1 11583:3 11626:1 11644:1 11653:1 11706:1 11729:1 11765:1 11766:1 11806:1 11809:1 11917:1 11950:1 11973:1 12045:1 12071:10 12077:1 12091:1 12092:2 12143:2 12165:2 12198:1 12212:1 12231:1 12303:1 12304:1 12312:1 12381:1 12391:2 12397:1 12421:1 12478:1 12521:3 12523:1 12528:1 12547:1 12552:1 12554:2 12564:2 12602:7 12608:1 12613:2 12619:1 12643:9 12676:2 12680:2 12692:1 12741:1 12811:1 12828:1 12861:1 12954:1 12980:1 12997:1 13038:1 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:2 13181:1 13199:2 13201:2 13227:1 13259:1 13293:1 13301:2 13344:1 13359:5 13406:1 13446:1 13460:1 13475:5 13502:1 13571:5 13589:1 13665:2 13670:1 13703:2 13717:1 13790:1 13799:2 13831:1 13887:1 13908:1 13930:1 13964:1 13967:1 13982:1 14000:1 14023:1 14113:1 14123:1 14130:3 14142:2 14160:1 14171:1 14200:1 14266:1 14308:1 14488:1 14494:2 14516:1 14532:2 14586:4 14639:1 14650:1 14671:2 14687:1 14711:1 14728:1 14735:1 14814:1 14819:2 14822:1 14842:1 14846:1 14852:1 14867:1 14889:5 14899:1 14940:2 14984:1 15062:1 15078:1 15085:1 15127:3 15138:1 15157:1 15164:1 15167:2 15180:1 15185:1 15196:1 15205:2 15234:1 15260:1 15330:1 15372:1 15404:3 15414:1 15430:2 15433:1 15446:1 15488:1 15494:1 15501:1 15506:1 15527:1 15544:2 15562:1 15621:1 15637:1 15679:1 15693:1 15732:1 15734:1 15735:5 15746:5 15785:1 15849:2 15904:2 15910:1 15933:2 15939:1 15967:1 15981:2 15997:1 16018:1 16029:1 16052:1 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:1 16202:1 16207:5 16235:1 16268:1 16304:1 16360:1 16401:1 16413:1 16414:2 16416:1 16438:1 16460:1 16513:1 16540:1 16556:1 16643:1 16668:1 16677:1 16694:2 16724:1 16734:1 16742:1 16779:4 16783:2 16796:1 16805:1 16845:1 16854:1 16877:1 16879:1 16884:3 16902:4 16904:1 16926:1 16938:1 16948:5 16977:1 17009:7 17046:1 17055:1 17149:1 17153:1 17159:2 17164:2 17203:1 17207:1 17210:1 17213:1 17307:1 17308:1 17327:1 17359:1 17383:1 17408:5 17410:1 17466:1 17499:2 17500:2 17503:1 17600:1 17620:1 17633:1 17636:2 17638:1 17642:2 17664:4 17675:1 17732:5 17733:2 17739:1 17761:1 17792:1 17859:1 17868:1 17908:1 17913:1 17924:3 17948:1 17995:1 18029:1 18044:1 18059:2 18068:1 18145:1 18252:1 18292:1 18323:1 18324:1 18339:1 18493:2 18540:1 18549:1 18554:1 18559:3 18570:1 18581:1 18610:1 18653:2 18655:1 18666:2 18685:2 18700:1 18742:1 18748:1 18796:1 18855:1 18910:5 18926:1 19002:1 19006:1 19012:2 19110:1 19174:5 19203:5 19207:1 19228:2 19230:1 19241:1 19270:1 19271:1 19291:1 19311:1 19367:2 19373:1 19383:1 19411:1 19522:2 19573:1 19606:1 19618:1 19631:1 19667:5 19693:1 19694:1 19739:1 19788:2 19841:1 19843:3 19852:1 19883:1 19902:10 19904:1 19909:1 19967:1 19972:1 20012:1 20048:1 20064:3 20077:1 20078:1 20091:1 20098:1 20164:1 20224:1 20243:1 20267:4 20270:1 20313:1 20318:1 20331:4 20342:1 20344:1 20350:2 20356:1 20367:1 20369:1 20377:1 20418:2 20435:3 20440:1 20479:5 20492:1 20493:2 20496:1 20508:1 20511:1 20555:2 20572:1 20650:1 20682:1 20683:1 20687:1 20698:1 20763:3 20766:1 20775:1 20863:1 20873:1 20960:1 20975:1 20980:1 20989:1 21023:2 21043:1 21048:1 21069:1 21162:5 21174:1 21185:1 21212:2 21226:1 21240:2 21252:1 21279:1 21299:1 21330:1 21338:2 21344:2 21355:1 21397:1 21408:1 21417:2 21432:1 21441:1 21474:1 21483:1 21503:2 21521:1 21548:2 21565:1 21578:1 21599:1 21634:1 21647:3 21653:1 21654:1 21662:1 21708:3 21715:1 21720:2 21756:1 21770:1 21772:1 21779:1 21786:1 21787:1 21814:1 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 22000:1 22032:2 22090:1 22111:1 22126:1 22135:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:1 22246:1 22275:1 22303:1 22388:1 22397:1 22425:1 22432:2 22466:1 22469:1 22492:1 22496:1 22521:1 22623:1 22625:2 22642:1 22729:1 22745:4 22772:2 22844:1 22861:1 22866:1 22891:1 22909:1 22919:1 22937:1 22941:1 22989:1 23012:1 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23166:1 23184:2 23223:1 23272:2 23277:1 23293:1 23302:1 23363:1 23386:2 23394:1 23427:1 23429:1 23489:1 23490:1 23506:1 23532:1 23600:1 23606:1 23636:1 23656:1 10 8:1 11:3 13:1 18:1 31:2 68:1 106:1 117:1 128:2 184:1 311:1 315:1 394:5 417:1 429:1 474:1 476:1 489:1 541:1 548:1 621:1 655:2 657:1 665:1 764:1 805:1 895:1 898:1 949:3 951:1 981:2 1072:2 1075:1 1093:1 1159:1 1167:2 1188:2 1199:1 1238:1 1246:3 1248:1 1283:1 1297:1 1299:1 1349:1 1410:1 1422:2 1427:2 1430:1 1436:1 1449:2 1464:1 1491:1 1494:1 1497:3 1532:1 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:2 1630:1 1637:1 1639:1 1642:4 1659:1 1685:1 1738:2 1739:1 1742:1 1753:1 1784:1 1789:1 1791:1 1862:4 1864:1 1865:1 1887:2 1912:1 1944:1 1945:1 1969:1 2011:1 2037:1 2039:1 2040:1 2050:1 2052:1 2059:1 2068:1 2074:2 2075:1 2116:1 2135:1 2191:1 2200:1 2204:1 2234:1 2303:1 2315:1 2317:1 2340:1 2345:3 2391:1 2395:1 2397:1 2401:1 2405:1 2407:1 2409:2 2423:1 2459:1 2515:1 2521:2 2532:1 2538:2 2579:2 2605:1 2629:1 2637:4 2652:1 2658:1 2750:1 2756:3 2763:1 2783:1 2818:1 2852:2 2876:1 2881:1 2910:1 2929:1 2936:1 2957:2 2962:4 2990:2 2997:3 3039:1 3067:1 3068:1 3078:1 3139:2 3195:1 3217:2 3276:1 3318:1 3368:3 3456:4 3470:2 3492:1 3542:1 3550:2 3552:2 3593:1 3594:1 3599:2 3627:2 3631:1 3639:1 3646:2 3651:1 3686:1 3732:1 3757:1 3833:1 3844:9 3857:1 3891:2 3908:1 3947:1 3971:1 3996:1 4000:1 4017:1 4029:1 4090:1 4109:2 4110:1 4147:1 4170:1 4206:1 4222:1 4231:1 4270:1 4286:2 4295:1 4298:1 4338:1 4370:1 4377:2 4393:1 4397:1 4433:5 4444:1 4487:1 4537:1 4557:4 4562:1 4642:1 4665:3 4669:1 4673:1 4678:1 4699:1 4730:4 4741:2 4747:2 4778:1 4785:1 4803:2 4813:1 4827:3 4835:1 4844:3 4867:1 4877:1 4897:1 4941:5 4946:1 4948:1 4962:1 4979:1 5008:1 5039:1 5058:1 5165:2 5168:1 5174:1 5184:1 5218:1 5230:1 5271:1 5272:1 5318:1 5334:1 5339:1 5389:1 5411:1 5437:1 5448:1 5473:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5660:5 5668:1 5711:1 5776:1 5809:1 5833:1 5859:1 5874:1 5877:1 5889:1 5916:3 5932:1 5941:1 5958:1 5980:1 5999:1 6053:1 6067:1 6068:2 6086:1 6124:2 6133:1 6134:1 6135:4 6174:1 6199:1 6211:1 6235:1 6282:1 6283:1 6295:1 6301:1 6319:1 6330:1 6362:1 6405:867 6440:1 6457:1 6472:1 6510:2 6637:1 6666:1 6668:1 6677:1 6741:1 6749:1 6761:1 6779:1 6794:1 6808:1 6841:1 6864:1 6896:1 6972:2 6975:1 6977:1 6991:1 6994:12 7014:1 7022:1 7024:1 7094:1 7196:1 7197:2 7204:1 7256:1 7337:2 7378:1 7388:2 7390:1 7391:1 7430:1 7431:2 7453:2 7498:3 7506:1 7522:2 7559:1 7623:2 7633:1 7659:2 7671:2 7712:2 7715:1 7745:2 7746:1 7772:1 7793:1 7824:3 7844:2 7853:4 7863:1 7886:2 7893:1 7897:1 7912:3 7927:1 7989:1 7993:1 8020:1 8049:1 8052:1 8054:1 8056:2 8064:2 8066:1 8095:1 8099:2 8110:2 8135:1 8173:1 8211:2 8256:1 8295:1 8316:1 8324:1 8347:1 8439:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:2 8534:1 8651:2 8689:1 8690:2 8720:3 8741:1 8772:1 8799:1 8819:1 8824:1 8842:1 8849:1 8866:2 8891:2 8896:1 8930:1 8932:1 8936:1 8947:2 8958:2 9082:1 9127:1 9167:2 9170:1 9194:1 9247:2 9272:1 9296:1 9312:1 9322:1 9362:1 9430:1 9432:1 9445:1 9454:12 9476:1 9489:1 9491:3 9529:2 9571:2 9574:1 9578:2 9680:1 9802:3 9803:3 9822:1 9837:1 9915:1 9920:1 9930:1 9943:1 9976:1 9989:1 10022:1 10085:1 10126:2 10132:1 10136:2 10141:1 10151:1 10171:1 10172:1 10174:1 10206:2 10253:1 10287:1 10297:1 10305:1 10317:1 10318:1 10338:3 10342:1 10409:1 10414:1 10424:1 10444:5 10493:1 10512:13 10559:1 10640:2 10667:1 10718:1 10727:2 10753:1 10757:2 10775:1 10818:1 10894:1 10970:1 10984:9 11059:1 11065:1 11072:1 11075:1 11100:1 11119:4 11125:1 11126:1 11141:4 11161:1 11174:1 11183:1 11199:1 11201:1 11225:1 11239:1 11300:1 11321:3 11331:1 11339:2 11382:1 11401:1 11453:1 11481:2 11528:1 11539:1 11565:1 11567:1 11583:3 11626:1 11644:1 11653:1 11706:1 11729:1 11765:1 11766:1 11806:1 11809:1 11898:1 11917:1 11950:1 11973:1 12045:1 12070:1 12071:12 12077:1 12091:1 12092:2 12143:2 12165:2 12198:1 12212:1 12231:1 12303:1 12304:1 12312:1 12381:1 12391:2 12397:1 12421:1 12478:1 12521:4 12523:1 12528:1 12547:1 12552:1 12554:2 12564:2 12602:9 12608:1 12613:2 12619:1 12643:10 12676:2 12680:2 12692:1 12741:1 12811:1 12828:1 12861:1 12954:1 12980:1 12997:1 13038:1 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:3 13181:1 13199:2 13201:2 13227:1 13259:1 13293:1 13301:2 13319:1 13344:1 13359:5 13378:1 13406:2 13446:1 13460:1 13475:5 13490:1 13502:1 13571:5 13589:1 13665:2 13670:1 13703:2 13717:1 13777:1 13790:1 13799:2 13831:1 13887:1 13908:1 13930:1 13964:1 13967:1 13982:1 14000:1 14023:1 14113:1 14123:1 14130:4 14142:2 14160:1 14171:1 14200:1 14266:1 14283:1 14308:1 14488:1 14494:2 14516:1 14532:2 14586:5 14639:1 14650:1 14671:2 14687:1 14711:1 14728:1 14735:1 14814:1 14819:2 14822:1 14842:1 14846:1 14852:1 14867:1 14889:5 14899:1 14940:2 14984:1 15062:1 15078:1 15085:1 15127:3 15138:1 15157:1 15164:1 15167:2 15180:1 15185:1 15196:1 15205:2 15234:1 15260:1 15330:1 15372:1 15404:3 15414:1 15430:2 15433:1 15446:1 15488:1 15494:1 15501:1 15506:1 15527:1 15544:2 15562:1 15621:1 15637:1 15679:1 15693:1 15732:1 15734:1 15735:5 15746:5 15785:1 15849:2 15904:2 15910:1 15933:2 15939:1 15955:1 15967:1 15981:2 15997:1 16018:1 16029:1 16052:2 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:1 16202:1 16207:5 16235:1 16268:1 16304:1 16360:1 16401:1 16413:1 16414:2 16416:1 16438:1 16460:1 16513:1 16540:1 16556:1 16643:1 16668:1 16677:1 16694:2 16724:1 16734:1 16742:1 16779:4 16783:2 16796:1 16805:1 16845:1 16854:1 16877:1 16879:1 16884:3 16885:1 16902:4 16904:1 16926:1 16938:1 16948:5 16977:1 17009:9 17046:1 17055:1 17144:1 17149:1 17153:1 17157:1 17159:2 17164:2 17203:1 17207:1 17210:1 17213:2 17307:1 17308:1 17327:1 17359:1 17383:1 17408:5 17410:1 17466:1 17499:2 17500:2 17503:1 17600:1 17620:1 17633:1 17636:2 17638:1 17642:2 17664:4 17675:1 17732:5 17733:2 17739:1 17761:1 17792:1 17859:1 17868:1 17908:1 17913:1 17924:3 17948:1 17995:1 18029:1 18044:1 18059:2 18068:1 18145:1 18252:1 18292:1 18308:1 18323:1 18324:1 18339:1 18493:2 18540:1 18549:1 18554:1 18559:3 18570:1 18581:1 18610:1 18653:2 18655:1 18666:2 18685:2 18700:1 18742:1 18748:1 18796:1 18855:1 18910:5 18926:1 19002:1 19006:1 19012:2 19042:1 19110:1 19174:5 19203:5 19207:1 19228:2 19230:1 19241:1 19270:1 19271:1 19291:1 19306:1 19311:1 19351:1 19367:2 19373:1 19383:1 19411:1 19522:2 19573:1 19606:1 19618:1 19631:2 19667:5 19693:1 19694:1 19739:2 19788:2 19841:1 19843:3 19852:1 19883:1 19902:12 19904:1 19909:1 19967:1 19972:1 20012:1 20048:1 20064:4 20077:1 20078:1 20091:1 20098:1 20164:1 20224:1 20243:1 20267:4 20270:1 20313:1 20318:1 20331:4 20342:1 20344:1 20350:2 20356:1 20362:1 20367:1 20369:1 20377:1 20418:2 20435:3 20440:1 20479:5 20492:1 20493:2 20496:1 20508:1 20511:1 20555:2 20572:1 20650:1 20682:1 20683:1 20687:1 20698:1 20763:3 20766:1 20775:1 20863:1 20873:1 20960:1 20975:1 20980:1 20989:1 21023:2 21043:1 21048:1 21069:1 21162:5 21174:1 21185:1 21212:2 21226:1 21240:2 21242:1 21252:1 21279:1 21299:1 21324:1 21330:1 21338:2 21344:2 21355:1 21397:1 21408:1 21417:2 21432:1 21441:1 21474:1 21483:1 21503:2 21521:1 21548:2 21565:1 21578:1 21599:2 21634:1 21647:3 21653:1 21654:1 21662:1 21708:4 21715:1 21720:2 21756:1 21770:1 21772:1 21779:1 21786:1 21787:1 21814:1 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 22000:1 22032:2 22090:1 22111:1 22126:1 22135:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:1 22246:1 22275:1 22303:1 22388:1 22397:1 22421:1 22425:1 22432:2 22466:1 22469:1 22492:1 22496:1 22521:1 22623:1 22625:2 22642:1 22651:1 22694:1 22729:1 22732:1 22745:4 22772:2 22844:1 22861:1 22866:1 22891:1 22909:1 22919:1 22937:1 22941:1 22989:1 23012:1 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23166:1 23184:2 23223:1 23272:2 23277:1 23293:1 23302:1 23363:1 23386:2 23394:1 23426:1 23427:1 23429:1 23489:1 23490:1 23506:1 23532:1 23600:1 23606:1 23636:1 23656:1 10 8:1 11:3 13:1 18:1 21:1 31:2 68:1 106:1 117:1 128:2 145:1 184:1 311:1 315:1 394:5 417:1 429:1 474:1 476:1 489:1 541:1 548:1 621:1 655:2 657:1 665:1 764:1 805:1 895:1 898:1 949:4 951:1 981:2 989:1 1072:2 1075:1 1093:1 1159:1 1167:2 1188:2 1199:1 1238:1 1246:3 1248:1 1283:1 1297:1 1299:1 1349:1 1410:1 1422:2 1427:2 1430:1 1436:1 1449:2 1464:1 1491:1 1494:1 1497:3 1532:1 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:2 1630:1 1637:1 1639:1 1642:4 1659:1 1685:1 1738:2 1739:1 1742:1 1753:1 1784:1 1789:1 1791:1 1862:4 1864:1 1865:1 1887:2 1912:2 1944:1 1945:1 1969:1 2011:1 2037:1 2039:1 2040:1 2050:1 2052:1 2059:1 2068:1 2074:2 2075:1 2106:1 2116:1 2135:1 2191:1 2200:1 2204:1 2234:1 2303:1 2315:1 2317:1 2340:1 2345:3 2391:1 2395:2 2397:1 2401:1 2405:1 2407:1 2409:2 2423:1 2459:1 2515:1 2521:2 2532:1 2538:2 2579:2 2605:1 2629:1 2637:4 2652:1 2658:1 2750:1 2756:3 2763:1 2783:1 2818:1 2852:2 2876:1 2881:1 2910:1 2929:1 2936:1 2957:2 2962:4 2990:2 2997:3 3039:1 3067:1 3068:1 3078:1 3139:2 3195:1 3217:2 3276:1 3318:1 3368:3 3456:4 3470:2 3492:1 3542:1 3550:2 3552:2 3593:1 3594:1 3599:2 3627:2 3631:1 3639:1 3646:2 3651:1 3686:1 3732:1 3757:1 3833:1 3844:9 3857:1 3891:2 3908:1 3947:1 3971:1 3996:1 4000:1 4017:1 4029:1 4090:1 4109:2 4110:1 4147:1 4170:1 4206:1 4222:1 4231:1 4270:1 4286:2 4295:1 4298:1 4338:1 4370:1 4377:2 4393:1 4397:1 4433:5 4444:1 4487:1 4537:1 4557:4 4562:1 4642:1 4665:4 4669:2 4673:1 4678:1 4699:1 4730:5 4741:2 4747:2 4778:1 4785:2 4803:2 4813:1 4827:3 4835:1 4844:4 4867:1 4877:1 4897:1 4941:5 4946:1 4948:1 4962:1 4979:1 5008:1 5039:1 5058:1 5165:2 5168:1 5174:1 5184:1 5218:1 5230:1 5271:1 5272:1 5318:1 5334:1 5339:1 5389:1 5411:1 5437:1 5439:1 5448:1 5473:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5660:5 5668:1 5710:1 5711:1 5776:1 5809:1 5833:1 5859:1 5874:1 5877:1 5889:1 5916:3 5932:1 5941:1 5958:1 5980:1 5999:1 6053:1 6067:1 6068:2 6086:1 6124:2 6133:1 6134:1 6135:4 6174:1 6199:1 6211:1 6235:1 6282:1 6283:1 6295:1 6301:1 6313:1 6319:1 6330:1 6362:1 6405:917 6440:1 6457:1 6472:1 6510:2 6637:1 6666:1 6668:1 6677:1 6741:1 6749:1 6761:2 6763:1 6779:1 6794:1 6808:1 6841:1 6864:1 6867:1 6896:1 6972:2 6975:1 6977:1 6991:1 6994:12 7014:1 7022:1 7024:1 7094:1 7151:1 7196:1 7197:2 7204:1 7256:1 7337:2 7378:1 7388:2 7390:1 7391:1 7428:1 7430:1 7431:2 7453:2 7498:3 7506:1 7522:2 7559:1 7623:2 7633:1 7659:2 7671:2 7712:2 7715:1 7745:2 7746:1 7772:1 7793:1 7824:4 7844:2 7853:4 7863:1 7886:2 7893:1 7897:1 7912:3 7927:1 7989:1 7993:1 8020:1 8049:1 8052:1 8054:1 8056:2 8064:2 8066:1 8095:1 8099:2 8110:2 8135:1 8173:1 8211:2 8256:1 8295:1 8316:1 8324:1 8347:1 8439:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:2 8534:1 8651:2 8689:1 8690:2 8702:1 8720:3 8741:1 8772:1 8799:1 8819:1 8824:1 8842:1 8849:1 8866:2 8891:2 8896:1 8930:1 8932:1 8936:1 8947:2 8958:2 8981:1 9082:1 9127:1 9167:2 9170:1 9194:1 9242:1 9247:2 9272:1 9296:1 9312:1 9322:1 9335:1 9362:1 9430:1 9432:1 9445:1 9454:12 9476:1 9489:1 9491:3 9529:2 9571:2 9574:1 9578:2 9680:1 9802:3 9803:3 9822:1 9837:1 9915:1 9920:1 9930:1 9943:1 9976:1 9989:1 10022:1 10085:1 10126:2 10132:1 10136:2 10141:1 10151:1 10162:1 10171:1 10172:1 10174:1 10206:2 10253:1 10287:1 10297:1 10305:1 10317:1 10318:1 10338:3 10339:1 10342:1 10409:1 10414:1 10424:1 10444:5 10493:1 10512:13 10559:1 10640:2 10667:1 10718:1 10727:2 10753:1 10757:2 10775:1 10818:1 10894:1 10970:1 10984:9 11059:1 11065:1 11072:1 11075:1 11100:1 11119:4 11125:1 11126:1 11141:4 11161:1 11174:1 11182:1 11183:1 11199:1 11201:1 11225:1 11239:1 11300:1 11321:3 11331:1 11339:2 11345:1 11382:1 11401:1 11453:1 11481:2 11528:1 11539:1 11565:1 11567:1 11583:3 11625:1 11626:1 11644:1 11653:1 11706:1 11729:1 11765:1 11766:1 11806:1 11809:1 11882:1 11898:1 11917:1 11950:1 11973:1 12045:1 12070:1 12071:12 12077:1 12091:1 12092:2 12143:2 12165:2 12198:1 12212:1 12231:1 12265:1 12303:1 12304:1 12312:1 12381:1 12391:2 12397:1 12421:1 12478:2 12521:4 12523:1 12528:1 12547:1 12552:1 12554:2 12564:2 12602:9 12608:1 12613:2 12619:1 12643:10 12676:3 12680:2 12692:1 12741:1 12811:1 12828:1 12861:1 12954:1 12980:1 12997:1 13038:1 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:3 13181:1 13199:2 13201:2 13227:1 13259:1 13293:1 13301:2 13319:1 13344:1 13359:6 13361:1 13378:1 13406:2 13446:1 13460:1 13475:5 13490:1 13502:1 13571:5 13589:1 13665:2 13670:1 13703:2 13717:1 13777:1 13790:1 13799:2 13831:1 13887:1 13908:1 13910:1 13930:1 13964:1 13967:1 13982:1 14000:1 14023:1 14113:1 14123:1 14130:4 14142:2 14160:1 14171:1 14200:1 14266:1 14283:1 14308:1 14439:1 14475:1 14488:1 14494:2 14516:2 14532:2 14586:5 14639:1 14650:1 14671:2 14687:1 14711:1 14728:1 14735:1 14808:1 14814:1 14819:2 14822:1 14842:1 14846:1 14852:1 14867:1 14889:5 14899:1 14940:2 14984:2 15062:1 15078:1 15085:1 15127:3 15138:1 15157:1 15164:1 15167:2 15180:1 15185:1 15196:1 15205:2 15234:1 15260:1 15330:1 15372:1 15404:3 15414:1 15430:2 15433:1 15446:1 15488:1 15494:1 15501:1 15506:1 15527:1 15544:2 15562:1 15621:1 15637:1 15679:1 15693:1 15732:1 15734:1 15735:5 15746:5 15785:1 15849:2 15904:2 15910:1 15933:2 15939:1 15955:1 15967:1 15981:2 15997:1 16018:1 16029:1 16052:2 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:1 16202:1 16207:5 16235:1 16268:1 16304:1 16360:1 16401:1 16413:1 16414:2 16416:1 16438:1 16460:1 16513:1 16540:1 16556:1 16643:1 16668:1 16677:1 16694:2 16724:1 16734:1 16742:1 16779:4 16783:2 16796:1 16805:1 16845:1 16854:1 16877:1 16879:1 16884:3 16885:1 16902:4 16904:1 16926:2 16938:1 16948:5 16977:1 17009:9 17034:1 17046:1 17050:1 17055:1 17144:1 17149:1 17153:1 17157:1 17159:2 17164:2 17203:1 17207:1 17210:1 17213:2 17307:1 17308:1 17327:1 17359:1 17383:1 17408:5 17410:1 17466:1 17499:2 17500:2 17503:1 17600:1 17620:1 17633:1 17636:2 17638:1 17642:2 17664:4 17675:1 17732:5 17733:2 17739:1 17761:1 17792:1 17859:1 17868:1 17908:2 17913:1 17924:3 17948:1 17995:1 18029:1 18044:1 18059:2 18068:1 18145:1 18252:1 18292:1 18296:1 18308:1 18323:1 18324:1 18339:1 18493:2 18540:1 18549:1 18554:1 18559:3 18570:1 18574:1 18581:1 18610:1 18653:2 18655:1 18666:2 18685:2 18700:1 18742:1 18748:1 18796:1 18855:1 18906:1 18910:5 18926:1 19002:1 19006:1 19012:2 19042:1 19110:1 19174:5 19203:5 19207:1 19228:2 19230:1 19241:1 19270:1 19271:1 19291:1 19306:1 19311:1 19351:1 19367:2 19373:1 19383:1 19411:1 19522:2 19573:1 19606:1 19618:1 19631:2 19667:5 19693:1 19694:1 19739:2 19788:2 19841:1 19843:3 19852:1 19883:1 19902:12 19904:1 19909:1 19967:1 19972:1 20012:1 20048:1 20064:4 20077:1 20078:1 20091:1 20098:1 20164:1 20224:1 20231:1 20243:1 20267:4 20270:1 20313:1 20318:1 20331:4 20342:1 20344:1 20350:2 20356:1 20362:1 20367:1 20369:1 20377:1 20418:2 20435:3 20440:1 20479:5 20492:1 20493:2 20496:1 20508:1 20511:1 20555:2 20572:1 20650:1 20682:1 20683:1 20687:1 20698:1 20763:3 20766:1 20775:1 20863:1 20873:1 20953:1 20960:1 20975:1 20980:1 20989:1 20997:1 21023:2 21043:1 21048:1 21069:1 21162:5 21174:2 21185:1 21212:2 21226:1 21227:1 21240:2 21242:1 21252:1 21279:1 21282:1 21299:1 21324:1 21330:1 21338:2 21344:2 21355:2 21397:1 21408:1 21417:2 21432:1 21441:1 21474:2 21483:1 21503:2 21521:1 21548:2 21558:1 21565:1 21578:2 21599:2 21634:1 21647:3 21653:1 21654:1 21662:1 21708:4 21715:1 21720:2 21756:1 21770:1 21771:1 21772:1 21779:1 21786:1 21787:1 21814:1 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 22000:1 22032:2 22080:1 22090:1 22111:1 22126:1 22135:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:2 22246:1 22275:1 22303:1 22388:1 22397:1 22421:1 22425:1 22432:2 22466:1 22469:1 22492:2 22496:1 22521:1 22623:1 22625:3 22642:1 22651:1 22694:1 22729:1 22732:1 22745:4 22772:2 22844:1 22861:1 22866:1 22891:1 22909:1 22919:1 22937:2 22941:1 22989:1 23012:1 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23166:1 23184:2 23223:1 23272:2 23277:1 23293:2 23302:1 23363:1 23386:2 23394:1 23426:1 23427:1 23429:1 23489:1 23490:1 23506:1 23532:1 23600:1 23606:1 23636:1 23656:1 10 8:1 11:3 13:1 18:1 21:1 31:2 68:1 106:1 117:1 128:2 145:1 184:1 311:1 315:1 394:5 417:1 429:1 474:1 476:1 489:1 497:1 541:1 548:1 621:1 655:2 657:1 665:1 764:1 805:1 895:1 898:1 949:4 951:2 981:2 989:1 1072:2 1075:1 1093:1 1159:1 1167:2 1188:2 1199:2 1238:1 1246:3 1248:1 1283:1 1297:1 1299:1 1349:1 1410:1 1422:2 1427:2 1430:1 1436:1 1449:2 1464:1 1491:1 1494:1 1497:4 1532:1 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:2 1630:1 1637:1 1639:1 1642:4 1659:1 1685:1 1738:2 1739:1 1742:1 1753:1 1784:1 1789:1 1791:1 1862:4 1864:1 1865:1 1887:2 1912:2 1944:1 1945:1 1969:1 2011:1 2037:1 2039:1 2040:1 2050:1 2052:2 2059:2 2068:1 2074:2 2075:1 2106:1 2116:1 2135:1 2191:1 2200:1 2204:1 2234:1 2303:1 2315:1 2317:1 2340:1 2345:3 2360:1 2391:1 2395:2 2397:1 2401:1 2402:1 2405:1 2407:1 2409:2 2423:1 2459:1 2515:1 2521:2 2532:1 2538:2 2579:2 2605:1 2629:1 2637:4 2652:1 2658:1 2750:1 2756:3 2763:1 2783:1 2818:1 2852:2 2876:1 2881:1 2910:1 2929:1 2936:1 2957:2 2962:4 2990:2 2997:3 3039:1 3067:1 3068:1 3078:1 3139:2 3152:1 3195:1 3217:2 3276:1 3318:1 3368:3 3456:4 3470:2 3492:1 3542:1 3550:2 3552:2 3593:1 3594:1 3599:2 3627:2 3631:1 3632:1 3639:1 3642:1 3646:2 3651:1 3656:1 3686:1 3732:1 3757:1 3833:1 3844:9 3857:1 3891:2 3908:1 3947:1 3971:1 3996:1 4000:1 4017:1 4029:1 4090:1 4109:2 4110:1 4147:1 4170:1 4206:1 4222:1 4231:1 4270:1 4286:2 4295:1 4298:1 4338:1 4370:1 4377:2 4393:1 4397:1 4425:1 4433:5 4444:1 4487:1 4502:1 4537:1 4557:4 4562:1 4571:1 4642:1 4665:4 4669:2 4673:1 4678:1 4699:2 4730:5 4741:2 4747:2 4778:1 4785:2 4803:2 4813:1 4827:3 4835:1 4844:4 4867:1 4877:1 4897:1 4941:5 4946:1 4948:1 4962:1 4979:1 5008:1 5039:1 5058:1 5165:2 5168:1 5174:1 5184:2 5218:1 5230:1 5271:1 5272:1 5318:1 5334:1 5339:1 5389:1 5411:1 5437:1 5439:1 5448:1 5473:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5660:5 5668:1 5710:1 5711:1 5776:1 5809:1 5833:1 5859:1 5874:1 5877:1 5889:1 5916:3 5932:1 5941:1 5958:1 5980:1 5999:1 6053:1 6067:1 6068:2 6086:1 6124:2 6133:1 6134:1 6135:4 6174:1 6199:1 6211:1 6235:1 6282:1 6283:1 6295:1 6301:2 6313:1 6319:1 6330:1 6362:1 6405:956 6440:1 6457:1 6472:1 6510:2 6637:1 6666:1 6668:1 6677:1 6741:1 6749:1 6761:2 6763:1 6779:1 6794:1 6808:1 6841:1 6864:1 6867:1 6896:1 6972:2 6975:1 6977:1 6991:1 6994:12 7014:1 7022:1 7024:1 7094:1 7151:1 7173:1 7196:1 7197:2 7204:1 7256:1 7337:2 7378:1 7388:2 7390:1 7391:1 7428:1 7430:1 7431:2 7453:2 7498:3 7506:1 7522:2 7559:1 7623:2 7633:1 7659:2 7671:2 7712:2 7715:1 7745:2 7746:1 7772:1 7793:1 7824:4 7830:1 7844:2 7853:4 7863:1 7886:2 7893:1 7897:1 7912:3 7927:1 7989:1 7993:1 8020:1 8049:2 8052:1 8054:1 8056:2 8064:2 8066:1 8095:1 8099:2 8110:2 8135:1 8173:1 8211:2 8256:1 8295:1 8316:1 8324:1 8347:1 8439:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:2 8534:1 8651:2 8689:1 8690:2 8702:1 8720:3 8741:1 8772:1 8799:1 8819:1 8824:1 8831:1 8842:1 8849:1 8866:2 8891:2 8896:1 8930:1 8932:1 8936:1 8947:2 8958:2 8981:1 9082:1 9127:1 9167:2 9170:1 9194:1 9242:1 9247:2 9272:1 9296:1 9312:1 9314:1 9322:1 9335:1 9362:1 9364:1 9430:1 9432:1 9445:1 9454:12 9476:1 9489:1 9491:3 9529:2 9571:2 9574:1 9578:2 9680:1 9802:3 9803:3 9822:1 9837:1 9915:1 9920:1 9930:1 9943:1 9976:1 9989:1 10022:1 10085:1 10126:2 10132:1 10136:2 10140:1 10141:1 10151:1 10162:1 10171:1 10172:1 10174:1 10206:2 10253:1 10287:1 10297:1 10305:1 10317:1 10318:1 10338:3 10339:1 10342:1 10409:1 10414:1 10424:1 10444:5 10493:1 10512:13 10559:1 10640:2 10667:1 10718:1 10727:2 10753:1 10757:2 10775:1 10818:1 10859:1 10894:1 10970:1 10984:9 11059:1 11065:1 11072:1 11075:1 11100:1 11119:4 11125:1 11126:1 11141:4 11161:1 11174:2 11182:1 11183:1 11199:1 11201:1 11225:1 11239:1 11300:1 11321:3 11331:1 11339:2 11345:1 11382:1 11401:1 11453:1 11481:2 11528:1 11539:1 11565:1 11567:2 11583:3 11625:1 11626:1 11644:1 11653:1 11706:1 11729:1 11765:1 11766:1 11806:1 11809:1 11882:1 11898:1 11917:1 11950:1 11973:1 12045:1 12070:1 12071:12 12077:1 12091:1 12092:2 12143:2 12165:2 12198:1 12212:1 12231:1 12265:1 12303:1 12304:1 12312:1 12381:1 12391:2 12397:1 12421:1 12478:2 12521:4 12523:1 12528:1 12547:1 12552:1 12554:2 12564:2 12602:9 12608:1 12613:2 12619:1 12643:12 12676:3 12680:2 12692:1 12741:1 12811:1 12828:1 12861:1 12954:1 12980:1 12997:1 13002:1 13038:1 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:3 13181:1 13199:2 13201:2 13227:1 13259:1 13293:1 13301:2 13319:1 13344:1 13359:8 13361:1 13378:1 13406:2 13446:1 13460:1 13475:5 13490:1 13502:1 13571:5 13589:1 13665:2 13670:1 13703:2 13717:1 13777:1 13790:1 13799:2 13831:1 13887:1 13908:1 13910:1 13930:1 13964:1 13967:1 13977:1 13982:1 14000:1 14013:1 14023:1 14113:1 14123:1 14130:4 14142:2 14160:1 14163:1 14171:1 14183:1 14200:1 14266:1 14283:1 14308:1 14439:1 14475:1 14488:1 14494:2 14516:2 14532:2 14586:5 14639:1 14650:1 14671:2 14687:1 14711:1 14728:1 14735:1 14750:1 14808:1 14814:2 14819:2 14822:1 14842:1 14846:1 14852:1 14867:1 14889:5 14899:1 14940:2 14984:2 15062:1 15078:1 15085:1 15127:3 15138:1 15157:1 15164:1 15167:2 15180:1 15185:1 15196:1 15205:2 15234:1 15260:1 15330:1 15372:1 15404:3 15414:1 15430:2 15433:1 15446:1 15488:1 15494:1 15501:1 15506:1 15527:1 15544:2 15562:1 15621:1 15637:1 15679:1 15693:1 15732:1 15734:1 15735:5 15746:5 15785:1 15849:2 15904:2 15910:1 15933:2 15939:1 15955:1 15967:1 15981:2 15990:1 15997:1 16018:1 16029:1 16052:2 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:1 16202:1 16207:5 16235:1 16268:1 16304:2 16360:1 16401:1 16413:1 16414:2 16416:1 16438:1 16460:1 16467:1 16513:1 16540:1 16556:1 16643:1 16668:1 16677:1 16694:2 16724:1 16734:1 16742:1 16779:4 16783:3 16796:1 16805:1 16827:1 16845:1 16854:1 16877:1 16879:1 16884:3 16885:1 16902:4 16904:1 16926:2 16938:1 16948:5 16977:1 17009:9 17034:1 17046:1 17050:1 17055:1 17144:1 17149:1 17153:1 17157:1 17159:2 17164:2 17203:1 17207:1 17210:1 17213:2 17307:1 17308:1 17327:1 17359:1 17383:1 17408:5 17410:1 17466:1 17499:2 17500:2 17503:1 17600:1 17620:1 17633:1 17636:2 17638:1 17642:2 17664:4 17675:1 17732:5 17733:2 17739:2 17761:1 17792:1 17859:1 17868:1 17908:2 17913:1 17924:3 17948:1 17995:1 18029:1 18044:1 18059:2 18068:1 18145:1 18252:1 18292:1 18296:1 18308:1 18323:1 18324:1 18339:1 18493:2 18540:1 18549:1 18554:1 18559:3 18570:1 18574:1 18581:1 18610:1 18653:2 18655:1 18666:2 18685:2 18700:1 18742:1 18748:1 18796:1 18855:1 18906:1 18910:5 18926:1 19002:1 19006:1 19012:2 19042:1 19110:1 19174:5 19203:5 19207:1 19228:2 19230:1 19241:1 19270:1 19271:1 19291:1 19306:1 19311:1 19351:1 19367:2 19373:1 19383:1 19411:1 19522:2 19573:1 19606:1 19618:1 19631:2 19667:5 19693:1 19694:1 19739:2 19788:2 19820:1 19841:1 19843:3 19846:1 19852:1 19883:1 19902:12 19904:1 19909:1 19965:1 19967:1 19972:1 20012:1 20048:1 20064:4 20077:1 20078:1 20091:1 20098:1 20164:1 20224:1 20231:1 20243:1 20267:5 20270:1 20313:1 20318:1 20331:4 20342:1 20344:1 20350:2 20356:1 20362:1 20367:1 20369:1 20377:1 20418:2 20435:3 20440:1 20479:5 20492:1 20493:2 20496:1 20508:1 20511:1 20555:2 20572:1 20650:1 20682:1 20683:1 20687:1 20698:1 20763:3 20766:1 20775:1 20863:1 20873:1 20953:1 20960:1 20975:1 20980:1 20989:1 20997:1 21023:2 21043:1 21048:1 21069:1 21113:1 21162:5 21174:2 21185:1 21212:2 21226:1 21227:1 21240:2 21242:1 21252:1 21279:1 21281:1 21282:1 21299:1 21324:1 21330:1 21338:2 21344:3 21355:2 21397:1 21408:1 21417:2 21432:1 21441:1 21474:2 21483:1 21503:2 21521:1 21548:2 21558:1 21565:1 21578:2 21599:2 21634:1 21647:3 21653:1 21654:1 21662:1 21708:4 21715:1 21720:2 21756:1 21770:1 21771:1 21772:1 21779:1 21786:1 21787:1 21814:2 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 22000:1 22032:3 22080:1 22090:1 22111:1 22126:1 22135:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:2 22246:1 22254:1 22275:1 22303:1 22388:1 22397:1 22421:1 22425:2 22432:2 22466:1 22469:1 22492:2 22496:1 22521:1 22623:1 22625:3 22642:1 22651:1 22694:1 22729:1 22732:1 22745:4 22772:2 22844:1 22847:1 22861:1 22866:1 22891:1 22909:1 22919:1 22937:2 22941:1 22989:1 23012:1 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23166:2 23184:2 23223:1 23272:2 23277:1 23293:2 23302:1 23363:1 23386:2 23394:1 23426:1 23427:1 23429:1 23489:1 23490:1 23506:1 23532:1 23600:1 23606:1 23636:1 23656:1 10 8:1 11:3 13:1 18:1 21:1 31:2 68:1 106:1 117:1 128:2 145:1 184:1 311:1 315:1 394:5 417:1 429:1 474:1 476:1 489:1 497:1 541:1 548:1 621:1 636:1 655:2 657:1 665:1 764:1 805:1 895:1 898:1 949:4 951:2 981:2 989:1 1072:2 1075:1 1093:1 1159:1 1167:3 1188:2 1199:2 1238:1 1246:3 1248:1 1283:1 1297:1 1299:1 1349:1 1384:1 1410:1 1422:3 1427:2 1430:1 1436:1 1449:2 1464:1 1491:1 1494:1 1497:4 1532:1 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:2 1630:1 1637:1 1639:1 1642:4 1659:1 1685:1 1738:2 1739:1 1742:1 1753:1 1784:1 1789:1 1791:1 1862:4 1864:1 1865:1 1887:2 1912:2 1944:1 1945:1 1969:1 2011:1 2037:1 2039:1 2040:1 2044:1 2050:1 2052:2 2059:2 2068:1 2074:2 2075:1 2106:1 2116:1 2135:1 2191:1 2200:1 2204:1 2234:1 2303:1 2315:1 2317:1 2340:1 2345:3 2360:1 2391:1 2395:2 2397:1 2401:2 2402:1 2405:1 2407:1 2409:2 2423:1 2459:1 2515:1 2521:2 2532:1 2538:2 2539:1 2579:3 2605:1 2629:1 2637:4 2652:1 2658:1 2744:1 2750:1 2756:3 2763:1 2783:1 2818:1 2852:2 2876:1 2881:1 2910:1 2929:1 2936:1 2957:2 2962:4 2990:2 2997:3 3039:1 3067:1 3068:1 3078:1 3139:2 3152:1 3157:1 3195:1 3217:2 3276:1 3318:1 3368:3 3456:4 3470:2 3492:1 3542:1 3550:2 3552:2 3593:1 3594:1 3599:2 3627:2 3631:1 3632:1 3639:1 3642:1 3646:2 3651:1 3656:1 3686:1 3732:1 3757:1 3833:1 3844:9 3857:1 3891:2 3908:1 3947:1 3971:1 3996:1 4000:1 4017:1 4029:1 4090:1 4109:2 4110:1 4147:1 4170:1 4206:1 4222:1 4231:1 4270:1 4286:2 4295:1 4298:1 4338:1 4370:1 4377:2 4393:1 4397:2 4425:1 4433:5 4444:1 4487:1 4502:1 4537:1 4557:4 4562:1 4571:1 4642:1 4665:4 4669:2 4673:1 4678:1 4699:2 4730:5 4741:2 4747:2 4778:1 4785:2 4803:3 4813:1 4827:3 4835:1 4844:4 4867:1 4877:1 4897:1 4941:5 4946:1 4948:1 4962:1 4979:1 5008:1 5039:1 5058:1 5165:2 5168:1 5174:1 5184:2 5218:1 5230:1 5271:1 5272:1 5318:1 5334:1 5339:1 5389:1 5411:1 5437:1 5439:1 5448:1 5473:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5660:5 5668:1 5710:1 5711:1 5776:1 5809:1 5833:1 5859:2 5874:1 5877:1 5889:1 5916:3 5932:1 5941:1 5958:1 5980:1 5999:1 6053:1 6067:1 6068:2 6086:1 6124:2 6133:1 6134:2 6135:4 6174:1 6199:1 6211:1 6235:1 6282:1 6283:1 6295:1 6301:2 6313:1 6319:1 6330:1 6362:1 6405:982 6440:1 6457:1 6472:1 6510:2 6637:1 6666:1 6668:1 6677:1 6741:1 6749:2 6761:2 6763:1 6779:1 6794:1 6808:1 6841:1 6864:1 6867:1 6896:1 6972:2 6975:1 6977:1 6991:1 6994:12 7014:1 7022:1 7024:1 7094:1 7151:1 7173:1 7196:1 7197:2 7204:1 7256:1 7337:2 7378:1 7388:2 7390:1 7391:1 7428:1 7430:1 7431:3 7453:2 7498:3 7506:1 7522:2 7559:1 7623:2 7633:1 7659:2 7671:2 7712:2 7715:1 7745:2 7746:1 7772:1 7793:1 7824:4 7830:1 7844:2 7853:4 7863:1 7886:2 7893:1 7897:1 7912:3 7927:1 7989:1 7993:1 8020:1 8049:2 8052:1 8054:1 8056:2 8064:2 8066:1 8095:1 8099:2 8110:2 8135:1 8173:1 8211:2 8256:1 8295:1 8316:1 8324:1 8347:1 8439:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:2 8534:1 8651:2 8689:1 8690:2 8702:1 8720:3 8741:1 8772:1 8799:1 8819:1 8824:1 8831:1 8842:1 8849:1 8866:2 8891:2 8896:1 8930:1 8932:1 8936:1 8947:2 8958:2 8981:1 9082:1 9127:1 9167:3 9170:1 9194:1 9242:1 9247:2 9272:1 9296:1 9312:1 9314:1 9322:1 9335:1 9362:1 9364:1 9430:1 9432:1 9445:1 9454:12 9476:1 9489:1 9491:3 9529:2 9571:3 9574:1 9578:2 9680:1 9802:3 9803:3 9822:1 9837:1 9915:1 9920:1 9930:1 9943:1 9976:1 9989:1 10022:1 10085:1 10126:2 10132:1 10136:2 10140:1 10141:1 10151:1 10162:1 10171:1 10172:1 10174:1 10206:2 10253:1 10287:1 10297:1 10305:1 10317:1 10318:1 10338:3 10339:1 10342:1 10409:1 10414:1 10424:1 10444:5 10454:1 10493:1 10512:13 10559:1 10640:2 10667:1 10718:1 10727:2 10753:1 10757:2 10775:1 10818:1 10859:1 10894:1 10970:1 10984:9 11059:1 11065:1 11072:1 11075:1 11100:1 11119:4 11125:1 11126:1 11141:4 11161:1 11174:2 11182:1 11183:1 11199:1 11201:1 11225:1 11239:1 11300:1 11321:3 11331:1 11339:2 11345:1 11382:1 11401:1 11453:1 11481:2 11528:1 11539:1 11565:1 11567:2 11583:3 11625:1 11626:1 11644:1 11653:1 11706:1 11729:1 11765:1 11766:1 11806:1 11809:1 11882:1 11898:1 11917:1 11950:1 11973:1 12045:1 12070:1 12071:12 12077:1 12091:1 12092:2 12134:1 12143:2 12165:2 12198:1 12212:1 12231:1 12265:1 12303:1 12304:1 12312:2 12381:1 12391:2 12397:1 12421:1 12478:2 12521:4 12523:1 12528:1 12547:1 12552:1 12554:2 12564:2 12602:9 12608:1 12613:2 12619:1 12643:12 12676:3 12680:3 12692:1 12741:1 12811:1 12828:1 12861:1 12954:1 12980:1 12997:1 13002:1 13038:1 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:3 13181:1 13199:2 13201:2 13227:1 13259:1 13293:1 13301:2 13319:1 13344:1 13359:9 13361:1 13378:1 13406:2 13446:1 13460:1 13475:5 13490:1 13502:1 13571:5 13589:1 13665:2 13670:1 13703:2 13717:1 13777:1 13790:1 13799:2 13831:1 13887:1 13908:1 13910:1 13930:1 13964:1 13967:1 13977:1 13982:1 14000:1 14013:1 14023:1 14113:1 14123:1 14130:4 14142:2 14160:1 14163:1 14171:2 14183:1 14200:1 14266:1 14283:1 14308:1 14439:1 14475:1 14488:1 14494:2 14516:2 14532:3 14586:5 14639:1 14650:1 14671:2 14687:1 14711:1 14728:1 14735:1 14750:1 14808:1 14814:2 14819:2 14822:1 14842:1 14846:1 14852:1 14867:1 14889:5 14899:1 14940:2 14984:2 15062:1 15078:1 15085:1 15127:3 15138:1 15157:1 15164:1 15167:2 15180:1 15185:1 15196:1 15201:1 15205:2 15234:1 15260:1 15330:1 15372:1 15404:3 15414:1 15430:2 15433:1 15446:1 15488:1 15494:1 15501:1 15506:1 15527:1 15544:2 15562:1 15621:1 15637:1 15679:1 15693:1 15732:1 15734:1 15735:5 15746:5 15785:1 15849:2 15904:2 15910:1 15933:3 15939:1 15955:1 15967:1 15981:2 15990:1 15997:1 16018:1 16029:1 16052:2 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:1 16202:1 16207:5 16235:1 16268:1 16304:2 16360:1 16401:1 16413:1 16414:2 16416:1 16438:1 16460:1 16467:1 16513:1 16540:1 16556:1 16643:1 16668:1 16677:1 16694:2 16724:1 16734:1 16742:1 16779:4 16783:3 16796:1 16805:1 16827:1 16845:1 16854:1 16877:1 16879:1 16884:3 16885:1 16902:4 16904:1 16926:2 16938:1 16948:5 16977:1 17009:9 17034:1 17046:1 17050:1 17055:1 17144:1 17149:1 17153:1 17157:1 17159:2 17164:2 17203:1 17207:1 17210:1 17213:2 17307:1 17308:1 17327:1 17359:1 17383:1 17408:5 17410:1 17466:1 17499:2 17500:2 17503:1 17600:1 17620:1 17633:1 17636:2 17638:1 17642:2 17664:4 17675:1 17732:5 17733:3 17739:2 17761:1 17792:1 17859:1 17868:1 17908:2 17913:1 17924:3 17948:1 17995:1 18029:1 18044:1 18059:2 18068:1 18145:1 18252:1 18292:1 18296:1 18308:1 18323:1 18324:1 18339:1 18493:2 18540:1 18549:1 18554:1 18559:3 18570:1 18574:1 18581:1 18610:1 18653:2 18655:1 18666:2 18685:2 18700:1 18742:1 18748:1 18796:1 18844:1 18855:1 18906:1 18910:5 18926:1 19002:1 19006:1 19012:2 19042:1 19110:1 19174:5 19203:5 19207:1 19228:2 19230:1 19241:1 19270:1 19271:1 19291:1 19306:1 19311:1 19351:1 19367:2 19373:1 19383:1 19411:1 19522:3 19573:1 19606:1 19618:1 19631:2 19667:5 19693:1 19694:1 19739:2 19788:2 19820:1 19841:1 19843:3 19846:1 19852:1 19883:1 19902:12 19904:1 19909:1 19965:1 19967:1 19972:1 20012:1 20048:1 20064:4 20077:1 20078:1 20091:1 20098:1 20164:1 20224:1 20231:1 20243:1 20267:5 20270:1 20313:1 20318:1 20331:4 20342:1 20344:1 20350:2 20356:1 20362:1 20367:1 20369:1 20377:1 20418:3 20435:3 20440:1 20479:5 20492:2 20493:2 20496:1 20508:1 20511:1 20555:2 20572:1 20650:1 20682:1 20683:1 20687:1 20698:1 20763:3 20766:1 20775:1 20863:1 20873:1 20953:1 20960:1 20975:1 20980:1 20989:2 20997:1 21023:2 21043:1 21048:1 21069:1 21113:1 21162:5 21174:2 21185:1 21212:2 21226:1 21227:1 21240:2 21242:1 21252:1 21279:1 21281:1 21282:1 21299:1 21324:1 21330:1 21338:2 21344:3 21355:2 21397:1 21408:1 21417:2 21432:1 21441:1 21474:2 21483:1 21503:2 21521:1 21548:3 21558:1 21565:1 21578:2 21599:2 21634:1 21647:3 21653:1 21654:1 21662:1 21708:4 21715:1 21720:3 21756:1 21770:1 21771:1 21772:1 21779:1 21786:1 21787:1 21814:2 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 22000:1 22032:3 22080:1 22090:1 22111:1 22126:1 22135:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:2 22246:1 22254:1 22275:1 22303:1 22388:1 22397:1 22421:1 22425:2 22432:2 22466:1 22469:1 22492:2 22496:1 22521:1 22623:1 22625:3 22642:1 22651:1 22694:1 22729:1 22732:1 22745:4 22772:2 22844:1 22847:1 22861:1 22866:1 22891:1 22909:1 22919:1 22937:2 22941:1 22989:1 23012:1 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23166:2 23184:2 23223:1 23272:2 23277:1 23293:2 23302:1 23363:1 23386:2 23394:1 23426:1 23427:1 23429:1 23489:1 23490:1 23506:1 23532:1 23600:1 23606:1 23636:1 23656:1 10 8:1 11:3 13:1 18:1 21:1 31:2 68:1 106:1 117:1 128:2 145:1 184:1 311:1 315:1 394:5 417:1 429:1 474:1 476:1 489:1 497:1 541:1 548:1 621:1 636:1 655:2 657:1 665:1 758:1 764:1 805:1 895:1 898:1 949:4 951:2 981:2 989:1 1072:2 1075:1 1093:1 1159:1 1167:3 1188:3 1199:2 1238:1 1246:4 1248:1 1283:1 1297:1 1298:1 1299:1 1349:1 1384:1 1410:1 1422:3 1427:2 1430:1 1436:1 1449:2 1464:1 1491:1 1494:1 1497:4 1532:1 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:2 1630:1 1637:1 1639:1 1642:4 1659:1 1685:1 1738:2 1739:1 1742:1 1753:1 1784:1 1789:1 1791:1 1862:4 1864:1 1865:1 1887:2 1912:2 1944:1 1945:1 1969:1 2011:1 2037:1 2039:1 2040:1 2044:1 2050:1 2052:2 2059:2 2068:1 2074:2 2075:1 2106:1 2116:1 2135:1 2191:1 2200:1 2204:1 2234:1 2303:1 2315:1 2317:1 2340:1 2345:3 2360:1 2391:1 2395:2 2397:1 2401:2 2402:1 2405:1 2407:1 2409:2 2423:1 2459:1 2515:1 2521:2 2532:1 2538:2 2539:1 2579:3 2605:1 2629:1 2637:4 2652:1 2658:1 2744:1 2750:1 2756:3 2763:1 2783:1 2818:1 2852:2 2876:1 2881:1 2910:1 2929:1 2936:1 2957:2 2962:4 2990:2 2997:3 3039:1 3067:1 3068:1 3078:1 3139:2 3152:1 3157:1 3195:1 3217:2 3276:1 3318:1 3368:3 3394:1 3456:4 3470:2 3492:1 3542:1 3550:2 3552:2 3593:1 3594:1 3599:2 3627:2 3631:1 3632:1 3639:1 3642:1 3646:2 3651:2 3656:1 3686:1 3732:1 3757:1 3833:2 3844:9 3857:1 3891:2 3908:1 3947:1 3971:1 3996:1 4000:1 4017:1 4029:1 4090:1 4109:3 4110:1 4147:1 4169:1 4170:1 4206:1 4222:1 4231:1 4270:1 4286:3 4295:1 4298:1 4338:1 4370:2 4377:2 4393:1 4397:2 4407:1 4425:1 4433:5 4444:1 4487:1 4502:1 4537:1 4557:4 4562:1 4571:1 4642:1 4665:4 4669:2 4673:1 4678:1 4699:2 4730:5 4741:2 4747:2 4778:1 4785:2 4803:3 4813:1 4827:3 4835:1 4844:4 4867:1 4877:1 4897:1 4941:5 4946:1 4948:1 4962:1 4979:1 5008:1 5039:1 5058:1 5165:2 5168:1 5174:1 5184:2 5218:1 5230:1 5271:1 5272:1 5318:1 5334:1 5339:1 5389:1 5411:1 5437:1 5439:1 5448:1 5473:1 5480:4 5493:1 5536:1 5572:1 5633:1 5640:1 5653:2 5660:5 5668:1 5710:1 5711:1 5776:1 5809:1 5833:1 5859:2 5874:1 5877:1 5880:1 5889:1 5916:3 5932:1 5941:1 5958:1 5980:1 5999:1 6053:1 6067:1 6068:2 6086:1 6124:2 6133:1 6134:2 6135:4 6174:1 6199:1 6211:1 6235:1 6282:1 6283:1 6290:1 6295:1 6301:2 6313:1 6319:1 6330:1 6362:1 6405:999 6440:1 6457:1 6472:1 6510:2 6637:1 6666:1 6668:1 6677:1 6741:1 6749:2 6761:2 6763:1 6779:1 6794:1 6808:1 6841:1 6864:1 6867:1 6896:1 6972:2 6975:1 6977:1 6991:1 6994:12 7014:1 7022:1 7024:1 7094:1 7151:1 7173:1 7196:1 7197:2 7204:1 7256:1 7337:2 7378:1 7388:2 7390:1 7391:1 7428:1 7430:1 7431:3 7453:2 7498:3 7506:1 7522:2 7559:1 7607:1 7623:2 7633:1 7659:2 7671:2 7712:2 7715:1 7745:2 7746:1 7772:1 7793:1 7824:4 7830:1 7844:2 7853:4 7863:1 7886:2 7893:1 7897:1 7912:3 7927:1 7989:1 7993:1 8020:1 8049:2 8052:1 8054:1 8056:2 8064:2 8066:1 8095:1 8099:2 8110:2 8135:1 8173:1 8211:2 8256:1 8295:1 8316:1 8324:1 8347:1 8439:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:3 8534:1 8651:2 8689:1 8690:2 8702:1 8720:3 8741:1 8772:1 8799:1 8819:1 8824:1 8831:1 8842:1 8849:1 8866:2 8891:2 8896:1 8930:1 8932:1 8936:1 8947:2 8958:2 8981:1 9082:1 9127:1 9167:3 9170:1 9194:1 9242:1 9247:2 9272:1 9296:1 9312:1 9314:1 9322:1 9335:1 9362:1 9364:1 9430:1 9432:1 9445:1 9454:12 9476:1 9489:1 9491:3 9529:2 9571:3 9574:1 9578:2 9680:1 9802:3 9803:3 9822:1 9837:1 9915:1 9920:1 9930:1 9943:2 9976:1 9989:1 10022:1 10085:1 10126:2 10132:1 10136:2 10139:1 10140:1 10141:1 10151:1 10162:1 10171:1 10172:1 10174:1 10206:2 10253:1 10287:1 10297:1 10305:1 10317:1 10318:1 10338:3 10339:1 10342:1 10409:1 10414:1 10424:1 10444:5 10454:1 10493:1 10512:13 10559:1 10640:2 10667:1 10687:1 10718:1 10727:2 10753:1 10757:2 10775:1 10818:1 10859:1 10894:1 10970:1 10984:9 11059:1 11065:1 11072:1 11075:1 11100:1 11119:4 11125:1 11126:1 11141:4 11161:1 11174:2 11175:1 11182:1 11183:1 11199:1 11201:1 11225:1 11239:1 11300:1 11321:3 11331:1 11339:2 11345:1 11382:1 11401:1 11453:1 11481:2 11528:1 11539:1 11565:1 11567:2 11583:3 11625:1 11626:1 11644:1 11653:1 11655:1 11706:1 11729:1 11765:1 11766:1 11806:1 11809:1 11882:1 11898:1 11917:1 11950:1 11973:1 12045:1 12070:1 12071:12 12077:1 12091:1 12092:2 12134:1 12143:2 12165:2 12198:1 12212:1 12231:1 12265:1 12303:1 12304:1 12312:2 12381:1 12391:2 12397:1 12399:1 12421:1 12478:2 12521:4 12523:1 12528:1 12547:1 12552:1 12554:2 12564:2 12594:1 12602:9 12608:1 12613:2 12619:1 12643:13 12676:3 12680:3 12692:1 12741:1 12811:1 12828:1 12861:1 12954:1 12961:1 12980:1 12997:1 13002:1 13038:1 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:3 13181:1 13199:2 13201:2 13227:1 13259:1 13293:1 13301:2 13319:1 13344:1 13359:9 13361:1 13378:1 13406:2 13441:1 13446:1 13460:1 13475:5 13490:1 13502:1 13571:5 13589:1 13665:2 13670:1 13703:2 13717:1 13777:1 13790:1 13799:2 13831:1 13887:1 13908:1 13910:1 13930:1 13964:1 13967:1 13977:1 13982:1 14000:1 14013:1 14023:1 14035:1 14113:1 14123:1 14130:4 14142:2 14160:1 14163:1 14171:2 14183:1 14200:1 14261:1 14266:1 14283:1 14308:1 14435:1 14439:1 14472:1 14475:1 14488:1 14494:2 14516:2 14532:3 14586:5 14639:1 14650:1 14671:2 14687:1 14711:1 14728:1 14735:1 14750:1 14808:1 14814:2 14819:2 14822:1 14842:1 14846:1 14852:1 14867:1 14889:5 14899:1 14940:2 14984:2 15062:1 15078:1 15085:1 15127:3 15138:1 15157:1 15164:1 15167:2 15180:1 15185:1 15196:1 15201:1 15205:2 15234:1 15260:1 15330:1 15372:1 15404:3 15414:1 15430:2 15433:1 15446:1 15488:1 15494:1 15501:1 15506:1 15527:1 15544:2 15562:1 15621:1 15637:1 15679:1 15693:1 15732:1 15734:1 15735:5 15746:5 15762:1 15785:1 15849:2 15904:2 15910:1 15918:1 15933:3 15939:1 15955:1 15967:1 15981:2 15990:1 15997:1 16018:1 16029:1 16052:2 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:2 16202:1 16207:5 16235:1 16268:1 16304:2 16360:1 16401:1 16413:1 16414:2 16416:1 16438:1 16460:1 16467:1 16513:1 16540:1 16556:1 16643:1 16668:1 16677:1 16694:2 16724:1 16734:1 16742:1 16779:5 16783:3 16796:1 16805:1 16827:1 16845:1 16854:1 16877:1 16879:1 16884:3 16885:1 16902:4 16904:1 16926:2 16938:1 16948:5 16977:1 17009:9 17034:1 17046:1 17050:1 17055:1 17144:1 17149:1 17153:1 17157:1 17159:2 17164:2 17203:1 17207:1 17210:1 17213:2 17307:1 17308:1 17327:1 17359:1 17383:1 17408:5 17410:1 17466:1 17467:1 17499:2 17500:2 17503:1 17600:1 17620:1 17633:1 17636:2 17638:1 17642:2 17664:4 17675:1 17732:5 17733:3 17739:2 17761:1 17792:1 17859:1 17868:1 17908:2 17913:1 17924:3 17948:1 17995:1 18029:1 18044:1 18059:2 18068:1 18145:1 18252:1 18292:1 18296:1 18308:1 18323:1 18324:1 18339:1 18493:2 18540:1 18549:1 18554:1 18559:3 18570:1 18574:1 18581:1 18610:1 18653:2 18655:1 18666:2 18685:2 18700:1 18742:1 18748:1 18796:1 18844:1 18855:1 18906:1 18910:5 18926:1 19002:1 19006:1 19012:2 19042:1 19110:1 19174:5 19203:5 19207:1 19228:2 19230:1 19241:1 19270:1 19271:1 19291:1 19306:1 19311:1 19351:1 19367:2 19373:1 19383:1 19411:1 19522:3 19573:1 19606:1 19618:1 19631:2 19667:5 19693:1 19694:1 19739:2 19788:2 19820:1 19841:1 19843:3 19846:1 19852:1 19883:1 19902:12 19904:1 19909:1 19965:1 19967:1 19972:1 20012:1 20048:1 20064:4 20077:1 20078:1 20091:1 20098:1 20117:1 20142:1 20164:1 20224:1 20231:1 20243:1 20267:5 20270:1 20313:1 20318:1 20331:4 20342:1 20344:1 20350:2 20356:1 20362:1 20367:1 20369:1 20377:1 20418:3 20435:3 20440:1 20479:5 20492:2 20493:2 20496:1 20508:1 20511:1 20555:2 20572:1 20650:1 20682:1 20683:1 20687:1 20698:1 20763:3 20766:1 20775:1 20863:1 20873:1 20953:1 20960:1 20975:1 20980:1 20989:2 20997:1 21023:2 21043:1 21048:1 21069:1 21113:1 21162:5 21174:2 21185:1 21212:2 21226:1 21227:1 21240:2 21242:1 21252:1 21254:1 21279:1 21281:1 21282:1 21299:1 21324:1 21330:1 21338:2 21344:3 21353:1 21355:2 21397:1 21408:1 21417:2 21432:1 21441:1 21474:2 21483:1 21503:2 21521:1 21548:3 21558:1 21565:1 21578:2 21599:2 21634:1 21647:3 21653:1 21654:1 21662:1 21708:4 21715:1 21720:3 21756:1 21770:1 21771:1 21772:1 21779:1 21786:1 21787:1 21814:2 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 22000:1 22032:3 22080:1 22090:1 22111:1 22126:1 22135:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:2 22246:1 22254:1 22275:1 22303:1 22388:1 22397:1 22421:1 22425:2 22432:2 22466:1 22469:1 22492:2 22496:1 22521:1 22623:1 22625:3 22642:1 22651:1 22694:1 22729:1 22732:1 22745:4 22772:2 22844:1 22847:1 22861:1 22866:1 22891:1 22909:1 22919:1 22937:2 22941:1 22989:1 23012:1 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23166:2 23184:2 23223:1 23272:2 23277:1 23293:2 23302:1 23363:1 23386:2 23394:1 23426:1 23427:1 23429:1 23489:1 23490:1 23506:1 23532:1 23600:1 23606:1 23636:1 23656:1 10 8:1 11:3 13:1 18:1 21:1 31:2 68:1 106:1 117:1 128:2 145:1 184:1 232:1 268:1 311:1 315:1 386:1 394:6 417:2 429:1 474:1 476:1 489:1 497:1 541:1 548:1 621:1 622:1 636:1 655:2 657:1 665:1 758:1 764:1 805:1 895:1 898:1 949:4 951:2 981:2 989:1 1072:3 1075:1 1093:1 1159:1 1167:3 1188:3 1199:2 1238:1 1246:5 1248:1 1283:1 1297:1 1298:1 1299:1 1349:1 1384:1 1410:1 1422:3 1427:2 1430:1 1436:1 1449:2 1464:1 1491:1 1494:1 1497:4 1532:1 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:2 1630:1 1637:1 1639:1 1642:4 1659:1 1685:1 1738:2 1739:1 1742:1 1753:1 1767:1 1784:1 1789:1 1791:1 1862:4 1864:1 1865:1 1887:2 1912:2 1944:1 1945:1 1969:1 2011:1 2037:1 2039:1 2040:1 2044:1 2050:1 2052:2 2059:2 2068:1 2074:2 2075:1 2086:1 2106:1 2116:1 2135:1 2191:1 2200:1 2204:1 2234:1 2298:1 2303:1 2315:1 2317:1 2340:1 2345:3 2360:1 2391:1 2395:2 2397:1 2401:2 2402:1 2405:1 2407:1 2409:2 2423:1 2438:1 2459:1 2515:1 2521:2 2532:1 2538:2 2539:1 2546:1 2579:3 2605:1 2617:1 2629:1 2637:4 2652:1 2658:1 2687:1 2744:1 2750:1 2756:3 2763:1 2783:1 2799:1 2818:1 2842:1 2852:2 2876:1 2881:1 2910:1 2929:1 2936:1 2957:3 2962:4 2990:2 2997:3 3008:1 3039:1 3067:1 3068:1 3078:1 3095:1 3139:2 3152:1 3157:1 3195:1 3217:2 3276:1 3318:1 3368:3 3394:1 3446:1 3456:4 3470:3 3492:1 3542:1 3550:2 3552:2 3593:1 3594:1 3599:2 3608:1 3613:1 3627:2 3631:1 3632:1 3639:1 3642:1 3646:3 3651:2 3656:1 3686:1 3732:1 3733:1 3757:1 3795:1 3833:2 3844:9 3856:1 3857:1 3891:2 3901:1 3908:1 3947:1 3971:1 3996:1 4000:1 4017:1 4029:1 4083:1 4090:1 4109:3 4110:1 4147:1 4169:1 4170:1 4206:1 4222:1 4231:1 4270:1 4286:3 4295:1 4298:1 4338:1 4370:2 4377:2 4393:1 4397:2 4407:1 4425:1 4433:6 4444:1 4487:1 4502:1 4529:1 4537:1 4546:1 4557:4 4562:1 4571:1 4642:1 4659:1 4665:4 4669:2 4673:1 4678:1 4699:2 4700:1 4730:5 4741:2 4747:2 4778:1 4785:2 4803:3 4813:1 4827:3 4835:1 4844:4 4867:1 4877:1 4897:1 4941:6 4946:1 4948:1 4962:2 4979:1 5008:1 5039:1 5058:1 5165:2 5168:1 5174:1 5184:2 5218:2 5230:1 5271:1 5272:1 5318:1 5334:1 5339:2 5389:1 5411:1 5437:1 5439:1 5448:1 5454:1 5473:1 5480:4 5493:1 5536:1 5572:1 5608:1 5633:1 5640:1 5653:2 5660:6 5668:1 5710:1 5711:1 5776:1 5809:1 5833:1 5859:2 5874:1 5877:1 5880:1 5889:1 5916:3 5932:1 5941:1 5958:1 5980:1 5990:1 5999:1 6053:1 6067:1 6068:2 6086:1 6124:2 6133:1 6134:2 6135:4 6174:1 6199:1 6211:1 6235:1 6282:1 6283:1 6290:1 6295:1 6301:2 6313:1 6319:1 6330:1 6362:1 6405:1065 6440:1 6457:1 6472:1 6502:1 6510:2 6637:1 6666:1 6668:1 6677:1 6741:1 6749:2 6761:2 6763:1 6779:1 6794:1 6808:1 6841:1 6864:1 6867:1 6870:1 6896:1 6972:2 6975:1 6977:1 6989:1 6991:1 6993:1 6994:12 7014:1 7022:1 7024:1 7025:1 7079:1 7094:1 7151:1 7173:1 7196:1 7197:2 7204:1 7256:1 7337:2 7378:1 7388:3 7390:1 7391:1 7428:1 7430:1 7431:3 7453:2 7498:3 7506:1 7522:2 7559:1 7607:1 7623:2 7633:1 7659:2 7671:2 7712:2 7715:1 7745:2 7746:1 7772:1 7793:2 7824:4 7830:1 7844:2 7853:4 7863:1 7865:1 7876:1 7886:2 7892:1 7893:1 7897:1 7912:3 7927:1 7989:1 7993:1 8020:1 8049:2 8052:1 8054:1 8056:2 8064:2 8066:1 8095:1 8099:2 8110:2 8135:1 8173:1 8211:2 8225:1 8256:1 8295:1 8316:1 8324:1 8347:1 8439:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:4 8534:1 8647:1 8651:2 8662:1 8689:1 8690:2 8702:1 8720:4 8741:1 8760:1 8772:1 8799:1 8819:1 8824:1 8831:1 8842:1 8849:1 8866:2 8891:2 8896:1 8930:1 8932:1 8936:1 8947:2 8958:2 8981:1 9082:2 9127:1 9147:1 9167:3 9170:1 9194:1 9242:1 9247:2 9248:1 9272:1 9296:1 9312:1 9314:1 9322:1 9335:1 9362:1 9364:1 9371:1 9430:1 9432:1 9445:1 9454:12 9476:1 9489:1 9491:3 9529:2 9571:3 9574:1 9578:2 9680:1 9802:3 9803:3 9822:1 9837:1 9915:1 9920:1 9930:1 9943:2 9976:1 9989:1 10022:1 10085:1 10126:2 10132:1 10136:2 10139:1 10140:2 10141:1 10151:1 10162:1 10171:1 10172:1 10174:2 10206:2 10253:1 10287:1 10297:1 10305:1 10317:1 10318:1 10325:1 10338:3 10339:1 10342:1 10409:1 10414:1 10424:1 10444:6 10454:1 10493:1 10512:13 10559:1 10640:2 10667:1 10687:1 10718:1 10727:2 10753:1 10757:2 10775:1 10818:1 10859:1 10894:1 10970:1 10971:1 10977:1 10984:9 11059:1 11065:2 11072:1 11075:1 11100:1 11119:4 11125:1 11126:1 11141:4 11161:1 11174:2 11175:1 11182:2 11183:1 11199:1 11201:1 11225:1 11239:1 11300:1 11321:3 11331:1 11339:2 11345:1 11382:1 11401:1 11453:1 11481:2 11528:1 11539:1 11565:1 11567:2 11583:3 11625:1 11626:1 11644:1 11653:1 11655:1 11706:1 11729:1 11765:1 11766:1 11806:1 11809:1 11882:1 11898:1 11917:1 11950:1 11973:1 12045:1 12070:1 12071:12 12077:1 12091:1 12092:2 12134:1 12143:2 12165:2 12167:1 12198:1 12212:1 12231:1 12265:1 12303:1 12304:1 12312:2 12381:1 12391:2 12397:1 12399:1 12421:1 12478:2 12498:1 12521:5 12523:1 12528:1 12547:1 12552:1 12554:2 12564:2 12594:1 12602:9 12608:1 12613:2 12619:1 12643:16 12676:3 12680:3 12692:1 12741:1 12811:1 12828:1 12861:1 12954:1 12961:1 12980:1 12997:2 13002:1 13038:1 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:3 13181:1 13199:2 13201:2 13227:1 13259:1 13293:1 13301:2 13319:1 13344:1 13359:10 13361:1 13378:1 13406:2 13441:1 13446:1 13460:2 13475:6 13490:1 13502:1 13571:6 13589:1 13665:2 13670:1 13703:2 13717:1 13777:1 13790:1 13799:2 13831:1 13887:1 13908:1 13910:1 13930:1 13964:1 13967:1 13977:1 13982:1 14000:1 14013:1 14023:1 14035:1 14084:1 14113:1 14123:1 14130:4 14142:2 14160:1 14163:1 14171:2 14183:1 14200:1 14261:1 14266:1 14283:1 14308:1 14435:1 14439:1 14472:1 14475:1 14488:1 14494:2 14516:2 14532:3 14586:5 14639:1 14650:1 14667:1 14671:2 14687:1 14708:1 14711:1 14728:1 14735:1 14750:1 14808:1 14814:2 14819:2 14822:1 14842:1 14846:1 14852:1 14867:1 14889:6 14899:1 14940:2 14984:2 15062:1 15078:1 15085:1 15127:3 15138:1 15157:1 15164:1 15167:2 15180:1 15185:1 15196:2 15201:1 15205:2 15234:1 15260:1 15306:1 15330:1 15372:1 15404:3 15414:1 15430:2 15433:1 15446:1 15449:1 15488:1 15494:1 15501:1 15506:1 15527:1 15544:2 15562:1 15621:2 15637:1 15679:1 15690:1 15693:1 15698:1 15732:1 15734:1 15735:6 15746:6 15762:1 15785:1 15849:2 15904:2 15910:1 15918:1 15933:3 15939:1 15955:1 15967:1 15981:2 15990:1 15997:1 16018:1 16029:1 16052:2 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:2 16194:1 16202:1 16207:6 16235:1 16268:1 16276:1 16304:2 16356:1 16360:1 16401:1 16413:1 16414:2 16416:1 16438:1 16460:1 16467:1 16513:1 16540:1 16556:1 16643:1 16668:1 16677:1 16694:2 16724:1 16734:1 16742:1 16779:6 16783:3 16796:1 16805:1 16827:1 16845:1 16854:1 16877:1 16879:1 16884:3 16885:1 16902:4 16904:1 16926:2 16938:1 16948:6 16977:1 17009:9 17034:1 17046:1 17050:1 17055:1 17144:1 17149:1 17153:1 17157:1 17159:2 17164:2 17165:1 17203:1 17207:1 17210:1 17213:2 17307:1 17308:1 17327:1 17330:1 17359:1 17383:1 17408:6 17410:1 17466:1 17467:1 17499:2 17500:2 17503:1 17600:1 17620:2 17633:1 17636:3 17638:1 17642:3 17664:4 17675:1 17696:1 17732:6 17733:3 17739:2 17761:1 17788:1 17792:1 17859:1 17868:1 17890:1 17908:2 17913:1 17924:3 17948:1 17995:1 18029:1 18044:1 18059:2 18068:1 18145:1 18202:1 18252:1 18280:1 18292:1 18296:1 18308:1 18323:1 18324:1 18339:1 18493:2 18540:1 18549:1 18554:1 18559:3 18570:1 18574:1 18581:1 18610:1 18653:2 18655:1 18657:1 18666:2 18685:2 18700:1 18742:1 18748:1 18765:1 18796:1 18844:1 18855:1 18906:2 18910:6 18926:2 19002:2 19006:1 19012:2 19042:1 19110:1 19174:6 19203:6 19207:1 19228:2 19230:1 19241:1 19270:1 19271:1 19291:1 19306:1 19311:1 19351:1 19367:2 19373:1 19383:1 19411:1 19522:3 19573:1 19606:1 19618:1 19631:2 19667:6 19676:1 19693:1 19694:1 19739:2 19788:2 19814:1 19820:1 19841:1 19843:3 19846:1 19852:1 19883:1 19902:12 19904:1 19909:1 19960:1 19965:1 19967:1 19972:1 20012:1 20048:1 20064:4 20077:1 20078:1 20091:1 20098:1 20117:1 20142:1 20151:1 20164:1 20191:1 20224:1 20231:1 20243:1 20267:5 20270:1 20313:1 20317:1 20318:1 20331:4 20342:2 20344:1 20350:3 20356:1 20361:1 20362:1 20367:1 20369:1 20377:1 20418:3 20435:3 20436:1 20440:1 20479:6 20492:2 20493:2 20496:1 20508:1 20511:1 20555:2 20572:1 20590:1 20650:1 20660:1 20682:1 20683:1 20687:1 20698:2 20763:3 20766:1 20775:1 20863:1 20873:1 20953:1 20960:1 20975:1 20980:1 20989:2 20997:1 21023:3 21043:2 21048:1 21069:1 21113:1 21162:6 21174:2 21185:1 21212:2 21226:1 21227:1 21240:2 21242:1 21252:1 21254:1 21279:1 21281:1 21282:1 21299:1 21324:1 21330:1 21338:2 21344:3 21353:1 21355:2 21397:1 21408:1 21417:2 21432:2 21441:1 21474:2 21483:1 21503:2 21521:1 21548:3 21558:1 21565:1 21578:2 21599:2 21634:1 21647:3 21653:1 21654:1 21662:1 21708:5 21715:1 21720:3 21756:1 21770:1 21771:1 21772:1 21779:1 21786:1 21787:1 21814:2 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 22000:1 22032:3 22080:1 22090:1 22111:1 22115:1 22118:1 22126:1 22135:1 22184:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:2 22246:1 22254:1 22275:1 22303:1 22388:1 22397:1 22421:1 22425:2 22432:2 22466:1 22469:1 22492:2 22496:1 22521:1 22623:1 22625:3 22642:1 22651:1 22694:1 22729:1 22732:1 22745:4 22772:2 22836:1 22844:2 22847:1 22861:1 22866:1 22891:1 22909:1 22919:1 22937:2 22941:1 22947:1 22989:1 23012:1 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23166:2 23184:3 23223:1 23272:2 23277:1 23293:2 23302:1 23363:1 23386:2 23394:1 23426:1 23427:1 23429:1 23489:1 23490:1 23506:2 23532:1 23600:1 23606:1 23636:1 23656:1 10 8:1 11:3 13:1 18:1 21:1 31:3 68:1 106:1 117:1 128:2 145:1 184:1 232:1 268:1 311:1 315:1 386:1 394:7 417:2 429:1 474:1 476:1 489:1 497:1 541:1 548:1 559:1 621:1 622:1 636:1 655:2 657:1 665:1 758:1 764:2 805:1 895:1 898:1 949:5 951:2 981:3 989:1 1072:3 1075:1 1093:1 1159:1 1167:3 1188:3 1199:2 1238:1 1246:5 1248:1 1283:1 1297:1 1298:1 1299:1 1349:1 1384:1 1410:1 1422:4 1427:2 1430:1 1436:2 1449:2 1464:1 1491:1 1494:1 1497:5 1532:1 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:2 1630:1 1637:1 1639:1 1642:4 1659:1 1685:1 1738:2 1739:1 1742:1 1753:1 1767:1 1784:1 1789:1 1791:1 1862:6 1864:1 1865:1 1887:2 1912:2 1944:1 1945:1 1969:1 2003:1 2011:1 2037:1 2039:1 2040:1 2044:1 2050:1 2052:2 2059:2 2068:1 2074:2 2075:1 2086:1 2106:1 2116:1 2135:1 2191:1 2200:1 2204:1 2234:1 2298:1 2303:1 2315:1 2317:1 2340:1 2345:4 2360:1 2391:1 2395:2 2397:1 2401:2 2402:1 2405:1 2407:1 2409:2 2423:1 2438:1 2459:1 2515:1 2521:2 2532:1 2538:2 2539:1 2546:1 2579:3 2605:1 2617:1 2629:1 2637:4 2652:1 2658:1 2687:1 2744:1 2750:1 2756:4 2763:2 2783:1 2799:1 2818:1 2842:1 2852:3 2876:1 2881:1 2910:1 2929:1 2936:1 2957:3 2962:4 2990:2 2997:3 3008:1 3039:1 3067:1 3068:1 3078:1 3095:1 3139:2 3152:1 3157:1 3195:1 3217:2 3276:1 3300:1 3318:1 3368:3 3394:1 3446:1 3456:4 3470:3 3492:1 3542:1 3550:2 3552:2 3593:1 3594:1 3599:2 3608:1 3613:1 3627:2 3631:1 3632:1 3639:1 3642:1 3646:3 3651:2 3656:1 3686:1 3732:1 3733:1 3757:1 3795:1 3833:2 3844:9 3856:1 3857:1 3891:2 3901:1 3908:1 3947:1 3971:1 3996:1 4000:1 4017:1 4029:1 4083:1 4090:1 4109:3 4110:1 4147:1 4169:1 4170:1 4206:1 4222:1 4231:1 4270:1 4286:3 4295:1 4298:1 4338:2 4370:2 4377:2 4393:1 4397:2 4407:1 4425:1 4433:7 4444:1 4487:1 4502:1 4529:1 4537:1 4546:1 4557:4 4562:1 4571:1 4642:1 4659:1 4665:5 4669:2 4673:1 4678:1 4699:2 4700:1 4728:1 4730:5 4741:2 4747:2 4774:1 4778:1 4785:2 4803:3 4813:1 4827:4 4835:1 4844:4 4867:1 4877:1 4897:1 4919:1 4941:7 4946:1 4948:1 4962:2 4979:1 5008:1 5039:1 5058:1 5165:3 5168:1 5174:1 5184:2 5218:2 5230:1 5271:1 5272:1 5318:2 5334:2 5339:2 5375:1 5389:1 5411:1 5437:1 5439:1 5448:1 5454:1 5473:1 5480:4 5493:1 5536:1 5572:1 5608:1 5633:1 5640:1 5653:2 5660:7 5668:1 5710:1 5711:1 5776:1 5809:1 5833:2 5846:1 5859:2 5874:1 5877:1 5880:1 5889:1 5910:1 5916:3 5932:1 5941:1 5958:1 5980:1 5990:1 5999:1 6053:1 6067:1 6068:3 6086:1 6124:3 6133:1 6134:2 6135:5 6174:1 6199:1 6211:1 6235:1 6282:2 6283:1 6290:1 6295:1 6301:2 6313:1 6319:1 6330:1 6362:1 6405:1114 6440:1 6457:1 6472:1 6502:1 6510:2 6637:1 6666:1 6668:1 6677:1 6741:1 6749:2 6761:2 6763:1 6779:1 6794:1 6808:1 6841:1 6864:1 6867:1 6870:1 6896:1 6972:2 6975:1 6977:1 6989:1 6991:1 6993:1 6994:12 7014:1 7022:1 7024:1 7025:1 7079:1 7094:1 7151:1 7173:1 7196:1 7197:2 7204:1 7256:1 7337:2 7378:1 7388:4 7390:1 7391:1 7428:1 7430:1 7431:3 7436:1 7453:2 7498:3 7506:1 7522:2 7559:1 7607:1 7623:2 7633:1 7659:2 7671:2 7712:2 7715:1 7745:2 7746:1 7772:1 7793:2 7824:4 7830:1 7844:2 7853:4 7863:1 7865:1 7876:1 7886:2 7892:1 7893:1 7897:1 7912:4 7927:1 7989:1 7993:1 8020:1 8049:2 8052:1 8054:1 8056:2 8064:2 8066:1 8095:1 8099:2 8110:2 8135:1 8173:1 8211:2 8225:1 8256:1 8291:1 8295:1 8316:1 8324:1 8347:1 8439:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:4 8534:1 8647:1 8651:2 8662:1 8689:1 8690:2 8702:1 8720:4 8741:1 8760:1 8772:1 8780:1 8793:1 8799:1 8819:1 8824:1 8831:1 8842:1 8849:1 8866:2 8891:2 8896:1 8930:1 8932:1 8936:1 8947:2 8958:2 8981:1 8986:1 9082:2 9127:2 9147:1 9167:3 9170:1 9194:1 9242:1 9247:2 9248:1 9272:1 9296:1 9312:1 9314:1 9322:1 9335:1 9362:1 9364:1 9371:1 9430:1 9432:1 9445:1 9454:12 9476:1 9489:1 9491:3 9529:2 9570:1 9571:3 9574:1 9578:2 9680:1 9800:1 9802:3 9803:3 9822:1 9837:1 9915:1 9920:1 9930:1 9943:2 9976:1 9989:1 10022:1 10085:1 10126:2 10132:1 10136:2 10139:1 10140:2 10141:1 10151:1 10162:1 10171:1 10172:1 10174:2 10206:3 10253:1 10287:1 10297:1 10305:1 10317:1 10318:1 10325:1 10338:3 10339:1 10342:1 10409:1 10414:1 10424:1 10444:7 10454:1 10493:1 10512:13 10559:1 10640:3 10667:1 10687:1 10718:1 10727:2 10753:1 10757:2 10775:1 10818:1 10859:1 10894:1 10970:1 10971:1 10977:1 10984:9 11059:1 11065:2 11072:1 11075:1 11100:1 11109:1 11119:4 11125:1 11126:1 11141:4 11161:1 11174:2 11175:1 11182:2 11183:1 11199:1 11201:1 11225:1 11239:1 11300:1 11321:3 11331:1 11339:2 11345:1 11382:1 11401:1 11453:1 11481:2 11528:1 11539:1 11565:1 11567:2 11583:3 11625:1 11626:1 11644:1 11653:1 11655:1 11706:1 11729:1 11765:1 11766:1 11806:1 11809:1 11830:1 11882:1 11898:1 11917:1 11950:1 11973:1 12045:1 12061:1 12070:1 12071:12 12077:1 12091:1 12092:2 12134:1 12143:2 12165:2 12167:1 12198:1 12212:1 12231:1 12265:1 12303:1 12304:1 12312:2 12381:1 12391:2 12397:1 12399:1 12421:1 12478:2 12498:1 12521:6 12523:2 12528:1 12547:1 12552:1 12554:2 12564:2 12594:1 12602:9 12608:1 12613:2 12619:1 12643:16 12676:4 12680:3 12692:1 12741:1 12811:2 12828:2 12851:1 12861:1 12954:1 12961:1 12980:1 12997:2 13002:1 13038:1 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:3 13181:1 13199:2 13201:2 13227:1 13232:1 13259:1 13293:1 13301:2 13319:1 13344:1 13359:10 13361:1 13378:1 13406:2 13441:1 13446:1 13460:2 13475:7 13490:1 13502:1 13571:7 13589:1 13665:2 13670:1 13703:2 13717:1 13737:1 13777:1 13790:1 13799:2 13831:1 13887:1 13908:1 13910:1 13930:1 13964:1 13967:1 13977:1 13982:1 14000:1 14013:1 14023:1 14035:1 14084:1 14113:1 14123:1 14130:5 14142:2 14160:1 14163:1 14168:1 14171:2 14183:1 14200:1 14261:1 14266:1 14283:1 14308:1 14344:1 14435:1 14439:1 14472:1 14475:1 14488:1 14494:2 14495:1 14516:2 14532:3 14586:5 14639:1 14650:1 14667:1 14671:2 14687:1 14708:1 14711:1 14728:1 14735:1 14750:1 14808:1 14814:2 14819:2 14822:1 14842:1 14846:1 14852:1 14867:1 14889:7 14899:1 14940:2 14984:2 15062:1 15078:1 15085:1 15127:3 15138:1 15157:1 15164:1 15167:2 15180:1 15185:1 15196:2 15201:1 15205:2 15234:1 15260:1 15306:1 15330:1 15372:1 15404:3 15414:1 15430:2 15433:1 15446:1 15447:1 15449:1 15488:1 15494:1 15501:1 15506:1 15527:1 15544:2 15562:1 15621:2 15637:2 15679:2 15690:1 15693:1 15698:1 15732:1 15734:1 15735:7 15746:7 15762:1 15785:1 15849:3 15904:3 15910:1 15918:1 15929:1 15933:3 15939:1 15955:1 15967:1 15976:1 15981:2 15990:1 15997:1 16018:1 16029:1 16052:2 16055:1 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:2 16194:1 16202:1 16207:7 16235:1 16268:1 16276:1 16304:2 16356:1 16360:1 16389:1 16401:1 16413:1 16414:2 16416:1 16438:1 16460:1 16467:1 16513:1 16540:1 16556:1 16643:1 16668:1 16677:1 16694:2 16724:1 16734:1 16742:1 16779:6 16783:3 16796:1 16797:1 16805:1 16827:1 16845:2 16854:1 16877:1 16879:1 16884:4 16885:1 16902:4 16904:1 16926:2 16938:1 16948:7 16977:1 17009:9 17034:1 17046:2 17050:2 17052:1 17055:1 17144:1 17149:1 17153:1 17156:1 17157:1 17159:2 17164:2 17165:1 17203:1 17207:1 17210:1 17213:2 17307:1 17308:1 17327:1 17330:1 17359:1 17383:1 17408:7 17410:1 17466:1 17467:1 17499:3 17500:2 17503:1 17600:1 17620:2 17633:1 17636:3 17638:1 17642:4 17664:4 17675:1 17696:1 17732:7 17733:3 17739:2 17761:1 17788:1 17792:1 17859:1 17868:1 17890:1 17908:2 17913:1 17924:4 17948:1 17995:1 18029:1 18044:1 18059:2 18068:1 18145:1 18202:1 18252:1 18280:1 18292:1 18296:1 18308:1 18323:1 18324:2 18339:1 18493:2 18540:1 18549:1 18554:1 18559:3 18570:1 18574:1 18581:1 18610:1 18653:2 18655:1 18657:1 18666:2 18685:2 18700:1 18742:1 18748:1 18765:1 18796:1 18844:1 18855:1 18906:2 18910:7 18926:2 19002:2 19006:1 19012:2 19042:1 19110:1 19174:7 19203:7 19207:1 19228:2 19230:1 19241:1 19270:1 19271:1 19291:1 19302:1 19306:1 19311:1 19351:1 19367:2 19373:1 19383:1 19411:1 19522:3 19573:1 19606:1 19618:1 19631:2 19667:7 19676:1 19693:1 19694:1 19739:2 19788:2 19814:1 19820:1 19838:1 19841:1 19843:4 19846:1 19852:1 19883:1 19902:12 19904:1 19909:1 19960:1 19965:1 19967:1 19972:1 20012:1 20048:1 20064:5 20077:2 20078:1 20091:1 20098:1 20117:1 20142:1 20151:1 20164:1 20191:1 20224:1 20231:1 20243:1 20267:6 20270:1 20313:1 20317:1 20318:1 20331:4 20342:2 20344:1 20350:3 20356:1 20361:1 20362:1 20367:1 20369:1 20377:1 20418:3 20435:3 20436:1 20440:1 20479:7 20492:2 20493:2 20496:1 20508:1 20511:1 20555:2 20572:1 20590:1 20650:1 20660:1 20682:2 20683:1 20687:1 20698:2 20763:4 20766:1 20775:1 20863:1 20873:1 20953:1 20960:1 20975:1 20980:1 20989:2 20997:1 21023:3 21043:2 21048:1 21069:1 21113:1 21162:7 21174:2 21185:2 21212:2 21226:1 21227:1 21240:2 21242:1 21252:1 21254:1 21279:1 21281:1 21282:1 21299:1 21324:1 21330:1 21338:2 21344:3 21353:1 21355:2 21397:1 21408:1 21417:2 21432:2 21441:1 21474:2 21483:1 21503:2 21521:1 21548:3 21558:1 21565:1 21578:2 21599:2 21634:1 21647:3 21653:1 21654:1 21662:1 21708:6 21715:1 21720:3 21729:1 21756:1 21770:1 21771:1 21772:1 21779:1 21786:1 21787:1 21808:1 21814:2 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 22000:1 22032:3 22080:1 22090:1 22111:1 22115:1 22118:1 22126:1 22135:1 22184:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:2 22246:1 22254:1 22275:1 22303:2 22388:1 22397:1 22421:1 22425:2 22432:2 22466:1 22469:1 22492:2 22496:1 22521:1 22623:1 22625:3 22642:1 22651:1 22694:1 22729:1 22732:1 22745:4 22772:2 22831:1 22836:1 22844:2 22847:1 22861:1 22866:1 22891:1 22909:1 22919:1 22937:2 22941:1 22947:1 22989:1 22993:1 23012:2 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23166:2 23184:3 23223:1 23272:2 23277:2 23293:2 23302:1 23363:1 23386:2 23394:1 23426:1 23427:1 23429:1 23489:1 23490:1 23506:3 23532:1 23600:1 23606:1 23636:1 23656:1 10 8:1 11:3 13:1 18:1 21:1 31:3 68:1 106:1 117:1 128:2 145:1 184:1 190:1 232:1 268:1 311:1 315:1 386:1 394:8 417:2 429:1 474:1 476:1 489:1 497:1 541:1 548:1 559:1 621:1 622:1 636:1 655:2 657:1 665:1 758:1 764:2 805:1 895:1 898:1 949:6 951:2 981:3 989:1 1072:3 1075:2 1093:1 1159:1 1167:3 1188:4 1199:2 1238:1 1246:5 1248:1 1283:1 1297:1 1298:1 1299:1 1349:1 1384:1 1410:1 1422:4 1427:2 1430:1 1436:2 1449:2 1464:1 1467:1 1491:1 1494:1 1497:6 1532:1 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:2 1630:1 1637:1 1639:1 1642:4 1659:2 1685:1 1738:2 1739:1 1742:1 1753:1 1767:1 1784:1 1789:1 1791:1 1862:6 1864:1 1865:1 1887:2 1912:2 1944:1 1945:1 1969:2 2003:1 2011:1 2037:1 2039:1 2040:1 2044:1 2050:1 2052:2 2059:2 2068:1 2073:1 2074:2 2075:1 2086:1 2101:1 2106:1 2116:1 2135:1 2191:1 2200:1 2204:1 2234:1 2298:1 2300:1 2303:1 2315:1 2317:1 2340:1 2345:4 2360:1 2391:1 2395:2 2397:1 2401:2 2402:1 2405:1 2407:1 2409:2 2423:1 2431:1 2438:1 2459:1 2515:1 2521:2 2532:1 2538:2 2539:1 2546:1 2579:4 2605:1 2617:1 2629:1 2637:4 2652:1 2658:1 2687:1 2744:1 2750:1 2756:4 2763:2 2783:1 2799:1 2818:1 2842:1 2852:3 2876:1 2881:1 2910:1 2929:1 2936:1 2957:4 2962:4 2990:2 2997:3 3008:1 3039:1 3067:1 3068:1 3078:1 3095:1 3139:2 3152:1 3157:1 3195:1 3217:2 3276:1 3300:1 3318:1 3368:3 3394:1 3446:1 3456:4 3470:3 3492:1 3542:1 3550:2 3552:2 3593:1 3594:2 3599:2 3608:1 3613:1 3620:1 3627:2 3631:1 3632:1 3639:1 3642:1 3646:3 3651:2 3656:1 3686:1 3732:1 3733:1 3757:1 3795:1 3833:2 3844:9 3856:1 3857:1 3891:2 3901:1 3908:1 3947:1 3948:1 3971:1 3987:1 3996:1 4000:1 4017:2 4029:1 4083:1 4090:1 4109:4 4110:1 4147:1 4169:1 4170:1 4206:1 4222:1 4231:1 4270:1 4286:4 4295:1 4298:1 4338:2 4370:2 4377:2 4393:1 4397:2 4407:1 4425:1 4433:8 4444:1 4487:1 4502:1 4529:1 4537:1 4546:1 4557:4 4562:1 4571:1 4642:1 4659:1 4665:6 4669:2 4673:1 4678:1 4699:2 4700:1 4728:1 4730:5 4739:1 4741:2 4747:2 4774:1 4778:1 4785:2 4803:3 4813:1 4827:4 4835:1 4844:4 4867:1 4877:1 4897:1 4919:1 4941:8 4946:1 4948:1 4962:2 4979:1 5008:1 5039:1 5058:1 5165:3 5168:1 5174:1 5184:2 5218:2 5230:1 5267:1 5271:1 5272:1 5318:3 5334:2 5339:2 5375:1 5389:1 5411:1 5437:1 5439:1 5448:1 5454:1 5473:1 5480:4 5493:1 5536:1 5572:1 5608:1 5633:1 5640:1 5653:2 5660:8 5668:1 5710:1 5711:1 5776:1 5809:1 5833:2 5846:1 5859:2 5874:1 5877:1 5880:1 5889:1 5910:1 5916:3 5932:1 5941:1 5958:1 5980:1 5990:1 5999:2 6053:1 6067:1 6068:3 6086:1 6124:3 6133:1 6134:2 6135:5 6174:1 6199:1 6211:2 6235:1 6282:2 6283:1 6290:1 6295:1 6301:2 6313:1 6319:1 6330:1 6362:1 6405:1183 6440:1 6457:1 6472:1 6502:1 6510:2 6637:1 6666:1 6668:1 6677:1 6741:1 6749:3 6761:2 6763:1 6779:1 6794:1 6808:1 6841:1 6864:1 6867:1 6870:1 6896:1 6972:2 6975:1 6977:1 6989:1 6991:1 6993:1 6994:13 7014:1 7022:1 7024:1 7025:1 7079:1 7094:1 7151:1 7173:1 7196:1 7197:2 7204:1 7207:1 7256:1 7337:2 7378:1 7388:5 7390:1 7391:1 7428:1 7430:1 7431:3 7436:1 7453:3 7498:3 7506:1 7522:2 7559:1 7607:1 7623:2 7633:1 7659:2 7671:2 7682:1 7712:2 7715:1 7745:2 7746:1 7772:1 7793:2 7824:4 7830:1 7844:3 7853:4 7863:1 7865:1 7876:1 7886:2 7892:1 7893:1 7897:1 7912:5 7927:1 7989:1 7993:1 8020:1 8049:2 8052:1 8054:1 8056:2 8064:3 8066:1 8095:1 8099:2 8110:2 8135:1 8173:1 8211:2 8225:1 8256:1 8291:1 8295:1 8316:1 8324:1 8347:1 8439:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:4 8534:1 8647:1 8651:2 8662:1 8689:1 8690:2 8699:1 8702:1 8720:4 8741:1 8760:1 8772:1 8780:1 8793:1 8799:1 8819:1 8824:1 8831:1 8842:1 8849:1 8866:2 8891:2 8896:1 8930:1 8932:1 8936:1 8947:2 8958:2 8981:1 8986:1 9082:2 9127:3 9147:1 9167:3 9170:1 9194:1 9242:1 9247:2 9248:1 9272:1 9295:1 9296:1 9312:1 9314:1 9322:1 9335:2 9362:1 9364:1 9371:1 9400:1 9430:1 9432:1 9445:1 9454:13 9476:1 9489:1 9491:3 9505:1 9529:2 9570:1 9571:3 9574:1 9578:2 9680:1 9800:1 9802:3 9803:3 9822:1 9837:1 9915:1 9920:1 9930:1 9943:2 9976:1 9989:1 10022:1 10085:1 10126:2 10132:1 10136:2 10139:1 10140:2 10141:1 10151:1 10162:1 10171:1 10172:1 10174:2 10206:3 10253:1 10262:1 10287:1 10297:1 10305:1 10317:1 10318:1 10325:1 10338:3 10339:1 10342:1 10409:1 10414:1 10424:1 10444:8 10454:1 10493:1 10512:14 10559:1 10640:3 10667:1 10687:1 10718:1 10727:2 10753:1 10757:2 10775:1 10818:1 10859:1 10894:1 10970:1 10971:1 10977:1 10980:1 10984:9 11059:1 11065:2 11072:1 11075:1 11100:1 11109:1 11119:4 11125:1 11126:1 11141:4 11161:1 11174:2 11175:1 11182:2 11183:1 11199:1 11201:1 11225:1 11239:1 11300:1 11321:3 11331:1 11339:2 11345:1 11382:1 11401:1 11453:1 11461:1 11481:2 11528:1 11539:1 11565:1 11567:2 11583:3 11592:1 11625:1 11626:1 11644:1 11653:1 11655:1 11706:1 11729:1 11765:1 11766:1 11806:1 11809:1 11818:1 11830:1 11882:1 11898:1 11917:1 11950:1 11973:1 12045:1 12046:1 12061:1 12070:1 12071:13 12077:1 12091:1 12092:2 12134:1 12143:2 12165:2 12167:1 12198:1 12212:1 12231:1 12265:1 12303:1 12304:1 12312:2 12381:1 12391:2 12397:1 12399:1 12421:1 12478:2 12498:1 12521:8 12522:1 12523:2 12528:1 12547:1 12552:1 12554:2 12564:2 12594:2 12602:9 12608:1 12613:2 12619:1 12643:17 12676:4 12680:3 12692:1 12741:1 12765:1 12811:2 12828:2 12851:1 12861:1 12954:1 12961:1 12980:1 12997:2 13002:1 13038:1 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:3 13153:1 13181:1 13199:3 13201:2 13227:1 13232:1 13259:1 13293:1 13301:2 13319:1 13344:1 13359:12 13361:1 13378:1 13406:2 13441:1 13446:1 13460:2 13475:8 13490:1 13502:1 13571:8 13589:1 13665:2 13670:1 13703:2 13717:1 13737:1 13750:1 13777:1 13790:1 13799:2 13831:1 13887:1 13908:1 13910:1 13918:1 13930:1 13964:1 13967:1 13977:1 13982:2 14000:1 14013:1 14023:1 14035:1 14084:1 14113:1 14123:1 14130:5 14142:2 14160:1 14163:1 14168:1 14171:2 14183:1 14200:1 14261:2 14266:1 14283:1 14308:1 14344:1 14435:1 14439:1 14472:1 14475:1 14488:1 14494:2 14495:1 14516:2 14532:3 14586:5 14639:1 14650:1 14667:1 14671:2 14687:1 14708:1 14711:1 14728:1 14735:1 14750:1 14808:1 14814:2 14819:2 14822:1 14842:1 14846:1 14852:1 14867:1 14883:1 14889:8 14898:1 14899:1 14940:2 14984:2 15062:1 15078:1 15085:1 15127:3 15134:1 15138:1 15157:1 15164:1 15167:2 15180:1 15185:1 15196:2 15201:1 15205:2 15214:1 15234:1 15260:1 15306:1 15330:1 15372:1 15404:3 15414:1 15430:2 15433:1 15446:1 15447:1 15449:1 15488:1 15494:1 15501:1 15506:1 15527:1 15544:2 15557:1 15562:1 15621:2 15637:3 15679:2 15690:1 15693:1 15698:1 15732:1 15734:1 15735:8 15746:8 15762:1 15785:1 15849:3 15904:3 15910:1 15918:1 15929:1 15933:3 15939:1 15955:1 15963:1 15967:1 15976:1 15981:2 15990:1 15997:1 16018:1 16029:1 16052:2 16055:1 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:2 16194:1 16202:1 16207:8 16235:1 16268:1 16276:1 16304:2 16356:1 16360:1 16389:1 16401:2 16413:1 16414:2 16416:1 16438:1 16460:1 16467:1 16513:1 16540:1 16556:1 16643:1 16668:1 16677:1 16694:2 16724:1 16734:1 16742:1 16779:6 16783:4 16796:1 16797:1 16805:1 16827:1 16845:2 16854:1 16877:1 16879:1 16884:4 16885:1 16902:4 16904:1 16926:2 16938:1 16948:8 16977:1 17006:1 17009:9 17034:1 17046:4 17050:2 17052:1 17055:1 17144:1 17149:1 17153:1 17156:1 17157:2 17159:2 17164:2 17165:1 17203:1 17207:1 17210:1 17213:2 17307:1 17308:1 17327:1 17330:1 17359:1 17383:1 17408:8 17410:1 17466:1 17467:1 17499:3 17500:2 17503:1 17600:1 17620:2 17633:1 17636:3 17638:1 17642:5 17664:4 17675:1 17696:1 17732:8 17733:3 17739:2 17761:1 17788:1 17792:1 17859:1 17868:1 17890:1 17908:2 17913:1 17924:4 17948:1 17995:2 18029:1 18044:1 18059:2 18068:1 18145:1 18202:1 18252:1 18280:1 18292:1 18296:1 18308:1 18323:1 18324:2 18339:1 18493:2 18540:1 18549:1 18554:1 18559:3 18570:1 18574:1 18581:1 18610:1 18653:2 18655:1 18657:1 18666:2 18685:2 18700:1 18742:1 18748:1 18765:1 18796:1 18844:1 18855:1 18906:3 18910:8 18926:2 19002:2 19006:1 19012:2 19021:1 19042:1 19110:1 19174:8 19203:8 19207:1 19228:2 19230:1 19241:1 19270:2 19271:2 19291:1 19297:1 19302:1 19305:1 19306:1 19311:1 19351:1 19367:2 19373:1 19383:1 19404:1 19411:1 19522:3 19573:1 19606:1 19618:1 19631:2 19667:8 19676:1 19693:1 19694:1 19739:2 19788:2 19814:1 19820:1 19838:1 19841:1 19843:4 19846:1 19852:1 19883:1 19902:13 19904:1 19909:1 19960:1 19965:1 19967:1 19972:1 20012:1 20048:1 20064:5 20077:2 20078:1 20091:1 20098:1 20117:1 20142:2 20151:1 20164:1 20191:1 20224:1 20231:1 20243:1 20267:7 20270:2 20272:1 20313:1 20317:1 20318:1 20331:4 20342:2 20344:1 20350:3 20356:1 20361:1 20362:1 20367:1 20369:1 20377:1 20418:3 20435:3 20436:1 20440:1 20479:8 20492:2 20493:2 20496:1 20508:1 20511:1 20555:2 20572:1 20590:1 20650:1 20660:1 20682:2 20683:1 20687:1 20698:3 20763:4 20766:1 20775:1 20863:1 20873:1 20953:1 20960:1 20975:1 20980:1 20989:2 20997:1 21023:3 21043:2 21048:1 21069:1 21078:1 21113:1 21162:8 21174:2 21185:2 21194:1 21212:2 21226:1 21227:1 21240:2 21242:1 21252:1 21253:1 21254:1 21279:1 21281:1 21282:1 21299:1 21324:1 21330:1 21338:2 21344:3 21353:1 21355:2 21397:1 21408:1 21417:2 21429:1 21432:2 21441:1 21474:2 21483:1 21503:2 21521:1 21548:3 21558:1 21565:2 21578:2 21599:2 21634:1 21636:1 21647:3 21653:1 21654:1 21662:1 21708:8 21715:1 21720:3 21729:1 21756:1 21770:1 21771:1 21772:1 21779:1 21786:1 21787:1 21808:1 21814:2 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 22000:1 22032:3 22080:1 22090:1 22111:1 22115:1 22118:1 22126:1 22135:1 22184:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:2 22246:3 22254:1 22275:1 22303:2 22365:1 22388:1 22397:1 22421:1 22425:2 22432:2 22466:1 22469:1 22492:2 22495:1 22496:1 22521:1 22623:1 22625:3 22642:1 22651:1 22659:1 22694:1 22729:1 22732:1 22745:4 22772:2 22831:2 22836:1 22844:2 22847:1 22861:1 22866:1 22891:1 22909:1 22919:1 22933:1 22937:2 22941:1 22947:1 22989:1 22993:1 23012:2 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23166:2 23184:3 23223:1 23272:3 23274:1 23277:2 23293:2 23302:1 23363:1 23386:2 23394:1 23426:1 23427:1 23429:1 23436:1 23489:1 23490:1 23506:3 23532:1 23600:1 23606:1 23636:1 23656:2 10 8:1 11:3 13:1 18:1 21:2 31:3 68:1 106:1 117:1 128:2 145:1 184:1 190:1 232:1 268:1 311:1 315:1 386:1 394:8 417:2 429:1 474:1 476:1 489:1 497:1 541:1 548:1 559:1 621:1 622:1 636:1 655:2 657:1 665:1 758:2 764:2 805:1 895:1 898:1 949:6 951:2 981:3 989:1 1072:3 1075:2 1093:1 1106:1 1159:1 1167:3 1188:4 1199:2 1238:1 1246:5 1248:1 1283:1 1297:1 1298:1 1299:1 1349:1 1384:1 1410:1 1422:4 1427:2 1430:1 1436:2 1449:2 1464:1 1467:1 1491:1 1494:1 1497:7 1532:1 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:2 1630:1 1637:1 1639:1 1642:5 1643:1 1659:2 1685:1 1687:2 1738:2 1739:1 1742:1 1753:1 1767:1 1784:1 1789:1 1791:1 1802:1 1862:6 1864:1 1865:1 1887:2 1912:2 1944:1 1945:1 1969:2 2003:1 2011:1 2037:1 2039:1 2040:1 2044:1 2050:1 2052:2 2059:2 2068:1 2073:1 2074:2 2075:1 2086:1 2101:1 2106:1 2116:1 2135:1 2191:1 2200:1 2204:1 2234:1 2289:1 2298:1 2300:1 2303:1 2315:1 2317:1 2340:1 2345:4 2360:1 2391:1 2395:2 2397:1 2401:2 2402:1 2405:2 2407:1 2409:2 2423:1 2431:1 2438:1 2459:1 2515:1 2521:2 2532:1 2538:2 2539:1 2546:1 2579:4 2605:1 2617:1 2629:1 2637:4 2652:1 2658:1 2687:1 2744:1 2750:1 2756:4 2763:2 2783:1 2799:1 2818:1 2842:1 2852:3 2876:1 2881:1 2910:1 2929:1 2936:1 2957:4 2962:4 2985:1 2990:2 2997:3 3008:1 3039:1 3067:1 3068:1 3078:1 3095:1 3139:2 3147:1 3152:1 3157:2 3195:1 3217:2 3276:1 3279:1 3296:1 3300:1 3318:1 3368:3 3394:1 3446:1 3456:4 3470:3 3492:1 3517:1 3542:1 3550:2 3552:2 3593:1 3594:2 3597:2 3599:2 3608:1 3613:1 3620:1 3627:2 3631:1 3632:1 3639:1 3642:1 3646:3 3651:3 3656:1 3686:1 3732:1 3733:1 3757:1 3795:1 3833:2 3844:10 3856:1 3857:1 3891:2 3901:1 3908:1 3947:2 3948:2 3971:1 3987:1 3996:1 4000:1 4017:2 4029:1 4083:1 4090:1 4109:4 4110:1 4147:1 4169:1 4170:1 4206:1 4222:1 4231:1 4256:1 4270:1 4286:4 4295:1 4298:1 4338:2 4357:1 4370:2 4377:2 4393:1 4397:2 4407:1 4425:1 4433:8 4444:1 4487:1 4502:1 4529:1 4537:1 4546:1 4557:4 4562:1 4571:1 4622:1 4642:1 4659:1 4665:6 4669:2 4673:1 4678:1 4699:2 4700:1 4728:1 4730:5 4739:1 4741:2 4747:2 4774:1 4778:1 4785:2 4803:3 4810:1 4813:1 4827:4 4835:1 4844:4 4867:1 4877:1 4897:1 4919:1 4941:8 4946:1 4948:1 4962:2 4979:1 5008:1 5039:1 5058:1 5165:3 5168:1 5174:1 5184:2 5218:2 5230:1 5267:1 5271:1 5272:1 5318:3 5334:2 5339:2 5375:1 5389:1 5411:1 5437:1 5439:1 5448:1 5454:1 5473:1 5480:4 5493:1 5522:1 5536:1 5572:1 5608:2 5633:1 5640:1 5653:2 5660:8 5668:1 5710:1 5711:1 5776:1 5809:1 5833:2 5846:1 5859:2 5874:1 5877:1 5880:1 5889:1 5910:1 5916:3 5932:1 5941:1 5958:1 5980:1 5990:1 5999:2 6053:1 6067:1 6068:3 6086:1 6124:3 6133:1 6134:3 6135:5 6174:1 6179:1 6199:1 6211:2 6235:1 6282:2 6283:1 6290:1 6295:1 6301:2 6313:1 6319:1 6330:1 6362:1 6405:1233 6440:1 6457:1 6465:1 6472:1 6502:1 6510:2 6637:1 6666:1 6668:1 6677:1 6741:1 6749:3 6761:2 6763:1 6767:1 6779:1 6794:1 6808:1 6841:1 6864:1 6867:1 6870:1 6896:1 6972:3 6975:1 6977:1 6989:1 6991:1 6993:1 6994:14 7014:1 7022:1 7024:1 7025:1 7079:1 7094:1 7102:1 7151:1 7173:1 7196:1 7197:2 7204:1 7207:1 7256:1 7337:2 7378:1 7388:5 7390:1 7391:1 7428:1 7430:1 7431:4 7436:1 7453:3 7467:1 7498:3 7506:1 7522:2 7559:1 7607:1 7623:2 7633:1 7659:2 7671:2 7682:1 7712:2 7715:1 7745:2 7746:1 7772:1 7793:2 7824:5 7830:1 7844:3 7853:6 7863:1 7865:1 7876:1 7886:2 7892:1 7893:1 7897:1 7912:5 7927:1 7989:1 7993:1 8011:1 8020:1 8049:2 8052:1 8054:1 8056:2 8064:3 8066:1 8095:1 8099:2 8110:2 8135:1 8173:1 8211:2 8225:1 8256:1 8290:1 8291:1 8295:1 8316:1 8324:1 8347:1 8439:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:4 8534:1 8647:1 8651:2 8662:1 8689:1 8690:2 8699:1 8702:1 8720:4 8741:1 8760:1 8772:1 8780:1 8793:1 8799:1 8819:1 8820:1 8824:1 8831:1 8842:1 8849:1 8866:2 8891:2 8896:1 8930:1 8932:1 8936:1 8947:2 8958:2 8981:1 8986:1 9082:2 9127:3 9147:1 9151:1 9167:3 9170:1 9194:1 9242:1 9247:2 9248:1 9272:1 9295:1 9296:1 9312:1 9314:1 9322:1 9335:2 9344:1 9362:1 9364:1 9371:1 9400:1 9430:1 9432:1 9445:1 9454:14 9476:1 9489:1 9491:3 9505:1 9529:2 9570:1 9571:3 9574:1 9578:2 9680:1 9800:2 9802:3 9803:3 9822:1 9837:1 9915:1 9920:1 9930:1 9943:2 9976:1 9989:1 10022:1 10077:1 10085:1 10126:2 10132:1 10136:2 10139:1 10140:2 10141:1 10151:1 10162:1 10171:1 10172:1 10174:2 10206:3 10253:1 10262:1 10287:1 10297:1 10305:1 10310:1 10317:1 10318:1 10325:1 10338:3 10339:2 10340:1 10342:1 10409:1 10414:1 10424:1 10444:8 10454:1 10493:1 10512:15 10559:1 10640:3 10658:1 10667:1 10687:1 10718:1 10727:2 10753:1 10757:2 10775:1 10818:1 10859:1 10868:1 10889:1 10894:1 10970:1 10971:1 10977:1 10980:1 10984:10 11059:1 11065:2 11072:1 11075:1 11100:1 11109:1 11119:4 11125:1 11126:1 11141:6 11148:1 11161:1 11174:2 11175:1 11182:3 11183:1 11199:1 11201:1 11225:2 11239:1 11300:1 11321:3 11331:1 11339:2 11345:1 11382:1 11384:1 11401:1 11453:1 11461:1 11481:2 11528:1 11539:1 11565:1 11567:2 11583:3 11592:1 11625:1 11626:1 11644:1 11653:1 11655:1 11680:1 11706:1 11729:1 11765:1 11766:1 11806:1 11809:1 11818:1 11830:1 11882:1 11898:1 11917:1 11950:1 11973:1 12045:1 12046:1 12061:1 12070:1 12071:14 12077:1 12091:1 12092:2 12134:1 12143:2 12165:2 12167:1 12198:2 12212:1 12231:1 12265:1 12282:2 12303:1 12304:1 12312:2 12381:1 12391:2 12397:1 12399:1 12421:1 12443:1 12478:2 12498:1 12521:8 12522:1 12523:2 12528:1 12547:1 12552:1 12554:2 12564:2 12594:2 12602:10 12608:1 12613:2 12619:1 12643:20 12676:4 12680:3 12692:1 12741:1 12765:1 12811:2 12828:2 12851:1 12861:1 12954:2 12961:1 12980:1 12997:2 13002:1 13038:1 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:3 13152:1 13153:1 13181:1 13199:3 13201:2 13227:1 13232:1 13259:1 13293:1 13301:2 13319:1 13344:1 13359:12 13361:1 13378:1 13406:2 13441:1 13446:1 13460:2 13475:8 13490:1 13502:1 13571:8 13589:1 13644:1 13665:2 13670:1 13703:2 13717:1 13737:2 13750:1 13755:1 13777:1 13790:1 13799:2 13831:1 13843:1 13887:1 13908:1 13910:1 13918:1 13930:1 13964:1 13967:1 13977:1 13982:2 14000:1 14013:1 14023:1 14035:1 14084:1 14113:1 14123:1 14130:5 14142:2 14160:1 14163:1 14168:1 14171:2 14183:1 14200:1 14261:2 14266:1 14283:1 14308:1 14344:1 14435:1 14439:1 14472:1 14475:1 14488:1 14494:2 14495:1 14516:2 14532:4 14586:5 14639:1 14650:1 14667:1 14671:2 14681:1 14687:1 14708:1 14711:1 14728:1 14735:1 14750:1 14808:1 14814:2 14819:2 14822:1 14842:1 14846:1 14852:1 14867:1 14883:1 14889:8 14898:1 14899:1 14940:2 14984:2 15062:1 15078:1 15085:1 15127:3 15134:1 15138:1 15157:1 15164:2 15167:2 15180:1 15185:1 15187:1 15196:2 15201:1 15205:2 15214:1 15234:1 15260:1 15306:1 15330:1 15372:1 15404:3 15414:1 15430:2 15433:1 15446:1 15447:1 15449:1 15488:1 15494:1 15501:1 15506:1 15527:1 15544:2 15557:1 15562:1 15621:2 15637:3 15679:2 15690:1 15693:1 15698:1 15732:1 15734:1 15735:8 15746:8 15762:1 15785:1 15849:3 15904:3 15910:1 15918:1 15929:1 15933:3 15939:1 15955:1 15963:1 15967:1 15976:1 15981:2 15990:1 15997:1 16018:1 16029:1 16052:2 16055:1 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:2 16194:1 16202:1 16207:8 16223:1 16235:1 16268:1 16276:1 16304:2 16356:1 16360:1 16389:1 16401:2 16413:1 16414:2 16416:1 16438:1 16460:1 16467:1 16513:1 16540:1 16556:1 16643:1 16668:1 16677:1 16694:2 16712:1 16724:1 16734:1 16742:1 16779:6 16783:4 16796:1 16797:1 16805:1 16827:1 16845:2 16854:1 16877:1 16879:1 16884:4 16885:1 16902:4 16904:1 16926:2 16938:1 16948:8 16977:1 17006:1 17009:10 17015:1 17034:2 17046:4 17050:2 17052:1 17055:1 17144:1 17149:1 17153:1 17156:1 17157:2 17159:2 17164:2 17165:1 17203:1 17207:1 17210:1 17213:2 17307:1 17308:1 17327:1 17330:2 17359:1 17383:1 17408:8 17410:1 17466:1 17467:1 17499:3 17500:2 17503:1 17600:1 17620:2 17633:1 17636:3 17638:1 17642:5 17664:4 17675:1 17696:1 17732:8 17733:3 17739:2 17761:1 17788:1 17792:1 17859:1 17868:1 17890:1 17908:2 17913:1 17924:4 17948:1 17995:2 18029:1 18044:1 18059:2 18068:1 18145:1 18202:1 18252:1 18280:1 18292:1 18296:1 18308:1 18323:1 18324:2 18330:1 18339:1 18493:2 18496:1 18540:1 18549:1 18554:1 18559:3 18570:2 18574:1 18581:2 18610:1 18653:2 18655:1 18657:1 18666:2 18685:2 18700:1 18742:1 18748:1 18765:1 18796:1 18844:1 18855:1 18906:3 18910:8 18926:2 19002:2 19006:1 19012:2 19021:1 19042:1 19110:1 19174:8 19203:8 19207:1 19228:2 19230:1 19241:1 19270:2 19271:2 19291:1 19297:1 19302:1 19305:1 19306:1 19311:1 19331:1 19351:1 19367:2 19373:1 19383:1 19404:1 19411:1 19522:3 19573:1 19606:1 19618:1 19631:2 19667:8 19676:1 19693:1 19694:1 19739:2 19788:2 19814:1 19820:1 19838:1 19841:1 19843:4 19846:1 19852:1 19883:1 19902:14 19904:1 19909:1 19960:1 19965:1 19967:2 19972:1 20012:1 20048:1 20064:5 20077:2 20078:1 20091:1 20098:1 20117:1 20142:2 20151:1 20164:1 20191:1 20224:1 20231:1 20243:1 20267:7 20270:2 20272:1 20313:1 20317:1 20318:1 20331:4 20342:2 20344:1 20350:3 20356:1 20361:1 20362:1 20367:1 20369:1 20377:1 20418:3 20424:1 20435:3 20436:1 20440:1 20479:8 20492:2 20493:2 20496:1 20508:1 20511:1 20555:2 20572:1 20590:1 20650:1 20660:1 20682:2 20683:1 20687:1 20698:3 20742:1 20763:4 20766:1 20775:1 20863:1 20873:1 20953:1 20960:1 20975:1 20980:1 20989:2 20997:1 21023:3 21043:2 21048:1 21069:1 21078:1 21113:1 21162:8 21174:2 21185:2 21194:1 21212:2 21226:1 21227:1 21240:2 21242:1 21252:1 21253:1 21254:1 21279:1 21281:1 21282:1 21299:1 21309:1 21324:1 21330:1 21338:2 21344:3 21353:1 21355:2 21397:1 21408:1 21417:2 21429:1 21432:2 21441:1 21474:2 21483:1 21503:2 21521:1 21548:3 21558:1 21565:2 21578:2 21599:2 21634:1 21636:1 21647:3 21653:1 21654:1 21662:1 21708:8 21715:1 21720:4 21729:1 21756:1 21770:1 21771:1 21772:1 21779:1 21786:1 21787:1 21808:1 21814:2 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 22000:1 22032:3 22080:1 22090:1 22111:1 22115:1 22118:1 22126:1 22135:1 22184:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:2 22246:3 22254:1 22275:1 22303:2 22365:1 22388:1 22397:1 22421:1 22425:2 22432:2 22466:1 22469:1 22492:2 22495:1 22496:1 22521:1 22623:1 22625:3 22642:1 22651:1 22659:1 22694:1 22729:1 22732:1 22743:1 22745:4 22772:2 22831:2 22836:1 22844:2 22847:1 22861:1 22866:1 22891:1 22909:1 22919:1 22933:1 22937:2 22941:1 22947:1 22989:1 22993:2 23012:2 23029:1 23048:1 23066:1 23076:1 23087:1 23113:1 23166:2 23184:3 23223:1 23272:3 23274:1 23277:2 23293:2 23302:1 23363:1 23386:2 23394:1 23426:1 23427:1 23429:1 23436:1 23489:1 23490:1 23506:3 23532:1 23600:1 23606:1 23636:1 23656:2 10 8:1 11:3 13:1 18:1 21:2 31:3 68:1 106:1 117:1 128:2 145:1 184:1 190:1 214:1 232:1 260:1 268:1 311:1 315:1 386:1 394:8 417:2 429:1 474:1 476:1 489:1 497:1 541:1 548:1 559:1 621:1 622:1 636:1 655:2 657:1 665:1 758:2 764:2 805:1 895:1 898:1 949:6 951:2 981:3 989:1 1072:3 1075:2 1093:1 1106:1 1159:1 1167:3 1188:4 1199:2 1238:1 1246:5 1248:1 1283:1 1297:1 1298:1 1299:1 1349:1 1384:1 1410:1 1422:4 1427:2 1430:1 1436:2 1449:2 1464:1 1467:1 1491:1 1494:1 1497:7 1532:1 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:3 1630:1 1637:1 1639:1 1642:5 1643:1 1659:2 1685:1 1687:2 1738:2 1739:1 1742:1 1753:1 1767:1 1784:1 1789:1 1791:1 1802:1 1862:6 1864:1 1865:1 1887:3 1912:2 1944:1 1945:1 1969:2 2003:1 2011:1 2037:1 2039:1 2040:1 2044:1 2050:1 2052:2 2059:2 2068:1 2073:1 2074:2 2075:1 2086:1 2101:1 2106:1 2116:1 2135:1 2169:1 2191:1 2200:1 2204:1 2234:1 2289:1 2298:1 2300:1 2303:1 2315:1 2317:1 2340:1 2345:4 2360:1 2391:1 2395:2 2397:1 2401:2 2402:1 2405:2 2407:1 2409:2 2418:1 2423:1 2431:1 2438:1 2459:1 2515:1 2521:2 2532:1 2538:2 2539:1 2546:1 2579:4 2605:1 2617:1 2629:1 2637:4 2652:1 2658:1 2687:1 2744:1 2750:1 2756:4 2763:2 2783:1 2799:1 2818:1 2842:1 2852:3 2876:1 2881:1 2910:1 2929:1 2936:1 2957:4 2962:4 2985:1 2990:2 2997:3 3008:1 3039:1 3067:1 3068:1 3078:1 3095:1 3139:2 3147:1 3152:1 3157:2 3195:1 3217:2 3276:1 3279:1 3296:1 3300:1 3318:1 3368:3 3394:1 3446:1 3456:4 3470:3 3492:1 3517:1 3542:1 3550:2 3552:2 3593:1 3594:2 3597:2 3599:2 3608:1 3613:1 3620:1 3627:2 3631:1 3632:1 3639:1 3642:1 3646:3 3651:3 3656:1 3686:1 3732:1 3733:1 3757:1 3795:1 3833:2 3844:11 3856:1 3857:1 3891:2 3901:1 3908:1 3921:1 3947:2 3948:2 3971:1 3987:1 3996:1 4000:1 4017:2 4029:1 4083:1 4090:1 4109:4 4110:1 4147:1 4156:1 4169:1 4170:1 4206:1 4222:1 4231:1 4256:1 4270:1 4286:4 4295:1 4298:1 4338:2 4357:1 4370:2 4377:2 4393:1 4397:2 4407:1 4425:1 4433:8 4444:1 4487:1 4502:1 4529:1 4537:1 4546:1 4557:4 4562:1 4571:1 4603:1 4622:1 4642:1 4659:1 4665:6 4669:2 4673:1 4678:1 4699:2 4700:1 4728:1 4730:6 4739:1 4741:2 4747:2 4774:1 4778:1 4785:2 4803:3 4810:1 4813:1 4827:4 4835:1 4844:4 4867:1 4877:1 4897:1 4919:1 4941:8 4946:1 4948:1 4962:2 4979:1 5008:1 5039:1 5058:1 5165:3 5168:1 5174:1 5184:2 5192:1 5218:2 5230:1 5267:1 5271:1 5272:1 5318:3 5334:2 5339:2 5375:1 5389:1 5411:1 5437:1 5439:1 5448:1 5454:1 5473:1 5480:4 5493:1 5522:1 5536:1 5572:1 5608:2 5633:1 5640:1 5653:2 5660:8 5668:1 5710:1 5711:1 5776:1 5809:1 5833:2 5842:1 5846:1 5859:2 5874:1 5877:1 5880:1 5889:1 5910:1 5916:4 5932:1 5935:1 5941:1 5958:1 5980:1 5990:1 5999:2 6053:1 6067:1 6068:3 6086:1 6124:3 6133:1 6134:3 6135:5 6174:1 6179:1 6199:1 6211:2 6235:1 6282:2 6283:1 6290:1 6295:1 6301:2 6313:1 6319:1 6330:1 6362:1 6405:1281 6440:1 6457:1 6465:1 6472:1 6502:1 6510:2 6637:1 6666:1 6668:1 6677:1 6741:1 6749:3 6761:2 6763:1 6767:1 6779:1 6794:1 6808:1 6841:1 6864:1 6867:1 6870:1 6896:1 6972:3 6975:1 6977:1 6989:1 6991:1 6993:1 6994:15 7014:1 7022:1 7024:1 7025:1 7079:1 7094:1 7102:1 7151:1 7173:1 7196:1 7197:2 7204:1 7207:1 7256:1 7337:2 7378:1 7388:5 7390:1 7391:1 7428:1 7430:1 7431:4 7436:1 7453:3 7467:1 7498:3 7506:1 7522:2 7558:1 7559:1 7607:1 7623:2 7633:1 7659:2 7671:2 7682:1 7712:2 7715:1 7745:2 7746:1 7772:1 7793:2 7824:6 7830:1 7842:1 7844:3 7853:6 7863:1 7865:1 7876:1 7886:2 7892:1 7893:1 7897:1 7912:5 7927:1 7989:1 7993:1 8011:1 8020:1 8049:2 8052:1 8054:1 8056:2 8064:4 8066:1 8080:1 8095:1 8099:2 8110:2 8111:1 8135:1 8173:1 8211:2 8225:1 8256:1 8290:1 8291:1 8295:1 8316:1 8324:1 8347:1 8360:1 8439:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:4 8534:1 8578:1 8647:1 8651:2 8662:1 8689:1 8690:2 8699:1 8702:1 8720:4 8741:1 8760:1 8772:2 8780:1 8793:1 8799:1 8819:1 8820:1 8824:1 8831:1 8842:2 8849:1 8866:2 8891:2 8896:1 8930:1 8932:1 8936:1 8947:2 8958:2 8981:1 8986:1 9082:2 9127:3 9147:1 9151:1 9167:3 9170:1 9194:1 9242:1 9247:2 9248:1 9272:1 9295:1 9296:1 9312:1 9314:1 9322:1 9335:2 9344:1 9362:1 9364:1 9371:1 9400:1 9430:1 9432:1 9445:1 9454:15 9476:1 9489:1 9491:3 9505:1 9529:2 9570:1 9571:3 9574:1 9578:2 9680:1 9800:2 9802:3 9803:3 9822:1 9837:1 9915:1 9920:1 9930:2 9943:2 9976:1 9989:1 10022:1 10077:1 10085:1 10126:2 10132:1 10136:2 10139:1 10140:2 10141:1 10143:1 10151:1 10162:1 10171:1 10172:1 10174:2 10206:3 10253:1 10262:1 10287:1 10297:1 10305:1 10310:1 10317:1 10318:1 10325:1 10338:3 10339:2 10340:1 10342:1 10409:1 10414:1 10424:1 10444:8 10454:1 10493:1 10512:16 10559:1 10572:1 10640:3 10658:1 10667:1 10687:1 10718:1 10727:2 10753:1 10757:2 10775:1 10818:1 10859:1 10868:1 10889:1 10894:1 10970:2 10971:1 10977:1 10980:1 10984:11 11003:1 11059:1 11065:2 11072:1 11075:1 11100:1 11109:1 11119:4 11125:1 11126:1 11141:6 11148:1 11161:1 11174:2 11175:1 11182:3 11183:1 11199:1 11201:1 11225:2 11239:1 11300:1 11321:3 11331:1 11339:2 11345:1 11364:1 11382:1 11384:1 11401:1 11453:1 11461:1 11481:2 11521:1 11528:1 11539:1 11552:1 11565:1 11567:2 11583:3 11592:1 11625:1 11626:1 11635:1 11644:1 11653:1 11655:1 11680:1 11706:1 11729:1 11765:1 11766:1 11806:1 11809:1 11818:1 11830:1 11882:1 11898:1 11917:1 11950:1 11964:1 11973:1 12045:1 12046:1 12061:1 12070:1 12071:15 12077:1 12091:1 12092:2 12093:1 12134:1 12143:2 12165:2 12167:1 12198:2 12212:1 12231:1 12265:1 12282:2 12303:1 12304:1 12312:2 12381:1 12383:1 12391:3 12397:1 12399:1 12421:1 12443:1 12478:3 12498:1 12521:8 12522:1 12523:2 12528:1 12547:1 12552:1 12554:2 12564:2 12587:1 12594:2 12602:11 12608:1 12613:2 12619:1 12643:20 12676:5 12680:3 12692:1 12741:1 12765:1 12811:2 12828:2 12851:1 12861:1 12954:3 12961:1 12980:1 12997:2 13002:1 13038:1 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:3 13152:1 13153:1 13175:1 13181:1 13199:3 13201:2 13227:1 13232:1 13259:1 13293:1 13301:2 13319:1 13344:2 13359:12 13361:1 13378:1 13406:2 13441:1 13446:1 13460:2 13475:8 13490:1 13502:1 13571:8 13589:1 13644:1 13665:2 13670:1 13703:2 13717:1 13724:1 13737:2 13750:1 13755:1 13777:1 13790:1 13797:1 13799:2 13817:1 13821:1 13831:2 13843:1 13887:1 13907:1 13908:1 13910:1 13918:1 13930:1 13964:1 13967:1 13977:1 13982:2 14000:1 14013:1 14023:2 14035:1 14084:1 14113:1 14123:1 14130:5 14137:1 14142:3 14160:1 14163:1 14168:1 14171:2 14183:1 14200:1 14261:2 14266:1 14283:1 14308:1 14344:1 14427:1 14435:1 14439:1 14472:1 14475:1 14488:1 14494:2 14495:1 14516:2 14532:4 14586:5 14639:1 14650:1 14667:1 14671:2 14681:1 14687:1 14708:1 14711:1 14728:1 14735:1 14750:1 14808:1 14814:2 14819:2 14822:1 14842:1 14846:1 14852:1 14867:1 14883:1 14889:8 14898:1 14899:1 14940:2 14984:2 15062:1 15078:1 15085:1 15127:3 15134:1 15138:1 15157:1 15164:2 15167:2 15180:1 15185:1 15187:1 15196:2 15201:1 15205:2 15214:1 15234:1 15260:1 15306:1 15330:1 15372:1 15404:3 15414:1 15430:2 15433:1 15446:1 15447:1 15449:1 15488:1 15494:1 15501:1 15506:1 15527:1 15544:2 15557:1 15562:1 15621:2 15637:3 15679:2 15690:1 15693:1 15698:1 15732:1 15734:1 15735:8 15746:8 15762:1 15785:1 15849:3 15904:3 15910:1 15918:1 15929:1 15933:3 15939:1 15955:1 15963:1 15967:1 15976:1 15981:2 15990:1 15997:1 16018:1 16029:1 16052:2 16055:1 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:2 16194:1 16202:1 16203:1 16207:8 16208:1 16223:1 16235:1 16268:1 16276:1 16304:2 16356:1 16360:1 16389:1 16401:2 16413:1 16414:2 16416:1 16438:2 16460:1 16467:1 16513:1 16540:1 16556:1 16643:1 16668:1 16677:1 16694:2 16712:1 16724:1 16734:1 16742:1 16779:6 16783:4 16796:1 16797:1 16805:1 16827:1 16845:2 16854:1 16877:1 16879:1 16884:4 16885:1 16902:4 16904:1 16926:2 16938:1 16948:8 16977:1 17006:1 17009:11 17015:1 17034:2 17046:4 17050:2 17052:1 17055:1 17144:1 17149:1 17153:1 17156:1 17157:2 17159:2 17164:3 17165:1 17203:1 17207:1 17210:1 17213:2 17307:1 17308:1 17327:1 17330:2 17359:1 17383:1 17408:8 17410:1 17466:1 17467:1 17499:3 17500:2 17503:1 17600:1 17620:2 17633:1 17636:3 17638:1 17642:5 17664:4 17668:1 17675:1 17696:1 17732:8 17733:3 17739:2 17761:1 17788:1 17792:1 17803:1 17859:1 17868:1 17890:1 17908:2 17913:1 17924:4 17948:1 17995:2 18029:1 18044:1 18059:2 18068:1 18145:1 18193:1 18202:1 18252:1 18280:1 18290:1 18292:1 18296:1 18308:1 18323:1 18324:2 18330:1 18339:1 18436:1 18493:2 18496:1 18540:1 18549:1 18554:1 18559:4 18570:3 18574:1 18581:2 18610:1 18653:2 18655:1 18657:1 18666:2 18685:2 18700:1 18742:1 18748:1 18755:1 18765:1 18796:1 18844:1 18855:1 18906:3 18910:8 18926:2 19002:2 19006:1 19012:2 19021:1 19042:1 19110:1 19174:8 19203:8 19207:1 19228:2 19230:1 19241:1 19270:2 19271:2 19291:1 19297:1 19302:1 19305:1 19306:1 19311:1 19318:1 19331:1 19351:1 19367:2 19373:1 19383:1 19404:1 19411:1 19522:3 19573:1 19606:1 19618:1 19631:2 19667:8 19676:1 19693:1 19694:1 19739:2 19788:2 19814:1 19820:1 19838:1 19841:1 19843:4 19846:1 19852:1 19883:1 19902:15 19904:1 19909:1 19960:1 19965:1 19967:2 19972:1 20012:1 20048:1 20064:5 20077:2 20078:1 20091:1 20098:1 20117:1 20142:2 20151:1 20164:1 20191:1 20224:1 20231:1 20243:1 20267:7 20270:2 20272:1 20313:1 20317:1 20318:1 20331:4 20342:2 20344:1 20350:3 20356:1 20361:1 20362:1 20367:1 20369:1 20377:1 20418:3 20424:1 20435:3 20436:1 20440:1 20479:8 20492:2 20493:2 20496:1 20508:1 20511:1 20540:1 20555:2 20572:1 20590:1 20650:1 20660:1 20682:2 20683:1 20687:1 20698:3 20742:1 20763:4 20766:1 20775:1 20863:2 20873:1 20953:1 20960:1 20975:1 20980:1 20989:2 20997:1 21023:3 21043:2 21048:1 21069:1 21078:1 21113:1 21162:8 21174:2 21185:2 21194:1 21212:2 21226:1 21227:1 21240:2 21242:1 21252:1 21253:1 21254:1 21279:1 21281:1 21282:1 21299:1 21309:1 21324:1 21330:1 21338:3 21344:3 21353:1 21355:2 21397:1 21408:1 21417:2 21429:1 21432:2 21441:1 21474:2 21483:1 21503:2 21521:2 21548:3 21558:1 21565:2 21578:2 21599:2 21628:1 21634:1 21636:1 21647:3 21653:1 21654:1 21662:1 21708:8 21715:1 21720:4 21729:1 21756:1 21770:1 21771:1 21772:1 21779:1 21786:1 21787:1 21808:1 21814:2 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 22000:1 22032:3 22080:1 22090:1 22111:1 22115:1 22118:1 22126:1 22130:1 22135:1 22184:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:2 22246:3 22254:1 22275:1 22303:2 22365:1 22388:1 22397:1 22421:1 22425:2 22432:2 22466:1 22469:1 22492:2 22495:1 22496:1 22521:1 22623:1 22625:3 22642:1 22651:1 22659:1 22694:1 22729:1 22732:1 22743:1 22745:4 22772:2 22831:2 22836:1 22844:2 22847:1 22861:1 22866:1 22891:1 22909:1 22919:1 22933:1 22937:2 22941:1 22947:1 22989:1 22993:2 23012:2 23029:1 23048:1 23066:1 23076:1 23087:1 23099:1 23113:1 23162:1 23166:2 23184:3 23223:1 23272:3 23274:1 23277:2 23293:2 23302:1 23363:1 23386:2 23394:1 23426:2 23427:1 23429:1 23436:1 23489:1 23490:1 23506:3 23532:1 23600:1 23606:1 23636:1 23656:2 10 8:1 11:3 13:1 18:1 21:2 31:3 68:1 106:1 117:1 128:2 145:1 184:1 190:1 214:1 232:1 260:1 268:1 311:1 315:1 386:1 394:8 417:2 429:1 443:1 474:1 476:1 489:1 497:1 541:1 548:1 559:1 621:1 622:1 636:1 655:2 657:1 665:1 705:1 758:2 764:2 805:1 895:1 898:1 949:6 951:2 981:3 989:2 1072:3 1075:2 1093:1 1106:1 1159:1 1167:3 1188:4 1199:2 1238:1 1246:5 1248:1 1283:1 1297:1 1298:1 1299:1 1349:1 1384:1 1410:1 1422:4 1427:2 1430:1 1436:2 1449:2 1464:1 1467:1 1491:1 1494:1 1497:7 1515:1 1532:1 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:3 1630:1 1637:1 1639:1 1642:5 1643:1 1659:2 1685:1 1687:2 1738:2 1739:1 1742:1 1753:1 1767:1 1784:1 1789:1 1791:1 1802:1 1862:6 1864:1 1865:1 1887:3 1912:2 1944:1 1945:1 1969:2 2003:1 2011:1 2037:1 2039:1 2040:1 2044:1 2050:1 2052:2 2059:2 2068:1 2073:1 2074:2 2075:1 2086:1 2101:1 2106:1 2116:1 2135:1 2169:1 2191:1 2200:1 2204:1 2234:1 2289:1 2298:1 2300:1 2303:1 2315:1 2317:1 2340:1 2345:4 2360:1 2391:1 2395:2 2397:1 2401:2 2402:1 2405:2 2407:1 2409:2 2418:1 2423:1 2431:1 2438:1 2459:1 2515:1 2521:2 2532:1 2538:2 2539:1 2546:1 2579:4 2605:1 2617:1 2629:1 2637:4 2652:1 2658:1 2687:1 2744:1 2750:1 2756:4 2763:2 2783:1 2799:1 2818:1 2842:1 2852:3 2876:1 2881:1 2910:1 2929:1 2936:1 2957:4 2962:4 2985:1 2990:2 2997:3 3008:1 3039:1 3067:1 3068:1 3078:1 3095:1 3139:2 3147:1 3152:1 3157:2 3195:1 3217:2 3276:1 3279:1 3296:1 3300:1 3318:1 3368:3 3394:1 3446:1 3456:4 3470:3 3492:1 3517:1 3542:1 3550:2 3552:2 3593:1 3594:2 3597:2 3599:2 3608:1 3613:1 3620:1 3627:2 3631:1 3632:1 3639:1 3642:1 3646:3 3651:3 3656:1 3686:1 3732:1 3733:1 3757:1 3795:1 3833:2 3844:11 3856:1 3857:1 3891:2 3901:1 3908:1 3921:1 3947:2 3948:2 3971:1 3987:1 3996:1 4000:1 4017:2 4029:1 4083:1 4090:1 4109:4 4110:1 4147:1 4156:1 4169:1 4170:1 4206:1 4222:1 4231:1 4232:1 4256:1 4270:1 4286:4 4295:1 4298:1 4338:2 4357:1 4370:2 4377:2 4393:1 4397:2 4407:1 4425:1 4433:8 4444:1 4487:1 4502:1 4529:1 4537:1 4546:1 4557:4 4562:1 4571:1 4603:1 4622:1 4642:1 4659:1 4665:6 4669:2 4673:1 4678:1 4699:2 4700:1 4728:1 4730:6 4739:1 4741:2 4747:2 4774:1 4778:1 4785:2 4803:3 4810:1 4813:1 4827:4 4835:1 4844:4 4867:1 4877:1 4897:1 4919:1 4941:8 4946:1 4948:1 4962:2 4979:1 5008:1 5039:1 5058:1 5165:3 5168:1 5174:1 5184:2 5192:1 5218:2 5230:1 5267:1 5271:1 5272:1 5318:3 5334:2 5339:2 5375:1 5389:1 5411:1 5437:1 5439:1 5448:1 5454:1 5473:1 5480:4 5493:1 5522:1 5536:1 5572:1 5608:2 5633:1 5640:1 5653:2 5660:8 5668:1 5710:1 5711:1 5776:1 5809:1 5833:2 5842:1 5846:1 5859:2 5874:1 5877:1 5880:1 5889:1 5910:1 5916:4 5932:1 5935:1 5941:1 5958:1 5980:1 5990:1 5999:2 6053:1 6067:1 6068:3 6086:1 6124:3 6133:1 6134:3 6135:5 6174:1 6179:1 6199:1 6211:2 6235:1 6282:3 6283:1 6290:1 6295:1 6301:2 6313:1 6319:1 6330:1 6362:1 6405:1309 6440:1 6457:1 6465:1 6472:1 6502:1 6510:2 6637:1 6666:1 6668:1 6677:1 6741:1 6749:3 6761:2 6763:1 6767:1 6779:1 6794:1 6808:1 6841:1 6864:1 6867:1 6870:1 6896:1 6972:3 6975:1 6977:1 6989:1 6991:1 6993:1 6994:15 7014:1 7022:1 7024:1 7025:1 7079:1 7094:1 7102:1 7151:1 7173:1 7196:1 7197:2 7204:1 7207:1 7256:1 7337:2 7378:1 7388:5 7390:1 7391:1 7428:1 7430:1 7431:4 7436:1 7453:3 7467:1 7498:3 7506:1 7522:2 7558:1 7559:1 7607:1 7623:2 7633:1 7659:2 7671:2 7682:1 7712:2 7715:1 7745:2 7746:1 7772:1 7793:2 7824:6 7830:1 7842:1 7844:3 7853:6 7863:1 7865:1 7876:1 7886:2 7892:1 7893:1 7897:1 7912:5 7927:1 7989:1 7993:1 8011:1 8020:1 8049:2 8052:1 8054:1 8056:2 8064:4 8066:1 8080:1 8095:1 8099:2 8110:2 8111:1 8135:1 8173:1 8211:2 8225:1 8256:1 8290:1 8291:1 8295:1 8316:1 8324:1 8347:1 8360:1 8439:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:4 8534:1 8578:1 8647:1 8651:2 8662:1 8689:1 8690:2 8699:1 8702:1 8720:4 8741:1 8760:1 8772:2 8780:1 8793:1 8799:1 8819:1 8820:1 8824:1 8831:1 8842:2 8849:1 8866:2 8891:2 8896:1 8930:1 8932:1 8936:1 8947:2 8958:2 8981:1 8986:1 9082:2 9127:3 9147:1 9151:1 9167:3 9170:1 9194:1 9242:1 9247:2 9248:1 9272:1 9295:1 9296:1 9312:1 9314:1 9322:1 9335:2 9343:1 9344:1 9362:1 9364:1 9371:1 9400:1 9430:1 9432:1 9445:1 9454:15 9476:1 9489:1 9491:3 9505:1 9529:2 9570:1 9571:3 9574:1 9578:2 9680:1 9800:2 9802:3 9803:3 9822:1 9837:1 9915:1 9920:1 9930:2 9943:3 9976:1 9989:1 10022:1 10077:1 10085:1 10126:2 10132:1 10136:2 10139:1 10140:3 10141:1 10143:1 10151:1 10162:1 10171:1 10172:1 10174:2 10206:3 10253:1 10262:1 10287:1 10297:1 10305:1 10310:1 10317:1 10318:1 10325:1 10338:3 10339:2 10340:1 10342:1 10409:1 10414:1 10424:1 10444:8 10454:1 10493:1 10512:16 10559:1 10572:1 10640:3 10658:1 10667:1 10681:1 10687:1 10718:1 10727:2 10753:1 10757:2 10775:1 10818:1 10859:1 10868:1 10889:1 10894:1 10970:2 10971:1 10977:1 10980:1 10984:11 11003:1 11033:1 11059:1 11065:2 11072:1 11075:1 11100:1 11109:1 11119:4 11125:1 11126:1 11141:6 11148:1 11161:1 11174:2 11175:1 11182:3 11183:1 11199:1 11201:1 11225:2 11239:1 11300:1 11302:1 11321:3 11331:1 11339:2 11345:1 11364:1 11382:1 11384:1 11401:1 11453:1 11461:1 11481:2 11521:1 11528:1 11539:1 11552:1 11565:1 11567:2 11583:3 11592:1 11625:1 11626:1 11635:1 11644:1 11653:1 11655:1 11680:1 11706:1 11729:1 11765:1 11766:1 11806:1 11809:1 11818:1 11830:1 11882:1 11898:1 11917:1 11950:1 11964:1 11973:1 12045:1 12046:1 12061:1 12070:1 12071:15 12077:1 12091:1 12092:2 12093:1 12134:1 12143:2 12165:2 12167:1 12198:2 12212:1 12231:1 12265:1 12282:2 12303:1 12304:1 12312:2 12381:1 12383:1 12391:3 12397:1 12399:1 12421:1 12443:1 12478:3 12498:1 12521:8 12522:1 12523:2 12528:1 12547:1 12552:1 12554:2 12564:2 12587:1 12594:3 12602:11 12608:1 12613:2 12619:1 12643:20 12676:5 12680:3 12692:1 12741:1 12765:1 12811:2 12828:2 12851:1 12861:1 12954:3 12961:1 12980:1 12997:2 13002:1 13038:1 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:3 13152:1 13153:1 13175:1 13181:1 13199:3 13201:2 13227:1 13232:1 13259:1 13293:1 13301:2 13319:1 13344:2 13359:12 13361:1 13378:1 13406:2 13441:1 13446:1 13460:2 13475:8 13490:1 13502:1 13567:1 13571:8 13589:1 13644:1 13665:2 13670:1 13703:2 13717:1 13724:1 13737:2 13750:1 13755:1 13777:1 13790:1 13797:1 13799:2 13817:1 13821:1 13831:2 13843:1 13887:1 13907:1 13908:1 13910:1 13918:1 13930:1 13964:1 13967:1 13977:1 13982:2 14000:1 14013:1 14023:2 14035:1 14084:1 14113:1 14123:1 14130:5 14137:1 14142:3 14160:1 14163:1 14168:1 14171:2 14183:1 14200:1 14261:3 14266:1 14283:1 14308:1 14344:1 14427:1 14435:1 14439:1 14472:1 14475:1 14488:1 14494:2 14495:1 14516:2 14532:4 14586:5 14639:1 14650:1 14667:1 14671:2 14681:1 14687:1 14708:1 14711:1 14728:1 14735:1 14750:1 14808:1 14814:2 14819:2 14822:1 14842:1 14846:1 14852:1 14867:1 14883:1 14889:8 14898:1 14899:1 14940:2 14984:2 15062:1 15078:1 15085:1 15127:3 15134:1 15138:1 15157:1 15164:2 15167:2 15180:1 15185:1 15187:1 15196:2 15201:1 15205:2 15214:1 15234:1 15260:1 15306:1 15330:1 15372:1 15404:3 15414:1 15430:2 15433:1 15446:1 15447:1 15449:1 15488:1 15494:1 15501:1 15506:1 15527:1 15544:2 15557:1 15562:1 15621:2 15637:3 15679:2 15690:1 15693:1 15698:1 15732:1 15734:1 15735:8 15746:8 15762:1 15785:1 15849:3 15877:1 15904:3 15910:1 15918:1 15929:1 15933:3 15939:1 15955:1 15963:1 15967:1 15976:1 15981:2 15990:1 15997:1 16018:1 16029:1 16052:2 16055:1 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:3 16194:1 16202:1 16203:1 16207:8 16208:1 16223:1 16235:1 16268:1 16276:1 16304:2 16356:1 16360:1 16389:1 16401:2 16413:1 16414:2 16416:1 16438:2 16460:1 16467:1 16513:1 16540:1 16556:1 16643:1 16668:1 16677:1 16694:2 16712:1 16724:1 16734:1 16742:1 16779:6 16783:4 16796:1 16797:1 16805:1 16827:1 16845:2 16854:1 16877:1 16879:1 16884:4 16885:1 16902:4 16904:1 16926:2 16938:1 16948:8 16977:1 17006:1 17008:1 17009:11 17015:1 17034:2 17046:4 17050:2 17052:1 17055:1 17144:1 17149:1 17153:1 17156:1 17157:2 17159:2 17164:3 17165:1 17203:1 17207:1 17210:1 17213:2 17307:1 17308:1 17327:1 17330:2 17359:1 17383:1 17408:8 17410:1 17466:1 17467:1 17499:3 17500:2 17503:1 17600:1 17620:2 17633:1 17636:3 17638:1 17642:5 17664:4 17668:1 17675:1 17696:1 17732:8 17733:3 17739:2 17761:1 17788:1 17792:1 17803:1 17859:1 17868:1 17890:1 17908:2 17913:1 17924:4 17948:1 17995:2 18029:1 18044:1 18059:2 18068:1 18145:1 18193:1 18202:1 18252:1 18280:1 18290:1 18292:1 18296:1 18308:1 18323:1 18324:2 18330:1 18339:1 18436:1 18493:2 18496:1 18540:1 18549:1 18554:1 18559:4 18570:3 18574:1 18581:2 18610:1 18653:2 18655:1 18657:1 18666:2 18685:2 18700:1 18742:1 18748:1 18755:1 18765:1 18796:1 18844:1 18855:1 18906:3 18910:8 18926:2 19002:2 19006:1 19012:2 19021:1 19042:1 19110:1 19174:8 19203:8 19207:1 19228:2 19230:1 19241:1 19270:2 19271:2 19291:1 19297:1 19302:1 19305:1 19306:1 19311:1 19318:1 19331:1 19351:1 19367:2 19373:1 19383:1 19404:1 19411:1 19522:3 19573:1 19606:1 19618:1 19631:2 19667:8 19676:1 19693:1 19694:1 19739:2 19788:2 19814:1 19820:1 19838:1 19841:1 19843:4 19846:1 19852:1 19883:1 19902:15 19904:1 19909:1 19960:1 19965:1 19967:2 19972:1 20012:1 20048:1 20064:5 20077:2 20078:1 20091:1 20098:1 20117:1 20142:2 20151:1 20164:1 20191:1 20224:1 20231:1 20243:1 20267:7 20270:2 20272:1 20313:1 20317:1 20318:1 20331:4 20342:2 20344:1 20350:3 20356:1 20361:1 20362:1 20367:1 20369:1 20377:1 20418:3 20424:1 20435:3 20436:1 20440:1 20479:8 20492:2 20493:2 20496:1 20508:1 20511:1 20540:1 20555:2 20572:1 20590:1 20650:1 20660:1 20682:2 20683:1 20687:1 20698:3 20742:1 20763:4 20766:1 20775:1 20863:2 20873:1 20953:1 20960:1 20975:1 20980:1 20989:2 20997:1 21023:3 21043:2 21048:1 21069:1 21078:1 21113:2 21162:8 21174:2 21185:2 21194:1 21212:2 21226:1 21227:1 21240:2 21242:1 21252:1 21253:1 21254:1 21279:1 21281:1 21282:1 21299:1 21309:1 21324:1 21330:1 21338:3 21344:3 21353:1 21355:2 21397:1 21408:1 21417:2 21429:1 21432:2 21441:1 21474:2 21483:1 21503:2 21521:2 21548:3 21558:1 21565:2 21578:2 21599:2 21628:1 21634:1 21636:1 21647:3 21653:1 21654:1 21662:1 21708:8 21715:1 21720:4 21729:1 21756:1 21770:1 21771:2 21772:1 21779:1 21786:1 21787:1 21808:1 21814:2 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 22000:1 22032:3 22080:1 22090:1 22111:1 22115:1 22118:1 22126:1 22130:1 22135:1 22184:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:2 22246:3 22254:1 22275:1 22303:2 22365:1 22388:1 22397:1 22421:1 22425:2 22432:2 22466:1 22469:1 22492:2 22495:1 22496:1 22521:1 22623:1 22625:3 22642:1 22651:1 22659:1 22694:1 22729:1 22732:1 22743:1 22745:4 22772:2 22831:2 22836:1 22844:2 22847:1 22861:1 22866:1 22891:1 22909:1 22919:1 22933:1 22937:2 22941:1 22947:1 22989:1 22993:2 23012:2 23029:1 23048:1 23066:1 23076:1 23087:1 23099:1 23113:1 23162:1 23166:2 23184:3 23223:1 23272:3 23274:1 23277:2 23293:2 23302:1 23363:1 23386:2 23394:1 23426:2 23427:1 23429:1 23436:1 23489:1 23490:1 23506:3 23532:1 23600:1 23606:1 23636:1 23656:2 10 8:1 11:3 13:1 18:1 21:2 31:3 68:1 106:1 117:1 128:2 145:1 184:1 190:1 214:1 232:1 260:1 268:1 311:1 315:1 386:1 394:8 417:2 429:1 443:1 474:1 476:1 489:1 497:1 541:1 548:1 559:1 621:1 622:1 636:1 655:2 657:1 665:1 705:1 758:2 764:2 805:1 895:1 898:1 949:6 951:2 981:3 989:2 1072:3 1075:2 1093:1 1106:1 1159:1 1167:3 1188:4 1199:2 1238:1 1246:5 1248:1 1283:1 1297:1 1298:1 1299:1 1349:1 1384:1 1410:1 1422:5 1427:2 1430:1 1436:2 1449:2 1464:1 1467:1 1491:1 1494:1 1497:7 1514:1 1515:1 1532:1 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:3 1630:1 1637:1 1639:1 1642:5 1643:1 1659:2 1685:1 1687:2 1738:2 1739:1 1742:1 1753:1 1767:1 1784:1 1789:1 1791:1 1802:1 1862:6 1864:1 1865:1 1887:3 1912:2 1944:1 1945:1 1969:2 2003:1 2011:1 2037:1 2039:1 2040:1 2044:1 2050:1 2052:2 2059:2 2068:1 2073:1 2074:2 2075:1 2086:1 2101:1 2106:1 2116:1 2135:1 2169:1 2191:1 2200:1 2204:1 2234:1 2289:1 2298:1 2300:1 2303:1 2315:1 2317:1 2340:1 2345:4 2360:1 2391:1 2395:2 2397:1 2401:2 2402:1 2405:2 2407:1 2409:2 2418:1 2423:1 2431:1 2438:1 2459:1 2515:1 2521:2 2532:1 2538:2 2539:1 2546:1 2579:4 2605:1 2617:1 2629:1 2637:4 2652:1 2658:1 2687:1 2744:1 2750:1 2756:4 2763:2 2783:1 2799:1 2818:1 2842:1 2852:3 2876:1 2881:1 2910:1 2929:1 2936:1 2957:4 2962:4 2985:1 2990:2 2997:3 3008:1 3039:1 3067:1 3068:1 3078:1 3095:1 3139:2 3147:1 3152:1 3157:2 3195:1 3217:2 3276:1 3279:1 3296:1 3300:1 3318:1 3368:3 3394:1 3446:1 3456:4 3470:3 3492:1 3517:1 3542:1 3550:2 3552:2 3593:1 3594:2 3597:2 3599:2 3608:1 3613:1 3620:1 3627:2 3631:1 3632:1 3639:1 3642:1 3646:3 3651:3 3656:1 3686:1 3732:1 3733:1 3757:1 3795:1 3833:2 3844:11 3856:1 3857:1 3891:2 3901:1 3908:1 3921:1 3947:2 3948:2 3971:1 3987:1 3996:1 4000:1 4017:2 4029:1 4083:1 4090:1 4109:4 4110:1 4147:1 4156:1 4169:1 4170:1 4206:1 4222:1 4231:1 4232:1 4256:1 4270:1 4286:4 4295:1 4298:1 4338:2 4357:1 4370:2 4377:2 4393:1 4397:2 4407:1 4425:1 4433:8 4444:1 4487:1 4502:1 4529:1 4537:1 4546:1 4557:4 4562:1 4571:1 4603:1 4622:1 4642:1 4649:1 4659:1 4665:6 4669:2 4673:1 4678:1 4699:2 4700:1 4728:1 4730:6 4738:1 4739:1 4741:2 4747:2 4774:1 4778:1 4785:2 4803:3 4810:1 4813:1 4827:4 4835:1 4844:4 4867:1 4877:1 4897:1 4919:1 4941:8 4946:1 4948:1 4962:2 4979:1 5008:1 5039:1 5058:1 5165:3 5168:1 5174:1 5184:2 5192:1 5218:2 5230:1 5267:1 5271:1 5272:1 5318:3 5334:2 5339:2 5375:1 5389:1 5411:1 5437:1 5439:1 5448:1 5454:1 5473:1 5480:4 5493:1 5522:1 5536:1 5572:1 5608:2 5633:1 5640:1 5653:2 5660:8 5668:1 5710:1 5711:1 5776:1 5809:1 5833:2 5842:1 5846:1 5859:2 5874:1 5877:1 5880:1 5889:1 5910:1 5916:4 5932:1 5935:1 5941:1 5958:1 5980:1 5990:1 5999:2 6053:1 6067:1 6068:3 6086:1 6124:3 6133:1 6134:3 6135:5 6174:1 6179:1 6199:1 6211:2 6235:1 6282:3 6283:1 6290:1 6295:1 6301:2 6313:1 6319:1 6330:1 6362:1 6405:1331 6440:1 6457:1 6465:1 6472:1 6502:1 6510:2 6637:1 6666:1 6668:1 6677:1 6741:1 6749:3 6761:2 6763:1 6767:1 6779:1 6794:1 6808:1 6841:1 6864:1 6867:1 6870:1 6896:1 6972:3 6975:1 6977:1 6989:1 6991:1 6993:1 6994:15 7014:1 7022:1 7024:1 7025:1 7079:1 7094:1 7102:1 7151:1 7173:1 7174:1 7196:1 7197:2 7204:1 7207:1 7256:1 7337:2 7378:1 7388:5 7390:1 7391:1 7428:1 7430:1 7431:4 7436:1 7453:3 7467:1 7498:3 7506:1 7522:2 7558:1 7559:1 7607:1 7623:2 7633:1 7659:2 7671:2 7682:1 7712:2 7715:1 7745:2 7746:1 7772:1 7793:2 7824:6 7830:1 7842:1 7844:3 7853:6 7863:1 7865:1 7876:1 7886:2 7892:1 7893:1 7897:1 7912:5 7927:1 7989:1 7993:1 8011:1 8020:2 8049:2 8052:1 8054:1 8056:2 8064:4 8066:1 8080:1 8095:1 8099:2 8110:2 8111:1 8135:1 8173:1 8211:2 8225:1 8256:1 8290:1 8291:2 8295:1 8316:1 8324:1 8347:1 8360:1 8439:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:4 8534:1 8578:1 8647:1 8651:2 8662:1 8679:1 8689:1 8690:2 8699:1 8702:1 8720:4 8741:1 8760:1 8772:2 8780:1 8793:1 8799:1 8819:1 8820:1 8824:1 8831:1 8842:2 8849:1 8866:2 8887:1 8891:2 8896:1 8930:1 8932:1 8936:1 8947:2 8958:2 8981:1 8986:1 9065:1 9082:2 9127:3 9147:1 9151:1 9167:3 9170:1 9194:1 9242:1 9247:2 9248:1 9272:1 9295:1 9296:1 9312:1 9314:1 9322:1 9335:2 9343:1 9344:1 9362:1 9364:1 9371:1 9400:1 9430:1 9432:1 9445:1 9454:15 9476:1 9489:1 9491:3 9505:1 9529:2 9570:1 9571:3 9574:1 9578:2 9680:1 9800:2 9802:3 9803:3 9822:1 9837:1 9915:1 9920:1 9930:2 9943:3 9976:1 9989:1 10022:1 10077:1 10085:1 10126:2 10132:1 10136:2 10139:1 10140:3 10141:1 10143:1 10151:1 10162:1 10171:1 10172:1 10174:2 10206:3 10253:1 10262:1 10287:1 10297:1 10305:1 10310:2 10317:1 10318:1 10325:1 10335:1 10338:3 10339:2 10340:1 10342:1 10392:1 10409:1 10414:1 10424:1 10444:8 10454:1 10493:1 10512:16 10559:1 10572:1 10640:3 10658:1 10667:1 10681:1 10687:1 10718:1 10727:2 10753:1 10757:2 10775:1 10818:1 10859:1 10868:1 10873:1 10889:1 10894:1 10970:2 10971:1 10977:1 10980:1 10984:11 11003:1 11033:1 11059:1 11065:2 11072:1 11075:1 11100:1 11109:1 11119:4 11125:1 11126:1 11141:6 11148:1 11161:1 11174:2 11175:1 11182:3 11183:1 11199:1 11201:1 11225:2 11239:1 11298:1 11300:1 11302:1 11321:3 11331:1 11339:2 11345:1 11364:1 11382:1 11384:1 11401:1 11453:1 11461:1 11481:2 11521:1 11528:1 11539:1 11552:1 11565:1 11566:1 11567:2 11583:3 11592:1 11625:1 11626:1 11635:1 11644:1 11653:1 11655:1 11680:1 11706:1 11729:1 11765:1 11766:1 11806:1 11809:1 11818:1 11830:1 11882:1 11898:1 11917:1 11950:1 11964:1 11973:1 12045:1 12046:1 12061:1 12070:1 12071:15 12077:1 12091:1 12092:2 12093:1 12134:1 12143:2 12165:2 12167:1 12198:2 12212:1 12231:1 12261:1 12265:1 12282:2 12303:1 12304:1 12312:2 12381:1 12383:1 12391:3 12397:1 12399:1 12421:1 12443:1 12478:3 12498:1 12521:8 12522:1 12523:2 12528:1 12547:1 12552:1 12554:2 12564:2 12587:1 12594:3 12602:11 12608:1 12613:2 12619:1 12643:20 12676:5 12680:3 12682:1 12692:1 12741:1 12765:1 12811:2 12828:2 12851:1 12861:1 12954:3 12961:1 12980:1 12997:2 13002:1 13038:1 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:3 13152:1 13153:1 13175:1 13181:1 13199:3 13201:2 13227:1 13232:1 13259:1 13293:1 13301:2 13319:1 13344:2 13359:12 13361:1 13378:1 13406:2 13441:1 13446:1 13460:2 13475:8 13490:1 13502:1 13567:1 13571:8 13589:1 13644:1 13665:2 13670:1 13703:2 13717:1 13724:1 13737:2 13750:1 13755:1 13777:1 13790:1 13797:1 13799:2 13817:1 13821:1 13831:2 13843:1 13887:1 13907:1 13908:2 13910:1 13918:1 13930:1 13964:1 13967:1 13977:1 13982:2 14000:1 14013:1 14023:2 14035:1 14084:1 14113:1 14123:1 14130:5 14137:1 14142:3 14145:1 14160:2 14163:1 14168:1 14171:2 14183:1 14200:1 14261:3 14266:1 14283:1 14308:1 14344:2 14427:1 14435:1 14439:1 14472:1 14475:1 14488:1 14494:2 14495:1 14516:2 14532:4 14586:5 14639:1 14650:1 14667:1 14671:2 14681:1 14687:1 14708:1 14711:1 14728:1 14735:1 14750:1 14808:1 14814:2 14819:2 14822:1 14842:1 14846:1 14852:1 14867:1 14883:1 14889:8 14898:1 14899:1 14940:2 14984:2 15062:1 15078:1 15085:1 15127:3 15134:1 15138:1 15157:1 15164:2 15167:2 15180:1 15185:1 15187:1 15196:2 15201:1 15205:2 15214:1 15234:1 15260:1 15306:1 15330:1 15372:1 15404:3 15413:1 15414:1 15430:2 15433:1 15446:1 15447:1 15449:1 15488:1 15494:1 15501:1 15506:1 15527:1 15537:1 15544:2 15557:1 15562:1 15621:2 15637:3 15679:2 15690:1 15693:1 15698:1 15732:1 15734:1 15735:8 15746:8 15762:1 15785:1 15849:3 15877:1 15904:3 15910:1 15918:1 15929:1 15933:3 15939:1 15955:1 15963:1 15967:1 15976:1 15981:2 15990:1 15997:1 16018:1 16029:1 16052:2 16055:1 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:3 16194:1 16202:1 16203:1 16207:8 16208:1 16223:1 16235:1 16268:1 16276:1 16304:2 16356:1 16360:1 16389:1 16401:2 16413:1 16414:2 16416:1 16438:2 16460:1 16467:1 16513:1 16540:1 16556:1 16643:1 16668:1 16677:1 16694:2 16712:1 16724:1 16734:1 16742:1 16779:6 16783:4 16796:1 16797:1 16805:1 16827:1 16845:2 16854:1 16877:1 16879:1 16884:4 16885:1 16902:4 16904:1 16926:2 16938:1 16948:8 16977:1 17006:1 17008:1 17009:11 17015:1 17034:2 17046:4 17050:2 17052:1 17055:1 17144:1 17149:1 17153:1 17156:1 17157:2 17159:2 17164:3 17165:1 17203:1 17207:1 17210:1 17213:2 17307:1 17308:1 17327:1 17330:2 17359:1 17383:1 17408:8 17410:1 17466:1 17467:1 17499:3 17500:2 17503:1 17600:1 17620:2 17633:1 17636:3 17638:1 17642:5 17664:4 17668:1 17675:1 17696:1 17732:8 17733:3 17739:2 17761:1 17788:1 17792:1 17803:1 17859:1 17868:1 17890:1 17908:2 17913:1 17924:4 17948:1 17995:2 18029:1 18044:1 18059:2 18068:1 18145:1 18193:1 18202:1 18252:1 18280:1 18289:1 18290:1 18292:1 18296:1 18308:1 18323:1 18324:2 18330:1 18339:1 18430:1 18436:1 18493:2 18496:1 18540:1 18549:1 18554:1 18559:4 18570:3 18574:1 18581:2 18610:1 18653:2 18655:1 18657:1 18666:2 18685:2 18700:1 18742:1 18748:1 18755:1 18765:1 18796:1 18815:1 18844:1 18855:1 18906:3 18910:8 18926:2 19002:2 19006:1 19012:2 19021:1 19042:1 19110:1 19174:8 19203:8 19207:1 19228:2 19230:1 19241:1 19270:2 19271:2 19291:1 19297:1 19302:1 19305:1 19306:1 19311:1 19318:1 19331:1 19351:1 19367:2 19373:1 19383:1 19404:1 19411:1 19522:3 19573:1 19606:1 19618:1 19631:2 19667:8 19676:1 19693:1 19694:1 19739:2 19788:2 19814:1 19820:1 19838:1 19841:1 19843:4 19846:1 19852:1 19883:1 19902:15 19904:1 19909:1 19960:1 19965:1 19967:2 19972:1 20012:1 20048:1 20064:5 20077:2 20078:1 20091:1 20098:1 20117:1 20142:2 20151:1 20164:1 20191:1 20224:1 20231:1 20243:1 20267:7 20270:2 20272:1 20313:1 20317:1 20318:1 20331:4 20342:2 20344:1 20350:3 20356:1 20361:1 20362:1 20367:1 20369:1 20377:1 20418:3 20424:1 20435:3 20436:1 20440:1 20479:8 20492:2 20493:2 20496:1 20508:1 20511:1 20540:1 20555:2 20572:1 20590:1 20650:1 20660:1 20682:2 20683:1 20687:1 20698:3 20742:1 20763:4 20766:1 20775:1 20863:2 20873:1 20953:1 20960:1 20975:1 20980:1 20989:2 20997:1 21023:3 21043:2 21048:1 21069:1 21078:1 21113:2 21162:8 21174:2 21185:2 21194:1 21212:2 21226:1 21227:1 21240:2 21242:1 21252:1 21253:1 21254:1 21279:1 21281:1 21282:1 21299:1 21309:1 21324:1 21330:1 21338:3 21344:3 21353:1 21355:2 21397:1 21408:1 21417:2 21429:1 21432:2 21441:1 21474:2 21483:1 21503:2 21521:2 21548:3 21558:1 21565:2 21578:2 21599:2 21628:1 21634:1 21636:1 21647:3 21653:1 21654:1 21662:1 21708:8 21715:1 21720:4 21729:1 21756:1 21770:1 21771:3 21772:1 21779:1 21786:1 21787:1 21808:1 21814:2 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 22000:1 22032:3 22080:1 22090:1 22111:1 22115:1 22118:1 22126:1 22130:1 22135:1 22184:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:2 22246:3 22254:1 22275:1 22303:2 22365:1 22388:1 22397:1 22421:1 22425:2 22432:2 22466:1 22469:1 22492:2 22495:1 22496:1 22521:1 22623:1 22625:3 22642:1 22651:1 22659:1 22694:1 22729:1 22732:1 22743:1 22745:4 22772:2 22831:2 22836:1 22844:2 22847:1 22861:1 22866:1 22891:1 22909:1 22919:1 22933:1 22937:2 22941:1 22947:1 22989:1 22993:2 23012:2 23029:1 23048:1 23066:1 23076:1 23087:1 23099:1 23113:1 23162:1 23166:2 23184:3 23223:1 23272:3 23274:1 23277:2 23293:2 23302:1 23363:1 23386:2 23394:1 23426:2 23427:1 23429:1 23436:1 23489:1 23490:1 23506:3 23532:1 23600:1 23606:1 23636:1 23656:2 10 8:1 11:3 13:1 18:1 21:2 31:3 68:1 106:1 117:1 128:2 145:1 184:1 190:1 214:1 232:1 260:1 268:1 311:1 315:1 386:1 394:8 417:2 429:1 443:1 474:1 476:1 489:1 497:1 541:1 548:1 559:1 621:1 622:2 636:1 655:2 657:1 665:1 705:1 758:2 764:2 805:1 895:1 898:1 932:1 949:6 951:2 981:3 989:2 1072:3 1075:2 1093:1 1106:1 1159:1 1167:3 1188:4 1199:2 1238:1 1246:5 1248:1 1283:1 1297:1 1298:1 1299:1 1349:1 1384:1 1410:1 1422:5 1427:2 1430:1 1436:2 1449:2 1464:1 1467:1 1491:1 1494:1 1497:7 1514:1 1515:1 1532:1 1533:1 1544:1 1569:2 1574:1 1588:2 1607:2 1622:3 1630:1 1637:1 1639:1 1642:5 1643:1 1659:2 1685:1 1687:2 1738:2 1739:1 1742:1 1753:1 1767:1 1784:1 1789:1 1791:1 1802:1 1862:6 1864:1 1865:1 1887:4 1912:2 1944:1 1945:1 1953:1 1969:2 2003:1 2011:1 2037:1 2039:1 2040:1 2044:1 2050:1 2052:2 2059:3 2068:1 2073:1 2074:2 2075:1 2086:1 2101:1 2106:1 2116:1 2135:1 2169:1 2191:1 2200:1 2204:1 2234:1 2289:1 2298:1 2300:1 2303:1 2315:1 2317:1 2340:1 2345:4 2360:1 2391:1 2395:2 2397:1 2401:2 2402:1 2405:2 2407:1 2409:2 2418:1 2423:1 2431:1 2438:1 2459:1 2515:1 2521:2 2532:1 2538:2 2539:1 2546:1 2579:4 2605:1 2617:1 2629:1 2637:4 2652:1 2658:1 2687:1 2744:1 2750:1 2756:4 2763:2 2783:1 2799:1 2818:1 2842:1 2852:3 2876:1 2881:1 2910:1 2929:1 2936:1 2957:4 2962:4 2985:1 2990:2 2997:3 3008:1 3039:1 3067:1 3068:1 3078:1 3095:1 3101:1 3139:2 3147:1 3152:1 3157:2 3190:1 3195:1 3217:2 3276:1 3279:1 3296:1 3300:1 3318:1 3337:1 3368:3 3394:1 3446:1 3456:4 3470:3 3492:1 3517:1 3542:1 3550:2 3552:2 3593:1 3594:2 3597:2 3599:2 3606:1 3608:1 3613:1 3620:1 3627:2 3631:1 3632:2 3639:1 3642:1 3646:4 3651:3 3656:1 3686:1 3710:1 3732:1 3733:1 3757:1 3795:1 3833:2 3844:11 3856:1 3857:1 3891:2 3901:1 3908:1 3921:1 3947:2 3948:2 3971:1 3987:1 3996:1 4000:1 4017:2 4029:1 4083:1 4090:1 4109:4 4110:1 4117:1 4147:1 4156:1 4169:1 4170:1 4206:1 4222:1 4231:1 4232:1 4256:1 4270:1 4286:4 4295:1 4298:1 4338:2 4357:1 4370:2 4377:2 4393:1 4397:3 4407:1 4425:1 4433:8 4444:1 4487:1 4502:1 4529:1 4537:1 4546:1 4557:4 4562:1 4571:1 4603:1 4622:1 4642:1 4649:1 4659:1 4665:6 4669:2 4673:1 4678:1 4699:2 4700:1 4728:1 4730:6 4738:1 4739:1 4741:2 4747:2 4774:1 4778:1 4785:2 4803:4 4810:1 4813:1 4827:4 4835:1 4844:4 4867:1 4877:1 4897:1 4919:1 4941:8 4946:1 4948:1 4962:2 4979:1 5008:1 5039:1 5058:1 5165:3 5168:1 5174:1 5184:2 5192:1 5218:2 5230:1 5267:1 5271:1 5272:1 5318:3 5334:2 5339:2 5375:1 5389:1 5411:1 5437:1 5439:1 5448:1 5454:1 5473:1 5480:4 5493:2 5522:1 5536:1 5572:1 5608:2 5633:1 5640:1 5653:2 5660:8 5668:1 5710:1 5711:1 5776:1 5809:1 5833:2 5842:1 5846:1 5859:2 5874:1 5877:1 5880:1 5889:1 5910:1 5916:4 5932:1 5935:1 5941:1 5958:1 5980:1 5990:1 5999:2 6053:1 6067:1 6068:3 6086:1 6124:3 6133:1 6134:3 6135:5 6174:1 6179:1 6199:1 6211:2 6235:1 6282:3 6283:1 6290:1 6295:1 6301:2 6313:1 6319:1 6330:1 6362:1 6405:1383 6440:1 6457:1 6465:1 6472:1 6502:1 6510:2 6637:1 6666:1 6668:1 6677:1 6741:1 6749:3 6761:2 6763:1 6767:1 6779:1 6794:1 6808:1 6841:1 6864:1 6867:1 6870:1 6896:1 6972:3 6975:1 6977:1 6989:1 6991:1 6993:1 6994:15 7014:1 7022:1 7024:1 7025:1 7079:1 7094:1 7102:1 7151:1 7173:1 7174:1 7196:1 7197:2 7204:1 7207:1 7256:1 7337:2 7378:1 7388:5 7390:1 7391:1 7428:1 7430:1 7431:4 7436:1 7453:3 7467:1 7498:3 7506:1 7522:2 7558:1 7559:1 7607:1 7623:2 7633:1 7659:2 7671:2 7682:1 7712:2 7715:1 7745:2 7746:1 7772:1 7793:2 7824:6 7830:1 7842:1 7844:3 7853:6 7863:2 7865:1 7876:1 7886:2 7892:1 7893:1 7897:1 7912:5 7927:1 7938:2 7950:1 7989:1 7993:1 8011:1 8020:2 8049:2 8052:1 8054:1 8056:2 8064:4 8066:1 8080:1 8095:1 8099:2 8110:2 8111:1 8135:1 8173:1 8211:2 8225:1 8256:1 8290:1 8291:2 8295:1 8316:1 8324:1 8347:1 8360:1 8373:1 8439:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:4 8534:1 8578:1 8647:1 8651:2 8662:1 8679:1 8689:1 8690:2 8699:1 8702:1 8720:4 8741:1 8760:1 8772:2 8780:1 8793:1 8799:1 8819:1 8820:1 8824:1 8831:1 8842:3 8849:1 8866:2 8887:1 8891:2 8896:1 8930:1 8932:1 8936:1 8945:1 8947:2 8958:2 8981:1 8986:1 9065:1 9082:2 9127:3 9147:1 9151:1 9167:4 9170:1 9194:1 9242:1 9247:2 9248:1 9272:1 9295:1 9296:1 9312:1 9314:1 9322:1 9335:2 9343:1 9344:1 9362:1 9364:1 9371:2 9400:1 9430:1 9432:1 9445:1 9454:15 9476:1 9489:1 9491:3 9505:1 9529:2 9553:1 9570:1 9571:3 9574:1 9578:2 9680:1 9800:2 9802:3 9803:3 9822:1 9837:1 9915:1 9920:1 9930:2 9943:3 9976:1 9989:1 10022:1 10077:1 10085:1 10126:2 10132:1 10136:2 10139:1 10140:3 10141:1 10143:1 10151:1 10162:1 10171:1 10172:1 10174:2 10206:3 10253:1 10262:1 10287:1 10297:1 10305:1 10310:2 10317:1 10318:1 10325:1 10335:1 10338:3 10339:2 10340:1 10342:1 10392:1 10409:1 10414:1 10424:1 10444:8 10454:1 10493:1 10512:16 10559:1 10572:1 10640:3 10658:1 10667:1 10681:1 10687:1 10718:1 10727:2 10753:1 10757:2 10775:1 10818:1 10859:1 10868:1 10873:1 10889:1 10894:1 10970:2 10971:1 10977:1 10980:1 10984:11 11003:1 11033:1 11059:1 11065:2 11072:1 11075:1 11100:1 11109:1 11119:4 11125:1 11126:1 11141:6 11148:1 11161:1 11174:2 11175:1 11182:3 11183:1 11199:1 11201:1 11225:2 11239:1 11298:1 11300:1 11302:1 11321:3 11331:1 11339:2 11345:1 11364:1 11382:1 11384:1 11401:1 11453:1 11461:1 11481:2 11521:1 11528:1 11539:1 11552:1 11565:1 11566:1 11567:2 11583:3 11592:1 11625:1 11626:1 11635:1 11644:1 11653:1 11655:1 11680:1 11706:1 11729:1 11765:1 11766:1 11806:1 11809:1 11818:1 11830:1 11882:1 11898:1 11917:1 11950:1 11964:1 11973:1 12045:1 12046:1 12061:1 12063:2 12070:1 12071:15 12077:1 12091:1 12092:2 12093:1 12134:1 12143:2 12165:3 12167:1 12198:2 12212:1 12231:1 12261:1 12265:1 12282:2 12303:1 12304:1 12312:2 12381:1 12383:1 12391:3 12397:1 12399:1 12421:1 12443:1 12478:3 12498:1 12521:8 12522:1 12523:2 12528:1 12547:1 12552:1 12554:2 12564:2 12587:1 12594:3 12602:11 12608:1 12613:2 12619:1 12643:22 12676:5 12680:4 12682:1 12692:1 12741:1 12765:1 12811:2 12828:2 12851:1 12861:1 12954:3 12961:1 12980:1 12997:2 13002:1 13038:1 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:3 13152:1 13153:1 13175:1 13181:1 13199:3 13201:2 13227:1 13232:1 13259:1 13293:1 13301:2 13319:1 13344:2 13359:13 13361:1 13378:1 13406:2 13441:1 13446:1 13460:2 13475:8 13490:1 13502:1 13567:1 13571:8 13589:1 13644:1 13665:2 13670:1 13703:2 13717:1 13724:1 13737:2 13750:1 13755:1 13777:1 13790:1 13797:1 13799:2 13817:1 13821:1 13831:2 13843:1 13887:1 13907:1 13908:2 13910:1 13918:1 13930:1 13964:1 13967:1 13977:2 13982:2 14000:1 14013:1 14023:2 14035:1 14084:1 14113:1 14123:1 14130:5 14137:1 14142:3 14145:1 14160:2 14163:1 14168:1 14171:2 14183:1 14200:1 14261:3 14266:1 14283:1 14308:1 14344:2 14427:1 14435:1 14439:1 14472:1 14475:1 14488:1 14494:2 14495:1 14516:2 14532:4 14586:5 14634:1 14639:1 14650:1 14667:1 14671:2 14681:1 14687:1 14708:1 14711:1 14728:1 14735:1 14750:1 14808:1 14814:2 14819:2 14822:1 14842:1 14846:1 14852:1 14867:1 14883:1 14889:8 14898:1 14899:1 14940:2 14984:2 14992:1 15062:1 15078:1 15085:1 15127:3 15134:1 15138:1 15157:1 15164:2 15167:2 15180:1 15185:1 15187:1 15196:2 15201:1 15205:2 15214:1 15234:1 15260:1 15306:1 15330:1 15372:1 15404:3 15413:1 15414:1 15430:2 15433:1 15446:1 15447:1 15449:1 15488:1 15494:1 15501:1 15506:1 15527:1 15537:1 15544:2 15557:1 15562:1 15621:2 15637:3 15679:2 15690:1 15693:1 15698:1 15732:1 15734:1 15735:8 15743:1 15746:8 15762:1 15785:1 15849:3 15877:1 15904:3 15910:1 15918:1 15929:1 15933:3 15939:1 15955:1 15963:1 15967:1 15976:1 15981:2 15990:1 15997:1 16018:1 16029:1 16052:2 16055:1 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:3 16194:1 16202:1 16203:1 16207:8 16208:1 16223:1 16235:1 16268:1 16276:1 16304:2 16356:1 16360:1 16389:1 16401:2 16413:1 16414:2 16416:1 16438:2 16460:1 16467:1 16513:1 16540:1 16556:1 16643:1 16668:1 16677:1 16694:2 16712:1 16724:1 16734:1 16742:1 16779:6 16783:4 16796:1 16797:1 16805:1 16827:1 16845:2 16854:1 16877:1 16879:1 16884:4 16885:1 16902:4 16904:1 16926:2 16938:1 16948:8 16977:1 17006:1 17008:1 17009:11 17015:1 17034:2 17046:4 17050:2 17052:1 17055:1 17144:1 17149:1 17153:1 17156:1 17157:2 17159:2 17164:4 17165:1 17203:1 17207:1 17210:1 17213:2 17307:1 17308:1 17327:1 17330:2 17359:1 17383:1 17408:8 17410:1 17466:1 17467:1 17499:3 17500:2 17503:2 17600:1 17620:2 17633:1 17636:3 17638:1 17642:5 17664:4 17668:1 17675:1 17696:1 17732:8 17733:3 17739:2 17761:1 17788:1 17792:1 17803:1 17859:1 17868:1 17890:1 17908:2 17913:1 17924:4 17948:1 17995:2 18029:1 18044:1 18059:2 18068:1 18145:1 18193:2 18202:1 18252:1 18280:1 18289:1 18290:1 18292:1 18296:1 18308:1 18323:1 18324:2 18330:1 18339:1 18430:1 18436:1 18493:2 18496:1 18540:1 18549:1 18554:1 18559:4 18570:3 18574:1 18581:2 18584:1 18610:1 18653:2 18655:1 18657:1 18666:2 18685:2 18700:1 18742:1 18748:1 18755:1 18765:1 18796:1 18815:1 18844:1 18855:1 18906:3 18910:8 18926:2 19002:2 19006:1 19012:2 19021:1 19042:1 19110:1 19174:8 19203:8 19207:1 19228:2 19230:1 19241:1 19270:2 19271:2 19291:1 19297:1 19302:1 19305:1 19306:1 19311:1 19318:1 19331:1 19351:1 19367:2 19373:1 19383:1 19404:1 19411:1 19522:4 19573:1 19606:1 19607:1 19618:1 19631:2 19667:8 19676:2 19693:1 19694:1 19739:2 19788:2 19814:1 19820:1 19838:1 19841:1 19843:4 19846:1 19852:1 19883:1 19902:15 19904:1 19909:1 19959:1 19960:1 19965:1 19967:2 19972:1 20012:1 20048:1 20064:5 20077:2 20078:1 20091:1 20098:1 20117:1 20142:2 20151:1 20164:1 20191:1 20224:1 20231:1 20243:1 20267:7 20270:2 20272:1 20313:1 20317:1 20318:1 20331:4 20342:2 20344:1 20350:3 20356:1 20361:1 20362:1 20367:1 20369:1 20377:1 20418:3 20424:1 20435:3 20436:1 20440:1 20479:8 20492:2 20493:2 20496:1 20508:1 20511:1 20540:1 20555:2 20572:1 20590:1 20650:1 20660:1 20682:2 20683:1 20687:1 20698:3 20742:1 20763:4 20766:1 20775:1 20863:2 20873:1 20953:1 20960:1 20975:1 20980:1 20989:2 20997:1 21023:4 21043:2 21048:1 21069:1 21078:1 21113:2 21162:8 21174:2 21185:2 21194:1 21212:2 21226:1 21227:1 21240:2 21242:1 21252:1 21253:1 21254:1 21279:1 21281:1 21282:1 21299:1 21309:1 21324:1 21330:1 21338:3 21344:3 21353:1 21355:2 21397:1 21408:1 21417:2 21429:1 21432:2 21441:1 21474:2 21483:1 21503:2 21521:2 21548:3 21558:1 21565:2 21578:2 21599:2 21628:1 21634:1 21636:1 21647:3 21653:1 21654:1 21662:1 21708:8 21715:1 21720:4 21729:1 21756:1 21770:1 21771:3 21772:1 21779:1 21786:1 21787:1 21808:1 21814:2 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 21998:1 22000:1 22032:3 22080:1 22090:1 22110:1 22111:1 22115:1 22118:1 22126:1 22130:1 22135:1 22184:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:2 22246:3 22254:1 22275:1 22303:2 22365:1 22388:1 22397:1 22421:1 22425:2 22432:2 22466:1 22469:1 22492:2 22495:1 22496:1 22521:1 22623:1 22625:3 22642:1 22651:1 22659:1 22694:1 22729:1 22732:1 22743:1 22745:4 22772:2 22831:2 22836:1 22844:2 22847:1 22861:1 22866:1 22891:1 22909:1 22915:1 22919:1 22933:1 22937:2 22941:1 22947:2 22989:1 22993:2 23012:2 23013:1 23029:1 23048:1 23066:1 23076:1 23087:1 23099:1 23113:1 23162:1 23166:2 23184:3 23223:1 23272:3 23274:1 23277:2 23293:2 23302:1 23363:1 23386:2 23394:1 23426:2 23427:1 23429:1 23436:1 23489:1 23490:1 23506:3 23532:1 23600:1 23606:1 23636:1 23656:2 10 8:1 11:3 13:1 18:1 21:2 31:3 68:1 106:1 117:1 128:2 145:1 184:1 190:2 214:1 227:1 232:1 260:1 268:1 311:1 315:1 386:1 394:8 417:2 429:1 443:1 474:1 476:1 489:1 497:1 541:1 548:1 559:1 621:1 622:2 636:1 655:2 657:1 665:1 705:1 758:2 764:2 805:1 895:1 898:1 932:1 949:6 951:2 981:3 989:2 1072:4 1075:2 1093:1 1106:1 1159:1 1167:3 1188:4 1199:2 1233:1 1238:1 1246:5 1248:1 1283:1 1297:1 1298:1 1299:1 1349:1 1384:1 1410:1 1422:5 1427:2 1430:1 1436:2 1449:2 1464:1 1467:1 1491:1 1494:1 1497:7 1514:1 1515:1 1532:1 1533:1 1544:1 1569:2 1574:1 1588:2 1601:1 1607:2 1610:1 1622:4 1630:1 1637:1 1639:1 1642:7 1643:1 1659:2 1685:1 1687:2 1691:1 1738:2 1739:1 1742:1 1753:1 1767:1 1784:1 1789:1 1791:1 1802:1 1862:6 1864:1 1865:1 1887:4 1912:2 1927:1 1944:1 1945:1 1953:1 1969:2 2003:1 2011:1 2032:1 2037:1 2039:1 2040:1 2044:1 2050:1 2052:2 2056:1 2059:3 2068:1 2073:1 2074:2 2075:1 2083:1 2086:1 2101:1 2103:1 2106:1 2107:1 2116:1 2135:1 2169:1 2191:1 2200:1 2201:1 2204:1 2234:2 2289:1 2298:1 2300:1 2303:1 2315:1 2317:1 2326:1 2340:1 2345:4 2360:1 2391:1 2395:2 2397:1 2401:2 2402:1 2405:3 2407:1 2409:2 2418:1 2423:1 2431:1 2438:1 2459:1 2515:1 2521:2 2532:1 2538:3 2539:1 2546:1 2579:4 2605:1 2617:1 2629:1 2637:4 2652:1 2658:1 2687:1 2700:1 2744:1 2750:1 2756:4 2763:2 2783:1 2799:1 2818:1 2842:1 2852:3 2876:1 2878:1 2881:1 2887:1 2910:1 2929:1 2936:1 2957:4 2962:4 2974:1 2985:1 2990:2 2997:3 3008:1 3039:1 3067:1 3068:1 3078:1 3095:1 3101:1 3139:2 3147:1 3152:1 3157:2 3190:1 3195:1 3217:2 3276:1 3279:1 3296:1 3300:1 3318:1 3337:1 3368:3 3394:1 3446:1 3456:5 3470:4 3492:1 3517:1 3542:1 3550:3 3552:2 3593:1 3594:2 3597:2 3599:2 3606:1 3608:1 3613:1 3620:1 3627:2 3631:1 3632:2 3639:1 3642:1 3646:4 3651:3 3656:1 3686:1 3710:1 3732:1 3733:1 3757:1 3795:1 3803:1 3833:2 3844:11 3856:1 3857:2 3891:2 3901:1 3908:1 3921:1 3947:2 3948:2 3971:1 3987:1 3996:1 4000:1 4017:2 4029:1 4083:1 4090:1 4109:4 4110:1 4117:1 4147:1 4156:1 4169:1 4170:1 4206:1 4222:1 4231:1 4232:1 4256:1 4270:2 4286:4 4295:1 4298:1 4338:2 4357:1 4370:2 4377:2 4393:1 4397:4 4407:1 4425:1 4433:8 4444:1 4487:1 4502:1 4529:1 4537:1 4546:1 4553:1 4557:6 4562:1 4571:1 4603:1 4622:1 4642:1 4649:1 4659:1 4665:6 4669:2 4673:1 4678:1 4699:2 4700:1 4728:1 4730:6 4738:1 4739:1 4741:3 4747:2 4774:1 4778:1 4785:2 4803:5 4810:1 4813:1 4827:4 4835:1 4844:4 4867:1 4877:1 4897:1 4919:1 4941:8 4946:1 4948:1 4962:2 4979:1 5008:1 5011:1 5039:1 5058:1 5165:3 5168:1 5174:1 5184:2 5192:1 5218:2 5230:1 5267:1 5271:1 5272:1 5318:3 5334:2 5339:2 5375:1 5389:1 5411:1 5437:1 5439:1 5448:1 5454:1 5473:1 5480:4 5493:2 5496:1 5522:1 5535:1 5536:1 5572:1 5608:2 5633:1 5640:1 5653:2 5660:8 5668:1 5710:1 5711:1 5751:1 5776:1 5809:1 5833:2 5842:1 5846:1 5859:2 5874:1 5877:1 5880:1 5889:1 5910:1 5916:4 5932:1 5935:1 5941:1 5958:1 5980:1 5990:1 5999:2 6053:1 6067:1 6068:3 6086:1 6124:3 6133:1 6134:3 6135:5 6174:1 6179:1 6187:1 6199:1 6211:2 6235:1 6282:3 6283:1 6290:2 6295:1 6301:2 6313:1 6319:1 6330:1 6362:1 6405:1428 6440:1 6457:1 6465:1 6472:1 6502:1 6510:2 6554:1 6591:1 6620:1 6627:1 6637:1 6666:1 6668:1 6677:1 6741:2 6749:3 6761:2 6763:1 6767:1 6779:1 6794:1 6808:1 6817:1 6841:1 6864:1 6867:1 6870:1 6896:1 6972:3 6975:1 6977:1 6989:1 6991:1 6993:1 6994:15 7014:1 7022:1 7024:1 7025:1 7079:1 7094:1 7102:1 7151:1 7173:1 7174:1 7196:1 7197:2 7204:1 7207:1 7256:1 7337:3 7377:1 7378:1 7388:5 7390:1 7391:1 7428:1 7430:1 7431:4 7436:1 7453:3 7467:1 7498:3 7506:1 7522:2 7558:2 7559:2 7607:1 7623:2 7633:1 7659:2 7671:2 7682:1 7702:1 7712:2 7715:1 7745:2 7746:1 7772:1 7793:2 7824:7 7830:1 7842:1 7844:3 7853:6 7863:2 7865:1 7876:1 7886:2 7892:1 7893:1 7897:1 7912:5 7927:1 7938:3 7950:2 7989:1 7993:1 8011:1 8020:2 8049:2 8052:1 8054:1 8056:2 8064:4 8066:1 8080:1 8095:1 8099:2 8110:2 8111:1 8135:1 8154:1 8173:1 8211:2 8225:1 8256:1 8290:1 8291:2 8295:1 8316:1 8324:1 8347:1 8360:1 8373:1 8439:1 8446:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:4 8534:1 8546:1 8578:1 8647:1 8651:2 8662:1 8679:1 8683:1 8689:1 8690:2 8699:1 8702:1 8720:4 8741:1 8760:1 8772:2 8780:1 8793:1 8799:1 8819:1 8820:1 8824:1 8831:1 8842:3 8849:1 8866:2 8875:1 8887:1 8891:2 8896:1 8930:1 8932:1 8936:1 8945:1 8947:2 8958:2 8981:1 8986:1 8990:1 9065:1 9082:2 9093:1 9127:3 9147:1 9151:1 9167:4 9170:1 9194:1 9242:1 9247:2 9248:1 9272:1 9295:1 9296:1 9312:1 9314:1 9322:2 9335:2 9343:1 9344:1 9362:1 9364:1 9371:2 9400:1 9430:1 9432:1 9438:1 9445:1 9454:15 9476:1 9489:1 9491:3 9505:1 9529:2 9553:2 9570:1 9571:3 9574:1 9578:2 9680:1 9800:2 9802:3 9803:3 9822:1 9837:1 9915:1 9920:1 9930:2 9943:3 9976:1 9989:1 10022:1 10051:1 10077:1 10085:1 10126:2 10132:1 10136:2 10139:1 10140:5 10141:1 10143:1 10151:1 10162:1 10171:1 10172:1 10174:2 10206:3 10253:1 10262:1 10287:1 10297:1 10305:1 10310:2 10317:1 10318:1 10325:1 10335:1 10338:3 10339:2 10340:1 10341:1 10342:1 10392:1 10409:1 10414:1 10424:1 10444:8 10454:1 10493:1 10512:16 10559:1 10572:1 10640:3 10658:1 10667:1 10681:1 10687:1 10718:1 10727:2 10753:1 10757:2 10775:1 10818:1 10857:1 10859:1 10868:1 10873:1 10889:1 10894:1 10970:2 10971:1 10977:1 10980:1 10984:11 11003:1 11033:1 11059:1 11065:2 11072:1 11075:1 11100:1 11109:1 11119:4 11125:1 11126:1 11141:6 11148:1 11161:1 11174:2 11175:1 11182:3 11183:1 11192:1 11199:1 11201:1 11225:2 11239:1 11298:1 11300:1 11302:1 11321:3 11331:1 11339:2 11345:1 11364:1 11382:1 11384:1 11401:1 11453:1 11461:1 11481:2 11521:1 11528:1 11539:1 11552:1 11565:1 11566:1 11567:2 11583:3 11592:1 11625:1 11626:1 11635:1 11644:1 11653:1 11655:1 11680:1 11706:1 11729:1 11765:1 11766:1 11806:1 11809:1 11818:1 11830:1 11882:1 11898:1 11900:1 11917:1 11950:1 11964:1 11973:1 12045:1 12046:1 12061:1 12063:3 12070:1 12071:15 12077:1 12091:2 12092:2 12093:1 12134:1 12143:2 12165:3 12167:1 12198:2 12212:1 12231:1 12261:1 12265:1 12282:2 12303:1 12304:1 12312:2 12381:1 12383:1 12391:3 12397:1 12399:1 12421:1 12443:1 12478:3 12498:1 12521:8 12522:1 12523:2 12528:1 12547:1 12552:1 12554:3 12560:1 12564:2 12587:1 12594:3 12602:11 12608:1 12613:2 12615:1 12619:2 12629:1 12643:22 12676:5 12680:5 12682:1 12692:1 12741:2 12765:1 12769:1 12811:2 12828:2 12851:1 12861:1 12954:3 12961:1 12980:1 12997:2 13002:1 13038:1 13065:1 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:3 13152:1 13153:1 13175:1 13181:1 13199:3 13201:2 13227:1 13232:1 13259:1 13293:1 13301:2 13309:1 13319:1 13344:2 13359:14 13361:1 13378:1 13406:2 13441:1 13446:1 13460:2 13475:8 13490:1 13502:1 13567:1 13571:8 13589:1 13644:1 13665:2 13670:1 13703:2 13717:1 13724:1 13737:2 13750:1 13755:1 13777:1 13790:1 13797:1 13799:2 13817:1 13821:1 13831:2 13843:1 13887:1 13907:1 13908:2 13910:1 13918:1 13930:1 13964:1 13967:1 13977:2 13982:2 14000:1 14013:1 14023:3 14035:1 14072:1 14084:1 14113:1 14123:1 14130:5 14137:1 14142:3 14145:1 14160:2 14163:1 14168:1 14171:2 14183:1 14200:1 14261:3 14266:1 14283:1 14308:1 14344:2 14427:1 14435:1 14439:1 14472:1 14475:1 14488:1 14494:2 14495:1 14516:2 14532:4 14586:5 14610:1 14634:1 14639:1 14650:1 14667:1 14671:2 14681:1 14687:2 14708:1 14711:1 14728:1 14735:1 14750:1 14781:1 14808:1 14814:2 14819:2 14822:1 14842:1 14846:1 14852:1 14867:1 14883:1 14889:8 14898:1 14899:1 14940:2 14984:2 14992:1 15062:1 15078:1 15085:1 15127:3 15134:1 15138:1 15157:1 15164:2 15167:2 15180:1 15185:1 15187:1 15196:2 15201:1 15205:2 15214:1 15234:1 15260:1 15306:1 15312:1 15330:1 15372:1 15404:3 15413:1 15414:1 15430:2 15433:1 15446:1 15447:1 15449:1 15488:1 15494:1 15501:1 15506:1 15527:1 15537:1 15544:2 15557:1 15562:2 15621:2 15637:3 15679:2 15690:1 15693:1 15698:1 15732:1 15734:1 15735:8 15743:1 15746:8 15762:1 15785:1 15849:3 15876:1 15877:1 15904:3 15910:1 15918:1 15929:1 15933:3 15939:1 15955:1 15963:1 15967:1 15976:1 15981:2 15990:1 15997:1 16018:1 16029:1 16032:1 16052:2 16055:1 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:3 16194:1 16202:1 16203:1 16207:8 16208:1 16223:1 16235:1 16268:1 16276:1 16304:2 16356:1 16360:1 16389:1 16401:2 16413:1 16414:2 16416:1 16438:2 16460:1 16467:1 16513:1 16540:1 16556:1 16643:2 16668:1 16677:1 16694:2 16712:1 16724:1 16734:1 16742:1 16770:1 16779:7 16783:4 16796:1 16797:1 16805:1 16827:1 16836:1 16845:2 16854:1 16877:1 16879:1 16884:4 16885:1 16902:6 16904:1 16926:2 16938:1 16948:8 16977:1 17006:1 17008:1 17009:11 17015:1 17034:2 17046:4 17050:2 17052:1 17055:1 17144:1 17149:1 17153:1 17156:1 17157:2 17159:3 17164:4 17165:1 17203:1 17207:1 17210:1 17213:2 17307:1 17308:1 17327:1 17330:2 17359:1 17383:1 17408:8 17410:1 17466:1 17467:1 17499:3 17500:3 17503:3 17600:1 17620:2 17633:1 17636:3 17638:1 17642:5 17664:6 17668:1 17675:1 17696:1 17730:1 17732:8 17733:4 17739:3 17761:1 17788:1 17792:1 17803:1 17859:1 17868:1 17890:1 17908:2 17913:1 17924:4 17948:1 17995:2 18029:1 18035:1 18044:1 18059:2 18063:1 18068:1 18145:1 18149:1 18193:2 18202:1 18248:1 18252:1 18280:1 18289:1 18290:1 18292:1 18296:1 18308:1 18323:1 18324:2 18330:1 18339:1 18430:1 18436:1 18493:2 18496:1 18540:1 18549:1 18554:2 18559:4 18570:3 18574:1 18581:2 18584:1 18609:1 18610:1 18653:2 18655:1 18657:1 18666:2 18685:2 18700:1 18742:1 18748:1 18755:1 18765:1 18796:1 18815:1 18844:1 18855:1 18906:3 18910:8 18926:2 19002:2 19006:1 19012:2 19021:1 19042:1 19110:1 19129:1 19174:8 19203:8 19207:1 19228:2 19230:1 19241:1 19270:2 19271:2 19291:1 19297:1 19302:1 19305:1 19306:1 19311:1 19318:1 19331:1 19351:1 19367:2 19373:1 19383:1 19404:1 19411:1 19522:4 19573:1 19606:1 19607:2 19612:1 19618:1 19631:2 19658:1 19667:8 19676:2 19693:1 19694:1 19739:2 19788:2 19814:1 19820:1 19838:1 19841:1 19843:4 19846:1 19852:1 19883:2 19902:15 19904:1 19909:1 19925:1 19959:1 19960:1 19965:1 19967:2 19972:1 20012:1 20048:1 20064:5 20077:2 20078:1 20091:1 20098:1 20117:1 20142:2 20151:1 20164:1 20191:1 20224:2 20231:1 20243:1 20267:7 20270:2 20272:1 20313:1 20317:1 20318:1 20331:6 20342:2 20344:1 20350:3 20356:1 20361:1 20362:1 20367:1 20369:1 20377:1 20418:3 20424:1 20435:4 20436:1 20440:1 20479:8 20492:2 20493:2 20496:1 20508:1 20511:1 20540:1 20555:2 20572:2 20590:1 20650:1 20660:1 20682:2 20683:1 20687:1 20698:3 20742:1 20763:4 20766:1 20775:1 20863:2 20873:1 20953:1 20960:1 20975:1 20980:2 20989:2 20997:1 21023:4 21043:2 21048:1 21069:1 21078:1 21113:2 21162:8 21174:2 21185:2 21194:1 21212:2 21226:1 21227:1 21240:2 21242:1 21252:1 21253:1 21254:1 21279:1 21281:1 21282:1 21299:1 21309:1 21324:1 21330:1 21338:4 21344:3 21353:1 21355:2 21368:1 21397:1 21408:1 21417:2 21429:1 21432:2 21435:1 21441:1 21474:2 21483:1 21503:2 21521:2 21548:3 21558:1 21565:2 21578:2 21599:2 21628:1 21634:1 21636:1 21647:3 21653:1 21654:1 21662:1 21696:1 21708:8 21715:1 21720:4 21726:1 21729:1 21756:2 21770:1 21771:3 21772:1 21779:1 21786:1 21787:1 21808:1 21814:2 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 21998:1 22000:1 22032:3 22080:2 22090:1 22110:1 22111:1 22115:1 22118:1 22126:1 22130:1 22135:1 22184:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:2 22246:3 22254:1 22275:1 22303:2 22326:1 22365:1 22388:2 22397:1 22421:1 22425:2 22432:2 22466:1 22469:1 22492:2 22495:1 22496:1 22521:1 22549:1 22623:1 22625:3 22629:1 22642:1 22651:1 22659:1 22694:1 22729:1 22732:1 22743:1 22745:4 22772:2 22831:3 22836:1 22844:2 22847:1 22861:1 22866:1 22891:1 22909:1 22915:1 22919:1 22933:1 22937:2 22941:1 22947:2 22989:1 22993:2 23012:3 23013:1 23029:1 23048:1 23066:1 23076:1 23087:1 23099:1 23113:1 23162:1 23166:2 23184:3 23223:1 23272:3 23274:1 23277:2 23293:2 23302:1 23363:1 23386:2 23394:1 23426:2 23427:1 23429:1 23436:1 23489:1 23490:1 23506:3 23532:1 23536:1 23600:1 23606:1 23636:1 23656:2 10 8:1 11:3 13:1 18:1 21:2 31:3 68:1 106:1 117:1 128:2 145:1 184:1 190:2 214:1 227:1 232:1 260:1 268:1 311:1 315:1 386:1 394:8 417:2 428:1 429:1 443:1 474:1 476:1 489:1 497:1 539:1 541:1 548:1 559:1 621:1 622:2 636:1 655:2 657:1 665:1 705:1 758:2 764:2 805:1 895:1 898:1 932:1 949:6 951:2 981:3 989:2 1072:4 1075:2 1093:1 1106:1 1159:1 1167:3 1188:4 1199:2 1233:1 1238:1 1246:5 1248:1 1283:1 1297:1 1298:1 1299:1 1349:1 1384:1 1410:1 1422:5 1427:2 1430:1 1436:2 1449:2 1464:1 1467:1 1491:1 1494:1 1497:7 1514:1 1515:1 1532:1 1533:1 1544:1 1569:2 1574:1 1588:2 1601:1 1607:2 1610:1 1622:5 1630:1 1637:1 1639:1 1642:7 1643:1 1659:2 1685:1 1687:2 1691:1 1738:2 1739:1 1742:1 1753:1 1767:1 1784:1 1789:1 1791:1 1802:1 1862:6 1864:1 1865:1 1887:4 1912:2 1927:1 1944:1 1945:1 1953:1 1969:2 2003:1 2011:1 2032:1 2037:1 2039:1 2040:1 2044:1 2050:1 2052:2 2056:1 2059:3 2068:1 2073:1 2074:2 2075:1 2083:1 2086:1 2101:1 2103:1 2106:1 2107:1 2116:1 2135:1 2169:1 2191:1 2200:1 2201:1 2204:1 2234:2 2289:1 2298:1 2300:1 2303:1 2315:1 2317:1 2326:1 2340:1 2345:4 2360:1 2391:1 2395:2 2397:1 2401:2 2402:1 2405:3 2407:1 2409:2 2418:1 2423:1 2431:1 2438:1 2459:1 2515:1 2521:2 2532:1 2538:3 2539:1 2546:1 2579:4 2605:1 2617:1 2629:1 2637:4 2652:1 2658:1 2687:1 2700:1 2744:1 2750:1 2756:4 2763:2 2783:1 2799:1 2818:1 2842:1 2852:3 2876:1 2878:1 2881:1 2887:1 2910:1 2929:1 2936:1 2957:4 2962:4 2974:1 2985:1 2990:2 2997:3 3008:1 3039:1 3067:1 3068:1 3078:1 3095:1 3101:1 3139:2 3147:1 3152:1 3157:2 3190:1 3195:1 3217:2 3276:1 3279:1 3296:1 3300:1 3318:1 3337:1 3368:3 3394:1 3446:1 3456:5 3470:4 3492:1 3517:1 3542:1 3550:3 3552:2 3593:1 3594:2 3597:2 3599:2 3606:1 3608:1 3613:1 3620:1 3627:2 3631:1 3632:2 3639:1 3642:1 3646:4 3651:3 3656:1 3686:1 3710:1 3732:1 3733:1 3757:1 3795:1 3803:1 3833:2 3844:12 3856:1 3857:2 3891:2 3901:1 3908:1 3921:1 3947:2 3948:2 3971:1 3987:1 3996:1 4000:1 4017:2 4029:1 4083:1 4090:1 4109:4 4110:1 4117:1 4147:1 4156:1 4169:1 4170:1 4206:1 4222:1 4231:1 4232:1 4256:1 4270:2 4286:4 4295:1 4298:1 4338:2 4357:1 4370:2 4377:2 4393:1 4397:4 4407:1 4425:1 4433:8 4444:1 4487:1 4502:1 4529:1 4537:1 4546:1 4553:1 4557:6 4562:1 4571:1 4603:1 4622:1 4642:1 4649:1 4659:1 4665:6 4669:2 4673:1 4678:1 4699:2 4700:1 4728:1 4730:6 4738:1 4739:1 4741:3 4747:2 4774:1 4778:1 4785:2 4803:5 4810:1 4813:1 4827:4 4835:1 4844:4 4867:1 4877:1 4897:1 4919:1 4941:8 4946:1 4948:1 4962:2 4979:1 5008:1 5011:1 5039:1 5058:1 5165:3 5168:1 5174:1 5184:2 5192:1 5218:2 5230:1 5267:1 5271:1 5272:1 5318:3 5334:2 5339:2 5375:1 5389:1 5411:1 5437:1 5439:1 5448:1 5454:1 5473:1 5480:4 5493:2 5496:1 5522:1 5535:1 5536:1 5572:1 5608:2 5633:1 5640:1 5653:2 5660:8 5668:1 5710:1 5711:1 5751:1 5776:2 5809:1 5833:2 5842:1 5846:1 5859:2 5874:1 5877:1 5880:1 5889:1 5910:1 5916:4 5932:1 5935:1 5941:1 5958:1 5980:1 5990:1 5999:2 6053:1 6067:1 6068:3 6086:1 6124:3 6133:1 6134:3 6135:5 6174:1 6179:2 6187:1 6199:1 6211:2 6235:1 6282:3 6283:1 6290:2 6295:1 6301:2 6313:1 6319:1 6330:1 6362:1 6405:1440 6440:1 6457:1 6465:1 6472:1 6502:1 6510:2 6554:1 6591:1 6620:1 6627:1 6637:1 6666:1 6668:1 6677:1 6741:2 6749:3 6761:2 6763:1 6767:1 6779:1 6794:1 6808:1 6817:1 6841:1 6864:1 6867:1 6870:1 6896:1 6949:1 6972:4 6975:1 6977:1 6989:1 6991:1 6993:1 6994:16 7014:1 7022:1 7024:1 7025:1 7079:1 7094:1 7102:1 7151:1 7173:1 7174:1 7196:1 7197:2 7204:1 7207:1 7256:1 7337:3 7377:1 7378:1 7388:5 7390:1 7391:1 7428:1 7430:1 7431:4 7436:1 7453:3 7467:1 7498:3 7506:1 7522:2 7558:2 7559:2 7607:1 7623:2 7633:1 7659:2 7671:2 7682:1 7702:1 7712:2 7715:1 7745:2 7746:1 7772:1 7793:2 7824:7 7830:1 7842:2 7844:3 7853:6 7863:2 7865:1 7876:1 7886:2 7892:1 7893:1 7897:1 7912:5 7927:1 7938:3 7950:2 7989:1 7993:1 8011:1 8020:2 8049:2 8052:1 8054:1 8056:2 8064:4 8066:1 8080:1 8095:1 8099:2 8110:2 8111:1 8135:1 8154:1 8156:1 8173:1 8211:2 8225:1 8256:1 8290:1 8291:2 8295:1 8316:1 8324:1 8347:1 8360:1 8373:1 8439:1 8446:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:4 8534:1 8546:1 8578:1 8647:1 8651:2 8662:1 8679:1 8683:1 8689:1 8690:2 8699:1 8702:1 8720:4 8741:1 8760:1 8772:2 8780:1 8793:1 8799:1 8819:1 8820:1 8824:1 8831:1 8842:3 8849:1 8866:2 8875:1 8887:1 8891:2 8896:1 8930:1 8932:1 8936:1 8945:1 8947:2 8958:2 8981:1 8986:1 8990:1 9065:1 9082:2 9093:1 9127:3 9147:1 9151:1 9167:4 9170:1 9194:1 9242:1 9247:2 9248:1 9272:1 9295:1 9296:1 9312:1 9314:1 9322:2 9335:2 9343:1 9344:1 9362:1 9364:1 9371:2 9400:1 9430:1 9432:1 9438:1 9445:1 9454:16 9476:1 9489:1 9491:3 9505:1 9529:2 9553:2 9570:1 9571:3 9574:1 9578:2 9680:1 9800:2 9802:3 9803:3 9822:1 9837:1 9915:1 9920:1 9930:2 9943:3 9976:1 9989:1 10022:1 10051:1 10077:2 10085:1 10126:2 10132:1 10136:2 10139:1 10140:5 10141:1 10143:1 10151:1 10162:1 10171:1 10172:1 10174:2 10206:3 10253:1 10262:1 10287:1 10297:1 10305:1 10310:2 10317:1 10318:1 10325:1 10335:1 10338:3 10339:2 10340:1 10341:1 10342:1 10392:1 10409:1 10414:1 10424:1 10444:8 10454:1 10493:1 10512:17 10559:1 10572:1 10640:3 10658:1 10667:1 10681:1 10687:1 10718:1 10727:2 10753:1 10757:2 10775:1 10818:1 10857:1 10859:1 10868:1 10873:1 10889:1 10894:1 10970:2 10971:1 10977:1 10980:1 10984:12 11003:2 11033:1 11059:1 11065:2 11072:1 11075:1 11100:1 11109:1 11119:4 11125:1 11126:1 11141:6 11148:1 11161:1 11174:2 11175:1 11182:3 11183:1 11192:1 11199:1 11201:1 11225:2 11239:1 11298:1 11300:1 11302:1 11321:3 11331:1 11339:2 11345:1 11364:1 11382:1 11384:1 11401:1 11453:1 11461:1 11481:2 11521:1 11528:1 11539:1 11552:1 11565:1 11566:1 11567:2 11583:3 11592:1 11625:1 11626:1 11635:1 11644:1 11653:1 11655:1 11680:1 11706:1 11729:1 11765:1 11766:1 11806:1 11809:1 11818:1 11830:1 11882:1 11898:1 11900:1 11917:1 11950:1 11964:1 11973:1 12045:1 12046:1 12061:1 12063:3 12070:1 12071:16 12077:1 12091:2 12092:2 12093:1 12134:1 12143:2 12165:3 12167:1 12198:2 12212:1 12231:1 12261:1 12265:1 12282:2 12303:1 12304:1 12312:2 12381:1 12383:1 12391:3 12397:1 12399:1 12421:1 12443:1 12478:3 12498:1 12521:8 12522:1 12523:2 12528:1 12547:1 12552:1 12554:3 12560:1 12564:2 12587:1 12594:3 12602:12 12608:1 12613:2 12615:1 12619:2 12629:1 12643:22 12676:5 12680:5 12682:1 12692:1 12741:2 12765:1 12769:1 12811:2 12828:2 12851:1 12861:1 12954:3 12961:1 12980:1 12997:2 13002:1 13038:1 13065:1 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:3 13152:1 13153:1 13175:1 13181:1 13199:3 13201:2 13227:1 13232:1 13259:1 13293:1 13301:2 13309:1 13319:1 13344:2 13359:14 13361:1 13378:1 13406:2 13441:1 13446:1 13460:2 13475:8 13490:1 13502:1 13567:1 13571:8 13589:1 13644:1 13665:2 13670:1 13703:2 13717:1 13724:1 13737:2 13750:1 13755:1 13777:1 13790:1 13797:1 13799:2 13817:1 13821:1 13831:2 13843:1 13887:1 13907:1 13908:2 13910:1 13918:1 13930:1 13964:2 13967:1 13977:2 13982:2 14000:1 14013:1 14023:3 14035:1 14072:1 14084:1 14113:1 14123:1 14130:5 14137:1 14142:3 14145:1 14160:2 14163:1 14168:1 14171:2 14183:1 14200:1 14261:3 14266:1 14283:1 14308:1 14344:2 14427:1 14435:1 14439:1 14472:1 14475:1 14488:1 14494:2 14495:1 14516:2 14532:4 14575:1 14586:5 14610:1 14634:1 14639:1 14650:1 14667:1 14671:2 14681:1 14687:2 14708:1 14711:1 14728:1 14735:1 14750:1 14781:1 14808:1 14814:2 14819:2 14822:1 14842:1 14846:1 14852:1 14867:1 14883:1 14889:8 14898:1 14899:1 14940:2 14984:2 14992:1 15062:1 15078:1 15085:1 15127:3 15134:1 15138:1 15157:1 15164:2 15167:2 15180:1 15185:1 15187:1 15196:2 15201:1 15205:2 15214:1 15234:1 15260:1 15306:1 15312:1 15330:1 15372:1 15404:3 15413:1 15414:1 15430:2 15433:1 15446:1 15447:1 15449:1 15488:1 15494:1 15501:1 15506:1 15527:1 15537:1 15544:2 15557:1 15562:2 15621:2 15637:3 15679:2 15690:1 15693:1 15698:1 15732:1 15734:1 15735:8 15743:1 15746:8 15762:1 15785:1 15849:3 15876:1 15877:1 15904:3 15910:1 15918:1 15929:1 15933:3 15939:1 15955:1 15963:1 15967:1 15976:1 15981:2 15990:1 15997:1 16018:1 16029:1 16032:1 16052:2 16055:1 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:3 16194:1 16202:1 16203:1 16207:8 16208:1 16223:1 16235:1 16268:1 16276:1 16304:2 16356:1 16360:1 16389:1 16401:2 16413:1 16414:2 16416:1 16438:2 16460:1 16467:1 16513:1 16540:1 16556:1 16643:2 16668:1 16677:1 16694:2 16712:1 16724:1 16734:1 16742:1 16770:1 16779:7 16783:4 16796:1 16797:1 16805:1 16827:1 16836:1 16845:2 16854:1 16877:1 16879:2 16884:4 16885:1 16902:6 16904:1 16926:2 16938:1 16948:8 16977:1 17006:1 17008:1 17009:12 17015:1 17034:2 17046:4 17050:2 17052:1 17055:1 17144:1 17149:1 17153:1 17156:1 17157:2 17159:3 17164:4 17165:1 17203:1 17207:1 17210:1 17213:2 17307:1 17308:1 17327:1 17330:2 17359:1 17383:1 17408:8 17410:1 17466:1 17467:1 17499:3 17500:3 17503:3 17600:1 17620:2 17633:1 17636:3 17638:1 17642:5 17664:6 17668:1 17675:1 17696:1 17730:1 17732:8 17733:4 17739:3 17761:1 17788:1 17792:1 17803:1 17859:1 17868:1 17890:1 17908:2 17913:1 17924:4 17948:1 17995:2 18029:1 18035:1 18044:1 18059:2 18063:1 18068:1 18145:1 18149:1 18193:2 18202:1 18210:1 18246:1 18248:1 18252:1 18280:1 18289:1 18290:1 18292:1 18296:1 18308:1 18323:1 18324:2 18330:1 18339:1 18430:1 18436:1 18493:2 18496:1 18540:1 18549:1 18554:2 18559:4 18570:3 18574:1 18581:2 18584:1 18592:1 18609:1 18610:1 18653:2 18655:1 18657:1 18666:2 18685:2 18700:1 18742:1 18748:1 18755:1 18765:1 18796:1 18815:1 18844:1 18855:1 18906:3 18910:8 18926:2 19002:2 19006:1 19012:2 19021:1 19042:1 19110:1 19129:1 19174:8 19203:8 19207:1 19228:2 19230:1 19241:1 19270:2 19271:2 19291:1 19297:1 19302:1 19305:1 19306:1 19311:1 19318:1 19331:2 19351:1 19367:2 19373:1 19383:1 19404:1 19411:1 19522:4 19573:1 19606:1 19607:2 19612:1 19618:1 19631:2 19658:1 19667:8 19676:2 19693:1 19694:1 19739:2 19788:2 19814:1 19820:1 19838:1 19841:1 19843:4 19846:1 19852:1 19883:2 19902:16 19904:1 19909:1 19925:1 19959:1 19960:1 19965:1 19967:2 19972:1 20012:1 20048:1 20064:5 20077:2 20078:1 20091:1 20098:1 20117:1 20142:2 20151:1 20164:1 20191:1 20224:2 20231:1 20243:1 20267:7 20270:2 20272:1 20313:1 20317:1 20318:1 20331:6 20342:2 20344:1 20350:3 20356:1 20361:1 20362:1 20367:1 20369:1 20377:1 20418:3 20424:1 20435:4 20436:1 20440:1 20479:8 20492:2 20493:2 20496:1 20508:1 20511:1 20540:1 20555:2 20572:2 20590:1 20650:1 20660:1 20682:2 20683:1 20687:1 20698:3 20742:1 20763:4 20766:1 20775:1 20863:2 20873:1 20944:1 20953:1 20960:1 20975:1 20980:2 20989:2 20997:1 21023:4 21043:2 21048:1 21069:1 21078:1 21113:2 21162:8 21174:2 21185:2 21194:1 21212:2 21226:1 21227:1 21240:2 21242:1 21252:1 21253:1 21254:1 21279:1 21281:1 21282:1 21299:1 21309:1 21324:1 21330:1 21338:5 21344:3 21353:1 21355:2 21368:1 21397:1 21408:1 21417:2 21429:1 21432:2 21435:1 21441:1 21474:2 21483:1 21503:2 21521:2 21548:3 21558:1 21565:2 21578:2 21599:2 21628:1 21634:1 21636:1 21647:3 21653:1 21654:1 21662:1 21696:1 21708:8 21715:1 21720:4 21726:1 21729:1 21756:2 21770:1 21771:3 21772:1 21779:1 21786:1 21787:1 21808:1 21814:2 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 21998:1 22000:1 22032:3 22045:1 22080:2 22090:1 22110:1 22111:1 22115:1 22118:1 22126:1 22130:1 22135:1 22184:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:2 22246:3 22254:1 22275:1 22303:2 22326:1 22365:1 22388:2 22397:1 22421:1 22425:2 22432:2 22466:1 22469:1 22492:2 22495:1 22496:1 22521:1 22549:1 22623:1 22625:3 22629:1 22642:1 22651:1 22659:1 22694:1 22729:1 22732:1 22743:1 22745:4 22772:2 22831:3 22836:1 22844:2 22847:1 22861:1 22866:1 22891:1 22909:1 22915:1 22919:1 22933:1 22937:2 22941:1 22947:2 22989:1 22993:2 23012:3 23013:1 23029:1 23048:1 23066:1 23076:1 23087:1 23099:1 23113:1 23162:1 23166:2 23184:3 23223:1 23272:3 23274:1 23277:2 23293:2 23302:1 23363:1 23386:2 23394:1 23426:2 23427:1 23429:1 23436:1 23489:1 23490:1 23506:3 23532:1 23536:1 23600:1 23606:1 23636:1 23656:2 10 8:1 11:3 13:1 18:1 21:2 31:3 68:1 106:1 117:1 128:2 145:1 184:1 190:2 214:1 227:1 232:1 260:1 268:1 311:1 315:1 386:1 394:9 417:2 428:1 429:1 443:1 474:1 476:1 489:1 497:1 539:1 541:1 548:1 559:1 621:1 622:2 636:1 655:2 657:1 665:1 676:1 705:1 758:2 764:2 805:1 895:1 898:1 932:1 949:6 951:2 981:3 989:2 1072:4 1075:2 1093:1 1106:1 1159:1 1167:3 1188:4 1199:2 1233:1 1238:1 1246:5 1248:1 1283:1 1297:1 1298:1 1299:1 1349:1 1352:1 1384:1 1410:1 1422:5 1427:2 1430:1 1436:2 1449:2 1464:1 1467:1 1491:1 1494:1 1497:7 1514:1 1515:1 1532:1 1533:1 1544:1 1569:2 1574:1 1588:2 1601:1 1607:2 1610:1 1622:5 1630:1 1637:1 1639:1 1642:8 1643:1 1659:2 1685:1 1687:2 1691:1 1738:2 1739:1 1742:1 1753:1 1767:1 1784:1 1789:1 1791:1 1802:1 1862:6 1864:1 1865:1 1887:5 1912:2 1927:1 1944:1 1945:1 1953:1 1969:2 2003:1 2011:1 2032:1 2037:1 2039:1 2040:1 2044:1 2050:1 2052:2 2056:1 2059:3 2068:1 2073:1 2074:2 2075:1 2083:1 2086:1 2101:1 2103:1 2106:1 2107:1 2111:1 2116:2 2135:1 2169:1 2191:1 2200:1 2201:1 2204:1 2234:2 2289:1 2298:1 2300:1 2303:1 2315:1 2317:1 2326:1 2340:1 2345:4 2360:1 2386:1 2391:1 2395:2 2397:1 2401:2 2402:1 2405:5 2407:1 2409:2 2418:1 2423:1 2431:1 2438:1 2459:1 2515:1 2521:2 2532:1 2538:3 2539:1 2546:1 2579:5 2605:1 2617:1 2629:1 2637:4 2652:1 2658:1 2687:1 2700:1 2744:1 2750:1 2756:4 2763:2 2783:1 2799:1 2818:1 2842:1 2852:3 2876:1 2878:1 2881:1 2887:1 2910:1 2929:1 2936:1 2957:4 2962:4 2974:1 2985:1 2990:2 2997:3 3008:1 3039:1 3067:1 3068:1 3078:1 3095:1 3101:1 3139:2 3147:1 3152:1 3157:2 3164:1 3190:1 3195:1 3217:2 3276:1 3279:1 3296:1 3300:1 3318:1 3337:1 3368:3 3394:1 3446:1 3456:6 3470:4 3492:1 3517:1 3542:1 3550:3 3552:2 3593:1 3594:2 3597:2 3599:2 3606:1 3608:1 3612:1 3613:1 3620:1 3626:1 3627:2 3631:1 3632:2 3639:1 3642:1 3646:4 3651:4 3656:1 3686:1 3710:1 3732:1 3733:1 3757:1 3782:1 3795:1 3803:1 3833:3 3844:13 3856:1 3857:2 3891:2 3901:1 3908:1 3921:1 3947:2 3948:2 3971:1 3987:1 3996:1 4000:1 4017:2 4029:1 4083:1 4090:1 4109:5 4110:1 4117:1 4147:1 4156:1 4169:1 4170:1 4206:1 4222:1 4231:1 4232:1 4256:1 4270:2 4286:5 4295:1 4298:1 4329:1 4338:2 4357:1 4370:3 4377:2 4393:1 4397:4 4407:1 4425:1 4433:9 4444:1 4487:1 4502:1 4529:1 4537:1 4546:1 4553:1 4557:6 4562:1 4571:1 4603:1 4622:1 4642:1 4649:1 4659:1 4665:6 4669:2 4673:1 4678:1 4699:2 4700:1 4728:1 4730:6 4738:1 4739:1 4741:3 4747:2 4774:1 4778:1 4785:2 4803:5 4810:1 4813:1 4827:4 4835:1 4844:4 4867:1 4877:1 4897:1 4914:1 4919:1 4941:9 4946:1 4948:1 4962:2 4973:1 4979:1 5008:1 5011:1 5039:1 5058:1 5165:3 5168:1 5172:1 5174:1 5184:2 5192:1 5218:2 5230:1 5267:1 5271:1 5272:1 5318:3 5334:2 5339:2 5375:1 5389:1 5411:1 5437:1 5439:1 5448:1 5454:1 5473:1 5480:4 5493:2 5496:1 5522:1 5535:1 5536:1 5572:1 5608:2 5633:1 5640:1 5653:2 5660:9 5668:1 5710:1 5711:1 5751:1 5776:2 5809:1 5833:2 5842:1 5846:1 5859:2 5874:1 5877:1 5880:1 5889:1 5910:1 5916:4 5932:1 5935:1 5941:1 5958:1 5980:1 5990:1 5999:2 6053:1 6067:1 6068:3 6086:1 6124:3 6133:1 6134:3 6135:5 6174:1 6179:2 6187:1 6199:1 6211:2 6235:1 6282:3 6283:1 6290:2 6295:1 6301:2 6313:1 6319:1 6330:1 6362:1 6405:1484 6440:1 6457:1 6465:1 6472:1 6502:1 6510:2 6554:1 6591:1 6620:1 6627:1 6637:1 6666:1 6668:1 6677:1 6741:2 6749:4 6761:2 6763:1 6767:1 6779:1 6794:1 6808:1 6817:1 6841:1 6864:1 6867:1 6870:1 6886:1 6896:1 6949:1 6972:4 6975:1 6977:1 6989:1 6991:1 6993:1 6994:17 7014:1 7022:1 7024:1 7025:1 7079:1 7094:1 7102:1 7150:1 7151:1 7173:1 7174:1 7196:1 7197:2 7204:1 7207:1 7256:1 7337:3 7377:1 7378:1 7388:5 7390:1 7391:1 7428:1 7430:1 7431:4 7436:1 7453:3 7467:1 7498:3 7506:1 7522:2 7558:2 7559:2 7607:1 7623:2 7633:1 7659:2 7671:2 7682:1 7702:1 7712:2 7715:1 7745:2 7746:1 7772:1 7793:2 7824:7 7830:1 7842:2 7844:3 7853:6 7863:2 7865:1 7876:1 7886:4 7892:1 7893:1 7897:1 7912:5 7927:1 7938:3 7950:2 7989:1 7993:1 8011:1 8020:2 8049:2 8052:1 8054:1 8056:2 8064:4 8066:1 8080:1 8095:1 8099:2 8110:2 8111:1 8135:1 8154:1 8156:1 8173:1 8211:2 8225:1 8256:1 8290:1 8291:2 8295:1 8316:1 8324:1 8347:1 8360:1 8373:1 8439:1 8446:1 8490:1 8493:1 8496:1 8506:1 8517:1 8521:4 8534:1 8546:1 8578:1 8647:1 8651:2 8662:1 8679:1 8683:1 8689:1 8690:2 8699:1 8702:1 8720:4 8741:1 8760:1 8772:2 8780:1 8793:1 8799:1 8819:2 8820:1 8824:1 8831:1 8842:3 8849:1 8866:2 8875:1 8887:1 8891:2 8896:1 8930:1 8932:1 8936:1 8945:1 8947:2 8958:2 8981:1 8986:1 8990:1 9044:1 9065:1 9082:2 9093:1 9127:3 9147:1 9151:1 9167:4 9170:1 9194:1 9242:1 9247:2 9248:1 9272:1 9295:1 9296:1 9312:1 9314:1 9322:2 9335:2 9343:1 9344:1 9362:1 9364:1 9371:2 9400:1 9430:1 9432:1 9438:1 9445:1 9454:17 9476:1 9489:1 9491:3 9505:1 9529:2 9553:2 9570:1 9571:3 9574:1 9578:2 9680:1 9705:1 9800:2 9802:3 9803:3 9822:1 9837:1 9915:1 9920:1 9930:2 9943:3 9976:1 9989:1 10022:1 10051:1 10077:2 10085:1 10126:2 10132:1 10136:2 10139:1 10140:5 10141:1 10143:1 10151:1 10162:1 10171:2 10172:1 10174:2 10178:1 10206:3 10253:1 10262:1 10287:1 10297:1 10305:1 10310:2 10312:1 10317:1 10318:1 10319:1 10325:1 10335:1 10338:4 10339:2 10340:1 10341:1 10342:1 10392:1 10409:1 10414:1 10424:1 10444:8 10454:1 10493:1 10512:18 10559:1 10572:1 10640:3 10658:1 10667:1 10681:1 10687:1 10718:1 10727:2 10753:1 10757:2 10775:1 10808:1 10818:1 10857:1 10859:1 10868:1 10873:1 10889:1 10894:1 10970:2 10971:1 10977:1 10980:1 10984:13 11003:2 11033:1 11059:1 11065:2 11072:1 11075:1 11100:1 11109:1 11119:4 11125:1 11126:1 11141:6 11148:1 11161:1 11174:2 11175:1 11182:3 11183:1 11192:1 11199:1 11201:1 11225:2 11239:1 11298:1 11300:2 11302:1 11321:3 11331:1 11332:1 11339:2 11345:1 11364:1 11382:1 11384:1 11401:1 11453:1 11461:1 11481:2 11521:1 11528:1 11539:1 11552:1 11565:1 11566:1 11567:2 11583:3 11592:1 11625:1 11626:1 11635:1 11644:1 11653:2 11655:1 11680:1 11706:1 11729:1 11765:1 11766:1 11806:1 11809:1 11818:1 11830:1 11882:1 11898:1 11900:1 11917:1 11950:1 11964:1 11973:1 12045:1 12046:1 12061:1 12063:3 12070:1 12071:17 12077:1 12091:2 12092:2 12093:1 12134:1 12143:2 12165:4 12167:1 12198:2 12212:1 12231:1 12261:1 12265:1 12282:2 12303:1 12304:1 12312:2 12381:1 12383:1 12391:3 12397:1 12399:1 12421:1 12443:1 12478:3 12498:1 12521:8 12522:1 12523:2 12528:1 12547:1 12552:1 12554:4 12560:1 12564:2 12587:1 12594:3 12602:13 12608:1 12613:2 12615:1 12619:2 12629:1 12643:24 12676:5 12680:5 12682:1 12692:1 12741:2 12765:1 12769:1 12811:2 12828:2 12851:1 12861:1 12954:3 12961:1 12980:1 12997:2 13002:1 13038:1 13065:2 13068:1 13073:1 13074:1 13078:2 13084:1 13085:4 13128:3 13152:2 13153:1 13175:1 13181:1 13199:3 13201:2 13227:1 13232:1 13259:1 13293:1 13301:2 13309:1 13319:1 13344:2 13359:14 13361:1 13378:1 13406:2 13441:1 13446:1 13460:2 13475:8 13490:1 13502:1 13567:1 13571:9 13589:1 13644:1 13665:2 13670:1 13703:2 13717:1 13724:1 13737:2 13750:1 13755:1 13777:1 13778:1 13790:1 13797:1 13799:2 13817:1 13821:1 13831:2 13843:1 13887:1 13907:1 13908:2 13910:1 13915:1 13918:1 13930:1 13964:2 13967:1 13977:2 13982:2 14000:1 14013:1 14023:3 14035:1 14072:1 14084:1 14113:1 14123:1 14130:5 14137:1 14142:3 14145:1 14160:2 14163:1 14168:1 14171:2 14183:1 14200:1 14261:3 14266:1 14283:1 14308:1 14344:2 14427:1 14435:1 14439:1 14472:1 14475:1 14488:1 14494:2 14495:1 14516:2 14532:4 14575:1 14586:6 14610:1 14634:1 14639:1 14650:1 14667:1 14671:2 14678:1 14681:1 14687:2 14708:1 14711:1 14728:1 14735:1 14750:1 14781:1 14808:1 14814:2 14819:2 14822:1 14842:1 14846:1 14852:1 14867:1 14883:1 14889:9 14898:1 14899:1 14940:2 14984:2 14992:1 15062:1 15078:1 15085:1 15127:3 15134:1 15138:1 15157:1 15164:2 15167:2 15180:1 15185:1 15187:1 15196:2 15201:1 15205:2 15214:1 15234:1 15260:1 15306:1 15312:1 15330:1 15372:1 15404:3 15413:1 15414:1 15430:2 15433:1 15446:1 15447:1 15449:1 15488:1 15494:1 15501:1 15506:1 15527:1 15537:1 15544:2 15557:1 15562:2 15621:2 15637:3 15679:2 15690:1 15693:1 15698:1 15732:1 15734:1 15735:8 15743:1 15746:8 15762:1 15785:1 15849:3 15876:1 15877:1 15904:3 15910:1 15918:1 15929:1 15933:3 15939:1 15955:1 15963:1 15964:1 15967:1 15976:1 15981:2 15990:1 15997:1 16018:1 16029:1 16032:1 16052:2 16055:1 16088:1 16093:1 16096:1 16144:1 16155:1 16173:1 16184:3 16194:1 16202:1 16203:1 16207:8 16208:1 16223:1 16235:1 16268:1 16276:1 16304:2 16356:1 16360:1 16389:1 16401:2 16412:1 16413:1 16414:2 16416:1 16438:2 16460:1 16467:1 16513:1 16540:1 16556:1 16643:2 16668:1 16677:1 16694:2 16712:1 16724:1 16734:1 16742:1 16770:1 16779:7 16783:4 16796:1 16797:1 16805:1 16826:2 16827:1 16836:1 16845:2 16854:1 16877:1 16879:2 16884:4 16885:1 16902:6 16904:1 16926:2 16938:1 16948:8 16977:1 17006:1 17008:1 17009:13 17015:1 17034:2 17046:4 17050:2 17052:1 17055:1 17144:1 17149:1 17153:1 17156:1 17157:2 17159:3 17164:5 17165:1 17203:1 17207:1 17210:1 17213:2 17307:1 17308:1 17327:1 17330:2 17359:1 17383:1 17408:8 17410:1 17466:1 17467:1 17499:3 17500:3 17503:3 17600:1 17620:2 17629:1 17633:1 17636:3 17638:1 17642:5 17664:6 17668:1 17675:1 17696:1 17730:1 17732:8 17733:4 17739:3 17761:1 17788:1 17792:1 17803:1 17859:1 17868:1 17890:1 17908:2 17913:1 17924:4 17948:1 17995:2 18029:1 18035:1 18044:1 18059:2 18063:1 18068:1 18145:1 18149:1 18193:2 18202:1 18210:1 18246:1 18248:1 18252:1 18280:1 18289:1 18290:1 18292:1 18296:1 18308:1 18323:1 18324:2 18330:1 18339:1 18430:1 18436:1 18493:2 18496:1 18540:1 18549:1 18554:2 18559:4 18570:3 18574:1 18581:2 18584:1 18592:1 18609:1 18610:1 18653:2 18655:1 18657:1 18666:2 18685:2 18700:1 18742:2 18748:1 18755:1 18765:1 18796:1 18815:1 18844:1 18855:1 18906:3 18910:9 18926:2 19002:2 19006:2 19012:2 19021:1 19042:1 19110:1 19111:1 19129:1 19174:8 19203:8 19207:1 19228:2 19230:1 19241:1 19270:2 19271:2 19291:1 19293:1 19297:1 19302:1 19305:1 19306:1 19311:1 19318:1 19331:2 19351:1 19367:2 19373:1 19383:1 19404:1 19411:1 19522:4 19573:1 19606:1 19607:2 19612:1 19618:1 19622:1 19631:2 19658:1 19667:9 19676:2 19693:1 19694:1 19739:2 19788:2 19814:1 19820:1 19838:1 19841:1 19843:4 19846:1 19852:1 19883:2 19902:17 19904:1 19909:1 19925:1 19959:1 19960:1 19965:1 19967:2 19972:1 20012:1 20048:1 20064:5 20077:2 20078:1 20091:1 20098:1 20117:1 20142:2 20151:1 20164:1 20191:1 20224:2 20231:1 20243:1 20267:7 20270:2 20272:1 20313:1 20317:1 20318:1 20331:6 20342:2 20344:1 20350:3 20355:1 20356:1 20361:1 20362:2 20367:1 20369:1 20374:1 20377:1 20418:3 20424:1 20435:4 20436:1 20440:1 20479:8 20492:2 20493:2 20496:1 20508:1 20511:1 20540:1 20555:2 20572:2 20590:1 20650:1 20660:1 20682:2 20683:1 20687:1 20698:3 20742:1 20763:4 20766:1 20775:1 20863:2 20873:1 20944:1 20953:1 20960:1 20975:1 20980:3 20989:2 20997:1 21023:4 21043:2 21048:1 21069:1 21078:1 21113:2 21162:9 21174:2 21185:2 21194:1 21203:1 21212:2 21226:1 21227:1 21240:2 21242:1 21252:1 21253:1 21254:1 21279:1 21281:1 21282:1 21299:1 21309:1 21324:1 21325:1 21330:1 21338:5 21344:3 21353:1 21355:2 21368:1 21379:1 21397:1 21408:1 21417:2 21429:1 21432:2 21435:1 21441:1 21474:2 21483:1 21503:2 21521:2 21548:3 21558:1 21565:2 21578:2 21599:2 21628:1 21634:1 21636:1 21647:3 21653:1 21654:1 21662:1 21696:1 21708:8 21715:1 21720:4 21726:1 21729:1 21756:2 21770:1 21771:3 21772:1 21779:1 21786:1 21787:1 21808:1 21814:2 21831:1 21835:1 21850:1 21851:1 21875:1 21887:1 21904:1 21910:1 21923:1 21964:1 21998:1 22000:1 22032:3 22045:1 22080:2 22090:1 22110:1 22111:1 22115:1 22118:1 22120:1 22126:1 22130:1 22135:1 22184:1 22185:1 22198:1 22212:1 22219:1 22231:1 22235:2 22246:3 22254:1 22275:1 22303:2 22326:2 22365:1 22388:2 22397:1 22421:1 22425:2 22432:2 22466:1 22469:1 22492:2 22495:1 22496:1 22521:1 22549:1 22623:1 22625:3 22629:1 22642:1 22651:1 22659:1 22694:1 22729:1 22732:1 22743:1 22745:4 22772:2 22831:3 22836:1 22844:2 22847:1 22861:1 22866:1 22891:1 22909:1 22915:1 22919:1 22933:1 22937:2 22941:1 22947:2 22989:1 22993:2 23012:3 23013:1 23029:1 23048:1 23066:1 23076:1 23087:1 23099:1 23113:1 23162:1 23166:2 23184:3 23223:1 23272:3 23274:1 23277:2 23293:2 23302:1 23363:1 23386:2 23394:1 23426:2 23427:1 23429:1 23436:1 23489:1 23490:1 23506:3 23507:1 23509:1 23519:1 23532:1 23536:1 23600:1 23606:1 23636:1 23656:2
5eef8d0d658189c0f7f8828712904ceba892c322
449d555969bfd7befe906877abab098c6e63a0e8
/291/CH9/EX9.9a/eg9_9a.sce
b5817129ac75b7fc65ea6df257a242610394d688
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
581
sce
eg9_9a.sce
x = 1:1:10; y= [20.6 30.8 55 71.4 97.3 131.8 156.3 197.3 238.7 291.7]; plot2d(x, y, -1); xlabel('X'); ylabel('Y'); n = length(x) xsquared = x.^2; xcube = x.^3; xfour = x.^4; xy = x.*y; x2y = xy.*x; p= zeros(3,3); q = zeros(3,1); p(1,1) = n; p(1,2) = sum(x); p(1,3)=sum(xsquared); p(2,1) = sum(x); p(2,2) = sum(xsquared); p(2,3)=sum(xcube); p(3,1) = sum(xsquared); p(3,2) = sum(xcube); p(3,3)=sum(xfour); q(1,1)= -1*sum(y); q(2,1) = -1*sum(xy); q(3,1) = -1*sum(x2y); B= linsolve(p, q); disp(B(1,1), "B0 is"); disp(B(2,1), "B1 is"); disp(B(3,1), "B2 is");
3e00ee8c78ebd611ae4a593e46c9c68ff839c349
449d555969bfd7befe906877abab098c6e63a0e8
/1100/CH15/EX15.3/15_3.sce
85bc1eb6768b24053503505531944e582d6e7591
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
470
sce
15_3.sce
clc //initialisation of variables h1= 124.27 //Btu/lb Pr1= 1.2147 //psia r= 6 p4= 15 //psia p1= 15 //psia h2s= 197.5 //Btu/lb Wnet= 48.9 //Btu/lb air hs= 18500 //Btu/lb wfbywa= 0.0146 //lb fuel/lb sir W= 2545 //Btu/lb air dh=-91.5 //Btu/lb Wc= 91.5 //Btu/lb air //CALCULATIONS n= Wnet/(wfbywa*hs) n1= W/Wnet n2= Wc/Wnet //RESULTS printf ('Efficiency = %.3f ',n) printf (' \n air rate= %.1f lb air/hphr',n1) printf (' \n back work ratio= %.2f ',n2)
664cc7986eafeb05ad3df489ca8fd6ffbaf8056b
449d555969bfd7befe906877abab098c6e63a0e8
/3788/CH10/EX10.6.1/Ex10_6_1.sce
ec1e5f61963ff5d5e8e12e9e4c2152ce1849a3e3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
395
sce
Ex10_6_1.sce
//Example 10.6.1 //Length and gain of Satellite clc clear height=750 theta=10 SEC=theta + 90 re=6378 rs=re + 750 del = asind(re*(sind(SEC)/rs)) Y=180-100-del Yradian=Y*(%pi/180) ArcEZ=re*Yradian Diameter=2*ArcEZ printf("Length of coverage region is %f km \n",Diameter) Beamwidth=2*del Gain=33000/Beamwidth^2 G=10*log10(Gain) printf("Gain of Satellite Antenna is %f dB",G)
576fa1b9d24675eb4490195ae97478e63fb472ad
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH5/EX5.11/example5_11.sce
a3168cd328a04ea9f8e6a962f375d8b8a05427b4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
435
sce
example5_11.sce
clc // Given that lambda = 1.25e-6 //wavelength of light in meter mu1 = 1.46 // refractive index for core mu2 = 1.457 // refractive index for cladding // Sample Problem 11 on page no. 5.20 printf("\n # PROBLEM 11 # \n") NA = sqrt(mu1^2 - mu2^2)//calculation for numerical aperture k = (2.4 * lambda) / ( %pi * NA) printf("\n Standard formula used \n d<8*lambda/(pi*NA)\n") printf("\n Maximum diameter of core = %f micro meter",k*1e6)
8c14c9290b33513e413acfcf3bfefe3998b7ff25
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set4/s_Digital_Communications_S._Sharma_1631.zip/Digital_Communications_S._Sharma_1631/CH9/EX9.12/Ex9_12.sce
4b5fae1052fc8f19f9c70f2ed798782a6ea59faf
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
313
sce
Ex9_12.sce
errcatch(-1,"stop");mode(2);//Caption: rate of information //Example 9.12 //page no 401 //Find Average rate of information ; ; m=16; pxi=1/16; elements=2*10^6; n=32 HX=0; for(i=1:16) HX=HX+(-(pxi*log2(pxi))); end r=elements*n; R=r*HX printf("Average rate of information\n \n \t R = %d Mbs",R/10^6); exit();
f30093bd3dc32d6f14ec7acd074e044c81405b54
449d555969bfd7befe906877abab098c6e63a0e8
/72/CH9/EX9.5.1/9_5_1.sce
7ad571261c1c4f4a2250a8879b5a7ef908d2d11e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
954
sce
9_5_1.sce
// CAPTION: Operation_of_Travelling-WAVE_TUBE(TWT) //chapter_no.-9, page_no.-416 //Example_no.9-5-1 clc; //(a) Calculate_the_gain_parameter I0=30*(10^-3);//Beam_current V0=3*(10^3);//Beam_voltage Z0=10;//characteristic_impedance_of_the_helix C=(((I0*Z0)/(4*V0))^(1/3)); disp(C,'From Eq(9-5-56) the gain parameter is ='); //(b) Calculate_the_output_power_gain_in_dB N=50;//Crcular_length Ap=-9.54+(47.3*N*C); disp(Ap,'the_output_power_gain_(in_dB) is ='); //(c) Calculate_the_four_propagation_constants f=10*(10^9); V0=3*(10^3); w=2*(%pi)*f; v0=.593*(10^6)*sqrt(V0); Be=w/v0; r1=(-1*Be*C*(sqrt(3)/2))+%i*Be*(1+(C/2)); disp(r1,'the_first_propagtaion_constant_is ='); r2=(Be*C*(sqrt(3)/2))+%i*Be*(1+(C/2)); disp(r2,'the_second_propagtaion_constant_is ='); r3=%i*Be*(1-C); disp(r3,'the_third_propagtaion_constant is ='); r4=-1*%i*Be*(1-((C^3)/4)); disp(r4,'the_fourth_propagtaion_constant is =');
2e942eb105e327a713715d7fe3daa99ce02b75f8
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/SER2.prev.tst
763edab16c71a1e5e2ef58c56cc6fc8002350dd0
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
93
tst
SER2.prev.tst
A111111 1,2,3,4,5,6,7,8,9,0,1 A222222 2,2,3,4,5,6,7,8,9,0,1 A333333 3,2,3,4,5,6,7,8,9,0,1
b333eb0f695a90e520fcb76b751bd73b4d7665e6
449d555969bfd7befe906877abab098c6e63a0e8
/1859/CH6/EX6.4/exa_6_4.sce
6169760f50d70e3ae67bd465f934a7b8fcc3a6f3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
154
sce
exa_6_4.sce
// Exa 6.4 clc; clear; close; // Given data P=100;// in ohm Q=10;// in ohm S=46;// in ohm R= P*S/Q;//in ohm disp(R,"Unknown resistance in ohm")
424425038c092ce559730c1d0b3f70c4ad35d306
449d555969bfd7befe906877abab098c6e63a0e8
/2072/CH24/EX24.7/EX24_7.sce
5d5ce663905f3001c1f67171616500e4aee42014
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
628
sce
EX24_7.sce
//Chapter 24 clc //Example 7 //given lambda=632.8 //wavelength of monochromatic light from helium-neon laser in meter a=6000 //lines in diffraction grating per cm d=10^7/a//slit seperation in nm //for the first order maximum we have m=1 sin_theta1=lambda/d theta1=asind(sin_theta1) disp(theta1,"Angle in degrees at which first order maxima is observed is ") //for the second order maximum we have m=2 sin_theta2=2*lambda/d theta2=asind(sin_theta2) disp(theta2,"Angle in degrees at which second order maxima is observed is ") disp("for higher order number of diffraction the the solutions are non realistic")
a65277964682456de713a2e76a35dd52b410850e
0c3cccb3c81eb151f654e5d9d470662c19122857
/scilab/fac/tp_deformations/cmview.sci
bf6b20f302a9833e5b9e82a68127d42f90fa9e6f
[]
no_license
gmordelet/oldProg
6b2bb7c247dd1f16a641d0f840f7c82e8eb37ffb
c108060bf1b87b4aad196484036f226fd9c4422c
refs/heads/master
2021-01-12T16:28:52.448277
2016-10-30T11:16:22
2016-10-30T11:16:22
69,155,276
0
0
null
null
null
null
UTF-8
Scilab
false
false
5,504
sci
cmview.sci
//------------------------------ CMVIEW ------------------------------ // authors: Rémy Abergel, Lionel Moisan // // display a sequence of gray-level images // // usages: cmview(u); // cmview(u,framerate); // f = cmview(u [,framerate] ); // // u is a hypermatrix, u(x,y,t) is the gray level of pixel (x,y) of frame t // framerate: desired framerate (default value is 10) // f: handle of the Scilab figure // // v1.0 (10/2012): initial version (RA) // v1.1 (04/2013): removed format(4) (LM) function fig_hdl = cmview (hypmat,fps) if argn(2)==1 fps = 10; end //TODO: check types (uint8 hypermat & double) & Check third dimension > 1 //... [height,width,ltime] = size(hypmat) //Skretching: rescale each frame to be into [0,255] for iter=1:ltime min_frame = min(hypmat(:,:,iter)) max_frame = max(hypmat(:,:,iter)) if (max_frame-min_frame)==0 min_frame = 0 if ~max_frame max_frame = 1 end end hypmat(:,:,iter) = 255*(hypmat(:,:,iter) - min_frame)/(max_frame-min_frame) end // Now let's build the image viewer fig_hdl = figure() delmenu(fig_hdl.figure_id,gettext("&File")) //delete File menu (work for all languages) delmenu(fig_hdl.figure_id,gettext("&Tools")) //delete Tools menu delmenu(fig_hdl.figure_id,gettext("&Edit")) //delete Edit menu delmenu(fig_hdl.figure_id,gettext("&?")) //delete help menu str_id = string(fig_hdl.figure_id) fig_hdl.color_map = graycolormap(256) //set a linear gray colormap with 256 gray levels varying linearly from black to white fig_hdl.figure_name = "movie n°"+str_id toolbar(fig_hdl.figure_id,'off') //remove the toolbar fig_hdl.axes_size = [width,height] fig_hdl.auto_resize = "off" fig_hdl.user_data = [0,0,fps,0,0] // = [quit,pause,fps,b,f] // quit event = 0 as long as key 'q' is not pressed // pause event = 1 if key p is pressed, else 0 // fps rate // backward event = 1 if key b is pressed, else 0 // forward event = 1 if key f is pressed, else 0 ax_hdl = gca() //get current axes handle ax_hdl.data_bounds = [1,1;width,height] ax_hdl.axes_visible = ["off","off","off"] ax_hdl.isoview = "on" ax_hdl.tight_limits = "on" //axes will adapt in order to fit exactly with the data_bounds ax_hdl.margins = [0,0,0,0] // Now we can plot the first frame Matplot(hypmat(:,:,1)) mtplt_hdl = gce() mtplt_hdl.user_data = ["Matplot",str_id] //Tag the Matplot entity fig_hdl.info_message = "# frame 1/" + string(ltime) + " # fps (r/t) = " + string(1/fps) + "/" + string(fps) // Add an event handler function fig_hdl.event_handler = "event_cmview" fig_hdl.event_handler_enable = "on" // MAIN LOOP : Loop on frames usrdat = fig_hdl.user_data count = 2 iter = 2 //format(4) tref = 0 // tref = mean time needed to display a new frame while ~usrdat(1) // key 'q' has no been pressed (quit) tic // set clock to 0 t1 = toc() // while t1< 1/fps - mean_time_to_display_the_new_frame, then display next frame. while t1<(1/usrdat(3)-tref) t1 = toc() end mtplt_hdl.data = hypmat(:,:,iter) t1 = toc() //real time that collapsed between frame iter-1 and frame iter //update info_message, tref & increment iter fig_hdl.info_message = "# frame "+string(iter) + "/" + string(ltime) + " # fps (r/t) = " + string(1/t1) + "/" + string(usrdat(3)) tref = ( tref*(count-1) + t1-1/usrdat(3)+tref ) / count // update tref => tref = mean(tref_iter=1,tref_iter=2,...,tref_iter, t1-(1/fps-tref_iter)) usrdat = fig_hdl.user_data iter = modulo(iter,ltime) + 1 count = count + 1 // check pause, Backard & Forward events while usrdat(2)&(~usrdat(1)) // key 'p' has been pressed and 'q' has not been pressed ==> pause usrdat = fig_hdl.user_data fig_hdl.info_message = "# frame "+string(iter) + "/" + string(ltime) if usrdat(4) // key 'b' has been pressed iter = iter - 1 if iter<1 iter = ltime; end mtplt_hdl.data = hypmat(:,:,iter) fig_hdl.info_message = "# frame "+string(iter) + "/" + string(ltime) usrdat(4) = 0 fig_hdl.user_data = usrdat end if usrdat(5) //key 'f' has been pressed iter = modulo(iter,ltime) + 1 mtplt_hdl.data = hypmat(:,:,iter) fig_hdl.info_message = "# frame "+string(iter) + "/" + string(ltime) usrdat(5) = 0 fig_hdl.user_data = usrdat end end end close(fig_hdl) // END MAIN LOOP endfunction function event_cmview(win,x,y,ibut) scf(win) fig_hdl = gcf() usrdat = fig_hdl.user_data usrdat(4) = 0 usrdat(5) = 0 select ibut case -1000 then if ~usrdat(1) error("ERROR: Next time stop the movie by pressing key ''q''") end usrdat(1) = 1 case 98 then // key 'b' has been pressed usrdat(4) = 1 case 102 then // key 'f' has been pressed usrdat(5) = 1 case 108 then // key 'l' has been pressed usrdat(3) = usrdat(3) / 1.1 case 109 then // key 'm' has been pressed usrdat(3) = 1.1 * usrdat(3) case 112 then // key 'p' has been pressed usrdat(2) = ~usrdat(2) case 113 then // key 'q' has been pressed usrdat(1) = 1 // disp("Video has been stopped correctly") else break end fig_hdl.user_data = usrdat endfunction
8cf7dc01ab2cc98c06c064ec5c09fa61c106d0a6
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/PV4.prev.tst
0ebe8606259e9ca23e2b40445abd5c269688c168
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
93
tst
PV4.prev.tst
parse: [0,8*(n-1)*(2*n-1),-2*n*(4*n-7),(n-2)*n] matrix:[[0],[8,-24,16],[0,14,-8],[0,-2,1]]
de22dd25bd8813008d052f34edc571a6d74eb161
2157e5477a68100718fef686429f6ab2d846fffe
/macros/linprog.sci
89d0405d2638bc495de96ddd90f6ad171a5612ce
[]
no_license
sidn77/FOSSEE-Optimization-toolbox
44ca727e3f2dff5b61b43384421ae9e633d95bb1
58416c0613131665e14c0143791fb1f305c411e0
refs/heads/master
2021-01-11T04:58:15.068871
2016-09-29T11:31:12
2016-09-29T11:31:12
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
8,001
sci
linprog.sci
// Copyright (C) 2015 - IIT Bombay - FOSSEE // // This file must be used under the terms of the BSD. // This source file is licensed as described in the file LICENSE, which // you should have received as part of this distribution. The terms // are also available at // https://opensource.org/licenses/BSD-3-Clause // Author: Guru Pradeep Reddy, Bhanu Priya Sayal // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in function [xopt,fopt,exitflag,output,lambda] = linprog (varargin) // Solves a linear programming problem. // // Calling Sequence // xopt = linprog(c,A,b) // xopt = linprog(c,A,b,Aeq,beq) // xopt = linprog(c,A,b,Aeq,beq,lb,ub) // xopt = linprog(c,A,b,Aeq,beq,lb,ub,param) // xopt = linprog(file) // xopt = linprog(file,param) // [xopt,fopt,exitflag,output,lambda] = linprog( ... ) // // Parameters // c : a vector of double, contains coefficients of the variables in the objective // A : a matrix of double, represents the linear coefficients in the inequality constraints A⋅x ≤ b. // b : a vector of double, represents the linear coefficients in the inequality constraints A⋅x ≤ b. // Aeq : a matrix of double, represents the linear coefficients in the equality constraints Aeq⋅x = beq. // beq : a vector of double, represents the linear coefficients in the equality constraints Aeq⋅x = beq. // lb : Lower bounds, specified as a vector or array of double. lb represents the lower bounds elementwise in lb ≤ x ≤ ub. // ub : Upper bounds, specified as a vector or array of double. ub represents the upper bounds elementwise in lb ≤ x ≤ ub. // options : a list containing the parameters to be set. // file : a string describing the path to the mps file. // xopt : a vector of double, the computed solution of the optimization problem. // fopt : a double, the value of the function at x. // status : status flag returned from symphony. See below for details. // output : The output data structure contains detailed information about the optimization process. See below for details. // lambda : The structure consist of the Lagrange multipliers at the solution of problem. See below for details. // // Description // OSI-CLP is used for solving the linear programming problems, OSI-CLP is a library written in C++. // Search the minimum of a constrained linear programming problem specified by : // // <latex> // \begin{eqnarray} // &\mbox{min}_{x} // & c^T⋅x \\ // & \text{subject to} & A⋅x \leq b \\ // & & Aeq⋅x = beq \\ // & & lb \leq x \leq ub \\ // \end{eqnarray} // </latex> // // The routine calls Clp for solving the linear programming problem, Clp is a library written in C++. // // The options allows the user to set various parameters of the Optimization problem. // It should be defined as type "list" and contains the following fields. In the current version it only contains maxiter. // <itemizedlist> // <listitem>Syntax : options= list("MaxIter", [---]);</listitem> // <listitem>MaxIter : a Scalar, containing the Maximum Number of Iteration that the solver should take.</listitem> // <listitem>Default Values : options = list("MaxIter", [3000]);</listitem> // </itemizedlist> // // The exitflag allows to know the status of the optimization which is given back by CLP. // <itemizedlist> // <listitem>exitflag=0 : Optimal Solution Found </listitem> // <listitem>exitflag=1 : Primal Infeasible </listitem> // <listitem>exitflag=2 : Dual Infeasible</listitem> // <listitem>exitflag=3 : Maximum Number of Iterations Exceeded. Output may not be optimal.</listitem> // <listitem>exitflag=4 : Solution Abandoned</listitem> // <listitem>exitflag=5 : Primal objective limit reached.</listitem> // <listitem>exitflag=6 : Dual objective limit reached.</listitem> // </itemizedlist> // // The output data structure contains detailed informations about the optimization process. // It has type "struct" and contains the following fields. // <itemizedlist> // <listitem>output.iterations: The number of iterations performed during the search</listitem> // <listitem>output.constrviolation: The max-norm of the constraint violation.</listitem> // </itemizedlist> // // The lambda data structure contains the Lagrange multipliers at the end // of optimization. In the current version the values are returned only when the the solution is optimal. // It has type "struct" and contains the following fields. // <itemizedlist> // <listitem>lambda.lower: The Lagrange multipliers for variable lower bounds.</listitem> // <listitem>lambda.eqlin: The Lagrange multipliers for the linear equality constraints.</listitem> // <listitem>lambda.ineqlin: The Lagrange multipliers for the linear inequality constraints.</listitem> // </itemizedlist> // // Examples // //Optimal problems // //Linear program, linear inequality constraints // c=[-1,-1/3]' // A=[1,1;1,1/4;1,-1;-1/4,-1;-1,-1;-1,1] // b=[2,1,2,1,-1,2] // Calling Sequence // [xopt,fopt,exitflag,output,lambda]=linprog(c, A, b) // // Press ENTER to continue // // Examples // //Linear program with Linear Inequalities and Equalities` // c=[-1,-1/3]' // A=[1,1;1,1/4;1,-1;-1/4,-1;-1,-1;-1,1] // b=[2,1,2,1,-1,2] // Aeq=[1,1/4] // beq=[1/2] // Calling Sequence // [xopt,fopt,exitflag,output,lambda]=linprog(c, A, b, Aeq, beq) // // Press ENTER to continue // // Examples // //Linear program with all constraint types // c=[-1,-1/3]' // A=[1,1;1,1/4;1,-1;-1/4,-1;-1,-1;-1,1] // b=[2,1,2,1,-1,2] // Aeq=[1,1/4] // beq=[1/2] // lb=[-1,-0.5] // ub=[1.5,1.25] // Calling Sequence // [xopt,fopt,exitflag,output,lambda]=linprog(c, A, b, Aeq, beq, lb, ub) // // Press ENTER to continue // // Examples // //Primal Infeasible Problem // c=[-1,-1,-1]' // A=[1,2,-1] // b=[-4] // Aeq=[1,5,3;1,1,0] // beq=[10,100] // lb=[0,0,0] // ub=[%inf,%inf,%inf] // // Calling Sequence // [xopt,fopt,exitflag,output,lambda]= linprog(c,A,b,Aeq,beq,lb,ub) // // Press ENTER to continue // // Examples // //Dual Infeasible Problem // c=[3,5,-7]' // A=[-1,-1,4;1,1,4] // b=[-8,5] // Aeq=[] // beq=[] // lb=[-%inf,-%inf,-%inf] // ub=[%inf,%inf,%inf] // // Calling Sequence // [xopt,fopt,exitflag,output,lambda]= linprog(c,A,b,Aeq,beq,lb,ub) // // Press ENTER to continue // // Examples // filepath = get_absolute_file_path('linprog.dem.sce'); // filepath = filepath + "exmip1.mps" // // Calling Sequence // [xopt,fopt,exitflag,output,lambda] =linprog(filepath) // Authors // Bhanu Priya Sayal, Guru Pradeep Reddy if(type(varargin(1))==1) then [lhs , rhs] = argn(); //To check the number of argument given by user if ( rhs < 3 | rhs == 4 | rhs == 6 | rhs >8 ) then errmsg = msprintf(gettext("%s: Unexpected number of input arguments : %d provided while should be in the set of [3 5 7 8]"), "linprog", rhs); error(errmsg) end c = varargin(1); A = varargin(2); b = varargin(3); if ( rhs<4 ) then Aeq = [] beq = [] else Aeq = varargin(4); beq = varargin(5); end if ( rhs<6 ) then lb = []; ub = []; else lb = varargin(6); ub = varargin(7); end if ( rhs<8 | size(varargin(8)) ==0 ) then param = list(); else param =varargin(8); end [xopt,fopt,exitflag,output,lambda]=matrix_linprog(c,A,b,Aeq,beq,lb,ub,param); elseif(type(varargin(1))==10) then [lhs , rhs] = argn(); //To check the number of argument given by user if ( rhs < 1 | rhs > 2) then errmsg = msprintf(gettext("%s: Unexpected number of input arguments : %d provided while should be in the set of [1 2]"),"linprog",rhs); error(errmsg) end mpsFile = varargin(1); if ( rhs<2 | size(varargin(2)) ==0 ) then param = list(); else param =varargin(2); end [xopt,fopt,exitflag,output,lambda]=mps_linprog(mpsFile,param); end endfunction
4a9cd2506bba9878304389c0aa199371df69839d
449d555969bfd7befe906877abab098c6e63a0e8
/2168/CH5/EX5.2/Chapter5_example2.sce
f6e8395455b48395c9f894d678c214e541d65e90
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
614
sce
Chapter5_example2.sce
clc clear //Input data r=8//Compression ratio n=1.41//Adiabatic index of the medium cv=0.17//Mean Specific heat at constant volume in kcal/kg/degree C x=2//Percentage with which spcific heat at constant volume increases R=29.3//Characteristic gas constant in mkg/kg/degree C J=427//Mechanical equivalent of heat in kg.m/kcal //Calculations e=(1-(1/r^(n-1)))//Air standard efficiency neglecting the variation in specific heat debye=((x/100)*((1-e)/e)*(R/(J*cv))*log(r))*100//Ratio of de and e in percent //Output printf('The change in air standard efficiency of the cycle is %3.3f percent',debye)
85088976c7a8aceaafe06fc9bef5dad20a4633dd
449d555969bfd7befe906877abab098c6e63a0e8
/22/CH10/EX10.6/ch10ex6.sce
a3a323162c78daffe6d02cd28aac1fe923252e44
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
218
sce
ch10ex6.sce
A=[0 1;-2 -3]; B=[1 0;1 1]; C=[1 0;1 1;0 2]; D=[0 0;1 0; 0 1]; syms s; H=C*inv(s*eye(2,2)-A)*B+D; disp(H,"the transfer function matrix H(s)=") disp(H(3,2),"the transfer function relating y3 and x2 is H32(s)=")
05188a65a3af117c0fcac0e443dd4c0ecd52bef9
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/CONT/DT87NVH/ATWM1_Working_Memory_MEG_DT87NVH_Session1/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run1.sce
8f72089b124983adca65f4ca3d1f73657f95f36b
[]
no_license
atwm1/Presentation
65c674180f731f050aad33beefffb9ba0caa6688
9732a004ca091b184b670c56c55f538ff6600c08
refs/heads/master
2020-04-15T14:04:41.900640
2020-02-14T16:10:11
2020-02-14T16:10:11
56,771,016
0
1
null
null
null
null
UTF-8
Scilab
false
false
48,615
sce
ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run1.sce
# ATWM1 MEG Experiment scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1"; #scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen scenario_type = trials; # for MEG #scan_period = 2000; # TR #pulses_per_scan = 1; #pulse_code = 1; pulse_width=6; default_monitor_sounds = false; active_buttons = 2; response_matching = simple_matching; button_codes = 10, 20; default_font_size = 36; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; write_codes=true; # for MEG only begin; #Picture definitions box { height = 382; width = 382; color = 0, 0, 0;} frame1; box { height = 369; width = 369; color = 255, 255, 255;} frame2; box { height = 30; width = 4; color = 0, 0, 0;} fix1; box { height = 4; width = 30; color = 0, 0, 0;} fix2; box { height = 30; width = 4; color = 255, 0, 0;} fix3; box { height = 4; width = 30; color = 255, 0, 0;} fix4; box { height = 369; width = 369; color = 42, 42, 42;} background; TEMPLATE "StimuliDeclaration.tem" {}; trial { sound sound_incorrect; time = 0; duration = 1; } wrong; trial { sound sound_correct; time = 0; duration = 1; } right; trial { sound sound_no_response; time = 0; duration = 1; } miss; # Start of experiment (MEG only) - sync with CTF software trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; } expStart; time = 0; duration = 1000; code = "ExpStart"; port_code = 80; }; # baselinePre (at the beginning of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }default; time = 0; duration = 10000; #mri_pulse = 1; code = "BaselinePre"; port_code = 91; }; TEMPLATE "ATWM1_Working_Memory_MEG.tem" { trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 44 61 292 292 399 125 1792 2992 1992 fixation_cross gabor_073 gabor_093 gabor_163 gabor_179 gabor_073_alt gabor_093_alt gabor_163 gabor_179 "1_1_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_073_093_163_179_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_131_framed blank blank blank blank fixation_cross_white "1_1_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_131_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1742 2992 2342 fixation_cross gabor_180 gabor_026 gabor_136 gabor_063 gabor_180_alt gabor_026 gabor_136 gabor_063_alt "1_2_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_180_026_136_063_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_136_framed gabor_circ blank blank blank blank fixation_cross_white "1_2_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2092 2992 2242 fixation_cross gabor_002 gabor_108 gabor_023 gabor_043 gabor_002_alt gabor_108 gabor_023 gabor_043_alt "1_3_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_002_108_023_043_target_position_2_3_retrieval_position_2" gabor_circ gabor_062_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_3_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1842 2992 1942 fixation_cross gabor_100 gabor_175 gabor_060 gabor_023 gabor_100_alt gabor_175 gabor_060_alt gabor_023 "1_4_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_1950_gabor_patch_orientation_100_175_060_023_target_position_2_4_retrieval_position_1" gabor_100_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_4_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_100_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1842 2992 2142 fixation_cross gabor_081 gabor_146 gabor_170 gabor_024 gabor_081 gabor_146 gabor_170_alt gabor_024_alt "1_5_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_081_146_170_024_target_position_1_2_retrieval_position_1" gabor_081_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_5_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1942 2992 2242 fixation_cross gabor_118 gabor_061 gabor_179 gabor_102 gabor_118_alt gabor_061_alt gabor_179 gabor_102 "1_6_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2250_gabor_patch_orientation_118_061_179_102_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_102_framed blank blank blank blank fixation_cross_white "1_6_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1992 2992 1992 fixation_cross gabor_175 gabor_034 gabor_001 gabor_119 gabor_175_alt gabor_034 gabor_001 gabor_119_alt "1_7_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_175_034_001_119_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_001_framed gabor_circ blank blank blank blank fixation_cross_white "1_7_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1792 2992 2442 fixation_cross gabor_037 gabor_117 gabor_169 gabor_060 gabor_037 gabor_117_alt gabor_169_alt gabor_060 "1_8_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_037_117_169_060_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_060_framed blank blank blank blank fixation_cross_white "1_8_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1992 2992 2592 fixation_cross gabor_006 gabor_135 gabor_087 gabor_166 gabor_006 gabor_135_alt gabor_087_alt gabor_166 "1_9_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2600_gabor_patch_orientation_006_135_087_166_target_position_1_4_retrieval_position_1" gabor_006_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_9_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1992 2992 2342 fixation_cross gabor_077 gabor_118 gabor_043 gabor_163 gabor_077_alt gabor_118 gabor_043 gabor_163_alt "1_10_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_077_118_043_163_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_093_framed gabor_circ blank blank blank blank fixation_cross_white "1_10_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2142 2992 1892 fixation_cross gabor_073 gabor_163 gabor_009 gabor_089 gabor_073 gabor_163_alt gabor_009_alt gabor_089 "1_11_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_1900_gabor_patch_orientation_073_163_009_089_target_position_1_4_retrieval_position_1" gabor_118_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_11_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2092 2992 1892 fixation_cross gabor_044 gabor_155 gabor_120 gabor_013 gabor_044 gabor_155_alt gabor_120 gabor_013_alt "1_12_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_1900_gabor_patch_orientation_044_155_120_013_target_position_1_3_retrieval_position_1" gabor_093_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_12_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1742 2992 1992 fixation_cross gabor_094 gabor_152 gabor_109 gabor_175 gabor_094_alt gabor_152_alt gabor_109 gabor_175 "1_13_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2000_gabor_patch_orientation_094_152_109_175_target_position_3_4_retrieval_position_1" gabor_045_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_13_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_045_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2142 2992 2292 fixation_cross gabor_099 gabor_143 gabor_120 gabor_015 gabor_099 gabor_143_alt gabor_120 gabor_015_alt "1_14_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_099_143_120_015_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_120_framed gabor_circ blank blank blank blank fixation_cross_white "1_14_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_120_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1892 2992 2292 fixation_cross gabor_048 gabor_177 gabor_091 gabor_063 gabor_048_alt gabor_177 gabor_091 gabor_063_alt "1_15_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_048_177_091_063_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_138_framed gabor_circ blank blank blank blank fixation_cross_white "1_15_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_138_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1742 2992 2042 fixation_cross gabor_179 gabor_040 gabor_149 gabor_068 gabor_179 gabor_040_alt gabor_149_alt gabor_068 "1_16_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2050_gabor_patch_orientation_179_040_149_068_target_position_1_4_retrieval_position_2" gabor_circ gabor_090_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_16_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_090_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2192 2992 2092 fixation_cross gabor_126 gabor_043 gabor_012 gabor_170 gabor_126 gabor_043_alt gabor_012 gabor_170_alt "1_17_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_126_043_012_170_target_position_1_3_retrieval_position_1" gabor_126_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_17_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1742 2992 2092 fixation_cross gabor_178 gabor_070 gabor_040 gabor_112 gabor_178 gabor_070_alt gabor_040_alt gabor_112 "1_18_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_178_070_040_112_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_160_framed blank blank blank blank fixation_cross_white "1_18_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 2242 2992 2142 fixation_cross gabor_151 gabor_107 gabor_135 gabor_169 gabor_151 gabor_107_alt gabor_135 gabor_169_alt "1_19_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2150_gabor_patch_orientation_151_107_135_169_target_position_1_3_retrieval_position_2" gabor_circ gabor_062_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_19_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_062_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 2142 fixation_cross gabor_110 gabor_151 gabor_046 gabor_088 gabor_110_alt gabor_151 gabor_046_alt gabor_088 "1_20_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2150_gabor_patch_orientation_110_151_046_088_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_134_framed blank blank blank blank fixation_cross_white "1_20_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_134_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 2192 fixation_cross gabor_039 gabor_153 gabor_115 gabor_096 gabor_039 gabor_153_alt gabor_115 gabor_096_alt "1_21_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_039_153_115_096_target_position_1_3_retrieval_position_1" gabor_174_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_21_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2242 2992 2342 fixation_cross gabor_063 gabor_019 gabor_151 gabor_133 gabor_063 gabor_019_alt gabor_151_alt gabor_133 "1_22_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_063_019_151_133_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_133_framed blank blank blank blank fixation_cross_white "1_22_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_133_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2042 2992 2092 fixation_cross gabor_071 gabor_091 gabor_042 gabor_002 gabor_071 gabor_091_alt gabor_042 gabor_002_alt "1_23_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2100_gabor_patch_orientation_071_091_042_002_target_position_1_3_retrieval_position_1" gabor_071_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_23_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2092 2992 2542 fixation_cross gabor_175 gabor_141 gabor_018 gabor_106 gabor_175_alt gabor_141 gabor_018_alt gabor_106 "1_24_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_175_141_018_106_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_057_framed blank blank blank blank fixation_cross_white "1_24_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_057_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1842 2992 2242 fixation_cross gabor_129 gabor_149 gabor_042 gabor_018 gabor_129 gabor_149_alt gabor_042 gabor_018_alt "1_25_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_2250_gabor_patch_orientation_129_149_042_018_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_064_framed blank blank blank blank fixation_cross_white "1_25_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_064_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1892 2992 2592 fixation_cross gabor_165 gabor_135 gabor_110 gabor_084 gabor_165 gabor_135_alt gabor_110 gabor_084_alt "1_26_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2600_gabor_patch_orientation_165_135_110_084_target_position_1_3_retrieval_position_1" gabor_028_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_26_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_028_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1942 2992 2292 fixation_cross gabor_093 gabor_067 gabor_133 gabor_044 gabor_093_alt gabor_067 gabor_133 gabor_044_alt "1_27_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2300_gabor_patch_orientation_093_067_133_044_target_position_2_3_retrieval_position_2" gabor_circ gabor_067_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_27_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1942 2992 2042 fixation_cross gabor_011 gabor_126 gabor_149 gabor_165 gabor_011 gabor_126_alt gabor_149_alt gabor_165 "1_28_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2050_gabor_patch_orientation_011_126_149_165_target_position_1_4_retrieval_position_1" gabor_011_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_28_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_011_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1942 2992 2192 fixation_cross gabor_033 gabor_101 gabor_054 gabor_172 gabor_033_alt gabor_101 gabor_054_alt gabor_172 "1_29_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_033_101_054_172_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_123_framed blank blank blank blank fixation_cross_white "1_29_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_123_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1742 2992 2292 fixation_cross gabor_092 gabor_145 gabor_005 gabor_124 gabor_092_alt gabor_145_alt gabor_005 gabor_124 "1_30_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2300_gabor_patch_orientation_092_145_005_124_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_075_framed blank blank blank blank fixation_cross_white "1_30_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2092 2992 2592 fixation_cross gabor_176 gabor_090 gabor_118 gabor_134 gabor_176_alt gabor_090 gabor_118 gabor_134_alt "1_31_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2600_gabor_patch_orientation_176_090_118_134_target_position_2_3_retrieval_position_2" gabor_circ gabor_090_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_31_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1842 2992 2492 fixation_cross gabor_152 gabor_134 gabor_063 gabor_017 gabor_152_alt gabor_134_alt gabor_063 gabor_017 "1_32_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_2500_gabor_patch_orientation_152_134_063_017_target_position_3_4_retrieval_position_1" gabor_152_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_32_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_152_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1742 2992 2142 fixation_cross gabor_042 gabor_090 gabor_018 gabor_057 gabor_042 gabor_090_alt gabor_018 gabor_057_alt "1_33_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_042_090_018_057_target_position_1_3_retrieval_position_1" gabor_042_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_33_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_042_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 2192 2992 2442 fixation_cross gabor_154 gabor_043 gabor_121 gabor_088 gabor_154 gabor_043_alt gabor_121_alt gabor_088 "1_34_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2200_3000_2450_gabor_patch_orientation_154_043_121_088_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_121_framed gabor_circ blank blank blank blank fixation_cross_white "1_34_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_121_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1992 2992 2042 fixation_cross gabor_172 gabor_115 gabor_046 gabor_096 gabor_172 gabor_115 gabor_046_alt gabor_096_alt "1_35_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_172_115_046_096_target_position_1_2_retrieval_position_2" gabor_circ gabor_115_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_35_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_115_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1992 2992 1992 fixation_cross gabor_021 gabor_149 gabor_174 gabor_104 gabor_021_alt gabor_149_alt gabor_174 gabor_104 "1_36_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_021_149_174_104_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_104_framed blank blank blank blank fixation_cross_white "1_36_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_104_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2142 2992 2542 fixation_cross gabor_102 gabor_176 gabor_045 gabor_062 gabor_102 gabor_176 gabor_045_alt gabor_062_alt "1_37_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2550_gabor_patch_orientation_102_176_045_062_target_position_1_2_retrieval_position_1" gabor_151_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_37_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_151_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1792 2992 1892 fixation_cross gabor_052 gabor_106 gabor_142 gabor_169 gabor_052_alt gabor_106 gabor_142_alt gabor_169 "1_38_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_1900_gabor_patch_orientation_052_106_142_169_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_123_framed blank blank blank blank fixation_cross_white "1_38_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_123_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1892 2992 2392 fixation_cross gabor_087 gabor_172 gabor_042 gabor_017 gabor_087 gabor_172_alt gabor_042 gabor_017_alt "1_39_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2400_gabor_patch_orientation_087_172_042_017_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_017_framed blank blank blank blank fixation_cross_white "1_39_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_017_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2142 2992 1942 fixation_cross gabor_103 gabor_013 gabor_034 gabor_139 gabor_103 gabor_013_alt gabor_034 gabor_139_alt "1_40_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_103_013_034_139_target_position_1_3_retrieval_position_1" gabor_103_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_40_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1942 2992 2392 fixation_cross gabor_103 gabor_070 gabor_157 gabor_127 gabor_103 gabor_070_alt gabor_157 gabor_127_alt "1_41_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2400_gabor_patch_orientation_103_070_157_127_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_157_framed gabor_circ blank blank blank blank fixation_cross_white "1_41_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_157_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1792 2992 2442 fixation_cross gabor_093 gabor_004 gabor_021 gabor_051 gabor_093_alt gabor_004 gabor_021 gabor_051_alt "1_42_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_093_004_021_051_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_021_framed gabor_circ blank blank blank blank fixation_cross_white "1_42_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_021_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_062 gabor_013 gabor_084 gabor_125 gabor_062_alt gabor_013 gabor_084 gabor_125_alt "1_43_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_062_013_084_125_target_position_2_3_retrieval_position_2" gabor_circ gabor_149_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_43_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2242 2992 2492 fixation_cross gabor_032 gabor_120 gabor_079 gabor_051 gabor_032_alt gabor_120_alt gabor_079 gabor_051 "1_44_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2500_gabor_patch_orientation_032_120_079_051_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_051_framed blank blank blank blank fixation_cross_white "1_44_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_051_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1892 2992 2492 fixation_cross gabor_029 gabor_001 gabor_085 gabor_134 gabor_029 gabor_001_alt gabor_085_alt gabor_134 "1_45_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2500_gabor_patch_orientation_029_001_085_134_target_position_1_4_retrieval_position_1" gabor_029_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_45_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_029_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2242 2992 2292 fixation_cross gabor_035 gabor_052 gabor_008 gabor_167 gabor_035 gabor_052_alt gabor_008_alt gabor_167 "1_46_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_035_052_008_167_target_position_1_4_retrieval_position_1" gabor_083_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_46_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1942 2992 2092 fixation_cross gabor_169 gabor_041 gabor_104 gabor_063 gabor_169 gabor_041 gabor_104_alt gabor_063_alt "1_47_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_169_041_104_063_target_position_1_2_retrieval_position_2" gabor_circ gabor_041_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_47_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1792 2992 1892 fixation_cross gabor_073 gabor_095 gabor_151 gabor_033 gabor_073 gabor_095 gabor_151_alt gabor_033_alt "1_48_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_1900_gabor_patch_orientation_073_095_151_033_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_016_framed gabor_circ blank blank blank blank fixation_cross_white "1_48_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_016_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2242 2992 1892 fixation_cross gabor_124 gabor_103 gabor_145 gabor_180 gabor_124 gabor_103 gabor_145_alt gabor_180_alt "1_49_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_124_103_145_180_target_position_1_2_retrieval_position_1" gabor_074_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_49_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_074_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2092 2992 1942 fixation_cross gabor_109 gabor_128 gabor_044 gabor_172 gabor_109_alt gabor_128_alt gabor_044 gabor_172 "1_50_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_1950_gabor_patch_orientation_109_128_044_172_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_093_framed gabor_circ blank blank blank blank fixation_cross_white "1_50_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2142 2992 2592 fixation_cross gabor_080 gabor_169 gabor_143 gabor_010 gabor_080 gabor_169_alt gabor_143 gabor_010_alt "1_51_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2600_gabor_patch_orientation_080_169_143_010_target_position_1_3_retrieval_position_1" gabor_125_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_51_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_125_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2192 2992 2142 fixation_cross gabor_065 gabor_123 gabor_081 gabor_014 gabor_065_alt gabor_123 gabor_081 gabor_014_alt "1_52_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2150_gabor_patch_orientation_065_123_081_014_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_081_framed gabor_circ blank blank blank blank fixation_cross_white "1_52_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1842 2992 1942 fixation_cross gabor_168 gabor_151 gabor_012 gabor_033 gabor_168_alt gabor_151 gabor_012 gabor_033_alt "1_53_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_1950_gabor_patch_orientation_168_151_012_033_target_position_2_3_retrieval_position_1" gabor_122_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_53_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_122_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2192 2992 2542 fixation_cross gabor_035 gabor_170 gabor_151 gabor_064 gabor_035_alt gabor_170_alt gabor_151 gabor_064 "1_54_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2550_gabor_patch_orientation_035_170_151_064_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_064_framed blank blank blank blank fixation_cross_white "1_54_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_064_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1892 2992 2242 fixation_cross gabor_162 gabor_013 gabor_050 gabor_077 gabor_162_alt gabor_013_alt gabor_050 gabor_077 "1_55_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_162_013_050_077_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_100_framed gabor_circ blank blank blank blank fixation_cross_white "1_55_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_100_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1792 2992 2342 fixation_cross gabor_064 gabor_107 gabor_137 gabor_082 gabor_064 gabor_107_alt gabor_137_alt gabor_082 "1_56_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_2350_gabor_patch_orientation_064_107_137_082_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_137_framed gabor_circ blank blank blank blank fixation_cross_white "1_56_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_137_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2142 2992 2192 fixation_cross gabor_171 gabor_087 gabor_024 gabor_052 gabor_171_alt gabor_087 gabor_024_alt gabor_052 "1_57_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2200_gabor_patch_orientation_171_087_024_052_target_position_2_4_retrieval_position_2" gabor_circ gabor_087_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_57_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1892 2992 2342 fixation_cross gabor_113 gabor_071 gabor_147 gabor_025 gabor_113_alt gabor_071 gabor_147 gabor_025_alt "1_58_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2350_gabor_patch_orientation_113_071_147_025_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_097_framed gabor_circ blank blank blank blank fixation_cross_white "1_58_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1992 2992 2242 fixation_cross gabor_148 gabor_018 gabor_074 gabor_037 gabor_148_alt gabor_018 gabor_074 gabor_037_alt "1_59_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2000_3000_2250_gabor_patch_orientation_148_018_074_037_target_position_2_3_retrieval_position_1" gabor_101_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_59_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_101_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 1992 fixation_cross gabor_087 gabor_167 gabor_122 gabor_011 gabor_087 gabor_167 gabor_122_alt gabor_011_alt "1_60_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_087_167_122_011_target_position_1_2_retrieval_position_1" gabor_037_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_60_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2192 2992 2192 fixation_cross gabor_146 gabor_162 gabor_034 gabor_102 gabor_146 gabor_162_alt gabor_034 gabor_102_alt "1_61_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2200_gabor_patch_orientation_146_162_034_102_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_084_framed gabor_circ blank blank blank blank fixation_cross_white "1_61_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 2092 fixation_cross gabor_014 gabor_061 gabor_128 gabor_041 gabor_014_alt gabor_061_alt gabor_128 gabor_041 "1_62_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2100_gabor_patch_orientation_014_061_128_041_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_086_framed blank blank blank blank fixation_cross_white "1_62_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_086_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1842 2992 2042 fixation_cross gabor_080 gabor_049 gabor_027 gabor_009 gabor_080_alt gabor_049 gabor_027 gabor_009_alt "1_63_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_080_049_027_009_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_027_framed gabor_circ blank blank blank blank fixation_cross_white "1_63_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_027_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1792 2992 2392 fixation_cross gabor_041 gabor_158 gabor_024 gabor_089 gabor_041 gabor_158_alt gabor_024_alt gabor_089 "1_64_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_2400_gabor_patch_orientation_041_158_024_089_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_024_framed gabor_circ blank blank blank blank fixation_cross_white "1_64_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_024_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2242 2992 2192 fixation_cross gabor_013 gabor_160 gabor_145 gabor_084 gabor_013 gabor_160_alt gabor_145_alt gabor_084 "1_65_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_013_160_145_084_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_037_framed blank blank blank blank fixation_cross_white "1_65_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 2542 fixation_cross gabor_143 gabor_055 gabor_017 gabor_173 gabor_143 gabor_055 gabor_017_alt gabor_173_alt "1_66_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2550_gabor_patch_orientation_143_055_017_173_target_position_1_2_retrieval_position_1" gabor_095_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_66_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1742 2992 2392 fixation_cross gabor_057 gabor_166 gabor_144 gabor_079 gabor_057 gabor_166_alt gabor_144_alt gabor_079 "1_67_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_057_166_144_079_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_126_framed blank blank blank blank fixation_cross_white "1_67_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2192 2992 2492 fixation_cross gabor_028 gabor_160 gabor_138 gabor_117 gabor_028 gabor_160_alt gabor_138_alt gabor_117 "1_68_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_028_160_138_117_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_117_framed blank blank blank blank fixation_cross_white "1_68_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_117_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2092 2992 1942 fixation_cross gabor_159 gabor_086 gabor_105 gabor_070 gabor_159 gabor_086_alt gabor_105 gabor_070_alt "1_69_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_1950_gabor_patch_orientation_159_086_105_070_target_position_1_3_retrieval_position_1" gabor_159_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_69_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_159_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1892 2992 2442 fixation_cross gabor_034 gabor_141 gabor_065 gabor_111 gabor_034 gabor_141_alt gabor_065 gabor_111_alt "1_70_Encoding_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2450_gabor_patch_orientation_034_141_065_111_target_position_1_3_retrieval_position_2" gabor_circ gabor_141_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_70_Retrieval_Working_Memory_MEG_P1_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_141_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; }; # baselinePost (at the end of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }; time = 0; duration = 5000; code = "BaselinePost"; port_code = 92; };
125d9440dce04e68b7aa48d7628161dbd0988dd4
449d555969bfd7befe906877abab098c6e63a0e8
/978/CH4/EX4.2/Example4_2.sce
b32ac537fc2342d4b8020fc19d31c1263378015a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
561
sce
Example4_2.sce
//chapter-4,Example4_2,pg 489 //the circuit is that of a half subtractor //case-1 b1=1//input-1 B1=0//input-2 d1=bitand(b1,bitcmp(B1,1))+bitand(B1,bitcmp(b1,1))//difference r1=bitand(b1,bitcmp(B1,1))//borrow //case-2 b2=1 B2=1 d2=bitand(b2,bitcmp(B2,1))+bitand(B2,bitcmp(b2,1)) r2=bitand(b2,bitcmp(B2,1)) printf("difference case-1\n") printf("d1=%.f\n",d1) printf("difference case-2\n") printf("d2=%.f\n",d2) printf("borrow case-1\n") printf("r1=%.f\n",r1) printf("borrow case-2\n") printf("r2=%.f\n",r2)
663bca1ede97efb9f59ba21d2d9e59e1a2b76cdd
449d555969bfd7befe906877abab098c6e63a0e8
/884/CH12/EX12.7/Example12_7.sce
a5e1b7b50e90f0b844d344aef523605d52a7ecce
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
509
sce
Example12_7.sce
//computation of vapor pressure lowering clear; clc; printf("\t Example 12.7\n"); H2O=18.02;//mol mass of H2O, g V=460;//volume of water, mL glucose=180.2;//mol. mass of glucose, g mass=218;//mass of gllucose, g n1=V/H2O;//moles of water n2=mass/glucose;//moles of glucose x1=n1/(n1+n2);//mole fraction of water P=31.82;//vapor pressure of pure water, mmHg P1=x1*P;//vapor pressure afteraddition of glucose, mmHg printf("\t the vapor pressure lowering is : %4.1f mmHg\n",P-P1); //End
91b2c7488e578034b51e39fef8803e9cf74c1bc6
449d555969bfd7befe906877abab098c6e63a0e8
/291/CH5/EX5.8d/eg5_8d.sce
8f26cdc74c68f5efffb0cffefe336065258705e5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
31
sce
eg5_8d.sce
disp(1- cdfchn("PQ", 2.25,2,0))
bbe370738226eadbffb90c5e3f9b0dd72b336488
449d555969bfd7befe906877abab098c6e63a0e8
/3556/CH11/EX11.16/Ex11_16.sce
750f23b2e61a1e58d1dd94227217fa8c6d70150e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
736
sce
Ex11_16.sce
clc // Fundamental of Electric Circuit // Charles K. Alexander and Matthew N.O Sadiku // Mc Graw Hill of New York // 5th Edition // Part 2 : AC Circuits // Chapter 11 : AC power Analysis // Example 11 - 16 clear; clc; close; // // Given data Z1 = complex(12,10) Z2 = complex(8,-6) Vs_mag = 150.0000; Vs_angle = 0.0000; Vs = complex(Vs_mag*cosd(Vs_angle),Vs_mag*sind(Vs_angle)) // Calculations Irms Ztot = Z1 + Z2; Irms = Vs/Ztot; // Calculations Vrms Vrms = Z2*Irms; // Calculations Complex Power S = Vrms * conj(Irms); // Calculations Wattmeter Reading P = real(S); // disp("Example 11-16 Solution : "); printf(" \n a. P = Wattmeter Reading = %.3f Watt",P)
b6d04dc66edb53d2f0a2d17ddfb83ee429a15585
449d555969bfd7befe906877abab098c6e63a0e8
/623/CH27/EX5.5.14/U5_C5_14.sce
ac613b118a68ad3193f1f99a6a7bb4bba97da689
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,127
sce
U5_C5_14.sce
//variable initialization k=448 //force constant of CH molecule (N/m) mu=4.002*10^-27; //reduced mass of CH molecule (kg) r=0.112*10^-9; //internuclear distance (m) h=6.6*10^-34; //Plank's constant (joule second) //Calculation of peak frequencies v0=(1/(2*%pi))*sqrt(k/mu); //central frequency (s-1) I=mu*r^2; //moment of inertia of molecule (kg m^2) x=h/(4*%pi^2*I); //additional frequency (s-1) v1=v0+x; //peak frequency (Hz) v2=v0-x; //peak frequency (Hz) printf("\n Peak frequencies = %.3e Hz, %.3e Hz",v1,v2);
1756092ca45b373f9a04e04ec740719ff9d7909c
c7ca7c2793552f5f73495c73ad14a36f10d92e80
/TI/TP2/tiProjection.sci
e417097177c293a1b212702f97b75bd84337554f
[]
no_license
UchihaMadamiaow/Lille1-Master-Info
f402fb69497b1dd100236ed634590deae983bbcc
353b05ede296d729bc66b0cec8fa146a3552448b
refs/heads/master
2021-09-07T19:14:09.730841
2018-02-27T19:13:57
2018-02-27T19:13:57
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
6,062
sci
tiProjection.sci
// ----------------------------------------------------------------------- // Etude de la projection perspective, matrices extrinseque et intrinseque // d'une camera. Fonction d'affiche d'un objet apres projection // Module TI, Traitement d'Images // Copyleft (C) 2012-2014 Universite Lille 1 // // 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/>. // ----------------------------------------------------------------------- // ----------------------------------------------------------------------- // Fonction d'affichage d'un objet 2D dans une figure scilab // nfigure = numero de la figure scilab // taille = [nblignes, nbpixels] de l'image simulee // points = matrice 2*N des coordonnees des points // segments = matrice 2*M des indices des points // ----------------------------------------------------------------------- function tiAfficheObjet2D (nfigure, taille, points, segments) // Creer une nouvelle figure ou activer une figure existante hf = scf (nfigure); hf.figure_name = "Projection numero %d"; // Echelle identique sur les deux axes ha = gca (); ha.isoview = "on"; // Axe Y vers le bas ha.axes_reverse = ["off", "on", "off"]; ha.x_location = "top"; ha.box = "on"; // Tracer les points plot2d (points(1,:), points(2,:), style = -4, ... rect=[0, 0, taille(2), taille(1)]); // Tracer les segments sx = [points(1, segments(1,:)); points(1, segments(2,:))]; sy = [points(2, segments(1,:)); points(2, segments(2,:))]; xsegs (sx, sy); endfunction // ----------------------------------------------------------------------- // Definition d'un cube de cote fixe centre sur l'origine du repere 3D. // Les points sont definis par des coordonnees homogenes. En plus de la // matrice des coordonnees des points la fonction retourne une liste des // segments reliant les points pour former la grille. La liste est une // matrice de 2 lignes de 12 colonnes, chaque colonne contenant les // indices de deux points du cube qui sont relies par un segment. // ----------------------------------------------------------------------- function [points, segments] = tiCube (cote) // Definition des coordonnees des points, cube de cote 2 points = [ ... -1 1 1 -1 -1 1 1 -1; ... -1 -1 1 1 -1 -1 1 1; ... -1 -1 -1 -1 1 1 1 1; ... 1 1 1 1 1 1 1 1]; // Changement des cotes -> coefficient cote/2 sur les 3 coordonnees points = points .* ([cote/2; cote/2; cote/2; 1] * ones (1, 8)); // Definition des segments reliant les points segments = [1:4, 1:4, 5:8; 2:4, 1, 5:8, 6:8, 5]; endfunction // ----------------------------------------------------------------------- // Definition d'une grille de points 3D situes dans le plan z=0. // Les points sont definis par des coordonnees homogenes. La grille est // constituee de nx x ny carres de cote fixe. La grille est centree sur // l'origine du repere. En plus de la matrice des coordonnees des points // la fonction retourne une liste des segments reliant les points pour // former la grille. La liste est une matrice de 2 lignes de N colonnes, // chaque colonne contenant les indices de deux points de la grille qui // sont relies par un segment. // ----------------------------------------------------------------------- function [points, segments] = tiGrille (nx, ny, cote) // Definition des coordonnees X des points de la grille x = cote/2 * matrix (((0:nx) - nx/2)' * ones (1, ny+1), 1, -1); // Definition des coordonnees Y des points de la grille y = cote/2 * matrix (ones (1, nx+1)' * ((0:ny) - ny/2), 1, -1); // Definition des coordonnees Z et homogene des points zw = [0; 1] * ones (1, (nx+1) * (ny+1)); // Matrice des points points = [x; y; zw]; // Definition des segments reliant les points selon X debutx = find (pmodulo (1:(nx+1)*(ny+1), nx+1) ~= 0); finx = debutx + 1; // Definition des segments reliant les points selon Y debuty = 1:(nx+1)*ny; finy = debuty + nx+1; // Ensemble des segments segments = [debutx, debuty; finx, finy]; endfunction // Matrice de rotation autour de l'axe x , angles en degrés function matrice = RotationX(theta) c_t = cos(theta); s_t = sin(theta); matrice = [1,0,0,0; 0,c_t,-s_t,0; 0,s_t,c_t,0; 0,0,0,1]; endfunction // Matrice de rotation autour de l'axe y , angles en degrés function matrice = RotationY(theta) c_t = cos(theta); s_t = sin(theta); matrice = [c_t,0,s_t,0; 0,1,0,0; -s_t,0,c_t,0; 0,0,0,1]; endfunction // Matrice de rotation autour de l'axe z , angles en degrés function matrice = RotationZ(theta) c_t = cos(theta); s_t = sin(theta); matrice = [c_t,-s_t,0,0; s_t,c_t,0,0; 0,0,1,0; 0,0,0,1]; endfunction // Matrice de translation selon le vecteur v(x,y,z) function matrice = Translation(x,y,z) matrice = [1,0,0,x; 0,1,0,y; 0,0,1,z; 0,0,0,1]; endfunction // Matrice intrinseque // f distance focale function matrice = Intrinseque (f,Sc, Sl, Oc, Ol) m1 = [f/Sc, 0, Oc; 0, f/Sl, Ol; 0, 0, 1]; matrice = m1; endfunction // f = distance focal // matExtr = matrice extrinsec function m = projection(f, matExtr) proj = [f, 0, 0, 0; 0, f, 0, 0; 0, 0, 1, 0] m = proj * matExtr endfunction
0f49178bd32a4bc1d2cb5a6f45d15c50129e4e9a
449d555969bfd7befe906877abab098c6e63a0e8
/1938/CH5/EX5.15/5_15.sce
eacf2505d42cc8779eaf03d4dae5f125576147fa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,332
sce
5_15.sce
clc,clear printf('Example 5.15\n\n') //part(i) Ampere turn method F_O=37.5 F_AR=20 V_L=6600, V_ph=V_L/sqrt(3) //lagging phi=acos(0.8) F_R= sqrt((F_O+F_AR*sin(phi) )^2 + (F_AR*cos(phi))^2 ) //E_ph corresponding to F_R can be obtained by plotting open circuit characteristics E_ph=4350 regulation=100*(E_ph-V_ph)/V_ph printf('(i)By Ampere-turn method or MMF method\nFull-load regulation at 0.8 lagging pf is %.2f percent\n',regulation) //leading phi=acos(0.8) F_R= sqrt((F_O-F_AR*sin(phi) )^2 + (F_AR*cos(phi))^2 ) //E_ph corresponding to F_R can be obtained by plotting open circuit characteristics E_ph=3000 regulation=100*(E_ph-V_ph)/V_ph printf('Full-load regulation at 0.8 leading pf is %.2f percent\n',regulation) //EMF method V_OC_ph=100,V_ph=100 I_sc= 100*(F_O/F_AR) //times the rated value Z_s=V_OC_ph/I_sc F_O= 100 F_AR= Z_s*100 //lagging phi=acos(0.8) F_R= sqrt((F_O+F_AR*sin(phi) )^2 + (F_AR*cos(phi))^2 ) regulation=100*(F_R-V_ph)/V_ph printf('\n(ii)Synchronous impedance method or EMF method\n') printf('Full-load regulation at 0.8 lagging pf is %.2f percent\n',regulation) //leading phi=acos(0.8) F_R= sqrt((F_O-F_AR*sin(phi) )^2 + (F_AR*cos(phi))^2 ) regulation=100*(F_R-V_ph)/V_ph printf('Full-load regulation at 0.8 leading pf is %.2f percent\n',regulation)
b0d47f820134ee1a5dd43d703f68b4d6fe2d9ae5
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH5/EX5.3/Ex5_3.sce
92f9340567c91af31b4c366f7ed0326abad5bc7c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
180
sce
Ex5_3.sce
clc; I1=0.5*10**-3; V1=340*10**-3; I2=15*10**-3; V2=440*10**-3; kTbyq=25*10**-3; a=V1/kTbyq; b=V2/kTbyq; //log(I1/I2)==log(exp((b-a)/n)); n=(a-b)/(log(I1/I2)); disp(n);
8c7ab8364a0367b21fa7f3d1a75d73dcde4ad43a
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/Valorant peek training ( MCA-9 ).sce
509b5344ef409d1b18c49b0edd4148f1b3cb9bb1
[]
no_license
MBHuman/Scenarios
be1a722825b3b960014b07cda2f12fa4f75c7fc8
1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137
refs/heads/master
2023-01-14T02:10:25.103083
2020-11-21T16:47:14
2020-11-21T16:47:14
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
62,170
sce
Valorant peek training ( MCA-9 ).sce
Name=Valorant peek training ( MCA-9 ) PlayerCharacters=RFS Challenger BotCharacters=RFS Bot Rotation.rot IsChallenge=true Timelimit=60.0 PlayerProfile=RFS Challenger AddedBots=RFS Bot Rotation.rot PlayerMaxLives=0 BotMaxLives=0 PlayerTeam=1 BotTeams=2 MapName=repeating_first_shot.map MapScale=1.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=true TimeRefilledByKill=0.0 ScoreToWin=1.0 ScorePerDamage=0.0 ScorePerKill=1.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=VALORANT WeaponHeroTag=Pistol DifficultyTag=2 AuthorsTag=pleasewait; Zaey BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=false BlockFCT=true Description=Based on [MCA-9]peekers; adapted for valorant training GameVersion=2.0.0.2 ScorePerDistance=0.0 MBSEnable=false MBSTime1=0.25 MBSTime2=0.5 MBSTime3=0.75 MBSTime1Mult=1.0 MBSTime2Mult=2.0 MBSTime3Mult=3.0 MBSFBInstead=false MBSRequireEnemyAlive=false [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Bot Profile] Name=RFS Target 01 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=3.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=RFS Target 01 SeeThroughWalls=false NoDodging=true NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=RFS Target 02 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=3.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=RFS Target 02 SeeThroughWalls=false NoDodging=true NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=RFS Target 03 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=3.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=RFS Target 03 SeeThroughWalls=false NoDodging=true NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=RFS Target 04 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=3.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=RFS Target 04 SeeThroughWalls=false NoDodging=true NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=RFS Target 05 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=3.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=RFS Target 05 SeeThroughWalls=false NoDodging=true NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=RFS Target 06 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=3.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=RFS Target 06 SeeThroughWalls=false NoDodging=true NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=RFS Target 07 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=3.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=RFS Target 07 SeeThroughWalls=false NoDodging=true NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=RFS Target 08 DodgeProfileNames= DodgeProfileWeights= DodgeProfileMaxChangeTime=3.0 DodgeProfileMinChangeTime=3.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=RFS Target 08 SeeThroughWalls=false NoDodging=true NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Rotation Profile] Name=RFS Bot Rotation ProfileNames=RFS Target 01;RFS Target 02;RFS Target 03;RFS Target 04;RFS Target 05;RFS Target 06;RFS Target 07;RFS Target 08 ProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 Randomized=false [Character Profile] Name=RFS Challenger MaxHealth=100.0 WeaponProfileNames=RFS Pistol;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=180.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.2 JumpVelocity=256.0 Gravity=1.0 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=72.0 MainBBRadius=12.0 MainBBHasHead=false MainBBHeadRadius=10.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=72.0 ProjBBRadius=12.0 ProjBBHasHead=false ProjBBHeadRadius=10.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=900.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=RFS Target 01 MaxHealth=10.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=320.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=0.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Spheroid MainBBHeight=16.0 MainBBRadius=8.0 MainBBHasHead=false MainBBHeadRadius=10.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cuboid ProjBBHeight=16.0 ProjBBRadius=8.0 ProjBBHasHead=false ProjBBHeadRadius=10.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=RFS Target 02 MaxHealth=10.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=320.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=0.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Spheroid MainBBHeight=16.0 MainBBRadius=8.0 MainBBHasHead=false MainBBHeadRadius=10.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cuboid ProjBBHeight=16.0 ProjBBRadius=8.0 ProjBBHasHead=false ProjBBHeadRadius=10.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=308.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=RFS Target 03 MaxHealth=10.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=320.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=0.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Spheroid MainBBHeight=16.0 MainBBRadius=8.0 MainBBHasHead=false MainBBHeadRadius=10.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cuboid ProjBBHeight=16.0 ProjBBRadius=8.0 ProjBBHasHead=false ProjBBHeadRadius=10.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=-200.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=RFS Target 04 MaxHealth=10.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=320.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=0.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Spheroid MainBBHeight=16.0 MainBBRadius=8.0 MainBBHasHead=false MainBBHeadRadius=10.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cuboid ProjBBHeight=16.0 ProjBBRadius=8.0 ProjBBHasHead=false ProjBBHeadRadius=10.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=308.0 SpawnYOffset=-200.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=RFS Target 05 MaxHealth=10.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=320.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=0.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Spheroid MainBBHeight=16.0 MainBBRadius=8.0 MainBBHasHead=false MainBBHeadRadius=10.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cuboid ProjBBHeight=16.0 ProjBBRadius=8.0 ProjBBHasHead=false ProjBBHeadRadius=10.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=-400.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=RFS Target 06 MaxHealth=10.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=320.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=0.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Spheroid MainBBHeight=16.0 MainBBRadius=8.0 MainBBHasHead=false MainBBHeadRadius=10.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cuboid ProjBBHeight=16.0 ProjBBRadius=8.0 ProjBBHasHead=false ProjBBHeadRadius=10.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=308.0 SpawnYOffset=-400.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=RFS Target 07 MaxHealth=10.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=320.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=0.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Spheroid MainBBHeight=16.0 MainBBRadius=8.0 MainBBHasHead=false MainBBHeadRadius=10.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cuboid ProjBBHeight=16.0 ProjBBRadius=8.0 ProjBBHasHead=false ProjBBHeadRadius=10.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=-600.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=RFS Target 08 MaxHealth=10.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=16.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=36.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=320.0 MaxCrouchSpeed=160.0 Acceleration=2560.0 AirAcceleration=16000.0 Friction=1.0 BrakingFrictionFactor=0.5 JumpVelocity=256.0 Gravity=0.0 AirControl=1.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=0.000 Y=0.000 Z=1.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Spheroid MainBBHeight=16.0 MainBBRadius=8.0 MainBBHasHead=false MainBBHeadRadius=10.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cuboid ProjBBHeight=16.0 ProjBBRadius=8.0 ProjBBHasHead=false ProjBBHeadRadius=10.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=512.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=308.0 SpawnYOffset=-600.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Weapon Profile] Name=RFS Pistol Type=Hitscan ShotsPerClick=1 DamagePerShot=10.0 KnockbackFactor=0.0 TimeBetweenShots=0.1 Pierces=false Category=SemiAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=1000000.0 GravityScale=1.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=3 AmmoPerShot=1 ReloadTimeFromEmpty=1.0 ReloadTimeFromPartial=1.0 DamageFalloffStartDistance=1000000.0 DamageFalloffStopDistance=1000000.0 DamageAtMaxRange=100.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.1 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.000001 ADSZoomSensFactor=1.0 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.1 HitSoundCooldown=0.1 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.0 AimPunchCooldown=0.0 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=4 CancelReloadOnKill=true FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=90.0 ADSFOVScale=Vertical (1:1) ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=Gunshot ParticleBodyImpact=None ParticleProjectileTrail=None ParticleHitscanTrace=None ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=0.1 DamageAtCenter=0.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.0 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,0.0,0.0 SpreadSCA=1.0,1.0,0.0,0.0 SpreadMSA=1.0,1.0,0.0,0.0 SpreadMCA=1.0,1.0,0.0,0.0 SpreadSSH=1.0,1.0,0.0,0.0 SpreadSCH=1.0,1.0,0.0,0.0 SpreadMSH=1.0,1.0,0.0,0.0 SpreadMCH=1.0,1.0,0.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.1 TimeToRecoilReset=0.1 AAMode=2 AAPreferClosestPlayer=false AAAlpha=0.0 AAMaxSpeed=360.0 AADeadZone=0.0 AAFOV=360.0 AANeedsLOS=true TrackHorizontal=false TrackVertical=false AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=true UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.0 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end UInt8 playersMin 1 UInt8 playersMax 16 brush vertices 362.000000 400.000000 336.000000 542.000000 400.000000 336.000000 542.000000 400.000000 320.000000 362.000000 400.000000 320.000000 362.000000 288.000000 336.000000 542.000000 288.000000 336.000000 542.000000 288.000000 320.000000 362.000000 288.000000 320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 362.000000 288.000000 336.000000 542.000000 288.000000 336.000000 542.000000 288.000000 320.000000 362.000000 288.000000 320.000000 362.000000 256.000000 336.000000 542.000000 256.000000 336.000000 542.000000 256.000000 320.000000 362.000000 256.000000 320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128 brush vertices 324.000000 348.000000 320.000000 332.000000 348.000000 320.000000 332.000000 348.000000 312.000000 336.000000 332.000000 312.000000 324.000000 348.000000 312.000000 344.000000 332.000000 320.000000 344.000000 332.000000 312.000000 336.000000 332.000000 320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_weaponclip brush vertices 336.000000 324.000000 320.000000 344.000000 324.000000 320.000000 344.000000 324.000000 312.000000 324.000000 308.000000 312.000000 336.000000 324.000000 312.000000 332.000000 308.000000 320.000000 332.000000 308.000000 312.000000 324.000000 308.000000 320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_weaponclip brush vertices 268.000000 348.000000 320.000000 276.000000 348.000000 320.000000 276.000000 348.000000 312.000000 280.000000 332.000000 312.000000 268.000000 348.000000 312.000000 288.000000 332.000000 320.000000 288.000000 332.000000 312.000000 280.000000 332.000000 320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_weaponclip brush vertices 280.000000 324.000000 320.000000 288.000000 324.000000 320.000000 288.000000 324.000000 312.000000 268.000000 308.000000 312.000000 280.000000 324.000000 312.000000 276.000000 308.000000 320.000000 276.000000 308.000000 312.000000 268.000000 308.000000 320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_weaponclip brush vertices 248.000000 332.000000 320.000000 288.000000 332.000000 320.000000 288.000000 332.000000 312.000000 248.000000 332.000000 312.000000 248.000000 324.000000 320.000000 288.000000 324.000000 320.000000 288.000000 324.000000 312.000000 248.000000 324.000000 312.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices 304.000000 332.000000 320.000000 344.000000 332.000000 320.000000 344.000000 332.000000 312.000000 304.000000 332.000000 312.000000 304.000000 324.000000 320.000000 344.000000 324.000000 320.000000 344.000000 324.000000 312.000000 304.000000 324.000000 312.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices 346.000000 400.000000 1360.000000 542.000000 400.000000 1360.000000 542.000000 400.000000 1344.000000 346.000000 400.000000 1344.000000 346.000000 256.000000 1360.000000 542.000000 256.000000 1360.000000 542.000000 256.000000 1344.000000 346.000000 256.000000 1344.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 346.000000 400.000000 1344.000000 362.000000 400.000000 1344.000000 362.000000 400.000000 336.000000 346.000000 400.000000 336.000000 346.000000 256.000000 1344.000000 362.000000 256.000000 1344.000000 362.000000 256.000000 336.000000 346.000000 256.000000 336.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 240.000000 400.000000 336.000000 362.000000 400.000000 336.000000 362.000000 400.000000 320.000000 240.000000 400.000000 320.000000 240.000000 256.000000 336.000000 362.000000 256.000000 336.000000 362.000000 256.000000 320.000000 240.000000 256.000000 320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 670.000000 400.000000 1360.000000 866.000000 400.000000 1360.000000 866.000000 400.000000 1344.000000 670.000000 400.000000 1344.000000 670.000000 256.000000 1360.000000 866.000000 256.000000 1360.000000 866.000000 256.000000 1344.000000 670.000000 256.000000 1344.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 850.000000 400.000000 1344.000000 866.000000 400.000000 1344.000000 866.000000 400.000000 336.000000 850.000000 400.000000 336.000000 850.000000 256.000000 1344.000000 866.000000 256.000000 1344.000000 866.000000 256.000000 336.000000 850.000000 256.000000 336.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 850.000000 400.000000 336.000000 972.000000 400.000000 336.000000 972.000000 400.000000 320.000000 850.000000 400.000000 320.000000 850.000000 256.000000 336.000000 972.000000 256.000000 336.000000 972.000000 256.000000 320.000000 850.000000 256.000000 320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 936.000000 348.000000 320.000000 944.000000 348.000000 320.000000 944.000000 348.000000 312.000000 924.000000 332.000000 312.000000 936.000000 348.000000 312.000000 932.000000 332.000000 320.000000 932.000000 332.000000 312.000000 924.000000 332.000000 320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_weaponclip brush vertices 924.000000 324.000000 320.000000 932.000000 324.000000 320.000000 932.000000 324.000000 312.000000 936.000000 308.000000 312.000000 924.000000 324.000000 312.000000 944.000000 308.000000 320.000000 944.000000 308.000000 312.000000 936.000000 308.000000 320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_weaponclip brush vertices 924.000000 332.000000 320.000000 964.000000 332.000000 320.000000 964.000000 332.000000 312.000000 924.000000 332.000000 312.000000 924.000000 324.000000 320.000000 964.000000 324.000000 320.000000 964.000000 324.000000 312.000000 924.000000 324.000000 312.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices 868.000000 324.000000 320.000000 876.000000 324.000000 320.000000 876.000000 324.000000 312.000000 880.000000 308.000000 312.000000 868.000000 324.000000 312.000000 888.000000 308.000000 320.000000 888.000000 308.000000 312.000000 880.000000 308.000000 320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_weaponclip brush vertices 868.000000 332.000000 320.000000 908.000000 332.000000 320.000000 908.000000 332.000000 312.000000 868.000000 332.000000 312.000000 868.000000 324.000000 320.000000 908.000000 324.000000 320.000000 908.000000 324.000000 312.000000 868.000000 324.000000 312.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices 880.000000 348.000000 320.000000 888.000000 348.000000 320.000000 888.000000 348.000000 312.000000 868.000000 332.000000 312.000000 880.000000 348.000000 312.000000 876.000000 332.000000 320.000000 876.000000 332.000000 312.000000 868.000000 332.000000 320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 internal/editor/textures/editor_weaponclip brush vertices 670.000000 288.000000 336.000000 850.000000 288.000000 336.000000 850.000000 288.000000 320.000000 670.000000 288.000000 320.000000 670.000000 256.000000 336.000000 850.000000 256.000000 336.000000 850.000000 256.000000 320.000000 670.000000 256.000000 320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128 brush vertices 670.000000 400.000000 336.000000 850.000000 400.000000 336.000000 850.000000 400.000000 320.000000 670.000000 400.000000 320.000000 670.000000 288.000000 336.000000 850.000000 288.000000 336.000000 850.000000 288.000000 320.000000 670.000000 288.000000 320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 240.000000 400.000000 224.000000 972.000000 400.000000 224.000000 972.000000 400.000000 208.000000 240.000000 400.000000 208.000000 240.000000 256.000000 224.000000 972.000000 256.000000 224.000000 972.000000 256.000000 208.000000 240.000000 256.000000 208.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128 brush vertices 224.000000 400.000000 320.000000 240.000000 400.000000 320.000000 240.000000 400.000000 224.000000 224.000000 400.000000 224.000000 224.000000 256.000000 320.000000 240.000000 256.000000 320.000000 240.000000 256.000000 224.000000 224.000000 256.000000 224.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128 brush vertices 972.000000 400.000000 320.000000 988.000000 400.000000 320.000000 988.000000 400.000000 224.000000 972.000000 400.000000 224.000000 972.000000 256.000000 320.000000 988.000000 256.000000 320.000000 988.000000 256.000000 224.000000 972.000000 256.000000 224.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128 brush vertices 240.000000 256.000000 1360.000000 972.000000 256.000000 1360.000000 972.000000 256.000000 224.000000 240.000000 256.000000 224.000000 240.000000 240.000000 1360.000000 972.000000 240.000000 1360.000000 972.000000 240.000000 224.000000 240.000000 240.000000 224.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 240.000000 416.000000 1360.000000 972.000000 416.000000 1360.000000 972.000000 416.000000 224.000000 240.000000 416.000000 224.000000 240.000000 400.000000 1360.000000 972.000000 400.000000 1360.000000 972.000000 400.000000 224.000000 240.000000 400.000000 224.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices 542.000000 400.000000 1360.000000 670.000000 400.000000 1360.000000 670.000000 400.000000 320.000000 542.000000 400.000000 320.000000 542.000000 256.000000 1360.000000 670.000000 256.000000 1360.000000 670.000000 256.000000 320.000000 542.000000 256.000000 320.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 entity type CameraPath UInt8 posLerp 2 UInt8 angleLerp 2 entity type PlayerSpawn Vector3 position 256.000000 256.000000 256.000000 Bool8 teamB 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 420.000000 272.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 436.000000 272.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 452.000000 272.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 468.000000 272.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 484.000000 288.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 420.000000 288.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 436.000000 288.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 452.000000 288.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 468.000000 288.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 484.000000 304.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 420.000000 304.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 436.000000 304.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 452.000000 304.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 468.000000 304.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 484.000000 320.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 420.000000 320.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 436.000000 320.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 452.000000 320.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 468.000000 320.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 484.000000 336.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 420.000000 336.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 436.000000 336.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 452.000000 336.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 468.000000 336.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 484.000000 272.000000 520.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0
01323b8521546141eee71debdb31007952942801
449d555969bfd7befe906877abab098c6e63a0e8
/1544/CH5/EX5.5/Ch05Ex5.sce
088707d181490b53bf0c60eca56508414a73712d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
529
sce
Ch05Ex5.sce
// Scilab code Ex5.5: Pg 149 (2008) clc; clear; l = 0.15; // Effective length of conductor, m v = 8; // Velocity, m^2 theta = (%pi/180)*55; // Angle, degrees e = 25; // Induced emf, V // Since e = B*l*v*sin(theta), solving for B B = e/(l*v*sin(theta)); // Flux density, T printf("\nThe density of the field = %5.3f tesla", B); // Result // The density of the field = 25.433 T
68a00b591f8ecc4cc1b726b79484978b05b19596
449d555969bfd7befe906877abab098c6e63a0e8
/3755/CH11/EX11.4/Ex11_4.sce
c6871e2c33911b901035958ab2a26c1e2ce5d2a8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
242
sce
Ex11_4.sce
clear // // // //Variable declaration H=220; //magnetizing force(amp/m) M=3300; //magnetic field(T) //Calculation chi=(M/H)+1; //relative permeability //Result printf("\n relative permeability is %0.3f ",chi)
42f36f54f3dd5860dbfb8c0e19d027f78821e52f
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/Vavoryd [2D,Wall,Recoil].sce
430a1526cd587fdddc14e3c92c756f78d26c836a
[]
no_license
MBHuman/Scenarios
be1a722825b3b960014b07cda2f12fa4f75c7fc8
1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137
refs/heads/master
2023-01-14T02:10:25.103083
2020-11-21T16:47:14
2020-11-21T16:47:14
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
52,873
sce
Vavoryd [2D,Wall,Recoil].sce
Name=Vavoryd [2D,Wall,Recoil] PlayerCharacters=A_air_pistol_frozen BotCharacters=target.bot IsChallenge=true Timelimit=30.0 PlayerProfile=A_air_pistol_frozen AddedBots=target.bot;target.bot PlayerMaxLives=0 BotMaxLives=0;0 PlayerTeam=1 BotTeams=2;0 MapName=1wallultralongdense.map MapScale=1.0 BlockProjectilePredictors=false BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=true TimeRefilledByKill=0.0 ScoreToWin=1500.0 ScorePerDamage=0.0 ScorePerKill=10.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=true ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=Flick WeaponHeroTag=Pistol DifficultyTag=2 AuthorsTag=Ku, mgli, ryan BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=false Description=Practice flicking continuously between two targets which change positions. You get more time to play the more targets you hit. GameVersion=2.0.1.0 ScorePerDistance=0.0 MBSEnable=false MBSTime1=0.25 MBSTime2=0.5 MBSTime3=0.75 MBSTime1Mult=1.0 MBSTime2Mult=2.0 MBSTime3Mult=3.0 MBSFBInstead=false MBSRequireEnemyAlive=false LockFOVRange=false LockedFOVMin=60.0 LockedFOVMax=120.0 LockedFOVScale=Clamped Horizontal [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Bot Profile] Name=target DodgeProfileNames=Mimic DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=5.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=target SeeThroughWalls=false NoDodging=false NoAiming=false AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Character Profile] Name=A_air_pistol_frozen MaxHealth=100.0 WeaponProfileNames=pistol;DMR;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=8.0 MovementType=Base MaxSpeed=0.0 MaxCrouchSpeed=500.0 Acceleration=16000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=0.0 Gravity=0.0 AirControl=1.0 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=255.000 Y=0.000 Z=0.000 EnemyHeadColor=X=255.000 Y=255.000 Z=255.000 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=20.0 MainBBRadius=10.0 MainBBHasHead=false MainBBHeadRadius=10.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=5.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=true ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=target MaxHealth=1.0 WeaponProfileNames=Projectile Rifle_slow;;;;;;; MinRespawnDelay=0.05 MaxRespawnDelay=0.05 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=8.0 MovementType=Base MaxSpeed=0.0 MaxCrouchSpeed=500.0 Acceleration=16000.0 AirAcceleration=16000.0 Friction=8.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=0.0 AirControl=0.0 CanCrouch=true CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=255.000 Y=0.000 Z=0.000 EnemyHeadColor=X=255.000 Y=255.000 Z=255.000 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Spheroid MainBBHeight=50.0 MainBBRadius=25.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=100.0 ProjBBRadius=50.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=100000.0 JetpackFuelIncPerSec=0.1 JetpackFuelRegensInAir=true JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=1.0 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=None CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Dodge Profile] Name=Mimic MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.2 MaxLRTimeChange=0.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=true DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.0 JumpFrequency=0.5 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Mimic TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 [Weapon Profile] Name=pistol Type=Hitscan ShotsPerClick=1 DamagePerShot=25.0 KnockbackFactor=4.0 TimeBetweenShots=0.1 Pierces=false Category=SemiAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.1 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=1 DecalSize=1.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=Gunshot ParticleBodyImpact=None ParticleProjectileTrail=None ParticleHitscanTrace=None ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=10.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,5.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=1.0,1.0,-1.0,5.0 SpreadMCA=1.0,1.0,-1.0,5.0 SpreadSSH=0.0,0.1,0.0,0.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=0.0,0.1,0.0,0.0 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=1.0 AAMaxSpeed=360.0 AADeadZone=0.0 AAFOV=360.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=DMR Type=Hitscan ShotsPerClick=1 DamagePerShot=25.0 KnockbackFactor=0.0 TimeBetweenShots=0.1 Pierces=false Category=SemiAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=100000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=100000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.5 MagazineMax=29 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=25.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.1 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=true ADSZoomDelay=0.3 ADSZoomSensFactor=1.0 ADSMoveFactor=0.3 ADSStartDelay=0.1 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=false SpreadStationaryVelocity=300.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.2 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=30 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=75 ADSFOVOverride=25.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=None ParticleBodyImpact=None ParticleProjectileTrail=None ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=0.0,0.1,0.0,0.0 SpreadSCA=0.0,0.1,0.0,0.0 SpreadMSA=0.0,0.1,0.0,0.0 SpreadMCA=0.0,0.1,0.0,0.0 SpreadSSH=0.0,0.1,0.0,0.0 SpreadSCH=0.0,0.1,0.0,0.0 SpreadMSH=0.0,0.1,0.0,0.0 SpreadMCH=0.0,0.1,0.0,0.0 MaxRecoilUp=1.0 MinRecoilUp=1.0 MinRecoilHoriz=-1.0 MaxRecoilHoriz=1.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.4 TimeToRecoilReset=0.4 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=true PSRLoopStartIndex=0 PSRViewRecoilTracking=1.0 PSRCapUp=90.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.15 PSRResetDegreesPerSec=10.0 PSR0=1.5,-1.0 PSR1=1.0,1.0 PSR2=1.2,-1.0 PSR3=1.0,0.8 PSR4=1.2,-0.7 PSR5=1.2,0.7 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Projectile Rifle_slow Type=Projectile ShotsPerClick=1 DamagePerShot=50.0 KnockbackFactor=0.1 TimeBetweenShots=0.7 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=1200.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=1200.000 Y=0.000 Z=0.000 InheritOwnerVelocity=1.0 OriginOffset=X=100.000 Y=0.000 Z=-10.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=0.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=80.0 DelayBeforeShot=0.0 ProjectileGraphic=Rocket VisualLifetime=0.5 BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=3.0 CanAimDownSight=true ADSZoomDelay=0.05 ADSZoomSensFactor=0.5 ADSMoveFactor=0.5 ADSStartDelay=0.25 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=true DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot=Sniper Rifle StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=51.5 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=Flare ParticleBodyImpact=Flare ParticleProjectileTrail=Squares ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=true Radius=300.0 DamageAtCenter=100.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false [Weapon Profile] Name=Sniper Rifle Type=Hitscan ShotsPerClick=1 DamagePerShot=13.0 KnockbackFactor=0.1 TimeBetweenShots=0.1 Pierces=false Category=FullyAuto BurstShotCount=2 TimeBetweenBursts=0.1 ChargeStartDamage=0.1 ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=3.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=1.0 ReloadTimeFromPartial=0.8 DamageFalloffStartDistance=2500.0 DamageFalloffStopDistance=4000.0 DamageAtMaxRange=6.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.1 BounceOffWorld=true BounceFactor=0.6 BounceCount=0 HomingProjectileAcceleration=6000.0 ProjectileEnemyHitRadius=0.1 CanAimDownSight=true ADSZoomDelay=0.05 ADSZoomSensFactor=0.38 ADSMoveFactor=0.5 ADSStartDelay=0.25 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=true ShootingBlocksADS=false KnockbackFactorAir=0.1 RecoilNegatable=true DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot=Zoomed Sniper Rifle StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=true AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=50.985001 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 WeaponModel=Heavy Surge Rifle WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=Gunshot ParticleBodyImpact=Blood ParticleProjectileTrail=None ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=true DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=true DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=5.0 BlockedByWorld=true SpreadSSA=2.0,5.5,0.0,3.0 SpreadSCA=2.0,5.5,0.0,3.0 SpreadMSA=2.0,5.5,0.0,3.0 SpreadMCA=2.0,5.5,0.0,3.0 SpreadSSH=2.0,5.5,0.0,3.0 SpreadSCH=2.0,5.5,0.0,3.0 SpreadMSH=2.0,5.5,0.0,3.0 SpreadMCH=2.0,5.5,0.0,3.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.05 TimeToRecoilReset=0.45 AAMode=2 AAPreferClosestPlayer=false AAAlpha=1.0 AAMaxSpeed=1.5 AADeadZone=0.0 AAFOV=75.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=true AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=true TriggerBotDelay=0.01 TriggerBotFOV=0.1 StickyLock=false HeadLock=true VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end Float sky.timeOfDay 13.000000 ColourXRGB32 sky.sunColor ffffde8c Float sky.sunIntensitySize 64.000000 Float sky.sunSharpness 128.000000 Bool8 sky.sunEnabled 0 ColourXRGB32 sky.horizonColor fffff4b5 Float sky.horizonIntensity 0.250000 Float sky.horizonHaloExponentSunIntensity 0.300000 ColourXRGB32 sky.cloudsColor ffffffff Float sky.cloudsCoverage 0.500000 Float sky.cloudsCoverageMultiplier 24.000000 Float sky.cloudsRoughness 0.400000 UInt8 playersMin 1 UInt8 playersMax 16 Bool8 modeFFA 0 brush vertices 1008.000000 1056.000000 1024.000000 1024.000000 1056.000000 1024.000000 1024.000000 1056.000000 -3072.000000 1008.000000 1056.000000 -3072.000000 1008.000000 -992.000000 1024.000000 1024.000000 -992.000000 1024.000000 1024.000000 -992.000000 -3072.000000 1008.000000 -992.000000 -3072.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1024.000000 -976.000000 1024.000000 1024.000000 -976.000000 1024.000000 1024.000000 -976.000000 -3072.000000 -1024.000000 -976.000000 -3072.000000 -1024.000000 -992.000000 1024.000000 1024.000000 -992.000000 1024.000000 1024.000000 -992.000000 -3072.000000 -1024.000000 -992.000000 -3072.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 1008.000000 1056.000000 -3072.000000 1024.000000 1056.000000 -3072.000000 1024.000000 1056.000000 -7168.000000 1008.000000 1056.000000 -7168.000000 1008.000000 -992.000000 -3072.000000 1024.000000 -992.000000 -3072.000000 1024.000000 -992.000000 -7168.000000 1008.000000 -992.000000 -7168.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1024.000000 1056.000000 -3088.000000 -1008.000000 1056.000000 -3088.000000 -1008.000000 1056.000000 -7184.000000 -1024.000000 1056.000000 -7184.000000 -1024.000000 -992.000000 -3088.000000 -1008.000000 -992.000000 -3088.000000 -1008.000000 -992.000000 -7184.000000 -1024.000000 -992.000000 -7184.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -3136.000000 1056.000000 -3136.000000 -3136.000000 1056.000000 -3120.000000 -1088.000000 1056.000000 -3120.000000 -1088.000000 1056.000000 -3136.000000 -3136.000000 -1008.000000 -3136.000000 -3136.000000 -1008.000000 -3120.000000 -1088.000000 -1008.000000 -3120.000000 -1088.000000 -1008.000000 -3136.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1024.000000 -976.000000 -3072.000000 1024.000000 -976.000000 -3072.000000 1024.000000 -976.000000 -7168.000000 -1024.000000 -976.000000 -7168.000000 -1024.000000 -992.000000 -3072.000000 1024.000000 -992.000000 -3072.000000 1024.000000 -992.000000 -7168.000000 -1024.000000 -992.000000 -7168.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 1008.000000 1056.000000 -7168.000000 1024.000000 1056.000000 -7168.000000 1024.000000 1056.000000 -11264.000000 1008.000000 1056.000000 -11264.000000 1008.000000 -992.000000 -7168.000000 1024.000000 -992.000000 -7168.000000 1024.000000 -992.000000 -11264.000000 1008.000000 -992.000000 -11264.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1024.000000 -976.000000 -7168.000000 1024.000000 -976.000000 -7168.000000 1024.000000 -976.000000 -11264.000000 -1024.000000 -976.000000 -11264.000000 -1024.000000 -992.000000 -7168.000000 1024.000000 -992.000000 -7168.000000 1024.000000 -992.000000 -11264.000000 -1024.000000 -992.000000 -11264.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1024.000000 1056.000000 -7184.000000 -1008.000000 1056.000000 -7184.000000 -1008.000000 1056.000000 -11280.000000 -1024.000000 1056.000000 -11280.000000 -1024.000000 -992.000000 -7184.000000 -1008.000000 -992.000000 -7184.000000 -1008.000000 -992.000000 -11280.000000 -1024.000000 -992.000000 -11280.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1024.000000 1056.000000 -7168.000000 1024.000000 1056.000000 -7168.000000 1024.000000 1056.000000 -11264.000000 -1024.000000 1056.000000 -11264.000000 -1024.000000 1040.000000 -7168.000000 1024.000000 1040.000000 -7168.000000 1024.000000 1040.000000 -11264.000000 -1024.000000 1040.000000 -11264.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 1008.000000 1056.000000 -11264.000000 1024.000000 1056.000000 -11264.000000 1024.000000 1056.000000 -15360.000000 1008.000000 1056.000000 -15360.000000 1008.000000 -992.000000 -11264.000000 1024.000000 -992.000000 -11264.000000 1024.000000 -992.000000 -15360.000000 1008.000000 -992.000000 -15360.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1024.000000 -976.000000 -11264.000000 1024.000000 -976.000000 -11264.000000 1024.000000 -976.000000 -15360.000000 -1024.000000 -976.000000 -15360.000000 -1024.000000 -992.000000 -11264.000000 1024.000000 -992.000000 -11264.000000 1024.000000 -992.000000 -15360.000000 -1024.000000 -992.000000 -15360.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1024.000000 1056.000000 -11280.000000 -1008.000000 1056.000000 -11280.000000 -1008.000000 1056.000000 -15376.000000 -1024.000000 1056.000000 -15376.000000 -1024.000000 -992.000000 -11280.000000 -1008.000000 -992.000000 -11280.000000 -1008.000000 -992.000000 -15376.000000 -1024.000000 -992.000000 -15376.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1024.000000 1056.000000 -11264.000000 1024.000000 1056.000000 -11264.000000 1024.000000 1056.000000 -15360.000000 -1024.000000 1056.000000 -15360.000000 -1024.000000 1040.000000 -11264.000000 1024.000000 1040.000000 -11264.000000 1024.000000 1040.000000 -15360.000000 -1024.000000 1040.000000 -15360.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1008.000000 1056.000000 -15360.000000 1152.000000 1056.000000 -15360.000000 1152.000000 1056.000000 -15376.000000 -1008.000000 1056.000000 -15376.000000 -1008.000000 -960.000000 -15360.000000 1152.000000 -960.000000 -15360.000000 1152.000000 -960.000000 -15376.000000 -1008.000000 -960.000000 -15376.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 912.000000 -480.000000 928.000000 928.000000 -480.000000 928.000000 928.000000 -480.000000 912.000000 912.000000 -480.000000 912.000000 912.000000 -496.000000 928.000000 928.000000 -496.000000 928.000000 928.000000 -496.000000 912.000000 912.000000 -496.000000 912.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1040.000000 1040.000000 1040.000000 1024.000000 1040.000000 1040.000000 1024.000000 1040.000000 1024.000000 -1040.000000 1040.000000 1024.000000 -1040.000000 -1008.000000 1040.000000 1024.000000 -1008.000000 1040.000000 1024.000000 -1008.000000 1024.000000 -1040.000000 -1008.000000 1024.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1024.000000 1056.000000 1024.000000 -1008.000000 1056.000000 1024.000000 -1008.000000 1056.000000 -3088.000000 -1024.000000 1056.000000 -3088.000000 -1024.000000 -992.000000 1024.000000 -1008.000000 -992.000000 1024.000000 -1008.000000 -992.000000 -3088.000000 -1024.000000 -992.000000 -3088.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1024.000000 1056.000000 1056.000000 1024.000000 1056.000000 1056.000000 1024.000000 1056.000000 -3072.000000 -1024.000000 1056.000000 -3072.000000 -1024.000000 1040.000000 1056.000000 1024.000000 1040.000000 1056.000000 1024.000000 1040.000000 -3072.000000 -1024.000000 1040.000000 -3072.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -1024.000000 1056.000000 -3024.000000 1024.000000 1056.000000 -3024.000000 1024.000000 1056.000000 -7168.000000 -1024.000000 1056.000000 -7168.000000 -1024.000000 1040.000000 -3024.000000 1024.000000 1040.000000 -3024.000000 1024.000000 1040.000000 -7168.000000 -1024.000000 1040.000000 -7168.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 entity type PlayerSpawn Vector3 position 0.000000 0.000000 -14712.000000 Bool8 teamB 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type CameraPath UInt32 entityIdAttachedTo 132 UInt8 posLerp 2 UInt8 angleLerp 2 entity type PlayerSpawn Vector3 position -208.000000 -32.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 272.000000 -32.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -88.000000 -32.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 152.000000 -32.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -208.000000 -152.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -88.000000 -152.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 32.000000 -152.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 152.000000 -152.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 272.000000 -152.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 32.000000 -272.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -208.000000 -272.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 272.000000 -272.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -88.000000 -272.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 152.000000 -272.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -264.000000 280.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -144.000000 280.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -24.000000 280.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 96.000000 280.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 216.000000 280.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -264.000000 160.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -264.000000 40.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -144.000000 160.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -144.000000 40.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -24.000000 40.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -24.000000 160.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 96.000000 160.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 216.000000 160.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 96.000000 40.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 216.000000 40.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 152.000000 208.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 96.000000 -80.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -264.000000 -80.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 216.000000 -80.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -24.000000 -80.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -144.000000 -80.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -264.000000 -200.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -144.000000 -200.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -24.000000 -200.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 96.000000 -200.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 216.000000 -200.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 32.000000 208.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -208.000000 208.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 272.000000 208.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -88.000000 208.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -208.000000 88.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -88.000000 88.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 32.000000 88.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 152.000000 88.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 272.000000 88.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position 32.000000 -32.000000 88.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0
371ba790b74bf5f470168719e2786f121975af21
449d555969bfd7befe906877abab098c6e63a0e8
/32/CH1/EX1.05/1_05.sce
a954205a33bf74a0a4db5c1e8b6e3ba2975ffbb6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
437
sce
1_05.sce
//pathname=get_absolute_file_path('1.05.sce') //filename=pathname+filesep()+'1.05-data.sci' //exec(filename) //Barometer Reading(in m): h=76*10^-2 //Density of mercury(in kg/m^3): d=13.6*10^3 //Acceleration due to gravity(in m/s^2): g=9.8 //Difference of heights in gas barometer(in m): h1=40*10^-2 //Pressure of gas(in kPa): pg=(d*g*h1+d*g*h)*10^-3 printf("\n\n RESULT \n\n") printf("\n\n Pressure of gas=%f kPa\n\n",pg)
8b2fa06522d87ab2a152b9ea833c428df8f8d215
449d555969bfd7befe906877abab098c6e63a0e8
/1187/CH5/EX5.4/4.sce
200c571f7795d8703baa313d069babaaf1128d7d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
217
sce
4.sce
clc A=0.88; // ratio of A2 and A1 C_D=0.85; // ratio of C_D2 to C_D1 P=1.20; // ratio of P2 to P1 V1=11; // m/s V2=V1*(P/A/C_D)^(1/3); disp("Maximum speed of the redesigned torpedo =") disp(V2) disp("m/s")
4214c17f31b440653ddb99a4fc7cd86742af4a3a
449d555969bfd7befe906877abab098c6e63a0e8
/3204/CH14/EX14.19/Ex14_19.sce
9218ea01d695ec646f71df03d700ef95686ac9e1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
Ex14_19.sce
// Initilization of variables M_1=150 // kg // mass of the 1st block M_2=100 // kg // mass of the 2nd block mu=0.2 // coefficient of friction between the blocks and the inclined plane g=9.81 // m/s^2 // acc due to gravity theta=45 // degree // inclination of the surface // Calculations // substuting the value of eq'n 3 in eq'n 1 & solving for T,we get value of T as, T=((M_1*M_2*g)*(sind(theta)+2-(mu*cosd(theta))))/((4*M_1)+(M_2)) // N // Results clc printf('The tension in the string during the motion of the system is %f N \n',T)
9951d9b2f5736a9cb1542ce622ea6fd114358cf7
a3586a664abdb206a39d796c4b96bb7ee643eace
/github.tst
11c33c735f6d38a0c24c3d764b1e7abb2526cb75
[]
no_license
shortfusion/test
1bf6ef9695ddc102ba8125add18dffda77ce0fc5
c02802a91321f5bdd4f5a3c624bdb58a81dbc64e
refs/heads/master
2021-01-10T03:50:25.323622
2015-11-24T04:41:48
2015-11-24T04:41:48
46,767,189
0
0
null
null
null
null
UTF-8
Scilab
false
false
49
tst
github.tst
this is a test file created at a remote location
cf1a152527183a0c49f441203bad23646b40a720
449d555969bfd7befe906877abab098c6e63a0e8
/980/CH1/EX1.7/1_7.sce
6fcfaad260cc8dbe05031c5193759a7e114421c6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
98
sce
1_7.sce
clc; clear; format('v',11); A=[1 3 5]; B=[0 5 0]; C=A-B; disp(C,"difference(in newton)=");
00077082178d8b4e597f7c3b369981cb616fc0f4
449d555969bfd7befe906877abab098c6e63a0e8
/3363/CH18/EX18.2/Ex18_2.sce
4bc8697d139d247325ffe18bbae9da87f80723ad
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
292
sce
Ex18_2.sce
//Example 18.2, Page 694 clc Q=(2/3)-(1/3)-(1/3) B=(1/3)+(1/3)+(1/3) S=0+0-1 T=(1/2)+(1/2)+0 Tz=(1/2)-(1/2)+0 printf("The value of Q is %f \n",Q) printf("The value of B is %f \n",B) printf("The value of S is %f \n",S) printf("The value of T is %f \n",T) printf("The value of Tz is %f \n",Tz)
6f351b96ee7e466776826b83fdd3ffe9ebc12fb8
449d555969bfd7befe906877abab098c6e63a0e8
/1628/CH15/EX15.5/Ex15_5.sce
6e6eb5885c65c4b62f4904623ab50fd5edd21b3c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,181
sce
Ex15_5.sce
// Examle 15.5 R2=0.05; // Resistance s=0.04; // Slip X20=0.1; // Standstill reactance El=100; // Voltage E20=El/1.732; // Induced emf per phase Z2=sqrt(R2^2+(s*X20)^2); // Impedance E2=s*E20; // Emf with (s= 0.04) I2=E2/Z2; // Rotor current for (s=0.04) disp(' Rotor current for (s=0.04) = '+string(round(I2))+' Amp'); CosQ2=E2/Z2; // CosQ2=E2/Z2 = 0.998 ==> ,here take ( 0.99 ) Q2=acosd(0.99); // Phase diffrence for (s= 0.04) disp(' Phase diffrence between rotor voltage & current for (s=0.04) = '+string(Q2)+' Digree'); s1=1; E21=s1*E20; // Induced emf per phase for s=1 Z21=sqrt(R2^2+(s1*X20)^2); // Impedance ==> Z21= 57.73 ,but take (57.5) I21=57.5/Z21; // Rotor current for (s=1) disp(' Rotor current for (s=1) = '+string(round(I21))+' Amp'); Q21=acosd(R2/Z21); // Rotor current for (s=1) disp(' Phase diffrence between rotor voltage & current for (s=1) = '+string(Q21)+' Digree'); // p 597 15.5
7e0b76452c883dc9595e2117a374f0eaa8c597d1
449d555969bfd7befe906877abab098c6e63a0e8
/2267/CH11/EX3.3/Ex11_3.sce
e5e99ea46d4395c53bf6444f45320b9955e48a1d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
623
sce
Ex11_3.sce
//Part B Chapter 3 Example 3 clc; clear; close; format('v',7); AB=200;//mm BC=300;//mm CD=260;//mm a1=1/2*AB*CD;//mm^2(Area of ABE) a2=%pi*(BC/2)^2/2;//mm^2(Area of semicircle) a3=BC*CD;//mm^2(Area of BECD) x1bar=1/3*CD;//mm y1bar=BC+1/3*AB;//mm x2bar=4/3*(BC/2)/%pi;//mm y2bar=BC/2;//mm x3bar=1/2*CD;//mm y3bar=BC/2;//mm //Distance of CG from AC xbar=(a1*x1bar-a2*x2bar+a3*x3bar)/(a1-a2+a3);//mm //Distance of CG from CD ybar=(a1*y1bar-a2*y2bar+a3*y3bar)/(a1-a2+a3);//mm disp(ybar,"From reference axes CD, centroid ybar is(mm) : "); disp(xbar,"From reference axes AC, centroid xbar is(mm) : ");
ecb4f39d3e685e7dfa457f5e182896654034d022
efc2fec9dd841d0ca834702c904e00c52762a9f9
/Demo/demo.sce
5d87ed76910bfe7b8bde0de156422340ad31e78d
[]
no_license
surajch77/Scilab-Computer-Vision-Toolbox-TestCases
64c8e0382e8b9d416c4c27c1ed4272f49bf45b51
969f9bcddefea05b42c623aeebe2e0cdcffd6eeb
refs/heads/master
2021-01-20T20:24:14.345296
2016-06-29T15:16:52
2016-06-29T15:16:52
61,932,313
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,704
sce
demo.sce
// execute the detecting file exec imread.sci exec mattolist.sci exec rectangle.sci exec detecting.sci exec peopleDetector.sci stacksize('max') // read the image I = imread("standing-on-the-edge.jpg"); J_list = detecting(I); imshow(J_list) title("Family.jpg"); halt("Press Enter to continue"); /// read the image I = imread("animals3.jpg"); J_list = detecting(I); imshow(J_list) title("Animal.jpg"); halt("Press Enter to contine"); /// read the image I = imread("statue1.jpg"); J_list = detecting(I); imshow(J_list) title("statue1.jpg") halt("Press Enter to contine"); /// read the image I = imread("statue2.jpg"); J_list = detecting(I); imshow(J_list) title("statue2.jpg"); halt("Press Enter to continue"); /// read the image I = imread("multiple2.jpg"); J_list = detecting(I); imshow(J_list) title("multiple2.jpg") halt("Press Enter to contine"); /// read the image I = imread("poster.jpg"); J_list = detecting(I); imshow(J_list) title("poster.jpg"); halt("Press Enter to contine"); /// read the image I = imread("ballu.jpg"); J_list = detecting(I); imshow(J_list) title("People.jpg"); halt("Press Enter to contine"); /// read the image I = imread("police.jpg"); J_list = detecting(I); imshow(J_list) title("police.jpg"); halt("Press Enter to contine"); /// read the image I = imread("multiple4.jpg"); J_list = detecting(I); imshow(J_list) title("multiple4.jpg"); halt("Press Enter to contine"); /// read the image I = imread("libert.jpg"); J_list = detecting(I); imshow(J_list) title("liberty.jpg"); halt("Press Enter to contine"); /// read the image I = imread("multiple3.jpg"); J_list = detecting(I); imshow(J_list) title("multiple3.jpg"); halt("Press Enter to contine");
34f18342fe2bfb79026b1dfec71209f3cabea4bf
449d555969bfd7befe906877abab098c6e63a0e8
/587/CH9/EX9.7/example9_7.sce
4ec529542c94da6d7cbea9c04cb1a2fe79203bb3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
example9_7.sce
clear; clc; //Example9.7[U factor for Center of glass Section of Windows] //Given:- e=0.84;//Emissivity //For winter season hi=8.29;//[W/m^2.degree Celcius] ho=34.0;//[W/m^2.degree Celcius] //Solution:- e_eff=1/((1/e)+(1/e)-1);//Effective emissivity of air space //the effective emissivity and an average air space temperature of 0 degree Celcius read h_space=7.2;//[W/m^2.degree Celcius] U_center=1/((1/hi)+(1/ho)+(1/h_space));//[W/m^s.degree Celcius] disp("W/m^2.degree Celcius",U_center,"The center of glass U-factor value is")
2eead63919e40e142c28dd5a2be09cdd3b823073
449d555969bfd7befe906877abab098c6e63a0e8
/671/CH11/EX11.10/11_10.sce
d24cd2451ee599ac80fc02e2bfeaa55532457a89
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
532
sce
11_10.sce
P=10000 V=400 pf=0.8 Xs=16 theta=acos(pf) Ia=P/sqrt(3)/V*exp(-%i*theta) Vt=V/sqrt(3) Ef=Vt+%i*Xs*Ia disp(norm(Ef)) disp(atan(imag(Ef)/real(Ef))*180/%pi) Ef2=1.2*norm(Ef) Pe=P*pf delta=asin(norm(Pe/3*Xs/Ef2/Vt)) Ef2=Ef2*exp(%i*delta) Ia=(Ef2-Vt)/%i/Xs //calculation mistake in the book at this point disp(norm(Ia)) pf=real(Ia)/norm(Ia) disp(pf) disp(acos(pf)*180/%pi) delta=%pi/2 Pemax=norm(3*Ef*Vt/Xs*sin(delta)) disp(Pemax) Ef=norm(Ef)*%i Ia=(Ef-Vt)/%i/Xs disp(norm(Ia)) disp(real(Ia)/norm(Ia))
b18c7926d3e6dec1090037dd59b15247bf039df7
449d555969bfd7befe906877abab098c6e63a0e8
/34/CH1/EX1.2/Ch1Exa2.sci
76b6120372e6161ad6651406e32880886ea003b7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
509
sci
Ch1Exa2.sci
fg= 5.6*(10^14); //frequency of green color, Hz fr= 4.8*(10^14); //frequency of red color, Hz c= 3*(10^8); //velocity of light, m/s v= c*((fg^2 - fr^2)/(fg^2 + fr^2)); //longitudinal speed of observer, m/s v= v*3.6; //convert to km/h R= 1; //rate at which fine is to be imposed per km/h, $ l= 80; //speed limit upto which no fine is to be imposed, km/h fine= v-l; // fine to be imposed, $ disp(fine,"The fine imposed (in $) is: ") //Result // The fine imposed (in $) is: // 1.652D+08
34ee734ca35e2b5a63bed0351e103940cb415276
dc5a2fe4380e1453a12f15f5080b10f3ababb9de
/AutomationTools/bin/1.0/common/ATLAS/tools/txtfile/sh_nhoe_leasetime.tst
91b24807eabde949c77fd4f497fa0a9d87ee91e5
[]
no_license
jameshilliard/PythonCode
f72ad62bb8b8cafbc94cbe7c0d3065343fdf0f98
422543bc049f57a67d53ec0b89caef076297cdc5
refs/heads/master
2020-04-09T00:06:25.689609
2015-03-14T13:14:34
2015-03-14T13:14:34
32,722,067
3
0
null
2015-03-23T09:21:52
2015-03-23T09:21:52
null
UTF-8
Scilab
false
false
6,545
tst
sh_nhoe_leasetime.tst
-v G_USER=jnguyen -v G_CONFIG=1.0 -v G_TST_TITLE="My Network Network Home Office Ethernet" -v G_TBTYPE=nhoe -v G_PROD_TYPE=bhr2 -v G_HTTP_DIR=test/ -v G_FTP_DIR=/log/autotest -v G_TESTBED=tb24 -v G_FROMRCPT=qaman -v G_FTPUSR=root -v G_FTPPWD=@ctiontec123 -v U_USER=admin -v U_PWD=admin1 -v G_LIBVERSION=1.0 -v G_LOG=$SQAROOT/automation/logs -v U_COMMONLIB=$SQAROOT/lib/$G_LIBVERSION/common -v U_COMMONBIN=$SQAROOT/bin/$G_LIBVERSION/common -v U_TBCFG=$SQAROOT/config/$G_LIBVERSION/testbed -v U_TBPROF=$SQAROOT/config/$G_LIBVERSION/common -v U_VERIWAVE=$SQAROOT/bin/1.0/veriwave/ -v U_MI424=$SQAROOT/bin/1.0/mi424wr/ -v U_TESTPATH=$SQAROOT/platform/1.0/verizon/testcases/nhoe/json #this value used to setup dut configuration -v U_DEBUG=3 -v U_DUT=192.168.1.1 -v U_RUBYBIN=$SQAROOT/bin/$G_LIBVERSION/rbin -v U_VZBIN=$SQAROOT/bin/$G_LIBVERSION/vz_bin -v U_COMMONJSON=$SQAROOT/platform/1.0/verizon2/testcases/common/json -v U_COAX=0 #$G_PFVERSION=1.0 #------------------------------ # Set up the test environment. ------------------------------ #-nc $SQAROOT/config/$G_CONFIG/common/testbedcfg_env.xml -nc $SQAROOT/config/$G_CONFIG/common/testbedcfg.xml; -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/login_logout.xml -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/fw_upgrage_image.xml;pass=init -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/fw_upgrage_image.xml;pass=init -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/fw_upgrage_image.xml;fail=finish -label init -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/reset_dut_to_default.xml -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/tc_init_dut.xml;pass=next -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/tc_init_dut.xml;pass=next -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/tc_init_dut.xml;fail=finish -label next -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/tc_init_ping.xml;fail=finish -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/enable_tnet.xml ------------------------------ Test cases ------------------------------ -nc $SQAROOT/platform/1.0/verizon2/testcases/common/tcases/set_default_time.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001050.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001051.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001052.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001053.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001054.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001055.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001056.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001057.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001058.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001059.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001060.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001061.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001062.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001063.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001064.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001065.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001066.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001067.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001068.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001069.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001070.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001071.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001072.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001073.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001074.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001075.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001076.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001077.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_invaildleasetime_03001001078.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_leasetime43200_aclass1.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_leasetime43200_aclass2.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_leasetime43200_aclass3.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_leasetime43200_bclass1.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_leasetime43200_bclass2.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_leasetime43200_cclass.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_leasetime_aclass1.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_leasetime_aclass2.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_leasetime_aclass3.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_leasetime_bclass1.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_leasetime_bclass2.xml -tc $SQAROOT/platform/1.0/verizon/testcases/nhoe/tcases/tc_dhcplaneth_leasetime_cclass.xml #------------------------------ # Checkout #------------------------------ -label finish -nc $SQAROOT/config/$G_CONFIG/common/finalresult.xml -nc $SQAROOT/config/$G_CONFIG/common/uploadlog.xml -nc $SQAROOT/config/$G_CONFIG/common/email.xml
c1bc730d34938bdc5cd8690aec6b48408a0c8697
e41b69b268c20a65548c08829feabfdd3a404a12
/3DCosmos/Data/Scripts/BasicHelp.SCI
a10eec156d33a665c35729e8fc7672e6bec23e7a
[ "LicenseRef-scancode-khronos", "MIT" ]
permissive
pvaut/Z-Flux
870e254bf340047ed2a52d888bc6f5e09357a8a0
096d53d45237fb22f58304b82b1a90659ae7f6af
refs/heads/master
2023-06-28T08:24:56.526409
2023-03-01T12:44:08
2023-03-01T12:44:08
7,296,248
1
1
null
2023-06-13T13:04:58
2012-12-23T15:40:26
C
UTF-8
Scilab
false
false
654
sci
BasicHelp.SCI
codeblock readtextfile(ScriptDir+"\_TOOLS.sci"); sf=T_scene_create; sss=T_getscene; myviewport=T_getviewport; sss.ambientlightcolor=color(0.05,0.05,0.05); rootframe=sss.Universe.addsubframe("Root"); st=readtextfile(datadir+"\basichelp.txt"); txt=rootframe.add("FormattedText"); txt.enablelight=false; txt.position=point(-5,3.5,0); txt.size=0.15; txt.content=st; txt.MaxLenX=10; txt.color=color(0.7,0.7,0.7); txt.renderback=true; myviewport.camerapos=point(0,0,10); myviewport.cameradir=vecnorm(point(0,0,0)-myviewport.camerapos); myviewport.cameraupdir=vector(0,1,0); WaitReleaseAll; while true do { render; if LeftMouseClicked() then stop; }
9d8b6f85acce84c935b3ad89e966bc56aba53559
e6d5f1d801a3fe887b5dc04b8cc0a9eabc1fd432
/Semana_3/susti_dir.sce
fb72c4dbe1da162d08777ce6a850bdcafea2b448
[]
no_license
lordjuacs/MateIII
70def332063e56eb10fb47678a7e6130dc0dca63
164c53b61c9e35e565121f77ba2c578680a3ab56
refs/heads/master
2021-05-24T15:56:01.078904
2020-07-27T19:57:34
2020-07-27T19:57:34
253,643,962
0
0
null
null
null
null
UTF-8
Scilab
false
false
159
sce
susti_dir.sce
function x = susti_dir(L, b) [m,n]=size(L) x = zeros(n,1) for k=1:n x(k)=(b(k)-sum(L(k, 1:k-1)*x(1:k-1)))/L(k,k) end endfunction
0ab4bdf807a7f42b86ff94189a46b34a33c6533a
449d555969bfd7befe906877abab098c6e63a0e8
/2318/CH2/EX2.40/ex_2_40.sce
2172389b9744d879191aa0c2c8b99b864efd34b5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
497
sce
ex_2_40.sce
//Example 2.40: true value of voltage ,current and power clc; clear; close; vs=102;//V is=4;//A ws=375;//W ph=acosd(ws/(is*vs));//degree ph1=round(ph);// x=ph-ph1;// y=x*60;// angd=y+22+10;// ang=angd/60;// ta=ph1+ang;// a1=2000;// a2=100;// nr=a1/a2;// rcf=0.995;// rcf1=1.005;// avr=rcf*nr;// pv=avr*vs;// acr=rcf1*(a2/nr);// pc=acr*is*is;//A psd=pv*pc*cosd(ta)*10^-3;// disp(pv,"true value of voltage is,(V)=") disp(pc,"true value of current is,(A)=") disp(psd,"true value of power is ,(kW)=")
183cd2e5c44743e02b6d27b8817f14ad67654613
1b3c63cb7f854378c5f1991637692ae2bf8265ac
/genmat/testgenmat.sce
4ef6637d98678c329f47809b4c2bccae0bfc2db0
[]
no_license
FOSSEE-Internship/FOSSEE-Control-Systems-Toolbox
9900107267e5f508f77858d128e01293966e9e10
2878a38e4e55806b1777f9da2e0395f321e1c952
refs/heads/master
2020-12-02T18:20:34.659219
2017-10-26T12:26:57
2017-10-26T12:26:57
96,516,803
0
1
null
2017-10-26T13:44:56
2017-07-07T08:24:44
Scilab
UTF-8
Scilab
false
false
159
sce
testgenmat.sce
//test example a=realp('a',5); b=realp('b',4); c=realp('c',6); mat=a+b-c+1; disp("mat Blocks:") disp(mat.Blocks) disp("mat value:") disp(mat.doublem)
f30182edddf553e28c750eb03d762749edcf9b66
35c8380ec2b2a1fe302cc8de8750a3dc3115030a
/rbf.sce
62176db5829dbca3db6c798a1a0bc4a9d84158b1
[]
no_license
Pedynho/neural-network-RBF
fa240cee585772223cfc84dd383f628b7bb186e9
b4f722c3c3eb1c6f27733aa2db49f61677c42888
refs/heads/main
2023-08-13T17:34:40.346567
2021-10-18T17:50:07
2021-10-18T17:50:07
361,252,081
4
0
null
null
null
null
UTF-8
Scilab
false
false
1,556
sce
rbf.sce
clear; clc; warning('off'); function r = funcTest(amostra,M,X,N,q) xtest = X(:,amostra); for i=1:N for j=1:q Z_test(j,i) = exp(-norm(xtest-T(:,j))^2); end end Z_test = [(-1)*ones(1,N);Z_test]; y_test = M * Z_test; [val i] = max(abs(y_test)); r = i; endfunction base = fscanfMat("two_classes.dat"); X = base(:,1:2)'; Y = base(:,3)'; //normalizando os dados for i=1:2 X(i,:) = (X(i,:)-mean(X(i,:))/stdev(X(i,:))); end a = X(1,:); b = X(2,:); //numero de amostras e quantidade de caracteristicas N = 1000; P = 2; Q = 10; //quantidade de neurônios ocultos Z = zeros(Q,N); T = rand(P,Q,'normal'); //centroides aleatorios for i=1:N for j=1:Q Z(j,i) = exp(-norm(X(:,i)-T(:,j))^2); end end //gerando a saida Z = [(-1)*ones(1,N);Z]; M = Y * Z' * (Z*Z')^(-1); yc = M*Z; //plotando pontos scatter(a(1:500),b(1:500), "scilabred2", "."); scatter(a(501:1000),b(501:1000), "scilabblue2", "." ); //tentando plotar a curva x1 = linspace(min(a),max(a), 100); x2 = linspace(min(b),max(b), 100); pd = zeros(2,100*100); cont = 1; for k = 1:100 for i = 1:100 Zt = zeros(Q,1); for j=1:Q Zt(j,1) = exp(-norm([x1(k);x2(i)]-T(:,j))^2); end Zt = [(-1);Zt]; st = M*Zt; if abs(st) < 0.05 then pd(1,cont) = x1(k) pd(2,cont) = x2(i) cont = cont + 1 end end end plot(pd(1,:),pd(2,:), "k."); //teste amostraId = 458; iYc = funcTest(amostraId,M,X,N,Q); disp(yc(iYc),Y(amostraId));
593ca026cdc7142fce31cf639245553485f47867
449d555969bfd7befe906877abab098c6e63a0e8
/3720/CH6/EX6.8/Ex6_8.sce
2ef8824a0502550a0a0317dd8a1111ddef3d6281
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
569
sce
Ex6_8.sce
//Example 6_8 clc;clear; // Given values rho=1000;//The density of water in kg/m^3 D=0.10;// Diameter in m V=3;// Average velocity in m/s g=9.81;// The acceleration due to gravity m/s^2 m=12;//Mass per meter length in kg/m r_1=0.5; r_2=2;// The average moment arm at inlet & outlet in m // Calculation A_c=((%pi*D^2)/4);// m^2 m_1=rho*A_c*V;// The mass flow rate in kg/s W=m*g;//The weight of the horizontal section of the pipe in N M_a=(r_1*W)-(r_2*m_1*V);// N.m printf("The bending moment acting at the base of the pipe (point A)=%0.1f N.m\n",M_a);